diff --git a/HeliumDB.db b/HeliumDB.db index 355c0c8..41db9b6 100644 Binary files a/HeliumDB.db and b/HeliumDB.db differ diff --git a/consts.py b/consts.py new file mode 100644 index 0000000..a9928ef --- /dev/null +++ b/consts.py @@ -0,0 +1,2 @@ +DB_FILE = 'HeliumDB.db' +SEARCH_PAGE_SIZE = 20 \ No newline at end of file diff --git a/main.py b/main.py index bf3445c..b01b3a0 100644 --- a/main.py +++ b/main.py @@ -1,7 +1,9 @@ -from flask import Flask, request, jsonify +from flask import Flask, request from flask_restful import Resource, Api import sqlite3 as sql -import traceback, sys + +from consts import DB_FILE +from search import Search app = Flask(__name__, static_url_path='/') api = Api(app) @@ -11,20 +13,8 @@ def index(): app.add_url_rule('/', 'index', index) -with sql.connect('HeliumDB.db') as conn: - file = open('./resources/schema.sql', mode = 'r', encoding='utf-8') - c = conn.cursor() - c.executescript(file.read()) - -class Quote(Resource): - def get(self): - args = request.args - with sql.connect('HeliumDB.db') as conn: - conn.row_factory = sql.Row - c = conn.cursor() - #return jsonify({"message": 200, "success":True, "data": [dict(x) for x in (c.execute('SELECT * FROM quote').fetchall())]}) - return [dict(x) for x in (c.execute('SELECT * FROM quote').fetchall())] +#TODO: refactor as a Borrower Resource with a .put method def create_borrower(): args = request.args @@ -35,7 +25,7 @@ def create_borrower(): stuff = "SSN: " + ssn + "\tBNAME: " + bname + "\tADDRESS: " + address + "\tPHONE: " + phone return stuff,203 - with sql.connect('HeliumDB.db') as conn: + with sql.connect(DB_FILE) as conn: conn.row_factory = sql.Row c = conn.cursor() # @TODO: Check for existing SSN and return useful error if it already exists @@ -48,10 +38,17 @@ def create_borrower(): # return [dict(x) for x in (c.execute('SELECT * FROM quote').fetchall())] return app.make_response(200) +app.add_url_rule('/borrower/create', 'create_borrower', create_borrower, methods=["POST"]) -api.add_resource(Quote, '/quote', endpoint='quote') -app.add_url_rule('/borrower/create', 'create_borrower', create_borrower, methods=["POST"]) +api.add_resource(Search, '/book/search', endpoint='search') + if __name__ == '__main__': - app.run(debug=True) \ No newline at end of file + + with sql.connect(DB_FILE) as conn: + file = open('./resources/schema.sql', mode = 'r', encoding='utf-8') + c = conn.cursor() + c.executescript(file.read()) + + app.run(debug=True) diff --git a/resources/schema.sql b/resources/schema.sql index cffa9ba..f2dd9c9 100644 --- a/resources/schema.sql +++ b/resources/schema.sql @@ -1,72057 +1,72057 @@ -DROP TABLE IF EXISTS BOOK; - -CREATE TABLE BOOK ( - Isbn CHAR(10) PRIMARY KEY, - Title VARCHAR NOT NULL, - Cover_url VARCHAR NOT NULL -); - -DROP TABLE IF EXISTS AUTHORS; - -CREATE TABLE AUTHORS ( - Author_id INTEGER PRIMARY KEY AUTOINCREMENT, - Name VARCHAR NOT NULL -); - -DROP TABLE IF EXISTS BOOK_AUTHORS; - -CREATE TABLE BOOK_AUTHORS ( - Author_id INTEGER NOT NULL, - Isbn CHAR(10) NOT NULL, - PRIMARY KEY (Author_id, Isbn), - FOREIGN KEY (Author_id) REFERENCES AUTHORS (Author_id), - FOREIGN KEY (Isbn) REFERENCES BOOK (Isbn) -); - -DROP TABLE IF EXISTS BORROWER; - -CREATE TABLE BORROWER ( - Card_id INTEGER PRIMARY KEY AUTOINCREMENT, - Ssn CHAR(11) NOT NULL UNIQUE, - Bname VARCHAR NOT NULL, - Address VARCHAR NOT NULL, - Phone CHAR(14) -); - -INSERT INTO BOOK (Isbn, Title, Cover_url) - VALUES - ('0195153448', 'Classical Mythology', 'https://images.isbndb.com/covers/34/46/9780195153446.jpg'), - ('0002005018', 'Clara Callan: A Novel', 'https://images.isbndb.com/covers/50/12/9780002005012.jpg'), - ('0060973129', 'Decision In Normandy', 'https://images.isbndb.com/covers/31/24/9780060973124.jpg'), - ('0374157065', 'Flu: The Story Of The Great Influenza Pandemic Of 1918 And The Search For The Virus That Caused It', 'https://images.isbndb.com/covers/70/67/9780374157067.jpg'), - ('0393045218', 'The Mummies Of Urumchi', 'https://images.isbndb.com/covers/52/15/9780393045215.jpg'), - ('0399135782', 'The Kitchen God''s Wife', 'https://images.isbndb.com/covers/57/81/9780399135781.jpg'), - ('0425176428', 'What If?: The World''s Foremost Military Historians Imagine What Might Have Been', 'https://images.isbndb.com/covers/64/29/9780425176429.jpg'), - ('0671870432', 'Pleading Guilty', 'https://images.isbndb.com/covers/04/30/9780671870430.jpg'), - ('0679425608', 'Under The Black Flag: The Romance And The Reality Of Life Among The Pirates', 'https://images.isbndb.com/covers/56/01/9780679425601.jpg'), - ('074322678X', 'Where You''ll Find Me: And Other Stories', 'https://images.isbndb.com/covers/67/83/9780743226783.jpg'), - ('0771074670', 'Nights Below Station Street', 'https://images.isbndb.com/covers/46/77/9780771074677.jpg'), - ('080652121X', 'Hitler''s Secret Bankers: The Myth Of Swiss Neutrality During The Holocau: The Myth Of Swiss Neutrality During The Holocaust', 'https://images.isbndb.com/covers/12/13/9780806521213.jpg'), - ('0887841740', 'The Middle Stories', 'https://images.isbndb.com/covers/17/43/9780887841743.jpg'), - ('1552041778', 'Jane Doe', 'https://images.isbndb.com/covers/17/72/9781552041772.jpg'), - ('1558746218', 'A Second Chicken Soup For The Woman''s Soul (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/62/13/9781558746213.jpg'), - ('1567407781', 'The Witchfinder (Amos Walker Series)', 'https://images.isbndb.com/covers/77/85/9781567407785.jpg'), - ('1575663937', 'More Cunning Than Man: A Social History Of Rats And Man', 'https://images.isbndb.com/covers/39/37/9781575663937.jpg'), - ('1881320189', 'Goodbye To The Buttermilk Sky', 'https://images.isbndb.com/covers/01/80/9781881320180.jpg'), - ('0440234743', 'The Testament', 'https://images.isbndb.com/covers/47/46/9780440234746.jpg'), - ('0452264464', 'Beloved (Plume Contemporary Fiction)', 'https://images.isbndb.com/covers/44/65/9780452264465.jpg'), - ('0609804618', 'Our Dumb Century: The Onion Presents 100 Years Of Headlines From America''s Finest News Source', 'https://images.isbndb.com/covers/46/12/9780609804612.jpg'), - ('1841721522', 'New Vegetarian: Bold And Beautiful Recipes For Every Occasion', 'https://images.isbndb.com/covers/15/21/9781841721521.jpg'), - ('1879384493', 'If I''d Known Then What I Know Now: Why Not Learn From The Mistakes Of Others? You Can''t Afford To Make Them All Yourself!', 'https://images.isbndb.com/covers/44/91/9781879384491.jpg'), - ('0061076031', 'Mary-Kate & Ashley Switching Goals (Mary-Kate & Ashley Starring In)', 'https://images.isbndb.com/covers/60/39/9780061076039.jpg'), - ('0439095026', 'Tell Me This Isn''t Happening', 'https://images.isbndb.com/covers/50/20/9780439095020.jpg'), - ('0689821166', 'Flood : Mississippi 1927', 'https://images.isbndb.com/covers/11/65/9780689821165.jpg'), - ('0971880107', 'Wild Animus: A Novel', 'https://images.isbndb.com/covers/01/08/9780971880108.jpg'), - ('0345402871', 'Airframe', 'https://images.isbndb.com/covers/28/75/9780345402875.jpg'), - ('0345417623', 'Timeline', 'https://images.isbndb.com/covers/76/26/9780345417626.jpg'), - ('0684823802', 'Out Of The Silent Planet', 'https://images.isbndb.com/covers/38/05/9780684823805.jpg'), - ('0375759778', 'Prague: A Novel', 'https://images.isbndb.com/covers/97/72/9780375759772.jpg'), - ('0425163091', 'Chocolate Jesus', 'https://images.isbndb.com/covers/30/92/9780425163092.jpg'), - ('3404921038', 'Wie Barney Es Sieht. Roman', 'https://images.isbndb.com/covers/10/34/9783404921034.jpg'), - ('3442353866', 'Der Fluch Der Kaiserin', 'https://images.isbndb.com/covers/38/66/9783442353866.jpg'), - ('3442410665', 'Die Sturmzeit-Trilogie: Sturmzeit: Roman: BD 1', 'https://images.isbndb.com/covers/06/68/9783442410668.jpg'), - ('3442446937', 'Tage Der Unschuld', 'https://images.isbndb.com/covers/69/33/9783442446933.jpg'), - ('0375406328', 'Lying Awake', 'https://images.isbndb.com/covers/63/24/9780375406324.jpg'), - ('0446310786', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/07/89/9780446310789.jpg'), - ('0449005615', 'Seabiscuit: An American Legend', 'https://images.isbndb.com/covers/56/13/9780449005613.jpg'), - ('0060168013', 'Pigs In Heaven', 'https://images.isbndb.com/covers/80/18/9780060168018.jpg'), - ('038078243X', 'Miss Zukas And The Raven''s Dance (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/24/37/9780380782437.jpg'), - ('055321215X', 'Pride And Prejudice', 'https://images.isbndb.com/covers/21/50/9780553212150.jpg'), - ('067176537X', 'The Therapeutic Touch: How To Use Your Hands To Help Or To Heal', 'https://images.isbndb.com/covers/53/78/9780671765378.jpg'), - ('0061099686', 'Downtown', 'https://images.isbndb.com/covers/96/87/9780061099687.jpg'), - ('0553582909', 'Icebound', 'https://images.isbndb.com/covers/29/01/9780553582901.jpg'), - ('0671888587', 'I''ll Be Seeing You', 'https://images.isbndb.com/covers/85/89/9780671888589.jpg'), - ('0553582747', 'From The Corner Of His Eye', 'https://images.isbndb.com/covers/27/41/9780553582741.jpg'), - ('0425182908', 'Isle Of Dogs (Andy Brazil)', 'https://images.isbndb.com/covers/29/01/9780425182901.jpg'), - ('042518630X', 'Purity In Death', 'https://images.isbndb.com/covers/63/05/9780425186305.jpg'), - ('0440223571', 'This Year It Will Be Different And Other Stories - A Christmas Treasury', 'https://images.isbndb.com/covers/35/73/9780440223573.jpg'), - ('0812523873', 'Proxies', 'https://images.isbndb.com/covers/38/74/9780812523874.jpg'), - ('0842342702', 'Left Behind: A Novel Of The Earth''s Last Days (Left Behind #1)', 'https://images.isbndb.com/covers/27/04/9780842342704.jpg'), - ('0440225701', 'The Street Lawyer', 'https://images.isbndb.com/covers/57/06/9780440225706.jpg'), - ('0060914068', 'Love, Medicine And Miracles', 'https://images.isbndb.com/covers/40/66/9780060914066.jpg'), - ('0156047624', 'All The King''s Men', 'https://images.isbndb.com/covers/76/23/9780156047623.jpg'), - ('0245542957', 'Pacific Northwest', 'https://images.isbndb.com/covers/29/54/9780245542954.jpg'), - ('0380715899', 'Soldier Of The Great War', 'https://images.isbndb.com/covers/58/93/9780380715893.jpg'), - ('0553280333', 'Getting Well Again: The Bestselling Classic About The Simontons'' Revolutionary Lifesaving Self- Awareness Techniques', 'https://images.isbndb.com/covers/03/33/9780553280333.jpg'), - ('0961769947', 'Northwest Wines And Wineries', 'https://images.isbndb.com/covers/99/49/9780961769949.jpg'), - ('0964778319', 'An Atmosphere Of Eternity: Stories Of India', 'https://images.isbndb.com/covers/83/13/9780964778313.jpg'), - ('0671623249', 'Lonesome Dove', 'https://images.isbndb.com/covers/32/41/9780671623241.jpg'), - ('0679810307', 'Shabanu: Daughter Of The Wind (Border Trilogy)', 'https://images.isbndb.com/covers/03/08/9780679810308.jpg'), - ('0679865691', 'Haveli', 'https://images.isbndb.com/covers/56/98/9780679865698.jpg'), - ('2070423204', 'Lieux Dits', 'https://images.isbndb.com/covers/32/00/9782070423200.jpg'), - ('0345260317', 'The Dragons Of Eden: Speculations On The Evolution Of Human Intelligence', 'https://images.isbndb.com/covers/03/14/9780345260314.jpg'), - ('0394743741', 'The Yawning Heights', 'https://images.isbndb.com/covers/37/45/9780394743745.jpg'), - ('042511774X', 'Breathing Lessons', 'https://images.isbndb.com/covers/77/43/9780425117743.jpg'), - ('0804106304', 'The Joy Luck Club', 'https://images.isbndb.com/covers/63/06/9780804106306.jpg'), - ('1853262404', 'Heart Of Darkness & Other Stories (Wordsworth Collection)', 'https://images.isbndb.com/covers/24/01/9781853262401.jpg'), - ('0312970242', 'Deepak Chopra''s The Angel Is Near', 'https://images.isbndb.com/covers/02/46/9780312970246.jpg'), - ('1853260053', 'Tess Of The D''Urbervilles (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/56/9781853260056.jpg'), - ('1414035004', 'The Adventures Of Drew And Ellie: The Magical Dress', 'https://images.isbndb.com/covers/50/00/9781414035000.jpg'), - ('0060938412', 'The Accidental Virgin', 'https://images.isbndb.com/covers/84/13/9780060938413.jpg'), - ('0140067477', 'The Tao Of Pooh', 'https://images.isbndb.com/covers/74/77/9780140067477.jpg'), - ('0345465083', 'Seabiscuit: An American Legend', 'https://images.isbndb.com/covers/50/85/9780345465085.jpg'), - ('0451625889', 'The Prince (Mentor Series)', 'https://images.isbndb.com/covers/58/85/9780451625885.jpg'), - ('1558531025', 'Life''s Little Instruction Book: 511 Suggestions, Observations, And Reminders On How To Live A Happy And Rewarding Life', 'https://images.isbndb.com/covers/10/24/9781558531024.jpg'), - ('0441783589', 'Starship Troopers', 'https://images.isbndb.com/covers/35/88/9780441783588.jpg'), - ('0394895894', 'The Ruby In The Smoke (Sally Lockhart Trilogy, Book 1)', 'https://images.isbndb.com/covers/58/95/9780394895895.jpg'), - ('1569871213', 'Black Beauty (Illustrated Classics)', 'https://images.isbndb.com/covers/12/18/9781569871218.jpg'), - ('0375410538', 'Anil''s Ghost', 'https://images.isbndb.com/covers/05/36/9780375410536.jpg'), - ('0966986105', 'Prescription For Terror', 'https://images.isbndb.com/covers/61/05/9780966986105.jpg'), - ('087113375X', 'Modern Manners: An Etiquette Book For Rude People', 'https://images.isbndb.com/covers/37/55/9780871133755.jpg'), - ('0340767936', 'Turning Thirty', 'https://images.isbndb.com/covers/79/31/9780340767931.jpg'), - ('0743403843', 'Decipher', 'https://images.isbndb.com/covers/38/49/9780743403849.jpg'), - ('0060930365', 'My First Cousin Once Removed: Money, Madness, And The Family Of Robert Lowell', 'https://images.isbndb.com/covers/03/63/9780060930363.jpg'), - ('0060177586', 'Standing Firm: Dan Quayle', 'https://images.isbndb.com/covers/75/84/9780060177584.jpg'), - ('0071416331', 'Team Bush : Leadership Lessons From The Bush White House', 'https://images.isbndb.com/covers/63/37/9780071416337.jpg'), - ('0375509038', 'The Right Man: The Surprise Presidency Of George W. Bush, An Inside Account', 'https://images.isbndb.com/covers/90/32/9780375509032.jpg'), - ('0553062042', 'The Daybreakers (The Louis L''Amour Collection)', 'https://images.isbndb.com/covers/20/45/9780553062045.jpg'), - ('0316769487', 'The Catcher In The Rye', 'https://images.isbndb.com/covers/94/88/9780316769488.jpg'), - ('0679429220', 'Midnight In The Garden Of Good And Evil', 'https://images.isbndb.com/covers/92/27/9780679429227.jpg'), - ('0671867156', 'Pretend You Don''t See Her', 'https://images.isbndb.com/covers/71/57/9780671867157.jpg'), - ('0312252617', 'Fast Women', 'https://images.isbndb.com/covers/26/18/9780312252618.jpg'), - ('0312261594', 'Female Intelligence', 'https://images.isbndb.com/covers/15/97/9780312261597.jpg'), - ('0316748641', 'Pasquale''s Nose: Idle Days In An Italian Town', 'https://images.isbndb.com/covers/86/43/9780316748643.jpg'), - ('0316973742', 'The Gospel Of Judas: A Novel', 'https://images.isbndb.com/covers/37/48/9780316973748.jpg'), - ('0385235941', 'Prize Stories 1987: The O. Henry Awards', 'https://images.isbndb.com/covers/59/45/9780385235945.jpg'), - ('0446677450', 'Rich Dad, Poor Dad: What The Rich Teach Their Kids About Money--That The Poor And Middle Class Do Not!', 'https://images.isbndb.com/covers/74/55/9780446677455.jpg'), - ('0451166892', 'The Pillars Of The Earth', 'https://images.isbndb.com/covers/68/90/9780451166890.jpg'), - ('0553347594', 'McDonald''s: Behind The Arches', 'https://images.isbndb.com/covers/75/93/9780553347593.jpg'), - ('0671621009', 'Creating Wealth: Retire In Ten Years Using Allen''s Seven Principles Of Wealth!', 'https://images.isbndb.com/covers/10/01/9780671621001.jpg'), - ('067976397X', 'Corelli''s Mandolin: A Novel', 'https://images.isbndb.com/covers/39/70/9780679763970.jpg'), - ('0684822733', 'Love, Miracles, And Animal Healing: A Heartwarming Look At The Spiritual Bond Between Animals And Humans', 'https://images.isbndb.com/covers/27/30/9780684822730.jpg'), - ('0786868716', 'The Five People You Meet In Heaven', 'https://images.isbndb.com/covers/87/11/9780786868711.jpg'), - ('0671864769', 'Relics (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/47/67/9780671864767.jpg'), - ('0671521519', 'Bless The Beasts And Children', 'https://images.isbndb.com/covers/15/16/9780671521516.jpg'), - ('0440222303', 'The Touch Of Your Shadow, The Whisper Of Your Name (Babylon 5, Book 5)', 'https://images.isbndb.com/covers/23/09/9780440222309.jpg'), - ('0312953453', 'Blood Oath', 'https://images.isbndb.com/covers/34/54/9780312953454.jpg'), - ('0446608653', 'The Alibi', 'https://images.isbndb.com/covers/86/57/9780446608657.jpg'), - ('0446612545', 'The Beach House', 'https://images.isbndb.com/covers/25/48/9780446612548.jpg'), - ('0446612618', 'A Kiss Remembered', 'https://images.isbndb.com/covers/26/16/9780446612616.jpg'), - ('0451208080', 'The Short Forever (Stone Barrington)', 'https://images.isbndb.com/covers/80/88/9780451208088.jpg'), - ('0553584383', 'Dead Aim', 'https://images.isbndb.com/covers/43/87/9780553584387.jpg'), - ('0671027360', 'Angels & Demons', 'https://images.isbndb.com/covers/73/60/9780671027360.jpg'), - ('0812575954', 'The Deal', 'https://images.isbndb.com/covers/59/58/9780812575958.jpg'), - ('0316735736', 'All He Ever Wanted: A Novel', 'https://images.isbndb.com/covers/57/35/9780316735735.jpg'), - ('0743439740', 'Every Breath You Take : A True Story Of Obsession, Revenge, And Murder', 'https://images.isbndb.com/covers/97/49/9780743439749.jpg'), - ('0345372700', 'If I Ever Get Back To Georgia, I''m Gonna Nail My Feet To The Ground', 'https://images.isbndb.com/covers/27/03/9780345372703.jpg'), - ('0380619458', 'The Mosquito Coast', 'https://images.isbndb.com/covers/94/50/9780380619450.jpg'), - ('0446325805', 'If Love Were Oil, I''d Be About A Quart Low', 'https://images.isbndb.com/covers/58/06/9780446325806.jpg'), - ('0451406923', 'Good-Bye, My Little Ones: The True Story Of A Murderous Mother And Five Innocent Victims', 'https://images.isbndb.com/covers/69/27/9780451406927.jpg'), - ('0671042858', 'The Girl Who Loved Tom Gordon', 'https://images.isbndb.com/covers/28/51/9780671042851.jpg'), - ('0743249992', 'Bringing Down The House: The Inside Story Of Six M.I.T. Students Who Took Vegas For Millions', 'https://images.isbndb.com/covers/99/97/9780743249997.jpg'), - ('0840734530', 'The Oneprince (The Redaemian Chronicles, Book 1)', 'https://images.isbndb.com/covers/45/32/9780840734532.jpg'), - ('0425184226', 'The Sum Of All Fears', 'https://images.isbndb.com/covers/42/26/9780425184226.jpg'), - ('0375500766', 'Care Packages: Letters To Christopher Reeve From Strangers And Other Friends', 'https://images.isbndb.com/covers/07/63/9780375500763.jpg'), - ('9724119378', 'O Deus Das Pequenas Coisas (Spanish Edition)', 'https://images.isbndb.com/covers/93/73/9789724119373.jpg'), - ('0451205197', 'Lady In Green And Minor Indiscretions (Signet Regency Romance)', 'https://images.isbndb.com/covers/51/93/9780451205193.jpg'), - ('0060929790', 'One Hundred Years Of Solitude', 'https://images.isbndb.com/covers/97/94/9780060929794.jpg'), - ('0060976845', 'Little Altars Everywhere', 'https://images.isbndb.com/covers/68/42/9780060976842.jpg'), - ('0061099325', 'COYOTE WAITS MM (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/93/28/9780061099328.jpg'), - ('0671004573', 'Before I Say Good-Bye', 'https://images.isbndb.com/covers/45/76/9780671004576.jpg'), - ('0446601640', 'Slow Waltz In Cedar Bend', 'https://images.isbndb.com/covers/16/41/9780446601641.jpg'), - ('0330484516', 'Twenty Minute Retreats (A Pan Self-Discovery Title)', 'https://images.isbndb.com/covers/45/10/9780330484510.jpg'), - ('038572179X', 'Atonement: A Novel', 'https://images.isbndb.com/covers/17/90/9780385721790.jpg'), - ('0393020371', 'Next: The Future Just Happened', 'https://images.isbndb.com/covers/03/73/9780393020373.jpg'), - ('1900850303', 'Angelic Darkness', 'https://images.isbndb.com/covers/03/08/9781900850308.jpg'), - ('1903019699', 'The Soulbane Stratagem: Diabolical Subterfuge Which Threatens To Destroy Us...', 'https://images.isbndb.com/covers/96/96/9781903019696.jpg'), - ('0345425294', 'Gangster', 'https://images.isbndb.com/covers/52/94/9780345425294.jpg'), - ('0451410319', 'Hush', 'https://images.isbndb.com/covers/03/13/9780451410313.jpg'), - ('0553583468', 'Whisper Of Evil (Evil Trilogy)', 'https://images.isbndb.com/covers/34/65/9780553583465.jpg'), - ('0380778556', 'Rebecca', 'https://images.isbndb.com/covers/85/53/9780380778553.jpg'), - ('0451525221', 'The Scarlet Letter (Signet Classics)', 'https://images.isbndb.com/covers/52/22/9780451525222.jpg'), - ('0002740230', 'Keep It Simple: And Get More Out Of Life', 'https://images.isbndb.com/covers/02/34/9780002740234.jpg'), - ('0385336772', 'Diary Of A Mad Mom-to-Be', 'https://images.isbndb.com/covers/67/72/9780385336772.jpg'), - ('0440949424', 'Locked In Time', 'https://images.isbndb.com/covers/94/28/9780440949428.jpg'), - ('0505524996', 'Contact', 'https://images.isbndb.com/covers/49/97/9780505524997.jpg'), - ('0140252800', 'Brimstone Wedding', 'https://images.isbndb.com/covers/28/04/9780140252804.jpg'), - ('0451452755', 'The Catswold Portal', 'https://images.isbndb.com/covers/27/57/9780451452757.jpg'), - ('0812575482', 'Through Wolf''s Eyes (Wolf, Book 1)', 'https://images.isbndb.com/covers/54/84/9780812575484.jpg'), - ('044651747X', 'Puerto Vallarta Squeeze', 'https://images.isbndb.com/covers/74/78/9780446517478.jpg'), - ('0060801263', 'A Tree Grows In Brooklyn', 'https://images.isbndb.com/covers/12/67/9780060801267.jpg'), - ('0061030147', 'Cybill Disobedience', 'https://images.isbndb.com/covers/01/47/9780061030147.jpg'), - ('0140250964', 'Snow Angels: A Novel', 'https://images.isbndb.com/covers/09/61/9780140250961.jpg'), - ('0446527165', 'Wish You Well', 'https://images.isbndb.com/covers/71/63/9780446527163.jpg'), - ('0671461494', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/14/92/9780671461492.jpg'), - ('0385337639', 'Crow Lake (Today Show Book Club #7)', 'https://images.isbndb.com/covers/76/32/9780385337632.jpg'), - ('039575514X', 'My Antonia', 'https://images.isbndb.com/covers/51/43/9780395755143.jpg'), - ('0451206673', 'Pen Pals', 'https://images.isbndb.com/covers/66/71/9780451206671.jpg'), - ('0330332775', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/27/74/9780330332774.jpg'), - ('0486284735', 'Pride And Prejudice (Dover Thrift Editions)', 'https://images.isbndb.com/covers/47/36/9780486284736.jpg'), - ('0671021745', 'Eye On Crime: Hardy Boys #153', 'https://images.isbndb.com/covers/17/40/9780671021740.jpg'), - ('0671047612', 'Skin And Bones', 'https://images.isbndb.com/covers/76/10/9780671047610.jpg'), - ('0671504282', 'LAW OF THE JUNGLE (HARDY BOYS CASE FILE 105) (Hardy Boys, The)', 'https://images.isbndb.com/covers/42/81/9780671504281.jpg'), - ('0399138684', 'The Cat Who Came To Breakfast', 'https://images.isbndb.com/covers/86/83/9780399138683.jpg'), - ('0785263292', 'If Singleness Is A Gift, What''s The Return Policy?', 'https://images.isbndb.com/covers/32/96/9780785263296.jpg'), - ('0830714014', 'Always Daddy''s Girl: Understanding Your Father''s Impact On Who You Are', 'https://images.isbndb.com/covers/40/18/9780830714018.jpg'), - ('0345354931', 'Night Mare (The Magic Of Xanth, No. 6)', 'https://images.isbndb.com/covers/49/38/9780345354938.jpg'), - ('0553278223', 'The Martian Chronicles (The Grand Master Editions)', 'https://images.isbndb.com/covers/82/24/9780553278224.jpg'), - ('3150000335', 'Kabale Und Liebe', 'https://images.isbndb.com/covers/03/35/9783150000335.jpg'), - ('3257203659', 'Der Illustrierte Mann', 'https://images.isbndb.com/covers/36/53/9783257203653.jpg'), - ('3257207522', 'Der König In Gelb: Stories', 'https://images.isbndb.com/covers/75/21/9783257207521.jpg'), - ('3257208626', 'Fahrenheit 451', 'https://images.isbndb.com/covers/86/27/9783257208627.jpg'), - ('3257208634', 'Die Mars-Chroniken: Roman In Erzählungen', 'https://images.isbndb.com/covers/86/34/9783257208634.jpg'), - ('3257208669', 'Das Böse Kommt Auf Leisen Sohlen', 'https://images.isbndb.com/covers/86/65/9783257208665.jpg'), - ('3257210450', 'Löwenzahnwein', 'https://images.isbndb.com/covers/04/53/9783257210453.jpg'), - ('3257212054', 'Das Kind Von Morgen. Erzählungen.', 'https://images.isbndb.com/covers/20/51/9783257212051.jpg'), - ('3257212429', 'Die Mechanismen Der Freude. Erzählungen.', 'https://images.isbndb.com/covers/24/26/9783257212426.jpg'), - ('3257214154', 'Familientreffen - Erzählungen', 'https://images.isbndb.com/covers/41/54/9783257214154.jpg'), - ('3257216416', 'Der Tod Kommt Schnell In Mexico. Erzählungen.', 'https://images.isbndb.com/covers/64/17/9783257216417.jpg'), - ('3257233051', 'Veronika Beschließt Zu Sterben', 'https://images.isbndb.com/covers/30/56/9783257233056.jpg'), - ('342311360X', 'Die Liebe In Den Zeiten Der Cholera. Roman.', 'https://images.isbndb.com/covers/36/01/9783423113601.jpg'), - ('3423116714', 'Die Klone Der Joanna May. Roman.', 'https://images.isbndb.com/covers/67/18/9783423116718.jpg'), - ('3423241489', 'Ist Mein Hintern Wirklich So Dick?', 'https://images.isbndb.com/covers/14/89/9783423241489.jpg'), - ('3426605686', 'Haifischfrauen', 'https://images.isbndb.com/covers/56/84/9783426605684.jpg'), - ('3453212150', 'Die Cappuccino Jahre', 'https://images.isbndb.com/covers/21/52/9783453212152.jpg'), - ('3462021095', 'Schwarzer Tee Mit Drei Stück Zucker', 'https://images.isbndb.com/covers/10/97/9783462021097.jpg'), - ('3492045642', 'Querschüsse: Downsize This!', 'https://images.isbndb.com/covers/56/43/9783492045643.jpg'), - ('3498020862', 'Die Korrekturen', 'https://images.isbndb.com/covers/08/66/9783498020866.jpg'), - ('3499110695', 'Neun Erzählungen', 'https://images.isbndb.com/covers/06/96/9783499110696.jpg'), - ('3499151502', 'Hebt Den Dachbalken Hoch, Zimmerleute Und Seymour Wird Vorgestellt', 'https://images.isbndb.com/covers/15/07/9783499151507.jpg'), - ('3518111000', 'Ulysses', 'https://images.isbndb.com/covers/10/00/9783518111000.jpg'), - ('3548254268', 'Eine Ganz Normale Affäre', 'https://images.isbndb.com/covers/42/65/9783548254265.jpg'), - ('3570300099', 'Das Intimleben Des Adrian Mole, 13 3/4 Jahre', 'https://images.isbndb.com/covers/00/91/9783570300091.jpg'), - ('3596292646', 'Das Buch Der Lächerlichen Liebe', 'https://images.isbndb.com/covers/26/46/9783596292646.jpg'), - ('0060977493', 'The God Of Small Things', 'https://images.isbndb.com/covers/74/98/9780060977498.jpg'), - ('0312872682', 'The James Dean Affair: A Neil Gulliver & Stevie Marriner Novel', 'https://images.isbndb.com/covers/26/87/9780312872687.jpg'), - ('0316602906', 'The Big Bad Wolf', 'https://images.isbndb.com/covers/29/07/9780316602907.jpg'), - ('0316693006', 'Four Blind Mice (Alex Cross)', 'https://images.isbndb.com/covers/30/04/9780316693004.jpg'), - ('0345311396', 'Private Screening', 'https://images.isbndb.com/covers/13/99/9780345311399.jpg'), - ('0345378490', 'Congo', 'https://images.isbndb.com/covers/84/91/9780345378491.jpg'), - ('0345404793', 'Protect And Defend', 'https://images.isbndb.com/covers/47/94/9780345404794.jpg'), - ('0345433173', 'The Tall Pine Polka', 'https://images.isbndb.com/covers/31/76/9780345433176.jpg'), - ('0375400117', 'Memoirs Of A Geisha', 'https://images.isbndb.com/covers/01/17/9780375400117.jpg'), - ('0375705856', 'Plainsong', 'https://images.isbndb.com/covers/58/54/9780375705854.jpg'), - ('0380717018', 'Body Of Evidence', 'https://images.isbndb.com/covers/70/19/9780380717019.jpg'), - ('0380718332', 'All That Remains (Patricia Cornwell)', 'https://images.isbndb.com/covers/83/37/9780380718337.jpg'), - ('0380754509', 'The Case Of The Lost Look-Alike (An Avon Camelot Book)', 'https://images.isbndb.com/covers/45/02/9780380754502.jpg'), - ('038076654X', 'Petals On The River', 'https://images.isbndb.com/covers/65/43/9780380766543.jpg'), - ('0380807866', 'The Elusive Flame', 'https://images.isbndb.com/covers/78/64/9780380807864.jpg'), - ('0385316895', 'Legacy Of Silence', 'https://images.isbndb.com/covers/68/97/9780385316897.jpg'), - ('0385497466', 'The Brethren', 'https://images.isbndb.com/covers/74/66/9780385497466.jpg'), - ('0385508042', 'The King Of Torts', 'https://images.isbndb.com/covers/80/49/9780385508049.jpg'), - ('0385509456', 'The Curious Incident Of The Dog In The Night-Time: A Novel', 'https://images.isbndb.com/covers/94/59/9780385509459.jpg'), - ('0385511612', 'Bleachers', 'https://images.isbndb.com/covers/16/12/9780385511612.jpg'), - ('0385730586', 'Sisterhood Of The Traveling Pants (Book 1)', 'https://images.isbndb.com/covers/05/87/9780385730587.jpg'), - ('0425164403', 'Only Love (Magical Love)', 'https://images.isbndb.com/covers/44/02/9780425164402.jpg'), - ('0440234964', 'All Or Nothing', 'https://images.isbndb.com/covers/49/68/9780440234968.jpg'), - ('0446605484', 'Roses Are Red (Alex Cross)', 'https://images.isbndb.com/covers/54/89/9780446605489.jpg'), - ('0446610399', 'The Rescue', 'https://images.isbndb.com/covers/03/91/9780446610391.jpg'), - ('0449006522', 'The Manhattan Hunt Club', 'https://images.isbndb.com/covers/65/28/9780449006528.jpg'), - ('0449911004', 'Patty Jane''s House Of Curl (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/10/06/9780449911006.jpg'), - ('0451162072', 'Pet Sematary (Signet)', 'https://images.isbndb.com/covers/20/76/9780451162076.jpg'), - ('0451186648', 'Silent Snow', 'https://images.isbndb.com/covers/66/45/9780451186645.jpg'), - ('0452282152', 'Girl With A Pearl Earring', 'https://images.isbndb.com/covers/21/55/9780452282155.jpg'), - ('051513290X', 'Summer Of Storms', 'https://images.isbndb.com/covers/29/08/9780515132908.jpg'), - ('0553580388', 'The Patient', 'https://images.isbndb.com/covers/03/89/9780553580389.jpg'), - ('0590598848', 'Demona''s Revenge (Gargoyles, No. 2)', 'https://images.isbndb.com/covers/88/42/9780590598842.jpg'), - ('0590629719', 'Clifford''s Sports Day', 'https://images.isbndb.com/covers/97/13/9780590629713.jpg'), - ('0671023616', 'Postmortem (Kay Scarpetta Mysteries)', 'https://images.isbndb.com/covers/36/14/9780671023614.jpg'), - ('0671027387', 'Deception Point', 'https://images.isbndb.com/covers/73/84/9780671027384.jpg'), - ('0684848783', '''Tis: A Memoir', 'https://images.isbndb.com/covers/87/85/9780684848785.jpg'), - ('0743486226', 'Angels & Demons', 'https://images.isbndb.com/covers/62/24/9780743486224.jpg'), - ('0786863986', 'A Monk Swimming', 'https://images.isbndb.com/covers/39/83/9780786863983.jpg'), - ('0803251718', 'Crazy Horse: The Strange Man Of The Oglalas: A Biography.', 'https://images.isbndb.com/covers/17/17/9780803251717.jpg'), - ('0804117934', 'The Silent Cry (William Monk Novels)', 'https://images.isbndb.com/covers/79/37/9780804117937.jpg'), - ('140003180X', 'The Kalahari Typing School For Men (No. 1 Ladies'' Detective Agency, Book 4)', 'https://images.isbndb.com/covers/18/01/9781400031801.jpg'), - ('155874262X', 'Chicken Soup For The Soul: 101 Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/26/28/9781558742628.jpg'), - ('0060987103', 'Wicked: The Life And Times Of The Wicked Witch Of The West', 'https://images.isbndb.com/covers/71/07/9780060987107.jpg'), - ('0151008116', 'Life Of Pi', 'https://images.isbndb.com/covers/81/17/9780151008117.jpg'), - ('0375704965', 'A Judgement In Stone', 'https://images.isbndb.com/covers/49/63/9780375704963.jpg'), - ('0525947647', 'Lies (And The Lying Liars Who Tell Them): A Fair And Balanced Look At The Right', 'https://images.isbndb.com/covers/76/46/9780525947646.jpg'), - ('0804111359', 'Secret History', 'https://images.isbndb.com/covers/13/55/9780804111355.jpg'), - ('1558744150', 'Chicken Soup For The Woman''s Soul: 101 Stories To Open The Hearts And Rekindle The Spirits Of Women (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/41/58/9781558744158.jpg'), - ('0435272683', 'Great Expectations (Heinemann Guided Readers)', 'https://images.isbndb.com/covers/26/85/9780435272685.jpg'), - ('0316782505', 'The Weight Of Water', 'https://images.isbndb.com/covers/25/00/9780316782500.jpg'), - ('006102063X', 'Moving Pictures', 'https://images.isbndb.com/covers/06/36/9780061020636.jpg'), - ('0060013117', 'Night Watch: A Novel Of Discworld', 'https://images.isbndb.com/covers/31/10/9780060013110.jpg'), - ('0060199563', 'Thief Of Time', 'https://images.isbndb.com/covers/95/62/9780060199562.jpg'), - ('006052779X', 'Charlotte''s Web', 'https://images.isbndb.com/covers/77/92/9780060527792.jpg'), - ('0060563079', 'Peter Pan: The Original Story', 'https://images.isbndb.com/covers/30/73/9780060563073.jpg'), - ('0060809027', 'My Friend Flicka', 'https://images.isbndb.com/covers/90/27/9780060809027.jpg'), - ('0061040967', 'The Last Hero: A Discworld Fable (Discworld Novels)', 'https://images.isbndb.com/covers/09/62/9780061040962.jpg'), - ('0061050474', 'Jingo', 'https://images.isbndb.com/covers/04/73/9780061050473.jpg'), - ('0061052515', 'Maskerade', 'https://images.isbndb.com/covers/25/14/9780061052514.jpg'), - ('0061052523', 'Interesting Times: A Novel Of Discworld', 'https://images.isbndb.com/covers/25/21/9780061052521.jpg'), - ('0064472264', 'On The Bright Side, I''m Now The Girlfriend Of A Sex God: Further Confessions Of Georgia Nicolson (Confessions Of Georgia Nicolson, Book 2)', 'https://images.isbndb.com/covers/22/65/9780064472265.jpg'), - ('0140620664', 'Mansfield Park (Penguin Popular Classics)', 'https://images.isbndb.com/covers/06/65/9780140620665.jpg'), - ('0312148267', 'The Wind In The Willows (Thomas Dunne Books)', 'https://images.isbndb.com/covers/82/63/9780312148263.jpg'), - ('0312156960', 'The Winter King (The Arthur Books #1)', 'https://images.isbndb.com/covers/69/61/9780312156961.jpg'), - ('0312890044', 'Moonheart', 'https://images.isbndb.com/covers/00/49/9780312890049.jpg'), - ('034543191X', 'The King Of Elfland''s Daughter (Del Rey Impact)', 'https://images.isbndb.com/covers/19/12/9780345431912.jpg'), - ('0373836023', 'Powder And Patch', 'https://images.isbndb.com/covers/60/24/9780373836024.jpg'), - ('0375751513', 'The Picture Of Dorian Gray (Modern Library Classics)', 'https://images.isbndb.com/covers/15/16/9780375751516.jpg'), - ('0375801677', 'The Iron Giant', 'https://images.isbndb.com/covers/16/79/9780375801679.jpg'), - ('0375814248', 'James And The Giant Peach', 'https://images.isbndb.com/covers/42/42/9780375814242.jpg'), - ('0375823352', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/33/50/9780375823350.jpg'), - ('037582345X', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/34/59/9780375823459.jpg'), - ('0375823468', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/34/66/9780375823466.jpg'), - ('0380730448', 'The Adrian Mole Diaries : The Secret Diary Of Adrian Mole, Aged 13 3/4 : The Growing Pains Of Adrian Mole', 'https://images.isbndb.com/covers/04/45/9780380730445.jpg'), - ('0380973839', 'The Martian Chronicles', 'https://images.isbndb.com/covers/38/35/9780380973835.jpg'), - ('0385327773', 'The Great God Pan', 'https://images.isbndb.com/covers/77/70/9780385327770.jpg'), - ('0394586239', 'Possession: A Romance', 'https://images.isbndb.com/covers/62/36/9780394586236.jpg'), - ('0439510112', 'Born Confused', 'https://images.isbndb.com/covers/01/10/9780439510110.jpg'), - ('0440241413', 'Confessions Of A Shopaholic (Shopaholic Series)', 'https://images.isbndb.com/covers/14/16/9780440241416.jpg'), - ('0451409256', 'Making Minty Malone', 'https://images.isbndb.com/covers/92/56/9780451409256.jpg'), - ('0451523415', 'Little Women (Signet Classics)', 'https://images.isbndb.com/covers/34/19/9780451523419.jpg'), - ('0451526279', 'Emma (Signet Classics)', 'https://images.isbndb.com/covers/62/74/9780451526274.jpg'), - ('0451526341', 'Animal Farm', 'https://images.isbndb.com/covers/63/42/9780451526342.jpg'), - ('0486415864', 'Great Expectations (Dover Thrift Editions)', 'https://images.isbndb.com/covers/58/64/9780486415864.jpg'), - ('0553280589', 'Eva Luna', 'https://images.isbndb.com/covers/05/86/9780553280586.jpg'), - ('0571197639', 'Poisonwood Bible Edition Uk', 'https://images.isbndb.com/covers/76/37/9780571197637.jpg'), - ('0670035262', 'The Green Man : Tales From The Mythic Forest', 'https://images.isbndb.com/covers/52/67/9780670035267.jpg'), - ('0679423079', 'Nicholas Nickleby (Everyman''s Library (Cloth))', 'https://images.isbndb.com/covers/30/72/9780679423072.jpg'), - ('0679751343', 'Angels & Insects: Two Novellas', 'https://images.isbndb.com/covers/13/42/9780679751342.jpg'), - ('0684833395', 'Catch-22', 'https://images.isbndb.com/covers/33/92/9780684833392.jpg'), - ('0743245024', 'The Forsyte Saga (The Man Of Property; In Chancery; To Let)', 'https://images.isbndb.com/covers/50/29/9780743245029.jpg'), - ('0749748001', 'Enchanted Wood', 'https://images.isbndb.com/covers/80/05/9780749748005.jpg'), - ('0749748028', 'Folk Of The Faraway Tree', 'https://images.isbndb.com/covers/80/29/9780749748029.jpg'), - ('0963094424', 'Angels And Visitations: A Miscellany', 'https://images.isbndb.com/covers/44/21/9780963094421.jpg'), - ('1401201172', 'League Of Extraordinary Gentlemen (Vol. 2 )', 'https://images.isbndb.com/covers/11/73/9781401201173.jpg'), - ('1563892278', 'The Sandman Vol. 1: Preludes And Nocturnes', 'https://images.isbndb.com/covers/22/71/9781563892271.jpg'), - ('1563898586', 'The League Of Extraordinary Gentlemen, Vol. 1', 'https://images.isbndb.com/covers/85/87/9781563898587.jpg'), - ('156971620X', 'Harlequin Valentine', 'https://images.isbndb.com/covers/62/05/9781569716205.jpg'), - ('1592571301', 'American Sign Language In 24 Hours (Alpha Teach Yourself In 24 Hours)', 'https://images.isbndb.com/covers/13/07/9781592571307.jpg'), - ('0374270325', 'A Man In Full', 'https://images.isbndb.com/covers/03/22/9780374270322.jpg'), - ('0375719180', 'The Miracle Life Of Edgar Mint: A Novel', 'https://images.isbndb.com/covers/91/89/9780375719189.jpg'), - ('0440235502', 'October Sky (The Coalwood Series #1)', 'https://images.isbndb.com/covers/55/07/9780440235507.jpg'), - ('044023722X', 'A Painted House', 'https://images.isbndb.com/covers/72/28/9780440237228.jpg'), - ('1573225487', 'The Romance Reader', 'https://images.isbndb.com/covers/54/89/9781573225489.jpg'), - ('1853260673', 'Far From The Madding Crowd (Wordsworth Classics) (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/74/9781853260674.jpg'), - ('0060977477', 'The Perfect Storm: A True Story Of Men Against The Sea', 'https://images.isbndb.com/covers/74/74/9780060977474.jpg'), - ('0345391691', 'The Battle For God', 'https://images.isbndb.com/covers/16/98/9780345391698.jpg'), - ('0520011171', 'Sappho: A New Translation', 'https://images.isbndb.com/covers/11/75/9780520011175.jpg'), - ('0553278746', 'The Postman', 'https://images.isbndb.com/covers/87/43/9780553278743.jpg'), - ('0670856045', 'The Tortilla Curtain', 'https://images.isbndb.com/covers/60/46/9780670856046.jpg'), - ('0872200760', 'Symposium', 'https://images.isbndb.com/covers/07/60/9780872200760.jpg'), - ('0937858994', 'The What''s Happening To My Body? Book For Boys: A Growing Up Guide For Parents And Sons', 'https://images.isbndb.com/covers/89/98/9780937858998.jpg'), - ('0671649949', 'The Object Of My Affection', 'https://images.isbndb.com/covers/99/44/9780671649944.jpg'), - ('0590431110', 'The Journey Home', 'https://images.isbndb.com/covers/11/18/9780590431118.jpg'), - ('0064470113', 'Taking The Ferry Home', 'https://images.isbndb.com/covers/01/17/9780064470117.jpg'), - ('0553571486', 'Angel Of Hope (Mercy Trilogy)', 'https://images.isbndb.com/covers/14/86/9780553571486.jpg'), - ('0972044205', 'The Breach', 'https://images.isbndb.com/covers/42/02/9780972044202.jpg'), - ('0312963009', 'Neanderthal', 'https://images.isbndb.com/covers/30/02/9780312963002.jpg'), - ('0345430476', 'A Small Dark Place', 'https://images.isbndb.com/covers/04/72/9780345430472.jpg'), - ('0345435869', 'The Rivan Codex: Ancient Texts Of THE BELGARIAD And THE MALLOREON', 'https://images.isbndb.com/covers/58/66/9780345435866.jpg'), - ('0380728729', 'Babyhood', 'https://images.isbndb.com/covers/87/25/9780380728725.jpg'), - ('038081840X', 'Year''s Best Fantasy', 'https://images.isbndb.com/covers/84/02/9780380818402.jpg'), - ('0449912302', 'Dave Barry In Cyberspace', 'https://images.isbndb.com/covers/23/00/9780449912300.jpg'), - ('055329198X', 'Wolf Moon', 'https://images.isbndb.com/covers/19/88/9780553291988.jpg'), - ('0671018930', 'Eternal Warriors: The War In Heaven (Book One)', 'https://images.isbndb.com/covers/89/31/9780671018931.jpg'), - ('0812541642', 'Waiting', 'https://images.isbndb.com/covers/16/49/9780812541649.jpg'), - ('0312988699', 'Nowhere To Run', 'https://images.isbndb.com/covers/86/92/9780312988692.jpg'), - ('0486282112', 'Frankenstein (Dover Thrift Editions)', 'https://images.isbndb.com/covers/21/14/9780486282114.jpg'), - ('0670815373', 'Urn Burial', 'https://images.isbndb.com/covers/53/71/9780670815371.jpg'), - ('0385313748', 'All Our Yesterdays', 'https://images.isbndb.com/covers/37/42/9780385313742.jpg'), - ('1575843366', 'What Shall I Be (Barbie Carryalong)', 'https://images.isbndb.com/covers/33/60/9781575843360.jpg'), - ('0684193957', 'All That Remains', 'https://images.isbndb.com/covers/39/53/9780684193953.jpg'), - ('0345371984', 'Last Chance To See', 'https://images.isbndb.com/covers/19/80/9780345371980.jpg'), - ('0380730138', 'Vinegar Hill (Oprah''s Book Club)', 'https://images.isbndb.com/covers/01/31/9780380730131.jpg'), - ('1573228737', 'Affinity', 'https://images.isbndb.com/covers/87/32/9781573228732.jpg'), - ('9681500555', 'Diario De Ana Frank', 'https://images.isbndb.com/covers/05/59/9789681500559.jpg'), - ('0380711109', 'Desert Notes: Reflections In The Eye Of A Ravens And River Notes: The Dance Of Herons', 'https://images.isbndb.com/covers/11/09/9780380711109.jpg'), - ('0452283914', 'The Best Democracy Money Can Buy: The Truth About Corporate Cons, Globalization And High-Finance Fraudsters', 'https://images.isbndb.com/covers/39/16/9780452283916.jpg'), - ('0425120279', 'The Hunt For Red October', 'https://images.isbndb.com/covers/02/79/9780425120279.jpg'), - ('067153484X', 'The Music Box', 'https://images.isbndb.com/covers/48/44/9780671534844.jpg'), - ('0380728273', 'Liberty Falling (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/82/75/9780380728275.jpg'), - ('0446606197', 'Killer Market (Deborah Knott Mysteries)', 'https://images.isbndb.com/covers/61/96/9780446606196.jpg'), - ('0771076002', 'Remembering Peter Gzowski: A Book Of Tributes', 'https://images.isbndb.com/covers/60/08/9780771076008.jpg'), - ('0771088191', 'The Best Canadian Animal Stories: Classic Tales By Master Storytellers', 'https://images.isbndb.com/covers/81/93/9780771088193.jpg'), - ('1559703237', 'Trying To Save Piggy Sneed', 'https://images.isbndb.com/covers/32/39/9781559703239.jpg'), - ('3596214629', 'Herr Der Fliegen', 'https://images.isbndb.com/covers/46/24/9783596214624.jpg'), - ('0062770500', 'Access: Seattle (Access Guides)', 'https://images.isbndb.com/covers/05/09/9780062770509.jpg'), - ('0671847546', 'Real Guide: California And The West Coast (The Real Guides)', 'https://images.isbndb.com/covers/75/48/9780671847548.jpg'), - ('0060188731', 'Bel Canto: A Novel', 'https://images.isbndb.com/covers/87/33/9780060188733.jpg'), - ('0140374248', 'James And The Giant Peach', 'https://images.isbndb.com/covers/42/47/9780140374247.jpg'), - ('0142001740', 'The Secret Life Of Bees - A Novel', 'https://images.isbndb.com/covers/17/45/9780142001745.jpg'), - ('0195086295', 'What A Wonderful World: A Lifetime Of Recordings', 'https://images.isbndb.com/covers/62/94/9780195086294.jpg'), - ('0312995423', 'Digital Fortress: A Thriller', 'https://images.isbndb.com/covers/54/23/9780312995423.jpg'), - ('0380704587', 'The Ladies Of Missalonghi', 'https://images.isbndb.com/covers/45/83/9780380704583.jpg'), - ('0380815923', 'Blackberry Wine: A Novel', 'https://images.isbndb.com/covers/59/20/9780380815920.jpg'), - ('0385416342', 'The Firm', 'https://images.isbndb.com/covers/63/44/9780385416344.jpg'), - ('0385418493', 'How The Irish Saved Civilization (Hinges Of History)', 'https://images.isbndb.com/covers/84/92/9780385418492.jpg'), - ('038542471X', 'The Client', 'https://images.isbndb.com/covers/47/14/9780385424714.jpg'), - ('0425098109', 'Thieves Of Light (Photon : The Ultimate Game On Planet Earth)', 'https://images.isbndb.com/covers/81/03/9780425098103.jpg'), - ('0449005410', 'Horse Heaven (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/54/15/9780449005415.jpg'), - ('0449202631', 'The Danger', 'https://images.isbndb.com/covers/26/30/9780449202630.jpg'), - ('0449207544', 'Proof', 'https://images.isbndb.com/covers/75/43/9780449207543.jpg'), - ('0515128554', 'Heart Of The Sea (Irish Trilogy, Book 3)', 'https://images.isbndb.com/covers/85/50/9780515128550.jpg'), - ('0517577402', 'Mostly Harmless', 'https://images.isbndb.com/covers/74/00/9780517577400.jpg'), - ('0590450875', 'I Spy: A Book Of Picture Riddles', 'https://images.isbndb.com/covers/08/74/9780590450874.jpg'), - ('0590481371', 'I Spy Spooky Night: A Book Of Picture Riddles', 'https://images.isbndb.com/covers/13/73/9780590481373.jpg'), - ('067103619X', 'Lake News', 'https://images.isbndb.com/covers/61/95/9780671036195.jpg'), - ('0684177730', 'The SKULL BENEATH THE SKIN', 'https://images.isbndb.com/covers/77/31/9780684177731.jpg'), - ('0684180200', 'The New Shoe', 'https://images.isbndb.com/covers/02/05/9780684180205.jpg'), - ('0743411269', 'An Accidental Woman', 'https://images.isbndb.com/covers/12/64/9780743411264.jpg'), - ('0743470389', 'The Snow Garden', 'https://images.isbndb.com/covers/03/84/9780743470384.jpg'), - ('076218857X', 'The Doorbell Rang (The Best Mysteries Of All Time)', 'https://images.isbndb.com/covers/85/74/9780762188574.jpg'), - ('0767905938', 'A Year By The Sea: Thoughts Of An Unfinished Woman', 'https://images.isbndb.com/covers/59/30/9780767905930.jpg'), - ('0800706544', 'Though I Walk Through The Valley', 'https://images.isbndb.com/covers/65/48/9780800706548.jpg'), - ('0801096677', 'Victorious Christians You Should Know', 'https://images.isbndb.com/covers/66/79/9780801096679.jpg'), - ('0849953014', 'Life Lessons With Max Lucado: Book Of Hebrews', 'https://images.isbndb.com/covers/30/19/9780849953019.jpg'), - ('0891091963', 'Inside Out: Real Change Is Possible If You''re Willing To Start From The Inside Out', 'https://images.isbndb.com/covers/19/67/9780891091967.jpg'), - ('0915811537', 'Son Rise: The Miracle Continues', 'https://images.isbndb.com/covers/15/33/9780915811533.jpg'), - ('0927545373', 'Unveiled At Last: Discover God''s Hidden Message From Genesis To Revelation', 'https://images.isbndb.com/covers/53/72/9780927545372.jpg'), - ('1575024179', 'The Day I Almost Quit', 'https://images.isbndb.com/covers/41/72/9781575024172.jpg'), - ('1880185008', 'Serving As Senders: How To Care For Your Missionaries While They Are Preparing To Go, While They Are On The Field, When They Return Home', 'https://images.isbndb.com/covers/50/01/9781880185001.jpg'), - ('0140345809', 'House Of Stairs', 'https://images.isbndb.com/covers/58/03/9780140345803.jpg'), - ('0156528207', 'The Little Prince', 'https://images.isbndb.com/covers/82/07/9780156528207.jpg'), - ('0380012863', 'Jonathan Livingston Seagull', 'https://images.isbndb.com/covers/28/62/9780380012862.jpg'), - ('0451154916', 'The Crystal Handbook (Signet)', 'https://images.isbndb.com/covers/49/10/9780451154910.jpg'), - ('0785815147', 'Simple Wicca (Simple Wisdom Book)', 'https://images.isbndb.com/covers/51/43/9780785815143.jpg'), - ('0875421288', 'The Complete Book Of Incense, Oils And Brews (Llewellyn''s Practical Magick)', 'https://images.isbndb.com/covers/12/85/9780875421285.jpg'), - ('1567184294', 'The Western Mysteries: An Encyclopedic Guide To The Sacred Languages & Magickal Systems Of The World- The Key Of It All, Book 2 (Llewellyn Sourcebook Series)', 'https://images.isbndb.com/covers/42/97/9781567184297.jpg'), - ('156718796X', 'Astral Travel For Beginners: Transcend Time And Space With Out-of-Body Experiences (For Beginners (Llewellyn''s))', 'https://images.isbndb.com/covers/79/60/9781567187960.jpg'), - ('1862047626', 'New Perspectives: Runes', 'https://images.isbndb.com/covers/76/24/9781862047624.jpg'), - ('0020437501', 'Rosie''S Walk', 'https://images.isbndb.com/covers/75/05/9780020437505.jpg'), - ('0198320264', 'Julius Caesar (Oxford School Shakespeare)', 'https://images.isbndb.com/covers/02/65/9780198320265.jpg'), - ('0373196989', 'Santa Brought A Son: Marrying The Boss''s Daughter (Silhouette Romance)', 'https://images.isbndb.com/covers/69/82/9780373196982.jpg'), - ('0373245580', 'Marry Me ... Again: Montana Mavericks (Silhouette Special Edition)', 'https://images.isbndb.com/covers/55/81/9780373245581.jpg'), - ('0451527747', 'Alice''s Adventures In Wonderland And Through The Looking Glass (Signet Classics)', 'https://images.isbndb.com/covers/77/45/9780451527745.jpg'), - ('0671867113', 'Moonlight Becomes You', 'https://images.isbndb.com/covers/71/19/9780671867119.jpg'), - ('0812504208', 'The Adventures Of Tom Sawyer', 'https://images.isbndb.com/covers/42/00/9780812504200.jpg'), - ('0060173289', 'Divine Secrets Of The Ya-Ya Sisterhood: A Novel', 'https://images.isbndb.com/covers/32/89/9780060173289.jpg'), - ('0060973897', 'Lakota Woman', 'https://images.isbndb.com/covers/38/96/9780060973896.jpg'), - ('006101351X', 'The Perfect Storm: A True Story Of Men Against The Sea', 'https://images.isbndb.com/covers/35/15/9780061013515.jpg'), - ('0140104682', 'Heroes Of Their Own Lives: The Politics And History Of Family Violence', 'https://images.isbndb.com/covers/46/84/9780140104684.jpg'), - ('0312143370', 'The Florence King Reader', 'https://images.isbndb.com/covers/33/74/9780312143374.jpg'), - ('0316666343', 'The Lovely Bones: A Novel', 'https://images.isbndb.com/covers/63/43/9780316666343.jpg'), - ('039456894X', 'Impossible Vacation', 'https://images.isbndb.com/covers/89/42/9780394568942.jpg'), - ('0440224675', 'Hannibal', 'https://images.isbndb.com/covers/46/79/9780440224679.jpg'), - ('0449002632', 'London: The Novel', 'https://images.isbndb.com/covers/26/36/9780449002636.jpg'), - ('0449213773', 'Life Before Man', 'https://images.isbndb.com/covers/37/73/9780449213773.jpg'), - ('0452279690', 'Cavedweller: A Novel', 'https://images.isbndb.com/covers/96/98/9780452279698.jpg'), - ('0553569058', 'The Robber Bride', 'https://images.isbndb.com/covers/90/56/9780553569056.jpg'), - ('0679427430', 'Wouldn''t Take Nothing For My Journey Now', 'https://images.isbndb.com/covers/74/38/9780679427438.jpg'), - ('0679725393', 'House Of Mirth', 'https://images.isbndb.com/covers/53/98/9780679725398.jpg'), - ('0802114369', 'Ohitika Woman', 'https://images.isbndb.com/covers/43/65/9780802114365.jpg'), - ('0803233019', 'Black Elk Speaks: Being The Life Story Of A Holy Man Of The Oglala Sioux', 'https://images.isbndb.com/covers/30/10/9780803233010.jpg'), - ('0819154946', 'The Community In America', 'https://images.isbndb.com/covers/49/41/9780819154941.jpg'), - ('0897322339', 'The Best In Tent Camping: Smoky Mountains : A Guide For Campers Who Hate Rvs, Concrete Slabs, And Loud Portable Stereos (Best In Tent Camping Colorado)', 'https://images.isbndb.com/covers/23/31/9780897322331.jpg'), - ('0940322978', 'Mawrdew Czgowchwz (New York Review Books Classics)', 'https://images.isbndb.com/covers/29/74/9780940322974.jpg'), - ('1573225126', 'Prozac Nation', 'https://images.isbndb.com/covers/51/20/9781573225120.jpg'), - ('1579651658', 'The Journey From Here', 'https://images.isbndb.com/covers/16/57/9781579651657.jpg'), - ('1878424319', 'The Four Agreements: A Practical Guide To Personal Freedom (A Toltec Wisdom Book)', 'https://images.isbndb.com/covers/43/10/9781878424310.jpg'), - ('0600586898', 'Blur (Melody Maker)', 'https://images.isbndb.com/covers/68/90/9780600586890.jpg'), - ('1853260622', 'War And Peace (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/29/9781853260629.jpg'), - ('1857938011', 'A-Z Of Behaving Badly', 'https://images.isbndb.com/covers/80/12/9781857938012.jpg'), - ('0060804157', 'He Understanding Masculine Psychology (Perennial Library)', 'https://images.isbndb.com/covers/41/52/9780060804152.jpg'), - ('0140382658', 'You Can Surf The Net!: Your Guide To The World Of The Internet', 'https://images.isbndb.com/covers/26/55/9780140382655.jpg'), - ('0152012966', 'I Want To Be A Veterinarian', 'https://images.isbndb.com/covers/29/60/9780152012960.jpg'), - ('0312283784', 'Alice''s Tulips: A Novel', 'https://images.isbndb.com/covers/37/80/9780312283780.jpg'), - ('0345297709', 'Centaur Aisle (The Magic Of Xanth, No. 4)', 'https://images.isbndb.com/covers/77/09/9780345297709.jpg'), - ('0345313097', 'Crewel Lye: A Caustic Yarn (The Magic Of Xanth, No. 8)', 'https://images.isbndb.com/covers/30/96/9780345313096.jpg'), - ('0345335465', 'Dragonflight (Dragonriders Of Pern - Volume 1)', 'https://images.isbndb.com/covers/54/63/9780345335463.jpg'), - ('0345416848', 'Last Sword Of Power', 'https://images.isbndb.com/covers/68/41/9780345416841.jpg'), - ('0385333404', 'Dating Big Bird', 'https://images.isbndb.com/covers/34/05/9780385333405.jpg'), - ('044021145X', 'The Firm', 'https://images.isbndb.com/covers/14/57/9780440211457.jpg'), - ('0449212084', 'Murder At The Kennedy Center (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/20/80/9780449212080.jpg'), - ('0553582682', 'Guinness World Records 2000 (Guinness Book Of Records, 2000)', 'https://images.isbndb.com/covers/26/80/9780553582680.jpg'), - ('0590947257', 'Forever Amber Brown', 'https://images.isbndb.com/covers/72/51/9780590947251.jpg'), - ('074345829X', 'The Dungeon', 'https://images.isbndb.com/covers/82/90/9780743458290.jpg'), - ('0786913878', 'Pool Of Radiance: The Ruins Of Myth Drannor (Forgotten Realms)', 'https://images.isbndb.com/covers/38/79/9780786913879.jpg'), - ('0801491827', 'Feminism And Suffrage: The Emergence Of An Independent Women''s Movement In America, 1848-1869', 'https://images.isbndb.com/covers/18/25/9780801491825.jpg'), - ('0816729913', 'Why Are Boys So Weird (Tales From Third Grade)', 'https://images.isbndb.com/covers/99/13/9780816729913.jpg'), - ('0843136685', 'Sheldon And Mrs. Levine, An Excruciating Correspondence', 'https://images.isbndb.com/covers/66/85/9780843136685.jpg'), - ('0866119531', 'Black Beauty (Great Illustrated Classics (Playmore))', 'https://images.isbndb.com/covers/95/35/9780866119535.jpg'), - ('0866119566', 'Oliver Twist (Great Illustrated Classics)', 'https://images.isbndb.com/covers/95/66/9780866119566.jpg'), - ('0870441663', 'The Wild Ponies Of Assateague Island (Books For Young Explorers)', 'https://images.isbndb.com/covers/16/60/9780870441660.jpg'), - ('1561561428', 'Frankenstein (Illustrated Classics Series)', 'https://images.isbndb.com/covers/14/21/9781561561421.jpg'), - ('0553210092', 'The Scarlet Letter (Bantam Classics)', 'https://images.isbndb.com/covers/00/95/9780553210095.jpg'), - ('0553258524', 'Dragonsong (Volume One Of The Harper Hall Trilogy)', 'https://images.isbndb.com/covers/85/23/9780553258523.jpg'), - ('0688163726', 'The Watch House', 'https://images.isbndb.com/covers/37/23/9780688163723.jpg'), - ('1569471096', 'Was It Something I Said?', 'https://images.isbndb.com/covers/10/98/9781569471098.jpg'), - ('055358099X', 'Cloud Nine', 'https://images.isbndb.com/covers/09/90/9780553580990.jpg'), - ('0316168815', 'The Lovely Bones', 'https://images.isbndb.com/covers/88/16/9780316168816.jpg'), - ('014023828X', 'The Tortilla Curtain', 'https://images.isbndb.com/covers/82/80/9780140238280.jpg'), - ('0316314927', 'Sarah Conley', 'https://images.isbndb.com/covers/49/23/9780316314923.jpg'), - ('0345424719', 'A Widow For One Year', 'https://images.isbndb.com/covers/47/16/9780345424716.jpg'), - ('0375414746', 'The Clearing', 'https://images.isbndb.com/covers/47/49/9780375414749.jpg'), - ('0375726403', 'Empire Falls', 'https://images.isbndb.com/covers/64/08/9780375726408.jpg'), - ('0385503857', 'Oryx And Crake', 'https://images.isbndb.com/covers/38/53/9780385503853.jpg'), - ('0425156842', 'Sophie''s World: A Novel About The History Of Philosophy (Berkeley Signature Edition)', 'https://images.isbndb.com/covers/68/41/9780425156841.jpg'), - ('0440226104', 'Black And Blue: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/61/09/9780440226109.jpg'), - ('0452277337', 'Le Divorce (William Abrahams Book)', 'https://images.isbndb.com/covers/73/35/9780452277335.jpg'), - ('0553802488', 'The Face', 'https://images.isbndb.com/covers/24/81/9780553802481.jpg'), - ('0671021001', 'She''s Come Undone (Oprah''s Book Club)', 'https://images.isbndb.com/covers/10/09/9780671021009.jpg'), - ('0767903579', 'Falling Leaves: The Memoir Of An Unwanted Chinese Daughter', 'https://images.isbndb.com/covers/35/78/9780767903578.jpg'), - ('0805063897', 'Nickel And Dimed: On (Not) Getting By In America', 'https://images.isbndb.com/covers/38/99/9780805063899.jpg'), - ('0679777431', 'The Game Of Kings (Lymond Chronicles, 1)', 'https://images.isbndb.com/covers/74/34/9780679777434.jpg'), - ('0553285343', 'The Russia House', 'https://images.isbndb.com/covers/53/45/9780553285345.jpg'), - ('0486285529', 'Solv-a-Crime Puzzles (Dover Game & Puzzle Activity Books)', 'https://images.isbndb.com/covers/55/28/9780486285528.jpg'), - ('0671002481', 'The First Wives Club Movie Tie In', 'https://images.isbndb.com/covers/24/80/9780671002480.jpg'), - ('0812523385', 'Selected Poems Of Emily Dickinson', 'https://images.isbndb.com/covers/33/86/9780812523386.jpg'), - ('0895774666', 'Watercolor School (Learn As You Go)', 'https://images.isbndb.com/covers/46/68/9780895774668.jpg'), - ('0020199090', 'Joshua In The Holy Land', 'https://images.isbndb.com/covers/90/90/9780020199090.jpg'), - ('0385495145', 'The Messenger', 'https://images.isbndb.com/covers/51/41/9780385495141.jpg'), - ('0679733825', 'Sisters Of The Earth: Women''s Prose And Poetry About Nature', 'https://images.isbndb.com/covers/38/29/9780679733829.jpg'), - ('0842329129', 'Left Behind: A Novel Of The Earth''s Last Days (Left Behind No. 1)', 'https://images.isbndb.com/covers/91/25/9780842329125.jpg'), - ('0345451260', 'Househusband', 'https://images.isbndb.com/covers/12/62/9780345451262.jpg'), - ('0740700235', 'Life Messages: Inspiration For The Woman''s Spirit', 'https://images.isbndb.com/covers/02/31/9780740700231.jpg'), - ('0380973545', 'Letters From A Nut', 'https://images.isbndb.com/covers/35/45/9780380973545.jpg'), - ('0393321576', 'Karl Marx: A Life', 'https://images.isbndb.com/covers/15/79/9780393321579.jpg'), - ('0743424425', 'The Shining', 'https://images.isbndb.com/covers/44/24/9780743424424.jpg'), - ('0786868015', 'The Diary Of Ellen Rimbauer: My Life At Rose Red', 'https://images.isbndb.com/covers/80/18/9780786868018.jpg'), - ('0446610178', 'The Sky Is Falling', 'https://images.isbndb.com/covers/01/79/9780446610179.jpg'), - ('0684854953', 'Santa & Pete: A Novel Of Christmas Present And Past', 'https://images.isbndb.com/covers/49/53/9780684854953.jpg'), - ('0743229878', 'Mount Vernon Love Story: A Novel Of George And Martha Washington', 'https://images.isbndb.com/covers/98/76/9780743229876.jpg'), - ('0380617625', 'The Kingdom: Arabia And The House Of Sa''Ud', 'https://images.isbndb.com/covers/76/23/9780380617623.jpg'), - ('0380732335', 'Florida Road Kill: A Novel', 'https://images.isbndb.com/covers/23/33/9780380732333.jpg'), - ('0385337132', 'The 37th Hour', 'https://images.isbndb.com/covers/71/37/9780385337137.jpg'), - ('0440235057', 'Be Cool', 'https://images.isbndb.com/covers/50/57/9780440235057.jpg'), - ('0445402040', 'The Hunted', 'https://images.isbndb.com/covers/20/41/9780445402041.jpg'), - ('0618119760', 'The Saints Of Big Harbour: A Novel', 'https://images.isbndb.com/covers/97/69/9780618119769.jpg'), - ('0871138646', 'Old Flames', 'https://images.isbndb.com/covers/86/44/9780871138644.jpg'), - ('0026329859', 'From The Earth: Chinese Vegetarian Cooking', 'https://images.isbndb.com/covers/98/59/9780026329859.jpg'), - ('0060621257', 'Living In The Presence: Disciplines For The Spiritual Heart', 'https://images.isbndb.com/covers/12/54/9780060621254.jpg'), - ('0060915544', 'The Bean Trees', 'https://images.isbndb.com/covers/55/44/9780060915544.jpg'), - ('0060917016', 'Homeland And Other Stories', 'https://images.isbndb.com/covers/70/12/9780060917012.jpg'), - ('0060925000', 'A Suitable Boy', 'https://images.isbndb.com/covers/50/00/9780060925000.jpg'), - ('0060932759', 'Daughter Of Fortune', 'https://images.isbndb.com/covers/27/56/9780060932756.jpg'), - ('0061000280', 'The Fly On The Wall', 'https://images.isbndb.com/covers/02/87/9780061000287.jpg'), - ('0192815318', 'Cranford (The World''s Classics)', 'https://images.isbndb.com/covers/53/16/9780192815316.jpg'), - ('0312195516', 'The Red Tent', 'https://images.isbndb.com/covers/55/19/9780312195519.jpg'), - ('0380792664', 'The Right Hand Of Amon', 'https://images.isbndb.com/covers/26/65/9780380792665.jpg'), - ('0393048977', 'Last Blue: Poems', 'https://images.isbndb.com/covers/89/71/9780393048971.jpg'), - ('0399137807', 'The Cat Who Wasn''t There', 'https://images.isbndb.com/covers/78/08/9780399137808.jpg'), - ('039914739X', 'Isle Of Dogs', 'https://images.isbndb.com/covers/73/95/9780399147395.jpg'), - ('0451203046', 'Light A Penny Candle', 'https://images.isbndb.com/covers/30/45/9780451203045.jpg'), - ('0451410556', 'The Blue Last', 'https://images.isbndb.com/covers/05/59/9780451410559.jpg'), - ('0451523318', 'The Turn Of The Screw And Other Short Novels (Signet Classics)', 'https://images.isbndb.com/covers/33/10/9780451523310.jpg'), - ('0486281965', 'The Country Of The Pointed Firs (Dover Thrift Editions)', 'https://images.isbndb.com/covers/19/64/9780486281964.jpg'), - ('0486292940', 'Early Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/29/46/9780486292946.jpg'), - ('051762639X', 'Barchester Towers (Oxford Pocket Classics)', 'https://images.isbndb.com/covers/63/99/9780517626399.jpg'), - ('0684824442', 'The Reef', 'https://images.isbndb.com/covers/44/44/9780684824444.jpg'), - ('0743458303', 'Wednesday The Rabbi Got Wet', 'https://images.isbndb.com/covers/83/06/9780743458306.jpg'), - ('081296666X', 'Things My Girlfriend And I Have Argued About: A Novel', 'https://images.isbndb.com/covers/66/64/9780812966664.jpg'), - ('0819215635', 'Listening Hearts: Discerning Call In Community', 'https://images.isbndb.com/covers/56/35/9780819215635.jpg'), - ('0880011025', 'Unattainable Earth,', 'https://images.isbndb.com/covers/10/20/9780880011020.jpg'), - ('1561011525', 'The Practice Of Prayer (The New Church''s Teaching Series, Vol 4)', 'https://images.isbndb.com/covers/15/20/9781561011520.jpg'), - ('1877727083', 'Vertical Poetry: Recent Poems', 'https://images.isbndb.com/covers/70/85/9781877727085.jpg'), - ('0486206173', 'Rubinstein''s Chess Masterpieces: 100 Selected Games', 'https://images.isbndb.com/covers/61/72/9780486206172.jpg'), - ('0312278586', 'The Nanny Diaries: A Novel', 'https://images.isbndb.com/covers/85/88/9780312278588.jpg'), - ('0140370900', 'The Gizmo (Gizmo Books)', 'https://images.isbndb.com/covers/09/04/9780140370904.jpg'), - ('0674511255', 'The Last Best Hope Of Earth: Abraham Lincoln And The Promise Of America', 'https://images.isbndb.com/covers/12/55/9780674511255.jpg'), - ('0030096189', 'Organic Chemistry (Saunders Golden Sunburst Series)', 'https://images.isbndb.com/covers/61/81/9780030096181.jpg'), - ('0312965745', 'Secrets Of St. John''s Wort: Treat Depression Naturally With St. John''s Wort!', 'https://images.isbndb.com/covers/57/47/9780312965747.jpg'), - ('0345374657', 'Diet For A Poisoned Planet', 'https://images.isbndb.com/covers/46/53/9780345374653.jpg'), - ('0395710901', 'Punished By Rewards: The Trouble With Gold Stars, Incentive Plans, A''s, Praise And Other Bribes', 'https://images.isbndb.com/covers/09/06/9780395710906.jpg'), - ('080521061X', 'Montessori Today: A Comprehensive Approach To Education From Birth To Adulthood', 'https://images.isbndb.com/covers/06/13/9780805210613.jpg'), - ('0823032612', 'Oil Painting Techniques: Learn How To Master Oil Painting Working Techniques To Create Your Own Successful Paintings (Artist''s Painting Library)', 'https://images.isbndb.com/covers/26/17/9780823032617.jpg'), - ('0679310002', 'Going Down Swinging', 'https://images.isbndb.com/covers/00/06/9780679310006.jpg'), - ('0312288115', 'Confessions Of A Sociopathic Social Climber: The Katya Livingston Chronicles', 'https://images.isbndb.com/covers/81/12/9780312288112.jpg'), - ('0316171107', 'Like A Hole In The Head', 'https://images.isbndb.com/covers/11/06/9780316171106.jpg'), - ('0380710218', 'Postmortem', 'https://images.isbndb.com/covers/02/18/9780380710218.jpg'), - ('0515118656', 'The Cove (FBI Series)', 'https://images.isbndb.com/covers/86/50/9780515118650.jpg'), - ('0553289063', 'Inconvenient Woman, An', 'https://images.isbndb.com/covers/90/60/9780553289060.jpg'), - ('0671000306', 'Shock Wave (Dirk Pitt Adventures)', 'https://images.isbndb.com/covers/03/01/9780671000301.jpg'), - ('0671673688', 'While My Pretty One Sleeps', 'https://images.isbndb.com/covers/36/80/9780671673680.jpg'), - ('1561672033', 'Antipodes 10', 'https://images.isbndb.com/covers/20/35/9781561672035.jpg'), - ('0425178242', 'Kick Ass: Selected Columns Of Carl Hiaasen', 'https://images.isbndb.com/covers/82/49/9780425178249.jpg'), - ('0618173870', 'Everything Is Illuminated: A Novel', 'https://images.isbndb.com/covers/38/77/9780618173877.jpg'), - ('0156027321', 'Life Of Pi', 'https://images.isbndb.com/covers/73/28/9780156027328.jpg'), - ('0375403582', 'Rules Of The Wild: A Novel', 'https://images.isbndb.com/covers/35/83/9780375403583.jpg'), - ('0385721420', 'Three Junes', 'https://images.isbndb.com/covers/14/24/9780385721424.jpg'), - ('0451202341', 'Back Roads', 'https://images.isbndb.com/covers/23/45/9780451202345.jpg'), - ('0743418190', 'In Her Shoes : A Novel', 'https://images.isbndb.com/covers/81/95/9780743418195.jpg'), - ('0385335407', 'The Kiss', 'https://images.isbndb.com/covers/54/09/9780385335409.jpg'), - ('0965746828', 'Home Spun: A Collection', 'https://images.isbndb.com/covers/68/23/9780965746823.jpg'), - ('0060923245', 'Sweet Hereafter: A Novel', 'https://images.isbndb.com/covers/32/42/9780060923242.jpg'), - ('0486272664', 'The Rime Of The Ancient Mariner And Other Poems', 'https://images.isbndb.com/covers/26/65/9780486272665.jpg'), - ('0786015276', '11th Hour', 'https://images.isbndb.com/covers/52/76/9780786015276.jpg'), - ('0060913509', 'In Country', 'https://images.isbndb.com/covers/35/02/9780060913502.jpg'), - ('0553272837', 'Brazen Virtue (Sacred Sins)', 'https://images.isbndb.com/covers/28/33/9780553272833.jpg'), - ('0440225078', 'Ghost Moon', 'https://images.isbndb.com/covers/50/72/9780440225072.jpg'), - ('0312145543', 'Brewing Up A Storm: A John Thatcher Mystery', 'https://images.isbndb.com/covers/55/45/9780312145545.jpg'), - ('0425181111', 'Strangers', 'https://images.isbndb.com/covers/11/19/9780425181119.jpg'), - ('0380732688', 'Milk And Honey (Peter Decker/Rina Lazarus Novels)', 'https://images.isbndb.com/covers/26/85/9780380732685.jpg'), - ('0140286276', 'The Deep End Of The Ocean (Oprah''s Book Club)', 'https://images.isbndb.com/covers/62/74/9780140286274.jpg'), - ('0373484100', 'Night Tales: Night Shift/ Night Shadow/ Nightshade/ Night Smoke', 'https://images.isbndb.com/covers/41/02/9780373484102.jpg'), - ('0449907481', 'A Thousand Acres (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/74/81/9780449907481.jpg'), - ('0553107305', 'Chopping Spree', 'https://images.isbndb.com/covers/73/02/9780553107302.jpg'), - ('080213825X', 'Four Blondes', 'https://images.isbndb.com/covers/82/55/9780802138255.jpg'), - ('0515127833', 'River''s End', 'https://images.isbndb.com/covers/78/36/9780515127836.jpg'), - ('0345441133', 'Summer Island: A Novel', 'https://images.isbndb.com/covers/11/33/9780345441133.jpg'), - ('0515134279', 'Straw Men', 'https://images.isbndb.com/covers/42/78/9780515134278.jpg'), - ('0945586051', 'The Doctor The Patient: The Personal Journey Of A Physician With Cancer', 'https://images.isbndb.com/covers/60/50/9780945586050.jpg'), - ('0385490992', 'The Street Lawyer', 'https://images.isbndb.com/covers/09/93/9780385490993.jpg'), - ('0385424728', 'The Chamber', 'https://images.isbndb.com/covers/47/21/9780385424721.jpg'), - ('0312980388', 'Warlock: A Novel Of Ancient Egypt', 'https://images.isbndb.com/covers/03/82/9780312980382.jpg'), - ('0590419625', 'The Teacher From The Black Lagoon', 'https://images.isbndb.com/covers/96/28/9780590419628.jpg'), - ('0385472951', 'The Partner', 'https://images.isbndb.com/covers/29/51/9780385472951.jpg'), - ('0451195663', 'Primal Scream', 'https://images.isbndb.com/covers/56/61/9780451195661.jpg'), - ('0425182878', 'Chosen Prey (Lucas Davenport, No 12)', 'https://images.isbndb.com/covers/28/71/9780425182871.jpg'), - ('0553564528', 'Guilty As Sin: A Novel (Deer Lake)', 'https://images.isbndb.com/covers/45/25/9780553564525.jpg'), - ('055356451X', 'Night Sins (Deer Lake)', 'https://images.isbndb.com/covers/45/18/9780553564518.jpg'), - ('0743412621', 'The Second Time Around: A Novel', 'https://images.isbndb.com/covers/26/29/9780743412629.jpg'), - ('0849943728', 'Three', 'https://images.isbndb.com/covers/37/20/9780849943720.jpg'), - ('0849943450', 'The Canopy', 'https://images.isbndb.com/covers/34/54/9780849943454.jpg'), - ('084994371X', 'Blink', 'https://images.isbndb.com/covers/37/13/9780849943713.jpg'), - ('0590406019', 'The Last Battle (Chronicles Of Narnia, Book 7)', 'https://images.isbndb.com/covers/60/17/9780590406017.jpg'), - ('0020442408', 'Prince Caspian: The Return To Narnia', 'https://images.isbndb.com/covers/24/00/9780020442400.jpg'), - ('0553225987', 'Robert''s Rules Of Order: The Standard Guide To Parliamentary Procedure', 'https://images.isbndb.com/covers/59/83/9780553225983.jpg'), - ('042517736X', 'Abduction', 'https://images.isbndb.com/covers/73/65/9780425177365.jpg'), - ('0671868713', 'And Never Let Her Go: Thomas Capano: The Deadly Seducer', 'https://images.isbndb.com/covers/87/10/9780671868710.jpg'), - ('038549825X', 'Not A Day Goes By: A Novel', 'https://images.isbndb.com/covers/82/58/9780385498258.jpg'), - ('0553202294', 'Linda Goodman''s Sun Signs', 'https://images.isbndb.com/covers/22/98/9780553202298.jpg'), - ('0345313860', 'The Vampire Lestat (Vampire Chronicles, Book II)', 'https://images.isbndb.com/covers/38/67/9780345313867.jpg'), - ('0345369947', 'The Mummy Or Ramses The Damned', 'https://images.isbndb.com/covers/99/49/9780345369949.jpg'), - ('067170124X', 'His Little Women', 'https://images.isbndb.com/covers/12/46/9780671701246.jpg'), - ('0345353625', 'Her Mother''s Daughter', 'https://images.isbndb.com/covers/36/27/9780345353627.jpg'), - ('0308102282', 'Your Erroneous Zones', 'https://images.isbndb.com/covers/22/86/9780308102286.jpg'), - ('006017143X', 'The Night Listener: A Novel', 'https://images.isbndb.com/covers/14/38/9780060171438.jpg'), - ('0805056491', 'Organizing From The Inside Out', 'https://images.isbndb.com/covers/64/95/9780805056495.jpg'), - ('0679401377', 'The Hellfire Club', 'https://images.isbndb.com/covers/13/77/9780679401377.jpg'), - ('1562827049', 'The Diary Of Jack The Ripper: The Discovery, The Investigation, The Debate', 'https://images.isbndb.com/covers/70/45/9781562827045.jpg'), - ('0385306032', 'Vanished', 'https://images.isbndb.com/covers/60/34/9780385306034.jpg'), - ('0816152446', 'The Women In His Life (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/24/45/9780816152445.jpg'), - ('0821772953', 'The Morning After', 'https://images.isbndb.com/covers/29/59/9780821772959.jpg'), - ('0345379454', 'Missing Susan', 'https://images.isbndb.com/covers/94/50/9780345379450.jpg'), - ('0553576925', 'Hiding In The Shadows (Shadows Trilogy)', 'https://images.isbndb.com/covers/69/24/9780553576924.jpg'), - ('0743206053', 'Kitchen Privileges : A Memoir', 'https://images.isbndb.com/covers/60/51/9780743206051.jpg'), - ('0688169678', 'We Are Our Mothers'' Daughters', 'https://images.isbndb.com/covers/96/71/9780688169671.jpg'), - ('0439319552', 'First Graders From Mars: Episode #01: Horus''s Horrible Day', 'https://images.isbndb.com/covers/95/53/9780439319553.jpg'), - ('0590870157', 'My Garden (Beginning Literacy)', 'https://images.isbndb.com/covers/01/53/9780590870153.jpg'), - ('0307001164', '101 Dalmatians (Walt Disney''s Classics) (Little Golden Books)', 'https://images.isbndb.com/covers/11/60/9780307001160.jpg'), - ('0440441501', 'In The Dinosaur''s Paw (The Kids Of The Polk Street School)', 'https://images.isbndb.com/covers/15/02/9780440441502.jpg'), - ('0590687301', 'Ralph S. Mouse', 'https://images.isbndb.com/covers/73/00/9780590687300.jpg'), - ('0439061644', 'The First Journey (Animorphs Alternamorphs)', 'https://images.isbndb.com/covers/16/43/9780439061643.jpg'), - ('0439569842', 'How Do Dinosaurs Learn To Read?', 'https://images.isbndb.com/covers/98/42/9780439569842.jpg'), - ('0307118703', 'My First Book About Space (Look-Look)', 'https://images.isbndb.com/covers/87/07/9780307118707.jpg'), - ('0590418858', 'You Be The Jury: Courtroom II', 'https://images.isbndb.com/covers/88/50/9780590418850.jpg'), - ('030720152X', 'Comic Characters', 'https://images.isbndb.com/covers/15/22/9780307201522.jpg'), - ('0816728739', 'The Time Machine (Troll Illustrated Classics)', 'https://images.isbndb.com/covers/87/32/9780816728732.jpg'), - ('0865050880', 'I Like School (in My World Series)', 'https://images.isbndb.com/covers/08/84/9780865050884.jpg'), - ('0812519655', 'Sacred Ground', 'https://images.isbndb.com/covers/96/55/9780812519655.jpg'), - ('0812524853', 'Burning Water (Diana Tregarde)', 'https://images.isbndb.com/covers/48/57/9780812524857.jpg'), - ('0449211770', 'Tightrope Walker', 'https://images.isbndb.com/covers/17/79/9780449211779.jpg'), - ('193072229X', 'MoveOn''s 50 Ways To Love Your Country: How To Find Your Political Voice And Become A Catalyst For Change', 'https://images.isbndb.com/covers/22/93/9781930722293.jpg'), - ('0812521129', 'Children Of The Night: A Diana Tregarde Investigation', 'https://images.isbndb.com/covers/11/22/9780812521122.jpg'), - ('0345251733', 'Rainbow: The Stormy Life Of Judy Garland', 'https://images.isbndb.com/covers/17/32/9780345251732.jpg'), - ('1400077826', 'Cold Mountain (Vintage Contemporaries)', 'https://images.isbndb.com/covers/78/23/9781400077823.jpg'), - ('0312995431', 'A Fountain Filled With Blood (A Rev. Clare Fergusson And Russ Van Alstyne Mystery)', 'https://images.isbndb.com/covers/54/30/9780312995430.jpg'), - ('0312312628', 'Out Of The Deep I Cry: A Clare Fergusson And Russ Van Alstyne Mystery', 'https://images.isbndb.com/covers/26/26/9780312312626.jpg'), - ('0446394521', 'Daisy Fay And The Miracle Man', 'https://images.isbndb.com/covers/45/29/9780446394529.jpg'), - ('0590021117', 'Little House On The Prairie', 'https://images.isbndb.com/covers/11/11/9780590021111.jpg'), - ('068484267X', 'Angela''s Ashes: A Memoir', 'https://images.isbndb.com/covers/26/77/9780684842677.jpg'), - ('0553578693', 'The Next Accident', 'https://images.isbndb.com/covers/86/90/9780553578690.jpg'), - ('0380709260', 'Socks', 'https://images.isbndb.com/covers/92/67/9780380709267.jpg'), - ('0807565288', 'The Pet Shop Mystery (The Boxcar Children Special, No. 7)', 'https://images.isbndb.com/covers/52/85/9780807565285.jpg'), - ('0312986769', 'In The Bleak Midwinter (A Rev. Clare Fergusson And Russ Van Alstyne Mystery)', 'https://images.isbndb.com/covers/67/66/9780312986766.jpg'), - ('0345413377', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/33/76/9780345413376.jpg'), - ('0345413369', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/33/69/9780345413369.jpg'), - ('0679893105', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/31/03/9780679893103.jpg'), - ('0061096091', 'Eyeshot', 'https://images.isbndb.com/covers/60/99/9780061096099.jpg'), - ('0345369068', 'If Ever I Return, Pretty Peggy-O', 'https://images.isbndb.com/covers/90/62/9780345369062.jpg'), - ('0451184718', 'The Rosewood Casket', 'https://images.isbndb.com/covers/47/19/9780451184719.jpg'), - ('0449209121', 'The Amazing Mrs. Pollifax', 'https://images.isbndb.com/covers/91/27/9780449209127.jpg'), - ('0060938455', 'Fast Food Nation: The Dark Side Of The All-American Meal', 'https://images.isbndb.com/covers/84/51/9780060938451.jpg'), - ('080411952X', 'The Unsung Hero (Troubleshooters, Book 1)', 'https://images.isbndb.com/covers/95/28/9780804119528.jpg'), - ('0060575808', 'Two Princesses Of Bamarre, The', 'https://images.isbndb.com/covers/58/09/9780060575809.jpg'), - ('0060558865', 'Ella Enchanted', 'https://images.isbndb.com/covers/88/64/9780060558864.jpg'), - ('0767912918', 'Passing For Thin: Losing Half My Weight And Finding My Self', 'https://images.isbndb.com/covers/29/14/9780767912914.jpg'), - ('0553298860', 'Bloodlines (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/88/64/9780553298864.jpg'), - ('0385335679', 'Kissing In Manhattan', 'https://images.isbndb.com/covers/56/76/9780385335676.jpg'), - ('0440122090', 'Echoes', 'https://images.isbndb.com/covers/20/98/9780440122098.jpg'), - ('0671525832', 'Someone To Watch Over Me: A Novel', 'https://images.isbndb.com/covers/58/35/9780671525835.jpg'), - ('0553279572', 'The Toynbee Convector', 'https://images.isbndb.com/covers/95/73/9780553279573.jpg'), - ('0061009059', 'One For The Money (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/90/51/9780061009051.jpg'), - ('0060930187', 'The Bell Jar: A Novel (Perennial Classics)', 'https://images.isbndb.com/covers/01/89/9780060930189.jpg'), - ('0516076272', 'A Polar Bear Called Pingo', 'https://images.isbndb.com/covers/62/70/9780516076270.jpg'), - ('0679450432', 'Dark Lady', 'https://images.isbndb.com/covers/04/36/9780679450436.jpg'), - ('0821775863', 'The Future Scrolls', 'https://images.isbndb.com/covers/58/68/9780821775868.jpg'), - ('0821770209', 'About Face', 'https://images.isbndb.com/covers/02/07/9780821770207.jpg'), - ('0670855758', 'Tarot Says Beware (Herculeah Jones Mystery)', 'https://images.isbndb.com/covers/57/59/9780670855759.jpg'), - ('0553562819', 'Globalhead', 'https://images.isbndb.com/covers/28/11/9780553562811.jpg'), - ('0446364193', 'Along Came A Spider', 'https://images.isbndb.com/covers/41/95/9780446364195.jpg'), - ('0446519138', 'Simple Abundance: A Daybook Of Comfort And Joy', 'https://images.isbndb.com/covers/91/37/9780446519137.jpg'), - ('0425179672', 'The River King', 'https://images.isbndb.com/covers/96/73/9780425179673.jpg'), - ('0061042943', 'Final Appeal', 'https://images.isbndb.com/covers/29/42/9780061042942.jpg'), - ('0399144463', 'Who Moved My Cheese?: An Amazing Way To Deal With Change In Your Work And In Your Life', 'https://images.isbndb.com/covers/44/62/9780399144462.jpg'), - ('0965404560', 'Atonement', 'https://images.isbndb.com/covers/45/63/9780965404563.jpg'), - ('006015781X', 'Why Do Clocks Run Clockwise? And Other Imponderables: Mysteries Of Everyday Life Explained', 'https://images.isbndb.com/covers/78/14/9780060157814.jpg'), - ('0060930705', 'Someone To Watch Over Me: Stories', 'https://images.isbndb.com/covers/07/07/9780060930707.jpg'), - ('0312206763', 'Stately Pursuits', 'https://images.isbndb.com/covers/67/65/9780312206765.jpg'), - ('0316116025', 'The Pinball Effect: How Renaissance Water Gardens Made The Carburetor Possible-and Other Journeys Through Knowledge (Pinball Effect)', 'https://images.isbndb.com/covers/60/22/9780316116022.jpg'), - ('0156013967', 'My Father, Dancing (Harvest Book)', 'https://images.isbndb.com/covers/39/63/9780156013963.jpg'), - ('0385314019', 'Women On The Case', 'https://images.isbndb.com/covers/40/15/9780385314015.jpg'), - ('0743444167', 'New Cardiff', 'https://images.isbndb.com/covers/41/63/9780743444163.jpg'), - ('0618231617', 'Almost', 'https://images.isbndb.com/covers/16/14/9780618231614.jpg'), - ('1567920047', 'A Tally Of Types: With Additions By Several Hands ; And With A New Introduction By Mike Parker', 'https://images.isbndb.com/covers/00/48/9781567920048.jpg'), - ('0811203220', 'Stand Still Like The Hummingbird', 'https://images.isbndb.com/covers/32/27/9780811203227.jpg'), - ('1573229148', 'Crossing The Unknown Sea: Work As A Pilgrimage Of Identity', 'https://images.isbndb.com/covers/91/42/9781573229142.jpg'), - ('0787955671', 'The Future Of Leadership: Today''s Top Leadership Thinkers Speak To Tomorrow''s Leaders', 'https://images.isbndb.com/covers/56/70/9780787955670.jpg'), - ('0425174484', 'Expecting Adam: A True Story Of Birth, Rebirth, And Everyday Magic', 'https://images.isbndb.com/covers/44/87/9780425174487.jpg'), - ('0385496907', 'No Future Without Forgiveness', 'https://images.isbndb.com/covers/69/02/9780385496902.jpg'), - ('0446523992', 'A Call To Conscience: The Landmark Speeches Of Dr. Martin Luther King, Jr.', 'https://images.isbndb.com/covers/39/98/9780446523998.jpg'), - ('0140185216', 'On The Road (Penguin 20th Century Classics)', 'https://images.isbndb.com/covers/52/18/9780140185218.jpg'), - ('0684717255', 'I And Thou', 'https://images.isbndb.com/covers/72/58/9780684717258.jpg'), - ('0486272745', 'The Prince (Dover Thrift Editions)', 'https://images.isbndb.com/covers/27/40/9780486272740.jpg'), - ('0062507249', 'Becoming A Man: Half A Life Story', 'https://images.isbndb.com/covers/72/42/9780062507242.jpg'), - ('0684801221', 'The Old Man And The Sea', 'https://images.isbndb.com/covers/12/23/9780684801223.jpg'), - ('1576737357', 'Becoming Me (Diary Of A Teenage Girl: Caitlin, Book 1)', 'https://images.isbndb.com/covers/73/54/9781576737354.jpg'), - ('0060083298', 'The Dominant Blonde', 'https://images.isbndb.com/covers/32/98/9780060083298.jpg'), - ('0446672211', 'Where The Heart Is (Oprah''s Book Club)', 'https://images.isbndb.com/covers/22/14/9780446672214.jpg'), - ('0140293248', 'The Girls'' Guide To Hunting And Fishing', 'https://images.isbndb.com/covers/32/41/9780140293241.jpg'), - ('0807070718', 'Rena''s Promise: A Story Of Sisters In Auschwitz', 'https://images.isbndb.com/covers/07/10/9780807070710.jpg'), - ('0743213831', 'America The Beautiful: A Novel', 'https://images.isbndb.com/covers/38/37/9780743213837.jpg'), - ('0345305477', 'Easy Travel To Other Planets', 'https://images.isbndb.com/covers/54/73/9780345305473.jpg'), - ('0061080519', 'The Mist And The Magic (Harper Monogram)', 'https://images.isbndb.com/covers/05/17/9780061080517.jpg'), - ('0142000205', 'Icy Sparks (Oprah''s Book Club)', 'https://images.isbndb.com/covers/02/05/9780142000205.jpg'), - ('0316735027', 'The True And Outstanding Adventures Of The Hunt Sisters: A Novel', 'https://images.isbndb.com/covers/50/25/9780316735025.jpg'), - ('193156146X', 'The Time Traveler''s Wife', 'https://images.isbndb.com/covers/14/64/9781931561464.jpg'), - ('015600710X', 'Strange Fits Of Passion: A Novel', 'https://images.isbndb.com/covers/71/08/9780156007108.jpg'), - ('0062517856', 'The Monk Downstairs: A Novel', 'https://images.isbndb.com/covers/78/52/9780062517852.jpg'), - ('0679767789', 'Lost In Place: Growing Up Absurd In Suburbia', 'https://images.isbndb.com/covers/77/87/9780679767787.jpg'), - ('0449911683', 'My Name Is Asher Lev', 'https://images.isbndb.com/covers/16/86/9780449911686.jpg'), - ('0425169626', 'Waking The Dead Tie-in', 'https://images.isbndb.com/covers/96/29/9780425169629.jpg'), - ('0449207757', 'Davita''s Harp', 'https://images.isbndb.com/covers/77/58/9780449207758.jpg'), - ('0449245691', 'The Book Of Lights', 'https://images.isbndb.com/covers/56/99/9780449245699.jpg'), - ('0140029400', 'Mimic Men', 'https://images.isbndb.com/covers/94/06/9780140029406.jpg'), - ('0140021566', 'The Mystic Masseur', 'https://images.isbndb.com/covers/15/61/9780140021561.jpg'), - ('2253004022', 'Regain', 'https://images.isbndb.com/covers/40/28/9782253004028.jpg'), - ('2253005274', 'Le Grand Meaulnes', 'https://images.isbndb.com/covers/52/78/9782253005278.jpg'), - ('225300670X', 'A L''ouest Rien De Nouveau', 'https://images.isbndb.com/covers/67/01/9782253006701.jpg'), - ('2266084372', 'Pourquoi J''ai Mangé Mon Père', 'https://images.isbndb.com/covers/43/76/9782266084376.jpg'), - ('2070362388', 'Ravage', 'https://images.isbndb.com/covers/23/87/9782070362387.jpg'), - ('2266029460', 'Voyage D''une Parisienne à Lhassa', 'https://images.isbndb.com/covers/94/69/9782266029469.jpg'), - ('2253007102', 'Les Fleurs Du Mal', 'https://images.isbndb.com/covers/71/04/9782253007104.jpg'), - ('2070417743', 'Chroniques Martiennes', 'https://images.isbndb.com/covers/77/42/9782070417742.jpg'), - ('2266033689', 'Le Diable Au Corps', 'https://images.isbndb.com/covers/36/88/9782266033688.jpg'), - ('2070384349', 'La Faute De L''abbé Mouret', 'https://images.isbndb.com/covers/43/41/9782070384341.jpg'), - ('207053880X', 'L''homme Qui Plantait Des Arbres', 'https://images.isbndb.com/covers/88/05/9782070538805.jpg'), - ('2070334368', 'La Guerre Des Boutons', 'https://images.isbndb.com/covers/43/60/9782070334360.jpg'), - ('2290314951', 'Paroles De Poilus : Lettres Et Carnets Du Front 1914-1918', 'https://images.isbndb.com/covers/49/51/9782290314951.jpg'), - ('229000510X', 'Une Porte Sur L''été', 'https://images.isbndb.com/covers/51/01/9782290005101.jpg'), - ('3492207006', 'Die Entdeckung Der Langsamkeit: Roman', 'https://images.isbndb.com/covers/70/03/9783492207003.jpg'), - ('3499177757', 'Die Grenzen Des Geschlechts', 'https://images.isbndb.com/covers/77/50/9783499177750.jpg'), - ('3889774016', 'Frauen Der Welt. Der Fortschritt Der Ungleichheit', 'https://images.isbndb.com/covers/40/19/9783889774019.jpg'), - ('3502670005', 'I Ging. Das Buch Der Wandlung. Das Große Weisheits- Und Orakelbuch Der Alten Chinesen', 'https://images.isbndb.com/covers/00/01/9783502670001.jpg'), - ('0905762487', 'African Women: Their Struggle For Economic Independence', 'https://images.isbndb.com/covers/24/87/9780905762487.jpg'), - ('3499222604', 'Die Globalisierte Frau. Berichte Aus Der Zukunft Der Ungleichheit.', 'https://images.isbndb.com/covers/26/03/9783499222603.jpg'), - ('3746670055', 'Women Are The Niggers Of The World. Über Frauen, Herrenmenschen Und Nietzsches Peitsche. (Dokument Und Ess Ay)', 'https://images.isbndb.com/covers/00/58/9783746670058.jpg'), - ('0140620427', 'Sense And Sensibility (Penguin Popular Classics)', 'https://images.isbndb.com/covers/04/29/9780140620429.jpg'), - ('3596144434', 'Der Gemietete Mann: Roman', 'https://images.isbndb.com/covers/44/33/9783596144433.jpg'), - ('3442724686', 'Der Gott Der Kleinen Dinge: Roman', 'https://images.isbndb.com/covers/46/80/9783442724680.jpg'), - ('0385504209', 'The Da Vinci Code', 'https://images.isbndb.com/covers/42/01/9780385504201.jpg'), - ('0446525502', 'The Rescue', 'https://images.isbndb.com/covers/55/03/9780446525503.jpg'), - ('0385500769', 'A Map Of The World', 'https://images.isbndb.com/covers/07/60/9780385500760.jpg'), - ('0399147012', 'Edge Of Danger', 'https://images.isbndb.com/covers/70/12/9780399147012.jpg'), - ('0670892963', 'Bridget Jones : The Edge Of Reason', 'https://images.isbndb.com/covers/29/69/9780670892969.jpg'), - ('0688180639', 'Vinegar Hill: A Novel', 'https://images.isbndb.com/covers/06/38/9780688180638.jpg'), - ('0316789089', 'The Pilot''s Wife (Oprah''s Book Club)', 'https://images.isbndb.com/covers/90/80/9780316789080.jpg'), - ('0451197275', 'Saving Private Ryan: Tie In', 'https://images.isbndb.com/covers/72/76/9780451197276.jpg'), - ('0425184129', 'Big Trouble', 'https://images.isbndb.com/covers/41/27/9780425184127.jpg'), - ('0151001006', 'Snow Falling On Cedars', 'https://images.isbndb.com/covers/10/02/9780151001002.jpg'), - ('0385505833', 'Skipping Christmas: A Novel', 'https://images.isbndb.com/covers/58/33/9780385505833.jpg'), - ('0679442790', 'The Reader', 'https://images.isbndb.com/covers/27/90/9780679442790.jpg'), - ('0525943862', 'Cheaters', 'https://images.isbndb.com/covers/38/60/9780525943860.jpg'), - ('0609605925', 'Angel Falls', 'https://images.isbndb.com/covers/59/29/9780609605929.jpg'), - ('0060191929', 'The Saving Graces: A Novel', 'https://images.isbndb.com/covers/19/24/9780060191924.jpg'), - ('0743206045', 'Daddy''s Little Girl', 'https://images.isbndb.com/covers/60/44/9780743206044.jpg'), - ('0684864843', 'The Vineyard: A Novel', 'https://images.isbndb.com/covers/48/46/9780684864846.jpg'), - ('0684867818', 'The Looking Glass: A Novel (The Locket Series)', 'https://images.isbndb.com/covers/78/16/9780684867816.jpg'), - ('0743406176', 'If Only It Were True', 'https://images.isbndb.com/covers/61/78/9780743406178.jpg'), - ('0380978539', 'Dear Stranger, Dearest Friend: A Novel', 'https://images.isbndb.com/covers/85/33/9780380978533.jpg'), - ('0679603352', 'The Cider House Rules: A Novel (Modern Library)', 'https://images.isbndb.com/covers/33/51/9780679603351.jpg'), - ('0679410430', 'Lolita (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/04/30/9780679410430.jpg'), - ('0446523569', 'Message In A Bottle', 'https://images.isbndb.com/covers/35/61/9780446523561.jpg'), - ('0671042556', 'Blackbird: A Childhood Lost And Found', 'https://images.isbndb.com/covers/25/54/9780671042554.jpg'), - ('0679450440', 'Protect And Defend', 'https://images.isbndb.com/covers/04/43/9780679450443.jpg'), - ('0140107649', 'Blue Heaven (Contemporary American Fiction)', 'https://images.isbndb.com/covers/76/47/9780140107647.jpg'), - ('0609606727', 'Julie And Romeo: A Novel', 'https://images.isbndb.com/covers/67/28/9780609606728.jpg'), - ('0446527793', 'The Guardian', 'https://images.isbndb.com/covers/77/98/9780446527798.jpg'), - ('0446531332', 'Nights In Rodanthe', 'https://images.isbndb.com/covers/13/37/9780446531337.jpg'), - ('1570717257', 'Man And Boy', 'https://images.isbndb.com/covers/72/53/9781570717253.jpg'), - ('0060192631', 'One Heart: A Novel', 'https://images.isbndb.com/covers/26/31/9780060192631.jpg'), - ('0385420161', 'Like Water For Chocolate: A Novel In Monthly Installments, With Recipes, Romances, And Home Remedies', 'https://images.isbndb.com/covers/01/67/9780385420167.jpg'), - ('0345339711', 'The Two Towers (The Lord Of The Rings, Part 2)', 'https://images.isbndb.com/covers/97/13/9780345339713.jpg'), - ('052594463X', 'All Of Me: A Voluptuous Tale', 'https://images.isbndb.com/covers/46/38/9780525944638.jpg'), - ('039304016X', 'The Perfect Storm: A True Story Of Men Against The Sea', 'https://images.isbndb.com/covers/01/66/9780393040166.jpg'), - ('0399147128', 'The Villa', 'https://images.isbndb.com/covers/71/28/9780399147128.jpg'), - ('0670031046', 'In This Mountain (The Mitford Years, Book 7)', 'https://images.isbndb.com/covers/10/47/9780670031047.jpg'), - ('0394574745', 'All The Pretty Horses', 'https://images.isbndb.com/covers/47/45/9780394574745.jpg'), - ('0316969443', 'Suzanne''s Diary For Nicholas', 'https://images.isbndb.com/covers/94/44/9780316969444.jpg'), - ('0743230051', 'He Sees You When You''re Sleeping : A Novel', 'https://images.isbndb.com/covers/00/56/9780743230056.jpg'), - ('0316693200', '2nd Chance', 'https://images.isbndb.com/covers/32/02/9780316693202.jpg'), - ('0684868911', 'The Carousel: A Novel', 'https://images.isbndb.com/covers/89/12/9780684868912.jpg'), - ('0842336214', 'The Promise Remains', 'https://images.isbndb.com/covers/62/15/9780842336215.jpg'), - ('0399148582', 'You Cannot Be Serious', 'https://images.isbndb.com/covers/85/83/9780399148583.jpg'), - ('0684864320', 'LAKE NEWS : A Novel', 'https://images.isbndb.com/covers/43/27/9780684864327.jpg'), - ('0525944834', 'Liar''s Game', 'https://images.isbndb.com/covers/48/36/9780525944836.jpg'), - ('0345428900', 'Out Of The Blue', 'https://images.isbndb.com/covers/89/05/9780345428905.jpg'), - ('0451176812', 'Voice Of The Eagle', 'https://images.isbndb.com/covers/68/13/9780451176813.jpg'), - ('0671525794', 'The Kingdom By The Sea: A Journey Around Great Britain', 'https://images.isbndb.com/covers/57/98/9780671525798.jpg'), - ('0718144538', 'Shattered', 'https://images.isbndb.com/covers/45/31/9780718144531.jpg'), - ('0446602086', 'The Proud And The Free', 'https://images.isbndb.com/covers/20/82/9780446602082.jpg'), - ('0394551427', 'SHOAH', 'https://images.isbndb.com/covers/14/25/9780394551425.jpg'), - ('0064407667', 'The Bad Beginning (A Series Of Unfortunate Events #1)', 'https://images.isbndb.com/covers/76/63/9780064407663.jpg'), - ('0007100221', 'Terror Firma', 'https://images.isbndb.com/covers/02/24/9780007100224.jpg'), - ('2253148539', 'Le Loup-garou', 'https://images.isbndb.com/covers/85/31/9782253148531.jpg'), - ('2253043974', 'Chronique D''une Mort Annoncée', 'https://images.isbndb.com/covers/39/73/9782253043973.jpg'), - ('2020315491', 'Le Neveu D''Amérique', 'https://images.isbndb.com/covers/54/94/9782020315494.jpg'), - ('0747549923', 'Last Exit To Brooklyn', 'https://images.isbndb.com/covers/99/25/9780747549925.jpg'), - ('0743462335', 'More George W Bushisms', 'https://images.isbndb.com/covers/23/34/9780743462334.jpg'), - ('0140253580', 'Therapy', 'https://images.isbndb.com/covers/35/80/9780140253580.jpg'), - ('0947782141', 'SCOTTISH GHOSTS', 'https://images.isbndb.com/covers/21/46/9780947782146.jpg'), - ('057120354X', 'Awful End (Eddie Dickens Trilogy)', 'https://images.isbndb.com/covers/35/43/9780571203543.jpg'), - ('0349101779', 'Wasp Factory Uk', 'https://images.isbndb.com/covers/17/74/9780349101774.jpg'), - ('0743222229', 'George W. Bushisms : The Slate Book Of The Accidental Wit And Wisdom Of Our 43rd President', 'https://images.isbndb.com/covers/22/28/9780743222228.jpg'), - ('185479549X', 'World''s Stupidest Laws', 'https://images.isbndb.com/covers/54/96/9781854795496.jpg'), - ('0140292918', 'Of Mice And Men (Steinbeck Essentials)', 'https://images.isbndb.com/covers/29/16/9780140292916.jpg'), - ('1854795554', 'The World''s Stupidest Signs', 'https://images.isbndb.com/covers/55/57/9781854795557.jpg'), - ('1858813093', 'Nessie The Loch Ness Monster', 'https://images.isbndb.com/covers/30/97/9781858813097.jpg'), - ('2871290911', 'XIII, Tome 13, L''enquête : The XIII Mystery', 'https://images.isbndb.com/covers/09/19/9782871290919.jpg'), - ('0198604025', 'How Not To Say What You Mean: A Dictionary Of Euphemisms (Oxford Paperback Reference)', 'https://images.isbndb.com/covers/40/20/9780198604020.jpg'), - ('1842151053', 'Cooking For One (Cook''s Essentials)', 'https://images.isbndb.com/covers/10/51/9781842151051.jpg'), - ('2253063339', 'Les Fourmis', 'https://images.isbndb.com/covers/33/39/9782253063339.jpg'), - ('1860198597', 'How To Draw Celtic Knotwork: A Practical Handbook', 'https://images.isbndb.com/covers/85/95/9781860198595.jpg'), - ('0767908473', 'The Sorcerer''s Companion: A Guide To The Magical World Of Harry Potter', 'https://images.isbndb.com/covers/84/74/9780767908474.jpg'), - ('1842040154', 'Celtic Myths And Legends', 'https://images.isbndb.com/covers/01/57/9781842040157.jpg'), - ('0140622063', 'Scottish Folk And Fairy Tales (Penguin Popular Classics)', 'https://images.isbndb.com/covers/20/65/9780140622065.jpg'), - ('0571209521', 'Terrible Times (The Eddie Dickens Trilogy, Book 3)', 'https://images.isbndb.com/covers/95/21/9780571209521.jpg'), - ('2264009306', 'Cantilènes En Gelée', 'https://images.isbndb.com/covers/93/02/9782264009302.jpg'), - ('1841952931', 'Glasgow Zen', 'https://images.isbndb.com/covers/29/32/9781841952932.jpg'), - ('0890877564', 'Totally Muffins Cookbook (Totally Cookbooks)', 'https://images.isbndb.com/covers/75/62/9780890877562.jpg'), - ('1405200677', 'Tigger''s Little Book Of Diet And Exercise (Wisdom Of Pooh)', 'https://images.isbndb.com/covers/06/77/9781405200677.jpg'), - ('0416196772', 'Eeyore''s Little Book Of Gloom (Wisdom Of Pooh)', 'https://images.isbndb.com/covers/67/71/9780416196771.jpg'), - ('0747538069', 'Adventures Of Dougal (Magic Roundabout)', 'https://images.isbndb.com/covers/80/66/9780747538066.jpg'), - ('0375501347', 'Amy And Isabelle', 'https://images.isbndb.com/covers/13/40/9780375501340.jpg'), - ('0060927240', 'Rule Of The Bone: A Novel', 'https://images.isbndb.com/covers/72/40/9780060927240.jpg'), - ('0316776963', 'Me Talk Pretty One Day', 'https://images.isbndb.com/covers/69/67/9780316776967.jpg'), - ('156341029X', 'Stone Butch Blues', 'https://images.isbndb.com/covers/02/91/9781563410291.jpg'), - ('0060934719', 'Stardust', 'https://images.isbndb.com/covers/47/12/9780060934712.jpg'), - ('1886383421', 'Fires Of Aggar (The Amazons Of Aggar)', 'https://images.isbndb.com/covers/34/25/9781886383425.jpg'), - ('1888451084', 'Kamikaze Lust', 'https://images.isbndb.com/covers/10/85/9781888451085.jpg'), - ('0451450256', 'Gossamer Axe', 'https://images.isbndb.com/covers/02/58/9780451450258.jpg'), - ('1555835953', 'Witchfire', 'https://images.isbndb.com/covers/59/58/9781555835958.jpg'), - ('0395877563', 'Seven Moves', 'https://images.isbndb.com/covers/75/62/9780395877562.jpg'), - ('0962893862', 'Return To Isis', 'https://images.isbndb.com/covers/38/65/9780962893865.jpg'), - ('1555834531', 'Hood', 'https://images.isbndb.com/covers/45/31/9781555834531.jpg'), - ('0393318435', 'Leaving Pipe Shop: Memories Of Kin', 'https://images.isbndb.com/covers/84/32/9780393318432.jpg'), - ('0889740828', 'Love Ruins Everything', 'https://images.isbndb.com/covers/08/22/9780889740822.jpg'), - ('1563410443', 'Skin: Talking About Sex, Class And Literature', 'https://images.isbndb.com/covers/04/44/9781563410444.jpg'), - ('1563899388', 'Death: At Death''s Door (Death #1)', 'https://images.isbndb.com/covers/93/86/9781563899386.jpg'), - ('1563411148', 'The Second Coming Of Curly Red', 'https://images.isbndb.com/covers/11/44/9781563411144.jpg'), - ('0553579681', 'Night Mares', 'https://images.isbndb.com/covers/96/80/9780553579680.jpg'), - ('0553579673', 'Hen''s Teeth', 'https://images.isbndb.com/covers/96/73/9780553579673.jpg'), - ('0451181379', 'The Door To December', 'https://images.isbndb.com/covers/13/74/9780451181374.jpg'), - ('0786889160', 'No Shirt. No Shoes....No Problem!', 'https://images.isbndb.com/covers/91/67/9780786889167.jpg'), - ('0345370740', 'The Scions Of Shannara (The Heritage Of Shannara)', 'https://images.isbndb.com/covers/07/47/9780345370747.jpg'), - ('0553574175', 'Rebel Dawn (Star Wars: The Han Solo Trilogy, Book 3)', 'https://images.isbndb.com/covers/41/73/9780553574173.jpg'), - ('0553574167', 'The Hutt Gambit (Star Wars: The Han Solo Trilogy, Vol. 2)', 'https://images.isbndb.com/covers/41/66/9780553574166.jpg'), - ('0553574159', 'The Paradise Snare (Star Wars, The Han Solo Trilogy #1) (Book 1)', 'https://images.isbndb.com/covers/41/59/9780553574159.jpg'), - ('0312287240', 'A Year Of Full Moons: A Novel', 'https://images.isbndb.com/covers/72/45/9780312287245.jpg'), - ('0679801146', 'Alanna: The First Adventure (Song Of The Lioness, Vol. 1)', 'https://images.isbndb.com/covers/11/46/9780679801146.jpg'), - ('0446300101', 'The Beans Of Egypt, Maine', 'https://images.isbndb.com/covers/01/00/9780446300100.jpg'), - ('0821750410', 'Warrior Moon', 'https://images.isbndb.com/covers/04/14/9780821750414.jpg'), - ('0425142485', 'The Funhouse', 'https://images.isbndb.com/covers/24/86/9780425142486.jpg'), - ('0451456548', 'Cold Iron', 'https://images.isbndb.com/covers/65/40/9780451456540.jpg'), - ('0060006048', 'Circle Of Three #12: Written In The Stars', 'https://images.isbndb.com/covers/60/44/9780060006044.jpg'), - ('0312906552', 'The Space Merchants', 'https://images.isbndb.com/covers/65/59/9780312906559.jpg'), - ('0440117291', 'Dreamsnake', 'https://images.isbndb.com/covers/72/92/9780440117292.jpg'), - ('0425049981', 'Titan', 'https://images.isbndb.com/covers/99/83/9780425049983.jpg'), - ('0374386676', 'The Year They Burned The Books', 'https://images.isbndb.com/covers/66/72/9780374386672.jpg'), - ('0786886463', 'A Density Of Souls', 'https://images.isbndb.com/covers/64/63/9780786886463.jpg'), - ('0345395379', 'Slow River', 'https://images.isbndb.com/covers/53/75/9780345395375.jpg'), - ('0380788497', 'Changer', 'https://images.isbndb.com/covers/84/91/9780380788491.jpg'), - ('0307215342', 'Trixie Belden And The Mystery Off Glen Road', 'https://images.isbndb.com/covers/53/45/9780307215345.jpg'), - ('0374343381', 'Lark In The Morning', 'https://images.isbndb.com/covers/33/85/9780374343385.jpg'), - ('0345403339', 'Saving Grace', 'https://images.isbndb.com/covers/33/39/9780345403339.jpg'), - ('0440226694', 'Lena', 'https://images.isbndb.com/covers/66/97/9780440226697.jpg'), - ('0440219604', 'I Hadn''t Meant To Tell You This', 'https://images.isbndb.com/covers/96/06/9780440219606.jpg'), - ('0767903285', 'Raise The Roof: The Inspiring Inside Story Of The Tennessee Lady Volunteers Undefeated 1997-98 Season', 'https://images.isbndb.com/covers/32/88/9780767903288.jpg'), - ('0345429176', 'UFOs, JFK, And Elvis: Conspiracies You Don''t Have To Be Crazy To Believe', 'https://images.isbndb.com/covers/91/79/9780345429179.jpg'), - ('038529929X', 'Hannibal: A Novel', 'https://images.isbndb.com/covers/92/99/9780385299299.jpg'), - ('1573229571', 'About A Boy (Movie Tie-In)', 'https://images.isbndb.com/covers/95/79/9781573229579.jpg'), - ('0345418778', 'Mostly Harmless', 'https://images.isbndb.com/covers/87/77/9780345418777.jpg'), - ('0517201658', 'The Thorn Birds (Modern Classics)', 'https://images.isbndb.com/covers/16/57/9780517201657.jpg'), - ('0743211383', 'Dreamcatcher', 'https://images.isbndb.com/covers/13/83/9780743211383.jpg'), - ('039914370X', 'Sudden Mischief: A Spenser Novel', 'https://images.isbndb.com/covers/37/00/9780399143700.jpg'), - ('1884777805', 'Elements Of Programming With Perl', 'https://images.isbndb.com/covers/78/06/9781884777806.jpg'), - ('0312977905', 'To Catch A Cat', 'https://images.isbndb.com/covers/79/00/9780312977900.jpg'), - ('0812521331', 'People Of The Wolf (The First North Americans Series, Book 1)', 'https://images.isbndb.com/covers/13/37/9780812521337.jpg'), - ('0451205421', 'The Door To December', 'https://images.isbndb.com/covers/54/21/9780451205421.jpg'), - ('0894342789', 'College Majors And Careers: A Resource Guide For Effective Life Planning (College Majors & Careers: A Resource Guide For Effective Life Planning)', 'https://images.isbndb.com/covers/27/83/9780894342783.jpg'), - ('0440218535', 'Smilla''s Sense Of Snow', 'https://images.isbndb.com/covers/85/31/9780440218531.jpg'), - ('0449207595', 'The Grass Is Always Greener Over The Septic Tank', 'https://images.isbndb.com/covers/75/98/9780449207598.jpg'), - ('0670844594', 'Rumpole On Trial', 'https://images.isbndb.com/covers/45/93/9780670844593.jpg'), - ('039457513X', 'Billy Bathgate', 'https://images.isbndb.com/covers/51/31/9780394575131.jpg'), - ('0394559487', 'Citizens: A Chronicle Of The French Revolution', 'https://images.isbndb.com/covers/94/83/9780394559483.jpg'), - ('0804001944', 'The Man Who Killed The Deer: A Novel Of Pueblo Indian Life', 'https://images.isbndb.com/covers/19/46/9780804001946.jpg'), - ('0590897985', 'The Music Of Dolphins', 'https://images.isbndb.com/covers/79/83/9780590897983.jpg'), - ('0689832877', 'Sunwing (Aladdin Fantasy)', 'https://images.isbndb.com/covers/28/71/9780689832871.jpg'), - ('0689829698', 'Caddie Woodlawn - Newbery Promo ''99 (Aladdin Fiction)', 'https://images.isbndb.com/covers/96/97/9780689829697.jpg'), - ('0439042917', 'The Hork-Bajir Chronicles (Animorphs Series)', 'https://images.isbndb.com/covers/29/18/9780439042918.jpg'), - ('0064409457', 'The Silver Chair (The Chronicles Of Narnia, Full-Color Collector''s Edition)', 'https://images.isbndb.com/covers/94/52/9780064409452.jpg'), - ('0064405052', 'The Magician''s Nephew (Narnia)', 'https://images.isbndb.com/covers/50/58/9780064405058.jpg'), - ('043922165X', 'Circles In The Stream (Avalon Web Of Magic, Book 1)', 'https://images.isbndb.com/covers/16/58/9780439221658.jpg'), - ('0152162445', 'High Wizardry', 'https://images.isbndb.com/covers/24/43/9780152162443.jpg'), - ('0152162577', 'Deep Wizardry: The Second Book In The Young Wizards Series', 'https://images.isbndb.com/covers/25/73/9780152162573.jpg'), - ('015216250X', 'So You Want To Be A Wizard: The First Book In The Young Wizards Series', 'https://images.isbndb.com/covers/25/04/9780152162504.jpg'), - ('1562477528', 'Going For Great (American Girl (Paperback Unnumbered))', 'https://images.isbndb.com/covers/75/23/9781562477523.jpg'), - ('0439221676', 'All That Glitters (Avalon, 2)', 'https://images.isbndb.com/covers/16/72/9780439221672.jpg'), - ('0439221684', 'Cry Of The Wolf (Avalon Web Of Magic)', 'https://images.isbndb.com/covers/16/89/9780439221689.jpg'), - ('0439221714', 'Avalon: Web Of Magic #4: Secret Of The Unicorn', 'https://images.isbndb.com/covers/17/19/9780439221719.jpg'), - ('0439221706', 'Spellsinger (Avalon: Web Of Magic, Book 5)', 'https://images.isbndb.com/covers/17/02/9780439221702.jpg'), - ('0439221730', 'Avalon: Web Of Magic #6: Trial By Fire', 'https://images.isbndb.com/covers/17/33/9780439221733.jpg'), - ('0440415993', 'Ties That Bind, Ties That Break', 'https://images.isbndb.com/covers/59/92/9780440415992.jpg'), - ('0895872102', 'The Hauntings Of Williamsburg, Yorktown, And Jamestown', 'https://images.isbndb.com/covers/21/04/9780895872104.jpg'), - ('068983585X', 'The Janitor''s Boy', 'https://images.isbndb.com/covers/58/58/9780689835858.jpg'), - ('0345391802', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/18/03/9780345391803.jpg'), - ('0440219078', 'The Giver', 'https://images.isbndb.com/covers/90/71/9780440219071.jpg'), - ('185424597X', 'The Heavenly Man: The Remarkable True Story Of Chinese Christian Brother Yun', 'https://images.isbndb.com/covers/59/77/9781854245977.jpg'), - ('2080105434', 'The Little Book Of Chocolate', 'https://images.isbndb.com/covers/54/31/9782080105431.jpg'), - ('349913358X', 'Das Schlampenbuch', 'https://images.isbndb.com/covers/35/89/9783499133589.jpg'), - ('3257201761', 'Die Zwei Gesichter Des Januars', 'https://images.isbndb.com/covers/17/65/9783257201765.jpg'), - ('3404121686', 'Nacht über Den Wassern: Roman', 'https://images.isbndb.com/covers/16/87/9783404121687.jpg'), - ('3404118960', 'Die Säulen Der Erde: Roman', 'https://images.isbndb.com/covers/89/60/9783404118960.jpg'), - ('0345356578', 'A Man Rides Through', 'https://images.isbndb.com/covers/65/74/9780345356574.jpg'), - ('0345346971', 'The Mirror Of Her Dreams (Mordant''s Need)', 'https://images.isbndb.com/covers/69/71/9780345346971.jpg'), - ('0753804700', 'Reader', 'https://images.isbndb.com/covers/47/04/9780753804704.jpg'), - ('0451155750', 'The Dead Zone (Signet)', 'https://images.isbndb.com/covers/57/57/9780451155757.jpg'), - ('0786890436', 'The Diary Of Ellen Rimbauer: My Life At Rose Red', 'https://images.isbndb.com/covers/04/39/9780786890439.jpg'), - ('0415928087', 'A New Germany In A New Europe', 'https://images.isbndb.com/covers/80/83/9780415928083.jpg'), - ('0521427150', 'Belonging In The Two Berlins: Kin, State, Nation (Cambridge Studies In Social And Cultural Anthropology)', 'https://images.isbndb.com/covers/71/59/9780521427159.jpg'), - ('0812923278', 'The Great Depression: America 1929-1941', 'https://images.isbndb.com/covers/32/78/9780812923278.jpg'), - ('0884111342', 'Lady Of The Shroud', 'https://images.isbndb.com/covers/13/44/9780884111344.jpg'), - ('0345428544', 'Dark Tide I: Onslaught (Star Wars: The New Jedi Order, Book 2)', 'https://images.isbndb.com/covers/85/47/9780345428547.jpg'), - ('0671694049', 'The Long Dark Tea-Time Of The Soul', 'https://images.isbndb.com/covers/40/43/9780671694043.jpg'), - ('080901582X', 'The Return Of Simple', 'https://images.isbndb.com/covers/58/25/9780809015825.jpg'), - ('0449006557', 'Half Moon Street (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/65/59/9780449006559.jpg'), - ('0373250339', 'A Minor Indiscretion (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/03/32/9780373250332.jpg'), - ('0380820447', 'For Better, For Worse: A Novel', 'https://images.isbndb.com/covers/04/43/9780380820443.jpg'), - ('0385497679', 'Hidden In Plain View: A Secret Story Of Quilts And The Underground Railroad', 'https://images.isbndb.com/covers/76/71/9780385497671.jpg'), - ('0451454243', 'The Forest House (The Mists Of Avalon: Prequel)', 'https://images.isbndb.com/covers/42/49/9780451454249.jpg'), - ('0941423042', 'American Poetry Since 1970: Up Late', 'https://images.isbndb.com/covers/30/45/9780941423045.jpg'), - ('0373871562', 'Twin Blessings (Love Inspired #149)', 'https://images.isbndb.com/covers/15/68/9780373871568.jpg'), - ('0553101439', 'West Of Dodge', 'https://images.isbndb.com/covers/14/30/9780553101430.jpg'), - ('0898151910', 'How To Make A Thousand Dollars A Minute: Negotiating Salaries And Raises', 'https://images.isbndb.com/covers/19/16/9780898151916.jpg'), - ('0835949362', 'Non-manipulative Selling', 'https://images.isbndb.com/covers/93/61/9780835949361.jpg'), - ('0880701102', 'Come Before Winter-- And Share My Hope', 'https://images.isbndb.com/covers/11/05/9780880701105.jpg'), - ('039914563X', 'The Bear And The Dragon', 'https://images.isbndb.com/covers/56/36/9780399145636.jpg'), - ('0312853238', 'Ender''s Game (Ender Wiggin Saga)', 'https://images.isbndb.com/covers/32/35/9780312853235.jpg'), - ('0688048730', 'Thinking On Paper', 'https://images.isbndb.com/covers/87/30/9780688048730.jpg'), - ('0425161722', 'Net Force (Tom Clancy''s Net Force, Book 1)', 'https://images.isbndb.com/covers/17/22/9780425161722.jpg'), - ('0385493800', 'The Testament', 'https://images.isbndb.com/covers/38/02/9780385493802.jpg'), - ('0849916399', 'The Internet Church', 'https://images.isbndb.com/covers/63/97/9780849916397.jpg'), - ('1928791107', 'The Mp3 And Internet Audio Handbook: Your Guide To The Digital Music Revolution', 'https://images.isbndb.com/covers/11/02/9781928791102.jpg'), - ('067175145X', 'The Way Things Ought To Be', 'https://images.isbndb.com/covers/14/56/9780671751456.jpg'), - ('0440211727', 'A Time To Kill', 'https://images.isbndb.com/covers/17/23/9780440211723.jpg'), - ('0877192820', 'The Truth About Texas', 'https://images.isbndb.com/covers/28/24/9780877192824.jpg'), - ('0380002450', 'The Awakening', 'https://images.isbndb.com/covers/24/50/9780380002450.jpg'), - ('0793133955', 'Wall Street''s Picks For 2000', 'https://images.isbndb.com/covers/39/56/9780793133956.jpg'), - ('0394178017', 'Poetics Of The New American Poetry', 'https://images.isbndb.com/covers/80/11/9780394178011.jpg'), - ('0425134350', 'Patriot Games', 'https://images.isbndb.com/covers/43/51/9780425134351.jpg'), - ('0385479689', 'Dead Men Do Tell Tales: The Strange And Fascinating Cases Of A Forensic Anthropologist', 'https://images.isbndb.com/covers/96/84/9780385479684.jpg'), - ('0380754851', 'Moonlighting: 148 Great Ways To Make Money On The Side', 'https://images.isbndb.com/covers/48/54/9780380754854.jpg'), - ('0380538504', 'Amanda Miranda', 'https://images.isbndb.com/covers/85/08/9780380538508.jpg'), - ('044661162X', 'Chasing The Dime', 'https://images.isbndb.com/covers/16/26/9780446611626.jpg'), - ('0671742566', 'Tender Triumph (Sonnet Books)', 'https://images.isbndb.com/covers/25/60/9780671742560.jpg'), - ('0515122408', 'The Cat Who Tailed A Thief', 'https://images.isbndb.com/covers/24/04/9780515122404.jpg'), - ('0440222818', 'Guilt (Abe Glitsky)', 'https://images.isbndb.com/covers/28/11/9780440222811.jpg'), - ('0451204050', 'On Secret Service', 'https://images.isbndb.com/covers/40/59/9780451204059.jpg'), - ('038533334X', 'Charming Billy', 'https://images.isbndb.com/covers/33/44/9780385333344.jpg'), - ('0449131548', 'All Days Of My Life', 'https://images.isbndb.com/covers/15/41/9780449131541.jpg'), - ('0440120470', 'Dinner Party, The', 'https://images.isbndb.com/covers/04/76/9780440120476.jpg'), - ('0451188209', 'Murder, She Wrote: A Palette For Murder', 'https://images.isbndb.com/covers/82/05/9780451188205.jpg'), - ('0440130913', 'The Golden Cup', 'https://images.isbndb.com/covers/09/18/9780440130918.jpg'), - ('0449001954', 'Murder At The Library Of Congress (The Capital Crimes Series)', 'https://images.isbndb.com/covers/19/50/9780449001950.jpg'), - ('0345404777', 'No Safe Place', 'https://images.isbndb.com/covers/47/70/9780345404770.jpg'), - ('0451185277', 'Thorns Of Truth', 'https://images.isbndb.com/covers/52/73/9780451185273.jpg'), - ('0440224829', 'Granny Dan', 'https://images.isbndb.com/covers/48/22/9780440224822.jpg'), - ('0671779338', 'Border Bride', 'https://images.isbndb.com/covers/93/37/9780671779337.jpg'), - ('0515134368', 'The Penwyth Curse (Song Series)', 'https://images.isbndb.com/covers/43/60/9780515134360.jpg'), - ('0380759497', 'The Color Of Her Panties (Xanth #15)', 'https://images.isbndb.com/covers/94/91/9780380759491.jpg'), - ('3442098424', 'Chronik Der Vampire, Bd. 2: Der Fürst Der Finsternis', 'https://images.isbndb.com/covers/84/22/9783442098422.jpg'), - ('0394578791', 'A Reporter''s Life', 'https://images.isbndb.com/covers/87/98/9780394578798.jpg'), - ('1558505377', 'Jacob Marley''s Christmas Carol', 'https://images.isbndb.com/covers/53/77/9781558505377.jpg'), - ('0373245696', 'Practice Makes Pregnant (Manhattan Multiples) (Silhouette Special Edition, No 1569)', 'https://images.isbndb.com/covers/56/97/9780373245697.jpg'), - ('0743201078', 'The Secret Lives Of Girls: What Good Girls Really Do--Sex Play, Aggression, And Their Guilt', 'https://images.isbndb.com/covers/10/70/9780743201070.jpg'), - ('068983571X', 'Hound Of The Baskervilles (Aladdin Classics)', 'https://images.isbndb.com/covers/57/11/9780689835711.jpg'), - ('0553256785', 'Sleeping Murder', 'https://images.isbndb.com/covers/67/89/9780553256789.jpg'), - ('0892967994', 'The Fractal Murders (Pepper Keane Mysteries)', 'https://images.isbndb.com/covers/79/95/9780892967995.jpg'), - ('0061064505', 'Blowtorch Psycho.Com (Bone Chillers)', 'https://images.isbndb.com/covers/45/00/9780061064500.jpg'), - ('1551668785', 'Final Stand', 'https://images.isbndb.com/covers/87/89/9781551668789.jpg'), - ('0836230868', 'Christmas: A Holiday Treasury', 'https://images.isbndb.com/covers/08/64/9780836230864.jpg'), - ('0381999866', 'Magic House Of Numbers.', 'https://images.isbndb.com/covers/98/65/9780381999865.jpg'), - ('0380817144', 'Lord Of The Silent (Amelia Peabody, Book 13)', 'https://images.isbndb.com/covers/71/46/9780380817146.jpg'), - ('0380752115', 'Whisper To Me Of Love', 'https://images.isbndb.com/covers/21/19/9780380752119.jpg'), - ('0553212583', 'Wuthering Heights (Bantam Classics)', 'https://images.isbndb.com/covers/25/87/9780553212587.jpg'), - ('0446364762', 'The Stars Shine Down', 'https://images.isbndb.com/covers/47/68/9780446364768.jpg'), - ('0425166619', 'Toxin', 'https://images.isbndb.com/covers/66/11/9780425166611.jpg'), - ('061312975X', 'This Present Darkness', 'https://images.isbndb.com/covers/97/56/9780613129756.jpg'), - ('0765341972', 'The Mothman Prophecies', 'https://images.isbndb.com/covers/19/76/9780765341976.jpg'), - ('0590514776', 'Meet The Stars Of Buffy The Vampire Slayer', 'https://images.isbndb.com/covers/47/74/9780590514774.jpg'), - ('0373037430', 'Rush To The Altar (Twin Brides)', 'https://images.isbndb.com/covers/74/38/9780373037438.jpg'), - ('0064472779', 'All-American Girl', 'https://images.isbndb.com/covers/27/77/9780064472777.jpg'), - ('0553581279', 'The Silver Metal Lover', 'https://images.isbndb.com/covers/12/70/9780553581270.jpg'), - ('0373750013', 'The Virgin''s Secret Marriage', 'https://images.isbndb.com/covers/00/16/9780373750016.jpg'), - ('0393030342', 'A Christmas Story', 'https://images.isbndb.com/covers/03/41/9780393030341.jpg'), - ('0553561618', 'Dark Paradise: A Novel', 'https://images.isbndb.com/covers/16/16/9780553561616.jpg'), - ('0312422156', 'Middlesex: A Novel', 'https://images.isbndb.com/covers/21/58/9780312422158.jpg'), - ('0425139069', 'Somebody Help Me', 'https://images.isbndb.com/covers/90/66/9780425139066.jpg'), - ('0450029956', 'Other Worlds (SF Master)', 'https://images.isbndb.com/covers/99/50/9780450029950.jpg'), - ('0130139165', 'Introduction To Fire Prevention (5th Edition)', 'https://images.isbndb.com/covers/91/60/9780130139160.jpg'), - ('0373196741', 'To Catch A Sheik (Desert Brides)', 'https://images.isbndb.com/covers/67/46/9780373196746.jpg'), - ('0451524489', 'The Awakening And Selected Stories Of Kate Chopin (Signet Classic)', 'https://images.isbndb.com/covers/44/85/9780451524485.jpg'), - ('0140065172', 'Ordinary People', 'https://images.isbndb.com/covers/51/76/9780140065176.jpg'), - ('044022165X', 'The Rainmaker', 'https://images.isbndb.com/covers/16/54/9780440221654.jpg'), - ('0373123485', 'On The Tycoon''s Terms Do Not Disturb! (Harlequin Presents)', 'https://images.isbndb.com/covers/34/83/9780373123483.jpg'), - ('0373123108', 'Sleeping Partners (Nine To Five)', 'https://images.isbndb.com/covers/31/00/9780373123100.jpg'), - ('0590225170', 'The Real Mother Goose', 'https://images.isbndb.com/covers/51/75/9780590225175.jpg'), - ('0399143165', 'Toxin', 'https://images.isbndb.com/covers/31/68/9780399143168.jpg'), - ('044132231X', 'Heathcliff Gone Fishin''!', 'https://images.isbndb.com/covers/23/12/9780441322312.jpg'), - ('0425124347', 'The Bad Place', 'https://images.isbndb.com/covers/43/45/9780425124345.jpg'), - ('0786889705', 'Two For Texas', 'https://images.isbndb.com/covers/97/09/9780786889709.jpg'), - ('0312282990', 'The Amazing Adventures Of Kavalier & Clay', 'https://images.isbndb.com/covers/29/98/9780312282998.jpg'), - ('0425137945', 'Greygallows', 'https://images.isbndb.com/covers/79/49/9780425137949.jpg'), - ('042512892X', 'Into The Darkness', 'https://images.isbndb.com/covers/89/23/9780425128923.jpg'), - ('0425113892', 'Someone In The House', 'https://images.isbndb.com/covers/38/99/9780425113899.jpg'), - ('0394820371', 'The Phantom Tollbooth', 'https://images.isbndb.com/covers/03/78/9780394820378.jpg'), - ('0449134482', 'Dances With Wolves', 'https://images.isbndb.com/covers/44/81/9780449134481.jpg'), - ('014036336X', 'The House With A Clock In Its Walls (Lewis Barnavelt)', 'https://images.isbndb.com/covers/33/64/9780140363364.jpg'), - ('0375821813', 'Hoot', 'https://images.isbndb.com/covers/18/13/9780375821813.jpg'), - ('0812516826', 'Catnap: A Midnight Louie Mystery (Midnight Louie Mysteries)', 'https://images.isbndb.com/covers/68/21/9780812516821.jpg'), - ('0345348036', 'The Princess Bride: S Morgenstern''s Classic Tale Of True Love And High Adventure', 'https://images.isbndb.com/covers/80/36/9780345348036.jpg'), - ('0679420118', 'A Dangerous Place: California''s Unsettling Fate', 'https://images.isbndb.com/covers/01/18/9780679420118.jpg'), - ('0871137380', 'Black Hawk Down: A Story Of Modern War', 'https://images.isbndb.com/covers/73/88/9780871137388.jpg'), - ('0741409690', 'The Burberry Style', 'https://images.isbndb.com/covers/96/90/9780741409690.jpg'), - ('0741407213', 'Heavier Than Air: Riches To Burn In Balona (Balona Books)', 'https://images.isbndb.com/covers/72/14/9780741407214.jpg'), - ('0759612277', 'A Little Honesty: Trials And Triumphs Of A Prince Of Balona', 'https://images.isbndb.com/covers/22/73/9780759612273.jpg'), - ('0741402858', 'The Balona Klongs', 'https://images.isbndb.com/covers/28/51/9780741402851.jpg'), - ('1585007366', 'Sang Froyd (Balona Books)', 'https://images.isbndb.com/covers/73/63/9781585007363.jpg'), - ('074141127X', 'The Chocolate Korndog', 'https://images.isbndb.com/covers/12/73/9780741411273.jpg'), - ('0741403471', 'One Brick Shy', 'https://images.isbndb.com/covers/34/76/9780741403476.jpg'), - ('0741403781', 'Spring Break', 'https://images.isbndb.com/covers/37/80/9780741403780.jpg'), - ('0741403056', 'Focusing The Private Eye', 'https://images.isbndb.com/covers/30/56/9780741403056.jpg'), - ('0741405784', 'A Cuisine Of Leftovers', 'https://images.isbndb.com/covers/57/84/9780741405784.jpg'), - ('0741402912', 'Finding Dad', 'https://images.isbndb.com/covers/29/12/9780741402912.jpg'), - ('0553568760', 'Natural Causes', 'https://images.isbndb.com/covers/87/69/9780553568769.jpg'), - ('034538184X', 'Degree Of Guilt', 'https://images.isbndb.com/covers/18/42/9780345381842.jpg'), - ('0140620125', 'Wuthering Heights (Penguin Popular Classics)', 'https://images.isbndb.com/covers/01/22/9780140620122.jpg'), - ('0140620109', 'Emma (Penguin Popular Classics)', 'https://images.isbndb.com/covers/01/08/9780140620108.jpg'), - ('0375420827', 'The Art Of Travel', 'https://images.isbndb.com/covers/08/25/9780375420825.jpg'), - ('0671745530', 'So Long, And Thanks For All The Fish (The Fourth Book In The Hitchhiker''s Trilogy) (Hitchhiker''s Trilogy (Paperback))', 'https://images.isbndb.com/covers/55/30/9780671745530.jpg'), - ('0805062971', 'Fight Club: A Novel', 'https://images.isbndb.com/covers/29/77/9780805062977.jpg'), - ('0553211412', 'Wuthering Heights', 'https://images.isbndb.com/covers/14/12/9780553211412.jpg'), - ('0671510053', 'The Shipping News', 'https://images.isbndb.com/covers/00/53/9780671510053.jpg'), - ('1573229385', 'The Frog King', 'https://images.isbndb.com/covers/93/88/9781573229388.jpg'), - ('0945397410', 'Outhouses Of Alaska', 'https://images.isbndb.com/covers/74/10/9780945397410.jpg'), - ('0385334036', 'The Smoke Jumper', 'https://images.isbndb.com/covers/40/37/9780385334037.jpg'), - ('0060914653', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/46/53/9780060914653.jpg'), - ('0345347536', 'A Spell For Chameleon (Xanth, Book 1)', 'https://images.isbndb.com/covers/75/34/9780345347534.jpg'), - ('055321313X', 'Anne Of Green Gables', 'https://images.isbndb.com/covers/31/33/9780553213133.jpg'), - ('3473540420', 'Das Kurze Leben Der Sophie Scholl (Fiction, Poetry & Drama)', 'https://images.isbndb.com/covers/04/26/9783473540426.jpg'), - ('0375507256', 'Cloud Atlas: A Novel', 'https://images.isbndb.com/covers/72/50/9780375507250.jpg'), - ('0060529709', 'Everything Is Illuminated: A Novel', 'https://images.isbndb.com/covers/97/03/9780060529703.jpg'), - ('0876850867', 'Post Office', 'https://images.isbndb.com/covers/08/62/9780876850862.jpg'), - ('0140274154', 'On The Road (Essential Penguin)', 'https://images.isbndb.com/covers/41/58/9780140274158.jpg'), - ('0679743464', 'Hard-Boiled Wonderland And The End Of The World: A Novel (Vintage International)', 'https://images.isbndb.com/covers/34/60/9780679743460.jpg'), - ('0375704027', 'Norwegian Wood', 'https://images.isbndb.com/covers/40/24/9780375704024.jpg'), - ('0874067391', 'A Little Princess', 'https://images.isbndb.com/covers/73/92/9780874067392.jpg'), - ('0590484753', 'Talking To Dragons (Enchanted Forest Chronicles)', 'https://images.isbndb.com/covers/47/56/9780590484756.jpg'), - ('0451527038', 'The Call Of The Wild And Selected Stories: 100th Anniversary Edition (Signet Classics)', 'https://images.isbndb.com/covers/70/35/9780451527035.jpg'), - ('1590520777', 'A Life God Rewards For Teens (Breakthrough Series)', 'https://images.isbndb.com/covers/07/72/9781590520772.jpg'), - ('0590484672', 'Calling On Dragons ( The Enchanted Forest Chronicles, Book 3 )', 'https://images.isbndb.com/covers/46/71/9780590484671.jpg'), - ('0975311255', 'A Temporary New Wife', 'https://images.isbndb.com/covers/12/57/9780975311257.jpg'), - ('0743237188', 'Fall On Your Knees (Oprah''s Book Club)', 'https://images.isbndb.com/covers/71/85/9780743237185.jpg'), - ('0553586122', 'Reap The Wind', 'https://images.isbndb.com/covers/61/21/9780553586121.jpg'), - ('0553584510', 'The Survivors Club', 'https://images.isbndb.com/covers/45/16/9780553584516.jpg'), - ('0345341201', 'Sins Of Omission: A Novel', 'https://images.isbndb.com/covers/12/04/9780345341204.jpg'), - ('1551662744', 'White Lies', 'https://images.isbndb.com/covers/27/49/9781551662749.jpg'), - ('0440175623', 'Random Winds', 'https://images.isbndb.com/covers/56/29/9780440175629.jpg'), - ('0440216842', 'The Carousel', 'https://images.isbndb.com/covers/68/41/9780440216841.jpg'), - ('0345443284', 'While I Was Gone (Oprah''s Book Club)', 'https://images.isbndb.com/covers/32/81/9780345443281.jpg'), - ('0553285653', 'Grass', 'https://images.isbndb.com/covers/56/59/9780553285659.jpg'), - ('0394800133', 'One Fish Two Fish Red Fish Blue Fish (I Can Read It All By Myself)', 'https://images.isbndb.com/covers/01/34/9780394800134.jpg'), - ('0060972777', 'This Boy''s Life: A Memoir', 'https://images.isbndb.com/covers/27/76/9780060972776.jpg'), - ('0064401472', 'Zlateh The Goat And Other Stories', 'https://images.isbndb.com/covers/14/70/9780064401470.jpg'), - ('0156001942', 'Winter''s Tale', 'https://images.isbndb.com/covers/19/46/9780156001946.jpg'), - ('055326382X', 'The Dancing Wu Li Masters: An Overview Of The New Physics', 'https://images.isbndb.com/covers/38/24/9780553263824.jpg'), - ('0345418018', 'The World According To Garp (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/80/12/9780345418012.jpg'), - ('0684801469', 'A Farewell To Arms', 'https://images.isbndb.com/covers/14/69/9780684801469.jpg'), - ('0393961192', 'The American Constitution: Its Origins And Development, Volume II', 'https://images.isbndb.com/covers/11/95/9780393961195.jpg'), - ('9997522052', 'Collected Works Of Emile Zola', 'https://images.isbndb.com/covers/20/54/9789997522054.jpg'), - ('0872203492', 'Plato Complete Works', 'https://images.isbndb.com/covers/34/95/9780872203495.jpg'), - ('0312420145', 'The Twenty-Seventh City (Bestselling Backlist)', 'https://images.isbndb.com/covers/01/47/9780312420147.jpg'), - ('0911104542', 'Cat (kat), N', 'https://images.isbndb.com/covers/45/47/9780911104547.jpg'), - ('0375401318', 'Breaking Clean', 'https://images.isbndb.com/covers/13/12/9780375401312.jpg'), - ('0140253602', 'Felicia''s Journey: A Novel', 'https://images.isbndb.com/covers/36/03/9780140253603.jpg'), - ('0671789422', 'Possessing The Secret Of Joy', 'https://images.isbndb.com/covers/94/28/9780671789428.jpg'), - ('1566193966', 'A History Of Croatia', 'https://images.isbndb.com/covers/39/62/9781566193962.jpg'), - ('014016930X', 'Angle Of Repose (Contemporary American Fiction)', 'https://images.isbndb.com/covers/93/00/9780140169300.jpg'), - ('0140077022', 'White Noise (Contemporary American Fiction)', 'https://images.isbndb.com/covers/70/25/9780140077025.jpg'), - ('0679732764', 'Invisible Man', 'https://images.isbndb.com/covers/27/61/9780679732761.jpg'), - ('0553273604', 'Of Love And Shadows', 'https://images.isbndb.com/covers/36/01/9780553273601.jpg'), - ('0553273914', 'The House Of The Spirits', 'https://images.isbndb.com/covers/39/15/9780553273915.jpg'), - ('0060256672', 'Where The Sidewalk Ends: Poems And Drawings', 'https://images.isbndb.com/covers/66/78/9780060256678.jpg'), - ('039592720X', 'Interpreter Of Maladies', 'https://images.isbndb.com/covers/72/05/9780395927205.jpg'), - ('1859671500', 'Glorious Country: Food Crafts Decorating', 'https://images.isbndb.com/covers/15/04/9781859671504.jpg'), - ('0810935627', 'Loving', 'https://images.isbndb.com/covers/56/24/9780810935624.jpg'), - ('0060928336', 'Divine Secrets Of The Ya-Ya Sisterhood: A Novel', 'https://images.isbndb.com/covers/83/39/9780060928339.jpg'), - ('0671003755', 'She''s Come Undone', 'https://images.isbndb.com/covers/37/53/9780671003753.jpg'), - ('0553268449', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/84/47/9780553268447.jpg'), - ('0684844729', 'Stones From The River', 'https://images.isbndb.com/covers/47/25/9780684844725.jpg'), - ('0395051649', 'Clarissa (Riverside Editions)', 'https://images.isbndb.com/covers/16/41/9780395051641.jpg'), - ('0375705228', 'Italian Fever: A Novel', 'https://images.isbndb.com/covers/52/29/9780375705229.jpg'), - ('038001503X', 'One Hundred Years Of Solitude', 'https://images.isbndb.com/covers/50/30/9780380015030.jpg'), - ('0835607860', 'The Illustrated Encyclopedia Of Buddhist Wisdom: A Complete Introduction To The Principles And Practices Of Buddhism', 'https://images.isbndb.com/covers/78/65/9780835607865.jpg'), - ('158574218X', 'Common Phrases: And Where They Come From', 'https://images.isbndb.com/covers/21/89/9781585742189.jpg'), - ('0806996021', 'Notions And Potions: A Safe, Practical Guide To Creating Magic & Miracles', 'https://images.isbndb.com/covers/60/28/9780806996028.jpg'), - ('0440215625', 'Dragonfly In Amber (Outlander)', 'https://images.isbndb.com/covers/56/22/9780440215622.jpg'), - ('0316777730', 'Naked', 'https://images.isbndb.com/covers/77/35/9780316777735.jpg'), - ('0375501851', 'White Teeth', 'https://images.isbndb.com/covers/18/52/9780375501852.jpg'), - ('0877733759', 'Writing Down The Bones: Freeing The Writer Within', 'https://images.isbndb.com/covers/37/51/9780877733751.jpg'), - ('0805019367', '"K" Is For Killer (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/93/60/9780805019360.jpg'), - ('0140070206', 'Ironweed: A Novel', 'https://images.isbndb.com/covers/02/00/9780140070200.jpg'), - ('0140236589', 'Swimming In The Volcano', 'https://images.isbndb.com/covers/65/83/9780140236583.jpg'), - ('0140042393', 'The Grapes Of Wrath', 'https://images.isbndb.com/covers/23/99/9780140042399.jpg'), - ('1590520653', 'The Grace And Truth Paradox: Responding With Christlike Balance', 'https://images.isbndb.com/covers/06/59/9781590520659.jpg'), - ('1590521994', 'The Best Thing I Ever Did For My Marriage: 50 Real Life Stories', 'https://images.isbndb.com/covers/19/91/9781590521991.jpg'), - ('3446202218', 'Kreutzersonate: Eine Liebesgeschichte', 'https://images.isbndb.com/covers/22/14/9783446202214.jpg'), - ('3499134446', 'Tollivers Reisen', 'https://images.isbndb.com/covers/44/49/9783499134449.jpg'), - ('067142517X', 'How To Win Friends & Influence People (Revised)', 'https://images.isbndb.com/covers/51/73/9780671425173.jpg'), - ('0671726889', 'Cuckoo''s Egg', 'https://images.isbndb.com/covers/68/81/9780671726881.jpg'), - ('0446601241', 'Kiss The Girls (Alex Cross, No. 2)', 'https://images.isbndb.com/covers/12/45/9780446601245.jpg'), - ('0451124340', 'Different Seasons (Signet)', 'https://images.isbndb.com/covers/43/40/9780451124340.jpg'), - ('0345384466', 'The Witching Hour (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/44/61/9780345384461.jpg'), - ('0446604801', 'Jack & Jill (Alex Cross)', 'https://images.isbndb.com/covers/48/02/9780446604802.jpg'), - ('0345422392', 'Vittorio, The Vampire', 'https://images.isbndb.com/covers/23/92/9780345422392.jpg'), - ('0679734775', 'The House On Mango Street', 'https://images.isbndb.com/covers/47/72/9780679734772.jpg'), - ('0440414717', 'My Life In Dog Years', 'https://images.isbndb.com/covers/47/11/9780440414711.jpg'), - ('0689715625', 'Black Gold', 'https://images.isbndb.com/covers/56/24/9780689715624.jpg'), - ('0812539389', 'Red Unicorn (Tor Fantasy)', 'https://images.isbndb.com/covers/93/87/9780812539387.jpg'), - ('0152013369', 'The Silent Storm', 'https://images.isbndb.com/covers/33/63/9780152013363.jpg'), - ('0425124819', 'Black Rainbow', 'https://images.isbndb.com/covers/48/19/9780425124819.jpg'), - ('0345409469', 'The Demon-Haunted World: Science As A Candle In The Dark', 'https://images.isbndb.com/covers/94/61/9780345409461.jpg'), - ('1558747346', 'Teen Love: On Relationships, A Book For Teenagers', 'https://images.isbndb.com/covers/73/40/9781558747340.jpg'), - ('0373250177', 'On The Verge (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/01/72/9780373250172.jpg'), - ('0763615382', 'ChaseR: A Novel In E-mails', 'https://images.isbndb.com/covers/53/83/9780763615383.jpg'), - ('0965975401', 'Cool Women', 'https://images.isbndb.com/covers/54/07/9780965975407.jpg'), - ('0141001771', 'Welcome To My Planet: Where English Is Sometimes Spoken', 'https://images.isbndb.com/covers/17/77/9780141001777.jpg'), - ('068930935X', 'A STRING OF CHANCES', 'https://images.isbndb.com/covers/93/59/9780689309359.jpg'), - ('0451523369', 'Frankenstein: Or, The Modern Prometheus', 'https://images.isbndb.com/covers/33/65/9780451523365.jpg'), - ('0786884622', 'World Of Pies', 'https://images.isbndb.com/covers/46/29/9780786884629.jpg'), - ('0449005569', 'Love: A User''s Guide', 'https://images.isbndb.com/covers/55/69/9780449005569.jpg'), - ('0671027344', 'The Perks Of Being A Wallflower', 'https://images.isbndb.com/covers/73/46/9780671027346.jpg'), - ('0786927089', 'Dragons Of Summer Flame', 'https://images.isbndb.com/covers/70/81/9780786927081.jpg'), - ('0684831058', 'Dancing At The Rascal Fair', 'https://images.isbndb.com/covers/10/53/9780684831053.jpg'), - ('006019491X', 'Daughter Of Fortune: A Novel', 'https://images.isbndb.com/covers/49/18/9780060194918.jpg'), - ('0684819066', 'A Beautiful Mind : A Biography Of John Forbes Nash, Jr.', 'https://images.isbndb.com/covers/90/68/9780684819068.jpg'), - ('0375420673', 'The Bridegroom: Stories', 'https://images.isbndb.com/covers/06/72/9780375420672.jpg'), - ('0140368558', 'Kiss The Dust', 'https://images.isbndb.com/covers/85/50/9780140368550.jpg'), - ('0395353416', 'Slippage: Previously Uncollected, Precariously Poised Stories', 'https://images.isbndb.com/covers/34/17/9780395353417.jpg'), - ('0066211611', 'Portrait In Sepia: A Novel', 'https://images.isbndb.com/covers/16/19/9780066211619.jpg'), - ('0312254164', 'The Pilgrimage Road To Santiago: The Complete Cultural Handbook', 'https://images.isbndb.com/covers/41/62/9780312254162.jpg'), - ('3453147243', 'Der Magier, Der Erbe Der Nacht', 'https://images.isbndb.com/covers/72/49/9783453147249.jpg'), - ('3746611229', 'Der Fremde Freund. ( Drachenblut).', 'https://images.isbndb.com/covers/12/28/9783746611228.jpg'), - ('3492229336', 'Die Meute Der Erben: Roman', 'https://images.isbndb.com/covers/93/33/9783492229333.jpg'), - ('3453177800', 'Ein Mann Für Jede Gelegenheit.', 'https://images.isbndb.com/covers/78/02/9783453177802.jpg'), - ('3423009152', 'Der Geteilte Himmel: Erzählung', 'https://images.isbndb.com/covers/91/57/9783423009157.jpg'), - ('3596133319', 'Helden Wie Wir', 'https://images.isbndb.com/covers/33/14/9783596133314.jpg'), - ('3822813397', 'Schamanismus. Reisen Der Seele. Magische Kräfte. Ekstase Und Heilung', 'https://images.isbndb.com/covers/33/93/9783822813393.jpg'), - ('3426871874', 'Entdecke Den Schamanen In Dir: Reise In Die Innere Welt Des Alltags', 'https://images.isbndb.com/covers/18/74/9783426871874.jpg'), - ('3453171977', 'Das Meer Und Kleine Fische.', 'https://images.isbndb.com/covers/19/78/9783453171978.jpg'), - ('3423620005', 'Sofies Welt: Roman über Die Geschichte Der Philosophie', 'https://images.isbndb.com/covers/00/00/9783423620000.jpg'), - ('034537522X', 'The Book Of Lost Tales, Part Two (The History Of Middle-Earth, Vol. 2)', 'https://images.isbndb.com/covers/52/23/9780345375223.jpg'), - ('0345375211', 'The Book Of Lost Tales 1(The History Of Middle-Earth, Vol. 1)', 'https://images.isbndb.com/covers/52/16/9780345375216.jpg'), - ('034545829X', 'Waking Up Screaming: Haunting Tales Of Terror', 'https://images.isbndb.com/covers/82/92/9780345458292.jpg'), - ('0140042520', 'Dharma Bums', 'https://images.isbndb.com/covers/25/28/9780140042528.jpg'), - ('0380789035', 'American Gods', 'https://images.isbndb.com/covers/90/30/9780380789030.jpg'), - ('0446677574', 'Just Here Trying To Save A Few Lives: Tales Of Life And Death From The ER', 'https://images.isbndb.com/covers/75/78/9780446677578.jpg'), - ('0345358791', '2061: Odyssey Three', 'https://images.isbndb.com/covers/87/90/9780345358790.jpg'), - ('0060964049', 'Tales Of The City (Tales Of The City Series, V. 1)', 'https://images.isbndb.com/covers/40/47/9780060964047.jpg'), - ('0380558483', 'The Pigeon', 'https://images.isbndb.com/covers/84/83/9780380558483.jpg'), - ('1558171398', 'Deadly Sleep', 'https://images.isbndb.com/covers/13/98/9781558171398.jpg'), - ('0425121046', 'Demon Night', 'https://images.isbndb.com/covers/10/47/9780425121047.jpg'), - ('0441317502', 'Harp And The Blade', 'https://images.isbndb.com/covers/75/09/9780441317509.jpg'), - ('0804102279', 'The World, The Flesh And The Devil', 'https://images.isbndb.com/covers/22/78/9780804102278.jpg'), - ('0812551389', 'The Skystone (The Camulod Chronicles, Book 1)', 'https://images.isbndb.com/covers/13/89/9780812551389.jpg'), - ('0345298985', 'The One Tree (The Second Chronicles Of Thomas Covenant, Book 2)', 'https://images.isbndb.com/covers/89/80/9780345298980.jpg'), - ('0345316991', 'THE WHITE GOLD WIELDER (Second Chronicles Of Thomas Covenant)', 'https://images.isbndb.com/covers/69/98/9780345316998.jpg'), - ('034531042X', 'The Wounded Land (Second Chronicles Of Thomas Covenant, Vol. 1)', 'https://images.isbndb.com/covers/04/22/9780345310422.jpg'), - ('0345310306', 'The Power That Preserves (The Chronicles Of Thomas Covenant The Unbeliever, Book Three)', 'https://images.isbndb.com/covers/03/09/9780345310309.jpg'), - ('0345310292', 'The Illearth War (Chronicles Of Thomas Covenant The Unbeliever, Vol. 2)', 'https://images.isbndb.com/covers/02/93/9780345310293.jpg'), - ('034531011X', 'Lord Foul''s Bane (The Chronicles Of Thomas Covenant The Unbeliever, Book One)', 'https://images.isbndb.com/covers/01/18/9780345310118.jpg'), - ('0679734058', 'Killing Mister Watson', 'https://images.isbndb.com/covers/40/55/9780679734055.jpg'), - ('0451130448', 'Exocet', 'https://images.isbndb.com/covers/04/40/9780451130440.jpg'), - ('0553266500', 'Crib,the', 'https://images.isbndb.com/covers/65/04/9780553266504.jpg'), - ('0440206154', 'Red Dragon', 'https://images.isbndb.com/covers/61/56/9780440206156.jpg'), - ('0345370775', 'Jurassic Park', 'https://images.isbndb.com/covers/07/78/9780345370778.jpg'), - ('0441366945', 'Imaginary Lands', 'https://images.isbndb.com/covers/69/41/9780441366941.jpg'), - ('0553574833', 'So That Others May Live: Caroline Hebard & Her Search-And-Rescue Dogs', 'https://images.isbndb.com/covers/48/38/9780553574838.jpg'), - ('0915950839', 'How To Get Your Kid To Eat: But Not Too Much', 'https://images.isbndb.com/covers/08/36/9780915950836.jpg'), - ('0060242388', 'Shape Changer', 'https://images.isbndb.com/covers/23/81/9780060242381.jpg'), - ('0452265347', 'The Piano Lesson', 'https://images.isbndb.com/covers/53/49/9780452265349.jpg'), - ('0743457943', 'Trading Places', 'https://images.isbndb.com/covers/79/41/9780743457941.jpg'), - ('0373484224', 'The Stanislaski Brothers (Two Complete Novels: Mikhail And Alex)', 'https://images.isbndb.com/covers/42/25/9780373484225.jpg'), - ('0553205757', 'Housekeeping', 'https://images.isbndb.com/covers/57/56/9780553205756.jpg'), - ('0060171510', 'A Feather On The Breath Of God: A Novel', 'https://images.isbndb.com/covers/15/13/9780060171513.jpg'), - ('0312421001', 'I Thought My Father Was God: And Other True Tales From NPR''s National Story Project', 'https://images.isbndb.com/covers/10/07/9780312421007.jpg'), - ('0786000988', 'Highland Fling', 'https://images.isbndb.com/covers/09/82/9780786000982.jpg'), - ('0380789019', 'Neverwhere', 'https://images.isbndb.com/covers/90/16/9780380789016.jpg'), - ('0451135989', 'The French Lieutenant''s Woman', 'https://images.isbndb.com/covers/59/88/9780451135988.jpg'), - ('0380018179', 'The Thorn Birds', 'https://images.isbndb.com/covers/81/78/9780380018178.jpg'), - ('0679004785', 'Fodor''s Exploring London, 4th Edition (Exploring Guides)', 'https://images.isbndb.com/covers/47/83/9780679004783.jpg'), - ('0684825821', 'On Her Own Ground: The Life And Times Of Madam C.J. Walker', 'https://images.isbndb.com/covers/58/23/9780684825823.jpg'), - ('0517395754', 'Four Complete Lord Peter Wimsey Novels: Whose Body? / Clouds Of Witness / Murder Must Advertise / Gaudy Night', 'https://images.isbndb.com/covers/57/52/9780517395752.jpg'), - ('067101420X', 'Forever... : A Novel Of Good And Evil, Love And Hope (Forever Trilogy)', 'https://images.isbndb.com/covers/42/09/9780671014209.jpg'), - ('0679457313', 'The God Of Small Things', 'https://images.isbndb.com/covers/73/12/9780679457312.jpg'), - ('0394557433', 'GIFT FROM THE SEA', 'https://images.isbndb.com/covers/74/34/9780394557434.jpg'), - ('0553571656', 'The Beekeeper''s Apprentice', 'https://images.isbndb.com/covers/16/53/9780553571653.jpg'), - ('0312169787', 'The Red Tent: A Novel', 'https://images.isbndb.com/covers/97/87/9780312169787.jpg'), - ('0942257324', 'The Earth House', 'https://images.isbndb.com/covers/73/28/9780942257328.jpg'), - ('0805008950', 'Tracks', 'https://images.isbndb.com/covers/89/51/9780805008951.jpg'), - ('0786866276', 'Mother Of Pearl', 'https://images.isbndb.com/covers/62/74/9780786866274.jpg'), - ('0151000638', 'Baba: A Return To China Upon My Father''s Shoulders', 'https://images.isbndb.com/covers/06/30/9780151000630.jpg'), - ('0140266771', 'Larry''s Party', 'https://images.isbndb.com/covers/67/71/9780140266771.jpg'), - ('015644450X', 'In Love & Trouble: Stories Of Black Women', 'https://images.isbndb.com/covers/45/07/9780156444507.jpg'), - ('0679723420', 'Pale Fire', 'https://images.isbndb.com/covers/34/24/9780679723424.jpg'), - ('0441004016', 'The Anubis Gates', 'https://images.isbndb.com/covers/40/10/9780441004010.jpg'), - ('0671500546', 'The Vulcan Academy Murders', 'https://images.isbndb.com/covers/05/42/9780671500542.jpg'), - ('0140620338', 'Picture Of Dorian Gray (Penguin Popular Classics)', 'https://images.isbndb.com/covers/03/37/9780140620337.jpg'), - ('0460878263', 'Samuel Taylor Coleridge Eman Poet Lib #18 (Everyman Poetry)', 'https://images.isbndb.com/covers/82/65/9780460878265.jpg'), - ('3257061269', 'Der Alchimist', 'https://images.isbndb.com/covers/12/60/9783257061260.jpg'), - ('3453210999', 'Das Lied Der Alten Steine', 'https://images.isbndb.com/covers/09/98/9783453210998.jpg'), - ('3404126661', 'Suche Hose, Biete Rock', 'https://images.isbndb.com/covers/66/68/9783404126668.jpg'), - ('3453177622', 'Zeit Im Wind', 'https://images.isbndb.com/covers/76/28/9783453177628.jpg'), - ('3453863593', 'Deutschland In Den Schatten', 'https://images.isbndb.com/covers/35/90/9783453863590.jpg'), - ('3499108518', 'Der Fänger Im Roggen', 'https://images.isbndb.com/covers/85/18/9783499108518.jpg'), - ('3518367064', 'Demian: Die Geschichte Von Emil Sinclairs Jugend (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/70/63/9783518367063.jpg'), - ('3453199766', 'Vielleicht Lieber Morgen.', 'https://images.isbndb.com/covers/97/67/9783453199767.jpg'), - ('3746670144', 'Ich, Prinzessin Viola. Ein Altes Haus Und Seine Besetzer.', 'https://images.isbndb.com/covers/01/40/9783746670140.jpg'), - ('3453088433', 'Das Druidentor.', 'https://images.isbndb.com/covers/84/36/9783453088436.jpg'), - ('0425137015', 'Timeless', 'https://images.isbndb.com/covers/70/17/9780425137017.jpg'), - ('0553572490', 'Vice', 'https://images.isbndb.com/covers/24/90/9780553572490.jpg'), - ('0553576976', 'West Of Dodge', 'https://images.isbndb.com/covers/69/79/9780553576979.jpg'), - ('0451450604', 'Union Forever (The Lost Regiment #2) (Book 2)', 'https://images.isbndb.com/covers/06/09/9780451450609.jpg'), - ('0441001335', 'The Callahan Touch', 'https://images.isbndb.com/covers/13/30/9780441001330.jpg'), - ('0451454677', 'Caverns Of Socrates', 'https://images.isbndb.com/covers/46/76/9780451454676.jpg'), - ('0373257074', 'Between The Sheets (Harlequin Temptation)', 'https://images.isbndb.com/covers/70/72/9780373257072.jpg'), - ('0441435351', 'Kent Montana And The Really Ugly Thing From Mars', 'https://images.isbndb.com/covers/53/57/9780441435357.jpg'), - ('0373092237', 'The Black Knight (Silhouette Special Edition #223)', 'https://images.isbndb.com/covers/22/39/9780373092239.jpg'), - ('0373057296', 'Midsummer Madness (Silhouette Desire)', 'https://images.isbndb.com/covers/72/90/9780373057290.jpg'), - ('0373058446', 'The Hand Of An Angel (Silhouette Desire, No 844)', 'https://images.isbndb.com/covers/84/40/9780373058440.jpg'), - ('0349103232', 'The Crow Road', 'https://images.isbndb.com/covers/32/35/9780349103235.jpg'), - ('0571197779', 'Life Is Elsewhere', 'https://images.isbndb.com/covers/77/74/9780571197774.jpg'), - ('0679745653', 'Breakfast At Tiffany''s', 'https://images.isbndb.com/covers/56/55/9780679745655.jpg'), - ('0571200389', 'The Golden Gate (FF Classics)', 'https://images.isbndb.com/covers/03/82/9780571200382.jpg'), - ('0785268480', 'Rachel''s Tears: The Spiritual Journey Of Columbine Martyr Rachel Scott', 'https://images.isbndb.com/covers/84/82/9780785268482.jpg'), - ('014044503X', 'The Sorrows Of Young Werther (Penguin Classics)', 'https://images.isbndb.com/covers/50/39/9780140445039.jpg'), - ('0851707777', 'Metropolis (BFI Film Classics)', 'https://images.isbndb.com/covers/77/78/9780851707778.jpg'), - ('0006276199', 'Alien At St Wilfred''s', 'https://images.isbndb.com/covers/61/97/9780006276197.jpg'), - ('0551031123', 'Why I Follow Jesus', 'https://images.isbndb.com/covers/11/28/9780551031128.jpg'), - ('0551030682', 'Sacred Diary Of Adrian Plass, Christian Speaker Aged 45 3/4', 'https://images.isbndb.com/covers/06/88/9780551030688.jpg'), - ('0551032510', 'Colours Of Survival: Discovering Hope In Bangladesh', 'https://images.isbndb.com/covers/25/14/9780551032514.jpg'), - ('000649840X', 'Angelas Ashes', 'https://images.isbndb.com/covers/84/07/9780006498407.jpg'), - ('0140431268', 'Treasury Of Thomas Hardy: Tess Of The D''Urbervilles, The Mayor Of Casterbridge, Far From The Madding Crowd', 'https://images.isbndb.com/covers/12/61/9780140431261.jpg'), - ('0099771519', 'Memoirs Of A Geisha Uk', 'https://images.isbndb.com/covers/15/17/9780099771517.jpg'), - ('0486265862', 'Who Were The Pharaohs?: A History Of Their Names With A List Of Cartouches', 'https://images.isbndb.com/covers/58/65/9780486265865.jpg'), - ('067102535X', 'Last Dance, Last Chance (Ann Rule''s Crime Files)', 'https://images.isbndb.com/covers/53/59/9780671025359.jpg'), - ('0876855575', 'Ham On Rye', 'https://images.isbndb.com/covers/55/77/9780876855577.jpg'), - ('0330376136', 'Once', 'https://images.isbndb.com/covers/61/36/9780330376136.jpg'), - ('0140272658', 'Are You Experienced?', 'https://images.isbndb.com/covers/26/59/9780140272659.jpg'), - ('3407780028', 'Oh, Wie Schön Ist Panama', 'https://images.isbndb.com/covers/00/27/9783407780027.jpg'), - ('3407780117', 'Komm, Wir Finden Einen Schatz (Gulliver)', 'https://images.isbndb.com/covers/01/19/9783407780119.jpg'), - ('3257250398', 'König Babar', 'https://images.isbndb.com/covers/03/98/9783257250398.jpg'), - ('3257250053', 'Die Geschichte Von Babar, Dem Kleinen Elefanten', 'https://images.isbndb.com/covers/00/53/9783257250053.jpg'), - ('3257250460', 'Serafin Und Seine Wundermaschine', 'https://images.isbndb.com/covers/04/66/9783257250466.jpg'), - ('3442435951', 'Ich Schenk Dir Meinen Mann', 'https://images.isbndb.com/covers/59/51/9783442435951.jpg'), - ('3442435838', 'Die Prüfung', 'https://images.isbndb.com/covers/58/38/9783442435838.jpg'), - ('3608919724', 'Der Kleine Taschentherapeut: In 60 Sekunden Wieder O.k', 'https://images.isbndb.com/covers/97/21/9783608919721.jpg'), - ('3453132262', 'Die Wolfsfrau - Die Kraft Der Weiblichen Urinstinkte', 'https://images.isbndb.com/covers/22/69/9783453132269.jpg'), - ('379411664X', 'Was Ist Das?', 'https://images.isbndb.com/covers/66/45/9783794116645.jpg'), - ('340780573X', 'Post Für Den Tiger (Beltz & Gelberg)', 'https://images.isbndb.com/covers/57/37/9783407805737.jpg'), - ('3407805853', 'Das Leben Der Thiere', 'https://images.isbndb.com/covers/58/50/9783407805850.jpg'), - ('0385720920', 'Choke', 'https://images.isbndb.com/covers/09/22/9780385720922.jpg'), - ('0385498721', 'Survivor: A Novel', 'https://images.isbndb.com/covers/87/22/9780385498722.jpg'), - ('0972948503', 'Gifted Trust', 'https://images.isbndb.com/covers/85/00/9780972948500.jpg'), - ('0380813815', 'Lamb: The Gospel According To Biff, Christ''s Childhood Pal', 'https://images.isbndb.com/covers/38/10/9780380813810.jpg'), - ('2070372294', 'Le Coq De Bruyère', 'https://images.isbndb.com/covers/22/94/9782070372294.jpg'), - ('2264030542', 'Retour à Brooklyn', 'https://images.isbndb.com/covers/05/42/9782264030542.jpg'), - ('0030615321', 'Ask For May, Settle For June (A Doonesbury Book)', 'https://images.isbndb.com/covers/53/20/9780030615320.jpg'), - ('0836217632', 'The Curse Of Madame "C" (A Far Side Collection)', 'https://images.isbndb.com/covers/76/36/9780836217636.jpg'), - ('0140099832', 'Lake Wobegon Days', 'https://images.isbndb.com/covers/98/36/9780140099836.jpg'), - ('0385314744', 'Rush Limbaugh Is A Big Fat Idiot And Other Observations', 'https://images.isbndb.com/covers/47/49/9780385314749.jpg'), - ('0316107417', 'Happy Trails', 'https://images.isbndb.com/covers/74/19/9780316107419.jpg'), - ('0894803700', '14,000 Things To Be Happy About', 'https://images.isbndb.com/covers/37/03/9780894803703.jpg'), - ('0449221164', 'In The Frame', 'https://images.isbndb.com/covers/11/67/9780449221167.jpg'), - ('0553801031', 'The New Rabbi: A Congregation Searches For Its Leader', 'https://images.isbndb.com/covers/10/33/9780553801033.jpg'), - ('0590457225', 'Dealing With Dragons (Enchanted Forest Chronicles)', 'https://images.isbndb.com/covers/72/24/9780590457224.jpg'), - ('0316929190', 'All Too Human: A Political Education', 'https://images.isbndb.com/covers/91/96/9780316929196.jpg'), - ('0553052845', 'Rubyfruit Jungle', 'https://images.isbndb.com/covers/28/48/9780553052848.jpg'), - ('0140390693', 'Little Women (Penguin Classics)', 'https://images.isbndb.com/covers/06/98/9780140390698.jpg'), - ('0439404371', 'The Thief Lord', 'https://images.isbndb.com/covers/43/72/9780439404372.jpg'), - ('0939766027', 'Fantastic Four Illustrated Books - Featuring The Peerless Power Of The Silver Surfer', 'https://images.isbndb.com/covers/60/24/9780939766024.jpg'), - ('0679741011', 'Sex, Art, And American Culture: Essays', 'https://images.isbndb.com/covers/10/15/9780679741015.jpg'), - ('0345307674', 'Star Wars : Return Of The Jedi', 'https://images.isbndb.com/covers/76/75/9780345307675.jpg'), - ('0425071421', 'Stranger Strg Lnd', 'https://images.isbndb.com/covers/14/27/9780425071427.jpg'), - ('0345297687', 'The Ship Who Sang', 'https://images.isbndb.com/covers/76/86/9780345297686.jpg'), - ('0766607119', 'Little Women (Treasury Of Illustrated Classics)', 'https://images.isbndb.com/covers/71/18/9780766607118.jpg'), - ('1573225789', 'The Color Of Water: A Black Man''s Tribute To His White Mother', 'https://images.isbndb.com/covers/57/86/9781573225786.jpg'), - ('0380754843', 'Wayside School Is Falling Down', 'https://images.isbndb.com/covers/48/47/9780380754847.jpg'), - ('0345368940', 'The Dolphins Of Pern (Dragonriders Of Pern Series)', 'https://images.isbndb.com/covers/89/42/9780345368942.jpg'), - ('0345331605', 'Dragonsdawn', 'https://images.isbndb.com/covers/16/01/9780345331601.jpg'), - ('0425050807', 'Beneath An Opal Moon', 'https://images.isbndb.com/covers/08/04/9780425050804.jpg'), - ('044100962X', 'Myth-ion Improbable', 'https://images.isbndb.com/covers/96/26/9780441009626.jpg'), - ('0553296981', 'Anne Frank: The Diary Of A Young Girl', 'https://images.isbndb.com/covers/69/83/9780553296983.jpg'), - ('1895383129', 'Kriya Yoga Sutras Of Patanjali And The Siddhas', 'https://images.isbndb.com/covers/31/26/9781895383126.jpg'), - ('0375724575', 'The Family Orchard', 'https://images.isbndb.com/covers/45/72/9780375724572.jpg'), - ('067163884X', 'This Hallowed Ground', 'https://images.isbndb.com/covers/88/49/9780671638849.jpg'), - ('0553140434', 'Miracle Worker', 'https://images.isbndb.com/covers/04/39/9780553140439.jpg'), - ('0029087104', 'History Of The Southern Confederacy', 'https://images.isbndb.com/covers/71/07/9780029087107.jpg'), - ('0425050750', 'War Of The Worlds', 'https://images.isbndb.com/covers/07/50/9780425050750.jpg'), - ('0345285549', 'The Elfstones Of Shannara (The Sword Of Shannara)', 'https://images.isbndb.com/covers/55/46/9780345285546.jpg'), - ('0345290240', 'The Sword Of Shannara', 'https://images.isbndb.com/covers/02/43/9780345290243.jpg'), - ('0345301870', 'Ogre, Ogre (The Magic Of Xanth, No. 5)', 'https://images.isbndb.com/covers/18/71/9780345301871.jpg'), - ('0451169530', 'The Stand: Expanded Edition: For The First Time Complete And Uncut (Signet)', 'https://images.isbndb.com/covers/95/32/9780451169532.jpg'), - ('067168390X', 'Lonesome Dove', 'https://images.isbndb.com/covers/39/00/9780671683900.jpg'), - ('0385335881', 'Shopaholic Takes Manhattan', 'https://images.isbndb.com/covers/58/81/9780385335881.jpg'), - ('0385335482', 'Confessions Of A Shopaholic (Shopaholic, No 1)', 'https://images.isbndb.com/covers/54/85/9780385335485.jpg'), - ('0553258001', 'Cider House Rules', 'https://images.isbndb.com/covers/80/04/9780553258004.jpg'), - ('0671679627', 'Prime Time', 'https://images.isbndb.com/covers/96/20/9780671679620.jpg'), - ('0375704043', 'Uncle Tungsten: Memories Of A Chemical Boyhood', 'https://images.isbndb.com/covers/40/48/9780375704048.jpg'), - ('0373871279', 'A Family At Last (Stealing Home Series #3) (Love Inspired #121)', 'https://images.isbndb.com/covers/12/78/9780373871278.jpg'), - ('0373484070', 'Sons Of Texas : Callaway Country', 'https://images.isbndb.com/covers/40/72/9780373484072.jpg'), - ('0805063889', 'Nickel And Dimed: On (Not) Getting By In America', 'https://images.isbndb.com/covers/38/82/9780805063882.jpg'), - ('068986020X', 'Gingerbread', 'https://images.isbndb.com/covers/02/01/9780689860201.jpg'), - ('0671568809', 'Strange Memories (Nancy Drew Files No. 122)', 'https://images.isbndb.com/covers/88/01/9780671568801.jpg'), - ('1573228567', 'My Grandfather''s Blessings: Stories Of Strength, Refuge, And Belonging', 'https://images.isbndb.com/covers/85/65/9781573228565.jpg'), - ('0553582658', 'Summer Light', 'https://images.isbndb.com/covers/26/59/9780553582659.jpg'), - ('051513399X', 'Smoke In Mirrors', 'https://images.isbndb.com/covers/39/98/9780515133998.jpg'), - ('0373218400', 'Table For Two', 'https://images.isbndb.com/covers/84/00/9780373218400.jpg'), - ('0449217868', 'Winter Wedding', 'https://images.isbndb.com/covers/78/63/9780449217863.jpg'), - ('0671573020', 'Divining Women', 'https://images.isbndb.com/covers/30/27/9780671573027.jpg'), - ('0517006456', 'Eve''s Rib', 'https://images.isbndb.com/covers/64/50/9780517006450.jpg'), - ('0786867086', 'In Search Of America', 'https://images.isbndb.com/covers/70/80/9780786867080.jpg'), - ('1569471800', 'The Distance Between', 'https://images.isbndb.com/covers/18/07/9781569471807.jpg'), - ('0374216495', 'Museum Guard', 'https://images.isbndb.com/covers/64/98/9780374216498.jpg'), - ('0312274572', 'No One Thinks Of Greenland: A Novel', 'https://images.isbndb.com/covers/45/73/9780312274573.jpg'), - ('0316825336', 'Evening News: A Novel', 'https://images.isbndb.com/covers/53/37/9780316825337.jpg'), - ('0871137631', 'Having Everything', 'https://images.isbndb.com/covers/76/30/9780871137630.jpg'), - ('0679419152', 'Nothin'' But Good Times Ahead', 'https://images.isbndb.com/covers/91/50/9780679419150.jpg'), - ('0060192895', 'Hunting Badger', 'https://images.isbndb.com/covers/28/91/9780060192891.jpg'), - ('0826308791', 'The Education Of Little Tree', 'https://images.isbndb.com/covers/87/95/9780826308795.jpg'), - ('0140259198', 'The Island Of The Day Before', 'https://images.isbndb.com/covers/91/93/9780140259193.jpg'), - ('0345435249', 'Darwin''s Radio', 'https://images.isbndb.com/covers/52/48/9780345435248.jpg'), - ('0441003257', 'Good Omens', 'https://images.isbndb.com/covers/32/59/9780441003259.jpg'), - ('0451202503', 'The Songcatcher', 'https://images.isbndb.com/covers/25/05/9780451202505.jpg'), - ('0446606812', 'Message In A Bottle', 'https://images.isbndb.com/covers/68/13/9780446606813.jpg'), - ('0671028375', 'Fatal Voyage (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/83/74/9780671028374.jpg'), - ('0451181468', 'Praying For Sleep', 'https://images.isbndb.com/covers/14/66/9780451181466.jpg'), - ('0399149759', 'Flashback', 'https://images.isbndb.com/covers/97/57/9780399149757.jpg'), - ('0345384733', 'Red Square', 'https://images.isbndb.com/covers/47/37/9780345384737.jpg'), - ('0671759361', 'Pearl In The Mist (Landry Series)', 'https://images.isbndb.com/covers/93/60/9780671759360.jpg'), - ('0830724982', 'Knockin At Heaven''s Door: God''s Spirit Can Touch Your Life', 'https://images.isbndb.com/covers/49/87/9780830724987.jpg'), - ('0399146008', 'Shock', 'https://images.isbndb.com/covers/60/08/9780399146008.jpg'), - ('3442720001', 'Das Halsband Der Taube: Roman', 'https://images.isbndb.com/covers/00/02/9783442720002.jpg'), - ('0515132632', 'Isle Of Lies', 'https://images.isbndb.com/covers/26/32/9780515132632.jpg'), - ('044990671X', 'Bronze Mirror', 'https://images.isbndb.com/covers/67/12/9780449906712.jpg'), - ('0688124402', 'Doll''s Eyes', 'https://images.isbndb.com/covers/44/03/9780688124403.jpg'), - ('0929587081', 'Men And Brethren', 'https://images.isbndb.com/covers/70/80/9780929587080.jpg'), - ('155970117X', 'My Father, His Son', 'https://images.isbndb.com/covers/11/74/9781559701174.jpg'), - ('0688105408', 'Starlings Laughing: A Memoir Of Africa', 'https://images.isbndb.com/covers/54/02/9780688105402.jpg'), - ('0871130297', 'The God Of Mirrors', 'https://images.isbndb.com/covers/02/97/9780871130297.jpg'), - ('0440500095', 'Unassigned Territory', 'https://images.isbndb.com/covers/00/94/9780440500094.jpg'), - ('1570362084', 'The Best Of Larry King Live: The Greatest Interviews', 'https://images.isbndb.com/covers/20/88/9781570362088.jpg'), - ('0060930535', 'The Poisonwood Bible (Oprah''s Book Club)', 'https://images.isbndb.com/covers/05/30/9780060930530.jpg'), - ('0375702709', 'A Lesson Before Dying (Oprah''s Book Club)', 'https://images.isbndb.com/covers/27/09/9780375702709.jpg'), - ('044990928X', 'Operating Instructions: A Journal Of My Son''s First Year', 'https://images.isbndb.com/covers/92/87/9780449909287.jpg'), - ('0671038184', 'Jewel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/81/82/9780671038182.jpg'), - ('0060916508', 'Their Eyes Were Watching God: A Novel', 'https://images.isbndb.com/covers/65/03/9780060916503.jpg'), - ('0756401453', 'Wild Magic (Fool''s Gold, Book 2)', 'https://images.isbndb.com/covers/14/50/9780756401450.jpg'), - ('0963270702', 'The Satanic Verses', 'https://images.isbndb.com/covers/07/02/9780963270702.jpg'), - ('0399242562', 'Shadowmancer', 'https://images.isbndb.com/covers/25/64/9780399242564.jpg'), - ('0552996009', 'Notes From A Small Island', 'https://images.isbndb.com/covers/60/06/9780552996006.jpg'), - ('0708881297', 'The Ireta Adventure : Dinosaur Planet, And Dinosaur Planet Survivors', 'https://images.isbndb.com/covers/12/93/9780708881293.jpg'), - ('0142000663', 'The Grapes Of Wrath (Centennial Edition)', 'https://images.isbndb.com/covers/06/63/9780142000663.jpg'), - ('0590542443', 'The Amber Spy Glass. Dark Materials Book III', 'https://images.isbndb.com/covers/24/49/9780590542449.jpg'), - ('0590112899', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/28/95/9780590112895.jpg'), - ('0590660543', 'Northern Lights (His Dark Materials)', 'https://images.isbndb.com/covers/05/49/9780590660549.jpg'), - ('0345361792', 'A Prayer For Owen Meany', 'https://images.isbndb.com/covers/17/90/9780345361790.jpg'), - ('0552999512', 'Away From It All', 'https://images.isbndb.com/covers/95/19/9780552999519.jpg'), - ('041619513X', 'Winnie-The-Pooh On Management And Problem Solving (Wisdom Of Pooh)', 'https://images.isbndb.com/covers/51/32/9780416195132.jpg'), - ('0855030224', 'An ABC For You And Me', 'https://images.isbndb.com/covers/02/23/9780855030223.jpg'), - ('0861638522', 'Brave Toy Soldier And Other Stories (Enid Blyton''s Popular Rewards Series)', 'https://images.isbndb.com/covers/85/29/9780861638529.jpg'), - ('0575073314', 'Shadowheart: Legends Of The Raven (Legends Of The Raven (Gollancz))', 'https://images.isbndb.com/covers/33/19/9780575073319.jpg'), - ('0575073004', 'Nightchild (Chronicles Of The Raven 3)', 'https://images.isbndb.com/covers/30/05/9780575073005.jpg'), - ('0394404289', 'The Prophet', 'https://images.isbndb.com/covers/42/88/9780394404288.jpg'), - ('000636988X', 'HOW NOT TO BE A PERFECT MOTHER: THE CRAFTY MOTHER''S GUIDE TO A QUIET LIFE (HOW NOT TO)', 'https://images.isbndb.com/covers/98/82/9780006369882.jpg'), - ('1578562333', 'No Eye Can See (Kinship And Courage Series #2)', 'https://images.isbndb.com/covers/23/36/9781578562336.jpg'), - ('0345458915', 'The Sinner', 'https://images.isbndb.com/covers/89/19/9780345458919.jpg'), - ('038531258X', 'Cold Sassy Tree', 'https://images.isbndb.com/covers/25/85/9780385312585.jpg'), - ('006092988X', 'A Tree Grows In Brooklyn', 'https://images.isbndb.com/covers/98/86/9780060929886.jpg'), - ('0140317937', 'The Neverending Story', 'https://images.isbndb.com/covers/79/30/9780140317930.jpg'), - ('0743225406', 'The Shipping News : A Novel', 'https://images.isbndb.com/covers/54/03/9780743225403.jpg'), - ('0553256696', 'The Hiding Place', 'https://images.isbndb.com/covers/66/97/9780553256697.jpg'), - ('0785263780', 'Only The River Runs Free (Galway Chronicles, Book 1)', 'https://images.isbndb.com/covers/37/84/9780785263784.jpg'), - ('0802433243', 'Only The Wind Remembers', 'https://images.isbndb.com/covers/32/44/9780802433244.jpg'), - ('0375413081', 'True Notebooks', 'https://images.isbndb.com/covers/30/87/9780375413087.jpg'), - ('1400034779', 'The No. 1 Ladies'' Detective Agency (Book 1)', 'https://images.isbndb.com/covers/47/72/9781400034772.jpg'), - ('038533303X', 'Driving Mr. Albert: A Trip Across America With Einstein''s Brain', 'https://images.isbndb.com/covers/30/30/9780385333030.jpg'), - ('0451163753', 'The French Lieutenant''s Woman (Signet)', 'https://images.isbndb.com/covers/37/52/9780451163752.jpg'), - ('0440414520', 'The Clearing - A Mystery', 'https://images.isbndb.com/covers/45/20/9780440414520.jpg'), - ('0786885688', 'Shopgirl: A Novella', 'https://images.isbndb.com/covers/56/88/9780786885688.jpg'), - ('0671880187', 'Kitchen', 'https://images.isbndb.com/covers/01/87/9780671880187.jpg'), - ('1558506454', 'Museum Of Science Book Of Answers & Questions', 'https://images.isbndb.com/covers/64/59/9781558506459.jpg'), - ('0895773538', 'How In The World?: A Fascinating Journey Through The World Of Human Ingenuity', 'https://images.isbndb.com/covers/35/31/9780895773531.jpg'), - ('0385247745', 'The Power Of Myth', 'https://images.isbndb.com/covers/77/40/9780385247740.jpg'), - ('0385293542', 'Crescent City', 'https://images.isbndb.com/covers/35/49/9780385293549.jpg'), - ('0802069347', 'Gibson''s Student Guide To Western Canadian Universities', 'https://images.isbndb.com/covers/93/44/9780802069344.jpg'), - ('0671721038', 'The New Hugo Winners, Vol. 2', 'https://images.isbndb.com/covers/10/39/9780671721039.jpg'), - ('0671311891', 'My Teacher Is An Alien', 'https://images.isbndb.com/covers/18/96/9780671311896.jpg'), - ('0345387007', 'The Tangle Box (Magic Kingdom Of Landover, Book 4)', 'https://images.isbndb.com/covers/70/04/9780345387004.jpg'), - ('037570504X', 'Breath, Eyes, Memory (Oprah''s Book Club)', 'https://images.isbndb.com/covers/50/45/9780375705045.jpg'), - ('0767902521', 'A Walk In The Woods: Rediscovering America On The Appalachian Trail (Official Guides To The Appalachian Trail)', 'https://images.isbndb.com/covers/25/26/9780767902526.jpg'), - ('0892967048', 'The Bottoms --Signed--', 'https://images.isbndb.com/covers/70/49/9780892967049.jpg'), - ('0553377868', 'The Flanders Panel', 'https://images.isbndb.com/covers/78/66/9780553377866.jpg'), - ('0472113658', 'Where No Gods Came (Sweetwater Fiction: Originals)', 'https://images.isbndb.com/covers/36/51/9780472113651.jpg'), - ('0609608444', 'The Devil In The White City: Murder, Magic, And Madness At The Fair That Changed America', 'https://images.isbndb.com/covers/84/49/9780609608449.jpg'), - ('0670032425', 'The Adventures Of Augie March (50th Anniv. Edition)', 'https://images.isbndb.com/covers/24/26/9780670032426.jpg'), - ('0915811332', 'Sacred Journey Of The Peaceful Warrior', 'https://images.isbndb.com/covers/13/35/9780915811335.jpg'), - ('1558744606', 'Chicken Soup For The Mother''s Soul: 101 Stories To Open The Hearts And Rekindle The Spirits Of Mothers', 'https://images.isbndb.com/covers/46/08/9781558744608.jpg'), - ('080410753X', 'The Kitchen God''s Wife', 'https://images.isbndb.com/covers/75/32/9780804107532.jpg'), - ('0451526503', 'The Adventures Of Huckleberry Finn: Revised Edition (Signet Classics)', 'https://images.isbndb.com/covers/65/02/9780451526502.jpg'), - ('0345325818', 'The Silmarillion', 'https://images.isbndb.com/covers/58/15/9780345325815.jpg'), - ('044023767X', 'Teen Angst? Naaah . . . A Quasi-autobiography', 'https://images.isbndb.com/covers/76/79/9780440237679.jpg'), - ('014131088X', 'Speak', 'https://images.isbndb.com/covers/08/86/9780141310886.jpg'), - ('043909013X', 'Kerosene (Push Fiction)', 'https://images.isbndb.com/covers/01/31/9780439090131.jpg'), - ('0140244824', 'Songs In Ordinary Time (Oprah''s Book Club)', 'https://images.isbndb.com/covers/48/23/9780140244823.jpg'), - ('155643068X', 'Exploring Inner & Outer Space', 'https://images.isbndb.com/covers/06/88/9781556430688.jpg'), - ('096478260X', 'Miracle In The Void: Free Energy, Ufos And Other Scientific Revelations', 'https://images.isbndb.com/covers/26/00/9780964782600.jpg'), - ('155643152X', 'The Second Coming Of Science', 'https://images.isbndb.com/covers/15/24/9781556431524.jpg'), - ('0553346768', 'Synchronicity: The Bridge Between Matter And Mind', 'https://images.isbndb.com/covers/67/63/9780553346763.jpg'), - ('0884043142', 'L. Ron Hubbard Presents Writers Of The Future, Vol. IV', 'https://images.isbndb.com/covers/31/40/9780884043140.jpg'), - ('0743221990', 'The Stone Monkey (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/19/93/9780743221993.jpg'), - ('0312983212', 'Saucer', 'https://images.isbndb.com/covers/32/15/9780312983215.jpg'), - ('0553486411', 'Clones (Star Wars: Galaxy Of Fear, Book 11)', 'https://images.isbndb.com/covers/64/14/9780553486414.jpg'), - ('3478088534', 'Jetzt Will Ich''s Wirklich Wissen', 'https://images.isbndb.com/covers/85/34/9783478088534.jpg'), - ('3821807059', 'Herr Lehmann', 'https://images.isbndb.com/covers/70/58/9783821807058.jpg'), - ('0865532168', 'Arnold: An Unauthorized Biography', 'https://images.isbndb.com/covers/21/68/9780865532168.jpg'), - ('059040640X', 'Freedom Train: The Story Of Harriet Tubman', 'https://images.isbndb.com/covers/64/06/9780590406406.jpg'), - ('1566197155', 'Little Princess', 'https://images.isbndb.com/covers/71/51/9781566197151.jpg'), - ('0805210318', 'Light On Yoga: Yoga Dipika', 'https://images.isbndb.com/covers/03/16/9780805210316.jpg'), - ('031227999X', 'Emotionally Weird: A Novel', 'https://images.isbndb.com/covers/99/98/9780312279998.jpg'), - ('0385508417', 'Skipping Christmas', 'https://images.isbndb.com/covers/84/14/9780385508414.jpg'), - ('0385510438', 'The Last Juror', 'https://images.isbndb.com/covers/04/31/9780385510431.jpg'), - ('0848705459', 'Southern Living Cooking Light', 'https://images.isbndb.com/covers/54/59/9780848705459.jpg'), - ('0380723638', 'Ill Wind (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/36/38/9780380723638.jpg'), - ('0718001044', 'Nelson''s Bedtime Bible Stories: 150 Passages From The International Children''s Bible', 'https://images.isbndb.com/covers/10/49/9780718001049.jpg'), - ('0307132668', 'Pokemon - Bye Bye Butterfree - Adventure Series #1', 'https://images.isbndb.com/covers/26/66/9780307132666.jpg'), - ('0812515722', 'American Gothic', 'https://images.isbndb.com/covers/57/25/9780812515725.jpg'), - ('0373169876', 'My Big Fake Green-Card Wedding (Harlequin American Romance)', 'https://images.isbndb.com/covers/98/70/9780373169870.jpg'), - ('0890842795', 'English Handbook For Christian Schools', 'https://images.isbndb.com/covers/27/99/9780890842799.jpg'), - ('0385324057', 'Summer Sisters', 'https://images.isbndb.com/covers/40/52/9780385324052.jpg'), - ('9505470010', 'Fahrenheit 451 (Spanish Edition)', 'https://images.isbndb.com/covers/00/13/9789505470013.jpg'), - ('0609602535', 'The Overseer', 'https://images.isbndb.com/covers/25/39/9780609602539.jpg'), - ('0425185710', 'Valhalla Rising (Dirk Pitt Adventure)', 'https://images.isbndb.com/covers/57/11/9780425185711.jpg'), - ('0061030651', 'U.S.S. Seawolf', 'https://images.isbndb.com/covers/06/59/9780061030659.jpg'), - ('0425178773', 'Day Of Reckoning (Sean Dillon)', 'https://images.isbndb.com/covers/87/75/9780425178775.jpg'), - ('0553575619', 'Raptor Red', 'https://images.isbndb.com/covers/56/13/9780553575613.jpg'), - ('0671578391', 'The Dracula Tape', 'https://images.isbndb.com/covers/83/98/9780671578398.jpg'), - ('0425095584', 'Cold Sea Rising', 'https://images.isbndb.com/covers/55/84/9780425095584.jpg'), - ('0451409086', 'Threat Vector', 'https://images.isbndb.com/covers/90/89/9780451409089.jpg'), - ('031298250X', 'America: A Jake Grafton Novel (Jake Grafton Novels)', 'https://images.isbndb.com/covers/25/08/9780312982508.jpg'), - ('006109594X', 'Nimitz Class', 'https://images.isbndb.com/covers/59/48/9780061095948.jpg'), - ('0671527215', 'Hitchhikers''s Guide To The Galaxy', 'https://images.isbndb.com/covers/72/11/9780671527211.jpg'), - ('0486203077', 'Tales Of Terror And The Supernatural', 'https://images.isbndb.com/covers/30/72/9780486203072.jpg'), - ('0671522817', 'BRAVEHEART', 'https://images.isbndb.com/covers/28/10/9780671522810.jpg'), - ('0618074716', 'The Hallelujah Side', 'https://images.isbndb.com/covers/47/16/9780618074716.jpg'), - ('1400062888', 'Obliviously On He Sails: The Bush Administration In Rhyme', 'https://images.isbndb.com/covers/28/81/9781400062881.jpg'), - ('0618045996', 'Riding The Bus With My Sister: A True Life Journey', 'https://images.isbndb.com/covers/59/90/9780618045990.jpg'), - ('0312303033', 'Perfect Skin: A Novel', 'https://images.isbndb.com/covers/30/37/9780312303037.jpg'), - ('1931520038', 'The Mount', 'https://images.isbndb.com/covers/00/34/9781931520034.jpg'), - ('0671318314', 'Callahan''s Lady', 'https://images.isbndb.com/covers/83/14/9780671318314.jpg'), - ('0553377876', 'Half Asleep In Frog Pajamas', 'https://images.isbndb.com/covers/78/73/9780553377873.jpg'), - ('1558612815', 'Allegra Maud Goldman', 'https://images.isbndb.com/covers/28/15/9781558612815.jpg'), - ('014025448X', 'At Home In Mitford (The Mitford Years, Book 1)', 'https://images.isbndb.com/covers/44/88/9780140254488.jpg'), - ('0060934417', 'Bel Canto', 'https://images.isbndb.com/covers/44/15/9780060934415.jpg'), - ('0671793489', 'All Around The Town', 'https://images.isbndb.com/covers/34/87/9780671793487.jpg'), - ('0174434642', 'Othello (3rd Series; The Arden Shakespeare)', 'https://images.isbndb.com/covers/46/41/9780174434641.jpg'), - ('0679772677', 'A Civil Action', 'https://images.isbndb.com/covers/26/75/9780679772675.jpg'), - ('0312983824', 'Faking It', 'https://images.isbndb.com/covers/38/26/9780312983826.jpg'), - ('0449149676', 'On Mystic Lake', 'https://images.isbndb.com/covers/96/76/9780449149676.jpg'), - ('0449006344', 'Angel Falls', 'https://images.isbndb.com/covers/63/44/9780449006344.jpg'), - ('0553568183', 'Blue Moon', 'https://images.isbndb.com/covers/81/89/9780553568189.jpg'), - ('0451191153', 'The Fountainhead', 'https://images.isbndb.com/covers/11/51/9780451191151.jpg'), - ('0440224624', 'The Loop', 'https://images.isbndb.com/covers/46/24/9780440224624.jpg'), - ('0451523067', 'Emma (Signet Classics)', 'https://images.isbndb.com/covers/30/68/9780451523068.jpg'), - ('0743418174', 'Good In Bed', 'https://images.isbndb.com/covers/81/71/9780743418171.jpg'), - ('0451526295', 'Mansfield Park (Signet Classics)', 'https://images.isbndb.com/covers/62/98/9780451526298.jpg'), - ('0440214424', 'Out Of Sight', 'https://images.isbndb.com/covers/44/27/9780440214427.jpg'), - ('0451187903', 'Sense And Sensibility: Movie Tie In Edition', 'https://images.isbndb.com/covers/79/01/9780451187901.jpg'), - ('0385491050', 'Surfacing', 'https://images.isbndb.com/covers/10/51/9780385491051.jpg'), - ('0671036505', 'The Vineyard', 'https://images.isbndb.com/covers/65/08/9780671036508.jpg'), - ('0553213504', 'The Count Of Monte Cristo (Bantam Classics)', 'https://images.isbndb.com/covers/35/08/9780553213508.jpg'), - ('0446605891', 'With Heart', 'https://images.isbndb.com/covers/58/92/9780446605892.jpg'), - ('0394758285', 'The Big Sleep', 'https://images.isbndb.com/covers/82/82/9780394758282.jpg'), - ('0671004565', 'We''ll Meet Again', 'https://images.isbndb.com/covers/45/69/9780671004569.jpg'), - ('0345370805', 'How To Make An American Quilt', 'https://images.isbndb.com/covers/08/08/9780345370808.jpg'), - ('0375703055', 'Ellen Foster', 'https://images.isbndb.com/covers/30/58/9780375703058.jpg'), - ('0156006529', 'Where Or When : A Novel', 'https://images.isbndb.com/covers/65/21/9780156006521.jpg'), - ('0446673544', 'Sex And The City', 'https://images.isbndb.com/covers/35/49/9780446673549.jpg'), - ('0140256369', 'Of Love And Other Demons (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/63/69/9780140256369.jpg'), - ('0312243022', 'The Hours: A Novel', 'https://images.isbndb.com/covers/30/29/9780312243029.jpg'), - ('0316789844', 'Resistance: A Novel', 'https://images.isbndb.com/covers/98/44/9780316789844.jpg'), - ('0679761837', 'A Natural History Of Love', 'https://images.isbndb.com/covers/18/39/9780679761839.jpg'), - ('0385490445', 'Alias Grace: A Novel', 'https://images.isbndb.com/covers/04/43/9780385490443.jpg'), - ('0380725398', 'Jamaica Inn', 'https://images.isbndb.com/covers/53/97/9780380725397.jpg'), - ('0345316770', 'Almost Paradise', 'https://images.isbndb.com/covers/67/76/9780345316776.jpg'), - ('0375700757', 'Cold Mountain: A Novel', 'https://images.isbndb.com/covers/07/50/9780375700750.jpg'), - ('0070212570', 'Fried Green Tomatoes At The Whistle Stop Cafe', 'https://images.isbndb.com/covers/25/72/9780070212572.jpg'), - ('0385480016', 'Bird By Bird: Some Instructions On Writing And Life', 'https://images.isbndb.com/covers/00/17/9780385480017.jpg'), - ('0061098361', 'Circle Of Three: A Novel', 'https://images.isbndb.com/covers/83/69/9780061098369.jpg'), - ('0061093092', 'Lily White', 'https://images.isbndb.com/covers/30/98/9780061093098.jpg'), - ('0821758950', 'Cha Cha Cha', 'https://images.isbndb.com/covers/89/53/9780821758953.jpg'), - ('0679729917', 'The Best Of Roald Dahl', 'https://images.isbndb.com/covers/99/14/9780679729914.jpg'), - ('0451411013', 'The Grave Maurice', 'https://images.isbndb.com/covers/10/13/9780451411013.jpg'), - ('0446611239', 'The Cabinet Of Curiosities (Pendergast, Book 3)', 'https://images.isbndb.com/covers/12/37/9780446611237.jpg'), - ('0553580078', 'The Years Of Rice And Salt', 'https://images.isbndb.com/covers/00/75/9780553580075.jpg'), - ('0425189414', 'Midnight Runner (Sean Dillon)', 'https://images.isbndb.com/covers/94/12/9780425189412.jpg'), - ('0812909372', 'On Language', 'https://images.isbndb.com/covers/93/71/9780812909371.jpg'), - ('0451410912', 'A Killing Gift', 'https://images.isbndb.com/covers/09/17/9780451410917.jpg'), - ('0316781266', 'The Last Time They Met: A Novel', 'https://images.isbndb.com/covers/12/68/9780316781268.jpg'), - ('0486280616', 'Adventures Of Huckleberry Finn (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/15/9780486280615.jpg'), - ('0743405978', 'Bless The Child', 'https://images.isbndb.com/covers/59/73/9780743405973.jpg'), - ('0671032658', 'The Green Mile', 'https://images.isbndb.com/covers/26/54/9780671032654.jpg'), - ('0446607835', 'Somebody To Love?: A Rock-and-Roll Memoir', 'https://images.isbndb.com/covers/78/34/9780446607834.jpg'), - ('0451402103', 'Bitter Blood: A True Story Of Southern Family Pride, Madness, And Multiple Murder (Onyx)', 'https://images.isbndb.com/covers/21/03/9780451402103.jpg'), - ('0373250223', 'Name & Address Withheld', 'https://images.isbndb.com/covers/02/26/9780373250226.jpg'), - ('0380817683', 'Rachel''s Holiday', 'https://images.isbndb.com/covers/76/89/9780380817689.jpg'), - ('0671701053', 'Thing Of Beauty', 'https://images.isbndb.com/covers/10/55/9780671701055.jpg'), - ('0671000381', 'Courtney Love: The Queen Of Noise', 'https://images.isbndb.com/covers/03/87/9780671000387.jpg'), - ('006101253X', 'Sinners', 'https://images.isbndb.com/covers/25/32/9780061012532.jpg'), - ('0671689231', 'Little Girl Lost', 'https://images.isbndb.com/covers/92/30/9780671689230.jpg'), - ('0380814021', 'The Princess Diaries', 'https://images.isbndb.com/covers/40/22/9780380814022.jpg'), - ('0373711026', 'North Country Man (Harlequin Superromance No. 1102)', 'https://images.isbndb.com/covers/10/24/9780373711024.jpg'), - ('0373710992', 'The Farmer''s Wife (Harlequin Superromance No. 1099)', 'https://images.isbndb.com/covers/09/97/9780373710997.jpg'), - ('0373711107', 'The Comeback Girl: Those Sullivan Sisters (Harlequin Superromance No. 1110)', 'https://images.isbndb.com/covers/11/09/9780373711109.jpg'), - ('0440217806', 'Secret Ceremonies', 'https://images.isbndb.com/covers/78/00/9780440217800.jpg'), - ('0373711123', 'Another Man''s Wife (Harlequin Superromance No. 1112)', 'https://images.isbndb.com/covers/11/23/9780373711123.jpg'), - ('0373711115', 'Sarah''s Baby : Koomera Crossing (Harlequin Superromance No. 1111)', 'https://images.isbndb.com/covers/11/16/9780373711116.jpg'), - ('0373711131', 'Little Girl Lost (Harlequin Superromance No. 1113)', 'https://images.isbndb.com/covers/11/30/9780373711130.jpg'), - ('0061098795', 'The Wailing Wind', 'https://images.isbndb.com/covers/87/96/9780061098796.jpg'), - ('0791423549', 'Native American Postcolonial Psychology', 'https://images.isbndb.com/covers/35/47/9780791423547.jpg'), - ('0375725784', 'A Heartbreaking Work Of Staggering Genius', 'https://images.isbndb.com/covers/57/84/9780375725784.jpg'), - ('0465016146', 'The Mystery Of Capital: Why Capitalism Triumphs In The West And Fails Everywhere Else', 'https://images.isbndb.com/covers/61/43/9780465016143.jpg'), - ('0465016103', 'The Other Path: The Economic Answer To Terrorism', 'https://images.isbndb.com/covers/61/05/9780465016105.jpg'), - ('0373226519', 'In The Blink Of An Eye (The Taylor Clan) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/65/11/9780373226511.jpg'), - ('0380012774', 'The Importance Of Being Earnest', 'https://images.isbndb.com/covers/27/70/9780380012770.jpg'), - ('225313922X', 'Les Thanatonautes', 'https://images.isbndb.com/covers/92/25/9782253139225.jpg'), - ('0142004030', 'Lost In A Good Book (A Thursday Next Novel)', 'https://images.isbndb.com/covers/40/36/9780142004036.jpg'), - ('0452281784', 'Bad Heir Day', 'https://images.isbndb.com/covers/17/83/9780452281783.jpg'), - ('0375704558', 'Charlotte Gray', 'https://images.isbndb.com/covers/45/50/9780375704550.jpg'), - ('038533656X', 'Apocalipstick', 'https://images.isbndb.com/covers/65/67/9780385336567.jpg'), - ('0743230213', 'Harem: A Novel', 'https://images.isbndb.com/covers/02/16/9780743230216.jpg'), - ('0345436911', 'The Dress Lodger (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/69/17/9780345436917.jpg'), - ('0452284481', 'Le Divorce', 'https://images.isbndb.com/covers/44/87/9780452284487.jpg'), - ('0802135196', 'Valley Of The Dolls', 'https://images.isbndb.com/covers/51/93/9780802135193.jpg'), - ('0440217520', 'Tunnel Vision (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/75/27/9780440217527.jpg'), - ('0373834985', 'A Comfortable Wife', 'https://images.isbndb.com/covers/49/83/9780373834983.jpg'), - ('0679450548', 'I Was Amelia Earhart', 'https://images.isbndb.com/covers/05/42/9780679450542.jpg'), - ('0451135555', 'Summer Harvest (Signet)', 'https://images.isbndb.com/covers/55/51/9780451135551.jpg'), - ('0345339703', 'The Fellowship Of The Ring (The Lord Of The Rings, Volume 1)', 'https://images.isbndb.com/covers/97/06/9780345339706.jpg'), - ('038039586X', 'Watership Down', 'https://images.isbndb.com/covers/58/66/9780380395866.jpg'), - ('0670030643', 'The Eyre Affair', 'https://images.isbndb.com/covers/06/44/9780670030644.jpg'), - ('0060929596', 'As Nature Made Him: The Boy Who Was Raised As A Girl', 'https://images.isbndb.com/covers/95/96/9780060929596.jpg'), - ('3499232871', 'Herzsprung', 'https://images.isbndb.com/covers/28/79/9783499232879.jpg'), - ('0374516901', 'Basin And Range', 'https://images.isbndb.com/covers/69/01/9780374516901.jpg'), - ('0440131480', 'Breakfast Of Champions', 'https://images.isbndb.com/covers/14/89/9780440131489.jpg'), - ('0609600745', 'The Art Of Doing Nothing: Simple Ways To Make Time For Yourself', 'https://images.isbndb.com/covers/07/40/9780609600740.jpg'), - ('0375707425', 'Embers', 'https://images.isbndb.com/covers/74/21/9780375707421.jpg'), - ('3453151933', 'Power Plays 2 - Tigerjagd', 'https://images.isbndb.com/covers/19/32/9783453151932.jpg'), - ('0231105592', 'The Garden Of Ediacara', 'https://images.isbndb.com/covers/55/90/9780231105590.jpg'), - ('0590317822', 'Just Plain Cat', 'https://images.isbndb.com/covers/78/25/9780590317825.jpg'), - ('014056232X', 'Way Out West Lives A Coyote Named Frank (Picture Puffins)', 'https://images.isbndb.com/covers/23/23/9780140562323.jpg'), - ('0590447319', 'In My Father''s House (Point)', 'https://images.isbndb.com/covers/73/17/9780590447317.jpg'), - ('0440940001', 'Island Of The Blue Dolphins', 'https://images.isbndb.com/covers/00/05/9780440940005.jpg'), - ('0440401119', 'How To Fight A Girl', 'https://images.isbndb.com/covers/11/17/9780440401117.jpg'), - ('0440203155', 'The Romantic Obsessions And Humiliations Of Annie Sehlmeier', 'https://images.isbndb.com/covers/31/55/9780440203155.jpg'), - ('0812565959', 'Shadow Of The Hegemon (Ender, Book 6)', 'https://images.isbndb.com/covers/59/59/9780812565959.jpg'), - ('034536628X', 'Magic Casement (Man Of His Word)', 'https://images.isbndb.com/covers/62/83/9780345366283.jpg'), - ('0880387483', 'Tantras (Forgotten Realms: Avatar Trilogy, Book 2)', 'https://images.isbndb.com/covers/74/84/9780880387484.jpg'), - ('0880387300', 'Shadowdale (Forgotten Realms: Avatar Trilogy, Book One)', 'https://images.isbndb.com/covers/73/09/9780880387309.jpg'), - ('0425163385', 'The Night Crew', 'https://images.isbndb.com/covers/33/82/9780425163382.jpg'), - ('0743444051', 'CSI: Sin City', 'https://images.isbndb.com/covers/40/57/9780743444057.jpg'), - ('0061056103', 'Blackmantle (Keltiad)', 'https://images.isbndb.com/covers/61/09/9780061056109.jpg'), - ('0671042262', 'The Blue Nowhere: A Novel', 'https://images.isbndb.com/covers/22/64/9780671042264.jpg'), - ('0425157539', 'Sudden Prey', 'https://images.isbndb.com/covers/75/34/9780425157534.jpg'), - ('0553585681', 'Always A Thief', 'https://images.isbndb.com/covers/56/81/9780553585681.jpg'), - ('0553585118', 'Once A Thief', 'https://images.isbndb.com/covers/51/17/9780553585117.jpg'), - ('0886777690', 'A Thousand Words For Stranger', 'https://images.isbndb.com/covers/76/92/9780886777692.jpg'), - ('0743212002', 'Deck The Halls', 'https://images.isbndb.com/covers/20/07/9780743212007.jpg'), - ('3426650754', 'Der Mann Der''s Wert Ist (Fiction, Poetry & Drama)', 'https://images.isbndb.com/covers/07/52/9783426650752.jpg'), - ('1854877178', 'Come Home Forever', 'https://images.isbndb.com/covers/71/78/9781854877178.jpg'), - ('0380803526', 'The Renegades: Cole', 'https://images.isbndb.com/covers/35/21/9780380803521.jpg'), - ('0373152655', 'Christmas Miracles', 'https://images.isbndb.com/covers/26/50/9780373152650.jpg'), - ('0451404033', 'Fires In The Mist', 'https://images.isbndb.com/covers/40/39/9780451404039.jpg'), - ('1583140352', 'Return To Love (Arabesque)', 'https://images.isbndb.com/covers/03/52/9781583140352.jpg'), - ('1854879073', 'The Marriage Plan', 'https://images.isbndb.com/covers/90/73/9781854879073.jpg'), - ('0821728326', 'The Eagle And The Dove', 'https://images.isbndb.com/covers/83/21/9780821728321.jpg'), - ('037348397X', 'The Donovan Legacy: Captivated/ Entranced/ Charmed', 'https://images.isbndb.com/covers/39/76/9780373483976.jpg'), - ('0380773155', 'It Happened To Nancy: By An Anonymous Teenager, A True Story From Her Diary', 'https://images.isbndb.com/covers/31/52/9780380773152.jpg'), - ('3404100263', 'Die Nadel: Roman', 'https://images.isbndb.com/covers/02/62/9783404100262.jpg'), - ('0679731148', 'A Year In Provence', 'https://images.isbndb.com/covers/11/46/9780679731146.jpg'), - ('2070417700', 'Deus Irae', 'https://images.isbndb.com/covers/77/04/9782070417704.jpg'), - ('2070360075', 'Le Vieil Homme Et La Mer', 'https://images.isbndb.com/covers/00/79/9782070360079.jpg'), - ('0786889373', 'The Big Picture', 'https://images.isbndb.com/covers/93/72/9780786889372.jpg'), - ('2207245810', 'Radio Libre Albemuth', 'https://images.isbndb.com/covers/58/11/9782207245811.jpg'), - ('2207250474', 'Siva', 'https://images.isbndb.com/covers/04/71/9782207250471.jpg'), - ('2290331406', 'Dr. Bloodmoney', 'https://images.isbndb.com/covers/14/08/9782290331408.jpg'), - ('2070426815', 'L''oeil De La Sibylle', 'https://images.isbndb.com/covers/68/12/9782070426812.jpg'), - ('2290305251', 'A Rebrousse-temps', 'https://images.isbndb.com/covers/52/56/9782290305256.jpg'), - ('2070364283', 'La Perle', 'https://images.isbndb.com/covers/42/82/9782070364282.jpg'), - ('2266128566', 'Le Meilleur Des Mondes', 'https://images.isbndb.com/covers/85/68/9782266128568.jpg'), - ('2070363104', 'Histoires Extraordinaires', 'https://images.isbndb.com/covers/31/00/9782070363100.jpg'), - ('2253152277', 'Véronika Décide De Mourir', 'https://images.isbndb.com/covers/22/79/9782253152279.jpg'), - ('2207252000', 'La Maison Des Feuilles', 'https://images.isbndb.com/covers/20/00/9782207252000.jpg'), - ('2253170453', 'Risque Mortel', 'https://images.isbndb.com/covers/04/57/9782253170457.jpg'), - ('2723409821', 'Balade Au Bout Du Monde, Tome 4 : La Pierre De Folie', 'https://images.isbndb.com/covers/98/27/9782723409827.jpg'), - ('2070415686', 'Le Guide Galactique, Tome 1', 'https://images.isbndb.com/covers/56/87/9782070415687.jpg'), - ('2258036992', 'La Porte Obscure', 'https://images.isbndb.com/covers/69/94/9782258036994.jpg'), - ('2207251756', 'Nouvelles : Tome 2, 1953-1981', 'https://images.isbndb.com/covers/17/51/9782207251751.jpg'), - ('2266000489', 'La Nuit Des Temps', 'https://images.isbndb.com/covers/04/82/9782266000482.jpg'), - ('2070360423', 'La Peste', 'https://images.isbndb.com/covers/04/20/9782070360420.jpg'), - ('0394822862', 'Bears In The Night', 'https://images.isbndb.com/covers/28/60/9780394822860.jpg'), - ('0874493803', 'A First Book Of Shapes (Preschool Dinosaur Playhouse)', 'https://images.isbndb.com/covers/38/01/9780874493801.jpg'), - ('1569870942', 'Edgar The Lion Who Would Be A Good King', 'https://images.isbndb.com/covers/09/45/9781569870945.jpg'), - ('1579730272', 'The Not-So-Perfect Picnic (Disney-Pixar''s "A Bug''s Life" Library, Vol. 11)', 'https://images.isbndb.com/covers/02/77/9781579730277.jpg'), - ('0307177092', 'Peters Welcom Tell A Tale Book', 'https://images.isbndb.com/covers/70/94/9780307177094.jpg'), - ('2253004898', 'La Guerre De Troie N''aura Pas Lieu', 'https://images.isbndb.com/covers/48/99/9782253004899.jpg'), - ('0812094271', 'Miro (Famous Artists)', 'https://images.isbndb.com/covers/42/75/9780812094275.jpg'), - ('0380600129', 'The Indian In The Cupboard', 'https://images.isbndb.com/covers/01/20/9780380600120.jpg'), - ('0451522389', 'The Time Machine And The Invisible Man (Signet Classics)', 'https://images.isbndb.com/covers/23/82/9780451522382.jpg'), - ('0425169324', 'Sworn To Defend', 'https://images.isbndb.com/covers/93/22/9780425169322.jpg'), - ('082176828X', 'What You Wish For', 'https://images.isbndb.com/covers/82/80/9780821768280.jpg'), - ('0316693324', 'When The Wind Blows', 'https://images.isbndb.com/covers/33/25/9780316693325.jpg'), - ('0553283685', 'Hyperion', 'https://images.isbndb.com/covers/36/86/9780553283686.jpg'), - ('1841215457', 'Dad Alert! (Orchard Red Apple)', 'https://images.isbndb.com/covers/54/57/9781841215457.jpg'), - ('0064410358', 'The Nightmare Room Thrillogy #3: No Survivors', 'https://images.isbndb.com/covers/03/59/9780064410359.jpg'), - ('0007108648', 'Whizzard! (Tales Of The Dark Forest)', 'https://images.isbndb.com/covers/86/40/9780007108640.jpg'), - ('0064472930', 'Second Sight (Circle Of Three #3)', 'https://images.isbndb.com/covers/29/37/9780064472937.jpg'), - ('0590629824', 'The Capture (Animorphs, #6)', 'https://images.isbndb.com/covers/98/29/9780590629829.jpg'), - ('0743412273', 'Pet Sematary', 'https://images.isbndb.com/covers/22/78/9780743412278.jpg'), - ('0140089586', 'The Second Rumpole Omnibus', 'https://images.isbndb.com/covers/95/85/9780140089585.jpg'), - ('0316140651', 'Johnny Long Legs', 'https://images.isbndb.com/covers/06/52/9780316140652.jpg'), - ('1559277785', 'Full House', 'https://images.isbndb.com/covers/77/85/9781559277785.jpg'), - ('0345367898', 'The Witching Hour (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/78/91/9780345367891.jpg'), - ('0205280854', 'Including Students With Special Needs: A Practical Guide For Classroom Teachers', 'https://images.isbndb.com/covers/08/58/9780205280858.jpg'), - ('0553110721', 'Dune: House Harkonnen', 'https://images.isbndb.com/covers/07/22/9780553110722.jpg'), - ('1558534245', 'Sailing On The Ice And Other Stories From The Old Squire''s Farm', 'https://images.isbndb.com/covers/42/47/9781558534247.jpg'), - ('0553580272', 'House Atreides (Dune: House Trilogy, Book 1)', 'https://images.isbndb.com/covers/02/73/9780553580273.jpg'), - ('1560980087', 'Bertha Lum (American Printmakers: A Smithsonian Series)', 'https://images.isbndb.com/covers/00/87/9781560980087.jpg'), - ('0679412271', 'Where The Suckers Moon: An Advertising Story', 'https://images.isbndb.com/covers/22/74/9780679412274.jpg'), - ('0803281730', 'The Rocky Mountain Wonderland', 'https://images.isbndb.com/covers/17/38/9780803281738.jpg'), - ('0345396529', 'First King Of Shannara (The Sword Of Shannara)', 'https://images.isbndb.com/covers/65/25/9780345396525.jpg'), - ('0440455332', 'Me And My Little Brain (Great Brain)', 'https://images.isbndb.com/covers/53/32/9780440455332.jpg'), - ('1860462995', 'The Swan', 'https://images.isbndb.com/covers/29/93/9781860462993.jpg'), - ('0679452281', 'Asylum', 'https://images.isbndb.com/covers/22/87/9780679452287.jpg'), - ('0811807150', 'Swimmer In The Secret Sea', 'https://images.isbndb.com/covers/71/59/9780811807159.jpg'), - ('0393029190', 'And The Sea Will Tell', 'https://images.isbndb.com/covers/91/92/9780393029192.jpg'), - ('0385425686', 'Fishboy', 'https://images.isbndb.com/covers/56/81/9780385425681.jpg'), - ('0312169655', 'Popcorn', 'https://images.isbndb.com/covers/96/57/9780312169657.jpg'), - ('0785324712', 'All New Great American Favorite Brand Name Cookbook', 'https://images.isbndb.com/covers/47/13/9780785324713.jpg'), - ('0449912558', 'The Sparrow', 'https://images.isbndb.com/covers/25/53/9780449912553.jpg'), - ('0934257345', 'Glad Rags', 'https://images.isbndb.com/covers/73/43/9780934257343.jpg'), - ('0312205872', 'Slightly Chipped: Footnotes In Booklore', 'https://images.isbndb.com/covers/58/74/9780312205874.jpg'), - ('0670867144', 'The 3000-Mile Garden: An Exchange Of Letters On Gardening, Food, And The Good Life', 'https://images.isbndb.com/covers/71/41/9780670867141.jpg'), - ('0805051732', 'The Word "Desire"', 'https://images.isbndb.com/covers/17/35/9780805051735.jpg'), - ('0449300021', 'Les Miserables', 'https://images.isbndb.com/covers/00/22/9780449300022.jpg'), - ('0684835983', 'Before I Say Good-Bye: A Novel', 'https://images.isbndb.com/covers/59/83/9780684835983.jpg'), - ('0440226430', 'Summer Sisters', 'https://images.isbndb.com/covers/64/37/9780440226437.jpg'), - ('0385721358', 'Look At Me: A Novel', 'https://images.isbndb.com/covers/13/56/9780385721356.jpg'), - ('031231616X', 'I Capture The Castle', 'https://images.isbndb.com/covers/61/67/9780312316167.jpg'), - ('0764504509', 'PowerPoint 2000 For Windows For Dummies', 'https://images.isbndb.com/covers/45/01/9780764504501.jpg'), - ('089480829X', 'What To Expect When You''re Expecting', 'https://images.isbndb.com/covers/82/96/9780894808296.jpg'), - ('0767912233', 'Babyville', 'https://images.isbndb.com/covers/22/35/9780767912235.jpg'), - ('0971453217', 'On Becoming Baby Wise Book Two: Parenting Your Pre Toddler 5-12 Month Old Through The Babyhood Transition', 'https://images.isbndb.com/covers/32/10/9780971453210.jpg'), - ('0971453209', 'On Becoming Baby Wise: The Classic Sleep Reference Guide Used By Over 1,000,000 Parents Worldwide', 'https://images.isbndb.com/covers/32/03/9780971453203.jpg'), - ('0785268030', 'Starting Your Marriage Right: What You Need To Know In The Early Years To Make It Last A Lifetime', 'https://images.isbndb.com/covers/80/31/9780785268031.jpg'), - ('0743201736', 'The Motley Fool Investment Guide : How The Fool Beats Wall Streets Wise Men And How You Can Too', 'https://images.isbndb.com/covers/17/35/9780743201735.jpg'), - ('0894805770', 'What To Expect The First Year', 'https://images.isbndb.com/covers/57/76/9780894805776.jpg'), - ('0440177499', 'Snow Queen', 'https://images.isbndb.com/covers/74/94/9780440177494.jpg'), - ('0553232053', 'Tea With The Black Dragon', 'https://images.isbndb.com/covers/20/59/9780553232059.jpg'), - ('0312269102', 'Tattoo Girl', 'https://images.isbndb.com/covers/91/04/9780312269104.jpg'), - ('0062502174', 'The Alchemist', 'https://images.isbndb.com/covers/21/79/9780062502179.jpg'), - ('0688177751', 'Miss Julia Speaks Her Mind: A Novel', 'https://images.isbndb.com/covers/77/51/9780688177751.jpg'), - ('0345438329', 'Big Stone Gap: A Novel (Big Stone Gap Novels)', 'https://images.isbndb.com/covers/83/24/9780345438324.jpg'), - ('0345401123', 'Your Blues Ain''t Like Mine: A Novel', 'https://images.isbndb.com/covers/11/20/9780345401120.jpg'), - ('1593160151', 'Use What You''ve Got, And Other Business Lessons I Learned From My Mom', 'https://images.isbndb.com/covers/01/59/9781593160159.jpg'), - ('1593160127', 'Nina: Adolescence', 'https://images.isbndb.com/covers/01/28/9781593160128.jpg'), - ('0451209435', 'Fear Of Flying', 'https://images.isbndb.com/covers/94/36/9780451209436.jpg'), - ('1551669501', 'Diamond Spur', 'https://images.isbndb.com/covers/95/02/9781551669502.jpg'), - ('0375707972', 'The Reader (Oprah''s Book Club)', 'https://images.isbndb.com/covers/79/71/9780375707971.jpg'), - ('0618126988', 'The Silmarillion', 'https://images.isbndb.com/covers/69/89/9780618126989.jpg'), - ('0060094850', 'The Torn Skirt', 'https://images.isbndb.com/covers/48/50/9780060094850.jpg'), - ('0060192305', 'There''s A Spiritual Solution To Every Problem', 'https://images.isbndb.com/covers/23/03/9780060192303.jpg'), - ('0142000361', 'The Florabama Ladies'' Auxiliary & Sewing Circle', 'https://images.isbndb.com/covers/03/66/9780142000366.jpg'), - ('0872860175', 'Howl And Other Poems (City Lights Pocket Poets, No. 4)', 'https://images.isbndb.com/covers/01/79/9780872860179.jpg'), - ('031219126X', 'Frankenstein (Case Studies In Contemporary Criticism)', 'https://images.isbndb.com/covers/12/69/9780312191269.jpg'), - ('0020518609', 'Short Stories Of Ernest Hemingway (A Scribner Classic)', 'https://images.isbndb.com/covers/86/00/9780020518600.jpg'), - ('0345446860', 'Back When We Were Grownups: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/68/62/9780345446862.jpg'), - ('0446310492', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/04/99/9780446310499.jpg'), - ('037348285X', 'Birds, Bees And Babies ''94: The Best Mistake/ The Baby Machine/ Cullen''s Child', 'https://images.isbndb.com/covers/28/56/9780373482856.jpg'), - ('0515090506', 'The Cat Who Played Brahms', 'https://images.isbndb.com/covers/05/05/9780515090505.jpg'), - ('0399145087', 'Black Notice', 'https://images.isbndb.com/covers/50/87/9780399145087.jpg'), - ('0812590244', 'Irish Eyes (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/02/41/9780812590241.jpg'), - ('0963641328', 'Totally Useless Office Skills', 'https://images.isbndb.com/covers/13/28/9780963641328.jpg'), - ('1574551108', 'Catechism Of The Catholic Church', 'https://images.isbndb.com/covers/11/05/9781574551105.jpg'), - ('0879739304', 'Father McBride''s Family Catechism', 'https://images.isbndb.com/covers/93/00/9780879739300.jpg'), - ('0965712516', 'The Missionary''s Catechism', 'https://images.isbndb.com/covers/25/14/9780965712514.jpg'), - ('0670829943', 'The Enthusiasms Of Robertson Davies', 'https://images.isbndb.com/covers/99/41/9780670829941.jpg'), - ('0060192119', 'As Nature Made Him: The Boy Who Was Raised As A Girl', 'https://images.isbndb.com/covers/21/12/9780060192112.jpg'), - ('0836218256', 'Something Under The Bed Is Drooling', 'https://images.isbndb.com/covers/82/51/9780836218251.jpg'), - ('0898707129', 'The War Against Population: The Economics And Ideology Of World Population Control', 'https://images.isbndb.com/covers/71/20/9780898707120.jpg'), - ('0805420460', 'Mere Christianity', 'https://images.isbndb.com/covers/04/63/9780805420463.jpg'), - ('0140140352', 'Haroun And The Sea Of Stories', 'https://images.isbndb.com/covers/03/54/9780140140354.jpg'), - ('1575666529', 'Wedding Day Murder (Lucy Stone Mysteries, No. 8)', 'https://images.isbndb.com/covers/65/25/9781575666525.jpg'), - ('0312990456', 'One For The Money (Stephanie Plum, No. 1)', 'https://images.isbndb.com/covers/04/59/9780312990459.jpg'), - ('0440221102', 'The Complete Book Of Food Counts, Fourth Edition', 'https://images.isbndb.com/covers/11/04/9780440221104.jpg'), - ('0316969680', 'The Beach House', 'https://images.isbndb.com/covers/96/80/9780316969680.jpg'), - ('0449207463', 'Superior Women', 'https://images.isbndb.com/covers/74/68/9780449207468.jpg'), - ('0689109865', 'The BOOK OF BEBB', 'https://images.isbndb.com/covers/98/67/9780689109867.jpg'), - ('3518368540', 'Homo Faber: Ein Bericht (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/85/41/9783518368541.jpg'), - ('0312423209', 'Mason & Dixon: A Novel', 'https://images.isbndb.com/covers/32/09/9780312423209.jpg'), - ('0141180633', 'Vineland (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/06/32/9780141180632.jpg'), - ('0140283382', 'Gravity''s Rainbow', 'https://images.isbndb.com/covers/33/89/9780140283389.jpg'), - ('0786248688', 'The Book Of Illusions', 'https://images.isbndb.com/covers/86/81/9780786248681.jpg'), - ('0773762078', 'Maiden Of The Mist: A Legend Of Niagara Falls', 'https://images.isbndb.com/covers/20/77/9780773762077.jpg'), - ('0884041093', 'Self Analysis: A Simple Self-help Volume Of Tests And Techniques Based On The Discoveries Contained In Dianetics', 'https://images.isbndb.com/covers/10/92/9780884041092.jpg'), - ('0884040801', 'Self Analysis', 'https://images.isbndb.com/covers/08/04/9780884040804.jpg'), - ('0786887842', 'Rabbit-Proof Fence', 'https://images.isbndb.com/covers/78/42/9780786887842.jpg'), - ('0450542912', 'Rain', 'https://images.isbndb.com/covers/29/16/9780450542916.jpg'), - ('0192817264', 'Kidnapped And Catriona (World Classics)', 'https://images.isbndb.com/covers/72/66/9780192817266.jpg'), - ('0751522732', 'She''s Leaving Home', 'https://images.isbndb.com/covers/27/30/9780751522730.jpg'), - ('0091850401', 'South Seas Myths And Legends', 'https://images.isbndb.com/covers/04/01/9780091850401.jpg'), - ('1853260312', '20,000 Leagues Under The Sea (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/03/15/9781853260315.jpg'), - ('0140016821', 'Cider With Rosie', 'https://images.isbndb.com/covers/68/26/9780140016826.jpg'), - ('0440418569', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/85/66/9780440418566.jpg'), - ('0786014210', 'Darkness', 'https://images.isbndb.com/covers/42/17/9780786014217.jpg'), - ('0441005667', 'Forever Peace (Forever War, Book 2)', 'https://images.isbndb.com/covers/56/66/9780441005666.jpg'), - ('0553259830', 'Battle Cry', 'https://images.isbndb.com/covers/98/34/9780553259834.jpg'), - ('0312965338', 'The Climb: Tragic Ambitions On Everest', 'https://images.isbndb.com/covers/53/34/9780312965334.jpg'), - ('1888740051', 'Climbing Mt. Shasta: Route 1, Avalanche Gulch', 'https://images.isbndb.com/covers/00/59/9781888740059.jpg'), - ('0061008028', 'Fighter: The True Story Of The Battle Of Britain', 'https://images.isbndb.com/covers/80/23/9780061008023.jpg'), - ('1931646384', 'Never ACT Your Age', 'https://images.isbndb.com/covers/63/83/9781931646383.jpg'), - ('0399501487', 'Lord Of The Flies (Perigee)', 'https://images.isbndb.com/covers/14/87/9780399501487.jpg'), - ('157566559X', 'The Biograph Girl', 'https://images.isbndb.com/covers/55/97/9781575665597.jpg'), - ('3423125551', 'Sofies Welt', 'https://images.isbndb.com/covers/55/50/9783423125550.jpg'), - ('0060514949', 'Dead Ringer', 'https://images.isbndb.com/covers/49/45/9780060514945.jpg'), - ('0425188361', 'Cerulean Sins (Anita Blake, Vampire Hunter, Book 11)', 'https://images.isbndb.com/covers/83/61/9780425188361.jpg'), - ('0066210151', 'The Book Of Shadows: A Novel', 'https://images.isbndb.com/covers/01/55/9780066210155.jpg'), - ('0395177111', 'The Hobbit (or There And Back Again)', 'https://images.isbndb.com/covers/71/12/9780395177112.jpg'), - ('0375411992', 'Blackwood Farm (The Vampire Chronicles)', 'https://images.isbndb.com/covers/19/91/9780375411991.jpg'), - ('0060287802', 'Judge Judy Sheindlin''s Win Or Lose By How You Choose', 'https://images.isbndb.com/covers/78/01/9780060287801.jpg'), - ('3442730066', 'Vishnus Tod', 'https://images.isbndb.com/covers/00/63/9783442730063.jpg'), - ('0394718968', 'Plays By And About Women', 'https://images.isbndb.com/covers/89/65/9780394718965.jpg'), - ('0192820753', 'The New Oxford Book Of Light Verse (Oxford Paperbacks)', 'https://images.isbndb.com/covers/07/54/9780192820754.jpg'), - ('0671744003', 'The Autobiography Of F.B.I. Special Agent Dale Cooper: My Life, My Tapes', 'https://images.isbndb.com/covers/40/07/9780671744007.jpg'), - ('3596129389', 'Die Zauberfrau: Roman', 'https://images.isbndb.com/covers/93/86/9783596129386.jpg'), - ('0915308789', 'The Graywolf Annual Two: Short Stories By Women (No.2)', 'https://images.isbndb.com/covers/87/81/9780915308781.jpg'), - ('3423620196', 'Theos Reise: Roman über Die Religionen Der Welt', 'https://images.isbndb.com/covers/01/92/9783423620192.jpg'), - ('0743203313', 'The Blackwater Lightship: A Novel', 'https://images.isbndb.com/covers/33/19/9780743203319.jpg'), - ('0425177173', 'Atlantis Found (Dirk Pitt, No. 15)', 'https://images.isbndb.com/covers/71/74/9780425177174.jpg'), - ('0425172554', 'Primary Target', 'https://images.isbndb.com/covers/25/51/9780425172551.jpg'), - ('0440224764', 'The Partner', 'https://images.isbndb.com/covers/47/61/9780440224761.jpg'), - ('0553572997', 'The Alienist', 'https://images.isbndb.com/covers/29/95/9780553572995.jpg'), - ('034543076X', 'Manifold: Time', 'https://images.isbndb.com/covers/07/62/9780345430762.jpg'), - ('0380727501', 'Notes From A Small Island', 'https://images.isbndb.com/covers/75/06/9780380727506.jpg'), - ('0312423799', 'Dry: A Memoir', 'https://images.isbndb.com/covers/37/97/9780312423797.jpg'), - ('0743249887', 'Welcome To Higby : A Novel', 'https://images.isbndb.com/covers/98/81/9780743249881.jpg'), - ('0316089745', 'The Wooden Nickel: A Novel', 'https://images.isbndb.com/covers/97/46/9780316089746.jpg'), - ('037542217X', 'The Kalahari Typing School For Men: More From The No. 1 Ladies'' Detective Agency', 'https://images.isbndb.com/covers/21/71/9780375422171.jpg'), - ('0345440773', 'The Redemption Of Althalus', 'https://images.isbndb.com/covers/07/78/9780345440778.jpg'), - ('0440208912', 'Harvest', 'https://images.isbndb.com/covers/89/14/9780440208914.jpg'), - ('0061093106', 'Red, White And Blue', 'https://images.isbndb.com/covers/31/04/9780061093104.jpg'), - ('0373218192', 'Engaging The Enemy', 'https://images.isbndb.com/covers/81/96/9780373218196.jpg'), - ('0515120006', 'Holding The Dream (Dream Trilogy, Book 2)', 'https://images.isbndb.com/covers/00/04/9780515120004.jpg'), - ('0515127396', 'The Cat Who Saw Stars', 'https://images.isbndb.com/covers/73/93/9780515127393.jpg'), - ('0345433084', 'The Syndrome : A Thriller', 'https://images.isbndb.com/covers/30/84/9780345433084.jpg'), - ('0345416260', 'Pope Joan: A Novel', 'https://images.isbndb.com/covers/62/61/9780345416261.jpg'), - ('0385494785', 'Into Thin Air: A Personal Account Of The Mt. Everest Disaster', 'https://images.isbndb.com/covers/47/86/9780385494786.jpg'), - ('0385486804', 'Into The Wild', 'https://images.isbndb.com/covers/68/04/9780385486804.jpg'), - ('0385512104', 'The Curious Incident Of The Dog In The Night-Time (Today Show Book Club #13)', 'https://images.isbndb.com/covers/21/07/9780385512107.jpg'), - ('1555973981', 'Baby B', 'https://images.isbndb.com/covers/39/88/9781555973988.jpg'), - ('0451180208', 'Material Witness', 'https://images.isbndb.com/covers/02/09/9780451180209.jpg'), - ('089587198X', 'Great Bike Rides In And Around Winston-Salem', 'https://images.isbndb.com/covers/19/85/9780895871985.jpg'), - ('0198811020', 'Metaphysical Lyrics And Poems Of The Seventeenth Century: Donne To Butler (Oxford Paperbacks)', 'https://images.isbndb.com/covers/10/22/9780198811022.jpg'), - ('0525237704', 'The World According To Garp', 'https://images.isbndb.com/covers/77/09/9780525237709.jpg'), - ('039914255X', 'Eat Right 4 Your Type: The Individualized Diet Solution To Staying Healthy, Living Longer & Achieving Your Ideal Weight', 'https://images.isbndb.com/covers/25/50/9780399142550.jpg'), - ('0340649763', 'Dancing At The Victory Cafe', 'https://images.isbndb.com/covers/97/63/9780340649763.jpg'), - ('0440236673', 'The Brethren', 'https://images.isbndb.com/covers/66/72/9780440236672.jpg'), - ('0553295071', 'Sliver', 'https://images.isbndb.com/covers/50/78/9780553295078.jpg'), - ('0316291161', 'The French Lieutenant''s Woman', 'https://images.isbndb.com/covers/11/63/9780316291163.jpg'), - ('0449208397', 'If Life Is A Bowl Of Cherries, What Am I Doing In The Pits?', 'https://images.isbndb.com/covers/83/97/9780449208397.jpg'), - ('1590171012', 'The Magic Pudding (New York Review Children''s Collection)', 'https://images.isbndb.com/covers/10/11/9781590171011.jpg'), - ('0060505273', 'The Sewing Circles Of Herat: A Personal Voyage Through Afghanistan', 'https://images.isbndb.com/covers/52/71/9780060505271.jpg'), - ('0752999958', 'Jurassic Park AND Congo', 'https://images.isbndb.com/covers/99/51/9780752999951.jpg'), - ('0702229962', 'Setting Out On The Voyage: The World Of An Incorrigible Adventurer', 'https://images.isbndb.com/covers/99/61/9780702229961.jpg'), - ('0679771476', 'The Law Of Similars', 'https://images.isbndb.com/covers/14/70/9780679771470.jpg'), - ('0684848597', 'People Of The Lie: The Hope For Healing Human Evil', 'https://images.isbndb.com/covers/85/94/9780684848594.jpg'), - ('031215125X', 'The Far Pavilions', 'https://images.isbndb.com/covers/12/56/9780312151256.jpg'), - ('0064405176', 'Walk Two Moons', 'https://images.isbndb.com/covers/51/71/9780064405171.jpg'), - ('0684821192', 'The Son Of Light (Ramses, Vol. 1)', 'https://images.isbndb.com/covers/11/91/9780684821191.jpg'), - ('0061056871', 'Independence Day', 'https://images.isbndb.com/covers/68/71/9780061056871.jpg'), - ('0590988301', 'Pet-Rified', 'https://images.isbndb.com/covers/83/08/9780590988308.jpg'), - ('0883659654', 'The Company Of Cats: 20 Contemporary Stories Of Family Cats', 'https://images.isbndb.com/covers/96/56/9780883659656.jpg'), - ('0440235162', 'The Smoke Jumper', 'https://images.isbndb.com/covers/51/63/9780440235163.jpg'), - ('076790382X', 'I''m A Stranger Here Myself: Notes On Returning To America After 20 Years Away', 'https://images.isbndb.com/covers/38/20/9780767903820.jpg'), - ('0330357808', 'Marilyn''s Almost Terminal New York Adventure', 'https://images.isbndb.com/covers/78/07/9780330357807.jpg'), - ('0425158616', 'Cause Of Death (Kay Scarpetta, No. 7)', 'https://images.isbndb.com/covers/86/16/9780425158616.jpg'), - ('0307001385', 'The Whispering Rabbit (A Little Golden Book)', 'https://images.isbndb.com/covers/13/82/9780307001382.jpg'), - ('0595157939', 'The Mystery Of The Poison Arrow Tree', 'https://images.isbndb.com/covers/79/38/9780595157938.jpg'), - ('0702231088', 'Sally Marshall Is Not An Alien (Uqp Storybridge Series)', 'https://images.isbndb.com/covers/10/87/9780702231087.jpg'), - ('0140143599', 'Cantor''s Dilemma: A Novel', 'https://images.isbndb.com/covers/35/91/9780140143591.jpg'), - ('0062502182', 'The Alchemist, A Fable About Following Your Dream', 'https://images.isbndb.com/covers/21/86/9780062502186.jpg'), - ('0060175400', 'The Poisonwood Bible', 'https://images.isbndb.com/covers/54/05/9780060175405.jpg'), - ('1573221775', 'My Dream Of You', 'https://images.isbndb.com/covers/17/71/9781573221771.jpg'), - ('0913367044', 'The Case For Christ', 'https://images.isbndb.com/covers/70/49/9780913367049.jpg'), - ('1888698357', 'The Mighty ''MOX: The 75th Anniversary Of The People, Stories, And Events That Made KMOX A Radio Giant', 'https://images.isbndb.com/covers/83/50/9781888698350.jpg'), - ('0913367176', 'Stories For A Faithful Heart', 'https://images.isbndb.com/covers/71/79/9780913367179.jpg'), - ('0933121245', 'Book Of African Names', 'https://images.isbndb.com/covers/12/49/9780933121249.jpg'), - ('0312168144', 'The Climb: Tragic Ambitions On Everest', 'https://images.isbndb.com/covers/81/48/9780312168148.jpg'), - ('0451528182', 'Sir Gawain And The Green Knight (Signet Classics)', 'https://images.isbndb.com/covers/81/86/9780451528186.jpg'), - ('0671537458', 'Waiting To Exhale', 'https://images.isbndb.com/covers/74/56/9780671537456.jpg'), - ('0786014741', 'Body Double', 'https://images.isbndb.com/covers/47/43/9780786014743.jpg'), - ('0517573822', 'Jimmy Stewart And His Poems', 'https://images.isbndb.com/covers/38/22/9780517573822.jpg'), - ('0877732906', 'A Sociable God', 'https://images.isbndb.com/covers/29/07/9780877732907.jpg'), - ('0743437810', 'The Vanished Man (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/78/13/9780743437813.jpg'), - ('0385240406', 'Time Flies', 'https://images.isbndb.com/covers/04/06/9780385240406.jpg'), - ('0060116188', 'My Side: The Autobiography Of Ruth Gordon', 'https://images.isbndb.com/covers/61/87/9780060116187.jpg'), - ('0394742591', 'The Habit Of Being', 'https://images.isbndb.com/covers/25/95/9780394742595.jpg'), - ('0517149257', 'The Ultimate Hitchhiker''s Guide', 'https://images.isbndb.com/covers/92/56/9780517149256.jpg'), - ('0374517886', 'The Collected Stories Of Isaac Bashevis Singer', 'https://images.isbndb.com/covers/78/85/9780374517885.jpg'), - ('0850315336', 'Nothingmas Day', 'https://images.isbndb.com/covers/53/32/9780850315332.jpg'), - ('0312964854', 'Hush Little Babies: The True Story Of A Mother Who Murdered Her Own Children (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/48/56/9780312964856.jpg'), - ('0743222008', 'The Vanished Man (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/20/06/9780743222006.jpg'), - ('0684863324', 'GARDENS IN THE DUNES: A Novel', 'https://images.isbndb.com/covers/33/20/9780684863320.jpg'), - ('0618127453', 'Sparks Of Genius: The Thirteen Thinking Tools Of The World''s Most Creative People', 'https://images.isbndb.com/covers/74/50/9780618127450.jpg'), - ('0884053660', 'The World Of Pele', 'https://images.isbndb.com/covers/36/68/9780884053668.jpg'), - ('0812590236', 'Irish Mist (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/02/34/9780812590234.jpg'), - ('0515127221', 'Sullivan''s Island: A Lowcountry Tale (Lowcountry Tales)', 'https://images.isbndb.com/covers/72/25/9780515127225.jpg'), - ('0425161242', 'Chromosome 6', 'https://images.isbndb.com/covers/12/41/9780425161241.jpg'), - ('0451200993', 'Sleeping Murder (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/09/90/9780451200990.jpg'), - ('0679765123', 'Incidents In The Rue Laugier', 'https://images.isbndb.com/covers/51/27/9780679765127.jpg'), - ('0312982194', 'Gettin'' Merry', 'https://images.isbndb.com/covers/21/95/9780312982195.jpg'), - ('0451195922', 'Skull Session', 'https://images.isbndb.com/covers/59/20/9780451195920.jpg'), - ('0425169863', 'Point Of Origin (Kay Scarpetta)', 'https://images.isbndb.com/covers/98/65/9780425169865.jpg'), - ('0345380371', 'Rising Sun', 'https://images.isbndb.com/covers/03/71/9780345380371.jpg'), - ('0446609323', 'Black Friday', 'https://images.isbndb.com/covers/93/26/9780446609326.jpg'), - ('0316690619', 'Cradle And All', 'https://images.isbndb.com/covers/06/14/9780316690614.jpg'), - ('0446610038', '1st To Die: A Novel', 'https://images.isbndb.com/covers/00/32/9780446610032.jpg'), - ('155143234X', 'Flight From Big Tangle (Orca Young Readers)', 'https://images.isbndb.com/covers/23/42/9781551432342.jpg'), - ('0891074759', 'Arthur (The Pendragon Cycle)', 'https://images.isbndb.com/covers/47/55/9780891074755.jpg'), - ('0449222276', 'Belgrave Square', 'https://images.isbndb.com/covers/22/70/9780449222270.jpg'), - ('0440224608', 'Siberian Light', 'https://images.isbndb.com/covers/46/00/9780440224600.jpg'), - ('0451201558', 'Cold Case (Alan Gregory)', 'https://images.isbndb.com/covers/15/53/9780451201553.jpg'), - ('0061032077', 'To Cut A Long Story Short', 'https://images.isbndb.com/covers/20/73/9780061032073.jpg'), - ('2253004243', 'Une Vie', 'https://images.isbndb.com/covers/42/40/9782253004240.jpg'), - ('0679459626', 'Flesh And Blood', 'https://images.isbndb.com/covers/96/20/9780679459620.jpg'), - ('0812566629', 'Darwinia: A Novel Of A Very Different Twentieth Century', 'https://images.isbndb.com/covers/66/28/9780812566628.jpg'), - ('0816614024', 'A Thousand Plateaus: Capitalism And Schizophrenia', 'https://images.isbndb.com/covers/40/28/9780816614028.jpg'), - ('3518390473', 'Der Wettermacher: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/04/74/9783518390474.jpg'), - ('340414578X', 'Intrige: Thriller', 'https://images.isbndb.com/covers/57/82/9783404145782.jpg'), - ('3596113350', 'Die Mambo Kings Spielen Songs Der Liebe', 'https://images.isbndb.com/covers/33/54/9783596113354.jpg'), - ('3453189442', 'Das Verbotene Lied', 'https://images.isbndb.com/covers/94/47/9783453189447.jpg'), - ('3462031252', 'Quadrupelfuge', 'https://images.isbndb.com/covers/12/56/9783462031256.jpg'), - ('0671001701', 'Legend', 'https://images.isbndb.com/covers/17/04/9780671001704.jpg'), - ('0782125557', 'Mastering Linux Premium Edition', 'https://images.isbndb.com/covers/55/59/9780782125559.jpg'), - ('1555217532', 'The Complete Hot And Spicy Cookbook', 'https://images.isbndb.com/covers/75/32/9781555217532.jpg'), - ('0843943769', 'Avatar', 'https://images.isbndb.com/covers/37/64/9780843943764.jpg'), - ('0553583085', 'Kissed By Shadows (Get Connected Romances)', 'https://images.isbndb.com/covers/30/83/9780553583083.jpg'), - ('1892051001', 'Guiness World Records 2000', 'https://images.isbndb.com/covers/10/04/9781892051004.jpg'), - ('0805019375', '"L" Is For Lawless (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/93/77/9780805019377.jpg'), - ('1587991039', 'Technomanifestos: Visions Of The Information Revolutionaries', 'https://images.isbndb.com/covers/10/35/9781587991035.jpg'), - ('1587214768', 'The Wicked Priest: An Allegory In Two Acts', 'https://images.isbndb.com/covers/47/69/9781587214769.jpg'), - ('0802130496', 'Dr. Sax', 'https://images.isbndb.com/covers/04/95/9780802130495.jpg'), - ('1857931467', 'Dorien''s Diary: My Intimate Confessions!', 'https://images.isbndb.com/covers/14/64/9781857931464.jpg'), - ('0380717085', 'The Frugal Gourmet On Our Immigrant Ancestors', 'https://images.isbndb.com/covers/70/88/9780380717088.jpg'), - ('0380712172', 'The Frugal Gourmet Cooks Three Ancient Cuisines: China * Greece * Rome', 'https://images.isbndb.com/covers/21/75/9780380712175.jpg'), - ('0380706725', 'The Frugal Gourmet Cooks American', 'https://images.isbndb.com/covers/67/23/9780380706723.jpg'), - ('0767904281', 'The Gift Of Motherhood: 10 Truths For Every Mother', 'https://images.isbndb.com/covers/42/85/9780767904285.jpg'), - ('1558747478', 'Chicken Soup For The Parent''s Soul: 101 Stories Of Loving, Learning And Parenting', 'https://images.isbndb.com/covers/74/70/9781558747470.jpg'), - ('0440512158', 'A Child Is Born', 'https://images.isbndb.com/covers/21/58/9780440512158.jpg'), - ('0130179620', 'Business In Action', 'https://images.isbndb.com/covers/96/23/9780130179623.jpg'), - ('0273649949', 'Stimulus Factor, The', 'https://images.isbndb.com/covers/99/46/9780273649946.jpg'), - ('0072453907', 'Leading Corporate Citizens', 'https://images.isbndb.com/covers/39/04/9780072453904.jpg'), - ('0130305065', 'Managing Technology And Innovation For Competitive Advantage', 'https://images.isbndb.com/covers/50/60/9780130305060.jpg'), - ('0130219193', 'Strategic Renewal: Becoming A High-Performance Organization', 'https://images.isbndb.com/covers/91/90/9780130219190.jpg'), - ('0028626958', 'The Unofficial Guide To Having A Baby', 'https://images.isbndb.com/covers/69/56/9780028626956.jpg'), - ('1884822738', 'The Big Little Book Of Irish Wit & Wisdom', 'https://images.isbndb.com/covers/27/35/9781884822735.jpg'), - ('0140272941', 'Cider With Rosie', 'https://images.isbndb.com/covers/29/49/9780140272949.jpg'), - ('0375700382', 'The Fight', 'https://images.isbndb.com/covers/03/85/9780375700385.jpg'), - ('0006550789', '253', 'https://images.isbndb.com/covers/07/85/9780006550785.jpg'), - ('0140004424', 'Brighton Rock', 'https://images.isbndb.com/covers/44/27/9780140004427.jpg'), - ('0812517032', 'Irene''s Last Waltz: An Irene Adler Novel', 'https://images.isbndb.com/covers/70/33/9780812517033.jpg'), - ('0385492081', 'Into Thin Air: A Personal Account Of The Mt. Everest Disaster', 'https://images.isbndb.com/covers/20/89/9780385492089.jpg'), - ('0451524829', 'The Phantom Of The Opera (Signet Classics)', 'https://images.isbndb.com/covers/48/29/9780451524829.jpg'), - ('0877287384', 'The Japanese Cult Of Tranquillity', 'https://images.isbndb.com/covers/73/84/9780877287384.jpg'), - ('0465090974', 'The Way We Never Were: American Families And The Nostalgia Trap', 'https://images.isbndb.com/covers/09/76/9780465090976.jpg'), - ('1931412677', 'Feel Good Naked', 'https://images.isbndb.com/covers/26/74/9781931412674.jpg'), - ('0670848549', 'Secret History', 'https://images.isbndb.com/covers/85/46/9780670848546.jpg'), - ('0684829746', 'Cruddy: A Novel', 'https://images.isbndb.com/covers/97/46/9780684829746.jpg'), - ('0425130215', 'Hocus Pocus', 'https://images.isbndb.com/covers/02/16/9780425130216.jpg'), - ('0061000175', 'Skinwalkers (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/01/71/9780061000171.jpg'), - ('0312971362', 'Sis Boom Bah', 'https://images.isbndb.com/covers/13/66/9780312971366.jpg'), - ('0061097659', 'Switcheroo: A Novel', 'https://images.isbndb.com/covers/76/52/9780061097652.jpg'), - ('006017935X', 'Hill Towns', 'https://images.isbndb.com/covers/93/59/9780060179359.jpg'), - ('067976402X', 'Snow Falling On Cedars: A Novel', 'https://images.isbndb.com/covers/40/21/9780679764021.jpg'), - ('1558532161', 'Life''s Little Instruction Book Volume II', 'https://images.isbndb.com/covers/21/68/9781558532168.jpg'), - ('3125918103', 'Les Fantomes, Ca N'' Existe Pas. (Lernmaterialien)', 'https://images.isbndb.com/covers/81/08/9783125918108.jpg'), - ('0064408329', 'The Hanged Man', 'https://images.isbndb.com/covers/83/25/9780064408325.jpg'), - ('0743457358', 'Everything''s Eventual : 14 Dark Tales', 'https://images.isbndb.com/covers/73/54/9780743457354.jpg'), - ('0743456866', 'He Sees You When You''re Sleeping : A Novel', 'https://images.isbndb.com/covers/68/69/9780743456869.jpg'), - ('0440235464', 'Lost Girls', 'https://images.isbndb.com/covers/54/60/9780440235460.jpg'), - ('0312251890', 'Dr. Atkins'' Age-Defying Diet Revolution', 'https://images.isbndb.com/covers/18/95/9780312251895.jpg'), - ('0440227739', 'Peeling The Onion', 'https://images.isbndb.com/covers/77/31/9780440227731.jpg'), - ('0345425707', 'A Cup Of Tea (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/57/06/9780345425706.jpg'), - ('0765342294', 'Ender''s Game', 'https://images.isbndb.com/covers/22/94/9780765342294.jpg'), - ('0451821971', 'A Collection Of Lake Wobegon Stories: Leaving Home', 'https://images.isbndb.com/covers/19/73/9780451821973.jpg'), - ('0670894494', 'The Passion Of Artemisia', 'https://images.isbndb.com/covers/44/99/9780670894499.jpg'), - ('0060394447', 'Tommy''s Tale', 'https://images.isbndb.com/covers/44/48/9780060394448.jpg'), - ('0385508980', 'The Mad Dog 100: The Greatest Sports Arguments Of All Time', 'https://images.isbndb.com/covers/89/88/9780385508988.jpg'), - ('037541181X', 'A Venetian Affair', 'https://images.isbndb.com/covers/18/16/9780375411816.jpg'), - ('006093395X', 'As The Romans Do: An American Family''s Italian Odyssey', 'https://images.isbndb.com/covers/39/51/9780060933951.jpg'), - ('0385491328', 'The Anatomist', 'https://images.isbndb.com/covers/13/27/9780385491327.jpg'), - ('0345434692', 'The Skies Of Pern', 'https://images.isbndb.com/covers/46/92/9780345434692.jpg'), - ('0553131893', 'Dragondrums', 'https://images.isbndb.com/covers/18/95/9780553131895.jpg'), - ('0374177023', 'Instances Of The Number 3: A Novel', 'https://images.isbndb.com/covers/70/27/9780374177027.jpg'), - ('076790351X', 'Beethoven''s Hair: An Extraordinary Historical Odyssey And A Scientific Mystery Solved', 'https://images.isbndb.com/covers/35/16/9780767903516.jpg'), - ('0452280907', 'Fortune Is A River : Leonardo Da Vinci And Niccolo Machiavelli''s Magnificent Dream To Change The Course Of Florentine History', 'https://images.isbndb.com/covers/09/08/9780452280908.jpg'), - ('0425167313', 'Here On Earth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/73/11/9780425167311.jpg'), - ('0316314641', 'Rhoda: A Life In Stories', 'https://images.isbndb.com/covers/46/40/9780316314640.jpg'), - ('034540288X', 'The Lost World', 'https://images.isbndb.com/covers/28/82/9780345402882.jpg'), - ('0061073091', 'Resist Or Serve (The Official Guide To The X-Files, Vol. 4)', 'https://images.isbndb.com/covers/30/90/9780061073090.jpg'), - ('0786808772', 'Summerland', 'https://images.isbndb.com/covers/87/79/9780786808779.jpg'), - ('0553234609', 'Dragonsong', 'https://images.isbndb.com/covers/46/02/9780553234602.jpg'), - ('0553258540', 'Dragonsinger (Harper Hall Trilogy)', 'https://images.isbndb.com/covers/85/47/9780553258547.jpg'), - ('0802713661', 'Brunelleschi''s Dome: How A Renaissance Genius Reinvented Architecture', 'https://images.isbndb.com/covers/36/67/9780802713667.jpg'), - ('0440237688', 'The Giver', 'https://images.isbndb.com/covers/76/86/9780440237686.jpg'), - ('0679884394', 'D. W.''S Color Book (A Chunky Flap Book)', 'https://images.isbndb.com/covers/43/92/9780679884392.jpg'), - ('1582970262', 'The Writer''s Complete Fantasy Reference', 'https://images.isbndb.com/covers/02/64/9781582970264.jpg'), - ('1566091446', 'Photoshop 3 For Macintosh (Visual QuickStart Guide)', 'https://images.isbndb.com/covers/14/42/9781566091442.jpg'), - ('0553577395', 'Starfire (Bantam Spectra)', 'https://images.isbndb.com/covers/73/96/9780553577396.jpg'), - ('0671698419', 'Borders Of Infinity', 'https://images.isbndb.com/covers/84/16/9780671698416.jpg'), - ('0425167720', 'An Instance Of The Fingerpost', 'https://images.isbndb.com/covers/77/24/9780425167724.jpg'), - ('006105660X', 'Washington''s Dirigible (Timeline Wars, No.2)', 'https://images.isbndb.com/covers/66/04/9780061056604.jpg'), - ('0609610597', 'The Shelters Of Stone (Earth''s Children, Book 5)', 'https://images.isbndb.com/covers/05/96/9780609610596.jpg'), - ('0446519960', 'Absolute Power', 'https://images.isbndb.com/covers/99/60/9780446519960.jpg'), - ('0374281602', 'Reversible Errors: A Novel', 'https://images.isbndb.com/covers/16/01/9780374281601.jpg'), - ('0140251839', 'Finding The Right Place At The Right Time; Everything You Need To Know About Retirement Housing', 'https://images.isbndb.com/covers/18/38/9780140251838.jpg'), - ('0399519831', 'Inside Corporate America', 'https://images.isbndb.com/covers/98/33/9780399519833.jpg'), - ('0425159795', 'California Rush: A Novel', 'https://images.isbndb.com/covers/97/98/9780425159798.jpg'), - ('0140255370', 'A Boy Named Phyllis: A Suburban Memoir', 'https://images.isbndb.com/covers/53/79/9780140255379.jpg'), - ('0394543971', 'The Icarus Agenda', 'https://images.isbndb.com/covers/39/70/9780394543970.jpg'), - ('0060970790', 'The Man Who Mistook His Wife For A Hat: And Other Clinical Tales', 'https://images.isbndb.com/covers/07/96/9780060970796.jpg'), - ('0156787334', 'A Room Of One''s Own', 'https://images.isbndb.com/covers/73/38/9780156787338.jpg'), - ('0448095300', 'The Clue Of The Velvet Mask (Nancy Drew #30)', 'https://images.isbndb.com/covers/53/01/9780448095301.jpg'), - ('1569314195', 'Pokemon Tales, Volume 6: Where''s Clefairy''s Voice?', 'https://images.isbndb.com/covers/41/97/9781569314197.jpg'), - ('0060908548', 'Inanna, Queen Of Heaven And Earth: Her Stories And Hymns From Sumer', 'https://images.isbndb.com/covers/85/46/9780060908546.jpg'), - ('0028606353', 'Frommer''s 96 Frugal Traveler''s Guides: Europe From $50 A Day (Serial)', 'https://images.isbndb.com/covers/63/54/9780028606354.jpg'), - ('0316182540', 'White Oleander: A Novel', 'https://images.isbndb.com/covers/25/46/9780316182546.jpg'), - ('0553343874', 'Emmanuel''s Book: A Manual For Living Comfortably In The Cosmos', 'https://images.isbndb.com/covers/38/78/9780553343878.jpg'), - ('0881845906', 'The Mammoth Book Of Ghost Stories (The Mammoth Book Series)', 'https://images.isbndb.com/covers/59/07/9780881845907.jpg'), - ('0446355224', 'Midnight Blue', 'https://images.isbndb.com/covers/52/23/9780446355223.jpg'), - ('0061030953', 'Wild Thorn', 'https://images.isbndb.com/covers/09/56/9780061030956.jpg'), - ('0316919896', 'A Supposedly Fun Thing I''ll Never Do Again: Essays And Arguments', 'https://images.isbndb.com/covers/98/90/9780316919890.jpg'), - ('0553299506', 'Private Eyes (Alex Delaware Novels)', 'https://images.isbndb.com/covers/95/02/9780553299502.jpg'), - ('0446611611', 'City Of Bones (Harry Bosch)', 'https://images.isbndb.com/covers/16/19/9780446611619.jpg'), - ('0446604658', 'Lucky You', 'https://images.isbndb.com/covers/46/59/9780446604659.jpg'), - ('0553282476', 'Cat''s Eye', 'https://images.isbndb.com/covers/24/74/9780553282474.jpg'), - ('0449212602', 'The Handmaid''s Tale', 'https://images.isbndb.com/covers/26/08/9780449212608.jpg'), - ('0684867621', 'The Girl Who Loved Tom Gordon : A Novel', 'https://images.isbndb.com/covers/76/25/9780684867625.jpg'), - ('0451147375', 'Blood Test (Signet)', 'https://images.isbndb.com/covers/73/70/9780451147370.jpg'), - ('0345413903', 'The Murder Book (Alex Delaware)', 'https://images.isbndb.com/covers/39/01/9780345413901.jpg'), - ('0451178033', 'When The Bough Breaks (Alex Delaware, No. 1)', 'https://images.isbndb.com/covers/80/39/9780451178039.jpg'), - ('0590634275', 'Captain Underpants And The Attack Of The Talking Toilets', 'https://images.isbndb.com/covers/42/74/9780590634274.jpg'), - ('0330294377', 'Falling Towards England (Picador Books)', 'https://images.isbndb.com/covers/43/79/9780330294379.jpg'), - ('0061031569', 'Absolute Zero', 'https://images.isbndb.com/covers/15/64/9780061031564.jpg'), - ('3257228007', 'Das Parfum: Die Geschichte Eines Mörders', 'https://images.isbndb.com/covers/80/07/9783257228007.jpg'), - ('0553582143', 'Body Of Lies (Eve Duncan)', 'https://images.isbndb.com/covers/21/47/9780553582147.jpg'), - ('0743202961', 'Every Breath You Take: A True Story Of Obsession, Revenge, And Murder', 'https://images.isbndb.com/covers/29/61/9780743202961.jpg'), - ('0060002492', 'Amazonia', 'https://images.isbndb.com/covers/24/97/9780060002497.jpg'), - ('0399148620', 'Acid Row', 'https://images.isbndb.com/covers/86/20/9780399148620.jpg'), - ('0786866462', 'A Density Of Souls', 'https://images.isbndb.com/covers/64/65/9780786866465.jpg'), - ('0679426159', 'Standing In The Rainbow: A Novel', 'https://images.isbndb.com/covers/61/58/9780679426158.jpg'), - ('0671020315', 'Raven: The Fourth Novel In The Special Orphans Miniseries', 'https://images.isbndb.com/covers/03/16/9780671020316.jpg'), - ('0316569321', 'White Oleander', 'https://images.isbndb.com/covers/93/23/9780316569323.jpg'), - ('067169071X', 'Everything She Ever Wanted', 'https://images.isbndb.com/covers/07/17/9780671690717.jpg'), - ('0679732241', 'The Sound And The Fury: The Corrected Text', 'https://images.isbndb.com/covers/22/42/9780679732242.jpg'), - ('0451117670', 'Manitou''s Daughter', 'https://images.isbndb.com/covers/76/70/9780451117670.jpg'), - ('0451402251', 'Born Of The Sun (Onyx)', 'https://images.isbndb.com/covers/22/57/9780451402257.jpg'), - ('042513301X', 'A Cold Day For Murder (Kate Shugak Mystery)', 'https://images.isbndb.com/covers/30/19/9780425133019.jpg'), - ('1558175326', 'The White Puma', 'https://images.isbndb.com/covers/53/27/9781558175327.jpg'), - ('0449214982', 'Trust Me', 'https://images.isbndb.com/covers/49/85/9780449214985.jpg'), - ('0515090174', 'The Cat Who Could Read Backwards', 'https://images.isbndb.com/covers/01/78/9780515090178.jpg'), - ('0515095826', 'The Cat Who Knew Shakespeare', 'https://images.isbndb.com/covers/58/21/9780515095821.jpg'), - ('0515111279', 'The Cat Who Wasn''t There', 'https://images.isbndb.com/covers/12/79/9780515111279.jpg'), - ('0671555235', 'A Caribbean Mystery', 'https://images.isbndb.com/covers/52/38/9780671555238.jpg'), - ('1570719586', 'God-Shaped Hole', 'https://images.isbndb.com/covers/95/85/9781570719585.jpg'), - ('3492232981', 'Afrikanisches Fieber: Erfahrungen Aus Vierzig Jahren', 'https://images.isbndb.com/covers/29/82/9783492232982.jpg'), - ('0553580876', 'Sympathy For The Devil', 'https://images.isbndb.com/covers/08/77/9780553580877.jpg'), - ('0385475713', 'Alias Grace', 'https://images.isbndb.com/covers/57/16/9780385475716.jpg'), - ('0345290232', 'The Third Eye', 'https://images.isbndb.com/covers/02/36/9780345290236.jpg'), - ('0345441753', 'Criminal Intent', 'https://images.isbndb.com/covers/17/51/9780345441751.jpg'), - ('0425045250', 'The Exiles Trilogy', 'https://images.isbndb.com/covers/52/51/9780425045251.jpg'), - ('0689825234', 'Habibi', 'https://images.isbndb.com/covers/52/31/9780689825231.jpg'), - ('0553375407', 'Ishmael: An Adventure Of The Mind And Spirit', 'https://images.isbndb.com/covers/54/04/9780553375404.jpg'), - ('1863714081', 'Edge Of The Sacred', 'https://images.isbndb.com/covers/40/82/9781863714082.jpg'), - ('0151006903', 'Baudolino', 'https://images.isbndb.com/covers/69/08/9780151006908.jpg'), - ('1931561281', 'The Australia Stories: A Novel', 'https://images.isbndb.com/covers/12/80/9781931561280.jpg'), - ('038080350X', 'Crescent City Rhapsody', 'https://images.isbndb.com/covers/35/07/9780380803507.jpg'), - ('0679744479', 'Written On The Body', 'https://images.isbndb.com/covers/44/74/9780679744474.jpg'), - ('1562477676', 'Molly Takes Flight (American Girls Short Stories)', 'https://images.isbndb.com/covers/76/77/9781562477677.jpg'), - ('0789414708', 'Pregnancy And Birth: Your Questions Answered', 'https://images.isbndb.com/covers/47/00/9780789414700.jpg'), - ('0425115801', 'Lightning', 'https://images.isbndb.com/covers/58/00/9780425115800.jpg'), - ('0345454073', 'The Homing', 'https://images.isbndb.com/covers/40/72/9780345454072.jpg'), - ('0312983654', 'The Wire In The Blood (St. Martin''s Minotaur Mysteries.)', 'https://images.isbndb.com/covers/36/59/9780312983659.jpg'), - ('0671024248', 'Hearts In Atlantis', 'https://images.isbndb.com/covers/42/46/9780671024246.jpg'), - ('0553582933', 'Winter Moon', 'https://images.isbndb.com/covers/29/32/9780553582932.jpg'), - ('0671034022', 'Mercy', 'https://images.isbndb.com/covers/40/23/9780671034023.jpg'), - ('0440208149', 'An Acceptable Time (Time Quartet, Bk. 5)', 'https://images.isbndb.com/covers/81/43/9780440208143.jpg'), - ('0451151259', 'The Eyes Of The Dragon (Signet)', 'https://images.isbndb.com/covers/12/54/9780451151254.jpg'), - ('0375727132', 'The Dive From Clausen''s Pier: A Novel', 'https://images.isbndb.com/covers/71/39/9780375727139.jpg'), - ('0446607711', 'The Simple Truth', 'https://images.isbndb.com/covers/77/11/9780446607711.jpg'), - ('0765301954', 'Fitcher''s Brides (Fairy Tale (Tor))', 'https://images.isbndb.com/covers/19/56/9780765301956.jpg'), - ('014029645X', 'Sherlock Holmes And The Rune Stone Mystery', 'https://images.isbndb.com/covers/64/57/9780140296457.jpg'), - ('0445085614', 'The Emigrants', 'https://images.isbndb.com/covers/56/19/9780445085619.jpg'), - ('0345416880', 'Enchantment', 'https://images.isbndb.com/covers/68/89/9780345416889.jpg'), - ('0312874006', 'Angel Of Darkness', 'https://images.isbndb.com/covers/40/01/9780312874001.jpg'), - ('0028621239', 'The Complete Idiot''s Guide To Knitting And Crocheting', 'https://images.isbndb.com/covers/12/34/9780028621234.jpg'), - ('1593080743', 'The Age Of Innocence', 'https://images.isbndb.com/covers/07/47/9781593080747.jpg'), - ('0380771292', 'Black Thorn, White Rose', 'https://images.isbndb.com/covers/12/95/9780380771295.jpg'), - ('0805051589', 'All The Way To Heaven: An American Boyhood In The Himalayas', 'https://images.isbndb.com/covers/15/82/9780805051582.jpg'), - ('0312314256', 'Year''s Best Fantasy And Horror: Sixteenth Edition', 'https://images.isbndb.com/covers/42/55/9780312314255.jpg'), - ('0445202718', 'Gloriana', 'https://images.isbndb.com/covers/27/19/9780445202719.jpg'), - ('0316136778', 'Love And Longing In Bombay: Stories', 'https://images.isbndb.com/covers/67/78/9780316136778.jpg'), - ('0385483503', 'Arranged Marriage: Stories', 'https://images.isbndb.com/covers/35/06/9780385483506.jpg'), - ('0590486101', 'Black Beauty (Apple Classics)', 'https://images.isbndb.com/covers/61/01/9780590486101.jpg'), - ('0060187271', 'The Last Report On The Miracles At Little No Horse: A Novel', 'https://images.isbndb.com/covers/72/79/9780060187279.jpg'), - ('0385497288', 'The Unknown Errors Of Our Lives: Stories', 'https://images.isbndb.com/covers/72/82/9780385497282.jpg'), - ('038548951X', 'Sister Of My Heart: A Novel', 'https://images.isbndb.com/covers/95/15/9780385489515.jpg'), - ('0345386256', 'A Guide To The Star Wars Universe', 'https://images.isbndb.com/covers/62/50/9780345386250.jpg'), - ('0879517980', 'The Book Of The Dead (Secret Books Of Paradys)', 'https://images.isbndb.com/covers/79/84/9780879517984.jpg'), - ('0131554255', 'Calliope''s Sisters: A Comparative Study Of Philosophies Of Art', 'https://images.isbndb.com/covers/42/52/9780131554252.jpg'), - ('0679725164', 'No Exit And Three Other Plays', 'https://images.isbndb.com/covers/51/69/9780679725169.jpg'), - ('061830245X', 'Crackpots: A Novel', 'https://images.isbndb.com/covers/24/51/9780618302451.jpg'), - ('006015456X', 'Always Coming Home/Paperback Book And Cassette', 'https://images.isbndb.com/covers/45/61/9780060154561.jpg'), - ('0312278675', 'Steppenwolf: A Novel', 'https://images.isbndb.com/covers/86/70/9780312278670.jpg'), - ('0060512806', 'Cryptonomicon', 'https://images.isbndb.com/covers/28/04/9780060512804.jpg'), - ('0060901012', 'Brave New World & Brave New World Revisited', 'https://images.isbndb.com/covers/10/11/9780060901011.jpg'), - ('0060930071', 'The Antelope Wife: A Novel', 'https://images.isbndb.com/covers/00/73/9780060930073.jpg'), - ('0060972459', 'Tracks', 'https://images.isbndb.com/covers/24/55/9780060972455.jpg'), - ('0805012478', 'Steppenwolf: A Novel', 'https://images.isbndb.com/covers/24/77/9780805012477.jpg'), - ('0060975547', 'Love Medicine', 'https://images.isbndb.com/covers/55/48/9780060975548.jpg'), - ('0375704000', 'Freedom Song: Three Novels', 'https://images.isbndb.com/covers/40/00/9780375704000.jpg'), - ('0609806505', 'Guenevere, Queen Of The Summer Country (Guenevere Novels)', 'https://images.isbndb.com/covers/65/00/9780609806500.jpg'), - ('0965624773', 'Finding Laura Buggs', 'https://images.isbndb.com/covers/47/70/9780965624770.jpg'), - ('0060977507', 'The Beet Queen: A Novel', 'https://images.isbndb.com/covers/75/04/9780060977504.jpg'), - ('055326396X', 'Arctic Dreams: Imagination And Desire In A Northern Landscape', 'https://images.isbndb.com/covers/39/61/9780553263961.jpg'), - ('0812505166', 'Wuthering Heights (Tor Classics)', 'https://images.isbndb.com/covers/51/60/9780812505160.jpg'), - ('0440234824', 'The Sibyl In Her Grave', 'https://images.isbndb.com/covers/48/21/9780440234821.jpg'), - ('0393312801', 'The Acid House', 'https://images.isbndb.com/covers/28/05/9780393312805.jpg'), - ('0446525804', 'Last Man Standing', 'https://images.isbndb.com/covers/58/00/9780446525800.jpg'), - ('0446516570', 'Up Country: A Novel', 'https://images.isbndb.com/covers/65/70/9780446516570.jpg'), - ('0312868308', 'Flesh And Gold', 'https://images.isbndb.com/covers/83/07/9780312868307.jpg'), - ('0380752298', 'The White Raven', 'https://images.isbndb.com/covers/22/94/9780380752294.jpg'), - ('0345434773', 'Evensong (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/47/77/9780345434777.jpg'), - ('0786005998', 'Dare To Dream', 'https://images.isbndb.com/covers/59/94/9780786005994.jpg'), - ('0385254520', 'Keeper''n Me', 'https://images.isbndb.com/covers/45/26/9780385254526.jpg'), - ('0060170441', 'Eat Smart, Think Smart: How To Use Nutrients And Supplements To Achieve Maximum Mental And Physical Performance', 'https://images.isbndb.com/covers/04/48/9780060170448.jpg'), - ('0590431536', 'The Girl In The Window (An Apple Paperback)', 'https://images.isbndb.com/covers/15/38/9780590431538.jpg'), - ('0712646221', 'Negaholics', 'https://images.isbndb.com/covers/62/22/9780712646222.jpg'), - ('0749318368', 'Suddenly', 'https://images.isbndb.com/covers/83/69/9780749318369.jpg'), - ('0515122491', 'The Maze (FBI Series)', 'https://images.isbndb.com/covers/24/97/9780515122497.jpg'), - ('051512902X', 'After Dark (Ghost Hunters, Book 1)', 'https://images.isbndb.com/covers/90/21/9780515129021.jpg'), - ('0812530314', 'The Grey Beginning', 'https://images.isbndb.com/covers/03/15/9780812530315.jpg'), - ('0552138223', 'The Cat Who Came In From The Cold', 'https://images.isbndb.com/covers/82/22/9780552138222.jpg'), - ('0515131091', 'Out Of This World', 'https://images.isbndb.com/covers/10/93/9780515131093.jpg'), - ('0380791382', 'Out Of Time: A Casey Jones Mystery (Casey Jones Mysteries)', 'https://images.isbndb.com/covers/13/85/9780380791385.jpg'), - ('0091880955', 'The Luberon Garden', 'https://images.isbndb.com/covers/09/58/9780091880958.jpg'), - ('0563537329', 'The Mind Map Book: Radiant Thinking - Major Evolution In Human Thought', 'https://images.isbndb.com/covers/73/28/9780563537328.jpg'), - ('0140265686', 'Out To Canaan (The Mitford Years, Book 4)', 'https://images.isbndb.com/covers/56/82/9780140265682.jpg'), - ('0140257934', 'These High, Green Hills (The Mitford Years #3)', 'https://images.isbndb.com/covers/79/39/9780140257939.jpg'), - ('0140254544', 'A Light In The Window (The Mitford Years, Book 2)', 'https://images.isbndb.com/covers/45/49/9780140254549.jpg'), - ('0446603708', 'Clay''s Ark', 'https://images.isbndb.com/covers/37/06/9780446603706.jpg'), - ('0446606723', 'Wild Seed', 'https://images.isbndb.com/covers/67/21/9780446606721.jpg'), - ('0451524934', '1984 (Signet Classics)', 'https://images.isbndb.com/covers/49/35/9780451524935.jpg'), - ('0679721819', 'Mama Day', 'https://images.isbndb.com/covers/18/19/9780679721819.jpg'), - ('0345392825', 'Reviving Ophelia: Saving The Selves Of Adolescent Girls (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/28/24/9780345392824.jpg'), - ('0060182792', 'Anam Cara: A Book Of Celtic Wisdom', 'https://images.isbndb.com/covers/27/93/9780060182793.jpg'), - ('0393038440', 'God''s Chinese Son: The Taiping Heavenly Kingdom Of Hong Xiuquan', 'https://images.isbndb.com/covers/84/46/9780393038446.jpg'), - ('0737020121', 'Cooking For Yourself (Williams-Sonoma Lifestyles , Vol 12, No 20)', 'https://images.isbndb.com/covers/01/20/9780737020120.jpg'), - ('0679745645', 'Other Voices, Other Rooms', 'https://images.isbndb.com/covers/56/48/9780679745648.jpg'), - ('1569470901', 'Rebuilding Coventry', 'https://images.isbndb.com/covers/09/09/9781569470909.jpg'), - ('0671027123', 'All Through The Night (Holiday Classics)', 'https://images.isbndb.com/covers/71/24/9780671027124.jpg'), - ('0375412972', 'Yeats Is Dead! A Mystery By 15 Irish Writers', 'https://images.isbndb.com/covers/29/74/9780375412974.jpg'), - ('0449225151', 'A Place Called Freedom', 'https://images.isbndb.com/covers/51/58/9780449225158.jpg'), - ('0590449737', 'Body Battles', 'https://images.isbndb.com/covers/97/31/9780590449731.jpg'), - ('0892816562', 'The Complete I Ching: The Definitive Translation By The Taoist Master Alfred Huang', 'https://images.isbndb.com/covers/65/69/9780892816569.jpg'), - ('0765342405', 'Ender''s Shadow (Ender, Book 5)', 'https://images.isbndb.com/covers/24/09/9780765342409.jpg'), - ('0345350499', 'The Mists Of Avalon', 'https://images.isbndb.com/covers/04/97/9780345350497.jpg'), - ('0689837070', 'Tithe', 'https://images.isbndb.com/covers/70/74/9780689837074.jpg'), - ('0671041177', 'Immortal: Buffy The Vampire Slayer', 'https://images.isbndb.com/covers/11/75/9780671041175.jpg'), - ('0312976275', 'Hot Six (Stephanie Plum, No. 6)', 'https://images.isbndb.com/covers/62/79/9780312976279.jpg'), - ('0767905180', 'Jemima J: A Novel About Ugly Ducklings And Swans', 'https://images.isbndb.com/covers/51/83/9780767905183.jpg'), - ('0743482891', 'Now You See Her', 'https://images.isbndb.com/covers/28/99/9780743482899.jpg'), - ('037383232X', 'Sweet Promise', 'https://images.isbndb.com/covers/23/23/9780373832323.jpg'), - ('1551666200', 'Sarah''s Child', 'https://images.isbndb.com/covers/62/04/9781551666204.jpg'), - ('0373242328', 'The Perfect Neighbor (The MacGregors, No 11) (Silhouette Special Edition No. 1232)', 'https://images.isbndb.com/covers/23/20/9780373242320.jpg'), - ('0373709102', 'That Cowboy''s Kids: Home On The Ranch (Harlequin Superromance No. 910)', 'https://images.isbndb.com/covers/91/06/9780373709106.jpg'), - ('0517077744', 'Three Complete Novels: Mirror Image, Best Kept Secrets, Slow Heat In Heaven', 'https://images.isbndb.com/covers/77/40/9780517077740.jpg'), - ('0449210197', 'Crows', 'https://images.isbndb.com/covers/01/92/9780449210192.jpg'), - ('0373709617', 'Coming Home To You (Harlequin Superromance No. 961)', 'https://images.isbndb.com/covers/96/18/9780373709618.jpg'), - ('0373510225', 'Sullivan''S Woman #22 (Language Of Love)', 'https://images.isbndb.com/covers/02/21/9780373510221.jpg'), - ('0373301529', 'Mustang Man (Western Lovers: Ranch Rogues #4)', 'https://images.isbndb.com/covers/15/22/9780373301522.jpg'), - ('0373273193', 'Racing Against Time: Cavanaugh Justice (Silhouette Intimate Moments No. 1249)', 'https://images.isbndb.com/covers/31/95/9780373273195.jpg'), - ('0373301626', 'His And Hers (Western Lovers: Ranchin'' Dads #14)', 'https://images.isbndb.com/covers/16/21/9780373301621.jpg'), - ('0373271867', 'That Kind Of Girl (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/18/63/9780373271863.jpg'), - ('0373240228', 'Fall Of Shane Mackade (The Mackade Brothers)', 'https://images.isbndb.com/covers/02/27/9780373240227.jpg'), - ('059035342X', 'Harry Potter And The Sorcerer''s Stone (Book 1)', 'https://images.isbndb.com/covers/34/27/9780590353427.jpg'), - ('0373764146', 'Tycoon''S Temptation (Silhouette Desire)', 'https://images.isbndb.com/covers/41/43/9780373764143.jpg'), - ('037325928X', 'Walk On The Wild Side (Harlequin Temptation)', 'https://images.isbndb.com/covers/92/81/9780373259281.jpg'), - ('0446529788', 'A Kiss Remembered: A Classic Love Story', 'https://images.isbndb.com/covers/97/85/9780446529785.jpg'), - ('044652767X', 'Seduction By Design: A Classic Love Story', 'https://images.isbndb.com/covers/76/75/9780446527675.jpg'), - ('0743246918', 'Silent Night/All Through The Night: Two Christmas Novels', 'https://images.isbndb.com/covers/69/10/9780743246910.jpg'), - ('0373301847', 'Return To Yesterday (Western Lovers: Reunited Hearts #36)', 'https://images.isbndb.com/covers/18/43/9780373301843.jpg'), - ('0373708351', 'The Doctor''s Daughter: Men Of Glory (Harlequin Superromance No. 835)', 'https://images.isbndb.com/covers/83/52/9780373708352.jpg'), - ('1551664690', 'The Di Medici Bride (Mira Romance)', 'https://images.isbndb.com/covers/46/99/9781551664699.jpg'), - ('0789491869', 'Washington, D.C. (Eyewitness Top 10 Travel Guides)', 'https://images.isbndb.com/covers/18/62/9780789491862.jpg'), - ('0373835426', 'Witchcraft / Last Chance Cafe / Bayou Reunion', 'https://images.isbndb.com/covers/54/23/9780373835423.jpg'), - ('0373691157', 'Hot Off The Press', 'https://images.isbndb.com/covers/11/59/9780373691159.jpg'), - ('0373301537', 'Painted Sunsets (Western Lovers: Ranch Rogues #5)', 'https://images.isbndb.com/covers/15/39/9780373301539.jpg'), - ('0373258674', 'Valentine Fantasy (Fantasy For Hire) (Harlequin Temptation)', 'https://images.isbndb.com/covers/86/73/9780373258673.jpg'), - ('037330174X', 'Wellspring (Western Lovers: Kids ''n Kin #26)', 'https://images.isbndb.com/covers/17/44/9780373301744.jpg'), - ('0312968256', 'Lady''s Man', 'https://images.isbndb.com/covers/82/50/9780312968250.jpg'), - ('0451205650', 'The Fortune Hunter', 'https://images.isbndb.com/covers/56/50/9780451205650.jpg'), - ('0316089699', 'Sea Glass: A Novel', 'https://images.isbndb.com/covers/96/92/9780316089692.jpg'), - ('1551669404', 'Just Over The Mountain (Grace Valley Trilogy, Book 2)', 'https://images.isbndb.com/covers/94/03/9781551669403.jpg'), - ('0373708319', 'A Man I Used To Know: Love That Man! (Harlequin Superromance No. 831)', 'https://images.isbndb.com/covers/83/14/9780373708314.jpg'), - ('0373706545', 'Done Driftin'' (The Dunleavy Legacy; Harlequin Superromance, No. 654)', 'https://images.isbndb.com/covers/65/49/9780373706549.jpg'), - ('0373871945', 'Mountain Laurel (Laurel Glen Series #3) (Love Inspired #187)', 'https://images.isbndb.com/covers/19/40/9780373871940.jpg'), - ('0671671138', 'Treasure', 'https://images.isbndb.com/covers/11/36/9780671671136.jpg'), - ('0449287092', 'Sword Of Orion', 'https://images.isbndb.com/covers/70/95/9780449287095.jpg'), - ('0671700081', 'Ice Warrior', 'https://images.isbndb.com/covers/00/89/9780671700089.jpg'), - ('0821724231', 'BENEATH THE SILENT SEA', 'https://images.isbndb.com/covers/42/31/9780821724231.jpg'), - ('0380804670', 'The Silent Service: Los Angeles Class', 'https://images.isbndb.com/covers/46/72/9780380804672.jpg'), - ('0812516192', 'Maximum Impact', 'https://images.isbndb.com/covers/61/97/9780812516197.jpg'), - ('0425109267', 'Supercarrier: An Inside Account Of Life Aboard The World''s Most Powerful Ship, The Uss John F. Kennedy', 'https://images.isbndb.com/covers/92/67/9780425109267.jpg'), - ('0380710005', 'CW2', 'https://images.isbndb.com/covers/00/03/9780380710003.jpg'), - ('0553126911', 'WOLFSBANE', 'https://images.isbndb.com/covers/69/14/9780553126914.jpg'), - ('055320923X', 'Silent Sea', 'https://images.isbndb.com/covers/92/35/9780553209235.jpg'), - ('0140348107', 'My Side Of The Mountain', 'https://images.isbndb.com/covers/81/01/9780140348101.jpg'), - ('0884092097', 'Kaleidoscope', 'https://images.isbndb.com/covers/20/94/9780884092094.jpg'), - ('0884092119', 'A Different Voice', 'https://images.isbndb.com/covers/21/17/9780884092117.jpg'), - ('0803263724', 'My Antonia (Willa Cather Scholarly Edition Series)', 'https://images.isbndb.com/covers/37/27/9780803263727.jpg'), - ('0060506679', 'Every Secret Thing: A Novel', 'https://images.isbndb.com/covers/66/74/9780060506674.jpg'), - ('0375701427', 'American Pastoral', 'https://images.isbndb.com/covers/14/29/9780375701429.jpg'), - ('0553135457', 'Sophie''s Choice', 'https://images.isbndb.com/covers/54/59/9780553135459.jpg'), - ('0812504364', 'A Connecticut Yankee In King Arthur''s Court', 'https://images.isbndb.com/covers/43/61/9780812504361.jpg'), - ('0380000830', 'The Guns Of Avalon (Chronicles Of Amber, No. 2)', 'https://images.isbndb.com/covers/08/38/9780380000838.jpg'), - ('0380014300', 'Nine Princes In Amber', 'https://images.isbndb.com/covers/43/09/9780380014309.jpg'), - ('0895773570', 'Flower Arranging', 'https://images.isbndb.com/covers/35/79/9780895773579.jpg'), - ('0330312367', 'Year In Provence', 'https://images.isbndb.com/covers/23/63/9780330312363.jpg'), - ('2277238929', 'De Bons Présages', 'https://images.isbndb.com/covers/89/28/9782277238928.jpg'), - ('2743606789', 'Du Bon Usage De La Lenteur', 'https://images.isbndb.com/covers/67/87/9782743606787.jpg'), - ('2253001279', 'Journal D'' Anne Frank', 'https://images.isbndb.com/covers/12/70/9782253001270.jpg'), - ('2253047422', 'Le Pigeon', 'https://images.isbndb.com/covers/74/21/9782253047421.jpg'), - ('0553255142', 'The Man From Broken Hills', 'https://images.isbndb.com/covers/51/40/9780553255140.jpg'), - ('9500703203', 'El Amor En Los Tiempos Del Colera / Love In The Times Of Cholera', 'https://images.isbndb.com/covers/32/08/9789500703208.jpg'), - ('0345406516', 'The Aguero Sisters (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/65/14/9780345406514.jpg'), - ('0312281250', 'The Ghost Of Hannah Mendes', 'https://images.isbndb.com/covers/12/50/9780312281250.jpg'), - ('0385490461', 'Seraglio: A Novel', 'https://images.isbndb.com/covers/04/67/9780385490467.jpg'), - ('0060936363', 'Portrait In Sepia: A Novel', 'https://images.isbndb.com/covers/63/65/9780060936365.jpg'), - ('038082101X', 'Daughter Of Fortune: A Novel', 'https://images.isbndb.com/covers/10/13/9780380821013.jpg'), - ('0849943663', 'The Pearl', 'https://images.isbndb.com/covers/36/69/9780849943669.jpg'), - ('3453099613', 'Schatten über Den Weiden: Roman', 'https://images.isbndb.com/covers/96/16/9783453099616.jpg'), - ('1574534106', 'Shadow Of The Hegemon', 'https://images.isbndb.com/covers/41/08/9781574534108.jpg'), - ('0380977745', 'April Fool Dead (Death On Demand Mysteries, No. 13)', 'https://images.isbndb.com/covers/77/41/9780380977741.jpg'), - ('1558747028', 'Chicken Soup For The College Soul: Inspiring And Humorous Stories About College', 'https://images.isbndb.com/covers/70/29/9781558747029.jpg'), - ('0618050140', 'The Ledge: Poems', 'https://images.isbndb.com/covers/01/47/9780618050147.jpg'), - ('0312774842', 'Substitute Teaching: A Handbook For Hassle-Free Subbing', 'https://images.isbndb.com/covers/48/44/9780312774844.jpg'), - ('1579213405', 'Emotional Purity : An Affair Of The Heart', 'https://images.isbndb.com/covers/34/04/9781579213404.jpg'), - ('0671708635', 'The 7 Habits Of Highly Effective People', 'https://images.isbndb.com/covers/86/34/9780671708634.jpg'), - ('0812970101', 'The Mysterious Affair At Styles: A Detective Story (Modern Library Classics)', 'https://images.isbndb.com/covers/01/04/9780812970104.jpg'), - ('0375727566', 'Yeats Is Dead!: A Mystery By 15 Irish Writers', 'https://images.isbndb.com/covers/75/66/9780375727566.jpg'), - ('0373630468', 'Worse Than A Crime', 'https://images.isbndb.com/covers/04/62/9780373630462.jpg'), - ('0671676652', 'A Question Of Guilt', 'https://images.isbndb.com/covers/66/50/9780671676650.jpg'), - ('0553250655', 'Puppet For A Corpse', 'https://images.isbndb.com/covers/06/57/9780553250657.jpg'), - ('0399139125', 'River Of Hidden Dreams', 'https://images.isbndb.com/covers/91/23/9780399139123.jpg'), - ('0553377884', 'Skinny Legs And All', 'https://images.isbndb.com/covers/78/80/9780553377880.jpg'), - ('9679787834', 'Vermillion Eye', 'https://images.isbndb.com/covers/78/32/9789679787832.jpg'), - ('0609605623', 'You''re Fifty-Now What?: Investing For The Second Half Of Your Life', 'https://images.isbndb.com/covers/56/22/9780609605622.jpg'), - ('0451195507', 'Judging Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/55/00/9780451195500.jpg'), - ('0061012289', 'A Secret Affair', 'https://images.isbndb.com/covers/22/80/9780061012280.jpg'), - ('0451195493', 'Suspicion Of Deceit', 'https://images.isbndb.com/covers/54/94/9780451195494.jpg'), - ('0061092088', 'Dangerous To Know', 'https://images.isbndb.com/covers/20/84/9780061092084.jpg'), - ('0425162788', 'Politika (Tom Clancy''s Power Plays, Book 1)', 'https://images.isbndb.com/covers/27/81/9780425162781.jpg'), - ('0451208811', 'Blood Orchid (Holly Barker)', 'https://images.isbndb.com/covers/88/11/9780451208811.jpg'), - ('3404920910', 'Im Wald Der Gehenkten Füchse: Roman', 'https://images.isbndb.com/covers/09/14/9783404920914.jpg'), - ('2070419878', 'Novecento : Pianiste', 'https://images.isbndb.com/covers/98/76/9782070419876.jpg'), - ('0345342968', 'Fahrenheit 451', 'https://images.isbndb.com/covers/29/66/9780345342966.jpg'), - ('0192860925', 'The Selfish Gene', 'https://images.isbndb.com/covers/09/27/9780192860927.jpg'), - ('0812550706', 'Ender''s Game (Ender, Book 1)', 'https://images.isbndb.com/covers/07/02/9780812550702.jpg'), - ('0553580302', 'House Harkonnen (Dune: House Trilogy, Book 2)', 'https://images.isbndb.com/covers/03/03/9780553580303.jpg'), - ('0441102670', 'Chapterhouse Dune (Dune Chronicles, Book 6)', 'https://images.isbndb.com/covers/26/79/9780441102679.jpg'), - ('0441328008', 'Heretics Of Dune (Dune Chronicles, Book 5)', 'https://images.isbndb.com/covers/80/00/9780441328000.jpg'), - ('0441294677', 'God Emperor Of Dune (Dune Chronicles, Book 4)', 'https://images.isbndb.com/covers/46/71/9780441294671.jpg'), - ('0441104029', 'Children Of Dune (Dune Chronicles, Book 3)', 'https://images.isbndb.com/covers/40/24/9780441104024.jpg'), - ('0345443683', 'Blackwood Farm (The Vampire Chronicles)', 'https://images.isbndb.com/covers/36/87/9780345443687.jpg'), - ('0061012149', 'Serpico', 'https://images.isbndb.com/covers/21/43/9780061012143.jpg'), - ('0890420254', 'Diagnostic And Statistical Manual Of Mental Disorders DSM-IV-TR Fourth Edition (Text Revision)', 'https://images.isbndb.com/covers/02/56/9780890420256.jpg'), - ('0345378482', 'The Andromeda Strain', 'https://images.isbndb.com/covers/84/84/9780345378484.jpg'), - ('0671758896', 'Loves Music, Loves To Dance', 'https://images.isbndb.com/covers/88/99/9780671758899.jpg'), - ('0345348109', 'The Killer Angels: The Classic Novel Of The Civil War', 'https://images.isbndb.com/covers/81/04/9780345348104.jpg'), - ('0451177096', 'Dolores Claiborne', 'https://images.isbndb.com/covers/70/94/9780451177094.jpg'), - ('0778800229', 'America''s Best Slow Cooker Recipes', 'https://images.isbndb.com/covers/02/24/9780778800224.jpg'), - ('0345422384', 'Pandora (New Tales Of The Vampires)', 'https://images.isbndb.com/covers/23/85/9780345422385.jpg'), - ('0441328091', 'The Hero And The Crown', 'https://images.isbndb.com/covers/80/93/9780441328093.jpg'), - ('0684818868', 'Lies My Teacher Told Me: Everything Your American History Textbook Got Wrong', 'https://images.isbndb.com/covers/88/63/9780684818863.jpg'), - ('0525463313', 'Pooh''s Little Book Of Feng Shui', 'https://images.isbndb.com/covers/33/13/9780525463313.jpg'), - ('0812513754', 'Lord Of Chaos (The Wheel Of Time, Book 6)', 'https://images.isbndb.com/covers/37/52/9780812513752.jpg'), - ('0812550307', 'The Fires Of Heaven (The Wheel Of Time, Book 5)', 'https://images.isbndb.com/covers/03/06/9780812550306.jpg'), - ('0812513738', 'The Shadow Rising (The Wheel Of Time, Book 4)', 'https://images.isbndb.com/covers/37/38/9780812513738.jpg'), - ('0312852487', 'Dragon Reborn (The Wheel Of Time, Book 3)', 'https://images.isbndb.com/covers/24/81/9780312852481.jpg'), - ('0765348446', 'New Threads In The Pattern (The Great Hunt, Book 2)', 'https://images.isbndb.com/covers/84/49/9780765348449.jpg'), - ('0765348438', 'The Hunt Begins (The Great Hunt, Book 1)', 'https://images.isbndb.com/covers/84/32/9780765348432.jpg'), - ('0812511816', 'The Eye Of The World (The Wheel Of Time, Book 1)', 'https://images.isbndb.com/covers/18/19/9780812511819.jpg'), - ('0871401185', 'Introductory Lectures On Psychoanalysis', 'https://images.isbndb.com/covers/11/82/9780871401182.jpg'), - ('0394712447', 'The Method Of Zen', 'https://images.isbndb.com/covers/24/44/9780394712444.jpg'), - ('0671722727', 'KING LEAR', 'https://images.isbndb.com/covers/27/22/9780671722722.jpg'), - ('0385029551', 'The Confessions Of Saint Augustine (Image Book)', 'https://images.isbndb.com/covers/95/51/9780385029551.jpg'), - ('0070419361', 'The Individual In A Social World: Essays And Experiments', 'https://images.isbndb.com/covers/93/60/9780070419360.jpg'), - ('1929194196', 'The Art Of War Plus The Ancient Chinese Revealed', 'https://images.isbndb.com/covers/41/93/9781929194193.jpg'), - ('0553351702', 'The Book Of Five Rings', 'https://images.isbndb.com/covers/17/05/9780553351705.jpg'), - ('0285632655', 'Archery Anatomy: An Introduction To Techniques For Improved Performance', 'https://images.isbndb.com/covers/26/53/9780285632653.jpg'), - ('0804832463', 'One Arrow, One Life: Zen, Archery, Enlightenment', 'https://images.isbndb.com/covers/24/65/9780804832465.jpg'), - ('0375705090', 'Zen In The Art Of Archery', 'https://images.isbndb.com/covers/50/90/9780375705090.jpg'), - ('0312269587', 'Plane Insanity: A Flight Attendant''s Tales Of Sex, Rage, And Queasiness At 30,000 Feet', 'https://images.isbndb.com/covers/95/86/9780312269586.jpg'), - ('0099244926', 'The Street Lawyer', 'https://images.isbndb.com/covers/49/29/9780099244929.jpg'), - ('0340612843', 'Love ME Tender (Starlight)', 'https://images.isbndb.com/covers/28/42/9780340612842.jpg'), - ('0413588106', 'Growing Pains Of Adrian Mole', 'https://images.isbndb.com/covers/81/04/9780413588104.jpg'), - ('009945520X', 'How To Make Square Eggs', 'https://images.isbndb.com/covers/52/02/9780099455202.jpg'), - ('0702228842', 'A Bridge To Wiseman''s Cove (Uqp Young Adult Fiction)', 'https://images.isbndb.com/covers/88/41/9780702228841.jpg'), - ('0880385367', 'Starsong', 'https://images.isbndb.com/covers/53/67/9780880385367.jpg'), - ('0812515609', 'People Of The Mist (First North Americans, Book 9)', 'https://images.isbndb.com/covers/56/02/9780812515602.jpg'), - ('0451183681', 'Harm''s Way (Alan Gregory)', 'https://images.isbndb.com/covers/36/82/9780451183682.jpg'), - ('3502517959', 'Die Spinne Und Das Mädchen.', 'https://images.isbndb.com/covers/79/55/9783502517955.jpg'), - ('3442424623', 'Die Bildhauerin', 'https://images.isbndb.com/covers/46/27/9783442424627.jpg'), - ('3310005844', '20 Jahre 40 Bleiben', 'https://images.isbndb.com/covers/58/42/9783310005842.jpg'), - ('059525893X', 'Goddess Blood: Book One Of The Goddess Trilogy (Bk. 1)', 'https://images.isbndb.com/covers/89/32/9780595258932.jpg'), - ('0425122123', 'Clear And Present Danger (Jack Ryan)', 'https://images.isbndb.com/covers/21/29/9780425122129.jpg'), - ('0812530489', 'Time Wars', 'https://images.isbndb.com/covers/04/83/9780812530483.jpg'), - ('081257060X', 'The Return', 'https://images.isbndb.com/covers/06/01/9780812570601.jpg'), - ('0446326488', 'Lord Of The Dance', 'https://images.isbndb.com/covers/64/83/9780446326483.jpg'), - ('080410882X', 'Dinner At The Homesick Restaurant', 'https://images.isbndb.com/covers/88/29/9780804108829.jpg'), - ('0446609986', 'The Fourth Wall', 'https://images.isbndb.com/covers/99/82/9780446609982.jpg'), - ('0375726624', 'Newjack: Guarding Sing Sing', 'https://images.isbndb.com/covers/66/20/9780375726620.jpg'), - ('0892882816', 'Homestead, A Memoir', 'https://images.isbndb.com/covers/28/16/9780892882816.jpg'), - ('1577487370', 'The Quilt Of Life: A Patchwork Of Devotional Thoughts', 'https://images.isbndb.com/covers/73/71/9781577487371.jpg'), - ('1578562325', 'All Together In One Place (Kinship And Courage Series #1)', 'https://images.isbndb.com/covers/23/29/9781578562329.jpg'), - ('0385484518', 'Tuesdays With Morrie: An Old Man, A Young Man, And Life''s Greatest Lesson', 'https://images.isbndb.com/covers/45/10/9780385484510.jpg'), - ('0060951710', 'Martha Stuart''s Better Than You At Entertaining (A Parody)', 'https://images.isbndb.com/covers/17/19/9780060951719.jpg'), - ('0060922532', 'Pigs In Heaven', 'https://images.isbndb.com/covers/25/35/9780060922535.jpg'), - ('0786864133', 'Napalm & Silly Putty', 'https://images.isbndb.com/covers/41/33/9780786864133.jpg'), - ('156836010X', 'Having Our Say: The Delany Sisters First 100 Years', 'https://images.isbndb.com/covers/01/02/9781568360102.jpg'), - ('006251119X', 'Stop Being Mean To Yourself: A Story About Finding The True Meaning Of Self-Love', 'https://images.isbndb.com/covers/11/95/9780062511195.jpg'), - ('0440236703', 'Tell No One', 'https://images.isbndb.com/covers/67/02/9780440236702.jpg'), - ('0671795937', 'Rogue Warrior', 'https://images.isbndb.com/covers/59/31/9780671795931.jpg'), - ('0345380274', 'Deadly Justice', 'https://images.isbndb.com/covers/02/72/9780345380272.jpg'), - ('0440224039', 'True Crime: The Novel', 'https://images.isbndb.com/covers/40/37/9780440224037.jpg'), - ('076790396X', 'The Pilates Body: The Ultimate At-Home Guide To Strengthening, Lengthening, And Toning Your Body--Without Machines', 'https://images.isbndb.com/covers/39/67/9780767903967.jpg'), - ('1572241381', 'The Self-Esteem Companion', 'https://images.isbndb.com/covers/13/81/9781572241381.jpg'), - ('0345443411', 'What Women Want: What Every Man Needs To Know About Sex, Romance, Passion, And Pleasure', 'https://images.isbndb.com/covers/34/10/9780345443410.jpg'), - ('0192802542', 'Dada And Surrealism: A Very Short Introduction (Very Short Introductions)', 'https://images.isbndb.com/covers/25/45/9780192802545.jpg'), - ('0060928204', 'Creativity: Flow And The Psychology Of Discovery And Invention', 'https://images.isbndb.com/covers/82/09/9780060928209.jpg'), - ('1592400876', 'Eats, Shoots & Leaves: The Zero Tolerance Approach To Punctuation', 'https://images.isbndb.com/covers/08/74/9781592400874.jpg'), - ('0140282378', 'The Big Book Of Calm: Over 100 Successful Techniques For Relaxing Mind And Body', 'https://images.isbndb.com/covers/23/75/9780140282375.jpg'), - ('0435240765', 'Diary Of A Language Teacher (The European Language Classroom)', 'https://images.isbndb.com/covers/07/69/9780435240769.jpg'), - ('0316779490', 'Naked', 'https://images.isbndb.com/covers/94/94/9780316779494.jpg'), - ('0767902513', 'A Walk In The Woods: Rediscovering America On The Appalachian Trail', 'https://images.isbndb.com/covers/25/19/9780767902519.jpg'), - ('038531809X', 'Why Not Me? The Inside Story Of The Making And Unmaking Of The Franken Presidency', 'https://images.isbndb.com/covers/80/99/9780385318099.jpg'), - ('068815252X', 'Book', 'https://images.isbndb.com/covers/25/29/9780688152529.jpg'), - ('078686351X', 'Dirty Jokes And Beer: Stories Of The Unrefined', 'https://images.isbndb.com/covers/35/18/9780786863518.jpg'), - ('0375706410', 'Waiting: A Novel', 'https://images.isbndb.com/covers/64/17/9780375706417.jpg'), - ('0753811464', 'Maya', 'https://images.isbndb.com/covers/14/67/9780753811467.jpg'), - ('0452266688', 'The Portable Curmudgeon (Plume)', 'https://images.isbndb.com/covers/66/81/9780452266681.jpg'), - ('0340697687', 'Teach Yourself Film Studies', 'https://images.isbndb.com/covers/76/89/9780340697689.jpg'), - ('0130289221', 'Becoming A Critical Thinker: A User Friendly Manual (3rd Edition)', 'https://images.isbndb.com/covers/92/23/9780130289223.jpg'), - ('0806957050', 'Sit & Solve - Lateral Thinking Puzzles', 'https://images.isbndb.com/covers/70/50/9780806957050.jpg'), - ('0517084732', 'Good Advice: More Than 2,000 Quotations To Help You Live Your Life', 'https://images.isbndb.com/covers/47/31/9780517084731.jpg'), - ('020530902X', 'The Elements Of Style, Fourth Edition', 'https://images.isbndb.com/covers/90/23/9780205309023.jpg'), - ('073520313X', 'How To Say It Style Guide', 'https://images.isbndb.com/covers/31/36/9780735203136.jpg'), - ('0130891347', 'Asking The Right Questions: A Guide To Critical Thinking (6th Edition)', 'https://images.isbndb.com/covers/13/41/9780130891341.jpg'), - ('0465021433', 'The Evolution Of Desire: Strategies Of Human Mating', 'https://images.isbndb.com/covers/14/37/9780465021437.jpg'), - ('1565115228', 'PRETTY GOOD JOKE BOOK 2nd ED (Prairie Home Companion)', 'https://images.isbndb.com/covers/52/24/9781565115224.jpg'), - ('0380810336', 'Feeling Good: The New Mood Therapy', 'https://images.isbndb.com/covers/03/38/9780380810338.jpg'), - ('0809225034', 'Talking The Winner''s Way: 92 Little Tricks For Big Success In Business And Personal Relationships', 'https://images.isbndb.com/covers/50/33/9780809225033.jpg'), - ('061819729X', 'The Playful Way To Serious Writing', 'https://images.isbndb.com/covers/72/93/9780618197293.jpg'), - ('1565122798', 'Educating Esme: Diary Of A Teacher''s First Year', 'https://images.isbndb.com/covers/27/96/9781565122796.jpg'), - ('1581820542', 'The Little Book Of Big Ideas: Inspiration, Encouragement, And Tips To Stimulate Creativity And Improve Your Life', 'https://images.isbndb.com/covers/05/46/9781581820546.jpg'), - ('0425166791', 'Undoing Depression', 'https://images.isbndb.com/covers/67/96/9780425166796.jpg'), - ('0452284058', 'What Every American Should Know About The Rest Of The World: Your Guide To Today''s Hot Spots, Hot Shots And Incendiary Issues', 'https://images.isbndb.com/covers/40/50/9780452284050.jpg'), - ('1564146731', 'The Know-It-All''s Guide To Life: How To Climb Mount Everest, Cure Hiccups, Live To 100, And Dozens Of Other Practical, Unusual, Or Just Plain Fantasti', 'https://images.isbndb.com/covers/67/31/9781564146731.jpg'), - ('0767910079', 'A Big New Free Happy Unusual Life: Self Expression And Spiritual Practice For Those Who Have Time For Neither', 'https://images.isbndb.com/covers/00/71/9780767910071.jpg'), - ('0486401464', 'Oscar Wilde''s Wit And Wisdom: A Book Of Quotations (Dover Thrift Editions)', 'https://images.isbndb.com/covers/14/61/9780486401461.jpg'), - ('0880841109', 'The Children''s Response: Beyond Tpr Toward Writing (American English)', 'https://images.isbndb.com/covers/11/08/9780880841108.jpg'), - ('0811201090', 'The Colossus Of Maroussi', 'https://images.isbndb.com/covers/10/94/9780811201094.jpg'), - ('0140621407', 'Fairy Tales (Penguin Popular Classics)', 'https://images.isbndb.com/covers/14/02/9780140621402.jpg'), - ('0140620281', 'Nostromo (Penguin Popular Classics)', 'https://images.isbndb.com/covers/02/83/9780140620283.jpg'), - ('0201895293', '101 Bright Ideas: ESL Activities For All Ages', 'https://images.isbndb.com/covers/52/92/9780201895292.jpg'), - ('1585420611', 'Women Can''t Hear What Men Don''t Say: Destroying Myths, Creating Love', 'https://images.isbndb.com/covers/06/12/9781585420612.jpg'), - ('0553211978', 'Northanger Abbey (Bantam Classic)', 'https://images.isbndb.com/covers/19/79/9780553211979.jpg'), - ('0553274503', 'Flowers For Algernon (Bantam Classic)', 'https://images.isbndb.com/covers/45/09/9780553274509.jpg'), - ('0440224659', 'Sooner Or Later', 'https://images.isbndb.com/covers/46/55/9780440224655.jpg'), - ('1841492086', 'The Portable Door', 'https://images.isbndb.com/covers/20/87/9781841492087.jpg'), - ('0345308239', 'The March Of Folly: From Troy To Vietnam', 'https://images.isbndb.com/covers/82/38/9780345308238.jpg'), - ('0330357190', 'Loose Living', 'https://images.isbndb.com/covers/71/97/9780330357197.jpg'), - ('0413537900', 'The Secret Diary Of Adrian Mole Aged 13 3/4', 'https://images.isbndb.com/covers/79/04/9780413537904.jpg'), - ('1860467776', 'A Jerk On One End: Reflections Of A Mediocre Fisherman', 'https://images.isbndb.com/covers/77/76/9781860467776.jpg'), - ('0671757059', 'The Prize: The Epic Quest For Oil, Money And Power', 'https://images.isbndb.com/covers/70/52/9780671757052.jpg'), - ('0671511424', 'DEVIL IN A BLUE DRESS', 'https://images.isbndb.com/covers/14/25/9780671511425.jpg'), - ('0425133540', 'The Sum Of All Fears (Jack Ryan Novels)', 'https://images.isbndb.com/covers/35/45/9780425133545.jpg'), - ('0743469801', 'Why Girls Are Weird : A Novel', 'https://images.isbndb.com/covers/98/07/9780743469807.jpg'), - ('0590110225', 'The Mighty', 'https://images.isbndb.com/covers/02/28/9780590110228.jpg'), - ('0835902242', 'Adventures Of Huckleberry Finn', 'https://images.isbndb.com/covers/22/43/9780835902243.jpg'), - ('0425173755', 'Murder On The Orient Express (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/37/56/9780425173756.jpg'), - ('0451199871', 'The Body In The Library (Miss Marple)', 'https://images.isbndb.com/covers/98/74/9780451199874.jpg'), - ('0963144839', 'Half Life: What We Give Up To Work', 'https://images.isbndb.com/covers/48/36/9780963144836.jpg'), - ('0373196903', 'Her Pregnant Agenda: Marrying The Boss''s Daughter (Silhouette Romance)', 'https://images.isbndb.com/covers/69/06/9780373196906.jpg'), - ('0373196962', 'To Wed A Sheik: Desert Brides (Silhouette Romance)', 'https://images.isbndb.com/covers/69/68/9780373196968.jpg'), - ('0671822209', 'The World According To Garp', 'https://images.isbndb.com/covers/22/00/9780671822200.jpg'), - ('0064409430', 'The Magician''s Nephew', 'https://images.isbndb.com/covers/94/38/9780064409438.jpg'), - ('0380752107', 'Midnight Masquerade', 'https://images.isbndb.com/covers/21/02/9780380752102.jpg'), - ('0425194493', 'Flashback (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/44/92/9780425194492.jpg'), - ('0531103099', 'New Zoos (First Book Series)', 'https://images.isbndb.com/covers/30/98/9780531103098.jpg'), - ('0380728125', 'Wedding Night', 'https://images.isbndb.com/covers/81/21/9780380728121.jpg'), - ('0671722816', 'OTHELLO', 'https://images.isbndb.com/covers/28/14/9780671722814.jpg'), - ('1563521024', 'You''re Not A Kid Anymore...', 'https://images.isbndb.com/covers/10/27/9781563521027.jpg'), - ('0312267819', 'Stalin''s Silver: The Sinking Of The U.S.S. John Barry', 'https://images.isbndb.com/covers/78/10/9780312267810.jpg'), - ('0842361715', 'This Present Darkness', 'https://images.isbndb.com/covers/17/12/9780842361712.jpg'), - ('0446527289', 'The First Counsel', 'https://images.isbndb.com/covers/72/86/9780446527286.jpg'), - ('0743457900', 'Tinker, Tailor, Soldier, Spy', 'https://images.isbndb.com/covers/79/03/9780743457903.jpg'), - ('0394830148', 'The Berenstain Bears And Too Much Vacation', 'https://images.isbndb.com/covers/01/48/9780394830148.jpg'), - ('0345384350', 'Icebound - Signed', 'https://images.isbndb.com/covers/43/55/9780345384355.jpg'), - ('0060175532', 'Young Wives: A Novel', 'https://images.isbndb.com/covers/55/35/9780060175535.jpg'), - ('0811200701', 'The Berlin Stories: The Last Of Mr. Norris/Goodbye To Berlin (New Directions Books)', 'https://images.isbndb.com/covers/07/07/9780811200707.jpg'), - ('0671023373', 'Man''s Search For Meaning', 'https://images.isbndb.com/covers/33/79/9780671023379.jpg'), - ('0679748083', 'The Kitchen God''s Wife', 'https://images.isbndb.com/covers/80/83/9780679748083.jpg'), - ('0830819223', 'So You Want To Be A Stay-at-Home Mom', 'https://images.isbndb.com/covers/92/25/9780830819225.jpg'), - ('0425175405', 'Black Notice', 'https://images.isbndb.com/covers/54/08/9780425175408.jpg'), - ('0380731851', 'Mystic River', 'https://images.isbndb.com/covers/18/55/9780380731855.jpg'), - ('0749930721', 'Hitched', 'https://images.isbndb.com/covers/07/21/9780749930721.jpg'), - ('0380009560', 'The Fantastic Imagination: An Anthology Of High Fantasy', 'https://images.isbndb.com/covers/95/65/9780380009565.jpg'), - ('0345298365', 'Six Of Swords', 'https://images.isbndb.com/covers/83/62/9780345298362.jpg'), - ('0380776510', 'Paradise Wild', 'https://images.isbndb.com/covers/65/11/9780380776511.jpg'), - ('1570422826', 'The Celestine Prophecy: An Experiential Guide', 'https://images.isbndb.com/covers/28/29/9781570422829.jpg'), - ('2070368076', 'Huis Clos, Suivi De "Les Mouches"', 'https://images.isbndb.com/covers/80/75/9782070368075.jpg'), - ('0312874995', 'Escape From Kathmandu', 'https://images.isbndb.com/covers/49/95/9780312874995.jpg'), - ('0425185702', 'Lawrence Sanders McNally''s Chance (Archy McNally)', 'https://images.isbndb.com/covers/57/04/9780425185704.jpg'), - ('0886771560', 'The Year''s Best Horror 14', 'https://images.isbndb.com/covers/15/60/9780886771560.jpg'), - ('0684862719', 'Pay It Forward', 'https://images.isbndb.com/covers/27/12/9780684862712.jpg'), - ('0552998338', 'Blast From The Past', 'https://images.isbndb.com/covers/83/38/9780552998338.jpg'), - ('051748904X', 'A Treasury Of Irish Myth, Legend & Folklore: Fairy And Folk Tales Of The Irish Peasantry', 'https://images.isbndb.com/covers/90/48/9780517489048.jpg'), - ('087226002X', 'Celtic Mythology (Library Of The World''s Myths And Legends)', 'https://images.isbndb.com/covers/00/23/9780872260023.jpg'), - ('1855853906', 'Ancient Celtic Romances', 'https://images.isbndb.com/covers/39/04/9781855853904.jpg'), - ('1850630127', 'Western Way: The Native Tradition V. 1: A Practical Guide To The Western Mystery Tradition', 'https://images.isbndb.com/covers/01/28/9781850630128.jpg'), - ('0385304366', 'Wings', 'https://images.isbndb.com/covers/43/68/9780385304368.jpg'), - ('0385299842', 'Truckers', 'https://images.isbndb.com/covers/98/48/9780385299848.jpg'), - ('1555910408', 'Keepers Of The Earth: Teacher''s Guide', 'https://images.isbndb.com/covers/04/02/9781555910402.jpg'), - ('071411393X', 'The Celts Activity Book', 'https://images.isbndb.com/covers/39/37/9780714113937.jpg'), - ('0713723076', 'The Art Of Celtia', 'https://images.isbndb.com/covers/30/76/9780713723076.jpg'), - ('0486243451', 'The Book Of Kells: Selected Plates In Full Color', 'https://images.isbndb.com/covers/34/50/9780486243450.jpg'), - ('0684859262', 'Single & Single', 'https://images.isbndb.com/covers/92/62/9780684859262.jpg'), - ('0684836491', 'Apocalypse Wow', 'https://images.isbndb.com/covers/64/92/9780684836492.jpg'), - ('0671614460', 'Cops', 'https://images.isbndb.com/covers/44/61/9780671614461.jpg'), - ('0345452550', 'A Cold Heart: An Alex Delaware Novel', 'https://images.isbndb.com/covers/25/59/9780345452559.jpg'), - ('0399147357', 'Dead Sleep', 'https://images.isbndb.com/covers/73/57/9780399147357.jpg'), - ('0740704532', 'Random Acts Of Management:A Dilbert Book', 'https://images.isbndb.com/covers/45/36/9780740704536.jpg'), - ('0836221974', 'Conversations With Dogbert: A Dilbert Book', 'https://images.isbndb.com/covers/19/78/9780836221978.jpg'), - ('0836228790', 'The Dilbert Bunch (Dilbert Books (Hardcover Andrews McMeel))', 'https://images.isbndb.com/covers/87/93/9780836228793.jpg'), - ('0836221966', 'You Don''t Need Experience If You''ve Got Attitude', 'https://images.isbndb.com/covers/19/61/9780836221961.jpg'), - ('0836232232', 'The Boss: Nameless, Blameless & Shameless: Nameless, Blameless And Shameless (Dilbert Books (Hardcover Mini))', 'https://images.isbndb.com/covers/22/33/9780836232233.jpg'), - ('0345452534', 'The Murder Book', 'https://images.isbndb.com/covers/25/35/9780345452535.jpg'), - ('0312717415', 'Shock-Trauma', 'https://images.isbndb.com/covers/74/14/9780312717414.jpg'), - ('0316602051', 'The Jester', 'https://images.isbndb.com/covers/20/51/9780316602051.jpg'), - ('0688156126', 'Jupiter''s Bones: A Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/61/21/9780688156121.jpg'), - ('1552976246', 'Silent Witness: How Forensic Anthropology Is Used To Solve The World''s Toughest Crimes', 'https://images.isbndb.com/covers/62/41/9781552976241.jpg'), - ('0440221420', 'No Witnesses', 'https://images.isbndb.com/covers/14/25/9780440221425.jpg'), - ('0553573977', 'The Hancock Boys', 'https://images.isbndb.com/covers/39/78/9780553573978.jpg'), - ('0684867583', 'Dead Reckoning: The New Science Of Catching Killers', 'https://images.isbndb.com/covers/75/88/9780684867588.jpg'), - ('0451197879', 'Roadwork', 'https://images.isbndb.com/covers/78/70/9780451197870.jpg'), - ('0380796090', 'Watermelon', 'https://images.isbndb.com/covers/60/90/9780380796090.jpg'), - ('0446604666', 'Sick Puppy', 'https://images.isbndb.com/covers/46/66/9780446604666.jpg'), - ('0312860951', 'Reliquary', 'https://images.isbndb.com/covers/09/50/9780312860950.jpg'), - ('0340792655', 'Turning Thirty', 'https://images.isbndb.com/covers/26/50/9780340792650.jpg'), - ('0061015725', 'Prey', 'https://images.isbndb.com/covers/57/24/9780061015724.jpg'), - ('0593043995', 'The Visitor (Jack Reacher, No. 4)', 'https://images.isbndb.com/covers/39/98/9780593043998.jpg'), - ('1855681870', 'Haunted Yorkshire', 'https://images.isbndb.com/covers/18/73/9781855681873.jpg'), - ('0553579754', 'Fear Nothing', 'https://images.isbndb.com/covers/97/58/9780553579758.jpg'), - ('0425181200', 'Dale Brown''s Dreamland', 'https://images.isbndb.com/covers/12/01/9780425181201.jpg'), - ('0451163494', 'The Key To Rebecca', 'https://images.isbndb.com/covers/34/93/9780451163493.jpg'), - ('0425157164', 'Shadows Of Steel', 'https://images.isbndb.com/covers/71/69/9780425157169.jpg'), - ('0449221482', 'J Is For Judgment', 'https://images.isbndb.com/covers/14/88/9780449221488.jpg'), - ('0316154067', 'Void Moon', 'https://images.isbndb.com/covers/40/62/9780316154062.jpg'), - ('0312958455', 'The Last Coyote (Harry Bosch)', 'https://images.isbndb.com/covers/84/59/9780312958459.jpg'), - ('0515120863', 'Killing Critics (Kathleen Mallory Novels)', 'https://images.isbndb.com/covers/08/68/9780515120868.jpg'), - ('0553279912', 'A Is For Alibi', 'https://images.isbndb.com/covers/99/17/9780553279917.jpg'), - ('0345353145', 'Sphere', 'https://images.isbndb.com/covers/31/46/9780345353146.jpg'), - ('0553348973', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/89/72/9780553348972.jpg'), - ('0446516538', 'Slow Waltz In Cedar Bend', 'https://images.isbndb.com/covers/65/32/9780446516532.jpg'), - ('0440214041', 'The Pelican Brief', 'https://images.isbndb.com/covers/40/45/9780440214045.jpg'), - ('0679446486', 'Airframe', 'https://images.isbndb.com/covers/64/84/9780679446484.jpg'), - ('0802116825', 'Death Of A River Guide', 'https://images.isbndb.com/covers/68/26/9780802116826.jpg'), - ('0846705672', 'American Way Of Sex: An Informal Illustrated History', 'https://images.isbndb.com/covers/56/73/9780846705673.jpg'), - ('0841502439', 'Christopher And Gay: A Partisan''s View Of The Greenwich Village Homosexual Scene', 'https://images.isbndb.com/covers/24/37/9780841502437.jpg'), - ('0380717972', 'Halfway Home', 'https://images.isbndb.com/covers/79/72/9780380717972.jpg'), - ('0312028784', 'The Boys And Their Baby (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/87/87/9780312028787.jpg'), - ('0807079200', 'Gay Ideas: Outing And Other Controversies', 'https://images.isbndb.com/covers/92/01/9780807079201.jpg'), - ('0878670319', 'The Gay Liberation Book', 'https://images.isbndb.com/covers/03/14/9780878670314.jpg'), - ('0896082172', 'Culture Clash: The Making Of Gay Sensibility', 'https://images.isbndb.com/covers/21/75/9780896082175.jpg'), - ('0226067114', 'Christianity, Social Tolerance, And Homosexuality: Gay People In Western Europe From The Beginning Of The Christian Era To The Fourteenth Century', 'https://images.isbndb.com/covers/71/17/9780226067117.jpg'), - ('0393011224', 'The Age Of Sensation: A Psychoanalytic Exploration', 'https://images.isbndb.com/covers/12/27/9780393011227.jpg'), - ('0060167084', 'Making History: The Struggle For Gay And Lesbian Equal Rights, 1945-1990 : An Oral History', 'https://images.isbndb.com/covers/70/80/9780060167080.jpg'), - ('0415907411', 'Queer Looks: Perspectives On Lesbian And Gay Film And Video', 'https://images.isbndb.com/covers/74/15/9780415907415.jpg'), - ('0472095978', 'The Male Body: Features, Destinies, Exposures', 'https://images.isbndb.com/covers/59/71/9780472095971.jpg'), - ('1565842103', 'A Queer Reader', 'https://images.isbndb.com/covers/21/06/9781565842106.jpg'), - ('0385239068', 'After The Ball: How America Will Conquer Its Fear And Hatred Of Gays In The 90''s', 'https://images.isbndb.com/covers/90/66/9780385239066.jpg'), - ('0525943730', 'Walt Whitman: A Gay Life', 'https://images.isbndb.com/covers/37/30/9780525943730.jpg'), - ('0802130259', 'Out Front: Contemporary Gay And Lesbian Plays', 'https://images.isbndb.com/covers/02/59/9780802130259.jpg'), - ('0877736510', 'Same-Sex Love: And The Path To Wholeness', 'https://images.isbndb.com/covers/65/16/9780877736516.jpg'), - ('0151002231', 'Homosexuality In History', 'https://images.isbndb.com/covers/22/38/9780151002238.jpg'), - ('1895857058', 'On The Safe Edge: A Manual For SM Play', 'https://images.isbndb.com/covers/70/54/9781895857054.jpg'), - ('0525480374', 'Get The Message?: A Decade Of Art For Social Change', 'https://images.isbndb.com/covers/03/72/9780525480372.jpg'), - ('0812822625', 'The Gay Tapes: A Candid Discussion About Male Homosexuality', 'https://images.isbndb.com/covers/26/25/9780812822625.jpg'), - ('0890876096', 'So Little Time: Essays On Gay Life', 'https://images.isbndb.com/covers/60/91/9780890876091.jpg'), - ('1560238763', 'Reviving The Tribe: Regenerating Gay Men''s Sexuality And Culture In The Ongoing Epidemic (Haworth Gay & Lesbian Studies)', 'https://images.isbndb.com/covers/87/68/9781560238768.jpg'), - ('0062507567', 'The Thirteen Original Clan Mothers: Your Sacred Path To Discovering The Gifts, Talents, And Abilities Of The Feminine Through The Ancient Teachings Of The Sisterhood', 'https://images.isbndb.com/covers/75/63/9780062507563.jpg'), - ('0553476580', 'Alchemist', 'https://images.isbndb.com/covers/65/83/9780553476583.jpg'), - ('076071150X', 'Writing For Dollars: 75 Tips For The Freelance Writer', 'https://images.isbndb.com/covers/15/07/9780760711507.jpg'), - ('1561707236', 'Soul''s Perfection (Journey Of The Soul''s Service, Book 2)', 'https://images.isbndb.com/covers/72/32/9781561707232.jpg'), - ('1561707244', 'The Nature Of Good And Evil (Journey Of The Soul Series, Book 3)', 'https://images.isbndb.com/covers/72/49/9781561707249.jpg'), - ('1561706213', 'Adventures Of A Psychic: A Fascinating And Inspiring True-Life Story Of One Of America''s Most Successful Clairvoyants', 'https://images.isbndb.com/covers/62/11/9781561706211.jpg'), - ('0525945040', 'The Other Side And Back: A Psychic''s Guide To Our World And Beyond', 'https://images.isbndb.com/covers/50/48/9780525945048.jpg'), - ('0743400720', 'The Camino: A Journey Of The Spirit', 'https://images.isbndb.com/covers/07/25/9780743400725.jpg'), - ('0553274384', 'Don''t Fall Off The Mountain', 'https://images.isbndb.com/covers/43/87/9780553274387.jpg'), - ('1880032627', 'Creative Visualization: Use The Power Of Your Imagination To Create What You Want In Your Life', 'https://images.isbndb.com/covers/26/26/9781880032626.jpg'), - ('0915811898', 'Way Of The Peaceful Warrior: A Book That Changes Lives', 'https://images.isbndb.com/covers/18/92/9780915811892.jpg'), - ('0385315287', 'Running From Safety: An Adventure Of The Spirit', 'https://images.isbndb.com/covers/52/89/9780385315289.jpg'), - ('0440108268', 'The Bridge Across Forever: A Lovestory', 'https://images.isbndb.com/covers/82/69/9780440108269.jpg'), - ('0440204321', 'A Gift Of Wings', 'https://images.isbndb.com/covers/43/29/9780440204329.jpg'), - ('044020562X', 'One', 'https://images.isbndb.com/covers/56/23/9780440205623.jpg'), - ('0446676489', 'The Secret Of Shambhala: In Search Of The Eleventh Insight', 'https://images.isbndb.com/covers/64/89/9780446676489.jpg'), - ('1577310454', 'Maps To Ecstasy: The Healing Power Of Movement', 'https://images.isbndb.com/covers/04/57/9781577310457.jpg'), - ('0140298479', 'Bridget Jones: The Edge Of Reason', 'https://images.isbndb.com/covers/84/75/9780140298475.jpg'), - ('0694524638', 'Invitation, The', 'https://images.isbndb.com/covers/46/31/9780694524631.jpg'), - ('0912365579', 'Chief Seattle (Northwest Mythic Landscape Series)', 'https://images.isbndb.com/covers/55/72/9780912365572.jpg'), - ('1882591275', 'Write From The Heart: Unleashing The Power Of Your Creativity', 'https://images.isbndb.com/covers/12/75/9781882591275.jpg'), - ('0811812006', 'The Secret Language Of Stars And Planets: A Visual Key To The Heavens', 'https://images.isbndb.com/covers/20/09/9780811812009.jpg'), - ('0809237628', 'Chris-In-The-Morning: Love, Life, And The Whole Karmic Enchilada', 'https://images.isbndb.com/covers/76/23/9780809237623.jpg'), - ('0809237601', 'The Northern Exposure Cookbook: A Community Cookbook From The Heart Of The Alaskan Riviera', 'https://images.isbndb.com/covers/76/09/9780809237609.jpg'), - ('0806514094', 'Northern Exposure: The Official Publication Of The Television Series', 'https://images.isbndb.com/covers/40/93/9780806514093.jpg'), - ('0786860642', 'Northern Exposures: Photographs', 'https://images.isbndb.com/covers/06/47/9780786860647.jpg'), - ('0671777351', 'Letters From Cicely: A Northern Exposure Book', 'https://images.isbndb.com/covers/73/57/9780671777357.jpg'), - ('067084487X', 'The Stinky Cheese Man And Other Fairly Stupid Tales', 'https://images.isbndb.com/covers/48/76/9780670844876.jpg'), - ('0821211226', 'The Portfolios Of Ansel Adams', 'https://images.isbndb.com/covers/12/29/9780821211229.jpg'), - ('0062508482', 'Every Part Of This Earth Is Sacred: Native American Voices In Praise Of Nature', 'https://images.isbndb.com/covers/84/85/9780062508485.jpg'), - ('0912776412', 'Beyond Birth And Death', 'https://images.isbndb.com/covers/64/15/9780912776415.jpg'), - ('0892132701', 'The Journey Of Self-Discovery', 'https://images.isbndb.com/covers/27/06/9780892132706.jpg'), - ('0553255959', 'The Complete Book Of Palmistry', 'https://images.isbndb.com/covers/59/59/9780553255959.jpg'), - ('0385484100', 'The Language Of Life', 'https://images.isbndb.com/covers/41/07/9780385484107.jpg'), - ('0140422226', 'The Complete Poems (Penguin Classics)', 'https://images.isbndb.com/covers/22/21/9780140422221.jpg'), - ('0062509594', 'The Essential Rumi, New Expanded Edition', 'https://images.isbndb.com/covers/95/98/9780062509598.jpg'), - ('0446673714', 'The Soul''s Code: In Search Of Character And Calling', 'https://images.isbndb.com/covers/37/16/9780446673716.jpg'), - ('0062500287', 'The Flight Of The Seventh Moon: The Teaching Of The Shields', 'https://images.isbndb.com/covers/02/81/9780062500281.jpg'), - ('1577311868', 'Developing Intuition: Practical Guidance For Daily Life', 'https://images.isbndb.com/covers/18/67/9781577311867.jpg'), - ('0062513346', 'The Valkyries', 'https://images.isbndb.com/covers/33/42/9780062513342.jpg'), - ('0030020786', 'Principles Of Instrumental Analysis, 5th Edition', 'https://images.isbndb.com/covers/07/80/9780030020780.jpg'), - ('0133502813', 'Chemistry', 'https://images.isbndb.com/covers/28/17/9780133502817.jpg'), - ('0716724022', 'Physical Chemistry', 'https://images.isbndb.com/covers/40/25/9780716724025.jpg'), - ('0525462325', 'Pooh (Giant Board Book)', 'https://images.isbndb.com/covers/23/23/9780525462323.jpg'), - ('0060256664', 'The Giving Tree', 'https://images.isbndb.com/covers/66/61/9780060256661.jpg'), - ('0794505007', 'Dream Pony (Sandy Lane Stables)', 'https://images.isbndb.com/covers/50/04/9780794505004.jpg'), - ('0786889020', 'Don''t Stand Too Close To A Naked Man', 'https://images.isbndb.com/covers/90/20/9780786889020.jpg'), - ('0786861320', 'The Wall Street Journal Lifetime Guide To Money: Strategies For Managing Your Finances', 'https://images.isbndb.com/covers/13/23/9780786861323.jpg'), - ('0688149790', 'Babyhood', 'https://images.isbndb.com/covers/97/96/9780688149796.jpg'), - ('0671519751', '35,000+ Baby Names', 'https://images.isbndb.com/covers/97/59/9780671519759.jpg'), - ('0399505962', 'The Indoor Cat', 'https://images.isbndb.com/covers/59/66/9780399505966.jpg'), - ('0812090381', 'Maine Coon Cats (Barron''s Complete Pet Owner''s Manuals)', 'https://images.isbndb.com/covers/03/83/9780812090383.jpg'), - ('156305700X', 'Really Important Stuff My Kids Have Taught Me', 'https://images.isbndb.com/covers/70/07/9781563057007.jpg'), - ('0889652066', 'Making Your Home A Haven: Stragegies For The Domestically Challenged', 'https://images.isbndb.com/covers/20/64/9780889652064.jpg'), - ('0140386645', 'The Westing Game', 'https://images.isbndb.com/covers/66/46/9780140386646.jpg'), - ('0345337662', 'Interview With The Vampire', 'https://images.isbndb.com/covers/76/65/9780345337665.jpg'), - ('0345351525', 'The Queen Of The Damned (The Vampire Chronicles)', 'https://images.isbndb.com/covers/15/24/9780345351524.jpg'), - ('0553205587', 'The Lord God Made Them All', 'https://images.isbndb.com/covers/55/89/9780553205589.jpg'), - ('0449003787', '"O" Is For Outlaw', 'https://images.isbndb.com/covers/37/87/9780449003787.jpg'), - ('0867202076', 'Organic Chemistry', 'https://images.isbndb.com/covers/20/76/9780867202076.jpg'), - ('0716723980', 'Inorganic Chemistry', 'https://images.isbndb.com/covers/39/81/9780716723981.jpg'), - ('0765347539', 'Kushiel''s Avatar (Kushiel''s Legacy)', 'https://images.isbndb.com/covers/75/34/9780765347534.jpg'), - ('0965921506', 'In-Home Child Care: A Step-By-Step Guide To Quality, Affordable Care', 'https://images.isbndb.com/covers/15/03/9780965921503.jpg'), - ('0471485527', 'Essentials Of Computational Chemistry: Theories And Models', 'https://images.isbndb.com/covers/55/20/9780471485520.jpg'), - ('0765345048', 'Kushiel''s Chosen (Kushiel''s Legacy)', 'https://images.isbndb.com/covers/50/42/9780765345042.jpg'), - ('0385265700', 'The Book Of Ruth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/57/06/9780385265706.jpg'), - ('0156935805', 'Virginia Woolf: A Biography', 'https://images.isbndb.com/covers/58/07/9780156935807.jpg'), - ('0713442549', 'Karpov-Korchnoi: Massacre In Merano (A Batsford Chess Book)', 'https://images.isbndb.com/covers/25/40/9780713442540.jpg'), - ('094547069X', 'New Developments In The Latvian Gambit From Elsburg''s 1st LG World Championship Correspondence Chess Tournament', 'https://images.isbndb.com/covers/06/94/9780945470694.jpg'), - ('0486293556', 'Epic Battles Of The Chessboard', 'https://images.isbndb.com/covers/35/54/9780486293554.jpg'), - ('0020083513', 'Battle Of The Titans: Kasparov-karpov, New York-lyons', 'https://images.isbndb.com/covers/35/11/9780020083511.jpg'), - ('0140376410', 'The Ear, The Eye, And The Arm', 'https://images.isbndb.com/covers/64/18/9780140376418.jpg'), - ('0452281296', 'In The Cut', 'https://images.isbndb.com/covers/12/95/9780452281295.jpg'), - ('1573229326', 'How To Be Good', 'https://images.isbndb.com/covers/93/26/9781573229326.jpg'), - ('038072930X', 'Turbulent Souls:: A Catholic Son''s Return To His Jewish Family', 'https://images.isbndb.com/covers/93/02/9780380729302.jpg'), - ('068483376X', 'Succulent Wild Woman', 'https://images.isbndb.com/covers/37/67/9780684833767.jpg'), - ('068484270X', 'The Healing Of America', 'https://images.isbndb.com/covers/27/07/9780684842707.jpg'), - ('0316754315', 'The Morning After: Sex, Fear, And Feminism On Campus', 'https://images.isbndb.com/covers/43/16/9780316754316.jpg'), - ('0671672576', 'The Last Temptation Of Christ', 'https://images.isbndb.com/covers/25/77/9780671672577.jpg'), - ('0679743243', 'The Informers', 'https://images.isbndb.com/covers/32/48/9780679743248.jpg'), - ('0151003394', 'Africans In America: America''s Journey Through Slavery', 'https://images.isbndb.com/covers/33/96/9780151003396.jpg'), - ('0385424736', 'The Rainmaker', 'https://images.isbndb.com/covers/47/38/9780385424738.jpg'), - ('0060923717', 'Love In Black And White: The Triumph Of Love Over Prejudice And Taboo', 'https://images.isbndb.com/covers/37/16/9780060923716.jpg'), - ('0671617028', 'The Color Purple', 'https://images.isbndb.com/covers/70/28/9780671617028.jpg'), - ('0440224772', 'Mirror Image', 'https://images.isbndb.com/covers/47/78/9780440224778.jpg'), - ('0345406036', 'The Shelter Of Each Other: Rebuilding Our Families', 'https://images.isbndb.com/covers/60/33/9780345406033.jpg'), - ('0871132389', 'Story Of My Life', 'https://images.isbndb.com/covers/23/83/9780871132383.jpg'), - ('0345421825', 'The First Immortal: A Novel Of The Future', 'https://images.isbndb.com/covers/18/21/9780345421821.jpg'), - ('0061057983', 'Diaspora', 'https://images.isbndb.com/covers/79/84/9780061057984.jpg'), - ('0373245513', 'And Babies Make Four (Silhouette Special Edition No. 1551)(Manhattan Multiples)', 'https://images.isbndb.com/covers/55/12/9780373245512.jpg'), - ('0525440631', 'Monster Movers', 'https://images.isbndb.com/covers/06/35/9780525440635.jpg'), - ('0373196504', 'The Tycoon''s Double Trouble (Daycare Dads)', 'https://images.isbndb.com/covers/65/00/9780373196500.jpg'), - ('0425130312', 'Legacy Of Evil', 'https://images.isbndb.com/covers/03/15/9780425130315.jpg'), - ('0373123515', 'The Spaniard''s Woman Foreign Affairs (Harlequin Presents)', 'https://images.isbndb.com/covers/35/13/9780373123513.jpg'), - ('0373123531', 'The Greek Tycoon''s Ultimatum (The Greek Tycoons) (Harlequin Presents # 2353)', 'https://images.isbndb.com/covers/35/37/9780373123537.jpg'), - ('0375433465', 'The Firm (Random House Large Print)', 'https://images.isbndb.com/covers/34/67/9780375433467.jpg'), - ('0380752123', 'Each Time We Love', 'https://images.isbndb.com/covers/21/26/9780380752126.jpg'), - ('067170463X', 'Murder On The Orient Express', 'https://images.isbndb.com/covers/46/36/9780671704636.jpg'), - ('0671543180', 'Dead Man''s Folly', 'https://images.isbndb.com/covers/31/81/9780671543181.jpg'), - ('067170091X', 'Endless Night', 'https://images.isbndb.com/covers/09/11/9780671700911.jpg'), - ('0671705997', 'Easy To Kill', 'https://images.isbndb.com/covers/59/92/9780671705992.jpg'), - ('0671704664', 'And Then There Were None', 'https://images.isbndb.com/covers/46/67/9780671704667.jpg'), - ('0373805217', 'A Careful Wife', 'https://images.isbndb.com/covers/52/11/9780373805211.jpg'), - ('0671696513', 'ABC Murders', 'https://images.isbndb.com/covers/65/11/9780671696511.jpg'), - ('0373123086', 'The Blind - Date Bride (The Australians) (Harlequin Presents # 2308)', 'https://images.isbndb.com/covers/30/87/9780373123087.jpg'), - ('0140390839', 'The Adventures Of Tom Sawyer (Penguin Classics)', 'https://images.isbndb.com/covers/08/34/9780140390834.jpg'), - ('0373123523', 'The Parisian Playboy In Love With Her Boss', 'https://images.isbndb.com/covers/35/20/9780373123520.jpg'), - ('0821758179', 'Faery Magic', 'https://images.isbndb.com/covers/81/75/9780821758175.jpg'), - ('0380896931', 'Tender Is The Storm', 'https://images.isbndb.com/covers/69/36/9780380896936.jpg'), - ('0971942315', 'The Greatest Discovery', 'https://images.isbndb.com/covers/23/18/9780971942318.jpg'), - ('3455059554', 'Der Fisch Lernt Fliegen - Unterwegs Durch Die Jahre', 'https://images.isbndb.com/covers/95/57/9783455059557.jpg'), - ('0553275860', 'Narcissus And Goldmund', 'https://images.isbndb.com/covers/58/65/9780553275865.jpg'), - ('0739307312', 'The Da Vinci Code', 'https://images.isbndb.com/covers/73/11/9780739307311.jpg'), - ('3423105518', 'Der Name Der Rose: Roman', 'https://images.isbndb.com/covers/55/14/9783423105514.jpg'), - ('0812090284', '2001 Spanish And English Idioms (2001 Idioms Series)', 'https://images.isbndb.com/covers/02/84/9780812090284.jpg'), - ('0590254715', 'Spring Fever!', 'https://images.isbndb.com/covers/47/17/9780590254717.jpg'), - ('0449210073', 'Patience & Sarah', 'https://images.isbndb.com/covers/00/79/9780449210079.jpg'), - ('0446605239', 'The Notebook', 'https://images.isbndb.com/covers/52/36/9780446605236.jpg'), - ('0553295977', 'Carnal Innocence', 'https://images.isbndb.com/covers/59/79/9780553295979.jpg'), - ('0380470845', 'The Fulfillment', 'https://images.isbndb.com/covers/08/46/9780380470846.jpg'), - ('0380715309', 'Mattimeo (Redwall, Book 3)', 'https://images.isbndb.com/covers/53/05/9780380715305.jpg'), - ('0553291025', 'If I Should Die', 'https://images.isbndb.com/covers/10/25/9780553291025.jpg'), - ('0812549295', 'The Wood Wife (Tor Fantasy)', 'https://images.isbndb.com/covers/92/94/9780812549294.jpg'), - ('0440162041', 'North And South', 'https://images.isbndb.com/covers/20/49/9780440162049.jpg'), - ('0671739778', 'Lost Lady', 'https://images.isbndb.com/covers/97/75/9780671739775.jpg'), - ('0679770232', 'Italy In Mind: An Anthology', 'https://images.isbndb.com/covers/02/37/9780679770237.jpg'), - ('0312875495', 'White As Snow (Fairy Tale)', 'https://images.isbndb.com/covers/54/97/9780312875497.jpg'), - ('0553130285', 'Overload', 'https://images.isbndb.com/covers/02/87/9780553130287.jpg'), - ('0440212723', 'Cold Sassy Tree', 'https://images.isbndb.com/covers/27/20/9780440212720.jpg'), - ('0061054267', 'Ancient Shores', 'https://images.isbndb.com/covers/42/66/9780061054266.jpg'), - ('0553299743', 'Reap The Whirlwind: The Plainsmen', 'https://images.isbndb.com/covers/97/48/9780553299748.jpg'), - ('0671016768', 'Bloodstream', 'https://images.isbndb.com/covers/67/60/9780671016760.jpg'), - ('0553276735', 'No Comebacks', 'https://images.isbndb.com/covers/67/32/9780553276732.jpg'), - ('0786889047', 'BURNING ANGEL (Dave Robicheaux Mysteries)', 'https://images.isbndb.com/covers/90/44/9780786889044.jpg'), - ('0380720191', 'The List Of Seven', 'https://images.isbndb.com/covers/01/94/9780380720194.jpg'), - ('0380898179', 'So Worthy My Love', 'https://images.isbndb.com/covers/81/76/9780380898176.jpg'), - ('0345314247', 'Blue Adept (Split Infinity)', 'https://images.isbndb.com/covers/42/46/9780345314246.jpg'), - ('0671646575', 'Heat And Dust', 'https://images.isbndb.com/covers/65/78/9780671646578.jpg'), - ('0060955775', 'Veronika Decides To Die', 'https://images.isbndb.com/covers/57/79/9780060955779.jpg'), - ('0679723374', 'Manifold Destiny: The One! The Only! Guide To Cooking On Your Car Engine!', 'https://images.isbndb.com/covers/33/70/9780679723370.jpg'), - ('0716744481', 'Bold Science: Seven Scientists Who Are Changing Our World', 'https://images.isbndb.com/covers/44/81/9780716744481.jpg'), - ('0395629497', 'Treehouses: The Art And Craft Of Living Out On A Limb', 'https://images.isbndb.com/covers/94/99/9780395629499.jpg'), - ('0140259988', 'Home Tree Home: Principles Of Treehouse Construction And Other Tall Tales', 'https://images.isbndb.com/covers/99/88/9780140259988.jpg'), - ('0743458036', 'The Royal Physician''s Visit: A Novel', 'https://images.isbndb.com/covers/80/30/9780743458030.jpg'), - ('0441225691', 'Falcon', 'https://images.isbndb.com/covers/56/99/9780441225699.jpg'), - ('0671721720', 'The Honor Of The Queen (Honor Harrington Series, Book 2)', 'https://images.isbndb.com/covers/17/25/9780671721725.jpg'), - ('0679745963', 'The Man On The Balcony', 'https://images.isbndb.com/covers/59/69/9780679745969.jpg'), - ('0671875965', 'The Short Victorious War (Honor Harrington Series, Book 3)', 'https://images.isbndb.com/covers/59/61/9780671875961.jpg'), - ('0142003409', 'The Disappearance Of Sherlock Holmes', 'https://images.isbndb.com/covers/34/04/9780142003404.jpg'), - ('0671577727', 'On Basilisk Station (Honor Harrington Series, Book 1)', 'https://images.isbndb.com/covers/77/28/9780671577728.jpg'), - ('0451451686', 'Reaper Man (Discworld)', 'https://images.isbndb.com/covers/16/82/9780451451682.jpg'), - ('068486780X', 'Between Silk And Cyanide: A Codemaker''s War, 1941-1945', 'https://images.isbndb.com/covers/78/09/9780684867809.jpg'), - ('0743224574', 'A Beautiful Mind: The Life Of Mathematical Genius And Nobel Laureate John Nash', 'https://images.isbndb.com/covers/45/74/9780743224574.jpg'), - ('0671010115', 'GONE FISHIN: Featuring An Original Easy Rawlins Short Story "Smoke"', 'https://images.isbndb.com/covers/01/19/9780671010119.jpg'), - ('0671004549', 'You Belong To Me', 'https://images.isbndb.com/covers/45/45/9780671004545.jpg'), - ('0375509283', 'The Threatening Storm: The Case For Invading Iraq', 'https://images.isbndb.com/covers/92/85/9780375509285.jpg'), - ('081297106X', 'Reading Lolita In Tehran: A Memoir In Books', 'https://images.isbndb.com/covers/10/64/9780812971064.jpg'), - ('0312422601', 'Blue Latitudes: Boldly Going Where Captain Cook Has Gone Before', 'https://images.isbndb.com/covers/26/08/9780312422608.jpg'), - ('0802139256', 'Peace Like A River', 'https://images.isbndb.com/covers/92/52/9780802139252.jpg'), - ('0553565915', 'Embraced By The Light', 'https://images.isbndb.com/covers/59/11/9780553565911.jpg'), - ('055356160X', 'Cry Wolf: A Novel', 'https://images.isbndb.com/covers/16/09/9780553561609.jpg'), - ('0439240700', 'The Power Of Two (T*Witches, No 1)', 'https://images.isbndb.com/covers/07/03/9780439240703.jpg'), - ('0345317580', 'Magic Kingdom For Sale', 'https://images.isbndb.com/covers/75/82/9780345317582.jpg'), - ('0345335287', 'The Black Unicorn (The Magic Kingdom Of Landover)', 'https://images.isbndb.com/covers/52/89/9780345335289.jpg'), - ('0345362276', 'Wizard At Large (Magic Kingdom Of Landover, Book 3)', 'https://images.isbndb.com/covers/22/78/9780345362278.jpg'), - ('0373512066', 'Sweet Enemy', 'https://images.isbndb.com/covers/20/65/9780373512065.jpg'), - ('0812505042', 'The Time Machine', 'https://images.isbndb.com/covers/50/47/9780812505047.jpg'), - ('0486270718', 'The Invisible Man (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/15/9780486270715.jpg'), - ('0140022651', 'Journey To The Centre Of The Earth', 'https://images.isbndb.com/covers/26/50/9780140022650.jpg'), - ('1558504184', 'Bradymania!: Everything You Always Wanted To Know--And (25th Anniversary Edition)', 'https://images.isbndb.com/covers/41/89/9781558504189.jpg'), - ('0590629808', 'The Message (Animorphs , No 4)', 'https://images.isbndb.com/covers/98/05/9780590629805.jpg'), - ('0590629778', 'The Invasion', 'https://images.isbndb.com/covers/97/75/9780590629775.jpg'), - ('059046678X', 'The Yearbook', 'https://images.isbndb.com/covers/67/83/9780590466783.jpg'), - ('0671740903', 'Scream Of The Cat (Phantom Valley, Bk 3)', 'https://images.isbndb.com/covers/09/00/9780671740900.jpg'), - ('0671740881', 'EVIL ONE (PHANTOM VALLEY 1)', 'https://images.isbndb.com/covers/08/87/9780671740887.jpg'), - ('0380570009', 'How To Talk So Kids Will Listen And Listen So Kids Will Talk', 'https://images.isbndb.com/covers/00/03/9780380570003.jpg'), - ('0451077237', 'Farrah', 'https://images.isbndb.com/covers/72/33/9780451077233.jpg'), - ('0807842613', 'Graveyard Of The Atlantic: Shipwrecks Of The North Carolina Coast', 'https://images.isbndb.com/covers/26/14/9780807842614.jpg'), - ('0345283554', 'Han Solo At Stars'' End', 'https://images.isbndb.com/covers/35/59/9780345283559.jpg'), - ('0345260627', 'Splinter Of The Mind''s Eye', 'https://images.isbndb.com/covers/06/28/9780345260628.jpg'), - ('0345283929', 'The Empire Strikes Back (Star Wars, Episode V)', 'https://images.isbndb.com/covers/39/24/9780345283924.jpg'), - ('068808527X', 'Close Friends', 'https://images.isbndb.com/covers/52/78/9780688085278.jpg'), - ('0929634063', '50 Simple Things You Can Do To Save The Earth', 'https://images.isbndb.com/covers/40/67/9780929634067.jpg'), - ('0898863538', 'A Hiker''s Companion: 12,000 Miles Of Trail-Tested Wisdom', 'https://images.isbndb.com/covers/35/36/9780898863536.jpg'), - ('0679023755', 'Hiking: A Celebration Of The Sport And The World''s Best Places To Enjoy It (Fodor''s Sports)', 'https://images.isbndb.com/covers/37/53/9780679023753.jpg'), - ('0394707745', 'Hungry Hiker''s Book Of Good Cooking', 'https://images.isbndb.com/covers/77/47/9780394707747.jpg'), - ('042516540X', 'The Cat Who... Companion', 'https://images.isbndb.com/covers/54/09/9780425165409.jpg'), - ('0671695304', 'Forever', 'https://images.isbndb.com/covers/53/09/9780671695309.jpg'), - ('0515134384', 'The Cat Who Went Up The Creek', 'https://images.isbndb.com/covers/43/84/9780515134384.jpg'), - ('051512463X', 'The Cat Who Sang For The Birds', 'https://images.isbndb.com/covers/46/37/9780515124637.jpg'), - ('0671529714', 'High Tide (Fear Street Super Chillers, No. 12)', 'https://images.isbndb.com/covers/97/10/9780671529710.jpg'), - ('0671751174', 'The First Evil (Fear Street Cheerleaders, No. 1)', 'https://images.isbndb.com/covers/11/73/9780671751173.jpg'), - ('0671001868', 'Body Switchers From Outer Space: R L Stine''s Ghosts Of Fear Street #14 (Ghosts Of Fear Street)', 'https://images.isbndb.com/covers/18/65/9780671001865.jpg'), - ('0345375580', 'The Elf Queen Of Shannara (Heritage Of Shannara, Book 3)', 'https://images.isbndb.com/covers/55/82/9780345375582.jpg'), - ('0671802283', 'Judy Garland', 'https://images.isbndb.com/covers/22/88/9780671802288.jpg'), - ('067166865X', 'STAR TREK YESTERDAY''S SON (Star Trek: The Original Series)', 'https://images.isbndb.com/covers/86/55/9780671668655.jpg'), - ('0553492411', 'Perfect Girls (Replica 4)', 'https://images.isbndb.com/covers/24/15/9780553492415.jpg'), - ('0590109715', 'The Andalite Chronicles (Elfangor''s Journey, Alloran''s Choice, An Alien Dies) - Animorphs', 'https://images.isbndb.com/covers/97/10/9780590109710.jpg'), - ('0590629786', 'Animorphs #02: The Visitor', 'https://images.isbndb.com/covers/97/82/9780590629782.jpg'), - ('0590629794', 'The Encounter (Animorphs#3)', 'https://images.isbndb.com/covers/97/99/9780590629799.jpg'), - ('0439164567', 'Shipwreck (Island, Book 1)', 'https://images.isbndb.com/covers/45/66/9780439164566.jpg'), - ('0590448595', 'Karen''s School Trip (Baby-Sitters Little Sister, No. 24)', 'https://images.isbndb.com/covers/85/98/9780590448598.jpg'), - ('0590448323', 'Karen''s Doll (Baby-Sitters Little Sister, No. 23)', 'https://images.isbndb.com/covers/83/21/9780590448321.jpg'), - ('0590448315', 'Karen''s Pen Pal (Baby-Sitters Little Sister)', 'https://images.isbndb.com/covers/83/14/9780590448314.jpg'), - ('0553295691', 'The Christie Caper (Death On Demand Mysteries, No. 7)', 'https://images.isbndb.com/covers/56/96/9780553295696.jpg'), - ('0553562754', 'Southern Ghost (Death On Demand Mysteries, No. 8)', 'https://images.isbndb.com/covers/27/50/9780553562750.jpg'), - ('0515120618', 'Montana Sky', 'https://images.isbndb.com/covers/06/15/9780515120615.jpg'), - ('0971766711', 'A Thousand Country Roads: An Epilogue To The Bridges Of Madison County', 'https://images.isbndb.com/covers/67/16/9780971766716.jpg'), - ('0201731355', 'Macromedia Dreamweaver 4: Training From The Source', 'https://images.isbndb.com/covers/13/54/9780201731354.jpg'), - ('0380812029', 'All About Passion', 'https://images.isbndb.com/covers/20/28/9780380812028.jpg'), - ('1551668424', 'Fifth Daughter', 'https://images.isbndb.com/covers/84/20/9781551668420.jpg'), - ('0553583077', 'To Kiss A Spy (Get Connected Romances)', 'https://images.isbndb.com/covers/30/76/9780553583076.jpg'), - ('0804119740', 'Lady Of Desire', 'https://images.isbndb.com/covers/97/40/9780804119740.jpg'), - ('0446611107', 'The Rogue', 'https://images.isbndb.com/covers/11/07/9780446611107.jpg'), - ('1551669463', 'The Italian', 'https://images.isbndb.com/covers/94/65/9781551669465.jpg'), - ('0821772252', 'Scrooge Wore Spurs', 'https://images.isbndb.com/covers/22/56/9780821772256.jpg'), - ('0060009241', 'See Jane Score', 'https://images.isbndb.com/covers/92/43/9780060009243.jpg'), - ('0380819619', 'The Ring On Her Finger', 'https://images.isbndb.com/covers/96/14/9780380819614.jpg'), - ('1551668521', 'A Reckless Encounter', 'https://images.isbndb.com/covers/85/29/9781551668529.jpg'), - ('0312989202', 'Finding You/Knowing You: Two Brand-New Novels For One Wonderful Price!', 'https://images.isbndb.com/covers/92/00/9780312989200.jpg'), - ('0451208293', 'Impostress (Signet Historical Romance)', 'https://images.isbndb.com/covers/82/93/9780451208293.jpg'), - ('084395051X', 'Savage Destiny (Savage (Leisure Paperback))', 'https://images.isbndb.com/covers/05/19/9780843950519.jpg'), - ('1551665964', 'Bride Of Black Douglas (Mira Historical Romance)', 'https://images.isbndb.com/covers/59/62/9781551665962.jpg'), - ('0843950676', 'Texas Bride (Leisure Historical Romance)', 'https://images.isbndb.com/covers/06/70/9780843950670.jpg'), - ('0451208153', 'The Iron Rose', 'https://images.isbndb.com/covers/81/56/9780451208156.jpg'), - ('0060001453', 'Love With The Proper Husband', 'https://images.isbndb.com/covers/14/52/9780060001452.jpg'), - ('0060002050', 'On A Wicked Dawn (Cynster Novels)', 'https://images.isbndb.com/covers/20/53/9780060002053.jpg'), - ('0373123213', 'The Italian''s Trophy Mistress (Mistress To A Millionaire)', 'https://images.isbndb.com/covers/32/16/9780373123216.jpg'), - ('0843951346', 'Seduced By A Rogue', 'https://images.isbndb.com/covers/13/49/9780843951349.jpg'), - ('1551666766', 'Naughty Marietta', 'https://images.isbndb.com/covers/67/61/9781551666761.jpg'), - ('1551666855', 'The Love Knot', 'https://images.isbndb.com/covers/68/53/9781551666853.jpg'), - ('0451208412', 'Racing Moon', 'https://images.isbndb.com/covers/84/15/9780451208415.jpg'), - ('0061032093', 'Breathing Room', 'https://images.isbndb.com/covers/20/97/9780061032097.jpg'), - ('0312989431', 'Deadly Caress', 'https://images.isbndb.com/covers/94/39/9780312989439.jpg'), - ('0446611298', 'Seduced', 'https://images.isbndb.com/covers/12/99/9780446611299.jpg'), - ('0843952059', 'The Very Virile Viking', 'https://images.isbndb.com/covers/20/56/9780843952056.jpg'), - ('0380812975', 'Untie My Heart', 'https://images.isbndb.com/covers/29/74/9780380812974.jpg'), - ('0345447174', 'Midnight Confessions', 'https://images.isbndb.com/covers/71/73/9780345447173.jpg'), - ('0553583565', 'Stealing Heaven', 'https://images.isbndb.com/covers/35/64/9780553583564.jpg'), - ('0804119953', 'The Ways Of Grace', 'https://images.isbndb.com/covers/99/55/9780804119955.jpg'), - ('0843950803', 'Reckless Embrace (Leisure Historical Romance)', 'https://images.isbndb.com/covers/08/09/9780843950809.jpg'), - ('0553583905', 'Kingdom Of Moonlight', 'https://images.isbndb.com/covers/39/08/9780553583908.jpg'), - ('0373292228', 'Married By Midnight (Harlequin Historical)', 'https://images.isbndb.com/covers/22/26/9780373292226.jpg'), - ('0060502312', 'Breaking All The Rules', 'https://images.isbndb.com/covers/23/17/9780060502317.jpg'), - ('0743436830', 'River Road (Callahan Brothers Trilogy)', 'https://images.isbndb.com/covers/68/30/9780743436830.jpg'), - ('1551668920', 'A Season Of Miracles', 'https://images.isbndb.com/covers/89/25/9781551668925.jpg'), - ('0060001445', 'Her Highness, My Wife', 'https://images.isbndb.com/covers/14/45/9780060001445.jpg'), - ('0451206754', 'Must Be Magic', 'https://images.isbndb.com/covers/67/56/9780451206756.jpg'), - ('0440236401', 'The Temptress (The Bride Quest)', 'https://images.isbndb.com/covers/64/05/9780440236405.jpg'), - ('038081479X', 'Heart Of A Warrior', 'https://images.isbndb.com/covers/47/94/9780380814794.jpg'), - ('0843949635', 'Savage Moon (Savage (Leisure Paperback))', 'https://images.isbndb.com/covers/96/36/9780843949636.jpg'), - ('0843949724', 'Texas Homecoming (Night Riders)', 'https://images.isbndb.com/covers/97/28/9780843949728.jpg'), - ('0821771205', 'The Mating Game (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/12/04/9780821771204.jpg'), - ('0312979495', 'Tempt Me Twice', 'https://images.isbndb.com/covers/94/92/9780312979492.jpg'), - ('0440235960', 'Romancing Riley', 'https://images.isbndb.com/covers/59/65/9780440235965.jpg'), - ('0380811065', 'Lady Sophia''s Lover (Bow Street, Book 2)', 'https://images.isbndb.com/covers/10/69/9780380811069.jpg'), - ('0440224055', 'Silent Honor', 'https://images.isbndb.com/covers/40/51/9780440224051.jpg'), - ('0140255087', 'The Snow Leopard (Penguin Nature Classics)', 'https://images.isbndb.com/covers/50/89/9780140255089.jpg'), - ('0684866048', 'Move Your Stuff, Change Your Life : How To Use Feng Shui To Get Love, Money, Respect And Happiness', 'https://images.isbndb.com/covers/60/48/9780684866048.jpg'), - ('0688164307', 'Every Day''s A Party: Louisiana Recipes For Celebrating With Family And Friends', 'https://images.isbndb.com/covers/43/00/9780688164300.jpg'), - ('0060392703', 'Do Less, Achieve More: Discover The Hidden Power Of Giving In', 'https://images.isbndb.com/covers/27/03/9780060392703.jpg'), - ('0671743228', 'Success Through A Positive Mental Attitude', 'https://images.isbndb.com/covers/32/22/9780671743222.jpg'), - ('0385483813', 'Intellectual Capital: The New Wealth Of Organizations', 'https://images.isbndb.com/covers/38/10/9780385483810.jpg'), - ('1556590415', 'The Book Of Questions (Bilingual Edition) (Spanish Edition)', 'https://images.isbndb.com/covers/04/12/9781556590412.jpg'), - ('0399517405', 'Italian Light Cooking', 'https://images.isbndb.com/covers/74/02/9780399517402.jpg'), - ('1885171013', 'Soulwork: Clearing The Mind, Opening The Heart, And Replenishing The Spirit', 'https://images.isbndb.com/covers/10/16/9781885171016.jpg'), - ('1583940677', 'Nothing In This Book Is True, But It''s Exactly How Things Are', 'https://images.isbndb.com/covers/06/79/9781583940679.jpg'), - ('0804110867', 'Other People''s Skeletons (Rebecca Schwartz Mysteries)', 'https://images.isbndb.com/covers/08/60/9780804110860.jpg'), - ('0446400688', 'Death And The Joyful Woman', 'https://images.isbndb.com/covers/06/88/9780446400688.jpg'), - ('0425102319', 'No Wind Of Blame', 'https://images.isbndb.com/covers/23/12/9780425102312.jpg'), - ('039304856X', 'Iris And Her Friends: A Memoir Of Memory And Desire', 'https://images.isbndb.com/covers/85/68/9780393048568.jpg'), - ('0399143335', 'The Cat Who Sang For The Birds', 'https://images.isbndb.com/covers/33/35/9780399143335.jpg'), - ('0962455741', 'Preserving Family Lands, Book I', 'https://images.isbndb.com/covers/57/42/9780962455742.jpg'), - ('0441001866', 'Martin The Warrior (Redwall, Book 6)', 'https://images.isbndb.com/covers/18/66/9780441001866.jpg'), - ('0441000312', 'Salamandastron: A Novel Of Redwall', 'https://images.isbndb.com/covers/03/19/9780441000319.jpg'), - ('0515118249', 'The Cat Who Blew The Whistle', 'https://images.isbndb.com/covers/82/47/9780515118247.jpg'), - ('0743456823', 'The Lives Of Dax (Star Trek: Deep Space Nine)', 'https://images.isbndb.com/covers/68/21/9780743456821.jpg'), - ('0312311354', 'The Pianist: The Extraordinary True Story Of One Man''s Survival In Warsaw, 1939-1945', 'https://images.isbndb.com/covers/13/53/9780312311353.jpg'), - ('0671743562', 'Dreams Of The Raven (Star Trek, No 34)', 'https://images.isbndb.com/covers/35/67/9780671743567.jpg'), - ('0385335830', 'Diary Of A Mad Bride', 'https://images.isbndb.com/covers/58/36/9780385335836.jpg'), - ('0743262174', 'Cry, The Beloved Country (Oprah''s Book Club)', 'https://images.isbndb.com/covers/21/70/9780743262170.jpg'), - ('0515130389', 'Carolina Moon', 'https://images.isbndb.com/covers/03/86/9780515130386.jpg'), - ('080411935X', 'Standing In The Rainbow', 'https://images.isbndb.com/covers/93/51/9780804119351.jpg'), - ('0142004235', 'East Of Eden', 'https://images.isbndb.com/covers/42/34/9780142004234.jpg'), - ('0515135062', 'Three Fates', 'https://images.isbndb.com/covers/50/60/9780515135060.jpg'), - ('0595197124', 'The Courtship Dance Of The Borderline', 'https://images.isbndb.com/covers/71/25/9780595197125.jpg'), - ('0689859376', 'The Seeing Stone (The Spiderwick Chronicles #2)', 'https://images.isbndb.com/covers/93/73/9780689859373.jpg'), - ('1563524317', 'Down On Ponce', 'https://images.isbndb.com/covers/43/18/9781563524318.jpg'), - ('0140065008', 'The Deptford Trilogy: Fifth Business / The Maticore / World Of Wonders (A King Penguin)', 'https://images.isbndb.com/covers/50/08/9780140065008.jpg'), - ('0156881802', 'Tartuffe, By Moliere', 'https://images.isbndb.com/covers/18/07/9780156881807.jpg'), - ('0006476333', 'Scorpio Illusion', 'https://images.isbndb.com/covers/63/37/9780006476337.jpg'), - ('3257233027', 'Richtig Leben Mit Geri Weibel', 'https://images.isbndb.com/covers/30/25/9783257233025.jpg'), - ('325723273X', 'Richtig Leben Mit Geri Weibel', 'https://images.isbndb.com/covers/27/38/9783257232738.jpg'), - ('0743412028', 'Pay It Forward', 'https://images.isbndb.com/covers/20/25/9780743412025.jpg'), - ('3442429439', 'Die Geheime Geschichte: Roman', 'https://images.isbndb.com/covers/94/31/9783442429431.jpg'), - ('0061056774', 'The X-Files: Ground Zero', 'https://images.isbndb.com/covers/67/72/9780061056772.jpg'), - ('0425169693', 'Here On Earth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/96/98/9780425169698.jpg'), - ('0452269571', 'Bastard Out Of Carolina', 'https://images.isbndb.com/covers/95/76/9780452269576.jpg'), - ('051513287X', 'Face The Fire (Three Sisters Island Trilogy)', 'https://images.isbndb.com/covers/28/78/9780515132878.jpg'), - ('0618002219', 'The Hobbit: Or There And Back Again', 'https://images.isbndb.com/covers/22/14/9780618002214.jpg'), - ('0553576399', 'Distraction', 'https://images.isbndb.com/covers/63/99/9780553576399.jpg'), - ('0451458370', 'Alien Taste (Ukiah Oregon, Book 1)', 'https://images.isbndb.com/covers/83/77/9780451458377.jpg'), - ('0441374239', 'Islands In The Net', 'https://images.isbndb.com/covers/42/36/9780441374236.jpg'), - ('0887307884', 'Dogbert''s Top Secret Management Handbook', 'https://images.isbndb.com/covers/78/81/9780887307881.jpg'), - ('0252068505', 'Hollywood Speaks: Deafness And The Film Entertainment Industry', 'https://images.isbndb.com/covers/85/08/9780252068508.jpg'), - ('0804108447', 'Druids', 'https://images.isbndb.com/covers/84/47/9780804108447.jpg'), - ('0671721046', 'The Deed Of Paksenarrion: A Novel', 'https://images.isbndb.com/covers/10/46/9780671721046.jpg'), - ('0441117732', 'Count Zero', 'https://images.isbndb.com/covers/77/34/9780441117734.jpg'), - ('0553576429', 'A Good Old-Fashioned Future', 'https://images.isbndb.com/covers/64/29/9780553576429.jpg'), - ('0915035170', 'Deaf Culture Our Way: Anecdotes From The Deaf Community', 'https://images.isbndb.com/covers/51/75/9780915035175.jpg'), - ('0060914254', 'A Loss For Words: The Story Of Deafness In A Family', 'https://images.isbndb.com/covers/42/57/9780060914257.jpg'), - ('0441003702', 'Schismatrix Plus (Complete Shapers-Mechanists Universe)', 'https://images.isbndb.com/covers/37/09/9780441003709.jpg'), - ('0886776155', 'When True Night Falls (Coldfire Trilogy, Book 2)', 'https://images.isbndb.com/covers/61/52/9780886776152.jpg'), - ('055329461X', 'The Difference Engine (Spectra Special Editions)', 'https://images.isbndb.com/covers/46/13/9780553294613.jpg'), - ('055357549X', 'Holy Fire (Bantam Spectra Book)', 'https://images.isbndb.com/covers/54/91/9780553575491.jpg'), - ('0553373803', 'The Fifth Sacred Thing', 'https://images.isbndb.com/covers/38/06/9780553373806.jpg'), - ('0060392452', 'Stupid White Men ...And Other Sorry Excuses For The State Of The Nation!', 'https://images.isbndb.com/covers/24/51/9780060392451.jpg'), - ('1568650418', 'The Elric Saga Part II The Vanishing Tower; The Bane Of The Black Sword; Stormbringer.', 'https://images.isbndb.com/covers/04/18/9781568650418.jpg'), - ('0451455789', 'No One Noticed The Cat', 'https://images.isbndb.com/covers/57/89/9780451455789.jpg'), - ('0963401661', 'Great Deaf Americans: The Second Edition', 'https://images.isbndb.com/covers/16/63/9780963401663.jpg'), - ('1566393523', 'The Feel Of Silence (Health Society And Policy)', 'https://images.isbndb.com/covers/35/22/9781566393522.jpg'), - ('0153895152', 'Our Latin Heritage', 'https://images.isbndb.com/covers/51/59/9780153895159.jpg'), - ('0345412451', 'The Termination Node', 'https://images.isbndb.com/covers/24/54/9780345412454.jpg'), - ('0590353403', 'Harry Potter And The Sorcerer''s Stone (Book 1)', 'https://images.isbndb.com/covers/34/03/9780590353403.jpg'), - ('0671877283', 'Silverlight: The Arcana, Book II', 'https://images.isbndb.com/covers/72/86/9780671877286.jpg'), - ('0941104184', 'War Against War', 'https://images.isbndb.com/covers/41/80/9780941104180.jpg'), - ('0380815931', 'In The Beginning...was The Command Line', 'https://images.isbndb.com/covers/59/37/9780380815937.jpg'), - ('0930878132', 'A Guide To Korean Characters: Reading And Writing Hangul And Hanja (A Mini Dictionary Of Characters For Modern Readers)', 'https://images.isbndb.com/covers/81/39/9780930878139.jpg'), - ('0932130097', 'American Deaf Culture: An Anthology', 'https://images.isbndb.com/covers/00/99/9780932130099.jpg'), - ('0312263120', 'Digital Fortress: A Thriller', 'https://images.isbndb.com/covers/31/26/9780312263126.jpg'), - ('0446532231', 'Dude, Where''s My Country?', 'https://images.isbndb.com/covers/22/35/9780446532235.jpg'), - ('0806511605', 'Fairy-Faith In Celtic Countries (Library Of The Mystic Arts)', 'https://images.isbndb.com/covers/16/03/9780806511603.jpg'), - ('0007103999', 'Witch: A Magikal Journey- A Hip Guide To Modern Witchcraft', 'https://images.isbndb.com/covers/39/97/9780007103997.jpg'), - ('0671877143', 'Silverhand (The Arcana, Book 1) (Vol 1)', 'https://images.isbndb.com/covers/71/49/9780671877149.jpg'), - ('0886777844', 'Summon The Keeper: The Keeper''s Chronicles #1', 'https://images.isbndb.com/covers/78/45/9780886777845.jpg'), - ('0875424961', 'The 21 Lessons Of Merlyn: A Study In Druid Magic And Lore', 'https://images.isbndb.com/covers/49/65/9780875424965.jpg'), - ('089281313X', 'Seekers Of The Healing Energy: Reich, Cayce, The Kahunas, And Other Masters Of The Vital Force', 'https://images.isbndb.com/covers/31/31/9780892813131.jpg'), - ('0877285314', 'Spiritual Cleansing: A Handbook Of Psychic Protection', 'https://images.isbndb.com/covers/53/11/9780877285311.jpg'), - ('0765341840', 'From The Two Rivers: The Eye Of The World, Book 1 (Eye Of The World, Part 1 : The Beginning Of The Wheel Of Time)', 'https://images.isbndb.com/covers/18/46/9780765341846.jpg'), - ('0380789116', 'The Queen''s Necklace', 'https://images.isbndb.com/covers/91/15/9780380789115.jpg'), - ('2877141667', 'L''éducation Sentimentale', 'https://images.isbndb.com/covers/16/66/9782877141666.jpg'), - ('0312243359', 'We Wish To Inform You That Tomorrow We Will Be Killed With Our Families: Stories From Rwanda', 'https://images.isbndb.com/covers/33/57/9780312243357.jpg'), - ('2742702458', 'La Virevolte', 'https://images.isbndb.com/covers/24/59/9782742702459.jpg'), - ('2253182389', 'Meurtres En Soutane', 'https://images.isbndb.com/covers/23/82/9782253182382.jpg'), - ('0385498802', 'Bee Season: A Novel', 'https://images.isbndb.com/covers/88/07/9780385498807.jpg'), - ('0141002077', 'Cherry', 'https://images.isbndb.com/covers/20/71/9780141002071.jpg'), - ('0394757653', 'The Simple Art Of Murder', 'https://images.isbndb.com/covers/76/50/9780394757650.jpg'), - ('0812579569', 'Domain (Domain Trilogy)', 'https://images.isbndb.com/covers/95/67/9780812579567.jpg'), - ('0898655293', 'Myth-Nomers And Im-Pervections', 'https://images.isbndb.com/covers/52/92/9780898655292.jpg'), - ('0449904628', 'Dave Barry Slept Here: A Sort Of History Of The United States', 'https://images.isbndb.com/covers/46/26/9780449904626.jpg'), - ('0831750065', 'In Praise Of Cats', 'https://images.isbndb.com/covers/00/60/9780831750060.jpg'), - ('0446674338', 'Brown Girl In The Ring', 'https://images.isbndb.com/covers/43/31/9780446674331.jpg'), - ('0449702936', 'Sons From Afar (The Tillerman Series #6)', 'https://images.isbndb.com/covers/29/32/9780449702932.jpg'), - ('0449702146', 'Izzy, Willy-Nilly', 'https://images.isbndb.com/covers/21/47/9780449702147.jpg'), - ('0449701301', 'Building Blocks', 'https://images.isbndb.com/covers/13/00/9780449701300.jpg'), - ('0449703347', 'Tree By Leaf', 'https://images.isbndb.com/covers/33/42/9780449703342.jpg'), - ('0590477323', 'Building Blocks (Point)', 'https://images.isbndb.com/covers/73/21/9780590477321.jpg'), - ('0449701875', 'Jackaroo', 'https://images.isbndb.com/covers/18/74/9780449701874.jpg'), - ('0590471570', 'A Solitary Blue (The Tillerman Series #3)', 'https://images.isbndb.com/covers/15/72/9780590471572.jpg'), - ('0449702545', 'Homecoming', 'https://images.isbndb.com/covers/25/43/9780449702543.jpg'), - ('0156005778', 'Mister Sandman (Harvest Book)', 'https://images.isbndb.com/covers/57/77/9780156005777.jpg'), - ('0375727434', 'Hateship, Friendship, Courtship, Loveship, Marriage: Stories', 'https://images.isbndb.com/covers/74/36/9780375727436.jpg'), - ('1550223968', 'Too Close To The Falls: A Memoir', 'https://images.isbndb.com/covers/39/65/9781550223965.jpg'), - ('0312291639', 'The Nanny Diaries: A Novel', 'https://images.isbndb.com/covers/16/31/9780312291631.jpg'), - ('014043187X', 'The Picture Of Dorian Gray (Penguin Classic)', 'https://images.isbndb.com/covers/18/72/9780140431872.jpg'), - ('0425101452', 'Phantoms', 'https://images.isbndb.com/covers/14/52/9780425101452.jpg'), - ('0192816489', 'No Name (World''s Classics)', 'https://images.isbndb.com/covers/64/81/9780192816481.jpg'), - ('189251415X', 'The Bearded Lady', 'https://images.isbndb.com/covers/41/58/9781892514158.jpg'), - ('014018869X', 'Cold Comfort Farm (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/86/91/9780140188691.jpg'), - ('1401068049', 'Revelation And The Fall Of Judea', 'https://images.isbndb.com/covers/80/42/9781401068042.jpg'), - ('2070374637', 'L''Ami Retrouvé', 'https://images.isbndb.com/covers/46/32/9782070374632.jpg'), - ('2890377741', 'Lame', 'https://images.isbndb.com/covers/77/45/9782890377745.jpg'), - ('0375505296', 'The Dante Club: A Novel', 'https://images.isbndb.com/covers/52/94/9780375505294.jpg'), - ('3423350024', 'Der Wahnsinn Der Normalität: Realismus Als Krankheit. Eine Theorie Der Menschlichen Destruktivität: Realismus Als Krankheit: Eine Grundlegende Theorie Zur Menschlichen Destruktivität', 'https://images.isbndb.com/covers/00/20/9783423350020.jpg'), - ('034536662X', 'Jacob The Baker: Gentle Wisdom For A Complicated World', 'https://images.isbndb.com/covers/66/27/9780345366627.jpg'), - ('0553348981', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/89/89/9780553348989.jpg'), - ('0486251772', 'Adventures At Sea In The Great Age Of Sail: Five Firsthand Narratives', 'https://images.isbndb.com/covers/17/76/9780486251776.jpg'), - ('0671541013', 'Possessions', 'https://images.isbndb.com/covers/10/19/9780671541019.jpg'), - ('0684874350', 'Angela''s Ashes', 'https://images.isbndb.com/covers/43/57/9780684874357.jpg'), - ('0451207580', 'Who Left That Body In The Rain? (Thoroughly Southern Mysteries, No. 4)', 'https://images.isbndb.com/covers/75/86/9780451207586.jpg'), - ('0446611212', 'Violets Are Blue (Alex Cross)', 'https://images.isbndb.com/covers/12/13/9780446611213.jpg'), - ('0316168688', 'The Dogs Of Babel', 'https://images.isbndb.com/covers/86/87/9780316168687.jpg'), - ('0452264790', 'Tar Baby', 'https://images.isbndb.com/covers/47/93/9780452264793.jpg'), - ('0679448802', 'Gone Bamboo', 'https://images.isbndb.com/covers/88/08/9780679448808.jpg'), - ('0425189082', 'The Etruscan Chimera (Archaeological Mysteries, No. 6)', 'https://images.isbndb.com/covers/90/85/9780425189085.jpg'), - ('1566492785', 'The Tao Of Bada Bing: Words Of Wisdom From The Sopranos', 'https://images.isbndb.com/covers/27/82/9781566492782.jpg'), - ('0553254456', 'Gestalt Therapy', 'https://images.isbndb.com/covers/44/57/9780553254457.jpg'), - ('0553130250', 'Women Prefer Women', 'https://images.isbndb.com/covers/02/56/9780553130256.jpg'), - ('0451451279', 'The Witch''s Daughter', 'https://images.isbndb.com/covers/12/79/9780451451279.jpg'), - ('0441816533', 'Tomoe Gozen', 'https://images.isbndb.com/covers/65/38/9780441816538.jpg'), - ('0879977361', 'Amazons II', 'https://images.isbndb.com/covers/73/68/9780879977368.jpg'), - ('0671002384', 'Ancient Blood: Day Of Honor #1 (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/23/81/9780671002381.jpg'), - ('0380561433', 'God Herself: Feminine Roots Of Astrology', 'https://images.isbndb.com/covers/14/38/9780380561438.jpg'), - ('0879831227', 'Preventive Organic Medicine (Pivot Health Book)', 'https://images.isbndb.com/covers/12/26/9780879831226.jpg'), - ('0425155943', 'Contagion', 'https://images.isbndb.com/covers/59/43/9780425155943.jpg'), - ('0553240307', 'Sudden Death', 'https://images.isbndb.com/covers/03/06/9780553240306.jpg'), - ('3257229534', 'Der Vorleser', 'https://images.isbndb.com/covers/95/30/9783257229530.jpg'), - ('0553144286', 'Lord Valentine''s Castle', 'https://images.isbndb.com/covers/42/84/9780553144284.jpg'), - ('0440241537', 'The King Of Torts', 'https://images.isbndb.com/covers/15/39/9780440241539.jpg'), - ('034538475X', 'The Tale Of The Body Thief (Vampire Chronicles)', 'https://images.isbndb.com/covers/47/51/9780345384751.jpg'), - ('0671004247', 'Treaty''s Law (Star Trek: Day Of Honor, Book 4)', 'https://images.isbndb.com/covers/42/48/9780671004248.jpg'), - ('0671002406', 'Her Klingon Soul (Star Trek Voyager: Day Of Honor, Book 3)', 'https://images.isbndb.com/covers/24/04/9780671002404.jpg'), - ('0671006754', 'Armageddon Sky (Star Trek Deep Space Nine: Day Of Honor, Book 2)', 'https://images.isbndb.com/covers/67/54/9780671006754.jpg'), - ('055327418X', 'Startide Rising (The Uplift Saga, Book 2)', 'https://images.isbndb.com/covers/41/89/9780553274189.jpg'), - ('0345419995', 'Dave Barry''s Greatest Hits', 'https://images.isbndb.com/covers/99/96/9780345419996.jpg'), - ('0345388674', 'Total Zone', 'https://images.isbndb.com/covers/86/74/9780345388674.jpg'), - ('0345277937', 'Goldengirl', 'https://images.isbndb.com/covers/79/30/9780345277930.jpg'), - ('0671824171', 'Dangerous Games', 'https://images.isbndb.com/covers/41/74/9780671824174.jpg'), - ('0441354955', 'I, Alien : A Novel', 'https://images.isbndb.com/covers/49/55/9780441354955.jpg'), - ('0879977981', 'Moonscatter (Duel Of Sorcery, Bk. 2)', 'https://images.isbndb.com/covers/79/86/9780879977986.jpg'), - ('0441239196', 'First Cycle', 'https://images.isbndb.com/covers/91/91/9780441239191.jpg'), - ('0671822845', 'The Starchild Trilogy', 'https://images.isbndb.com/covers/28/42/9780671822842.jpg'), - ('0880387157', 'Illegal Aliens', 'https://images.isbndb.com/covers/71/56/9780880387156.jpg'), - ('0451163036', 'Cat House (Signet)', 'https://images.isbndb.com/covers/30/35/9780451163035.jpg'), - ('0394718224', 'Unicorn And Other Poems', 'https://images.isbndb.com/covers/82/24/9780394718224.jpg'), - ('0345280229', 'Warm Worlds And Otherwise', 'https://images.isbndb.com/covers/02/20/9780345280220.jpg'), - ('0875421989', 'The Magick Of The Tarot (The Llewellyn Practical Guides)', 'https://images.isbndb.com/covers/19/88/9780875421988.jpg'), - ('087100240X', 'Psychic Tarot', 'https://images.isbndb.com/covers/24/02/9780871002402.jpg'), - ('0874771412', 'Tarot Therapy: A Guide To The Subconscious', 'https://images.isbndb.com/covers/14/11/9780874771411.jpg'), - ('0886777631', 'City Of Golden Shadow (Otherland, Volume 1)', 'https://images.isbndb.com/covers/76/30/9780886777630.jpg'), - ('0425098648', 'Night Chills', 'https://images.isbndb.com/covers/86/46/9780425098646.jpg'), - ('0061008427', 'Pacific Blues', 'https://images.isbndb.com/covers/84/29/9780061008429.jpg'), - ('0425181103', 'Phantoms', 'https://images.isbndb.com/covers/11/02/9780425181102.jpg'), - ('0786001690', 'Tattoo', 'https://images.isbndb.com/covers/16/99/9780786001699.jpg'), - ('0380718340', 'Cruel & Unusual (Kay Scarpetta Mysteries)', 'https://images.isbndb.com/covers/83/44/9780380718344.jpg'), - ('0451153553', 'Misery', 'https://images.isbndb.com/covers/35/55/9780451153555.jpg'), - ('0142001805', 'The Eyre Affair: A Thursday Next Novel (Thursday Next Novels (Penguin Books))', 'https://images.isbndb.com/covers/18/06/9780142001806.jpg'), - ('0380014033', 'Lord Of Light', 'https://images.isbndb.com/covers/40/33/9780380014033.jpg'), - ('0553277839', 'Faerie Tale', 'https://images.isbndb.com/covers/78/38/9780553277838.jpg'), - ('0375706062', 'Lying Awake', 'https://images.isbndb.com/covers/60/66/9780375706066.jpg'), - ('0060981180', 'Mariette In Ecstasy', 'https://images.isbndb.com/covers/11/81/9780060981181.jpg'), - ('0061051098', 'The Iron Lance (The Celtic Crusades #1)', 'https://images.isbndb.com/covers/10/98/9780061051098.jpg'), - ('0425147622', 'The Body Farm', 'https://images.isbndb.com/covers/76/27/9780425147627.jpg'), - ('0451180410', 'Mortal Fear', 'https://images.isbndb.com/covers/04/14/9780451180414.jpg'), - ('0425143341', 'Curfew', 'https://images.isbndb.com/covers/33/46/9780425143346.jpg'), - ('0446360856', 'The Gold Coast', 'https://images.isbndb.com/covers/08/52/9780446360852.jpg'), - ('1593100825', 'Highland Legacy: Fresh Highland Heir/Finding Audrey/Tea And Bagpipes/Fayre Rose (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/08/27/9781593100827.jpg'), - ('1591451124', 'Deep In The Heart (Lone Star Legacy #1)', 'https://images.isbndb.com/covers/11/29/9781591451129.jpg'), - ('0800758579', 'Emma''s Gift (The Wortham Family Series #2)', 'https://images.isbndb.com/covers/85/78/9780800758578.jpg'), - ('0812589831', 'People Of The Owl (The First North Americans Series)', 'https://images.isbndb.com/covers/98/32/9780812589832.jpg'), - ('0451212193', 'Wind Walker', 'https://images.isbndb.com/covers/21/91/9780451212191.jpg'), - ('1593101678', 'Kansas Brides: Stranger''s Bride/Never A Bride/Bittersweet Bride/His Brother''s Bride (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/16/71/9781593101671.jpg'), - ('0312993560', 'The Tea Rose: A Novel', 'https://images.isbndb.com/covers/35/66/9780312993566.jpg'), - ('0373791429', 'A Burning Obsession (Heroes Inc, Book 4) (Harlequin Blaze Series #138)', 'https://images.isbndb.com/covers/14/22/9780373791422.jpg'), - ('0373227787', 'Wanted Woman (Cascades Concealed, Book 3) (Harlequin Intrigue Series #778)', 'https://images.isbndb.com/covers/77/85/9780373227785.jpg'), - ('037327372X', 'To The Limit (Silhouette Intimate Moments No. 1302)', 'https://images.isbndb.com/covers/37/20/9780373273720.jpg'), - ('0373273711', 'One Eye Open (The Pack, No.1) (Sihouette Intimate Moments, No. 1301)', 'https://images.isbndb.com/covers/37/13/9780373273713.jpg'), - ('0380400480', 'A Pirate''s Love', 'https://images.isbndb.com/covers/04/85/9780380400485.jpg'), - ('0964894203', 'Secrets Volume 1 (Red Sage - Secrets Volumes)', 'https://images.isbndb.com/covers/42/04/9780964894204.jpg'), - ('037327369X', 'A Cry In The Dark (Family Secrets) (Silhouette Intimate Moments No. 1299)', 'https://images.isbndb.com/covers/36/90/9780373273690.jpg'), - ('1551666685', 'Embrace The Twilight (MIRA)', 'https://images.isbndb.com/covers/66/86/9781551666686.jpg'), - ('0778320227', 'Edge Of Twilight', 'https://images.isbndb.com/covers/02/27/9780778320227.jpg'), - ('0553582763', 'By The Light Of The Moon', 'https://images.isbndb.com/covers/27/65/9780553582765.jpg'), - ('0425188809', 'Watchers', 'https://images.isbndb.com/covers/88/04/9780425188804.jpg'), - ('0425092178', 'Strangers', 'https://images.isbndb.com/covers/21/70/9780425092170.jpg'), - ('0345384369', 'Intensity', 'https://images.isbndb.com/covers/43/62/9780345384362.jpg'), - ('034539657X', 'Dark Rivers Of The Heart', 'https://images.isbndb.com/covers/65/70/9780345396570.jpg'), - ('0020532105', 'Cry, The Beloved Country (A Scribner Classic)', 'https://images.isbndb.com/covers/21/01/9780020532101.jpg'), - ('0671623931', 'The Good Earth', 'https://images.isbndb.com/covers/39/37/9780671623937.jpg'), - ('0020519109', 'The Old Man And The Sea (A Scribner Classic)', 'https://images.isbndb.com/covers/91/02/9780020519102.jpg'), - ('0425144429', 'Mr. Murder', 'https://images.isbndb.com/covers/44/28/9780425144428.jpg'), - ('0345468392', 'The Chronicles Of Riddick', 'https://images.isbndb.com/covers/83/90/9780345468390.jpg'), - ('0312305060', 'The Hours', 'https://images.isbndb.com/covers/50/62/9780312305062.jpg'), - ('0743493540', 'Van Helsing', 'https://images.isbndb.com/covers/35/43/9780743493543.jpg'), - ('0821770594', 'My Lady Pirate', 'https://images.isbndb.com/covers/05/97/9780821770597.jpg'), - ('0310466628', 'Windsong', 'https://images.isbndb.com/covers/66/28/9780310466628.jpg'), - ('0446363510', 'The Jacaranda Tree', 'https://images.isbndb.com/covers/35/18/9780446363518.jpg'), - ('037329168X', 'Magic And Mist (Historical)', 'https://images.isbndb.com/covers/16/87/9780373291687.jpg'), - ('0440206707', 'The Viking''s Woman', 'https://images.isbndb.com/covers/67/05/9780440206705.jpg'), - ('0425144569', 'For All Eternity', 'https://images.isbndb.com/covers/45/65/9780425144565.jpg'), - ('0821764462', 'Precious Passion (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/44/66/9780821764466.jpg'), - ('0451204948', 'A Day Late And A Dollar Short', 'https://images.isbndb.com/covers/49/43/9780451204943.jpg'), - ('0486290492', 'Sense And Sensibility (Dover Thrift Editions)', 'https://images.isbndb.com/covers/04/92/9780486290492.jpg'), - ('156619301X', 'Dracula', 'https://images.isbndb.com/covers/30/16/9781566193016.jpg'), - ('0060175966', 'The Professor And The Madman', 'https://images.isbndb.com/covers/59/62/9780060175962.jpg'), - ('0399144137', 'Rainbow Six', 'https://images.isbndb.com/covers/41/34/9780399144134.jpg'), - ('0743436741', 'The Lions Of Lucerne (Scot Harvath 1)', 'https://images.isbndb.com/covers/67/48/9780743436748.jpg'), - ('0330352253', 'To The Hilt', 'https://images.isbndb.com/covers/22/53/9780330352253.jpg'), - ('0609600567', 'Road Rage', 'https://images.isbndb.com/covers/05/66/9780609600566.jpg'), - ('0786404019', 'Day Of The Long Night : A Palestinian Refugee Remembers The Nakba', 'https://images.isbndb.com/covers/40/18/9780786404018.jpg'), - ('034545104X', 'Flesh Tones', 'https://images.isbndb.com/covers/10/40/9780345451040.jpg'), - ('0394756827', 'Gödel, Escher, Bach: An Eternal Golden Braid', 'https://images.isbndb.com/covers/68/20/9780394756820.jpg'), - ('0300069049', 'Cosima Wagner''s Diaries: An Abridgement', 'https://images.isbndb.com/covers/90/44/9780300069044.jpg'), - ('0399146431', 'The Bonesetter''s Daughter', 'https://images.isbndb.com/covers/64/35/9780399146435.jpg'), - ('0312186754', 'An Arrow''s Flight', 'https://images.isbndb.com/covers/67/53/9780312186753.jpg'), - ('0312876513', 'Shadow Of The Hegemon (Ender Wiggin Saga)', 'https://images.isbndb.com/covers/65/17/9780312876517.jpg'), - ('080901548X', 'The Dark Child: The Autobiography Of An African Boy', 'https://images.isbndb.com/covers/54/81/9780809015481.jpg'), - ('0803287100', 'Yuwipi: Vision And Experience In Oglala Ritual', 'https://images.isbndb.com/covers/71/05/9780803287105.jpg'), - ('0879520388', 'Science And Health With Key To The Scriptures (Authorized, Trade Ed.)', 'https://images.isbndb.com/covers/03/80/9780879520380.jpg'), - ('0520077806', 'Mama Lola: A Vodou Priestess In Brooklyn (Comparative Studies In Religion And Society)', 'https://images.isbndb.com/covers/78/05/9780520077805.jpg'), - ('0295955252', 'No-No Boy', 'https://images.isbndb.com/covers/52/54/9780295955254.jpg'), - ('0824811720', 'All I Asking For Is My Body (Kolowalu Book)', 'https://images.isbndb.com/covers/17/23/9780824811723.jpg'), - ('0385482388', 'The Mistress Of Spices: A Novel', 'https://images.isbndb.com/covers/23/87/9780385482387.jpg'), - ('0312275560', 'The Path Of Minor Planets: A Novel', 'https://images.isbndb.com/covers/55/63/9780312275563.jpg'), - ('0820319627', 'Curanderismo: Mexican American Folk Healing', 'https://images.isbndb.com/covers/96/29/9780820319629.jpg'), - ('0767901266', 'A Hope In The Unseen: An American Odyssey From The Inner City To The Ivy League', 'https://images.isbndb.com/covers/12/60/9780767901260.jpg'), - ('0385470142', 'Fires In The Mirror', 'https://images.isbndb.com/covers/01/48/9780385470148.jpg'), - ('0870238566', 'Unbroken Thread: An Anthology Of Plays By Asian American Women', 'https://images.isbndb.com/covers/85/67/9780870238567.jpg'), - ('1558850481', 'Zoot Suit And Other Plays', 'https://images.isbndb.com/covers/04/84/9781558850484.jpg'), - ('0679733760', 'A Midwife''s Tale: The Life Of Martha Ballard, Based On Her Diary, 1785-1812', 'https://images.isbndb.com/covers/37/68/9780679733768.jpg'), - ('0395874653', 'Kaleidoscope Readings In Education', 'https://images.isbndb.com/covers/46/53/9780395874653.jpg'), - ('0399141146', 'The Hundred Secret Senses', 'https://images.isbndb.com/covers/11/40/9780399141140.jpg'), - ('0375706771', 'Midwives (Oprah''s Book Club)', 'https://images.isbndb.com/covers/67/76/9780375706776.jpg'), - ('0451525078', 'Don Quixote: Unabridged Edition (Signet Classics)', 'https://images.isbndb.com/covers/50/79/9780451525079.jpg'), - ('0679722319', 'Where I''m Calling From: Selected Stories', 'https://images.isbndb.com/covers/23/11/9780679722311.jpg'), - ('0553213601', 'Cyrano De Bergerac (Bantam Classics Reissue)', 'https://images.isbndb.com/covers/36/07/9780553213607.jpg'), - ('0679745580', 'In Cold Blood', 'https://images.isbndb.com/covers/55/87/9780679745587.jpg'), - ('0679741410', 'Writers Dreaming: 26 Writers Talk About Their Dreams And The Creative Process', 'https://images.isbndb.com/covers/14/11/9780679741411.jpg'), - ('0679729259', 'The Brothers Karamazov (Vintage Classics)', 'https://images.isbndb.com/covers/92/59/9780679729259.jpg'), - ('0452260116', 'Song Of Solomon', 'https://images.isbndb.com/covers/01/15/9780452260115.jpg'), - ('0812533550', 'Ender''s Game', 'https://images.isbndb.com/covers/35/52/9780812533552.jpg'), - ('0020442602', 'The Voyage Of The Dawn Treader', 'https://images.isbndb.com/covers/26/08/9780020442608.jpg'), - ('0312978367', 'The Prometheus Deception', 'https://images.isbndb.com/covers/83/65/9780312978365.jpg'), - ('038079893X', 'Coronado Conspiracy', 'https://images.isbndb.com/covers/89/33/9780380798933.jpg'), - ('0061098019', 'H.M.S. Unseen', 'https://images.isbndb.com/covers/80/17/9780061098017.jpg'), - ('0425177696', 'The Passenger', 'https://images.isbndb.com/covers/76/93/9780425177693.jpg'), - ('0812517725', 'The Great Hunt (The Wheel Of Time, Book 2)', 'https://images.isbndb.com/covers/77/29/9780812517729.jpg'), - ('0380818191', 'The Truth', 'https://images.isbndb.com/covers/81/98/9780380818198.jpg'), - ('9721013412', 'Os Maias', 'https://images.isbndb.com/covers/34/14/9789721013414.jpg'), - ('074346771X', 'S.W.A.T.', 'https://images.isbndb.com/covers/77/11/9780743467711.jpg'), - ('0399134883', 'A Life On The Road', 'https://images.isbndb.com/covers/48/83/9780399134883.jpg'), - ('0316037443', 'The Best Cat Ever', 'https://images.isbndb.com/covers/74/40/9780316037440.jpg'), - ('1878067745', 'Solo: On Her Own Adventure', 'https://images.isbndb.com/covers/77/46/9781878067746.jpg'), - ('0399138749', 'Mr. Murder', 'https://images.isbndb.com/covers/87/44/9780399138744.jpg'), - ('0571069134', 'Dark Labyrinth', 'https://images.isbndb.com/covers/91/32/9780571069132.jpg'), - ('0811816583', 'New York Dogs', 'https://images.isbndb.com/covers/65/88/9780811816588.jpg'), - ('1588512681', 'Demonlands', 'https://images.isbndb.com/covers/26/80/9781588512680.jpg'), - ('1573228745', 'Innocence', 'https://images.isbndb.com/covers/87/49/9781573228749.jpg'), - ('0446528757', 'Joy', 'https://images.isbndb.com/covers/87/57/9780446528757.jpg'), - ('0451191145', 'Atlas Shrugged', 'https://images.isbndb.com/covers/11/44/9780451191144.jpg'), - ('0136714897', 'Quotations From Women On Life', 'https://images.isbndb.com/covers/48/97/9780136714897.jpg'), - ('0689823517', 'The Dance', 'https://images.isbndb.com/covers/35/10/9780689823510.jpg'), - ('0875093663', 'The Pursuit Of God', 'https://images.isbndb.com/covers/36/66/9780875093666.jpg'), - ('0671510126', 'The Good Earth (Enriched Classics)', 'https://images.isbndb.com/covers/01/21/9780671510121.jpg'), - ('0440403278', 'Number The Stars (Yearling Newbery)', 'https://images.isbndb.com/covers/32/72/9780440403272.jpg'), - ('0803722907', 'A Long Way From Chicago: A Novel In Stories (Newbery Honor Book)', 'https://images.isbndb.com/covers/29/03/9780803722903.jpg'), - ('0060987561', 'I Know This Much Is True (Oprah''s Book Club)', 'https://images.isbndb.com/covers/75/65/9780060987565.jpg'), - ('0842314296', 'Hinds'' Feet On High Places', 'https://images.isbndb.com/covers/42/99/9780842314299.jpg'), - ('1880089858', 'Woman Thou Are Loosed Healing The Wounds Of The Past 3rd Printing Hardback', 'https://images.isbndb.com/covers/98/59/9781880089859.jpg'), - ('0312265867', 'To The Nines (A Stephanie Plum Novel)', 'https://images.isbndb.com/covers/58/61/9780312265861.jpg'), - ('055328424X', 'TALENT', 'https://images.isbndb.com/covers/42/49/9780553284249.jpg'), - ('0373250290', 'Carrie Pilby (Red Dress Ink Novels)', 'https://images.isbndb.com/covers/02/95/9780373250295.jpg'), - ('1844262553', 'Free', 'https://images.isbndb.com/covers/25/57/9781844262557.jpg'), - ('3442411580', 'Die Löwin Von Aquitanien: Roman', 'https://images.isbndb.com/covers/15/80/9783442411580.jpg'), - ('3548600867', 'Die Totenwäscherin: Roman', 'https://images.isbndb.com/covers/08/64/9783548600864.jpg'), - ('3596124166', 'Virginia Woolf. Gesammelte Werke: Flush', 'https://images.isbndb.com/covers/41/69/9783596124169.jpg'), - ('3257227809', 'Venezianisches Finale: Commissario Brunettis Erster Fall', 'https://images.isbndb.com/covers/78/02/9783257227802.jpg'), - ('344244392X', 'Schokolade Zum Frühstück. Das Tagebuch Der Bridget Jones', 'https://images.isbndb.com/covers/39/25/9783442443925.jpg'), - ('3546001575', 'Der Geschichtenmacher', 'https://images.isbndb.com/covers/15/71/9783546001571.jpg'), - ('0525945172', 'The Experiment', 'https://images.isbndb.com/covers/51/78/9780525945178.jpg'), - ('3462029916', 'Wie Ich Einmal Die Welt Rettete.', 'https://images.isbndb.com/covers/99/18/9783462029918.jpg'), - ('3423203668', 'Die Fünfte Frau: Roman', 'https://images.isbndb.com/covers/36/61/9783423203661.jpg'), - ('3423204206', 'Die Falsche Fährte: Roman', 'https://images.isbndb.com/covers/42/00/9783423204200.jpg'), - ('0152008772', 'Hang A Thousand Trees With Ribbons: The Story Of Phillis Wheatley', 'https://images.isbndb.com/covers/87/72/9780152008772.jpg'), - ('0312150601', 'Behind The Scenes At The Museum: A Novel', 'https://images.isbndb.com/covers/06/00/9780312150600.jpg'), - ('0671899619', 'Fast Forward', 'https://images.isbndb.com/covers/96/15/9780671899615.jpg'), - ('0061099694', 'Hill Towns', 'https://images.isbndb.com/covers/96/94/9780061099694.jpg'), - ('0446603309', 'The Witness', 'https://images.isbndb.com/covers/33/00/9780446603300.jpg'), - ('0345302745', 'Speaker Of Mandarin: An Inspector Wexford Mystery', 'https://images.isbndb.com/covers/27/48/9780345302748.jpg'), - ('0671881957', 'Kiss And Tell (Nancy Drew Files #104)', 'https://images.isbndb.com/covers/19/55/9780671881955.jpg'), - ('0786881852', 'Don''t Sweat The Small Stuff--and It''s All Small Stuff (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/18/57/9780786881857.jpg'), - ('0310240972', 'Ten Secrets For The Man In The Mirror: Startling Ideas About True Happiness', 'https://images.isbndb.com/covers/09/76/9780310240976.jpg'), - ('0440170370', 'Player Piano', 'https://images.isbndb.com/covers/03/72/9780440170372.jpg'), - ('034524575X', 'Something Happened', 'https://images.isbndb.com/covers/57/55/9780345245755.jpg'), - ('0345413873', 'Monster (An Alex Delaware Novel)', 'https://images.isbndb.com/covers/38/71/9780345413871.jpg'), - ('0380726262', 'Moon Music (Paperback)', 'https://images.isbndb.com/covers/62/64/9780380726264.jpg'), - ('0671881965', 'Stolen Affections (Nancy Drew Files #105)', 'https://images.isbndb.com/covers/19/62/9780671881962.jpg'), - ('0671881981', 'ANYTHING FOR LOVE (NANCY DREW FILES 107)', 'https://images.isbndb.com/covers/19/86/9780671881986.jpg'), - ('0671881930', 'Counterfeit Christmas (Nancy Drew Files #102)', 'https://images.isbndb.com/covers/19/31/9780671881931.jpg'), - ('0671881949', 'Heart Of Ice (Nancy Drew Files #103)', 'https://images.isbndb.com/covers/19/48/9780671881948.jpg'), - ('0590419293', 'Prom Dress', 'https://images.isbndb.com/covers/92/91/9780590419291.jpg'), - ('0671896768', 'Crossover (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/67/68/9780671896768.jpg'), - ('0064410129', 'The Carnivorous Carnival (A Series Of Unfortunate Events # 9)', 'https://images.isbndb.com/covers/01/20/9780064410120.jpg'), - ('0553267736', 'American Revolution (Time Machine, No. 10)', 'https://images.isbndb.com/covers/77/30/9780553267730.jpg'), - ('055325636X', 'TERROR ON KABRAN #3 (Escape From Tenopia)', 'https://images.isbndb.com/covers/63/69/9780553256369.jpg'), - ('0553254723', 'Tenopia Island (Escape From Tenopia, Book 1)', 'https://images.isbndb.com/covers/47/23/9780553254723.jpg'), - ('0553801309', 'A Place Of Hiding', 'https://images.isbndb.com/covers/13/09/9780553801309.jpg'), - ('0445210214', 'Mythology 101 (Questar Fantasy)', 'https://images.isbndb.com/covers/02/19/9780445210219.jpg'), - ('0375719350', 'The Man Who Japed', 'https://images.isbndb.com/covers/93/56/9780375719356.jpg'), - ('0345334302', 'The Ringworld Engineers', 'https://images.isbndb.com/covers/43/05/9780345334305.jpg'), - ('0380773945', 'Magicnet', 'https://images.isbndb.com/covers/39/47/9780380773947.jpg'), - ('0345373413', 'The Quicksilver Screen', 'https://images.isbndb.com/covers/34/10/9780345373410.jpg'), - ('0345348176', 'From Doon With Death', 'https://images.isbndb.com/covers/81/73/9780345348173.jpg'), - ('0679802614', 'Magic Elizabeth', 'https://images.isbndb.com/covers/26/17/9780679802617.jpg'), - ('0590428098', 'Yours Turly, Shirley (Apple Paperbacks) (An Apple Paperback)', 'https://images.isbndb.com/covers/80/95/9780590428095.jpg'), - ('0671702920', 'Rosy''s Romance', 'https://images.isbndb.com/covers/29/22/9780671702922.jpg'), - ('0380757893', 'Witch House', 'https://images.isbndb.com/covers/78/93/9780380757893.jpg'), - ('0440400759', 'Just As Long As We''re Together', 'https://images.isbndb.com/covers/07/52/9780440400752.jpg'), - ('0590414976', 'Junior High Jitters', 'https://images.isbndb.com/covers/49/75/9780590414975.jpg'), - ('0684874318', 'Flesh And Blood', 'https://images.isbndb.com/covers/43/19/9780684874319.jpg'), - ('037570387X', 'The Autograph Man', 'https://images.isbndb.com/covers/38/74/9780375703874.jpg'), - ('0451452925', 'Sisters In Fantasy', 'https://images.isbndb.com/covers/29/24/9780451452924.jpg'), - ('1559029838', 'Journey To The Center Of The Earth', 'https://images.isbndb.com/covers/98/34/9781559029834.jpg'), - ('0590414658', 'Just A Little Bit Lost', 'https://images.isbndb.com/covers/46/54/9780590414654.jpg'), - ('0671674919', 'The SUSPECT NEXT DOOR NANCY DREW FILES #39 (The Nancy Drew Files Case, No 39)', 'https://images.isbndb.com/covers/49/15/9780671674915.jpg'), - ('0441048862', 'Barbary', 'https://images.isbndb.com/covers/88/61/9780441048861.jpg'), - ('0553271547', 'SEARCH FOR DINOSAURS (Time Machine)', 'https://images.isbndb.com/covers/15/46/9780553271546.jpg'), - ('0553272004', 'Civil War Secret Agent (Time Machine, No. 5)', 'https://images.isbndb.com/covers/20/00/9780553272000.jpg'), - ('0451450787', 'Never Deal With A Dragon (Shadownrun, Vol. 1)', 'https://images.isbndb.com/covers/07/84/9780451450784.jpg'), - ('0451450876', 'Shadowrun 02: Choose Your Enemies Carefully', 'https://images.isbndb.com/covers/08/76/9780451450876.jpg'), - ('0451450825', 'Find Your Own Truth (Shadowrun)', 'https://images.isbndb.com/covers/08/21/9780451450821.jpg'), - ('0451452542', 'Striper Assassin (Shadowrun)', 'https://images.isbndb.com/covers/25/42/9780451452542.jpg'), - ('0451453026', 'Shadowrun 14: Nosferatu (v. 14)', 'https://images.isbndb.com/covers/30/20/9780451453020.jpg'), - ('0451453727', 'Shadowrun 19: Just Compensation', 'https://images.isbndb.com/covers/37/23/9780451453723.jpg'), - ('0451453697', 'Shadowrun 16: Who Hunts The Hunter? (v. 16)', 'https://images.isbndb.com/covers/36/93/9780451453693.jpg'), - ('0451453700', 'Shadowrun 17: House Of The Sun', 'https://images.isbndb.com/covers/37/09/9780451453709.jpg'), - ('0451456998', 'Shadowrun 31: Technobabel', 'https://images.isbndb.com/covers/69/91/9780451456991.jpg'), - ('0451459954', 'Shadowrun 32: Wolf And Raven', 'https://images.isbndb.com/covers/99/54/9780451459954.jpg'), - ('0451457471', 'The Forever Drug (Shadowrun, No 37)', 'https://images.isbndb.com/covers/74/79/9780451457479.jpg'), - ('0451453689', 'Shadowrun 15: Burning Bright (v. 15)', 'https://images.isbndb.com/covers/36/86/9780451453686.jpg'), - ('0451457374', 'Run Hard, Die Fast (Shadowrun 35)', 'https://images.isbndb.com/covers/73/70/9780451457370.jpg'), - ('0451451899', 'Shadowrun 07: Into The Shadows (v. 7)', 'https://images.isbndb.com/covers/18/97/9780451451897.jpg'), - ('0451451996', 'Shadowrun 08: Streets Of Blood', 'https://images.isbndb.com/covers/19/96/9780451451996.jpg'), - ('0451453719', 'Worlds Without End (Shadowrun 18)', 'https://images.isbndb.com/covers/37/16/9780451453716.jpg'), - ('0451452380', 'Shadowrun 10: Night''s Pawn', 'https://images.isbndb.com/covers/23/82/9780451452382.jpg'), - ('0451458397', 'Shadowrun 40: The Burning Time', 'https://images.isbndb.com/covers/83/91/9780451458391.jpg'), - ('0451458184', 'Shadowrun 39: Tails You Lose', 'https://images.isbndb.com/covers/81/86/9780451458186.jpg'), - ('0399143815', 'The Secret Warriors: A Men At War Novel', 'https://images.isbndb.com/covers/38/16/9780399143816.jpg'), - ('0441004911', 'Isaac Asimov''s Christmas', 'https://images.isbndb.com/covers/49/11/9780441004911.jpg'), - ('0671578375', 'Transvergence (Heritage Universe)', 'https://images.isbndb.com/covers/83/74/9780671578374.jpg'), - ('0440234948', 'Area 51: The Sphinx', 'https://images.isbndb.com/covers/49/44/9780440234944.jpg'), - ('0671023187', 'Term Limits', 'https://images.isbndb.com/covers/31/88/9780671023188.jpg'), - ('0395390338', 'Curious George And The Pizza', 'https://images.isbndb.com/covers/03/37/9780395390337.jpg'), - ('0679746048', 'Girl, Interrupted', 'https://images.isbndb.com/covers/60/41/9780679746041.jpg'), - ('0684803143', 'Messiah: A Novel', 'https://images.isbndb.com/covers/31/42/9780684803142.jpg'), - ('0451459245', 'The Firebrand', 'https://images.isbndb.com/covers/92/44/9780451459244.jpg'), - ('0743417720', 'The Third Witch: A Novel', 'https://images.isbndb.com/covers/77/23/9780743417723.jpg'), - ('0446610100', 'Wish You Well', 'https://images.isbndb.com/covers/01/00/9780446610100.jpg'), - ('1857027795', 'Diving Bell And The Butterfly', 'https://images.isbndb.com/covers/77/92/9781857027792.jpg'), - ('0440216745', 'Whispers', 'https://images.isbndb.com/covers/67/42/9780440216742.jpg'), - ('3453151720', 'Der Poet.', 'https://images.isbndb.com/covers/17/27/9783453151727.jpg'), - ('344242979X', 'Dunkles Leuchten', 'https://images.isbndb.com/covers/97/90/9783442429790.jpg'), - ('3423241012', 'Ich, Meine Freundin Und All Diese Männer.', 'https://images.isbndb.com/covers/10/14/9783423241014.jpg'), - ('3423202343', 'Was Männer Sagen: Was Manner Sagen', 'https://images.isbndb.com/covers/23/43/9783423202343.jpg'), - ('0312966970', 'Four To Score (Stephanie Plum, No. 4)', 'https://images.isbndb.com/covers/69/73/9780312966973.jpg'), - ('0671730177', 'The Ultimate Maze Book', 'https://images.isbndb.com/covers/01/78/9780671730178.jpg'), - ('0671568485', 'STAR TREK: THE RETURN', 'https://images.isbndb.com/covers/84/81/9780671568481.jpg'), - ('0345352238', 'Fat Tuesday (Thomas Black Mysteries)', 'https://images.isbndb.com/covers/22/31/9780345352231.jpg'), - ('0345334310', 'The Ship Who Sang', 'https://images.isbndb.com/covers/43/12/9780345334312.jpg'), - ('0671876937', 'Master Of Many Treasures', 'https://images.isbndb.com/covers/69/37/9780671876937.jpg'), - ('0671876015', 'Pigs Don''t Fly', 'https://images.isbndb.com/covers/60/12/9780671876012.jpg'), - ('0812533666', 'Isle Of Woman (Geodyssy, Book 1)', 'https://images.isbndb.com/covers/36/68/9780812533668.jpg'), - ('0893757837', 'Tale Of Two Cities (Watermill Classics)', 'https://images.isbndb.com/covers/78/30/9780893757830.jpg'), - ('1575663104', 'The Wall', 'https://images.isbndb.com/covers/31/04/9781575663104.jpg'), - ('0679766758', 'Push: A Novel', 'https://images.isbndb.com/covers/67/59/9780679766759.jpg'), - ('0874869226', 'She Said Yes: The Unlikely Martyrdom Of Cassie Bernall', 'https://images.isbndb.com/covers/92/24/9780874869224.jpg'), - ('0967224918', 'B-More Careful: Meow Meow Productions Presents', 'https://images.isbndb.com/covers/49/16/9780967224916.jpg'), - ('3492215416', 'Champagner Und Kamillentee', 'https://images.isbndb.com/covers/54/11/9783492215411.jpg'), - ('3499431009', 'Rororo-Thriller: Finstere Gründe', 'https://images.isbndb.com/covers/10/05/9783499431005.jpg'), - ('3442440246', 'Potsdamer Ableben.', 'https://images.isbndb.com/covers/02/45/9783442440245.jpg'), - ('3746618959', 'Sommer Ende Zwanzig', 'https://images.isbndb.com/covers/89/51/9783746618951.jpg'), - ('3257228449', 'Der Kugelrunde Roberto', 'https://images.isbndb.com/covers/84/41/9783257228441.jpg'), - ('3570204758', 'Windmähne.', 'https://images.isbndb.com/covers/47/57/9783570204757.jpg'), - ('3548680291', 'Yeats Ist Tot!: 15 Autoren Schreiben Einen Sehr Irischen Roman. Es Beginnt Mit Roddy Doyle Und Endet Mit Frank McCourt', 'https://images.isbndb.com/covers/02/93/9783548680293.jpg'), - ('3442450144', 'Ehrensache: Roman', 'https://images.isbndb.com/covers/01/45/9783442450145.jpg'), - ('3442727758', 'Das Letzte Konzert', 'https://images.isbndb.com/covers/77/59/9783442727759.jpg'), - ('3426620685', 'Süden Und Der Straßenbahntrinker', 'https://images.isbndb.com/covers/06/87/9783426620687.jpg'), - ('3596505429', 'Alberta Empfängt Einen Liebhaber', 'https://images.isbndb.com/covers/54/25/9783596505425.jpg'), - ('0307100227', 'What A Wonderful World (Look-Look)', 'https://images.isbndb.com/covers/02/21/9780307100221.jpg'), - ('0886251788', 'You''Ve Lost Your Marbles, Lickety Spilt', 'https://images.isbndb.com/covers/17/89/9780886251789.jpg'), - ('1590383141', 'The Forgotten Treasure (Book Of Mormon Sleuth, Vol. 4)', 'https://images.isbndb.com/covers/31/48/9781590383148.jpg'), - ('0061066591', 'Surprise, Surprise! (Mary-Kate & Ashley Olsen, Two Of A Kind #19)', 'https://images.isbndb.com/covers/65/97/9780061066597.jpg'), - ('0671522728', 'Lucky, Lucky Day (Full House Michelle)', 'https://images.isbndb.com/covers/27/28/9780671522728.jpg'), - ('0816735786', 'Meg And The Secret Scrapbook (Always Friends Club)', 'https://images.isbndb.com/covers/57/85/9780816735785.jpg'), - ('0689835752', 'Sheltie Saves The Day', 'https://images.isbndb.com/covers/57/59/9780689835759.jpg'), - ('0152017976', 'Elidor', 'https://images.isbndb.com/covers/79/72/9780152017972.jpg'), - ('0152017984', 'The Owl Service', 'https://images.isbndb.com/covers/79/89/9780152017989.jpg'), - ('3596271088', 'Hexenjagd: Ein Drama In 2 Akten', 'https://images.isbndb.com/covers/10/85/9783596271085.jpg'), - ('3596270952', 'Tod Eines Handlungsreisenden: Gewisse Privatgespräche In Zwei Akten Und Einem Requiem. (Theater, Film, Funk, Fernsehen)', 'https://images.isbndb.com/covers/09/58/9783596270958.jpg'), - ('0394577736', 'A Thousand Acres', 'https://images.isbndb.com/covers/77/39/9780394577739.jpg'), - ('0151104506', 'Bailey''s Cafe', 'https://images.isbndb.com/covers/45/05/9780151104505.jpg'), - ('0425175006', 'The Body On The Beach: A Fethering Mystery', 'https://images.isbndb.com/covers/50/02/9780425175002.jpg'), - ('0345426274', 'The Analyst', 'https://images.isbndb.com/covers/62/77/9780345426277.jpg'), - ('0425186857', 'From This Moment On', 'https://images.isbndb.com/covers/68/55/9780425186855.jpg'), - ('0671003518', 'The Bride', 'https://images.isbndb.com/covers/35/17/9780671003517.jpg'), - ('051512317X', 'Rising Tides (The Chesapeake Bay Saga, Book 2)', 'https://images.isbndb.com/covers/31/73/9780515123173.jpg'), - ('0515114693', 'Born In Fire (Born In Trilogy, Book 1)', 'https://images.isbndb.com/covers/46/90/9780515114690.jpg'), - ('0060507403', 'The Cheese Monkeys: A Novel In Two Semesters', 'https://images.isbndb.com/covers/74/04/9780060507404.jpg'), - ('0679767398', 'South Of The Border, West Of The Sun: A Novel', 'https://images.isbndb.com/covers/73/98/9780679767398.jpg'), - ('0553212761', 'Mansfield Park (Bantam Classics)', 'https://images.isbndb.com/covers/27/61/9780553212761.jpg'), - ('0425174468', 'Bagombo Snuff Box: Uncollected Short Fiction', 'https://images.isbndb.com/covers/44/63/9780425174463.jpg'), - ('044012929X', 'God Bless You, Mr. Rosewater', 'https://images.isbndb.com/covers/92/95/9780440129295.jpg'), - ('0345367421', 'The Water-Method Man', 'https://images.isbndb.com/covers/74/26/9780345367426.jpg'), - ('0060004533', 'The Neal Pollack Anthology Of American Literature: The Collected Writings Of Neal Pollack', 'https://images.isbndb.com/covers/45/38/9780060004538.jpg'), - ('0380002930', 'Watership Down', 'https://images.isbndb.com/covers/29/31/9780380002931.jpg'), - ('080215185X', 'Teach Us To Outgrow Our Madness: Four Short Novels: The Day He Himself Shall Wipe My Tears Away, Prize Stock, Teach Us To Outgrow Our Madness, Aghwee The Sky Monster', 'https://images.isbndb.com/covers/18/58/9780802151858.jpg'), - ('0718143043', 'The Safe House', 'https://images.isbndb.com/covers/30/46/9780718143046.jpg'), - ('0670858722', 'The Flaming Corsage', 'https://images.isbndb.com/covers/87/29/9780670858729.jpg'), - ('0486280489', 'The Scarlet Letter (Dover Thrift Editions)', 'https://images.isbndb.com/covers/04/86/9780486280486.jpg'), - ('3821829494', 'Ensel Und Krete: Ein Märchen Aus Zamonien Von Hildegunst Von Mythenmetz: Ein Märchen Aus Zamonien Von Hildegunst Von Mythenmetz. Mit Erläuterungen Aus ... Umgebung Von Professor Dr. Abul Nachtigaller', 'https://images.isbndb.com/covers/94/94/9783821829494.jpg'), - ('0312876912', 'Humans (The Neanderthal Parallax, Book 2)', 'https://images.isbndb.com/covers/69/13/9780312876913.jpg'), - ('0684148579', 'Have Spacesuit Will Travel', 'https://images.isbndb.com/covers/85/71/9780684148571.jpg'), - ('0553562967', 'Bellwether', 'https://images.isbndb.com/covers/29/65/9780553562965.jpg'), - ('0446363170', 'Cape Cod', 'https://images.isbndb.com/covers/31/74/9780446363174.jpg'), - ('0804110379', 'A Dangerous Mourning (William Monk Novels)', 'https://images.isbndb.com/covers/03/72/9780804110372.jpg'), - ('0449003183', 'Brunswick Gardens (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/31/83/9780449003183.jpg'), - ('044920474X', 'RUTLAND PLACE', 'https://images.isbndb.com/covers/47/40/9780449204740.jpg'), - ('0449244970', 'Paragon Walk', 'https://images.isbndb.com/covers/49/75/9780449244975.jpg'), - ('0449210952', 'Death In The Devil''s Acre', 'https://images.isbndb.com/covers/09/56/9780449210956.jpg'), - ('0312971346', 'High Five (Stephanie Plum, No. 5)', 'https://images.isbndb.com/covers/13/42/9780312971342.jpg'), - ('0399147101', 'Potshot (Spenser Mystery)', 'https://images.isbndb.com/covers/71/04/9780399147104.jpg'), - ('0449146383', 'I, Vampire: The Confessions Of A Vampire - His Life, His Loves, His Strangest Desires ... (Fawcett Gold Medal)', 'https://images.isbndb.com/covers/63/85/9780449146385.jpg'), - ('0446603066', 'Guilt By Association', 'https://images.isbndb.com/covers/30/65/9780446603065.jpg'), - ('0446603821', 'Privileged Conversation', 'https://images.isbndb.com/covers/38/29/9780446603829.jpg'), - ('0449149374', 'Vampire Princess', 'https://images.isbndb.com/covers/93/79/9780449149379.jpg'), - ('0553378260', 'Rita Will: Memoir Of A Literary Rabble-Rouser', 'https://images.isbndb.com/covers/82/69/9780553378269.jpg'), - ('1556614438', 'Fire By Night (Refiners Fire, Book 2)', 'https://images.isbndb.com/covers/44/39/9781556614439.jpg'), - ('0312850581', 'Pastwatch: The Redemption Of Christopher Columbus', 'https://images.isbndb.com/covers/05/86/9780312850586.jpg'), - ('0140280553', 'Galileo''s Daughter: A Historical Memoir Of Science, Faith, And Love', 'https://images.isbndb.com/covers/05/55/9780140280555.jpg'), - ('0930031067', 'The Man Who Planted Trees', 'https://images.isbndb.com/covers/10/60/9780930031060.jpg'), - ('0060958022', 'Five Quarters Of The Orange', 'https://images.isbndb.com/covers/80/22/9780060958022.jpg'), - ('0385474016', 'LIKE WATER FOR CHOCOLATE', 'https://images.isbndb.com/covers/40/16/9780385474016.jpg'), - ('0380804700', 'Partner In Crime (Joanna Brady Mysteries, Book 10)', 'https://images.isbndb.com/covers/47/02/9780380804702.jpg'), - ('0500280673', 'Celtic Borders', 'https://images.isbndb.com/covers/06/76/9780500280676.jpg'), - ('048640076X', 'The Warden (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/61/9780486400761.jpg'), - ('0349109931', 'Land Girls', 'https://images.isbndb.com/covers/99/30/9780349109930.jpg'), - ('156245191X', 'The Secret Language Of Men', 'https://images.isbndb.com/covers/19/12/9781562451912.jpg'), - ('0140124497', 'Uncle Dynamite', 'https://images.isbndb.com/covers/44/91/9780140124491.jpg'), - ('0553210114', 'The Red Badge Of Courage (Bantam Classics)', 'https://images.isbndb.com/covers/01/18/9780553210118.jpg'), - ('0156658992', 'The Nine Tailors', 'https://images.isbndb.com/covers/89/97/9780156658997.jpg'), - ('037550334X', 'Undue Influence: A Novel', 'https://images.isbndb.com/covers/33/44/9780375503344.jpg'), - ('3518396005', 'Ein Springender Brunnen: Roman', 'https://images.isbndb.com/covers/60/01/9783518396001.jpg'), - ('3499123665', 'Die Hexen Von Eastwick.', 'https://images.isbndb.com/covers/36/65/9783499123665.jpg'), - ('3548603203', 'Artemis Fowl: Der Erste Roman', 'https://images.isbndb.com/covers/32/09/9783548603209.jpg'), - ('2253057835', 'La Contrebasse', 'https://images.isbndb.com/covers/78/33/9782253057833.jpg'), - ('2020482363', 'Sans Nouvelles De Gurb', 'https://images.isbndb.com/covers/23/63/9782020482363.jpg'), - ('2264027754', 'Eureka Street', 'https://images.isbndb.com/covers/77/57/9782264027757.jpg'), - ('2264032189', 'La Légende D''Henry Smart', 'https://images.isbndb.com/covers/21/88/9782264032188.jpg'), - ('052594527X', 'Girl With A Pearl Earring', 'https://images.isbndb.com/covers/52/77/9780525945277.jpg'), - ('3257204833', 'Kleine Mordgeschichten Für Tierfreunde', 'https://images.isbndb.com/covers/48/34/9783257204834.jpg'), - ('3596156963', 'Anleitung Zum Unschuldigsein: Das Übungsbuch Für Ein Schlechtes Gewissen', 'https://images.isbndb.com/covers/69/62/9783596156962.jpg'), - ('3596122279', 'Das Superweib', 'https://images.isbndb.com/covers/22/71/9783596122271.jpg'), - ('3404141970', 'Wolfsherz: Roman', 'https://images.isbndb.com/covers/19/75/9783404141975.jpg'), - ('0029281113', 'The Passionate Mind: Bringing Up An Intelligent And Creative Child', 'https://images.isbndb.com/covers/11/16/9780029281116.jpg'), - ('0517559552', 'Little Boy Book', 'https://images.isbndb.com/covers/95/50/9780517559550.jpg'), - ('0345338545', 'Follow The River', 'https://images.isbndb.com/covers/85/49/9780345338549.jpg'), - ('0375701044', 'Personal History', 'https://images.isbndb.com/covers/10/47/9780375701047.jpg'), - ('0316158720', 'The Archivist', 'https://images.isbndb.com/covers/87/25/9780316158725.jpg'), - ('0007154615', 'Unless: A Novel', 'https://images.isbndb.com/covers/46/16/9780007154616.jpg'), - ('0375412824', 'The Dive From Clausen''s Pier', 'https://images.isbndb.com/covers/28/20/9780375412820.jpg'), - ('1558743669', 'A Child Called "It": One Child''s Courage To Survive', 'https://images.isbndb.com/covers/36/63/9781558743663.jpg'), - ('084236661X', 'The Strong-Willed Child', 'https://images.isbndb.com/covers/66/18/9780842366618.jpg'), - ('0708842100', 'Wing And A Prayer A', 'https://images.isbndb.com/covers/21/02/9780708842102.jpg'), - ('059045367X', 'Monster Blood (Goosebumps, No 3)', 'https://images.isbndb.com/covers/36/77/9780590453677.jpg'), - ('0590453661', 'Stay Out Of The Basement (Goosebumps, No 2)', 'https://images.isbndb.com/covers/36/60/9780590453660.jpg'), - ('059042761X', 'Wednesday Witch', 'https://images.isbndb.com/covers/76/16/9780590427616.jpg'), - ('0385721617', 'Juno & Juliet: A Novel', 'https://images.isbndb.com/covers/16/15/9780385721615.jpg'), - ('0694013226', 'What To Expect When You Use The Potty (What To Expect Kids)', 'https://images.isbndb.com/covers/32/27/9780694013227.jpg'), - ('0441005764', 'Mossflower (Prequel To Redwall)', 'https://images.isbndb.com/covers/57/65/9780441005765.jpg'), - ('0553582135', 'Final Target', 'https://images.isbndb.com/covers/21/30/9780553582130.jpg'), - ('0671034065', 'Mr. Perfect', 'https://images.isbndb.com/covers/40/61/9780671034061.jpg'), - ('0451410777', 'Sleep Tight (Onyx Book)', 'https://images.isbndb.com/covers/07/71/9780451410771.jpg'), - ('0345418832', 'Puzzled Heart (Kate Fansler Novels)', 'https://images.isbndb.com/covers/88/38/9780345418838.jpg'), - ('0671026801', 'The Hunted', 'https://images.isbndb.com/covers/68/06/9780671026806.jpg'), - ('0671024051', 'Mosaic', 'https://images.isbndb.com/covers/40/55/9780671024055.jpg'), - ('0684869829', 'The Courtship Gift: A Novel', 'https://images.isbndb.com/covers/98/27/9780684869827.jpg'), - ('0399147772', 'Orchid Blues (Holly Barker Novels)', 'https://images.isbndb.com/covers/77/77/9780399147777.jpg'), - ('0440237416', 'Warning Signs', 'https://images.isbndb.com/covers/74/19/9780440237419.jpg'), - ('0439101336', 'A Christmas Carol (Scholastic Classics)', 'https://images.isbndb.com/covers/13/32/9780439101332.jpg'), - ('0399147284', 'Chosen Prey', 'https://images.isbndb.com/covers/72/89/9780399147289.jpg'), - ('0684832380', 'MY GAL SUNDAY LARGE PRINT: "Henry And Sunday" Stories', 'https://images.isbndb.com/covers/23/88/9780684832388.jpg'), - ('039914210X', 'The Cat Who Tailed A Thief', 'https://images.isbndb.com/covers/21/09/9780399142109.jpg'), - ('0380730359', 'Gone, Baby, Gone: A Novel', 'https://images.isbndb.com/covers/03/53/9780380730353.jpg'), - ('0374166560', 'The Great Victorian Collection', 'https://images.isbndb.com/covers/65/64/9780374166564.jpg'), - ('0451150635', 'Different Seasons (Signet): The Novela That Stand By Me Is Based On', 'https://images.isbndb.com/covers/06/39/9780451150639.jpg'), - ('3596132762', 'Ein Mann Für Eine Nacht.', 'https://images.isbndb.com/covers/27/68/9783596132768.jpg'), - ('3492225926', 'Das Wüten Der Ganzen Welt', 'https://images.isbndb.com/covers/59/22/9783492225922.jpg'), - ('006018700X', 'Design For Dying', 'https://images.isbndb.com/covers/70/02/9780060187002.jpg'), - ('0684836483', '250 Things You Can Do To Make Your Cat Adore You', 'https://images.isbndb.com/covers/64/85/9780684836485.jpg'), - ('0571174450', 'Touching From A Distance: Ian Curtis And Joy Division', 'https://images.isbndb.com/covers/44/54/9780571174454.jpg'), - ('0312848846', 'D/S: An Anti-Love Story', 'https://images.isbndb.com/covers/88/42/9780312848842.jpg'), - ('0442043244', 'Philosopher Looks At Science', 'https://images.isbndb.com/covers/32/47/9780442043247.jpg'), - ('0880381736', 'Dragons Of Autumn Twilight (DragonLance Chronicles, Vol. 1)', 'https://images.isbndb.com/covers/17/34/9780880381734.jpg'), - ('0767907817', 'Bookends: A Novel', 'https://images.isbndb.com/covers/78/11/9780767907811.jpg'), - ('0385720106', 'A Map Of The World (Oprah''s Book Club)', 'https://images.isbndb.com/covers/01/06/9780385720106.jpg'), - ('0553208845', 'Siddhartha', 'https://images.isbndb.com/covers/88/49/9780553208849.jpg'), - ('0064400581', 'Julie Of The Wolves (HarperClassics)', 'https://images.isbndb.com/covers/05/89/9780064400589.jpg'), - ('0571142745', 'THE BUDDHA OF SUBURBIA.', 'https://images.isbndb.com/covers/27/43/9780571142743.jpg'), - ('0898861780', 'Snowshoeing', 'https://images.isbndb.com/covers/17/85/9780898861785.jpg'), - ('1586480456', 'Sincerely, Andy Rooney', 'https://images.isbndb.com/covers/04/55/9781586480455.jpg'), - ('030681188X', 'How To Lose Friends & Alienate People', 'https://images.isbndb.com/covers/18/83/9780306811883.jpg'), - ('0688155022', 'The Rise And Fall Of The House Of Barneys: A Family Tale Of Chutzpah, Glory, And Greed', 'https://images.isbndb.com/covers/50/25/9780688155025.jpg'), - ('088064219X', 'The Private Life Of Kim Philby: The Moscow Years', 'https://images.isbndb.com/covers/21/94/9780880642194.jpg'), - ('1904095399', 'Who Was Dr.Charlotte Bach?', 'https://images.isbndb.com/covers/53/92/9781904095392.jpg'), - ('0743204158', 'The Pretender: How Martin Frankel Fooled The Financial World And Led The Feds On One Of The Most Publicized Manhunts In History', 'https://images.isbndb.com/covers/41/56/9780743204156.jpg'), - ('0310225116', 'Springs In The Valley', 'https://images.isbndb.com/covers/51/19/9780310225119.jpg'), - ('0800758358', 'The Stranger From Medina (West Texas Sunrise)', 'https://images.isbndb.com/covers/83/56/9780800758356.jpg'), - ('0385050755', 'The Time It Never Rained', 'https://images.isbndb.com/covers/07/53/9780385050753.jpg'), - ('0842329218', 'Tribulation Force: The Continuing Drama Of Those Left Behind', 'https://images.isbndb.com/covers/92/17/9780842329217.jpg'), - ('0072430958', 'Taking Sides: Clashing Views On Controversial Issues In American History, Vol. I', 'https://images.isbndb.com/covers/09/50/9780072430950.jpg'), - ('0684823780', 'Mere Christianity', 'https://images.isbndb.com/covers/37/82/9780684823782.jpg'), - ('1576738442', 'The Prayer Of Jabez: Devotional', 'https://images.isbndb.com/covers/84/43/9781576738443.jpg'), - ('0449219283', 'Snare Of Serpents', 'https://images.isbndb.com/covers/92/87/9780449219287.jpg'), - ('0553574965', 'The Last Family', 'https://images.isbndb.com/covers/49/68/9780553574968.jpg'), - ('0440225698', 'The Klone And I', 'https://images.isbndb.com/covers/56/90/9780440225690.jpg'), - ('0440221471', 'The Runaway Jury', 'https://images.isbndb.com/covers/14/70/9780440221470.jpg'), - ('0394541545', 'Texas', 'https://images.isbndb.com/covers/15/49/9780394541549.jpg'), - ('0877958920', 'She Who Remembers', 'https://images.isbndb.com/covers/89/25/9780877958925.jpg'), - ('0440235758', 'Going Overboard', 'https://images.isbndb.com/covers/57/50/9780440235750.jpg'), - ('0743216458', 'Band Of Brothers : E Company, 506th Regiment, 101st Airborne From Normandy To Hitler''s Eagle''s Nest', 'https://images.isbndb.com/covers/64/56/9780743216456.jpg'), - ('0061007129', 'Kane & Abel', 'https://images.isbndb.com/covers/71/25/9780061007125.jpg'), - ('0886773784', 'Arrows Of The Queen ( The Heralds Of Valdemar, Book 1)', 'https://images.isbndb.com/covers/37/86/9780886773786.jpg'), - ('0440228204', 'The Unprotected Witness', 'https://images.isbndb.com/covers/82/02/9780440228202.jpg'), - ('0883657635', 'Roger Caras'' Treasury Of Great Cat Stories', 'https://images.isbndb.com/covers/76/38/9780883657638.jpg'), - ('0425143325', 'Without Remorse', 'https://images.isbndb.com/covers/33/22/9780425143322.jpg'), - ('0425180964', 'The Bear And The Dragon (Jack Ryan)', 'https://images.isbndb.com/covers/09/69/9780425180969.jpg'), - ('0812520793', 'Throne Of Isis', 'https://images.isbndb.com/covers/07/98/9780812520798.jpg'), - ('0312109393', 'The Bette Davis Murder Case', 'https://images.isbndb.com/covers/93/94/9780312109394.jpg'), - ('0399148019', 'The Absence Of Nectar', 'https://images.isbndb.com/covers/80/19/9780399148019.jpg'), - ('0373063121', 'Found: One Husband (Medical Romance, #12)', 'https://images.isbndb.com/covers/31/23/9780373063123.jpg'), - ('0140620869', 'Alice''s Adventures In Wonderland (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/63/9780140620863.jpg'), - ('0553801589', 'The Tail Of The Tip-Off: A Mrs. Murphy Mystery', 'https://images.isbndb.com/covers/15/83/9780553801583.jpg'), - ('0743411250', 'The Woman Next Door', 'https://images.isbndb.com/covers/12/57/9780743411257.jpg'), - ('0590129988', 'Clockwork : Or All Wound Up', 'https://images.isbndb.com/covers/99/85/9780590129985.jpg'), - ('0375700684', 'Powder Burn', 'https://images.isbndb.com/covers/06/82/9780375700682.jpg'), - ('0375700692', 'Trap Line', 'https://images.isbndb.com/covers/06/99/9780375700699.jpg'), - ('0312955510', 'The Heart Of Justice', 'https://images.isbndb.com/covers/55/19/9780312955519.jpg'), - ('0345396537', 'First King Of Shannara (Shannara Trilogy, Prequel)', 'https://images.isbndb.com/covers/65/32/9780345396532.jpg'), - ('0452272092', 'So Far From God', 'https://images.isbndb.com/covers/20/95/9780452272095.jpg'), - ('3518383620', 'Gesammelte Stücke In Einzelausgaben. 15 Bände: Band 13: Der Kaiser Von Amerika: BD 13 (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/36/29/9783518383629.jpg'), - ('3499262967', 'Die Teebarone', 'https://images.isbndb.com/covers/29/68/9783499262968.jpg'), - ('3407808836', 'Jedes Sandkorn Ist Ein Buchstabe (Beltz & Gelberg - Biographie)', 'https://images.isbndb.com/covers/88/37/9783407808837.jpg'), - ('3423085711', 'Catherine, Lady Wider Willen, Sonderausgabe', 'https://images.isbndb.com/covers/57/17/9783423085717.jpg'), - ('3453159926', 'Atlantis: German Language Ed', 'https://images.isbndb.com/covers/99/21/9783453159921.jpg'), - ('3499137909', 'Der Plan Von Der Abschaffung Des Dunkels', 'https://images.isbndb.com/covers/79/07/9783499137907.jpg'), - ('0747563721', 'Inner Feng Shui', 'https://images.isbndb.com/covers/37/23/9780747563723.jpg'), - ('0451518845', 'Jane Eyre (Signet Classics)', 'https://images.isbndb.com/covers/88/42/9780451518842.jpg'), - ('0441009700', 'Tathea', 'https://images.isbndb.com/covers/97/01/9780441009701.jpg'), - ('0345395190', 'Orion Arm: The Rampart Worlds: Book 2', 'https://images.isbndb.com/covers/51/91/9780345395191.jpg'), - ('0553265571', 'Grey Horse', 'https://images.isbndb.com/covers/55/76/9780553265576.jpg'), - ('0451521285', 'Hamlet: Prince Of Denmark (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/12/86/9780451521286.jpg'), - ('0812566351', 'The Prince Of Whales', 'https://images.isbndb.com/covers/63/52/9780812566352.jpg'), - ('0060502258', 'Divine Secrets Of The Ya-Ya Sisterhood', 'https://images.isbndb.com/covers/22/56/9780060502256.jpg'), - ('0440911710', 'Camilla (Laurel Leaf Books)', 'https://images.isbndb.com/covers/17/15/9780440911715.jpg'), - ('0140298444', 'S.: A Novel About The Balkans', 'https://images.isbndb.com/covers/84/44/9780140298444.jpg'), - ('0395869463', 'The Bookshop', 'https://images.isbndb.com/covers/94/68/9780395869468.jpg'), - ('0064407721', 'Kissing The Witch: Old Tales In New Skins', 'https://images.isbndb.com/covers/77/24/9780064407724.jpg'), - ('0684859785', 'The DREAMS OUR STUFF IS MADE OF: How Science Fiction Conquered The World', 'https://images.isbndb.com/covers/97/81/9780684859781.jpg'), - ('0156806479', 'Selected Poems', 'https://images.isbndb.com/covers/64/73/9780156806473.jpg'), - ('0553266055', 'All Things Wise And Wonderful', 'https://images.isbndb.com/covers/60/54/9780553266054.jpg'), - ('0345441443', 'Cruel As The Grave', 'https://images.isbndb.com/covers/14/47/9780345441447.jpg'), - ('0802132952', 'Naked Lunch', 'https://images.isbndb.com/covers/29/56/9780802132956.jpg'), - ('0441535771', 'Mistress Masham''s Repose', 'https://images.isbndb.com/covers/57/74/9780441535774.jpg'), - ('0812552989', 'First Book Of Swords', 'https://images.isbndb.com/covers/29/80/9780812552980.jpg'), - ('0451521358', 'Macbeth (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/13/54/9780451521354.jpg'), - ('0140089365', 'Q''s Legacy', 'https://images.isbndb.com/covers/93/63/9780140089363.jpg'), - ('0451455126', 'Night Screams (Stalkers)', 'https://images.isbndb.com/covers/51/23/9780451455123.jpg'), - ('038072345X', 'ANNO DRACULA PB', 'https://images.isbndb.com/covers/34/54/9780380723454.jpg'), - ('1580173144', 'How To Sleep Soundly Tonight: 250 Simple And Natural Ways To Prevent Sleeplessness', 'https://images.isbndb.com/covers/31/48/9781580173148.jpg'), - ('0671025570', 'Duane''s Depressed (Last Picture Show Trilogy)', 'https://images.isbndb.com/covers/55/71/9780671025571.jpg'), - ('0553274864', 'A Grief Observed', 'https://images.isbndb.com/covers/48/68/9780553274868.jpg'), - ('1888604182', 'Seeking Wholeness: Insight Into The Mystery Of Experience', 'https://images.isbndb.com/covers/41/84/9781888604184.jpg'), - ('0805064362', 'After The Darkest Hour: How Suffering Begins The Journey To Wisdom', 'https://images.isbndb.com/covers/43/60/9780805064360.jpg'), - ('0330336215', 'The Picador Book Of The Beach', 'https://images.isbndb.com/covers/62/15/9780330336215.jpg'), - ('0061020710', 'The Color Of Magic', 'https://images.isbndb.com/covers/07/11/9780061020711.jpg'), - ('0440204887', 'Illusions: The Adventures Of A Reluctant Messiah', 'https://images.isbndb.com/covers/48/86/9780440204886.jpg'), - ('0345339681', 'The Hobbit', 'https://images.isbndb.com/covers/96/83/9780345339683.jpg'), - ('0812572297', 'Callahan''s Secret (Callahan''s Crosstime Saloon Series)', 'https://images.isbndb.com/covers/22/92/9780812572292.jpg'), - ('0345272579', 'The Hobbit', 'https://images.isbndb.com/covers/25/77/9780345272577.jpg'), - ('0385199570', 'The Stand: The Complete And Uncut Edition', 'https://images.isbndb.com/covers/95/75/9780385199575.jpg'), - ('0156007568', 'The Years With Laura Diaz', 'https://images.isbndb.com/covers/75/66/9780156007566.jpg'), - ('3426776545', 'Die Fünf Tibeter', 'https://images.isbndb.com/covers/65/44/9783426776544.jpg'), - ('3404701704', 'Die Regeln Des Glücks', 'https://images.isbndb.com/covers/17/04/9783404701704.jpg'), - ('3423205202', 'Mittsommermord: Roman', 'https://images.isbndb.com/covers/52/07/9783423205207.jpg'), - ('3453169247', 'Der Verrat: Roman', 'https://images.isbndb.com/covers/92/41/9783453169241.jpg'), - ('3442541751', 'Russendisko', 'https://images.isbndb.com/covers/17/51/9783442541751.jpg'), - ('3423202947', 'Hunde Von Riga: Roman', 'https://images.isbndb.com/covers/29/47/9783423202947.jpg'), - ('0374332657', 'Holes (Newbery Medal Book)', 'https://images.isbndb.com/covers/26/55/9780374332655.jpg'), - ('0553298496', 'SHE''S NOT WHAT SHE SEEMS (Sweet Valley High)', 'https://images.isbndb.com/covers/84/99/9780553298499.jpg'), - ('0553255371', 'Spring Break (Sweet Valley High, Super Edition)', 'https://images.isbndb.com/covers/53/79/9780553255379.jpg'), - ('0451528018', 'The Hound Of The Baskervilles: 150th Anniversary Edition (Signet Classics)', 'https://images.isbndb.com/covers/80/18/9780451528018.jpg'), - ('0842321942', 'Second Chance (Left Behind: The Kids #2)', 'https://images.isbndb.com/covers/19/45/9780842321945.jpg'), - ('0842321934', 'The Vanishings (Left Behind: The Kids #1)', 'https://images.isbndb.com/covers/19/38/9780842321938.jpg'), - ('1562475878', 'Happy Birthday, Josefina! (American Girl)', 'https://images.isbndb.com/covers/58/71/9781562475871.jpg'), - ('1562475193', 'Josefina''s Surprise (American Girls Collection)', 'https://images.isbndb.com/covers/51/92/9781562475192.jpg'), - ('0590997262', 'The Stranger (Animorphs, No. 7)', 'https://images.isbndb.com/covers/72/63/9780590997263.jpg'), - ('0590997297', 'The Secret (Animorphs #9)', 'https://images.isbndb.com/covers/72/94/9780590997294.jpg'), - ('0590762613', 'Animorphs #28: The Experiment', 'https://images.isbndb.com/covers/26/18/9780590762618.jpg'), - ('0590213040', 'Animorphs Megamorphs #01: The Andalite''s Gift', 'https://images.isbndb.com/covers/30/42/9780590213042.jpg'), - ('0439061652', 'Meet The Stars Of Animorphs', 'https://images.isbndb.com/covers/16/50/9780439061650.jpg'), - ('1584851651', 'School Smarts: All The Right Answers To Homework, Teachers, Popularity, And More!', 'https://images.isbndb.com/covers/16/53/9781584851653.jpg'), - ('0141304707', 'The Wonderful Story Of Henry Sugar', 'https://images.isbndb.com/covers/47/00/9780141304700.jpg'), - ('0679866957', 'Junie B. Jones And That Meanie Jim''s Birthday (Junie B. Jones, No. 6)', 'https://images.isbndb.com/covers/69/54/9780679866954.jpg'), - ('059048575X', '101 Telephone Jokes', 'https://images.isbndb.com/covers/57/53/9780590485753.jpg'), - ('044048474X', 'Tales Of A Fourth Grade Nothing (A Dell Yearling Book)', 'https://images.isbndb.com/covers/47/45/9780440484745.jpg'), - ('1568657803', 'Help! I''m Laughing And I Can''t Get Up', 'https://images.isbndb.com/covers/78/06/9781568657806.jpg'), - ('0140309578', 'Pippi Longstocking', 'https://images.isbndb.com/covers/95/77/9780140309577.jpg'), - ('0671028049', 'Scarabian Nights:Sabrina, The Teenage Witch #24', 'https://images.isbndb.com/covers/80/46/9780671028046.jpg'), - ('0671019805', 'Lotsa Luck Sabrina The Teenage Witch 10', 'https://images.isbndb.com/covers/98/08/9780671019808.jpg'), - ('0671016954', 'All You Need Is A Love Spell (Sabrina The Teenage Witch, 7)', 'https://images.isbndb.com/covers/69/51/9780671016951.jpg'), - ('0671019791', 'A Dog''s Life (Sabrina The Teenage Witch, Book 9)', 'https://images.isbndb.com/covers/97/92/9780671019792.jpg'), - ('044809553X', 'The Sky Phantom (Nancy Drew Mystery Stories, No 53)', 'https://images.isbndb.com/covers/55/30/9780448095530.jpg'), - ('0671023810', 'Teacher''s Pet: Salem''s Tails #2: Sabrina, The Teenage Witch', 'https://images.isbndb.com/covers/38/12/9780671023812.jpg'), - ('1561565601', 'Sabrina: Behind The Scenes', 'https://images.isbndb.com/covers/56/03/9781561565603.jpg'), - ('0448095548', 'The Strange Message In The Parchment (Nancy Drew Mystery Stories, No 54)', 'https://images.isbndb.com/covers/55/47/9780448095547.jpg'), - ('1584850167', 'Meet Kit: An American Girl 1934 (The American Girls Collection, Book 1)', 'https://images.isbndb.com/covers/01/68/9781584850168.jpg'), - ('1562470752', 'Meet Addy: An American Girl (The American Girls Collection Book 1)', 'https://images.isbndb.com/covers/07/53/9781562470753.jpg'), - ('1562470043', 'Meet Felicity (The American Girls Collection, Book 1)', 'https://images.isbndb.com/covers/00/43/9781562470043.jpg'), - ('1562475150', 'Meet Josefina (American Girl)', 'https://images.isbndb.com/covers/51/54/9781562475154.jpg'), - ('0590448250', 'Karen''s Cartwheel (Baby-Sitters Little Sister, No. 29)', 'https://images.isbndb.com/covers/82/53/9780590448253.jpg'), - ('0590386042', 'It''s Fine To Be Nine', 'https://images.isbndb.com/covers/60/43/9780590386043.jpg'), - ('0877191174', 'The Further Adventures Of Hank The Cowdog (Hank The Cowdog (Paperback))', 'https://images.isbndb.com/covers/11/79/9780877191179.jpg'), - ('0689817215', 'The View From Saturday', 'https://images.isbndb.com/covers/72/12/9780689817212.jpg'), - ('0671015192', 'SANTAS LITTLE HELPER SABRINA THE TEENAGE WITCH 5', 'https://images.isbndb.com/covers/51/90/9780671015190.jpg'), - ('0671024272', 'SABRINA, THE TEENAGE WITCH MAGIC HANDBOOK', 'https://images.isbndb.com/covers/42/77/9780671024277.jpg'), - ('3453025423', 'Roter Drache: Roman', 'https://images.isbndb.com/covers/54/24/9783453025424.jpg'), - ('0553141406', 'Smiley''s People', 'https://images.isbndb.com/covers/14/05/9780553141405.jpg'), - ('0517580497', 'The Plains Of Passage', 'https://images.isbndb.com/covers/04/93/9780517580493.jpg'), - ('0312863403', 'Hope Of Earth (Geodyssey)', 'https://images.isbndb.com/covers/34/01/9780312863401.jpg'), - ('086547642X', 'Positively 4th Street: The Lives And Times Of Joan Baez, Bob Dylan, Mimi Baez Farina And Richard Farina', 'https://images.isbndb.com/covers/64/24/9780865476424.jpg'), - ('1558744630', 'Chicken Soup For The Teenage Soul: 101 Stories Of Life, Love And Learning (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/46/39/9781558744639.jpg'), - ('0140380361', 'The Root Cellar', 'https://images.isbndb.com/covers/03/61/9780140380361.jpg'), - ('0394588169', 'Jurassic Park', 'https://images.isbndb.com/covers/81/62/9780394588162.jpg'), - ('0316143464', 'Dress Your Family In Corduroy And Denim', 'https://images.isbndb.com/covers/34/62/9780316143462.jpg'), - ('0385336322', 'Ransom', 'https://images.isbndb.com/covers/63/21/9780385336321.jpg'), - ('038533348X', 'Cat''s Cradle: A Novel', 'https://images.isbndb.com/covers/34/81/9780385333481.jpg'), - ('0553294385', 'I, Robot', 'https://images.isbndb.com/covers/43/85/9780553294385.jpg'), - ('1573222623', 'Drinking Coffee Elsewhere (Today Show Book Club #11)', 'https://images.isbndb.com/covers/26/24/9781573222624.jpg'), - ('1558746161', 'Chicken Soup For The Teenage Soul II', 'https://images.isbndb.com/covers/61/69/9781558746169.jpg'), - ('0553583867', 'The Husband Test', 'https://images.isbndb.com/covers/38/61/9780553583861.jpg'), - ('0553214225', 'Summer (Bantam Classics)', 'https://images.isbndb.com/covers/42/22/9780553214222.jpg'), - ('0394569962', 'The Fourth K', 'https://images.isbndb.com/covers/99/63/9780394569963.jpg'), - ('0553568914', 'Elvis, Jesus And Coca-Cola (Kinky Friedman Novels)', 'https://images.isbndb.com/covers/89/12/9780553568912.jpg'), - ('0671721291', 'The Ship Who Searched (The Ship Series)', 'https://images.isbndb.com/covers/12/99/9780671721299.jpg'), - ('0553563521', 'Devil''s Waltz (Alex Delaware Novels)', 'https://images.isbndb.com/covers/35/28/9780553563528.jpg'), - ('055357230X', 'Clinic (Alex Delaware S.)', 'https://images.isbndb.com/covers/23/08/9780553572308.jpg'), - ('0399142282', 'Hornet''s Nest', 'https://images.isbndb.com/covers/22/84/9780399142284.jpg'), - ('0140193383', 'The Tao Of Love And Sex', 'https://images.isbndb.com/covers/33/81/9780140193381.jpg'), - ('1890159018', 'The Ethical Slut: A Guide To Infinite Sexual Possibilities', 'https://images.isbndb.com/covers/90/16/9781890159016.jpg'), - ('0446670626', 'I, Robot: The Illustrated Screenplay', 'https://images.isbndb.com/covers/06/23/9780446670623.jpg'), - ('0590429892', 'The Way Things Work', 'https://images.isbndb.com/covers/98/94/9780590429894.jpg'), - ('0782123813', 'CCNA: Cisco Certified Network Associate Study Guide', 'https://images.isbndb.com/covers/38/14/9780782123814.jpg'), - ('0782125352', 'CCNA Exam Notes: Cisco Certified Network Associate', 'https://images.isbndb.com/covers/53/51/9780782125351.jpg'), - ('1561703249', 'The Western Guide To Feng Shui: Creating Balance, Harmony, And Prosperity In Your Environment', 'https://images.isbndb.com/covers/32/41/9781561703241.jpg'), - ('0812513711', 'The Dragon Reborn (The Wheel Of Time, Book 3)', 'https://images.isbndb.com/covers/37/14/9780812513714.jpg'), - ('0671004107', 'Contact', 'https://images.isbndb.com/covers/41/01/9780671004101.jpg'), - ('0553213539', 'The Invisible Man (Bantam Classic)', 'https://images.isbndb.com/covers/35/39/9780553213539.jpg'), - ('9681905202', 'La Casa Pierde (Spanish Edition)', 'https://images.isbndb.com/covers/52/00/9789681905200.jpg'), - ('0449200396', 'Rabbit Run', 'https://images.isbndb.com/covers/03/91/9780449200391.jpg'), - ('0425173615', 'Murder On St. Mark''s Place (Gaslight Mystery)', 'https://images.isbndb.com/covers/36/19/9780425173619.jpg'), - ('0684186454', 'State Of Grace, Scribner Signature Edition', 'https://images.isbndb.com/covers/64/50/9780684186450.jpg'), - ('006016185X', 'Valsalva''s Maneuver: Mots Justes And Indispensable Terms', 'https://images.isbndb.com/covers/18/59/9780060161859.jpg'), - ('0800730364', 'I Love You, I Hate You: Double-edged Nature Of Human Relationships', 'https://images.isbndb.com/covers/03/69/9780800730369.jpg'), - ('0671766821', 'Soul Survivors: A New Beginning For Adults Abused As Children (Fireside)', 'https://images.isbndb.com/covers/68/25/9780671766825.jpg'), - ('0671683993', 'The Temple Of My Familiar', 'https://images.isbndb.com/covers/39/93/9780671683993.jpg'), - ('0425098680', 'Dinner At The Homesick Restaurant', 'https://images.isbndb.com/covers/86/84/9780425098684.jpg'), - ('0553245694', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/56/91/9780553245691.jpg'), - ('0874775639', 'Babinski Reflex', 'https://images.isbndb.com/covers/56/31/9780874775631.jpg'), - ('0060907215', 'Lore Of The Unicorn', 'https://images.isbndb.com/covers/72/11/9780060907211.jpg'), - ('0385302274', 'The 27-Ingredient Chili Con Carne Murders', 'https://images.isbndb.com/covers/22/72/9780385302272.jpg'), - ('0670873683', 'London Holiday', 'https://images.isbndb.com/covers/36/85/9780670873685.jpg'), - ('0425168700', 'Fortune''s Daughter', 'https://images.isbndb.com/covers/87/07/9780425168707.jpg'), - ('0375704906', 'Some Lie And Some Die (An Inspector Wexford Mystery)', 'https://images.isbndb.com/covers/49/01/9780375704901.jpg'), - ('0020519001', 'A Farewell To Arms (A Scribner Classic)', 'https://images.isbndb.com/covers/90/03/9780020519003.jpg'), - ('0345426029', 'The Broken Hearts Club (Conrad Voort Novels)', 'https://images.isbndb.com/covers/60/24/9780345426024.jpg'), - ('0060973277', 'The Mambo Kings Play Songs Of Love', 'https://images.isbndb.com/covers/32/78/9780060973278.jpg'), - ('0439064872', 'Harry Potter And The Chamber Of Secrets (Book 2)', 'https://images.isbndb.com/covers/48/73/9780439064873.jpg'), - ('0679751602', 'Mama Makes Up Her Mind: And Other Dangers Of Southern Living', 'https://images.isbndb.com/covers/16/01/9780679751601.jpg'), - ('0688127169', 'Running From Safety: An Adventure Of The Spirit', 'https://images.isbndb.com/covers/71/69/9780688127169.jpg'), - ('9722110195', 'Era Bom Que Trocassemos Umas Ideias Sobre O Assunto: Romance (O Campo Da Palavra) (Portuguese Edition)', 'https://images.isbndb.com/covers/01/98/9789722110198.jpg'), - ('0714832529', 'The Pre-Raphaelite Vision (Phaidon Miniature Editions)', 'https://images.isbndb.com/covers/25/24/9780714832524.jpg'), - ('0440784743', 'Tales Of A Fourth Grade Nothing', 'https://images.isbndb.com/covers/47/46/9780440784746.jpg'), - ('0812551532', 'Morning River: A Novel Of The Great Missouri Wilderness In 1825', 'https://images.isbndb.com/covers/15/32/9780812551532.jpg'), - ('1573247022', 'The Food Revolution: How Your Diet Can Help Save Your Life And Our World', 'https://images.isbndb.com/covers/70/23/9781573247023.jpg'), - ('0451132157', 'Atlas Shrugged', 'https://images.isbndb.com/covers/21/54/9780451132154.jpg'), - ('055315754X', 'Horse Play (The Saddle Club #7)', 'https://images.isbndb.com/covers/75/43/9780553157543.jpg'), - ('0312263449', 'Honeymoon In Purdah: An Iranian Journey', 'https://images.isbndb.com/covers/34/47/9780312263447.jpg'), - ('0060904453', 'The Thurber Carnival (Harper Colophon Books)', 'https://images.isbndb.com/covers/44/56/9780060904456.jpg'), - ('0671734547', 'The Dead Sea Scrolls Deception', 'https://images.isbndb.com/covers/45/41/9780671734541.jpg'), - ('0812580354', 'Calculating God', 'https://images.isbndb.com/covers/03/58/9780812580358.jpg'), - ('1400076218', 'Jazz', 'https://images.isbndb.com/covers/62/15/9781400076215.jpg'), - ('1573226106', 'Kitchen Table Wisdom: Stories That Heal', 'https://images.isbndb.com/covers/61/03/9781573226103.jpg'), - ('0373263678', 'Death Flies On Final (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/36/77/9780373263677.jpg'), - ('0553211404', 'Jane Eyre (Bantam Classics)', 'https://images.isbndb.com/covers/14/05/9780553211405.jpg'), - ('0679447393', 'The Orchid Thief', 'https://images.isbndb.com/covers/73/99/9780679447399.jpg'), - ('0380718650', 'Fear In Fenway: A Duffy House Mystery', 'https://images.isbndb.com/covers/86/58/9780380718658.jpg'), - ('0373263953', 'Poison Apples (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/39/50/9780373263950.jpg'), - ('0515102652', 'The Cat Who Talked To Ghosts (The Cat Who...)', 'https://images.isbndb.com/covers/26/59/9780515102659.jpg'), - ('0312263996', 'Timbuktu: A Novel', 'https://images.isbndb.com/covers/39/97/9780312263997.jpg'), - ('1400032717', 'The Curious Incident Of The Dog In The Night-Time', 'https://images.isbndb.com/covers/27/16/9781400032716.jpg'), - ('0595315070', 'Public Spirituality: A Personal Workbook', 'https://images.isbndb.com/covers/50/79/9780595315079.jpg'), - ('1594200106', 'The Shadow Of The Wind: A Novel', 'https://images.isbndb.com/covers/01/06/9781594200106.jpg'), - ('1589880013', 'The Verb To Bird', 'https://images.isbndb.com/covers/00/16/9781589880016.jpg'), - ('0553250515', 'The Member Of The Wedding', 'https://images.isbndb.com/covers/05/10/9780553250510.jpg'), - ('0374100128', 'The Corrections', 'https://images.isbndb.com/covers/01/24/9780374100124.jpg'), - ('0452283868', 'Sula (Oprah''s Book Club)', 'https://images.isbndb.com/covers/38/62/9780452283862.jpg'), - ('0446610380', 'Parable Of The Talents', 'https://images.isbndb.com/covers/03/84/9780446610384.jpg'), - ('0061097314', 'The Bean Trees: A Novel', 'https://images.isbndb.com/covers/73/17/9780061097317.jpg'), - ('074325547X', 'Plan Of Attack', 'https://images.isbndb.com/covers/54/79/9780743255479.jpg'), - ('158988003X', 'So Many Books: Reading And Publishing In An Age Of Abundance', 'https://images.isbndb.com/covers/00/30/9781589880030.jpg'), - ('1573222453', 'The Kite Runner', 'https://images.isbndb.com/covers/24/57/9781573222457.jpg'), - ('0140119906', 'Love In The Time Of Cholera (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/99/09/9780140119909.jpg'), - ('0395873347', 'Taylor''s 50 Best Roses: Easy Plants For More Beautiful Gardens', 'https://images.isbndb.com/covers/33/42/9780395873342.jpg'), - ('0446677426', 'A Woman''s Liberation: A Choice Of Futures By And About Women', 'https://images.isbndb.com/covers/74/24/9780446677424.jpg'), - ('0393308839', 'Flash Fiction: 72 Very Short Stories', 'https://images.isbndb.com/covers/88/39/9780393308839.jpg'), - ('0451524039', 'The Diary Of A Madman And Other Stories: The Nose; The Carriage; The Overcoat; Taras Bulba (Signet Classics)', 'https://images.isbndb.com/covers/40/34/9780451524034.jpg'), - ('0060548533', 'The Buying Of The President 2004: Who''s Really Bankrolling Bush And His Democratic Challengers--and What They Expect In Return', 'https://images.isbndb.com/covers/85/37/9780060548537.jpg'), - ('1885266480', 'The Open Door', 'https://images.isbndb.com/covers/64/84/9781885266484.jpg'), - ('0060987049', 'Microserfs', 'https://images.isbndb.com/covers/70/46/9780060987046.jpg'), - ('0571169341', 'Arcadia: A Play', 'https://images.isbndb.com/covers/93/44/9780571169344.jpg'), - ('0060504080', 'Small Wonder: Essays', 'https://images.isbndb.com/covers/40/83/9780060504083.jpg'), - ('0679749861', 'Race Matters', 'https://images.isbndb.com/covers/98/68/9780679749868.jpg'), - ('0684853701', 'A BEAUTIFUL MIND: A Biography Of John Forbes Nash, Jr., Winner Of The Nobel Prize In Economics, 1994', 'https://images.isbndb.com/covers/37/03/9780684853703.jpg'), - ('0374521409', 'The Night Trilogy: Night, Dawn, The Accident', 'https://images.isbndb.com/covers/14/00/9780374521400.jpg'), - ('0140445277', 'The Brothers Karamazov (Penguin Classics)', 'https://images.isbndb.com/covers/52/75/9780140445275.jpg'), - ('0684831546', 'Accordion Crimes', 'https://images.isbndb.com/covers/15/41/9780684831541.jpg'), - ('0345404475', 'Do Androids Dream Of Electric Sheep?', 'https://images.isbndb.com/covers/44/73/9780345404473.jpg'), - ('0375404929', 'For The Relief Of Unbearable Urges: Stories', 'https://images.isbndb.com/covers/49/24/9780375404924.jpg'), - ('0684857820', 'Lucky', 'https://images.isbndb.com/covers/78/24/9780684857824.jpg'), - ('0140051317', 'Tales Of The Unexpected', 'https://images.isbndb.com/covers/13/15/9780140051315.jpg'), - ('0553291890', 'More Than One Universe: The Collected Stories Of Arthur C. Clarke', 'https://images.isbndb.com/covers/18/96/9780553291896.jpg'), - ('0586213333', 'Nemesis (The Indigo Saga, Book 1)', 'https://images.isbndb.com/covers/33/39/9780586213339.jpg'), - ('2080707590', 'Lais De Marie De France', 'https://images.isbndb.com/covers/75/98/9782080707598.jpg'), - ('2715223528', 'La Gare Des Faux Départs', 'https://images.isbndb.com/covers/35/23/9782715223523.jpg'), - ('2246567610', '99 Francs', 'https://images.isbndb.com/covers/76/15/9782246567615.jpg'), - ('2253153427', 'Musc', 'https://images.isbndb.com/covers/34/29/9782253153429.jpg'), - ('2883531714', 'Les Quatre Accords Toltèques - La Voie De La Liberté Personnelle', 'https://images.isbndb.com/covers/17/10/9782883531710.jpg'), - ('2266083309', 'Le Colonel Chabert', 'https://images.isbndb.com/covers/33/00/9782266083300.jpg'), - ('2070383326', 'Les Chemins De La Faim', 'https://images.isbndb.com/covers/33/20/9782070383320.jpg'), - ('2290045799', 'Vol De Sucettes Suivi De Recel De Bâtons Et Autres Nouvelles', 'https://images.isbndb.com/covers/57/94/9782290045794.jpg'), - ('2264010991', 'Nocturne Indien', 'https://images.isbndb.com/covers/09/95/9782264010995.jpg'), - ('0449207331', 'Iberia', 'https://images.isbndb.com/covers/73/38/9780449207338.jpg'), - ('0060092645', 'My Favorite Bride (Governess Brides, Book 6)', 'https://images.isbndb.com/covers/26/41/9780060092641.jpg'), - ('0451207378', 'Ravished (Signet Historical Romance)', 'https://images.isbndb.com/covers/73/71/9780451207371.jpg'), - ('0061031755', 'The Promise In A Kiss (Cynster Novels)', 'https://images.isbndb.com/covers/17/55/9780061031755.jpg'), - ('0812551583', 'Someplace To Be Flying', 'https://images.isbndb.com/covers/15/87/9780812551587.jpg'), - ('0743410653', 'Booked To Die (Cliff Janeway Novels)', 'https://images.isbndb.com/covers/06/56/9780743410656.jpg'), - ('0684864711', 'Pure Poetry: A Novel', 'https://images.isbndb.com/covers/47/16/9780684864716.jpg'), - ('1582430748', 'The Great Petrowski: An Illustrated Fable', 'https://images.isbndb.com/covers/07/44/9781582430744.jpg'), - ('0684846861', 'In The Land Of Men: Stories', 'https://images.isbndb.com/covers/68/66/9780684846866.jpg'), - ('0743200349', 'The Third Miracle: A Novel', 'https://images.isbndb.com/covers/03/49/9780743200349.jpg'), - ('0761521097', 'Today I Will Indulge My Inner Glutton: Health-Free Affirmations For Cynics', 'https://images.isbndb.com/covers/10/99/9780761521099.jpg'), - ('0446674109', 'The Angry Clam', 'https://images.isbndb.com/covers/41/02/9780446674102.jpg'), - ('0849937361', 'Well Connected', 'https://images.isbndb.com/covers/73/61/9780849937361.jpg'), - ('0140124373', 'Red Dwarf', 'https://images.isbndb.com/covers/43/78/9780140124378.jpg'), - ('1853811262', 'Cats Eye', 'https://images.isbndb.com/covers/12/65/9781853811265.jpg'), - ('0450411435', 'It', 'https://images.isbndb.com/covers/14/34/9780450411434.jpg'), - ('0749309636', 'Black Angel', 'https://images.isbndb.com/covers/96/33/9780749309633.jpg'), - ('0375704973', 'The Lake Of Darkness', 'https://images.isbndb.com/covers/49/70/9780375704970.jpg'), - ('034543059X', 'Fatal Charms And Other Tales Of Today/The Mansions Of Limbo (Omnibus)', 'https://images.isbndb.com/covers/05/95/9780345430595.jpg'), - ('037541309X', 'Balzac And The Little Chinese Seamstress : A Novel', 'https://images.isbndb.com/covers/30/94/9780375413094.jpg'), - ('0752848011', 'When She Was Bad...', 'https://images.isbndb.com/covers/80/13/9780752848013.jpg'), - ('1580083412', 'What Color Is Your Parachute?', 'https://images.isbndb.com/covers/34/16/9781580083416.jpg'), - ('0140236716', 'Going In', 'https://images.isbndb.com/covers/67/12/9780140236712.jpg'), - ('0380973499', 'War''s End: An Eyewitness Account Of America''s Last Atomic Mission', 'https://images.isbndb.com/covers/34/91/9780380973491.jpg'), - ('0684867184', 'Comrades: Brothers, Fathers, Heroes, Sons, Pals', 'https://images.isbndb.com/covers/71/82/9780684867182.jpg'), - ('031224116X', 'Murder On The Mauretania (George Porter Dillman And Genevieve Masefield Mysteries)', 'https://images.isbndb.com/covers/11/62/9780312241162.jpg'), - ('0385319622', 'American Chica: Two Worlds, One Childhood', 'https://images.isbndb.com/covers/96/21/9780385319621.jpg'), - ('1557507422', 'The Damned Don''t Drown: The Sinking Of The Wilhelm Gustloff (Bluejacket Books)', 'https://images.isbndb.com/covers/74/26/9781557507426.jpg'), - ('1853673110', 'War On Eastern Front (Greenhill Military Paperbacks)', 'https://images.isbndb.com/covers/31/15/9781853673115.jpg'), - ('0917298551', 'Frontier Soldier: An Enlisted Man''s Journal Of The Sioux And Nez Perce Campaigns, 1877', 'https://images.isbndb.com/covers/85/54/9780917298554.jpg'), - ('0891415947', 'August 1944: Campaign For France', 'https://images.isbndb.com/covers/59/47/9780891415947.jpg'), - ('0804100039', 'If You Survive: From Normandy To The Battle Of The Bulge To The End Of World War II, One American Officer''s Riveting True Story', 'https://images.isbndb.com/covers/00/38/9780804100038.jpg'), - ('0440236304', 'Currahee!: A Screaming Eagle At Normandy', 'https://images.isbndb.com/covers/63/06/9780440236306.jpg'), - ('0060937114', 'First Mothers: The Women Who Shaped The Presidents', 'https://images.isbndb.com/covers/71/19/9780060937119.jpg'), - ('0060183527', 'Our Kind Of People: Inside America''s Black Upper Class', 'https://images.isbndb.com/covers/35/23/9780060183523.jpg'), - ('081288518X', 'Queen Of Ice, Queen Of Shadows: The Unsuspected Life Of Sonja Henie', 'https://images.isbndb.com/covers/51/87/9780812885187.jpg'), - ('038549565X', 'Ghost Soldiers: The Epic Account Of World War II''s Greatest Rescue Mission', 'https://images.isbndb.com/covers/56/53/9780385495653.jpg'), - ('0743201981', 'Always Faithful: A Memoir Of The Marine Dogs Of WWII', 'https://images.isbndb.com/covers/19/88/9780743201988.jpg'), - ('0767908244', 'German Boy: A Child In War', 'https://images.isbndb.com/covers/82/45/9780767908245.jpg'), - ('0743203399', 'The Wild Blue: The Men And Boys Who Flew The B-24s Over Germany 1944-45', 'https://images.isbndb.com/covers/33/95/9780743203395.jpg'), - ('0688158943', 'Waiting To Fly: My Escapades With The Penguins Of Antarctica', 'https://images.isbndb.com/covers/89/41/9780688158941.jpg'), - ('0140018328', 'Kiss Kiss (French Language Edition) (French Edition)', 'https://images.isbndb.com/covers/83/25/9780140018325.jpg'), - ('0515100072', 'Crossed Swords', 'https://images.isbndb.com/covers/00/75/9780515100075.jpg'), - ('0553579606', 'Ashes To Ashes', 'https://images.isbndb.com/covers/96/04/9780553579604.jpg'), - ('0553282069', 'Forbidden Land: First Americans, Book III (Vol 3)', 'https://images.isbndb.com/covers/20/61/9780553282061.jpg'), - ('0385177259', 'Foundation''s Edge', 'https://images.isbndb.com/covers/72/52/9780385177252.jpg'), - ('0373201451', 'A Daddy Again (By Request) (Harlequin By Request)', 'https://images.isbndb.com/covers/14/57/9780373201457.jpg'), - ('0061013439', 'The Run', 'https://images.isbndb.com/covers/34/30/9780061013430.jpg'), - ('0553080237', 'A Sorrow In Our Heart: The Life Of Tecumseh', 'https://images.isbndb.com/covers/02/30/9780553080230.jpg'), - ('0679459596', 'Billy Straight: A Novel', 'https://images.isbndb.com/covers/95/90/9780679459590.jpg'), - ('0393038173', 'How Late It Was, How Late', 'https://images.isbndb.com/covers/81/70/9780393038170.jpg'), - ('0553578901', 'The Hostage Bride', 'https://images.isbndb.com/covers/89/04/9780553578904.jpg'), - ('0446605786', 'The Royals', 'https://images.isbndb.com/covers/57/86/9780446605786.jpg'), - ('0609609068', 'The Book Of Eleanor', 'https://images.isbndb.com/covers/90/64/9780609609064.jpg'), - ('0500011931', 'Case Of Walter Pater', 'https://images.isbndb.com/covers/19/35/9780500011935.jpg'), - ('0531150259', 'Judith Gautier: A Biography', 'https://images.isbndb.com/covers/02/52/9780531150252.jpg'), - ('0805205454', 'Ladies Of Seneca Falls (Studies In The Life Of Women)', 'https://images.isbndb.com/covers/54/59/9780805205459.jpg'), - ('0425193896', 'Cutwork (Needlecraft Mystery)', 'https://images.isbndb.com/covers/38/91/9780425193891.jpg'), - ('0345382846', 'Here Be Dragons', 'https://images.isbndb.com/covers/28/49/9780345382849.jpg'), - ('0312115067', 'Judith Sargent Murray: A Brief Biography With Documents (Bedford Series In History & Culture)', 'https://images.isbndb.com/covers/50/67/9780312115067.jpg'), - ('0345413938', 'Hunger Pains: The Modern Woman''s Tragic Quest For Thinness', 'https://images.isbndb.com/covers/39/32/9780345413932.jpg'), - ('0345283945', 'A Distant Mirror -The Calamitous 14th Century', 'https://images.isbndb.com/covers/39/48/9780345283948.jpg'), - ('0060934239', 'Daughters Of Britannia: The Lives And Times Of Diplomatic Wives', 'https://images.isbndb.com/covers/42/31/9780060934231.jpg'), - ('006099486X', 'The Professor And The Madman: A Tale Of Murder, Insanity, And The Making Of The Oxford English Dictionary', 'https://images.isbndb.com/covers/48/60/9780060994860.jpg'), - ('0306809893', 'The Sisters Of Henry VIII: The Tumultuous Lives Of Margaret Of Scotland And Mary Of France', 'https://images.isbndb.com/covers/98/97/9780306809897.jpg'), - ('0060185430', 'Ladies Of The Grand Tour: British Women In Pursuit Of Enlightenment And Adventure In Eighteenth-Century Europe', 'https://images.isbndb.com/covers/54/35/9780060185435.jpg'), - ('0060987383', 'Royal Blood: Richard III And The Mystery Of The Princes', 'https://images.isbndb.com/covers/73/81/9780060987381.jpg'), - ('0306811596', 'A Delusion Of Satan: The Full Story Of The Salem Witch Trials', 'https://images.isbndb.com/covers/15/93/9780306811593.jpg'), - ('0789410842', 'Ultimate Christmas', 'https://images.isbndb.com/covers/08/49/9780789410849.jpg'), - ('068485080X', 'Diana: 1961-1997 Her True Story', 'https://images.isbndb.com/covers/08/01/9780684850801.jpg'), - ('0684841347', 'One Day My Soul Just Opened Up: 40 Days And 40 Nights Toward Spiritual Strength And Personal Growth', 'https://images.isbndb.com/covers/13/42/9780684841342.jpg'), - ('1567310265', 'Boost Your Brain Power : A Total Program To Strengthen And Expand Your Most Important Resource', 'https://images.isbndb.com/covers/02/69/9781567310269.jpg'), - ('044652087X', 'My Sergei: A Love Story', 'https://images.isbndb.com/covers/08/74/9780446520874.jpg'), - ('0878911774', 'Algebra & Trigonometry Super Review', 'https://images.isbndb.com/covers/17/76/9780878911776.jpg'), - ('0060176628', 'The Trouble With A Hot Summer: A Simona Griffo Mystery (Simona Griffo Mysteries)', 'https://images.isbndb.com/covers/66/24/9780060176624.jpg'), - ('0670855030', 'INSOMNIA', 'https://images.isbndb.com/covers/50/32/9780670855032.jpg'), - ('0517064626', 'Mary Higgins Clark: Three Complete Novels: Weep No More, My Lady; Stillwatch; A Cry In The Night', 'https://images.isbndb.com/covers/46/27/9780517064627.jpg'), - ('0684810387', 'Moonlight Becomes You', 'https://images.isbndb.com/covers/03/86/9780684810386.jpg'), - ('0931580439', 'How To Survive The Loss Of A Love', 'https://images.isbndb.com/covers/04/37/9780931580437.jpg'), - ('0440183057', 'Stillwatch', 'https://images.isbndb.com/covers/30/51/9780440183051.jpg'), - ('0380709333', 'The Art Of Living Single', 'https://images.isbndb.com/covers/93/35/9780380709335.jpg'), - ('0671769200', 'If You Really Loved Me', 'https://images.isbndb.com/covers/92/08/9780671769208.jpg'), - ('0884042642', 'Self Analysis', 'https://images.isbndb.com/covers/26/48/9780884042648.jpg'), - ('0671250671', 'The Road Less Traveled: A New Psychology Of Love, Traditional Values, And Spiritual Growth', 'https://images.isbndb.com/covers/06/76/9780671250676.jpg'), - ('0553067966', 'The Simple Living Guide: A Sourcebook For Less Stressful, More Joyful Living', 'https://images.isbndb.com/covers/79/65/9780553067965.jpg'), - ('0440507294', 'Real Moments: Discover The Secret For True Happiness', 'https://images.isbndb.com/covers/72/91/9780440507291.jpg'), - ('0553212141', 'Heart Of Darkness And The Secret Sharer (Bantam Classics)', 'https://images.isbndb.com/covers/21/43/9780553212143.jpg'), - ('0671602705', 'How To Run A Traditional Jewish Household', 'https://images.isbndb.com/covers/27/03/9780671602703.jpg'), - ('0843946385', 'Drawn To The Grave', 'https://images.isbndb.com/covers/63/83/9780843946383.jpg'), - ('0439978238', 'Viaduct Child', 'https://images.isbndb.com/covers/82/31/9780439978231.jpg'), - ('0743200985', 'Tis: A Memoir', 'https://images.isbndb.com/covers/09/81/9780743200981.jpg'), - ('0425118703', 'Midnight', 'https://images.isbndb.com/covers/87/02/9780425118702.jpg'), - ('9510236756', 'Minun Sukuni Tarina (Finnish Edition)', 'https://images.isbndb.com/covers/67/58/9789510236758.jpg'), - ('0349100136', 'If This Is A Man And The Truce', 'https://images.isbndb.com/covers/01/35/9780349100135.jpg'), - ('2070367622', 'Paroles', 'https://images.isbndb.com/covers/76/27/9782070367627.jpg'), - ('0811802981', 'The Golden Mean: In Which The Extraordinary Correspondence Of Griffin & Sabine Concludes', 'https://images.isbndb.com/covers/29/87/9780811802987.jpg'), - ('0486415910', 'A Connecticut Yankee In King Arthur''s Court (Dover Thrift Editions)', 'https://images.isbndb.com/covers/59/18/9780486415918.jpg'), - ('0380792737', 'Island Of The Sequined Love Nun', 'https://images.isbndb.com/covers/27/33/9780380792733.jpg'), - ('1877856916', 'Exploring National Parks', 'https://images.isbndb.com/covers/69/14/9781877856914.jpg'), - ('0571200435', 'Buddha Of Suburbia (FF Classics)', 'https://images.isbndb.com/covers/04/36/9780571200436.jpg'), - ('0446604763', 'Mayday', 'https://images.isbndb.com/covers/47/65/9780446604765.jpg'), - ('0060516283', 'Gallow''s Thief', 'https://images.isbndb.com/covers/62/84/9780060516284.jpg'), - ('1590210301', 'Peacetalk 101', 'https://images.isbndb.com/covers/03/07/9781590210307.jpg'), - ('1573245216', 'The Giving Heart: Unlocking The Transformative Power Of Generosity In Your Life', 'https://images.isbndb.com/covers/52/10/9781573245210.jpg'), - ('1567313671', 'Gratitude: Affirming The Good Things In Life', 'https://images.isbndb.com/covers/36/73/9781567313673.jpg'), - ('1878424424', 'The Mastery Of Love: A Practical Guide To The Art Of Relationship: A Toltec Wisdom Book', 'https://images.isbndb.com/covers/44/26/9781878424426.jpg'), - ('0553109839', 'The Patient', 'https://images.isbndb.com/covers/98/32/9780553109832.jpg'), - ('0316639842', 'Unnatural Exposure', 'https://images.isbndb.com/covers/98/42/9780316639842.jpg'), - ('0140296409', 'Disgrace', 'https://images.isbndb.com/covers/64/02/9780140296402.jpg'), - ('3442442354', 'Der Strand: Roman', 'https://images.isbndb.com/covers/23/55/9783442442355.jpg'), - ('0451192613', 'Irresistible Impulse', 'https://images.isbndb.com/covers/26/15/9780451192615.jpg'), - ('0451138481', 'Life Penalty (Signet)', 'https://images.isbndb.com/covers/84/84/9780451138484.jpg'), - ('0670891576', 'In The Heart Of The Sea: The Tragedy Of The Whaleship Essex', 'https://images.isbndb.com/covers/15/73/9780670891573.jpg'), - ('0395264758', 'Picture Palace', 'https://images.isbndb.com/covers/47/51/9780395264751.jpg'), - ('3442431875', 'Der Pferdeflüsterer: Roman', 'https://images.isbndb.com/covers/18/78/9783442431878.jpg'), - ('0140259112', 'Bed And Breakfast', 'https://images.isbndb.com/covers/91/17/9780140259117.jpg'), - ('0439339170', 'The Way Of The Apprentice (Star Wars: Jedi Quest, Book 1)', 'https://images.isbndb.com/covers/91/79/9780439339179.jpg'), - ('0375401598', 'Pandora: New Tales Of The Vampires', 'https://images.isbndb.com/covers/15/96/9780375401596.jpg'), - ('0553106678', 'Matarese Countdown, The', 'https://images.isbndb.com/covers/66/71/9780553106671.jpg'), - ('0684802988', 'Flood Tide', 'https://images.isbndb.com/covers/29/85/9780684802985.jpg'), - ('0061000043', 'A Thief Of Time (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/00/41/9780061000041.jpg'), - ('0312055145', 'Shakespeare On Love: Quotations From The Plays & Poems', 'https://images.isbndb.com/covers/51/41/9780312055141.jpg'), - ('0060617225', 'The Way To Freedom: Core Teachings Of Tibetan Buddhism', 'https://images.isbndb.com/covers/72/26/9780060617226.jpg'), - ('1558214291', 'Dream Fish And Road Trips: Fly Fishing Tales From Alaska, Montana, And Beyond', 'https://images.isbndb.com/covers/42/93/9781558214293.jpg'), - ('0349100373', 'Dreams Of Dead Womens Handbags (Abacus Books)', 'https://images.isbndb.com/covers/03/71/9780349100371.jpg'), - ('0340542667', 'Canon Bang-bang', 'https://images.isbndb.com/covers/26/68/9780340542668.jpg'), - ('0380699176', '100 Great Fantasy Short, Short Stories', 'https://images.isbndb.com/covers/91/79/9780380699179.jpg'), - ('0151006725', 'Slammerkin: A Loose Dress, A Loose Woman', 'https://images.isbndb.com/covers/67/24/9780151006724.jpg'), - ('0525946241', 'Picture Maker: A Novel', 'https://images.isbndb.com/covers/62/43/9780525946243.jpg'), - ('0394751043', 'The King Must Die: A Novel', 'https://images.isbndb.com/covers/10/47/9780394751047.jpg'), - ('2070388425', 'La Part Manquante', 'https://images.isbndb.com/covers/84/24/9782070388424.jpg'), - ('2070427110', 'La Lumière Du Monde', 'https://images.isbndb.com/covers/71/16/9782070427116.jpg'), - ('2221081722', 'Le Scaphandre Et Le Papillon', 'https://images.isbndb.com/covers/17/23/9782221081723.jpg'), - ('2070388905', 'Comme Un Roman', 'https://images.isbndb.com/covers/89/05/9782070388905.jpg'), - ('2070756319', 'Le Dictateur Et Le Hamac', 'https://images.isbndb.com/covers/63/15/9782070756315.jpg'), - ('2253138916', 'Le Rocher De Tanios - Prix Goncourt 1993', 'https://images.isbndb.com/covers/89/14/9782253138914.jpg'), - ('0553263579', 'The Autobiography Of Miss Jane Pittman', 'https://images.isbndb.com/covers/35/72/9780553263572.jpg'), - ('0441007015', 'The Seven Songs Of Merlin (Lost Years Of Merlin, Bk. 2)', 'https://images.isbndb.com/covers/70/11/9780441007011.jpg'), - ('0553289411', 'The Plains Of Passage', 'https://images.isbndb.com/covers/94/11/9780553289411.jpg'), - ('0553258559', 'Dragondrums (Harper Hall Trilogy)', 'https://images.isbndb.com/covers/85/54/9780553258554.jpg'), - ('0394717406', 'Out Of Africa (Vintage Books, V740)', 'https://images.isbndb.com/covers/74/01/9780394717401.jpg'), - ('0141300272', 'It Was A Dark And Stormy Night', 'https://images.isbndb.com/covers/02/76/9780141300276.jpg'), - ('9500418606', 'Poderes Extraordinarios', 'https://images.isbndb.com/covers/86/07/9789500418607.jpg'), - ('0316588032', 'The Face', 'https://images.isbndb.com/covers/80/34/9780316588034.jpg'), - ('0671892479', 'Step-By-Step Tai Chi', 'https://images.isbndb.com/covers/24/70/9780671892470.jpg'), - ('0060011912', 'Small Town', 'https://images.isbndb.com/covers/19/18/9780060011918.jpg'), - ('044661064X', 'The First Counsel', 'https://images.isbndb.com/covers/06/43/9780446610643.jpg'), - ('0553211803', 'Middlemarch (Bantam Classics)', 'https://images.isbndb.com/covers/18/01/9780553211801.jpg'), - ('1551666839', 'Dead Run (Mira S.)', 'https://images.isbndb.com/covers/68/39/9781551666839.jpg'), - ('0374526893', 'A Sense Of Where You Are: Bill Bradley At Princeton', 'https://images.isbndb.com/covers/68/94/9780374526894.jpg'), - ('1583940634', 'The Diary Of A Teenage Girl: An Account In Words And Pictures', 'https://images.isbndb.com/covers/06/31/9781583940631.jpg'), - ('0805060200', 'Boy In The Water', 'https://images.isbndb.com/covers/02/01/9780805060201.jpg'), - ('0312872402', 'Kushiel''s Avatar', 'https://images.isbndb.com/covers/24/03/9780312872403.jpg'), - ('0312872399', 'Kushiel''s Chosen', 'https://images.isbndb.com/covers/23/97/9780312872397.jpg'), - ('0765342987', 'Kushiel''s Dart', 'https://images.isbndb.com/covers/29/80/9780765342980.jpg'), - ('0451456726', 'Heir To The Shadows (Black Jewels, Book 2)', 'https://images.isbndb.com/covers/67/24/9780451456724.jpg'), - ('0451456718', 'Daughter Of The Blood (Black Jewels, Book 1)', 'https://images.isbndb.com/covers/67/17/9780451456717.jpg'), - ('0451456734', 'Queen Of The Darkness (Black Jewels, Book 3)', 'https://images.isbndb.com/covers/67/31/9780451456731.jpg'), - ('0571154913', 'Remains Of The Day', 'https://images.isbndb.com/covers/49/13/9780571154913.jpg'), - ('0446530522', 'Cane River', 'https://images.isbndb.com/covers/05/21/9780446530521.jpg'), - ('0330327917', 'The Ice House', 'https://images.isbndb.com/covers/79/16/9780330327916.jpg'), - ('0786004886', 'The Mentor', 'https://images.isbndb.com/covers/48/81/9780786004881.jpg'), - ('0446674346', 'Cloud Mountain', 'https://images.isbndb.com/covers/43/48/9780446674348.jpg'), - ('0060092963', 'Adventures Of A Scottish Heiress', 'https://images.isbndb.com/covers/29/62/9780060092962.jpg'), - ('0060517611', 'The Lady In Question', 'https://images.isbndb.com/covers/76/18/9780060517618.jpg'), - ('0553802550', 'The Happiest Baby On The Block: The New Way To Calm Crying And Help Your Baby Sleep Longer', 'https://images.isbndb.com/covers/25/59/9780553802559.jpg'), - ('0425192695', 'Girls Of Summer', 'https://images.isbndb.com/covers/26/96/9780425192696.jpg'), - ('0760704767', 'Historical Whodunits', 'https://images.isbndb.com/covers/47/69/9780760704769.jpg'), - ('0671468464', 'King Lear', 'https://images.isbndb.com/covers/84/60/9780671468460.jpg'), - ('0440241286', 'Gun Monkeys', 'https://images.isbndb.com/covers/12/87/9780440241287.jpg'), - ('002026478X', 'Age Of Innocence (Movie Tie-in)', 'https://images.isbndb.com/covers/47/81/9780020264781.jpg'), - ('0743407148', 'Sherlock Holmes Vs. Dracula', 'https://images.isbndb.com/covers/71/44/9780743407144.jpg'), - ('0345447840', 'The Surgeon', 'https://images.isbndb.com/covers/78/45/9780345447845.jpg'), - ('0312977360', 'The Church Of Dead Girls: A Novel', 'https://images.isbndb.com/covers/73/68/9780312977368.jpg'), - ('0312992203', 'Buck Fever: A Blanco County, Texas, Novel', 'https://images.isbndb.com/covers/22/00/9780312992200.jpg'), - ('0312089449', 'Muckraking: Three Landmark Articles', 'https://images.isbndb.com/covers/94/43/9780312089443.jpg'), - ('096558383X', '20 Years Of Censored News', 'https://images.isbndb.com/covers/38/31/9780965583831.jpg'), - ('0140094903', 'A History Of News', 'https://images.isbndb.com/covers/49/09/9780140094909.jpg'), - ('034541103X', 'A Reporter''s Life', 'https://images.isbndb.com/covers/10/37/9780345411037.jpg'), - ('0345425286', 'News Is A Verb (Library Of Contemporary Thought)', 'https://images.isbndb.com/covers/52/87/9780345425287.jpg'), - ('0688179053', 'Deadlines And Datelines: Essays For A New Century', 'https://images.isbndb.com/covers/90/52/9780688179052.jpg'), - ('0451201507', 'Drudge Manifesto', 'https://images.isbndb.com/covers/15/08/9780451201508.jpg'), - ('0380760975', 'Tombley''s Walk', 'https://images.isbndb.com/covers/09/78/9780380760978.jpg'), - ('0553569791', 'The Last Innocent Man', 'https://images.isbndb.com/covers/97/97/9780553569797.jpg'), - ('038000772X', 'I''m OK-You''re OK', 'https://images.isbndb.com/covers/77/21/9780380007721.jpg'), - ('044661193X', 'Basket Case', 'https://images.isbndb.com/covers/19/30/9780446611930.jpg'), - ('0446401617', 'Where Echoes Live', 'https://images.isbndb.com/covers/16/16/9780446401616.jpg'), - ('0345428196', 'Outfoxed (Foxhunting Mysteries)', 'https://images.isbndb.com/covers/81/96/9780345428196.jpg'), - ('0553208799', 'Chancellor Manuscript', 'https://images.isbndb.com/covers/87/95/9780553208795.jpg'), - ('0821767747', 'Too Good To Be True', 'https://images.isbndb.com/covers/77/40/9780821767740.jpg'), - ('0446512923', 'Lord Of The Dance (Passover Trilogy)', 'https://images.isbndb.com/covers/29/23/9780446512923.jpg'), - ('0060955406', 'The Peculiar Memories Of Thomas Penman', 'https://images.isbndb.com/covers/54/03/9780060955403.jpg'), - ('0380793059', 'To Bury The Dead', 'https://images.isbndb.com/covers/30/51/9780380793051.jpg'), - ('0440419468', 'Holes', 'https://images.isbndb.com/covers/94/64/9780440419464.jpg'), - ('0446359866', 'Presumed Innocent: A Novel', 'https://images.isbndb.com/covers/98/63/9780446359863.jpg'), - ('0446602612', 'The Poet', 'https://images.isbndb.com/covers/26/17/9780446602617.jpg'), - ('0446612790', '2nd Chance (The Women''s Murder Club)', 'https://images.isbndb.com/covers/27/91/9780446612791.jpg'), - ('0671676253', 'The ABYSS', 'https://images.isbndb.com/covers/62/54/9780671676254.jpg'), - ('0446606383', 'The Midnight Club', 'https://images.isbndb.com/covers/63/87/9780446606387.jpg'), - ('0553213148', 'Anne Of Avonlea (Anne Of Green Gables, Book 2)', 'https://images.isbndb.com/covers/31/40/9780553213140.jpg'), - ('0380725584', 'The Indian In The Cupboard', 'https://images.isbndb.com/covers/55/88/9780380725588.jpg'), - ('0679401032', 'Uh-Oh: Some Observations From Both Sides Of The Refrigerator Door', 'https://images.isbndb.com/covers/10/32/9780679401032.jpg'), - ('0394580567', 'It Was On Fire When I Lay Down On It', 'https://images.isbndb.com/covers/05/62/9780394580562.jpg'), - ('0394571029', 'All I Really Need To Know I Learned In Kindergarten: Uncommon Thoughts On Common Things', 'https://images.isbndb.com/covers/10/27/9780394571027.jpg'), - ('0440128994', 'God Save The Child', 'https://images.isbndb.com/covers/89/91/9780440128991.jpg'), - ('0590455761', 'One Hungry Monster', 'https://images.isbndb.com/covers/57/63/9780590455763.jpg'), - ('0446365505', 'Pleading Guilty', 'https://images.isbndb.com/covers/55/05/9780446365505.jpg'), - ('0671531409', 'A Midsummer Night''s Dream (Folger Library General Readers Shakespeare)', 'https://images.isbndb.com/covers/14/09/9780671531409.jpg'), - ('002542730X', 'Politically Correct Bedtime Stories: Modern Tales For Our Life & Times', 'https://images.isbndb.com/covers/73/03/9780025427303.jpg'), - ('0804111898', 'Uh-Oh', 'https://images.isbndb.com/covers/18/98/9780804111898.jpg'), - ('0802132154', 'The Complete Plays: The Ruffian On The Stair, Entertaining Mr. Sloan, The Good And Faithful Servant, Loot, The Erpingham Camp, Funeral Games, What The Butler Saw', 'https://images.isbndb.com/covers/21/54/9780802132154.jpg'), - ('0025473905', 'Respect For Acting', 'https://images.isbndb.com/covers/39/04/9780025473904.jpg'), - ('0451203895', '4 Blondes', 'https://images.isbndb.com/covers/38/92/9780451203892.jpg'), - ('0345309014', 'Second Foundation(Foundation Trilogy, Book 3)', 'https://images.isbndb.com/covers/90/13/9780345309013.jpg'), - ('0345308999', 'Foundation (Foundation, No.1)', 'https://images.isbndb.com/covers/89/93/9780345308993.jpg'), - ('0345309006', 'FOUNDATION AND EMPIRE', 'https://images.isbndb.com/covers/90/06/9780345309006.jpg'), - ('0553272535', 'Night', 'https://images.isbndb.com/covers/25/36/9780553272536.jpg'), - ('0445406488', 'The Curse Of The Pharaohs (Amelia Peabody, Book 2)', 'https://images.isbndb.com/covers/64/83/9780445406483.jpg'), - ('0451209710', 'The Dewey Decimal System Of Love', 'https://images.isbndb.com/covers/97/19/9780451209719.jpg'), - ('0312865031', 'Gravelight', 'https://images.isbndb.com/covers/50/30/9780312865030.jpg'), - ('089190672X', 'Circus', 'https://images.isbndb.com/covers/67/28/9780891906728.jpg'), - ('0449219631', 'Jaws', 'https://images.isbndb.com/covers/96/38/9780449219638.jpg'), - ('0425104052', 'The Hound Of The Baskervilles', 'https://images.isbndb.com/covers/40/57/9780425104057.jpg'), - ('0425181464', 'Seduction In Death', 'https://images.isbndb.com/covers/14/61/9780425181461.jpg'), - ('0515090298', 'Catcher In The Wry', 'https://images.isbndb.com/covers/02/91/9780515090291.jpg'), - ('0345438353', 'A Case Of Conscience (Del Rey Impact)', 'https://images.isbndb.com/covers/83/55/9780345438355.jpg'), - ('0060298774', 'The Lives Of Christopher Chant (Chrestomanci Books)', 'https://images.isbndb.com/covers/87/77/9780060298777.jpg'), - ('0449212858', 'Rutland Place', 'https://images.isbndb.com/covers/28/51/9780449212851.jpg'), - ('0812505018', 'The Secret Garden', 'https://images.isbndb.com/covers/50/16/9780812505016.jpg'), - ('0671888021', 'Lame Deer, Seeker Of Visions (Enriched Classics)', 'https://images.isbndb.com/covers/80/22/9780671888022.jpg'), - ('0451458125', 'Fool Moon (The Dresden Files, Book 2)', 'https://images.isbndb.com/covers/81/24/9780451458124.jpg'), - ('0553213377', 'The Three Musketeers (Bantam Classic)', 'https://images.isbndb.com/covers/33/79/9780553213379.jpg'), - ('0142002054', 'Diamonds Are Forever (James Bond Novels)', 'https://images.isbndb.com/covers/20/56/9780142002056.jpg'), - ('067150987X', 'Winter''s Tale', 'https://images.isbndb.com/covers/98/73/9780671509873.jpg'), - ('0345347951', 'Childhood''s End', 'https://images.isbndb.com/covers/79/54/9780345347954.jpg'), - ('0425037827', 'Stranger In A Strange Land', 'https://images.isbndb.com/covers/78/29/9780425037829.jpg'), - ('0553574353', 'Helter Skelter: The True Story Of The Manson Murders', 'https://images.isbndb.com/covers/43/57/9780553574357.jpg'), - ('0553142046', 'Dragonsong', 'https://images.isbndb.com/covers/20/44/9780553142044.jpg'), - ('0786889527', 'Night Gardening', 'https://images.isbndb.com/covers/95/25/9780786889525.jpg'), - ('0441006345', 'Fantastic Alice: New Stories From Wonderland', 'https://images.isbndb.com/covers/63/42/9780441006342.jpg'), - ('0671721380', 'Wheels Of Fire (Serrated Edge 2)', 'https://images.isbndb.com/covers/13/81/9780671721381.jpg'), - ('0446356018', 'Cradle', 'https://images.isbndb.com/covers/60/15/9780446356015.jpg'), - ('067174139X', 'Masks (Star Trek The Next Generation, No 7)', 'https://images.isbndb.com/covers/13/96/9780671741396.jpg'), - ('0399136487', 'Damia', 'https://images.isbndb.com/covers/64/81/9780399136481.jpg'), - ('0671720139', 'Black Throne', 'https://images.isbndb.com/covers/01/31/9780671720131.jpg'), - ('039480001X', 'The Cat In The Hat', 'https://images.isbndb.com/covers/00/11/9780394800011.jpg'), - ('0345273303', 'Another Roadside Attraction', 'https://images.isbndb.com/covers/33/07/9780345273307.jpg'), - ('0446365661', 'Wall Of Brass', 'https://images.isbndb.com/covers/56/66/9780446365666.jpg'), - ('0749930888', 'Sisters In Arms', 'https://images.isbndb.com/covers/08/82/9780749930882.jpg'), - ('0440201101', 'MORE DIE/HEART BREAK', 'https://images.isbndb.com/covers/11/06/9780440201106.jpg'), - ('1857022424', 'The Shipping News', 'https://images.isbndb.com/covers/24/21/9781857022421.jpg'), - ('1561383619', 'The Quotable Traveler: Wise Words For Travelers, Explorers, And Wanderers (Miniature Editions)', 'https://images.isbndb.com/covers/36/10/9781561383610.jpg'), - ('068484477X', 'Stones From The River', 'https://images.isbndb.com/covers/47/70/9780684844770.jpg'), - ('0393317552', 'Guns, Germs, And Steel: The Fates Of Human Societies', 'https://images.isbndb.com/covers/75/58/9780393317558.jpg'), - ('0684853515', 'Hearts In Atlantis', 'https://images.isbndb.com/covers/35/12/9780684853512.jpg'), - ('0375504397', 'Black House', 'https://images.isbndb.com/covers/43/96/9780375504396.jpg'), - ('0452283205', 'Falling Angels', 'https://images.isbndb.com/covers/32/06/9780452283206.jpg'), - ('0374524912', 'Coyote V. Acme', 'https://images.isbndb.com/covers/49/13/9780374524913.jpg'), - ('0316779237', 'Holidays On Ice: Stories', 'https://images.isbndb.com/covers/92/34/9780316779234.jpg'), - ('0875427324', 'Witta: An Irish Pagan Tradition (Llewellyn''s World Religion & Magick)', 'https://images.isbndb.com/covers/73/24/9780875427324.jpg'), - ('0385421982', 'The Pelican Brief', 'https://images.isbndb.com/covers/19/80/9780385421980.jpg'), - ('0892962275', 'Black House', 'https://images.isbndb.com/covers/22/73/9780892962273.jpg'), - ('0393040135', 'Love Warps The Mind A Little', 'https://images.isbndb.com/covers/01/35/9780393040135.jpg'), - ('0679402470', 'Millroy The Magician', 'https://images.isbndb.com/covers/24/73/9780679402473.jpg'), - ('055344171X', 'The Princess And The Pea (Loveswept)', 'https://images.isbndb.com/covers/17/10/9780553441710.jpg'), - ('0733801862', 'Book Of D''Ni (Myst)', 'https://images.isbndb.com/covers/18/60/9780733801860.jpg'), - ('0875421180', 'Wicca: A Guide For The Solitary Practitioner (Includes Author''s Book Of Shadows)', 'https://images.isbndb.com/covers/11/86/9780875421186.jpg'), - ('055308013X', 'Private Eyes', 'https://images.isbndb.com/covers/01/31/9780553080131.jpg'), - ('0460872125', 'Pride & Prejudice (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/21/26/9780460872126.jpg'), - ('2020606291', 'Amours Sorcières (Export)', 'https://images.isbndb.com/covers/62/95/9782020606295.jpg'), - ('0345311965', 'Pebble In The Sky', 'https://images.isbndb.com/covers/19/62/9780345311962.jpg'), - ('0451139739', 'Christine (Signet)', 'https://images.isbndb.com/covers/97/33/9780451139733.jpg'), - ('0553236202', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/62/00/9780553236200.jpg'), - ('038072975X', 'Midnight Champagne: A Novel: A Novel', 'https://images.isbndb.com/covers/97/53/9780380729753.jpg'), - ('1885167172', 'Who''s Running Your Career?: Creating Stable Work In Unstable Times', 'https://images.isbndb.com/covers/71/70/9781885167170.jpg'), - ('0452261589', 'The Art And Craft Of Feature Writing: Based On The Wall Street Journal Guide', 'https://images.isbndb.com/covers/15/87/9780452261587.jpg'), - ('0374230072', 'Required Reading: Why Our American Classics Matter Now', 'https://images.isbndb.com/covers/00/74/9780374230074.jpg'), - ('014006690X', 'The Women Of Brewster Place (Penguin Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/69/06/9780140066906.jpg'), - ('0060975210', 'The Lover', 'https://images.isbndb.com/covers/52/10/9780060975210.jpg'), - ('0374521352', 'The Dwarf', 'https://images.isbndb.com/covers/13/56/9780374521356.jpg'), - ('0226424197', 'French Lessons: A Memoir', 'https://images.isbndb.com/covers/41/94/9780226424194.jpg'), - ('0316085251', 'The Boys Of My Youth', 'https://images.isbndb.com/covers/52/50/9780316085250.jpg'), - ('0874771641', 'Becoming A Writer', 'https://images.isbndb.com/covers/16/40/9780874771640.jpg'), - ('0451185560', 'Fear Of Flying', 'https://images.isbndb.com/covers/55/63/9780451185563.jpg'), - ('1853260401', 'The Three Musketeers (Wordsworth Classics)', 'https://images.isbndb.com/covers/04/07/9781853260407.jpg'), - ('0773760555', 'A Circle Of Silver (The Circle Of Silver Chronicles)', 'https://images.isbndb.com/covers/05/54/9780773760554.jpg'), - ('0553250531', 'Valley Of Horses', 'https://images.isbndb.com/covers/05/34/9780553250534.jpg'), - ('0553148001', 'The Clan Of The Cave Bear : A Novel', 'https://images.isbndb.com/covers/80/08/9780553148008.jpg'), - ('1579542085', 'Pets'' Letters To God', 'https://images.isbndb.com/covers/20/85/9781579542085.jpg'), - ('0671720414', 'Generation Warriors', 'https://images.isbndb.com/covers/04/14/9780671720414.jpg'), - ('0345275675', 'The White Dragon (The Dragonriders Of Pern)', 'https://images.isbndb.com/covers/56/77/9780345275677.jpg'), - ('024189865X', 'Bear''s Whelp', 'https://images.isbndb.com/covers/86/59/9780241898659.jpg'), - ('0773671358', 'Our Cops - Their Stories', 'https://images.isbndb.com/covers/13/55/9780773671355.jpg'), - ('0553284460', 'Oklahoma Pride (The Holts #2)', 'https://images.isbndb.com/covers/44/61/9780553284461.jpg'), - ('0440213525', 'The Client', 'https://images.isbndb.com/covers/35/29/9780440213529.jpg'), - ('0451188462', 'Desperation', 'https://images.isbndb.com/covers/84/65/9780451188465.jpg'), - ('034525855X', 'A Spell For Chameleon (The Magic Of Xanth, No. 1)', 'https://images.isbndb.com/covers/85/57/9780345258557.jpg'), - ('0441135560', 'Damia (Rowan)', 'https://images.isbndb.com/covers/55/61/9780441135561.jpg'), - ('3789131202', 'Der Prinz Und Der Bottelknabe: Oder Erzähl Mir Vom Dow Jones', 'https://images.isbndb.com/covers/12/02/9783789131202.jpg'), - ('0195103793', 'Managing Your Mind: The Mental Fitness Guide', 'https://images.isbndb.com/covers/37/93/9780195103793.jpg'), - ('0816303630', 'It Must Have Been An Angel (Redwood Paperback; 119)', 'https://images.isbndb.com/covers/36/32/9780816303632.jpg'), - ('0811807282', 'The Secret Language Of Dreams: A Visual Key To Dreams And Their Meanings', 'https://images.isbndb.com/covers/72/89/9780811807289.jpg'), - ('0671019449', 'FLOWERS IN THE ATTIC (Dollanganger Series)', 'https://images.isbndb.com/covers/94/40/9780671019440.jpg'), - ('0152105328', 'The Borrowers Avenged', 'https://images.isbndb.com/covers/53/27/9780152105327.jpg'), - ('0060283122', 'The Bad Beginning (A Series Of Unfortunate Events, Book 1)', 'https://images.isbndb.com/covers/31/24/9780060283124.jpg'), - ('0439136350', 'Harry Potter And The Prisoner Of Azkaban (Book 3)', 'https://images.isbndb.com/covers/63/58/9780439136358.jpg'), - ('0671028367', 'Deadly Decisions (Temperance Brennan, No. 3)', 'https://images.isbndb.com/covers/83/67/9780671028367.jpg'), - ('0028642333', 'The Complete Idiot''s Guide To Understanding Islam (The Complete Idiot''s Guide)', 'https://images.isbndb.com/covers/23/38/9780028642338.jpg'), - ('0440235642', 'Black May : The Epic Story Of The Allies'' Defeat Of The German U-Boats In May 1943', 'https://images.isbndb.com/covers/56/44/9780440235644.jpg'), - ('0330486705', 'Louise Brindley Omnibus (Pb)', 'https://images.isbndb.com/covers/67/05/9780330486705.jpg'), - ('0670881872', 'An Incidental Memoir', 'https://images.isbndb.com/covers/18/71/9780670881871.jpg'), - ('0440111811', 'Changes', 'https://images.isbndb.com/covers/18/18/9780440111818.jpg'), - ('0064400557', 'Charlotte''s Web (Trophy Newbery)', 'https://images.isbndb.com/covers/05/58/9780064400558.jpg'), - ('067166607X', 'Bambi: A Life In The Woods', 'https://images.isbndb.com/covers/60/71/9780671666071.jpg'), - ('0312870582', '01-01-00', 'https://images.isbndb.com/covers/05/84/9780312870584.jpg'), - ('3423123222', 'Verlorene Wünsche.', 'https://images.isbndb.com/covers/32/28/9783423123228.jpg'), - ('3453064038', 'Incubus.', 'https://images.isbndb.com/covers/40/34/9783453064034.jpg'), - ('3404122631', 'Sonnenfeuer', 'https://images.isbndb.com/covers/26/39/9783404122639.jpg'), - ('3596134153', 'Die Klage Des Distelfinken', 'https://images.isbndb.com/covers/41/51/9783596134151.jpg'), - ('3453061187', 'Die Jury: Roman', 'https://images.isbndb.com/covers/11/87/9783453061187.jpg'), - ('3423107421', 'Der Ritter, Den Es Nicht Gab: Roman', 'https://images.isbndb.com/covers/74/26/9783423107426.jpg'), - ('3453161394', 'Der Gefallene Engel', 'https://images.isbndb.com/covers/13/99/9783453161399.jpg'), - ('3579007335', 'Muslimische Frauen In Deutschland Erzählen über Ihren Glauben', 'https://images.isbndb.com/covers/73/35/9783579007335.jpg'), - ('3257229372', 'Liebessabotage', 'https://images.isbndb.com/covers/93/70/9783257229370.jpg'), - ('3453088530', 'Alistair MacLean''s Zeit Der Attentäter', 'https://images.isbndb.com/covers/85/35/9783453088535.jpg'), - ('345305136X', 'Das Schweigen Der Lämmer', 'https://images.isbndb.com/covers/13/62/9783453051362.jpg'), - ('3257224974', 'Die Wahrheit über Lorin Jones: Roman', 'https://images.isbndb.com/covers/49/79/9783257224979.jpg'), - ('3404139674', 'Operation Schneewolf: Thriller', 'https://images.isbndb.com/covers/96/75/9783404139675.jpg'), - ('3442353793', 'Des Teufels Kardinal: Roman', 'https://images.isbndb.com/covers/37/98/9783442353798.jpg'), - ('3596129397', 'Mit Fünfzig Küssen Männer Anders.', 'https://images.isbndb.com/covers/93/93/9783596129393.jpg'), - ('3548257623', 'Die Zuckerbäckerin: Roman', 'https://images.isbndb.com/covers/76/24/9783548257624.jpg'), - ('3746613531', 'Kleine Schwäne: Kriminalroman', 'https://images.isbndb.com/covers/35/36/9783746613536.jpg'), - ('3746618169', 'Tango Finale', 'https://images.isbndb.com/covers/81/66/9783746618166.jpg'), - ('9972847012', 'Los Amigos Que Perdí (Spanish Edition)', 'https://images.isbndb.com/covers/70/11/9789972847011.jpg'), - ('9582700319', 'Manuela (Narrativa Colombiana) (Spanish Edition)', 'https://images.isbndb.com/covers/03/17/9789582700317.jpg'), - ('3257228031', 'Flamingofeder', 'https://images.isbndb.com/covers/80/38/9783257228038.jpg'), - ('3548248845', 'Der Fluch Des Falken', 'https://images.isbndb.com/covers/88/44/9783548248844.jpg'), - ('3446178694', 'Der Virtuose: Roman', 'https://images.isbndb.com/covers/86/94/9783446178694.jpg'), - ('3453198840', 'Der Gesang Des Troubadours', 'https://images.isbndb.com/covers/88/45/9783453198845.jpg'), - ('3404147294', 'Der Sohn Des Kreuzfahrers', 'https://images.isbndb.com/covers/72/98/9783404147298.jpg'), - ('3746619394', 'Die Provencalin', 'https://images.isbndb.com/covers/93/92/9783746619392.jpg'), - ('3426619857', 'Verso Casa', 'https://images.isbndb.com/covers/98/58/9783426619858.jpg'), - ('3499233045', 'Die Reise Nach Karlsbad.', 'https://images.isbndb.com/covers/30/43/9783499233043.jpg'), - ('3404142624', 'Der Schwarze Kelch', 'https://images.isbndb.com/covers/26/20/9783404142620.jpg'), - ('051604642X', 'The Story Of The U.S.S. Arizona (Cornerstones Of Freedom)', 'https://images.isbndb.com/covers/64/26/9780516046426.jpg'), - ('0380803151', 'Avalanche Soldier', 'https://images.isbndb.com/covers/31/56/9780380803156.jpg'), - ('0553568728', 'Star Wars: The Truce At Bakura', 'https://images.isbndb.com/covers/87/21/9780553568721.jpg'), - ('0553297988', 'Jedi Search (Star Wars: The Jedi Academy Trilogy, Vol. 1)', 'https://images.isbndb.com/covers/79/80/9780553297980.jpg'), - ('0671654209', 'The Burning Eye (Warworld, Book 1)', 'https://images.isbndb.com/covers/42/07/9780671654207.jpg'), - ('0884046818', 'Battlefield Earth: A Saga Of The Year 3000', 'https://images.isbndb.com/covers/68/13/9780884046813.jpg'), - ('0345289072', 'Inherit The Stars', 'https://images.isbndb.com/covers/90/70/9780345289070.jpg'), - ('0671720406', 'A Roil Of Stars', 'https://images.isbndb.com/covers/04/07/9780671720407.jpg'), - ('0345379802', 'The Han Solo Adventures: Han Solo At Stars'' End / Han Solo''s Revenge / Han Solo And The Lost Legacy (A Del Rey Book)', 'https://images.isbndb.com/covers/98/01/9780345379801.jpg'), - ('0886778697', 'The Faded Sun Trilogy: Kesrith, Shon''jir, And Kutath', 'https://images.isbndb.com/covers/86/99/9780886778699.jpg'), - ('0743435346', 'The Warmasters', 'https://images.isbndb.com/covers/53/45/9780743435345.jpg'), - ('0679448594', 'Primary Colors: A Novel Of Politics', 'https://images.isbndb.com/covers/85/94/9780679448594.jpg'), - ('0345313577', 'Job, A Comedy Of Justice', 'https://images.isbndb.com/covers/35/77/9780345313577.jpg'), - ('0671867172', 'The Lottery Winner: Alvirah And Willy Stories', 'https://images.isbndb.com/covers/71/71/9780671867171.jpg'), - ('0425189104', 'Murder On Mulberry Bend (Gaslight Mystery)', 'https://images.isbndb.com/covers/91/08/9780425189108.jpg'), - ('0061030635', 'WILD JUSTICE MM', 'https://images.isbndb.com/covers/06/35/9780061030635.jpg'), - ('0446613436', 'The Guardian', 'https://images.isbndb.com/covers/34/39/9780446613439.jpg'), - ('0449006530', 'Midnight Voices', 'https://images.isbndb.com/covers/65/35/9780449006535.jpg'), - ('006109157X', 'Dead Eyes', 'https://images.isbndb.com/covers/15/75/9780061091575.jpg'), - ('0440221315', 'The Gift', 'https://images.isbndb.com/covers/13/19/9780440221319.jpg'), - ('0553576011', 'Send No Flowers (Bed & Breakfast)', 'https://images.isbndb.com/covers/60/16/9780553576016.jpg'), - ('0451205294', 'Fatal Care', 'https://images.isbndb.com/covers/52/92/9780451205292.jpg'), - ('0345444892', 'Murder At Ford''s Theatre (Capital Crimes)', 'https://images.isbndb.com/covers/48/99/9780345444899.jpg'), - ('0446527785', 'A Bend In The Road', 'https://images.isbndb.com/covers/77/81/9780446527781.jpg'), - ('0375500685', 'Murder At The Library Of Congress', 'https://images.isbndb.com/covers/06/88/9780375500688.jpg'), - ('0375503218', 'My Cat Spit McGee', 'https://images.isbndb.com/covers/32/14/9780375503214.jpg'), - ('0755310047', 'Josephine Cox: Child Of The North', 'https://images.isbndb.com/covers/00/43/9780755310043.jpg'), - ('0752851950', 'The Little Princesses: The Story Of The Queen''s Childhood By Her Nanny', 'https://images.isbndb.com/covers/19/52/9780752851952.jpg'), - ('0747257574', 'Somewhere, Someday', 'https://images.isbndb.com/covers/75/78/9780747257578.jpg'), - ('056353723X', 'Down To Earth', 'https://images.isbndb.com/covers/72/36/9780563537236.jpg'), - ('185326041X', 'The Great Gatsby (Wordsworth Classics)', 'https://images.isbndb.com/covers/04/14/9781853260414.jpg'), - ('0312272057', 'Dry: A Memoir', 'https://images.isbndb.com/covers/20/50/9780312272050.jpg'), - ('0142003190', 'A Noble Radiance (Guido Brunetti, No 7)', 'https://images.isbndb.com/covers/31/90/9780142003190.jpg'), - ('042518336X', 'American Fuji', 'https://images.isbndb.com/covers/33/66/9780425183366.jpg'), - ('0613329740', 'Quidditch Through The Ages', 'https://images.isbndb.com/covers/97/43/9780613329743.jpg'), - ('0613325419', 'Fantastic Beasts And Where To Find Them (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/54/17/9780613325417.jpg'), - ('156389470X', 'Stardust: Being A Romance Within The Realms Of Faerie', 'https://images.isbndb.com/covers/47/01/9781563894701.jpg'), - ('0439551234', 'Mister Monday (Keys To The Kingdom, Book 1)', 'https://images.isbndb.com/covers/12/36/9780439551236.jpg'), - ('058253531X', 'Magic Slippers (New Method Supplementary Readers)', 'https://images.isbndb.com/covers/53/12/9780582535312.jpg'), - ('0836218353', 'Yukon Ho!', 'https://images.isbndb.com/covers/83/50/9780836218350.jpg'), - ('2842772032', 'Paysages De Bretagne', 'https://images.isbndb.com/covers/20/31/9782842772031.jpg'), - ('0836204387', 'The Calvin And Hobbes Tenth Anniversary Book', 'https://images.isbndb.com/covers/43/84/9780836204384.jpg'), - ('0345441435', 'Prospero''s Children', 'https://images.isbndb.com/covers/14/30/9780345441430.jpg'), - ('0812504755', 'The Legend Of Sleepy Hollow (Tor Classics)', 'https://images.isbndb.com/covers/47/50/9780812504750.jpg'), - ('0836217225', 'Revelations From A 45-Pound Purse', 'https://images.isbndb.com/covers/72/23/9780836217223.jpg'), - ('0030181011', 'A Kiss On The Nose Turns Anger Aside', 'https://images.isbndb.com/covers/10/16/9780030181016.jpg'), - ('0064407055', 'Ella Enchanted (Trophy Newbery)', 'https://images.isbndb.com/covers/70/52/9780064407052.jpg'), - ('0553262505', 'A Wizard Of Earthsea (The Earthsea Cycle, Book 1)', 'https://images.isbndb.com/covers/25/06/9780553262506.jpg'), - ('0689710887', 'Greenwitch', 'https://images.isbndb.com/covers/08/89/9780689710889.jpg'), - ('0689710879', 'The Dark Is Rising', 'https://images.isbndb.com/covers/08/72/9780689710872.jpg'), - ('0020427859', 'Over Sea, Under Stone', 'https://images.isbndb.com/covers/78/58/9780020427858.jpg'), - ('031286258X', 'The Books Of Great Alta: Comprising ''Sister Light, Sister Dark'' And ''White Jenna''', 'https://images.isbndb.com/covers/25/89/9780312862589.jpg'), - ('0836217616', 'The Child Within Has Been Awakened But The Old Lady On The Outside Just Collapsed: A Cathy Collection', 'https://images.isbndb.com/covers/76/12/9780836217612.jpg'), - ('0316107018', 'Politically, Fashionably, And Aerodynamically Incorrect: The First Outland Collection (Bloom County)', 'https://images.isbndb.com/covers/70/13/9780316107013.jpg'), - ('0886777828', 'The Dreaming Tree', 'https://images.isbndb.com/covers/78/21/9780886777821.jpg'), - ('0441068804', 'The Blue Sword', 'https://images.isbndb.com/covers/88/07/9780441068807.jpg'), - ('0141309814', 'The Hero And The Crown', 'https://images.isbndb.com/covers/98/11/9780141309811.jpg'), - ('0679032983', 'Walt Disney World, Universal Studios And Orlando ''97: Your Complete Guide To All The Magic (Fodor''s Walt Disney World, Universal Orlando And Seaworld (Fall Edition))', 'https://images.isbndb.com/covers/29/84/9780679032984.jpg'), - ('0679408835', 'Dreaming In Cuban', 'https://images.isbndb.com/covers/88/33/9780679408833.jpg'), - ('0316096199', 'Lucky: A Memoir', 'https://images.isbndb.com/covers/61/95/9780316096195.jpg'), - ('0689829655', 'Hatchet', 'https://images.isbndb.com/covers/96/59/9780689829659.jpg'), - ('059045899X', 'Amber Brown Is Not A Crayon', 'https://images.isbndb.com/covers/89/93/9780590458993.jpg'), - ('0385238614', 'Girls In Suits At Lunch', 'https://images.isbndb.com/covers/86/18/9780385238618.jpg'), - ('0758201605', 'Last Writes (Jaine Austen Mysteries)', 'https://images.isbndb.com/covers/16/07/9780758201607.jpg'), - ('1561384755', 'The Jungle Book (Children''s Classics)', 'https://images.isbndb.com/covers/47/54/9781561384754.jpg'), - ('1562820575', 'Walt Disney''s The Jungle Book: Illustrated Classic', 'https://images.isbndb.com/covers/05/72/9781562820572.jpg'), - ('185854176X', 'Little Women', 'https://images.isbndb.com/covers/17/61/9781858541761.jpg'), - ('0786830425', 'Disney''s Pocahontas (Illustrated Classic)', 'https://images.isbndb.com/covers/04/28/9780786830428.jpg'), - ('088101270X', 'Peter Pan (Heirloom Classic)', 'https://images.isbndb.com/covers/27/05/9780881012705.jpg'), - ('0881012718', 'Pinocchio', 'https://images.isbndb.com/covers/27/12/9780881012712.jpg'), - ('0312272782', 'This Is Graceanne''s Book: A Novel', 'https://images.isbndb.com/covers/27/84/9780312272784.jpg'), - ('044022831X', 'Love And Other Four-Letter Words (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/83/18/9780440228318.jpg'), - ('1590522265', 'Sisterchicks Do The Hula (Sisterchicks Series #2)', 'https://images.isbndb.com/covers/22/64/9781590522264.jpg'), - ('1551669307', 'A Gift To Last: Can This Be Christmas?\Shirley, Goodness And Mercy', 'https://images.isbndb.com/covers/93/04/9781551669304.jpg'), - ('060980202X', 'The Gentleman''s Guide To Life: What Every Guy Should Know About Living Large, Loving Well, Feeling Strong, And Looking Good', 'https://images.isbndb.com/covers/20/21/9780609802021.jpg'), - ('0698113950', 'Little Bear''s Trousers', 'https://images.isbndb.com/covers/39/54/9780698113954.jpg'), - ('043944246X', 'September 12th: We Knew Everything Would Be All Right', 'https://images.isbndb.com/covers/24/66/9780439442466.jpg'), - ('0060954884', 'Anna And The King Of Siam', 'https://images.isbndb.com/covers/48/88/9780060954888.jpg'), - ('0743422961', 'The Miss America Family : A Novel', 'https://images.isbndb.com/covers/29/63/9780743422963.jpg'), - ('0525946780', 'The Museum Of Hoaxes', 'https://images.isbndb.com/covers/67/86/9780525946786.jpg'), - ('1558534172', 'White House Ladies: Fascinating Tales And Colorful Curiosities', 'https://images.isbndb.com/covers/41/79/9781558534179.jpg'), - ('0609807919', 'Second Helpings (Jessica Darling, Book 2)', 'https://images.isbndb.com/covers/79/10/9780609807910.jpg'), - ('0060532149', 'Bare Necessity', 'https://images.isbndb.com/covers/21/47/9780060532147.jpg'), - ('081296683X', 'Girls'' Poker Night: A Novel Of High Stakes', 'https://images.isbndb.com/covers/68/31/9780812966831.jpg'), - ('188517182X', 'Urban Etiquette: Marvelous Manners For The Modern Metropolis', 'https://images.isbndb.com/covers/18/25/9781885171825.jpg'), - ('0820319198', 'Distant Friends (Brown Thrasher Books)', 'https://images.isbndb.com/covers/91/93/9780820319193.jpg'), - ('0446520829', 'The Most Beautiful Gift: A Christmas Story', 'https://images.isbndb.com/covers/08/29/9780446520829.jpg'), - ('0373250525', 'Starting From Square Two (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/05/23/9780373250523.jpg'), - ('0811802272', 'The Birthday Cake Book', 'https://images.isbndb.com/covers/22/77/9780811802277.jpg'), - ('1871512417', 'Maisie Digs Up The Past', 'https://images.isbndb.com/covers/24/10/9781871512410.jpg'), - ('042515517X', 'Year Of The Tiger (Paul Chavasse)', 'https://images.isbndb.com/covers/51/72/9780425155172.jpg'), - ('037322348X', 'Unforgettable (Harlequin Intrigue)', 'https://images.isbndb.com/covers/34/80/9780373223480.jpg'), - ('0393317382', 'Agents Of Innocence: A Novel', 'https://images.isbndb.com/covers/73/81/9780393317381.jpg'), - ('0375713751', 'I Don''t Know How She Does It', 'https://images.isbndb.com/covers/37/50/9780375713750.jpg'), - ('0312272766', 'Plan B: A Novel', 'https://images.isbndb.com/covers/27/60/9780312272760.jpg'), - ('0446526479', 'Amanda''s Wedding', 'https://images.isbndb.com/covers/64/70/9780446526470.jpg'), - ('068985546X', 'Mates, Dates, And Designer Divas', 'https://images.isbndb.com/covers/54/67/9780689855467.jpg'), - ('0689855451', 'Mates, Dates, And Cosmic Kisses', 'https://images.isbndb.com/covers/54/50/9780689855450.jpg'), - ('0140240209', 'The Dog I.Q. Test', 'https://images.isbndb.com/covers/02/07/9780140240207.jpg'), - ('0764525662', 'Low-Carb Dieting For Dummies ', 'https://images.isbndb.com/covers/56/67/9780764525667.jpg'), - ('0679771492', 'George Foreman''s Knock-Out-the-Fat Barbecue And Grilling Cookbook', 'https://images.isbndb.com/covers/14/94/9780679771494.jpg'), - ('0130743038', 'Betty Crocker''s Eat And Lose Weight', 'https://images.isbndb.com/covers/30/39/9780130743039.jpg'), - ('1856273296', 'Little Book Of Low Calorie Recipes (Little Recipe Books)', 'https://images.isbndb.com/covers/32/99/9781856273299.jpg'), - ('0842343253', 'Nicolae High (Left Behind: The Kids #5)', 'https://images.isbndb.com/covers/32/51/9780842343251.jpg'), - ('0201406462', 'Sibling Society', 'https://images.isbndb.com/covers/64/67/9780201406467.jpg'), - ('1895636337', 'The Inanimate World', 'https://images.isbndb.com/covers/63/38/9781895636338.jpg'), - ('0140131566', 'We Are Still Married: Stories And Letters', 'https://images.isbndb.com/covers/15/67/9780140131567.jpg'), - ('0446521442', 'The Illustrated Discovery Journal : Creating A Visual Autobiography Of Your Authentic Self', 'https://images.isbndb.com/covers/14/44/9780446521444.jpg'), - ('0062515802', 'Creating A Charmed Life: Sensible, Spiritual Secrets Every Busy Woman Should Know', 'https://images.isbndb.com/covers/58/03/9780062515803.jpg'), - ('0684859777', 'Eat Mangoes Naked: Finding Pleasure Everywhere (and Dancing With The Pits)', 'https://images.isbndb.com/covers/97/74/9780684859774.jpg'), - ('0684859769', 'Transformation Soup: Healing For The Splendidly Imperfect', 'https://images.isbndb.com/covers/97/67/9780684859767.jpg'), - ('0609807080', 'All The Joy You Can Stand: 101 Sacred Power Principles For Making Joy Real In Your Life', 'https://images.isbndb.com/covers/70/88/9780609807088.jpg'), - ('1556522126', 'Making Room For Making Art: A Thoughtful And Practical Guide To Bringing The Pleasure Of Artistic Expression Back Into Your Life', 'https://images.isbndb.com/covers/21/23/9781556522123.jpg'), - ('0440224845', 'Bittersweet', 'https://images.isbndb.com/covers/48/46/9780440224846.jpg'), - ('0671864173', 'Waiting To Exhale', 'https://images.isbndb.com/covers/41/70/9780671864170.jpg'), - ('0060959428', 'After Lucy: A Novel', 'https://images.isbndb.com/covers/94/25/9780060959425.jpg'), - ('0373079613', 'Enchanted: The Donovan Legacy (Silhouette Intimate Moments, #961)', 'https://images.isbndb.com/covers/96/12/9780373079612.jpg'), - ('0440200989', 'Weep No More, My Lady', 'https://images.isbndb.com/covers/09/87/9780440200987.jpg'), - ('0671568175', 'Let Me Call You Sweetheart', 'https://images.isbndb.com/covers/81/77/9780671568177.jpg'), - ('0449221504', 'K Is For Killer (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/15/01/9780449221501.jpg'), - ('0446607193', 'Unspeakable', 'https://images.isbndb.com/covers/71/93/9780446607193.jpg'), - ('0671705091', 'A Knight In Shining Armor', 'https://images.isbndb.com/covers/50/91/9780671705091.jpg'), - ('0505522675', 'Believe (Heartspell)', 'https://images.isbndb.com/covers/26/72/9780505522672.jpg'), - ('0515124656', 'Lady Moonlight', 'https://images.isbndb.com/covers/46/51/9780515124651.jpg'), - ('0373484003', 'Irish Hearts', 'https://images.isbndb.com/covers/40/03/9780373484003.jpg'), - ('0451198506', 'The Countess (Coulter Historical Romance)', 'https://images.isbndb.com/covers/85/01/9780451198501.jpg'), - ('0440223237', 'Malice', 'https://images.isbndb.com/covers/32/38/9780440223238.jpg'), - ('0679882820', 'Mr. Brown Can Moo, Can You : Dr. Seuss''s Book Of Wonderful Noises (Bright And Early Board Books)', 'https://images.isbndb.com/covers/28/24/9780679882824.jpg'), - ('0399226907', 'The Very Hungry Caterpillar', 'https://images.isbndb.com/covers/69/08/9780399226908.jpg'), - ('1558747109', 'Chicken Soup For The Cat & Dog Lover''s Soul: Celebrating Pets As Family With Stories About Cats, Dogs And Other Critters', 'https://images.isbndb.com/covers/71/04/9781558747104.jpg'), - ('0786884142', 'A Monk Swimming A Memoir', 'https://images.isbndb.com/covers/41/48/9780786884148.jpg'), - ('0767905385', 'Catch Me If You Can: The True Story Of A Real Fake', 'https://images.isbndb.com/covers/53/81/9780767905381.jpg'), - ('0671793551', 'A Fever In The Heart And Other True Cases: Ann Rule''s Crime Files, Volume III', 'https://images.isbndb.com/covers/35/55/9780671793555.jpg'), - ('0553574302', 'The Chalice And The Blade', 'https://images.isbndb.com/covers/43/02/9780553574302.jpg'), - ('0440211263', 'Circle Of Friends', 'https://images.isbndb.com/covers/12/66/9780440211266.jpg'), - ('0553260111', 'The Bourne Identity (Bourne Trilogy No.1)', 'https://images.isbndb.com/covers/01/13/9780553260113.jpg'), - ('0380775840', 'Amber Beach (Donovan, Book 1)', 'https://images.isbndb.com/covers/58/42/9780380775842.jpg'), - ('0394900014', 'The Cat In The Hat (Beginner Books(R))', 'https://images.isbndb.com/covers/00/18/9780394900018.jpg'), - ('0894803123', 'Ben & Jerry''s Homemade Ice Cream & Dessert Book', 'https://images.isbndb.com/covers/31/23/9780894803123.jpg'), - ('0440225892', 'The Heiress: The Bride Quest #3 (Bride Quest Series, 3)', 'https://images.isbndb.com/covers/58/98/9780440225898.jpg'), - ('0440236371', 'The Beauty (Bride Quest, Book 4)', 'https://images.isbndb.com/covers/63/75/9780440236375.jpg'), - ('1551660261', 'Fulfillment', 'https://images.isbndb.com/covers/02/64/9781551660264.jpg'), - ('1551665638', 'Call It Destiny', 'https://images.isbndb.com/covers/56/34/9781551665634.jpg'), - ('0553575007', 'Touch Of Enchantment', 'https://images.isbndb.com/covers/50/02/9780553575002.jpg'), - ('0553563343', 'Breath Of Magic', 'https://images.isbndb.com/covers/33/44/9780553563344.jpg'), - ('0943233941', 'Weddings From The Heart: Contemporary And Traditional Ceremonies For An Unforgettable Wedding', 'https://images.isbndb.com/covers/39/49/9780943233949.jpg'), - ('0694014532', 'Heidi Book And Charm (Charming Classics)', 'https://images.isbndb.com/covers/45/38/9780694014538.jpg'), - ('0743411439', 'Bitterroot', 'https://images.isbndb.com/covers/14/31/9780743411431.jpg'), - ('0553347233', 'The Beet Queen', 'https://images.isbndb.com/covers/72/34/9780553347234.jpg'), - ('0385152922', 'ONE-MINUTE BEDTIME STORIES (Doubleday Balloon Books)', 'https://images.isbndb.com/covers/29/21/9780385152921.jpg'), - ('0767900383', 'Under The Tuscan Sun: At Home In Italy', 'https://images.isbndb.com/covers/03/86/9780767900386.jpg'), - ('0786889055', 'Voodoo River (Elvis Cole Novels)', 'https://images.isbndb.com/covers/90/51/9780786889051.jpg'), - ('0440212626', 'Hard Fall', 'https://images.isbndb.com/covers/26/21/9780440212621.jpg'), - ('0553265415', 'How To Have A Smarter Baby: The Infant Stimulation Program For Enhancing Your Baby''s Natural Development', 'https://images.isbndb.com/covers/54/15/9780553265415.jpg'), - ('0449131793', 'Barrier Island', 'https://images.isbndb.com/covers/17/94/9780449131794.jpg'), - ('0380804697', 'Paradise Lost (Joanna Brady Mysteries, Book 9)', 'https://images.isbndb.com/covers/46/96/9780380804696.jpg'), - ('0425178951', 'Deep South (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/89/59/9780425178959.jpg'), - ('038548562X', 'How To Choose The Sex Of Your Baby', 'https://images.isbndb.com/covers/56/23/9780385485623.jpg'), - ('0684865742', '''Tis: A Memoir', 'https://images.isbndb.com/covers/57/44/9780684865744.jpg'), - ('0385313632', 'Hard Time (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/36/36/9780385313636.jpg'), - ('0866119892', 'The Secret Garden', 'https://images.isbndb.com/covers/98/94/9780866119894.jpg'), - ('0505523442', 'Prince Charming (Time Of Your Life)', 'https://images.isbndb.com/covers/34/40/9780505523440.jpg'), - ('0380772469', 'Forever In Your Embrace', 'https://images.isbndb.com/covers/24/69/9780380772469.jpg'), - ('0380899361', 'Come Love A Stranger', 'https://images.isbndb.com/covers/93/64/9780380899364.jpg'), - ('0671728571', 'Wildest Hearts', 'https://images.isbndb.com/covers/85/71/9780671728571.jpg'), - ('067146969X', 'Dawnfire', 'https://images.isbndb.com/covers/96/96/9780671469696.jpg'), - ('0446392308', 'Healing Back Pain: The Mind-Body Connection', 'https://images.isbndb.com/covers/23/03/9780446392303.jpg'), - ('0586207228', 'Screen Kisses', 'https://images.isbndb.com/covers/72/22/9780586207222.jpg'), - ('0821762559', 'Daughter Of Camelot (Merlin''s Legacy)', 'https://images.isbndb.com/covers/25/54/9780821762554.jpg'), - ('0553275399', 'Wild, Sweet Promise', 'https://images.isbndb.com/covers/53/91/9780553275391.jpg'), - ('0671034006', 'Heartbreaker', 'https://images.isbndb.com/covers/40/09/9780671034009.jpg'), - ('0425116840', 'The Cardinal Of The Kremlin', 'https://images.isbndb.com/covers/68/45/9780425116845.jpg'), - ('0882893327', 'Voodoo Queen, The (Pelican Pouch Series)', 'https://images.isbndb.com/covers/33/27/9780882893327.jpg'), - ('0380817152', 'The Golden One (Amelia Peabody Mystery)', 'https://images.isbndb.com/covers/71/53/9780380817153.jpg'), - ('0345302907', 'The Heaven Makers', 'https://images.isbndb.com/covers/29/08/9780345302908.jpg'), - ('0340565829', 'Teach Yourself Further Spanish Pb', 'https://images.isbndb.com/covers/58/27/9780340565827.jpg'), - ('0425191184', 'Red Rabbit (Tom Clancy)', 'https://images.isbndb.com/covers/11/87/9780425191187.jpg'), - ('0872169014', 'The Bay Of Noon', 'https://images.isbndb.com/covers/90/12/9780872169012.jpg'), - ('0399142991', 'On The Occasion Of My Last Afternoon', 'https://images.isbndb.com/covers/29/94/9780399142994.jpg'), - ('0836218221', 'The Authoritative Calvin And Hobbes (A Calvin And Hobbes Treasury)', 'https://images.isbndb.com/covers/82/20/9780836218220.jpg'), - ('067988288X', 'Wild Magic (Immortals #1)', 'https://images.isbndb.com/covers/28/86/9780679882886.jpg'), - ('0590251597', 'Mary Anne Saves The Day (Baby-Sitters Club #4)', 'https://images.isbndb.com/covers/15/94/9780590251594.jpg'), - ('0679885307', 'The Random House Book Of Horse Stories', 'https://images.isbndb.com/covers/53/06/9780679885306.jpg'), - ('0590251589', 'The Truth About Stacey, Collector''s Edition (Baby-Sitters Club, No. 3)', 'https://images.isbndb.com/covers/15/87/9780590251587.jpg'), - ('0590227637', 'Claudia And The Phantom Phone Calls (The Baby-Sitters Club, No. 2)', 'https://images.isbndb.com/covers/76/36/9780590227636.jpg'), - ('0806903481', 'Great Book Of Whodunit Puzzles: Mini-Mysteries For You To Solve', 'https://images.isbndb.com/covers/34/84/9780806903484.jpg'), - ('0590224735', 'Kristy''s Great Idea (The Baby-Sitter''s Club #1)', 'https://images.isbndb.com/covers/47/34/9780590224734.jpg'), - ('0141301074', 'The Twits', 'https://images.isbndb.com/covers/10/75/9780141301075.jpg'), - ('0671016792', 'Skating For The Gold: Michelle Kwan & Tara Lipinski', 'https://images.isbndb.com/covers/67/91/9780671016791.jpg'), - ('0448409313', 'Morph Bumble Beast (Mighty Morphin Power Rangers)', 'https://images.isbndb.com/covers/93/13/9780448409313.jpg'), - ('0452278902', 'The Green Mile: The Complete Serial Novel', 'https://images.isbndb.com/covers/89/05/9780452278905.jpg'), - ('074343627X', 'Dreamcatcher', 'https://images.isbndb.com/covers/62/74/9780743436274.jpg'), - ('039914465X', 'Southern Cross (Andy Brazil)', 'https://images.isbndb.com/covers/46/53/9780399144653.jpg'), - ('1558747699', 'Chicken Soup For The Writer''s Soul: Stories To Open The Heart And Rekindle The Spirit Of Writers', 'https://images.isbndb.com/covers/76/92/9781558747692.jpg'), - ('067102423X', 'Bag Of Bones', 'https://images.isbndb.com/covers/42/39/9780671024239.jpg'), - ('1891620487', 'American Greats', 'https://images.isbndb.com/covers/04/85/9781891620485.jpg'), - ('0060009225', 'Call Each River Jordan (Abel Jones Mysteries)', 'https://images.isbndb.com/covers/92/29/9780060009229.jpg'), - ('0380820870', 'Shadows Of Glory', 'https://images.isbndb.com/covers/08/70/9780380820870.jpg'), - ('0380797399', 'Faded Coat Of Blue (Abel Jones Mysteries)', 'https://images.isbndb.com/covers/73/94/9780380797394.jpg'), - ('0060198524', 'Population: 485: Meeting Your Neighbors One Siren At A Time', 'https://images.isbndb.com/covers/85/27/9780060198527.jpg'), - ('0345334531', 'The Feast Of All Saints', 'https://images.isbndb.com/covers/45/34/9780345334534.jpg'), - ('0515103993', 'Bad Medicine', 'https://images.isbndb.com/covers/39/91/9780515103991.jpg'), - ('1550130994', 'Photography And The Art Of Seeing', 'https://images.isbndb.com/covers/09/97/9781550130997.jpg'), - ('0316316962', 'The Tipping Point: How Little Things Can Make A Big Difference', 'https://images.isbndb.com/covers/69/65/9780316316965.jpg'), - ('0062506080', 'On Relationship', 'https://images.isbndb.com/covers/60/85/9780062506085.jpg'), - ('0142001007', 'City Of Djinns: A Year In Delhi', 'https://images.isbndb.com/covers/10/04/9780142001004.jpg'), - ('0060920432', 'Flow: The Psychology Of Optimal Experience', 'https://images.isbndb.com/covers/04/32/9780060920432.jpg'), - ('0786884061', 'The Man Who Loved Only Numbers: The Story Of Paul Erdos And The Search For Mathematical Truth', 'https://images.isbndb.com/covers/40/63/9780786884063.jpg'), - ('0691005419', 'Small Worlds', 'https://images.isbndb.com/covers/54/16/9780691005416.jpg'), - ('0060505265', 'The Sewing Circles Of Herat: A Personal Voyage Through Afghanistan', 'https://images.isbndb.com/covers/52/64/9780060505264.jpg'), - ('0864427433', 'Lonely Planet Rajasthan (Lonely Planet Rajasthan, 2nd Ed)', 'https://images.isbndb.com/covers/74/34/9780864427434.jpg'), - ('0864424574', 'In Rajasthan (Lonely Planet Journeys)', 'https://images.isbndb.com/covers/45/70/9780864424570.jpg'), - ('0813812860', 'Out Here On Soap Creek: An Autobiography', 'https://images.isbndb.com/covers/28/61/9780813812861.jpg'), - ('0842372180', 'The Topsy-Turvy Kingdom', 'https://images.isbndb.com/covers/21/83/9780842372183.jpg'), - ('0399143947', 'The Tommyknockers', 'https://images.isbndb.com/covers/39/46/9780399143946.jpg'), - ('0066211085', 'Rebecca''s Tale: A Novel', 'https://images.isbndb.com/covers/10/84/9780066211084.jpg'), - ('042517476X', 'The Group: Six People In Search Of A Life', 'https://images.isbndb.com/covers/47/60/9780425174760.jpg'), - ('0440237262', 'The Program', 'https://images.isbndb.com/covers/72/66/9780440237266.jpg'), - ('0380713330', 'Animal Liberation', 'https://images.isbndb.com/covers/33/32/9780380713332.jpg'), - ('0195002237', 'The Tibetan Book Of The Dead: Or, The After-Death Experiences On The Bardo Plane, According To Lama Kazi Dawa-Samdup''s English Rendering (Galaxy Books)', 'https://images.isbndb.com/covers/22/32/9780195002232.jpg'), - ('014004387X', 'Fifth Business (Deptford Trilogy)', 'https://images.isbndb.com/covers/38/77/9780140043877.jpg'), - ('0895772620', 'Treasure Island (The World''s Best Reading)', 'https://images.isbndb.com/covers/26/26/9780895772626.jpg'), - ('0517618141', 'Heidi: Childrens Classics', 'https://images.isbndb.com/covers/81/41/9780517618141.jpg'), - ('0192833871', 'Four Major Plays: A Doll''s House, Ghosts, Hedda Gabler, The Master Builder (Oxford World''s Classics)', 'https://images.isbndb.com/covers/38/77/9780192833877.jpg'), - ('0393960579', 'The Awakening (Norton Critical Editions)', 'https://images.isbndb.com/covers/05/70/9780393960570.jpg'), - ('1551113074', 'Heart Of Darkness (Broadview Literary Texts)', 'https://images.isbndb.com/covers/30/74/9781551113074.jpg'), - ('0486264785', 'The Importance Of Being Earnest (Dover Thrift Editions)', 'https://images.isbndb.com/covers/47/83/9780486264783.jpg'), - ('0060809833', 'Brave New World', 'https://images.isbndb.com/covers/98/36/9780060809836.jpg'), - ('0441172660', 'Dune', 'https://images.isbndb.com/covers/26/65/9780441172665.jpg'), - ('0156711427', 'A Passage To India', 'https://images.isbndb.com/covers/14/25/9780156711425.jpg'), - ('0553206516', 'The Snow Leopard', 'https://images.isbndb.com/covers/65/17/9780553206517.jpg'), - ('0553550039', 'Stories Of Eva Luna', 'https://images.isbndb.com/covers/00/30/9780553550030.jpg'), - ('0345390458', 'Havana Bay (Arkady Renko Novels, No 4)', 'https://images.isbndb.com/covers/04/55/9780345390455.jpg'), - ('0061091871', 'Rebel (The Starbuck Chronicles, Book 1)', 'https://images.isbndb.com/covers/18/72/9780061091872.jpg'), - ('0425090787', 'The Fourth Deadly Sin', 'https://images.isbndb.com/covers/07/87/9780425090787.jpg'), - ('1929317999', 'Sailing The Dream', 'https://images.isbndb.com/covers/79/98/9781929317998.jpg'), - ('0553268880', 'The Prince Of Tides: A Novel', 'https://images.isbndb.com/covers/88/81/9780553268881.jpg'), - ('0385008910', 'Nethergate', 'https://images.isbndb.com/covers/89/14/9780385008914.jpg'), - ('0688042872', 'The Dinosaur Heresies: New Theories Unlocking The Mystery Of The Dinosaurs And Their Extinction', 'https://images.isbndb.com/covers/28/75/9780688042875.jpg'), - ('0671027107', 'Lily Of The Valley', 'https://images.isbndb.com/covers/71/00/9780671027100.jpg'), - ('0399145869', 'Deep South (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/58/65/9780399145865.jpg'), - ('0375405429', 'Italian Fever', 'https://images.isbndb.com/covers/54/26/9780375405426.jpg'), - ('0446521582', 'THE HONK AND HOLLER OPENING SOON', 'https://images.isbndb.com/covers/15/81/9780446521581.jpg'), - ('0151002630', 'The Magician''s Assistant', 'https://images.isbndb.com/covers/26/34/9780151002634.jpg'), - ('0316666009', '1st To Die: A Novel (Women''s Murder Club)', 'https://images.isbndb.com/covers/60/08/9780316666008.jpg'), - ('0316890197', 'The Evidence Against Her: A Novel', 'https://images.isbndb.com/covers/01/99/9780316890199.jpg'), - ('0446675253', 'Snow In August', 'https://images.isbndb.com/covers/52/53/9780446675253.jpg'), - ('0345451325', 'The Fall Of Reach (Halo, Bk. 1)', 'https://images.isbndb.com/covers/13/23/9780345451323.jpg'), - ('0330284142', 'Name Of The Rose (Picador Books)', 'https://images.isbndb.com/covers/41/41/9780330284141.jpg'), - ('0345391810', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/18/10/9780345391810.jpg'), - ('0140620524', 'Adventures Of Tom Sawyer (Penguin Popular Classics)', 'https://images.isbndb.com/covers/05/28/9780140620528.jpg'), - ('0312186118', 'Death In Kenya', 'https://images.isbndb.com/covers/61/11/9780312186111.jpg'), - ('0671516922', 'Trust Me', 'https://images.isbndb.com/covers/69/25/9780671516925.jpg'), - ('1586607251', 'Gideon''s Dawn', 'https://images.isbndb.com/covers/72/58/9781586607258.jpg'), - ('0671015206', 'The Millionaire Next Door', 'https://images.isbndb.com/covers/52/06/9780671015206.jpg'), - ('0440216540', 'Before And After', 'https://images.isbndb.com/covers/65/44/9780440216544.jpg'), - ('0449209598', 'Murder In The Smithsonian (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/95/92/9780449209592.jpg'), - ('0140062599', 'The Painter Of Signs (King Penguin)', 'https://images.isbndb.com/covers/25/95/9780140062595.jpg'), - ('0582349168', 'Witch And Other Stories (Heritage Of Literature)', 'https://images.isbndb.com/covers/91/62/9780582349162.jpg'), - ('0140041079', 'ROMMEL? : GUNNER WHO? - A Confrontation In The Desert', 'https://images.isbndb.com/covers/10/71/9780140041071.jpg'), - ('0140400117', 'The Rights Of Man (Classics)', 'https://images.isbndb.com/covers/01/13/9780140400113.jpg'), - ('0192815466', 'Persuasion (The World''s Classics)', 'https://images.isbndb.com/covers/54/60/9780192815460.jpg'), - ('0140431357', 'Tess Of The D''Urbervilles: A Pure Woman (Penguin Classics)', 'https://images.isbndb.com/covers/13/53/9780140431353.jpg'), - ('1575664054', 'The Patient''s Guide To Anesthesia: Making The Right Choices', 'https://images.isbndb.com/covers/40/57/9781575664057.jpg'), - ('0451209117', 'Under Pressure: The Final Voyage Of Submarine S-Five', 'https://images.isbndb.com/covers/91/15/9780451209115.jpg'), - ('0743236777', 'Under Pressure: The Final Voyage Of Submarine S-Five', 'https://images.isbndb.com/covers/67/75/9780743236775.jpg'), - ('037348481X', 'Turning Point', 'https://images.isbndb.com/covers/48/12/9780373484812.jpg'), - ('0553208314', 'Guidepost Treasury Of Love', 'https://images.isbndb.com/covers/83/13/9780553208313.jpg'), - ('0446611867', 'A Bend In The Road', 'https://images.isbndb.com/covers/18/62/9780446611862.jpg'), - ('0385336179', 'Shopaholic Ties The Knot (Shopaholic, No 3)', 'https://images.isbndb.com/covers/61/78/9780385336178.jpg'), - ('0972380698', 'An American Salad', 'https://images.isbndb.com/covers/06/90/9780972380690.jpg'), - ('155054439X', 'Batchelor Brothers'' Bed And Breakfast Pillow Book', 'https://images.isbndb.com/covers/43/98/9781550544398.jpg'), - ('060980619X', 'God Save The Sweet Potato Queens', 'https://images.isbndb.com/covers/61/97/9780609806197.jpg'), - ('0440900794', 'The Giver', 'https://images.isbndb.com/covers/07/95/9780440900795.jpg'), - ('0553560662', 'Princess Of Thieves', 'https://images.isbndb.com/covers/06/64/9780553560664.jpg'), - ('0373483880', 'The Macgregors; Serena, Caine-(2 Books In One)', 'https://images.isbndb.com/covers/38/84/9780373483884.jpg'), - ('0061042005', 'Suddenly (Avon)', 'https://images.isbndb.com/covers/20/03/9780061042003.jpg'), - ('0425046117', 'The House Of Mirth', 'https://images.isbndb.com/covers/61/11/9780425046111.jpg'), - ('0156619180', 'Moments Of Being', 'https://images.isbndb.com/covers/91/89/9780156619189.jpg'), - ('0553582755', 'One Door Away From Heaven', 'https://images.isbndb.com/covers/27/58/9780553582758.jpg'), - ('0486282694', 'Winesburg, Ohio (Dover Thrift Editions)', 'https://images.isbndb.com/covers/26/95/9780486282695.jpg'), - ('006101091X', 'The TV Guide Book Of Lists: Revealing Facts, Fascinating Fads, And Strange Phenomena From 50 Years Of Television', 'https://images.isbndb.com/covers/09/10/9780061010910.jpg'), - ('0452268060', 'How The Garcia Girls Lost Their Accents', 'https://images.isbndb.com/covers/80/67/9780452268067.jpg'), - ('0439099404', 'The Adventures Of Tom Sawyer', 'https://images.isbndb.com/covers/94/00/9780439099400.jpg'), - ('0525405224', 'Superfudge', 'https://images.isbndb.com/covers/52/21/9780525405221.jpg'), - ('0671759213', 'She''s Come Undone', 'https://images.isbndb.com/covers/92/16/9780671759216.jpg'), - ('044651652X', 'The Bridges Of Madison County', 'https://images.isbndb.com/covers/65/25/9780446516525.jpg'), - ('0312050631', 'Confessions Of A Failed Southern Lady', 'https://images.isbndb.com/covers/06/34/9780312050634.jpg'), - ('0452254264', '1984 (Plume)', 'https://images.isbndb.com/covers/42/68/9780452254268.jpg'), - ('0380786052', 'Midnight Lady', 'https://images.isbndb.com/covers/60/53/9780380786053.jpg'), - ('0446364282', 'Love''s Encore', 'https://images.isbndb.com/covers/42/87/9780446364287.jpg'), - ('0385337272', 'The Devil''s Banker', 'https://images.isbndb.com/covers/72/74/9780385337274.jpg'), - ('0140291903', 'Manhattan Memoir: American Girl; Manhattan, When I Was Young; Speaking With Strangers', 'https://images.isbndb.com/covers/19/02/9780140291902.jpg'), - ('0142002267', 'Word Freak: Heartbreak, Triumph, Genius, And Obsession In The World Of Competitive ScrabblePlayers', 'https://images.isbndb.com/covers/22/61/9780142002261.jpg'), - ('0671640925', 'Curse Of The Giant Muffins And Other Washington Maladies', 'https://images.isbndb.com/covers/09/27/9780671640927.jpg'), - ('0425099644', 'Shallows Of Night', 'https://images.isbndb.com/covers/96/43/9780425099643.jpg'), - ('0960809600', 'Peace Agitator: Story Of A. J. Muste', 'https://images.isbndb.com/covers/96/08/9780960809608.jpg'), - ('0439368030', 'Wizards Don''t Wear Graduation Gowns #45 (The Adventures Of The Bailey School Kids) (The Adventures Of The Bailey School Kids)', 'https://images.isbndb.com/covers/80/32/9780439368032.jpg'), - ('0785272984', 'Walking Wisely: Real Guidance For Life''s Journey', 'https://images.isbndb.com/covers/29/84/9780785272984.jpg'), - ('0060520221', 'Taming Your Gremlin: A Surprisingly Simple Method For Getting Out Of Your Own Way', 'https://images.isbndb.com/covers/02/29/9780060520229.jpg'), - ('0590443518', 'Help! I''m A Prisoner In The Library', 'https://images.isbndb.com/covers/35/17/9780590443517.jpg'), - ('0440409942', 'Harris And Me', 'https://images.isbndb.com/covers/99/46/9780440409946.jpg'), - ('0590438069', 'Losing Christina: Fog', 'https://images.isbndb.com/covers/80/63/9780590438063.jpg'), - ('0380720132', 'The Mystery Of The Cupboard (Avon Camelot Books)', 'https://images.isbndb.com/covers/01/32/9780380720132.jpg'), - ('1841952974', 'I''m Not Scared', 'https://images.isbndb.com/covers/29/70/9781841952970.jpg'), - ('0440967848', 'The Outside Shot', 'https://images.isbndb.com/covers/78/42/9780440967842.jpg'), - ('0842329277', 'Assassins (Left Behind, Book 6)', 'https://images.isbndb.com/covers/92/79/9780842329279.jpg'), - ('0842343296', 'The Search (Left Behind: The Kids #9)', 'https://images.isbndb.com/covers/32/99/9780842343299.jpg'), - ('0440439884', 'Island Of The Blue Dolphins', 'https://images.isbndb.com/covers/98/82/9780440439882.jpg'), - ('0842343288', 'Death Strike (Left Behind: The Kids) (Vol 8)', 'https://images.isbndb.com/covers/32/82/9780842343282.jpg'), - ('0590424165', 'Sideways Arithmetic From Wayside School', 'https://images.isbndb.com/covers/41/65/9780590424165.jpg'), - ('059030271X', 'Charlotte''s Web', 'https://images.isbndb.com/covers/27/15/9780590302715.jpg'), - ('0345339738', 'The Return Of The King (The Lord Of The Rings, Part 3)', 'https://images.isbndb.com/covers/97/37/9780345339737.jpg'), - ('0440413761', 'Tucket''s Gold (The Francis Tucket Books)', 'https://images.isbndb.com/covers/37/69/9780440413769.jpg'), - ('0590461001', 'The Hitchhiker (Point Horror Series)', 'https://images.isbndb.com/covers/10/09/9780590461009.jpg'), - ('0688149588', 'Lucy Forever And Miss Rosetree, Shrinks', 'https://images.isbndb.com/covers/95/81/9780688149581.jpg'), - ('0842343261', 'The Underground (Left Behind: The Kids #6)', 'https://images.isbndb.com/covers/32/68/9780842343268.jpg'), - ('084234327X', 'Busted! (Left Behind, The Kids 7)', 'https://images.isbndb.com/covers/32/75/9780842343275.jpg'), - ('0395280060', 'George And Martha Rise And Shine', 'https://images.isbndb.com/covers/00/65/9780395280065.jpg'), - ('0590451146', 'Behind The Lines (Point)', 'https://images.isbndb.com/covers/11/47/9780590451147.jpg'), - ('0064407314', 'Monster', 'https://images.isbndb.com/covers/73/11/9780064407311.jpg'), - ('0816707979', 'Five Children And It', 'https://images.isbndb.com/covers/79/73/9780816707973.jpg'), - ('034541036X', 'A Gift Of Hope: How We Survive Our Tragedies', 'https://images.isbndb.com/covers/03/68/9780345410368.jpg'), - ('0517187760', 'Crossing To Safety (Great Reads)', 'https://images.isbndb.com/covers/77/60/9780517187760.jpg'), - ('0446679593', 'Suzanne''s Diary For Nicholas', 'https://images.isbndb.com/covers/95/96/9780446679596.jpg'), - ('0679441557', 'Ladder Of Years', 'https://images.isbndb.com/covers/15/57/9780679441557.jpg'), - ('1567315658', 'Playing It By Heart: Taking Care Of Yourself No Matter What', 'https://images.isbndb.com/covers/56/53/9781567315653.jpg'), - ('0849916518', 'The Heart Reader', 'https://images.isbndb.com/covers/65/19/9780849916519.jpg'), - ('1565120310', 'Daughters Of Memory', 'https://images.isbndb.com/covers/03/10/9781565120310.jpg'), - ('156512104X', 'Right From Wrong: A Novel', 'https://images.isbndb.com/covers/10/41/9781565121041.jpg'), - ('0446690295', 'The Bondwoman''s Narrative', 'https://images.isbndb.com/covers/02/94/9780446690294.jpg'), - ('0886774268', 'Magic''s Price (The Last Herald-Mage Series, Book 3)', 'https://images.isbndb.com/covers/42/64/9780886774264.jpg'), - ('0886773520', 'Magic''s Pawn (The Last Herald-Mage Series, Book 1)', 'https://images.isbndb.com/covers/35/26/9780886773526.jpg'), - ('0886774012', 'Magic''s Promise (The Last Herald-Mage Series, Book 2)', 'https://images.isbndb.com/covers/40/11/9780886774011.jpg'), - ('1892065169', 'Kirith Kirin', 'https://images.isbndb.com/covers/51/62/9781892065162.jpg'), - ('0609808346', 'Dispatches From The Tenth Circle: The Best Of The Onion', 'https://images.isbndb.com/covers/83/44/9780609808344.jpg'), - ('0307157857', 'Richard Scarry''s Cars And Trucks And Things That Go', 'https://images.isbndb.com/covers/78/50/9780307157850.jpg'), - ('0141186151', 'Fifth Business (Penguin Classics)', 'https://images.isbndb.com/covers/61/53/9780141186153.jpg'), - ('0451121902', 'The Long Wait (Signet)', 'https://images.isbndb.com/covers/19/05/9780451121905.jpg'), - ('0679417796', 'The Alienist', 'https://images.isbndb.com/covers/77/98/9780679417798.jpg'), - ('0684833662', 'A Separate Peace (Scribner Classics)', 'https://images.isbndb.com/covers/36/68/9780684833668.jpg'), - ('1573225517', 'High Fidelity', 'https://images.isbndb.com/covers/55/19/9781573225519.jpg'), - ('0449909336', 'The Fifties', 'https://images.isbndb.com/covers/93/31/9780449909331.jpg'), - ('1550548913', 'How To Be A Canadian', 'https://images.isbndb.com/covers/89/14/9781550548914.jpg'), - ('0679311386', 'The Lion, The Fox And The Eagle', 'https://images.isbndb.com/covers/13/86/9780679311386.jpg'), - ('039396647X', 'War And Peace (Second Edition) (Norton Critical Editions)', 'https://images.isbndb.com/covers/64/73/9780393966473.jpg'), - ('0380973650', 'American Gods: A Novel', 'https://images.isbndb.com/covers/36/51/9780380973651.jpg'), - ('0375414487', 'Nobody''s Perfect: Writings From The New Yorker', 'https://images.isbndb.com/covers/44/80/9780375414480.jpg'), - ('0316346624', 'The Tipping Point: How Little Things Can Make A Big Difference', 'https://images.isbndb.com/covers/66/27/9780316346627.jpg'), - ('0802130208', 'A Confederacy Of Dunces', 'https://images.isbndb.com/covers/02/04/9780802130204.jpg'), - ('0312988990', 'American Son: A Portrait Of John F. Kennedy, Jr.', 'https://images.isbndb.com/covers/89/99/9780312988999.jpg'), - ('0842373195', 'Let''s Roll!: Ordinary People, Extraordinary Courage', 'https://images.isbndb.com/covers/31/97/9780842373197.jpg'), - ('0043510744', 'Metamorphosis', 'https://images.isbndb.com/covers/07/42/9780043510742.jpg'), - ('0340821191', 'The White Road', 'https://images.isbndb.com/covers/11/90/9780340821190.jpg'), - ('0333906306', 'Fiddleback: A Novel', 'https://images.isbndb.com/covers/63/09/9780333906309.jpg'), - ('0156004992', 'Heart Conditions', 'https://images.isbndb.com/covers/49/92/9780156004992.jpg'), - ('0156628708', 'Mrs. Dalloway', 'https://images.isbndb.com/covers/87/09/9780156628709.jpg'), - ('0752844059', 'Falls (Inspector Rebus S.)', 'https://images.isbndb.com/covers/40/53/9780752844053.jpg'), - ('0440208459', 'Burn Marks (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/84/57/9780440208457.jpg'), - ('0752848224', 'Resurrection Men (Inspector Rebus S.)', 'https://images.isbndb.com/covers/82/28/9780752848228.jpg'), - ('075285111X', 'A Question Of Blood', 'https://images.isbndb.com/covers/11/12/9780752851112.jpg'), - ('0449208672', 'The Cater Street Hangman', 'https://images.isbndb.com/covers/86/70/9780449208670.jpg'), - ('0060808241', 'Gaudy Night', 'https://images.isbndb.com/covers/82/42/9780060808242.jpg'), - ('0380725835', 'Endangered Species (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/58/30/9780380725830.jpg'), - ('0751514012', 'Virgin In The Ice (The Cadfael Chronicles)', 'https://images.isbndb.com/covers/40/18/9780751514018.jpg'), - ('0751511056', 'The Leper Of Saint Giles: The Fifth Chronicle Of Brother Cadfael (The Cadfael Chronicles)', 'https://images.isbndb.com/covers/10/55/9780751511055.jpg'), - ('186941358X', 'It Helps When You Take The Brake Off', 'https://images.isbndb.com/covers/35/83/9781869413583.jpg'), - ('0886775876', 'Legend Of Nightfall (Daw Book Collectors)', 'https://images.isbndb.com/covers/58/72/9780886775872.jpg'), - ('0451458680', 'Belarus', 'https://images.isbndb.com/covers/86/81/9780451458681.jpg'), - ('0060199652', 'Prodigal Summer', 'https://images.isbndb.com/covers/96/54/9780060199654.jpg'), - ('034541389X', 'Flesh And Blood (Alex Delaware)', 'https://images.isbndb.com/covers/38/95/9780345413895.jpg'), - ('0684871580', 'Germs : Biological Weapons And America''s Secret War', 'https://images.isbndb.com/covers/15/85/9780684871585.jpg'), - ('0738203548', 'Man''s Search For Ultimate Meaning', 'https://images.isbndb.com/covers/35/46/9780738203546.jpg'), - ('0805033203', 'A Short History Of A Small Place: A Novel', 'https://images.isbndb.com/covers/32/05/9780805033205.jpg'), - ('0316284955', 'White Oleander (Oprah''s Book Club)', 'https://images.isbndb.com/covers/49/50/9780316284950.jpg'), - ('0801855926', 'Friday', 'https://images.isbndb.com/covers/59/24/9780801855924.jpg'), - ('156352600X', 'The Coffeehouse Investor: How To Build Wealth, Ignore Wall Street And Get On With Your Life', 'https://images.isbndb.com/covers/60/08/9781563526008.jpg'), - ('0679427651', 'Scarves (Chic Simple) (Chic Simple Components)', 'https://images.isbndb.com/covers/76/50/9780679427650.jpg'), - ('0345412214', 'The Last Don', 'https://images.isbndb.com/covers/22/18/9780345412218.jpg'), - ('0345441702', 'The Sicilian', 'https://images.isbndb.com/covers/17/06/9780345441706.jpg'), - ('0451147367', 'The Bachman Books: Four Early Novels By Stephen King', 'https://images.isbndb.com/covers/73/63/9780451147363.jpg'), - ('0595168442', 'Cigar Box', 'https://images.isbndb.com/covers/84/46/9780595168446.jpg'), - ('044041668X', 'Ghost Boy', 'https://images.isbndb.com/covers/66/85/9780440416685.jpg'), - ('0451170539', 'The Fantastic Adventures Of Robin Hood (Signet)', 'https://images.isbndb.com/covers/05/38/9780451170538.jpg'), - ('0375501371', 'A Widow For One Year: A Novel', 'https://images.isbndb.com/covers/13/71/9780375501371.jpg'), - ('006447335X', 'Year Of The Griffin', 'https://images.isbndb.com/covers/33/54/9780064473354.jpg'), - ('0316155101', 'Coma: A Novel', 'https://images.isbndb.com/covers/51/06/9780316155106.jpg'), - ('0312283709', 'Running With Scissors: A Memoir', 'https://images.isbndb.com/covers/37/04/9780312283704.jpg'), - ('0060987529', 'Confessions Of An Ugly Stepsister: A Novel', 'https://images.isbndb.com/covers/75/27/9780060987527.jpg'), - ('0312951426', 'The Ice House: A Novel', 'https://images.isbndb.com/covers/14/29/9780312951429.jpg'), - ('0312953615', 'The Sculptress: A Novel', 'https://images.isbndb.com/covers/36/14/9780312953614.jpg'), - ('0671567829', 'The Bookman''s Wake (Cliff Janeway Novels)', 'https://images.isbndb.com/covers/78/28/9780671567828.jpg'), - ('0670820555', 'Spy Catcher: The Candid Autobiography Of A Senior Intelligence Officer', 'https://images.isbndb.com/covers/05/59/9780670820559.jpg'), - ('0553270931', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/09/38/9780553270938.jpg'), - ('0449241114', 'Crystal Cave', 'https://images.isbndb.com/covers/11/10/9780449241110.jpg'), - ('0394561236', 'Empire: A Novel', 'https://images.isbndb.com/covers/12/33/9780394561233.jpg'), - ('0375703764', 'House Of Leaves', 'https://images.isbndb.com/covers/37/68/9780375703768.jpg'), - ('0553092626', 'Playing For The Ashes (Inspector Lynley, Book 7)', 'https://images.isbndb.com/covers/26/22/9780553092622.jpg'), - ('0812545133', 'The Broken Sword: King Arthur Returns', 'https://images.isbndb.com/covers/51/35/9780812545135.jpg'), - ('0446523321', 'The Simple Truth', 'https://images.isbndb.com/covers/33/25/9780446523325.jpg'), - ('0441004164', 'Outcast Of Redwall (Redwall, Book 8)', 'https://images.isbndb.com/covers/41/64/9780441004164.jpg'), - ('0066620996', 'Good To Great: Why Some Companies Make The Leap... And Others Don''t', 'https://images.isbndb.com/covers/09/92/9780066620992.jpg'), - ('0553277472', 'Zen And The Art Of Motorcycle Maintenance: An Inquiry Into Values', 'https://images.isbndb.com/covers/74/70/9780553277470.jpg'), - ('0385494602', 'The Green', 'https://images.isbndb.com/covers/46/01/9780385494601.jpg'), - ('0345433106', 'The Syndrome', 'https://images.isbndb.com/covers/31/07/9780345433107.jpg'), - ('0345443020', 'Perdido Street Station', 'https://images.isbndb.com/covers/30/21/9780345443021.jpg'), - ('068487217X', 'Angelas Ashes: A Memoir', 'https://images.isbndb.com/covers/21/79/9780684872179.jpg'), - ('0684853159', 'The WASP FACTORY: A NOVEL', 'https://images.isbndb.com/covers/31/54/9780684853154.jpg'), - ('1573228281', 'A Gesture Life: A Novel', 'https://images.isbndb.com/covers/82/82/9781573228282.jpg'), - ('0446608262', 'The Lion''s Game', 'https://images.isbndb.com/covers/82/68/9780446608268.jpg'), - ('0385503970', 'The Master Of Rain', 'https://images.isbndb.com/covers/39/76/9780385503976.jpg'), - ('0316120324', 'I Don''t Want To Go To Jail: A Novel', 'https://images.isbndb.com/covers/03/26/9780316120326.jpg'), - ('0440214432', 'PRONTO', 'https://images.isbndb.com/covers/44/34/9780440214434.jpg'), - ('0440225779', 'The Uncanny', 'https://images.isbndb.com/covers/57/75/9780440225775.jpg'), - ('0385501676', 'You Are Not A Stranger Here', 'https://images.isbndb.com/covers/16/75/9780385501675.jpg'), - ('3446180850', 'Die Insel Des Vorigen Tages: Roman', 'https://images.isbndb.com/covers/08/57/9783446180857.jpg'), - ('0312242735', 'Vincent Price: A Daughter''s Biography', 'https://images.isbndb.com/covers/27/32/9780312242732.jpg'), - ('0440935741', 'The High King (Chronicles Of Prydain, Book 5)', 'https://images.isbndb.com/covers/57/42/9780440935742.jpg'), - ('0380804557', 'Stardust', 'https://images.isbndb.com/covers/45/59/9780380804559.jpg'), - ('3257229739', 'Tsugumi. Roman.', 'https://images.isbndb.com/covers/97/38/9783257229738.jpg'), - ('0099245027', 'The Testament', 'https://images.isbndb.com/covers/50/25/9780099245025.jpg'), - ('0970880812', 'Just Like Your Daddy', 'https://images.isbndb.com/covers/08/19/9780970880819.jpg'), - ('0595256775', 'Scooter And The Galactic Starship', 'https://images.isbndb.com/covers/67/78/9780595256778.jpg'), - ('0741412780', 'The Great Pretender', 'https://images.isbndb.com/covers/27/82/9780741412782.jpg'), - ('0684855380', 'My Sister From The Black Lagoon : A Novel Of My Life', 'https://images.isbndb.com/covers/53/87/9780684855387.jpg'), - ('0525946233', 'The Darwin Awards II: Unnatural Selection', 'https://images.isbndb.com/covers/62/36/9780525946236.jpg'), - ('0399513000', 'A Paler Shade Of White: The History Of White People In America - Volume II', 'https://images.isbndb.com/covers/30/08/9780399513008.jpg'), - ('0425161617', 'Accidental Tourist', 'https://images.isbndb.com/covers/16/16/9780425161616.jpg'), - ('0140149295', 'The Sixteenth Round: From Number 1 Contender To #45472', 'https://images.isbndb.com/covers/92/96/9780140149296.jpg'), - ('0553565028', 'Praetorian', 'https://images.isbndb.com/covers/50/27/9780553565027.jpg'), - ('0375410848', 'True History Of The Kelly Gang', 'https://images.isbndb.com/covers/08/40/9780375410840.jpg'), - ('0505520680', 'Ring Of Fire', 'https://images.isbndb.com/covers/06/85/9780505520685.jpg'), - ('0373710348', 'Beneath A Texas Sky: Count On A Cop (Harlequin Superromance No. 1034)', 'https://images.isbndb.com/covers/03/48/9780373710348.jpg'), - ('0451115457', 'Banners Of Silk', 'https://images.isbndb.com/covers/54/54/9780451115454.jpg'), - ('0373079710', 'Galahad In Blue Jeans (Way Out West) (Harlequin Romantic Suspense)', 'https://images.isbndb.com/covers/97/11/9780373079711.jpg'), - ('0861782356', 'Little Women', 'https://images.isbndb.com/covers/23/52/9780861782352.jpg'), - ('0515097039', 'Funny, Jonas, You Don''t Look Dead', 'https://images.isbndb.com/covers/70/30/9780515097030.jpg'), - ('0553560247', 'Dying For Chocolate (Goldy Culinary Mysteries, Book 2)', 'https://images.isbndb.com/covers/02/44/9780553560244.jpg'), - ('0836135474', 'Beyond The Golden Hills And Other Stories', 'https://images.isbndb.com/covers/54/73/9780836135473.jpg'), - ('0312974221', 'Between Husbands And Friends: A Novel', 'https://images.isbndb.com/covers/42/20/9780312974220.jpg'), - ('0345416600', 'Dave Barry Slept Here: A Sort Of History Of The United States', 'https://images.isbndb.com/covers/66/05/9780345416605.jpg'), - ('0684856476', 'The Rum Diary: A Novel', 'https://images.isbndb.com/covers/64/76/9780684856476.jpg'), - ('0800757734', 'Welcome To The Funny Farm: The All-True Misadventures Of A Woman On The Edge', 'https://images.isbndb.com/covers/77/31/9780800757731.jpg'), - ('0887309100', 'The Dilbert Future: Thriving On Business Stupidity In The 21st Century', 'https://images.isbndb.com/covers/91/06/9780887309106.jpg'), - ('1593080255', 'The Picture Of Dorian Gray (Barnes & Noble Classics Series)', 'https://images.isbndb.com/covers/02/59/9781593080259.jpg'), - ('1400041988', 'Pnin (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/19/85/9781400041985.jpg'), - ('0151010633', 'Q', 'https://images.isbndb.com/covers/06/39/9780151010639.jpg'), - ('9504604730', 'Don Quijote De La Mancha (Spanish Edition)', 'https://images.isbndb.com/covers/47/30/9789504604730.jpg'), - ('0802714358', 'Let Me Go', 'https://images.isbndb.com/covers/43/50/9780802714350.jpg'), - ('9500720418', 'Eva Luna - Bolsillo (Spanish Edition)', 'https://images.isbndb.com/covers/04/10/9789500720410.jpg'), - ('950491036X', 'La Sombra Del Viento (Autores Espanoles E Iberoamericanos) (Spanish Edition)', 'https://images.isbndb.com/covers/03/67/9789504910367.jpg'), - ('0340697083', 'Feng Shui: A Complete Guide (Beginners Guide)', 'https://images.isbndb.com/covers/70/85/9780340697085.jpg'), - ('2742739351', 'Les Soldats De Salamine', 'https://images.isbndb.com/covers/93/56/9782742739356.jpg'), - ('0671008668', 'MONARCH NOTES: J.D. Salinger''s Franny And Zooey', 'https://images.isbndb.com/covers/86/66/9780671008666.jpg'), - ('9509009059', 'Nueve Cuentos (Spanish Edition)', 'https://images.isbndb.com/covers/90/59/9789509009059.jpg'), - ('0312154542', 'Delta Style: Eve Wasn''t A Size 6 And Neither Am I', 'https://images.isbndb.com/covers/45/47/9780312154547.jpg'), - ('0064408639', 'The Austere Academy (A Series Of Unfortunate Events #5)', 'https://images.isbndb.com/covers/86/39/9780064408639.jpg'), - ('0954290100', 'Brideshead Regained', 'https://images.isbndb.com/covers/01/08/9780954290108.jpg'), - ('0553295772', 'Extreme Measures', 'https://images.isbndb.com/covers/57/71/9780553295771.jpg'), - ('0312858957', 'The Blind Mirror', 'https://images.isbndb.com/covers/89/57/9780312858957.jpg'), - ('0345330129', 'The Door Into Summer', 'https://images.isbndb.com/covers/01/23/9780345330123.jpg'), - ('0743410246', 'Lesser Evil (Star Trek Deep Space Nine: Mission Gamma, Book 4)', 'https://images.isbndb.com/covers/02/43/9780743410243.jpg'), - ('0743445643', 'Cathedral (Star Trek Deep Space Nine: Mission Gamma, Book 3)', 'https://images.isbndb.com/covers/56/41/9780743445641.jpg'), - ('0743445627', 'This Gray Spirit (Star Trek Deep Space Nine: Mission Gamma, Book 2)', 'https://images.isbndb.com/covers/56/27/9780743445627.jpg'), - ('0743445600', 'Twilight (Star Trek Deep Space Nine: Mission Gamma, Book 1)', 'https://images.isbndb.com/covers/56/03/9780743445603.jpg'), - ('0812575717', 'Ender''s Shadow (Ender, Book 5)', 'https://images.isbndb.com/covers/57/12/9780812575712.jpg'), - ('0671026356', 'Buffy The Vampire Slayer', 'https://images.isbndb.com/covers/63/56/9780671026356.jpg'), - ('0743427602', 'The Wisdom Of War (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/76/09/9780743427609.jpg'), - ('0671039288', 'Sins Of The Father (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/92/88/9780671039288.jpg'), - ('0671026364', 'Resurrecting Ravana (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/63/63/9780671026363.jpg'), - ('0671526103', 'Star Trek: The Return', 'https://images.isbndb.com/covers/61/08/9780671526108.jpg'), - ('0671021257', 'Star Trek: Preserver', 'https://images.isbndb.com/covers/12/52/9780671021252.jpg'), - ('067100882X', 'Star Trek: Dark Victory', 'https://images.isbndb.com/covers/88/26/9780671008826.jpg'), - ('0671008781', 'Star Trek: Spectre', 'https://images.isbndb.com/covers/87/89/9780671008789.jpg'), - ('2253007900', 'Gatsby Le Magnifique', 'https://images.isbndb.com/covers/79/06/9782253007906.jpg'), - ('0671874349', 'Life After God', 'https://images.isbndb.com/covers/43/46/9780671874346.jpg'), - ('0394838475', 'The Phantom Of The Opera (A Stepping Stone Book)', 'https://images.isbndb.com/covers/84/72/9780394838472.jpg'), - ('0743439775', 'Flight', 'https://images.isbndb.com/covers/97/70/9780743439770.jpg'), - ('1567311199', 'The Haunted Omnibus', 'https://images.isbndb.com/covers/11/98/9781567311198.jpg'), - ('0590482378', 'Stacey And The Bad Girls (Baby-Sitters Club, 87)', 'https://images.isbndb.com/covers/23/70/9780590482370.jpg'), - ('0590482238', 'Mary Anne Breaks The Rules (Baby-Sitters Club)', 'https://images.isbndb.com/covers/22/33/9780590482233.jpg'), - ('0451179706', 'Due Diligence (Rachel Gold Mystery)', 'https://images.isbndb.com/covers/97/08/9780451179708.jpg'), - ('0449219410', 'Skin Tight', 'https://images.isbndb.com/covers/94/16/9780449219416.jpg'), - ('0446609781', 'Beneath The Skin', 'https://images.isbndb.com/covers/97/84/9780446609784.jpg'), - ('0679454446', 'Lucky You', 'https://images.isbndb.com/covers/44/41/9780679454441.jpg'), - ('051512608X', 'The Reef', 'https://images.isbndb.com/covers/60/82/9780515126082.jpg'), - ('0373262329', 'Deadly Practice', 'https://images.isbndb.com/covers/23/28/9780373262328.jpg'), - ('0451124383', 'The Man From St. Petersburg', 'https://images.isbndb.com/covers/43/88/9780451124388.jpg'), - ('1565122208', 'Lightning Song', 'https://images.isbndb.com/covers/22/08/9781565122208.jpg'), - ('0312978332', 'Name Dropping: What If Two Very Different Women Had The Same Exact Name?', 'https://images.isbndb.com/covers/83/34/9780312978334.jpg'), - ('0345294459', 'Chameleon', 'https://images.isbndb.com/covers/44/56/9780345294456.jpg'), - ('0451408888', 'Trials Of Tiffany Trott', 'https://images.isbndb.com/covers/88/84/9780451408884.jpg'), - ('0671524968', 'Lucky', 'https://images.isbndb.com/covers/49/68/9780671524968.jpg'), - ('0515115487', 'Royal Invitation', 'https://images.isbndb.com/covers/54/82/9780515115482.jpg'), - ('1563841134', 'The Basic Steps To Successful Homeschooling', 'https://images.isbndb.com/covers/11/32/9781563841132.jpg'), - ('0060008776', 'Pagan Babies', 'https://images.isbndb.com/covers/87/72/9780060008772.jpg'), - ('0553574671', 'Prime Cut (Goldy Culinary Mysteries, Book 8)', 'https://images.isbndb.com/covers/46/78/9780553574678.jpg'), - ('0061057819', '''48', 'https://images.isbndb.com/covers/78/16/9780061057816.jpg'), - ('0761513779', 'The Homeschooling Book Of Answers: The 88 Most Important Questions Answered By Homeschooling''s Most Respected Voices', 'https://images.isbndb.com/covers/37/73/9780761513773.jpg'), - ('1565078241', 'What Makes A Man Feel Loved', 'https://images.isbndb.com/covers/82/46/9781565078246.jpg'), - ('0449908119', 'Angry Men, Passive Men: Understanding The Roots Of Men''s Anger And How To Move Beyond It', 'https://images.isbndb.com/covers/81/12/9780449908112.jpg'), - ('0312956126', 'The Scold''s Bridle: A Novel', 'https://images.isbndb.com/covers/61/27/9780312956127.jpg'), - ('0385334729', 'Her Father''s House', 'https://images.isbndb.com/covers/47/23/9780385334723.jpg'), - ('0805044698', 'The Day', 'https://images.isbndb.com/covers/46/90/9780805044690.jpg'), - ('075050059X', 'Sins Of Eden', 'https://images.isbndb.com/covers/05/93/9780750500593.jpg'), - ('0140165525', 'The Indoor Boy', 'https://images.isbndb.com/covers/55/24/9780140165524.jpg'), - ('3257231393', 'Sanft Entschlafen: Commissario Brunettis Sechster Fall', 'https://images.isbndb.com/covers/13/97/9783257231397.jpg'), - ('3453149874', 'Das Dilbert- Prinzip', 'https://images.isbndb.com/covers/98/78/9783453149878.jpg'), - ('9681500601', 'Platero Y Yo (Spanish Edition)', 'https://images.isbndb.com/covers/06/03/9789681500603.jpg'), - ('067088300X', 'The Girls'' Guide To Hunting And Fishing', 'https://images.isbndb.com/covers/30/04/9780670883004.jpg'), - ('0786869216', 'The Pleasure Of My Company: A Novel', 'https://images.isbndb.com/covers/92/13/9780786869213.jpg'), - ('0670878103', 'A New Song (The Mitford Years, Book 5)', 'https://images.isbndb.com/covers/81/09/9780670878109.jpg'), - ('0446528382', 'Jack: Straight From The Gut', 'https://images.isbndb.com/covers/83/82/9780446528382.jpg'), - ('0943233437', 'Random Acts Of Kindness', 'https://images.isbndb.com/covers/34/37/9780943233437.jpg'), - ('0375727345', 'House Of Sand And Fog (Oprah''s Book Club) (Vintage Contemporaries)', 'https://images.isbndb.com/covers/73/44/9780375727344.jpg'), - ('0156001454', 'Winterdance: The Fine Madness Of Running The Iditarod', 'https://images.isbndb.com/covers/14/58/9780156001458.jpg'), - ('3440066738', 'Traumberufe Rund Ums Pferd', 'https://images.isbndb.com/covers/67/37/9783440066737.jpg'), - ('0446608890', 'Saving Faith', 'https://images.isbndb.com/covers/88/93/9780446608893.jpg'), - ('0061059137', 'Blade', 'https://images.isbndb.com/covers/91/31/9780061059131.jpg'), - ('059044316X', 'The Cheerleader (Point Thriller)', 'https://images.isbndb.com/covers/31/66/9780590443166.jpg'), - ('0316781460', 'Live From New York: An Uncensored History Of Saturday Night Live', 'https://images.isbndb.com/covers/14/66/9780316781466.jpg'), - ('0425188787', 'Hunting Season (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/87/81/9780425188781.jpg'), - ('0345382323', 'The PMS Outlaws : An Elizabeth MacPherson Novel', 'https://images.isbndb.com/covers/23/20/9780345382320.jpg'), - ('0312983298', 'Full Speed', 'https://images.isbndb.com/covers/32/91/9780312983291.jpg'), - ('0553270249', 'Death On Deadline: A Nero Wolfe Mystery', 'https://images.isbndb.com/covers/02/42/9780553270242.jpg'), - ('0553275852', 'The Monkey''s Raincoat', 'https://images.isbndb.com/covers/58/58/9780553275858.jpg'), - ('0440201330', 'The Five Bells And Bladebone', 'https://images.isbndb.com/covers/13/35/9780440201335.jpg'), - ('0449147398', 'Wildest Dreams', 'https://images.isbndb.com/covers/73/99/9780449147399.jpg'), - ('0747546215', 'The Tulip', 'https://images.isbndb.com/covers/62/14/9780747546214.jpg'), - ('0006513409', 'Making Of Minty Malone', 'https://images.isbndb.com/covers/34/07/9780006513407.jpg'), - ('0312980345', 'Second Thyme Around', 'https://images.isbndb.com/covers/03/44/9780312980344.jpg'), - ('0743437640', 'The Mulberry Tree', 'https://images.isbndb.com/covers/76/46/9780743437646.jpg'), - ('1551668912', 'Thursdays At Eight', 'https://images.isbndb.com/covers/89/18/9781551668918.jpg'), - ('0688009387', 'The Blue Sword', 'https://images.isbndb.com/covers/93/80/9780688009380.jpg'), - ('0380017601', 'Love Story', 'https://images.isbndb.com/covers/76/07/9780380017607.jpg'), - ('0671024418', 'City Of The Dead (Resident Evil #3)', 'https://images.isbndb.com/covers/44/13/9780671024413.jpg'), - ('067102440X', 'Caliban Cove (Resident Evil #2)', 'https://images.isbndb.com/covers/44/06/9780671024406.jpg'), - ('0671024426', 'Underworld (Resident Evil #4)', 'https://images.isbndb.com/covers/44/20/9780671024420.jpg'), - ('0671024396', 'The Umbrella Conspiracy (Resident Evil #1)', 'https://images.isbndb.com/covers/43/90/9780671024390.jpg'), - ('0140346848', 'The Not-So-Jolly Roger (The Time Warp Trio)', 'https://images.isbndb.com/covers/68/48/9780140346848.jpg'), - ('0140346031', 'The Knights Of The Kitchen Table (Time Warp Trio)', 'https://images.isbndb.com/covers/60/39/9780140346039.jpg'), - ('0613286626', 'Summer Reading Is Killing Me! (Time Warp Trio)', 'https://images.isbndb.com/covers/66/26/9780613286626.jpg'), - ('0553568051', 'The Curious Eat Themselves', 'https://images.isbndb.com/covers/80/59/9780553568059.jpg'), - ('042515601X', 'Acts Of War (Tom Clancy''s Op-Center, Book 4)', 'https://images.isbndb.com/covers/60/18/9780425156018.jpg'), - ('0333782259', 'The Creative Writing Coursebook: Forty Authors Share Advice And Exercises For Fiction And Poetry', 'https://images.isbndb.com/covers/22/55/9780333782255.jpg'), - ('0435120964', 'To Kill A Mockingbird (New Windmill)', 'https://images.isbndb.com/covers/09/62/9780435120962.jpg'), - ('0140293442', 'Fever Pitch', 'https://images.isbndb.com/covers/34/49/9780140293449.jpg'), - ('0571097103', 'Wild Flowers Of Chalk And Limestone', 'https://images.isbndb.com/covers/71/04/9780571097104.jpg'), - ('0140293469', 'HIGH FIDELITY', 'https://images.isbndb.com/covers/34/63/9780140293463.jpg'), - ('0920668372', 'Love You Forever', 'https://images.isbndb.com/covers/83/75/9780920668375.jpg'), - ('0375703861', 'White Teeth: A Novel', 'https://images.isbndb.com/covers/38/67/9780375703867.jpg'), - ('0060391537', 'Quivers: A Life', 'https://images.isbndb.com/covers/15/39/9780060391539.jpg'), - ('0156011042', 'East Of The Mountains', 'https://images.isbndb.com/covers/10/44/9780156011044.jpg'), - ('0812566637', 'Legends: Short Novels By The Masters Of Modern Fantasy, Vol. 1', 'https://images.isbndb.com/covers/66/35/9780812566635.jpg'), - ('0060391448', 'Wicked: The Life And Times Of The Wicked Witch Of The West', 'https://images.isbndb.com/covers/14/47/9780060391447.jpg'), - ('0684829975', 'The Vision Of Emma Blau', 'https://images.isbndb.com/covers/99/75/9780684829975.jpg'), - ('0451099648', 'Fire-starter', 'https://images.isbndb.com/covers/96/48/9780451099648.jpg'), - ('0671776975', 'A River Runs Through It And Other Stories', 'https://images.isbndb.com/covers/69/78/9780671776978.jpg'), - ('0440967694', 'The Outsiders', 'https://images.isbndb.com/covers/76/99/9780440967699.jpg'), - ('0060801115', 'Death Be Not Proud A Memoir', 'https://images.isbndb.com/covers/11/13/9780060801113.jpg'), - ('0553149660', 'The Catcher In The Rye', 'https://images.isbndb.com/covers/96/61/9780553149661.jpg'), - ('0425152251', 'Sophie''s World: A Novel About The History Of Philosophy', 'https://images.isbndb.com/covers/22/56/9780425152256.jpg'), - ('0312924585', 'The Silence Of The Lambs', 'https://images.isbndb.com/covers/45/84/9780312924584.jpg'), - ('0684718634', 'Cry, The Beloved Country', 'https://images.isbndb.com/covers/86/37/9780684718637.jpg'), - ('0385479565', 'The Hot Zone: A Terrifying True Story', 'https://images.isbndb.com/covers/95/61/9780385479561.jpg'), - ('0876056354', 'Snakes: Their Care And Keeping', 'https://images.isbndb.com/covers/63/56/9780876056356.jpg'), - ('0375714383', 'Born Free: A Lioness Of Two Worlds', 'https://images.isbndb.com/covers/43/82/9780375714382.jpg'), - ('0441718213', 'The Revenants', 'https://images.isbndb.com/covers/82/14/9780441718214.jpg'), - ('0385499094', 'Akhenaten: Dweller In Truth A Novel', 'https://images.isbndb.com/covers/90/95/9780385499095.jpg'), - ('0743421574', 'Shanghai Baby: A Novel', 'https://images.isbndb.com/covers/15/77/9780743421577.jpg'), - ('0140132708', 'Midnight''s Children', 'https://images.isbndb.com/covers/27/00/9780140132700.jpg'), - ('0312309295', 'Some Days There''s Pie: A Novel', 'https://images.isbndb.com/covers/92/99/9780312309299.jpg'), - ('0671578103', 'Dragonne''s Eg', 'https://images.isbndb.com/covers/81/07/9780671578107.jpg'), - ('0756401364', 'Long Hot Summoning: The Keeper''s Chronicles #3', 'https://images.isbndb.com/covers/13/68/9780756401368.jpg'), - ('0886779758', 'The Second Summoning (The Keeper''s Chronicles, No 2)', 'https://images.isbndb.com/covers/97/57/9780886779757.jpg'), - ('1931561230', 'Sleep Toward Heaven: A Novel', 'https://images.isbndb.com/covers/12/35/9781931561235.jpg'), - ('0807085464', 'LOST WOODS - The Discovered Writing Of Rachel Carson', 'https://images.isbndb.com/covers/54/62/9780807085462.jpg'), - ('0060504072', 'Small Wonder: Essays', 'https://images.isbndb.com/covers/40/76/9780060504076.jpg'), - ('0345460952', 'The Salmon Of Doubt', 'https://images.isbndb.com/covers/09/50/9780345460950.jpg'), - ('0312274920', 'Round Ireland With A Fridge', 'https://images.isbndb.com/covers/49/24/9780312274924.jpg'), - ('0007134495', 'Parzival And The Stone From Heaven: A Grail Romance Retold For Our Time', 'https://images.isbndb.com/covers/44/96/9780007134496.jpg'), - ('0440408903', 'The Remarkable Journey Of Prince Jen', 'https://images.isbndb.com/covers/89/01/9780440408901.jpg'), - ('038081658X', 'The Fresco', 'https://images.isbndb.com/covers/65/83/9780380816583.jpg'), - ('0380791978', 'The Family Tree', 'https://images.isbndb.com/covers/19/72/9780380791972.jpg'), - ('0345397800', 'Cheetah Chase', 'https://images.isbndb.com/covers/78/05/9780345397805.jpg'), - ('0345409671', 'Memnoch The Devil (Vampire Chronicles)', 'https://images.isbndb.com/covers/96/76/9780345409676.jpg'), - ('0441007392', 'Through Alien Eyes', 'https://images.isbndb.com/covers/73/94/9780441007394.jpg'), - ('0441006329', 'The Color Of Distance', 'https://images.isbndb.com/covers/63/28/9780441006328.jpg'), - ('0380791986', 'Six Moon Dance', 'https://images.isbndb.com/covers/19/89/9780380791989.jpg'), - ('0886771544', 'Lythande (Daw Science Fiction)', 'https://images.isbndb.com/covers/15/46/9780886771546.jpg'), - ('0312974485', 'The Samurai''s Wife: A Novel (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/44/80/9780312974480.jpg'), - ('0312979584', 'Black Lotus (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/95/84/9780312979584.jpg'), - ('0553380958', 'Snow Crash (Bantam Spectra Book)', 'https://images.isbndb.com/covers/09/58/9780553380958.jpg'), - ('0756400805', 'The Book Of Air: Volume Four Of The Dragon Quartet', 'https://images.isbndb.com/covers/08/04/9780756400804.jpg'), - ('0886779014', 'Book Of Fire (Dragon Quartet)', 'https://images.isbndb.com/covers/90/16/9780886779016.jpg'), - ('0886776880', 'The Book Of Water (Dragon Quartet, Vol. Two)', 'https://images.isbndb.com/covers/68/86/9780886776886.jpg'), - ('0886775744', 'The Book Of Earth (Dragon Quartet, Vol. One)', 'https://images.isbndb.com/covers/57/42/9780886775742.jpg'), - ('0395272238', 'The Fellowship Of The Ring (Lord Of The Rings)', 'https://images.isbndb.com/covers/22/37/9780395272237.jpg'), - ('0380819007', 'Mendoza In Hollywood (A Novel Of The Company, Book 3)', 'https://images.isbndb.com/covers/90/03/9780380819003.jpg'), - ('0380731800', 'Sky Coyote (A Novel Of The Company, Book 2)', 'https://images.isbndb.com/covers/18/00/9780380731800.jpg'), - ('0142300608', 'Fire Bringer', 'https://images.isbndb.com/covers/06/02/9780142300602.jpg'), - ('087951602X', 'Temporary Agency', 'https://images.isbndb.com/covers/60/24/9780879516024.jpg'), - ('042518627X', 'Mister Posterior And The Genius Child', 'https://images.isbndb.com/covers/62/75/9780425186275.jpg'), - ('0380731797', 'In The Garden Of Iden (A Novel Of The Company, Book 1)', 'https://images.isbndb.com/covers/17/94/9780380731794.jpg'), - ('0970851715', 'Secret', 'https://images.isbndb.com/covers/17/10/9780970851710.jpg'), - ('1557504644', 'First To Fight: An Inside View Of The U.S. Marine Corps (Bluejacket Books)', 'https://images.isbndb.com/covers/46/47/9781557504647.jpg'), - ('081120958X', 'Selected Poems (William Carlos Williams)', 'https://images.isbndb.com/covers/95/88/9780811209588.jpg'), - ('0534525075', 'Marriages And Families: Making Choices In A Diverse Society', 'https://images.isbndb.com/covers/50/71/9780534525071.jpg'), - ('0553583891', 'Dream Island (Medieval Trilogy)', 'https://images.isbndb.com/covers/38/92/9780553583892.jpg'), - ('0684849739', 'The Bible Code', 'https://images.isbndb.com/covers/97/37/9780684849737.jpg'), - ('0312171838', 'Bachelor Brothers'' Bed & Breakfast', 'https://images.isbndb.com/covers/18/34/9780312171834.jpg'), - ('0688175716', 'Strange But True', 'https://images.isbndb.com/covers/57/19/9780688175719.jpg'), - ('0743467604', 'That''s Amore', 'https://images.isbndb.com/covers/76/05/9780743467605.jpg'), - ('0671042505', 'The Last Chance Cafe: A Novel', 'https://images.isbndb.com/covers/25/09/9780671042509.jpg'), - ('0743205413', 'The Summer Of My Greek Taverna: A Memoir', 'https://images.isbndb.com/covers/54/12/9780743205412.jpg'), - ('0399147853', 'Time And Chance', 'https://images.isbndb.com/covers/78/52/9780399147852.jpg'), - ('0425162443', 'The Rapture Of Canaan', 'https://images.isbndb.com/covers/24/46/9780425162446.jpg'), - ('0966482018', 'The Eleanor Roosevelt Girls', 'https://images.isbndb.com/covers/20/10/9780966482010.jpg'), - ('1400060052', 'Lucia, Lucia: A Novel', 'https://images.isbndb.com/covers/00/54/9781400060054.jpg'), - ('0451181409', 'Simon Says', 'https://images.isbndb.com/covers/14/04/9780451181404.jpg'), - ('0060505559', 'To The Heart Of The Nile: Lady Florence Baker And The Exploration Of Central Africa', 'https://images.isbndb.com/covers/55/54/9780060505554.jpg'), - ('0312104472', 'Dancing In The Dark', 'https://images.isbndb.com/covers/44/74/9780312104474.jpg'), - ('1551667533', 'Recipes For Easy Living', 'https://images.isbndb.com/covers/75/39/9781551667539.jpg'), - ('0425183238', 'Mrs. Mike', 'https://images.isbndb.com/covers/32/36/9780425183236.jpg'), - ('0553802240', 'The Secret Hour', 'https://images.isbndb.com/covers/22/45/9780553802245.jpg'), - ('0373711646', 'Those Christmas Angels (Harlequin Superromance No. 1164)', 'https://images.isbndb.com/covers/16/42/9780373711642.jpg'), - ('0345423291', 'What We Keep: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/32/90/9780345423290.jpg'), - ('0515132020', 'Heaven And Earth (Three Sisters Island Trilogy)', 'https://images.isbndb.com/covers/20/21/9780515132021.jpg'), - ('0684864363', 'This Is My Daughter: A Novel', 'https://images.isbndb.com/covers/43/65/9780684864365.jpg'), - ('0515131229', 'Dance Upon The Air (Three Sisters Island Trilogy)', 'https://images.isbndb.com/covers/12/22/9780515131222.jpg'), - ('0451192974', 'Murder Under Blue Skies', 'https://images.isbndb.com/covers/29/74/9780451192974.jpg'), - ('0446679364', 'The Future Homemakers Of America', 'https://images.isbndb.com/covers/93/67/9780446679367.jpg'), - ('0345445732', 'Entering Normal (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/57/35/9780345445735.jpg'), - ('0553581430', 'Last Puzzle & Testament (Puzzle Lady Mysteries)', 'https://images.isbndb.com/covers/14/30/9780553581430.jpg'), - ('0451410157', 'Sweet Nothings', 'https://images.isbndb.com/covers/01/53/9780451410153.jpg'), - ('0373441320', 'A Snowball''s Chance/ A Christmas Carol (harlequin Duets, No. 66)', 'https://images.isbndb.com/covers/13/27/9780373441327.jpg'), - ('1551662906', 'Home To Eden', 'https://images.isbndb.com/covers/29/09/9781551662909.jpg'), - ('0373834748', 'Maitland Maternity Christmas: A Heartbeat Away/The Ends Of The Earth/Once In A Lifetime (Maitland Maternity Clinic Anthology)', 'https://images.isbndb.com/covers/47/47/9780373834747.jpg'), - ('0843943319', 'Christmas Pie (Leisure Historical Romance)', 'https://images.isbndb.com/covers/33/13/9780843943313.jpg'), - ('1570613818', 'Book Lust: Recommended Reading For Every Mood, Moment, And Reason', 'https://images.isbndb.com/covers/38/14/9781570613814.jpg'), - ('0743228022', 'Dirt Music : A Novel', 'https://images.isbndb.com/covers/80/22/9780743228022.jpg'), - ('0385494149', 'Enduring Love: A Novel', 'https://images.isbndb.com/covers/41/44/9780385494144.jpg'), - ('0312199368', 'The Next Step In The Dance: A Novel', 'https://images.isbndb.com/covers/93/64/9780312199364.jpg'), - ('0312199430', 'One Thousand White Women: The Journals Of May Dodd', 'https://images.isbndb.com/covers/94/32/9780312199432.jpg'), - ('1570089957', 'Rebekah: Women Of Genesis (Women Of Genesis (Forge))', 'https://images.isbndb.com/covers/99/54/9781570089954.jpg'), - ('0452282101', 'The Debt: What America Owes To Blacks', 'https://images.isbndb.com/covers/21/00/9780452282100.jpg'), - ('0060193689', 'Rule By Secrecy: The Hidden History That Connects The Trilateral Commision, The Freemasons And The Great Pyramids', 'https://images.isbndb.com/covers/36/83/9780060193683.jpg'), - ('048627263X', 'Flatland: A Romance Of Many Dimensions (Dover Thrift Editions)', 'https://images.isbndb.com/covers/26/34/9780486272634.jpg'), - ('0486270610', 'The Gift Of The Magi And Other Short Stories', 'https://images.isbndb.com/covers/06/16/9780486270616.jpg'), - ('0330330373', 'The Sculptress', 'https://images.isbndb.com/covers/03/74/9780330330374.jpg'), - ('0671318403', 'The Legend That Was Earth', 'https://images.isbndb.com/covers/84/06/9780671318406.jpg'), - ('0743440358', 'Vorpal Blade', 'https://images.isbndb.com/covers/03/56/9780743440356.jpg'), - ('0571135390', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/53/94/9780571135394.jpg'), - ('1557250219', 'Letters From Medjugorje', 'https://images.isbndb.com/covers/02/16/9781557250216.jpg'), - ('0451183746', 'The Road To Wellville: Tie-In', 'https://images.isbndb.com/covers/37/43/9780451183743.jpg'), - ('0316134317', 'The Family Of Pascual Duarte', 'https://images.isbndb.com/covers/43/16/9780316134316.jpg'), - ('0789467747', 'The Secrets Of Bach Flower Remedies', 'https://images.isbndb.com/covers/77/44/9780789467744.jpg'), - ('0071408398', 'More Than A Pink Cadillac : Mary Kay, Inc.''s Nine Leadership Keys To Success', 'https://images.isbndb.com/covers/83/94/9780071408394.jpg'), - ('038079487X', 'What Looks Like Crazy On An Ordinary Day (Oprah''s Book Club)', 'https://images.isbndb.com/covers/48/74/9780380794874.jpg'), - ('0684872153', 'Angela''s Ashes: A Memoir', 'https://images.isbndb.com/covers/21/55/9780684872155.jpg'), - ('0060926317', 'Mutant Message Down Under', 'https://images.isbndb.com/covers/63/11/9780060926311.jpg'), - ('0961937904', 'Knights Of The Whip: Stagecoach Days In Oregon', 'https://images.isbndb.com/covers/79/04/9780961937904.jpg'), - ('0140179755', 'The Way Of A Boy: A Memoir Of Java', 'https://images.isbndb.com/covers/97/50/9780140179750.jpg'), - ('0571152813', 'Birds Of The Innocent Wood', 'https://images.isbndb.com/covers/28/10/9780571152810.jpg'), - ('0140622500', 'Mr. Greedy: Me And My Tummy (Mr. Men Own Stories)', 'https://images.isbndb.com/covers/25/08/9780140622508.jpg'), - ('9038802986', 'Grijze Wolven: Een Zoektocht Naar Turks Extreem-rechts (Dutch Edition)', 'https://images.isbndb.com/covers/29/85/9789038802985.jpg'), - ('0007101953', 'At Ruby''s', 'https://images.isbndb.com/covers/19/55/9780007101955.jpg'), - ('1857238982', 'Snow White And The Seven Samurai', 'https://images.isbndb.com/covers/89/83/9781857238983.jpg'), - ('380062236X', 'Die Externe Rechnungslegung Der Kreditinstitute Und Finanzdienstleistungsinstitute', 'https://images.isbndb.com/covers/23/68/9783800622368.jpg'), - ('0312421273', 'The Corrections: A Novel', 'https://images.isbndb.com/covers/12/74/9780312421274.jpg'), - ('0679454454', 'Sick Puppy', 'https://images.isbndb.com/covers/44/58/9780679454458.jpg'), - ('0743480562', 'CSI, Miami: Heat Wave', 'https://images.isbndb.com/covers/05/67/9780743480567.jpg'), - ('0312986211', 'Tempting The Heiress', 'https://images.isbndb.com/covers/62/16/9780312986216.jpg'), - ('0778320294', 'Mimosa Grove (Mira)', 'https://images.isbndb.com/covers/02/96/9780778320296.jpg'), - ('0425196453', 'The Marriage Test', 'https://images.isbndb.com/covers/64/58/9780425196458.jpg'), - ('1575668572', 'The Dragon Lord''s Daughters', 'https://images.isbndb.com/covers/85/74/9781575668574.jpg'), - ('0821776126', 'Getting What You Want (Stepp Sisters, Book 1)', 'https://images.isbndb.com/covers/61/24/9780821776124.jpg'), - ('0821773429', 'Perfect Switch', 'https://images.isbndb.com/covers/34/20/9780821773420.jpg'), - ('0060555882', 'What Memories Remain', 'https://images.isbndb.com/covers/58/87/9780060555887.jpg'), - ('0380811081', 'Again The Magic', 'https://images.isbndb.com/covers/10/83/9780380811083.jpg'), - ('0373250592', 'The Thin Pink Line (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/05/92/9780373250592.jpg'), - ('0373285043', 'With Open Arms: Song Of The West\Her Mother''s Keeper (Silhouette Single Title)', 'https://images.isbndb.com/covers/50/44/9780373285044.jpg'), - ('0399147020', 'Blood Lure', 'https://images.isbndb.com/covers/70/29/9780399147029.jpg'), - ('0062512668', 'The Cube: Keep The Secret', 'https://images.isbndb.com/covers/26/66/9780062512666.jpg'), - ('0440241162', 'Nerd In Shining Armor (The Nerd Series)', 'https://images.isbndb.com/covers/11/64/9780440241164.jpg'), - ('0439233844', 'A Any Small Goodness: A Novel Of The Barrio', 'https://images.isbndb.com/covers/38/42/9780439233842.jpg'), - ('0785917136', 'Ravage', 'https://images.isbndb.com/covers/71/37/9780785917137.jpg'), - ('1930353006', 'The Toy Factory (Sammy And Brian Mystery)', 'https://images.isbndb.com/covers/30/08/9781930353008.jpg'), - ('0874831121', 'Homecoming: The Southern Family In Short Fiction', 'https://images.isbndb.com/covers/11/22/9780874831122.jpg'), - ('0786866586', 'Shopgirl: A Novella', 'https://images.isbndb.com/covers/65/88/9780786866588.jpg'), - ('0140254749', 'Medicine River', 'https://images.isbndb.com/covers/47/47/9780140254747.jpg'), - ('3250600520', 'Im Café Und Auf Der Strasse. Geschichten.', 'https://images.isbndb.com/covers/05/27/9783250600527.jpg'), - ('3446190295', 'Die Fehler Des Kopisten', 'https://images.isbndb.com/covers/02/90/9783446190290.jpg'), - ('3250102342', 'Das Schimmern Der Flügel: Jugendmythen', 'https://images.isbndb.com/covers/23/42/9783250102342.jpg'), - ('342310001X', 'Fürsorgliche Belagerung: Roman', 'https://images.isbndb.com/covers/00/14/9783423100014.jpg'), - ('3406426530', 'Erinnerungen An Kreisau 1930 - 1945', 'https://images.isbndb.com/covers/65/37/9783406426537.jpg'), - ('3354005092', 'August Der Starke', 'https://images.isbndb.com/covers/50/99/9783354005099.jpg'), - ('3250300020', 'Nachtbuch Für Astrid', 'https://images.isbndb.com/covers/00/21/9783250300021.jpg'), - ('3608958703', 'Unstete Leute', 'https://images.isbndb.com/covers/87/06/9783608958706.jpg'), - ('0061092029', 'A Marriage Made In Heaven: Or Too Tired For An Affair', 'https://images.isbndb.com/covers/20/22/9780061092022.jpg'), - ('3718501473', 'Die USA Im Rückspiegel: Aufzeichnungen Eines Schweizer Amerika-Reisenden', 'https://images.isbndb.com/covers/14/72/9783718501472.jpg'), - ('3453017978', 'Der Matarese- Bund. Roman.', 'https://images.isbndb.com/covers/79/79/9783453017979.jpg'), - ('3492230466', 'Die Akte Odessa / Das Vierte Protokoll', 'https://images.isbndb.com/covers/04/69/9783492230469.jpg'), - ('3492045170', 'Stupid White Men: Eine Abrechnung Mit Dem Amerika Unter George W. Bush', 'https://images.isbndb.com/covers/51/79/9783492045179.jpg'), - ('0072521309', 'Comprehensive School Health Education: Totally Awesome Strategies For Teaching Health', 'https://images.isbndb.com/covers/13/06/9780072521306.jpg'), - ('0679756973', 'An Anthropologist On Mars: Seven Paradoxical Tales', 'https://images.isbndb.com/covers/69/72/9780679756972.jpg'), - ('0517886685', 'Inconspicuous Consumption: An Obsessive Look At The Stuff We Take For Granted, From The Everyday To The Obscure', 'https://images.isbndb.com/covers/66/87/9780517886687.jpg'), - ('1570625190', 'The Tao Of Physics: An Exploration Of The Parallels Between Modern Physics And Eastern Mysticism (25th Anniversary Edition)', 'https://images.isbndb.com/covers/51/90/9781570625190.jpg'), - ('0670866563', 'All In The Family', 'https://images.isbndb.com/covers/65/64/9780670866564.jpg'), - ('0375405046', 'NoBrow: The Culture Of Marketing - The Marketing Of Culture', 'https://images.isbndb.com/covers/50/44/9780375405044.jpg'), - ('0316845442', 'The Pursuit Of Pleasure', 'https://images.isbndb.com/covers/54/41/9780316845441.jpg'), - ('0140291725', 'We Want Some Too: Underground Desire And The Reinvention Of Mass Culture', 'https://images.isbndb.com/covers/17/28/9780140291728.jpg'), - ('0029023106', 'Denial Of Death', 'https://images.isbndb.com/covers/31/05/9780029023105.jpg'), - ('0802134254', 'Woody Allen On Woody Allen', 'https://images.isbndb.com/covers/42/57/9780802134257.jpg'), - ('0688156819', 'The Melancholy Death Of Oyster Boy & Other Stories', 'https://images.isbndb.com/covers/68/17/9780688156817.jpg'), - ('0762403004', 'World''s Shortest Stories: Murder. Love. Horror. Suspense. All This And Much More...', 'https://images.isbndb.com/covers/30/04/9780762403004.jpg'), - ('0140250840', 'Scent Of Dried Roses', 'https://images.isbndb.com/covers/08/48/9780140250848.jpg'), - ('0679723226', 'Double Indemnity', 'https://images.isbndb.com/covers/32/26/9780679723226.jpg'), - ('0679722645', 'The Maltese Falcon', 'https://images.isbndb.com/covers/26/49/9780679722649.jpg'), - ('0380732181', 'An Underachiever''s Diary', 'https://images.isbndb.com/covers/21/80/9780380732180.jpg'), - ('0156007754', 'Blindness (Harvest Book)', 'https://images.isbndb.com/covers/77/57/9780156007757.jpg'), - ('0553371010', 'The Complete Fairy Tales Of Brothers Grimm (A Bantam Trade Paperback)', 'https://images.isbndb.com/covers/10/17/9780553371017.jpg'), - ('031205436X', 'Generation X: Tales For An Accelerated Culture', 'https://images.isbndb.com/covers/43/66/9780312054366.jpg'), - ('1573226521', 'The Beach', 'https://images.isbndb.com/covers/65/23/9781573226523.jpg'), - ('0671027638', 'The Fuck-Up', 'https://images.isbndb.com/covers/76/36/9780671027636.jpg'), - ('0385497091', 'Thumbsucker: A Novel', 'https://images.isbndb.com/covers/70/91/9780385497091.jpg'), - ('1573226882', 'Fever Pitch', 'https://images.isbndb.com/covers/68/82/9781573226882.jpg'), - ('1573228214', 'High Fidelity', 'https://images.isbndb.com/covers/82/13/9781573228213.jpg'), - ('0316780812', 'Sea Glass: A Novel', 'https://images.isbndb.com/covers/08/10/9780316780810.jpg'), - ('0515119784', 'Range Of Motion', 'https://images.isbndb.com/covers/97/87/9780515119787.jpg'), - ('0736909672', 'After Anne (Coming Home To Brewster)', 'https://images.isbndb.com/covers/96/79/9780736909679.jpg'), - ('0786011963', 'The Last To Know', 'https://images.isbndb.com/covers/19/64/9780786011964.jpg'), - ('0811825558', 'The Worst-Case Scenario Survival Handbook', 'https://images.isbndb.com/covers/55/59/9780811825559.jpg'), - ('0141390972', 'Who Was The Man In The Iron Mask? And Other Historical Mysteries (Penquin Classic History)', 'https://images.isbndb.com/covers/09/70/9780141390970.jpg'), - ('0062736302', 'Felinestein: Pampering The Genius In Your Cat', 'https://images.isbndb.com/covers/63/07/9780062736307.jpg'), - ('0071352430', 'Net Slaves: True Tales Of Working The Web', 'https://images.isbndb.com/covers/24/37/9780071352437.jpg'), - ('0671798553', 'Nevermore', 'https://images.isbndb.com/covers/85/50/9780671798550.jpg'), - ('0060953497', 'The Keys Of Egypt: The Race To Crack The Hieroglyph Code', 'https://images.isbndb.com/covers/34/92/9780060953492.jpg'), - ('0306810646', 'The Erotomaniac: The Secret Life Of Henry Spencer Ashbee', 'https://images.isbndb.com/covers/06/40/9780306810640.jpg'), - ('0393318923', 'A Cabinet Of Medical Curiosities: A Compendium Of The Odd, The Bizarre, And The Unexpected', 'https://images.isbndb.com/covers/89/20/9780393318920.jpg'), - ('1882114981', 'Free Software, Free Society: Selected Essays Of Richard M. Stallman', 'https://images.isbndb.com/covers/49/86/9781882114986.jpg'), - ('0471415804', 'Essential XUL Programming', 'https://images.isbndb.com/covers/58/00/9780471415800.jpg'), - ('0380788691', 'A Secret History: The Book Of Ash, #1', 'https://images.isbndb.com/covers/86/99/9780380788699.jpg'), - ('0515134449', 'The Laughing Corpse (Anita Blake, Vampire Hunter, Book 2)', 'https://images.isbndb.com/covers/44/45/9780515134445.jpg'), - ('0596000987', 'Exim: The Mail Transfer Agent', 'https://images.isbndb.com/covers/09/81/9780596000981.jpg'), - ('0134843460', 'Introduction To Functional Programming Using Haskell (2nd Edition)', 'https://images.isbndb.com/covers/34/69/9780134843469.jpg'), - ('0064407675', 'A Series Of Unfortunate Events - The Reptile Room - Book Two', 'https://images.isbndb.com/covers/76/70/9780064407670.jpg'), - ('0767902890', 'The Things They Carried', 'https://images.isbndb.com/covers/28/92/9780767902892.jpg'), - ('0812213122', 'Fantastic Archaeology: The Wild Side Of North American Prehistory', 'https://images.isbndb.com/covers/31/26/9780812213126.jpg'), - ('0879238615', 'Dr Bowdlers Legacy', 'https://images.isbndb.com/covers/86/12/9780879238612.jpg'), - ('0618134786', 'The Best American Science And Nature Writing 2002 (The Best American Series)', 'https://images.isbndb.com/covers/47/86/9780618134786.jpg'), - ('0312135653', 'A Monstrous Regiment Of Women', 'https://images.isbndb.com/covers/56/52/9780312135652.jpg'), - ('0375726446', 'The Future Of Ideas: The Fate Of The Commons In A Connected World', 'https://images.isbndb.com/covers/64/46/9780375726446.jpg'), - ('037575895X', 'Cicero: The Life And Times Of Rome''s Greatest Politician', 'https://images.isbndb.com/covers/89/59/9780375758959.jpg'), - ('0061092355', 'Star Trek Memories', 'https://images.isbndb.com/covers/23/50/9780061092350.jpg'), - ('0060934727', 'Mike Nelson''s Death Rat!', 'https://images.isbndb.com/covers/47/29/9780060934729.jpg'), - ('0375403671', 'Night Watch: A Long-Lost Adventure In Which Sherlock Holmes Meets Father Brown', 'https://images.isbndb.com/covers/36/75/9780375403675.jpg'), - ('0670888214', 'Sherlock Holmes And The Rune Stone Mystery', 'https://images.isbndb.com/covers/82/14/9780670888214.jpg'), - ('0380977788', 'Coraline', 'https://images.isbndb.com/covers/77/89/9780380977789.jpg'), - ('0441304834', 'Guilty Pleasures (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/48/37/9780441304837.jpg'), - ('0375421726', 'Nigger - The Strange Career Of A Troublesome Word', 'https://images.isbndb.com/covers/17/23/9780375421723.jpg'), - ('0609805002', 'My 1,000 Americans: A Year-Long Journey Through The Personals', 'https://images.isbndb.com/covers/50/08/9780609805008.jpg'), - ('1891053426', 'Best Of Temp Slave!', 'https://images.isbndb.com/covers/34/29/9781891053429.jpg'), - ('0393049272', 'Bodies In Motion And At Rest: On Metaphor And Mortality', 'https://images.isbndb.com/covers/92/75/9780393049275.jpg'), - ('0140099182', 'None But A Blockhead', 'https://images.isbndb.com/covers/91/88/9780140099188.jpg'), - ('0385319932', 'The Napoleon Of Crime: The Life And Times Of Adam Worth, Master Thief', 'https://images.isbndb.com/covers/99/35/9780385319935.jpg'), - ('0684853205', 'A Mind Of Its Own: A Cultural History Of The Penis', 'https://images.isbndb.com/covers/32/08/9780684853208.jpg'), - ('0609802437', 'Great Moments In Sex', 'https://images.isbndb.com/covers/24/34/9780609802434.jpg'), - ('0765347415', 'Terminator 3: Rise Of The Machines', 'https://images.isbndb.com/covers/74/11/9780765347411.jpg'), - ('0425071081', 'Don Juan Mcqueen', 'https://images.isbndb.com/covers/10/83/9780425071083.jpg'), - ('0393956571', 'Western Civilizations: Their History And Their Culture, 11 Edition', 'https://images.isbndb.com/covers/65/73/9780393956573.jpg'), - ('0805324305', 'Information Systems: A Management Perspective', 'https://images.isbndb.com/covers/43/03/9780805324303.jpg'), - ('2710305089', 'Pour En Finir Avec Le Travail', 'https://images.isbndb.com/covers/50/88/9782710305088.jpg'), - ('2070368378', 'Eloge De La Fessée', 'https://images.isbndb.com/covers/83/72/9782070368372.jpg'), - ('3462025376', 'Der Mörder Mit Der Strumpfhose', 'https://images.isbndb.com/covers/53/78/9783462025378.jpg'), - ('0553571818', 'Long After Midnight', 'https://images.isbndb.com/covers/18/13/9780553571813.jpg'), - ('0441790348', 'Stranger In A Strange Land', 'https://images.isbndb.com/covers/03/40/9780441790340.jpg'), - ('0812550390', 'The Listeners', 'https://images.isbndb.com/covers/03/99/9780812550399.jpg'), - ('2877141519', 'Salammbô', 'https://images.isbndb.com/covers/15/12/9782877141512.jpg'), - ('0965881199', 'The Diaries Of Adam And Eve: Translated By Mark Twain', 'https://images.isbndb.com/covers/11/97/9780965881197.jpg'), - ('1573928275', 'The Diaries Of Adam And Eve (Literary Classics)', 'https://images.isbndb.com/covers/82/74/9781573928274.jpg'), - ('014011906X', 'Fire On The Mountain', 'https://images.isbndb.com/covers/90/60/9780140119060.jpg'), - ('0920109020', 'Alone In The Australian Outback', 'https://images.isbndb.com/covers/90/21/9780920109021.jpg'), - ('0345377494', 'Box Socials', 'https://images.isbndb.com/covers/74/94/9780345377494.jpg'), - ('0590960369', 'A Rat''s Tale', 'https://images.isbndb.com/covers/03/66/9780590960366.jpg'), - ('0152009604', 'User Unfriendly', 'https://images.isbndb.com/covers/96/01/9780152009601.jpg'), - ('0393038025', 'RL''s Dream', 'https://images.isbndb.com/covers/80/26/9780393038026.jpg'), - ('0771014929', 'Murder At The Mendel (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/49/25/9780771014925.jpg'), - ('0060931809', 'The Map That Changed The World: William Smith And The Birth Of Modern Geology', 'https://images.isbndb.com/covers/18/03/9780060931803.jpg'), - ('1566199697', 'The Metamorphosis And Other Stories', 'https://images.isbndb.com/covers/96/98/9781566199698.jpg'), - ('0451527496', 'The Arabian Nights, Vol. 2', 'https://images.isbndb.com/covers/74/93/9780451527493.jpg'), - ('0451525426', 'The Arabian Nights: The Marvels And Wonders Of The Thousand And One Nights (Signet Classics)', 'https://images.isbndb.com/covers/54/20/9780451525420.jpg'), - ('0553573403', 'A Game Of Thrones (A Song Of Ice And Fire, Book 1)', 'https://images.isbndb.com/covers/34/04/9780553573404.jpg'), - ('0553579908', 'A Clash Of Kings (A Song Of Ice And Fire, Book 2)', 'https://images.isbndb.com/covers/99/01/9780553579901.jpg'), - ('055357342X', 'A Storm Of Swords (A Song Of Ice And Fire, Book 3)', 'https://images.isbndb.com/covers/34/28/9780553573428.jpg'), - ('0440211158', 'Skin', 'https://images.isbndb.com/covers/11/50/9780440211150.jpg'), - ('1885211279', 'There''s No Toilet Paper On The Road Less Traveled: The Best Travel Humor And Misadventure (Travelers'' Tales Guides)', 'https://images.isbndb.com/covers/12/79/9781885211279.jpg'), - ('2290044067', 'Message Des Hommes Vrais Au Monde Mutant', 'https://images.isbndb.com/covers/40/63/9782290044063.jpg'), - ('0821739514', 'Privileged Information', 'https://images.isbndb.com/covers/95/18/9780821739518.jpg'), - ('0553280147', 'Till We Meet Again', 'https://images.isbndb.com/covers/01/42/9780553280142.jpg'), - ('0821730894', 'Sea Devil', 'https://images.isbndb.com/covers/08/98/9780821730898.jpg'), - ('0553245716', 'Scents', 'https://images.isbndb.com/covers/57/14/9780553245714.jpg'), - ('0345391055', 'Disclosure', 'https://images.isbndb.com/covers/10/56/9780345391056.jpg'), - ('0553243055', 'Firefox Down', 'https://images.isbndb.com/covers/30/55/9780553243055.jpg'), - ('0312979479', 'And Then There Were None', 'https://images.isbndb.com/covers/94/78/9780312979478.jpg'), - ('0375760911', 'The Idiot Girls'' Action-Adventure Club: True Tales From A Magnificent And Clumsy Life', 'https://images.isbndb.com/covers/09/14/9780375760914.jpg'), - ('0449244679', 'Answer As A Man', 'https://images.isbndb.com/covers/46/78/9780449244678.jpg'), - ('0671681036', 'All My Friends Are Going To Be Strangers (Touchstone Book)', 'https://images.isbndb.com/covers/10/36/9780671681036.jpg'), - ('068480087X', 'Postcards', 'https://images.isbndb.com/covers/08/75/9780684800875.jpg'), - ('0743407067', 'The First Time', 'https://images.isbndb.com/covers/70/69/9780743407069.jpg'), - ('0515131083', 'Plantation: A Lowcountry Tale', 'https://images.isbndb.com/covers/10/86/9780515131086.jpg'), - ('1585420654', 'God Is No Laughing Matter: Observations And Objections On The Spiritual Path', 'https://images.isbndb.com/covers/06/50/9781585420650.jpg'), - ('1587430665', 'Living On The Borders: What The Church Can Learn From Ethnic Immigrant Cultures', 'https://images.isbndb.com/covers/06/64/9781587430664.jpg'), - ('0684843110', 'Pilgrim Souls: A Collection Of Spiritual Autobiography', 'https://images.isbndb.com/covers/31/17/9780684843117.jpg'), - ('156955028X', 'All You Really Need To Know About Prayer You Can Learn From The Poor', 'https://images.isbndb.com/covers/02/81/9781569550281.jpg'), - ('0446679763', 'The Red Hat Society: Fun And Friendship After Fifty', 'https://images.isbndb.com/covers/97/63/9780446679763.jpg'), - ('0867162791', 'The Wild Man''s Journey: Reflections On Male Spirituality', 'https://images.isbndb.com/covers/27/90/9780867162790.jpg'), - ('0452274664', 'Autobiography Of My Mother', 'https://images.isbndb.com/covers/46/62/9780452274662.jpg'), - ('0064403645', 'The Half-a-Moon Inn', 'https://images.isbndb.com/covers/36/41/9780064403641.jpg'), - ('1400032806', 'Under The Banner Of Heaven: A Story Of Violent Faith', 'https://images.isbndb.com/covers/28/08/9781400032808.jpg'), - ('0140262776', 'Criminals', 'https://images.isbndb.com/covers/27/73/9780140262773.jpg'), - ('0385317042', 'My Sister''s Bones', 'https://images.isbndb.com/covers/70/47/9780385317047.jpg'), - ('0393029875', 'My Sisters Keeper: Learning To Cope With A Sibling''s Mental Illness', 'https://images.isbndb.com/covers/98/71/9780393029871.jpg'), - ('0743243315', 'Brick Lane: A Novel', 'https://images.isbndb.com/covers/33/15/9780743243315.jpg'), - ('0743407059', 'The First Time', 'https://images.isbndb.com/covers/70/52/9780743407052.jpg'), - ('1400061598', 'The Art Of Mending: A Novel (Berg, Elizabeth)', 'https://images.isbndb.com/covers/15/94/9781400061594.jpg'), - ('0452283280', 'Sister Noon', 'https://images.isbndb.com/covers/32/82/9780452283282.jpg'), - ('0743407083', 'Grand Avenue', 'https://images.isbndb.com/covers/70/83/9780743407083.jpg'), - ('0446532444', 'Three Weeks With My Brother', 'https://images.isbndb.com/covers/24/40/9780446532440.jpg'), - ('0446533041', 'Good Grief', 'https://images.isbndb.com/covers/30/41/9780446533041.jpg'), - ('0375413278', 'Rapture', 'https://images.isbndb.com/covers/32/78/9780375413278.jpg'), - ('1892738341', 'Daddy''s Girl', 'https://images.isbndb.com/covers/83/49/9781892738349.jpg'), - ('0743483014', 'Irish Girls About Town: An Anthology Of Short Stories', 'https://images.isbndb.com/covers/30/18/9780743483018.jpg'), - ('0393029603', 'The Book Of Embraces', 'https://images.isbndb.com/covers/96/04/9780393029604.jpg'), - ('0312093004', 'A Safe Place To Die', 'https://images.isbndb.com/covers/30/06/9780312093006.jpg'), - ('0451184149', 'My Soul To Keep', 'https://images.isbndb.com/covers/41/46/9780451184146.jpg'), - ('0380005239', 'Go Ask Alice', 'https://images.isbndb.com/covers/52/39/9780380005239.jpg'), - ('0231121008', 'The Vital Illusion', 'https://images.isbndb.com/covers/10/02/9780231121002.jpg'), - ('0064401774', 'More Scary Stories To Tell In The Dark', 'https://images.isbndb.com/covers/17/77/9780064401777.jpg'), - ('0380732238', 'Smack', 'https://images.isbndb.com/covers/22/34/9780380732234.jpg'), - ('1571740562', 'Conversations With God : An Uncommon Dialogue (Book 2)', 'https://images.isbndb.com/covers/05/64/9781571740564.jpg'), - ('0399142789', 'Conversations With God : An Uncommon Dialogue (Book 1)', 'https://images.isbndb.com/covers/27/89/9780399142789.jpg'), - ('0375406530', 'Waiting', 'https://images.isbndb.com/covers/65/39/9780375406539.jpg'), - ('006000438X', 'The Death Of Vishnu: A Novel', 'https://images.isbndb.com/covers/43/85/9780060004385.jpg'), - ('0679411267', 'The End Of The Pier', 'https://images.isbndb.com/covers/12/60/9780679411260.jpg'), - ('0375412557', 'Death In Holy Orders (Adam Dalgliesh Mystery Series #11)', 'https://images.isbndb.com/covers/25/54/9780375412554.jpg'), - ('0312169868', 'The River Beyond The World: A Novel', 'https://images.isbndb.com/covers/98/62/9780312169862.jpg'), - ('0374129983', 'The Corrections', 'https://images.isbndb.com/covers/99/89/9780374129989.jpg'), - ('067003178X', 'The Kitchen Boy: A Novel Of The Last Tsar', 'https://images.isbndb.com/covers/17/88/9780670031788.jpg'), - ('0688176992', 'Finding Fish: A Memoir', 'https://images.isbndb.com/covers/69/90/9780688176990.jpg'), - ('0312032978', 'Brighten The Corner Where You Are', 'https://images.isbndb.com/covers/29/75/9780312032975.jpg'), - ('0394561619', 'Love In The Time Of Cholera', 'https://images.isbndb.com/covers/16/15/9780394561615.jpg'), - ('0786866470', 'When My Sister Was Cleopatra Moon', 'https://images.isbndb.com/covers/64/72/9780786866472.jpg'), - ('0385318782', 'Talk Before Sleep', 'https://images.isbndb.com/covers/87/85/9780385318785.jpg'), - ('1879941201', 'The Women On The Porch (Southern Classics Series)', 'https://images.isbndb.com/covers/12/05/9781879941205.jpg'), - ('0060920076', 'Affliction', 'https://images.isbndb.com/covers/00/74/9780060920074.jpg'), - ('0679437452', 'RANGE OF MOTION', 'https://images.isbndb.com/covers/74/51/9780679437451.jpg'), - ('1931561648', 'The Time Traveler''s Wife', 'https://images.isbndb.com/covers/16/48/9781931561648.jpg'), - ('0060517794', 'Little Altars Everywhere: A Novel', 'https://images.isbndb.com/covers/77/93/9780060517793.jpg'), - ('0553296124', 'Heir To The Empire (Star Wars: The Thrawn Trilogy, Vol. 1)', 'https://images.isbndb.com/covers/61/29/9780553296129.jpg'), - ('0345413350', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/33/52/9780345413352.jpg'), - ('0380701340', 'A Creed For The Third Millennium', 'https://images.isbndb.com/covers/13/46/9780380701346.jpg'), - ('0373260474', 'Murder Of Muriel Lake', 'https://images.isbndb.com/covers/04/78/9780373260478.jpg'), - ('1588515281', 'Heir To Betrayal', 'https://images.isbndb.com/covers/52/85/9781588515285.jpg'), - ('0679450041', 'The Amazing Adventures Of Kavalier & Clay: A Novel', 'https://images.isbndb.com/covers/00/47/9780679450047.jpg'), - ('0241130522', 'Scarfe Land: A Lost World Of Fabulous Beasts And Monsters', 'https://images.isbndb.com/covers/05/20/9780241130520.jpg'), - ('0413722309', 'If...Files', 'https://images.isbndb.com/covers/23/00/9780413722300.jpg'), - ('0413725405', 'Bell''s Eye', 'https://images.isbndb.com/covers/54/00/9780413725400.jpg'), - ('1853830852', 'Turn Over A New Leaf: Green Cartoons For Care', 'https://images.isbndb.com/covers/08/53/9781853830853.jpg'), - ('0859533565', 'War And Peace (Life Skills & Responsibility)', 'https://images.isbndb.com/covers/35/60/9780859533560.jpg'), - ('0413624501', 'True Confessions Of Adrian Albert Mole, Margaret Hilda Roberts And Susan Lilian Townsend', 'https://images.isbndb.com/covers/45/05/9780413624505.jpg'), - ('1857141296', 'Dinosaur Roar! (Ragged Bears Board Books)', 'https://images.isbndb.com/covers/12/90/9781857141290.jpg'), - ('0745321992', 'Regime Unchanged: Why The War On Iraq Changed Nothing', 'https://images.isbndb.com/covers/19/98/9780745321998.jpg'), - ('0140350748', 'The Jungle Books: Complete And Unabridged (Puffin Classics)', 'https://images.isbndb.com/covers/07/46/9780140350746.jpg'), - ('1853912352', 'Desserts (Merehurst Cookery)', 'https://images.isbndb.com/covers/23/51/9781853912351.jpg'), - ('0201050714', 'The Continuum Concept: In Search Of Happiness Lost (Classics In Human Development)', 'https://images.isbndb.com/covers/07/14/9780201050714.jpg'), - ('0802116175', 'Great Apes', 'https://images.isbndb.com/covers/61/78/9780802116178.jpg'), - ('0140185011', 'Travels With My Aunt', 'https://images.isbndb.com/covers/50/10/9780140185010.jpg'), - ('0140298363', 'Mr. Phillips', 'https://images.isbndb.com/covers/83/69/9780140298369.jpg'), - ('0451146425', 'Lie Down With Lions (Signet)', 'https://images.isbndb.com/covers/64/27/9780451146427.jpg'), - ('0877738513', 'The Art Of Peace: Teachings Of The Founder Of Aikido', 'https://images.isbndb.com/covers/85/10/9780877738510.jpg'), - ('0380817446', 'The Legend Of Bagger Vance', 'https://images.isbndb.com/covers/74/43/9780380817443.jpg'), - ('0440862809', 'Teenage Mutant Ninja Turtles: Junior Novel', 'https://images.isbndb.com/covers/28/02/9780440862802.jpg'), - ('0571197272', 'Birds Of America', 'https://images.isbndb.com/covers/72/79/9780571197279.jpg'), - ('0345300203', 'The Outside Man', 'https://images.isbndb.com/covers/02/01/9780345300201.jpg'), - ('0451167309', 'Paper Money', 'https://images.isbndb.com/covers/73/09/9780451167309.jpg'), - ('0440154731', 'Jailbird', 'https://images.isbndb.com/covers/47/30/9780440154730.jpg'), - ('0553579835', 'The Matarese Countdown', 'https://images.isbndb.com/covers/98/33/9780553579833.jpg'), - ('0449224775', 'The Scarlet Ruse', 'https://images.isbndb.com/covers/47/79/9780449224779.jpg'), - ('0345379330', 'Mostly Harmless (Hitchhiker''s Series)', 'https://images.isbndb.com/covers/93/37/9780345379337.jpg'), - ('1576737330', 'The Prayer Of Jabez: Breaking Through To The Blessed Life', 'https://images.isbndb.com/covers/73/30/9781576737330.jpg'), - ('0590371258', 'Out Of The Dust (Apple Signature Edition)', 'https://images.isbndb.com/covers/12/54/9780590371254.jpg'), - ('1573227226', 'Lambs Of God', 'https://images.isbndb.com/covers/72/23/9781573227223.jpg'), - ('0670871753', 'Listmaker Pb', 'https://images.isbndb.com/covers/17/59/9780670871759.jpg'), - ('0151446474', 'The Name Of The Rose', 'https://images.isbndb.com/covers/64/76/9780151446476.jpg'), - ('0670813028', 'It', 'https://images.isbndb.com/covers/30/25/9780670813025.jpg'), - ('0810922975', 'How To Visit A Museum', 'https://images.isbndb.com/covers/29/76/9780810922976.jpg'), - ('0761520937', 'Homeschooling: The Teen Years: Your Complete Guide To Successfully Homeschooling The 13- To 18- Year-Old (Prima Home Learning Library)', 'https://images.isbndb.com/covers/09/31/9780761520931.jpg'), - ('0785281754', 'The Successful Homeschool Family Handbook', 'https://images.isbndb.com/covers/17/57/9780785281757.jpg'), - ('0345405730', 'Dreamers, Discoverers & Dynamos: How To Help The Child Who Is Bright, Bored And Having Problems In School (Formerly Titled ''The Edison Trait'')', 'https://images.isbndb.com/covers/57/39/9780345405739.jpg'), - ('0451197410', 'How Stella Got Her Groove Back', 'https://images.isbndb.com/covers/74/12/9780451197412.jpg'), - ('0761522557', 'Homeschoolers'' Success Stories : 15 Adults And 12 Young People Share The Impact That Homeschooling Has Made On Their Lives', 'https://images.isbndb.com/covers/25/53/9780761522553.jpg'), - ('0316601950', 'The Pilot''s Wife (Oprah''s Book Club)', 'https://images.isbndb.com/covers/19/55/9780316601955.jpg'), - ('0399151516', 'Reckless Abandon: A Stone Barrington Novel', 'https://images.isbndb.com/covers/15/14/9780399151514.jpg'), - ('0399151435', 'A Death In Vienna', 'https://images.isbndb.com/covers/14/39/9780399151439.jpg'), - ('0451210220', 'The First Law (Dismas Hardy)', 'https://images.isbndb.com/covers/02/27/9780451210227.jpg'), - ('0399148515', 'The English Assassin', 'https://images.isbndb.com/covers/85/14/9780399148514.jpg'), - ('0886777771', 'River Of Blue Fire (Otherland, Volume 2)', 'https://images.isbndb.com/covers/77/77/9780886777777.jpg'), - ('0445406518', 'Crocodile On The Sandbank (Amelia Peabody, Book 1)', 'https://images.isbndb.com/covers/65/13/9780445406513.jpg'), - ('0671697978', 'Monsters And Magicians (Stairway To Forever, No. 2)', 'https://images.isbndb.com/covers/79/76/9780671697976.jpg'), - ('0441317480', 'Hard Sell', 'https://images.isbndb.com/covers/74/86/9780441317486.jpg'), - ('0345405625', 'Walk In Hell (The Great War, Book 2)', 'https://images.isbndb.com/covers/56/23/9780345405623.jpg'), - ('0345406141', 'How Few Remain', 'https://images.isbndb.com/covers/61/49/9780345406149.jpg'), - ('0061006629', 'Fatherland', 'https://images.isbndb.com/covers/66/23/9780061006623.jpg'), - ('0553563696', 'The Hand Of Chaos (Death Gate Cycle, Book 5)', 'https://images.isbndb.com/covers/36/96/9780553563696.jpg'), - ('0345431618', 'The Man Who Fell To Earth', 'https://images.isbndb.com/covers/16/15/9780345431615.jpg'), - ('0553567713', 'Into The Labyrinth (Death Gate Cycle)', 'https://images.isbndb.com/covers/77/17/9780553567717.jpg'), - ('0553286390', 'Dragon Wing (The Death Gate Cycle, Book 1)', 'https://images.isbndb.com/covers/63/97/9780553286397.jpg'), - ('0345301293', 'Blade Runner', 'https://images.isbndb.com/covers/12/91/9780345301291.jpg'), - ('0345382412', 'In The Balance (Worldwar Series, Volume 1)', 'https://images.isbndb.com/covers/24/12/9780345382412.jpg'), - ('0345389972', 'Tilting The Balance (Worldwar Series, Volume 2)', 'https://images.isbndb.com/covers/99/78/9780345389978.jpg'), - ('0345402219', 'Upsetting The Balance (Worldwar Series, Volume 3)', 'https://images.isbndb.com/covers/22/19/9780345402219.jpg'), - ('0345405501', 'Striking The Balance (Worldwar Series, Volume 4)', 'https://images.isbndb.com/covers/55/00/9780345405500.jpg'), - ('0671654349', 'The Stairway To Forever', 'https://images.isbndb.com/covers/43/44/9780671654344.jpg'), - ('0671832174', 'The Book Of The Dun Cow', 'https://images.isbndb.com/covers/21/79/9780671832179.jpg'), - ('0881845531', 'The Zap Gun', 'https://images.isbndb.com/covers/55/32/9780881845532.jpg'), - ('076534128X', 'Rebekah (Women Of Genesis (Forge))', 'https://images.isbndb.com/covers/12/80/9780765341280.jpg'), - ('0441662382', 'Phthor', 'https://images.isbndb.com/covers/23/88/9780441662388.jpg'), - ('0345384687', 'The Guns Of The South', 'https://images.isbndb.com/covers/46/83/9780345384683.jpg'), - ('0345353749', 'A Town Like Alice', 'https://images.isbndb.com/covers/37/40/9780345353740.jpg'), - ('1586481843', 'Franklin Delano Roosevelt: Champion Of Freedom', 'https://images.isbndb.com/covers/18/41/9781586481841.jpg'), - ('088184389X', 'Dr. Bloodmoney', 'https://images.isbndb.com/covers/38/97/9780881843897.jpg'), - ('0460872583', 'The Island Of Doctor Moreau (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/25/84/9780460872584.jpg'), - ('0385333498', 'The Sirens Of Titan: A Novel', 'https://images.isbndb.com/covers/34/98/9780385333498.jpg'), - ('0425043231', 'The Man In The High Castle', 'https://images.isbndb.com/covers/32/33/9780425043233.jpg'), - ('0345313151', 'Bearing An Hourglass (Incarnations Of Immortality, Book 2)', 'https://images.isbndb.com/covers/31/57/9780345313157.jpg'), - ('0345314255', 'The Sword Of Shannara', 'https://images.isbndb.com/covers/42/53/9780345314253.jpg'), - ('0345305183', 'On A Pale Horse (Incarnations Of Immortality, Book 1)', 'https://images.isbndb.com/covers/51/83/9780345305183.jpg'), - ('0380004933', 'Man Who Fell To Earth', 'https://images.isbndb.com/covers/49/35/9780380004935.jpg'), - ('0451132343', 'Fire-Starter', 'https://images.isbndb.com/covers/23/45/9780451132345.jpg'), - ('0345279255', 'Castle Roogna (Xanth, No. 3)', 'https://images.isbndb.com/covers/92/55/9780345279255.jpg'), - ('0451131312', 'Night Shift', 'https://images.isbndb.com/covers/13/17/9780451131317.jpg'), - ('0345272846', 'THE SOURCE OF MAGIC', 'https://images.isbndb.com/covers/28/43/9780345272843.jpg'), - ('0786884460', 'The Ice Master: The Doomed 1913 Voyage Of The Karluk', 'https://images.isbndb.com/covers/44/69/9780786884469.jpg'), - ('0061031429', 'The Vendetta Defense', 'https://images.isbndb.com/covers/14/27/9780061031427.jpg'), - ('0060977337', 'Downsize This! Random Threats From An Unarmed American', 'https://images.isbndb.com/covers/73/37/9780060977337.jpg'), - ('0446693790', 'Dude, Where''s My Country?', 'https://images.isbndb.com/covers/37/90/9780446693790.jpg'), - ('0553380168', 'A Brief History Of Time', 'https://images.isbndb.com/covers/01/63/9780553380163.jpg'), - ('0140285008', 'The Penguin Book Of 20th-Century Speeches', 'https://images.isbndb.com/covers/50/00/9780140285000.jpg'), - ('067104155X', 'Diablo #1: Legacy Of Blood', 'https://images.isbndb.com/covers/15/57/9780671041557.jpg'), - ('006098726X', 'Stupid White Men: ...And Other Sorry Excuses For The State Of The Nation!', 'https://images.isbndb.com/covers/72/68/9780060987268.jpg'), - ('068483569X', 'The Commanding Heights : The Battle For The World Economy', 'https://images.isbndb.com/covers/56/93/9780684835693.jpg'), - ('0380701006', 'Inside Outside', 'https://images.isbndb.com/covers/10/01/9780380701001.jpg'), - ('0671504398', 'Les Miserables (Enriched Classics)', 'https://images.isbndb.com/covers/43/97/9780671504397.jpg'), - ('0451522303', 'Animal Farm (Signet Classics)', 'https://images.isbndb.com/covers/23/06/9780451522306.jpg'), - ('0441005152', 'Scales Of Justice', 'https://images.isbndb.com/covers/51/54/9780441005154.jpg'), - ('3518366750', 'Der Steppenwolf: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/67/52/9783518366752.jpg'), - ('3453172337', 'Das Schwarze Auge 50. Gassengeschichten. Fünfzigster Band Aus Der Aventurischen Spielewelt.', 'https://images.isbndb.com/covers/23/33/9783453172333.jpg'), - ('3404136012', 'Wintermond', 'https://images.isbndb.com/covers/60/18/9783404136018.jpg'), - ('3453131169', 'Flüstern In Der Nacht', 'https://images.isbndb.com/covers/11/63/9783453131163.jpg'), - ('3453092007', 'Die Zweite Haut.', 'https://images.isbndb.com/covers/20/06/9783453092006.jpg'), - ('0553582925', 'Tick Tock', 'https://images.isbndb.com/covers/29/25/9780553582925.jpg'), - ('0441008763', 'The Coming', 'https://images.isbndb.com/covers/87/66/9780441008766.jpg'), - ('0812545249', 'The Chronoliths', 'https://images.isbndb.com/covers/52/41/9780812545241.jpg'), - ('0446606715', 'A Second Chance At Eden', 'https://images.isbndb.com/covers/67/14/9780446606714.jpg'), - ('0553572423', 'The Fist Of God', 'https://images.isbndb.com/covers/24/21/9780553572421.jpg'), - ('0373320132', 'Lord Of High Cliff Manor (Gothic Romances)', 'https://images.isbndb.com/covers/01/34/9780373320134.jpg'), - ('0803728492', 'Gossip Times Three', 'https://images.isbndb.com/covers/84/93/9780803728493.jpg'), - ('0525941673', 'Cavedweller', 'https://images.isbndb.com/covers/16/75/9780525941675.jpg'), - ('0812522400', 'Lord Of The Isles', 'https://images.isbndb.com/covers/24/02/9780812522402.jpg'), - ('0553102044', 'Jane And The Wandering Eye: Being The Third Jane Austen Mystery', 'https://images.isbndb.com/covers/20/48/9780553102048.jpg'), - ('156718359X', 'Hypnosis For Beginners: Reach New Levels Of Awareness & Achievement (For Beginners (Llewellyn''s))', 'https://images.isbndb.com/covers/35/97/9781567183597.jpg'), - ('0671722948', 'Twelfth Night', 'https://images.isbndb.com/covers/29/44/9780671722944.jpg'), - ('0140191550', 'Shamanism Archaic Techniques Of Ecstasy (Arkana)', 'https://images.isbndb.com/covers/15/54/9780140191554.jpg'), - ('0140009930', 'Day Of The Triffids', 'https://images.isbndb.com/covers/99/34/9780140009934.jpg'), - ('014027944X', 'Armadillo', 'https://images.isbndb.com/covers/94/43/9780140279443.jpg'), - ('0140051627', 'The Trials Of Rumpole', 'https://images.isbndb.com/covers/16/29/9780140051629.jpg'), - ('0713910372', 'The Penguin Dictionary Of Quotations', 'https://images.isbndb.com/covers/03/77/9780713910377.jpg'), - ('0140510494', 'The Penguin Dictionary Of Geology (Dictionary, Penguin)', 'https://images.isbndb.com/covers/04/92/9780140510492.jpg'), - ('0140510028', 'A Dictionary Of Geography (Fifth Edition)', 'https://images.isbndb.com/covers/00/27/9780140510027.jpg'), - ('0140442073', 'The Twilight Of The Idols And The Anti-Christ: Or How To Philosophize With A Hammer (Classics)', 'https://images.isbndb.com/covers/20/76/9780140442076.jpg'), - ('0575075546', 'The Soddit: Or, Cashing In Again (Gollancz Sf S.)', 'https://images.isbndb.com/covers/55/42/9780575075542.jpg'), - ('0091816874', 'Sugar Busters', 'https://images.isbndb.com/covers/68/72/9780091816872.jpg'), - ('0330020706', 'Town Like Alice', 'https://images.isbndb.com/covers/07/01/9780330020701.jpg'), - ('0851123554', 'The Guinness Book Of Aircraft: Records, Facts And Feats', 'https://images.isbndb.com/covers/35/54/9780851123554.jpg'), - ('0743220633', 'Sun Dog', 'https://images.isbndb.com/covers/06/37/9780743220637.jpg'), - ('1903402913', 'Gangbuster', 'https://images.isbndb.com/covers/29/17/9781903402917.jpg'), - ('1856053318', 'Nostradamus: The Prophecies', 'https://images.isbndb.com/covers/33/10/9781856053310.jpg'), - ('0752521454', 'Patios, Pots And Window Box', 'https://images.isbndb.com/covers/14/59/9780752521459.jpg'), - ('0696204800', '501 Quilt Blocks: A Treasury Of Patterns For Patchwork And Applique (Better Homes & Gardens Crafts)', 'https://images.isbndb.com/covers/48/07/9780696204807.jpg'), - ('027300235X', 'Boxes (Collecting For Tomorrow)', 'https://images.isbndb.com/covers/23/52/9780273002352.jpg'), - ('0877540950', 'Decorative Printed Tins', 'https://images.isbndb.com/covers/09/53/9780877540953.jpg'), - ('0751514853', 'Supping With Panthers', 'https://images.isbndb.com/covers/48/58/9780751514858.jpg'), - ('3404143205', 'Mission Sphinx: Thriller', 'https://images.isbndb.com/covers/32/07/9783404143207.jpg'), - ('345386980X', 'Der Richter: Roman', 'https://images.isbndb.com/covers/98/06/9783453869806.jpg'), - ('3629002013', 'Ein Gutes Jahr', 'https://images.isbndb.com/covers/20/13/9783629002013.jpg'), - ('0877147728', 'My Last Remains', 'https://images.isbndb.com/covers/77/25/9780877147725.jpg'), - ('0674955218', 'Women On The Margins: Three Seventeenth-Century Lives', 'https://images.isbndb.com/covers/52/19/9780674955219.jpg'), - ('0452283930', 'Gossip Hound', 'https://images.isbndb.com/covers/39/30/9780452283930.jpg'), - ('0553382225', 'The Big Bad Wolf Tells All', 'https://images.isbndb.com/covers/22/28/9780553382228.jpg'), - ('1573227331', 'About A Boy', 'https://images.isbndb.com/covers/73/39/9781573227339.jpg'), - ('0679767959', 'Heartburn', 'https://images.isbndb.com/covers/79/54/9780679767954.jpg'), - ('0451526767', 'Twelfth Night: Or, What You Will (Signet Classics)', 'https://images.isbndb.com/covers/67/62/9780451526762.jpg'), - ('0596001932', 'The Root Of All Evil', 'https://images.isbndb.com/covers/19/33/9780596001933.jpg'), - ('156592861X', 'Evil Geniuses In A Nutshell', 'https://images.isbndb.com/covers/86/19/9781565928619.jpg'), - ('1565926730', 'User Friendly: The Comic Strip', 'https://images.isbndb.com/covers/67/38/9781565926738.jpg'), - ('080411918X', 'A Patchwork Planet', 'https://images.isbndb.com/covers/91/84/9780804119184.jpg'), - ('0060171405', 'The Power Of Beauty', 'https://images.isbndb.com/covers/14/07/9780060171407.jpg'), - ('0553293176', 'Dangerous', 'https://images.isbndb.com/covers/31/73/9780553293173.jpg'), - ('0316812471', 'Revolution From Within: A Book Of Self-Esteem', 'https://images.isbndb.com/covers/24/74/9780316812474.jpg'), - ('0440222915', 'Outlander', 'https://images.isbndb.com/covers/29/10/9780440222910.jpg'), - ('1551668653', 'Getting Rid Of Bradley', 'https://images.isbndb.com/covers/86/59/9781551668659.jpg'), - ('038079960X', 'The Mermaids Singing', 'https://images.isbndb.com/covers/96/02/9780380799602.jpg'), - ('0440237300', 'Three Weeks In Paris', 'https://images.isbndb.com/covers/73/03/9780440237303.jpg'), - ('0373292945', 'The Wedding Knight', 'https://images.isbndb.com/covers/29/43/9780373292943.jpg'), - ('1568842406', 'Windows.. 95 For Dummies..', 'https://images.isbndb.com/covers/24/00/9781568842400.jpg'), - ('0399133186', 'Mortal Fear', 'https://images.isbndb.com/covers/31/83/9780399133183.jpg'), - ('0066214122', 'Prey', 'https://images.isbndb.com/covers/41/22/9780066214122.jpg'), - ('0684803135', 'The Moral Compass: Stories For A Life''s Journey', 'https://images.isbndb.com/covers/31/35/9780684803135.jpg'), - ('0451404300', 'The Dividing Line (Onyx)', 'https://images.isbndb.com/covers/43/05/9780451404305.jpg'), - ('0312192339', 'Incident At Twenty-Mile', 'https://images.isbndb.com/covers/23/34/9780312192334.jpg'), - ('0060802162', 'Hitler : A Study In Tyranny ( Harper Perennial Library, P 216)', 'https://images.isbndb.com/covers/21/65/9780060802165.jpg'), - ('0394744322', 'WAITING TO LIVE-V432 (Aventura)', 'https://images.isbndb.com/covers/43/22/9780394744322.jpg'), - ('0375507523', 'Bushwhacked: Life In George W. Bush''s America', 'https://images.isbndb.com/covers/75/26/9780375507526.jpg'), - ('0140266909', 'Please Kill Me: The Uncensored Oral History Of Punk', 'https://images.isbndb.com/covers/69/00/9780140266900.jpg'), - ('0836221192', 'Fugitive From The Cubicle Police', 'https://images.isbndb.com/covers/11/90/9780836221190.jpg'), - ('0446386405', 'How To Live With A Neurotic Cat', 'https://images.isbndb.com/covers/64/01/9780446386401.jpg'), - ('0688088007', 'Grand Tours And Cook''s Tours: A History Of Leisure Travel, 1750-1915', 'https://images.isbndb.com/covers/80/02/9780688088002.jpg'), - ('0140444203', 'The Jewish War: Revised Edition (Penguin Classics)', 'https://images.isbndb.com/covers/42/09/9780140444209.jpg'), - ('1878825003', 'The Decline And Fall Of The American Empire (The Real Story Series)', 'https://images.isbndb.com/covers/50/01/9781878825001.jpg'), - ('0070037485', 'Flaubert''s Parrot', 'https://images.isbndb.com/covers/74/89/9780070037489.jpg'), - ('3499102277', 'Lachen, Liebe, Nächte: Sechs Erzählungen', 'https://images.isbndb.com/covers/22/71/9783499102271.jpg'), - ('0872203948', 'The Peloponnesian War', 'https://images.isbndb.com/covers/39/45/9780872203945.jpg'), - ('0385721404', 'Holy War: The Crusades And Their Impact On Today''s World', 'https://images.isbndb.com/covers/14/00/9780385721400.jpg'), - ('0375410597', 'Executioner''s Current: Thomas Edison, George Westinghouse, And The Invention Of The Electric Chair', 'https://images.isbndb.com/covers/05/98/9780375410598.jpg'), - ('0440125081', 'Final Diagnosis, The', 'https://images.isbndb.com/covers/50/82/9780440125082.jpg'), - ('0446604275', 'Primary Colors: A Novel Of Politics', 'https://images.isbndb.com/covers/42/77/9780446604277.jpg'), - ('0671501747', 'Salvador', 'https://images.isbndb.com/covers/17/47/9780671501747.jpg'), - ('0805040900', 'The Twilight Of Common Dreams: Why America Is Wracked By Culture Wars', 'https://images.isbndb.com/covers/09/06/9780805040906.jpg'), - ('0465006930', 'The Bell Curve Wars: Race, Intelligence, And The Future Of America (A New Republic Book)', 'https://images.isbndb.com/covers/69/39/9780465006939.jpg'), - ('0670804541', 'Amusing Ourselves To Death', 'https://images.isbndb.com/covers/45/42/9780670804542.jpg'), - ('0679741836', 'Molly Ivins Can''t Say That, Can She?', 'https://images.isbndb.com/covers/18/31/9780679741831.jpg'), - ('068810391X', 'The Next Century', 'https://images.isbndb.com/covers/39/10/9780688103910.jpg'), - ('0849912903', 'The End Of The Age: A Novel', 'https://images.isbndb.com/covers/29/00/9780849912900.jpg'), - ('034531798X', 'FOUNDATION', 'https://images.isbndb.com/covers/79/88/9780345317988.jpg'), - ('0812968379', 'Funny In Farsi: A Memoir Of Growing Up Iranian In America', 'https://images.isbndb.com/covers/83/78/9780812968378.jpg'), - ('0312961294', 'Snow In April', 'https://images.isbndb.com/covers/12/99/9780312961299.jpg'), - ('034545071X', 'Distant Shores', 'https://images.isbndb.com/covers/07/15/9780345450715.jpg'), - ('0451188470', 'The Love Letter', 'https://images.isbndb.com/covers/84/72/9780451188472.jpg'), - ('006019541X', 'Blue Angel: A Novel', 'https://images.isbndb.com/covers/54/10/9780060195410.jpg'), - ('0446527696', 'The Edge Of Town', 'https://images.isbndb.com/covers/76/99/9780446527699.jpg'), - ('0446609749', 'Getting Back', 'https://images.isbndb.com/covers/97/46/9780446609746.jpg'), - ('0375502238', 'Blessings', 'https://images.isbndb.com/covers/22/31/9780375502231.jpg'), - ('0440202043', 'The Shell Seekers', 'https://images.isbndb.com/covers/20/42/9780440202042.jpg'), - ('0345285557', 'The Elfstones Of Shannara', 'https://images.isbndb.com/covers/55/53/9780345285553.jpg'), - ('0821723243', 'House Of Illusions', 'https://images.isbndb.com/covers/32/41/9780821723241.jpg'), - ('0312156499', 'Seeing Calvin Coolidge In A Dream: A Novel', 'https://images.isbndb.com/covers/64/97/9780312156497.jpg'), - ('0938077112', 'The Heart Of Understanding: Commentaries On The Prajnaparamita Heart Sutra', 'https://images.isbndb.com/covers/71/14/9780938077114.jpg'), - ('0312975228', 'Boy In The Water', 'https://images.isbndb.com/covers/52/27/9780312975227.jpg'), - ('0590452037', 'Maniac Magee', 'https://images.isbndb.com/covers/20/38/9780590452038.jpg'), - ('0451183665', 'A Case Of Need', 'https://images.isbndb.com/covers/36/68/9780451183668.jpg'), - ('0061097268', 'Unwanted Company', 'https://images.isbndb.com/covers/72/63/9780061097263.jpg'), - ('0553111531', 'Darkness Peering', 'https://images.isbndb.com/covers/15/38/9780553111538.jpg'), - ('0439137411', 'Mewtwo Strikes Back (Pokemon, The First Movie)', 'https://images.isbndb.com/covers/74/16/9780439137416.jpg'), - ('0312155859', 'Mary Queen Of Scotland & The Isles: A Novel', 'https://images.isbndb.com/covers/58/58/9780312155858.jpg'), - ('0380758377', 'Without Due Process', 'https://images.isbndb.com/covers/83/71/9780380758371.jpg'), - ('0345441761', 'Death Row', 'https://images.isbndb.com/covers/17/68/9780345441768.jpg'), - ('0399150897', 'Blow Fly', 'https://images.isbndb.com/covers/08/90/9780399150890.jpg'), - ('0449911160', 'About Schmidt (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/11/67/9780449911167.jpg'), - ('0671868640', 'The ENCHANTED APRIL', 'https://images.isbndb.com/covers/86/42/9780671868642.jpg'), - ('0553247379', 'The Mother Hunt', 'https://images.isbndb.com/covers/73/74/9780553247374.jpg'), - ('0061043508', 'Strong Poison', 'https://images.isbndb.com/covers/35/05/9780061043505.jpg'), - ('0811828964', 'The Bad Girl''s Guide To Getting What You Want', 'https://images.isbndb.com/covers/89/63/9780811828963.jpg'), - ('0671624342', 'A Matter Of Honor', 'https://images.isbndb.com/covers/43/47/9780671624347.jpg'), - ('0786890169', 'Black Water: A Merci Rayborn Novel', 'https://images.isbndb.com/covers/01/63/9780786890163.jpg'), - ('074322535X', 'Gap Creek: The Story Of A Marriage', 'https://images.isbndb.com/covers/53/59/9780743225359.jpg'), - ('0399148728', 'Fire Ice: A Novel From The NUMA Files', 'https://images.isbndb.com/covers/87/29/9780399148729.jpg'), - ('0071349294', 'Great Eastern RV Trips: A Year-Round Guide To The Best Rving In The East', 'https://images.isbndb.com/covers/92/91/9780071349291.jpg'), - ('0312869061', 'Swell Foop (Xanth Novels)', 'https://images.isbndb.com/covers/90/69/9780312869069.jpg'), - ('0812968212', 'Matchstick Men: A Novel About Grifters With Issues', 'https://images.isbndb.com/covers/82/17/9780812968217.jpg'), - ('0312264372', 'Robert Ludlum''s The Hades Factor: A Covert-One Novel', 'https://images.isbndb.com/covers/43/76/9780312264376.jpg'), - ('0684841185', 'Death Du Jour', 'https://images.isbndb.com/covers/11/82/9780684841182.jpg'), - ('0749005491', 'Chill Factor (Detective Inspector Charlie Priest Mystery)', 'https://images.isbndb.com/covers/54/98/9780749005498.jpg'), - ('0679463070', 'Casual Rex: A Novel', 'https://images.isbndb.com/covers/30/78/9780679463078.jpg'), - ('0399146865', 'Getting What You Want: The 7 Principles Of Rational Living', 'https://images.isbndb.com/covers/68/62/9780399146862.jpg'), - ('0312873085', 'Elixir', 'https://images.isbndb.com/covers/30/80/9780312873080.jpg'), - ('0875964249', 'A Lifetime Of Sex: The Ultimate Manual On Sex, Women, And Relationships For Every Stage Of A Man''s Life', 'https://images.isbndb.com/covers/42/49/9780875964249.jpg'), - ('0028625757', 'The Complete Illustrated Guide To Everything Sold In Hardware Stores', 'https://images.isbndb.com/covers/57/51/9780028625751.jpg'), - ('0399146687', 'Perish Twice', 'https://images.isbndb.com/covers/66/88/9780399146688.jpg'), - ('055380099X', 'Last Puzzle & Testament', 'https://images.isbndb.com/covers/09/99/9780553800999.jpg'), - ('0316693286', 'Pop Goes The Weasel (Alex Cross)', 'https://images.isbndb.com/covers/32/88/9780316693288.jpg'), - ('0670861944', 'Math Curse', 'https://images.isbndb.com/covers/19/41/9780670861941.jpg'), - ('0399146237', 'Running Blind (Jack Reacher, No. 4)', 'https://images.isbndb.com/covers/62/37/9780399146237.jpg'), - ('0684842106', 'Terminal Event: A Novel', 'https://images.isbndb.com/covers/21/03/9780684842103.jpg'), - ('0439164842', 'Eleanor: Crown Jewel Of Aquitaine, France, 1136 (The Royal Diaries)', 'https://images.isbndb.com/covers/48/49/9780439164849.jpg'), - ('0060174056', 'The Tennis Partner', 'https://images.isbndb.com/covers/40/57/9780060174057.jpg'), - ('0373484887', 'Hidden Star (The Stars Of Mithra)', 'https://images.isbndb.com/covers/48/81/9780373484881.jpg'), - ('0099521016', 'Midnight In The Garden Of Good And Evil', 'https://images.isbndb.com/covers/10/13/9780099521013.jpg'), - ('0750005815', 'Whitby Series Pb Book 1 (Whitby Book One)', 'https://images.isbndb.com/covers/58/14/9780750005814.jpg'), - ('075001203X', 'Whitby Series Pb Book 2 (Whitby Book Two)', 'https://images.isbndb.com/covers/20/34/9780750012034.jpg'), - ('0330261878', 'Animals Of Farthing Wood', 'https://images.isbndb.com/covers/18/76/9780330261876.jpg'), - ('0140302395', 'Gobbolino The Witch''s Cat (Young Puffin Books)', 'https://images.isbndb.com/covers/23/94/9780140302394.jpg'), - ('0060086246', 'Last Chance Saloon', 'https://images.isbndb.com/covers/62/44/9780060086244.jpg'), - ('0451180429', 'The Quiet Game', 'https://images.isbndb.com/covers/04/21/9780451180421.jpg'), - ('0373250126', 'Milkrun', 'https://images.isbndb.com/covers/01/27/9780373250127.jpg'), - ('0060723890', 'The Other Man: John F. Kennedy Jr., Carolyn Bessette, And Me', 'https://images.isbndb.com/covers/38/97/9780060723897.jpg'), - ('0373250193', 'Loose Screws (Red Dress Ink)', 'https://images.isbndb.com/covers/01/96/9780373250196.jpg'), - ('0758204930', 'Life A La Mode', 'https://images.isbndb.com/covers/49/36/9780758204936.jpg'), - ('0451410947', 'Must Love Dogs', 'https://images.isbndb.com/covers/09/48/9780451410948.jpg'), - ('038550926X', 'The Devil Wears Prada: A Novel', 'https://images.isbndb.com/covers/92/68/9780385509268.jpg'), - ('0061010707', 'Men, Women And Relationships', 'https://images.isbndb.com/covers/07/05/9780061010705.jpg'), - ('3462031112', 'Affenliebe: Die Geschichte Eines Langen Entzugs', 'https://images.isbndb.com/covers/11/19/9783462031119.jpg'), - ('3499187809', 'Der Mann, Der Seine Frau Mit Einem Hut Verwechselte', 'https://images.isbndb.com/covers/78/03/9783499187803.jpg'), - ('3446203966', 'Das Leiden Anderer Betrachten', 'https://images.isbndb.com/covers/39/69/9783446203969.jpg'), - ('3442727367', 'Katalog Von Allem. 1111 Nummern Aus 31 Jahren.', 'https://images.isbndb.com/covers/73/60/9783442727360.jpg'), - ('3216303217', 'Cramer', 'https://images.isbndb.com/covers/32/19/9783216303219.jpg'), - ('3442444020', 'Denn Sie Betrügt Man Nicht. Roman', 'https://images.isbndb.com/covers/40/21/9783442444021.jpg'), - ('3257229364', 'Endstation Venedig: Commissario Brunettis Zweiter Fall', 'https://images.isbndb.com/covers/93/63/9783257229363.jpg'), - ('349961118X', 'Minusgrade - Auf Der Suche Nach Dem Absoluten Nullpunkt', 'https://images.isbndb.com/covers/11/86/9783499611186.jpg'), - ('3795116074', 'Wüstenblume', 'https://images.isbndb.com/covers/60/71/9783795116071.jpg'), - ('3499232103', 'Lobrede Auf Das Fehlende Teil', 'https://images.isbndb.com/covers/21/07/9783499232107.jpg'), - ('0552998001', 'Blackberry Wine', 'https://images.isbndb.com/covers/80/00/9780552998000.jpg'), - ('3499114178', 'Gammler, Zen Und Hohe Berge', 'https://images.isbndb.com/covers/41/75/9783499114175.jpg'), - ('3442439736', 'Die Schandmaske', 'https://images.isbndb.com/covers/97/37/9783442439737.jpg'), - ('3442350484', 'Die Eiserne Kaiserin', 'https://images.isbndb.com/covers/04/83/9783442350483.jpg'), - ('0671004530', 'On The Street Where You Live', 'https://images.isbndb.com/covers/45/38/9780671004538.jpg'), - ('3421056056', 'Rosa: Roman', 'https://images.isbndb.com/covers/60/54/9783421056054.jpg'), - ('3442720141', 'Der Buchtrinker.', 'https://images.isbndb.com/covers/01/49/9783442720149.jpg'), - ('325722575X', 'Der Hahn Ist Tot', 'https://images.isbndb.com/covers/57/54/9783257225754.jpg'), - ('3442413338', 'Lauf, Jane, Lauf!: Roman', 'https://images.isbndb.com/covers/33/31/9783442413331.jpg'), - ('3499129728', 'Karussell Des Lebens', 'https://images.isbndb.com/covers/97/28/9783499129728.jpg'), - ('3442435366', 'Die Tote Ohne Namen: Roman', 'https://images.isbndb.com/covers/53/64/9783442435364.jpg'), - ('3442441382', 'Ein Fall Für Kay Scarpetta', 'https://images.isbndb.com/covers/13/89/9783442441389.jpg'), - ('3499613638', 'Ein Blick Zurück, Ein Schritt Nach Vorn', 'https://images.isbndb.com/covers/36/30/9783499613630.jpg'), - ('3499134411', 'Stadtgeschichten', 'https://images.isbndb.com/covers/44/18/9783499134418.jpg'), - ('3257224303', 'Gibt''s Ein Baby, Das Nicht Schreit? Roman.', 'https://images.isbndb.com/covers/43/06/9783257224306.jpg'), - ('3462025864', 'Fever Pitch: Ballfieber - Die Geschichte Eines Fans', 'https://images.isbndb.com/covers/58/66/9783462025866.jpg'), - ('0811811654', 'Taxi Driver Wisdom', 'https://images.isbndb.com/covers/16/51/9780811811651.jpg'), - ('0440226414', 'Fortune''s Hand', 'https://images.isbndb.com/covers/64/13/9780440226413.jpg'), - ('0060233532', 'David And Della: A Novel', 'https://images.isbndb.com/covers/35/32/9780060233532.jpg'), - ('0060959037', 'Prodigal Summer: A Novel', 'https://images.isbndb.com/covers/90/36/9780060959036.jpg'), - ('055327886X', 'Rubyfruit Jungle', 'https://images.isbndb.com/covers/88/66/9780553278866.jpg'), - ('0805036377', 'M Is For Malice (The Kinsey Millhone Alphabet Mysteries)', 'https://images.isbndb.com/covers/63/74/9780805036374.jpg'), - ('0688156134', 'Stalker: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/61/38/9780688156138.jpg'), - ('0374232415', 'Pictures Of A Childhood: Sixty-Six Watercolors And An Essay', 'https://images.isbndb.com/covers/24/12/9780374232412.jpg'), - ('014028009X', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/00/98/9780140280098.jpg'), - ('0060697024', 'Gifts Of The Spirit: Living The Wisdom Of The Great Religious Traditions', 'https://images.isbndb.com/covers/70/20/9780060697020.jpg'), - ('0140254587', 'Salvation On Sand Mountain: Snake-Handling And Redemption In Southern Appalachia', 'https://images.isbndb.com/covers/45/87/9780140254587.jpg'), - ('0375708278', 'Isaac''s Storm: A Man, A Time, And The Deadliest Hurricane In History', 'https://images.isbndb.com/covers/82/75/9780375708275.jpg'), - ('3442541034', 'Enten Füttern.', 'https://images.isbndb.com/covers/10/34/9783442541034.jpg'), - ('0340581239', 'Blindfold', 'https://images.isbndb.com/covers/12/30/9780340581230.jpg'), - ('0425187063', 'Death In Paradise (Jesse Stone Novels)', 'https://images.isbndb.com/covers/70/67/9780425187067.jpg'), - ('2264032200', 'Maybe The Moon', 'https://images.isbndb.com/covers/22/01/9782264032201.jpg'), - ('2070407675', 'Les Enfants Du Marais', 'https://images.isbndb.com/covers/76/75/9782070407675.jpg'), - ('2253171395', 'Une Si Longue Nuit', 'https://images.isbndb.com/covers/13/93/9782253171393.jpg'), - ('2070408507', 'Le Petit Prince', 'https://images.isbndb.com/covers/85/04/9782070408504.jpg'), - ('2253054747', 'Ne Pleure Pas Ma Belle', 'https://images.isbndb.com/covers/47/40/9782253054740.jpg'), - ('0002258579', 'Resurrection Club', 'https://images.isbndb.com/covers/85/79/9780002258579.jpg'), - ('0446361305', 'Queen Of Angels (Questar Science Fiction)', 'https://images.isbndb.com/covers/13/09/9780446361309.jpg'), - ('3775713328', 'Ernst Ludwig Kirchner. Mountain Life. The Early Years In Davos 1917-1926', 'https://images.isbndb.com/covers/33/20/9783775713320.jpg'), - ('0451524063', 'Four Major Plays: Volume 1: A Doll House; The Wild Duck; Hedda Gabler; The Master Builder (Signet Classics)', 'https://images.isbndb.com/covers/40/65/9780451524065.jpg'), - ('0451411285', 'Sing Me Home', 'https://images.isbndb.com/covers/12/80/9780451411280.jpg'), - ('0743246349', 'Heaven Lake: A Novel', 'https://images.isbndb.com/covers/63/47/9780743246347.jpg'), - ('031286504X', 'I Am Legend', 'https://images.isbndb.com/covers/50/47/9780312865047.jpg'), - ('1928556396', 'Searching For Virginia Dare: A Fool''s Errand', 'https://images.isbndb.com/covers/63/98/9781928556398.jpg'), - ('0517676044', 'Spite,Malice And Revenge: The Ultimate Guide To Getting Even (3 Diabolical Volumes In 1)', 'https://images.isbndb.com/covers/60/42/9780517676042.jpg'), - ('1562054376', 'Internet Firewalls And Network Security', 'https://images.isbndb.com/covers/43/73/9781562054373.jpg'), - ('0735700737', 'CCNA Exam Certification Guide (CCNA Exam 640-407)', 'https://images.isbndb.com/covers/07/34/9780735700734.jpg'), - ('0028604032', 'The New York Public Library Science Desk Reference (The New York Public Library Series)', 'https://images.isbndb.com/covers/40/39/9780028604039.jpg'), - ('1573220256', 'Ethics For The New Millennium', 'https://images.isbndb.com/covers/02/55/9781573220255.jpg'), - ('034547063X', 'Black House', 'https://images.isbndb.com/covers/06/38/9780345470638.jpg'), - ('0425181480', 'Bump And Run', 'https://images.isbndb.com/covers/14/85/9780425181485.jpg'), - ('0405054610', 'Little Golden America (Foreign Travelers In America, 1810-1935 Ser.)', 'https://images.isbndb.com/covers/46/17/9780405054617.jpg'), - ('0312280769', 'Education Of A Felon: A Memoir', 'https://images.isbndb.com/covers/07/65/9780312280765.jpg'), - ('1585673390', 'Past Continuous (Tusk Ivories)', 'https://images.isbndb.com/covers/33/91/9781585673391.jpg'), - ('0886778964', 'Valor''s Choice (Valor Novel)', 'https://images.isbndb.com/covers/89/65/9780886778965.jpg'), - ('3596154766', 'Silberfaden', 'https://images.isbndb.com/covers/47/60/9783596154760.jpg'), - ('1561631469', 'Verdilak', 'https://images.isbndb.com/covers/14/69/9781561631469.jpg'), - ('1841950149', 'Shella (Canongate Crime Classics S.)', 'https://images.isbndb.com/covers/01/43/9781841950143.jpg'), - ('1852428112', 'The Sexual Life Of Catherine M.', 'https://images.isbndb.com/covers/81/12/9781852428112.jpg'), - ('1418447293', 'The Thoughts Of An Emigrant', 'https://images.isbndb.com/covers/72/98/9781418447298.jpg'), - ('0451457811', 'Storm Front (The Dresden Files, Book 1)', 'https://images.isbndb.com/covers/78/13/9780451457813.jpg'), - ('0553342495', 'Love Medicine: A Novel', 'https://images.isbndb.com/covers/24/99/9780553342499.jpg'), - ('0374525641', 'The Spirit Catches You And You Fall Down', 'https://images.isbndb.com/covers/56/44/9780374525644.jpg'), - ('0571167926', 'Vampyres: Lord Byron To Count Dracula', 'https://images.isbndb.com/covers/79/20/9780571167920.jpg'), - ('059043344X', 'Ten Great Mysteries By Edgar Allan Poe', 'https://images.isbndb.com/covers/34/40/9780590433440.jpg'), - ('0140043136', 'The Bride And The Bachelors: Five Masters Of The Avant-Garde', 'https://images.isbndb.com/covers/31/36/9780140043136.jpg'), - ('0874775132', 'Drawing On The Right Side Of The Brain', 'https://images.isbndb.com/covers/51/36/9780874775136.jpg'), - ('0738846503', 'Phoenix Flower', 'https://images.isbndb.com/covers/65/07/9780738846507.jpg'), - ('1552633217', 'The Jasmine Man', 'https://images.isbndb.com/covers/32/12/9781552633212.jpg'), - ('0375701311', 'Martha Peake: A Novel Of The Revolution', 'https://images.isbndb.com/covers/13/13/9780375701313.jpg'), - ('0340265450', 'Margaret The Queen', 'https://images.isbndb.com/covers/54/51/9780340265451.jpg'), - ('0441004954', 'The Dragon And The Djinn', 'https://images.isbndb.com/covers/49/59/9780441004959.jpg'), - ('0312244266', 'Let''s Talk About Being Selfish', 'https://images.isbndb.com/covers/42/62/9780312244262.jpg'), - ('0786889098', 'Tropical Depression', 'https://images.isbndb.com/covers/90/99/9780786889099.jpg'), - ('0373169884', 'The Playboy''s Protegee (Harlequin American Romance)', 'https://images.isbndb.com/covers/98/87/9780373169887.jpg'), - ('1551660539', 'Falcon''S Flight', 'https://images.isbndb.com/covers/05/30/9781551660530.jpg'), - ('0373076371', 'Night Of The Jaguar', 'https://images.isbndb.com/covers/63/76/9780373076376.jpg'), - ('0373259646', 'Tempted In Texas (Single In The City) (Harlequin Temptation)', 'https://images.isbndb.com/covers/96/49/9780373259649.jpg'), - ('0553445014', 'PLAYING WITH FIRE (Loveswept)', 'https://images.isbndb.com/covers/50/15/9780553445015.jpg'), - ('037325668X', 'Man Under The Mistletoe (Harlequin Temptation)', 'https://images.isbndb.com/covers/66/86/9780373256686.jpg'), - ('0373098006', 'The Pride Of St Charles Avenue (Silhouette Special Edition #800)', 'https://images.isbndb.com/covers/80/02/9780373098002.jpg'), - ('0373095244', 'Phoenix Rising (Silhouette Special Edition)', 'https://images.isbndb.com/covers/52/47/9780373095247.jpg'), - ('0373885210', 'The Fairy Tale Girl (Western Lovers: Denim & Diamonds #21)', 'https://images.isbndb.com/covers/52/13/9780373885213.jpg'), - ('1565970519', 'High-Riding Heroes (Kismet Romance)', 'https://images.isbndb.com/covers/05/19/9781565970519.jpg'), - ('0373075286', 'Mclain''S Law (Premiere) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/52/87/9780373075287.jpg'), - ('0373223455', 'Lethal Lover (Dangerous Men, Book 11) (Harlequin Intrigue Series #345)', 'https://images.isbndb.com/covers/34/59/9780373223459.jpg'), - ('0373031114', 'The Girl He Left Behind (Harlequin Romance #3111)', 'https://images.isbndb.com/covers/11/15/9780373031115.jpg'), - ('0373115458', 'Spirit Of Love (Harlequin Presents)', 'https://images.isbndb.com/covers/54/57/9780373115457.jpg'), - ('0373164556', 'Sand Man (Harlequin American Romance, No. 455)', 'https://images.isbndb.com/covers/45/54/9780373164554.jpg'), - ('0821756672', 'Firebrand', 'https://images.isbndb.com/covers/66/76/9780821756676.jpg'), - ('0373291019', 'Angel Of The Knight (Historical, 501) By Diana Hall', 'https://images.isbndb.com/covers/10/14/9780373291014.jpg'), - ('0373168713', 'Tame An Older Man (2001 Ways To Wed) (Harlequin American Romance)', 'https://images.isbndb.com/covers/87/12/9780373168712.jpg'), - ('0373168829', 'Daddy To Be Determined (Who''S The Daddy?) (American Romance, 882)', 'https://images.isbndb.com/covers/88/28/9780373168828.jpg'), - ('0373169795', 'Have Cowboy, Need Cupid (Harlequin American Romance, No 979)', 'https://images.isbndb.com/covers/97/95/9780373169795.jpg'), - ('0373169477', 'Secret Service Dad: Grooms In Uniform (Harlequin American Romance, No 947)', 'https://images.isbndb.com/covers/94/74/9780373169474.jpg'), - ('0446364290', 'Prime Time', 'https://images.isbndb.com/covers/42/94/9780446364294.jpg'), - ('0373482957', 'Undue Influence (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/29/55/9780373482955.jpg'), - ('0446600342', 'Where There''s Smoke', 'https://images.isbndb.com/covers/03/47/9780446600347.jpg'), - ('0445205512', 'Slow Heat In Heaven', 'https://images.isbndb.com/covers/55/12/9780445205512.jpg'), - ('1551666014', 'Tomorrow''s Promise', 'https://images.isbndb.com/covers/60/13/9781551666013.jpg'), - ('0446356859', 'Sunset Embrace (Coleman Family Saga)', 'https://images.isbndb.com/covers/68/55/9780446356855.jpg'), - ('0446603082', 'Sweet Anger', 'https://images.isbndb.com/covers/30/89/9780446603089.jpg'), - ('0446360511', 'Eloquent Silence', 'https://images.isbndb.com/covers/05/17/9780446360517.jpg'), - ('0446364312', 'Tempest In Eden', 'https://images.isbndb.com/covers/43/17/9780446364317.jpg'), - ('0446364150', 'Hidden Fires', 'https://images.isbndb.com/covers/41/57/9780446364157.jpg'), - ('0446356875', 'Another Dawn (Coleman Family Saga)', 'https://images.isbndb.com/covers/68/79/9780446356879.jpg'), - ('0373288468', 'Tapestry Of Fate (Harlequin Historical)', 'https://images.isbndb.com/covers/84/65/9780373288465.jpg'), - ('0373166621', 'Dana And The Calendar Man (Harlequin American Romance #662)', 'https://images.isbndb.com/covers/66/26/9780373166626.jpg'), - ('0446360708', 'Love Beyond Reason', 'https://images.isbndb.com/covers/07/08/9780446360708.jpg'), - ('0373222289', 'Ghostwriter (Harlequin Intrigue)', 'https://images.isbndb.com/covers/22/85/9780373222285.jpg'), - ('0373169302', 'Randall Honor (Brides For Brothers) (Harlequin American Romance Series # 930)', 'https://images.isbndb.com/covers/93/06/9780373169306.jpg'), - ('0373169639', 'Sweeping The Bride Away (Harlequin American Romance, No 963)', 'https://images.isbndb.com/covers/96/34/9780373169634.jpg'), - ('1551660903', 'Destiny''s Child', 'https://images.isbndb.com/covers/09/05/9781551660905.jpg'), - ('0553440845', 'The Last Brady (Loveswept No, 444)', 'https://images.isbndb.com/covers/08/43/9780553440843.jpg'), - ('0373098677', 'When Stars Collide (Silhouette Special Edition)', 'https://images.isbndb.com/covers/86/75/9780373098675.jpg'), - ('0373451911', 'For Old Times Sake (Men Made In America: South Dakota #41)', 'https://images.isbndb.com/covers/19/13/9780373451913.jpg'), - ('0373096585', 'Step From A Dream (Special Edition)', 'https://images.isbndb.com/covers/65/89/9780373096589.jpg'), - ('0373169175', 'The Unlawfully Wedded Princess (The Carradignes: American Royalty) (Harlequin American Romance # 917)', 'https://images.isbndb.com/covers/91/77/9780373169177.jpg'), - ('0373169469', 'The Inconveniently Engaged Prince: The Carradignes-American Royalty (Harlequin American Romance, No 946)', 'https://images.isbndb.com/covers/94/67/9780373169467.jpg'), - ('0373255500', 'One More Time (Harlequin Temptation)', 'https://images.isbndb.com/covers/55/04/9780373255504.jpg'), - ('037324343X', 'Texas Royalty (Special Edition, 1343)', 'https://images.isbndb.com/covers/34/33/9780373243433.jpg'), - ('0373165048', 'Twilight Magic (Harlequin American Romance)', 'https://images.isbndb.com/covers/50/49/9780373165049.jpg'), - ('0452282829', 'We Were The Mulvaneys (Oprah''s Book Club)', 'https://images.isbndb.com/covers/28/27/9780452282827.jpg'), - ('0452281091', 'Chang And Eng', 'https://images.isbndb.com/covers/10/97/9780452281097.jpg'), - ('0679781579', 'Ultimate Journey: Retracing The Path Of An Ancient Buddhist Monk Who Crossed Asia In Search Of Enlightenment', 'https://images.isbndb.com/covers/15/78/9780679781578.jpg'), - ('0380728532', 'The Rise And Fall Of The American Teenager', 'https://images.isbndb.com/covers/85/34/9780380728534.jpg'), - ('0395754127', 'The Gangster Of Love', 'https://images.isbndb.com/covers/41/22/9780395754122.jpg'), - ('1585673781', 'What If Our World Is Their Heaven? The Final Conversations Of Philip K. Dick', 'https://images.isbndb.com/covers/37/80/9781585673780.jpg'), - ('0879757892', 'Animal Rights & Human Morality', 'https://images.isbndb.com/covers/78/92/9780879757892.jpg'), - ('0803251734', 'Old Jules: 50th Anniversary Edition (Bison Book)', 'https://images.isbndb.com/covers/17/31/9780803251731.jpg'), - ('1582431612', 'The Visitor', 'https://images.isbndb.com/covers/16/11/9781582431611.jpg'), - ('0873382668', 'Lucy Breckinridge Of Grove Hill', 'https://images.isbndb.com/covers/26/63/9780873382663.jpg'), - ('0931122740', 'Heroes And Saints And Other Plays: Giving Up The Ghost, Shadow Of A Man, Heroes And Saints', 'https://images.isbndb.com/covers/27/43/9780931122743.jpg'), - ('1562800299', 'A Dooryard Full Of Flowers And Other Short Pieces', 'https://images.isbndb.com/covers/02/91/9781562800291.jpg'), - ('1562801465', 'Laurel', 'https://images.isbndb.com/covers/14/65/9781562801465.jpg'), - ('0934971013', 'The Riverhouse Stories: How Pubah S. Queen And Lazy LaRue Save The World', 'https://images.isbndb.com/covers/10/10/9780934971010.jpg'), - ('0553149121', 'Kiss Sleeping Beauty Goodbye: Breaking The Spell Of Feminine Myths And Models', 'https://images.isbndb.com/covers/91/28/9780553149128.jpg'), - ('0761504362', 'Coping With Miscarriage: A Simple, Reassuring Guide To Emotional And Physical Healing', 'https://images.isbndb.com/covers/43/68/9780761504368.jpg'), - ('0673523241', 'Family In Transition', 'https://images.isbndb.com/covers/32/42/9780673523242.jpg'), - ('0395354846', 'Gender Gap: Bella Abzug''s Guide To Political Power For American Women', 'https://images.isbndb.com/covers/48/41/9780395354841.jpg'), - ('0553258958', 'Against Our Will', 'https://images.isbndb.com/covers/89/50/9780553258950.jpg'), - ('0061040185', 'Women''s Reality: An Emerging Female System In A White Male Society', 'https://images.isbndb.com/covers/01/84/9780061040184.jpg'), - ('0816513333', 'New Chicana/Chicano Writing, Volume 2', 'https://images.isbndb.com/covers/33/38/9780816513338.jpg'), - ('0816513074', 'New Chicana/Chicano Writing 1', 'https://images.isbndb.com/covers/30/79/9780816513079.jpg'), - ('1888277173', 'Blood Sugar', 'https://images.isbndb.com/covers/71/73/9781888277173.jpg'), - ('155583356X', 'Generation Q', 'https://images.isbndb.com/covers/35/65/9781555833565.jpg'), - ('0688037127', 'Lesbian Crossroads: Personal Stories Of Lesbian Struggles And Triumphs', 'https://images.isbndb.com/covers/71/23/9780688037123.jpg'), - ('0688179096', 'Circling The Drain: Stories', 'https://images.isbndb.com/covers/90/90/9780688179090.jpg'), - ('1879960214', 'Hot Chicken Wings', 'https://images.isbndb.com/covers/02/13/9781879960213.jpg'), - ('0345367561', 'Floating World', 'https://images.isbndb.com/covers/75/63/9780345367563.jpg'), - ('0066214688', 'The E-Myth Contractor: Why Most Contractors'' Businesses Don''t Work And What To Do About It', 'https://images.isbndb.com/covers/46/89/9780066214689.jpg'), - ('0785268839', 'Wild At Heart: Discovering The Secret Of A Man''s Soul', 'https://images.isbndb.com/covers/88/33/9780785268833.jpg'), - ('0871135809', 'All The Trouble In The World', 'https://images.isbndb.com/covers/58/03/9780871135803.jpg'), - ('0590436848', 'The Golden Fleece And The Heroes Who Lived Before Achilles', 'https://images.isbndb.com/covers/68/47/9780590436847.jpg'), - ('3442352703', 'Der Himmel über Dem Moor.', 'https://images.isbndb.com/covers/27/08/9783442352708.jpg'), - ('0449219143', 'Bethlehem Road', 'https://images.isbndb.com/covers/91/40/9780449219140.jpg'), - ('3795115833', 'Coelln: Stadt, Dom, Fluss', 'https://images.isbndb.com/covers/58/38/9783795115838.jpg'), - ('3442721652', 'Alles Fließt, Sagt Heraklit', 'https://images.isbndb.com/covers/16/58/9783442721658.jpg'), - ('3499156938', 'Boy. Schönes Und Schreckliches Aus Meiner Kinderzeit', 'https://images.isbndb.com/covers/69/39/9783499156939.jpg'), - ('347354034X', 'Die Welle', 'https://images.isbndb.com/covers/03/41/9783473540341.jpg'), - ('034540761X', 'The Final Judgment', 'https://images.isbndb.com/covers/76/10/9780345407610.jpg'), - ('0061057797', 'DRAGON & UNICORN MM', 'https://images.isbndb.com/covers/77/93/9780061057793.jpg'), - ('033028813X', 'Terminal', 'https://images.isbndb.com/covers/81/32/9780330288132.jpg'), - ('0859696707', 'Understanding Your Personality', 'https://images.isbndb.com/covers/67/08/9780859696708.jpg'), - ('1844261085', 'A Book Without Covers', 'https://images.isbndb.com/covers/10/86/9781844261086.jpg'), - ('0385031386', 'Irrational Man: A Study In Existential Philosophy', 'https://images.isbndb.com/covers/13/87/9780385031387.jpg'), - ('0875420036', 'True Magick A Beginners Guide', 'https://images.isbndb.com/covers/00/35/9780875420035.jpg'), - ('0141001828', 'In The Heart Of The Sea: The Tragedy Of The Whaleship Essex', 'https://images.isbndb.com/covers/18/21/9780141001821.jpg'), - ('038078520X', 'Wed And Buried (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/52/09/9780380785209.jpg'), - ('3492229891', 'Mazel Tov In Las Vegas', 'https://images.isbndb.com/covers/98/90/9783492229890.jpg'), - ('0385468067', 'Cabal', 'https://images.isbndb.com/covers/80/60/9780385468060.jpg'), - ('0312420021', 'A Cold Case', 'https://images.isbndb.com/covers/00/24/9780312420024.jpg'), - ('0553293400', 'The Caves Of Steel (R. Daneel Olivaw, Book 1)', 'https://images.isbndb.com/covers/34/01/9780553293401.jpg'), - ('0060929871', 'Brave New World', 'https://images.isbndb.com/covers/98/79/9780060929879.jpg'), - ('0393312836', 'A Clockwork Orange', 'https://images.isbndb.com/covers/28/36/9780393312836.jpg'), - ('0553211757', 'Crime And Punishment (Bantam Classics)', 'https://images.isbndb.com/covers/17/57/9780553211757.jpg'), - ('0060931914', 'Demian (Perennial Classics)', 'https://images.isbndb.com/covers/19/19/9780060931919.jpg'), - ('0393318680', 'Filth', 'https://images.isbndb.com/covers/86/85/9780393318685.jpg'), - ('0590409433', 'Fallen Angels', 'https://images.isbndb.com/covers/94/38/9780590409438.jpg'), - ('0138700982', 'The Sun Never Sets: Travels To The Remaining Outposts Of The British Empire', 'https://images.isbndb.com/covers/09/80/9780138700980.jpg'), - ('0515093556', 'Belinda', 'https://images.isbndb.com/covers/35/51/9780515093551.jpg'), - ('1412014050', 'Natural Affinities', 'https://images.isbndb.com/covers/40/52/9781412014052.jpg'), - ('2253003964', 'Dix Petits Nègres', 'https://images.isbndb.com/covers/39/60/9782253003960.jpg'), - ('0399151850', 'The Queen Of The South', 'https://images.isbndb.com/covers/18/59/9780399151859.jpg'), - ('0802117821', 'Budapest: A Novel', 'https://images.isbndb.com/covers/78/23/9780802117823.jpg'), - ('0380897180', 'Captains Of The Sands', 'https://images.isbndb.com/covers/71/86/9780380897186.jpg'), - ('1573240923', 'Sisters: Shared Histories, Lifelong Ties', 'https://images.isbndb.com/covers/09/25/9781573240925.jpg'), - ('0385722206', 'Balzac And The Little Chinese Seamstress: A Novel', 'https://images.isbndb.com/covers/22/09/9780385722209.jpg'), - ('0702221988', 'Charades', 'https://images.isbndb.com/covers/19/89/9780702221989.jpg'), - ('0061095540', 'Marrying Mom', 'https://images.isbndb.com/covers/55/42/9780061095542.jpg'), - ('9879630130', 'Menos Tu Vientre (Spanish Edition)', 'https://images.isbndb.com/covers/01/36/9789879630136.jpg'), - ('0679732411', 'Gift From The Sea', 'https://images.isbndb.com/covers/24/19/9780679732419.jpg'), - ('0446606243', 'The Tenth Justice', 'https://images.isbndb.com/covers/62/40/9780446606240.jpg'), - ('0316785261', 'The Fig Eater: A Novel', 'https://images.isbndb.com/covers/52/66/9780316785266.jpg'), - ('0140049975', 'East Of Eden', 'https://images.isbndb.com/covers/99/78/9780140049978.jpg'), - ('3701712417', 'Mein Studium Ferner Welten', 'https://images.isbndb.com/covers/24/10/9783701712410.jpg'), - ('080913960X', 'Settings Of Silver: An Introduction To Judaism', 'https://images.isbndb.com/covers/96/06/9780809139606.jpg'), - ('0139483993', 'Understanding The Old Testament (Abridged 4th Edition)', 'https://images.isbndb.com/covers/39/98/9780139483998.jpg'), - ('0385494661', 'Kosher Sex: A Recipe For Passion And Intimacy', 'https://images.isbndb.com/covers/46/63/9780385494663.jpg'), - ('014062080X', 'Scarlet Letter (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/01/9780140620801.jpg'), - ('0425174808', 'Divide And Conquer (Tom Clancy''s Op-Center, Book 7)', 'https://images.isbndb.com/covers/48/07/9780425174807.jpg'), - ('0061002860', 'The Murder Of Roger Ackroyd', 'https://images.isbndb.com/covers/28/61/9780061002861.jpg'), - ('0140390847', 'Moby-Dick: Or, The Whale (Penguin Classics)', 'https://images.isbndb.com/covers/08/41/9780140390841.jpg'), - ('0451202856', 'Nothing But The Truth (Dismas Hardy)', 'https://images.isbndb.com/covers/28/57/9780451202857.jpg'), - ('0451405889', 'The Late Man', 'https://images.isbndb.com/covers/58/83/9780451405883.jpg'), - ('0312274971', 'Hardcase', 'https://images.isbndb.com/covers/49/79/9780312274979.jpg'), - ('0914171771', 'Chaos & Cyber Culture', 'https://images.isbndb.com/covers/17/75/9780914171775.jpg'), - ('0964849909', 'Earthbridge Crossing : A Sunny Approach To Philosophy, Quantum Physics, Spiritual Awareness, And The Evolution Of Human Consciousness', 'https://images.isbndb.com/covers/99/07/9780964849907.jpg'), - ('0886777461', 'The Golden Key', 'https://images.isbndb.com/covers/74/63/9780886777463.jpg'), - ('0375406956', 'My Name Is Red', 'https://images.isbndb.com/covers/69/59/9780375406959.jpg'), - ('0743202031', 'Juniper Tree Burning: A Novel', 'https://images.isbndb.com/covers/20/39/9780743202039.jpg'), - ('0767902912', 'An Equal Music', 'https://images.isbndb.com/covers/29/15/9780767902915.jpg'), - ('039571091X', 'Dakota: A Spiritual Geography', 'https://images.isbndb.com/covers/09/13/9780395710913.jpg'), - ('0395860318', 'The Distance From The Heart Of Things', 'https://images.isbndb.com/covers/03/11/9780395860311.jpg'), - ('0192833642', 'The Mill On The Floss (Oxford World''s Classics)', 'https://images.isbndb.com/covers/36/48/9780192833648.jpg'), - ('0750514833', 'A Peculiar Chemistry', 'https://images.isbndb.com/covers/48/35/9780750514835.jpg'), - ('1860463312', 'Miss Smilla''s Feeling For Snow', 'https://images.isbndb.com/covers/33/10/9781860463310.jpg'), - ('0142001430', 'Year Of Wonders: A Novel Of The Plague', 'https://images.isbndb.com/covers/14/31/9780142001431.jpg'), - ('0609809547', 'Tales Of A Female Nomad: Living At Large In The World', 'https://images.isbndb.com/covers/95/49/9780609809549.jpg'), - ('0440218667', 'The Select', 'https://images.isbndb.com/covers/86/61/9780440218661.jpg'), - ('0142000671', 'Of Mice And Men (Steinbeck Centennial Edition)', 'https://images.isbndb.com/covers/06/70/9780142000670.jpg'), - ('0425192792', 'Goddess Of The Sea (Goddess Summoning, Book 1)', 'https://images.isbndb.com/covers/27/95/9780425192795.jpg'), - ('0821774352', 'His Eternal Kiss', 'https://images.isbndb.com/covers/43/59/9780821774359.jpg'), - ('0505524139', 'The Star King (Star Series, Book 1)', 'https://images.isbndb.com/covers/41/33/9780505524133.jpg'), - ('0345463404', 'The Defiant Hero (Troubleshooters, Book 2)', 'https://images.isbndb.com/covers/34/01/9780345463401.jpg'), - ('0449006379', 'Lord Of Fire', 'https://images.isbndb.com/covers/63/75/9780449006375.jpg'), - ('1885840047', 'Divinely Decadent: The Strange Life And Loves Of Liza Minnelli', 'https://images.isbndb.com/covers/00/42/9781885840042.jpg'), - ('0060580208', 'Held Captive: The Kidnapping And Rescue Of Elizabeth Smart', 'https://images.isbndb.com/covers/02/09/9780060580209.jpg'), - ('0425191060', 'Still Life With Murder (Gilded Age Mysteries, No. 1)', 'https://images.isbndb.com/covers/10/64/9780425191064.jpg'), - ('0743458125', 'Top O'' The Mournin'' : A Passport To Peril Mystery', 'https://images.isbndb.com/covers/81/22/9780743458122.jpg'), - ('0312984820', 'Night Embrace (Dark-Hunter, Book 3)', 'https://images.isbndb.com/covers/48/23/9780312984823.jpg'), - ('0380764008', 'Grime And Punishment (Jane Jeffrey Mysteries, No. 1)', 'https://images.isbndb.com/covers/40/06/9780380764006.jpg'), - ('0060549270', 'A Greek God At The Ladies'' Club', 'https://images.isbndb.com/covers/92/75/9780060549275.jpg'), - ('0505525305', 'A Girl''s Guide To Vampires', 'https://images.isbndb.com/covers/53/07/9780505525307.jpg'), - ('0373218222', 'When Darkness Falls: Kiss Of The Wolf\Shadow Kissing\The Devil She Knew', 'https://images.isbndb.com/covers/82/26/9780373218226.jpg'), - ('0679777601', 'Confucius Lives Next Door: What Living In The East Teaches Us About Living In The West', 'https://images.isbndb.com/covers/76/01/9780679777601.jpg'), - ('0060505249', 'Where''s My Hero?', 'https://images.isbndb.com/covers/52/40/9780060505240.jpg'), - ('0425191257', 'Edge Of The Moon (The Moon Series, Book 2)', 'https://images.isbndb.com/covers/12/55/9780425191255.jpg'), - ('0451458923', 'Summer Knight (The Dresden Files, Book 4)', 'https://images.isbndb.com/covers/89/26/9780451458926.jpg'), - ('0805426183', 'Paperback Writer', 'https://images.isbndb.com/covers/61/82/9780805426182.jpg'), - ('0553800914', 'The Search (Iris Johansen)', 'https://images.isbndb.com/covers/09/13/9780553800913.jpg'), - ('080410526X', 'All I Really Need To Know I Learned In Kindergarten', 'https://images.isbndb.com/covers/52/62/9780804105262.jpg'), - ('031242227X', 'Running With Scissors: A Memoir', 'https://images.isbndb.com/covers/22/71/9780312422271.jpg'), - ('1555836577', 'Making A Killing', 'https://images.isbndb.com/covers/65/73/9781555836573.jpg'), - ('0553250256', 'The Catcher In The Rye', 'https://images.isbndb.com/covers/02/51/9780553250251.jpg'), - ('0451520793', 'Ethan Frome (Signet Classics)', 'https://images.isbndb.com/covers/07/91/9780451520791.jpg'), - ('030680395X', 'The Omni-americans: Black Experience And American Culture (Da Capo Press Paperback)', 'https://images.isbndb.com/covers/39/56/9780306803956.jpg'), - ('0440241812', 'Shopaholic Takes Manhattan (Shopaholic Series)', 'https://images.isbndb.com/covers/18/12/9780440241812.jpg'), - ('0767914767', 'The Devil Wears Prada: A Novel', 'https://images.isbndb.com/covers/47/65/9780767914765.jpg'), - ('0451528697', 'Bleak House (Signet Classics)', 'https://images.isbndb.com/covers/86/98/9780451528698.jpg'), - ('0060989270', 'Tommy''s Tale: A Novel', 'https://images.isbndb.com/covers/92/79/9780060989279.jpg'), - ('0374232105', 'The Pickup', 'https://images.isbndb.com/covers/21/08/9780374232108.jpg'), - ('0140061401', 'July''s People', 'https://images.isbndb.com/covers/14/06/9780140061406.jpg'), - ('0393310329', 'Maurice: A Novel', 'https://images.isbndb.com/covers/03/20/9780393310320.jpg'), - ('0679721037', 'Hiroshima', 'https://images.isbndb.com/covers/10/31/9780679721031.jpg'), - ('0140433988', 'Hard Times', 'https://images.isbndb.com/covers/39/82/9780140433982.jpg'), - ('0142437204', 'Jane Eyre (Penguin Classics)', 'https://images.isbndb.com/covers/72/09/9780142437209.jpg'), - ('1560235136', 'Harrington Gay Men''s Fiction Quarterly Vol. 4 Number 4', 'https://images.isbndb.com/covers/51/32/9781560235132.jpg'), - ('0440219892', 'Earthshine', 'https://images.isbndb.com/covers/98/97/9780440219897.jpg'), - ('1555834930', 'The Blue Lawn', 'https://images.isbndb.com/covers/49/37/9781555834937.jpg'), - ('1555836038', 'The President''s Son', 'https://images.isbndb.com/covers/60/30/9781555836030.jpg'), - ('0553272160', 'On Yankee Station: The Naval Air War Over Vietnam', 'https://images.isbndb.com/covers/21/61/9780553272161.jpg'), - ('006093090X', 'The Night Listener: A Novel', 'https://images.isbndb.com/covers/09/05/9780060930905.jpg'), - ('0942361598', 'Kids Who Make A Difference', 'https://images.isbndb.com/covers/15/99/9780942361599.jpg'), - ('055321148X', 'DRACULA', 'https://images.isbndb.com/covers/14/81/9780553211481.jpg'), - ('038533494X', 'Sometimes I Dream In Italian', 'https://images.isbndb.com/covers/49/45/9780385334945.jpg'), - ('0345355563', 'The Hill', 'https://images.isbndb.com/covers/55/60/9780345355560.jpg'), - ('0553210327', 'The Hunchback Of Notre Dame', 'https://images.isbndb.com/covers/03/23/9780553210323.jpg'), - ('0964109964', 'The Front Runner: A Novel', 'https://images.isbndb.com/covers/99/64/9780964109964.jpg'), - ('0553212524', '20,000 Leagues Under The Sea', 'https://images.isbndb.com/covers/25/25/9780553212525.jpg'), - ('0553251503', 'Soulmates', 'https://images.isbndb.com/covers/15/00/9780553251500.jpg'), - ('0393321096', 'The Abyssinian: A Novel', 'https://images.isbndb.com/covers/10/98/9780393321098.jpg'), - ('0553574132', 'Shadows Of The Empire (Star Wars)', 'https://images.isbndb.com/covers/41/35/9780553574135.jpg'), - ('038071681X', 'Ghost Girl: The True Story Of A Child In Peril And The Teacher Who Saved Her', 'https://images.isbndb.com/covers/68/14/9780380716814.jpg'), - ('088029261X', 'The Complete Sherlock Holmes', 'https://images.isbndb.com/covers/26/10/9780880292610.jpg'), - ('0517053586', 'Edgar Allan Poe: Selected Works, Deluxe Edition', 'https://images.isbndb.com/covers/35/84/9780517053584.jpg'), - ('0375706682', 'Dhalgren', 'https://images.isbndb.com/covers/66/84/9780375706684.jpg'), - ('0140270590', 'A New Song (The Mitford Years, Book 5)', 'https://images.isbndb.com/covers/05/94/9780140270594.jpg'), - ('0679445625', 'A Long Fatal Love Chase', 'https://images.isbndb.com/covers/56/23/9780679445623.jpg'), - ('0140862129', 'Winnie-the-Pooh On Problem Solving', 'https://images.isbndb.com/covers/21/26/9780140862126.jpg'), - ('0740735756', 'E-Mail To The Front: One Wife''s Correspondence With Her Husband Overseas', 'https://images.isbndb.com/covers/57/52/9780740735752.jpg'), - ('0440235596', 'Tara Road (Oprah''s Book Club)', 'https://images.isbndb.com/covers/55/90/9780440235590.jpg'), - ('0440906156', 'The Beatles Lyrics Illustrated', 'https://images.isbndb.com/covers/61/55/9780440906155.jpg'), - ('034540498X', 'Final Judgment', 'https://images.isbndb.com/covers/49/85/9780345404985.jpg'), - ('0671619373', 'Lady Boss', 'https://images.isbndb.com/covers/93/74/9780671619374.jpg'), - ('2070419657', 'Soie', 'https://images.isbndb.com/covers/96/54/9782070419654.jpg'), - ('0943734312', 'Discovering Dixie: The Best Of The Deep South Along The Magnolia Trail', 'https://images.isbndb.com/covers/43/16/9780943734316.jpg'), - ('0943734150', 'Peace Pilgrim: Her Life And Work In Her Own Words', 'https://images.isbndb.com/covers/41/56/9780943734156.jpg'), - ('0898861098', 'Miles From Nowhere: A Round The World Bicycle Adventure', 'https://images.isbndb.com/covers/10/99/9780898861099.jpg'), - ('0803267355', 'The Night Country', 'https://images.isbndb.com/covers/73/50/9780803267350.jpg'), - ('0964858401', 'North Carolina : A Guide To Backcountry Travel & Adventure', 'https://images.isbndb.com/covers/84/04/9780964858404.jpg'), - ('0679826718', 'The Tiger In The Well (Sally Lockhart Trilogy, Book 3)', 'https://images.isbndb.com/covers/67/12/9780679826712.jpg'), - ('1885211686', 'Travelers'' Tales Tuscany: True Stories', 'https://images.isbndb.com/covers/16/82/9781885211682.jpg'), - ('0767904893', 'Women Of The Pleasure Quarters: The Secret History Of The Geisha', 'https://images.isbndb.com/covers/48/96/9780767904896.jpg'), - ('0679733167', 'Sexing The Cherry', 'https://images.isbndb.com/covers/31/64/9780679733164.jpg'), - ('0679436685', 'The Wonders Of The Invisible World: Stories', 'https://images.isbndb.com/covers/66/83/9780679436683.jpg'), - ('074341120X', 'Silicon Follies', 'https://images.isbndb.com/covers/12/02/9780743411202.jpg'), - ('0618162216', 'The Hobbit; Or, There And Back Again', 'https://images.isbndb.com/covers/22/15/9780618162215.jpg'), - ('0375724621', 'UP At The Villa', 'https://images.isbndb.com/covers/46/26/9780375724626.jpg'), - ('0140077812', 'Greasy Lake And Other Stories (Contemporary American Fiction)', 'https://images.isbndb.com/covers/78/10/9780140077810.jpg'), - ('059045563X', 'Teeth Week (A Little Apple Paperback)', 'https://images.isbndb.com/covers/56/33/9780590455633.jpg'), - ('0375504907', 'Reading Lolita In Tehran: A Memoir In Books', 'https://images.isbndb.com/covers/49/07/9780375504907.jpg'), - ('0312087357', 'Bodysculpture: Weight Training For Women', 'https://images.isbndb.com/covers/73/57/9780312087357.jpg'), - ('0156907380', 'To The Lighthouse', 'https://images.isbndb.com/covers/73/85/9780156907385.jpg'), - ('0142000485', 'My Little Blue Dress', 'https://images.isbndb.com/covers/04/89/9780142000489.jpg'), - ('1584790660', 'My Cat Forgets Who Pays The Rent (Gestures Of Kindness)', 'https://images.isbndb.com/covers/06/62/9781584790662.jpg'), - ('0812910389', 'Our Marvelous Native Tongue: The Life And Times Of The English Language', 'https://images.isbndb.com/covers/03/84/9780812910384.jpg'), - ('1573245038', 'The Little Book Of Letting Go: A Revolutionary 30-Day Program To Cleanse Your Mind, Lift Your Spirit And Replenish Your Soul', 'https://images.isbndb.com/covers/50/36/9781573245036.jpg'), - ('061810450X', 'The Wind Done Gone: A Novel', 'https://images.isbndb.com/covers/45/05/9780618104505.jpg'), - ('0441231942', 'Crisis On Doona', 'https://images.isbndb.com/covers/19/42/9780441231942.jpg'), - ('0886773768', 'Sword-Dancer (Tiger And Del)', 'https://images.isbndb.com/covers/37/62/9780886773762.jpg'), - ('0345291794', 'Restoree', 'https://images.isbndb.com/covers/17/90/9780345291790.jpg'), - ('0449231992', 'Crowned Heads', 'https://images.isbndb.com/covers/19/99/9780449231999.jpg'), - ('0192820575', 'Facial Justice (Twentieth Century Classics)', 'https://images.isbndb.com/covers/05/70/9780192820570.jpg'), - ('0449907899', 'Here All Dwell Free: Stories To Heal The Wounded Feminine', 'https://images.isbndb.com/covers/78/94/9780449907894.jpg'), - ('0345301064', 'To Ride Pegasus', 'https://images.isbndb.com/covers/10/62/9780345301062.jpg'), - ('0226462110', 'Highroad To The Stake: A Tale Of Witchcraft', 'https://images.isbndb.com/covers/21/10/9780226462110.jpg'), - ('0425062341', 'Ghost Of Flight 401', 'https://images.isbndb.com/covers/23/40/9780425062340.jpg'), - ('0806967315', 'The World''s Most Challenging Puzzles', 'https://images.isbndb.com/covers/73/18/9780806967318.jpg'), - ('0944031072', 'Your Body Believes Every Word You Say', 'https://images.isbndb.com/covers/10/70/9780944031070.jpg'), - ('1567182445', 'The Ultimate Cure: The Healing Energy Within You (Llewellyn''s Whole Life Series)', 'https://images.isbndb.com/covers/24/46/9781567182446.jpg'), - ('0380776324', 'Women Who Run With The Poodles: Myths And Tips For Honoring Your Mood Swings', 'https://images.isbndb.com/covers/63/20/9780380776320.jpg'), - ('0440504716', 'Birth Order Book', 'https://images.isbndb.com/covers/47/19/9780440504719.jpg'), - ('0525942262', 'Cat Under The Mistletoe: An Alice Nestleton Mystery', 'https://images.isbndb.com/covers/22/69/9780525942269.jpg'), - ('0062508156', 'The Spiral Dance: A Rebirth Of The Ancient Religion Of The Great Goddess', 'https://images.isbndb.com/covers/81/57/9780062508157.jpg'), - ('014019536X', 'Drawing Down The Moon: Witches, Druids, Goddess-Worshippers, And Other Pagans In America Today (Compass)', 'https://images.isbndb.com/covers/53/61/9780140195361.jpg'), - ('0380816555', 'Practical Demonkeeping', 'https://images.isbndb.com/covers/65/52/9780380816552.jpg'), - ('0684848066', 'In The Meantime: Finding Yourself And The Love You Want', 'https://images.isbndb.com/covers/80/68/9780684848068.jpg'), - ('0449211827', 'Plague Dogs', 'https://images.isbndb.com/covers/18/23/9780449211823.jpg'), - ('0441627404', 'The Once And Future King', 'https://images.isbndb.com/covers/74/00/9780441627400.jpg'), - ('0553562738', 'Doomsday Book', 'https://images.isbndb.com/covers/27/36/9780553562736.jpg'), - ('0812555031', 'The Horse Goddess', 'https://images.isbndb.com/covers/50/35/9780812555035.jpg'), - ('0812536509', 'Pride Of Lions', 'https://images.isbndb.com/covers/65/08/9780812536508.jpg'), - ('0812553993', 'Lion Of Ireland', 'https://images.isbndb.com/covers/39/94/9780812553994.jpg'), - ('0380708892', 'Merlin (The Pendragon Cycle , Book 2)', 'https://images.isbndb.com/covers/88/95/9780380708895.jpg'), - ('038070613X', 'Taliesin (The Pendragon Cycle, Book 1)', 'https://images.isbndb.com/covers/61/36/9780380706136.jpg'), - ('0380805421', 'Smart Vs. Pretty', 'https://images.isbndb.com/covers/54/26/9780380805426.jpg'), - ('0425171264', 'Private Altars: A Novel', 'https://images.isbndb.com/covers/12/64/9780425171264.jpg'), - ('2277219517', '37°2 Le Matin', 'https://images.isbndb.com/covers/95/14/9782277219514.jpg'), - ('0441794297', 'The Sword Of Sagamore (Sagamore, Book 2)', 'https://images.isbndb.com/covers/42/94/9780441794294.jpg'), - ('0375708707', 'Where You Once Belonged', 'https://images.isbndb.com/covers/87/01/9780375708701.jpg'), - ('0802134475', 'Rain', 'https://images.isbndb.com/covers/44/79/9780802134479.jpg'), - ('0151003084', 'The Gashlycrumb Tinies', 'https://images.isbndb.com/covers/30/82/9780151003082.jpg'), - ('0553274066', 'Triumph Of The Darksword (The Darksword Trilogy)', 'https://images.isbndb.com/covers/40/66/9780553274066.jpg'), - ('1897783108', 'Oasis: Round Their Way', 'https://images.isbndb.com/covers/31/08/9781897783108.jpg'), - ('0340767278', 'Soldiers Return Uk', 'https://images.isbndb.com/covers/72/76/9780340767276.jpg'), - ('0679750932', 'My Idea Of Fun', 'https://images.isbndb.com/covers/09/32/9780679750932.jpg'), - ('042516098X', 'Hornet''s Nest (Andy Brazil)', 'https://images.isbndb.com/covers/09/85/9780425160985.jpg'), - ('0375701168', 'Doctor Faustus : The Life Of The German Composer Adrian Leverkuhn As Told By A Friend', 'https://images.isbndb.com/covers/11/60/9780375701160.jpg'), - ('0446613266', 'Four Blind Mice (Alex Cross)', 'https://images.isbndb.com/covers/32/62/9780446613262.jpg'), - ('038549081X', 'The Handmaid''s Tale', 'https://images.isbndb.com/covers/08/18/9780385490818.jpg'), - ('0312267460', 'Headlong: A Novel (Bestselling Backlist)', 'https://images.isbndb.com/covers/74/69/9780312267469.jpg'), - ('0140329358', 'Fangs Of Fury (Puffin Adventure Gamebooks)', 'https://images.isbndb.com/covers/93/53/9780140329353.jpg'), - ('074324396X', 'Solomon Time: An Unlikely Quest In The South Pacific', 'https://images.isbndb.com/covers/39/64/9780743243964.jpg'), - ('0552998486', 'Chocolat', 'https://images.isbndb.com/covers/84/82/9780552998482.jpg'), - ('0099759713', 'Rancid Aluminum', 'https://images.isbndb.com/covers/97/13/9780099759713.jpg'), - ('1853260193', 'Vanity Fair (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/01/93/9781853260193.jpg'), - ('1853260967', 'Confessions Of An English Opium Eater (Wordsworth Classics)', 'https://images.isbndb.com/covers/09/64/9781853260964.jpg'), - ('0140440151', 'Madame Bovary: A Story Of Provincial Life (Penguin Classics)', 'https://images.isbndb.com/covers/01/57/9780140440157.jpg'), - ('074993087X', 'Long Midnight Of Barney Thomson', 'https://images.isbndb.com/covers/08/75/9780749930875.jpg'), - ('0671041789', 'The Green Mile', 'https://images.isbndb.com/covers/17/86/9780671041786.jpg'), - ('0439139597', 'Harry Potter And The Goblet Of Fire (Book 4)', 'https://images.isbndb.com/covers/95/95/9780439139595.jpg'), - ('0439064864', 'Harry Potter And The Chamber Of Secrets (Book 2)', 'https://images.isbndb.com/covers/48/66/9780439064866.jpg'), - ('1575665379', 'The 10th Kingdom (Hallmark Entertainment Books)', 'https://images.isbndb.com/covers/53/75/9781575665375.jpg'), - ('0441005489', 'Redwall', 'https://images.isbndb.com/covers/54/82/9780441005482.jpg'), - ('0924171553', 'Treasures From The Royal Tombs Of Ur', 'https://images.isbndb.com/covers/15/50/9780924171550.jpg'), - ('0449909050', 'Thinking Out Loud: On The Personal, The Political, The Public And The Private', 'https://images.isbndb.com/covers/90/58/9780449909058.jpg'), - ('0330412302', 'Don''t Let''s Go To Dogs Tonight: An African Childhood', 'https://images.isbndb.com/covers/23/08/9780330412308.jpg'), - ('0064470059', 'Where The Lilies Bloom', 'https://images.isbndb.com/covers/00/56/9780064470056.jpg'), - ('0821222341', 'Amsterdam: Amsterdam And The Hague (Art In Focus)', 'https://images.isbndb.com/covers/23/48/9780821222348.jpg'), - ('0821221558', 'Paris (Art In Focus)', 'https://images.isbndb.com/covers/15/56/9780821221556.jpg'), - ('0380726297', 'Sacred', 'https://images.isbndb.com/covers/62/95/9780380726295.jpg'), - ('0553292056', 'Another Roadside Attraction', 'https://images.isbndb.com/covers/20/53/9780553292053.jpg'), - ('1860119190', 'London-Paris', 'https://images.isbndb.com/covers/91/94/9781860119194.jpg'), - ('082122154X', 'London (Art In Focus)', 'https://images.isbndb.com/covers/15/49/9780821221549.jpg'), - ('0553213512', 'The Time Machine', 'https://images.isbndb.com/covers/35/15/9780553213515.jpg'), - ('0060933577', 'Faithless: Tales Of Transgression', 'https://images.isbndb.com/covers/35/79/9780060933579.jpg'), - ('044023672X', 'Answered Prayers', 'https://images.isbndb.com/covers/67/26/9780440236726.jpg'), - ('0394839129', 'I Can Read With My Eyes Shut! (Beginner Books)', 'https://images.isbndb.com/covers/91/27/9780394839127.jpg'), - ('1573220213', 'Woman Who Walked On Water', 'https://images.isbndb.com/covers/02/17/9781573220217.jpg'), - ('0440180295', 'Slaughterhouse-Five', 'https://images.isbndb.com/covers/02/96/9780440180296.jpg'), - ('014044582X', 'The Last Days Of Socrates: Euthyphro; The Apology; Crito; Phaedo (Penguin Classics)', 'https://images.isbndb.com/covers/58/24/9780140445824.jpg'), - ('3423071001', 'Alice Im Wunderland', 'https://images.isbndb.com/covers/10/00/9783423071000.jpg'), - ('0884270610', 'The Goal: A Process Of Ongoing Improvement', 'https://images.isbndb.com/covers/06/14/9780884270614.jpg'), - ('0425170055', 'Rainbow Six', 'https://images.isbndb.com/covers/00/52/9780425170052.jpg'), - ('345832402X', 'Die Günderode', 'https://images.isbndb.com/covers/40/27/9783458324027.jpg'), - ('3499613425', 'Der Kleine Beziehungsberater', 'https://images.isbndb.com/covers/34/25/9783499613425.jpg'), - ('3548021026', 'Fabian. Die Geschichte Eines Moralisten (Ullstein Buch, 102)', 'https://images.isbndb.com/covers/10/27/9783548021027.jpg'), - ('351836605X', 'Stiller: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/60/59/9783518366059.jpg'), - ('1573229083', 'My Dream Of You', 'https://images.isbndb.com/covers/90/81/9781573229081.jpg'), - ('0805058249', 'Benjamin''s Crossing: A Novel', 'https://images.isbndb.com/covers/82/46/9780805058246.jpg'), - ('034540047X', 'The Hotel New Hampshire', 'https://images.isbndb.com/covers/04/75/9780345400475.jpg'), - ('0140255842', 'Drinking The Rain: A Memoir', 'https://images.isbndb.com/covers/58/43/9780140255843.jpg'), - ('0380805995', 'Kiss Of The Bees: A Novel Of Suspense', 'https://images.isbndb.com/covers/59/90/9780380805990.jpg'), - ('0425169375', 'The Best Of Friends', 'https://images.isbndb.com/covers/93/77/9780425169377.jpg'), - ('0671727311', 'After Henry', 'https://images.isbndb.com/covers/73/14/9780671727314.jpg'), - ('0449003795', 'P Is For Peril (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/37/94/9780449003794.jpg'), - ('055357874X', 'Finding Mr. Right', 'https://images.isbndb.com/covers/87/44/9780553578744.jpg'), - ('0671896326', 'Malice Domestic 5', 'https://images.isbndb.com/covers/63/24/9780671896324.jpg'), - ('3379017159', 'Manhattan Fliegt', 'https://images.isbndb.com/covers/71/52/9783379017152.jpg'), - ('0374190771', 'Looking For A Ship', 'https://images.isbndb.com/covers/07/74/9780374190774.jpg'), - ('0972660208', 'Passing The Flame: A Beadmaker''s Guide To Detail And Design', 'https://images.isbndb.com/covers/02/04/9780972660204.jpg'), - ('0939165376', 'Three Cats, Two Dogs: One Journey Through Multiple Pet Loss', 'https://images.isbndb.com/covers/53/77/9780939165377.jpg'), - ('0060935464', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/54/67/9780060935467.jpg'), - ('0446322180', 'The Name Of The Rose', 'https://images.isbndb.com/covers/21/88/9780446322188.jpg'), - ('1551668998', 'The Beach House', 'https://images.isbndb.com/covers/89/94/9781551668994.jpg'), - ('0515116173', 'Decider', 'https://images.isbndb.com/covers/61/75/9780515116175.jpg'), - ('157586326X', 'Things A Computer Scientist Rarely Talks About (Center For The Study Of Language And Information - Lecture Notes)', 'https://images.isbndb.com/covers/32/69/9781575863269.jpg'), - ('042516828X', 'Sudden Mischief (Spenser)', 'https://images.isbndb.com/covers/82/88/9780425168288.jpg'), - ('0440910552', 'Under Blood Red Sun', 'https://images.isbndb.com/covers/05/58/9780440910558.jpg'), - ('1853261092', 'Black Beauty (Wordsworth Children''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/10/91/9781853261091.jpg'), - ('0889950954', 'Prism Moon', 'https://images.isbndb.com/covers/09/55/9780889950955.jpg'), - ('1562477579', 'The Smuggler''s Treasure (American Girl History Mysteries)', 'https://images.isbndb.com/covers/75/78/9781562477578.jpg'), - ('0312876343', 'Dark As Day (Cold As Ice Book 2)', 'https://images.isbndb.com/covers/63/40/9780312876340.jpg'), - ('0446519081', 'The Tenth Insight: Holding The Vision', 'https://images.isbndb.com/covers/90/83/9780446519083.jpg'), - ('044651862X', 'The Celestine Prophecy: An Adventure', 'https://images.isbndb.com/covers/86/28/9780446518628.jpg'), - ('0688002307', 'Zen And The Art Of Motorcycle Maintenance: An Inquiry Into Values', 'https://images.isbndb.com/covers/23/05/9780688002305.jpg'), - ('0394708229', 'In The Belly Of The Beast: Letters From Prison', 'https://images.isbndb.com/covers/82/25/9780394708225.jpg'), - ('0195085140', 'Hyperspace: A Scientific Odyssey Through Parallel Universes, Time Warps, And The Tenth Dimension', 'https://images.isbndb.com/covers/51/43/9780195085143.jpg'), - ('0671765973', 'Zolar''s Encyclopedia Of Ancient And Forbidden Knowledge.', 'https://images.isbndb.com/covers/59/72/9780671765972.jpg'), - ('0922729611', 'Karma And Reincarnation: Transcending Your Past, Transforming Your Future (Pocket Guides To Practical Spirituality Series)', 'https://images.isbndb.com/covers/96/16/9780922729616.jpg'), - ('0767902335', 'Work As A Spiritual Practice: A Practical Buddhist Approach To Inner Growth And Satisfaction On The Job', 'https://images.isbndb.com/covers/23/35/9780767902335.jpg'), - ('1577311523', 'The Power Of Now: A Guide To Spiritual Enlightenment', 'https://images.isbndb.com/covers/15/22/9781577311522.jpg'), - ('0425166805', 'Chariots Of The Gods', 'https://images.isbndb.com/covers/68/02/9780425166802.jpg'), - ('1567185126', 'Energy Focused Meditation: Body, Mind, Spirit', 'https://images.isbndb.com/covers/51/26/9781567185126.jpg'), - ('1874166188', 'Introducing Buddha', 'https://images.isbndb.com/covers/61/84/9781874166184.jpg'), - ('0875425011', 'Charms, Spells, And Formulas (Llewellyn''s Practical Magick)', 'https://images.isbndb.com/covers/50/16/9780875425016.jpg'), - ('0875426638', 'The Golden Dawn: The Original Account Of The Teachings, Rites & Ceremonies Of The Hermetic Order (Llewellyn''s Golden Dawn)', 'https://images.isbndb.com/covers/66/31/9780875426631.jpg'), - ('1882723007', 'Embraced By The Light', 'https://images.isbndb.com/covers/30/03/9781882723003.jpg'), - ('0764809326', 'The Search For Happiness: Four Levels Of Emotional And Spiritual Growth', 'https://images.isbndb.com/covers/93/23/9780764809323.jpg'), - ('1892137038', 'The Underworld Initiation: A Journey Towards Psychic Transformation (Celtic Myth & Legend, V. 3)', 'https://images.isbndb.com/covers/70/36/9781892137036.jpg'), - ('0883681056', 'The Practice Of The Presence Of God', 'https://images.isbndb.com/covers/10/53/9780883681053.jpg'), - ('0874776945', 'The Artist''s Way: A Spiritual Path To Higher Creativity (Inner Workbook)', 'https://images.isbndb.com/covers/69/42/9780874776942.jpg'), - ('0875422462', 'Crystal Healing: The Next Step (Llewellyn''s New Age)', 'https://images.isbndb.com/covers/24/66/9780875422466.jpg'), - ('1869928180', 'VISUAL MAGICK: A Manual Of Freestyle Shamanism', 'https://images.isbndb.com/covers/81/86/9781869928186.jpg'), - ('043935806X', 'Harry Potter And The Order Of The Phoenix (Book 5)', 'https://images.isbndb.com/covers/80/64/9780439358064.jpg'), - ('034540002X', 'Past Lives, Present Dreams', 'https://images.isbndb.com/covers/00/24/9780345400024.jpg'), - ('0399507914', 'Drawing The Head And Figure (Perigee)', 'https://images.isbndb.com/covers/79/15/9780399507915.jpg'), - ('1570627193', 'Confessions Of A Pagan Nun', 'https://images.isbndb.com/covers/71/94/9781570627194.jpg'), - ('0439313899', 'Conversations With God For Teens', 'https://images.isbndb.com/covers/38/96/9780439313896.jpg'), - ('0609608045', 'May The Angels Be With You: A Psychic Helps You Find Your Spirit Guides And Your True Purpose', 'https://images.isbndb.com/covers/80/43/9780609608043.jpg'), - ('076071004X', 'Tarot (Book And Cards)', 'https://images.isbndb.com/covers/00/43/9780760710043.jpg'), - ('1855381125', 'A Witch Alone: Thirteen Moons To Master Natural Magic', 'https://images.isbndb.com/covers/11/24/9781855381124.jpg'), - ('0875421202', 'Magical Herbalism: The Secret Craft Of The Wise (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/12/09/9780875421209.jpg'), - ('1566199646', 'Runes Pb', 'https://images.isbndb.com/covers/96/43/9781566199643.jpg'), - ('0738700339', 'Llewellyn''s 2002 Magical Almanac', 'https://images.isbndb.com/covers/03/35/9780738700335.jpg'), - ('0875423248', 'Modern Magick: Eleven Lessons In The High Magickal Arts (Llewellyn''s High Magick)', 'https://images.isbndb.com/covers/32/41/9780875423241.jpg'), - ('073870279X', 'Astral Projection Plain & Simple: The Out-of-Body Experience', 'https://images.isbndb.com/covers/27/97/9780738702797.jpg'), - ('0425158640', 'Idoru', 'https://images.isbndb.com/covers/86/47/9780425158647.jpg'), - ('0553236628', 'Don''t Fall Off The Mountain', 'https://images.isbndb.com/covers/66/20/9780553236620.jpg'), - ('1863739157', '1988', 'https://images.isbndb.com/covers/91/53/9781863739153.jpg'), - ('068483183X', 'Touched With Fire: Manic-Depressive Illness And The Artistic Temperament', 'https://images.isbndb.com/covers/18/31/9780684831831.jpg'), - ('0713715162', 'The I Ching On Love', 'https://images.isbndb.com/covers/51/63/9780713715163.jpg'), - ('0671532545', 'Bedside Manners: The Troubled History Of Doctors And Patients', 'https://images.isbndb.com/covers/25/43/9780671532543.jpg'), - ('0330360434', 'Three Dollars', 'https://images.isbndb.com/covers/04/32/9780330360432.jpg'), - ('0380723336', 'Bully: A True Story Of High School Revenge', 'https://images.isbndb.com/covers/33/31/9780380723331.jpg'), - ('0006498000', 'Winston''s War', 'https://images.isbndb.com/covers/80/01/9780006498001.jpg'), - ('0553210823', 'Canterbury Tales', 'https://images.isbndb.com/covers/08/28/9780553210828.jpg'), - ('0395771552', 'The Clay Marble: And Related Readings (Literature Connections)', 'https://images.isbndb.com/covers/15/56/9780395771556.jpg'), - ('1932560491', 'Bedtime Stories For Women', 'https://images.isbndb.com/covers/04/97/9781932560497.jpg'), - ('0140304770', 'A Wizard Of Earthsea (The Earthsea Cycle, Book 1)', 'https://images.isbndb.com/covers/47/70/9780140304770.jpg'), - ('0140444572', 'The Aeneid: A New Prose Translation (Penguin Classics)', 'https://images.isbndb.com/covers/45/75/9780140444575.jpg'), - ('0140029613', 'Good Morning, Midnight', 'https://images.isbndb.com/covers/96/11/9780140029611.jpg'), - ('0553213113', 'Moby-Dick (Bantam Classics)', 'https://images.isbndb.com/covers/31/19/9780553213119.jpg'), - ('0743489063', 'The Day After Tomorrow', 'https://images.isbndb.com/covers/90/65/9780743489065.jpg'), - ('0440225922', 'The Poyson Garden (Elizabeth I Mysteries, Book 1)', 'https://images.isbndb.com/covers/59/28/9780440225928.jpg'), - ('0099993805', 'Pelican Brief', 'https://images.isbndb.com/covers/38/03/9780099993803.jpg'), - ('0914457284', 'The Nepal Trekker''s Handbook', 'https://images.isbndb.com/covers/72/82/9780914457282.jpg'), - ('073870234X', 'Signs, Symbols & Omens: An Illustrated Guide To Magical & Spiritual Symbolism', 'https://images.isbndb.com/covers/23/46/9780738702346.jpg'), - ('0892132922', 'The Quest For Enlightenment', 'https://images.isbndb.com/covers/29/28/9780892132928.jpg'), - ('0892133260', 'Dharma: The Way Of Transcendence', 'https://images.isbndb.com/covers/32/60/9780892133260.jpg'), - ('0060988258', 'Running In Heels: A Novel', 'https://images.isbndb.com/covers/82/58/9780060988258.jpg'), - ('0345406419', 'Rookery Blues', 'https://images.isbndb.com/covers/64/15/9780345406415.jpg'), - ('0451184963', 'Insomnia', 'https://images.isbndb.com/covers/49/62/9780451184962.jpg'), - ('0440220602', 'The Chamber', 'https://images.isbndb.com/covers/06/02/9780440220602.jpg'), - ('0821766929', 'When Darkness Falls', 'https://images.isbndb.com/covers/69/27/9780821766927.jpg'), - ('0671721135', 'Through The Ice', 'https://images.isbndb.com/covers/11/38/9780671721138.jpg'), - ('0786864516', 'The Hungry Ocean: A Swordboat Captain''s Journey', 'https://images.isbndb.com/covers/45/15/9780786864515.jpg'), - ('042513525X', 'Hideaway', 'https://images.isbndb.com/covers/52/59/9780425135259.jpg'), - ('0060688246', 'A Severe Mercy', 'https://images.isbndb.com/covers/82/40/9780060688240.jpg'), - ('0883960044', 'Step To The Music You Hear: Philosophical Poems From Modern And Classical Authors', 'https://images.isbndb.com/covers/00/42/9780883960042.jpg'), - ('0399149422', 'The Cat Who Brought Down The House', 'https://images.isbndb.com/covers/94/29/9780399149429.jpg'), - ('0440972329', 'A Ring Of Endless Light (Austin Family)', 'https://images.isbndb.com/covers/23/27/9780440972327.jpg'), - ('0451156609', 'The Tommyknockers', 'https://images.isbndb.com/covers/66/00/9780451156600.jpg'), - ('0449132471', 'The Scarlet Ruse', 'https://images.isbndb.com/covers/24/70/9780449132470.jpg'), - ('0373111355', 'A Lifetime And Beyond (Harlequin Presents, No. 1135)', 'https://images.isbndb.com/covers/13/50/9780373111350.jpg'), - ('0373114087', 'Summer Storm (Harlequin Presents)', 'https://images.isbndb.com/covers/40/85/9780373114085.jpg'), - ('0590298364', 'Sunny (California Diaries)', 'https://images.isbndb.com/covers/83/60/9780590298360.jpg'), - ('0689107730', 'East Wind, Rain', 'https://images.isbndb.com/covers/77/33/9780689107733.jpg'), - ('0380016699', 'Your Erroneous Zones', 'https://images.isbndb.com/covers/66/93/9780380016693.jpg'), - ('088001072X', 'A Call: The Tale Of Two Passions (Neglected Books Of The Twentieth Century)', 'https://images.isbndb.com/covers/07/26/9780880010726.jpg'), - ('0671760327', 'Loose Among The Lambs', 'https://images.isbndb.com/covers/03/28/9780671760328.jpg'), - ('034530988X', 'Friday', 'https://images.isbndb.com/covers/98/84/9780345309884.jpg'), - ('0380728184', 'Kokopelli''s Flute', 'https://images.isbndb.com/covers/81/83/9780380728183.jpg'), - ('0140298924', 'The Uncle''s Story', 'https://images.isbndb.com/covers/89/25/9780140298925.jpg'), - ('9722105248', 'O Evangelho Segundo Jesus Cristo: Romance (French Edition)', 'https://images.isbndb.com/covers/52/48/9789722105248.jpg'), - ('2020239302', 'Le Vieux Qui Lisait Des Romans D''amour', 'https://images.isbndb.com/covers/93/01/9782020239301.jpg'), - ('2742743693', 'Le Livre Des Illusions', 'https://images.isbndb.com/covers/36/98/9782742743698.jpg'), - ('0769613292', 'Kryptonite Chaos (Superman (Landoll))', 'https://images.isbndb.com/covers/32/91/9780769613291.jpg'), - ('0671628828', 'New Jewish Wedding', 'https://images.isbndb.com/covers/88/26/9780671628826.jpg'), - ('0380716259', 'Making Choices', 'https://images.isbndb.com/covers/62/58/9780380716258.jpg'), - ('0806509023', 'Existentialism And Human Emotions (A Philosophical Library Book)', 'https://images.isbndb.com/covers/90/20/9780806509020.jpg'), - ('0767901649', 'The Art Of Everyday Ecstasy: The Seven Trantric Keys For Bringing Passion, Spirit And Joy Into Every Part Of Your Life', 'https://images.isbndb.com/covers/16/42/9780767901642.jpg'), - ('0439173035', 'The Flintstones In Viva Rock Vegas', 'https://images.isbndb.com/covers/30/32/9780439173032.jpg'), - ('0590187554', 'Cub In The Cupboard (Animal Ark, No. 8)', 'https://images.isbndb.com/covers/75/58/9780590187558.jpg'), - ('060980748X', 'A Trip To The Beach: Living On Island Time In The Caribbean', 'https://images.isbndb.com/covers/74/84/9780609807484.jpg'), - ('0393049515', 'The Dream Of Reason: A History Of Philosophy From The Greeks To The Renaissance', 'https://images.isbndb.com/covers/95/10/9780393049510.jpg'), - ('1400031354', 'Tears Of The Giraffe (No. 1 Ladies Detective Agency, Book 2)', 'https://images.isbndb.com/covers/13/51/9781400031351.jpg'), - ('0007106130', 'To Hell In A Handcart', 'https://images.isbndb.com/covers/61/34/9780007106134.jpg'), - ('1572241314', 'The Gay And Lesbian Self-Esteem Book: A Guide To Loving Ourselves', 'https://images.isbndb.com/covers/13/12/9781572241312.jpg'), - ('2268013987', 'L''Age Du Christ', 'https://images.isbndb.com/covers/39/85/9782268013985.jpg'), - ('0451202783', 'The Ultimate Havana', 'https://images.isbndb.com/covers/27/89/9780451202789.jpg'), - ('0486277909', 'Self-Reliance And Other Essays (Dover Thrift Editions)', 'https://images.isbndb.com/covers/79/05/9780486277905.jpg'), - ('0394578198', 'Polar Star', 'https://images.isbndb.com/covers/81/94/9780394578194.jpg'), - ('0262192624', 'Portraits In Silicon', 'https://images.isbndb.com/covers/26/20/9780262192620.jpg'), - ('0399135413', 'Brokenclaw (James Bond Master Spy)', 'https://images.isbndb.com/covers/54/15/9780399135415.jpg'), - ('2290318329', 'L''Homme Aux Cercles Bleus', 'https://images.isbndb.com/covers/83/24/9782290318324.jpg'), - ('0553278118', 'Doctors', 'https://images.isbndb.com/covers/81/18/9780553278118.jpg'), - ('0310478014', 'Love Is The Key', 'https://images.isbndb.com/covers/80/10/9780310478010.jpg'), - ('0590477412', 'Deep Trouble (Goosebumps)', 'https://images.isbndb.com/covers/74/13/9780590477413.jpg'), - ('0671868314', 'The Betrayal (Fear Street Saga Trilogy, No. 1)', 'https://images.isbndb.com/covers/83/14/9780671868314.jpg'), - ('0425170349', 'Rainbow Six', 'https://images.isbndb.com/covers/03/42/9780425170342.jpg'), - ('0425068064', 'Three Blind Mice And Other Stories', 'https://images.isbndb.com/covers/80/69/9780425068069.jpg'), - ('0312975120', 'The Unexpected Guest', 'https://images.isbndb.com/covers/51/28/9780312975128.jpg'), - ('0590433865', 'Good-Bye Stacey, Good-Bye (Baby-Sitters Club)', 'https://images.isbndb.com/covers/38/60/9780590433860.jpg'), - ('0486270556', 'Six Great Sherlock Holmes Stories', 'https://images.isbndb.com/covers/05/55/9780486270555.jpg'), - ('0590433857', 'Hello, Mallory (The Baby-Sitters Club, No. 14)', 'https://images.isbndb.com/covers/38/53/9780590433853.jpg'), - ('0486296342', 'Little Women (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/63/40/9780486296340.jpg'), - ('0380709538', 'Runaway Ralph', 'https://images.isbndb.com/covers/95/33/9780380709533.jpg'), - ('0743400526', 'She Said Yes: The Unlikely Martyrdom Of Cassie Bernall', 'https://images.isbndb.com/covers/05/27/9780743400527.jpg'), - ('0451188497', 'Flawless', 'https://images.isbndb.com/covers/84/96/9780451188496.jpg'), - ('0671656589', 'Heaven', 'https://images.isbndb.com/covers/65/84/9780671656584.jpg'), - ('0671695169', 'Midnight Whispers', 'https://images.isbndb.com/covers/51/63/9780671695163.jpg'), - ('0671695142', 'Twilight''s Child (Cutler Family)', 'https://images.isbndb.com/covers/51/49/9780671695149.jpg'), - ('0671729462', 'My Sweet Audrina', 'https://images.isbndb.com/covers/94/62/9780671729462.jpg'), - ('0446608955', 'A Walk To Remember', 'https://images.isbndb.com/covers/89/54/9780446608954.jpg'), - ('0312287860', 'Madonna', 'https://images.isbndb.com/covers/78/63/9780312287863.jpg'), - ('0809293242', 'Brit Cult : An A-Z Of British Pop Culture', 'https://images.isbndb.com/covers/32/47/9780809293247.jpg'), - ('0679417397', 'Nineteen Eighty-Four', 'https://images.isbndb.com/covers/73/92/9780679417392.jpg'), - ('0679779159', 'How Proust Can Change Your Life', 'https://images.isbndb.com/covers/91/55/9780679779155.jpg'), - ('1550546007', 'Why I Hate Canadians', 'https://images.isbndb.com/covers/60/02/9781550546002.jpg'), - ('0440204194', 'Firefly Summer', 'https://images.isbndb.com/covers/41/90/9780440204190.jpg'), - ('0451408721', 'Deadly Exposure', 'https://images.isbndb.com/covers/87/23/9780451408723.jpg'), - ('0064472574', 'Breathing Underwater', 'https://images.isbndb.com/covers/25/79/9780064472579.jpg'), - ('0884042693', 'Dianetics: The Modern Science Of Mental Health: A Handbook Of Dianetics Procedure', 'https://images.isbndb.com/covers/26/93/9780884042693.jpg'), - ('0141439696', 'Complete Short Fiction (Penguin Classics)', 'https://images.isbndb.com/covers/96/93/9780141439693.jpg'), - ('0764548573', 'Zope Bible', 'https://images.isbndb.com/covers/85/74/9780764548574.jpg'), - ('0449203662', 'WANDERINGS', 'https://images.isbndb.com/covers/36/68/9780449203668.jpg'), - ('0586087060', 'Danziger''s Travels: Beyond Forbidden Frontiers (Paladin Books)', 'https://images.isbndb.com/covers/70/60/9780586087060.jpg'), - ('0449221032', 'Elephant Song', 'https://images.isbndb.com/covers/10/37/9780449221037.jpg'), - ('0449218473', 'Journey', 'https://images.isbndb.com/covers/84/71/9780449218471.jpg'), - ('0060926015', 'Mary Kay - 3rd Edition: Miracles Happen', 'https://images.isbndb.com/covers/60/14/9780060926014.jpg'), - ('0385018061', 'The Mother''s Almanac', 'https://images.isbndb.com/covers/80/67/9780385018067.jpg'), - ('0028600819', 'The Weight Watchers Complete Exercise Book', 'https://images.isbndb.com/covers/08/19/9780028600819.jpg'), - ('0140248307', 'The Cunning Man', 'https://images.isbndb.com/covers/83/02/9780140248302.jpg'), - ('0425065952', 'Forgotten Beasts Of Eld', 'https://images.isbndb.com/covers/59/52/9780425065952.jpg'), - ('0070064261', 'Absent Without Leave: Two Novellas', 'https://images.isbndb.com/covers/42/63/9780070064263.jpg'), - ('3404149114', 'Das Zweite Gedächtnis: Roman', 'https://images.isbndb.com/covers/91/17/9783404149117.jpg'), - ('9504001068', 'Alicia A Traves Del Espejo (Spanish Edition)', 'https://images.isbndb.com/covers/10/65/9789504001065.jpg'), - ('1864501235', 'Lonely Planet Madrid (Lonely Planet Travel Guides)', 'https://images.isbndb.com/covers/12/30/9781864501230.jpg'), - ('0864426224', 'Lonely Planet Paris (Paris, 2nd Ed)', 'https://images.isbndb.com/covers/62/22/9780864426222.jpg'), - ('2277229938', 'Les Nuits Fauves', 'https://images.isbndb.com/covers/99/33/9782277229933.jpg'), - ('2253150908', 'L''Alchimiste', 'https://images.isbndb.com/covers/09/09/9782253150909.jpg'), - ('2253048852', 'Les Dames Du Lac, Tome 2 : Les Brumes D''Avalon', 'https://images.isbndb.com/covers/88/55/9782253048855.jpg'), - ('2253044911', 'Les Dames Du Lac, Tome 1', 'https://images.isbndb.com/covers/49/18/9782253044918.jpg'), - ('2266067249', 'L''Homme Qui Murmurait à L''oreille Des Chevaux', 'https://images.isbndb.com/covers/72/49/9782266067249.jpg'), - ('2253033138', 'Le Nom De La Rose', 'https://images.isbndb.com/covers/31/34/9782253033134.jpg'), - ('2070380742', 'COURRIERS DE LA MORT P', 'https://images.isbndb.com/covers/07/49/9782070380749.jpg'), - ('067972883X', 'The Optimist''s Daughter', 'https://images.isbndb.com/covers/88/32/9780679728832.jpg'), - ('0440414806', 'Holes', 'https://images.isbndb.com/covers/48/03/9780440414803.jpg'), - ('0689825587', 'Silverwing', 'https://images.isbndb.com/covers/55/83/9780689825583.jpg'), - ('0142302015', 'Good Night, Good Knight (Penguin Young Readers, L2)', 'https://images.isbndb.com/covers/20/19/9780142302019.jpg'), - ('1586480499', 'War Is A Force That Gives Us Meaning', 'https://images.isbndb.com/covers/04/93/9781586480493.jpg'), - ('0380821214', 'Eric', 'https://images.isbndb.com/covers/12/11/9780380821211.jpg'), - ('014038572X', 'The Outsiders', 'https://images.isbndb.com/covers/57/24/9780140385724.jpg'), - ('2714303412', 'Préférences', 'https://images.isbndb.com/covers/34/17/9782714303417.jpg'), - ('0140621334', 'Three Men In A Boat: To Say Nothing Of The Dog! (Penguin Popular Classics)', 'https://images.isbndb.com/covers/13/34/9780140621334.jpg'), - ('2070389634', 'L''Idiot', 'https://images.isbndb.com/covers/96/36/9782070389636.jpg'), - ('2070368157', 'Les Jeunes Filles', 'https://images.isbndb.com/covers/81/50/9782070368150.jpg'), - ('2864241277', 'Le Vieux Qui Lisait Des Romans D''amour', 'https://images.isbndb.com/covers/12/70/9782864241270.jpg'), - ('0440241073', 'The Summons', 'https://images.isbndb.com/covers/10/72/9780440241072.jpg'), - ('0553277243', 'Time Flies', 'https://images.isbndb.com/covers/72/41/9780553277241.jpg'), - ('0140161953', 'The Willow Cabin (Virago Modern Classics)', 'https://images.isbndb.com/covers/19/53/9780140161953.jpg'), - ('0553287303', 'Second Child', 'https://images.isbndb.com/covers/73/01/9780553287301.jpg'), - ('0451190521', 'The Mouse On The Mile (The Green Mile, Part 2)', 'https://images.isbndb.com/covers/05/29/9780451190529.jpg'), - ('0451190491', 'The Two Dead Girls (Green Mile Series, Part 1)', 'https://images.isbndb.com/covers/04/99/9780451190499.jpg'), - ('0679404856', 'Dave Barry Does Japan', 'https://images.isbndb.com/covers/48/59/9780679404859.jpg'), - ('0399141499', 'Cold Fall', 'https://images.isbndb.com/covers/14/92/9780399141492.jpg'), - ('0553100130', 'The Death Of Innocents: A True Story Of Murder, Medicine, And High-Stake Science', 'https://images.isbndb.com/covers/01/36/9780553100136.jpg'), - ('067187294X', 'The Stallion', 'https://images.isbndb.com/covers/29/46/9780671872946.jpg'), - ('0449215202', 'Hold On, Mr. President', 'https://images.isbndb.com/covers/52/03/9780449215203.jpg'), - ('0440204429', 'Perfect Victim: The True Story Of The Girl In The Box', 'https://images.isbndb.com/covers/44/28/9780440204428.jpg'), - ('0553259253', 'Scarlet Mansion,the', 'https://images.isbndb.com/covers/92/54/9780553259254.jpg'), - ('2207305554', 'L''elvissée', 'https://images.isbndb.com/covers/55/53/9782207305553.jpg'), - ('2207249786', 'Parabellum Tango', 'https://images.isbndb.com/covers/97/89/9782207249789.jpg'), - ('2266102621', 'Les Heures', 'https://images.isbndb.com/covers/26/29/9782266102629.jpg'), - ('2253140589', 'Amerigo : Récit D''une Erreur Historique', 'https://images.isbndb.com/covers/05/80/9782253140580.jpg'), - ('2277233617', 'Une Breve Histoire Du Temps', 'https://images.isbndb.com/covers/36/19/9782277233619.jpg'), - ('202025462X', 'Hygiène De L''assassin', 'https://images.isbndb.com/covers/46/25/9782020254625.jpg'), - ('2277116092', 'Le Pêcheur', 'https://images.isbndb.com/covers/60/97/9782277116097.jpg'), - ('2253049069', 'Trois Hommes Dans Un Bateau', 'https://images.isbndb.com/covers/90/67/9782253049067.jpg'), - ('2266002635', 'La Guinguette à Deux Sous (Presses Pocket)', 'https://images.isbndb.com/covers/26/39/9782266002639.jpg'), - ('2253044903', 'Le Parfum', 'https://images.isbndb.com/covers/49/01/9782253044901.jpg'), - ('2253152846', 'Métaphysique Des Tubes', 'https://images.isbndb.com/covers/28/42/9782253152842.jpg'), - ('2290312959', 'Des Fleurs Pour Algernon', 'https://images.isbndb.com/covers/29/57/9782290312957.jpg'), - ('2266104853', 'C''est Comment L''Amérique', 'https://images.isbndb.com/covers/48/52/9782266104852.jpg'), - ('2020579391', 'La Ballade De L''impossible', 'https://images.isbndb.com/covers/93/91/9782020579391.jpg'), - ('2070366081', 'Salammbô', 'https://images.isbndb.com/covers/60/88/9782070366088.jpg'), - ('0553225448', 'Conan The Barbarian', 'https://images.isbndb.com/covers/54/40/9780553225440.jpg'), - ('0786703377', 'The Mask Of Cthulhu', 'https://images.isbndb.com/covers/33/71/9780786703371.jpg'), - ('0345350804', 'The Best Of H. P. Lovecraft: Bloodcurdling Tales Of Horror And The Macabre', 'https://images.isbndb.com/covers/08/00/9780345350800.jpg'), - ('0895551950', 'St. Dominic (Cross And Crown Series Of Spirituality)', 'https://images.isbndb.com/covers/19/55/9780895551955.jpg'), - ('0872168328', 'Horror House', 'https://images.isbndb.com/covers/83/29/9780872168329.jpg'), - ('0786705302', 'Healing With Magnets', 'https://images.isbndb.com/covers/53/06/9780786705306.jpg'), - ('0743203178', 'Nothing Like It In The World: The Men Who Built The Transcontinental Railroad 1863-1869', 'https://images.isbndb.com/covers/31/73/9780743203173.jpg'), - ('0812550897', 'The Wandering Arm (Catherine Levendeur)', 'https://images.isbndb.com/covers/08/94/9780812550894.jpg'), - ('0881849804', 'The Mind Cage', 'https://images.isbndb.com/covers/98/06/9780881849806.jpg'), - ('0671725254', 'The COLDEST WAR: A MEMOIR OF KOREA', 'https://images.isbndb.com/covers/52/59/9780671725259.jpg'), - ('0810934302', 'Maps And Mapmakers Of The Civil War', 'https://images.isbndb.com/covers/43/06/9780810934306.jpg'), - ('006008118X', 'Mr. Lincoln''s Wars: A Novel In Thirteen Stories', 'https://images.isbndb.com/covers/11/88/9780060081188.jpg'), - ('0312266588', 'The Templars: The Dramatic History Of The Knights Templar, The Most Powerful Military Order Of The Crusades', 'https://images.isbndb.com/covers/65/85/9780312266585.jpg'), - ('0312906765', 'Dagon', 'https://images.isbndb.com/covers/67/64/9780312906764.jpg'), - ('0312274785', 'The Year''s Best Science Fiction, Eighteenth Annual Collection', 'https://images.isbndb.com/covers/47/88/9780312274788.jpg'), - ('0884042871', 'Death Quest (Mission Earth Series, Vol 6)', 'https://images.isbndb.com/covers/28/77/9780884042877.jpg'), - ('0884042847', 'The Enemy Within (Mission Earth, Vol 3)', 'https://images.isbndb.com/covers/28/46/9780884042846.jpg'), - ('0445204303', 'Cyteen III: The Vindication', 'https://images.isbndb.com/covers/43/00/9780445204300.jpg'), - ('0380003821', 'Dispossessed', 'https://images.isbndb.com/covers/38/22/9780380003822.jpg'), - ('0879801646', 'Thought Dial', 'https://images.isbndb.com/covers/16/49/9780879801649.jpg'), - ('0553227734', 'Guns Of August', 'https://images.isbndb.com/covers/77/34/9780553227734.jpg'), - ('0486232948', 'How Good Is Your Chess?: Rate Your Skill And Improve Your Strategy By Participating In 35 Master Games', 'https://images.isbndb.com/covers/29/42/9780486232942.jpg'), - ('0553241575', 'Matarese Circle', 'https://images.isbndb.com/covers/15/70/9780553241570.jpg'), - ('0553205315', 'The Road To Gandolfo', 'https://images.isbndb.com/covers/53/12/9780553205312.jpg'), - ('0671493515', 'Fund Contract Bridge', 'https://images.isbndb.com/covers/35/16/9780671493516.jpg'), - ('0828103054', 'The Civil War (American Heritage Library)', 'https://images.isbndb.com/covers/30/53/9780828103053.jpg'), - ('0812561589', 'Spotlight', 'https://images.isbndb.com/covers/15/86/9780812561586.jpg'), - ('0670884839', 'My Little Blue Dress', 'https://images.isbndb.com/covers/48/34/9780670884834.jpg'), - ('0449227421', 'The Third Twin', 'https://images.isbndb.com/covers/74/28/9780449227428.jpg'), - ('3404118839', 'Das Pharao-Komplott', 'https://images.isbndb.com/covers/88/30/9783404118830.jpg'), - ('3442430879', 'Schau Dich Nicht Um', 'https://images.isbndb.com/covers/08/71/9783442430871.jpg'), - ('3426600218', 'DinoPark. Roman.', 'https://images.isbndb.com/covers/02/14/9783426600214.jpg'), - ('3809413747', 'Generation Mama', 'https://images.isbndb.com/covers/37/45/9783809413745.jpg'), - ('3442723833', 'Das Blütenstaubzimmer: Roman', 'https://images.isbndb.com/covers/38/36/9783442723836.jpg'), - ('096788330X', 'Duncan Delaney And The Cadillac Of Doom', 'https://images.isbndb.com/covers/33/04/9780967883304.jpg'), - ('0929141652', 'Speak Ill Of The Dead (Camilla MacPhee Mysteries)', 'https://images.isbndb.com/covers/16/57/9780929141657.jpg'), - ('0525244581', 'The Tao Of Pooh', 'https://images.isbndb.com/covers/45/85/9780525244585.jpg'), - ('0373706847', 'Married To The Man : Reunited (Harlequin Superromance No. 684)', 'https://images.isbndb.com/covers/68/46/9780373706846.jpg'), - ('0440414121', 'The Watsons Go To Birmingham--1963', 'https://images.isbndb.com/covers/41/24/9780440414124.jpg'), - ('3442441080', 'Im Angesicht Des Feindes', 'https://images.isbndb.com/covers/10/82/9783442441082.jpg'), - ('3492238572', 'Wer Hat Angst Vorm Bösen Wolf: Roman', 'https://images.isbndb.com/covers/85/71/9783492238571.jpg'), - ('0805010858', '"I" Is For Innocent (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/08/55/9780805010855.jpg'), - ('0963622927', 'Sign With Your Baby : How To Communicate With Infants Before They Can Speak (book Only)', 'https://images.isbndb.com/covers/29/21/9780963622921.jpg'), - ('1558506462', 'Small Miracles: Extraordinary Coincidences From Everyday Life (v. 1)', 'https://images.isbndb.com/covers/64/66/9781558506466.jpg'), - ('0140245480', 'The Red Queen: Sex And The Evolution Of Human Nature', 'https://images.isbndb.com/covers/54/86/9780140245486.jpg'), - ('0451167716', 'The Godfather (Signet)', 'https://images.isbndb.com/covers/77/12/9780451167712.jpg'), - ('069811695X', 'This Place Has No Atmosphere', 'https://images.isbndb.com/covers/69/55/9780698116955.jpg'), - ('0262121867', 'The Trouble With Computers: Usefulness, Usability, And Productivity', 'https://images.isbndb.com/covers/18/66/9780262121866.jpg'), - ('9839236083', 'Corruption And The Destiny Of Asia Pb', 'https://images.isbndb.com/covers/60/88/9789839236088.jpg'), - ('0811830454', 'My Fabulous Life: Musings On A Marvelous Me', 'https://images.isbndb.com/covers/04/54/9780811830454.jpg'), - ('0310329914', 'Be Still And Know', 'https://images.isbndb.com/covers/99/16/9780310329916.jpg'), - ('0440203430', 'Crimson Joy', 'https://images.isbndb.com/covers/34/38/9780440203438.jpg'), - ('0446606324', 'The Winner', 'https://images.isbndb.com/covers/63/25/9780446606325.jpg'), - ('0553211234', 'The Pickwick Papers (Bantam Classic)', 'https://images.isbndb.com/covers/12/38/9780553211238.jpg'), - ('1593080077', 'Jane Eyre (Barnes & Noble Classics Series)', 'https://images.isbndb.com/covers/00/75/9781593080075.jpg'), - ('0446604089', 'The Best Laid Plans', 'https://images.isbndb.com/covers/40/86/9780446604086.jpg'), - ('0446603287', 'A Wild And Lonely Place (Sharon McCone Mysteries)', 'https://images.isbndb.com/covers/32/87/9780446603287.jpg'), - ('0446343013', 'One Writer''s Beginnings', 'https://images.isbndb.com/covers/30/15/9780446343015.jpg'), - ('0451202473', 'Bones', 'https://images.isbndb.com/covers/24/75/9780451202475.jpg'), - ('0060548827', 'Chinese Takeout: A Novel', 'https://images.isbndb.com/covers/88/27/9780060548827.jpg'), - ('0804119937', 'The Trials Of Angela', 'https://images.isbndb.com/covers/99/31/9780804119931.jpg'), - ('1558746986', 'Chicken Soup For The Unsinkable Soul: 101 Stories', 'https://images.isbndb.com/covers/69/85/9781558746985.jpg'), - ('0515132187', 'The Villa', 'https://images.isbndb.com/covers/21/82/9780515132182.jpg'), - ('0704349469', 'A Different Life', 'https://images.isbndb.com/covers/94/69/9780704349469.jpg'), - ('0394758439', 'Cultural Literacy: What Every American Needs To Know', 'https://images.isbndb.com/covers/84/35/9780394758435.jpg'), - ('0449213447', 'The Chosen', 'https://images.isbndb.com/covers/34/45/9780449213445.jpg'), - ('0446670251', 'The Virgin Suicides', 'https://images.isbndb.com/covers/02/58/9780446670258.jpg'), - ('0061098736', 'Murder In Spokane', 'https://images.isbndb.com/covers/87/34/9780061098734.jpg'), - ('0448095149', 'The Whispering Statue (Nancy Drew #14)', 'https://images.isbndb.com/covers/51/41/9780448095141.jpg'), - ('0702227773', 'The Copper Crucible', 'https://images.isbndb.com/covers/77/76/9780702227776.jpg'), - ('1841219266', 'Stargirl (Black Apple)', 'https://images.isbndb.com/covers/92/64/9781841219264.jpg'), - ('0671015842', 'Mr. Macgregor', 'https://images.isbndb.com/covers/58/48/9780671015848.jpg'), - ('0140149708', 'Peace Work (v. 7)', 'https://images.isbndb.com/covers/97/08/9780140149708.jpg'), - ('0434271918', 'Liar', 'https://images.isbndb.com/covers/19/17/9780434271917.jpg'), - ('1840461535', 'Introducing Darwin And Evolution', 'https://images.isbndb.com/covers/15/34/9781840461534.jpg'), - ('0563534753', 'The Life Laundry: How To De-Junk Your Life', 'https://images.isbndb.com/covers/47/54/9780563534754.jpg'), - ('0563487496', 'The Life Laundry: How To Stay De-Junked Forever (Bk.2)', 'https://images.isbndb.com/covers/74/94/9780563487494.jpg'), - ('1862042497', 'Seven Steps To Developing Your Intuitive Powers: An Interactive Workbook', 'https://images.isbndb.com/covers/24/90/9781862042490.jpg'), - ('0330328573', 'Dracula: The Novelisation', 'https://images.isbndb.com/covers/85/79/9780330328579.jpg'), - ('0751516880', 'The Beatles Lyrics', 'https://images.isbndb.com/covers/68/83/9780751516883.jpg'), - ('014062225X', 'Rainbow Pb (Penguin Popular Classics)', 'https://images.isbndb.com/covers/22/56/9780140622256.jpg'), - ('0140622144', 'To The Lighthouse (Penguin Popular Classics)', 'https://images.isbndb.com/covers/21/40/9780140622140.jpg'), - ('0340765429', 'Trowel And Error', 'https://images.isbndb.com/covers/54/25/9780340765425.jpg'), - ('034066049X', 'Well Groomed', 'https://images.isbndb.com/covers/04/92/9780340660492.jpg'), - ('0425154092', 'From Potter''s Field (Kay Scarpetta)', 'https://images.isbndb.com/covers/40/90/9780425154090.jpg'), - ('0425179613', 'It''s Not About The Bike: My Journey Back To Life', 'https://images.isbndb.com/covers/96/11/9780425179611.jpg'), - ('0375724370', 'Anil''s Ghost: A Novel', 'https://images.isbndb.com/covers/43/74/9780375724374.jpg'), - ('0446677671', 'Sidetracked Home Executives(TM): From Pigpen To Paradise', 'https://images.isbndb.com/covers/76/77/9780446677677.jpg'), - ('0060969911', 'Get Your Act Together: A 7-Day Get-Organized Program For The Overworked, Overbooked, And Overwhelmed', 'https://images.isbndb.com/covers/99/12/9780060969912.jpg'), - ('342310516X', 'Wenn Ein Reisender In Einer Winternacht: Roman', 'https://images.isbndb.com/covers/51/63/9783423105163.jpg'), - ('3492040683', 'Die Frau Des Piloten', 'https://images.isbndb.com/covers/06/86/9783492040686.jpg'), - ('3502506809', 'Das Schicksal In Person. Ein Miss- Marple Krimi.', 'https://images.isbndb.com/covers/68/05/9783502506805.jpg'), - ('3453127013', 'Der Regenmacher: Roman', 'https://images.isbndb.com/covers/70/12/9783453127012.jpg'), - ('3453172841', 'Straßenpizza', 'https://images.isbndb.com/covers/28/45/9783453172845.jpg'), - ('359650547X', 'Orlando. Jubiläums- Edition. Eine Biographie.', 'https://images.isbndb.com/covers/54/70/9783596505470.jpg'), - ('0330262726', 'Smiley''s People', 'https://images.isbndb.com/covers/27/29/9780330262729.jpg'), - ('0330253565', 'The Honourable Schoolboy', 'https://images.isbndb.com/covers/35/67/9780330253567.jpg'), - ('0553057960', 'Time Bomb', 'https://images.isbndb.com/covers/79/66/9780553057966.jpg'), - ('0671014196', 'The Summerhouse', 'https://images.isbndb.com/covers/41/93/9780671014193.jpg'), - ('0688171877', 'Ahab''s Wife: Or, The Star-Gazer: A Novel', 'https://images.isbndb.com/covers/18/72/9780688171872.jpg'), - ('0871136791', 'Cold Mountain', 'https://images.isbndb.com/covers/67/94/9780871136794.jpg'), - ('0679400540', 'Be Sweet: A Conditional Love Story', 'https://images.isbndb.com/covers/05/47/9780679400547.jpg'), - ('0805009213', 'The Fool''s Progress', 'https://images.isbndb.com/covers/92/17/9780805009217.jpg'), - ('0679406557', 'No Mercy: A Journey To The Heart Of The Congo', 'https://images.isbndb.com/covers/65/56/9780679406556.jpg'), - ('0684814773', 'QUIT', 'https://images.isbndb.com/covers/47/73/9780684814773.jpg'), - ('957131577X', 'Yu Shang 100% De Nu Hai (in Traditional Chinese, NOT In English)', 'https://images.isbndb.com/covers/57/75/9789571315775.jpg'), - ('0517881004', 'The Vampire Encyclopedia', 'https://images.isbndb.com/covers/10/02/9780517881002.jpg'), - ('1879181363', 'Starwalking: Shamanic Practices For Traveling Into The Night Sky', 'https://images.isbndb.com/covers/13/66/9781879181366.jpg'), - ('0671518909', 'The Miracle Of Change', 'https://images.isbndb.com/covers/89/05/9780671518905.jpg'), - ('055321277X', 'Dr. Jekyll And Mr. Hyde (Bantam Classic)', 'https://images.isbndb.com/covers/27/78/9780553212778.jpg'), - ('006039241X', 'Zone-Perfect Meals In Minutes', 'https://images.isbndb.com/covers/24/13/9780060392413.jpg'), - ('0553380095', 'The Heart Of A Woman', 'https://images.isbndb.com/covers/00/95/9780553380095.jpg'), - ('0060391502', 'Enter The Zone: A Dietary Road Map', 'https://images.isbndb.com/covers/15/08/9780060391508.jpg'), - ('0874779669', 'Coming Out Spiritually: The Next Step', 'https://images.isbndb.com/covers/96/60/9780874779660.jpg'), - ('0679726225', 'Wilderness: The Lost Writings Of Jim Morrison, Volume 1', 'https://images.isbndb.com/covers/62/27/9780679726227.jpg'), - ('0306810123', 'The Last Madam: A Life In The New Orleans Underworld', 'https://images.isbndb.com/covers/01/21/9780306810121.jpg'), - ('1555834310', 'Alec Baldwin Doesn''t Love Me And Other Trials From My Queer Life', 'https://images.isbndb.com/covers/43/19/9781555834319.jpg'), - ('0684841827', 'Footnotes: A Memoir', 'https://images.isbndb.com/covers/18/23/9780684841823.jpg'), - ('0440504708', 'I''m Good Enough, I''m Smart Enough, And Doggone It, People Like Me!: Daily Affirmations By Stuart Smalley', 'https://images.isbndb.com/covers/47/02/9780440504702.jpg'), - ('0671521136', 'MARY REILLY (Movie-Tie-in)', 'https://images.isbndb.com/covers/11/34/9780671521134.jpg'), - ('0399518460', 'Gold''s Gym Weight Training Book', 'https://images.isbndb.com/covers/84/61/9780399518461.jpg'), - ('0688140718', 'Trapped In The Mirror: Adult Children Of Narcissists In Their Struggle For Self', 'https://images.isbndb.com/covers/07/17/9780688140717.jpg'), - ('0853301239', 'A Treatise On White Magic Or The Way Of The Disciple', 'https://images.isbndb.com/covers/12/33/9780853301233.jpg'), - ('0553284347', 'Toxic Parents: Overcoming Their Hurtful Legacy And Reclaiming Your Life', 'https://images.isbndb.com/covers/43/48/9780553284348.jpg'), - ('0345356500', 'Garfield''s Thanksgiving', 'https://images.isbndb.com/covers/65/05/9780345356505.jpg'), - ('0440473500', 'Madame Doubtfire (Puffin Modern Classics)', 'https://images.isbndb.com/covers/35/03/9780440473503.jpg'), - ('0773674489', 'Mystery House', 'https://images.isbndb.com/covers/44/86/9780773674486.jpg'), - ('0743423682', 'Hollywood Wives - The New Generation', 'https://images.isbndb.com/covers/36/87/9780743423687.jpg'), - ('1410798860', 'The Diary Of Alice Mary: A Factual Childhood Diary Written During The World War II Years By Joe Connally For His Young Motherless Child With Qu', 'https://images.isbndb.com/covers/88/62/9781410798862.jpg'), - ('0525945938', 'Scarlet Feather', 'https://images.isbndb.com/covers/59/32/9780525945932.jpg'), - ('042516876X', 'Range Of Motion: A Novel', 'https://images.isbndb.com/covers/87/69/9780425168769.jpg'), - ('0385496095', 'Traveling Mercies: Some Thoughts On Faith', 'https://images.isbndb.com/covers/60/94/9780385496094.jpg'), - ('0385475721', 'The Blind Assassin', 'https://images.isbndb.com/covers/57/23/9780385475723.jpg'), - ('0385319908', 'A Place Of My Own: The Education Of An Amateur Builder', 'https://images.isbndb.com/covers/99/04/9780385319904.jpg'), - ('0425142035', 'Missing In Manhattan', 'https://images.isbndb.com/covers/20/35/9780425142035.jpg'), - ('0061096253', 'The Butter Did It: A Gastronomic Tale Of Love And Murder (Chas Wheatley Mysteries)', 'https://images.isbndb.com/covers/62/59/9780061096259.jpg'), - ('1551667509', 'Haunted', 'https://images.isbndb.com/covers/75/08/9781551667508.jpg'), - ('0553277723', 'Night She Died, The', 'https://images.isbndb.com/covers/77/22/9780553277722.jpg'), - ('0425068099', 'The Witness For The Prosecution: And Other Stories', 'https://images.isbndb.com/covers/80/90/9780425068090.jpg'), - ('0449146391', 'Murder At The PTA Luncheon', 'https://images.isbndb.com/covers/63/92/9780449146392.jpg'), - ('0312421117', 'Elegy For Iris', 'https://images.isbndb.com/covers/11/13/9780312421113.jpg'), - ('0761514430', 'Lean And Luscious And Meatless (Lean And Luscious Series)', 'https://images.isbndb.com/covers/44/35/9780761514435.jpg'), - ('0679405283', 'The Tale Of The Body Thief: The Vampire Chronicles', 'https://images.isbndb.com/covers/52/83/9780679405283.jpg'), - ('0440508975', 'Bibliotherapy: The Girl''s Guide To Books For Every Phase Of Our Lives', 'https://images.isbndb.com/covers/89/77/9780440508977.jpg'), - ('0006751504', 'The Secret Life Of Sally Tomato (Diary Series)', 'https://images.isbndb.com/covers/15/02/9780006751502.jpg'), - ('0515137111', 'Birthright', 'https://images.isbndb.com/covers/71/18/9780515137118.jpg'), - ('0345456939', 'Gone Too Far (Troubleshooters, Book 6)', 'https://images.isbndb.com/covers/69/39/9780345456939.jpg'), - ('0060504110', 'Die In Plain Sight', 'https://images.isbndb.com/covers/41/13/9780060504113.jpg'), - ('0060542799', 'An Hour To Kill: A Novel', 'https://images.isbndb.com/covers/27/95/9780060542795.jpg'), - ('0743469844', 'Flirting With Pete: A Novel', 'https://images.isbndb.com/covers/98/45/9780743469845.jpg'), - ('0553583573', 'Dark Horse', 'https://images.isbndb.com/covers/35/71/9780553583571.jpg'), - ('0446613886', 'Land Of The Living', 'https://images.isbndb.com/covers/38/80/9780446613880.jpg'), - ('0449148238', 'Buried Lives', 'https://images.isbndb.com/covers/82/35/9780449148235.jpg'), - ('0373289278', 'Badlands Bride (Harlequin Historical, No 327)', 'https://images.isbndb.com/covers/92/71/9780373289271.jpg'), - ('0451205561', 'The Chocolate Cat Caper (Chocoholic Mysteries, No. 1)', 'https://images.isbndb.com/covers/55/68/9780451205568.jpg'), - ('1551667371', 'Thicker Than Water (Mordecai Young Series, Book 1)', 'https://images.isbndb.com/covers/73/79/9781551667379.jpg'), - ('1551667398', 'The Bad Witness', 'https://images.isbndb.com/covers/73/93/9781551667393.jpg'), - ('0778320324', 'Pale Moon Rising (Mira)', 'https://images.isbndb.com/covers/03/26/9780778320326.jpg'), - ('0778320413', 'While Others Sleep (Mira)', 'https://images.isbndb.com/covers/04/18/9780778320418.jpg'), - ('0553107380', 'Pawing Through The Past (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/73/88/9780553107388.jpg'), - ('0375406182', 'Plainsong', 'https://images.isbndb.com/covers/61/88/9780375406188.jpg'), - ('0553271636', 'D IS FOR DEADBEAT', 'https://images.isbndb.com/covers/16/38/9780553271638.jpg'), - ('1892145057', 'T.BOR A Book (To Keep) +30 Postcards (To Send) (Postcard Book)', 'https://images.isbndb.com/covers/50/55/9781892145055.jpg'), - ('0345389964', 'A Son Of The Circus', 'https://images.isbndb.com/covers/99/61/9780345389961.jpg'), - ('0486256111', 'Story Of The "Titanic": 24 Cards (Dover Postcards)', 'https://images.isbndb.com/covers/61/15/9780486256115.jpg'), - ('0679751521', 'Midnight In The Garden Of Good And Evil', 'https://images.isbndb.com/covers/15/26/9780679751526.jpg'), - ('0590120727', 'Help!: I''m Trapped In My Principal''s Body', 'https://images.isbndb.com/covers/07/22/9780590120722.jpg'), - ('1888054557', 'Postmarked Yesteryear: 30 Rare Holiday Postcards', 'https://images.isbndb.com/covers/45/52/9781888054552.jpg'), - ('0312099045', 'Route 66 Postcards: Greetings From The Mother Road', 'https://images.isbndb.com/covers/90/46/9780312099046.jpg'), - ('0312966091', 'Three To Get Deadly (Stephanie Plum, No. 3)', 'https://images.isbndb.com/covers/60/96/9780312966096.jpg'), - ('0385265565', 'There Are No Children Here: The Story Of Two Boys Growing Up In The Other America', 'https://images.isbndb.com/covers/55/60/9780385265560.jpg'), - ('0670813648', 'Misery', 'https://images.isbndb.com/covers/36/43/9780670813643.jpg'), - ('0892961759', 'Only When I Laugh', 'https://images.isbndb.com/covers/17/57/9780892961757.jpg'), - ('0345372433', 'The Good Husband', 'https://images.isbndb.com/covers/24/37/9780345372437.jpg'), - ('0399144315', 'The Cat Who Saw Stars', 'https://images.isbndb.com/covers/43/18/9780399144318.jpg'), - ('0786883219', 'Brain Droppings', 'https://images.isbndb.com/covers/32/19/9780786883219.jpg'), - ('0375504613', 'A Short Guide To A Happy Life', 'https://images.isbndb.com/covers/46/17/9780375504617.jpg'), - ('0785263535', 'The Savage Nation: Saving America From The Liberal Assault On Our Borders, Language And Culture', 'https://images.isbndb.com/covers/35/31/9780785263531.jpg'), - ('0380896389', 'Until Proven Guilty', 'https://images.isbndb.com/covers/63/87/9780380896387.jpg'), - ('0380896419', 'Injustice For All: A J.P. Beaumont Mystery', 'https://images.isbndb.com/covers/64/17/9780380896417.jpg'), - ('0671252941', 'Knock Wood', 'https://images.isbndb.com/covers/29/46/9780671252946.jpg'), - ('155972272X', 'Bette: An Intimate Biography Of Bette Midler', 'https://images.isbndb.com/covers/27/28/9781559722728.jpg'), - ('0393046338', 'The Republic Of Dreams: A Reverie', 'https://images.isbndb.com/covers/63/35/9780393046335.jpg'), - ('0671001795', 'Two For The Dough (Stephanie Plum, No. 2)', 'https://images.isbndb.com/covers/17/97/9780671001797.jpg'), - ('0316526835', 'Deep Water Passage: A Spiritual Journey At Midlife', 'https://images.isbndb.com/covers/68/38/9780316526838.jpg'), - ('0385307888', 'I Could Do Anything, If I Only Knew What It Was', 'https://images.isbndb.com/covers/78/88/9780385307888.jpg'), - ('039447970X', 'Centennial', 'https://images.isbndb.com/covers/97/05/9780394479705.jpg'), - ('0425161285', 'Turtle Moon', 'https://images.isbndb.com/covers/12/89/9780425161289.jpg'), - ('0156904365', 'Till We Have Faces: A Myth Retold', 'https://images.isbndb.com/covers/43/60/9780156904360.jpg'), - ('0743448421', 'Alphabetical Hook-Up List A-J', 'https://images.isbndb.com/covers/84/20/9780743448420.jpg'), - ('014034991X', 'The Westing Game', 'https://images.isbndb.com/covers/99/17/9780140349917.jpg'), - ('0440414539', 'Lily''s Crossing', 'https://images.isbndb.com/covers/45/37/9780440414537.jpg'), - ('006106498X', 'Wishbone Classic #11 Adv Of Tom Sawyer', 'https://images.isbndb.com/covers/49/82/9780061064982.jpg'), - ('0553274295', 'Where The Red Fern Grows', 'https://images.isbndb.com/covers/42/95/9780553274295.jpg'), - ('0590457799', 'Knitwits', 'https://images.isbndb.com/covers/77/98/9780590457798.jpg'), - ('0689800843', 'Running Out Of Time', 'https://images.isbndb.com/covers/08/49/9780689800849.jpg'), - ('0590457233', 'You Be The Jury: Courtroom IV', 'https://images.isbndb.com/covers/72/31/9780590457231.jpg'), - ('0689311001', 'Baby-Sitting Is A Dangerous Job', 'https://images.isbndb.com/covers/10/00/9780689311000.jpg'), - ('0590926675', 'So Far From Home: The Diary Of Mary Driscoll, An Irish Mill Girl, Lowell, Massachusetts, 1847 (Dear America Series)', 'https://images.isbndb.com/covers/66/76/9780590926676.jpg'), - ('0671794019', 'Jennifer Murdley''s Toad (Magic Shop Books)', 'https://images.isbndb.com/covers/40/19/9780671794019.jpg'), - ('0440403332', 'EVERYONE ELSE''S PARENTS SAID YES', 'https://images.isbndb.com/covers/33/33/9780440403333.jpg'), - ('0440948991', 'The Luckiest Girl (Young Love)', 'https://images.isbndb.com/covers/89/95/9780440948995.jpg'), - ('0689849176', 'Just Ella', 'https://images.isbndb.com/covers/91/76/9780689849176.jpg'), - ('1586480103', 'My War', 'https://images.isbndb.com/covers/01/03/9781586480103.jpg'), - ('1570282021', 'The Secrets Of Tae Kwon Do', 'https://images.isbndb.com/covers/20/27/9781570282027.jpg'), - ('0877950938', 'Star Child: A Novel', 'https://images.isbndb.com/covers/09/36/9780877950936.jpg'), - ('0743490398', 'The Ultimate Weight Solution Food Guide', 'https://images.isbndb.com/covers/03/99/9780743490399.jpg'), - ('0451524667', 'Animal Farm (Signet Classics)', 'https://images.isbndb.com/covers/46/69/9780451524669.jpg'), - ('0446600253', 'Bless Me, Ultima', 'https://images.isbndb.com/covers/02/55/9780446600255.jpg'), - ('0345386744', 'The Talismans Of Shannara (The Heritage Of Shannara)', 'https://images.isbndb.com/covers/67/48/9780345386748.jpg'), - ('0965894355', 'Chic & Slim Encore: More About How French Women Dress Chic Stay Slim -- And How You Can Too!', 'https://images.isbndb.com/covers/43/57/9780965894357.jpg'), - ('0671039857', 'The End Of The Rainbow (Hudson Family, Book 4)', 'https://images.isbndb.com/covers/98/51/9780671039851.jpg'), - ('0671039830', 'Eye Of The Storm (Hudson Family, Book 3)', 'https://images.isbndb.com/covers/98/37/9780671039837.jpg'), - ('0671007696', 'Lightning Strikes (Hudson Family, Book 2)', 'https://images.isbndb.com/covers/76/90/9780671007690.jpg'), - ('067100767X', 'Rain (Hudson Family, Book 1', 'https://images.isbndb.com/covers/76/76/9780671007676.jpg'), - ('0140063838', 'Clinging To The Wreckage: A Part Of Life', 'https://images.isbndb.com/covers/38/37/9780140063837.jpg'), - ('0207169519', 'New And Selected Poems (A & R Modern Poets)', 'https://images.isbndb.com/covers/95/19/9780207169519.jpg'), - ('0684870819', 'Chocolate For A Teen''s Soul: Life-changing Stories For Young Women About Growing Wise And Growing Strong', 'https://images.isbndb.com/covers/08/16/9780684870816.jpg'), - ('1558748040', 'Chicken Soup For The Teenage Soul Letters - Letters Of Life, Love And Learning (Chicken Soup For The Teenage Soul)', 'https://images.isbndb.com/covers/80/40/9781558748040.jpg'), - ('0425132986', 'Far And Away', 'https://images.isbndb.com/covers/29/82/9780425132982.jpg'), - ('0439053862', 'A Coal Miner''s Bride: The Diary Of Anetka Kaminska', 'https://images.isbndb.com/covers/38/60/9780439053860.jpg'), - ('0743403614', 'Orphans (Orphans Series)', 'https://images.isbndb.com/covers/36/10/9780743403610.jpg'), - ('013029442X', 'Cities And Privatization: Prospects For The New Century', 'https://images.isbndb.com/covers/44/25/9780130294425.jpg'), - ('0843925027', 'Maniac', 'https://images.isbndb.com/covers/50/29/9780843925029.jpg'), - ('0756400953', 'Jaran (The Jaran, Book 1)', 'https://images.isbndb.com/covers/09/58/9780756400958.jpg'), - ('1559210869', 'East Wind: West Wind (Oriental Novels Of Pearl S. Buck)', 'https://images.isbndb.com/covers/08/67/9781559210867.jpg'), - ('0886779960', 'Sword And Sorceress XVIII', 'https://images.isbndb.com/covers/99/62/9780886779962.jpg'), - ('033042095X', 'Rat Race: AND To The Hilt', 'https://images.isbndb.com/covers/09/52/9780330420952.jpg'), - ('0789716399', 'Easy Internet', 'https://images.isbndb.com/covers/63/92/9780789716392.jpg'), - ('0821767240', 'An Unwilling Bride (Zebra Historical Romance)', 'https://images.isbndb.com/covers/72/45/9780821767245.jpg'), - ('0515135356', 'Crime School', 'https://images.isbndb.com/covers/53/50/9780515135350.jpg'), - ('0316782262', 'All He Ever Wanted', 'https://images.isbndb.com/covers/22/65/9780316782265.jpg'), - ('0525945210', 'A Man Named Dave', 'https://images.isbndb.com/covers/52/15/9780525945215.jpg'), - ('0786869054', 'The Sunday Wife', 'https://images.isbndb.com/covers/90/53/9780786869053.jpg'), - ('0446530387', 'Stone Kiss (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/03/85/9780446530385.jpg'), - ('0688177743', 'Keeping Faith: A Novel', 'https://images.isbndb.com/covers/77/44/9780688177744.jpg'), - ('0375413634', 'The Emperor Of Ocean Park', 'https://images.isbndb.com/covers/36/36/9780375413636.jpg'), - ('0425147762', 'Red Azalea', 'https://images.isbndb.com/covers/77/64/9780425147764.jpg'), - ('0399149295', 'Blood Orchid (Holly Barker Novels)', 'https://images.isbndb.com/covers/92/90/9780399149290.jpg'), - ('0066212693', 'Good Girls Gone Bad', 'https://images.isbndb.com/covers/26/92/9780066212692.jpg'), - ('0670031062', 'Must Love Dogs: A Novel', 'https://images.isbndb.com/covers/10/61/9780670031061.jpg'), - ('0679439382', 'The Little Friend', 'https://images.isbndb.com/covers/93/87/9780679439387.jpg'), - ('1565123417', 'A Private Sorcery', 'https://images.isbndb.com/covers/34/10/9781565123410.jpg'), - ('0451179188', 'The Throat', 'https://images.isbndb.com/covers/91/80/9780451179180.jpg'), - ('0786867612', 'Nothing To Fall Back On: The Life And Times Of A Perpetual Optimist', 'https://images.isbndb.com/covers/76/15/9780786867615.jpg'), - ('0061098035', 'Burn Factor', 'https://images.isbndb.com/covers/80/31/9780061098031.jpg'), - ('0553572105', 'Fly Away Home', 'https://images.isbndb.com/covers/21/00/9780553572100.jpg'), - ('051512950X', 'Straw Men', 'https://images.isbndb.com/covers/95/02/9780515129502.jpg'), - ('0312926456', 'Unanswered Cries: A True Story Of Friends, Neighbors, And Murder In A Small Town', 'https://images.isbndb.com/covers/64/58/9780312926458.jpg'), - ('0786889837', 'Buried Evidence', 'https://images.isbndb.com/covers/98/39/9780786889839.jpg'), - ('0804108749', 'Saint Maybe', 'https://images.isbndb.com/covers/87/44/9780804108744.jpg'), - ('0425121631', 'Rules Of Prey', 'https://images.isbndb.com/covers/16/34/9780425121634.jpg'), - ('0804109052', 'Undue Influence', 'https://images.isbndb.com/covers/90/55/9780804109055.jpg'), - ('0345402308', 'The Fourth Procedure: A Novel Of Medical Suspense', 'https://images.isbndb.com/covers/23/01/9780345402301.jpg'), - ('0451168690', 'Mystery', 'https://images.isbndb.com/covers/86/96/9780451168696.jpg'), - ('067945960X', 'Monster: A Novel', 'https://images.isbndb.com/covers/96/06/9780679459606.jpg'), - ('0316693235', 'Violets Are Blue ~ Detective Alex Cross Series', 'https://images.isbndb.com/covers/32/33/9780316693233.jpg'), - ('0451188616', 'The Heir (Coulter Historical Romance)', 'https://images.isbndb.com/covers/86/18/9780451188618.jpg'), - ('050552208X', 'A Darker Dream (Love Spell Romance)', 'https://images.isbndb.com/covers/20/85/9780505522085.jpg'), - ('0380820846', 'Romancing Mister Bridgerton (Bridgerton Series, Book 4)', 'https://images.isbndb.com/covers/08/49/9780380820849.jpg'), - ('0425153975', 'The Eyes Of Darkness', 'https://images.isbndb.com/covers/39/70/9780425153970.jpg'), - ('0425119653', 'Mutation', 'https://images.isbndb.com/covers/96/55/9780425119655.jpg'), - ('0553579983', 'And Then You Die', 'https://images.isbndb.com/covers/99/87/9780553579987.jpg'), - ('0399149325', 'Portrait Of A Killer: Jack The Ripper -- Case Closed', 'https://images.isbndb.com/covers/93/20/9780399149320.jpg'), - ('042515971X', 'Blown Away', 'https://images.isbndb.com/covers/97/12/9780425159712.jpg'), - ('1583144269', 'Smitten (Arabesque)', 'https://images.isbndb.com/covers/42/68/9781583144268.jpg'), - ('0446610852', 'The Kissing Game', 'https://images.isbndb.com/covers/08/58/9780446610858.jpg'), - ('0821771426', 'Say You''re Mine', 'https://images.isbndb.com/covers/14/26/9780821771426.jpg'), - ('0671744577', 'Eternity', 'https://images.isbndb.com/covers/45/71/9780671744571.jpg'), - ('0373261047', 'Real Murders (Aurora Teagarden Mysteries, Book 1)', 'https://images.isbndb.com/covers/10/48/9780373261048.jpg'), - ('0743233468', 'Bare Bones : A Novel', 'https://images.isbndb.com/covers/34/60/9780743233460.jpg'), - ('0804114986', 'The Bonesetter''s Daughter', 'https://images.isbndb.com/covers/49/81/9780804114981.jpg'), - ('0380808072', 'First Lady', 'https://images.isbndb.com/covers/80/76/9780380808076.jpg'), - ('067179356X', 'In The Name Of Love: Ann Rule''s Crime Files Volume 4', 'https://images.isbndb.com/covers/35/62/9780671793562.jpg'), - ('0743410505', 'Deadly Decisions', 'https://images.isbndb.com/covers/05/02/9780743410502.jpg'), - ('0380750848', 'A Heart So Wild', 'https://images.isbndb.com/covers/08/49/9780380750849.jpg'), - ('0425151883', 'Blush', 'https://images.isbndb.com/covers/18/84/9780425151884.jpg'), - ('0446611808', 'Envy', 'https://images.isbndb.com/covers/18/00/9780446611800.jpg'), - ('0310220033', 'Vanished (J. D. Stanton Mystery Series #2)', 'https://images.isbndb.com/covers/00/39/9780310220039.jpg'), - ('0553583360', 'Slightly Shady', 'https://images.isbndb.com/covers/33/66/9780553583366.jpg'), - ('0446600709', 'Assumed Identity', 'https://images.isbndb.com/covers/07/05/9780446600705.jpg'), - ('0671019929', 'Esau', 'https://images.isbndb.com/covers/99/21/9780671019921.jpg'), - ('044915002X', 'Shameless', 'https://images.isbndb.com/covers/00/23/9780449150023.jpg'), - ('0425178579', 'Betrayal In Death', 'https://images.isbndb.com/covers/85/77/9780425178577.jpg'), - ('0449907953', 'The Age Of Grief', 'https://images.isbndb.com/covers/79/55/9780449907955.jpg'), - ('1551669498', 'Girls Night (Stp - Mira)', 'https://images.isbndb.com/covers/94/96/9781551669496.jpg'), - ('038081448X', 'The Rambunctious Lady Royston', 'https://images.isbndb.com/covers/44/80/9780380814480.jpg'), - ('0140069135', 'The Name Of Annabel Lee', 'https://images.isbndb.com/covers/91/36/9780140069136.jpg'), - ('0696214563', 'Making A Home: Housekeeping For Real Life', 'https://images.isbndb.com/covers/45/61/9780696214561.jpg'), - ('044808919X', 'The Disappearing Floor (Hardy Boys, Book 19)', 'https://images.isbndb.com/covers/91/95/9780448089195.jpg'), - ('0448089165', 'A Figure In Hiding (The Hardy Boys #16)', 'https://images.isbndb.com/covers/91/64/9780448089164.jpg'), - ('0451626079', 'The Upanishads: Breath Of The Eternal (Mentor Series)', 'https://images.isbndb.com/covers/60/73/9780451626073.jpg'), - ('1563831236', 'Gifts In A Jar: Bars & Brownies (Gifts In A Jar, 3)', 'https://images.isbndb.com/covers/12/32/9781563831232.jpg'), - ('156383121X', 'Gifts In A Jar: Cookies (Gifts In A Jar, 1)', 'https://images.isbndb.com/covers/12/18/9781563831218.jpg'), - ('0028620666', 'Betty Crocker''s Best Of Baking: More Than 350 Of America''s Favorite Recipes', 'https://images.isbndb.com/covers/06/64/9780028620664.jpg'), - ('1892051176', 'Guinness World Records (2003) (Guinness Book Of Records)', 'https://images.isbndb.com/covers/11/72/9781892051172.jpg'), - ('0877201358', 'LA Gran Aventura De Alejandro (Spanish Edition)', 'https://images.isbndb.com/covers/13/59/9780877201359.jpg'), - ('0844273252', 'Guide To Spanish Idioms', 'https://images.isbndb.com/covers/32/59/9780844273259.jpg'), - ('0201741644', 'Macromedia Director 8.5 Shockwave Studio For 3D: Training From The Source (Authorized)', 'https://images.isbndb.com/covers/16/43/9780201741643.jpg'), - ('1559362324', 'Anna In The Tropics', 'https://images.isbndb.com/covers/23/20/9781559362320.jpg'), - ('0345430786', 'Manifold: Space', 'https://images.isbndb.com/covers/07/86/9780345430786.jpg'), - ('0316710571', 'Sam''s Letters To Jennifer', 'https://images.isbndb.com/covers/05/72/9780316710572.jpg'), - ('0060555513', 'The Last Goodbye', 'https://images.isbndb.com/covers/55/11/9780060555511.jpg'), - ('0892967544', 'First Degree', 'https://images.isbndb.com/covers/75/44/9780892967544.jpg'), - ('0399148655', 'The Delicate Storm (Marian Wood Book)', 'https://images.isbndb.com/covers/86/51/9780399148651.jpg'), - ('0312319142', 'Paranoia', 'https://images.isbndb.com/covers/91/44/9780312319144.jpg'), - ('0345457587', 'Shadow Account (Frey, Stephen)', 'https://images.isbndb.com/covers/75/85/9780345457585.jpg'), - ('0345453417', 'Cry No More', 'https://images.isbndb.com/covers/34/19/9780345453419.jpg'), - ('0060555653', 'The Polished Hoe', 'https://images.isbndb.com/covers/56/58/9780060555658.jpg'), - ('0316591122', 'Fear Itself: A Fearless Jones Novel', 'https://images.isbndb.com/covers/11/26/9780316591126.jpg'), - ('0312319517', 'Avenger', 'https://images.isbndb.com/covers/95/19/9780312319519.jpg'), - ('0380978830', 'Death Trap: An Alaska Mystery (Alaska Mysteries)', 'https://images.isbndb.com/covers/88/30/9780380978830.jpg'), - ('0385336209', 'Blinded (Dr. Alan Gregory Novels)', 'https://images.isbndb.com/covers/62/08/9780385336208.jpg'), - ('0553802526', 'The Killing Hour', 'https://images.isbndb.com/covers/25/28/9780553802528.jpg'), - ('0446530689', 'The Protector', 'https://images.isbndb.com/covers/06/82/9780446530682.jpg'), - ('0399150854', 'Blacklist: A V.I. Warshawski Novel', 'https://images.isbndb.com/covers/08/52/9780399150852.jpg'), - ('0060083956', 'Mr. Paradise: A Novel', 'https://images.isbndb.com/covers/39/53/9780060083953.jpg'), - ('0446531421', 'Still Life With Crows (Pendergast, Book 4)', 'https://images.isbndb.com/covers/14/29/9780446531429.jpg'), - ('0312306814', 'A Grave Denied: A Kate Shugak Novel', 'https://images.isbndb.com/covers/68/16/9780312306816.jpg'), - ('0312271786', 'Off The Chart: A Novel', 'https://images.isbndb.com/covers/17/87/9780312271787.jpg'), - ('0399150870', 'Stone Cold: A Jesse Stone Novel', 'https://images.isbndb.com/covers/08/76/9780399150876.jpg'), - ('0399149821', 'Dirty Work', 'https://images.isbndb.com/covers/98/25/9780399149825.jpg'), - ('0553802496', 'Odd Thomas: A Novel', 'https://images.isbndb.com/covers/24/98/9780553802498.jpg'), - ('0345452577', 'The Conspiracy Club', 'https://images.isbndb.com/covers/25/73/9780345452573.jpg'), - ('1400041414', 'The Murder Room (Adam Dalgliesh Mystery Series #12)', 'https://images.isbndb.com/covers/14/11/9781400041411.jpg'), - ('0060193883', 'A Bloodhound To Die For (Jo Beth Sidden, No 6)', 'https://images.isbndb.com/covers/38/81/9780060193881.jpg'), - ('0743428684', 'Midnight Flight (Andrews, V. C.)', 'https://images.isbndb.com/covers/86/82/9780743428682.jpg'), - ('0525947655', 'A Perfect Day', 'https://images.isbndb.com/covers/76/53/9780525947653.jpg'), - ('0312316690', 'The Tristan Betrayal', 'https://images.isbndb.com/covers/66/93/9780312316693.jpg'), - ('0060005556', 'Last To Die (Grippando, James)', 'https://images.isbndb.com/covers/55/59/9780060005559.jpg'), - ('0312304269', 'Runaway Heart: A Novel', 'https://images.isbndb.com/covers/42/63/9780312304263.jpg'), - ('0399148760', 'Seizure', 'https://images.isbndb.com/covers/87/67/9780399148767.jpg'), - ('0316603287', 'The Lake House', 'https://images.isbndb.com/covers/32/87/9780316603287.jpg'), - ('0399145664', 'Family Honor', 'https://images.isbndb.com/covers/56/67/9780399145667.jpg'), - ('0425178102', 'Big Trouble', 'https://images.isbndb.com/covers/81/02/9780425178102.jpg'), - ('0553580515', 'Passage', 'https://images.isbndb.com/covers/05/18/9780553580518.jpg'), - ('0749301015', 'MY LEFT FOOT.', 'https://images.isbndb.com/covers/10/19/9780749301019.jpg'), - ('0445204222', 'Wizard War', 'https://images.isbndb.com/covers/42/25/9780445204225.jpg'), - ('1930252501', 'The Brink', 'https://images.isbndb.com/covers/25/09/9781930252509.jpg'), - ('0515123293', 'The Last Heroes: A Men At War Novel', 'https://images.isbndb.com/covers/32/96/9780515123296.jpg'), - ('0312985207', 'Deep Black (Stephen Coonts'' Deep Black, Book 1)', 'https://images.isbndb.com/covers/52/02/9780312985202.jpg'), - ('0449220354', 'Final Approach', 'https://images.isbndb.com/covers/03/51/9780449220351.jpg'), - ('0312981260', 'Temple', 'https://images.isbndb.com/covers/12/66/9780312981266.jpg'), - ('067104754X', 'Purgatory Ridge (Cork O''Connor)', 'https://images.isbndb.com/covers/75/42/9780671047542.jpg'), - ('0385144741', 'Memento', 'https://images.isbndb.com/covers/47/42/9780385144742.jpg'), - ('0385144342', 'Mark Coffin, U.S.S.: A Novel Of Capitol Hill', 'https://images.isbndb.com/covers/43/46/9780385144346.jpg'), - ('0595175686', 'The Bridge', 'https://images.isbndb.com/covers/56/80/9780595175680.jpg'), - ('1594082316', 'New England Interlude', 'https://images.isbndb.com/covers/23/13/9781594082313.jpg'), - ('1410777057', 'Hidden Agendas', 'https://images.isbndb.com/covers/70/58/9781410777058.jpg'), - ('0374172471', 'Homesickness: A Novel', 'https://images.isbndb.com/covers/24/73/9780374172473.jpg'), - ('2070394867', 'Kitchen', 'https://images.isbndb.com/covers/48/69/9782070394869.jpg'), - ('0609807420', 'The Business Plan For The Body', 'https://images.isbndb.com/covers/74/22/9780609807422.jpg'), - ('0425122956', 'Majestic', 'https://images.isbndb.com/covers/29/52/9780425122952.jpg'), - ('0451208765', 'Sleep No More', 'https://images.isbndb.com/covers/87/67/9780451208767.jpg'), - ('0618129022', 'The Lord Of The Rings (Movie Art Cover)', 'https://images.isbndb.com/covers/90/27/9780618129027.jpg'), - ('0345423402', 'A Kiss Of Shadows (Meredith Gentry, Book 1)', 'https://images.isbndb.com/covers/34/05/9780345423405.jpg'), - ('0345423429', 'A Caress Of Twilight (Meredith Gentry, Book 2)', 'https://images.isbndb.com/covers/34/29/9780345423429.jpg'), - ('034544356X', 'Seduced By Moonlight (Meredith Gentry, Book 3)', 'https://images.isbndb.com/covers/35/64/9780345443564.jpg'), - ('0743454146', 'The Footprints Of God', 'https://images.isbndb.com/covers/41/48/9780743454148.jpg'), - ('0451210840', 'The Gunslinger (The Dark Tower, Book 1)', 'https://images.isbndb.com/covers/08/45/9780451210845.jpg'), - ('0425152367', 'Private Altars: A Novel', 'https://images.isbndb.com/covers/23/62/9780425152362.jpg'), - ('0553374435', 'Conscious Breathing: Breathwork For Health, Stress Release, And Personal Mastery', 'https://images.isbndb.com/covers/44/38/9780553374438.jpg'), - ('0553106643', 'Fear Nothing', 'https://images.isbndb.com/covers/66/40/9780553106640.jpg'), - ('0553057707', 'Brain Building: Exercising Yourself Smarter', 'https://images.isbndb.com/covers/77/06/9780553057706.jpg'), - ('1853263508', 'Dictionary Of Anagrams', 'https://images.isbndb.com/covers/35/07/9781853263507.jpg'), - ('1567185711', 'Liquid Dreams Of Vampires', 'https://images.isbndb.com/covers/57/13/9781567185713.jpg'), - ('1560251476', 'In The Shadow Of The Vampire: Reflections From The World Of Anne Rice', 'https://images.isbndb.com/covers/14/77/9781560251477.jpg'), - ('0449223795', 'The Homing', 'https://images.isbndb.com/covers/37/96/9780449223796.jpg'), - ('1568846533', 'MS DOS 6.2 Simplified', 'https://images.isbndb.com/covers/65/38/9781568846538.jpg'), - ('0312144075', 'The Samurai''s Garden: A Novel', 'https://images.isbndb.com/covers/40/74/9780312144074.jpg'), - ('0684869233', 'The Burning Times: A Novel Of Medieval France', 'https://images.isbndb.com/covers/92/30/9780684869230.jpg'), - ('0156007479', 'Slammerkin', 'https://images.isbndb.com/covers/74/74/9780156007474.jpg'), - ('0061031844', 'The Book Of Shadows', 'https://images.isbndb.com/covers/18/47/9780061031847.jpg'), - ('0312267177', 'Catfish And Mandala: A Two-Wheeled Voyage Through The Landscape And Memory Of Vietnam', 'https://images.isbndb.com/covers/71/79/9780312267179.jpg'), - ('0345434943', 'Song Of The Exile (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/49/44/9780345434944.jpg'), - ('1860110886', 'Ireland', 'https://images.isbndb.com/covers/08/87/9781860110887.jpg'), - ('0875421849', 'Living Wicca: A Further Guide For The Solitary Practitioner (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/18/41/9780875421841.jpg'), - ('0786868619', 'Stolen Lives: Twenty Years In A Desert Jail (Oprah''s Book Club)', 'https://images.isbndb.com/covers/86/12/9780786868612.jpg'), - ('037550303X', 'The White Death: Tragedy And Heroism In An Avalanche Zone', 'https://images.isbndb.com/covers/30/30/9780375503030.jpg'), - ('0345442741', 'Welcome To The Great Mysterious (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/27/41/9780345442741.jpg'), - ('0970272707', 'The Birth Of Blue Satan: Featuring Blue Satan And Mrs. Kean (Blue Satan Mystery)', 'https://images.isbndb.com/covers/27/06/9780970272706.jpg'), - ('0399138439', 'Koontz: Three Complete Novels, Lightning, The Face Of Fear And The Vision', 'https://images.isbndb.com/covers/84/30/9780399138430.jpg'), - ('0130484717', 'Art Of The Leader', 'https://images.isbndb.com/covers/47/10/9780130484710.jpg'), - ('0452276365', 'Insomnia: 50 Essential Things To Do', 'https://images.isbndb.com/covers/63/69/9780452276369.jpg'), - ('0671723650', 'How To Win Friends & Influence People', 'https://images.isbndb.com/covers/36/51/9780671723651.jpg'), - ('0671733354', 'How To Stop Worrying And Start Living', 'https://images.isbndb.com/covers/33/53/9780671733353.jpg'), - ('0451206525', 'Dead Sleep', 'https://images.isbndb.com/covers/65/27/9780451206527.jpg'), - ('0140445943', 'The Earliest English Poems (Penguin Classics)', 'https://images.isbndb.com/covers/59/47/9780140445947.jpg'), - ('1557489297', 'Wait For The Morning (Heartsong Presents #194)', 'https://images.isbndb.com/covers/92/96/9781557489296.jpg'), - ('0553280430', 'The Tao Of Relationships: A Balancing Of Man And Woman', 'https://images.isbndb.com/covers/04/32/9780553280432.jpg'), - ('0451167317', 'The Dark Half', 'https://images.isbndb.com/covers/73/16/9780451167316.jpg'), - ('0821725998', 'Quest Of The Seventh Carrier', 'https://images.isbndb.com/covers/59/93/9780821725993.jpg'), - ('0590444646', 'Caddie Woodlawn', 'https://images.isbndb.com/covers/46/44/9780590444644.jpg'), - ('039951743X', 'The Pocket Dictionary Of Signing (Perigee)', 'https://images.isbndb.com/covers/74/33/9780399517433.jpg'), - ('0671517643', 'Little Women', 'https://images.isbndb.com/covers/76/49/9780671517649.jpg'), - ('155748919X', 'An Uncertain Heart (Great Lakes Series, Book 1) (Heartsong Presents #188)', 'https://images.isbndb.com/covers/91/97/9781557489197.jpg'), - ('1577480112', 'The Fruit Of Her Hands (Heartsong Presents #210)', 'https://images.isbndb.com/covers/01/12/9781577480112.jpg'), - ('0451457250', 'Stargate Sg-1', 'https://images.isbndb.com/covers/72/57/9780451457257.jpg'), - ('0394741838', 'Dragons Of Spring Dawning', 'https://images.isbndb.com/covers/18/33/9780394741833.jpg'), - ('0345428455', 'Vector Prime (Star Wars: The New Jedi Order, Book 1)', 'https://images.isbndb.com/covers/84/55/9780345428455.jpg'), - ('0671541749', 'Invasion: The Soldiers Of Fear (Star Trek: The Next Generation, No. 41)', 'https://images.isbndb.com/covers/17/43/9780671541743.jpg'), - ('0345314875', 'Requiem For A Ruler Of Worlds: (Alacrity FitzHugh And Hobart Floyt, No 1)', 'https://images.isbndb.com/covers/48/71/9780345314871.jpg'), - ('0140446109', 'On The Nature Of The Universe (Penguin Classics)', 'https://images.isbndb.com/covers/61/04/9780140446104.jpg'), - ('014044422X', 'The Complete Odes And Epodes: With The Centennial Hymn (Penguin Classics)', 'https://images.isbndb.com/covers/42/23/9780140444223.jpg'), - ('0140147683', 'The Arabs (Penguin History)', 'https://images.isbndb.com/covers/76/81/9780140147681.jpg'), - ('0452270294', 'Cosmic Wormholes: The Search For Interstellar Shortcuts', 'https://images.isbndb.com/covers/02/99/9780452270299.jpg'), - ('1560766263', 'Prince Of Lies (Forgotten Realms)', 'https://images.isbndb.com/covers/62/61/9781560766261.jpg'), - ('014011341X', 'The Second World War', 'https://images.isbndb.com/covers/34/19/9780140113419.jpg'), - ('0155026607', 'Twenty Questions: An Introduction To Philosophy', 'https://images.isbndb.com/covers/66/05/9780155026605.jpg'), - ('0312850247', 'The Trikon Deception', 'https://images.isbndb.com/covers/02/41/9780312850241.jpg'), - ('0786913886', 'The Silent Blade (Forgotten Realms: Paths Of Darkness, Book 1)', 'https://images.isbndb.com/covers/38/86/9780786913886.jpg'), - ('0766607208', 'Adventures Of Huckleberry Finn (Treasury Of Illustrated Classics)', 'https://images.isbndb.com/covers/72/00/9780766607200.jpg'), - ('1884820298', 'The A.D.D. And A.D.H.D. Diet! A Comprehensive Look At Contributing Factors And Natural Treatments For Symptoms Of Attention Deficit Disorder And Hyperactivity', 'https://images.isbndb.com/covers/02/98/9781884820298.jpg'), - ('014042346X', 'The Penguin Book Of Renaissance Verse: 1509-1659 (Penguin Classics)', 'https://images.isbndb.com/covers/34/64/9780140423464.jpg'), - ('0440133017', 'Cosmic Connection: An Extraterrestrial Perspective', 'https://images.isbndb.com/covers/30/18/9780440133018.jpg'), - ('0140587640', 'The Descent Of Alette (Poets, Penguin)', 'https://images.isbndb.com/covers/76/47/9780140587647.jpg'), - ('0399144706', 'River''s End', 'https://images.isbndb.com/covers/47/07/9780399144707.jpg'), - ('031285904X', 'The Parafaith War', 'https://images.isbndb.com/covers/90/46/9780312859046.jpg'), - ('0140444173', 'War And Peace (Penguin Classics)', 'https://images.isbndb.com/covers/41/79/9780140444179.jpg'), - ('0380769158', 'History''s Last Stand: The Last Gasps, Fatal Falls And Final Gambles Of Heroes, Despots And Civilizations', 'https://images.isbndb.com/covers/91/55/9780380769155.jpg'), - ('1560760478', 'Sojourn: The Dark Elf Trilogy, Part 3 (Forgotten Realms: The Legend Of Drizzt, Book III)', 'https://images.isbndb.com/covers/04/74/9781560760474.jpg'), - ('0880389052', 'Homeland (Forgotten Realms)', 'https://images.isbndb.com/covers/90/51/9780880389051.jpg'), - ('0880389206', 'Exile: Forgotten Realms (The Dark Elf Trilogy, Book 2)', 'https://images.isbndb.com/covers/92/04/9780880389204.jpg'), - ('0140193669', 'The Sorcerer''s Crossing: A Woman''s Journey (Compass)', 'https://images.isbndb.com/covers/36/64/9780140193664.jpg'), - ('0140194916', 'Deerdancer: The Shapeshifter Archetype In Story & In Trance (Arkana)', 'https://images.isbndb.com/covers/49/13/9780140194913.jpg'), - ('0140255109', 'Novel Without A Name', 'https://images.isbndb.com/covers/51/02/9780140255102.jpg'), - ('014070731X', 'Antony And Cleopatra (New Penguin Shakespeare)', 'https://images.isbndb.com/covers/73/11/9780140707311.jpg'), - ('0140445145', 'The Twilight Of The Idols And The Anti-Christ: Or How To Philosophize With A Hammer (Penguin Classics)', 'https://images.isbndb.com/covers/51/45/9780140445145.jpg'), - ('0452010845', 'The History Of Russia: Seventh Revised Edition (Meridian)', 'https://images.isbndb.com/covers/08/40/9780452010840.jpg'), - ('0140048162', 'Russian Short Stories, The Penguin Book Of', 'https://images.isbndb.com/covers/81/62/9780140048162.jpg'), - ('0140390537', 'Billy Budd And Other Stories (Penguin Classics)', 'https://images.isbndb.com/covers/05/37/9780140390537.jpg'), - ('0192713434', 'First Summer Year', 'https://images.isbndb.com/covers/34/38/9780192713438.jpg'), - ('0345396936', 'Cry To Heaven', 'https://images.isbndb.com/covers/69/38/9780345396938.jpg'), - ('0312261918', 'Let Me Whisper In Your Ear', 'https://images.isbndb.com/covers/19/17/9780312261917.jpg'), - ('014010870X', 'Life And Death In Shanghai', 'https://images.isbndb.com/covers/87/05/9780140108705.jpg'), - ('0671722840', 'Richard III (The New Folger Library)', 'https://images.isbndb.com/covers/28/45/9780671722845.jpg'), - ('0553233890', 'Pilgrim At Tinker Creek', 'https://images.isbndb.com/covers/38/96/9780553233896.jpg'), - ('0553346083', 'Somewhere Off The Coast Of Maine', 'https://images.isbndb.com/covers/60/84/9780553346084.jpg'), - ('0330306839', 'Holidays In Hell', 'https://images.isbndb.com/covers/68/36/9780330306836.jpg'), - ('0140181903', 'The Custom Of The Country (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/19/06/9780140181906.jpg'), - ('0786881275', 'The Postman (Il Postino)', 'https://images.isbndb.com/covers/12/77/9780786881277.jpg'), - ('0394587545', 'The Waterworks', 'https://images.isbndb.com/covers/75/47/9780394587547.jpg'), - ('0020519303', 'GREENHILLS OF AFRICA', 'https://images.isbndb.com/covers/93/00/9780020519300.jpg'), - ('0345315014', 'Union Street', 'https://images.isbndb.com/covers/50/14/9780345315014.jpg'), - ('059022638X', 'Dracula Doesn''t Drink Lemonade (The Adventures Of The Bailey School Kids, #16)', 'https://images.isbndb.com/covers/63/87/9780590226387.jpg'), - ('0590466178', 'Night Of The Living Dummy (Goosebumps, No 7)', 'https://images.isbndb.com/covers/61/72/9780590466172.jpg'), - ('0006514588', 'Three Wise Men', 'https://images.isbndb.com/covers/45/89/9780006514589.jpg'), - ('1578660432', 'How Not To Be A Messie: The Ultimate Guide For The Neatness-Challenged', 'https://images.isbndb.com/covers/04/38/9781578660438.jpg'), - ('0761116230', 'McGee & Stuckey''s Bountiful Container: Create Container Gardens Of Vegetables, Herbs, Fruits, And Edible Flowers', 'https://images.isbndb.com/covers/62/33/9780761116233.jpg'), - ('1580174493', 'The City Gardener''s Handbook: The Definitive Guide To Small Space Gardening', 'https://images.isbndb.com/covers/44/97/9781580174497.jpg'), - ('0380819600', 'Take Me, I''m Yours', 'https://images.isbndb.com/covers/96/07/9780380819607.jpg'), - ('0312980159', 'Fast Women', 'https://images.isbndb.com/covers/01/53/9780312980153.jpg'), - ('0821771116', 'Falling For April (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/12/9780821771112.jpg'), - ('0451403967', 'Devoted (Topaz Historical Romances)', 'https://images.isbndb.com/covers/39/64/9780451403964.jpg'), - ('0140277749', 'The Bust Guide To The New Girl Order', 'https://images.isbndb.com/covers/77/46/9780140277746.jpg'), - ('1580050158', 'Cunt: A Declaration Of Independence (Live Girls)', 'https://images.isbndb.com/covers/01/59/9781580050159.jpg'), - ('0451524195', 'Sense And Sensibility (Signet Classic)', 'https://images.isbndb.com/covers/41/95/9780451524195.jpg'), - ('0821768093', 'Fly Me To The Moon (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/80/99/9780821768099.jpg'), - ('0440214866', 'Hot Schemes', 'https://images.isbndb.com/covers/48/61/9780440214861.jpg'), - ('0440210046', 'Hot Secret', 'https://images.isbndb.com/covers/00/47/9780440210047.jpg'), - ('0440214858', 'Hot Money (Molly Dewitt Romantic Mystery)', 'https://images.isbndb.com/covers/48/54/9780440214854.jpg'), - ('0380818957', 'First Comes Love', 'https://images.isbndb.com/covers/89/52/9780380818952.jpg'), - ('0451191889', 'Beguiled', 'https://images.isbndb.com/covers/18/85/9780451191885.jpg'), - ('0345423658', 'The Wolf King (Legends Of The Wolves, Book 3)', 'https://images.isbndb.com/covers/36/58/9780345423658.jpg'), - ('0743410262', 'Educating Caroline (Sonnet Books)', 'https://images.isbndb.com/covers/02/67/9780743410267.jpg'), - ('0515119660', 'The Light Bearer', 'https://images.isbndb.com/covers/96/64/9780515119664.jpg'), - ('0312979851', 'True North', 'https://images.isbndb.com/covers/98/50/9780312979850.jpg'), - ('0312979886', 'Female Intelligence', 'https://images.isbndb.com/covers/98/81/9780312979881.jpg'), - ('0446671339', 'The Quiet Room: A Journey Out Of The Torment Of Madness', 'https://images.isbndb.com/covers/13/30/9780446671330.jpg'), - ('0425173631', 'Witness In Death', 'https://images.isbndb.com/covers/36/33/9780425173633.jpg'), - ('0451524748', 'Paradise Lost And Paradise Regained (Signet Classics)', 'https://images.isbndb.com/covers/47/44/9780451524744.jpg'), - ('0553212451', 'The Jungle (Bantam Classics)', 'https://images.isbndb.com/covers/24/57/9780553212457.jpg'), - ('0451191137', 'Anthem', 'https://images.isbndb.com/covers/11/37/9780451191137.jpg'), - ('0553299611', 'Lila: An Inquiry Into Morals', 'https://images.isbndb.com/covers/96/18/9780553299618.jpg'), - ('0679454489', 'Merrick (Vampire Chronicles)', 'https://images.isbndb.com/covers/44/89/9780679454489.jpg'), - ('0679454470', 'The Vampire Armand : The Vampire Chronicles (Rice, Anne, Vampire Chronicles)', 'https://images.isbndb.com/covers/44/72/9780679454472.jpg'), - ('0425176304', 'Judgment In Death', 'https://images.isbndb.com/covers/63/06/9780425176306.jpg'), - ('0684824485', 'Babylon Revisited: And Other Stories', 'https://images.isbndb.com/covers/44/82/9780684824482.jpg'), - ('0684801558', 'The Beautiful And Damned', 'https://images.isbndb.com/covers/15/51/9780684801551.jpg'), - ('0440225639', 'The Complete Book Of Food Counts- 5th Edition', 'https://images.isbndb.com/covers/56/38/9780440225638.jpg'), - ('0811212475', 'The Crack-Up', 'https://images.isbndb.com/covers/24/72/9780811212472.jpg'), - ('0553584782', 'The Pill Book 10th Edition: New And Revised (Pill Book (Mass Market Paper))', 'https://images.isbndb.com/covers/47/83/9780553584783.jpg'), - ('0805417761', 'Experiencing God Day-By-Day: A Devotional', 'https://images.isbndb.com/covers/77/60/9780805417760.jpg'), - ('087542791X', 'To Ride A Silver Broomstick: New Generation Witchcraft', 'https://images.isbndb.com/covers/79/11/9780875427911.jpg'), - ('015696158X', 'When God Was A Woman', 'https://images.isbndb.com/covers/15/85/9780156961585.jpg'), - ('0679720200', 'The Stranger', 'https://images.isbndb.com/covers/02/01/9780679720201.jpg'), - ('1852302089', 'How To Use Homeopathy (Health Workbooks)', 'https://images.isbndb.com/covers/20/85/9781852302085.jpg'), - ('0140092838', 'Adventures In The Alaskan Skin Trade (Contemporary American Fiction)', 'https://images.isbndb.com/covers/28/37/9780140092837.jpg'), - ('0679424474', 'Better Than Sex:: Confessions Of A Political Junkie (Gonzo Papers)', 'https://images.isbndb.com/covers/44/75/9780679424475.jpg'), - ('0373250371', 'Losing It (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/03/70/9780373250370.jpg'), - ('0312983271', 'Full House (Janet Evanovich''s Full Series, No 1)', 'https://images.isbndb.com/covers/32/77/9780312983277.jpg'), - ('0060507845', 'A Promising Man (and About Time, Too)', 'https://images.isbndb.com/covers/78/48/9780060507848.jpg'), - ('0345295684', 'Dragonflight', 'https://images.isbndb.com/covers/56/82/9780345295682.jpg'), - ('0312204353', 'Soul Of A Citizen: Living With Conviction In A Cynical Time', 'https://images.isbndb.com/covers/43/58/9780312204358.jpg'), - ('1551669285', 'The Soul Catcher (Maggie O''Dell Novels)', 'https://images.isbndb.com/covers/92/81/9781551669281.jpg'), - ('0446670111', 'Einstein''s Dreams', 'https://images.isbndb.com/covers/01/11/9780446670111.jpg'), - ('0020545509', 'The Daughter Of Time', 'https://images.isbndb.com/covers/55/07/9780020545507.jpg'), - ('0385468490', 'Free', 'https://images.isbndb.com/covers/84/97/9780385468497.jpg'), - ('0312979096', 'Now You See Me', 'https://images.isbndb.com/covers/90/96/9780312979096.jpg'), - ('0385313861', 'Going Native', 'https://images.isbndb.com/covers/38/65/9780385313865.jpg'), - ('0323023924', 'Nursing Interventions Classification (NIC), 4e', 'https://images.isbndb.com/covers/39/24/9780323023924.jpg'), - ('3257232993', 'Liebesfluchten (Diogenes Taschenbuch)', 'https://images.isbndb.com/covers/29/98/9783257232998.jpg'), - ('3499141639', 'Das Lächeln Am Fuße Der Leiter', 'https://images.isbndb.com/covers/16/38/9783499141638.jpg'), - ('0702217921', 'Miss Peabody''s Inheritance', 'https://images.isbndb.com/covers/79/20/9780702217920.jpg'), - ('037328019X', 'The Forest Prime Evil (A Stuart Winter Mystery)', 'https://images.isbndb.com/covers/01/93/9780373280193.jpg'), - ('1557735840', 'Error In Judgement', 'https://images.isbndb.com/covers/58/43/9781557735843.jpg'), - ('0515111341', 'Last Laugh (A Garth Ryland Mystery)', 'https://images.isbndb.com/covers/13/47/9780515111347.jpg'), - ('0373242190', 'Family Kind Of Wedding (That Special Woman/Forever Family) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/21/91/9780373242191.jpg'), - ('067163156X', 'TO DIE IN BEVERLY HILLS', 'https://images.isbndb.com/covers/15/67/9780671631567.jpg'), - ('0380541718', 'Luck Runs Out (Peter Shandy Mysteries)', 'https://images.isbndb.com/covers/17/13/9780380541713.jpg'), - ('0749300663', 'Coming Of Age', 'https://images.isbndb.com/covers/06/61/9780749300661.jpg'), - ('0821221817', 'The National Parks: A Postcard Folio Book', 'https://images.isbndb.com/covers/18/15/9780821221815.jpg'), - ('0684146010', 'Finally I''m A Doctor', 'https://images.isbndb.com/covers/60/10/9780684146010.jpg'), - ('0441007163', 'V. I.: Viral Intelligence', 'https://images.isbndb.com/covers/71/65/9780441007165.jpg'), - ('0345391829', 'Life, The Universe And Everything (Hitchhiker''s Trilogy)', 'https://images.isbndb.com/covers/18/27/9780345391827.jpg'), - ('0345253884', 'Roadmarks', 'https://images.isbndb.com/covers/38/80/9780345253880.jpg'), - ('0609603086', 'The Hammer Of Eden', 'https://images.isbndb.com/covers/30/86/9780609603086.jpg'), - ('0553282816', 'The Blooding', 'https://images.isbndb.com/covers/28/18/9780553282818.jpg'), - ('0553284789', 'F Is For Fugitive (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/47/82/9780553284782.jpg'), - ('0553279556', 'E Is For Evidence (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/95/59/9780553279559.jpg'), - ('0812580141', 'The Kingless Land (Band Of Four, Vol. 1)', 'https://images.isbndb.com/covers/01/43/9780812580143.jpg'), - ('0374281947', 'Personal Injuries (Scott Turow)', 'https://images.isbndb.com/covers/19/46/9780374281946.jpg'), - ('0345420438', 'The Tailor Of Panama', 'https://images.isbndb.com/covers/04/35/9780345420435.jpg'), - ('0689300549', 'The Farthest Shore', 'https://images.isbndb.com/covers/05/47/9780689300547.jpg'), - ('0345384911', 'Crystal Line', 'https://images.isbndb.com/covers/49/11/9780345384911.jpg'), - ('0345332997', 'A Man Rides Through (Mordant''s Need, Vol. II)', 'https://images.isbndb.com/covers/29/98/9780345332998.jpg'), - ('0451194101', 'Tanner On Ice (An Evan Tanner Mystery)', 'https://images.isbndb.com/covers/41/07/9780451194107.jpg'), - ('0451191013', 'The Regulators', 'https://images.isbndb.com/covers/10/14/9780451191014.jpg'), - ('0553564943', 'Magician: Apprentice', 'https://images.isbndb.com/covers/49/45/9780553564945.jpg'), - ('0886772370', 'The Spell Sword (Darkover: Against The Terran: The First Age)', 'https://images.isbndb.com/covers/23/76/9780886772376.jpg'), - ('0671637185', 'The RAGMAN''S SON', 'https://images.isbndb.com/covers/71/87/9780671637187.jpg'), - ('0140154787', 'Temptation (Penguin Graphic Fiction)', 'https://images.isbndb.com/covers/47/88/9780140154788.jpg'), - ('0751514403', 'Margin Of The Bulls', 'https://images.isbndb.com/covers/44/07/9780751514407.jpg'), - ('2070361381', 'La Cousine Bette', 'https://images.isbndb.com/covers/13/80/9782070361380.jpg'), - ('2070381161', 'C''est Beau Une Ville La Nuit (Blues)', 'https://images.isbndb.com/covers/11/66/9782070381166.jpg'), - ('2070380599', 'Au Bonheur Des Ogres', 'https://images.isbndb.com/covers/05/96/9782070380596.jpg'), - ('2070368823', 'Un Barrage Contre Le Pacifique', 'https://images.isbndb.com/covers/88/22/9782070368822.jpg'), - ('2020477815', 'Le Pingouin', 'https://images.isbndb.com/covers/78/19/9782020477819.jpg'), - ('2253151165', 'L''Inceste', 'https://images.isbndb.com/covers/11/66/9782253151166.jpg'), - ('284205461X', 'Soleil En Solde', 'https://images.isbndb.com/covers/46/18/9782842054618.jpg'), - ('2277220620', 'Zone érogène', 'https://images.isbndb.com/covers/06/26/9782277220626.jpg'), - ('038073124X', 'His Name Is Ron', 'https://images.isbndb.com/covers/12/44/9780380731244.jpg'), - ('0002713276', 'Bell'' Antonio', 'https://images.isbndb.com/covers/32/76/9780002713276.jpg'), - ('0375725849', 'Perfume: The Story Of A Murderer', 'https://images.isbndb.com/covers/58/45/9780375725845.jpg'), - ('0345318587', 'THE HOBBIT', 'https://images.isbndb.com/covers/85/89/9780345318589.jpg'), - ('0345340973', 'Lisa Maria''s Guide For The Perplexed (Red Dress Ink)', 'https://images.isbndb.com/covers/09/79/9780345340979.jpg'), - ('0440106443', 'The Black Marble', 'https://images.isbndb.com/covers/64/49/9780440106449.jpg'), - ('0515104531', 'Physical Evidence', 'https://images.isbndb.com/covers/45/30/9780515104530.jpg'), - ('0553238450', 'The Delta Star', 'https://images.isbndb.com/covers/84/57/9780553238457.jpg'), - ('0671701231', 'The Anastasia Syndrome And Other Stories', 'https://images.isbndb.com/covers/12/39/9780671701239.jpg'), - ('0553290266', 'The Golden Orange', 'https://images.isbndb.com/covers/02/64/9780553290264.jpg'), - ('038072541X', 'Hit Man (John Keller Mysteries)', 'https://images.isbndb.com/covers/54/10/9780380725410.jpg'), - ('0449204553', 'Walk Across America', 'https://images.isbndb.com/covers/45/59/9780449204559.jpg'), - ('0446605409', 'Plum Island', 'https://images.isbndb.com/covers/54/03/9780446605403.jpg'), - ('0061009504', 'Shinju', 'https://images.isbndb.com/covers/95/01/9780061009501.jpg'), - ('0142002399', 'The Shape Of Water', 'https://images.isbndb.com/covers/23/91/9780142002391.jpg'), - ('0330328743', 'Butcher Boy', 'https://images.isbndb.com/covers/87/46/9780330328746.jpg'), - ('2070376990', 'Dix Heures Et Demie Du Soir En été', 'https://images.isbndb.com/covers/69/95/9782070376995.jpg'), - ('2264034882', 'La Conjuration Des Imbéciles', 'https://images.isbndb.com/covers/48/85/9782264034885.jpg'), - ('0786711256', 'Sherlock Holmes And The Giant Rat Of Sumatra', 'https://images.isbndb.com/covers/12/53/9780786711253.jpg'), - ('0446605956', 'The Spirit Caller (Molly Bearpaw Mysteries)', 'https://images.isbndb.com/covers/59/53/9780446605953.jpg'), - ('1864484098', 'Antonio S And The Mystery Of Theodore Guzman Pb (A Little Ark Book)', 'https://images.isbndb.com/covers/40/90/9781864484090.jpg'), - ('0399136479', 'Childhood', 'https://images.isbndb.com/covers/64/74/9780399136474.jpg'), - ('0679776818', 'Birdsong: A Novel Of Love And War', 'https://images.isbndb.com/covers/68/19/9780679776819.jpg'), - ('0812508424', 'Shadows Linger: A Novel Of The Black Company (The Second Chronicle Of The Black Company)', 'https://images.isbndb.com/covers/84/20/9780812508420.jpg'), - ('0812555333', 'She Is The Darkness: Book Two Of Glittering Stone: A Novel Of The Black Company', 'https://images.isbndb.com/covers/53/32/9780812555332.jpg'), - ('0312931123', 'Cat Magic', 'https://images.isbndb.com/covers/11/24/9780312931124.jpg'), - ('1569711240', 'Bettie Page: Queen Of Hearts', 'https://images.isbndb.com/covers/12/48/9781569711248.jpg'), - ('0441007880', 'Scion''s Lady (Gil Trilogy, Book 2)', 'https://images.isbndb.com/covers/78/82/9780441007882.jpg'), - ('0441007090', 'Lady In Gil (Gil Trilogy, Book 1)', 'https://images.isbndb.com/covers/70/97/9780441007097.jpg'), - ('0812540034', 'Illumination', 'https://images.isbndb.com/covers/00/31/9780812540031.jpg'), - ('0451458842', 'The Glasswrights'' Journeyman', 'https://images.isbndb.com/covers/88/41/9780451458841.jpg'), - ('0345382455', 'High Queen', 'https://images.isbndb.com/covers/24/50/9780345382450.jpg'), - ('0446610771', 'Warchild', 'https://images.isbndb.com/covers/07/73/9780446610773.jpg'), - ('0812520076', 'Dark Seeker', 'https://images.isbndb.com/covers/00/71/9780812520071.jpg'), - ('0679416773', 'Ripley Under Water', 'https://images.isbndb.com/covers/67/77/9780679416777.jpg'), - ('0812555171', 'Expiration Date', 'https://images.isbndb.com/covers/51/72/9780812555172.jpg'), - ('0963784617', 'Quietus', 'https://images.isbndb.com/covers/46/12/9780963784612.jpg'), - ('0440224713', 'Total Recall', 'https://images.isbndb.com/covers/47/16/9780440224716.jpg'), - ('0425096440', '13 Fatal Errors Managers Make And How You Can Avoid Them', 'https://images.isbndb.com/covers/64/44/9780425096444.jpg'), - ('0553280414', 'A Separate Peace', 'https://images.isbndb.com/covers/04/18/9780553280418.jpg'), - ('0373484232', 'The Stanislaski Sisters: Natasha And Rachel (Silhouette Romance 2-novel Book: Taming Natasha, Falling For Rachel)', 'https://images.isbndb.com/covers/42/32/9780373484232.jpg'), - ('0064410137', 'The Slippery Slope (A Series Of Unfortunate Events, Book 10)', 'https://images.isbndb.com/covers/01/37/9780064410137.jpg'), - ('0373291108', 'Lady Of The Keep (Harlequin Historical, No 510).', 'https://images.isbndb.com/covers/11/06/9780373291106.jpg'), - ('1402710658', 'Classic Whodunits', 'https://images.isbndb.com/covers/06/50/9781402710650.jpg'), - ('0446600377', 'A Prince Among Men', 'https://images.isbndb.com/covers/03/78/9780446600378.jpg'), - ('0451410610', 'The Ice Child', 'https://images.isbndb.com/covers/06/10/9780451410610.jpg'), - ('0345440765', 'The World Below (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/07/61/9780345440761.jpg'), - ('0836251822', 'I''m Not Anti-Business, I''m Anti-Idiot [Dilbert]', 'https://images.isbndb.com/covers/18/21/9780836251821.jpg'), - ('0763616087', 'Stoner And Spaz', 'https://images.isbndb.com/covers/60/83/9780763616083.jpg'), - ('3453209613', 'Per Anhalter Durch Die Galaxis, 5 Romane In 1 Bd.', 'https://images.isbndb.com/covers/96/19/9783453209619.jpg'), - ('0517706814', 'The Law Of Love', 'https://images.isbndb.com/covers/68/17/9780517706817.jpg'), - ('0590044931', 'Ramona The Pest', 'https://images.isbndb.com/covers/49/36/9780590044936.jpg'), - ('0590630938', 'The Dragonslayer''s Apprentice (Point Fantasy)', 'https://images.isbndb.com/covers/09/31/9780590630931.jpg'), - ('0439087961', 'Riding Freedom', 'https://images.isbndb.com/covers/79/64/9780439087964.jpg'), - ('0141303786', 'The Further Adventures Of Hank The Cowdog #2', 'https://images.isbndb.com/covers/37/89/9780141303789.jpg'), - ('069401110X', 'The Secret Garden (Book And Charm)', 'https://images.isbndb.com/covers/11/00/9780694011100.jpg'), - ('0786842431', 'I Was Dan Marino (Super Bowl Switch #3)', 'https://images.isbndb.com/covers/24/38/9780786842438.jpg'), - ('068981934X', 'Home Run Hero (Scrappers)', 'https://images.isbndb.com/covers/93/46/9780689819346.jpg'), - ('0671737295', 'My Teacher Is An Alien', 'https://images.isbndb.com/covers/72/90/9780671737290.jpg'), - ('081673416X', 'Karen''s Perfect Match (Boyfriend Club)', 'https://images.isbndb.com/covers/41/60/9780816734160.jpg'), - ('0439323738', 'Lucy''s E-journal', 'https://images.isbndb.com/covers/37/34/9780439323734.jpg'), - ('0440496039', 'The Wolves Of Willoughby Chase (The Wolves Chronicles)', 'https://images.isbndb.com/covers/60/38/9780440496038.jpg'), - ('0689710682', 'Mrs. Frisby And The Rats Of Nimh (Aladdin Fantasy)', 'https://images.isbndb.com/covers/06/81/9780689710681.jpg'), - ('0590462318', 'The Toilet Paper Tigers', 'https://images.isbndb.com/covers/23/10/9780590462310.jpg'), - ('0394846656', 'The Mystery Of The Nervous Lion (The Three Investigators Mystery Series)', 'https://images.isbndb.com/covers/66/51/9780394846651.jpg'), - ('0590458078', 'Camp Murphy', 'https://images.isbndb.com/covers/80/78/9780590458078.jpg'), - ('0152099905', 'The Borrowers', 'https://images.isbndb.com/covers/99/09/9780152099909.jpg'), - ('0671745670', 'Space Brat (Space Brat 1)', 'https://images.isbndb.com/covers/56/77/9780671745677.jpg'), - ('157765692X', 'Last Of The Mohicans (Great Illustrated Classics)', 'https://images.isbndb.com/covers/69/20/9781577656920.jpg'), - ('1577658043', 'The Time Machine (Great Illustrated Classics (Abdo))', 'https://images.isbndb.com/covers/80/47/9781577658047.jpg'), - ('0382243579', 'Up A Road Slowly', 'https://images.isbndb.com/covers/35/78/9780382243578.jpg'), - ('0590523465', 'Welcome Home, Mary Anne (Baby-Sitters Club Friends Forever #11)', 'https://images.isbndb.com/covers/34/62/9780590523462.jpg'), - ('0140319301', 'The Wild Children', 'https://images.isbndb.com/covers/93/09/9780140319309.jpg'), - ('0816728798', 'Book Of Dragons Digest (Watermill Classics)', 'https://images.isbndb.com/covers/87/94/9780816728794.jpg'), - ('0440472091', 'Ramona The Pest', 'https://images.isbndb.com/covers/20/94/9780440472094.jpg'), - ('0439136369', 'Harry Potter And The Prisoner Of Azkaban', 'https://images.isbndb.com/covers/63/65/9780439136365.jpg'), - ('0688160867', 'Sideways Stories From Wayside School', 'https://images.isbndb.com/covers/08/69/9780688160869.jpg'), - ('0590673181', 'Deadly Experiments Of Dr. Eeek (Give Yourself Goosebumps)', 'https://images.isbndb.com/covers/31/81/9780590673181.jpg'), - ('0380712369', 'Strider', 'https://images.isbndb.com/covers/23/66/9780380712366.jpg'), - ('0679804021', 'Treasure Island (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/40/24/9780679804024.jpg'), - ('0671798340', 'The Search For Snout', 'https://images.isbndb.com/covers/83/45/9780671798345.jpg'), - ('0020418809', 'Caddie Woodlawn', 'https://images.isbndb.com/covers/88/01/9780020418801.jpg'), - ('0449701778', 'Baby-Sitting Is A Dangerous Job', 'https://images.isbndb.com/covers/17/75/9780449701775.jpg'), - ('0821730002', 'The Young Astronauts', 'https://images.isbndb.com/covers/00/03/9780821730003.jpg'), - ('014034893X', 'Roll Of Thunder, Hear My Cry', 'https://images.isbndb.com/covers/89/34/9780140348934.jpg'), - ('0590483463', 'Revenge Of The Lawn Gnomes (Goosebumps #34)', 'https://images.isbndb.com/covers/34/69/9780590483469.jpg'), - ('0385498799', 'Bee Season: A Novel', 'https://images.isbndb.com/covers/87/91/9780385498791.jpg'), - ('0140366660', 'The Secret Garden', 'https://images.isbndb.com/covers/66/62/9780140366662.jpg'), - ('0060278250', 'Abhorsen (The Abhorsen Trilogy)', 'https://images.isbndb.com/covers/82/50/9780060278250.jpg'), - ('0060278234', 'Lirael: Daughter Of The Clayr', 'https://images.isbndb.com/covers/82/36/9780060278236.jpg'), - ('0064471837', 'Sabriel (The Abhorsen Trilogy)', 'https://images.isbndb.com/covers/18/31/9780064471831.jpg'), - ('0345366239', 'The Eight', 'https://images.isbndb.com/covers/62/38/9780345366238.jpg'), - ('0330262130', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/21/32/9780330262132.jpg'), - ('0416052029', 'The Dream Catcher (A Magnet Book)', 'https://images.isbndb.com/covers/20/22/9780416052022.jpg'), - ('0689867034', 'How Not To Spend Your Senior Year', 'https://images.isbndb.com/covers/70/33/9780689867033.jpg'), - ('0786885971', 'Don''t Sweat The Small Stuff For Teens: Simple Ways To Keep Your Cool In Stressful Times (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/59/78/9780786885978.jpg'), - ('0689870027', 'The Princess Of Pop (Truth Or Dare)', 'https://images.isbndb.com/covers/00/26/9780689870026.jpg'), - ('0590769588', 'You''re Invited To Mary-Kate & Ashley''s Christmas Party', 'https://images.isbndb.com/covers/95/87/9780590769587.jpg'), - ('0786817909', 'Cheetah Girls Supa-Dupa Sparkle: Books 5 - 8 (Woff, There It Is - It''s Raining Benjamins - Dorinda''s Secret - Growl Power)', 'https://images.isbndb.com/covers/79/00/9780786817900.jpg'), - ('0060595094', 'NY MIN MM (New York Minute)', 'https://images.isbndb.com/covers/50/98/9780060595098.jpg'), - ('0684832178', 'Chocolate For A Woman''s Soul: 77 Stories To Feed Your Spirit And Warm Your Heart', 'https://images.isbndb.com/covers/21/73/9780684832173.jpg'), - ('0380807343', 'Coraline', 'https://images.isbndb.com/covers/73/45/9780380807345.jpg'), - ('0689859910', 'Mates, Dates, And Sleepover Secrets', 'https://images.isbndb.com/covers/99/15/9780689859915.jpg'), - ('0957881436', 'Being A Happy Teenager', 'https://images.isbndb.com/covers/14/33/9780957881433.jpg'), - ('0140341773', 'Great Puffin Joke Directory (Puffin Story Books)', 'https://images.isbndb.com/covers/17/75/9780140341775.jpg'), - ('0553577123', 'The Diary Of A Young Girl: The Definitive Edition', 'https://images.isbndb.com/covers/71/29/9780553577129.jpg'), - ('0307222519', 'Girl Talk Activity Book', 'https://images.isbndb.com/covers/25/10/9780307222510.jpg'), - ('0671021184', 'Spying Eyes (Sabrina The Teenage Witch, Book 14)', 'https://images.isbndb.com/covers/11/84/9780671021184.jpg'), - ('0064473627', 'Knocked Out By My Nunga-Nungas: Further, Further Confessions Of Georgia Nicolson (Confessions Of Georgia Nicolson, Book 3)', 'https://images.isbndb.com/covers/36/20/9780064473620.jpg'), - ('0061008761', 'An Irresistible Impulse', 'https://images.isbndb.com/covers/87/64/9780061008764.jpg'), - ('0684870827', 'Teens Can Make It Happen: Nine Steps For Success', 'https://images.isbndb.com/covers/08/23/9780684870823.jpg'), - ('0375727019', 'The Elementary Particles', 'https://images.isbndb.com/covers/70/16/9780375727016.jpg'), - ('042518689X', 'The Weedless Widow (Antique Lover''s Mysteries (Prime Crime))', 'https://images.isbndb.com/covers/68/93/9780425186893.jpg'), - ('0380752891', 'Man From Mundania', 'https://images.isbndb.com/covers/28/98/9780380752898.jpg'), - ('0807848735', 'A Tree Accurst: Bobby McMillon And Stories Of Frankie Silver', 'https://images.isbndb.com/covers/87/39/9780807848739.jpg'), - ('0813116791', 'Singing Family Of The Cumberlands', 'https://images.isbndb.com/covers/67/92/9780813116792.jpg'), - ('0394744543', 'Love Is Hell', 'https://images.isbndb.com/covers/45/44/9780394744544.jpg'), - ('0385333501', 'Welcome To The Monkey House: Stories', 'https://images.isbndb.com/covers/35/04/9780385333504.jpg'), - ('0316925195', 'Brief Interviews With Hideous Men', 'https://images.isbndb.com/covers/51/98/9780316925198.jpg'), - ('0425176053', 'Come Together', 'https://images.isbndb.com/covers/60/54/9780425176054.jpg'), - ('0330301497', 'Madwomans Underclothes Essays And Occasion (Picador Books)', 'https://images.isbndb.com/covers/14/97/9780330301497.jpg'), - ('0297778536', 'Further Letters', 'https://images.isbndb.com/covers/85/30/9780297778530.jpg'), - ('0812969812', 'Blessings: A Novel', 'https://images.isbndb.com/covers/98/18/9780812969818.jpg'), - ('0306803984', 'The Lincoln Reader', 'https://images.isbndb.com/covers/39/87/9780306803987.jpg'), - ('0451163524', 'The Drawing Of The Three (The Dark Tower, Book 2)', 'https://images.isbndb.com/covers/35/23/9780451163523.jpg'), - ('0451194861', 'Wizard And Glass (The Dark Tower, Book 4)', 'https://images.isbndb.com/covers/48/62/9780451194862.jpg'), - ('0852073259', 'The Game Of Life And How To Play It', 'https://images.isbndb.com/covers/32/54/9780852073254.jpg'), - ('0452280621', 'Beloved', 'https://images.isbndb.com/covers/06/25/9780452280625.jpg'), - ('0195042239', 'Prince Among Slaves: The True Story Of An African Prince Sold Into Slavery In The American South', 'https://images.isbndb.com/covers/22/38/9780195042238.jpg'), - ('0140187375', 'Cannery Row (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/73/73/9780140187373.jpg'), - ('0451166582', 'The Eyes Of The Dragon', 'https://images.isbndb.com/covers/65/86/9780451166586.jpg'), - ('0671019732', 'A Lady Of The West', 'https://images.isbndb.com/covers/97/30/9780671019730.jpg'), - ('0671026011', 'The Empty Chair (Lincoln Rhyme Novels)', 'https://images.isbndb.com/covers/60/11/9780671026011.jpg'), - ('0231120621', 'Invisible Light', 'https://images.isbndb.com/covers/06/23/9780231120623.jpg'), - ('1895555590', 'Unseen', 'https://images.isbndb.com/covers/55/92/9781895555592.jpg'), - ('0888992424', 'The Maestro: A Novel', 'https://images.isbndb.com/covers/24/20/9780888992420.jpg'), - ('088899124X', 'Easy Avenue', 'https://images.isbndb.com/covers/12/49/9780888991249.jpg'), - ('0006479650', 'Thirteenth Child', 'https://images.isbndb.com/covers/96/59/9780006479659.jpg'), - ('0888991703', 'Two Moons In August', 'https://images.isbndb.com/covers/17/06/9780888991706.jpg'), - ('088899088X', 'Up To Low', 'https://images.isbndb.com/covers/08/84/9780888990884.jpg'), - ('0006479383', 'There Will Be Wolves', 'https://images.isbndb.com/covers/93/83/9780006479383.jpg'), - ('0330375253', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/52/52/9780330375252.jpg'), - ('0373834993', 'Somebody''S Dad', 'https://images.isbndb.com/covers/49/90/9780373834990.jpg'), - ('055337933X', 'Fierce Invalids Home From Hot Climates', 'https://images.isbndb.com/covers/93/34/9780553379334.jpg'), - ('0002245663', 'Forms Of Devotion: Stories And Pictures', 'https://images.isbndb.com/covers/56/61/9780002245661.jpg'), - ('0385503822', 'The Summons', 'https://images.isbndb.com/covers/38/22/9780385503822.jpg'), - ('0609804138', 'The Sweet Potato Queens'' Book Of Love', 'https://images.isbndb.com/covers/41/31/9780609804131.jpg'), - ('0345439104', 'Drowning Ruth: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/91/09/9780345439109.jpg'), - ('0316852570', 'The Hope', 'https://images.isbndb.com/covers/25/79/9780316852579.jpg'), - ('0061031410', 'Courting Trouble', 'https://images.isbndb.com/covers/14/10/9780061031410.jpg'), - ('0375757597', 'Normal Girl: A Novel', 'https://images.isbndb.com/covers/75/94/9780375757594.jpg'), - ('0140071083', 'The Haunting Of Hill House', 'https://images.isbndb.com/covers/10/85/9780140071085.jpg'), - ('0345248228', 'Dying Inside', 'https://images.isbndb.com/covers/82/20/9780345248220.jpg'), - ('0374423415', 'Flame-Colored Taffeta', 'https://images.isbndb.com/covers/34/14/9780374423414.jpg'), - ('0743439791', 'The Night I Disappeared', 'https://images.isbndb.com/covers/97/94/9780743439794.jpg'), - ('0192833669', 'Frankenstein Or The Modern Prometheus: The 1818 Text (Oxford World''s Classics)', 'https://images.isbndb.com/covers/36/62/9780192833662.jpg'), - ('0812548221', 'Of Tangible Ghosts (Ghost Trilogy)', 'https://images.isbndb.com/covers/82/28/9780812548228.jpg'), - ('0380784165', 'Scent Of Magic (Five Senses, Book 3)', 'https://images.isbndb.com/covers/41/65/9780380784165.jpg'), - ('0684848406', 'The Secret Book Of Grazia Dei Rossi', 'https://images.isbndb.com/covers/84/02/9780684848402.jpg'), - ('0446677698', 'One Virgin Too Many', 'https://images.isbndb.com/covers/76/91/9780446677691.jpg'), - ('0451192990', 'Absolution By Murder (A Sister Fidelma Mystery) (Mystery Of Ancient Ireland)', 'https://images.isbndb.com/covers/29/98/9780451192998.jpg'), - ('0425105695', 'The Moving Finger: A Miss Marple Murder Mystery', 'https://images.isbndb.com/covers/56/96/9780425105696.jpg'), - ('0441003524', 'Tarot Tales', 'https://images.isbndb.com/covers/35/25/9780441003525.jpg'), - ('0451455835', 'Merlin''s Harp', 'https://images.isbndb.com/covers/58/33/9780451455833.jpg'), - ('0679742565', 'The Game: A Novel', 'https://images.isbndb.com/covers/25/62/9780679742562.jpg'), - ('0553575384', 'To Say Nothing Of The Dog', 'https://images.isbndb.com/covers/53/85/9780553575385.jpg'), - ('0449214176', 'Bluebeard''s Egg And Other Stories', 'https://images.isbndb.com/covers/41/76/9780449214176.jpg'), - ('0061031070', 'Moving Target', 'https://images.isbndb.com/covers/10/76/9780061031076.jpg'), - ('0425180638', 'The Last Precinct (Scarpetta)', 'https://images.isbndb.com/covers/06/31/9780425180631.jpg'), - ('1853260045', 'Great Expectations (Wordsworth Classics)', 'https://images.isbndb.com/covers/00/49/9781853260049.jpg'), - ('2266051326', 'Dragon Rouge', 'https://images.isbndb.com/covers/13/23/9782266051323.jpg'), - ('0752860178', 'The White Mare (Dalriada, Book 1)', 'https://images.isbndb.com/covers/01/76/9780752860176.jpg'), - ('0441009239', 'Living Dead In Dallas -- 2002 Publication', 'https://images.isbndb.com/covers/92/37/9780441009237.jpg'), - ('0441008534', 'Dead Until Dark (Southern Vampire Mysteries, Book 1)', 'https://images.isbndb.com/covers/85/37/9780441008537.jpg'), - ('0312924801', 'September', 'https://images.isbndb.com/covers/48/05/9780312924805.jpg'), - ('1857970446', 'Constant Friends', 'https://images.isbndb.com/covers/04/49/9781857970449.jpg'), - ('0786702427', 'Angel: A Novel', 'https://images.isbndb.com/covers/24/28/9780786702428.jpg'), - ('0590477420', 'The Scarecrow Walks At Midnight (Goosebumps, No. 20)', 'https://images.isbndb.com/covers/74/20/9780590477420.jpg'), - ('0590477447', 'Ghost Beach (Goosebumps)', 'https://images.isbndb.com/covers/74/44/9780590477444.jpg'), - ('0440222435', 'Loving Becky', 'https://images.isbndb.com/covers/24/39/9780440222439.jpg'), - ('0451454537', 'Grunts', 'https://images.isbndb.com/covers/45/39/9780451454539.jpg'), - ('0316555525', 'Provenance', 'https://images.isbndb.com/covers/55/24/9780316555524.jpg'), - ('0688101194', 'The Manson Curse', 'https://images.isbndb.com/covers/11/90/9780688101190.jpg'), - ('0241123968', 'Loving Attitudes', 'https://images.isbndb.com/covers/39/66/9780241123966.jpg'), - ('0060112719', 'The Azanian Assignment', 'https://images.isbndb.com/covers/27/14/9780060112714.jpg'), - ('0671739085', 'Bloody Waters', 'https://images.isbndb.com/covers/90/89/9780671739089.jpg'), - ('0821756044', 'Sweet Sorcery', 'https://images.isbndb.com/covers/60/41/9780821756041.jpg'), - ('0786004827', 'Met By Moonlight', 'https://images.isbndb.com/covers/48/29/9780786004829.jpg'), - ('0751516678', 'Hester Dark', 'https://images.isbndb.com/covers/66/78/9780751516678.jpg'), - ('0297828991', 'Mr. Foreigner', 'https://images.isbndb.com/covers/89/90/9780297828990.jpg'), - ('0061013722', 'The Clairvoyant', 'https://images.isbndb.com/covers/37/20/9780061013720.jpg'), - ('0451163540', 'Triple (Signet)', 'https://images.isbndb.com/covers/35/47/9780451163547.jpg'), - ('0735201994', 'Peterman Rides Again: Adventures Continue With The Real "J. Peterman" Through Life & The Catalog Business', 'https://images.isbndb.com/covers/19/96/9780735201996.jpg'), - ('1414011458', 'No More Bobs', 'https://images.isbndb.com/covers/14/55/9781414011455.jpg'), - ('1564029654', 'Owl Babies', 'https://images.isbndb.com/covers/96/52/9781564029652.jpg'), - ('0307121259', 'I Am A Bunny (Golden Sturdy Book)', 'https://images.isbndb.com/covers/12/57/9780307121257.jpg'), - ('0671493183', 'Doggies (Boynton Board Books (Simon & Schuster))', 'https://images.isbndb.com/covers/31/89/9780671493189.jpg'), - ('0679882812', 'Dr. Seuss''s ABC: An Amazing Alphabet Book!', 'https://images.isbndb.com/covers/28/17/9780679882817.jpg'), - ('067144901X', 'Moo Baa La La La', 'https://images.isbndb.com/covers/90/18/9780671449018.jpg'), - ('0399215921', 'The Very Busy Spider', 'https://images.isbndb.com/covers/59/26/9780399215926.jpg'), - ('0394900189', 'Are You My Mother? (Beginner Books(R))', 'https://images.isbndb.com/covers/01/86/9780394900186.jpg'), - ('0394800206', 'Go, Dog. Go! (Beginner Books)', 'https://images.isbndb.com/covers/02/02/9780394800202.jpg'), - ('039515023X', 'Curious George', 'https://images.isbndb.com/covers/02/38/9780395150238.jpg'), - ('0953881024', 'Alice In Wonderland And The World Trade Center Disaster', 'https://images.isbndb.com/covers/10/24/9780953881024.jpg'), - ('1852860596', 'Star Trek Giant 3: Final Frontier Pb (Star Trek Giant Novel)', 'https://images.isbndb.com/covers/05/92/9781852860592.jpg'), - ('0521426219', 'Macbeth (Cambridge School Shakespeare)', 'https://images.isbndb.com/covers/62/13/9780521426213.jpg'), - ('0859344304', 'MS Access 97 One Step At A Time (BP)', 'https://images.isbndb.com/covers/43/02/9780859344302.jpg'), - ('0671787551', 'Reunion (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/75/54/9780671787554.jpg'), - ('0671869108', 'Shadows On The Sun (Star Trek)', 'https://images.isbndb.com/covers/91/06/9780671869106.jpg'), - ('0812516001', 'The Inheritor', 'https://images.isbndb.com/covers/60/05/9780812516005.jpg'), - ('0394821998', 'Phantom Tollbooth', 'https://images.isbndb.com/covers/19/93/9780394821993.jpg'), - ('0449208796', 'The High Cost Of Living', 'https://images.isbndb.com/covers/87/93/9780449208793.jpg'), - ('0393318451', 'The Universal Donor (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/84/56/9780393318456.jpg'), - ('0192835181', 'Washington Square (Oxford World''s Classics)', 'https://images.isbndb.com/covers/51/85/9780192835185.jpg'), - ('3518115758', 'Samthase Und Odradek: Versuche (edition Suhrkamp)', 'https://images.isbndb.com/covers/57/56/9783518115756.jpg'), - ('3442432073', 'Verrückt In Alabama: Roman', 'https://images.isbndb.com/covers/20/73/9783442432073.jpg'), - ('1853261076', 'Railway Children (Wordsworth Children''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/10/77/9781853261077.jpg'), - ('0786706953', 'The Mammoth Book Of Heroic And Outrageous Women (Mammoth Books)', 'https://images.isbndb.com/covers/69/52/9780786706952.jpg'), - ('0345443233', 'Blind Run', 'https://images.isbndb.com/covers/32/36/9780345443236.jpg'), - ('0688149626', 'High Crimes', 'https://images.isbndb.com/covers/96/28/9780688149628.jpg'), - ('0399145923', 'Carolina Moon', 'https://images.isbndb.com/covers/59/26/9780399145926.jpg'), - ('0316693251', 'Roses Are Red (Alex Cross)', 'https://images.isbndb.com/covers/32/57/9780316693257.jpg'), - ('0373706936', 'The Hiding Place (Women Who Dare, Book 25) (Harlequin Superromance, No 693)', 'https://images.isbndb.com/covers/69/38/9780373706938.jpg'), - ('0804107432', 'Dying Young', 'https://images.isbndb.com/covers/74/33/9780804107433.jpg'), - ('2070373622', 'La Vie Devant Soi', 'https://images.isbndb.com/covers/36/28/9782070373628.jpg'), - ('0375503994', 'Shrub: The Short But Happy Political Life Of George W. Bush', 'https://images.isbndb.com/covers/39/93/9780375503993.jpg'), - ('0688062229', 'Encyclopedia Brown''s Book Of Wacky Cars (Encyclopedia Brown Books)', 'https://images.isbndb.com/covers/22/24/9780688062224.jpg'), - ('0937295078', 'Meet Molly (American Girls Collection)', 'https://images.isbndb.com/covers/50/76/9780937295076.jpg'), - ('3540587101', 'Multimedia Database Systems. Issues And Research Directions (Artificial Intelligence)', 'https://images.isbndb.com/covers/71/01/9783540587101.jpg'), - ('1565922093', 'Electronic Publishing On CD-ROM : Authoring, Development, And Distribution', 'https://images.isbndb.com/covers/20/99/9781565922099.jpg'), - ('1565925653', 'Photoshop In A Nutshell: A Desktop Quick Reference (In A Nutshell (O''Reilly))', 'https://images.isbndb.com/covers/56/56/9781565925656.jpg'), - ('068416325X', 'The Great Gatsby', 'https://images.isbndb.com/covers/32/53/9780684163253.jpg'), - ('0843105550', 'The Gnome From Nome (Serendipity)', 'https://images.isbndb.com/covers/55/51/9780843105551.jpg'), - ('0672324253', 'Sams Teach Yourself C++ In 10 Minutes (2nd Edition)', 'https://images.isbndb.com/covers/42/53/9780672324253.jpg'), - ('3442722497', 'Schnee, Der Auf Zedern Fällt', 'https://images.isbndb.com/covers/24/95/9783442722495.jpg'), - ('3442545544', 'Mein Deutsches Dschungelbuch', 'https://images.isbndb.com/covers/55/44/9783442545544.jpg'), - ('3257225334', 'Der Mann Meiner Träume: Der Mann Meiner Traume', 'https://images.isbndb.com/covers/53/34/9783257225334.jpg'), - ('3257206089', 'Lalu Lalula, Arme Kleine Ophelia: Eine Unheimliche Liebesgeschichte', 'https://images.isbndb.com/covers/60/81/9783257206081.jpg'), - ('0312423187', 'Dancer: A Novel', 'https://images.isbndb.com/covers/31/86/9780312423186.jpg'), - ('3746614007', 'Die Päpstin', 'https://images.isbndb.com/covers/40/07/9783746614007.jpg'), - ('3548253652', 'Schöner Schein Trügt', 'https://images.isbndb.com/covers/36/57/9783548253657.jpg'), - ('0140063331', 'The Only Daughter', 'https://images.isbndb.com/covers/33/32/9780140063332.jpg'), - ('0679735909', 'Possession', 'https://images.isbndb.com/covers/59/08/9780679735908.jpg'), - ('0380716542', 'Birds Of Prey: A Novel Of Suspense', 'https://images.isbndb.com/covers/65/48/9780380716548.jpg'), - ('0380792486', 'Outlaw Mountain (Joanna Brady Mysteries, Book 7)', 'https://images.isbndb.com/covers/24/81/9780380792481.jpg'), - ('0670881767', 'Twas The Night Before: A Christmas Allegory', 'https://images.isbndb.com/covers/17/65/9780670881765.jpg'), - ('0451523377', 'Dracula (Signet Classics)', 'https://images.isbndb.com/covers/33/72/9780451523372.jpg'), - ('0452281423', 'The Claiming Of Sleeping Beauty', 'https://images.isbndb.com/covers/14/24/9780452281424.jpg'), - ('0553581651', 'Die Upon A Kiss (Benjamin January, Book 5)', 'https://images.isbndb.com/covers/16/52/9780553581652.jpg'), - ('2290314889', 'La Vénus D''ille', 'https://images.isbndb.com/covers/48/83/9782290314883.jpg'), - ('0380709139', 'Ellen Tebbits', 'https://images.isbndb.com/covers/91/37/9780380709137.jpg'), - ('0679775439', 'The Wind-Up Bird Chronicle: A Novel', 'https://images.isbndb.com/covers/54/30/9780679775430.jpg'), - ('0345272609', 'The Return Of The King', 'https://images.isbndb.com/covers/26/07/9780345272607.jpg'), - ('0345272595', 'The Two Towers', 'https://images.isbndb.com/covers/25/91/9780345272591.jpg'), - ('0345272587', 'Fellowship Of The Ring', 'https://images.isbndb.com/covers/25/84/9780345272584.jpg'), - ('3499433265', 'Amoklauf Im Audimax', 'https://images.isbndb.com/covers/32/69/9783499433269.jpg'), - ('3871340758', 'Der Betroffenheitskult. Eine Politische Sittengeschichte', 'https://images.isbndb.com/covers/07/58/9783871340758.jpg'), - ('3498063618', 'Ich Aber Bin Hier Geboren', 'https://images.isbndb.com/covers/36/10/9783498063610.jpg'), - ('3423122080', 'Die Falschmünzer / Tagebuch Der Falschmünzer: Roman', 'https://images.isbndb.com/covers/20/85/9783423122085.jpg'), - ('3548252443', 'Chocolat', 'https://images.isbndb.com/covers/24/45/9783548252445.jpg'), - ('3404242327', 'Nach Dem Großen Feuer', 'https://images.isbndb.com/covers/23/20/9783404242320.jpg'), - ('3746680174', 'Der Spion Gottes: Kurt Gerstein - Ein SS-Offizier Im Widerstand?', 'https://images.isbndb.com/covers/01/70/9783746680170.jpg'), - ('3596215226', 'Schachnovelle', 'https://images.isbndb.com/covers/52/25/9783596215225.jpg'), - ('3518379089', 'Die Abschiede (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/90/80/9783518379080.jpg'), - ('3518373080', 'Die Verlorenen Spuren', 'https://images.isbndb.com/covers/30/88/9783518373088.jpg'), - ('340460024X', 'Hallo, Hier Bin Ich!: Meine Vergnüglichen Abenteuer Auf Der Neunmonatigen Reise Bis Zur Geburt - Für Eltern Und Solche, Die Es Werden Wollen', 'https://images.isbndb.com/covers/02/43/9783404600243.jpg'), - ('0748702784', 'A Midsummer Night''s Dream: Original Text & Modern Verse (Shakespeare Made Easy Series)', 'https://images.isbndb.com/covers/27/87/9780748702787.jpg'), - ('3257018959', 'Die Geschichte Von Herrn Sommer', 'https://images.isbndb.com/covers/89/50/9783257018950.jpg'), - ('0553240633', 'The Right Stuff', 'https://images.isbndb.com/covers/06/34/9780553240634.jpg'), - ('0786817089', 'The Arctic Incident (Artemis Fowl, Book 2)', 'https://images.isbndb.com/covers/70/85/9780786817085.jpg'), - ('0385334923', 'Tulip Fever', 'https://images.isbndb.com/covers/49/21/9780385334921.jpg'), - ('0345445856', 'Milk Glass Moon: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/58/58/9780345445858.jpg'), - ('0743437136', 'Wild Orchids', 'https://images.isbndb.com/covers/71/34/9780743437134.jpg'), - ('344272872X', 'Lokalausgabe, Sonderausgabe', 'https://images.isbndb.com/covers/87/25/9783442728725.jpg'), - ('0684841215', 'Something Happened', 'https://images.isbndb.com/covers/12/12/9780684841212.jpg'), - ('1587242583', 'Fall On Your Knees', 'https://images.isbndb.com/covers/25/88/9781587242588.jpg'), - ('3746616360', 'Das Puppenkind.', 'https://images.isbndb.com/covers/63/60/9783746616360.jpg'), - ('0140026177', 'Penguin Book Of English Short Stories', 'https://images.isbndb.com/covers/61/77/9780140026177.jpg'), - ('0449221490', 'L Is For Lawless (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/14/95/9780449221495.jpg'), - ('067943335X', 'The House On Mango Street', 'https://images.isbndb.com/covers/33/54/9780679433354.jpg'), - ('0670033332', 'Olivia Joules And The Overactive Imagination', 'https://images.isbndb.com/covers/33/31/9780670033331.jpg'), - ('0060520515', 'The Other Side Of The Story: A Novel', 'https://images.isbndb.com/covers/05/19/9780060520519.jpg'), - ('042513699X', 'Turtle Moon', 'https://images.isbndb.com/covers/69/97/9780425136997.jpg'), - ('0679407715', 'Saint Maybe (Random House Large Print)', 'https://images.isbndb.com/covers/77/13/9780679407713.jpg'), - ('0747273200', 'Sisteria', 'https://images.isbndb.com/covers/32/02/9780747273202.jpg'), - ('015602943X', 'The Time Traveler''s Wife', 'https://images.isbndb.com/covers/94/38/9780156029438.jpg'), - ('037570485X', 'The Inn At Lake Devine', 'https://images.isbndb.com/covers/48/57/9780375704857.jpg'), - ('0671686151', 'Then She Found Me', 'https://images.isbndb.com/covers/61/54/9780671686154.jpg'), - ('0345455916', 'The Probable Future (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/59/18/9780345455918.jpg'), - ('1931081743', 'Colonel Rutherford''s Colt', 'https://images.isbndb.com/covers/17/40/9781931081740.jpg'), - ('1932047247', 'Government Project', 'https://images.isbndb.com/covers/72/40/9781932047240.jpg'), - ('1930586787', 'The Plunge', 'https://images.isbndb.com/covers/67/89/9781930586789.jpg'), - ('3401045660', 'Der Kleine Lord', 'https://images.isbndb.com/covers/56/65/9783401045665.jpg'), - ('0156028352', 'The Color Purple', 'https://images.isbndb.com/covers/83/56/9780156028356.jpg'), - ('0679733485', 'The Marriage Of Cadmus And Harmony', 'https://images.isbndb.com/covers/34/85/9780679733485.jpg'), - ('0732269199', 'Nancy Wake Biography', 'https://images.isbndb.com/covers/91/97/9780732269197.jpg'), - ('0671877046', 'Glory Road', 'https://images.isbndb.com/covers/70/40/9780671877040.jpg'), - ('0380761599', 'Genesis Revisited', 'https://images.isbndb.com/covers/15/93/9780380761593.jpg'), - ('0446609900', '26 Nights: A Sexual Adventure (Letters To Penthouse)', 'https://images.isbndb.com/covers/99/06/9780446609906.jpg'), - ('0553281437', 'Rose Of The Prophet : Volume III - The Prophet Of Akhran', 'https://images.isbndb.com/covers/14/39/9780553281439.jpg'), - ('0553279025', 'The Paladin Of The Night (Rose Of The Prophet, Book. 2)', 'https://images.isbndb.com/covers/90/23/9780553279023.jpg'), - ('0886773741', 'Tailchaser''s Song', 'https://images.isbndb.com/covers/37/48/9780886773748.jpg'), - ('0609608924', 'To Be Someone: A Novel', 'https://images.isbndb.com/covers/89/20/9780609608920.jpg'), - ('0812549007', 'Darkangel', 'https://images.isbndb.com/covers/90/03/9780812549003.jpg'), - ('0553276387', 'The Will Of The Wanderer (Rose Of The Prophet, Vol. 1)', 'https://images.isbndb.com/covers/63/81/9780553276381.jpg'), - ('0886771625', 'Tailchaser''s Song', 'https://images.isbndb.com/covers/16/21/9780886771621.jpg'), - ('0440223547', 'To Dream In The City Of Sorrows (Babylon 5, Book 9)', 'https://images.isbndb.com/covers/35/42/9780440223542.jpg'), - ('0140186484', 'Twenty Love Poems And A Song Of Despair: Dual Language Edition (Classic, 20th-Century, Penguin) (Spanish And English Edition)', 'https://images.isbndb.com/covers/64/82/9780140186482.jpg'), - ('059041691X', '101 Dinosaur Jokes', 'https://images.isbndb.com/covers/69/17/9780590416917.jpg'), - ('0590457403', 'Emergency Room (Point)', 'https://images.isbndb.com/covers/74/08/9780590457408.jpg'), - ('0448095041', 'The Mystery At Lilac Inn (Nancy Drew, Book 4)', 'https://images.isbndb.com/covers/50/42/9780448095042.jpg'), - ('044809505X', 'The Secret Of Shadow Ranch (Nancy Drew, No. 5)', 'https://images.isbndb.com/covers/50/59/9780448095059.jpg'), - ('0380728508', 'The Kid Who Got Zapped Through Time (An Avon Camelot Book)', 'https://images.isbndb.com/covers/85/03/9780380728503.jpg'), - ('0312916450', 'The Med', 'https://images.isbndb.com/covers/64/59/9780312916459.jpg'), - ('0804106576', 'You Can''t Count A Billion Dollars: & Other Little-Known Facts About Money', 'https://images.isbndb.com/covers/65/73/9780804106573.jpg'), - ('1886910529', 'Myrtle Of Willendorf', 'https://images.isbndb.com/covers/05/22/9781886910522.jpg'), - ('0140818030', 'Wide Sargasso Sea (Penguin Student Editions)', 'https://images.isbndb.com/covers/80/31/9780140818031.jpg'), - ('0061032042', 'Rebecca''s Tale', 'https://images.isbndb.com/covers/20/42/9780061032042.jpg'), - ('156647101X', 'McDougal''s Honolulu Mysteries: Case Studies From The Life Of A Honolulu Detective', 'https://images.isbndb.com/covers/10/15/9781566471015.jpg'), - ('0684825414', 'The MULCHING OF AMERICA: A Novel', 'https://images.isbndb.com/covers/54/10/9780684825410.jpg'), - ('0385475462', 'Rainbow People Of God, The', 'https://images.isbndb.com/covers/54/64/9780385475464.jpg'), - ('0515126098', 'Field Of Thirteen', 'https://images.isbndb.com/covers/60/99/9780515126099.jpg'), - ('1888608501', 'Missouri Gardener''s Guide', 'https://images.isbndb.com/covers/85/02/9781888608502.jpg'), - ('0345387651', 'The Cider House Rules', 'https://images.isbndb.com/covers/76/53/9780345387653.jpg'), - ('0345384563', 'A History Of God: The 4,000-Year Quest Of Judaism, Christianity And Islam', 'https://images.isbndb.com/covers/45/60/9780345384560.jpg'), - ('0590440152', 'The Mitten: A Ukrainian Folktale', 'https://images.isbndb.com/covers/01/58/9780590440158.jpg'), - ('0553287893', 'Rendezvous With Rama', 'https://images.isbndb.com/covers/78/99/9780553287899.jpg'), - ('0451628640', 'Trouble The Water: 250 Years Of African American Poetry', 'https://images.isbndb.com/covers/86/40/9780451628640.jpg'), - ('1566891051', 'Madame Deluxe (National Poetry Series)', 'https://images.isbndb.com/covers/10/59/9781566891059.jpg'), - ('0883964201', '42 Gifts I''d Like To Give To You: A Guidebook Of Wonderful Thoughts To Carry Along On Your Journey Through Life (Self-Help)', 'https://images.isbndb.com/covers/42/00/9780883964200.jpg'), - ('0883964716', 'The Joys And Challenges Of Motherhood (Blue Mountain Arts Collection)', 'https://images.isbndb.com/covers/47/12/9780883964712.jpg'), - ('1881273628', 'The Five Love Languages Gift Edition: How To Express Heartfelt Commitment To Your Mate', 'https://images.isbndb.com/covers/36/22/9781881273622.jpg'), - ('0785266097', 'Money Matters: Answers To Your Financial Questions', 'https://images.isbndb.com/covers/60/99/9780785266099.jpg'), - ('1883013852', 'Yearbook 2000 People Weekly', 'https://images.isbndb.com/covers/38/51/9781883013851.jpg'), - ('1883013860', 'Entertainment Weekly Yearbook 2000', 'https://images.isbndb.com/covers/38/68/9781883013868.jpg'), - ('0425067866', 'The Man In The Brown Suit (Agatha Christie Mysteries Collection)', 'https://images.isbndb.com/covers/78/64/9780425067864.jpg'), - ('0812092007', 'American Pit Bull And Staffordshire Terriers: Everything About Purchase, Care, Nutrition, Breeding, Behavior, And Training (A Complet)', 'https://images.isbndb.com/covers/20/04/9780812092004.jpg'), - ('1586602241', 'The Everyday Guide To Prayer', 'https://images.isbndb.com/covers/22/46/9781586602246.jpg'), - ('0736905324', 'The Power Of A Praying® Husband', 'https://images.isbndb.com/covers/53/29/9780736905329.jpg'), - ('0393047229', 'On The Bus With Rosa Parks: Poems', 'https://images.isbndb.com/covers/72/26/9780393047226.jpg'), - ('0061073628', 'A Night Without Armor : Poems', 'https://images.isbndb.com/covers/36/25/9780061073625.jpg'), - ('0688140475', 'The Selected Poems Of Nikki Giovanni: 1968-1995', 'https://images.isbndb.com/covers/04/72/9780688140472.jpg'), - ('0609808400', 'Bum Rush The Page: A Def Poetry Jam', 'https://images.isbndb.com/covers/84/05/9780609808405.jpg'), - ('0743200330', 'The Best American Poetry 2000', 'https://images.isbndb.com/covers/03/32/9780743200332.jpg'), - ('1931402213', 'Phantom Feast', 'https://images.isbndb.com/covers/22/17/9781931402217.jpg'), - ('0966723724', 'Simplicity, Poetry And Photography', 'https://images.isbndb.com/covers/37/24/9780966723724.jpg'), - ('0875730701', 'The Meat-Lover''s Vegetarian Cookbook', 'https://images.isbndb.com/covers/07/07/9780875730707.jpg'), - ('0972208607', 'Why The Weight? Dare To Be Great!', 'https://images.isbndb.com/covers/86/04/9780972208604.jpg'), - ('1884800394', 'Centuries', 'https://images.isbndb.com/covers/03/99/9781884800399.jpg'), - ('0971971501', 'Around In Circles', 'https://images.isbndb.com/covers/15/09/9780971971509.jpg'), - ('0397320426', 'Seth And Me And Rebel Make Three', 'https://images.isbndb.com/covers/04/24/9780397320424.jpg'), - ('0553580531', 'Gates Of Fire: An Epic Novel Of The Battle Of Thermopylae', 'https://images.isbndb.com/covers/05/32/9780553580532.jpg'), - ('042517364X', 'Clearwater', 'https://images.isbndb.com/covers/36/40/9780425173640.jpg'), - ('0451160193', 'Fools Die', 'https://images.isbndb.com/covers/01/95/9780451160195.jpg'), - ('0679402292', 'Hotel Pastis: A Novel Of Provence', 'https://images.isbndb.com/covers/22/99/9780679402299.jpg'), - ('0811801020', 'The Twelve Cats Of Christmas', 'https://images.isbndb.com/covers/10/27/9780811801027.jpg'), - ('0679433023', 'Violin', 'https://images.isbndb.com/covers/30/26/9780679433026.jpg'), - ('0679446672', 'Nosferatu', 'https://images.isbndb.com/covers/66/75/9780679446675.jpg'), - ('0553212036', 'Little Princess, A', 'https://images.isbndb.com/covers/20/37/9780553212037.jpg'), - ('0679463321', 'Killing Time', 'https://images.isbndb.com/covers/33/20/9780679463320.jpg'), - ('0679444815', 'Timeline', 'https://images.isbndb.com/covers/48/17/9780679444817.jpg'), - ('0394589424', 'Rising Sun', 'https://images.isbndb.com/covers/94/28/9780394589428.jpg'), - ('0465072836', 'The Pony Fish''s Glow: And Other Clues To Plan And Purpose In Nature', 'https://images.isbndb.com/covers/28/35/9780465072835.jpg'), - ('0486268705', 'Dubliners (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/05/9780486268705.jpg'), - ('0486275477', 'The Open Boat And Other Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/54/75/9780486275475.jpg'), - ('0399145796', 'All Tomorrow''s Parties', 'https://images.isbndb.com/covers/57/97/9780399145797.jpg'), - ('0140714545', 'Hamlet (The Pelican Shakespeare)', 'https://images.isbndb.com/covers/45/48/9780140714548.jpg'), - ('0072546409', 'American Education With PowerWeb', 'https://images.isbndb.com/covers/64/08/9780072546408.jpg'), - ('0060921145', 'Animal Dreams', 'https://images.isbndb.com/covers/11/49/9780060921149.jpg'), - ('1841763101', 'Bussaco 1810: Wellington Defeats Napoleon''s Marshals (Campaign)', 'https://images.isbndb.com/covers/31/01/9781841763101.jpg'), - ('1855329816', 'Portuguese Army Of The Napoleonic Wars (2) : 1806-1815 (Men-At-Arms Series, 346)', 'https://images.isbndb.com/covers/98/12/9781855329812.jpg'), - ('184176311X', 'Fuentes De Oñoro 1811: Wellington''s Liberation Of Portugal (Campaign)', 'https://images.isbndb.com/covers/31/18/9781841763118.jpg'), - ('085045512X', 'Napoleon''s Line Infantry (Men At Arms Series, 141)', 'https://images.isbndb.com/covers/51/20/9780850455120.jpg'), - ('0007137508', 'Wellington: The Iron Duke', 'https://images.isbndb.com/covers/75/03/9780007137503.jpg'), - ('037540290X', 'Widow For One Year', 'https://images.isbndb.com/covers/29/06/9780375402906.jpg'), - ('0553241729', 'Nathaniel', 'https://images.isbndb.com/covers/17/23/9780553241723.jpg'), - ('0517883864', 'All I Really Need To Know I Learned From Watching Star Trek', 'https://images.isbndb.com/covers/38/60/9780517883860.jpg'), - ('0446313939', 'Fear And Loathing In Las Vegas: A Savage Journey To The Heart Of The American Dream', 'https://images.isbndb.com/covers/39/33/9780446313933.jpg'), - ('0671680781', 'Risk', 'https://images.isbndb.com/covers/07/87/9780671680787.jpg'), - ('1592869629', 'The Snakeman Cometh', 'https://images.isbndb.com/covers/96/26/9781592869626.jpg'), - ('0800782194', 'The Hiding Place', 'https://images.isbndb.com/covers/21/91/9780800782191.jpg'), - ('0821761196', 'Hannah''s Heart (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/11/99/9780821761199.jpg'), - ('0061084719', 'Once Upon A Pirate (Harper Monogram)', 'https://images.isbndb.com/covers/47/13/9780061084713.jpg'), - ('1551661594', 'House Of Destiny', 'https://images.isbndb.com/covers/15/99/9781551661599.jpg'), - ('0515120340', 'Heartbound', 'https://images.isbndb.com/covers/03/49/9780515120349.jpg'), - ('0821761730', 'Annie''s Rainbow', 'https://images.isbndb.com/covers/17/31/9780821761731.jpg'), - ('0812507428', 'People Of The Earth (The First North Americans Series, Book 3)', 'https://images.isbndb.com/covers/74/23/9780812507423.jpg'), - ('0425121259', 'The Servants Of Twilight', 'https://images.isbndb.com/covers/12/52/9780425121252.jpg'), - ('0061030430', 'Long Time No See', 'https://images.isbndb.com/covers/04/37/9780061030437.jpg'), - ('0840757239', 'Three Steps Forward Two Steps Back: Persevering Through Pressure', 'https://images.isbndb.com/covers/72/34/9780840757234.jpg'), - ('0553138014', 'The Formula', 'https://images.isbndb.com/covers/80/16/9780553138016.jpg'), - ('1586481614', 'Gracefully Insane: Life And Death Inside America''s Premier Mental Hospital', 'https://images.isbndb.com/covers/16/12/9781586481612.jpg'), - ('0553572210', 'Silent Treatment', 'https://images.isbndb.com/covers/22/16/9780553572216.jpg'), - ('0553288342', 'Sleepwalk', 'https://images.isbndb.com/covers/83/46/9780553288346.jpg'), - ('1575668475', 'Uncle Max', 'https://images.isbndb.com/covers/84/75/9781575668475.jpg'), - ('0743467523', 'Dreamcatcher', 'https://images.isbndb.com/covers/75/20/9780743467520.jpg'), - ('0312950489', 'The Black Echo (Harry Bosch)', 'https://images.isbndb.com/covers/04/84/9780312950484.jpg'), - ('014012389X', 'Love In The Time Of Cholera', 'https://images.isbndb.com/covers/38/90/9780140123890.jpg'), - ('0804106274', 'To Hear A Nightingale', 'https://images.isbndb.com/covers/62/76/9780804106276.jpg'), - ('038548755X', 'Enterprise One To One', 'https://images.isbndb.com/covers/75/59/9780385487559.jpg'), - ('0446353205', 'The Charm School', 'https://images.isbndb.com/covers/32/05/9780446353205.jpg'), - ('0553208225', 'The Glitter Dome', 'https://images.isbndb.com/covers/82/21/9780553208221.jpg'), - ('0770103936', 'Sunstrike', 'https://images.isbndb.com/covers/39/34/9780770103934.jpg'), - ('0373970021', 'Legacy Of Passion', 'https://images.isbndb.com/covers/00/25/9780373970025.jpg'), - ('042516019X', 'Masquerade', 'https://images.isbndb.com/covers/01/90/9780425160190.jpg'), - ('0446357405', 'The Other Side Of Midnight', 'https://images.isbndb.com/covers/74/01/9780446357401.jpg'), - ('0340223030', 'Lords Of Misrule Pb (The House Of Stewart Trilogy)', 'https://images.isbndb.com/covers/30/31/9780340223031.jpg'), - ('067180913X', 'A Fire In The Blood (Pocket Kangaroo Edition)', 'https://images.isbndb.com/covers/91/33/9780671809133.jpg'), - ('067167269X', 'TOO DEEP FOR TEARS', 'https://images.isbndb.com/covers/26/90/9780671672690.jpg'), - ('0722150954', 'An Unsuitable Job For A Women', 'https://images.isbndb.com/covers/09/55/9780722150955.jpg'), - ('1552780724', 'Just A Minute More: Glimpses Of Our Great Canadian Heritage', 'https://images.isbndb.com/covers/07/25/9781552780725.jpg'), - ('0440223822', 'Outrage: The Five Reasons Why O.J. Simpson Got Away With Murder', 'https://images.isbndb.com/covers/38/25/9780440223825.jpg'), - ('042509586X', 'Callahan''s Cross Salon', 'https://images.isbndb.com/covers/58/67/9780425095867.jpg'), - ('0441090729', 'Callahan''s Lady', 'https://images.isbndb.com/covers/07/23/9780441090723.jpg'), - ('0425097226', 'Time Travelers Strictly Cash', 'https://images.isbndb.com/covers/72/29/9780425097229.jpg'), - ('0446675962', 'Business @ The Speed Of Thought: Succeeding In The Digital Economy', 'https://images.isbndb.com/covers/59/63/9780446675963.jpg'), - ('0312867395', 'The Best Of Crank!', 'https://images.isbndb.com/covers/73/93/9780312867393.jpg'), - ('0345300807', 'Castle Of Wizardry (The Belgariad, Book 4)', 'https://images.isbndb.com/covers/08/05/9780345300805.jpg'), - ('0446517984', 'Old Songs In A New Cafe: Selected Essays', 'https://images.isbndb.com/covers/79/80/9780446517980.jpg'), - ('006464801X', 'Mary Kay', 'https://images.isbndb.com/covers/80/11/9780064648011.jpg'), - ('0373834284', 'Rebellion (The Macgregors)', 'https://images.isbndb.com/covers/42/80/9780373834280.jpg'), - ('0440224853', 'The Ghost', 'https://images.isbndb.com/covers/48/53/9780440224853.jpg'), - ('0345404114', 'Sleepers', 'https://images.isbndb.com/covers/41/14/9780345404114.jpg'), - ('074723003X', 'Sunrise In The West (Brothers Of Gwynedd, Book 1)', 'https://images.isbndb.com/covers/00/38/9780747230038.jpg'), - ('0747230293', 'The Hounds Of Sunset (The Brothers Of Gwynedd, 3)', 'https://images.isbndb.com/covers/02/98/9780747230298.jpg'), - ('0553579193', 'The Black Raven (Dragon Mage, Book 2)', 'https://images.isbndb.com/covers/91/92/9780553579192.jpg'), - ('0471407380', 'Enigma: The Battle For The Code', 'https://images.isbndb.com/covers/73/86/9780471407386.jpg'), - ('0060984422', 'Consuming Passions: A Food-Obsessed Life', 'https://images.isbndb.com/covers/44/27/9780060984427.jpg'), - ('0553567152', 'Don''t Die, My Love', 'https://images.isbndb.com/covers/71/51/9780553567151.jpg'), - ('0451211014', 'The Last Promise', 'https://images.isbndb.com/covers/10/19/9780451211019.jpg'), - ('0553283502', 'Time To Let Go (A Bantam Starfire Book)', 'https://images.isbndb.com/covers/35/01/9780553283501.jpg'), - ('0440219817', 'Driver''s Ed', 'https://images.isbndb.com/covers/98/11/9780440219811.jpg'), - ('0553570870', 'Telling Christina Goodbye', 'https://images.isbndb.com/covers/08/78/9780553570878.jpg'), - ('0786813709', 'Fab Five: Don''t Make A Scene, Mum - Book #1', 'https://images.isbndb.com/covers/37/04/9780786813704.jpg'), - ('0446361739', 'Slow Heat In Heaven', 'https://images.isbndb.com/covers/17/36/9780446361736.jpg'), - ('0141007338', 'About A Boy', 'https://images.isbndb.com/covers/73/35/9780141007335.jpg'), - ('0002261529', 'Temptation', 'https://images.isbndb.com/covers/15/24/9780002261524.jpg'), - ('0007110928', 'Billy', 'https://images.isbndb.com/covers/09/26/9780007110926.jpg'), - ('0375760393', 'The Botany Of Desire: A Plant''s-Eye View Of The World', 'https://images.isbndb.com/covers/03/96/9780375760396.jpg'), - ('0440467012', 'Otherwise Known As Sheila The Great', 'https://images.isbndb.com/covers/70/14/9780440467014.jpg'), - ('0425129586', 'And Then There Were None', 'https://images.isbndb.com/covers/95/86/9780425129586.jpg'), - ('0373168284', 'Big-City Bachelor (Harlequin American Romance, No. 828)', 'https://images.isbndb.com/covers/82/86/9780373168286.jpg'), - ('0679745130', 'The Vintage Book Of Contemporary American Short Stories', 'https://images.isbndb.com/covers/51/36/9780679745136.jpg'), - ('0375502815', 'Normal Girl: A Novel', 'https://images.isbndb.com/covers/28/11/9780375502811.jpg'), - ('0590483803', 'The Runner', 'https://images.isbndb.com/covers/38/03/9780590483803.jpg'), - ('0671027662', 'Coast Road: A Novel', 'https://images.isbndb.com/covers/76/67/9780671027667.jpg'), - ('1580081231', '2000 What Color Is Your Parachute', 'https://images.isbndb.com/covers/12/38/9781580081238.jpg'), - ('0452279089', 'The Womanly Art Of Breastfeeding: Sixth Revised Edition', 'https://images.isbndb.com/covers/90/87/9780452279087.jpg'), - ('0316779075', 'The Birth Book: Everything You Need To Know To Have A Safe And Satisfying Birth (Sears Parenting Library)', 'https://images.isbndb.com/covers/90/74/9780316779074.jpg'), - ('0399523308', 'The Girlfriends'' Guide To Surviving The First Year Of Motherhood', 'https://images.isbndb.com/covers/33/04/9780399523304.jpg'), - ('020162690X', 'Touchpoints: Your Child''s Emotional And Behavioral Development, Birth To 3 -- The Essential Reference For The Early Years', 'https://images.isbndb.com/covers/69/02/9780201626902.jpg'), - ('0671021761', 'The Girlfriends'' Guide To Pregnancy', 'https://images.isbndb.com/covers/17/64/9780671021764.jpg'), - ('0915473569', 'Planning Your Pregnancy And Birth, Third Edition', 'https://images.isbndb.com/covers/35/64/9780915473564.jpg'), - ('0553580744', 'The Complete Book Of Breastfeeding: Revised Edition', 'https://images.isbndb.com/covers/07/47/9780553580747.jpg'), - ('0451171071', 'The New American Dictionary Of Baby Names', 'https://images.isbndb.com/covers/10/78/9780451171078.jpg'), - ('0671620495', 'Women Who Love Too Much', 'https://images.isbndb.com/covers/04/93/9780671620493.jpg'), - ('0688151078', 'Desire Lines: A Novel', 'https://images.isbndb.com/covers/10/72/9780688151072.jpg'), - ('042513024X', 'The A. B. C. Murders (A Hercule Poirot Novel)', 'https://images.isbndb.com/covers/02/47/9780425130247.jpg'), - ('1558321160', 'Nursing Mother, Working Mother: The Essential Guide For Breastfeeding And Staying Close To Your Baby After You Return To Work', 'https://images.isbndb.com/covers/11/68/9781558321168.jpg'), - ('0446530239', 'If Looks Could Kill', 'https://images.isbndb.com/covers/02/31/9780446530231.jpg'), - ('3492256341', 'Im Interesse Der Nation: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/63/46/9783492256346.jpg'), - ('0805067140', 'I Thought My Father Was God: And Other True Tales From NPR''s National Story Project', 'https://images.isbndb.com/covers/71/49/9780805067149.jpg'), - ('3518383973', 'Eva Luna: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/39/71/9783518383971.jpg'), - ('0552133256', 'Strata', 'https://images.isbndb.com/covers/32/58/9780552133258.jpg'), - ('227724113X', 'La Prophétie Des Andes', 'https://images.isbndb.com/covers/11/33/9782277241133.jpg'), - ('0156011603', 'Under The Skin: A Novel', 'https://images.isbndb.com/covers/16/00/9780156011600.jpg'), - ('0345335058', 'ORDINARY PEOPLE', 'https://images.isbndb.com/covers/50/50/9780345335050.jpg'), - ('0671742515', 'The Long Dark Tea-Time Of The Soul', 'https://images.isbndb.com/covers/25/15/9780671742515.jpg'), - ('190288132X', 'Adiel', 'https://images.isbndb.com/covers/13/24/9781902881324.jpg'), - ('0446357200', 'Name Of The Rose', 'https://images.isbndb.com/covers/72/03/9780446357203.jpg'), - ('0451526643', 'The Beautiful And Damned (Signet Classics)', 'https://images.isbndb.com/covers/66/49/9780451526649.jpg'), - ('0316198951', 'Jim The Boy : A Novel', 'https://images.isbndb.com/covers/89/50/9780316198950.jpg'), - ('0312244991', 'Wrong Information Is Being Given Out At Princeton: The Chronicle Of One Of The Strangest Stories Ever To Be Rumoured About Around New York', 'https://images.isbndb.com/covers/49/96/9780312244996.jpg'), - ('0375706143', 'A Rich Full Death', 'https://images.isbndb.com/covers/61/41/9780375706141.jpg'), - ('0953327523', 'Nalda Said', 'https://images.isbndb.com/covers/75/22/9780953327522.jpg'), - ('0451149173', 'Code Ezra (Signet)', 'https://images.isbndb.com/covers/91/76/9780451149176.jpg'), - ('0140065504', 'Water Music (Contemporary American Fiction)', 'https://images.isbndb.com/covers/55/03/9780140065503.jpg'), - ('0679759328', 'Hotel Du Lac', 'https://images.isbndb.com/covers/93/24/9780679759324.jpg'), - ('0440447674', 'A Little Princess', 'https://images.isbndb.com/covers/76/72/9780440447672.jpg'), - ('0345427637', 'The Angel Of Darkness', 'https://images.isbndb.com/covers/76/32/9780345427632.jpg'), - ('055321263X', 'The Woman In White (Bantam Classics)', 'https://images.isbndb.com/covers/26/31/9780553212631.jpg'), - ('0449213765', 'Lady Oracle', 'https://images.isbndb.com/covers/37/66/9780449213766.jpg'), - ('0446314986', 'The Edible Woman', 'https://images.isbndb.com/covers/49/85/9780446314985.jpg'), - ('0553213105', 'Pride And Prejudice (Bantam Classics)', 'https://images.isbndb.com/covers/31/02/9780553213102.jpg'), - ('0786703229', 'The Dressmaker', 'https://images.isbndb.com/covers/32/27/9780786703227.jpg'), - ('0446674168', 'Lives Of The Monster Dogs', 'https://images.isbndb.com/covers/41/64/9780446674164.jpg'), - ('0671602543', 'Deans December', 'https://images.isbndb.com/covers/25/43/9780671602543.jpg'), - ('0451199979', 'Devilish', 'https://images.isbndb.com/covers/99/73/9780451199973.jpg'), - ('0451521072', 'Andersen''s Fairy Tales (Signet Classics)', 'https://images.isbndb.com/covers/10/71/9780451521071.jpg'), - ('0446675369', 'Bless Me, Ultima', 'https://images.isbndb.com/covers/53/69/9780446675369.jpg'), - ('0440466091', 'An Old-Fashioned Girl', 'https://images.isbndb.com/covers/60/93/9780440466093.jpg'), - ('0440416027', 'Skellig', 'https://images.isbndb.com/covers/60/29/9780440416029.jpg'), - ('0380012057', 'Gabriela, Clove And Cinnamon', 'https://images.isbndb.com/covers/20/53/9780380012053.jpg'), - ('0385474547', 'Things Fall Apart', 'https://images.isbndb.com/covers/45/42/9780385474542.jpg'), - ('1573220531', 'There Are No Accidents: Synchronicity And The Stories Of Our Lives', 'https://images.isbndb.com/covers/05/38/9781573220538.jpg'), - ('0671020293', 'Butterfly: First Novel In The Orphans Miniseries (Book 1)', 'https://images.isbndb.com/covers/02/93/9780671020293.jpg'), - ('0595259677', 'THE TWENTIETH CENTURY COLLECTION: Eight Extraordinary One-Act Plays By Playwright', 'https://images.isbndb.com/covers/96/70/9780595259670.jpg'), - ('0860074382', '84, Charing Cross Road', 'https://images.isbndb.com/covers/43/80/9780860074380.jpg'), - ('0140386084', 'Allie''s Crocodile (Young Puffin Confident Readers)', 'https://images.isbndb.com/covers/60/80/9780140386080.jpg'), - ('0330267388', 'Life, The Universe And Everything (Hitch-Hikers Guide To The Galaxy, No. 3)', 'https://images.isbndb.com/covers/73/80/9780330267380.jpg'), - ('1896764096', 'The Girl Who Hated Books', 'https://images.isbndb.com/covers/40/92/9781896764092.jpg'), - ('0679426140', 'Welcome To The World, Baby Girl!: A Novel', 'https://images.isbndb.com/covers/61/41/9780679426141.jpg'), - ('0671042572', 'Jewel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/25/78/9780671042578.jpg'), - ('0812990323', 'Starting And Running A Profitable Investment Club', 'https://images.isbndb.com/covers/03/24/9780812990324.jpg'), - ('0930452933', 'Into The Woods', 'https://images.isbndb.com/covers/29/33/9780930452933.jpg'), - ('081269421X', 'The Mindful Traveler: A Guide To Journaling And Transformative Travel', 'https://images.isbndb.com/covers/42/15/9780812694215.jpg'), - ('0385487398', 'Welcome To My Country', 'https://images.isbndb.com/covers/73/99/9780385487399.jpg'), - ('0609608096', 'The Relationship Cure: A Five-Step Guide For Building Better Connections With Family, Friends, And Lovers', 'https://images.isbndb.com/covers/80/98/9780609608098.jpg'), - ('0312141475', 'Surfing The Himalayas: A Spiritual Adventure', 'https://images.isbndb.com/covers/14/79/9780312141479.jpg'), - ('0743420373', 'The Millionaire Next Door: The Surprising Secrets Of America''s Wealthy', 'https://images.isbndb.com/covers/03/72/9780743420372.jpg'), - ('0099287927', 'Monkeys', 'https://images.isbndb.com/covers/79/26/9780099287926.jpg'), - ('1558184023', 'The Soul Of Your Pet: Evidence For The Survival Of Animals After Death', 'https://images.isbndb.com/covers/40/22/9781558184022.jpg'), - ('0684869748', 'Hoochie Mama (Mad Dog Rodriguez Trilogy)', 'https://images.isbndb.com/covers/97/42/9780684869742.jpg'), - ('3442448794', 'Traumreisende: Roman', 'https://images.isbndb.com/covers/87/91/9783442448791.jpg'), - ('0689832923', 'What Do You Know About Manners?', 'https://images.isbndb.com/covers/29/25/9780689832925.jpg'), - ('0590640860', 'National Audubon Society First Field Guide: Night Sky (Audubon Guides)', 'https://images.isbndb.com/covers/08/62/9780590640862.jpg'), - ('0060937688', 'Planet Of The Apes: (Jr Novel)', 'https://images.isbndb.com/covers/76/83/9780060937683.jpg'), - ('0440219760', 'The Transall Saga', 'https://images.isbndb.com/covers/97/67/9780440219767.jpg'), - ('0553371843', 'Caring For Your Baby And Young Children (The American Academy Of Pediatrics)', 'https://images.isbndb.com/covers/18/40/9780553371840.jpg'), - ('0916773191', 'Getting Your Child To Sleep-- And Back To Sleep: Tips For Parents Of Infants, Toddlers And Preschoolers (Family & Childcare)', 'https://images.isbndb.com/covers/31/99/9780916773199.jpg'), - ('0679736662', 'The Three Stigmata Of Palmer Eldritch', 'https://images.isbndb.com/covers/66/60/9780679736660.jpg'), - ('0451209907', 'Quentins', 'https://images.isbndb.com/covers/99/00/9780451209900.jpg'), - ('0312954166', 'Indictment, The', 'https://images.isbndb.com/covers/41/61/9780312954161.jpg'), - ('0449221512', 'I Is For Innocent (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/15/18/9780449221518.jpg'), - ('0451409647', 'The Final Faberge', 'https://images.isbndb.com/covers/96/45/9780451409645.jpg'), - ('0375707093', 'The Many Aspects Of Mobile Home Living: A Novel', 'https://images.isbndb.com/covers/70/94/9780375707094.jpg'), - ('0399149783', 'Monkeewrench', 'https://images.isbndb.com/covers/97/88/9780399149788.jpg'), - ('0525946284', 'Jackdaws', 'https://images.isbndb.com/covers/62/81/9780525946281.jpg'), - ('0385318073', 'Evening Class', 'https://images.isbndb.com/covers/80/75/9780385318075.jpg'), - ('0061013315', 'The Eleventh Commandment: A Novel', 'https://images.isbndb.com/covers/33/17/9780061013317.jpg'), - ('1400031362', 'Morality For Beautiful Girls (No. 1 Ladies Detective Agency, Book 3)', 'https://images.isbndb.com/covers/13/68/9781400031368.jpg'), - ('0804107386', 'New Orleans Mourning (Skip Langdon Novels)', 'https://images.isbndb.com/covers/73/89/9780804107389.jpg'), - ('0140435530', 'Under The Greenwood Tree (Penguin Classics)', 'https://images.isbndb.com/covers/55/35/9780140435535.jpg'), - ('007212170X', 'Harley Hahn''s Internet & Web Yellow Pages, Millennium Edition', 'https://images.isbndb.com/covers/17/04/9780072121704.jpg'), - ('0307120848', 'Welcome To Little Golden Book Land (Big Golden Book)', 'https://images.isbndb.com/covers/08/47/9780307120847.jpg'), - ('0689846088', 'A Charlie Brown Christmas', 'https://images.isbndb.com/covers/60/83/9780689846083.jpg'), - ('0689842708', 'Silver Thread', 'https://images.isbndb.com/covers/27/02/9780689842702.jpg'), - ('0786846461', 'Lizzie McGuire: The Orchids And Gumbo Poker Club', 'https://images.isbndb.com/covers/64/67/9780786846467.jpg'), - ('0671038311', 'Chomps, Flea, And Gray Cat (That''s Me!)', 'https://images.isbndb.com/covers/83/11/9780671038311.jpg'), - ('0140381538', 'Blue Sky, Butterfly (Puffin Novel)', 'https://images.isbndb.com/covers/15/35/9780140381535.jpg'), - ('0064472612', 'The Copper Elephant', 'https://images.isbndb.com/covers/26/16/9780064472616.jpg'), - ('0743400771', 'Violet Eyes', 'https://images.isbndb.com/covers/07/70/9780743400770.jpg'), - ('0849959306', 'The Pine Tree Parable', 'https://images.isbndb.com/covers/93/01/9780849959301.jpg'), - ('0449223612', 'N Is For Noose (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/36/11/9780449223611.jpg'), - ('0380818817', 'Red Angel: A Paul Devlin Mystery', 'https://images.isbndb.com/covers/88/15/9780380818815.jpg'), - ('0060959940', 'Black Heat: A Nina Halligan Novel', 'https://images.isbndb.com/covers/99/44/9780060959944.jpg'), - ('0425181863', 'Blue Plate Special (Sunny Childs Mysteries)', 'https://images.isbndb.com/covers/18/67/9780425181867.jpg'), - ('0439443857', 'Green Angel', 'https://images.isbndb.com/covers/38/52/9780439443852.jpg'), - ('0061031127', 'The Bronze Horseman', 'https://images.isbndb.com/covers/11/20/9780061031120.jpg'), - ('0824511743', 'The Gospel According To Mary', 'https://images.isbndb.com/covers/17/46/9780824511746.jpg'), - ('0875963021', 'Never Pay Retail: How To Save 20% To 80% On Everything You Buy', 'https://images.isbndb.com/covers/30/20/9780875963020.jpg'), - ('0399526005', 'In Our Humble Opinion: Car Talk''s Click And Clack Rant And Rave', 'https://images.isbndb.com/covers/60/08/9780399526008.jpg'), - ('044020352X', 'Anguished English: An Anthology Of Accidental Assaults Upon Our Language', 'https://images.isbndb.com/covers/35/20/9780440203520.jpg'), - ('0156012197', 'The Little Prince', 'https://images.isbndb.com/covers/21/95/9780156012195.jpg'), - ('0449221180', 'Native Tongue', 'https://images.isbndb.com/covers/11/81/9780449221181.jpg'), - ('3423703040', 'Die Drei ??? Und Der Giftige Gockel. (Ab 10 J.) (drei Fragezeichen). (Fiction, Poetry & Drama)', 'https://images.isbndb.com/covers/30/48/9783423703048.jpg'), - ('0425179206', 'Triplet Code', 'https://images.isbndb.com/covers/92/08/9780425179208.jpg'), - ('0553107755', 'Fierce Invalids Home From Hot Climates', 'https://images.isbndb.com/covers/77/53/9780553107753.jpg'), - ('1853260150', 'Picture Of Dorian Gray (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/01/55/9781853260155.jpg'), - ('1853262390', 'Orlando (Wordsworth Classics)', 'https://images.isbndb.com/covers/23/95/9781853262395.jpg'), - ('0140010211', 'Lord Arthur Savile''s Crime And Other Stories (Classic, Modern, Penguin)', 'https://images.isbndb.com/covers/02/13/9780140010213.jpg'), - ('0393314804', 'Trainspotting', 'https://images.isbndb.com/covers/48/09/9780393314809.jpg'), - ('1591291666', 'First The Raven', 'https://images.isbndb.com/covers/16/64/9781591291664.jpg'), - ('0843944331', 'Frontier Mayhem (Wilderness #25)', 'https://images.isbndb.com/covers/43/34/9780843944334.jpg'), - ('0440403782', 'Voices After Midnight', 'https://images.isbndb.com/covers/37/84/9780440403784.jpg'), - ('0312168748', 'James Herriot''s Animal Stories', 'https://images.isbndb.com/covers/87/42/9780312168742.jpg'), - ('0590897543', 'Blizzard (Med Center)', 'https://images.isbndb.com/covers/75/49/9780590897549.jpg'), - ('0425155463', 'Concise Guides: Instant Style For Writers (Concise Guides For The Next Century)', 'https://images.isbndb.com/covers/54/62/9780425155462.jpg'), - ('0312266065', 'Invisible Forms: A Guide To Literary Curiosities', 'https://images.isbndb.com/covers/60/66/9780312266066.jpg'), - ('0843952008', 'Fears Unnamed', 'https://images.isbndb.com/covers/20/01/9780843952001.jpg'), - ('0385261756', 'Crane''s Blue Book Of Stationery', 'https://images.isbndb.com/covers/17/53/9780385261753.jpg'), - ('0671014021', 'Icefire', 'https://images.isbndb.com/covers/40/25/9780671014025.jpg'), - ('0393093247', 'Passionate Attention; An Introduction To Literary Study', 'https://images.isbndb.com/covers/32/47/9780393093247.jpg'), - ('0812549325', 'The Black Cat', 'https://images.isbndb.com/covers/93/24/9780812549324.jpg'), - ('0439101360', 'Little Women (Scholastic Classics)', 'https://images.isbndb.com/covers/13/63/9780439101363.jpg'), - ('038073186X', 'Shutter Island', 'https://images.isbndb.com/covers/18/62/9780380731862.jpg'), - ('0140621598', 'Tales From Shakespeare (Penguin Popular Classics)', 'https://images.isbndb.com/covers/15/94/9780140621594.jpg'), - ('0440195934', 'Where Are The Children?', 'https://images.isbndb.com/covers/59/31/9780440195931.jpg'), - ('088038722X', 'Darkness And Light (Dragonlance, Preludes, Vol. 1) (v. 1)', 'https://images.isbndb.com/covers/72/24/9780880387224.jpg'), - ('0844295582', 'Hawaii At Its Best (The World At Its Best Travel Series)', 'https://images.isbndb.com/covers/55/89/9780844295589.jpg'), - ('0140314202', 'The Summer Of The Swans', 'https://images.isbndb.com/covers/42/05/9780140314205.jpg'), - ('0440998050', 'A Wrinkle In Time', 'https://images.isbndb.com/covers/80/51/9780440998051.jpg'), - ('0439319137', 'To Love This Life: Quotations From Helen Keller', 'https://images.isbndb.com/covers/91/33/9780439319133.jpg'), - ('0330352091', 'Cauldron Uk', 'https://images.isbndb.com/covers/20/93/9780330352093.jpg'), - ('0140014845', 'Lady Chatterley''s Lover', 'https://images.isbndb.com/covers/48/46/9780140014846.jpg'), - ('0060269928', 'Absolutely Normal Chaos', 'https://images.isbndb.com/covers/99/20/9780060269920.jpg'), - ('0553299328', 'Sixteen And Dying (One Last Wish)', 'https://images.isbndb.com/covers/93/28/9780553299328.jpg'), - ('0743464672', 'Getting Over Jack Wagner', 'https://images.isbndb.com/covers/46/73/9780743464673.jpg'), - ('155874424X', 'Teach Yourself VISUALLY Windows Me Millennium Edition', 'https://images.isbndb.com/covers/42/40/9781558744240.jpg'), - ('2070414574', 'L''Amour Dure Trois Ans', 'https://images.isbndb.com/covers/45/74/9782070414574.jpg'), - ('1853262803', 'Napoleon Of Notting Hill (Wordsworth Collection)', 'https://images.isbndb.com/covers/28/07/9781853262807.jpg'), - ('014032870X', 'Charlie And The Great Glass Elevator', 'https://images.isbndb.com/covers/87/07/9780140328707.jpg'), - ('0345396669', 'Our Dreaming Mind', 'https://images.isbndb.com/covers/66/62/9780345396662.jpg'), - ('0316181358', 'The Abuse Excuse: And Other Cop-Outs, Sob Stories, And Evasions Of Responsibility', 'https://images.isbndb.com/covers/13/58/9780316181358.jpg'), - ('0385468709', 'Healing And The Mind', 'https://images.isbndb.com/covers/87/01/9780385468701.jpg'), - ('0385422938', 'Shot In The Heart', 'https://images.isbndb.com/covers/29/32/9780385422932.jpg'), - ('0060165979', 'Care Of The Soul: A Guide For Cultivating Depth And Sacredness In Everyday Life', 'https://images.isbndb.com/covers/59/70/9780060165970.jpg'), - ('038542194X', 'On The Edge Of Darkness', 'https://images.isbndb.com/covers/19/42/9780385421942.jpg'), - ('1565122968', 'Gap Creek: A Novel', 'https://images.isbndb.com/covers/29/63/9781565122963.jpg'), - ('0486280594', 'Three Lives (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/92/9780486280592.jpg'), - ('0843114797', 'Little Miss Chatterbox (Mr. Men And Little Miss)', 'https://images.isbndb.com/covers/47/99/9780843114799.jpg'), - ('0804115613', 'Fried Green Tomatoes At The Whistlestop Cafe', 'https://images.isbndb.com/covers/56/12/9780804115612.jpg'), - ('0375724958', 'Stranger In The Forest: On Foot Across Borneo', 'https://images.isbndb.com/covers/49/54/9780375724954.jpg'), - ('067973855X', 'Motoring With Mohammed: Journeys To Yemen And The Red Sea', 'https://images.isbndb.com/covers/85/58/9780679738558.jpg'), - ('0679771832', 'Orchid Fever: A Horticultural Tale Of Love, Lust, And Lunacy', 'https://images.isbndb.com/covers/18/38/9780679771838.jpg'), - ('0345340426', 'J.R.R. Tolkien Boxed Set (The Hobbit And The Lord Of The Rings)', 'https://images.isbndb.com/covers/04/29/9780345340429.jpg'), - ('0679745203', 'The English Patient', 'https://images.isbndb.com/covers/52/04/9780679745204.jpg'), - ('0679777482', 'Checkmate: Sixth In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/89/9780679777489.jpg'), - ('0679777474', 'The Ringed Castle: Fifth In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/72/9780679777472.jpg'), - ('0679777466', 'Pawn In Frankincense: Fourth In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/65/9780679777465.jpg'), - ('0679777458', 'The Disorderly Knights: Third In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/58/9780679777458.jpg'), - ('0345449347', 'The Fourth Hand', 'https://images.isbndb.com/covers/93/44/9780345449344.jpg'), - ('0879100362', 'Harpo Speaks!', 'https://images.isbndb.com/covers/03/60/9780879100360.jpg'), - ('0312252927', 'Monkey Business: The Lives And Legends Of The Marx Brothers', 'https://images.isbndb.com/covers/29/22/9780312252922.jpg'), - ('0312266510', 'Stan And Ollie: The Roots Of Comedy: The Double Life Of Laurel And Hardy', 'https://images.isbndb.com/covers/65/16/9780312266516.jpg'), - ('0151005346', 'The Nautical Chart', 'https://images.isbndb.com/covers/53/45/9780151005345.jpg'), - ('0156006391', 'The Seville Communion', 'https://images.isbndb.com/covers/63/92/9780156006392.jpg'), - ('067977744X', 'Queens'' Play: Second In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/41/9780679777441.jpg'), - ('0156005204', 'Baltasar And Blimunda', 'https://images.isbndb.com/covers/52/03/9780156005203.jpg'), - ('0156006243', 'The History Of The Siege Of Lisbon', 'https://images.isbndb.com/covers/62/48/9780156006248.jpg'), - ('0156010593', 'All The Names', 'https://images.isbndb.com/covers/05/97/9780156010597.jpg'), - ('0375701907', 'Straight Man: A Novel', 'https://images.isbndb.com/covers/19/00/9780375701900.jpg'), - ('0156004011', 'The Stone Raft', 'https://images.isbndb.com/covers/40/15/9780156004015.jpg'), - ('0679777547', 'The Club Dumas', 'https://images.isbndb.com/covers/75/40/9780679777540.jpg'), - ('034543479X', 'A Widow For One Year', 'https://images.isbndb.com/covers/47/91/9780345434791.jpg'), - ('0345396456', 'The Good Husband (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/64/57/9780345396457.jpg'), - ('1853262714', 'Anna Karenina (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/27/15/9781853262715.jpg'), - ('0888012055', 'Summer Of My Amazing Luck', 'https://images.isbndb.com/covers/20/50/9780888012050.jpg'), - ('0773759697', 'A Boy Of Good Breeding', 'https://images.isbndb.com/covers/96/95/9780773759695.jpg'), - ('1895837618', 'Pray For Us Sinners', 'https://images.isbndb.com/covers/76/12/9781895837612.jpg'), - ('0375705198', 'Amy And Isabelle: A Novel', 'https://images.isbndb.com/covers/51/99/9780375705199.jpg'), - ('1550548166', 'The Trade', 'https://images.isbndb.com/covers/81/67/9781550548167.jpg'), - ('0385720327', 'In My Hands: Memories Of A Holocaust Rescuer', 'https://images.isbndb.com/covers/03/28/9780385720328.jpg'), - ('0747545634', 'The Map Of Love', 'https://images.isbndb.com/covers/56/37/9780747545637.jpg'), - ('0374521956', 'One Day In The Life Of Ivan Denisovich: A Novel', 'https://images.isbndb.com/covers/19/50/9780374521950.jpg'), - ('0889951926', 'A Fine Daughter (Fiction)', 'https://images.isbndb.com/covers/19/21/9780889951921.jpg'), - ('0449910830', 'The All-True Travels And Adventures Of Lidie Newton: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/08/32/9780449910832.jpg'), - ('0771079567', 'Cinnamon Gardens', 'https://images.isbndb.com/covers/95/66/9780771079566.jpg'), - ('0571212212', 'That They May Face The Rising Sun', 'https://images.isbndb.com/covers/22/17/9780571212217.jpg'), - ('0671439162', 'The White Hotel', 'https://images.isbndb.com/covers/91/63/9780671439163.jpg'), - ('0345419073', 'Walking Across Egypt (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/90/71/9780345419071.jpg'), - ('0590419447', 'The Return Of The Third-Grade Ghosthunters (A Little Apple Paperback)', 'https://images.isbndb.com/covers/94/44/9780590419444.jpg'), - ('0425166090', 'Girls R.U.L.E. #1', 'https://images.isbndb.com/covers/60/93/9780425166093.jpg'), - ('0440227011', 'Leonardo DiCaprio: A MODERN DAY ROMEO (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/70/14/9780440227014.jpg'), - ('067188784X', 'Will Power! A Biography Of Will Smith', 'https://images.isbndb.com/covers/78/41/9780671887841.jpg'), - ('0671041657', 'Whispers From The Past (Charmed)', 'https://images.isbndb.com/covers/16/56/9780671041656.jpg'), - ('0894808249', 'All I Need To Know I Learned From My Cat', 'https://images.isbndb.com/covers/82/41/9780894808241.jpg'), - ('0590475363', 'The Boxcar Children: The Mystery Of The Missing Cat', 'https://images.isbndb.com/covers/53/65/9780590475365.jpg'), - ('044021873X', 'Windy City Blues (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/87/39/9780440218739.jpg'), - ('0449223345', 'A Pirate Looks At Fifty', 'https://images.isbndb.com/covers/33/45/9780449223345.jpg'), - ('0764227890', 'Heroes At Home: Help And Hope For America''s Military Families', 'https://images.isbndb.com/covers/78/99/9780764227899.jpg'), - ('0060244151', 'Betsy-Tacy', 'https://images.isbndb.com/covers/41/56/9780060244156.jpg'), - ('0684829223', 'We''re History!: The 20th-Century Survivor''s Final Exam', 'https://images.isbndb.com/covers/92/27/9780684829227.jpg'), - ('1573060313', 'Hawaii''s Best Spooky Tales: True Local Spine-Tinglers', 'https://images.isbndb.com/covers/03/18/9781573060318.jpg'), - ('0881337269', 'Grassroots Organizations: A Resource Book For Directors, Staff, And Volunteers Of Small, Community-Based, Nonprofit Agencies', 'https://images.isbndb.com/covers/72/66/9780881337266.jpg'), - ('0671872648', 'The Last Vampire', 'https://images.isbndb.com/covers/26/49/9780671872649.jpg'), - ('0375758585', 'The World At Night: A Novel', 'https://images.isbndb.com/covers/85/84/9780375758584.jpg'), - ('0061013579', 'Johnny Cash: The Autobiography', 'https://images.isbndb.com/covers/35/77/9780061013577.jpg'), - ('0449223833', 'The Deep Blue Good-by', 'https://images.isbndb.com/covers/38/33/9780449223833.jpg'), - ('0394520939', 'Eleni', 'https://images.isbndb.com/covers/09/33/9780394520933.jpg'), - ('0394583256', 'Legacies: A Chinese Mosaic', 'https://images.isbndb.com/covers/32/59/9780394583259.jpg'), - ('0316592382', 'Fearless Jones (Fearless Jones Novel, No.1)', 'https://images.isbndb.com/covers/23/83/9780316592383.jpg'), - ('0439372941', 'Chasing Vermeer', 'https://images.isbndb.com/covers/29/47/9780439372947.jpg'), - ('039913543X', 'Shadow Prey', 'https://images.isbndb.com/covers/54/39/9780399135439.jpg'), - ('0517092816', 'Tony Hillerman : Three Jim Chee Mysteries ( People Of Darkness / The Dark Wind / The Ghostway )', 'https://images.isbndb.com/covers/28/11/9780517092811.jpg'), - ('0679412956', 'Lasher (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/29/53/9780679412953.jpg'), - ('0394423291', 'Tar Baby', 'https://images.isbndb.com/covers/32/96/9780394423296.jpg'), - ('0688156142', 'The Forgotten: A Peter Decker/Rina Lazarus Novel', 'https://images.isbndb.com/covers/61/45/9780688156145.jpg'), - ('0399137734', 'Dragon Tears', 'https://images.isbndb.com/covers/77/30/9780399137730.jpg'), - ('0316955191', 'The Hope, A Novel', 'https://images.isbndb.com/covers/51/95/9780316955195.jpg'), - ('0515123498', 'Night Passage (Jesse Stone Novels)', 'https://images.isbndb.com/covers/34/94/9780515123494.jpg'), - ('0439139600', 'Harry Potter And The Goblet Of Fire (Book 4)', 'https://images.isbndb.com/covers/96/01/9780439139601.jpg'), - ('0670894370', 'A Common Life (The Mitford Years, Book 6)', 'https://images.isbndb.com/covers/43/76/9780670894376.jpg'), - ('0441007554', 'All Tomorrow''s Parties', 'https://images.isbndb.com/covers/75/54/9780441007554.jpg'), - ('1555910807', 'Biblioholism: The Literary Addiction', 'https://images.isbndb.com/covers/08/08/9781555910808.jpg'), - ('0553271105', 'Shane', 'https://images.isbndb.com/covers/11/02/9780553271102.jpg'), - ('0385495641', 'Ghost Soldiers: The Forgotten Epic Story Of World War II''s Most Dramatic Mission', 'https://images.isbndb.com/covers/56/46/9780385495646.jpg'), - ('0670031208', 'Shepherds Abiding', 'https://images.isbndb.com/covers/12/07/9780670031207.jpg'), - ('0525246606', 'Koko', 'https://images.isbndb.com/covers/66/02/9780525246602.jpg'), - ('1880238667', 'News Of Home (A. Poulin, Jr. New Poets Of America)', 'https://images.isbndb.com/covers/86/60/9781880238660.jpg'), - ('0822315890', 'Spreading The Word: Poetry And The Survival Of Community In America', 'https://images.isbndb.com/covers/58/96/9780822315896.jpg'), - ('0140100032', 'Ian Shoales'' Perfect World', 'https://images.isbndb.com/covers/00/37/9780140100037.jpg'), - ('0684870673', 'Laboratory Investigations: AP Environmental Science Lab Manual', 'https://images.isbndb.com/covers/06/70/9780684870670.jpg'), - ('093914994X', 'The Curious Eat Themselves: An Alaskan Mystery', 'https://images.isbndb.com/covers/99/40/9780939149940.jpg'), - ('0552143774', 'Horse Whisperer', 'https://images.isbndb.com/covers/37/76/9780552143776.jpg'), - ('0886193540', 'Sleepwalker', 'https://images.isbndb.com/covers/35/46/9780886193546.jpg'), - ('0142004278', 'Big Fish (movie Tie-in): A Novel Of Mythic Proportions', 'https://images.isbndb.com/covers/42/72/9780142004272.jpg'), - ('0451192036', 'Black Like Me', 'https://images.isbndb.com/covers/20/35/9780451192035.jpg'), - ('0310217598', 'Word Of Honor (Newpointe 911 Series #3)', 'https://images.isbndb.com/covers/75/96/9780310217596.jpg'), - ('031021758X', 'Shadow Of Doubt (Newpointe 911 Series #2)', 'https://images.isbndb.com/covers/75/89/9780310217589.jpg'), - ('1568654782', 'Shunning', 'https://images.isbndb.com/covers/47/82/9781568654782.jpg'), - ('0140434186', 'Wuthering Heights (Penguin Classics)', 'https://images.isbndb.com/covers/41/87/9780140434187.jpg'), - ('0141182458', 'Dubliners (Penguin Modern Classics)', 'https://images.isbndb.com/covers/24/52/9780141182452.jpg'), - ('0595140459', 'I Married Dr. Jekyll And Woke Up Mrs. Hyde: Or What Happens To Love?', 'https://images.isbndb.com/covers/04/59/9780595140459.jpg'), - ('0913559482', 'The Autobiography Of Maria Callas: A Novel', 'https://images.isbndb.com/covers/94/82/9780913559482.jpg'), - ('0517189186', 'Clan Of The Cave Bear (Earth''s Children)', 'https://images.isbndb.com/covers/91/84/9780517189184.jpg'), - ('0374148570', 'Eucalyptus', 'https://images.isbndb.com/covers/85/77/9780374148577.jpg'), - ('9681336089', 'Vivir Para Contarla / To Live To Tell It (Spanish) (Spanish Edition)', 'https://images.isbndb.com/covers/60/80/9789681336080.jpg'), - ('0375700668', 'A Samba For Sherlock: A Novel', 'https://images.isbndb.com/covers/06/68/9780375700668.jpg'), - ('0743204239', 'Lo Es (Tis): Una Memoria (A Memoir) (Spanish Edition)', 'https://images.isbndb.com/covers/42/31/9780743204231.jpg'), - ('0192833863', 'Dracula (Oxford World''s Classics)', 'https://images.isbndb.com/covers/38/60/9780192833860.jpg'), - ('067931041X', 'The Dominion Of Wyley McFadden', 'https://images.isbndb.com/covers/04/19/9780679310419.jpg'), - ('0805041508', 'Last Rites: A Crime Novel (Charles Resnick Novels)', 'https://images.isbndb.com/covers/15/07/9780805041507.jpg'), - ('0380977702', 'Shadows Of Sin (Jessie Drake Mysteries)', 'https://images.isbndb.com/covers/77/03/9780380977703.jpg'), - ('096774590X', 'Lofting', 'https://images.isbndb.com/covers/59/09/9780967745909.jpg'), - ('0446531480', 'A Body To Die For', 'https://images.isbndb.com/covers/14/81/9780446531481.jpg'), - ('3442353971', 'Geheimakte Proteus', 'https://images.isbndb.com/covers/39/72/9783442353972.jpg'), - ('0451207645', 'The Oath', 'https://images.isbndb.com/covers/76/47/9780451207647.jpg'), - ('0316092738', 'I Will Sing Life: Voices From The Hole In The Wall Gang Camp', 'https://images.isbndb.com/covers/27/39/9780316092739.jpg'), - ('0743428188', 'The Twentieth Wife: A Novel', 'https://images.isbndb.com/covers/81/87/9780743428187.jpg'), - ('0590598856', 'Dumb And Dumber Joke Book', 'https://images.isbndb.com/covers/88/59/9780590598859.jpg'), - ('0061000078', 'Billy Bathgate: A Novel', 'https://images.isbndb.com/covers/00/72/9780061000072.jpg'), - ('0671670689', 'Dawn (Cutler Family)', 'https://images.isbndb.com/covers/06/89/9780671670689.jpg'), - ('0449000869', 'Ashworth Hall (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/08/61/9780449000861.jpg'), - ('0446605581', 'Fat Tuesday', 'https://images.isbndb.com/covers/55/88/9780446605588.jpg'), - ('0441694543', 'Quozl', 'https://images.isbndb.com/covers/45/49/9780441694549.jpg'), - ('044640344X', 'Smoke', 'https://images.isbndb.com/covers/34/43/9780446403443.jpg'), - ('1572972181', 'Crow: City Of Angels', 'https://images.isbndb.com/covers/21/86/9781572972186.jpg'), - ('0345395069', 'Reign In Hell', 'https://images.isbndb.com/covers/50/61/9780345395061.jpg'), - ('0425148343', 'Wednesday''s Child (Inspector Banks Mystery)', 'https://images.isbndb.com/covers/83/41/9780425148341.jpg'), - ('0515117552', 'Pure Instinct', 'https://images.isbndb.com/covers/75/54/9780515117554.jpg'), - ('042514545X', 'Fool''s Puzzle (Benni Harper Mystery)', 'https://images.isbndb.com/covers/54/56/9780425145456.jpg'), - ('0553298836', 'Copy Kat (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/88/33/9780553298833.jpg'), - ('0425156729', 'Gallow''s View', 'https://images.isbndb.com/covers/67/28/9780425156728.jpg'), - ('042516988X', 'Stray Kat Waltz (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/98/89/9780425169889.jpg'), - ('0380794772', 'In A Dry Season (Inspector Banks Novels)', 'https://images.isbndb.com/covers/47/75/9780380794775.jpg'), - ('0671011375', 'Death Du Jour (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/13/76/9780671011376.jpg'), - ('0515124796', 'Cold Blood', 'https://images.isbndb.com/covers/47/98/9780515124798.jpg'), - ('0515126489', 'Critical Mass', 'https://images.isbndb.com/covers/64/88/9780515126488.jpg'), - ('0679753826', 'Mohawk', 'https://images.isbndb.com/covers/38/27/9780679753827.jpg'), - ('0380974282', 'The Purification Ceremony', 'https://images.isbndb.com/covers/42/83/9780380974283.jpg'), - ('0684196778', 'Hangman''s Root: A China Bayles Mystery', 'https://images.isbndb.com/covers/67/70/9780684196770.jpg'), - ('0399142851', 'Unnatural Exposure', 'https://images.isbndb.com/covers/28/57/9780399142857.jpg'), - ('0399146253', 'The Last Precinct (A Scarpetta Novel)', 'https://images.isbndb.com/covers/62/51/9780399146251.jpg'), - ('0316693294', 'Cat And Mouse (Alex Cross Novels)', 'https://images.isbndb.com/covers/32/95/9780316693295.jpg'), - ('0892964111', 'Poor Butterfly', 'https://images.isbndb.com/covers/41/16/9780892964116.jpg'), - ('0671042742', 'The Honourable Schoolboy', 'https://images.isbndb.com/covers/27/45/9780671042745.jpg'), - ('0385480385', 'Wilderness Of Mirrors', 'https://images.isbndb.com/covers/03/83/9780385480383.jpg'), - ('0385488424', 'Sunset Limited', 'https://images.isbndb.com/covers/84/26/9780385488426.jpg'), - ('0553096834', 'Couplehood', 'https://images.isbndb.com/covers/68/35/9780553096835.jpg'), - ('0425130746', 'Sisters In Crime 4', 'https://images.isbndb.com/covers/07/42/9780425130742.jpg'), - ('0553102133', 'The Last Family', 'https://images.isbndb.com/covers/21/30/9780553102130.jpg'), - ('0345391330', 'Perfect Justice', 'https://images.isbndb.com/covers/13/39/9780345391339.jpg'), - ('0345334019', 'Escape The Night', 'https://images.isbndb.com/covers/40/15/9780345334015.jpg'), - ('055356966X', 'By Evil Means (A Phoebe Siegel Mystery)', 'https://images.isbndb.com/covers/96/67/9780553569667.jpg'), - ('0553574663', 'The Grilling Season (Goldy Culinary Mysteries, Book 7)', 'https://images.isbndb.com/covers/46/61/9780553574661.jpg'), - ('0451180054', 'Trial By Fire', 'https://images.isbndb.com/covers/00/56/9780451180056.jpg'), - ('0812590554', 'White Smoke: A Novel Of Papal Election', 'https://images.isbndb.com/covers/05/55/9780812590555.jpg'), - ('055357924X', 'Kissed A Sad Goodbye (Duncan Kincaid/Gemma James Novels)', 'https://images.isbndb.com/covers/92/46/9780553579246.jpg'), - ('0061093920', 'Render Up The Body: A Novel Of Suspense', 'https://images.isbndb.com/covers/39/20/9780061093920.jpg'), - ('0671898779', 'Rescue: A John Cuddy Mystery', 'https://images.isbndb.com/covers/87/79/9780671898779.jpg'), - ('0812571991', 'Legacies: A Repairman Jack Novel (Repairman Jack Novels)', 'https://images.isbndb.com/covers/19/98/9780812571998.jpg'), - ('0451199650', 'Stealing Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/96/52/9780451199652.jpg'), - ('0451197429', 'The Disappearance', 'https://images.isbndb.com/covers/74/29/9780451197429.jpg'), - ('0553102346', 'Deception On His Mind', 'https://images.isbndb.com/covers/23/45/9780553102345.jpg'), - ('0399146504', 'The Devil''s Code', 'https://images.isbndb.com/covers/65/03/9780399146503.jpg'), - ('0312143648', 'Malice Prepense', 'https://images.isbndb.com/covers/36/40/9780312143640.jpg'), - ('0553099590', 'Guilty As Sin', 'https://images.isbndb.com/covers/95/91/9780553099591.jpg'), - ('038530000X', 'A Woman''s Eye', 'https://images.isbndb.com/covers/00/01/9780385300001.jpg'), - ('3499233312', 'Wie Die Tiere', 'https://images.isbndb.com/covers/33/19/9783499233319.jpg'), - ('0140620508', 'Ivanhoe', 'https://images.isbndb.com/covers/05/04/9780140620504.jpg'), - ('1895565545', 'The Group Of Seven And Tom Thomson: An Introduction', 'https://images.isbndb.com/covers/55/46/9781895565546.jpg'), - ('0416469604', 'Tao Of Pooh', 'https://images.isbndb.com/covers/96/08/9780416469608.jpg'), - ('1841120685', '?What If!: How To Start A Creative Revolution At Work', 'https://images.isbndb.com/covers/06/83/9781841120683.jpg'), - ('0044402449', 'Immortal Blood', 'https://images.isbndb.com/covers/24/42/9780044402442.jpg'), - ('0749425628', 'How To Be Better At-- Managing Change', 'https://images.isbndb.com/covers/56/23/9780749425623.jpg'), - ('0273622218', 'All Change: Project Manager''s Secret Handbook (Financial Times Management)', 'https://images.isbndb.com/covers/22/15/9780273622215.jpg'), - ('0751530328', 'Thin Air', 'https://images.isbndb.com/covers/03/22/9780751530322.jpg'), - ('0140431020', 'Lady Susan, The Watsons, Sanditon (Penguin Classics)', 'https://images.isbndb.com/covers/10/25/9780140431025.jpg'), - ('0749418222', 'Develop Your Assertiveness (Better Management Skills Series)', 'https://images.isbndb.com/covers/82/29/9780749418229.jpg'), - ('0241141095', 'Hotel World', 'https://images.isbndb.com/covers/10/90/9780241141090.jpg'), - ('0450547434', 'Creed', 'https://images.isbndb.com/covers/74/30/9780450547430.jpg'), - ('0340766638', 'Sweet Dreams Are Made Of This A Dark Fai', 'https://images.isbndb.com/covers/66/37/9780340766637.jpg'), - ('0860680649', 'Surfacing', 'https://images.isbndb.com/covers/06/42/9780860680642.jpg'), - ('0140040021', 'The Hothouse By The East River', 'https://images.isbndb.com/covers/00/29/9780140040029.jpg'), - ('2253098183', 'Vérité', 'https://images.isbndb.com/covers/81/88/9782253098188.jpg'), - ('0312997159', 'A Summer In The Country', 'https://images.isbndb.com/covers/71/51/9780312997151.jpg'), - ('0786890061', 'No Witnesses', 'https://images.isbndb.com/covers/00/64/9780786890064.jpg'), - ('0553279378', 'I Know Why The Caged Bird Sings', 'https://images.isbndb.com/covers/93/75/9780553279375.jpg'), - ('0440209986', 'Not Exactly A Brahmin', 'https://images.isbndb.com/covers/99/80/9780440209980.jpg'), - ('0380788640', 'Murder On The Yukon Quest: An Alaska Mystery', 'https://images.isbndb.com/covers/86/44/9780380788644.jpg'), - ('0380788632', 'Death Takes Passage (Alaska Mysteries)', 'https://images.isbndb.com/covers/86/37/9780380788637.jpg'), - ('0380717581', 'Murder On The Iditarod Trail (Alaska Mysteries)', 'https://images.isbndb.com/covers/75/83/9780380717583.jpg'), - ('0684826143', 'The Funeral Makers', 'https://images.isbndb.com/covers/61/41/9780684826141.jpg'), - ('1551666987', 'Marriage By The Book', 'https://images.isbndb.com/covers/69/83/9781551666983.jpg'), - ('0425176037', 'Shell Game (Kathleen Mallory Novels)', 'https://images.isbndb.com/covers/60/30/9780425176030.jpg'), - ('0156013126', 'The Same Sea', 'https://images.isbndb.com/covers/31/23/9780156013123.jpg'), - ('0446610941', 'Misfortune: A Novel', 'https://images.isbndb.com/covers/09/40/9780446610940.jpg'), - ('0425083837', 'The Hunt For Red October (Jack Ryan)', 'https://images.isbndb.com/covers/38/33/9780425083833.jpg'), - ('0425135721', 'McNally''s Secret (Archy McNally)', 'https://images.isbndb.com/covers/57/23/9780425135723.jpg'), - ('0515130540', 'Meet Me At Midnight', 'https://images.isbndb.com/covers/05/46/9780515130546.jpg'), - ('0515090654', 'Twice Loved', 'https://images.isbndb.com/covers/06/59/9780515090659.jpg'), - ('0553292722', 'Still Waters: A Novel', 'https://images.isbndb.com/covers/27/25/9780553292725.jpg'), - ('0380721643', 'Track Of The Cat (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/16/41/9780380721641.jpg'), - ('0425183750', 'Blood Lure (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/37/55/9780425183755.jpg'), - ('0445408502', 'The Cheshire Cat''s Eye (A Sharon Mccone Mystery)', 'https://images.isbndb.com/covers/85/00/9780445408500.jpg'), - ('0553270486', 'Robert Half Way To Get Hired In Today''s', 'https://images.isbndb.com/covers/04/88/9780553270488.jpg'), - ('0380798573', 'The Falcon At The Portal (Amelia Peabody, Book 11)', 'https://images.isbndb.com/covers/85/75/9780380798575.jpg'), - ('0452282268', 'Le Mariage', 'https://images.isbndb.com/covers/22/61/9780452282261.jpg'), - ('0786867787', 'Spilling Clarence: A Novel', 'https://images.isbndb.com/covers/77/83/9780786867783.jpg'), - ('0307001253', 'Happy & Sad/Grouchy & Glad (A Little Golden Book)', 'https://images.isbndb.com/covers/12/52/9780307001252.jpg'), - ('0590484133', 'The Magic School Bus Hops Home: A Book About Animal Habitats', 'https://images.isbndb.com/covers/41/38/9780590484138.jpg'), - ('067982412X', 'The Knight At Dawn (Magic Tree House, No. 2)', 'https://images.isbndb.com/covers/41/21/9780679824121.jpg'), - ('0373227272', 'Confiscated Conception (Harlequin Intrigue)', 'https://images.isbndb.com/covers/72/73/9780373227273.jpg'), - ('0373872410', 'Loving Ways (Loving Series #3) (Love Inspired #231)', 'https://images.isbndb.com/covers/24/11/9780373872411.jpg'), - ('0671550578', 'The Star Group', 'https://images.isbndb.com/covers/05/78/9780671550578.jpg'), - ('0671550764', 'Christopher Pike''s Tales Of Terror #2', 'https://images.isbndb.com/covers/07/69/9780671550769.jpg'), - ('0373226918', 'The Bride''s Rescuer', 'https://images.isbndb.com/covers/69/17/9780373226917.jpg'), - ('0761118691', 'Father To Son: Life Lessons On Raising A Boy', 'https://images.isbndb.com/covers/86/95/9780761118695.jpg'), - ('0671680080', 'Star Trek V: The Final Frontier', 'https://images.isbndb.com/covers/00/84/9780671680084.jpg'), - ('0345354621', 'The Terminal Man', 'https://images.isbndb.com/covers/46/24/9780345354624.jpg'), - ('0671442686', 'The Restaurant At The End Of The Universe (Hitch-Hikers Guide To The Galaxy, No. 2)', 'https://images.isbndb.com/covers/26/82/9780671442682.jpg'), - ('0671525808', 'So Long, And Thanks For All The Fish', 'https://images.isbndb.com/covers/58/04/9780671525804.jpg'), - ('0671684027', 'Metamorphosis (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/40/20/9780671684020.jpg'), - ('0671701304', 'Gulliver''s Fugitives (Star Trek The Next Generation #11)', 'https://images.isbndb.com/covers/13/07/9780671701307.jpg'), - ('0380773066', 'Dark Mirror, Dark Dreams', 'https://images.isbndb.com/covers/30/60/9780380773060.jpg'), - ('0812516214', 'Dreams Underfoot: The Newford Collection', 'https://images.isbndb.com/covers/62/10/9780812516210.jpg'), - ('0446602299', 'Alien: Resurrection - The Novelization', 'https://images.isbndb.com/covers/22/97/9780446602297.jpg'), - ('0312954115', 'Cheapskate Monthly Money Makeover (Debt-Proof Living)', 'https://images.isbndb.com/covers/41/16/9780312954116.jpg'), - ('0671742493', 'Delta Of Venus', 'https://images.isbndb.com/covers/24/92/9780671742492.jpg'), - ('0451511328', 'Frankenstein (Signet Classics)', 'https://images.isbndb.com/covers/13/24/9780451511324.jpg'), - ('0671441515', 'Othello', 'https://images.isbndb.com/covers/15/17/9780671441517.jpg'), - ('0867211725', 'Elfquest: Journey To Sorrows End', 'https://images.isbndb.com/covers/17/26/9780867211726.jpg'), - ('0140111891', 'Mixed Blessings: Overcoming The Stumbling BLocks In An Interfaith Marriage', 'https://images.isbndb.com/covers/18/97/9780140111897.jpg'), - ('0061054143', 'Goblins (The X-Files, Bk. 1)', 'https://images.isbndb.com/covers/41/43/9780061054143.jpg'), - ('0449220893', 'Beast', 'https://images.isbndb.com/covers/08/94/9780449220894.jpg'), - ('0064420485', 'Wolfman Sam (Trophy Chapter Book)', 'https://images.isbndb.com/covers/04/88/9780064420488.jpg'), - ('0590939351', 'Stop That Eyeball! (Spencer''s Adventures)', 'https://images.isbndb.com/covers/93/55/9780590939355.jpg'), - ('078688214X', 'Hemingway In Love And War: The Lost Diary Of Agnes Von Kurowsky', 'https://images.isbndb.com/covers/21/44/9780786882144.jpg'), - ('0446391301', 'Geek Love', 'https://images.isbndb.com/covers/13/06/9780446391306.jpg'), - ('0743233026', 'Sin Killer', 'https://images.isbndb.com/covers/30/26/9780743233026.jpg'), - ('3442722403', 'Die Vier Söhne Des Doktor March.', 'https://images.isbndb.com/covers/24/02/9783442722402.jpg'), - ('3442720117', 'Und Nietzsche Weinte.', 'https://images.isbndb.com/covers/01/18/9783442720118.jpg'), - ('0140621873', 'American (Penguin Popular Classics)', 'https://images.isbndb.com/covers/18/77/9780140621877.jpg'), - ('0060119071', 'People Of Darkness', 'https://images.isbndb.com/covers/90/72/9780060119072.jpg'), - ('0875963234', 'The Men''s Health Guide To Peak Conditioning', 'https://images.isbndb.com/covers/32/35/9780875963235.jpg'), - ('0449911462', 'Think And Grow Rich', 'https://images.isbndb.com/covers/14/64/9780449911464.jpg'), - ('0931580587', 'Ain''t Nobody''s Business If You Do : The Absurdity Of Consensual Crimes In Our Free Country', 'https://images.isbndb.com/covers/05/81/9780931580581.jpg'), - ('0312123337', 'Lost Rights: The Destruction Of American Liberty', 'https://images.isbndb.com/covers/33/38/9780312123338.jpg'), - ('0965603695', 'The Great Libertarian Offer', 'https://images.isbndb.com/covers/36/90/9780965603690.jpg'), - ('0068596022', 'Restoring The American Dream', 'https://images.isbndb.com/covers/60/28/9780068596028.jpg'), - ('0066620732', 'Just For Fun: The Story Of An Accidental Revolutionary', 'https://images.isbndb.com/covers/07/32/9780066620732.jpg'), - ('0525446052', 'The Big Book For Peace', 'https://images.isbndb.com/covers/60/57/9780525446057.jpg'), - ('0440417449', 'I Love You So Much', 'https://images.isbndb.com/covers/74/46/9780440417446.jpg'), - ('970651452X', 'El Dominico Blanco (Spanish Edition)', 'https://images.isbndb.com/covers/45/23/9789706514523.jpg'), - ('0613282728', 'Adivina Cuanto Te Quiero (Guess How Much I Love You) (Spanish Edition)', 'https://images.isbndb.com/covers/27/27/9780613282727.jpg'), - ('0802130119', 'The Master And Margarita', 'https://images.isbndb.com/covers/01/12/9780802130112.jpg'), - ('0440224705', 'Hard Time (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/47/09/9780440224709.jpg'), - ('0312983867', 'Hard Eight (Stephanie Plum, No. 8)', 'https://images.isbndb.com/covers/38/64/9780312983864.jpg'), - ('045120994X', 'Fear Of Flying', 'https://images.isbndb.com/covers/99/48/9780451209948.jpg'), - ('0345459202', 'Big Stone Gap', 'https://images.isbndb.com/covers/92/06/9780345459206.jpg'), - ('0312955731', 'White Shark', 'https://images.isbndb.com/covers/57/31/9780312955731.jpg'), - ('0553205803', 'Even Cowgirls Get The Blues', 'https://images.isbndb.com/covers/58/00/9780553205800.jpg'), - ('0553541633', 'Diary Of A Young Girl', 'https://images.isbndb.com/covers/16/32/9780553541632.jpg'), - ('0684800713', 'The Sun Also Rises', 'https://images.isbndb.com/covers/07/14/9780684800714.jpg'), - ('1566840287', 'The Christmas Box', 'https://images.isbndb.com/covers/02/86/9781566840286.jpg'), - ('0062500260', 'Medicine Woman', 'https://images.isbndb.com/covers/02/67/9780062500267.jpg'), - ('0380793229', 'The Isle Of Battle (The Swans'' War, Book 2)', 'https://images.isbndb.com/covers/32/28/9780380793228.jpg'), - ('0345304659', 'Nirvana Blues', 'https://images.isbndb.com/covers/46/50/9780345304650.jpg'), - ('0786888083', 'Confessions Of A Dangerous Mind: An Unauthorized Autobiography', 'https://images.isbndb.com/covers/80/85/9780786888085.jpg'), - ('0345344464', 'The Milagro Beanfield War', 'https://images.isbndb.com/covers/44/65/9780345344465.jpg'), - ('0374115540', 'Borderliners', 'https://images.isbndb.com/covers/55/48/9780374115548.jpg'), - ('0671718436', 'Shampoo Planet', 'https://images.isbndb.com/covers/84/35/9780671718435.jpg'), - ('0684163268', 'The Old Man And The Sea', 'https://images.isbndb.com/covers/32/60/9780684163260.jpg'), - ('1400031346', 'The No. 1 Ladies'' Detective Agency', 'https://images.isbndb.com/covers/13/44/9781400031344.jpg'), - ('0754101495', 'In Endless Strife', 'https://images.isbndb.com/covers/14/99/9780754101499.jpg'), - ('0446524131', 'Something More: Excavating Your Authentic Self', 'https://images.isbndb.com/covers/41/31/9780446524131.jpg'), - ('0446612626', 'Reversible Errors', 'https://images.isbndb.com/covers/26/23/9780446612623.jpg'), - ('1565076613', 'Meet Me For Coffee', 'https://images.isbndb.com/covers/66/17/9781565076617.jpg'), - ('0316781142', 'The Last Time They Met: A Novel', 'https://images.isbndb.com/covers/11/45/9780316781145.jpg'), - ('0609801279', 'The Law Of Love', 'https://images.isbndb.com/covers/12/77/9780609801277.jpg'), - ('3257230915', 'Tagebuch 1920.', 'https://images.isbndb.com/covers/09/18/9783257230918.jpg'), - ('2035877393', 'L''Illusion Comique, Texte Intégral', 'https://images.isbndb.com/covers/73/90/9782035877390.jpg'), - ('2290301531', 'Plus Fort Que La Haine', 'https://images.isbndb.com/covers/15/31/9782290301531.jpg'), - ('2070374874', 'Cyrano De Bergerac', 'https://images.isbndb.com/covers/48/78/9782070374878.jpg'), - ('0060008024', 'Angels', 'https://images.isbndb.com/covers/80/24/9780060008024.jpg'), - ('3442725577', 'Münsters Fall: Roman', 'https://images.isbndb.com/covers/55/71/9783442725571.jpg'), - ('051511264X', 'Prime Witness (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/26/41/9780515112641.jpg'), - ('0425052028', 'The Confessions Of Phoebe Tyler', 'https://images.isbndb.com/covers/20/20/9780425052020.jpg'), - ('0330491199', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/11/98/9780330491198.jpg'), - ('0373709323', 'Cathryn: Circle Of Friends (Harlequin Superromance No. 932)', 'https://images.isbndb.com/covers/93/28/9780373709328.jpg'), - ('0373710062', 'First Daughter: The First Family Of Texas (Harlequin Superromance No. 1006)', 'https://images.isbndb.com/covers/00/65/9780373710065.jpg'), - ('0782141676', 'CCNA: Cisco Certified Network Associate Study Guide, Third Edition', 'https://images.isbndb.com/covers/16/72/9780782141672.jpg'), - ('0399526609', 'Lose Your Love Handles: A 3 Step Program To Streamline Your Waist In 30 Days', 'https://images.isbndb.com/covers/66/02/9780399526602.jpg'), - ('0345389417', 'Servant Of The Bones', 'https://images.isbndb.com/covers/94/11/9780345389411.jpg'), - ('0425147584', 'Debt Of Honor (Jack Ryan)', 'https://images.isbndb.com/covers/75/80/9780425147580.jpg'), - ('0451177037', 'Suspicion Of Guilt', 'https://images.isbndb.com/covers/70/32/9780451177032.jpg'), - ('0373710291', 'A Cowboy For Clementine: Home On The Ranch (Harlequin Superromance No. 1029)', 'https://images.isbndb.com/covers/02/94/9780373710294.jpg'), - ('0451406079', 'Black Wolf', 'https://images.isbndb.com/covers/60/71/9780451406071.jpg'), - ('0373471564', 'Rafferty''S Choice (Born In The Usa) (Colorado)', 'https://images.isbndb.com/covers/15/60/9780373471560.jpg'), - ('0373710267', 'Charlotte Moore', 'https://images.isbndb.com/covers/02/63/9780373710263.jpg'), - ('037370870X', 'Dream Baby (Harlequin Superromance, No. 870)', 'https://images.isbndb.com/covers/87/03/9780373708703.jpg'), - ('0373709307', 'That Summer Thing: Welcome To Riverbend (Harlequin Superromance No. 930)', 'https://images.isbndb.com/covers/93/04/9780373709304.jpg'), - ('0373708726', 'His Brother''s Bride (Men Of Glory) (Harlequin Superromance)', 'https://images.isbndb.com/covers/87/27/9780373708727.jpg'), - ('0373710283', 'Daughter Of Oklahoma: Hometown U.S.A. (Harlequin Superromance No. 1028)', 'https://images.isbndb.com/covers/02/87/9780373710287.jpg'), - ('0373710054', 'My Private Detective (Count On A Cop) (Harlequin Superromance, No. 1005)', 'https://images.isbndb.com/covers/00/58/9780373710058.jpg'), - ('0373710356', '14 Valentine Place (Harlequin Superromance No. 1035)', 'https://images.isbndb.com/covers/03/55/9780373710355.jpg'), - ('037371002X', 'Married In Montana: Big Sky Country (Harlequin Superromance No. 1002)', 'https://images.isbndb.com/covers/00/27/9780373710027.jpg'), - ('0373710259', 'True Heart: 9 Months Later (Harlequin Superromance No. 1025)', 'https://images.isbndb.com/covers/02/56/9780373710256.jpg'), - ('0373710275', 'Just Around The Corner: Shelter Valley Stories (Harlequin Superromance No. 1027)', 'https://images.isbndb.com/covers/02/70/9780373710270.jpg'), - ('0373484380', 'Gifts Of Fortune (3 Novels In 1): The Holiday Heir/ The Christmas House/ Maggie''s Miracle (Fortunes Children The Lost Hei)', 'https://images.isbndb.com/covers/43/86/9780373484386.jpg'), - ('0795151314', 'Dancing In Light', 'https://images.isbndb.com/covers/13/16/9780795151316.jpg'), - ('0940863332', 'On The Threshold Of A Dream Volume 2', 'https://images.isbndb.com/covers/33/30/9780940863330.jpg'), - ('1565924975', 'VI Editor Pocket Reference', 'https://images.isbndb.com/covers/49/70/9781565924970.jpg'), - ('0684853523', 'On Writing: A Memoir Of The Craft', 'https://images.isbndb.com/covers/35/29/9780684853529.jpg'), - ('0060193395', 'Body For Life: 12 Weeks To Mental And Physical Strength', 'https://images.isbndb.com/covers/33/93/9780060193393.jpg'), - ('0446363669', 'The Doomsday Conspiracy', 'https://images.isbndb.com/covers/36/62/9780446363662.jpg'), - ('0373471645', 'Intrusive Man (Born In The Usa) (Born In The USA, Indiana)', 'https://images.isbndb.com/covers/16/45/9780373471645.jpg'), - ('0373710208', 'Zoey Phillips: Girlfriends (Harlequin Superromance No. 1020)', 'https://images.isbndb.com/covers/02/01/9780373710201.jpg'), - ('0373710186', 'The Fire Within: America''s Bravest (Harlequin Superromance No. 1018)', 'https://images.isbndb.com/covers/01/88/9780373710188.jpg'), - ('0373484518', 'Midnight Clear (3 Novels In 1)', 'https://images.isbndb.com/covers/45/15/9780373484515.jpg'), - ('0373710216', 'We Saw Mommy Kissing Santa Claus (Harlequin Superromance No. 1021)', 'https://images.isbndb.com/covers/02/18/9780373710218.jpg'), - ('0373710070', 'Two Much Alike: Twins (Harlequin Superromance No. 1007)', 'https://images.isbndb.com/covers/00/72/9780373710072.jpg'), - ('0345339495', 'Nerilka''s Story (Dragonriders Of Pern Series)', 'https://images.isbndb.com/covers/94/92/9780345339492.jpg'), - ('0671525433', 'DARK ANGEL', 'https://images.isbndb.com/covers/54/39/9780671525439.jpg'), - ('0060675357', 'The Spiral Dance: A Rebirth Of The Ancient Religion Of The Great Goddess', 'https://images.isbndb.com/covers/53/56/9780060675356.jpg'), - ('0345302575', 'Smoke Ring', 'https://images.isbndb.com/covers/25/71/9780345302571.jpg'), - ('0812571231', 'Elvenborn (Halfblood Chronicles)', 'https://images.isbndb.com/covers/12/33/9780812571233.jpg'), - ('0345386868', 'Echoes Of The Well Of Souls (Watchers At The Well, Book 1)', 'https://images.isbndb.com/covers/68/61/9780345386861.jpg'), - ('0151002444', 'The Hidden Encyclical Of Pius XI', 'https://images.isbndb.com/covers/24/43/9780151002443.jpg'), - ('0312152000', 'Renaissance Moon', 'https://images.isbndb.com/covers/20/00/9780312152000.jpg'), - ('0452283442', 'The Darwin Awards: Evolution In Action (Darwin Awards (Plume Books))', 'https://images.isbndb.com/covers/34/42/9780452283442.jpg'), - ('0440918022', 'DRAGON''S BLOOD (Pit Dragon Chronicles)', 'https://images.isbndb.com/covers/80/28/9780440918028.jpg'), - ('1853260274', 'Gulliver''s Travels (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/02/78/9781853260278.jpg'), - ('081254949X', 'Ladylord', 'https://images.isbndb.com/covers/94/92/9780812549492.jpg'), - ('0345404319', 'Taltos (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/43/12/9780345404312.jpg'), - ('0671721887', 'The Spirit Ring', 'https://images.isbndb.com/covers/18/86/9780671721886.jpg'), - ('0671682830', 'HEAVEN', 'https://images.isbndb.com/covers/28/35/9780671682835.jpg'), - ('0688086888', 'And Eternity (Incarnations Of Immortality)', 'https://images.isbndb.com/covers/68/86/9780688086886.jpg'), - ('0312864663', 'Dream A Little Dream: A Tale Of Myth And Moonshine', 'https://images.isbndb.com/covers/46/68/9780312864668.jpg'), - ('0812510488', 'The Season Of Passage', 'https://images.isbndb.com/covers/04/85/9780812510485.jpg'), - ('0345441494', 'The Devil''s Cup: A History Of The World According To Coffee', 'https://images.isbndb.com/covers/14/92/9780345441492.jpg'), - ('0609609017', 'Ten Poems To Change Your Life', 'https://images.isbndb.com/covers/90/19/9780609609019.jpg'), - ('2253041939', 'Léon L''Africain', 'https://images.isbndb.com/covers/19/31/9782253041931.jpg'), - ('2020326450', 'Textes En Scène', 'https://images.isbndb.com/covers/64/52/9782020326452.jpg'), - ('0671015583', 'The Extra Man (Contemporary Classics (Washington Square Press))', 'https://images.isbndb.com/covers/55/89/9780671015589.jpg'), - ('0140248943', 'The Canadian Revolution: From Deference To Defiance', 'https://images.isbndb.com/covers/89/44/9780140248944.jpg'), - ('1894770099', 'Strike The Wok: An Anthology Of Contemporary Chinese Canadian Fiction', 'https://images.isbndb.com/covers/00/95/9781894770095.jpg'), - ('0571057063', 'Selected Poems', 'https://images.isbndb.com/covers/70/61/9780571057061.jpg'), - ('0670887315', 'Disgrace', 'https://images.isbndb.com/covers/73/16/9780670887316.jpg'), - ('0425098451', 'N Or M?', 'https://images.isbndb.com/covers/84/55/9780425098455.jpg'), - ('0804105138', 'Night Magic', 'https://images.isbndb.com/covers/51/32/9780804105132.jpg'), - ('0671664921', 'Satisfaction', 'https://images.isbndb.com/covers/49/23/9780671664923.jpg'), - ('0938665650', 'The Arctic To The Antarctica: Arctic Tern Sails The Americas', 'https://images.isbndb.com/covers/56/56/9780938665656.jpg'), - ('0553572245', 'Riding Shotgun', 'https://images.isbndb.com/covers/22/47/9780553572247.jpg'), - ('0373834756', 'Mistletoe Miracles: Dearest Eulalia / The Extra-Special Gift / The Doorstep Baby', 'https://images.isbndb.com/covers/47/54/9780373834754.jpg'), - ('1568652895', 'Homecoming', 'https://images.isbndb.com/covers/28/94/9781568652894.jpg'), - ('0786885912', 'The Lobster Chronicles: Life On A Very Small Island', 'https://images.isbndb.com/covers/59/16/9780786885916.jpg'), - ('0307101479', 'The Three Bears (Little Golden Book)', 'https://images.isbndb.com/covers/14/71/9780307101471.jpg'), - ('0061000299', 'Listening Woman (Joe Leaphorn Novels)', 'https://images.isbndb.com/covers/02/94/9780061000294.jpg'), - ('0380731207', 'The Night Of Four Hundred Rabbits', 'https://images.isbndb.com/covers/12/06/9780380731206.jpg'), - ('1550130684', 'The Lighthearted Cookbook: Recipes For Healthy Heart Cooking', 'https://images.isbndb.com/covers/06/83/9781550130683.jpg'), - ('0471142425', 'The HTML Sourcebook: A Complete Guide To HTML 3.0 (Sourcebooks)', 'https://images.isbndb.com/covers/24/23/9780471142423.jpg'), - ('0440413281', 'Bud, Not Buddy (Newbery Medal Winner, 2000)', 'https://images.isbndb.com/covers/32/88/9780440413288.jpg'), - ('0345432479', 'Crazy In Alabama', 'https://images.isbndb.com/covers/24/76/9780345432476.jpg'), - ('0446609560', 'The Hook', 'https://images.isbndb.com/covers/95/62/9780446609562.jpg'), - ('0449912108', 'The Witches Of Eastwick', 'https://images.isbndb.com/covers/21/02/9780449912102.jpg'), - ('0531150011', 'The Angel''s Dictionary: A Modern Tribute To Ambrose Bierce', 'https://images.isbndb.com/covers/00/16/9780531150016.jpg'), - ('067940712X', 'One True Thing', 'https://images.isbndb.com/covers/71/26/9780679407126.jpg'), - ('1896300421', 'Dispatches From A Borderless World', 'https://images.isbndb.com/covers/04/29/9781896300429.jpg'), - ('188259312X', 'Patty Jane''s House Of Curl: A Novel', 'https://images.isbndb.com/covers/31/25/9781882593125.jpg'), - ('0609810030', 'Love Stories Of World War II', 'https://images.isbndb.com/covers/00/33/9780609810033.jpg'), - ('0670894699', 'The Florabama Ladies'' Auxiliary & Sewing Circle', 'https://images.isbndb.com/covers/46/97/9780670894697.jpg'), - ('0452283086', 'The Cross-Country Quilters', 'https://images.isbndb.com/covers/30/84/9780452283084.jpg'), - ('0553573292', 'Bright Messengers: A New Novel Set In The Rama Universe', 'https://images.isbndb.com/covers/32/99/9780553573299.jpg'), - ('0448168278', 'Disney Wrld Of Riddl', 'https://images.isbndb.com/covers/82/72/9780448168272.jpg'), - ('0679810528', 'Wild, Wild Wolves (Step Into Reading)', 'https://images.isbndb.com/covers/05/20/9780679810520.jpg'), - ('0061000035', 'The Dark Wind (Jim Chee Novels)', 'https://images.isbndb.com/covers/00/34/9780061000034.jpg'), - ('038081093X', 'Excavation', 'https://images.isbndb.com/covers/09/32/9780380810932.jpg'), - ('2910188132', 'L''Alchimiste', 'https://images.isbndb.com/covers/81/39/9782910188139.jpg'), - ('0684867974', 'Take The Cannoli: Stories From The New World', 'https://images.isbndb.com/covers/79/77/9780684867977.jpg'), - ('0060924349', 'Maybe The Moon: A Novel', 'https://images.isbndb.com/covers/43/48/9780060924348.jpg'), - ('0373289170', 'The Devil Earl (Harlequin Historical, No 317)', 'https://images.isbndb.com/covers/91/72/9780373289172.jpg'), - ('0671627759', 'Ride The Thunder', 'https://images.isbndb.com/covers/77/51/9780671627751.jpg'), - ('0440225116', 'Secrecy', 'https://images.isbndb.com/covers/51/19/9780440225119.jpg'), - ('0316171638', 'Tangled Vines', 'https://images.isbndb.com/covers/16/32/9780316171632.jpg'), - ('0440214009', 'Treasures', 'https://images.isbndb.com/covers/40/07/9780440214007.jpg'), - ('342312203X', 'Der Ehrliche Lügner: Roman Von Tausendundeiner Lüge', 'https://images.isbndb.com/covers/20/30/9783423122030.jpg'), - ('3257211945', 'Das Hotel New Hampshire', 'https://images.isbndb.com/covers/19/48/9783257211948.jpg'), - ('3499156717', 'PanAroma: Jitterbug Perfume', 'https://images.isbndb.com/covers/67/17/9783499156717.jpg'), - ('3442448387', 'Der Gott Der Kleinen Dinge.', 'https://images.isbndb.com/covers/83/88/9783442448388.jpg'), - ('3257231008', 'Vendetta', 'https://images.isbndb.com/covers/10/07/9783257231007.jpg'), - ('0330346261', 'Acqua Alta', 'https://images.isbndb.com/covers/62/69/9780330346269.jpg'), - ('0671743481', 'The University Of Chicago Spanish - English English - Spanish Dictionary', 'https://images.isbndb.com/covers/34/82/9780671743482.jpg'), - ('067187876X', 'Armageddon', 'https://images.isbndb.com/covers/87/64/9780671878764.jpg'), - ('0140320431', 'Charlie And The Great Glass Elevator (Puffin Story Books) (French Edition)', 'https://images.isbndb.com/covers/04/35/9780140320435.jpg'), - ('0743471520', 'Thraxas', 'https://images.isbndb.com/covers/15/27/9780743471527.jpg'), - ('044166251X', 'Phule''s Company', 'https://images.isbndb.com/covers/25/17/9780441662517.jpg'), - ('0713724048', 'Time Travel: Fact, Fiction, & Possibility', 'https://images.isbndb.com/covers/40/42/9780713724042.jpg'), - ('0006727492', 'Berry Moon (Lions)', 'https://images.isbndb.com/covers/74/91/9780006727491.jpg'), - ('0440999197', 'The Young Unicorns', 'https://images.isbndb.com/covers/91/95/9780440999195.jpg'), - ('0471062189', 'Small Business Management (The Wiley Series In Management)', 'https://images.isbndb.com/covers/21/89/9780471062189.jpg'), - ('0375758453', 'Without Reservations: The Travels Of An Independent Woman', 'https://images.isbndb.com/covers/84/54/9780375758454.jpg'), - ('0843950552', 'The Infinite (Leisure Horror)', 'https://images.isbndb.com/covers/05/57/9780843950557.jpg'), - ('0553560719', 'Dark Force Rising (Star Wars: The Thrawn Trilogy, Book 2)', 'https://images.isbndb.com/covers/07/18/9780553560718.jpg'), - ('0451168615', 'Skeleton Crew', 'https://images.isbndb.com/covers/86/10/9780451168610.jpg'), - ('0028617363', 'The Complete Idiot''s Guide To Chess', 'https://images.isbndb.com/covers/73/67/9780028617367.jpg'), - ('0886779146', 'My Favorite Horror Story', 'https://images.isbndb.com/covers/91/46/9780886779146.jpg'), - ('0385334206', 'Breakfast Of Champions: A Novel', 'https://images.isbndb.com/covers/42/04/9780385334204.jpg'), - ('0671027492', 'Ghost Roads (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/74/90/9780671027490.jpg'), - ('1853260010', 'Wuthering Heights (Wordsworth Classics)', 'https://images.isbndb.com/covers/00/18/9781853260018.jpg'), - ('0449220605', 'He, She And It', 'https://images.isbndb.com/covers/06/03/9780449220603.jpg'), - ('0553379267', 'A Canticle For Leibowitz (Bantam Spectra Book)', 'https://images.isbndb.com/covers/92/66/9780553379266.jpg'), - ('1853260002', 'Pride & Prejudice (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/01/9781853260001.jpg'), - ('1853260614', 'Dr. Jekyll And Mr. Hyde (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/12/9781853260612.jpg'), - ('0553560735', 'Red Mars (Mars Trilogy)', 'https://images.isbndb.com/covers/07/32/9780553560732.jpg'), - ('0671027506', 'Sons Of Entropy(Buffy The Vampire Slayer Gatekeeper Trilogy)', 'https://images.isbndb.com/covers/75/06/9780671027506.jpg'), - ('0671024345', 'Out Of The Madhouse ( Buffy The Vampire Slayer )', 'https://images.isbndb.com/covers/43/45/9780671024345.jpg'), - ('0345384229', 'The Road To Madness', 'https://images.isbndb.com/covers/42/25/9780345384225.jpg'), - ('0449006883', 'Magic Terror', 'https://images.isbndb.com/covers/68/87/9780449006887.jpg'), - ('0060952822', 'The Simpsons Guide To Springfield', 'https://images.isbndb.com/covers/28/22/9780060952822.jpg'), - ('0553106651', 'Seize The Night', 'https://images.isbndb.com/covers/66/57/9780553106657.jpg'), - ('0671025538', 'The Titanic Disaster Hearings', 'https://images.isbndb.com/covers/55/33/9780671025533.jpg'), - ('0345413997', 'The Door Into Summer', 'https://images.isbndb.com/covers/39/94/9780345413994.jpg'), - ('1853260444', 'The Moonstone (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/04/45/9781853260445.jpg'), - ('1853260770', 'Woman In White (Wordsworth Classics)', 'https://images.isbndb.com/covers/07/73/9781853260773.jpg'), - ('0312863853', 'Robert Bloch: Appreciations Of The Master', 'https://images.isbndb.com/covers/38/52/9780312863852.jpg'), - ('0671026291', 'The Xander Years, Volume 1', 'https://images.isbndb.com/covers/62/95/9780671026295.jpg'), - ('0425099334', 'Shattered', 'https://images.isbndb.com/covers/93/39/9780425099339.jpg'), - ('3442541425', 'Anderer Leute Dreck', 'https://images.isbndb.com/covers/14/23/9783442541423.jpg'), - ('067972205X', 'The Story Of A Shipwrecked Sailor', 'https://images.isbndb.com/covers/20/52/9780679722052.jpg'), - ('0446912069', 'The Celestine Prophecy: A Pocket Guide To The Nine Insights', 'https://images.isbndb.com/covers/20/68/9780446912068.jpg'), - ('0802112803', 'October Eight O''Clock', 'https://images.isbndb.com/covers/28/04/9780802112804.jpg'), - ('0399135847', 'Billy', 'https://images.isbndb.com/covers/58/42/9780399135842.jpg'), - ('0813517508', 'Cruz Chronicles (Rutgers Press Fiction)', 'https://images.isbndb.com/covers/75/06/9780813517506.jpg'), - ('067978148X', 'The Rules Of Attraction', 'https://images.isbndb.com/covers/14/86/9780679781486.jpg'), - ('0871135701', 'Burmese Looking Glass: A Human Rights Adventure And A Jungle Revolution', 'https://images.isbndb.com/covers/57/04/9780871135704.jpg'), - ('1551667479', 'The Other Twin', 'https://images.isbndb.com/covers/74/78/9781551667478.jpg'), - ('0671027115', 'Lily Of The Valley', 'https://images.isbndb.com/covers/71/17/9780671027117.jpg'), - ('0671785141', 'My Own Country.', 'https://images.isbndb.com/covers/51/47/9780671785147.jpg'), - ('006000777X', 'The Lies That Bind: A Novel', 'https://images.isbndb.com/covers/77/75/9780060007775.jpg'), - ('0671891650', 'Pretty Boy Floyd', 'https://images.isbndb.com/covers/16/57/9780671891657.jpg'), - ('0060391022', 'A Village Affair', 'https://images.isbndb.com/covers/10/27/9780060391027.jpg'), - ('1577330080', 'Compassion For All Creatures', 'https://images.isbndb.com/covers/00/80/9781577330080.jpg'), - ('0786711035', 'Beasts (Otto Penzler Books)', 'https://images.isbndb.com/covers/10/31/9780786711031.jpg'), - ('0618263276', 'Special: A Novel', 'https://images.isbndb.com/covers/32/71/9780618263271.jpg'), - ('0684853507', 'Bag Of Bones', 'https://images.isbndb.com/covers/35/05/9780684853505.jpg'), - ('0385492235', 'An Invisible Sign Of My Own', 'https://images.isbndb.com/covers/22/32/9780385492232.jpg'), - ('0761516735', 'You Can Save The Animals: 251 Simple Ways To Stop Thoughtless Cruelty', 'https://images.isbndb.com/covers/67/36/9780761516736.jpg'), - ('0060931353', 'Cowboy: A Novel', 'https://images.isbndb.com/covers/13/53/9780060931353.jpg'), - ('0345407083', 'Do Unto Others', 'https://images.isbndb.com/covers/70/85/9780345407085.jpg'), - ('1570671222', 'Shopping Guide For Caring Consumers: A Guide To Products That Are Not Tested On Animals', 'https://images.isbndb.com/covers/12/27/9781570671227.jpg'), - ('080213338X', 'Try', 'https://images.isbndb.com/covers/33/80/9780802133380.jpg'), - ('0722513585', 'THE SINGLE VEGETARIAN: HEALTHY RECIPES FOR ONE', 'https://images.isbndb.com/covers/35/83/9780722513583.jpg'), - ('0385488947', 'Eleven Days: A Novel Of The Heartland', 'https://images.isbndb.com/covers/89/45/9780385488945.jpg'), - ('0446522422', 'One Better', 'https://images.isbndb.com/covers/24/27/9780446522427.jpg'), - ('0446522384', 'Charmed Circle', 'https://images.isbndb.com/covers/23/80/9780446522380.jpg'), - ('0345380673', 'No Man In The House', 'https://images.isbndb.com/covers/06/78/9780345380678.jpg'), - ('0446524182', 'How Close We Come: A Novel Of Women''s Friendships', 'https://images.isbndb.com/covers/41/86/9780446524186.jpg'), - ('0670865796', 'The Deep End Of The Ocean', 'https://images.isbndb.com/covers/57/96/9780670865796.jpg'), - ('0525241604', 'Prodigal Child', 'https://images.isbndb.com/covers/16/07/9780525241607.jpg'), - ('0399146296', 'Sarah''s Window: A Novel', 'https://images.isbndb.com/covers/62/99/9780399146299.jpg'), - ('031230238X', 'Alexandra: The Last Tsarina', 'https://images.isbndb.com/covers/23/82/9780312302382.jpg'), - ('0312859589', 'Shadow Of Ashland', 'https://images.isbndb.com/covers/95/89/9780312859589.jpg'), - ('0802139566', 'Fair Warning: A Novel', 'https://images.isbndb.com/covers/95/66/9780802139566.jpg'), - ('0805042156', 'The Feng Shui Handbook: How To Create A Healthier Living & Working Environment (Henry Holt Reference Book)', 'https://images.isbndb.com/covers/21/53/9780805042153.jpg'), - ('155870275X', 'Cover Letters That Will Get You The Job You Want', 'https://images.isbndb.com/covers/27/52/9781558702752.jpg'), - ('006019295X', 'Hello To The Cannibals: A Novel', 'https://images.isbndb.com/covers/29/52/9780060192952.jpg'), - ('0385484003', 'Bitch', 'https://images.isbndb.com/covers/40/08/9780385484008.jpg'), - ('0060185716', 'Triggerfish Twist: A Novel', 'https://images.isbndb.com/covers/57/18/9780060185718.jpg'), - ('0517163128', 'Friends Are Special', 'https://images.isbndb.com/covers/31/22/9780517163122.jpg'), - ('0671521004', 'The Journal Of Callie Wade', 'https://images.isbndb.com/covers/10/04/9780671521004.jpg'), - ('1401300065', 'Gasping For Airtime: Two Years In The Trenches Of Saturday Night Live', 'https://images.isbndb.com/covers/00/67/9781401300067.jpg'), - ('0061031542', 'Orange Crush', 'https://images.isbndb.com/covers/15/40/9780061031540.jpg'), - ('0618197338', 'The Best American Short Stories 2003', 'https://images.isbndb.com/covers/73/30/9780618197330.jpg'), - ('0399237232', 'Triss (Redwall, Book 15)', 'https://images.isbndb.com/covers/72/32/9780399237232.jpg'), - ('0316603570', '3rd Degree', 'https://images.isbndb.com/covers/35/77/9780316603577.jpg'), - ('0312318898', 'The Perfumed Sleeve: A Novel (Sano Ichiro Mystery)', 'https://images.isbndb.com/covers/88/95/9780312318895.jpg'), - ('0312289723', 'Ten Big Ones (Stephanie Plum, No. 10) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/97/20/9780312289720.jpg'), - ('0671659154', 'Sherlock Holmes And The Case Of Sabina Hall', 'https://images.isbndb.com/covers/91/58/9780671659158.jpg'), - ('0553801945', 'The Game', 'https://images.isbndb.com/covers/19/41/9780553801941.jpg'), - ('0811828301', 'Dog Bless America: Tails From The Road', 'https://images.isbndb.com/covers/83/07/9780811828307.jpg'), - ('0765347156', 'The Adventuress: An Irene Adler Novel', 'https://images.isbndb.com/covers/71/52/9780765347152.jpg'), - ('0740713949', 'A Little Look-See: Mutts 6', 'https://images.isbndb.com/covers/39/41/9780740713941.jpg'), - ('0836269195', 'Three Dog Bakery Cookbook: Over 50 Recipes For All-Natural Treats For Your Dog', 'https://images.isbndb.com/covers/91/92/9780836269192.jpg'), - ('0060745908', 'Wicked: The Life And Times Of The Wicked Witch Of The West (Musical Tie-in Edition)', 'https://images.isbndb.com/covers/59/05/9780060745905.jpg'), - ('0425192725', 'Q Is For Quarry (Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/27/26/9780425192726.jpg'), - ('0553579525', 'The Moor (Mary Russell Novels)', 'https://images.isbndb.com/covers/95/29/9780553579529.jpg'), - ('0380792745', 'The Lust Lizard Of Melancholy Cove', 'https://images.isbndb.com/covers/27/40/9780380792740.jpg'), - ('0688167829', 'Florida Roadkill', 'https://images.isbndb.com/covers/78/20/9780688167820.jpg'), - ('0812517024', 'Irene At Large: An Irene Adler Novel (Irene Adler Mysteries)', 'https://images.isbndb.com/covers/70/26/9780812517026.jpg'), - ('0399146652', 'The Cat Who Smelled A Rat', 'https://images.isbndb.com/covers/66/57/9780399146657.jpg'), - ('006056198X', 'Bleachy-Haired Honky Bitch: Tales From A Bad Neighborhood', 'https://images.isbndb.com/covers/19/87/9780060561987.jpg'), - ('0553573985', 'Gibbon''s Decline And Fall', 'https://images.isbndb.com/covers/39/85/9780553573985.jpg'), - ('0312065647', 'The Best Of Pulphouse: The Hardback Magazine', 'https://images.isbndb.com/covers/56/45/9780312065645.jpg'), - ('0671578448', 'The Unlikely Ones', 'https://images.isbndb.com/covers/84/42/9780671578442.jpg'), - ('0671042831', 'Moonlight On The Avenue Of Faith', 'https://images.isbndb.com/covers/28/37/9780671042837.jpg'), - ('0312199406', 'Night Of Many Dreams: A Novel', 'https://images.isbndb.com/covers/94/01/9780312199401.jpg'), - ('0393046974', 'House Of Sand And Fog (Oprah''s Book Club)', 'https://images.isbndb.com/covers/69/77/9780393046977.jpg'), - ('0312968884', 'Singing In The Shrouds', 'https://images.isbndb.com/covers/88/85/9780312968885.jpg'), - ('0756401356', 'The War Of The Flowers', 'https://images.isbndb.com/covers/13/51/9780756401351.jpg'), - ('0671656155', 'The Fall Of Atlantis', 'https://images.isbndb.com/covers/61/57/9780671656157.jpg'), - ('0968288308', 'Gang Ranch: The Real Story', 'https://images.isbndb.com/covers/83/06/9780968288306.jpg'), - ('0808514121', 'East Of Eden (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/41/21/9780808514121.jpg'), - ('0345450698', 'Clay''s Quilt (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/06/92/9780345450692.jpg'), - ('0375412530', 'Back When We Were Grownups: A Novel', 'https://images.isbndb.com/covers/25/30/9780375412530.jpg'), - ('0969799152', 'Alaska By Cruise Ship: The Complete Guide To The Alaska Cruise Experience', 'https://images.isbndb.com/covers/91/53/9780969799153.jpg'), - ('0696218364', 'Paige By Paige: A Year Of Trading Spaces', 'https://images.isbndb.com/covers/83/61/9780696218361.jpg'), - ('0787123730', 'Mother Of Pearl', 'https://images.isbndb.com/covers/37/34/9780787123734.jpg'), - ('1565115430', 'Girl In Hyacinth Blue (Highbridge Distribution)', 'https://images.isbndb.com/covers/54/39/9781565115439.jpg'), - ('1574533525', 'Dressing Up For The Carnival', 'https://images.isbndb.com/covers/35/21/9781574533521.jpg'), - ('0140285679', 'ABOUT A BOY.', 'https://images.isbndb.com/covers/56/73/9780140285673.jpg'), - ('0824518977', 'Divine Things: Seeking The Sacred In A Secular Age', 'https://images.isbndb.com/covers/89/74/9780824518974.jpg'), - ('0553569031', 'Gone, But Not Forgotten', 'https://images.isbndb.com/covers/90/32/9780553569032.jpg'), - ('1558008764', 'Slow Waltz In Cedar Bend (Unabridged)', 'https://images.isbndb.com/covers/87/62/9781558008762.jpg'), - ('0553472704', 'Beach Music (BDD Audio)', 'https://images.isbndb.com/covers/27/07/9780553472707.jpg'), - ('1559273909', 'Anything Considered: A Novel', 'https://images.isbndb.com/covers/39/09/9781559273909.jpg'), - ('1402511787', 'Atonement', 'https://images.isbndb.com/covers/17/83/9781402511783.jpg'), - ('0671779664', 'Scarlett: The Sequel To Margaret Mitchell''s Gone With The Wind', 'https://images.isbndb.com/covers/96/65/9780671779665.jpg'), - ('0804114609', 'Patty Jane''s House Of Curl', 'https://images.isbndb.com/covers/46/08/9780804114608.jpg'), - ('0743249275', 'Lean Thinking: Banish Waste And Create Wealth In Your Corporation, Revised And Updated', 'https://images.isbndb.com/covers/92/70/9780743249270.jpg'), - ('0345438825', 'Angry Housewives Eating Bon Bons', 'https://images.isbndb.com/covers/88/29/9780345438829.jpg'), - ('0380868768', 'The Secret Diary Of Adrian Mole, Aged 13 3/4', 'https://images.isbndb.com/covers/87/66/9780380868766.jpg'), - ('039915079X', 'The Teeth Of The Tiger', 'https://images.isbndb.com/covers/07/91/9780399150791.jpg'), - ('0670894508', 'Cause Celeb', 'https://images.isbndb.com/covers/45/05/9780670894505.jpg'), - ('0312983743', 'Knock Me Off My Feet', 'https://images.isbndb.com/covers/37/41/9780312983741.jpg'), - ('069452526X', 'A Theory Of Relativity CD', 'https://images.isbndb.com/covers/52/63/9780694525263.jpg'), - ('0385729340', 'The Second Summer Of The Sisterhood (Sisterhood Of The Traveling Pants, Book 2)', 'https://images.isbndb.com/covers/93/45/9780385729345.jpg'), - ('0517122707', 'A Confederacy Of Dunces', 'https://images.isbndb.com/covers/27/09/9780517122709.jpg'), - ('0679463135', 'The Pursuit Of Alice Thrift', 'https://images.isbndb.com/covers/31/39/9780679463139.jpg'), - ('0375508716', 'Motherhood And Hollywood: How To Get A Job Like Mine', 'https://images.isbndb.com/covers/87/14/9780375508714.jpg'), - ('089281859X', 'The Templars And The Assassins: The Militia Of Heaven', 'https://images.isbndb.com/covers/85/94/9780892818594.jpg'), - ('075284332X', 'Bleeding Hearts (A Jack Harvey Novel)', 'https://images.isbndb.com/covers/33/22/9780752843322.jpg'), - ('9724115380', 'A Hora De Sertorio (Finisterra) (Portuguese Edition)', 'https://images.isbndb.com/covers/53/82/9789724115382.jpg'), - ('0451450523', 'The Last Unicorn', 'https://images.isbndb.com/covers/05/24/9780451450524.jpg'), - ('0752801716', 'When The Sky Fell In Search Of Atlantis', 'https://images.isbndb.com/covers/17/11/9780752801711.jpg'), - ('0330331973', 'River God', 'https://images.isbndb.com/covers/19/75/9780330331975.jpg'), - ('0006510019', 'K', 'https://images.isbndb.com/covers/00/17/9780006510017.jpg'), - ('058621089X', 'Judas Testament', 'https://images.isbndb.com/covers/08/95/9780586210895.jpg'), - ('0864423705', 'Lost Japan', 'https://images.isbndb.com/covers/37/02/9780864423702.jpg'), - ('4770016964', 'カタカナ練習ノート (POWER JAPANESE)', 'https://images.isbndb.com/covers/69/66/9784770016966.jpg'), - ('0586045449', 'Bomber', 'https://images.isbndb.com/covers/54/42/9780586045442.jpg'), - ('0586200967', 'The Blood God', 'https://images.isbndb.com/covers/09/64/9780586200964.jpg'), - ('0441132448', 'Cyberstealth', 'https://images.isbndb.com/covers/24/47/9780441132447.jpg'), - ('0553212427', 'Sherlock Holmes: The Complete Novels And Stories, Volume II (Bantam Classic)', 'https://images.isbndb.com/covers/24/26/9780553212426.jpg'), - ('0553212419', 'Sherlock Holmes: The Complete Novels And Stories, Vol. 1', 'https://images.isbndb.com/covers/24/19/9780553212419.jpg'), - ('0553577778', 'Infinity''s Shore (The Uplift Trilogy, Book 2)', 'https://images.isbndb.com/covers/77/78/9780553577778.jpg'), - ('0671037307', 'Water Of Life (The Wanderers)', 'https://images.isbndb.com/covers/73/07/9780671037307.jpg'), - ('0671037293', 'Song Of The Earth :2 (Earthlight)', 'https://images.isbndb.com/covers/72/91/9780671037291.jpg'), - ('0671037285', 'Circle And The Cross', 'https://images.isbndb.com/covers/72/84/9780671037284.jpg'), - ('031298328X', 'Full Tilt', 'https://images.isbndb.com/covers/32/84/9780312983284.jpg'), - ('0451205626', 'Cold Paradise (Stone Barrington)', 'https://images.isbndb.com/covers/56/29/9780451205629.jpg'), - ('0380802937', 'Someday My Prince', 'https://images.isbndb.com/covers/29/37/9780380802937.jpg'), - ('0446606456', 'An Isolated Incident', 'https://images.isbndb.com/covers/64/55/9780446606455.jpg'), - ('0449223043', 'Guardian', 'https://images.isbndb.com/covers/30/48/9780449223048.jpg'), - ('0553284118', 'Creature', 'https://images.isbndb.com/covers/41/19/9780553284119.jpg'), - ('0380802929', 'The Runaway Princess', 'https://images.isbndb.com/covers/29/20/9780380802920.jpg'), - ('0446364622', 'The Children Of Men', 'https://images.isbndb.com/covers/46/21/9780446364621.jpg'), - ('0140060898', 'The Mosquito Coast', 'https://images.isbndb.com/covers/08/98/9780140060898.jpg'), - ('0671737791', 'The Bride', 'https://images.isbndb.com/covers/77/95/9780671737795.jpg'), - ('0684826127', 'Water Witches', 'https://images.isbndb.com/covers/61/27/9780684826127.jpg'), - ('0060920335', 'Sure Of You', 'https://images.isbndb.com/covers/03/33/9780060920333.jpg'), - ('0345423135', 'The Magic Circle', 'https://images.isbndb.com/covers/31/39/9780345423139.jpg'), - ('1556613105', 'The Valiant Gunman (The House Of Winslow #14)', 'https://images.isbndb.com/covers/31/04/9781556613104.jpg'), - ('0373483937', 'Long Tall Texans: Emmett-Regan-Burke - LARGE TRADE PAPERBACK', 'https://images.isbndb.com/covers/39/38/9780373483938.jpg'), - ('0142002585', 'In This Mountain (The Mitford Years, Book 7)', 'https://images.isbndb.com/covers/25/82/9780142002582.jpg'), - ('0425068145', 'Promise Me The Dawn', 'https://images.isbndb.com/covers/81/44/9780425068144.jpg'), - ('0891079149', 'To Catch The Summer Wind (Seasons Of Intrigue, Book 5)', 'https://images.isbndb.com/covers/91/49/9780891079149.jpg'), - ('068482440X', 'Beachcombing For A Shipwrecked God', 'https://images.isbndb.com/covers/44/06/9780684824406.jpg'), - ('0373484488', 'Heaven On Earth', 'https://images.isbndb.com/covers/44/85/9780373484485.jpg'), - ('0764220314', 'Honor''s Pledge (Rocky Mountain Legacy #1) (Book 1)', 'https://images.isbndb.com/covers/03/19/9780764220319.jpg'), - ('0684800993', 'Our Noise', 'https://images.isbndb.com/covers/09/98/9780684800998.jpg'), - ('0451082028', 'Coma: Tie-In Edition (Signet)', 'https://images.isbndb.com/covers/20/22/9780451082022.jpg'), - ('0802726224', 'Abigail', 'https://images.isbndb.com/covers/62/23/9780802726223.jpg'), - ('0156002078', 'Silk Hope, NC (A Harvest Book) (Harvest American Writing)', 'https://images.isbndb.com/covers/20/73/9780156002073.jpg'), - ('0764223666', 'Evening Star (Sam Keaton: Legends Of Laramie, Book 1)', 'https://images.isbndb.com/covers/36/62/9780764223662.jpg'), - ('156476706X', 'Airwaves (Promises, A Romance)', 'https://images.isbndb.com/covers/70/66/9781564767066.jpg'), - ('0800757181', 'Daughter Of Joy (Brides Of Culdee Creek, Book 1)', 'https://images.isbndb.com/covers/71/82/9780800757182.jpg'), - ('1556618662', 'The Shunning (Heritage Of Lancaster County) (Book 1)', 'https://images.isbndb.com/covers/86/66/9781556618666.jpg'), - ('0891073906', 'This Present Darkness', 'https://images.isbndb.com/covers/39/01/9780891073901.jpg'), - ('187895105X', 'Huldah', 'https://images.isbndb.com/covers/10/52/9781878951052.jpg'), - ('0373218125', 'Mysterious', 'https://images.isbndb.com/covers/81/27/9780373218127.jpg'), - ('0380728133', 'Bloodsucking Fiends: A Love Story', 'https://images.isbndb.com/covers/81/38/9780380728138.jpg'), - ('1586420429', 'Kaddish In Dublin: An Inspector Matt Minogue Mystery', 'https://images.isbndb.com/covers/04/20/9781586420420.jpg'), - ('0060932147', 'The Book Of Laughter And Forgetting', 'https://images.isbndb.com/covers/21/45/9780060932145.jpg'), - ('0375724389', 'The Tie That Binds', 'https://images.isbndb.com/covers/43/81/9780375724381.jpg'), - ('0375422412', 'Three Junes', 'https://images.isbndb.com/covers/24/16/9780375422416.jpg'), - ('0764223291', 'The Redemption Of Sarah Cain', 'https://images.isbndb.com/covers/32/97/9780764223297.jpg'), - ('0449003981', 'A Patchwork Planet (Fawcett Book)', 'https://images.isbndb.com/covers/39/85/9780449003985.jpg'), - ('037570924X', 'An Equal Music: A Novel', 'https://images.isbndb.com/covers/92/41/9780375709241.jpg'), - ('0812930088', 'Starting And Running A Profitable Investment Club: The Official Guide From The National Association Of Investors Corporation Revised And Updated', 'https://images.isbndb.com/covers/00/85/9780812930085.jpg'), - ('0345435168', 'Open House: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/51/63/9780345435163.jpg'), - ('0786886323', 'Carter Beats The Devil', 'https://images.isbndb.com/covers/63/26/9780786886326.jpg'), - ('0747541604', 'Gashlycrumb Tinies', 'https://images.isbndb.com/covers/16/08/9780747541608.jpg'), - ('0840775717', 'The Third Millenium: A Novel', 'https://images.isbndb.com/covers/57/19/9780840775719.jpg'), - ('0061009482', 'The Sacrifice Of Tamar', 'https://images.isbndb.com/covers/94/88/9780061009488.jpg'), - ('0380730847', 'The Forgotten (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/08/41/9780380730841.jpg'), - ('0373243820', 'A Love Beyond Words (50th Book) (Harlequin Special Edition)', 'https://images.isbndb.com/covers/38/22/9780373243822.jpg'), - ('0373164394', 'Sunshine And Shadows (Harlequin American Romance)', 'https://images.isbndb.com/covers/43/94/9780373164394.jpg'), - ('0345441265', 'The Ladies Auxiliary (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/12/63/9780345441263.jpg'), - ('1573227528', 'Giving Up America', 'https://images.isbndb.com/covers/75/20/9781573227520.jpg'), - ('038078954X', 'Blood Money: A Mystery', 'https://images.isbndb.com/covers/95/42/9780380789542.jpg'), - ('0380819635', 'Lost In Your Arms (Governess Bride, Book 5)', 'https://images.isbndb.com/covers/96/38/9780380819638.jpg'), - ('0440221595', 'The Glass Lake', 'https://images.isbndb.com/covers/15/93/9780440221593.jpg'), - ('0316782475', 'The Dangerous Husband: A Novel', 'https://images.isbndb.com/covers/24/70/9780316782470.jpg'), - ('0525947299', 'No Second Chance', 'https://images.isbndb.com/covers/72/95/9780525947295.jpg'), - ('0140115773', 'What Am I Doing Here?', 'https://images.isbndb.com/covers/57/72/9780140115772.jpg'), - ('0060198184', 'The Lost Fleet: The Discovery Of A Sunken Armada From The Golden Age Of Piracy', 'https://images.isbndb.com/covers/81/83/9780060198183.jpg'), - ('0878332928', 'Citation: In A Class By Himself', 'https://images.isbndb.com/covers/29/22/9780878332922.jpg'), - ('0525947736', 'The Darwin Awards III: Survival Of The Fittest', 'https://images.isbndb.com/covers/77/38/9780525947738.jpg'), - ('0804119430', 'Horse Heaven', 'https://images.isbndb.com/covers/94/36/9780804119436.jpg'), - ('0618118810', 'The Best American Travel Writing 2003', 'https://images.isbndb.com/covers/88/16/9780618118816.jpg'), - ('0449906515', 'Dave Barry''s Only Travel Guide You''ll Ever Need', 'https://images.isbndb.com/covers/65/14/9780449906514.jpg'), - ('0671038443', 'The Devil''s Teardrop', 'https://images.isbndb.com/covers/84/41/9780671038441.jpg'), - ('0786884649', 'Confessions Of A Cineplex Heckler: Celluloid Tirades And Escapades', 'https://images.isbndb.com/covers/46/43/9780786884643.jpg'), - ('0786865539', 'My Goodness: A Cynic''s Short-Lived Search For Sainthood', 'https://images.isbndb.com/covers/55/36/9780786865536.jpg'), - ('0553263811', 'The Minds Of Billy Milligan', 'https://images.isbndb.com/covers/38/17/9780553263817.jpg'), - ('1857988884', 'Crescent City Rhapsody', 'https://images.isbndb.com/covers/88/88/9781857988888.jpg'), - ('0747256675', 'Gallery Whispers (Bob Skinner Mysteries)', 'https://images.isbndb.com/covers/66/70/9780747256670.jpg'), - ('0380767643', 'A Woman Without Lies', 'https://images.isbndb.com/covers/76/49/9780380767649.jpg'), - ('0440222656', 'The Horse Whisperer', 'https://images.isbndb.com/covers/26/51/9780440222651.jpg'), - ('0380569035', 'Earthly Powers', 'https://images.isbndb.com/covers/90/38/9780380569038.jpg'), - ('0380767635', 'Where The Heart Is', 'https://images.isbndb.com/covers/76/32/9780380767632.jpg'), - ('0380711982', 'Katherine: It''s Time : The Incredible True Story Of The Multiple Personalities Of Kit Castle', 'https://images.isbndb.com/covers/19/87/9780380711987.jpg'), - ('0312904568', 'Images', 'https://images.isbndb.com/covers/45/62/9780312904562.jpg'), - ('0452282063', 'Siam: Or The Woman Who Shot A Man', 'https://images.isbndb.com/covers/20/63/9780452282063.jpg'), - ('0192833170', 'Miss Julie And Other Plays (Oxford World''s Classics)', 'https://images.isbndb.com/covers/31/74/9780192833174.jpg'), - ('0140189351', 'Dangling Man (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/93/53/9780140189353.jpg'), - ('0671622021', 'Queen Of The Summer Stars', 'https://images.isbndb.com/covers/20/22/9780671622022.jpg'), - ('0486289990', 'This Side Of Paradise (Dover Thrift Editions)', 'https://images.isbndb.com/covers/99/91/9780486289991.jpg'), - ('0525468633', 'Postcards From No Man''s Land (Carnegie Medal Winner)', 'https://images.isbndb.com/covers/86/39/9780525468639.jpg'), - ('0441000150', 'Quantum Leap: The Wall', 'https://images.isbndb.com/covers/01/59/9780441000159.jpg'), - ('0671878662', 'Fiddler Fair', 'https://images.isbndb.com/covers/86/65/9780671878665.jpg'), - ('0070064547', 'Motherhood: The Second Oldest Profession', 'https://images.isbndb.com/covers/45/46/9780070064546.jpg'), - ('0897331222', 'An Afternoon To Kill', 'https://images.isbndb.com/covers/12/27/9780897331227.jpg'), - ('1557736022', 'Lesson In Murder', 'https://images.isbndb.com/covers/60/24/9781557736024.jpg'), - ('044022392X', 'The Keys To The Street', 'https://images.isbndb.com/covers/39/24/9780440223924.jpg'), - ('0446605913', 'Time To Depart (Marcus Didius Falco Mysteries)', 'https://images.isbndb.com/covers/59/15/9780446605915.jpg'), - ('0553254642', 'Some Buried Caesar (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/46/48/9780553254648.jpg'), - ('0553213806', 'The Dubliners', 'https://images.isbndb.com/covers/38/05/9780553213805.jpg'), - ('0451410025', 'I Am The Only Running Footman', 'https://images.isbndb.com/covers/00/23/9780451410023.jpg'), - ('0804118558', 'A Breach Of Promise (William Monk Novels)', 'https://images.isbndb.com/covers/85/52/9780804118552.jpg'), - ('0380808641', 'The Death Of An Irish Sinner: A Peter McGarr Mystery (Peter McGarr Mysteries)', 'https://images.isbndb.com/covers/86/49/9780380808649.jpg'), - ('1557735417', 'Holiday For Murder', 'https://images.isbndb.com/covers/54/16/9781557735416.jpg'), - ('0385722109', 'Hotel World', 'https://images.isbndb.com/covers/21/00/9780385722100.jpg'), - ('1931166196', 'World Leaders Speak: The Messiah Has Come', 'https://images.isbndb.com/covers/61/95/9781931166195.jpg'), - ('0947782753', 'Scottish Ghost Stories', 'https://images.isbndb.com/covers/27/57/9780947782757.jpg'), - ('0679433015', 'Servant Of The Bones', 'https://images.isbndb.com/covers/30/19/9780679433019.jpg'), - ('0394587863', 'The Witching Hour', 'https://images.isbndb.com/covers/78/68/9780394587868.jpg'), - ('0517150646', 'History Of The Devil And The Idea Of Evil', 'https://images.isbndb.com/covers/06/41/9780517150641.jpg'), - ('0440136482', 'Holy Blood, Holy Grail', 'https://images.isbndb.com/covers/64/84/9780440136484.jpg'), - ('0867163968', 'To Live As Francis Lived: A Guide For Secular Franciscans (The Path Of Franciscan Spirituality)', 'https://images.isbndb.com/covers/39/64/9780867163964.jpg'), - ('0883781042', 'The Isis Papers: The Keys To The Colors', 'https://images.isbndb.com/covers/10/43/9780883781043.jpg'), - ('0913866156', 'Aleister Crowley Thoth Tarot Deck', 'https://images.isbndb.com/covers/61/53/9780913866153.jpg'), - ('0094717907', 'The Grail: From Celtic Myth To Christian Symbol (Celtic Interest)', 'https://images.isbndb.com/covers/79/09/9780094717909.jpg'), - ('1887161120', 'A Soul''s Journey: Empowering The Present Through Past Life Regression, Reincarnation, Karma, And Past Life Memories Of The Holocaust. A Healing Guide To Your Spiritual Self.', 'https://images.isbndb.com/covers/11/21/9781887161121.jpg'), - ('0385188579', 'Astrological Aspects', 'https://images.isbndb.com/covers/85/79/9780385188579.jpg'), - ('0451196805', 'Past Lives, Present Loves (Visions, Signet)', 'https://images.isbndb.com/covers/68/04/9780451196804.jpg'), - ('0385132786', 'The Rising Sign: Your Astrological Mask', 'https://images.isbndb.com/covers/27/87/9780385132787.jpg'), - ('0671632949', 'Astrology And Your Past Lives', 'https://images.isbndb.com/covers/29/46/9780671632946.jpg'), - ('0767901576', 'Awakening The Buddha Within: Tibetan Wisdom For The Western World', 'https://images.isbndb.com/covers/15/74/9780767901574.jpg'), - ('0316899984', 'River, Cross My Heart: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/99/87/9780316899987.jpg'), - ('3423130180', 'Schwarzer Rücken Der Zeit', 'https://images.isbndb.com/covers/01/89/9783423130189.jpg'), - ('0671820478', 'Golem 100', 'https://images.isbndb.com/covers/04/73/9780671820473.jpg'), - ('0843947888', 'Among The Missing', 'https://images.isbndb.com/covers/78/85/9780843947885.jpg'), - ('0385471106', 'Good Bones And Simple Murders', 'https://images.isbndb.com/covers/11/07/9780385471107.jpg'), - ('014029628X', 'Girl In Hyacinth Blue', 'https://images.isbndb.com/covers/62/80/9780140296280.jpg'), - ('3473581534', 'Jenseits Des Großen Meeres: Die Flucht', 'https://images.isbndb.com/covers/15/35/9783473581535.jpg'), - ('0590425919', 'White Fang (Apple Classics)', 'https://images.isbndb.com/covers/59/19/9780590425919.jpg'), - ('0394719557', 'States Of Ireland', 'https://images.isbndb.com/covers/95/59/9780394719559.jpg'), - ('0441478123', 'The Left Hand Of Darkness', 'https://images.isbndb.com/covers/81/25/9780441478125.jpg'), - ('006019393X', 'If The Gods Had Meant Us To Vote They Would Have Given Us Candidates', 'https://images.isbndb.com/covers/39/35/9780060193935.jpg'), - ('0743428668', 'Into The Woods (Andrews, V. C.)', 'https://images.isbndb.com/covers/86/68/9780743428668.jpg'), - ('1568650426', 'Frenchman''s Creek', 'https://images.isbndb.com/covers/04/25/9781568650425.jpg'), - ('1571742859', 'Michael Landon''s Legacy: 7 Keys To Supercharging Your Life', 'https://images.isbndb.com/covers/28/58/9781571742858.jpg'), - ('3462030426', 'Ich Bin''s', 'https://images.isbndb.com/covers/04/26/9783462030426.jpg'), - ('3596125723', 'Catch 22', 'https://images.isbndb.com/covers/57/22/9783596125722.jpg'), - ('006097141X', 'That Night', 'https://images.isbndb.com/covers/14/10/9780060971410.jpg'), - ('0380974487', 'End Of Days', 'https://images.isbndb.com/covers/44/81/9780380974481.jpg'), - ('325706277X', 'Handbuch Des Kriegers Des Lichts', 'https://images.isbndb.com/covers/27/79/9783257062779.jpg'), - ('0517703491', 'Lloyd--What Happened: A Novel Of Business', 'https://images.isbndb.com/covers/34/96/9780517703496.jpg'), - ('0739412930', 'Stealing Shadows', 'https://images.isbndb.com/covers/29/30/9780739412930.jpg'), - ('0739413279', 'Don''t Close Your Eyes', 'https://images.isbndb.com/covers/32/72/9780739413272.jpg'), - ('0821749889', 'The Club', 'https://images.isbndb.com/covers/98/83/9780821749883.jpg'), - ('0373970196', 'Twist Of Fate', 'https://images.isbndb.com/covers/01/93/9780373970193.jpg'), - ('0553563734', 'The King''s Buccaneer', 'https://images.isbndb.com/covers/37/33/9780553563733.jpg'), - ('0515129224', 'Soft Focus', 'https://images.isbndb.com/covers/92/29/9780515129229.jpg'), - ('0671676237', 'The GOLDEN CHANCE', 'https://images.isbndb.com/covers/62/30/9780671676230.jpg'), - ('0553801813', 'The Widow''s Kiss', 'https://images.isbndb.com/covers/18/11/9780553801811.jpg'), - ('0380016974', 'Captive Bride', 'https://images.isbndb.com/covers/69/76/9780380016976.jpg'), - ('0380809087', 'The Defiant One', 'https://images.isbndb.com/covers/90/80/9780380809080.jpg'), - ('0609805509', 'Debbie Travis'' Painted House Living & Dining Rooms: 60 Stylish Projects To Transform Your Home', 'https://images.isbndb.com/covers/55/03/9780609805503.jpg'), - ('0886778158', 'The Burning Stone (Crown Of Stars, Vol. 3)', 'https://images.isbndb.com/covers/81/56/9780886778156.jpg'), - ('0886778166', 'Prince Of Dogs (Crown Of Stars, Vol 2)', 'https://images.isbndb.com/covers/81/63/9780886778163.jpg'), - ('0671025945', 'Weeping Angel', 'https://images.isbndb.com/covers/59/46/9780671025946.jpg'), - ('0441009077', 'Never After', 'https://images.isbndb.com/covers/90/77/9780441009077.jpg'), - ('0375509089', 'Loose Lips', 'https://images.isbndb.com/covers/90/87/9780375509087.jpg'), - ('0449005844', 'The Wild Child', 'https://images.isbndb.com/covers/58/42/9780449005842.jpg'), - ('044922046X', 'Catering To Nobody', 'https://images.isbndb.com/covers/04/67/9780449220467.jpg'), - ('0671877836', 'Honor Among Enemies (Honor Harrington #6)', 'https://images.isbndb.com/covers/78/35/9780671877835.jpg'), - ('0671876813', 'Flag In Exile (Honor Harrington Series, Book 5)', 'https://images.isbndb.com/covers/68/14/9780671876814.jpg'), - ('0441090435', 'Callahan''s Crosstime Saloon', 'https://images.isbndb.com/covers/04/33/9780441090433.jpg'), - ('0425181685', 'Narcissus In Chains (Anita Blake, Vampire Hunter, Book 10)', 'https://images.isbndb.com/covers/16/83/9780425181683.jpg'), - ('0743435583', 'Miles Errant (Miles Vorkosigan Adventures)', 'https://images.isbndb.com/covers/55/81/9780743435581.jpg'), - ('0515130923', 'Dawn In Eclipse Bay', 'https://images.isbndb.com/covers/09/28/9780515130928.jpg'), - ('055357762X', 'The Prisoner', 'https://images.isbndb.com/covers/76/24/9780553577624.jpg'), - ('0380802325', 'Suddenly You', 'https://images.isbndb.com/covers/23/26/9780380802326.jpg'), - ('0425173356', 'Cat And The Countess', 'https://images.isbndb.com/covers/33/50/9780425173350.jpg'), - ('0553572040', 'Killer Pancake (Goldy Culinary Mysteries, Book 5)', 'https://images.isbndb.com/covers/20/49/9780553572049.jpg'), - ('0671721631', 'On Basilisk Station', 'https://images.isbndb.com/covers/16/33/9780671721633.jpg'), - ('0345435273', 'A Caress Of Twilight (Meredith Gentry, Book 2)', 'https://images.isbndb.com/covers/52/79/9780345435279.jpg'), - ('0380814803', 'The Pursuit', 'https://images.isbndb.com/covers/48/00/9780380814800.jpg'), - ('0399149678', 'Finding Caruso', 'https://images.isbndb.com/covers/96/72/9780399149672.jpg'), - ('0671035460', 'Pale Horse Coming', 'https://images.isbndb.com/covers/54/64/9780671035464.jpg'), - ('0778320286', 'Changing Habits', 'https://images.isbndb.com/covers/02/89/9780778320289.jpg'), - ('0451212169', 'Bright Eyes (Coulter Family Series)', 'https://images.isbndb.com/covers/21/60/9780451212160.jpg'), - ('0671871005', 'The Wedding', 'https://images.isbndb.com/covers/10/00/9780671871000.jpg'), - ('0373218877', 'Navy Woman (The Navy Series #4) (Silhouette Special Edition, No 683)', 'https://images.isbndb.com/covers/88/75/9780373218875.jpg'), - ('0755308530', 'Singing Bird', 'https://images.isbndb.com/covers/85/38/9780755308538.jpg'), - ('0451188713', 'A Jury Of Her Peers', 'https://images.isbndb.com/covers/87/17/9780451188717.jpg'), - ('0974087203', 'Heart And Soul: What It Takes To Promote Health While Confronting Cancer', 'https://images.isbndb.com/covers/72/07/9780974087207.jpg'), - ('0316095133', 'Evening Class', 'https://images.isbndb.com/covers/51/36/9780316095136.jpg'), - ('1573221597', 'Hunting With Hemingway: Based On The Stories Of Leicester Hemingway', 'https://images.isbndb.com/covers/15/97/9781573221597.jpg'), - ('0064472272', 'Angus, Thongs And Full-Frontal Snogging: Confessions Of Georgia Nicolson (Confessions Of Georgia Nicolson, Book 1)', 'https://images.isbndb.com/covers/22/72/9780064472272.jpg'), - ('0440224748', 'Four Corners Of Night', 'https://images.isbndb.com/covers/47/47/9780440224747.jpg'), - ('3492229352', 'Das Italienische Mädchen', 'https://images.isbndb.com/covers/93/57/9783492229357.jpg'), - ('0140446745', 'The Letters Of Vincent Van Gogh (Penguin Classics)', 'https://images.isbndb.com/covers/67/46/9780140446746.jpg'), - ('0486285537', '100 Best-Loved Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/55/35/9780486285535.jpg'), - ('0805210555', 'Franz Kafka: The Complete Stories', 'https://images.isbndb.com/covers/05/52/9780805210552.jpg'), - ('0451628047', 'The Inferno', 'https://images.isbndb.com/covers/80/46/9780451628046.jpg'), - ('0689839618', 'Great Expectations', 'https://images.isbndb.com/covers/96/10/9780689839610.jpg'), - ('0670878073', 'Wobegon Boy', 'https://images.isbndb.com/covers/80/79/9780670878079.jpg'), - ('0440114330', 'Close Encounters Of The Third Kind', 'https://images.isbndb.com/covers/43/38/9780440114338.jpg'), - ('0061059323', 'The X-Files: Fight The Future', 'https://images.isbndb.com/covers/93/22/9780061059322.jpg'), - ('0764228943', 'A Tapestry Of Hope (Lights Of Lowell Series #1)', 'https://images.isbndb.com/covers/89/40/9780764228940.jpg'), - ('0764228072', 'The Betrayal', 'https://images.isbndb.com/covers/80/70/9780764228070.jpg'), - ('0880384433', 'Dueltrack (Car Wars Adventure Game Book)', 'https://images.isbndb.com/covers/44/38/9780880384438.jpg'), - ('0515128600', 'The Edge (FBI Series)', 'https://images.isbndb.com/covers/86/04/9780515128604.jpg'), - ('0553583980', 'True Blue', 'https://images.isbndb.com/covers/39/84/9780553583984.jpg'), - ('0515121843', 'Sea Swept (Chesapeake Bay, Book 1)', 'https://images.isbndb.com/covers/18/41/9780515121841.jpg'), - ('0553560220', 'Illusion', 'https://images.isbndb.com/covers/02/20/9780553560220.jpg'), - ('3423130148', 'Es Geht Seinen Gang Oder Mühen In Unserer Ebene: Roman', 'https://images.isbndb.com/covers/01/41/9783423130141.jpg'), - ('0312872372', 'Mistress Of The Pearl (The Pearl, Book 3)', 'https://images.isbndb.com/covers/23/73/9780312872373.jpg'), - ('0071364498', 'Gipsy Moth Circles The World (The Sailor''s Classics #1)', 'https://images.isbndb.com/covers/44/92/9780071364492.jpg'), - ('0486292568', 'Wuthering Heights (Dover Thrift Editions)', 'https://images.isbndb.com/covers/25/64/9780486292564.jpg'), - ('0312952716', 'A Simple Plan', 'https://images.isbndb.com/covers/27/16/9780312952716.jpg'), - ('0446357928', 'Child Star', 'https://images.isbndb.com/covers/79/20/9780446357920.jpg'), - ('0375714529', 'David Boring', 'https://images.isbndb.com/covers/45/28/9780375714528.jpg'), - ('0451527712', 'Frankenstein (Signet Classics)', 'https://images.isbndb.com/covers/77/14/9780451527714.jpg'), - ('1565049489', 'Immaculate *OP', 'https://images.isbndb.com/covers/94/82/9781565049482.jpg'), - ('0486270734', 'Favorite Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/39/9780486270739.jpg'), - ('1888054069', 'Alphonse Mucha: An American Collection (Vignettes)', 'https://images.isbndb.com/covers/40/64/9781888054064.jpg'), - ('087542001X', 'Extra-Terrestrials Among Us (Llewellyn''s Psi-Tech Series)', 'https://images.isbndb.com/covers/00/11/9780875420011.jpg'), - ('0671474308', '2000 Insults', 'https://images.isbndb.com/covers/43/00/9780671474300.jpg'), - ('0345432223', 'Leonardo: Up Close And Personal', 'https://images.isbndb.com/covers/22/23/9780345432223.jpg'), - ('0876544766', 'A Small Book Of Fairies', 'https://images.isbndb.com/covers/47/61/9780876544761.jpg'), - ('019283097X', 'The Master Pipers (Oxford World''s Classics)', 'https://images.isbndb.com/covers/09/75/9780192830975.jpg'), - ('0831705183', 'Ansel Adams: Images Of The American West', 'https://images.isbndb.com/covers/51/83/9780831705183.jpg'), - ('0451525892', 'Sense And Sensibility: Revised Edition (Signet Classic)', 'https://images.isbndb.com/covers/58/95/9780451525895.jpg'), - ('0446391360', 'Headlines', 'https://images.isbndb.com/covers/13/68/9780446391368.jpg'), - ('0060965819', 'The Simpsons Xmas Book', 'https://images.isbndb.com/covers/58/15/9780060965815.jpg'), - ('0385044011', 'Poems That Touch The Heart', 'https://images.isbndb.com/covers/40/11/9780385044011.jpg'), - ('0451520955', 'Moll Flanders (Signet Classics)', 'https://images.isbndb.com/covers/09/51/9780451520951.jpg'), - ('0446373559', 'Instant Astrology', 'https://images.isbndb.com/covers/35/55/9780446373555.jpg'), - ('0883657147', 'Best Loved Poems To Read Again And Again: The Most Moving Verses In The English Language', 'https://images.isbndb.com/covers/71/40/9780883657140.jpg'), - ('0671039415', 'Fearless #1', 'https://images.isbndb.com/covers/94/17/9780671039417.jpg'), - ('0156612062', 'Modern Man In Search Of A Soul (Harvest Book)', 'https://images.isbndb.com/covers/20/67/9780156612067.jpg'), - ('0517692007', 'Poems Of Love', 'https://images.isbndb.com/covers/20/04/9780517692004.jpg'), - ('0679603301', 'Out Of Her Mind: Women Writing On Madness (Modern Library)', 'https://images.isbndb.com/covers/33/06/9780679603306.jpg'), - ('0312130279', 'The Bird Artist: A Novel', 'https://images.isbndb.com/covers/02/75/9780312130275.jpg'), - ('0847813754', 'Ralph Eugene Meatyard: An American Visionary', 'https://images.isbndb.com/covers/37/59/9780847813759.jpg'), - ('0140441034', 'Njal''s Saga (Penguin Classics)', 'https://images.isbndb.com/covers/10/31/9780140441031.jpg'), - ('0140443215', 'Egil''s Saga (Penguin Classics)', 'https://images.isbndb.com/covers/32/19/9780140443219.jpg'), - ('0871567865', 'The Best Of Edward Abbey', 'https://images.isbndb.com/covers/78/64/9780871567864.jpg'), - ('0375501517', 'The Island Of Lost Maps: A True Story Of Cartographic Crime', 'https://images.isbndb.com/covers/15/17/9780375501517.jpg'), - ('0679410341', 'Unto The Sons', 'https://images.isbndb.com/covers/03/48/9780679410348.jpg'), - ('0399147837', 'Shadow Warriors: Inside The Special Forces', 'https://images.isbndb.com/covers/78/38/9780399147838.jpg'), - ('0553354779', 'Graveyard For Lunatics, A', 'https://images.isbndb.com/covers/47/75/9780553354775.jpg'), - ('051511331X', 'November Of The Heart', 'https://images.isbndb.com/covers/33/10/9780515113310.jpg'), - ('0399147195', 'P Is For Peril (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/71/97/9780399147197.jpg'), - ('0312265840', 'Seven Up (Stephanie Plum, No. 7) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/58/47/9780312265847.jpg'), - ('0743206029', 'On The Street Where You Live: A Novel', 'https://images.isbndb.com/covers/60/20/9780743206020.jpg'), - ('038080025X', 'All I Desire', 'https://images.isbndb.com/covers/02/54/9780380800254.jpg'), - ('0515136263', 'Chesapeake Blue (The Chesapeake Bay Saga, Book 4)', 'https://images.isbndb.com/covers/62/65/9780515136265.jpg'), - ('0425157784', 'Mourn Not Your Dead', 'https://images.isbndb.com/covers/77/87/9780425157787.jpg'), - ('0553579312', 'Dreaming Of The Bones', 'https://images.isbndb.com/covers/93/14/9780553579314.jpg'), - ('0380725827', 'Firestorm (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/58/23/9780380725823.jpg'), - ('0380728265', 'Blind Descent (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/82/68/9780380728268.jpg'), - ('0684835959', 'You Belong To Me', 'https://images.isbndb.com/covers/59/52/9780684835952.jpg'), - ('0786884592', 'Life Strategies: Doing What Works, Doing What Matters', 'https://images.isbndb.com/covers/45/99/9780786884599.jpg'), - ('0312958358', 'Tap, Tap', 'https://images.isbndb.com/covers/83/50/9780312958350.jpg'), - ('0316780375', 'The Weight Of Water', 'https://images.isbndb.com/covers/03/77/9780316780377.jpg'), - ('0446611948', 'Long Lost', 'https://images.isbndb.com/covers/19/47/9780446611947.jpg'), - ('067151699X', 'The HIDDEN LIFE OF DOGS', 'https://images.isbndb.com/covers/69/94/9780671516994.jpg'), - ('0452280958', 'The Tao Of Teaching: The Ageless Wisdom Of Taoism And The Art Of Teaching', 'https://images.isbndb.com/covers/09/53/9780452280953.jpg'), - ('078601525X', 'No Way Back', 'https://images.isbndb.com/covers/52/52/9780786015252.jpg'), - ('0452279607', 'The Gunslinger (The Dark Tower, Book 1)', 'https://images.isbndb.com/covers/96/05/9780452279605.jpg'), - ('0670272663', 'Different Seasons', 'https://images.isbndb.com/covers/26/62/9780670272662.jpg'), - ('0670451932', 'Cujo', 'https://images.isbndb.com/covers/19/37/9780670451937.jpg'), - ('0849911788', 'The Oath: A Novel', 'https://images.isbndb.com/covers/17/81/9780849911781.jpg'), - ('0333568745', 'River God (Egyptian Novels)', 'https://images.isbndb.com/covers/87/43/9780333568743.jpg'), - ('067943612X', 'Recessional', 'https://images.isbndb.com/covers/61/26/9780679436126.jpg'), - ('0743436210', 'Hearts In Atlantis', 'https://images.isbndb.com/covers/62/12/9780743436212.jpg'), - ('0061098280', 'Marilu Henner''s Total Health Makeover', 'https://images.isbndb.com/covers/82/84/9780061098284.jpg'), - ('0440236738', 'Gone For Good', 'https://images.isbndb.com/covers/67/33/9780440236733.jpg'), - ('0449902803', 'Unlimited Power', 'https://images.isbndb.com/covers/28/06/9780449902806.jpg'), - ('0399138250', 'Without Remorse', 'https://images.isbndb.com/covers/82/56/9780399138256.jpg'), - ('0804105820', 'It Was On Fire When I Lay Down On It', 'https://images.isbndb.com/covers/58/28/9780804105828.jpg'), - ('0671864416', 'First Things First', 'https://images.isbndb.com/covers/44/15/9780671864415.jpg'), - ('0553370715', 'Time Management For Unmanageable People: The Guilt-Free Way To Organize, Energize, And Maximize Your Life', 'https://images.isbndb.com/covers/07/13/9780553370713.jpg'), - ('0201101904', 'Procrastination Why You Do It What To Do About It', 'https://images.isbndb.com/covers/19/04/9780201101904.jpg'), - ('0671536214', 'God On A Harley: A Spiritual Fable', 'https://images.isbndb.com/covers/62/13/9780671536213.jpg'), - ('0440224721', 'Obstruction Of Justice', 'https://images.isbndb.com/covers/47/23/9780440224723.jpg'), - ('0446604844', 'Total Control', 'https://images.isbndb.com/covers/48/40/9780446604840.jpg'), - ('0061044490', 'Deep Lie', 'https://images.isbndb.com/covers/44/96/9780061044496.jpg'), - ('0451204514', 'Suspicion Of Vengeance', 'https://images.isbndb.com/covers/45/16/9780451204516.jpg'), - ('0440220696', 'Invasion Of Privacy', 'https://images.isbndb.com/covers/06/95/9780440220695.jpg'), - ('0449230643', 'Dark Inheritance', 'https://images.isbndb.com/covers/06/40/9780449230640.jpg'), - ('0380564998', 'Jacob Have I Loved', 'https://images.isbndb.com/covers/49/96/9780380564996.jpg'), - ('0671570072', 'Midsummer Bride', 'https://images.isbndb.com/covers/00/71/9780671570071.jpg'), - ('0880382651', 'Time Of The Twins Legends 1 (Dragonlance Legends Trilogy, Vol 1)', 'https://images.isbndb.com/covers/26/56/9780880382656.jpg'), - ('0802730981', 'You Have Yourself A Deal', 'https://images.isbndb.com/covers/09/85/9780802730985.jpg'), - ('1551665557', 'Family Way', 'https://images.isbndb.com/covers/55/59/9781551665559.jpg'), - ('1551668610', 'Sarah''s Child', 'https://images.isbndb.com/covers/86/11/9781551668611.jpg'), - ('0380817691', 'Stalker: A Peter Decker And Rina Lazarus Novel', 'https://images.isbndb.com/covers/76/96/9780380817696.jpg'), - ('0553582526', 'Dust To Dust', 'https://images.isbndb.com/covers/25/29/9780553582529.jpg'), - ('0684859734', 'Grave Secrets: A Novel (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/97/36/9780684859736.jpg'), - ('0345426037', 'The Broken Hearts Club (Conrad Voort Novels)', 'https://images.isbndb.com/covers/60/31/9780345426031.jpg'), - ('0671887971', 'Ring Of Truth', 'https://images.isbndb.com/covers/79/71/9780671887971.jpg'), - ('0345401964', 'Exit To Eden', 'https://images.isbndb.com/covers/19/60/9780345401960.jpg'), - ('0312983387', 'Killing The Shadows (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/33/83/9780312983383.jpg'), - ('055337396X', 'The Fine Art Of Erotic Talk: How To Entice, Excite, And Enchant Your Lover With Words', 'https://images.isbndb.com/covers/39/67/9780553373967.jpg'), - ('006104055X', 'A Man To Die For', 'https://images.isbndb.com/covers/05/59/9780061040559.jpg'), - ('0451173139', 'Night Over Water', 'https://images.isbndb.com/covers/31/33/9780451173133.jpg'), - ('0671038567', 'Body Of Evidence (Kay Scarpetta)', 'https://images.isbndb.com/covers/85/64/9780671038564.jpg'), - ('0451152190', 'Over The Edge', 'https://images.isbndb.com/covers/21/90/9780451152190.jpg'), - ('0141000198', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/01/90/9780141000190.jpg'), - ('067976268X', 'Anything Considered: A Novel', 'https://images.isbndb.com/covers/26/83/9780679762683.jpg'), - ('0425188213', 'Shades Of Earl Grey (A Tea Shop Mystery)', 'https://images.isbndb.com/covers/82/17/9780425188217.jpg'), - ('0425192121', 'The Torso In The Town (Fethering Mysteries)', 'https://images.isbndb.com/covers/21/22/9780425192122.jpg'), - ('0451184785', 'The Takeover', 'https://images.isbndb.com/covers/47/88/9780451184788.jpg'), - ('055309999X', 'The Main Corpse', 'https://images.isbndb.com/covers/99/97/9780553099997.jpg'), - ('0380804743', 'Miss Zukas Shelves The Evidence (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/47/40/9780380804740.jpg'), - ('0679734163', 'To Engineer Is Human: The Role Of Failure In Successful Design', 'https://images.isbndb.com/covers/41/61/9780679734161.jpg'), - ('006000469X', 'Engaged To Die (Death On Demand Mysteries, No. 14)', 'https://images.isbndb.com/covers/46/99/9780060004699.jpg'), - ('0553578316', 'Sticks & Scones (Goldy Culinary Mysteries, Book 10)', 'https://images.isbndb.com/covers/83/17/9780553578317.jpg'), - ('0380770334', 'Miss Zukas And The Stroke Of Death (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/03/35/9780380770335.jpg'), - ('0743225325', 'Good Harbor: A Novel', 'https://images.isbndb.com/covers/53/28/9780743225328.jpg'), - ('0446365386', 'Gone With The Wind', 'https://images.isbndb.com/covers/53/83/9780446365383.jpg'), - ('0804111634', 'Agatha Raisin And The Quiche Of Death (Agatha Raisin Mysteries, No. 1)', 'https://images.isbndb.com/covers/16/38/9780804111638.jpg'), - ('0804111626', 'Agatha Raisin And The Vicious Vet (Agatha Raisin Mysteries, No. 2)', 'https://images.isbndb.com/covers/16/21/9780804111621.jpg'), - ('1930722109', 'Why America''s Children Can''t Think: Creating Independent Minds For The 21st Century', 'https://images.isbndb.com/covers/21/01/9781930722101.jpg'), - ('055321330X', 'The Awakening', 'https://images.isbndb.com/covers/33/00/9780553213300.jpg'), - ('006091341X', 'The Bridge Of San Luis Rey (Perennial Classics)', 'https://images.isbndb.com/covers/34/10/9780060913410.jpg'), - ('0446519804', 'The Alibi', 'https://images.isbndb.com/covers/98/09/9780446519809.jpg'), - ('0446527017', 'Standoff', 'https://images.isbndb.com/covers/70/19/9780446527019.jpg'), - ('0399148450', 'Widow''s Walk: A Spenser Novel (Spenser Mysteries)', 'https://images.isbndb.com/covers/84/53/9780399148453.jpg'), - ('0451201515', 'Life On The Other Side: A Psychic''s Tour Of The Afterlife', 'https://images.isbndb.com/covers/15/15/9780451201515.jpg'), - ('0671727796', 'The Color Purple', 'https://images.isbndb.com/covers/77/96/9780671727796.jpg'), - ('0440194253', 'What Was Good About Today', 'https://images.isbndb.com/covers/42/55/9780440194255.jpg'), - ('0446523372', 'Thunderhead', 'https://images.isbndb.com/covers/33/70/9780446523370.jpg'), - ('0743456378', 'The Killing Kind: A Thriller', 'https://images.isbndb.com/covers/63/71/9780743456371.jpg'), - ('0439043999', 'Dracula Doesn''t Rock N'' Roll (The Adventures Of The Bailey School Kids, #39)', 'https://images.isbndb.com/covers/39/91/9780439043991.jpg'), - ('0590481150', 'Gremlins Don''t Chew Bubble Gum (The Bailey School Kids, Book 13)', 'https://images.isbndb.com/covers/11/51/9780590481151.jpg'), - ('0812504798', 'The Red Badge Of Courage (Tor Classics)', 'https://images.isbndb.com/covers/47/98/9780812504798.jpg'), - ('0440009782', 'The Canadians (Making Of America #38)', 'https://images.isbndb.com/covers/97/88/9780440009788.jpg'), - ('1565540387', 'Strange True Stories Of Louisiana', 'https://images.isbndb.com/covers/03/85/9781565540385.jpg'), - ('0440229464', 'Crooked', 'https://images.isbndb.com/covers/94/69/9780440229469.jpg'), - ('0064440257', 'Oscar Otter (I Can Read Book 1)', 'https://images.isbndb.com/covers/02/57/9780064440257.jpg'), - ('0061020702', 'The Light Fantastic', 'https://images.isbndb.com/covers/07/04/9780061020704.jpg'), - ('0425130223', 'Spook', 'https://images.isbndb.com/covers/02/23/9780425130223.jpg'), - ('0451161351', 'Cujo', 'https://images.isbndb.com/covers/13/52/9780451161352.jpg'), - ('0061057649', 'Feet Of Clay', 'https://images.isbndb.com/covers/76/49/9780061057649.jpg'), - ('0425100650', 'Twilight Eyes', 'https://images.isbndb.com/covers/06/53/9780425100653.jpg'), - ('0689845936', 'When Kambia Elaine Flew In From Neptune', 'https://images.isbndb.com/covers/59/32/9780689845932.jpg'), - ('0440202086', 'Visions: 19 Short Stories', 'https://images.isbndb.com/covers/20/80/9780440202080.jpg'), - ('0140060324', 'White Hotel (King Penguin)', 'https://images.isbndb.com/covers/03/24/9780140060324.jpg'), - ('0091841844', 'Lucias Measure', 'https://images.isbndb.com/covers/18/43/9780091841843.jpg'), - ('190085032X', 'The Twins', 'https://images.isbndb.com/covers/03/22/9781900850322.jpg'), - ('0440509238', 'Spin Cycle', 'https://images.isbndb.com/covers/92/33/9780440509233.jpg'), - ('0373218036', 'Truly, Madly Manhattan', 'https://images.isbndb.com/covers/80/35/9780373218035.jpg'), - ('2070725804', 'Comme Un Roman', 'https://images.isbndb.com/covers/58/09/9782070725809.jpg'), - ('0349113858', 'Kings Of Albion', 'https://images.isbndb.com/covers/38/52/9780349113852.jpg'), - ('0671047329', 'The Third Option', 'https://images.isbndb.com/covers/73/20/9780671047320.jpg'), - ('0451451155', 'Tigana', 'https://images.isbndb.com/covers/11/56/9780451451156.jpg'), - ('0061056219', 'The Lions Of Al-Rassan', 'https://images.isbndb.com/covers/62/15/9780061056215.jpg'), - ('0451453328', 'Song For Arbonne', 'https://images.isbndb.com/covers/33/27/9780451453327.jpg'), - ('0451451384', 'The Summer Tree (The Fionavar Tapestry, Book 1)', 'https://images.isbndb.com/covers/13/85/9780451451385.jpg'), - ('0451451562', 'Wandering Fire (Fionavar Tapestry)', 'https://images.isbndb.com/covers/15/69/9780451451569.jpg'), - ('0451451805', 'The Darkest Road (The Fionavar Tapestry, Book 3)', 'https://images.isbndb.com/covers/18/04/9780451451804.jpg'), - ('0399217797', 'Princess Smartypants', 'https://images.isbndb.com/covers/77/91/9780399217791.jpg'), - ('0785812245', 'Modern Locomotives', 'https://images.isbndb.com/covers/22/41/9780785812241.jpg'), - ('1558747575', 'A Little Secret For Dealing With Teens', 'https://images.isbndb.com/covers/75/79/9781558747579.jpg'), - ('0395311292', 'The Wump World', 'https://images.isbndb.com/covers/12/95/9780395311295.jpg'), - ('034542705X', 'The Man Who Listens To Horses', 'https://images.isbndb.com/covers/70/52/9780345427052.jpg'), - ('0312860374', 'Starfarers', 'https://images.isbndb.com/covers/03/70/9780312860370.jpg'), - ('0380762595', 'Until Forever', 'https://images.isbndb.com/covers/25/90/9780380762590.jpg'), - ('0380774933', 'Keeper Of The Heart', 'https://images.isbndb.com/covers/49/37/9780380774937.jpg'), - ('0440202507', 'Wild Mountain Thyme', 'https://images.isbndb.com/covers/25/09/9780440202509.jpg'), - ('0515131741', 'Lost And Found', 'https://images.isbndb.com/covers/17/41/9780515131741.jpg'), - ('0515136182', 'Light In Shadow', 'https://images.isbndb.com/covers/61/80/9780515136180.jpg'), - ('0515136948', 'After Glow (Ghost Hunters, Book 2)', 'https://images.isbndb.com/covers/69/44/9780515136944.jpg'), - ('0451206428', 'Lord Of My Heart', 'https://images.isbndb.com/covers/64/28/9780451206428.jpg'), - ('0380790890', 'A Well Pleasured Lady', 'https://images.isbndb.com/covers/08/90/9780380790890.jpg'), - ('0743477081', 'Forever And Always (Forever Trilogy)', 'https://images.isbndb.com/covers/70/86/9780743477086.jpg'), - ('0380752131', 'Love A Dark Rider', 'https://images.isbndb.com/covers/21/33/9780380752133.jpg'), - ('0345388593', 'Angel', 'https://images.isbndb.com/covers/85/99/9780345388599.jpg'), - ('044020254X', 'The Empty House', 'https://images.isbndb.com/covers/25/47/9780440202547.jpg'), - ('0515135453', 'Twist Of Fate', 'https://images.isbndb.com/covers/54/59/9780515135459.jpg'), - ('0380812037', 'On A Wild Night (Cynster Novels)', 'https://images.isbndb.com/covers/20/35/9780380812035.jpg'), - ('0553581872', 'The Widow''s Kiss', 'https://images.isbndb.com/covers/18/74/9780553581874.jpg'), - ('0380818647', 'The Devil''s Bargain', 'https://images.isbndb.com/covers/86/48/9780380818648.jpg'), - ('0553583395', 'Don''t Look Back', 'https://images.isbndb.com/covers/33/97/9780553583397.jpg'), - ('055358619X', 'The Bride Hunt', 'https://images.isbndb.com/covers/61/90/9780553586190.jpg'), - ('0515125628', 'The Target (FBI Series)', 'https://images.isbndb.com/covers/56/27/9780515125627.jpg'), - ('0553565249', 'The Unlikely Angel', 'https://images.isbndb.com/covers/52/49/9780553565249.jpg'), - ('055357695X', 'Out Of The Shadows (Shadows Trilogy)', 'https://images.isbndb.com/covers/69/55/9780553576955.jpg'), - ('0671019619', 'Grand Passion', 'https://images.isbndb.com/covers/96/17/9780671019617.jpg'), - ('0446363731', 'Midnight Jewels', 'https://images.isbndb.com/covers/37/30/9780446363730.jpg'), - ('0671019651', 'Hidden Talents', 'https://images.isbndb.com/covers/96/55/9780671019655.jpg'), - ('0671523074', 'Eye Of The Beholder', 'https://images.isbndb.com/covers/30/77/9780671523077.jpg'), - ('0553572326', 'Survival Of The Fittest: An Alex Delaware Novel', 'https://images.isbndb.com/covers/23/22/9780553572322.jpg'), - ('0061059838', 'Acorna''s People', 'https://images.isbndb.com/covers/98/34/9780061059834.jpg'), - ('0425172546', 'Southern Cross (Andy Brazil)', 'https://images.isbndb.com/covers/25/44/9780425172544.jpg'), - ('074347628X', 'The Twilight Before Christmas (Drake Sisters, Book 2)', 'https://images.isbndb.com/covers/62/87/9780743476287.jpg'), - ('0553586181', 'The Bachelor List', 'https://images.isbndb.com/covers/61/83/9780553586183.jpg'), - ('0061094609', 'Illusions: A Novel', 'https://images.isbndb.com/covers/46/06/9780061094606.jpg'), - ('0486273776', 'North American Indian Life: Customs And Traditions Of 23 Tribes', 'https://images.isbndb.com/covers/37/78/9780486273778.jpg'), - ('0931432901', 'Woman''s Book Of Rituals And Celebrations', 'https://images.isbndb.com/covers/29/03/9780931432903.jpg'), - ('0060256257', 'The Land Of Narnia: Brian Sibley Explores The World Of C. S. Lewis', 'https://images.isbndb.com/covers/62/58/9780060256258.jpg'), - ('0679427279', 'The Evolution Man Or How I Ate My Father', 'https://images.isbndb.com/covers/72/78/9780679427278.jpg'), - ('055357809X', 'Digger', 'https://images.isbndb.com/covers/80/96/9780553578096.jpg'), - ('0380711524', 'See Jane Run', 'https://images.isbndb.com/covers/15/29/9780380711529.jpg'), - ('0553261509', 'Puzzle Of The Red Stallion', 'https://images.isbndb.com/covers/15/09/9780553261509.jpg'), - ('0446341991', 'Death Of An Expert Witness', 'https://images.isbndb.com/covers/19/98/9780446341998.jpg'), - ('0140113428', 'The Cat Who Came For Christmas', 'https://images.isbndb.com/covers/34/26/9780140113426.jpg'), - ('0821713000', 'Munich 10', 'https://images.isbndb.com/covers/30/06/9780821713006.jpg'), - ('006101009X', 'Search The Shadows', 'https://images.isbndb.com/covers/00/95/9780061010095.jpg'), - ('0061092533', 'Stitches In Time', 'https://images.isbndb.com/covers/25/34/9780061092534.jpg'), - ('0449211886', 'Cities Of The Dead', 'https://images.isbndb.com/covers/18/85/9780449211885.jpg'), - ('0590466194', 'Welcome To Camp Nightmare (Goosebumps, No 9)', 'https://images.isbndb.com/covers/61/96/9780590466196.jpg'), - ('0811827631', 'Muffy''s Scrapbook: VanderBear Family? Stories, Photos And Mementos', 'https://images.isbndb.com/covers/76/38/9780811827638.jpg'), - ('0140068767', 'Fools Of Fortune (King Penguin)', 'https://images.isbndb.com/covers/87/64/9780140068764.jpg'), - ('0553278398', 'Prelude To Foundation (Foundation, Book 1)', 'https://images.isbndb.com/covers/83/92/9780553278392.jpg'), - ('0345308980', 'Foundation''s Edge', 'https://images.isbndb.com/covers/89/86/9780345308986.jpg'), - ('0743235150', 'Everything''s Eventual : 14 Dark Tales', 'https://images.isbndb.com/covers/51/50/9780743235150.jpg'), - ('2867448999', 'One Man Show', 'https://images.isbndb.com/covers/89/97/9782867448997.jpg'), - ('0515104191', 'Defcon One', 'https://images.isbndb.com/covers/41/96/9780515104196.jpg'), - ('0441885691', 'White Plague', 'https://images.isbndb.com/covers/56/95/9780441885695.jpg'), - ('0451628039', 'Mythology (Mentor)', 'https://images.isbndb.com/covers/80/39/9780451628039.jpg'), - ('0140177396', 'Of Mice And Men (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/73/98/9780140177398.jpg'), - ('1570624380', 'Flatland (Shambhala Pocket Classics)', 'https://images.isbndb.com/covers/43/84/9781570624384.jpg'), - ('0760700435', 'Sense And Sensibility', 'https://images.isbndb.com/covers/04/33/9780760700433.jpg'), - ('048627084X', 'Sleeping Beauty And Other Fairy Tales (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/08/45/9780486270845.jpg'), - ('0802713823', 'Sacred Geometry (Wooden Books)', 'https://images.isbndb.com/covers/38/27/9780802713827.jpg'), - ('051718608X', 'Colorado: A Photographic Tour (Photographic Tour (Random House))', 'https://images.isbndb.com/covers/60/84/9780517186084.jpg'), - ('0486278166', 'The Little Mermaid And Other Fairy Tales: Unabridged In Easy-To-Read Type (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/81/62/9780486278162.jpg'), - ('0140373373', 'Pride And Prejudice (Puffin Classics)', 'https://images.isbndb.com/covers/33/70/9780140373370.jpg'), - ('0486408787', 'Through The Looking-Glass (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/81/9780486408781.jpg'), - ('0451186923', 'The Deep End Of The Ocean', 'https://images.isbndb.com/covers/69/28/9780451186928.jpg'), - ('0451184114', 'Dolores Claiborne: Tie-In Edition', 'https://images.isbndb.com/covers/41/15/9780451184115.jpg'), - ('0446356573', 'A Stranger In The Mirror', 'https://images.isbndb.com/covers/65/72/9780446356572.jpg'), - ('155166545X', 'The House On Olive Street', 'https://images.isbndb.com/covers/54/50/9781551665450.jpg'), - ('0553280341', 'B Is For Burglar (A Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/03/40/9780553280340.jpg'), - ('0553280368', 'C Is For Corpse (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/03/64/9780553280364.jpg'), - ('067942573X', 'Taltos: Lives Of The Mayfair Witches', 'https://images.isbndb.com/covers/57/31/9780679425731.jpg'), - ('0812570944', 'What Dreams May Come', 'https://images.isbndb.com/covers/09/46/9780812570946.jpg'), - ('078688939X', 'DIRTY JOKES AND BEER: STORIES OF THE UNREFINED', 'https://images.isbndb.com/covers/93/96/9780786889396.jpg'), - ('0451176464', 'Gerald''s Game (Signet)', 'https://images.isbndb.com/covers/64/62/9780451176462.jpg'), - ('0671894455', 'Forrest Gump (Movie Tie In)', 'https://images.isbndb.com/covers/44/50/9780671894450.jpg'), - ('0451186362', 'Rose Madder', 'https://images.isbndb.com/covers/63/62/9780451186362.jpg'), - ('1570431108', 'Eckankar: Ancient Wisdom For Today: How Past Lives, Dreams, And Soul Travel Help You Find God', 'https://images.isbndb.com/covers/11/04/9781570431104.jpg'), - ('0451405692', 'Body Of A Crime', 'https://images.isbndb.com/covers/56/92/9780451405692.jpg'), - ('0446607657', 'When The Wind Blows', 'https://images.isbndb.com/covers/76/50/9780446607650.jpg'), - ('0446611662', 'Bird''s-Eye View', 'https://images.isbndb.com/covers/16/64/9780446611664.jpg'), - ('0140067841', 'Schindler''s List', 'https://images.isbndb.com/covers/78/42/9780140067842.jpg'), - ('1878379992', 'Watching The Wind: Conflict Resolution During South Africa''s Transition To Democracy', 'https://images.isbndb.com/covers/99/93/9781878379993.jpg'), - ('0892811706', 'Muhammad: His Life Based On The Earliest Sources', 'https://images.isbndb.com/covers/17/00/9780892811700.jpg'), - ('0684150700', 'Needlepoint Designs From Amish Quilts', 'https://images.isbndb.com/covers/07/03/9780684150703.jpg'), - ('0517463008', 'Sherlock Holmes Encyclopedia', 'https://images.isbndb.com/covers/30/00/9780517463000.jpg'), - ('081120457X', 'The Captain''s Verses (Los Versos Del Capitan) (New Directions Paperbook)', 'https://images.isbndb.com/covers/45/76/9780811204576.jpg'), - ('0395120985', 'The Book Of Nightmares', 'https://images.isbndb.com/covers/09/89/9780395120989.jpg'), - ('0910395039', 'Murder For Profit', 'https://images.isbndb.com/covers/50/38/9780910395038.jpg'), - ('0312901437', 'James Herriots Dog Stories', 'https://images.isbndb.com/covers/14/31/9780312901431.jpg'), - ('0553212923', 'Hamlet (Bantam Classic)', 'https://images.isbndb.com/covers/29/21/9780553212921.jpg'), - ('0345354613', 'Eaters Of The Dead', 'https://images.isbndb.com/covers/46/17/9780345354617.jpg'), - ('0967231434', 'Small Leather Journal With Strap-myra Series', 'https://images.isbndb.com/covers/14/33/9780967231433.jpg'), - ('0553104039', 'Tidings Of Great Joy', 'https://images.isbndb.com/covers/40/35/9780553104035.jpg'), - ('038532748X', 'Night Flying', 'https://images.isbndb.com/covers/74/80/9780385327480.jpg'), - ('0380713802', 'Neither Here Nor There: Travels In Europe', 'https://images.isbndb.com/covers/38/06/9780380713806.jpg'), - ('0140430725', 'Pride And Prejudice (The Penguin English Library)', 'https://images.isbndb.com/covers/07/21/9780140430721.jpg'), - ('0345356640', 'Emergency Doctor', 'https://images.isbndb.com/covers/66/42/9780345356642.jpg'), - ('0812513401', 'The Voyage', 'https://images.isbndb.com/covers/34/00/9780812513400.jpg'), - ('0940685590', 'Winner''s Guide To Texas Hold''em Poker', 'https://images.isbndb.com/covers/55/98/9780940685598.jpg'), - ('0898159318', 'The 1998 What Color Is Your Parachute : A Practical Manual For Job-Hunters And Career Changers (Paper)', 'https://images.isbndb.com/covers/93/18/9780898159318.jpg'), - ('0671319825', 'Forge Of The Elders', 'https://images.isbndb.com/covers/98/23/9780671319823.jpg'), - ('0451456491', 'Twilight Of The Empire', 'https://images.isbndb.com/covers/64/96/9780451456496.jpg'), - ('0451450957', 'Blue Moon Rising (Hawk & Fisher)', 'https://images.isbndb.com/covers/09/51/9780451450951.jpg'), - ('0451454359', 'Deathstalker', 'https://images.isbndb.com/covers/43/55/9780451454355.jpg'), - ('067187747X', 'The Legacy Of Gird (Trade Paperback)', 'https://images.isbndb.com/covers/74/77/9780671877477.jpg'), - ('0441569595', 'Neuromancer', 'https://images.isbndb.com/covers/95/95/9780441569595.jpg'), - ('0843948302', 'Voice Of The Blood', 'https://images.isbndb.com/covers/83/01/9780843948301.jpg'), - ('1573229105', 'Sister India', 'https://images.isbndb.com/covers/91/04/9781573229104.jpg'), - ('0375505148', 'Girls'' Poker Night', 'https://images.isbndb.com/covers/51/40/9780375505140.jpg'), - ('0345291409', 'Special Deliverance', 'https://images.isbndb.com/covers/14/00/9780345291400.jpg'), - ('0425147363', 'Op-Center (Tom Clancy''s Op-Center, Book 1)', 'https://images.isbndb.com/covers/73/68/9780425147368.jpg'), - ('0671731424', 'The Wolf''s Hour', 'https://images.isbndb.com/covers/14/27/9780671731427.jpg'), - ('034068948X', 'Does My Bum Look Big In This?', 'https://images.isbndb.com/covers/94/86/9780340689486.jpg'), - ('0449238083', 'All Quiet On The Western Front', 'https://images.isbndb.com/covers/80/80/9780449238080.jpg'), - ('0747204233', 'The Nightingale Gallery (Sorrowful Mysteries Of Brother Athelstan)', 'https://images.isbndb.com/covers/42/37/9780747204237.jpg'), - ('0385333919', 'Be Cool', 'https://images.isbndb.com/covers/39/17/9780385333917.jpg'), - ('0449001245', 'Naked Came The Manatee', 'https://images.isbndb.com/covers/12/40/9780449001240.jpg'), - ('0061099570', 'The Crown Of Columbus', 'https://images.isbndb.com/covers/95/71/9780061099571.jpg'), - ('0936552034', 'Animal Talk Interspecies Telepathis Communication', 'https://images.isbndb.com/covers/20/33/9780936552033.jpg'), - ('0375750002', 'The Portable Henry Rollins', 'https://images.isbndb.com/covers/00/07/9780375750007.jpg'), - ('0425165582', 'Clive Barker''s Books Of Blood 1-3', 'https://images.isbndb.com/covers/55/84/9780425165584.jpg'), - ('0380820293', 'Last Chance Saloon', 'https://images.isbndb.com/covers/02/90/9780380820290.jpg'), - ('0451141296', 'Comets (Issac Asimov''s Wonderful World Of Science Fiction, No 4)', 'https://images.isbndb.com/covers/12/93/9780451141293.jpg'), - ('0312980205', 'Never Count Out The Dead', 'https://images.isbndb.com/covers/02/07/9780312980207.jpg'), - ('0743467345', 'Mr. Perfect', 'https://images.isbndb.com/covers/73/46/9780743467346.jpg'), - ('0679889175', 'First Test (Protector Of The Small)', 'https://images.isbndb.com/covers/91/75/9780679889175.jpg'), - ('0679801111', 'In The Hand Of The Goddess (Song Of The Lioness #2)', 'https://images.isbndb.com/covers/11/15/9780679801115.jpg'), - ('0871236575', 'When Hope Springs New (Canadian West #4)', 'https://images.isbndb.com/covers/65/79/9780871236579.jpg'), - ('1410729435', 'Lucy''s Treasure', 'https://images.isbndb.com/covers/94/39/9781410729439.jpg'), - ('0395775396', 'My Antonia, And Related Readings (Literature Connections Series)', 'https://images.isbndb.com/covers/53/94/9780395775394.jpg'), - ('0743434021', 'Beautiful Bodies : A Novel', 'https://images.isbndb.com/covers/40/27/9780743434027.jpg'), - ('0440164125', 'No Choice But Surrender', 'https://images.isbndb.com/covers/41/28/9780440164128.jpg'), - ('0515116297', 'The Pony Wife', 'https://images.isbndb.com/covers/62/98/9780515116298.jpg'), - ('0812550765', 'Irish Gold: A Nuala Anne McGrail Novel (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/07/64/9780812550764.jpg'), - ('0888011091', 'Seed Catalogue', 'https://images.isbndb.com/covers/10/91/9780888011091.jpg'), - ('0425183653', 'A Potion For A Widow (The Chronicles Of Isaac Of Girona)', 'https://images.isbndb.com/covers/36/56/9780425183656.jpg'), - ('0373765703', 'Private Indiscretions', 'https://images.isbndb.com/covers/57/06/9780373765706.jpg'), - ('037369167X', 'Pillow Talk (Harlequin Temptation)', 'https://images.isbndb.com/covers/16/78/9780373691678.jpg'), - ('0373250134', 'Slightly Single (Red Dress Ink Paperback}', 'https://images.isbndb.com/covers/01/34/9780373250134.jpg'), - ('0446363162', 'Back Bay', 'https://images.isbndb.com/covers/31/67/9780446363167.jpg'), - ('0373153279', 'Home To You', 'https://images.isbndb.com/covers/32/75/9780373153275.jpg'), - ('0373153260', 'The Wedding In White', 'https://images.isbndb.com/covers/32/68/9780373153268.jpg'), - ('0345375556', 'One''s Company: Reflections On Living Alone', 'https://images.isbndb.com/covers/55/51/9780345375551.jpg'), - ('1573221082', 'Ordinary Grace: An Examination Of The Roots Of Compassion, Altruism, And Empathy, And The Ordinary Individuals Who Help Others In Extraordinary Ways', 'https://images.isbndb.com/covers/10/85/9781573221085.jpg'), - ('068480154X', 'Tender Is The Night', 'https://images.isbndb.com/covers/15/44/9780684801544.jpg'), - ('0140430059', 'Persuasion: With A Memoir Of Jane Austen', 'https://images.isbndb.com/covers/00/59/9780140430059.jpg'), - ('0553569619', 'When The Bough Breaks (Alex Delaware Novels)', 'https://images.isbndb.com/covers/96/12/9780553569612.jpg'), - ('0770104274', 'Ariana', 'https://images.isbndb.com/covers/42/76/9780770104276.jpg'), - ('0451172825', 'Intensive Care (Signet)', 'https://images.isbndb.com/covers/28/22/9780451172822.jpg'), - ('0446613843', 'The Jester', 'https://images.isbndb.com/covers/38/42/9780446613842.jpg'), - ('0679436448', 'CORELLI''S MANDOLIN', 'https://images.isbndb.com/covers/64/47/9780679436447.jpg'), - ('0553580930', 'A Man In Full', 'https://images.isbndb.com/covers/09/38/9780553580938.jpg'), - ('1558216847', 'The Long Walk: The True Story Of A Trek To Freedom', 'https://images.isbndb.com/covers/68/46/9781558216846.jpg'), - ('0590313185', 'Bunnicula: A Rabbit-Tale Of Mystery', 'https://images.isbndb.com/covers/31/86/9780590313186.jpg'), - ('0590462253', 'The Littles', 'https://images.isbndb.com/covers/22/59/9780590462259.jpg'), - ('0671024094', 'The Coffin Dancer (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/40/93/9780671024093.jpg'), - ('1565070054', 'As Time Goes By (California Series, Book 2)', 'https://images.isbndb.com/covers/00/59/9781565070059.jpg'), - ('1565070461', 'Sean Donovan (The Californians, Book 3)', 'https://images.isbndb.com/covers/04/62/9781565070462.jpg'), - ('1556618646', 'A Promise For Tomorrow (Ribbons Of Steel) (Book 3)', 'https://images.isbndb.com/covers/86/42/9781556618642.jpg'), - ('1556618638', 'A Hope Beyond (Ribbons Of Steel) (Book 2)', 'https://images.isbndb.com/covers/86/35/9781556618635.jpg'), - ('155661862X', 'Distant Dreams (Ribbons Of Steel) (Book 1)', 'https://images.isbndb.com/covers/86/28/9781556618628.jpg'), - ('0890819696', 'Whatever Tomorrow Brings (The Californians, Bk. 1)', 'https://images.isbndb.com/covers/96/92/9780890819692.jpg'), - ('1565071298', 'Donovan''s Daughter (The Californians, Book 4)', 'https://images.isbndb.com/covers/12/92/9781565071292.jpg'), - ('1556618409', 'Sisters Of The Confederacy (A Secret Refuge Series #2) (Book 2)', 'https://images.isbndb.com/covers/84/06/9781556618406.jpg'), - ('1556618395', 'Daughter Of Twin Oaks (A Secret Refuge Series #1) (Book 1)', 'https://images.isbndb.com/covers/83/90/9781556618390.jpg'), - ('0849942357', 'The Amethyst Heart', 'https://images.isbndb.com/covers/23/58/9780849942358.jpg'), - ('0849937221', 'The Amber Photograph', 'https://images.isbndb.com/covers/72/24/9780849937224.jpg'), - ('0849917069', 'The Memory Book: A Novel', 'https://images.isbndb.com/covers/70/66/9780849917066.jpg'), - ('0849917050', 'The Treasure Box', 'https://images.isbndb.com/covers/70/59/9780849917059.jpg'), - ('0373691580', 'Are You Lonesome Tonight? (Harlequin Temptation)', 'https://images.isbndb.com/covers/15/86/9780373691586.jpg'), - ('0385249683', 'Mary Reilly', 'https://images.isbndb.com/covers/96/83/9780385249683.jpg'), - ('0060975849', 'Two Old Women', 'https://images.isbndb.com/covers/58/45/9780060975845.jpg'), - ('059043411X', 'Vampires Don''t Wear Polka Dots (The Adventures Of The Bailey School Kids)', 'https://images.isbndb.com/covers/41/19/9780590434119.jpg'), - ('0439172187', 'Pixie Tricks #01: Sprite''s Secret', 'https://images.isbndb.com/covers/21/89/9780439172189.jpg'), - ('0590978802', 'The Diamond Princess Steps Through The Mirror (Jewel Kingdom No. 12)', 'https://images.isbndb.com/covers/88/04/9780590978804.jpg'), - ('0439051630', 'Chick Challenge (Animal Ark Pets #6)', 'https://images.isbndb.com/covers/16/37/9780439051637.jpg'), - ('0439160200', 'Powerpuff Girls Chapter Book #02: All Chalked Up! (Powerpuff Girls, Chaper Book) (No.2)', 'https://images.isbndb.com/covers/02/09/9780439160209.jpg'), - ('0439160219', 'Powerpuff Girls Chapter Book #03: Cartoon Crazy (Powerpuff Girls, Chaper Book) (No. 3)', 'https://images.isbndb.com/covers/02/16/9780439160216.jpg'), - ('068482292X', 'What Remains To Be Discovered : Mapping The Secrets Of The Universe, The Origins Of Life, And The Future Of The Human Race', 'https://images.isbndb.com/covers/29/21/9780684822921.jpg'), - ('0393308189', 'Ever Since Darwin: Reflections In Natural History', 'https://images.isbndb.com/covers/81/81/9780393308181.jpg'), - ('0446676136', 'Reason For Hope: A Spiritual Journey', 'https://images.isbndb.com/covers/61/37/9780446676137.jpg'), - ('0345394658', 'Return To The Chateau: Preceded By, A Girl In Love', 'https://images.isbndb.com/covers/46/51/9780345394651.jpg'), - ('0345301110', 'Story Of O', 'https://images.isbndb.com/covers/11/16/9780345301116.jpg'), - ('068485287X', 'Creek Walk And Other Stories', 'https://images.isbndb.com/covers/28/74/9780684852874.jpg'), - ('0140450181', 'Major Barbara (Shaw Library)', 'https://images.isbndb.com/covers/01/87/9780140450187.jpg'), - ('014045022X', 'Pygmalion : A Romance In Five Acts', 'https://images.isbndb.com/covers/02/24/9780140450224.jpg'), - ('0312980140', 'Seven Up (Stephanie Plum, No. 7)', 'https://images.isbndb.com/covers/01/46/9780312980146.jpg'), - ('0553211951', 'Complete Short Stories Of Mark Twain (Bantam Classics)', 'https://images.isbndb.com/covers/19/55/9780553211955.jpg'), - ('0141301155', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/11/50/9780141301150.jpg'), - ('0525934960', 'The Te Of Piglet (Pooh)', 'https://images.isbndb.com/covers/49/67/9780525934967.jpg'), - ('0140189645', 'The Crucible: A Play In Four Acts (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/96/43/9780140189643.jpg'), - ('0877790388', 'Webster''s Legal Speller', 'https://images.isbndb.com/covers/03/89/9780877790389.jpg'), - ('0771065175', 'A Short History Of Canada', 'https://images.isbndb.com/covers/51/70/9780771065170.jpg'), - ('0451521293', 'Twelfth Night: Or, What You Will (Signet Classic Shakespeare Series)', 'https://images.isbndb.com/covers/12/93/9780451521293.jpg'), - ('0385324138', 'The Outlandish Companion', 'https://images.isbndb.com/covers/41/37/9780385324137.jpg'), - ('0679436332', 'Blake: Poems (Everyman''s Library Pocket Poets)', 'https://images.isbndb.com/covers/63/31/9780679436331.jpg'), - ('0452277507', 'Animal Farm: A Fairy Story', 'https://images.isbndb.com/covers/75/02/9780452277502.jpg'), - ('0764222295', 'The Birthright (Song Of Acadia #3)', 'https://images.isbndb.com/covers/22/90/9780764222290.jpg'), - ('0140327738', 'Pippi In The South Seas (Puffin Story Books)', 'https://images.isbndb.com/covers/77/31/9780140327731.jpg'), - ('0140367624', 'The Princess And Curdie (Puffin Classics)', 'https://images.isbndb.com/covers/76/21/9780140367621.jpg'), - ('0140367462', 'The Princess And The Goblin (Puffin Classics)', 'https://images.isbndb.com/covers/74/61/9780140367461.jpg'), - ('0764221396', 'A Searching Heart (Prairie Legacy Series #2)', 'https://images.isbndb.com/covers/13/92/9780764221392.jpg'), - ('076422400X', 'Beyond The Gathering Storm (Canadian West #5)', 'https://images.isbndb.com/covers/40/03/9780764224003.jpg'), - ('0764225553', 'When Tomorrow Comes (Canadian West)', 'https://images.isbndb.com/covers/55/50/9780764225550.jpg'), - ('0764222473', 'The Sacred Shore (Song Of Acadia #2) (Book 2)', 'https://images.isbndb.com/covers/24/74/9780764222474.jpg'), - ('0764221760', 'The Meeting Place (Song Of Acadia #1)', 'https://images.isbndb.com/covers/17/67/9780764221767.jpg'), - ('044022425X', 'Drums Of Autumn (Outlander)', 'https://images.isbndb.com/covers/42/59/9780440224259.jpg'), - ('0764221612', 'Like Gold Refined (Prairie Legacy Series #4)', 'https://images.isbndb.com/covers/16/13/9780764221613.jpg'), - ('0764221566', 'A Quiet Strength (Prairie Legacy Series #3)', 'https://images.isbndb.com/covers/15/69/9780764221569.jpg'), - ('0440217563', 'Voyager (Outlander)', 'https://images.isbndb.com/covers/75/65/9780440217565.jpg'), - ('0385319959', 'Outlander', 'https://images.isbndb.com/covers/99/59/9780385319959.jpg'), - ('0773674187', 'Canadian Poetry (New Press Canadian Classics)', 'https://images.isbndb.com/covers/41/89/9780773674189.jpg'), - ('1556619510', 'The Tender Years (Prairie Legacy Series #1)', 'https://images.isbndb.com/covers/95/19/9781556619519.jpg'), - ('0446611778', 'Last Man Standing', 'https://images.isbndb.com/covers/17/70/9780446611770.jpg'), - ('1853260363', 'Don Quixote (Wordsworth Classics)', 'https://images.isbndb.com/covers/03/60/9781853260360.jpg'), - ('0006374093', 'Making It Happen: Reflections On Leadership', 'https://images.isbndb.com/covers/40/91/9780006374091.jpg'), - ('0374525188', 'Housekeeping: A Novel', 'https://images.isbndb.com/covers/51/87/9780374525187.jpg'), - ('0749385359', 'Dan Leno Limehouse Golem Cook Pro', 'https://images.isbndb.com/covers/53/54/9780749385354.jpg'), - ('0099428644', 'The Trial', 'https://images.isbndb.com/covers/86/40/9780099428640.jpg'), - ('0349111367', 'Easy Silence', 'https://images.isbndb.com/covers/13/60/9780349111360.jpg'), - ('0747273146', 'Resurrecting Salvador Pb', 'https://images.isbndb.com/covers/31/41/9780747273141.jpg'), - ('034910901X', 'Room For A Single Lady', 'https://images.isbndb.com/covers/90/15/9780349109015.jpg'), - ('0330244078', 'TINKER TAILOR SOLDIER SPY', 'https://images.isbndb.com/covers/40/77/9780330244077.jpg'), - ('0571216420', 'Vernon God Little', 'https://images.isbndb.com/covers/64/20/9780571216420.jpg'), - ('0312974620', 'Beyond Jennifer & Jason, Madison & Montana: What To Name Your Baby Now', 'https://images.isbndb.com/covers/46/26/9780312974626.jpg'), - ('0304357278', 'E-Tales: The Best & Worst Of Internet Humor (Humour)', 'https://images.isbndb.com/covers/72/77/9780304357277.jpg'), - ('0471293334', 'Mothers & Others For A Livable Planet Guide To Natural Baby Care: Nontoxic And Environmentally Friendly Ways To Take Care Of Your New Child', 'https://images.isbndb.com/covers/33/30/9780471293330.jpg'), - ('1842223739', 'New Woman Bloke Jokes 2 (No.2)', 'https://images.isbndb.com/covers/37/34/9781842223734.jpg'), - ('0714530387', 'The Room', 'https://images.isbndb.com/covers/03/83/9780714530383.jpg'), - ('0679735291', 'The Body Project: An Intimate History Of American Girls', 'https://images.isbndb.com/covers/52/98/9780679735298.jpg'), - ('0140250328', 'The New Whole Foods Encyclopedia: A Comprehensive Resource For Healthy Eating (Compass)', 'https://images.isbndb.com/covers/03/29/9780140250329.jpg'), - ('1591092744', 'Lapp', 'https://images.isbndb.com/covers/27/42/9781591092742.jpg'), - ('3442540356', 'Microsklaven.', 'https://images.isbndb.com/covers/03/58/9783442540358.jpg'), - ('0671447483', 'Pioneer Women: Voices From The Kansas Frontier', 'https://images.isbndb.com/covers/74/89/9780671447489.jpg'), - ('2070741354', 'La Lenteur', 'https://images.isbndb.com/covers/13/59/9782070741359.jpg'), - ('0345385977', 'I Haven''t Understood Anything Since 1962', 'https://images.isbndb.com/covers/59/70/9780345385970.jpg'), - ('0373441762', 'One True Love? (Harlequin Flipside)', 'https://images.isbndb.com/covers/17/61/9780373441761.jpg'), - ('0373441800', 'Who Needs Decaf? (Harlequin Flipside)', 'https://images.isbndb.com/covers/18/08/9780373441808.jpg'), - ('0373250479', 'Slightly Settled', 'https://images.isbndb.com/covers/04/79/9780373250479.jpg'), - ('0312303467', 'Bet Me', 'https://images.isbndb.com/covers/34/64/9780312303464.jpg'), - ('0671693190', 'Across The Border: True Story Of Satanic Cult Killings In Matamoros, Mexico', 'https://images.isbndb.com/covers/31/90/9780671693190.jpg'), - ('0670891509', 'Marrying The Mistress', 'https://images.isbndb.com/covers/15/04/9780670891504.jpg'), - ('0312988915', 'The Nanny Diaries', 'https://images.isbndb.com/covers/89/13/9780312988913.jpg'), - ('014023313X', 'The Stone Diaries', 'https://images.isbndb.com/covers/31/31/9780140233131.jpg'), - ('097213011X', 'The Big Girls'' Guide To Life: A Plus-Sized Jaunt Through A Body-Obsessed World', 'https://images.isbndb.com/covers/01/10/9780972130110.jpg'), - ('0425141233', 'Winter Prey', 'https://images.isbndb.com/covers/12/36/9780425141236.jpg'), - ('0812966813', 'A Collection Of Beauties At The Height Of Their Popularity: A Novel', 'https://images.isbndb.com/covers/68/17/9780812966817.jpg'), - ('0671016776', 'Gravity', 'https://images.isbndb.com/covers/67/77/9780671016777.jpg'), - ('0923059008', 'Fatal Love', 'https://images.isbndb.com/covers/90/02/9780923059002.jpg'), - ('0373250428', 'Up & Out (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/04/24/9780373250424.jpg'), - ('0345470621', 'Househusband', 'https://images.isbndb.com/covers/06/21/9780345470621.jpg'), - ('0060522259', 'Elegance: A Novel', 'https://images.isbndb.com/covers/22/54/9780060522254.jpg'), - ('0312205961', 'Midnight Come Again (Kate Shugak Mysteries)', 'https://images.isbndb.com/covers/59/66/9780312205966.jpg'), - ('0743418700', 'Salem Falls', 'https://images.isbndb.com/covers/87/06/9780743418706.jpg'), - ('0399143564', 'Killing Grounds (Kate Shugak Mystery/Dana Stabenow)', 'https://images.isbndb.com/covers/35/64/9780399143564.jpg'), - ('0399144684', 'Hunter''s Moon (Kate Shugak Mysteries)', 'https://images.isbndb.com/covers/46/84/9780399144684.jpg'), - ('0425185508', 'Picture Perfect', 'https://images.isbndb.com/covers/55/06/9780425185506.jpg'), - ('0140230270', 'Harvesting The Heart', 'https://images.isbndb.com/covers/02/77/9780140230277.jpg'), - ('0140266925', 'Going To Ground: Simple Life On A Georgia Pond', 'https://images.isbndb.com/covers/69/24/9780140266924.jpg'), - ('0525947914', 'Just One Look', 'https://images.isbndb.com/covers/79/12/9780525947912.jpg'), - ('0345452593', 'Therapy', 'https://images.isbndb.com/covers/25/97/9780345452597.jpg'), - ('0757300421', 'Chicken Soup For The Romantic Soul: Inspirational Stories About Love And Romance (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/04/24/9780757300424.jpg'), - ('076791404X', 'She''s Not There: A Life In Two Genders', 'https://images.isbndb.com/covers/40/48/9780767914048.jpg'), - ('0060586125', 'Three Wishes', 'https://images.isbndb.com/covers/61/26/9780060586126.jpg'), - ('0440220432', 'Killing For Company: The Story Of A Man Addicted To Murder', 'https://images.isbndb.com/covers/04/35/9780440220435.jpg'), - ('0446326062', 'Won''t You Come Home Billy Bob', 'https://images.isbndb.com/covers/60/63/9780446326063.jpg'), - ('0671733613', 'Women: American Women In Their Own Words', 'https://images.isbndb.com/covers/36/12/9780671733612.jpg'), - ('0440225442', 'One False Move (Myron Bolitar, No. 5)', 'https://images.isbndb.com/covers/54/47/9780440225447.jpg'), - ('0575403306', 'Alice Little And The Big Girl''s Blouse', 'https://images.isbndb.com/covers/33/07/9780575403307.jpg'), - ('0375759093', 'The Summer They Came', 'https://images.isbndb.com/covers/90/93/9780375759093.jpg'), - ('0590137859', 'The Case Of The Secret Password (Clue Jr. #10)', 'https://images.isbndb.com/covers/78/50/9780590137850.jpg'), - ('0786845384', 'When Moms Attack! (Lizzie McGuire, No. 1)', 'https://images.isbndb.com/covers/53/85/9780786845385.jpg'), - ('0786845406', 'Lizzie Goes Wild! (Lizzie McGuire Junior Novel, Book 3)', 'https://images.isbndb.com/covers/54/08/9780786845408.jpg'), - ('0064442055', 'Play Ball, Amelia Bedelia (I Can Read Book 2)', 'https://images.isbndb.com/covers/20/53/9780064442053.jpg'), - ('0064440192', 'Amelia Bedelia And The Surprise Shower (I Can Read, Level 2)', 'https://images.isbndb.com/covers/01/96/9780064440196.jpg'), - ('0590470051', 'Dawn''s Big Move (Baby-Sitters Club (Quality))', 'https://images.isbndb.com/covers/00/56/9780590470056.jpg'), - ('0553480545', 'JESSICA THE THIEF (Sweet Valley Twins)', 'https://images.isbndb.com/covers/05/42/9780553480542.jpg'), - ('0590417363', 'Fourth Grade Is A Jinx (An Apple Paperback)', 'https://images.isbndb.com/covers/73/65/9780590417365.jpg'), - ('0590442481', 'Girl With The Silver Eyes (Apple Paperbacks)', 'https://images.isbndb.com/covers/24/80/9780590442480.jpg'), - ('0590440829', 'Claudia And The Middle School Mystery (Baby-Sitters Club, 40)', 'https://images.isbndb.com/covers/08/20/9780590440820.jpg'), - ('0671879464', 'The Lost Locket (Nancy Drew Notebooks #2)', 'https://images.isbndb.com/covers/94/64/9780671879464.jpg'), - ('0553484001', 'LILA ON THE LOOSE (Unicorn Club)', 'https://images.isbndb.com/covers/40/07/9780553484007.jpg'), - ('0590373986', 'It''s Great To Be Eight', 'https://images.isbndb.com/covers/39/82/9780590373982.jpg'), - ('0671879510', 'Trouble At Camp Treehouse (Nancy Drew Notebooks #7)', 'https://images.isbndb.com/covers/95/18/9780671879518.jpg'), - ('0553480553', 'The Middle School Gets Married (Sweet Valley Twins)', 'https://images.isbndb.com/covers/05/59/9780553480559.jpg'), - ('055348284X', 'A Curse On Elizabeth (Sweet Valley Kids)', 'https://images.isbndb.com/covers/28/43/9780553482843.jpg'), - ('0590482289', 'Dawn And The School Spirit War (Baby-Sitters Club)', 'https://images.isbndb.com/covers/22/88/9780590482288.jpg'), - ('0553482122', 'The Amazing Jessica (Sweet Valley Kids)', 'https://images.isbndb.com/covers/21/26/9780553482126.jpg'), - ('0380716984', 'Amelia Bedelia''s Family Album', 'https://images.isbndb.com/covers/69/82/9780380716982.jpg'), - ('0590136011', 'The Twits', 'https://images.isbndb.com/covers/60/13/9780590136013.jpg'), - ('0590426931', 'The Woodshed Mystery (The Boxcar Children, Book 7)', 'https://images.isbndb.com/covers/69/30/9780590426930.jpg'), - ('0590426818', 'Caboose Mystery', 'https://images.isbndb.com/covers/68/17/9780590426817.jpg'), - ('0590426869', 'The Boxcar Children #5: Mike''s Mystery', 'https://images.isbndb.com/covers/68/62/9780590426862.jpg'), - ('0590426850', 'The Boxcar Children Blue Bay Mystery', 'https://images.isbndb.com/covers/68/55/9780590426855.jpg'), - ('0590426877', 'The Boxcar Children #4: Mystery Ranch', 'https://images.isbndb.com/covers/68/79/9780590426879.jpg'), - ('0590426885', 'The Yellow House Mystery', 'https://images.isbndb.com/covers/68/86/9780590426886.jpg'), - ('0590426796', 'The Lighthouse Mystery (Boxcar Children No. 8)', 'https://images.isbndb.com/covers/67/94/9780590426794.jpg'), - ('0380732726', 'Ramona''s World (Ramona Series)', 'https://images.isbndb.com/covers/27/22/9780380732722.jpg'), - ('0380709562', 'Ramona Quimby, Age 8 (Avon Camelot Books)', 'https://images.isbndb.com/covers/95/64/9780380709564.jpg'), - ('0380709600', 'Ramona Forever', 'https://images.isbndb.com/covers/96/01/9780380709601.jpg'), - ('038070952X', 'Ramona And Her Mother (Ramona Quimby)', 'https://images.isbndb.com/covers/95/26/9780380709526.jpg'), - ('0380709236', 'Emily''s Runaway Imagination', 'https://images.isbndb.com/covers/92/36/9780380709236.jpg'), - ('0671955128', 'The Triple Hoax (Nancy Drew, #57)', 'https://images.isbndb.com/covers/51/20/9780671955120.jpg'), - ('0743437616', 'The Crook Who Took The Book (Nancy Drew Notebooks #47)', 'https://images.isbndb.com/covers/76/15/9780743437615.jpg'), - ('0743437675', 'The Sand Castle Mystery (Nancy Drew Notebooks #49)', 'https://images.isbndb.com/covers/76/77/9780743437677.jpg'), - ('0671001205', 'The Wild Cat Crime (Nancy Drew Digest #141)', 'https://images.isbndb.com/covers/12/09/9780671001209.jpg'), - ('0743406648', 'Flower Power (Nancy Drew Notebooks #41)', 'https://images.isbndb.com/covers/66/42/9780743406642.jpg'), - ('0743437470', 'The Crazy Carnival Case (Nancy Drew Notebooks #48)', 'https://images.isbndb.com/covers/74/79/9780743437479.jpg'), - ('0440158613', 'The Moving Finger', 'https://images.isbndb.com/covers/86/15/9780440158615.jpg'), - ('0061052493', 'Waking Beauty', 'https://images.isbndb.com/covers/24/91/9780061052491.jpg'), - ('0142000396', 'The Last Manly Man (Robin Hudson Mysteries #4)', 'https://images.isbndb.com/covers/03/97/9780142000397.jpg'), - ('0679730346', 'London Fields', 'https://images.isbndb.com/covers/03/47/9780679730347.jpg'), - ('0684815028', 'Man In The Queue', 'https://images.isbndb.com/covers/50/22/9780684815022.jpg'), - ('0312204264', 'Mr. White''s Confession: A Novel', 'https://images.isbndb.com/covers/42/66/9780312204266.jpg'), - ('0312984863', 'The Impostor (The Liars Club, Book 2)', 'https://images.isbndb.com/covers/48/61/9780312984861.jpg'), - ('0373261136', 'Fifth Rapunzel', 'https://images.isbndb.com/covers/11/30/9780373261130.jpg'), - ('0517573199', 'Well Timed Enchantment', 'https://images.isbndb.com/covers/31/98/9780517573198.jpg'), - ('0060275103', 'Ella Enchanted (Newbery Honor Book)', 'https://images.isbndb.com/covers/51/05/9780060275105.jpg'), - ('0679752455', 'The Fan Man', 'https://images.isbndb.com/covers/24/55/9780679752455.jpg'), - ('0525947345', 'A Friend Of The Family', 'https://images.isbndb.com/covers/73/49/9780525947349.jpg'), - ('006001203X', 'Dr. Atkins'' New Diet Revolution', 'https://images.isbndb.com/covers/20/38/9780060012038.jpg'), - ('0375713344', 'Geek Love: A Novel', 'https://images.isbndb.com/covers/33/47/9780375713347.jpg'), - ('0805060227', 'Eating Naked: Stories', 'https://images.isbndb.com/covers/02/25/9780805060225.jpg'), - ('0890878897', 'Tap Dancing In Zen', 'https://images.isbndb.com/covers/88/97/9780890878897.jpg'), - ('0091834171', 'The Infernal', 'https://images.isbndb.com/covers/41/73/9780091834173.jpg'), - ('0451174291', 'Howards End: Tie-In Edition (Signet)', 'https://images.isbndb.com/covers/42/91/9780451174291.jpg'), - ('3596200261', 'Schöne Neue Welt', 'https://images.isbndb.com/covers/02/69/9783596200269.jpg'), - ('3518366467', 'Wunschloses Unglück', 'https://images.isbndb.com/covers/64/62/9783518366462.jpg'), - ('3129044019', 'Rosina. Erzählung', 'https://images.isbndb.com/covers/40/18/9783129044018.jpg'), - ('3404146298', 'Der Weihnachtshund.', 'https://images.isbndb.com/covers/62/91/9783404146291.jpg'), - ('0140293450', 'About A Boy', 'https://images.isbndb.com/covers/34/56/9780140293456.jpg'), - ('1891480030', 'The Ushers', 'https://images.isbndb.com/covers/00/34/9781891480034.jpg'), - ('055311073X', 'Follow The Stars Home', 'https://images.isbndb.com/covers/07/39/9780553110739.jpg'), - ('037540256X', 'A Patchwork Planet', 'https://images.isbndb.com/covers/25/62/9780375402562.jpg'), - ('0440207622', 'Daddy', 'https://images.isbndb.com/covers/76/27/9780440207627.jpg'), - ('0671004654', 'Off The Face Of The Earth', 'https://images.isbndb.com/covers/46/51/9780671004651.jpg'), - ('034543630X', 'Simon''s Family: A Novel Of Mothers And Sons', 'https://images.isbndb.com/covers/63/06/9780345436306.jpg'), - ('0671759329', 'Darkest Hour (Cutler Family)', 'https://images.isbndb.com/covers/93/22/9780671759322.jpg'), - ('0399142495', 'Small Town Girl', 'https://images.isbndb.com/covers/24/99/9780399142499.jpg'), - ('0385306059', 'Wings', 'https://images.isbndb.com/covers/60/58/9780385306058.jpg'), - ('0843951044', 'To Wake The Dead', 'https://images.isbndb.com/covers/10/42/9780843951042.jpg'), - ('0743253973', 'A Separate Peace', 'https://images.isbndb.com/covers/39/70/9780743253970.jpg'), - ('1930603401', 'Fondue (Quick & Easy Series) (Quick & Easy (Silverback))', 'https://images.isbndb.com/covers/34/00/9781930603400.jpg'), - ('0971614504', 'Shade Of The Maple', 'https://images.isbndb.com/covers/45/05/9780971614505.jpg'), - ('006000780X', 'Boy Still Missing: A Novel', 'https://images.isbndb.com/covers/78/05/9780060007805.jpg'), - ('0450057062', 'Night Show', 'https://images.isbndb.com/covers/70/69/9780450057069.jpg'), - ('0747247838', 'Allhallow''s Eve', 'https://images.isbndb.com/covers/78/38/9780747247838.jpg'), - ('0972930949', 'The Fear Within', 'https://images.isbndb.com/covers/09/49/9780972930949.jpg'), - ('0843951842', 'Endless Night', 'https://images.isbndb.com/covers/18/44/9780843951844.jpg'), - ('0843953837', 'The Wind Caller', 'https://images.isbndb.com/covers/38/31/9780843953831.jpg'), - ('042519549X', 'Isle Of Palms', 'https://images.isbndb.com/covers/54/99/9780425195499.jpg'), - ('1400042070', 'The Amateur Marriage: A Novel', 'https://images.isbndb.com/covers/20/74/9781400042074.jpg'), - ('067084327X', 'Grace Point', 'https://images.isbndb.com/covers/32/75/9780670843275.jpg'), - ('0425193942', 'Sullivan''s Island (Lowcountry Tales)', 'https://images.isbndb.com/covers/39/45/9780425193945.jpg'), - ('0375506039', 'Open House', 'https://images.isbndb.com/covers/60/31/9780375506031.jpg'), - ('0345435028', 'What We Keep', 'https://images.isbndb.com/covers/50/26/9780345435026.jpg'), - ('0345453816', 'Killjoy: A Novel', 'https://images.isbndb.com/covers/38/15/9780345453815.jpg'), - ('0345464958', 'The Last Girls: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/49/58/9780345464958.jpg'), - ('0743412753', 'No Way Out', 'https://images.isbndb.com/covers/27/59/9780743412759.jpg'), - ('0553583956', 'Safe Harbor', 'https://images.isbndb.com/covers/39/53/9780553583953.jpg'), - ('0446612804', 'Don''t Tell', 'https://images.isbndb.com/covers/28/07/9780446612807.jpg'), - ('0618109617', 'The Mystery Of Breathing: A Novel', 'https://images.isbndb.com/covers/96/16/9780618109616.jpg'), - ('1401300316', 'The Center Of Everything', 'https://images.isbndb.com/covers/03/19/9781401300319.jpg'), - ('1889186287', 'Quest For Sex, Truth & Reality', 'https://images.isbndb.com/covers/62/83/9781889186283.jpg'), - ('1881475735', 'Operator B (Cemetery Dance Novella Series, No. 7)', 'https://images.isbndb.com/covers/57/36/9781881475736.jpg'), - ('0972085920', 'Rage', 'https://images.isbndb.com/covers/59/22/9780972085922.jpg'), - ('1889186228', 'Sex, Drugs & Power Tools', 'https://images.isbndb.com/covers/62/21/9781889186221.jpg'), - ('1892950103', 'Off Season : The Unexpurgated Signed Limited Edition', 'https://images.isbndb.com/covers/01/09/9781892950109.jpg'), - ('0671729411', 'Flowers In The Attic (Dollanganger, Book 1)', 'https://images.isbndb.com/covers/94/17/9780671729417.jpg'), - ('950028359X', 'Mi Planta De Naranja-Lima', 'https://images.isbndb.com/covers/35/95/9789500283595.jpg'), - ('043912042X', 'Esperanza Rising', 'https://images.isbndb.com/covers/04/25/9780439120425.jpg'), - ('9722100262', 'Memorial Do Convento', 'https://images.isbndb.com/covers/02/67/9789722100267.jpg'), - ('0060177225', 'Dangerous To Know', 'https://images.isbndb.com/covers/72/25/9780060177225.jpg'), - ('9505112033', '62 Modelo Para Armar (Spanish Edition)', 'https://images.isbndb.com/covers/20/36/9789505112036.jpg'), - ('9875500534', 'Bodas De Sangre (Spanish Edition)', 'https://images.isbndb.com/covers/05/32/9789875500532.jpg'), - ('9875500046', 'La Divina Comedia (Spanish Edition)', 'https://images.isbndb.com/covers/00/44/9789875500044.jpg'), - ('9875500526', 'Dona Rosita La Soltera (Spanish Edition)', 'https://images.isbndb.com/covers/05/25/9789875500525.jpg'), - ('0425128458', 'Sullivan''s Sting', 'https://images.isbndb.com/covers/84/59/9780425128459.jpg'), - ('0553568701', 'Bad Love (Alex Delaware Novels)', 'https://images.isbndb.com/covers/87/07/9780553568707.jpg'), - ('1569471231', 'Handmaid Of Desire', 'https://images.isbndb.com/covers/12/34/9781569471234.jpg'), - ('1889199036', 'Styles By Maggie Sweet', 'https://images.isbndb.com/covers/90/30/9781889199030.jpg'), - ('0345442938', 'My Only Story', 'https://images.isbndb.com/covers/29/32/9780345442932.jpg'), - ('0531058379', 'Afternoon Of The Elves', 'https://images.isbndb.com/covers/83/74/9780531058374.jpg'), - ('0425129616', 'The Mysterious Affair At Styles (Hercule Poirot)', 'https://images.isbndb.com/covers/96/16/9780425129616.jpg'), - ('1856352498', 'The Story Of Irish Emigration (Compact Irish History)', 'https://images.isbndb.com/covers/24/99/9781856352499.jpg'), - ('0688162827', 'Tell Me Your Dreams', 'https://images.isbndb.com/covers/28/25/9780688162825.jpg'), - ('0060083948', 'Tishomingo Blues', 'https://images.isbndb.com/covers/39/46/9780060083946.jpg'), - ('0679892206', 'Secret Ingredient (Stepping Stone, Paper)', 'https://images.isbndb.com/covers/22/05/9780679892205.jpg'), - ('1590521439', 'A Steadfast Surrender (Steadfast Series #1)', 'https://images.isbndb.com/covers/14/34/9781590521434.jpg'), - ('158660970X', 'Hidden Things: Where The Past Meets The Present--Head On', 'https://images.isbndb.com/covers/97/02/9781586609702.jpg'), - ('0152024999', 'Ginger Pye', 'https://images.isbndb.com/covers/49/94/9780152024994.jpg'), - ('0849942845', 'The Note: A Story Of Second Chances', 'https://images.isbndb.com/covers/28/46/9780849942846.jpg'), - ('158567074X', 'Frida', 'https://images.isbndb.com/covers/07/41/9781585670741.jpg'), - ('2070360024', 'L''étranger', 'https://images.isbndb.com/covers/00/24/9782070360024.jpg'), - ('0451184025', 'Dark Cathedral (Creed)', 'https://images.isbndb.com/covers/40/23/9780451184023.jpg'), - ('0553213695', 'The Metamorphosis (Bantam Classics)', 'https://images.isbndb.com/covers/36/90/9780553213690.jpg'), - ('0140089373', 'Fools Crow (Contemporary American Fiction)', 'https://images.isbndb.com/covers/93/70/9780140089370.jpg'), - ('0140291946', 'House Of The Winds (Penguin Readers Guide Inside)', 'https://images.isbndb.com/covers/19/40/9780140291940.jpg'), - ('0921149611', 'Folk And Fairy Tales', 'https://images.isbndb.com/covers/96/13/9780921149613.jpg'), - ('0460873598', 'Alice''s Adventures In Wonderland And Through The Looking Glass (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/35/98/9780460873598.jpg'), - ('0889223394', 'Modern Canadian Plays V.1', 'https://images.isbndb.com/covers/33/94/9780889223394.jpg'), - ('0138199051', 'Social Inequality In Canada Patterns Problems Policies', 'https://images.isbndb.com/covers/90/50/9780138199050.jpg'), - ('0771021461', 'Health, Illness & Medicine (Oxford)', 'https://images.isbndb.com/covers/14/66/9780771021466.jpg'), - ('0446344109', 'The Name Of The Rose', 'https://images.isbndb.com/covers/41/04/9780446344104.jpg'), - ('074320395X', 'The Body Artist: A Novel', 'https://images.isbndb.com/covers/39/51/9780743203951.jpg'), - ('0452008999', 'The Master And Margarita', 'https://images.isbndb.com/covers/89/91/9780452008991.jpg'), - ('0316788228', 'The Pilot''s Wife', 'https://images.isbndb.com/covers/82/29/9780316788229.jpg'), - ('0415902029', 'Erotic Welfare: Sexual Theory And Politics In The Age Of Epidemic (Thinking Gender)', 'https://images.isbndb.com/covers/20/21/9780415902021.jpg'), - ('0920057861', 'The Radical Papers (v. 1)', 'https://images.isbndb.com/covers/78/65/9780920057865.jpg'), - ('0774803436', 'Cross-cultural Caring: A Handbook For Health Professionals', 'https://images.isbndb.com/covers/34/34/9780774803434.jpg'), - ('1550170732', 'Power To Us All: Consititution Or Social Contract?', 'https://images.isbndb.com/covers/07/33/9781550170733.jpg'), - ('013116757X', 'Canadian Society: A Macro Analysis', 'https://images.isbndb.com/covers/75/75/9780131167575.jpg'), - ('0176035400', 'Work, Industry, And Canadian Society', 'https://images.isbndb.com/covers/54/02/9780176035402.jpg'), - ('0192815326', 'Frankenstein (World''s Classics)', 'https://images.isbndb.com/covers/53/23/9780192815323.jpg'), - ('0948984031', 'Scum Manifesto', 'https://images.isbndb.com/covers/40/37/9780948984037.jpg'), - ('014002476X', 'The Unicorn', 'https://images.isbndb.com/covers/47/60/9780140024760.jpg'), - ('155861009X', 'The End Of This Day''s Business', 'https://images.isbndb.com/covers/00/95/9781558610095.jpg'), - ('0671740288', 'Loony Bin Trip', 'https://images.isbndb.com/covers/02/83/9780671740283.jpg'), - ('0951426133', 'Free', 'https://images.isbndb.com/covers/61/35/9780951426135.jpg'), - ('0704339838', 'Never The Same Again: Women And The Miners'' Strike', 'https://images.isbndb.com/covers/98/35/9780704339835.jpg'), - ('0375421815', 'The Crazed: A Novel', 'https://images.isbndb.com/covers/18/15/9780375421815.jpg'), - ('0451519841', '1984: A Novel (Commemorative Edition)', 'https://images.isbndb.com/covers/98/49/9780451519849.jpg'), - ('0889222371', 'Cambodia: A Book For People Who Find Television Too Slow', 'https://images.isbndb.com/covers/23/73/9780889222373.jpg'), - ('006091307X', 'The Crying Of Lot 49 (Perennial Fiction Library)', 'https://images.isbndb.com/covers/30/76/9780060913076.jpg'), - ('0140067779', 'Obasan', 'https://images.isbndb.com/covers/77/74/9780140067774.jpg'), - ('0553211714', 'Anna Karenina', 'https://images.isbndb.com/covers/17/19/9780553211719.jpg'), - ('0440160677', 'The Other Side Of Midnight', 'https://images.isbndb.com/covers/06/70/9780440160670.jpg'), - ('0451158962', 'Miracle (Signet)', 'https://images.isbndb.com/covers/89/63/9780451158963.jpg'), - ('0061095869', 'Her Own Rules', 'https://images.isbndb.com/covers/58/63/9780061095863.jpg'), - ('0345345738', 'Women In His Life', 'https://images.isbndb.com/covers/57/38/9780345345738.jpg'), - ('1859671438', 'Tinwork (New Crafts)', 'https://images.isbndb.com/covers/14/36/9781859671436.jpg'), - ('0870407570', 'Paper Magic: Pop-Up Paper Craft: Origamic Architecture', 'https://images.isbndb.com/covers/75/74/9780870407574.jpg'), - ('0441172717', 'Dune (Dune Chronicles, Book 1)', 'https://images.isbndb.com/covers/27/19/9780441172719.jpg'), - ('0751510785', 'Next To A Letter From Home: Major Glenn Miller''s Wartime Band', 'https://images.isbndb.com/covers/07/82/9780751510782.jpg'), - ('0375803483', 'Count Karlstein', 'https://images.isbndb.com/covers/34/82/9780375803482.jpg'), - ('0060956453', 'Ordinary Resurrections: Children In The Years Of Hope', 'https://images.isbndb.com/covers/64/55/9780060956455.jpg'), - ('0971400415', 'Love Thy Sister', 'https://images.isbndb.com/covers/04/12/9780971400412.jpg'), - ('0374266441', 'Smilla''s Sense Of Snow', 'https://images.isbndb.com/covers/64/48/9780374266448.jpg'), - ('0452283876', 'Himalayan Dhaba', 'https://images.isbndb.com/covers/38/79/9780452283879.jpg'), - ('0375506292', 'The Seal Wife: A Novel', 'https://images.isbndb.com/covers/62/91/9780375506291.jpg'), - ('0553156691', 'TAKING CHARGE (Sweet Valley Twins)', 'https://images.isbndb.com/covers/66/90/9780553156690.jpg'), - ('0553156810', 'TEAMWORK (Sweet Valley Twins)', 'https://images.isbndb.com/covers/68/12/9780553156812.jpg'), - ('0553156950', 'Jessica And The Brat Attack (Sweet Valley Twins #29)', 'https://images.isbndb.com/covers/69/59/9780553156959.jpg'), - ('0553157159', 'PRINCESS ELIZABETH (Sweet Valley Twins)', 'https://images.isbndb.com/covers/71/54/9780553157154.jpg'), - ('0553156888', 'APRIL FOOL! (Sweet Valley Twins)', 'https://images.isbndb.com/covers/68/81/9780553156881.jpg'), - ('0553156357', 'JUMPING TO CONCLUSIONS (Sweet Valley Twins)', 'https://images.isbndb.com/covers/63/55/9780553156355.jpg'), - ('0553156535', 'Standing Out (Sweet Valley Twins #25) (A Bantam-Skylark Book)', 'https://images.isbndb.com/covers/65/39/9780553156539.jpg'), - ('0553157272', 'JESSICA''S BAD IDEA (Sweet Valley Twins)', 'https://images.isbndb.com/covers/72/77/9780553157277.jpg'), - ('0553156241', 'CLAIM TO FAME (Sweet Valley Twins)', 'https://images.isbndb.com/covers/62/49/9780553156249.jpg'), - ('0553156284', 'OUT OF PLACE (Sweet Valley Twins)', 'https://images.isbndb.com/covers/62/87/9780553156287.jpg'), - ('0553156098', 'LEFT BEHIND (Sweet Valley Twins)', 'https://images.isbndb.com/covers/60/96/9780553156096.jpg'), - ('0553157078', 'The Big Camp Secret (Sweet Valley Twins Super Editions)', 'https://images.isbndb.com/covers/70/79/9780553157079.jpg'), - ('0553156411', 'Holiday Mischief (Sweet Valley Twins Super Editions)', 'https://images.isbndb.com/covers/64/16/9780553156416.jpg'), - ('0553155881', 'The Class Trip (Sweet Valley Twins Super Editions)', 'https://images.isbndb.com/covers/58/84/9780553155884.jpg'), - ('0553156063', 'PLAYING HOOKY (Sweet Valley Twins)', 'https://images.isbndb.com/covers/60/65/9780553156065.jpg'), - ('0553156632', 'TUG OF WAR (Sweet Valley Twins)', 'https://images.isbndb.com/covers/66/38/9780553156638.jpg'), - ('0553484346', 'Elizabeth Solves It All (Francine Pascal''s Sweet Valley Twins #103)', 'https://images.isbndb.com/covers/43/42/9780553484342.jpg'), - ('0060961023', 'Taming Your Gremlin: A Guide To Enjoying Yourself', 'https://images.isbndb.com/covers/10/22/9780060961022.jpg'), - ('0385134444', 'Farm Journal''s Freezing And Canning Cookbook: Prized Recipes From The Farms Of America', 'https://images.isbndb.com/covers/44/46/9780385134446.jpg'), - ('0446342963', 'Dreamer''s Dictionary', 'https://images.isbndb.com/covers/29/64/9780446342964.jpg'), - ('0023672609', 'Descartes: Discourse On Method And The Meditations', 'https://images.isbndb.com/covers/26/06/9780023672606.jpg'), - ('1567615325', 'Complete Idiot''s Guide To Perfect Wedding (The Complete Idiot''s Guide)', 'https://images.isbndb.com/covers/53/26/9781567615326.jpg'), - ('0451410327', 'Shetland Summer', 'https://images.isbndb.com/covers/03/20/9780451410320.jpg'), - ('0553569902', 'Lion''s Bride', 'https://images.isbndb.com/covers/99/02/9780553569902.jpg'), - ('0553574116', 'Wicked Widow', 'https://images.isbndb.com/covers/41/11/9780553574111.jpg'), - ('3442413508', 'Auf Ehre Und Gewissen: Roman', 'https://images.isbndb.com/covers/35/08/9783442413508.jpg'), - ('0385479484', 'The Short History Of A Prince: A Novel', 'https://images.isbndb.com/covers/94/86/9780385479486.jpg'), - ('3257234015', 'Zwei Fremde Im Zug', 'https://images.isbndb.com/covers/40/15/9783257234015.jpg'), - ('0030914566', 'Soldier', 'https://images.isbndb.com/covers/45/60/9780030914560.jpg'), - ('0425185796', 'The Crossword Connection', 'https://images.isbndb.com/covers/57/97/9780425185797.jpg'), - ('087923573X', 'Swallows And Amazons', 'https://images.isbndb.com/covers/57/34/9780879235734.jpg'), - ('1573223328', 'Across The Nightingale Floor (Tales Of The Otori, Book 1)', 'https://images.isbndb.com/covers/33/24/9781573223324.jpg'), - ('0399142614', 'The List', 'https://images.isbndb.com/covers/26/11/9780399142611.jpg'), - ('0375703128', 'The Road To Mars', 'https://images.isbndb.com/covers/31/26/9780375703126.jpg'), - ('0553232320', 'Road To Gandolfo', 'https://images.isbndb.com/covers/23/25/9780553232325.jpg'), - ('0440318688', 'Deliverance', 'https://images.isbndb.com/covers/86/82/9780440318682.jpg'), - ('0345314980', 'Berlin Game (Bernard Samson, Book 1)', 'https://images.isbndb.com/covers/49/87/9780345314987.jpg'), - ('3455042457', 'Das Serbische Mädchen', 'https://images.isbndb.com/covers/24/50/9783455042450.jpg'), - ('0380811812', 'Aftermath: A Novel Of Suspense (Inspector Banks Novels)', 'https://images.isbndb.com/covers/18/16/9780380811816.jpg'), - ('0452267110', 'Praisesong For The Widow', 'https://images.isbndb.com/covers/71/14/9780452267114.jpg'), - ('0451187261', 'Matters Of Choice', 'https://images.isbndb.com/covers/72/60/9780451187260.jpg'), - ('0425068293', 'Savannah', 'https://images.isbndb.com/covers/82/98/9780425068298.jpg'), - ('0553295233', 'Bright Captivity (Georgia Trilogy, Book 1)', 'https://images.isbndb.com/covers/52/38/9780553295238.jpg'), - ('0743246071', 'The Queen''s Fool: A Novel (Boleyn)', 'https://images.isbndb.com/covers/60/71/9780743246071.jpg'), - ('0743417682', 'From A Buick 8', 'https://images.isbndb.com/covers/76/86/9780743417686.jpg'), - ('0385507593', 'Jennifer Government: A Novel', 'https://images.isbndb.com/covers/75/92/9780385507592.jpg'), - ('0345441036', 'Black House', 'https://images.isbndb.com/covers/10/34/9780345441034.jpg'), - ('0345366700', 'Tanar Of Pellucidar: (#3) (Pellucidar Series)', 'https://images.isbndb.com/covers/67/02/9780345366702.jpg'), - ('0441470017', 'Land Of Terror', 'https://images.isbndb.com/covers/00/13/9780441470013.jpg'), - ('0441046371', 'Back To Stone Age', 'https://images.isbndb.com/covers/63/79/9780441046379.jpg'), - ('0553575708', 'The Edge Of Human (Blade Runner, Book 2)', 'https://images.isbndb.com/covers/57/05/9780553575705.jpg'), - ('0812542843', 'Angel', 'https://images.isbndb.com/covers/28/44/9780812542844.jpg'), - ('0553281747', 'Mona Lisa Overdrive', 'https://images.isbndb.com/covers/17/43/9780553281743.jpg'), - ('1572971967', 'Fierce Creatures', 'https://images.isbndb.com/covers/19/67/9781572971967.jpg'), - ('1565049314', 'Child Of The Light: Book One Of The Madagascar Manifesto', 'https://images.isbndb.com/covers/93/14/9781565049314.jpg'), - ('006109398X', 'Treasure Box', 'https://images.isbndb.com/covers/39/82/9780061093982.jpg'), - ('156947012X', 'The Liar', 'https://images.isbndb.com/covers/01/21/9781569470121.jpg'), - ('0312867549', '1921: The Great Novel Of The Irish Civil War', 'https://images.isbndb.com/covers/75/46/9780312867546.jpg'), - ('157322202X', 'The Dream Of Scipio', 'https://images.isbndb.com/covers/20/20/9781573222020.jpg'), - ('0879516283', 'The Gormenghast Novels (Titus Groan / Gormenghast / Titus Alone)', 'https://images.isbndb.com/covers/62/84/9780879516284.jpg'), - ('0812571339', 'Crossroads Of Twilight (Wheel Of Time, Book 10)', 'https://images.isbndb.com/covers/13/32/9780812571332.jpg'), - ('037541200X', 'Blood Canticle (The Vampire Chronicles)', 'https://images.isbndb.com/covers/20/04/9780375412004.jpg'), - ('0380732033', 'The Night Lives On: The Untold Stories & Secrets Behind The Sinking Of The Unsinkable Ship-Titanic', 'https://images.isbndb.com/covers/20/36/9780380732036.jpg'), - ('0553278274', 'A Night To Remember', 'https://images.isbndb.com/covers/82/79/9780553278279.jpg'), - ('0553571885', 'A Thin Dark Line', 'https://images.isbndb.com/covers/18/82/9780553571882.jpg'), - ('014034294X', 'Matilda', 'https://images.isbndb.com/covers/29/49/9780140342949.jpg'), - ('192883244X', 'Man, Woman, And The Meaning Of Love: God''s Plan For Love, Marriage, Intimacy, And The Family', 'https://images.isbndb.com/covers/24/47/9781928832447.jpg'), - ('0934641641', 'How To Rock Climb! 2nd Edition', 'https://images.isbndb.com/covers/16/47/9780934641647.jpg'), - ('1851820442', 'The Navarre Bible: Acts Of The Apostles (The Navarre Bible: New Testament)', 'https://images.isbndb.com/covers/04/43/9781851820443.jpg'), - ('0446671444', 'What Your Doctor May Not Tell You About Menopause: The Breakthrough Book On Natural Progesterone', 'https://images.isbndb.com/covers/14/46/9780446671446.jpg'), - ('0440717949', 'Dear Mr. Henshaw', 'https://images.isbndb.com/covers/79/42/9780440717942.jpg'), - ('0140502343', 'The Story Of Ferdinand (Picture Puffins)', 'https://images.isbndb.com/covers/23/43/9780140502343.jpg'), - ('0590478346', 'Sounder', 'https://images.isbndb.com/covers/83/42/9780590478342.jpg'), - ('0440474655', 'Sadako And The 1000 Paper Cranes', 'https://images.isbndb.com/covers/46/54/9780440474654.jpg'), - ('0806968532', 'Secret Hiding Places: (For Clever Kids)', 'https://images.isbndb.com/covers/85/37/9780806968537.jpg'), - ('0385318413', 'What Your Kindergartner Needs To Know: Preparing Your Child For A Lifetime Of Learning (Core Knowledge Series)', 'https://images.isbndb.com/covers/84/19/9780385318419.jpg'), - ('1569873291', 'Who''s A Goblin?', 'https://images.isbndb.com/covers/32/98/9781569873298.jpg'), - ('1569870381', 'The Christmas Cookies', 'https://images.isbndb.com/covers/03/89/9781569870389.jpg'), - ('030701035X', 'Walt Disney''s Cinderella, A Little Golden Book', 'https://images.isbndb.com/covers/03/53/9780307010353.jpg'), - ('0439327660', 'School''s In!', 'https://images.isbndb.com/covers/76/64/9780439327664.jpg'), - ('1885221665', 'If You Wear Out Your Body, Where Will You Live?: The Little Book Of Nourishment For Your Body, Mind And Soul', 'https://images.isbndb.com/covers/16/67/9781885221667.jpg'), - ('006441082X', 'When Good Ghouls Go Bad', 'https://images.isbndb.com/covers/08/23/9780064410823.jpg'), - ('0590189344', 'Lost In Space: Digest', 'https://images.isbndb.com/covers/93/47/9780590189347.jpg'), - ('1561791334', 'Behind The Locked Door (Adventures In Odyssey Fiction Series #4)', 'https://images.isbndb.com/covers/13/30/9781561791330.jpg'), - ('0553225413', 'House Of Danger (Choose Your Own Adventure, No. 15)', 'https://images.isbndb.com/covers/54/19/9780553225419.jpg'), - ('0451188586', 'The Illustrated Sports Record Book: Revised And Updated Fourth Edition', 'https://images.isbndb.com/covers/85/88/9780451188588.jpg'), - ('1561568805', 'Tales Of Terror And Suspense', 'https://images.isbndb.com/covers/88/02/9781561568802.jpg'), - ('043921064X', 'Don''t Get Caught In The Girls Locker Room', 'https://images.isbndb.com/covers/06/45/9780439210645.jpg'), - ('0717289079', 'Disney''s Tarzan (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/90/73/9780717289073.jpg'), - ('0842341137', 'Take Me Out Of The Ball Game (McGee And Me!)', 'https://images.isbndb.com/covers/11/34/9780842341134.jpg'), - ('0439057469', 'Home Run Heroes!: Mark McGwire And Sammy Sosa', 'https://images.isbndb.com/covers/74/62/9780439057462.jpg'), - ('0590425587', 'Drina Dances On Stage', 'https://images.isbndb.com/covers/55/82/9780590425582.jpg'), - ('0440402921', 'Travelers By Night', 'https://images.isbndb.com/covers/29/23/9780440402923.jpg'), - ('0316142336', 'At The Plate With...Ken Griffey Jr. (Matt Christopher Sports Bio Bookshelf)', 'https://images.isbndb.com/covers/23/35/9780316142335.jpg'), - ('0310202639', 'Baseball 2', 'https://images.isbndb.com/covers/26/39/9780310202639.jpg'), - ('0310495512', 'Baseball (Sports Heroes)', 'https://images.isbndb.com/covers/55/12/9780310495512.jpg'), - ('1889733008', 'The Butterfly That Found Her Way Home/La Mariposa Que Encontro El Camino A Casa', 'https://images.isbndb.com/covers/30/05/9781889733005.jpg'), - ('0440406943', 'D''Aulaires'' Book Of Greek Myths', 'https://images.isbndb.com/covers/69/45/9780440406945.jpg'), - ('1856975770', 'The Kingfisher First Dictionary (Kingfisher First Reference)', 'https://images.isbndb.com/covers/57/73/9781856975773.jpg'), - ('1568222033', 'Big Book Of Everything, Preschool', 'https://images.isbndb.com/covers/20/35/9781568222035.jpg'), - ('9531530319', 'Gdje Pijevac Ne Pjeva (Biblioteka "Zlatni Paun") (Croatian Edition)', 'https://images.isbndb.com/covers/03/16/9789531530316.jpg'), - ('1567186483', 'Origins Of Modern Witchcraft: The Evolution Of A World Religion', 'https://images.isbndb.com/covers/64/82/9781567186482.jpg'), - ('0738841943', 'Black Moon', 'https://images.isbndb.com/covers/19/46/9780738841946.jpg'), - ('0806512687', 'The Candle Magick Workbook: Why And How Candle Magick Works', 'https://images.isbndb.com/covers/26/86/9780806512686.jpg'), - ('0875420486', 'Practical Candleburning Rituals: Spells And Rituals For Every Purpose (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/04/86/9780875420486.jpg'), - ('0385333137', 'Black And Blue (Oprah''s Book Club)', 'https://images.isbndb.com/covers/31/39/9780385333139.jpg'), - ('034538430X', 'Ticktock', 'https://images.isbndb.com/covers/43/00/9780345384300.jpg'), - ('0553576801', 'The Perfect Husband', 'https://images.isbndb.com/covers/68/01/9780553576801.jpg'), - ('1551668637', 'New Attitude (MIRA)', 'https://images.isbndb.com/covers/86/35/9781551668635.jpg'), - ('0060169281', 'Soul Mates: Honoring The Mysteries Of Love And Relationship', 'https://images.isbndb.com/covers/92/82/9780060169282.jpg'), - ('1551666952', 'The Falls', 'https://images.isbndb.com/covers/69/52/9781551666952.jpg'), - ('0553285785', 'Public Secrets', 'https://images.isbndb.com/covers/57/89/9780553285789.jpg'), - ('0373484410', 'Time And Again', 'https://images.isbndb.com/covers/44/16/9780373484416.jpg'), - ('0064405877', 'Am I Blue?: Coming Out From The Silence', 'https://images.isbndb.com/covers/58/74/9780064405874.jpg'), - ('0060009640', 'Crush Depth', 'https://images.isbndb.com/covers/96/49/9780060009649.jpg'), - ('0060182970', 'Coldheart Canyon: A Hollywood Ghost Story', 'https://images.isbndb.com/covers/29/77/9780060182977.jpg'), - ('0399144897', 'The White House Connection', 'https://images.isbndb.com/covers/48/99/9780399144899.jpg'), - ('0061031089', 'Running Scared', 'https://images.isbndb.com/covers/10/83/9780061031083.jpg'), - ('0312890273', 'Ancient Of Days', 'https://images.isbndb.com/covers/02/78/9780312890278.jpg'), - ('0446608378', 'Thunderhead', 'https://images.isbndb.com/covers/83/74/9780446608374.jpg'), - ('0449001962', 'Murder In Foggy Bottom (Capital Crimes)', 'https://images.isbndb.com/covers/19/67/9780449001967.jpg'), - ('074321269X', 'The Jasmine Trade: A Novel Of Suspense Introducing Eve Diamond', 'https://images.isbndb.com/covers/26/94/9780743212694.jpg'), - ('0385323921', 'The Klone And I', 'https://images.isbndb.com/covers/39/25/9780385323925.jpg'), - ('1551668440', 'Snowfall', 'https://images.isbndb.com/covers/84/44/9781551668444.jpg'), - ('0446518700', 'The Heart: A Memoir', 'https://images.isbndb.com/covers/87/03/9780446518703.jpg'), - ('0451201906', 'Storm', 'https://images.isbndb.com/covers/19/04/9780451201904.jpg'), - ('0812555058', 'Frost Of Heaven', 'https://images.isbndb.com/covers/50/59/9780812555059.jpg'), - ('0441005543', 'Night Watch', 'https://images.isbndb.com/covers/55/43/9780441005543.jpg'), - ('0312956681', 'Rulers Of Darkness', 'https://images.isbndb.com/covers/66/84/9780312956684.jpg'), - ('0373262736', 'Fowl Play (A Molly West Mystery) (Worldwide Library Mystery)', 'https://images.isbndb.com/covers/27/31/9780373262731.jpg'), - ('155166836X', 'Last Lover', 'https://images.isbndb.com/covers/83/69/9781551668369.jpg'), - ('0451193288', 'Reckless Endangerment', 'https://images.isbndb.com/covers/32/85/9780451193285.jpg'), - ('0553578022', 'The Face Of Deception (Eve Duncan)', 'https://images.isbndb.com/covers/80/27/9780553578027.jpg'), - ('0449219364', 'G Is For Gumshoe (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/93/62/9780449219362.jpg'), - ('1842328506', 'The Widow (A Van Der Valk Thriller)', 'https://images.isbndb.com/covers/85/07/9781842328507.jpg'), - ('0446516279', 'Dreamfall', 'https://images.isbndb.com/covers/62/73/9780446516273.jpg'), - ('0380775832', 'Winter Fire', 'https://images.isbndb.com/covers/58/35/9780380775835.jpg'), - ('0440215900', 'Walking After Midnight', 'https://images.isbndb.com/covers/59/05/9780440215905.jpg'), - ('0380818760', 'Beautiful Dreamer', 'https://images.isbndb.com/covers/87/61/9780380818761.jpg'), - ('0446361836', 'Forever, Victoria', 'https://images.isbndb.com/covers/18/35/9780446361835.jpg'), - ('0517549069', 'Mistral''s Daughter', 'https://images.isbndb.com/covers/90/63/9780517549063.jpg'), - ('1567187277', 'Murder At Witches'' Bluff', 'https://images.isbndb.com/covers/72/74/9781567187274.jpg'), - ('0373272359', 'Texas Hero (Code Name: Danger) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/23/58/9780373272358.jpg'), - ('0446605883', 'With Song', 'https://images.isbndb.com/covers/58/85/9780446605885.jpg'), - ('1567181562', 'The Celtic Heart', 'https://images.isbndb.com/covers/15/62/9781567181562.jpg'), - ('0140187405', 'Tortilla Flat (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/74/03/9780140187403.jpg'), - ('0893753971', 'Great Tales Of Terror (Watermill Classics)', 'https://images.isbndb.com/covers/39/79/9780893753979.jpg'), - ('1853260584', 'Return Of Sherlock Holmes (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/05/82/9781853260582.jpg'), - ('0590434985', 'Jacob Have I Loved', 'https://images.isbndb.com/covers/49/80/9780590434980.jpg'), - ('0671739670', 'LIFE, THE UNIVERSE AND EVERYTHING', 'https://images.isbndb.com/covers/96/76/9780671739676.jpg'), - ('0843953101', 'You Are So Cursed!', 'https://images.isbndb.com/covers/31/07/9780843953107.jpg'), - ('0345308484', 'What Every Woman Should Know About Men', 'https://images.isbndb.com/covers/84/81/9780345308481.jpg'), - ('0393307069', 'Post Captain ( Book 2 In Series) (Aubrey/Maturin Novels)', 'https://images.isbndb.com/covers/70/61/9780393307061.jpg'), - ('0380789140', 'Prisoner Of Conscience', 'https://images.isbndb.com/covers/91/46/9780380789146.jpg'), - ('0451453824', 'Battletech 19: Tactics Of Duty', 'https://images.isbndb.com/covers/38/22/9780451453822.jpg'), - ('0440186927', 'There Is A Tide', 'https://images.isbndb.com/covers/69/22/9780440186922.jpg'), - ('0679783261', 'Pride And Prejudice (Modern Library Classics)', 'https://images.isbndb.com/covers/32/68/9780679783268.jpg'), - ('0375806717', 'The Black Stallion', 'https://images.isbndb.com/covers/67/11/9780375806711.jpg'), - ('0515137057', 'Clean Cut (Paris Murphy Mysteries)', 'https://images.isbndb.com/covers/70/57/9780515137057.jpg'), - ('0743227441', 'The Other Boleyn Girl', 'https://images.isbndb.com/covers/74/45/9780743227445.jpg'), - ('0670877999', 'Slow Burn', 'https://images.isbndb.com/covers/79/97/9780670877997.jpg'), - ('0312986289', 'Blackwater Sound: A Novel (Thorn Mysteries)', 'https://images.isbndb.com/covers/62/85/9780312986285.jpg'), - ('0812570901', 'The Fifth Horseman: A Novel Of Biological Disaster', 'https://images.isbndb.com/covers/09/08/9780812570908.jpg'), - ('0671024108', 'Speaking In Tongues', 'https://images.isbndb.com/covers/41/09/9780671024109.jpg'), - ('0345433491', 'Hanna''s Daughters: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/34/97/9780345433497.jpg'), - ('0671793888', 'Cowboys Are My Weakness', 'https://images.isbndb.com/covers/38/83/9780671793883.jpg'), - ('0679769447', 'What Girls Learn: A Novel', 'https://images.isbndb.com/covers/94/46/9780679769446.jpg'), - ('0671535455', 'Hoopi Shoopi Donna', 'https://images.isbndb.com/covers/54/52/9780671535452.jpg'), - ('1558743316', 'A 2nd Helping Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/33/11/9781558743311.jpg'), - ('0345381432', 'Dreaming In Cuban', 'https://images.isbndb.com/covers/14/39/9780345381439.jpg'), - ('089919513X', 'OLIVE AND THE MAGIC HAT', 'https://images.isbndb.com/covers/51/31/9780899195131.jpg'), - ('043919105X', 'Powerpuff Girls 8x8 #04: Paste Makes Waste', 'https://images.isbndb.com/covers/10/50/9780439191050.jpg'), - ('0553375067', 'Emotional Intelligence: Why It Can Matter More Than IQ', 'https://images.isbndb.com/covers/50/60/9780553375060.jpg'), - ('0671452177', 'The World According To Garp', 'https://images.isbndb.com/covers/21/79/9780671452179.jpg'), - ('0451143426', 'One Flew Over The Cuckoo''s Nest', 'https://images.isbndb.com/covers/34/26/9780451143426.jpg'), - ('0553275976', 'The Bonfire Of The Vanities', 'https://images.isbndb.com/covers/59/71/9780553275971.jpg'), - ('0553122509', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/25/03/9780553122503.jpg'), - ('0140092323', 'Lake Wobegon Days', 'https://images.isbndb.com/covers/23/25/9780140092325.jpg'), - ('0441779131', 'Stainless Steel Rat Saves The World (Stainless Steel Rat Books)', 'https://images.isbndb.com/covers/91/30/9780441779130.jpg'), - ('0345387813', 'Power Play (Petaybee, Book 3)', 'https://images.isbndb.com/covers/78/13/9780345387813.jpg'), - ('1562927736', 'The Adventures Of Mighty Mom: Here She Comes To Save The Day...If Only She Can Find The Keys!', 'https://images.isbndb.com/covers/77/38/9781562927738.jpg'), - ('0553293885', 'A Great Day For The Deadly', 'https://images.isbndb.com/covers/38/83/9780553293883.jpg'), - ('0671795171', 'Passing Fancy (Alien Nation, Book 6)', 'https://images.isbndb.com/covers/51/77/9780671795177.jpg'), - ('0449702472', 'Truth Trap', 'https://images.isbndb.com/covers/24/75/9780449702475.jpg'), - ('0553564404', 'Finnegan''s Week', 'https://images.isbndb.com/covers/44/02/9780553564402.jpg'), - ('0441873308', 'Warlock Unlocked', 'https://images.isbndb.com/covers/33/02/9780441873302.jpg'), - ('0812512421', 'Lion In The Valley', 'https://images.isbndb.com/covers/24/27/9780812512427.jpg'), - ('0553209833', 'The Lost Jewels Of Nabooti', 'https://images.isbndb.com/covers/98/39/9780553209839.jpg'), - ('0553562398', 'Rest In Pieces (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/23/92/9780553562392.jpg'), - ('0553287532', 'Wish You Were Here (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/75/30/9780553287530.jpg'), - ('0312979509', 'Spider''s Web', 'https://images.isbndb.com/covers/95/08/9780312979508.jpg'), - ('0060199296', 'Today I Am A Ma''am: And Other Musings On Life, Beauty, And Growing Older', 'https://images.isbndb.com/covers/92/96/9780060199296.jpg'), - ('1885365012', 'Dancing With Tigers', 'https://images.isbndb.com/covers/50/19/9781885365019.jpg'), - ('0931580781', 'Life 101: Everything We Wish We Had Learned About Life In School--But Didn''t (The Life 101 Series)', 'https://images.isbndb.com/covers/07/89/9780931580789.jpg'), - ('0440214602', 'Crossing Antarctica', 'https://images.isbndb.com/covers/46/01/9780440214601.jpg'), - ('0425191583', 'Imitation In Death', 'https://images.isbndb.com/covers/15/83/9780425191583.jpg'), - ('0061097942', 'Our Looks/Our Lives: Sex, Beauty, Power, And The Need To Be Seen', 'https://images.isbndb.com/covers/79/42/9780061097942.jpg'), - ('0449207145', 'My Name Is Asher Lev', 'https://images.isbndb.com/covers/71/47/9780449207147.jpg'), - ('0380704900', 'Nighty-Nightmare (Bunnicula)', 'https://images.isbndb.com/covers/49/03/9780380704903.jpg'), - ('0553278363', 'The Red Pony', 'https://images.isbndb.com/covers/83/61/9780553278361.jpg'), - ('0684717603', 'The Great Gatsby (Scribner Classic)', 'https://images.isbndb.com/covers/76/09/9780684717609.jpg'), - ('0671666401', 'Surrender The Pink', 'https://images.isbndb.com/covers/64/08/9780671666408.jpg'), - ('0671434225', 'Contact', 'https://images.isbndb.com/covers/42/29/9780671434229.jpg'), - ('0609609491', 'The One Minute Millionaire: The Enlightened Way To Wealth', 'https://images.isbndb.com/covers/94/91/9780609609491.jpg'), - ('3453136411', 'Das Urteil: Roman', 'https://images.isbndb.com/covers/64/10/9783453136410.jpg'), - ('0671742949', 'Under Siege', 'https://images.isbndb.com/covers/29/42/9780671742942.jpg'), - ('0553582127', 'The Search (Eve Duncan)', 'https://images.isbndb.com/covers/21/23/9780553582123.jpg'), - ('0425169685', 'Flight Of Eagles', 'https://images.isbndb.com/covers/96/81/9780425169681.jpg'), - ('0425132625', 'Sky Masters', 'https://images.isbndb.com/covers/26/23/9780425132623.jpg'), - ('0440225817', 'Acts Of Malice', 'https://images.isbndb.com/covers/58/12/9780440225812.jpg'), - ('0312982615', 'Robert Ludlum''s The Paris Option (A Covert-One Novel)', 'https://images.isbndb.com/covers/26/14/9780312982614.jpg'), - ('0743456394', 'The White Road: A Thriller', 'https://images.isbndb.com/covers/63/95/9780743456395.jpg'), - ('0312270712', 'Dispensing With The Truth: The Victims, The Drug Companies, And The Dramatic Story Behind The Battle Over Fen-Phen', 'https://images.isbndb.com/covers/07/11/9780312270711.jpg'), - ('0060163283', 'Bones: A Forensic Detective''s Casebook', 'https://images.isbndb.com/covers/32/80/9780060163280.jpg'), - ('0061091847', 'Mafia Dynasty: The Rise And Fall Of The Gambino Crime Family', 'https://images.isbndb.com/covers/18/41/9780061091841.jpg'), - ('0553578308', 'Tough Cookie (Goldy Culinary Mysteries, Book 9)', 'https://images.isbndb.com/covers/83/00/9780553578300.jpg'), - ('0393300498', 'As We Are Now', 'https://images.isbndb.com/covers/04/99/9780393300499.jpg'), - ('0553578359', 'Chopping Spree (Goldy Culinary Mysteries, Book 11)', 'https://images.isbndb.com/covers/83/55/9780553578355.jpg'), - ('0671529986', 'Mother: Famous Writers Celebrate Motherhood With A Treasury Of Short Stories, Essays, And Poems', 'https://images.isbndb.com/covers/99/87/9780671529987.jpg'), - ('1594570841', 'MacFarlane''s Ridge', 'https://images.isbndb.com/covers/08/41/9781594570841.jpg'), - ('1853260061', 'Portrait Of The Artist As A Young Man (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/63/9781853260063.jpg'), - ('0440901588', 'A Swiftly Tilting Planet (The Time Quartet)', 'https://images.isbndb.com/covers/15/87/9780440901587.jpg'), - ('0425146421', 'The Wizard''s Daughter', 'https://images.isbndb.com/covers/64/22/9780425146422.jpg'), - ('1551666235', 'Wild Enough For Willa (Mira)', 'https://images.isbndb.com/covers/62/35/9781551666235.jpg'), - ('0553281143', 'Obnoxious Jerks, The', 'https://images.isbndb.com/covers/11/49/9780553281149.jpg'), - ('068419337X', 'The Shipping News', 'https://images.isbndb.com/covers/33/73/9780684193373.jpg'), - ('0345305779', 'Get Off The Unicorn', 'https://images.isbndb.com/covers/57/70/9780345305770.jpg'), - ('0684827123', 'The Song Of The Dodo: Island Biogeography In An Age Of Extinction', 'https://images.isbndb.com/covers/71/24/9780684827124.jpg'), - ('0380792028', 'Glorious Angel', 'https://images.isbndb.com/covers/20/23/9780380792023.jpg'), - ('0821770195', 'Charming Lily', 'https://images.isbndb.com/covers/01/91/9780821770191.jpg'), - ('0517593343', 'Spring Collection', 'https://images.isbndb.com/covers/33/49/9780517593349.jpg'), - ('0969522908', 'The Canadian Achievers: How They Did It, How You Can Do It, Why You Should Do It', 'https://images.isbndb.com/covers/29/04/9780969522904.jpg'), - ('0842357424', 'Land Of The Shadow (The Appomattox Saga, Book 4)', 'https://images.isbndb.com/covers/74/25/9780842357425.jpg'), - ('051513225X', 'Pendragon', 'https://images.isbndb.com/covers/22/50/9780515132250.jpg'), - ('0886773490', 'The Star Scroll (Dragon Prince, Book 2)', 'https://images.isbndb.com/covers/34/96/9780886773496.jpg'), - ('0515129933', 'The Scottish Bride (Bride Series)', 'https://images.isbndb.com/covers/99/39/9780515129939.jpg'), - ('051512088X', 'Rosehaven (Song Series)', 'https://images.isbndb.com/covers/08/82/9780515120882.jpg'), - ('0345387805', 'Power Lines (Petaybee, Book 2)', 'https://images.isbndb.com/covers/78/06/9780345387806.jpg'), - ('0345316002', 'Killashandra', 'https://images.isbndb.com/covers/60/04/9780345316004.jpg'), - ('0441003583', 'The Godmother''s Apprentice', 'https://images.isbndb.com/covers/35/87/9780441003587.jpg'), - ('0441005195', 'Jovah''s Angel (Samaria, Book 2)', 'https://images.isbndb.com/covers/51/92/9780441005192.jpg'), - ('0441004326', 'Archangel (Samaria, Book 1)', 'https://images.isbndb.com/covers/43/24/9780441004324.jpg'), - ('0441005055', 'The Alleluia Files (Ace Science Fiction)', 'https://images.isbndb.com/covers/50/55/9780441005055.jpg'), - ('0590034871', 'Girls Know Best', 'https://images.isbndb.com/covers/48/76/9780590034876.jpg'), - ('0425179648', 'Marrying The Mistress', 'https://images.isbndb.com/covers/96/42/9780425179642.jpg'), - ('9070066882', 'Het Volgende Verhaal (Dutch Edition)', 'https://images.isbndb.com/covers/68/88/9789070066888.jpg'), - ('0553262807', 'Always Coming Home', 'https://images.isbndb.com/covers/28/03/9780553262803.jpg'), - ('0679420916', 'Operating Instructions: A Journal Of My Son''s First Year', 'https://images.isbndb.com/covers/09/10/9780679420910.jpg'), - ('0895948028', 'Old Age Is Another Country: A Traveler''s Guide', 'https://images.isbndb.com/covers/80/21/9780895948021.jpg'), - ('0446515612', 'The American Vegetarian Cookbook From The Fit For Life Kitchen', 'https://images.isbndb.com/covers/56/10/9780446515610.jpg'), - ('1569247137', 'Three Trapped Tigers', 'https://images.isbndb.com/covers/71/36/9781569247136.jpg'), - ('0671657860', 'Many Lives, Many Masters: The True Story Of A Prominent Psychiatrist, His Young Patient, And The Past-Life Therapy That Changed Both Their Lives', 'https://images.isbndb.com/covers/78/64/9780671657864.jpg'), - ('0515103292', 'When Rabbit Howls', 'https://images.isbndb.com/covers/32/98/9780515103298.jpg'), - ('0060956283', 'Good/Grief', 'https://images.isbndb.com/covers/62/88/9780060956288.jpg'), - ('3596142172', 'Body And Soul', 'https://images.isbndb.com/covers/21/70/9783596142170.jpg'), - ('3404142942', 'Das Jesus Video', 'https://images.isbndb.com/covers/29/41/9783404142941.jpg'), - ('3453160789', 'Aurora', 'https://images.isbndb.com/covers/07/81/9783453160781.jpg'), - ('3453162358', 'Der Erleuchtete.', 'https://images.isbndb.com/covers/23/58/9783453162358.jpg'), - ('3257230044', 'Der Spion Und Der Analytiker', 'https://images.isbndb.com/covers/00/48/9783257230048.jpg'), - ('354824971X', 'Harte Nuss', 'https://images.isbndb.com/covers/97/11/9783548249711.jpg'), - ('345315178X', 'Nimitz Class', 'https://images.isbndb.com/covers/17/89/9783453151789.jpg'), - ('3442727103', 'Die Versuchung In Der Wüste', 'https://images.isbndb.com/covers/71/00/9783442727100.jpg'), - ('344272144X', 'Inspektor Kajetan Und Die Sache Koslowski: Roman', 'https://images.isbndb.com/covers/14/43/9783442721443.jpg'), - ('3596147832', 'Das Haus Der Harmonie', 'https://images.isbndb.com/covers/78/30/9783596147830.jpg'), - ('3404139968', 'Von Zeit Zu Zeit', 'https://images.isbndb.com/covers/99/65/9783404139965.jpg'), - ('3453196643', 'Inseln Im Netz', 'https://images.isbndb.com/covers/66/43/9783453196643.jpg'), - ('3442351472', 'Seidentanz', 'https://images.isbndb.com/covers/14/73/9783442351473.jpg'), - ('3442435285', 'Feuerfrau', 'https://images.isbndb.com/covers/52/89/9783442435289.jpg'), - ('3442431379', 'Silbermuschel', 'https://images.isbndb.com/covers/13/73/9783442431373.jpg'), - ('3404143485', 'Die Versuchung: Roman', 'https://images.isbndb.com/covers/34/81/9783404143481.jpg'), - ('3596223946', 'Sommerhaus, Später', 'https://images.isbndb.com/covers/39/47/9783596223947.jpg'), - ('3547717655', 'Wüstenmond: Roman', 'https://images.isbndb.com/covers/76/55/9783547717655.jpg'), - ('3446200487', 'Baudolino: Roman', 'https://images.isbndb.com/covers/04/87/9783446200487.jpg'), - ('3446201882', 'Die Stadt Der Wilden Götter', 'https://images.isbndb.com/covers/18/80/9783446201880.jpg'), - ('0759901260', 'Cowboy In My Pocket', 'https://images.isbndb.com/covers/12/61/9780759901261.jpg'), - ('0679764003', 'A Happy Death', 'https://images.isbndb.com/covers/40/07/9780679764007.jpg'), - ('0812550609', 'Arrows Of The Sun', 'https://images.isbndb.com/covers/06/03/9780812550603.jpg'), - ('1560760516', 'Firstborn (Dragonlance Elven Nations, Vol 1)', 'https://images.isbndb.com/covers/05/11/9781560760511.jpg'), - ('156076113X', 'The Kinslayer Wars (Dragonlance Elven Nations, Vol.2)', 'https://images.isbndb.com/covers/11/36/9781560761136.jpg'), - ('0345422406', 'Merrick (Vampire/Witches Chronicles)', 'https://images.isbndb.com/covers/24/08/9780345422408.jpg'), - ('0312194560', 'Girl Walking Backwards', 'https://images.isbndb.com/covers/45/67/9780312194567.jpg'), - ('0553570951', 'Dawn Rochelle, Four Novels: Six Months To Live/ I Want To Live/ So Much To Live For/ No Time To Cry', 'https://images.isbndb.com/covers/09/53/9780553570953.jpg'), - ('0451121082', 'You Only Live Twice (James Bond)', 'https://images.isbndb.com/covers/10/80/9780451121080.jpg'), - ('0140345353', 'The Devil''s Arithmetic', 'https://images.isbndb.com/covers/53/53/9780140345353.jpg'), - ('0671644475', 'The Conquest', 'https://images.isbndb.com/covers/44/75/9780671644475.jpg'), - ('0373122659', 'The Honeymoon Contract (The Kings Of Australia) (Harlequin Presents)', 'https://images.isbndb.com/covers/26/53/9780373122653.jpg'), - ('037329221X', 'A Perilous Attraction (Harlequin Historical)', 'https://images.isbndb.com/covers/22/19/9780373292219.jpg'), - ('0373259891', 'Just Kiss Me (Harlequin Temptation)', 'https://images.isbndb.com/covers/98/92/9780373259892.jpg'), - ('0373122691', 'The Pregnant Bride (Harlequin Presents Expecting #2269)', 'https://images.isbndb.com/covers/26/91/9780373122691.jpg'), - ('0373122675', 'To Marry McCloud (Bachelor Cousins) (Harlequin Presents)', 'https://images.isbndb.com/covers/26/77/9780373122677.jpg'), - ('0812507274', 'The Love Talker', 'https://images.isbndb.com/covers/72/70/9780812507270.jpg'), - ('0070506728', 'Miracle At Midway', 'https://images.isbndb.com/covers/67/25/9780070506725.jpg'), - ('0525932593', 'Hill Towns Of Italy: 2', 'https://images.isbndb.com/covers/25/98/9780525932598.jpg'), - ('0810913763', 'The National Geographic Society: 100 Years Of Adventure And Discovery', 'https://images.isbndb.com/covers/37/69/9780810913769.jpg'), - ('0865470561', 'Mrs. Bridge: A Novel', 'https://images.isbndb.com/covers/05/69/9780865470569.jpg'), - ('0688159141', 'Gates Of Eden: Stories', 'https://images.isbndb.com/covers/91/46/9780688159146.jpg'), - ('039449461X', 'Far Tortuga', 'https://images.isbndb.com/covers/46/16/9780394494616.jpg'), - ('0449908615', 'Star Country', 'https://images.isbndb.com/covers/86/17/9780449908617.jpg'), - ('0963440349', 'Where The Locals Eat: A Guide To The Best Restaurants In America', 'https://images.isbndb.com/covers/03/41/9780963440341.jpg'), - ('0312045875', 'The Route 66 Traveler''s Guide And Roadside Companion', 'https://images.isbndb.com/covers/58/76/9780312045876.jpg'), - ('0671769316', 'New Roadside America: The Modern Traveler''s Guide To The Wild And Wonderful World Of America''s Tourist', 'https://images.isbndb.com/covers/93/14/9780671769314.jpg'), - ('0806515015', 'The Cockroach Hall Of Fame: And 101 Other Off-The-Wall Museums', 'https://images.isbndb.com/covers/50/14/9780806515014.jpg'), - ('0767900936', 'Eat Your Way Across The U.S.A., Revised Edition', 'https://images.isbndb.com/covers/09/35/9780767900935.jpg'), - ('0060965991', 'Roadfood', 'https://images.isbndb.com/covers/59/90/9780060965990.jpg'), - ('1559581719', 'The Food Lover''s Handbook To The Southwest', 'https://images.isbndb.com/covers/17/14/9781559581714.jpg'), - ('0553213938', 'The Custom Of The Country (Bantam Classics)', 'https://images.isbndb.com/covers/39/35/9780553213935.jpg'), - ('1551668122', 'Night Of The Blackbird', 'https://images.isbndb.com/covers/81/23/9781551668123.jpg'), - ('0345444078', 'Shadows Over Innsmouth', 'https://images.isbndb.com/covers/40/73/9780345444073.jpg'), - ('0802137040', 'Exploration Of The Valley Of The Amazon', 'https://images.isbndb.com/covers/70/43/9780802137043.jpg'), - ('1860461670', 'Miss Smilla''s Feeling For Snow', 'https://images.isbndb.com/covers/16/75/9781860461675.jpg'), - ('0375410198', 'The Feast Of Love', 'https://images.isbndb.com/covers/01/92/9780375410192.jpg'), - ('0375700153', 'The Troublesome Offspring Of Cardinal Guzman', 'https://images.isbndb.com/covers/01/56/9780375700156.jpg'), - ('0451190548', 'Coffey''s Hands (The Green Mile, Part 3)', 'https://images.isbndb.com/covers/05/43/9780451190543.jpg'), - ('0671553046', 'Life Support', 'https://images.isbndb.com/covers/30/43/9780671553043.jpg'), - ('0553232940', 'Escape (Choose Your Own Adventure #20)', 'https://images.isbndb.com/covers/29/43/9780553232943.jpg'), - ('059010683X', 'Hanson Brothers Biography', 'https://images.isbndb.com/covers/68/32/9780590106832.jpg'), - ('043942089X', 'The Thief Lord', 'https://images.isbndb.com/covers/08/91/9780439420891.jpg'), - ('0684849224', 'Advanced Sex Tips For Girls: This Time It''s Personal', 'https://images.isbndb.com/covers/92/25/9780684849225.jpg'), - ('0006392466', 'Working Class Zero', 'https://images.isbndb.com/covers/24/60/9780006392460.jpg'), - ('0452283825', 'Baggage', 'https://images.isbndb.com/covers/38/24/9780452283824.jpg'), - ('044661050X', 'The Diary Of V: The Breakup', 'https://images.isbndb.com/covers/05/06/9780446610506.jpg'), - ('0425176045', 'Falling Bodies', 'https://images.isbndb.com/covers/60/47/9780425176047.jpg'), - ('0449006158', 'The Night Inspector (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/61/53/9780449006153.jpg'), - ('0486280381', 'Civil War Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/03/87/9780486280387.jpg'), - ('0671749102', 'Principle-Centered Leadership', 'https://images.isbndb.com/covers/91/01/9780671749101.jpg'), - ('0687287529', 'Becoming A Thinking Christian: If We Want Church Renewal, We Will Have To Renew Thinking In The Church', 'https://images.isbndb.com/covers/75/29/9780687287529.jpg'), - ('0142003735', 'Old Flames', 'https://images.isbndb.com/covers/37/32/9780142003732.jpg'), - ('0451168429', 'Depraved Indifference (Signet)', 'https://images.isbndb.com/covers/84/29/9780451168429.jpg'), - ('006055584X', 'Mission Compromised', 'https://images.isbndb.com/covers/58/49/9780060555849.jpg'), - ('0312104324', 'The Bluestocking: The Story Of The Famous Forrest Divorce Case', 'https://images.isbndb.com/covers/43/20/9780312104320.jpg'), - ('0552138428', 'The Brentford Triangle (Brentford Trilogy)', 'https://images.isbndb.com/covers/84/20/9780552138420.jpg'), - ('0425180468', 'Fax Me A Bagel', 'https://images.isbndb.com/covers/04/64/9780425180464.jpg'), - ('0060092165', 'Two Cooks A-Killing: An Angie Amalfi Mystery', 'https://images.isbndb.com/covers/21/60/9780060092160.jpg'), - ('0061094234', 'Dirt', 'https://images.isbndb.com/covers/42/31/9780061094231.jpg'), - ('0425169855', 'Date With The Perfect Dead Man (Hannah And Kiki Mysteries)', 'https://images.isbndb.com/covers/98/58/9780425169858.jpg'), - ('0061099805', 'Swimming To Catalina', 'https://images.isbndb.com/covers/98/09/9780061099809.jpg'), - ('0061093491', 'Dead In The Water', 'https://images.isbndb.com/covers/34/94/9780061093494.jpg'), - ('0061090808', 'NY DEAD MM', 'https://images.isbndb.com/covers/08/06/9780061090806.jpg'), - ('0440223709', 'Taken To The Cleaners (Mandy Dyer Mystery)', 'https://images.isbndb.com/covers/37/02/9780440223702.jpg'), - ('157566691X', 'Christmas Cookie Murder (Lucy Stone Mysteries, No. 5)', 'https://images.isbndb.com/covers/69/14/9781575666914.jpg'), - ('0140272852', 'Amistad Pb', 'https://images.isbndb.com/covers/28/57/9780140272857.jpg'), - ('9057592029', 'Erzsebet: Roman (Dutch Edition)', 'https://images.isbndb.com/covers/20/27/9789057592027.jpg'), - ('0373121873', 'The Marriage Arrangement', 'https://images.isbndb.com/covers/18/78/9780373121878.jpg'), - ('1583483322', 'And Not Make Dreams Your Master', 'https://images.isbndb.com/covers/33/29/9781583483329.jpg'), - ('1551668254', 'Road Taken', 'https://images.isbndb.com/covers/82/53/9781551668253.jpg'), - ('0151004218', 'All The Names', 'https://images.isbndb.com/covers/42/18/9780151004218.jpg'), - ('0812970802', 'Girl Meets God: A Memoir', 'https://images.isbndb.com/covers/08/07/9780812970807.jpg'), - ('0830708200', 'Psalms For God''s People: A Bible Commentary For Laymen', 'https://images.isbndb.com/covers/82/08/9780830708208.jpg'), - ('0385249640', 'Parenting An Only Child', 'https://images.isbndb.com/covers/96/45/9780385249645.jpg'), - ('0590032496', 'The Witches', 'https://images.isbndb.com/covers/24/90/9780590032490.jpg'), - ('1863738487', 'Crew', 'https://images.isbndb.com/covers/84/84/9781863738484.jpg'), - ('0749720409', 'Midnight Ride Of Thomas The Tank Engine Pb', 'https://images.isbndb.com/covers/04/07/9780749720407.jpg'), - ('0330363239', 'Dirt Music', 'https://images.isbndb.com/covers/32/35/9780330363235.jpg'), - ('0553480669', 'Anne Of The Island (Anne Of Green Gables)', 'https://images.isbndb.com/covers/06/65/9780553480665.jpg'), - ('0140318909', 'Complete Data Interpretation For The MRCP, 1e (MRCP Study Guides)', 'https://images.isbndb.com/covers/89/06/9780140318906.jpg'), - ('0553269216', 'Rainbow Valley (Anne Of Green Gables, No. 7)', 'https://images.isbndb.com/covers/92/15/9780553269215.jpg'), - ('0671000500', 'The WEDDING DAY MYSTERY NANCY DREW 136', 'https://images.isbndb.com/covers/05/09/9780671000509.jpg'), - ('0671663194', 'PICTURE-PERFECT MYSTERY (NANCY DREW 94)', 'https://images.isbndb.com/covers/31/93/9780671663193.jpg'), - ('0671464612', 'BROKEN ANCHOR ND P (Nancy Drew Mystery Stories)', 'https://images.isbndb.com/covers/46/15/9780671464615.jpg'), - ('0440220653', 'The Face On The Milk Carton', 'https://images.isbndb.com/covers/06/57/9780440220657.jpg'), - ('0440210224', 'Children Of The River (Laurel-Leaf Contemporary Fiction)', 'https://images.isbndb.com/covers/02/21/9780440210221.jpg'), - ('0064405842', 'Catherine, Called Birdy (rpkg) (Trophy Newbery)', 'https://images.isbndb.com/covers/58/43/9780064405843.jpg'), - ('0671001787', 'ALASKA', 'https://images.isbndb.com/covers/17/80/9780671001780.jpg'), - ('0743407865', 'Brave New Girl', 'https://images.isbndb.com/covers/78/61/9780743407861.jpg'), - ('3548602746', 'Die Seekarte', 'https://images.isbndb.com/covers/27/45/9783548602745.jpg'), - ('379511733X', 'Flut', 'https://images.isbndb.com/covers/73/37/9783795117337.jpg'), - ('3548256007', 'Die Zuckerbäckerin', 'https://images.isbndb.com/covers/60/09/9783548256009.jpg'), - ('3548255329', 'Fünf Viertel Einer Orange', 'https://images.isbndb.com/covers/53/23/9783548255323.jpg'), - ('354825621X', 'Chocolat', 'https://images.isbndb.com/covers/62/14/9783548256214.jpg'), - ('3716022799', 'Schattenkinder', 'https://images.isbndb.com/covers/27/95/9783716022795.jpg'), - ('3548364160', 'Die Weiße Hexe, Jubil.-Ausg.', 'https://images.isbndb.com/covers/41/62/9783548364162.jpg'), - ('3548257615', 'Die Glasbläserin: Roman', 'https://images.isbndb.com/covers/76/17/9783548257617.jpg'), - ('3548256910', 'Die Amerikanerin', 'https://images.isbndb.com/covers/69/17/9783548256917.jpg'), - ('3426622548', 'Die Hexe Und Die Heilige', 'https://images.isbndb.com/covers/25/44/9783426622544.jpg'), - ('0060987324', 'Girlfriend In A Coma', 'https://images.isbndb.com/covers/73/29/9780060987329.jpg'), - ('3453863712', 'Die Orks', 'https://images.isbndb.com/covers/37/12/9783453863712.jpg'), - ('0192823507', 'Wuthering Heights (The World''s Classics)', 'https://images.isbndb.com/covers/35/02/9780192823502.jpg'), - ('0679986375', 'Stargirl', 'https://images.isbndb.com/covers/63/79/9780679986379.jpg'), - ('1740595939', 'Rite Of Passage: Tales Of Backpacking ''Round Europe', 'https://images.isbndb.com/covers/59/33/9781740595933.jpg'), - ('0609604511', 'A Recipe For Bees', 'https://images.isbndb.com/covers/45/19/9780609604519.jpg'), - ('2070364178', 'Silbermann', 'https://images.isbndb.com/covers/41/76/9782070364176.jpg'), - ('0062505521', 'I Have A Dream: Writings And Speeches That Changed The World, Special 75th Anniversary Edition (Martin Luther King, Jr., Born January 15, 1929)', 'https://images.isbndb.com/covers/55/21/9780062505521.jpg'), - ('0449911411', 'And I Don''t Want To Live This Life: A Mother''s Story Of Her Daughter''s Murder', 'https://images.isbndb.com/covers/14/19/9780449911419.jpg'), - ('007212248X', 'Oracle8I For Windows Nt Starter Kit (Oracle Press)', 'https://images.isbndb.com/covers/24/80/9780072122480.jpg'), - ('0452254345', 'Growing Up', 'https://images.isbndb.com/covers/43/43/9780452254343.jpg'), - ('0807115258', 'Dollar Road', 'https://images.isbndb.com/covers/52/51/9780807115251.jpg'), - ('0486290816', 'The Gambler (Dover Thrift Editions)', 'https://images.isbndb.com/covers/08/12/9780486290812.jpg'), - ('0880015829', 'The Sheltering Sky', 'https://images.isbndb.com/covers/58/20/9780880015820.jpg'), - ('0449225313', 'The Mark Of The Assasin', 'https://images.isbndb.com/covers/53/18/9780449225318.jpg'), - ('0553240765', 'Shane', 'https://images.isbndb.com/covers/07/64/9780553240764.jpg'), - ('0609603825', 'The Forest', 'https://images.isbndb.com/covers/38/26/9780609603826.jpg'), - ('0765349671', 'The Da Vinci Legacy', 'https://images.isbndb.com/covers/96/75/9780765349675.jpg'), - ('0553585843', 'Fountain Of Secrets (Get Connected Romances)', 'https://images.isbndb.com/covers/58/41/9780553585841.jpg'), - ('0425192733', 'Portrait Of A Killer: Jack The Ripper -- Case Closed (Berkley True Crime)', 'https://images.isbndb.com/covers/27/33/9780425192733.jpg'), - ('0060525460', 'The Beachcomber', 'https://images.isbndb.com/covers/54/60/9780060525460.jpg'), - ('0446326925', 'Wild Orchids', 'https://images.isbndb.com/covers/69/26/9780446326926.jpg'), - ('0449206246', 'Wheel Of Fortune', 'https://images.isbndb.com/covers/62/49/9780449206249.jpg'), - ('155166285X', 'If Looks Could Kill', 'https://images.isbndb.com/covers/28/55/9781551662855.jpg'), - ('0449207102', 'The Source', 'https://images.isbndb.com/covers/71/09/9780449207109.jpg'), - ('0385471998', 'Come As You Are: The Story Of Nirvana', 'https://images.isbndb.com/covers/19/92/9780385471992.jpg'), - ('0553575104', 'In Pursuit Of The Proper Sinner', 'https://images.isbndb.com/covers/51/01/9780553575101.jpg'), - ('0895771845', 'The Scarlet Letter (The World''s Best Reading)', 'https://images.isbndb.com/covers/18/41/9780895771841.jpg'), - ('0451403703', 'The Hangman''s Beautiful Daughter (Onyx)', 'https://images.isbndb.com/covers/37/04/9780451403704.jpg'), - ('0812564804', 'Delusion', 'https://images.isbndb.com/covers/48/08/9780812564808.jpg'), - ('0380756226', 'Secret Of The Sea', 'https://images.isbndb.com/covers/62/23/9780380756223.jpg'), - ('0812589718', 'Daughter Of God', 'https://images.isbndb.com/covers/97/19/9780812589719.jpg'), - ('0812571789', 'The Predators', 'https://images.isbndb.com/covers/17/83/9780812571783.jpg'), - ('0449222713', 'Black Opal', 'https://images.isbndb.com/covers/27/13/9780449222713.jpg'), - ('0449215482', 'The Silk Vendetta', 'https://images.isbndb.com/covers/54/87/9780449215487.jpg'), - ('0345327454', 'Thai Horse', 'https://images.isbndb.com/covers/74/51/9780345327451.jpg'), - ('0821720600', 'Flowers From Berlin', 'https://images.isbndb.com/covers/06/08/9780821720608.jpg'), - ('0913367346', 'Just Like Jesus', 'https://images.isbndb.com/covers/73/46/9780913367346.jpg'), - ('0892211105', 'China Cry', 'https://images.isbndb.com/covers/11/04/9780892211104.jpg'), - ('0671701045', 'Thing Of Beauty', 'https://images.isbndb.com/covers/10/48/9780671701048.jpg'), - ('0688084923', 'Morning Noon & Night', 'https://images.isbndb.com/covers/49/29/9780688084929.jpg'), - ('0440235146', 'A Sudden Change Of Heart', 'https://images.isbndb.com/covers/51/49/9780440235149.jpg'), - ('0445044454', 'Sisters And Strangers', 'https://images.isbndb.com/covers/44/56/9780445044456.jpg'), - ('0446301809', 'Daughters Of The Shining City', 'https://images.isbndb.com/covers/18/00/9780446301800.jpg'), - ('0553573489', 'Circumstantial Evidence: Death, Life, And Justice In A Southern Town', 'https://images.isbndb.com/covers/34/80/9780553573480.jpg'), - ('0786889411', 'Rock This!', 'https://images.isbndb.com/covers/94/19/9780786889419.jpg'), - ('0671496107', 'Immortal Poems Of The English Language', 'https://images.isbndb.com/covers/61/04/9780671496104.jpg'), - ('0553257196', 'Black Orchids (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/71/99/9780553257199.jpg'), - ('055321246X', 'Walden And Other Writings', 'https://images.isbndb.com/covers/24/64/9780553212464.jpg'), - ('0451526368', 'Northanger Abbey (Signet Classics)', 'https://images.isbndb.com/covers/63/66/9780451526366.jpg'), - ('0590433881', 'Kristy''s Great Idea (Baby-Sitters Club #1)', 'https://images.isbndb.com/covers/38/84/9780590433884.jpg'), - ('0974375861', 'They Came Home: Korean War POWs Tell Their Stories', 'https://images.isbndb.com/covers/58/61/9780974375861.jpg'), - ('0974375853', 'Hickerdoodle Meets A Chigger', 'https://images.isbndb.com/covers/58/54/9780974375854.jpg'), - ('0671522647', 'Gump & Co.', 'https://images.isbndb.com/covers/26/43/9780671522643.jpg'), - ('0671541005', '1st Among Equals X', 'https://images.isbndb.com/covers/10/02/9780671541002.jpg'), - ('0933662599', 'Survival Kit For Overseas Living: For Americans Planning To Live And Work Abroad', 'https://images.isbndb.com/covers/25/99/9780933662599.jpg'), - ('0863186602', 'PREGNANCY AND BIRTH BOOK', 'https://images.isbndb.com/covers/66/08/9780863186608.jpg'), - ('0525941908', 'The Regulators', 'https://images.isbndb.com/covers/19/03/9780525941903.jpg'), - ('0767915054', 'A Girl Named Zippy: Growing Up Small In Mooreland, Indiana', 'https://images.isbndb.com/covers/50/52/9780767915052.jpg'), - ('038533396X', 'How I Accidentally Joined The Vast Right-Wing Conspiracy (and Found Inner Peace)', 'https://images.isbndb.com/covers/39/62/9780385333962.jpg'), - ('0394566300', 'Decorating Rich: How To Achieve A Monied Look Without Spending A Fortune', 'https://images.isbndb.com/covers/63/06/9780394566306.jpg'), - ('0842365826', 'And The Shofar Blew', 'https://images.isbndb.com/covers/58/26/9780842365826.jpg'), - ('0736907386', 'The Remarkable Women Of The Bible: And Their Message For Your Life Today', 'https://images.isbndb.com/covers/73/85/9780736907385.jpg'), - ('1576734005', 'Distant Bells (The Cult Series #3)', 'https://images.isbndb.com/covers/40/01/9781576734001.jpg'), - ('0375700145', 'Senor Vivo And The Coca Lord', 'https://images.isbndb.com/covers/01/49/9780375700149.jpg'), - ('0452284449', 'The Virgin Blue: A Novel', 'https://images.isbndb.com/covers/44/49/9780452284449.jpg'), - ('0312195168', 'Night Talk: A Novel', 'https://images.isbndb.com/covers/51/68/9780312195168.jpg'), - ('0446610542', 'The Bachelor (The Chandler Brothers, Book 1)', 'https://images.isbndb.com/covers/05/44/9780446610544.jpg'), - ('0679750169', 'The Romance Of Tristan And Iseult', 'https://images.isbndb.com/covers/01/61/9780679750161.jpg'), - ('051759675X', 'Perfect Little Angels: Divine Messengers In Miniature And 10 Notecards With Envelopes', 'https://images.isbndb.com/covers/67/53/9780517596753.jpg'), - ('0671759299', 'My Girl', 'https://images.isbndb.com/covers/92/92/9780671759292.jpg'), - ('0440910099', 'Face On The Milk Carton', 'https://images.isbndb.com/covers/00/91/9780440910091.jpg'), - ('0590411292', 'Paper Tricks', 'https://images.isbndb.com/covers/12/95/9780590411295.jpg'), - ('0684843560', 'When Angels Speak: Inspiration From Touched By An Angel', 'https://images.isbndb.com/covers/35/68/9780684843568.jpg'), - ('0553269151', 'Inherit The Wind', 'https://images.isbndb.com/covers/91/54/9780553269154.jpg'), - ('0486272753', 'Spoon River Anthology (Dover Thrift Editions)', 'https://images.isbndb.com/covers/27/57/9780486272757.jpg'), - ('067188803X', 'Adventures Of Huckleberry Finn (Enriched Classic ): Adventures Of Huckleberry Finn', 'https://images.isbndb.com/covers/80/39/9780671888039.jpg'), - ('1562451650', 'Great Quotes From Great Teachers', 'https://images.isbndb.com/covers/16/53/9781562451653.jpg'), - ('009938860X', 'Chains', 'https://images.isbndb.com/covers/86/09/9780099388609.jpg'), - ('0743202198', 'Change Me Into Zeus''s Daughter: A Memoir', 'https://images.isbndb.com/covers/21/90/9780743202190.jpg'), - ('0441371574', 'Invasion: Earth', 'https://images.isbndb.com/covers/15/70/9780441371570.jpg'), - ('0440111498', 'Cat''s Cradle', 'https://images.isbndb.com/covers/14/98/9780440111498.jpg'), - ('0553273078', 'The Stainless Steel Rat Gets Drafted', 'https://images.isbndb.com/covers/30/76/9780553273076.jpg'), - ('0345321421', 'Limits', 'https://images.isbndb.com/covers/14/28/9780345321428.jpg'), - ('0553286587', 'Rama II: The Sequel To Rendezvous With Rama', 'https://images.isbndb.com/covers/65/88/9780553286588.jpg'), - ('0843952202', 'The Temptation', 'https://images.isbndb.com/covers/22/09/9780843952209.jpg'), - ('0373227388', 'Bodyguard /Husband: Ultimate Agents (Harlequin Intrigue)', 'https://images.isbndb.com/covers/73/89/9780373227389.jpg'), - ('0778320065', 'Grave Concerns (Dr. Rhea Lynch Novels)', 'https://images.isbndb.com/covers/00/67/9780778320067.jpg'), - ('0515121495', 'The List', 'https://images.isbndb.com/covers/14/90/9780515121490.jpg'), - ('0743456351', 'A Man To Call My Own: A Novel', 'https://images.isbndb.com/covers/63/57/9780743456357.jpg'), - ('0316804924', 'The Discovery Of Animal Behaviour', 'https://images.isbndb.com/covers/49/29/9780316804929.jpg'), - ('080506270X', 'A Field Guide To Demons, Fairies, Fallen Angels And Other Subversive Spirits', 'https://images.isbndb.com/covers/27/00/9780805062700.jpg'), - ('0316130133', 'Family Trade', 'https://images.isbndb.com/covers/01/34/9780316130134.jpg'), - ('0425132951', 'The House Of Thunder', 'https://images.isbndb.com/covers/29/51/9780425132951.jpg'), - ('0380759470', 'Isle Of View (Xanth, No. 13)', 'https://images.isbndb.com/covers/94/77/9780380759477.jpg'), - ('0330303112', 'Deadlock', 'https://images.isbndb.com/covers/31/18/9780330303118.jpg'), - ('0895888041', 'DOS 5 Instant Reference', 'https://images.isbndb.com/covers/80/44/9780895888044.jpg'), - ('1568849052', 'Unix For Dummies', 'https://images.isbndb.com/covers/90/58/9781568849058.jpg'), - ('0764550551', 'Weddings For Dummies', 'https://images.isbndb.com/covers/05/53/9780764550553.jpg'), - ('0782903800', 'Barney''s Favorite Mother Goose Rhymes (Volume 2)', 'https://images.isbndb.com/covers/38/05/9780782903805.jpg'), - ('0782903363', 'Barney''s Favorite Mother Goose Rhymes, Volume I', 'https://images.isbndb.com/covers/33/62/9780782903362.jpg'), - ('1570641218', 'What Would Barney Say?', 'https://images.isbndb.com/covers/12/13/9781570641213.jpg'), - ('0671648462', 'You Were Born Again To Be Together', 'https://images.isbndb.com/covers/84/66/9780671648466.jpg'), - ('0811833615', 'The Bad Girl''s Guide To The Party Life', 'https://images.isbndb.com/covers/36/15/9780811833615.jpg'), - ('0811821706', 'The Bad Girl''s Guide To The Open Road', 'https://images.isbndb.com/covers/17/04/9780811821704.jpg'), - ('1558747613', 'Chicken Soup For The Teenage Soul III: More Stories Of Life, Love And Learning', 'https://images.isbndb.com/covers/76/16/9781558747616.jpg'), - ('0679755330', 'A Raisin In The Sun', 'https://images.isbndb.com/covers/53/33/9780679755333.jpg'), - ('0451526732', 'Narrative Of The Life Of Frederick Douglass, An American Slave (Signet Classics)', 'https://images.isbndb.com/covers/67/31/9780451526731.jpg'), - ('0425083896', 'Books Of Blood, Vol. 1', 'https://images.isbndb.com/covers/38/95/9780425083895.jpg'), - ('0451525795', 'My Antonia (Signet Classics)', 'https://images.isbndb.com/covers/57/96/9780451525796.jpg'), - ('0451188454', 'The Bone Collector (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/84/58/9780451188458.jpg'), - ('3499136457', 'Venusneid.', 'https://images.isbndb.com/covers/64/50/9783499136450.jpg'), - ('0759615365', 'Life In A Rapidly Changing World (New Economy Self-Development)', 'https://images.isbndb.com/covers/53/66/9780759615366.jpg'), - ('0312874472', 'Witness For The Dead', 'https://images.isbndb.com/covers/44/76/9780312874476.jpg'), - ('0806516542', 'The Lost Stories Of Louisa May Alcott', 'https://images.isbndb.com/covers/65/47/9780806516547.jpg'), - ('0671704834', 'Into The Blue: Into The Blue', 'https://images.isbndb.com/covers/48/34/9780671704834.jpg'), - ('0425166392', 'Guilty Pleasures', 'https://images.isbndb.com/covers/63/90/9780425166390.jpg'), - ('1558745718', 'Chicken Soup For The Pet Lover''s Soul: Stories About Pets As Teachers, Healers, Heroes And Friends (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/57/11/9781558745711.jpg'), - ('1740592409', 'Lonely Planet Victoria', 'https://images.isbndb.com/covers/24/06/9781740592406.jpg'), - ('0425176932', 'Breaking Point (Tom Clancy''s Net Force, Book 4)', 'https://images.isbndb.com/covers/69/31/9780425176931.jpg'), - ('0881030368', '1984 (Turtleback School & Library Binding Edition) (Signet Classics)', 'https://images.isbndb.com/covers/03/65/9780881030365.jpg'), - ('1565117794', 'Life Of Pi', 'https://images.isbndb.com/covers/77/92/9781565117792.jpg'), - ('0553580604', 'Callahan''s Key', 'https://images.isbndb.com/covers/06/00/9780553580600.jpg'), - ('340778063X', 'Das Geheimnis Des Siebten Weges: Abenteuer-Roman', 'https://images.isbndb.com/covers/06/38/9783407780638.jpg'), - ('3791535560', 'Heimatlos', 'https://images.isbndb.com/covers/55/62/9783791535562.jpg'), - ('3442424402', 'Zwölf Geschichten Aus Der Fremde', 'https://images.isbndb.com/covers/44/05/9783442424405.jpg'), - ('0440219507', 'Troubling A Star', 'https://images.isbndb.com/covers/95/07/9780440219507.jpg'), - ('3446152962', 'Das Phantom Der Oper. Roman', 'https://images.isbndb.com/covers/29/60/9783446152960.jpg'), - ('3746615429', 'Die Truhen Des Arcimboldo: Nach Den Tagebüchern Des Heinrich Wilhelm Lehmann. Roman', 'https://images.isbndb.com/covers/54/24/9783746615424.jpg'), - ('2070374807', 'Sa Majesté Des Mouches', 'https://images.isbndb.com/covers/48/09/9782070374809.jpg'), - ('2070401685', 'L''Ile Des Gauchers', 'https://images.isbndb.com/covers/16/80/9782070401680.jpg'), - ('2253006629', 'L''Arrache-coeur', 'https://images.isbndb.com/covers/66/26/9782253006626.jpg'), - ('044021632X', 'The Angel Maker', 'https://images.isbndb.com/covers/63/22/9780440216322.jpg'), - ('0590474782', 'Twins', 'https://images.isbndb.com/covers/47/88/9780590474788.jpg'), - ('0425117383', 'At Risk', 'https://images.isbndb.com/covers/73/85/9780425117385.jpg'), - ('0141308133', 'The Empress Of Elsewhere', 'https://images.isbndb.com/covers/81/35/9780141308135.jpg'), - ('0385260431', 'A Different Kind Of Christmas', 'https://images.isbndb.com/covers/04/35/9780385260435.jpg'), - ('0860682552', 'I''m Not Complaining (Virago Modern Classics)', 'https://images.isbndb.com/covers/25/54/9780860682554.jpg'), - ('055321019X', 'Emma', 'https://images.isbndb.com/covers/01/94/9780553210194.jpg'), - ('0060971185', 'The Housewife And The Assassin', 'https://images.isbndb.com/covers/11/82/9780060971182.jpg'), - ('1580622119', 'Come Rain Or Come Shine: Friendships Between Women', 'https://images.isbndb.com/covers/21/10/9781580622110.jpg'), - ('074343059X', 'Geisha Of Gion', 'https://images.isbndb.com/covers/05/93/9780743430593.jpg'), - ('0060090375', 'Lucy Sullivan Is Getting Married', 'https://images.isbndb.com/covers/03/71/9780060090371.jpg'), - ('1582343047', 'How To Cook A Tart', 'https://images.isbndb.com/covers/30/44/9781582343044.jpg'), - ('0520216202', 'Asphalt Nation: How The Automobile Took Over America And How We Can Take It Back', 'https://images.isbndb.com/covers/62/04/9780520216204.jpg'), - ('0380711516', 'Fulton County', 'https://images.isbndb.com/covers/15/12/9780380711512.jpg'), - ('0890439702', 'Buying Guide 2003 (Consumer Reports Buying Guide)', 'https://images.isbndb.com/covers/97/08/9780890439708.jpg'), - ('0689866364', 'The Outcasts Of 19 Schuyler Place', 'https://images.isbndb.com/covers/63/64/9780689866364.jpg'), - ('0312984294', 'The Corrections', 'https://images.isbndb.com/covers/42/98/9780312984298.jpg'), - ('0575047798', 'The Colloghi Conspiracy', 'https://images.isbndb.com/covers/77/92/9780575047792.jpg'), - ('0800758889', 'Grace By The Cup: A Break From The Daily Grind', 'https://images.isbndb.com/covers/88/82/9780800758882.jpg'), - ('0743252136', 'Domestic Bliss: Simple Ways To Add Style To Your Life', 'https://images.isbndb.com/covers/21/33/9780743252133.jpg'), - ('0812932773', 'The 50 Greatest Love Letters Of All Time', 'https://images.isbndb.com/covers/27/75/9780812932775.jpg'), - ('3551580561', 'Fanny Und Pepsi', 'https://images.isbndb.com/covers/05/66/9783551580566.jpg'), - ('0399139745', 'Wild Horses', 'https://images.isbndb.com/covers/97/41/9780399139741.jpg'), - ('0679762671', 'A Dog''s Life', 'https://images.isbndb.com/covers/26/76/9780679762676.jpg'), - ('0140196226', 'If The Buddha Married: Creating Enduring Relationships On A Spiritual Path (Compass)', 'https://images.isbndb.com/covers/62/21/9780140196221.jpg'), - ('0140143505', '84, Charing Cross Road', 'https://images.isbndb.com/covers/35/08/9780140143508.jpg'), - ('0671743503', 'The Object Of My Affection', 'https://images.isbndb.com/covers/35/05/9780671743505.jpg'), - ('0345413881', 'Dr. Death (Alex Delaware)', 'https://images.isbndb.com/covers/38/88/9780345413888.jpg'), - ('0553289691', 'Skinny Legs And I', 'https://images.isbndb.com/covers/96/95/9780553289695.jpg'), - ('0671851047', 'Game Ten Pb', 'https://images.isbndb.com/covers/10/40/9780671851040.jpg'), - ('0140042407', 'Tortilla Flat', 'https://images.isbndb.com/covers/24/05/9780140042405.jpg'), - ('344203079X', 'Der Hüter Des Kelchs. Ein Albert-Campion-Roman.', 'https://images.isbndb.com/covers/07/98/9783442030798.jpg'), - ('0765303418', 'Catspaw', 'https://images.isbndb.com/covers/34/17/9780765303417.jpg'), - ('0786000872', 'The Promise', 'https://images.isbndb.com/covers/08/76/9780786000876.jpg'), - ('0140179178', 'Great Jones Street (Contemporary American Fiction)', 'https://images.isbndb.com/covers/91/70/9780140179170.jpg'), - ('0812550757', 'Speaker For The Dead (Ender, Book 2)', 'https://images.isbndb.com/covers/07/57/9780812550757.jpg'), - ('067087311X', 'Icy Sparks (Oprah''s Book Club)', 'https://images.isbndb.com/covers/31/11/9780670873111.jpg'), - ('0679721886', 'The Woman Warrior: Memoirs Of A Girlhood Among Ghosts', 'https://images.isbndb.com/covers/18/88/9780679721888.jpg'), - ('0394575202', 'The Power Of One', 'https://images.isbndb.com/covers/52/09/9780394575209.jpg'), - ('0451187849', 'We The Living', 'https://images.isbndb.com/covers/78/40/9780451187840.jpg'), - ('0451163966', 'One Flew Over The Cuckoo''s Nest', 'https://images.isbndb.com/covers/39/67/9780451163967.jpg'), - ('0449911659', 'Rabbit, Run', 'https://images.isbndb.com/covers/16/55/9780449911655.jpg'), - ('0553571338', 'The Giver', 'https://images.isbndb.com/covers/13/32/9780553571332.jpg'), - ('0671041584', 'Blood Washes Blood: A True Story Of Love, Murder, And Redemption Under The Sicilian Sun', 'https://images.isbndb.com/covers/15/88/9780671041588.jpg'), - ('0151189781', 'T. S. Eliot: Collected Poems, 1909-1962 (The Centenary Edition)', 'https://images.isbndb.com/covers/97/86/9780151189786.jpg'), - ('0812564669', 'Household Gods', 'https://images.isbndb.com/covers/46/62/9780812564662.jpg'), - ('0765302365', 'Second Spring: A Love Story', 'https://images.isbndb.com/covers/23/66/9780765302366.jpg'), - ('0446605905', 'The Ragman''s Memory (Joe Gunther Mysteries)', 'https://images.isbndb.com/covers/59/08/9780446605908.jpg'), - ('0525946829', 'Quentins', 'https://images.isbndb.com/covers/68/23/9780525946823.jpg'), - ('0399138013', 'November Of The Heart', 'https://images.isbndb.com/covers/80/10/9780399138010.jpg'), - ('0880707682', 'Chosen (Full Circle Series #5)', 'https://images.isbndb.com/covers/76/88/9780880707688.jpg'), - ('0152550860', 'The Moffat Museum', 'https://images.isbndb.com/covers/08/68/9780152550868.jpg'), - ('1556618603', 'Masquerade (Portraits Series #11)', 'https://images.isbndb.com/covers/86/04/9781556618604.jpg'), - ('0590060198', 'The BFG', 'https://images.isbndb.com/covers/01/96/9780590060196.jpg'), - ('0671868403', 'College Weekend (Fear Street, No. 32)', 'https://images.isbndb.com/covers/84/06/9780671868406.jpg'), - ('0553570080', 'The House Of Death (Sweet Valley University(R))', 'https://images.isbndb.com/covers/00/83/9780553570083.jpg'), - ('0671550284', 'Starlight Crystal', 'https://images.isbndb.com/covers/02/88/9780671550288.jpg'), - ('0671736825', 'Gimme A Kiss', 'https://images.isbndb.com/covers/68/28/9780671736828.jpg'), - ('0671008749', 'Fear Hall: The Beginning (Fear Street, No. 46) (Part 1)', 'https://images.isbndb.com/covers/87/41/9780671008741.jpg'), - ('0671002929', 'The Hidden Evil (Fear Street, No. 5)', 'https://images.isbndb.com/covers/29/23/9780671002923.jpg'), - ('0812570758', 'Species II: A Novel', 'https://images.isbndb.com/covers/07/55/9780812570755.jpg'), - ('0812540239', 'The Mongoose Man', 'https://images.isbndb.com/covers/02/39/9780812540239.jpg'), - ('0553292323', 'Jessica Against Bruce (Sweet Valley High)', 'https://images.isbndb.com/covers/23/29/9780553292329.jpg'), - ('981305607X', 'True Singapore Ghost Stories : Book 8', 'https://images.isbndb.com/covers/60/77/9789813056077.jpg'), - ('0671736809', 'Graduation (Final Friends, No. 3)', 'https://images.isbndb.com/covers/68/04/9780671736804.jpg'), - ('0671019287', 'The DANCE FINAL FRIENDS 2', 'https://images.isbndb.com/covers/92/80/9780671019280.jpg'), - ('0671736787', 'The PARTY (FINAL FRIENDS 1) (Final Friends, No 1)', 'https://images.isbndb.com/covers/67/81/9780671736781.jpg'), - ('0553158937', 'The Ghost In The Bell Tower (Sweet Valley Twins Super Chiller)', 'https://images.isbndb.com/covers/89/39/9780553158939.jpg'), - ('0553158597', 'The Carnival Ghost (Sweet Valley Twins Super Chillers)', 'https://images.isbndb.com/covers/85/95/9780553158595.jpg'), - ('0553157671', 'The Christmas Ghost (Sweet Valley Twins Super Chiller Book 1)', 'https://images.isbndb.com/covers/76/73/9780553157673.jpg'), - ('0553481975', 'Don''t Talk To Brian (Sweet Valley Twins)', 'https://images.isbndb.com/covers/19/76/9780553481976.jpg'), - ('0553158015', 'The Ghost In The Graveyard (Sweet Valley Twins Super Chillers)', 'https://images.isbndb.com/covers/80/14/9780553158014.jpg'), - ('0553483471', 'The Twins Go To College (Sweet Valley Twins)', 'https://images.isbndb.com/covers/34/75/9780553483475.jpg'), - ('0553480510', 'The Magic Christmas (Sweet Valley Twins Magna Editions)', 'https://images.isbndb.com/covers/05/11/9780553480511.jpg'), - ('0553480618', 'Jessica And The Earthquake (Sweet Valley Twins)', 'https://images.isbndb.com/covers/06/10/9780553480610.jpg'), - ('0553482491', 'BIG FOR CHRISTMAS (Sweet Valley Twins)', 'https://images.isbndb.com/covers/24/92/9780553482492.jpg'), - ('0553159526', 'The Big Party Weekend (Sweet Valley Twins)', 'https://images.isbndb.com/covers/95/23/9780553159523.jpg'), - ('055356403X', 'The Curse Of The Golden Heart (Sweet Valley Twins & Friends Super Chillers - Book 6)', 'https://images.isbndb.com/covers/40/37/9780553564037.jpg'), - ('0553157663', 'JESSICA THE ROCK STAR (Sweet Valley Twins)', 'https://images.isbndb.com/covers/76/66/9780553157666.jpg'), - ('3423202327', 'Mörder Ohne Gesicht: Roman', 'https://images.isbndb.com/covers/23/29/9783423202329.jpg'), - ('3442421357', 'Im Eishaus', 'https://images.isbndb.com/covers/13/50/9783442421350.jpg'), - ('3404144031', 'Die Purpurnen Flüsse: Thriller', 'https://images.isbndb.com/covers/40/37/9783404144037.jpg'), - ('0312986343', 'Visions Of Sugar Plums (A Stephanie Plum Holiday Novel)', 'https://images.isbndb.com/covers/63/46/9780312986346.jpg'), - ('0399137599', 'Steel Beach', 'https://images.isbndb.com/covers/75/94/9780399137594.jpg'), - ('0060974494', 'Lost Tribes And Promised Lands: The Origins Of American Racism', 'https://images.isbndb.com/covers/44/97/9780060974497.jpg'), - ('0553345842', 'The Mind''s I: Fantasies And Reflections On Self And Soul', 'https://images.isbndb.com/covers/58/41/9780553345841.jpg'), - ('0553343211', 'Synchronicity: The Bridge Between Matter And Mind', 'https://images.isbndb.com/covers/32/12/9780553343212.jpg'), - ('0809255324', 'Physics For Poets', 'https://images.isbndb.com/covers/53/20/9780809255320.jpg'), - ('0922233209', 'Raw Deal: Horrible And Ironic Stories Of Forgotten Americans', 'https://images.isbndb.com/covers/32/05/9780922233205.jpg'), - ('086316160X', 'Foucault For Beginners (Writers And Readers Documentary Comic Books: 62)', 'https://images.isbndb.com/covers/16/05/9780863161605.jpg'), - ('0553078682', 'Food Of The Gods: The Search For The Original Tree Of Knowledge A Radical History Of Plants, Drugs, And Human Evolution', 'https://images.isbndb.com/covers/86/88/9780553078688.jpg'), - ('0062504096', 'We''Ve Had A Hundred Years Of Psychotherapy And The World''s Getting Worse', 'https://images.isbndb.com/covers/40/98/9780062504098.jpg'), - ('0155019872', 'A Guide To Literary Criticism And Research', 'https://images.isbndb.com/covers/98/74/9780155019874.jpg'), - ('0679413065', 'The Secret Sun: A Novel Of Japan', 'https://images.isbndb.com/covers/30/66/9780679413066.jpg'), - ('0425125467', 'Harmful Intent', 'https://images.isbndb.com/covers/54/65/9780425125465.jpg'), - ('158322601X', 'The Oh Really? Factor: Unspinning Fox News Channel''s Bill O''Reilly', 'https://images.isbndb.com/covers/60/18/9781583226018.jpg'), - ('0385495358', 'I Rant, Therefore I Am', 'https://images.isbndb.com/covers/53/56/9780385495356.jpg'), - ('1555835589', 'Revolutionary Voices', 'https://images.isbndb.com/covers/55/83/9781555835583.jpg'), - ('1585972622', 'Spiderbreath', 'https://images.isbndb.com/covers/26/23/9781585972623.jpg'), - ('006056668X', 'Fluke: Or, I Know Why The Winged Whale Sings (Today Show Book Club #25)', 'https://images.isbndb.com/covers/66/85/9780060566685.jpg'), - ('0385511620', 'Women Make The Best Salesmen: Isn’t It Time You Started Using Their Secrets?', 'https://images.isbndb.com/covers/16/29/9780385511629.jpg'), - ('0446530077', 'Find Me', 'https://images.isbndb.com/covers/00/71/9780446530071.jpg'), - ('0689856083', 'A Journey The Autobiography Of Apolo Anton Ohno', 'https://images.isbndb.com/covers/60/82/9780689856082.jpg'), - ('0802151574', 'Querelle', 'https://images.isbndb.com/covers/15/75/9780802151575.jpg'), - ('0812992180', 'Vagabonding: An Uncommon Guide To The Art Of Long-Term World Travel', 'https://images.isbndb.com/covers/21/82/9780812992182.jpg'), - ('0385729472', 'Secret Heart', 'https://images.isbndb.com/covers/94/75/9780385729475.jpg'), - ('0373227728', 'Double Take (Harlequin Intrigue)', 'https://images.isbndb.com/covers/77/23/9780373227723.jpg'), - ('0373227736', 'Mask Of A Hunter (Harlequin Intrigue)', 'https://images.isbndb.com/covers/77/30/9780373227730.jpg'), - ('037322771X', 'Just Before Dawn (Harlequin Intrigue)', 'https://images.isbndb.com/covers/77/16/9780373227716.jpg'), - ('0373227744', 'Out For Justice (Shotgun Sallys, Book 1) (Harlequin Intrigue Series #774)', 'https://images.isbndb.com/covers/77/47/9780373227747.jpg'), - ('0373712049', 'Whose Child? A Little Secret (Harlequin Superromance No. 1204)', 'https://images.isbndb.com/covers/20/45/9780373712045.jpg'), - ('0373712006', 'Silent Witness (Code Red) (Harlequin Superromance, No. 1200)', 'https://images.isbndb.com/covers/20/07/9780373712007.jpg'), - ('0373712014', 'Return To Little Hills: Going Back (Harlequin Superromance No. 1201)', 'https://images.isbndb.com/covers/20/14/9780373712014.jpg'), - ('0373712057', 'Two On The Run: Count On A Cop (Harlequin Superromance No. 1205)', 'https://images.isbndb.com/covers/20/52/9780373712052.jpg'), - ('0373227396', 'Unmarked Man (Bachelors At Large, Book 2) (Harlequin Intrigue Series #739)', 'https://images.isbndb.com/covers/73/96/9780373227396.jpg'), - ('0373711719', 'For The Children (Harlequin Superromance No. 1171)', 'https://images.isbndb.com/covers/17/10/9780373711710.jpg'), - ('0373711735', 'The Road To Echo Point (Harlequin Superromance No. 1173)', 'https://images.isbndb.com/covers/17/34/9780373711734.jpg'), - ('0451409434', 'Fantastic Voyage: Microcosm', 'https://images.isbndb.com/covers/94/30/9780451409430.jpg'), - ('0875427332', 'A Witch''s Guide To Faery Folk: How To Work With The Elemental World (Llewellyn''s New Age)', 'https://images.isbndb.com/covers/73/31/9780875427331.jpg'), - ('0738704458', 'Witchy Tarot (English And Spanish Edition)', 'https://images.isbndb.com/covers/44/56/9780738704456.jpg'), - ('0316281697', 'Like Father, Like Daughter: How Father Shapes The Woman His Daughter Becomes', 'https://images.isbndb.com/covers/16/90/9780316281690.jpg'), - ('0060965118', 'The Jeopardy! Book: The Answers, The Questions, The Facts, And The Stories Of The Greatest Game Show In History', 'https://images.isbndb.com/covers/51/12/9780060965112.jpg'), - ('0312951914', 'Linda Goodman''s Star Signs', 'https://images.isbndb.com/covers/19/17/9780312951917.jpg'), - ('0878577386', 'Flowers (Rodale''s Home Gardening Library)', 'https://images.isbndb.com/covers/73/85/9780878577385.jpg'), - ('0843922567', 'Creature', 'https://images.isbndb.com/covers/25/61/9780843922561.jpg'), - ('1592231381', 'The Tarot Set: The Illustrated Book Of Tarot', 'https://images.isbndb.com/covers/13/86/9781592231386.jpg'), - ('0517182467', 'John Saul: Three Terrifying Bestselling Novels: Suffer The Children; Punish The Sinners; Cry For The Strangers', 'https://images.isbndb.com/covers/24/68/9780517182468.jpg'), - ('055357485X', 'Children''s Past Lives: How Past Life Memories Affect Your Child', 'https://images.isbndb.com/covers/48/52/9780553574852.jpg'), - ('0875421245', 'The Magical Household: Spells & Rituals For The Home (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/12/47/9780875421247.jpg'), - ('0671670875', 'Tarot Made Easy', 'https://images.isbndb.com/covers/08/70/9780671670870.jpg'), - ('0875420508', 'Buckland''s Complete Book Of Witchcraft (Llewellyn''s Practical Magick)', 'https://images.isbndb.com/covers/05/09/9780875420509.jpg'), - ('0801043859', 'When The One You Love Wants To Leave: Guidance And Comfort For Surviving Marital Crisis', 'https://images.isbndb.com/covers/38/57/9780801043857.jpg'), - ('0785270442', 'Winning Your Husband Back Before It''s Too Late: Whether He''s Left Physically Or Emotionally, All That Matters Is...', 'https://images.isbndb.com/covers/04/47/9780785270447.jpg'), - ('0451178599', 'Needful Things', 'https://images.isbndb.com/covers/85/96/9780451178596.jpg'), - ('1555472419', 'Just Before Daybreak', 'https://images.isbndb.com/covers/24/12/9781555472412.jpg'), - ('0671421611', 'Childgrave', 'https://images.isbndb.com/covers/16/18/9780671421618.jpg'), - ('0380780216', 'Cry For Justice', 'https://images.isbndb.com/covers/02/11/9780380780211.jpg'), - ('1590030044', 'The White Magic Book', 'https://images.isbndb.com/covers/00/42/9781590030042.jpg'), - ('0451128370', 'Christine (Signet)', 'https://images.isbndb.com/covers/83/79/9780451128379.jpg'), - ('0451170385', 'Four Past Midnight (Signet)', 'https://images.isbndb.com/covers/03/85/9780451170385.jpg'), - ('3036911154', 'Der Welt Den Rücken. 2 CDs: Vier Geschichten Aus Dem Erzählband ''Der Welt Den Rücken''. Neben Der Titelgeschichte: Der Tag Als Boris Becker Ging / Silberhochzeit / Karl, Bob Dylan Und Ich', 'https://images.isbndb.com/covers/11/51/9783036911151.jpg'), - ('0451206339', 'Forgive The Moon', 'https://images.isbndb.com/covers/63/36/9780451206336.jpg'), - ('0156006847', 'The Fencing Master: A Novel', 'https://images.isbndb.com/covers/68/42/9780156006842.jpg'), - ('0395926882', 'The Best American Short Stories 2001 (The Best American Series)', 'https://images.isbndb.com/covers/68/88/9780395926888.jpg'), - ('0446527297', 'The Millionaires', 'https://images.isbndb.com/covers/72/93/9780446527293.jpg'), - ('0786867906', 'Strip City: A Stripper''s Farewell Journey Across America', 'https://images.isbndb.com/covers/79/05/9780786867905.jpg'), - ('0425151875', 'Games Of State (Tom Clancy''s Op-Center, Book 3)', 'https://images.isbndb.com/covers/18/77/9780425151877.jpg'), - ('0553570854', 'Till Death Do Us Part', 'https://images.isbndb.com/covers/08/54/9780553570854.jpg'), - ('055357115X', 'Until Angels Close My Eyes', 'https://images.isbndb.com/covers/11/58/9780553571158.jpg'), - ('0440802059', 'One Eyed Cat', 'https://images.isbndb.com/covers/20/51/9780440802051.jpg'), - ('0373218958', 'Less Of A Stranger', 'https://images.isbndb.com/covers/89/50/9780373218950.jpg'), - ('3442356180', 'Shogun.', 'https://images.isbndb.com/covers/61/88/9783442356188.jpg'), - ('0671684256', 'Cold Harbour', 'https://images.isbndb.com/covers/42/59/9780671684259.jpg'), - ('0425182843', 'Edge Of Danger (Sean Dillon)', 'https://images.isbndb.com/covers/28/40/9780425182840.jpg'), - ('0486406539', 'Siddhartha (Dover Thrift Editions)', 'https://images.isbndb.com/covers/65/34/9780486406534.jpg'), - ('0590440144', 'The Swiss Family Robinson (Apple Classic)', 'https://images.isbndb.com/covers/01/41/9780590440141.jpg'), - ('0812550749', 'Firebird (The Elemental Masters Fairy Tales)', 'https://images.isbndb.com/covers/07/40/9780812550740.jpg'), - ('0671720996', 'The Lark And The Wren (Bardic Voices, Book 1)', 'https://images.isbndb.com/covers/09/95/9780671720995.jpg'), - ('0553148524', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/85/27/9780553148527.jpg'), - ('0802111610', 'First Light', 'https://images.isbndb.com/covers/16/16/9780802111616.jpg'), - ('0670031720', 'Drop City', 'https://images.isbndb.com/covers/17/26/9780670031726.jpg'), - ('0385128533', 'Goodbye California', 'https://images.isbndb.com/covers/85/37/9780385128537.jpg'), - ('0679405127', 'Angels & Insects: Two Novellas', 'https://images.isbndb.com/covers/51/22/9780679405122.jpg'), - ('0679742115', 'Vox', 'https://images.isbndb.com/covers/21/11/9780679742111.jpg'), - ('0316954993', 'War And Remembrance', 'https://images.isbndb.com/covers/49/90/9780316954990.jpg'), - ('0345463153', 'The Fourth Hand', 'https://images.isbndb.com/covers/31/59/9780345463159.jpg'), - ('188522317X', 'Bumper Sticker Wisdom: America''s Pulpit Above The Tailpipe', 'https://images.isbndb.com/covers/31/73/9781885223173.jpg'), - ('0312991460', 'To The Nines (Stephanie Plum, No. 9)', 'https://images.isbndb.com/covers/14/63/9780312991463.jpg'), - ('0142001325', 'Our Lady Of The Lost And Found: A Novel Of Mary, Faith, And Friendship', 'https://images.isbndb.com/covers/13/25/9780142001325.jpg'), - ('1565123670', 'A Parchment Of Leaves', 'https://images.isbndb.com/covers/36/70/9781565123670.jpg'), - ('0385501412', 'Three Weeks In Paris', 'https://images.isbndb.com/covers/14/15/9780385501415.jpg'), - ('0553277901', 'A Woman Of Substance', 'https://images.isbndb.com/covers/79/06/9780553277906.jpg'), - ('006016848X', 'Men Are From Mars, Women Are From Venus: A Practical Guide For Improving Communication And Getting What You Want In Your Relationships', 'https://images.isbndb.com/covers/84/83/9780060168483.jpg'), - ('0684862921', 'Ringing For You: A Love Story With Interruptions', 'https://images.isbndb.com/covers/29/27/9780684862927.jpg'), - ('0060956690', 'So Big (Perennial Classics)', 'https://images.isbndb.com/covers/66/91/9780060956691.jpg'), - ('0156007185', 'The Worst Day Of My Life, So Far', 'https://images.isbndb.com/covers/71/84/9780156007184.jpg'), - ('0451182960', 'Too Many Crooks Spoil The Broth (A Pennsylvania-Dutch Mystery With Recipes)', 'https://images.isbndb.com/covers/29/68/9780451182968.jpg'), - ('0449002985', 'Your Oasis On Flame Lake (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/29/88/9780449002988.jpg'), - ('037348254X', 'To Mother With Love 1993', 'https://images.isbndb.com/covers/25/42/9780373482542.jpg'), - ('0865473900', 'Rosie', 'https://images.isbndb.com/covers/39/04/9780865473904.jpg'), - ('0395859972', 'The Blue Flower', 'https://images.isbndb.com/covers/99/71/9780395859971.jpg'), - ('0671727583', 'Smart Women', 'https://images.isbndb.com/covers/75/81/9780671727581.jpg'), - ('0028604695', 'Frommer''s Walking Tours: Paris (2nd Edition)', 'https://images.isbndb.com/covers/46/95/9780028604695.jpg'), - ('0060176156', 'Up Island', 'https://images.isbndb.com/covers/61/50/9780060176150.jpg'), - ('0440159008', 'Motherhood The Second Oldest Profession', 'https://images.isbndb.com/covers/90/01/9780440159001.jpg'), - ('0893754005', 'Heidi', 'https://images.isbndb.com/covers/40/06/9780893754006.jpg'), - ('0671600400', 'Portrait Of An Artist: A Biography Of Georgia O''Keeffe', 'https://images.isbndb.com/covers/04/02/9780671600402.jpg'), - ('0440212561', 'Outlander', 'https://images.isbndb.com/covers/25/60/9780440212560.jpg'), - ('0517799952', 'Simple Spells For Love: Ancient Practices For Emotional Fulfillment', 'https://images.isbndb.com/covers/99/56/9780517799956.jpg'), - ('0140267670', 'Life Among The Savages', 'https://images.isbndb.com/covers/76/79/9780140267679.jpg'), - ('0394544749', 'Great Tours And Detours: The Sophisticated Traveler Series', 'https://images.isbndb.com/covers/47/48/9780394544748.jpg'), - ('0785282149', 'Driving Lessons', 'https://images.isbndb.com/covers/21/43/9780785282143.jpg'), - ('0505523183', 'The Night Before Christmas', 'https://images.isbndb.com/covers/31/81/9780505523181.jpg'), - ('0821769278', 'Plain Jane', 'https://images.isbndb.com/covers/92/70/9780821769270.jpg'), - ('0373223102', 'Veil Of Fear (Harlequin Intrigue)', 'https://images.isbndb.com/covers/31/07/9780373223107.jpg'), - ('0380815257', 'A Belated Bride', 'https://images.isbndb.com/covers/52/58/9780380815258.jpg'), - ('0486264645', 'Heart Of Darkness (Dover Thrift Editions)', 'https://images.isbndb.com/covers/46/46/9780486264646.jpg'), - ('0451402065', 'Earth Song (Song Novels)', 'https://images.isbndb.com/covers/20/66/9780451402066.jpg'), - ('0515133302', 'Hemlock Bay (FBI Series)', 'https://images.isbndb.com/covers/33/01/9780515133301.jpg'), - ('0451406907', 'Surrender (Florida Civil War)', 'https://images.isbndb.com/covers/69/03/9780451406903.jpg'), - ('1551668432', 'The Texas Ranger', 'https://images.isbndb.com/covers/84/37/9781551668437.jpg'), - ('0451198948', 'Warrior''s Song (Medieval Song Quartet #4)', 'https://images.isbndb.com/covers/89/45/9780451198945.jpg'), - ('0821767852', 'Yesterday', 'https://images.isbndb.com/covers/78/56/9780821767856.jpg'), - ('1552450244', 'Piccolo Mondo', 'https://images.isbndb.com/covers/02/46/9781552450246.jpg'), - ('0771014910', 'Deadly Appearances (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/49/18/9780771014918.jpg'), - ('0771014899', 'Verdict In Blood (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/48/95/9780771014895.jpg'), - ('0446363650', 'Dreamer''s Dictionary', 'https://images.isbndb.com/covers/36/55/9780446363655.jpg'), - ('0684186373', 'Harnessing Peacocks', 'https://images.isbndb.com/covers/63/75/9780684186375.jpg'), - ('0006480764', 'Lost Girls', 'https://images.isbndb.com/covers/07/61/9780006480761.jpg'), - ('0062514377', 'Meditations For Women Who Do Too Much', 'https://images.isbndb.com/covers/43/70/9780062514370.jpg'), - ('0970116500', 'Expect A Miracle: You Won''t Be Disappointed', 'https://images.isbndb.com/covers/65/05/9780970116505.jpg'), - ('0684804018', 'Divided Lives', 'https://images.isbndb.com/covers/40/19/9780684804019.jpg'), - ('1592861512', 'Journey', 'https://images.isbndb.com/covers/15/14/9781592861514.jpg'), - ('0345421884', 'Dragonshadow (Winterlands, No. 2)', 'https://images.isbndb.com/covers/18/83/9780345421883.jpg'), - ('0684801051', 'Time And Again', 'https://images.isbndb.com/covers/10/56/9780684801056.jpg'), - ('039914840X', 'Three Fates', 'https://images.isbndb.com/covers/84/08/9780399148408.jpg'), - ('0679426094', 'ENTRIES: Poems', 'https://images.isbndb.com/covers/60/97/9780679426097.jpg'), - ('0345410130', 'Dear James: A Novel', 'https://images.isbndb.com/covers/01/39/9780345410139.jpg'), - ('0787947350', 'Let Your Life Speak: Listening For The Voice Of Vocation', 'https://images.isbndb.com/covers/73/54/9780787947354.jpg'), - ('0818403802', 'Getting Straight A''S Green Gordon W', 'https://images.isbndb.com/covers/38/04/9780818403804.jpg'), - ('0684801523', 'The Great Gatsby', 'https://images.isbndb.com/covers/15/20/9780684801520.jpg'), - ('0836213106', 'Night Of The Living Dad (Baby Blues Scrapbook)', 'https://images.isbndb.com/covers/31/02/9780836213102.jpg'), - ('0671733346', 'The Cinderella Complex: Women''s Hidden Fear Of Independence', 'https://images.isbndb.com/covers/33/46/9780671733346.jpg'), - ('0836217810', 'We Are Experiencing Parental Difficulties...Please Stand By: Baby Blues Scrapbook No. 5 (Baby Blues Collection)', 'https://images.isbndb.com/covers/78/10/9780836217810.jpg'), - ('0736605673', 'Animal Farm', 'https://images.isbndb.com/covers/56/70/9780736605670.jpg'), - ('0446532452', 'The Wedding', 'https://images.isbndb.com/covers/24/57/9780446532457.jpg'), - ('1570629706', 'Siddhartha', 'https://images.isbndb.com/covers/97/09/9781570629709.jpg'), - ('0393322440', 'The Blunderer', 'https://images.isbndb.com/covers/24/46/9780393322446.jpg'), - ('0140449124', 'Madame Bovary (Penguin Classics)', 'https://images.isbndb.com/covers/91/29/9780140449129.jpg'), - ('0099274167', 'Misconceptions', 'https://images.isbndb.com/covers/41/62/9780099274162.jpg'), - ('0749391723', 'Lives Of The Saints Pb', 'https://images.isbndb.com/covers/17/20/9780749391720.jpg'), - ('0836217446', 'I Thought Labor Ended When The Baby Was Born (Baby Blues Collection)', 'https://images.isbndb.com/covers/74/45/9780836217445.jpg'), - ('0836217152', 'Guess Who Didn''t Take A Nap? (Baby Blues Collection)', 'https://images.isbndb.com/covers/71/55/9780836217155.jpg'), - ('0375421114', 'Video: Stories', 'https://images.isbndb.com/covers/11/12/9780375421112.jpg'), - ('0446520659', 'The Lion''s Game', 'https://images.isbndb.com/covers/06/52/9780446520652.jpg'), - ('0553071807', 'This Day All Gods Die: The Gap Into Ruin (Gap Series/Stephen R. Donaldson)', 'https://images.isbndb.com/covers/18/01/9780553071801.jpg'), - ('0060167033', 'The Sweet Hereafter: A Novel', 'https://images.isbndb.com/covers/70/35/9780060167035.jpg'), - ('0061091561', 'LA TIMES MM', 'https://images.isbndb.com/covers/15/68/9780061091568.jpg'), - ('0310214351', 'A Shepherd Looks At Psalm 23', 'https://images.isbndb.com/covers/43/59/9780310214359.jpg'), - ('0060191872', 'The Run', 'https://images.isbndb.com/covers/18/70/9780060191870.jpg'), - ('0061030996', 'Hit List (John Keller Mysteries)', 'https://images.isbndb.com/covers/09/94/9780061030994.jpg'), - ('0140430148', 'The Moonstone (Penguin Classics)', 'https://images.isbndb.com/covers/01/41/9780140430141.jpg'), - ('067318160X', 'Short English Handbook', 'https://images.isbndb.com/covers/16/02/9780673181602.jpg'), - ('155591229X', 'Potomac Trails: D.C., Virginia, Maryland, And West Virginia', 'https://images.isbndb.com/covers/22/91/9781555912291.jpg'), - ('0020198817', 'The Great Gatsby (A Scribner Classic)', 'https://images.isbndb.com/covers/88/19/9780020198819.jpg'), - ('0140001409', 'Cold Comfort Farm', 'https://images.isbndb.com/covers/14/02/9780140001402.jpg'), - ('0385323964', 'Maximum Bob', 'https://images.isbndb.com/covers/39/63/9780385323963.jpg'), - ('1881066703', 'New York City Restaurants 3 Ed', 'https://images.isbndb.com/covers/67/05/9781881066705.jpg'), - ('1853265535', 'Washington Square (Classics Library (NTC))', 'https://images.isbndb.com/covers/55/32/9781853265532.jpg'), - ('0345448359', 'Darwin''s Children', 'https://images.isbndb.com/covers/83/54/9780345448354.jpg'), - ('0446527084', 'Fallen Dragon', 'https://images.isbndb.com/covers/70/88/9780446527088.jpg'), - ('0743444965', 'Blood Music', 'https://images.isbndb.com/covers/49/65/9780743444965.jpg'), - ('0752816500', 'Axiomatic', 'https://images.isbndb.com/covers/65/00/9780752816500.jpg'), - ('0061059048', 'Vacuum Diagrams', 'https://images.isbndb.com/covers/90/49/9780061059049.jpg'), - ('0671656473', 'Marooned In Realtime', 'https://images.isbndb.com/covers/64/78/9780671656478.jpg'), - ('0812520475', 'Eon', 'https://images.isbndb.com/covers/04/77/9780812520477.jpg'), - ('0743421922', 'Look To Windward', 'https://images.isbndb.com/covers/19/28/9780743421928.jpg'), - ('0425173534', 'SSN', 'https://images.isbndb.com/covers/35/34/9780425173534.jpg'), - ('042510107X', 'Red Storm Rising', 'https://images.isbndb.com/covers/10/70/9780425101070.jpg'), - ('0425108937', 'Flight Of The Old Dog', 'https://images.isbndb.com/covers/89/32/9780425108932.jpg'), - ('0451457781', 'Treachery And Treason', 'https://images.isbndb.com/covers/77/83/9780451457783.jpg'), - ('1576734013', 'Mixed Signals (Alabaster Books)', 'https://images.isbndb.com/covers/40/18/9781576734018.jpg'), - ('0451203267', 'The Stranger Beside Me (Revised And Updated): 20th Anniversary', 'https://images.isbndb.com/covers/32/67/9780451203267.jpg'), - ('0312140908', 'The Invisible Circus: A Novel', 'https://images.isbndb.com/covers/09/08/9780312140908.jpg'), - ('0394571770', 'Butterfly', 'https://images.isbndb.com/covers/17/75/9780394571775.jpg'), - ('043936213X', 'Harry Potter And The Sorcerer''s Stone (Book 1)', 'https://images.isbndb.com/covers/21/39/9780439362139.jpg'), - ('0345432401', 'Omerta', 'https://images.isbndb.com/covers/24/07/9780345432407.jpg'), - ('0380779323', 'When Dinosaurs Ruled The Basement (An Avon Camelot Book)', 'https://images.isbndb.com/covers/93/21/9780380779321.jpg'), - ('043930931X', 'The Case Of The Buried Treasure (Jigsaw Jones Mystery Super Special, No. 1)', 'https://images.isbndb.com/covers/93/18/9780439309318.jpg'), - ('0064401502', 'Mrs. Piggle-Wiggle''s Farm', 'https://images.isbndb.com/covers/15/00/9780064401500.jpg'), - ('0671876570', 'The Ship Who Won', 'https://images.isbndb.com/covers/65/79/9780671876579.jpg'), - ('0373120095', 'In Bed With The Boss (Harlequin Presents)', 'https://images.isbndb.com/covers/00/93/9780373120093.jpg'), - ('0671798782', 'Diana: Her True Story', 'https://images.isbndb.com/covers/87/89/9780671798789.jpg'), - ('0679822631', 'Goodbye, Vietnam', 'https://images.isbndb.com/covers/26/39/9780679822639.jpg'), - ('0886191718', 'Daughters Of Captain Cook (International Fiction List)', 'https://images.isbndb.com/covers/17/19/9780886191719.jpg'), - ('0373764723', 'Expecting...And In Danger (Dynasties:The Connellys)', 'https://images.isbndb.com/covers/47/23/9780373764723.jpg'), - ('0373764685', 'The Royal Treatment (Crown And Glory)', 'https://images.isbndb.com/covers/46/86/9780373764686.jpg'), - ('0373764677', 'The Seal''s Surprise Baby', 'https://images.isbndb.com/covers/46/79/9780373764679.jpg'), - ('038071471X', 'Beyond The Stars', 'https://images.isbndb.com/covers/47/11/9780380714711.jpg'), - ('0373764766', 'Do You Take This Enemy (Stallion Pass)', 'https://images.isbndb.com/covers/47/61/9780373764761.jpg'), - ('0373764650', 'Taming The Outlaw (Man Of The Month) (Silhouette Desire)', 'https://images.isbndb.com/covers/46/55/9780373764655.jpg'), - ('0061061433', 'Year''s Best SF 7', 'https://images.isbndb.com/covers/14/31/9780061061431.jpg'), - ('0312020317', 'All Things Wise And Wonderful', 'https://images.isbndb.com/covers/03/16/9780312020316.jpg'), - ('0671823884', 'Good As Gold', 'https://images.isbndb.com/covers/38/87/9780671823887.jpg'), - ('0060973617', 'Up The Down Staircase', 'https://images.isbndb.com/covers/36/12/9780060973612.jpg'), - ('0141301236', 'A Place In The Sun', 'https://images.isbndb.com/covers/12/35/9780141301235.jpg'), - ('0771014236', 'Death Of Tecumseh (Book 20) (Battles Of The War Of 1812)', 'https://images.isbndb.com/covers/42/39/9780771014239.jpg'), - ('1576104176', 'Access 2000 Client/Server Solutions: The In-depth Guide To Developing Access Client/Server Systems', 'https://images.isbndb.com/covers/41/70/9781576104170.jpg'), - ('0525458638', 'The Shakespeare Stealer', 'https://images.isbndb.com/covers/86/30/9780525458630.jpg'), - ('0782124526', 'Mastering Coldfusion 4', 'https://images.isbndb.com/covers/45/21/9780782124521.jpg'), - ('0671726528', 'Kon-Tiki: Across The Pacific In A Raft', 'https://images.isbndb.com/covers/65/22/9780671726522.jpg'), - ('0553208659', 'Fair Blows The Wind', 'https://images.isbndb.com/covers/86/58/9780553208658.jpg'), - ('0553247662', 'Westward The Tide', 'https://images.isbndb.com/covers/76/64/9780553247664.jpg'), - ('0307220060', 'Ghost Of Eagle Mountain (Girl Talk)', 'https://images.isbndb.com/covers/00/66/9780307220066.jpg'), - ('037570342X', 'Family Matters', 'https://images.isbndb.com/covers/34/23/9780375703423.jpg'), - ('0452283027', 'Farm Fatale: A Comedy Of Country Manors', 'https://images.isbndb.com/covers/30/22/9780452283022.jpg'), - ('1400045029', 'Cooking For Harry: A Low-Carbohydrate Novel', 'https://images.isbndb.com/covers/50/20/9781400045020.jpg'), - ('1400052157', 'Idyll Banter: Weekly Excursions To A Very Small Town', 'https://images.isbndb.com/covers/21/58/9781400052158.jpg'), - ('0374174075', 'I Sailed With Magellan', 'https://images.isbndb.com/covers/40/71/9780374174071.jpg'), - ('0688102255', 'Rumor Has It', 'https://images.isbndb.com/covers/22/58/9780688102258.jpg'), - ('0704340070', 'Three Ply Yarn', 'https://images.isbndb.com/covers/00/77/9780704340077.jpg'), - ('0440132118', 'As On A Darkling Plain', 'https://images.isbndb.com/covers/21/10/9780440132110.jpg'), - ('0060916125', 'The True Believer: Thoughts On The Nature Of Mass Movements', 'https://images.isbndb.com/covers/61/21/9780060916121.jpg'), - ('0140274383', 'About Yvonne', 'https://images.isbndb.com/covers/43/87/9780140274387.jpg'), - ('0883910349', 'Og Mandino''s Great Trilogy', 'https://images.isbndb.com/covers/03/44/9780883910344.jpg'), - ('0380001012', 'The Foundation Trilogy: Foundation, Second Foundation, Foundation And Empire', 'https://images.isbndb.com/covers/10/19/9780380001019.jpg'), - ('1857033701', 'Getting Into Films & Television: How To Find The Best Way In (Jobs & Careers)', 'https://images.isbndb.com/covers/37/00/9781857033700.jpg'), - ('0330303287', 'The Silent People', 'https://images.isbndb.com/covers/32/86/9780330303286.jpg'), - ('0330303279', 'Seek The Fair Land (The Irish Trilogy)', 'https://images.isbndb.com/covers/32/79/9780330303279.jpg'), - ('0786884274', 'Don''t Call That Man!: A Survival Guide To Letting Go', 'https://images.isbndb.com/covers/42/78/9780786884278.jpg'), - ('0749308583', 'The Positive Way To Change Your Life', 'https://images.isbndb.com/covers/85/82/9780749308582.jpg'), - ('0749429003', 'Know Yourself: Achieve Your Goals Through Better Self-Knowledge', 'https://images.isbndb.com/covers/90/03/9780749429003.jpg'), - ('3518392387', 'Wilde Schafsjagd', 'https://images.isbndb.com/covers/23/86/9783518392386.jpg'), - ('0425187055', 'Cutting Edge (Tom Clancy''s Power Plays, Book 6)', 'https://images.isbndb.com/covers/70/50/9780425187050.jpg'), - ('0970897251', 'One Foot In Eden: A Novel', 'https://images.isbndb.com/covers/72/51/9780970897251.jpg'), - ('0316089737', 'Captain Saturday: A Novel', 'https://images.isbndb.com/covers/97/39/9780316089739.jpg'), - ('1589199669', 'A Place Called Wiregrass', 'https://images.isbndb.com/covers/96/68/9781589199668.jpg'), - ('0385494327', 'Black Dogs: A Novel', 'https://images.isbndb.com/covers/43/28/9780385494328.jpg'), - ('1566492017', 'Appointment With Il Duce', 'https://images.isbndb.com/covers/20/10/9781566492010.jpg'), - ('0802117155', 'Wish You Were Here', 'https://images.isbndb.com/covers/71/51/9780802117151.jpg'), - ('0060159081', 'Oscar And Lucinda', 'https://images.isbndb.com/covers/90/85/9780060159085.jpg'), - ('080326089X', 'The Wild Bunch At Robbers Roost', 'https://images.isbndb.com/covers/08/94/9780803260894.jpg'), - ('0446607258', 'Mythology: Timeless Tales Of Gods And Heroes', 'https://images.isbndb.com/covers/72/54/9780446607254.jpg'), - ('0374138591', 'The Devil''s Larder', 'https://images.isbndb.com/covers/85/92/9780374138592.jpg'), - ('0375726225', 'Burning Marguerite', 'https://images.isbndb.com/covers/62/24/9780375726224.jpg'), - ('0316184152', 'Final Harvest: Poems', 'https://images.isbndb.com/covers/41/51/9780316184151.jpg'), - ('1555661874', 'The Nearby Faraway: A Personal Journey Through The Heart Of The West', 'https://images.isbndb.com/covers/18/78/9781555661878.jpg'), - ('0312313195', 'Sons Of Fortune (Archer, Jeffrey)', 'https://images.isbndb.com/covers/31/97/9780312313197.jpg'), - ('068817776X', 'The Nazi Officer''s Wife: How One Jewish Woman Survived The Holocaust', 'https://images.isbndb.com/covers/77/68/9780688177768.jpg'), - ('0375760903', 'The Coffee Trader: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/09/07/9780375760907.jpg'), - ('0385721838', 'The True Sources Of The Nile', 'https://images.isbndb.com/covers/18/37/9780385721837.jpg'), - ('0743234359', 'American Jihad: The Terrorists Living Among Us', 'https://images.isbndb.com/covers/43/51/9780743234351.jpg'), - ('0142001104', 'The Art Of Possibility: Transforming Professional And Personal Life', 'https://images.isbndb.com/covers/11/03/9780142001103.jpg'), - ('0739306510', 'The Last Juror', 'https://images.isbndb.com/covers/65/12/9780739306512.jpg'), - ('0142003816', 'The Kitchen Boy: A Novel Of The Last Tsar', 'https://images.isbndb.com/covers/38/17/9780142003817.jpg'), - ('1585422932', 'The Hemingway Book Club Of Kosovo', 'https://images.isbndb.com/covers/29/37/9781585422937.jpg'), - ('080701222X', 'The Blooming Of A Lotus', 'https://images.isbndb.com/covers/22/22/9780807012222.jpg'), - ('0805071849', 'Borrowed Finery: A Memoir', 'https://images.isbndb.com/covers/18/49/9780805071849.jpg'), - ('1585673625', 'To The Edge Of The Sky: A Story Of Love, Betrayal, Suffering, And The Strength Of Human Courage', 'https://images.isbndb.com/covers/36/29/9781585673629.jpg'), - ('081296747X', 'The Majesty Of The Law: Reflections Of A Supreme Court Justice', 'https://images.isbndb.com/covers/74/70/9780812967470.jpg'), - ('0739307002', 'Death By Hollywood', 'https://images.isbndb.com/covers/70/07/9780739307007.jpg'), - ('0967002303', 'Chinese Playground : A Memoir', 'https://images.isbndb.com/covers/23/09/9780967002309.jpg'), - ('0881001163', 'Murder In Palm Springs', 'https://images.isbndb.com/covers/11/67/9780881001167.jpg'), - ('0375726373', 'Casa Rossa', 'https://images.isbndb.com/covers/63/78/9780375726378.jpg'), - ('0684826879', 'Beginning Anew', 'https://images.isbndb.com/covers/68/75/9780684826875.jpg'), - ('1573229377', 'Anger: Wisdom For Cooling The Flames', 'https://images.isbndb.com/covers/93/71/9781573229371.jpg'), - ('1400030803', 'The Good Women Of China: Hidden Voices', 'https://images.isbndb.com/covers/08/04/9781400030804.jpg'), - ('0452282020', 'Land Of A Thousand Hills: My Life In Rwanda', 'https://images.isbndb.com/covers/20/25/9780452282025.jpg'), - ('0684872838', 'The Fisher King: A Novel', 'https://images.isbndb.com/covers/28/34/9780684872834.jpg'), - ('0375726349', 'The Human Stain: A Novel American Trilogy (3)', 'https://images.isbndb.com/covers/63/47/9780375726347.jpg'), - ('0375403701', 'The Country Under My Skin: A Memoir Of Love And War', 'https://images.isbndb.com/covers/37/05/9780375403705.jpg'), - ('1932360069', 'The Long Haul', 'https://images.isbndb.com/covers/00/66/9781932360066.jpg'), - ('0006280803', 'Kundun Pb', 'https://images.isbndb.com/covers/08/04/9780006280804.jpg'), - ('1573223786', 'Drinking Coffee Elsewhere', 'https://images.isbndb.com/covers/37/82/9781573223782.jpg'), - ('0140235396', 'Memoirs Of A Beatnik', 'https://images.isbndb.com/covers/53/95/9780140235395.jpg'), - ('0385336934', 'Man Out Of Time', 'https://images.isbndb.com/covers/69/32/9780385336932.jpg'), - ('0399151648', 'Kate Remembered', 'https://images.isbndb.com/covers/16/44/9780399151644.jpg'), - ('0941781135', 'Katharine The Great : Katharine Graham And Her Washington Post Empire', 'https://images.isbndb.com/covers/11/38/9780941781138.jpg'), - ('0805063021', 'Canone Inverso: A Novel', 'https://images.isbndb.com/covers/30/28/9780805063028.jpg'), - ('1583224939', 'Terrorism And War (Open Media Series)', 'https://images.isbndb.com/covers/49/39/9781583224939.jpg'), - ('0394757777', 'Berlin Diaries, 1940-1945', 'https://images.isbndb.com/covers/77/73/9780394757773.jpg'), - ('1581820135', 'Return To The Scene Of The Crime: A Guide To Infamous Places In Chicago', 'https://images.isbndb.com/covers/01/33/9781581820133.jpg'), - ('0393959015', 'The House Of Mirth (Norton Critical Editions)', 'https://images.isbndb.com/covers/90/17/9780393959017.jpg'), - ('0445046368', 'Life Before Man', 'https://images.isbndb.com/covers/63/68/9780445046368.jpg'), - ('0373197187', 'Cattleman''s Pride (Silhouette Romance)', 'https://images.isbndb.com/covers/71/87/9780373197187.jpg'), - ('0689868278', 'When Lightning Strikes (1-800-Where-R-You)', 'https://images.isbndb.com/covers/82/76/9780689868276.jpg'), - ('0451202627', 'All Of Me: A Voluptuous Tale', 'https://images.isbndb.com/covers/26/28/9780451202628.jpg'), - ('1552095738', 'Trauma Junkie: Memoirs Of An Emergency Flight Nurse', 'https://images.isbndb.com/covers/57/37/9781552095737.jpg'), - ('0373250274', 'See Jane Date', 'https://images.isbndb.com/covers/02/71/9780373250271.jpg'), - ('0345469674', 'Girls'' Poker Night', 'https://images.isbndb.com/covers/96/70/9780345469670.jpg'), - ('0671023535', 'Prison Blues', 'https://images.isbndb.com/covers/35/39/9780671023539.jpg'), - ('0312966806', 'Tell Me Lies', 'https://images.isbndb.com/covers/68/05/9780312966805.jpg'), - ('0446692298', 'Fat Girls And Lawn Chairs', 'https://images.isbndb.com/covers/22/98/9780446692298.jpg'), - ('1573227161', 'Caucasia: A Novel', 'https://images.isbndb.com/covers/71/62/9781573227162.jpg'), - ('0505525496', 'Got A Hold On You', 'https://images.isbndb.com/covers/54/99/9780505525499.jpg'), - ('0842382852', 'Degrees Of Guilt: Tyrone''s Story', 'https://images.isbndb.com/covers/28/54/9780842382854.jpg'), - ('0842382836', 'Degrees Of Guilt: Miranda''s Story', 'https://images.isbndb.com/covers/28/30/9780842382830.jpg'), - ('0842382844', 'Degrees Of Guilt: Kyra''s Story', 'https://images.isbndb.com/covers/28/47/9780842382847.jpg'), - ('1591840414', 'Free Prize Inside: The Next Big Marketing Idea', 'https://images.isbndb.com/covers/04/11/9781591840411.jpg'), - ('0007106572', 'Guilty Creatures', 'https://images.isbndb.com/covers/65/78/9780007106578.jpg'), - ('1556615728', 'The Moon By Night (Cheney & Shiloh: The Inheritance #2)', 'https://images.isbndb.com/covers/57/26/9781556615726.jpg'), - ('0974757004', 'Ladies Choice', 'https://images.isbndb.com/covers/70/01/9780974757001.jpg'), - ('0060528125', 'Mary-Kate & Ashley Sweet 16 #6: My Best Friend''s Boyfriend: (My Best Friend''s Boyfriend) (Mary-Kate And Ashley Sweet 16)', 'https://images.isbndb.com/covers/81/26/9780060528126.jpg'), - ('0451188543', 'No Use Dying Over Spilled Milk: A Pennsylvania-Dutch Mystery With Recipes', 'https://images.isbndb.com/covers/85/40/9780451188540.jpg'), - ('1551667436', 'Strange Bedpersons (MIRA)', 'https://images.isbndb.com/covers/74/30/9781551667430.jpg'), - ('0312983484', 'Lead Me On', 'https://images.isbndb.com/covers/34/82/9780312983482.jpg'), - ('0375724990', 'Stuffed: Adventures Of A Restaurant Family', 'https://images.isbndb.com/covers/49/92/9780375724992.jpg'), - ('0060089296', 'Kiss Lonely Goodbye', 'https://images.isbndb.com/covers/92/90/9780060089290.jpg'), - ('0312984227', 'Room Service', 'https://images.isbndb.com/covers/42/29/9780312984229.jpg'), - ('1592680291', 'Harlem Sunset', 'https://images.isbndb.com/covers/02/90/9781592680290.jpg'), - ('1594140812', 'Becoming Maren', 'https://images.isbndb.com/covers/08/15/9781594140815.jpg'), - ('0446613053', 'The Crush', 'https://images.isbndb.com/covers/30/57/9780446613057.jpg'), - ('0380819651', 'Tiles And Tribulations (A Den Of Antiquity Mystery)', 'https://images.isbndb.com/covers/96/52/9780380819652.jpg'), - ('0451207475', 'The Chocolate Bear Burglary (Chocoholic Mysteries, No. 2)', 'https://images.isbndb.com/covers/74/70/9780451207470.jpg'), - ('0671735934', 'Honey Moon', 'https://images.isbndb.com/covers/59/37/9780671735937.jpg'), - ('075820230X', 'Chocolate Chip Cookie Murder (Hannah Swensen Mysteries)', 'https://images.isbndb.com/covers/23/07/9780758202307.jpg'), - ('055357258X', 'The Last Suppers (Goldy Culinary Mysteries, Book 4)', 'https://images.isbndb.com/covers/25/82/9780553572582.jpg'), - ('0425181839', 'A Tax-Deductible Death', 'https://images.isbndb.com/covers/18/36/9780425181836.jpg'), - ('0060525010', 'Motherhood Is Murder', 'https://images.isbndb.com/covers/50/19/9780060525019.jpg'), - ('0451207653', 'Living Large', 'https://images.isbndb.com/covers/76/54/9780451207654.jpg'), - ('0451192311', 'Eat, Drink And Be Wary (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/23/18/9780451192318.jpg'), - ('0440228921', 'The Giver', 'https://images.isbndb.com/covers/89/29/9780440228929.jpg'), - ('1575662450', 'Murder On The Glitter Box', 'https://images.isbndb.com/covers/24/59/9781575662459.jpg'), - ('0060176563', 'Rebel: The Life And Legend Of James Dean', 'https://images.isbndb.com/covers/65/63/9780060176563.jpg'), - ('1573222232', 'The Fruit Of Stone', 'https://images.isbndb.com/covers/22/35/9781573222235.jpg'), - ('0688177859', 'Ahab''s Wife: Or, The Star-Gazer: A Novel', 'https://images.isbndb.com/covers/78/50/9780688177850.jpg'), - ('0684868865', 'Boone''S Lick', 'https://images.isbndb.com/covers/88/68/9780684868868.jpg'), - ('0446607274', 'Angels Flight (Harry Bosch)', 'https://images.isbndb.com/covers/72/78/9780446607278.jpg'), - ('0486266842', 'The Turn Of The Screw (Dover Thrift Editions)', 'https://images.isbndb.com/covers/68/48/9780486266848.jpg'), - ('0679731806', 'The Professor''s House (Vintage Classics)', 'https://images.isbndb.com/covers/18/01/9780679731801.jpg'), - ('0897331575', 'Women Sleuths (Academy Mystery Novellas)', 'https://images.isbndb.com/covers/15/79/9780897331579.jpg'), - ('0553211439', 'A Connecticut Yankee In King Arthur''s Court (Bantam Classics)', 'https://images.isbndb.com/covers/14/36/9780553211436.jpg'), - ('0553296345', 'Zen In The Art Of Writing: Releasing The Creative Genius Within You', 'https://images.isbndb.com/covers/63/41/9780553296341.jpg'), - ('0441289886', 'The Glass Teat', 'https://images.isbndb.com/covers/98/82/9780441289882.jpg'), - ('0553573136', 'Couplehood', 'https://images.isbndb.com/covers/31/38/9780553573138.jpg'), - ('0771099843', 'Sunshine Sketches Of A Little Town (New Canadian Library)', 'https://images.isbndb.com/covers/98/47/9780771099847.jpg'), - ('0140440038', 'Sopocles: The Theban Plays: King Oedipus/Oedipus At Colonus/Antigone', 'https://images.isbndb.com/covers/00/34/9780140440034.jpg'), - ('0872201562', 'A Rulebook For Arguments', 'https://images.isbndb.com/covers/15/69/9780872201569.jpg'), - ('1577940040', 'Life In The Word: Teachings, Quotes, Personal Insights, And Humor From One Of Today''s Leading Ministers', 'https://images.isbndb.com/covers/00/43/9781577940043.jpg'), - ('1555171559', '10 Critical Keys For Highly Effective Mormon Families', 'https://images.isbndb.com/covers/15/51/9781555171551.jpg'), - ('1558505857', '365 TV-Free Activities You Can Do With Your Child', 'https://images.isbndb.com/covers/58/58/9781558505858.jpg'), - ('0385302312', 'Dragonfly In Amber (Outlander)', 'https://images.isbndb.com/covers/23/19/9780385302319.jpg'), - ('088494770X', 'Pillar Of Light: A Historical Novel (Work And The Glory)', 'https://images.isbndb.com/covers/77/07/9780884947707.jpg'), - ('0385302320', 'Voyager', 'https://images.isbndb.com/covers/23/26/9780385302326.jpg'), - ('0142437212', 'Complete Stories', 'https://images.isbndb.com/covers/72/16/9780142437216.jpg'), - ('0805063196', 'Complications: A Surgeon''s Notes On An Imperfect Science', 'https://images.isbndb.com/covers/31/96/9780805063196.jpg'), - ('0140075623', 'Stones For Ibarra (Contemporary American Fiction)', 'https://images.isbndb.com/covers/56/25/9780140075625.jpg'), - ('0743217713', 'Bad Girl Creek : A Novel', 'https://images.isbndb.com/covers/77/12/9780743217712.jpg'), - ('0609810103', 'Diary Of A Manhattan Call Girl: A Novel', 'https://images.isbndb.com/covers/01/01/9780609810101.jpg'), - ('0670886017', 'Kit''s Law', 'https://images.isbndb.com/covers/60/12/9780670886012.jpg'), - ('0060916338', 'House Made Of Dawn (Momaday)', 'https://images.isbndb.com/covers/63/36/9780060916336.jpg'), - ('0451204530', 'Code To Zero', 'https://images.isbndb.com/covers/45/30/9780451204530.jpg'), - ('0812562852', 'Chariot: Book Three Of The Millennium Quartet', 'https://images.isbndb.com/covers/28/59/9780812562859.jpg'), - ('0698116801', 'The Matchlock Gun', 'https://images.isbndb.com/covers/68/01/9780698116801.jpg'), - ('1858600006', 'The Only Planet Of Choice: Essential Briefings From Deep Space', 'https://images.isbndb.com/covers/00/00/9781858600000.jpg'), - ('0964374099', 'Jew Boy', 'https://images.isbndb.com/covers/40/96/9780964374096.jpg'), - ('0451205987', 'Wild At Heart', 'https://images.isbndb.com/covers/59/88/9780451205988.jpg'), - ('1591290902', 'The Bluebook Solution', 'https://images.isbndb.com/covers/09/02/9781591290902.jpg'), - ('0449211525', 'Sirens', 'https://images.isbndb.com/covers/15/26/9780449211526.jpg'), - ('0515101877', 'The Master Cure', 'https://images.isbndb.com/covers/18/74/9780515101874.jpg'), - ('0812522362', 'The Marilyn Tapes: A Novel', 'https://images.isbndb.com/covers/23/65/9780812522365.jpg'), - ('006098824X', 'Getting Over It', 'https://images.isbndb.com/covers/82/41/9780060988241.jpg'), - ('0812561880', 'The Protocol', 'https://images.isbndb.com/covers/18/83/9780812561883.jpg'), - ('0451203569', 'Daughter Of The Fifth Moon', 'https://images.isbndb.com/covers/35/64/9780451203564.jpg'), - ('0688111882', 'American Daughter Gone To War: On The Front Lines With An Army Nurse In Vietnam', 'https://images.isbndb.com/covers/18/85/9780688111885.jpg'), - ('0060505885', 'The Scandalous Summer Of Sissy LeBlanc: A Novel', 'https://images.isbndb.com/covers/58/82/9780060505882.jpg'), - ('0679401385', 'Mr. X. A Novel', 'https://images.isbndb.com/covers/13/84/9780679401384.jpg'), - ('0440213886', 'Echoes', 'https://images.isbndb.com/covers/38/88/9780440213888.jpg'), - ('0515116068', 'Hidden Riches', 'https://images.isbndb.com/covers/60/69/9780515116069.jpg'), - ('0679419691', 'Daughters Of Song', 'https://images.isbndb.com/covers/96/93/9780679419693.jpg'), - ('0743244710', 'White Doves At Morning', 'https://images.isbndb.com/covers/47/18/9780743244718.jpg'), - ('0425044890', 'Amateur Corpse/an', 'https://images.isbndb.com/covers/48/96/9780425044896.jpg'), - ('0140436669', 'The Inheritance (Penguin Classics)', 'https://images.isbndb.com/covers/66/62/9780140436662.jpg'), - ('0394742494', 'Stories', 'https://images.isbndb.com/covers/24/96/9780394742496.jpg'), - ('0670862215', 'Dead As A Dodo: A Homer Kelly Mystery', 'https://images.isbndb.com/covers/22/14/9780670862214.jpg'), - ('0670847100', 'The Shortest Day: Homer Kelly: Mystery At The Revels', 'https://images.isbndb.com/covers/71/05/9780670847105.jpg'), - ('0586068805', 'The Good Terrorist', 'https://images.isbndb.com/covers/88/09/9780586068809.jpg'), - ('0553259016', 'Summer Of My German Soldier', 'https://images.isbndb.com/covers/90/18/9780553259018.jpg'), - ('0670818577', 'WLT: A Radio Romance', 'https://images.isbndb.com/covers/85/70/9780670818570.jpg'), - ('0060910992', 'Babycakes', 'https://images.isbndb.com/covers/09/90/9780060910990.jpg'), - ('0060955716', 'Washington Square', 'https://images.isbndb.com/covers/57/17/9780060955717.jpg'), - ('0394462017', 'War Between The Tates', 'https://images.isbndb.com/covers/20/11/9780394462011.jpg'), - ('0811812693', 'Gluttony: Ample Tales Of Epicurean Excess', 'https://images.isbndb.com/covers/26/96/9780811812696.jpg'), - ('0393322203', 'A Relative Stranger: Stories', 'https://images.isbndb.com/covers/22/00/9780393322200.jpg'), - ('0030622093', 'A Stolen Past', 'https://images.isbndb.com/covers/20/90/9780030622090.jpg'), - ('0380404109', 'Jewel In The Crown', 'https://images.isbndb.com/covers/41/00/9780380404100.jpg'), - ('0060806419', 'Heat And Dust (Perennial Library)', 'https://images.isbndb.com/covers/64/15/9780060806415.jpg'), - ('158080036X', 'Particularly Cats', 'https://images.isbndb.com/covers/03/65/9781580800365.jpg'), - ('038517652X', 'The Normandie Affair', 'https://images.isbndb.com/covers/65/21/9780385176521.jpg'), - ('0671541900', 'A Man And Two Women: Stories (A Touchstone Book)', 'https://images.isbndb.com/covers/19/03/9780671541903.jpg'), - ('0312926294', 'The Carousel', 'https://images.isbndb.com/covers/62/98/9780312926298.jpg'), - ('1585790087', 'Another Self', 'https://images.isbndb.com/covers/00/81/9781585790081.jpg'), - ('0060805943', 'Jane And Prudence', 'https://images.isbndb.com/covers/59/44/9780060805944.jpg'), - ('0425089002', 'The Patriotic Murders', 'https://images.isbndb.com/covers/90/02/9780425089002.jpg'), - ('0345312791', 'The Silent Gondoliers: A Fable By S. Morgenstern', 'https://images.isbndb.com/covers/27/92/9780345312792.jpg'), - ('0394473361', 'The Naive And Sentimental Lover', 'https://images.isbndb.com/covers/33/69/9780394473369.jpg'), - ('0689107943', 'Tango November', 'https://images.isbndb.com/covers/79/48/9780689107948.jpg'), - ('0312532253', 'The Michaelmas Tree', 'https://images.isbndb.com/covers/22/53/9780312532253.jpg'), - ('0448416492', 'Ice Stars (All Aboard Reading. Station Stop 3)', 'https://images.isbndb.com/covers/64/96/9780448416496.jpg'), - ('0807554146', 'The Mystery On The Ice (Boxcar Children Special)', 'https://images.isbndb.com/covers/41/42/9780807554142.jpg'), - ('0525483357', 'Winnie Ille Pu (Latin Edition)', 'https://images.isbndb.com/covers/33/59/9780525483359.jpg'), - ('044048605X', 'Tennis Shoes', 'https://images.isbndb.com/covers/60/53/9780440486053.jpg'), - ('0399234616', 'The Hat', 'https://images.isbndb.com/covers/46/13/9780399234613.jpg'), - ('0679879242', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/92/44/9780679879244.jpg'), - ('0425057771', 'Phantoms', 'https://images.isbndb.com/covers/77/73/9780425057773.jpg'), - ('088776519X', 'Remember Me: A Search For Refuge In Wartime Britain', 'https://images.isbndb.com/covers/51/93/9780887765193.jpg'), - ('0451203054', 'Praying For Sleep', 'https://images.isbndb.com/covers/30/52/9780451203052.jpg'), - ('0451184734', 'Blood Relations', 'https://images.isbndb.com/covers/47/33/9780451184733.jpg'), - ('0316779989', 'Holidays On Ice: Stories', 'https://images.isbndb.com/covers/99/82/9780316779982.jpg'), - ('0671568183', 'The Late Child', 'https://images.isbndb.com/covers/81/84/9780671568184.jpg'), - ('0446603716', 'Hide And Seek', 'https://images.isbndb.com/covers/37/13/9780446603713.jpg'), - ('0380726289', 'Darkness, Take My Hand (Patrick Kenzie/Angela Gennaro Novels)', 'https://images.isbndb.com/covers/62/88/9780380726288.jpg'), - ('0440193613', 'Wanderlust', 'https://images.isbndb.com/covers/36/16/9780440193616.jpg'), - ('0679764895', 'Mr. Wilson''s Cabinet Of Wonder: Pronged Ants, Horned Humans, Mice On Toast, And Other Marvels Of Jurassic Techno Logy', 'https://images.isbndb.com/covers/48/92/9780679764892.jpg'), - ('0743418166', 'Good In Bed', 'https://images.isbndb.com/covers/81/64/9780743418164.jpg'), - ('0440235774', 'Looking Back', 'https://images.isbndb.com/covers/57/74/9780440235774.jpg'), - ('0061094404', 'Power Of A Woman', 'https://images.isbndb.com/covers/44/08/9780061094408.jpg'), - ('0515133418', 'Summer In Eclipse Bay', 'https://images.isbndb.com/covers/34/17/9780515133417.jpg'), - ('0743460529', 'Daddy''s Little Girl', 'https://images.isbndb.com/covers/05/21/9780743460521.jpg'), - ('0140386335', 'The Neverending Story', 'https://images.isbndb.com/covers/63/32/9780140386332.jpg'), - ('0373288891', 'Besieged (Harlequin Historical)', 'https://images.isbndb.com/covers/88/92/9780373288892.jpg'), - ('0373825013', 'Whirlwind (Tyler, Book 1)', 'https://images.isbndb.com/covers/50/11/9780373825011.jpg'), - ('0373825021', 'Bright Hopes (Welcome To Tyler, No. 2)', 'https://images.isbndb.com/covers/50/28/9780373825028.jpg'), - ('0449148408', 'False Prophet', 'https://images.isbndb.com/covers/84/02/9780449148402.jpg'), - ('0312957920', 'Scare Tactics', 'https://images.isbndb.com/covers/79/26/9780312957926.jpg'), - ('0345359321', 'Travels', 'https://images.isbndb.com/covers/93/22/9780345359322.jpg'), - ('0345377672', 'Body Count', 'https://images.isbndb.com/covers/76/78/9780345377678.jpg'), - ('0743216024', 'E.T.The Extra-Terrestrial: A Novel', 'https://images.isbndb.com/covers/60/29/9780743216029.jpg'), - ('2890379302', 'Le Cadeau Du Millionnaire', 'https://images.isbndb.com/covers/93/05/9782890379305.jpg'), - ('0140131612', 'Lake Wobegon Days', 'https://images.isbndb.com/covers/16/11/9780140131611.jpg'), - ('0741410060', 'Wake Up Barbara And Help Me Find This Snake', 'https://images.isbndb.com/covers/00/61/9780741410061.jpg'), - ('0521315441', 'Proust: Swann''s Way (Landmarks Of World Literature)', 'https://images.isbndb.com/covers/54/49/9780521315449.jpg'), - ('0741404540', 'What''s A Birthday Mama?', 'https://images.isbndb.com/covers/45/41/9780741404541.jpg'), - ('0446609951', 'The Letter Of The Law', 'https://images.isbndb.com/covers/99/51/9780446609951.jpg'), - ('0451157443', 'Carrie', 'https://images.isbndb.com/covers/74/47/9780451157447.jpg'), - ('1560300027', 'Review Book For Clep General Social Science Examination', 'https://images.isbndb.com/covers/00/21/9781560300021.jpg'), - ('0452275660', 'The Book Of Daniel', 'https://images.isbndb.com/covers/56/69/9780452275669.jpg'), - ('0060175680', 'Switcheroo: A Novel', 'https://images.isbndb.com/covers/56/89/9780060175689.jpg'), - ('0671867083', 'Remember Me', 'https://images.isbndb.com/covers/70/89/9780671867089.jpg'), - ('0446605360', 'Twanged (Regan Reilly Mysteries, No. 4)', 'https://images.isbndb.com/covers/53/66/9780446605366.jpg'), - ('0671741209', 'A Stranger Is Watching', 'https://images.isbndb.com/covers/12/04/9780671741204.jpg'), - ('0380790025', 'Death In Lovers'' Lane (Henrie O Mysteries)', 'https://images.isbndb.com/covers/00/29/9780380790029.jpg'), - ('0671880314', 'Schindler''s List', 'https://images.isbndb.com/covers/03/16/9780671880316.jpg'), - ('038550120X', 'A Painted House', 'https://images.isbndb.com/covers/12/00/9780385501200.jpg'), - ('0670860743', 'Bed And Breakfast', 'https://images.isbndb.com/covers/07/46/9780670860746.jpg'), - ('0451209486', 'Killer Hair: A Crime Of Fashion (Crime Of Fashion Mystery)', 'https://images.isbndb.com/covers/94/81/9780451209481.jpg'), - ('0446513067', 'The General''s Daughter', 'https://images.isbndb.com/covers/30/67/9780446513067.jpg'), - ('0312242220', 'Murder In Central Park: A Bill Donovan Mystery (Bill Donovan Mysteries)', 'https://images.isbndb.com/covers/22/20/9780312242220.jpg'), - ('0671665499', 'Life With Billy: Life With Billy', 'https://images.isbndb.com/covers/54/94/9780671665494.jpg'), - ('0789426323', 'The Starlight Princess And Other Princess Stories', 'https://images.isbndb.com/covers/63/21/9780789426321.jpg'), - ('0789202816', 'Mother And Daughter Tales (Abbeville Anthology)', 'https://images.isbndb.com/covers/28/19/9780789202819.jpg'), - ('0688172253', 'I''m Not In The Mood: What Every Woman Should Know About Improving Her Libido', 'https://images.isbndb.com/covers/22/51/9780688172251.jpg'), - ('0891091165', 'Celebrate The Seasons', 'https://images.isbndb.com/covers/11/65/9780891091165.jpg'), - ('0310918421', 'NIV Womens Devotional Bible 2', 'https://images.isbndb.com/covers/84/24/9780310918424.jpg'), - ('0789203928', 'Father And Daughter Tales (An Abbeville Anthology)', 'https://images.isbndb.com/covers/39/22/9780789203922.jpg'), - ('1562827979', 'The Super Coupon Shopping System: Ingenious New Ways To Save $$$$ On Every Shopping Bill', 'https://images.isbndb.com/covers/79/77/9781562827977.jpg'), - ('0806974109', 'Great Theme Parties For Children', 'https://images.isbndb.com/covers/41/01/9780806974101.jpg'), - ('0840732228', 'Food For The Hungry Heart: Daily Devotions For Overeaters (Serenity Meditation Series)', 'https://images.isbndb.com/covers/22/24/9780840732224.jpg'), - ('0891090665', 'Becoming A Woman Of Excellence', 'https://images.isbndb.com/covers/06/63/9780891090663.jpg'), - ('0896218643', 'A Murder Of Quality', 'https://images.isbndb.com/covers/86/42/9780896218642.jpg'), - ('0380977729', 'Sugarplum Dead (Death On Demand Mysteries, No. 12)', 'https://images.isbndb.com/covers/77/27/9780380977727.jpg'), - ('0380977737', 'Resort To Murder: A Henrie O Mystery', 'https://images.isbndb.com/covers/77/34/9780380977734.jpg'), - ('0849944767', 'The Oath', 'https://images.isbndb.com/covers/47/65/9780849944765.jpg'), - ('0440364574', 'No Language But A Cry (Laurel-Leaf Library)', 'https://images.isbndb.com/covers/45/73/9780440364573.jpg'), - ('0446394009', 'Rivethead: Tales From The Assembly Line', 'https://images.isbndb.com/covers/40/00/9780446394000.jpg'), - ('038549730X', 'The Vine Of Desire: A Novel', 'https://images.isbndb.com/covers/73/05/9780385497305.jpg'), - ('0446391581', 'A Whack On The Side Of The Head: How You Can Be More Creative', 'https://images.isbndb.com/covers/15/80/9780446391580.jpg'), - ('0812967240', 'It''s My F---ing Birthday: A Novel', 'https://images.isbndb.com/covers/72/41/9780812967241.jpg'), - ('0971995907', 'The Polygamist', 'https://images.isbndb.com/covers/59/01/9780971995901.jpg'), - ('1589820010', 'Hells Island', 'https://images.isbndb.com/covers/00/12/9781589820012.jpg'), - ('0679447164', 'Work Clothes (Chic Simple): Casual Dress For Serious Work (Chic Simple Guides)', 'https://images.isbndb.com/covers/71/60/9780679447160.jpg'), - ('0393007316', 'Worker In The Cane: A Puerto Rican Life History', 'https://images.isbndb.com/covers/73/12/9780393007312.jpg'), - ('0061096644', 'Underboss', 'https://images.isbndb.com/covers/66/48/9780061096648.jpg'), - ('0449907570', 'Heartbreak Handbook', 'https://images.isbndb.com/covers/75/73/9780449907573.jpg'), - ('0804105146', 'My Secret History', 'https://images.isbndb.com/covers/51/49/9780804105149.jpg'), - ('0451155815', 'The Would-be Widow (Signet)', 'https://images.isbndb.com/covers/58/18/9780451155818.jpg'), - ('1589820681', 'The Presents Of Angels', 'https://images.isbndb.com/covers/06/85/9781589820685.jpg'), - ('0971931429', 'How To Stay Married & Love It: Solving The Puzzle Of A SoulMate Marriage', 'https://images.isbndb.com/covers/14/28/9780971931428.jpg'), - ('0520082567', 'Religious Nationalism: Hindus And Muslims In India', 'https://images.isbndb.com/covers/25/64/9780520082564.jpg'), - ('1551665301', 'Book Club', 'https://images.isbndb.com/covers/53/06/9781551665306.jpg'), - ('0425151425', 'The Death Of A Dancing Fool (Berkley Prime Crime Series)', 'https://images.isbndb.com/covers/14/26/9780425151426.jpg'), - ('0553280074', 'Goodbye Doesn''t Mean Forever (A Bantam Starfire Book)', 'https://images.isbndb.com/covers/00/74/9780553280074.jpg'), - ('0064404773', 'Beauty: A Retelling Of The Story Of Beauty And The Beast', 'https://images.isbndb.com/covers/47/78/9780064404778.jpg'), - ('156382485X', 'Financing Your Business Made E-Z (Made E-Z Guides)', 'https://images.isbndb.com/covers/48/52/9781563824852.jpg'), - ('0879522593', 'Science And Health With Key To The Scriptures (Authorized, Trade Ed.)', 'https://images.isbndb.com/covers/25/99/9780879522599.jpg'), - ('0380756234', 'Night Storm', 'https://images.isbndb.com/covers/62/30/9780380756230.jpg'), - ('0446603856', 'The Enemy Within', 'https://images.isbndb.com/covers/38/50/9780446603850.jpg'), - ('0671885650', 'The TEN THOUSAND', 'https://images.isbndb.com/covers/56/56/9780671885656.jpg'), - ('0895296950', 'Lick The Sugar Habit', 'https://images.isbndb.com/covers/69/55/9780895296955.jpg'), - ('0684852047', 'Spending: A Novel', 'https://images.isbndb.com/covers/20/41/9780684852041.jpg'), - ('0671002821', 'Deep Water Passage: A Spiritual Journey At Midlife', 'https://images.isbndb.com/covers/28/24/9780671002824.jpg'), - ('1582430616', 'In Maremma: Life And A House In Southern Tuscany', 'https://images.isbndb.com/covers/06/14/9781582430614.jpg'), - ('0812589041', 'Ender''s Game', 'https://images.isbndb.com/covers/90/47/9780812589047.jpg'), - ('0060931752', 'The Way You Wear Your Hat: Frank Sinatra And The Lost Art Of Livin''', 'https://images.isbndb.com/covers/17/59/9780060931759.jpg'), - ('0966784219', 'Boomers Really Can Put Old On Hold', 'https://images.isbndb.com/covers/42/13/9780966784213.jpg'), - ('1931395004', 'Living In Shadows: How To Help The Stray Cat In Your Life (Without Adding To The Problem)', 'https://images.isbndb.com/covers/50/07/9781931395007.jpg'), - ('0670031895', 'I Should Be Extremely Happy In Your Company: A Novel Of Lewis And Clark (Lewis & Clark Expedition)', 'https://images.isbndb.com/covers/18/94/9780670031894.jpg'), - ('0452011574', 'Rebel Private: Front And Rear: Memoirs Of A Confederate Soldier', 'https://images.isbndb.com/covers/15/71/9780452011571.jpg'), - ('0451200985', 'French Impressions: The Adventures Of An American Family', 'https://images.isbndb.com/covers/09/83/9780451200983.jpg'), - ('0375505822', 'The Bay Of Angels: A Novel', 'https://images.isbndb.com/covers/58/29/9780375505829.jpg'), - ('0312288549', 'Cold Burial: A True Story Of Endurance And Disaster', 'https://images.isbndb.com/covers/85/49/9780312288549.jpg'), - ('0393039595', 'Loverboys: Stories', 'https://images.isbndb.com/covers/95/97/9780393039597.jpg'), - ('0571175686', 'Ed Wood', 'https://images.isbndb.com/covers/56/80/9780571175680.jpg'), - ('1588720020', 'Crossing Over: The Stories Behind The Stories', 'https://images.isbndb.com/covers/00/23/9781588720023.jpg'), - ('0316169226', 'The Cabal And Other Stories', 'https://images.isbndb.com/covers/92/26/9780316169226.jpg'), - ('0785814078', 'Cat Crimes Through Time', 'https://images.isbndb.com/covers/40/78/9780785814078.jpg'), - ('0345333853', 'Mists Of Avalon', 'https://images.isbndb.com/covers/38/58/9780345333858.jpg'), - ('0060937866', 'A Year At The Movies: One Man''s Filmgoing Odyssey', 'https://images.isbndb.com/covers/78/67/9780060937867.jpg'), - ('0060198125', 'Coastliners: A Novel', 'https://images.isbndb.com/covers/81/21/9780060198121.jpg'), - ('0525945830', 'Quakertown', 'https://images.isbndb.com/covers/58/33/9780525945833.jpg'), - ('0345452569', 'A Cold Heart (Alex Delaware)', 'https://images.isbndb.com/covers/25/66/9780345452566.jpg'), - ('1582343586', 'Hey Nostradamus!: A Novel (Coupland, Douglas)', 'https://images.isbndb.com/covers/35/87/9781582343587.jpg'), - ('0020404808', 'O Ye Jigs & Juleps!', 'https://images.isbndb.com/covers/48/04/9780020404804.jpg'), - ('0425106403', 'Replay', 'https://images.isbndb.com/covers/64/02/9780425106402.jpg'), - ('0597145806', 'VENTURE STORES, INC.: International Competitive Benchmarks And Financial Gap Analysis (Financial Performance Series)', 'https://images.isbndb.com/covers/58/03/9780597145803.jpg'), - ('0061091464', 'The Thief Of Always', 'https://images.isbndb.com/covers/14/69/9780061091469.jpg'), - ('0671015311', 'To Shield The Queen (Mystery At Queen Elizabeth I''s Court)', 'https://images.isbndb.com/covers/53/12/9780671015312.jpg'), - ('0912670096', 'The Yellow Wallpaper (Feminist Press Reprint No. 3)', 'https://images.isbndb.com/covers/00/96/9780912670096.jpg'), - ('0385497520', 'The Child In Time', 'https://images.isbndb.com/covers/75/27/9780385497527.jpg'), - ('0312151144', 'Dreamhouse', 'https://images.isbndb.com/covers/11/40/9780312151140.jpg'), - ('0743203968', 'The Body Artist: A Novel', 'https://images.isbndb.com/covers/39/68/9780743203968.jpg'), - ('0385247958', '1001 Things Everyone Should Know About Science', 'https://images.isbndb.com/covers/79/55/9780385247955.jpg'), - ('0486284670', 'A Room With A View (Unabridged) (Dover Thrift Editions)', 'https://images.isbndb.com/covers/46/75/9780486284675.jpg'), - ('0375701710', 'The New Life', 'https://images.isbndb.com/covers/17/19/9780375701719.jpg'), - ('0670825379', 'The Satanic Verses', 'https://images.isbndb.com/covers/53/70/9780670825370.jpg'), - ('0449217191', 'The Edge', 'https://images.isbndb.com/covers/71/91/9780449217191.jpg'), - ('1558611584', 'The Yellow Wall-Paper', 'https://images.isbndb.com/covers/15/80/9781558611580.jpg'), - ('0151009988', 'Mrs. Dalloway', 'https://images.isbndb.com/covers/99/85/9780151009985.jpg'), - ('0671788574', 'Foolscap', 'https://images.isbndb.com/covers/85/75/9780671788575.jpg'), - ('0440127793', 'Galapagos', 'https://images.isbndb.com/covers/77/96/9780440127796.jpg'), - ('0156106809', 'The Baron In The Trees', 'https://images.isbndb.com/covers/68/01/9780156106801.jpg'), - ('0765108674', 'Politically Correct, The Ultimate Storybook: Politically Correct Bedtime Stories, Once Upon A More Enlightened Time, And Politically Correct Holiday Stories', 'https://images.isbndb.com/covers/86/78/9780765108678.jpg'), - ('0679724699', 'The History Of Sexuality, Vol. 1: An Introduction', 'https://images.isbndb.com/covers/46/98/9780679724698.jpg'), - ('014230218X', 'The Dreaming Place', 'https://images.isbndb.com/covers/21/87/9780142302187.jpg'), - ('0449212297', 'Queen''s Confession', 'https://images.isbndb.com/covers/22/95/9780449212295.jpg'), - ('0571199895', 'Sister Revolutions: French Lightning, American Light', 'https://images.isbndb.com/covers/98/91/9780571199891.jpg'), - ('0141304235', 'The Case Of The Measled Cowboy (Hank The Cowdog, No. 33)', 'https://images.isbndb.com/covers/42/36/9780141304236.jpg'), - ('0312863934', 'Yarrow', 'https://images.isbndb.com/covers/39/37/9780312863937.jpg'), - ('0385468873', 'Poet And Dancer', 'https://images.isbndb.com/covers/88/79/9780385468879.jpg'), - ('0385502532', 'Drowning Ruth', 'https://images.isbndb.com/covers/25/35/9780385502535.jpg'), - ('0060928034', 'Unlocking The Air: Stories', 'https://images.isbndb.com/covers/80/32/9780060928032.jpg'), - ('0140252991', 'The Frog', 'https://images.isbndb.com/covers/29/96/9780140252996.jpg'), - ('0449002594', 'Seven Weeks To Sobriety: The Proven Program To Fight Alcoholism Through Nutrition', 'https://images.isbndb.com/covers/25/99/9780449002599.jpg'), - ('0140286527', 'The Diet Cure', 'https://images.isbndb.com/covers/65/26/9780140286526.jpg'), - ('0743236742', 'The Ultimate Weight Solution: The 7 Keys To Weight Loss Freedom', 'https://images.isbndb.com/covers/67/44/9780743236744.jpg'), - ('0399151745', 'The Paid Companion', 'https://images.isbndb.com/covers/17/43/9780399151743.jpg'), - ('1400060737', 'The Birth Of Venus', 'https://images.isbndb.com/covers/07/33/9781400060733.jpg'), - ('0060520612', 'The Proper Care And Feeding Of Husbands', 'https://images.isbndb.com/covers/06/18/9780060520618.jpg'), - ('0375413596', 'The White', 'https://images.isbndb.com/covers/35/99/9780375413599.jpg'), - ('034543739X', 'Until The Real Thing Comes Along (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/73/96/9780345437396.jpg'), - ('0553268937', 'The Water Is Wide', 'https://images.isbndb.com/covers/89/35/9780553268935.jpg'), - ('0060931957', 'The Odyssey Of Homer', 'https://images.isbndb.com/covers/19/57/9780060931957.jpg'), - ('0060192704', 'Beauty Fades, Dumb Is Forever: The Making Of A Happy Woman', 'https://images.isbndb.com/covers/27/09/9780060192709.jpg'), - ('0890877033', 'Living Juicy: Daily Morsels For Your Creative Soul', 'https://images.isbndb.com/covers/70/36/9780890877036.jpg'), - ('0684835975', 'We''ll Meet Again', 'https://images.isbndb.com/covers/59/76/9780684835976.jpg'), - ('0062516981', 'Son Of A Preacher Man: My Search For Grace In The Shadows', 'https://images.isbndb.com/covers/69/85/9780062516985.jpg'), - ('0380722704', 'Charms For The Easy Life', 'https://images.isbndb.com/covers/27/09/9780380722709.jpg'), - ('096533192X', 'The Secret Life Of Bees - Novel', 'https://images.isbndb.com/covers/19/20/9780965331920.jpg'), - ('0553114271', 'Scarlatti Inheritance', 'https://images.isbndb.com/covers/42/70/9780553114270.jpg'), - ('0671671499', 'A Twist In The Tale', 'https://images.isbndb.com/covers/14/95/9780671671495.jpg'), - ('0425123456', 'Frequent Flyer', 'https://images.isbndb.com/covers/34/54/9780425123454.jpg'), - ('0312957882', 'The Edge Of The City', 'https://images.isbndb.com/covers/78/89/9780312957889.jpg'), - ('0671725955', 'Perfume', 'https://images.isbndb.com/covers/59/52/9780671725952.jpg'), - ('0553263226', 'The Bourne Supremacy (Bourne Trilogy, Book 2)', 'https://images.isbndb.com/covers/32/20/9780553263220.jpg'), - ('0671525425', 'HEAVEN', 'https://images.isbndb.com/covers/54/22/9780671525422.jpg'), - ('0671542745', 'When The Snow Comes, They Will Take You Away', 'https://images.isbndb.com/covers/27/40/9780671542740.jpg'), - ('0671507397', 'Bonecrack', 'https://images.isbndb.com/covers/73/98/9780671507398.jpg'), - ('0451124685', 'Touch The Devil', 'https://images.isbndb.com/covers/46/85/9780451124685.jpg'), - ('0373194072', 'Wishes Waltzes And A Storybook Wedding (Do You Take This Stranger?) (Harlequin Romance)', 'https://images.isbndb.com/covers/40/70/9780373194070.jpg'), - ('0373218397', 'Summer Pleasures', 'https://images.isbndb.com/covers/83/94/9780373218394.jpg'), - ('0373441614', 'Cooking Up Trouble / Kiss The Cook', 'https://images.isbndb.com/covers/16/17/9780373441617.jpg'), - ('050552533X', 'Traveler (Wildside Romance)', 'https://images.isbndb.com/covers/53/38/9780505525338.jpg'), - ('0140257349', 'Haunted Places: The National Directory: Ghostly Abodes, Sacred Sites, UFO Landings And Other Supernatural Locations', 'https://images.isbndb.com/covers/73/42/9780140257342.jpg'), - ('0060504137', 'The Color Of Death', 'https://images.isbndb.com/covers/41/37/9780060504137.jpg'), - ('1558530983', 'Aunt Bee''s Mayberry Cookbook', 'https://images.isbndb.com/covers/09/80/9781558530980.jpg'), - ('0758205600', 'Return To Me', 'https://images.isbndb.com/covers/56/05/9780758205605.jpg'), - ('0345381718', 'Wildblossom', 'https://images.isbndb.com/covers/17/12/9780345381712.jpg'), - ('0843941987', 'Jake (The Cowboys)', 'https://images.isbndb.com/covers/19/82/9780843941982.jpg'), - ('082173718X', 'Caress Of Fire', 'https://images.isbndb.com/covers/71/87/9780821737187.jpg'), - ('0843941812', 'Encantadora', 'https://images.isbndb.com/covers/18/14/9780843941814.jpg'), - ('0821738453', 'Texas Touch', 'https://images.isbndb.com/covers/84/50/9780821738450.jpg'), - ('0821754866', 'The Mountain Rose', 'https://images.isbndb.com/covers/48/63/9780821754863.jpg'), - ('0373290160', 'Runaway (Harlequin Historical, 416)', 'https://images.isbndb.com/covers/01/61/9780373290161.jpg'), - ('0061084751', 'One Lonely Night', 'https://images.isbndb.com/covers/47/51/9780061084751.jpg'), - ('0821758683', 'Joseph''s Bride', 'https://images.isbndb.com/covers/86/87/9780821758687.jpg'), - ('082172679X', 'Tender Betrayal (Zebra Historical Romance)', 'https://images.isbndb.com/covers/67/92/9780821726792.jpg'), - ('0451405285', 'Dangerous Angel (Topaz Historical Romances)', 'https://images.isbndb.com/covers/52/89/9780451405289.jpg'), - ('0380785617', 'Heart Breaker', 'https://images.isbndb.com/covers/56/12/9780380785612.jpg'), - ('0380763435', 'Devil''s Delight', 'https://images.isbndb.com/covers/34/36/9780380763436.jpg'), - ('0380782529', 'A Tough Man''s Woman (Tough Man Series , No 3)', 'https://images.isbndb.com/covers/25/29/9780380782529.jpg'), - ('0312955057', 'The Bridled Groom', 'https://images.isbndb.com/covers/50/52/9780312955052.jpg'), - ('0140140859', 'Granta 49: Money', 'https://images.isbndb.com/covers/08/59/9780140140859.jpg'), - ('0385418213', 'The Beast, The Eunuch, And The Glass-Eyed Child: Television In The 80''s And Beyond', 'https://images.isbndb.com/covers/82/18/9780385418218.jpg'), - ('0060934425', 'The Binding Chair: Or, A Visit From The Foot Emancipation Society', 'https://images.isbndb.com/covers/44/22/9780060934422.jpg'), - ('0671631985', 'Teach Your Child To Read In 100 Easy Lessons', 'https://images.isbndb.com/covers/19/87/9780671631987.jpg'), - ('0671027409', 'The Stargazer', 'https://images.isbndb.com/covers/74/07/9780671027407.jpg'), - ('0671703617', 'Monkeys', 'https://images.isbndb.com/covers/36/15/9780671703615.jpg'), - ('1566190304', 'Collected Poems Of Emily Dickinson', 'https://images.isbndb.com/covers/03/05/9781566190305.jpg'), - ('0425179885', 'The Devil''s Code (Kidd)', 'https://images.isbndb.com/covers/98/88/9780425179888.jpg'), - ('0670883514', 'Jessica', 'https://images.isbndb.com/covers/35/16/9780670883516.jpg'), - ('0395798655', 'The Best American Short Stories 1997', 'https://images.isbndb.com/covers/86/52/9780395798652.jpg'), - ('0812578902', 'The Velveteen Rabbit Or How Toys Become Real', 'https://images.isbndb.com/covers/89/04/9780812578904.jpg'), - ('0020442203', 'The Lion, The Witch, And The Wardrobe', 'https://images.isbndb.com/covers/22/02/9780020442202.jpg'), - ('0553211374', 'Persuasion (Bantam Classic)', 'https://images.isbndb.com/covers/13/75/9780553211375.jpg'), - ('0140150706', 'The Portable Jung (Portable Library)', 'https://images.isbndb.com/covers/07/04/9780140150704.jpg'), - ('0553204572', 'All Things Wise And Wonderful', 'https://images.isbndb.com/covers/45/75/9780553204575.jpg'), - ('0425175111', 'A Stitch In Time (Needlecraft Mystery)', 'https://images.isbndb.com/covers/51/18/9780425175118.jpg'), - ('0671001132', 'Dead By Sunset', 'https://images.isbndb.com/covers/11/31/9780671001131.jpg'), - ('0671793535', 'A Rose For Her Grave & Other True Cases (Ann Rule''s Crime Files)', 'https://images.isbndb.com/covers/35/31/9780671793531.jpg'), - ('0671868691', 'Bitter Harvest', 'https://images.isbndb.com/covers/86/97/9780671868697.jpg'), - ('0671793543', 'You Belong To Me And Other True Cases (Ann Rule''s Crime Files: Vol. 2)', 'https://images.isbndb.com/covers/35/48/9780671793548.jpg'), - ('0671025341', 'A Rage To Kill And Other True Cases: Anne Rule''s Crime Files, Vol. 6 (Ann Rule''s Crime Files)', 'https://images.isbndb.com/covers/53/42/9780671025342.jpg'), - ('0375713484', 'Confess, Fletch', 'https://images.isbndb.com/covers/34/84/9780375713484.jpg'), - ('0812572122', 'A Stir Of Echoes', 'https://images.isbndb.com/covers/21/24/9780812572124.jpg'), - ('0762102543', 'Presumed Innocent', 'https://images.isbndb.com/covers/25/49/9780762102549.jpg'), - ('0446601977', 'Parable Of The Sower', 'https://images.isbndb.com/covers/19/79/9780446601979.jpg'), - ('0393307050', 'Master And Commander', 'https://images.isbndb.com/covers/70/54/9780393307054.jpg'), - ('0879735783', 'John Paul II''s Book Of Mary', 'https://images.isbndb.com/covers/57/84/9780879735784.jpg'), - ('0812550579', '7 Steps To Midnight', 'https://images.isbndb.com/covers/05/73/9780812550573.jpg'), - ('0672320967', 'XML Internationalization And Localization', 'https://images.isbndb.com/covers/09/65/9780672320965.jpg'), - ('0132267055', 'SGML: The Billion Dollar Secret', 'https://images.isbndb.com/covers/70/52/9780132267052.jpg'), - ('0773761969', 'A Bawdy Language: How A Second-Rate Language Slept Its Way To The Top', 'https://images.isbndb.com/covers/19/64/9780773761964.jpg'), - ('0452282934', 'Backpack', 'https://images.isbndb.com/covers/29/33/9780452282933.jpg'), - ('0451203526', 'The Mike Hammer Collection Volume 1', 'https://images.isbndb.com/covers/35/26/9780451203526.jpg'), - ('0316289124', 'Mr. Midshipman Hornblower (Hornblower Saga)', 'https://images.isbndb.com/covers/91/22/9780316289122.jpg'), - ('0743474724', 'Psycho II', 'https://images.isbndb.com/covers/47/26/9780743474726.jpg'), - ('0679722637', 'The Thin Man', 'https://images.isbndb.com/covers/26/32/9780679722632.jpg'), - ('0198607199', 'Einstein''s Luck: The Truth Behind Some Of The Greatest Scientific Discoveries', 'https://images.isbndb.com/covers/71/99/9780198607199.jpg'), - ('188455010X', 'Mathematical Scandals', 'https://images.isbndb.com/covers/01/02/9781884550102.jpg'), - ('0804109192', 'Sacrifice', 'https://images.isbndb.com/covers/91/92/9780804109192.jpg'), - ('0812548116', 'Now You See It . . .', 'https://images.isbndb.com/covers/81/12/9780812548112.jpg'), - ('0375414053', 'I Don''t Know How She Does It: The Life Of Kate Reddy, Working Mother', 'https://images.isbndb.com/covers/40/53/9780375414053.jpg'), - ('1400046610', 'Slander: Liberal Lies About The American Right', 'https://images.isbndb.com/covers/66/14/9781400046614.jpg'), - ('0312868855', 'Hell House', 'https://images.isbndb.com/covers/88/57/9780312868857.jpg'), - ('0812519329', 'Psycho', 'https://images.isbndb.com/covers/93/27/9780812519327.jpg'), - ('0446526665', 'The Up And Comer', 'https://images.isbndb.com/covers/66/61/9780446526661.jpg'), - ('1568655819', 'A Canticle For Leibowitz', 'https://images.isbndb.com/covers/58/19/9781568655819.jpg'), - ('0441001971', 'Circus Of The Damned (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/19/72/9780441001972.jpg'), - ('0684810395', 'Pretend You Don''t See Her', 'https://images.isbndb.com/covers/03/93/9780684810393.jpg'), - ('0399143874', 'Homeport', 'https://images.isbndb.com/covers/38/78/9780399143878.jpg'), - ('0070064601', 'Family: The Ties That Bind And Gag!', 'https://images.isbndb.com/covers/46/07/9780070064607.jpg'), - ('0373272820', 'The Perfect Target (Silhouette Intimate Moments No. 1212)', 'https://images.isbndb.com/covers/28/22/9780373272822.jpg'), - ('0373218117', 'Broken Silence (Family Secrets)', 'https://images.isbndb.com/covers/81/10/9780373218110.jpg'), - ('0373711050', 'The Healer: Deep In The Heart (Harlequin Superromance No. 1105)', 'https://images.isbndb.com/covers/10/55/9780373711055.jpg'), - ('0373711409', 'Taking A Chance : Under One Roof (Harlequin Superromance No. 1140)', 'https://images.isbndb.com/covers/14/06/9780373711406.jpg'), - ('0505524430', 'Lord Of The Mist', 'https://images.isbndb.com/covers/44/30/9780505524430.jpg'), - ('0373194919', 'His Special Delivery (Harlequin Romance)', 'https://images.isbndb.com/covers/49/19/9780373194919.jpg'), - ('0373227205', 'Sarah''s Secrets (Harlequin Intrigue #720)', 'https://images.isbndb.com/covers/72/04/9780373227204.jpg'), - ('0373218419', 'Blithe Images', 'https://images.isbndb.com/covers/84/17/9780373218417.jpg'), - ('0440222842', 'Five Days In Paris', 'https://images.isbndb.com/covers/28/42/9780440222842.jpg'), - ('0373272383', 'Love Under Fire (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/23/89/9780373272389.jpg'), - ('0373194714', 'Princess''S Proposal (The Carramer Crown) (Silhouette Romance)', 'https://images.isbndb.com/covers/47/11/9780373194711.jpg'), - ('0399141227', 'Montana Sky', 'https://images.isbndb.com/covers/12/25/9780399141225.jpg'), - ('3426619342', 'Sag Luder Zu Mir: Gute Mädchen Sagen Danke Schön, Böse Flüstern 1000 Heiße Worte', 'https://images.isbndb.com/covers/93/46/9783426619346.jpg'), - ('3426624680', 'Warum Männer So Schnell Kommen Und Frauen Nur So Tun Als Ob: Eine Gebrauchsanweisung Für Das Andere Geschlecht', 'https://images.isbndb.com/covers/46/85/9783426624685.jpg'), - ('3426273098', 'Der Weg Der Kriegerin', 'https://images.isbndb.com/covers/30/98/9783426273098.jpg'), - ('3810505153', 'Gute Mädchen Kommen In Den Himmel, Böse überall Hin: Warum Bravsein Uns Nicht Weiterbringt', 'https://images.isbndb.com/covers/51/56/9783810505156.jpg'), - ('3499134039', 'Schade, Daß Du Nicht Tot Bist', 'https://images.isbndb.com/covers/40/36/9783499134036.jpg'), - ('3518370081', 'Memoiren, Gefunden In Der Badewanne (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/00/87/9783518370087.jpg'), - ('3548359698', 'Warum Männer Nicht Zuhören Und Frauen Schlecht Einparken: Ganz Natürliche Erklärungen Für Eigentlich Unerklärliche Schwächen', 'https://images.isbndb.com/covers/96/94/9783548359694.jpg'), - ('0553379011', 'The Story Of B', 'https://images.isbndb.com/covers/90/13/9780553379013.jpg'), - ('0385319851', 'At Weddings And Wakes', 'https://images.isbndb.com/covers/98/50/9780385319850.jpg'), - ('0060958308', 'The Assistant (Perennial Classics)', 'https://images.isbndb.com/covers/83/05/9780060958305.jpg'), - ('0440418321', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/83/20/9780440418320.jpg'), - ('0316789976', 'The Weight Of Water', 'https://images.isbndb.com/covers/99/74/9780316789974.jpg'), - ('0394525280', 'World''s Fair', 'https://images.isbndb.com/covers/52/80/9780394525280.jpg'), - ('0020433115', 'Just One Friend', 'https://images.isbndb.com/covers/31/18/9780020433118.jpg'), - ('0671733397', 'Eyeballs For Breakfast', 'https://images.isbndb.com/covers/33/91/9780671733391.jpg'), - ('1568360428', 'The Delany Sisters'' Book Of Everyday Wisdom', 'https://images.isbndb.com/covers/04/23/9781568360423.jpg'), - ('0671519816', 'Inca Gold (Clive Cussler)', 'https://images.isbndb.com/covers/98/10/9780671519810.jpg'), - ('042518109X', 'Whispers', 'https://images.isbndb.com/covers/10/96/9780425181096.jpg'), - ('0061097861', 'Hunting Badger (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/78/67/9780061097867.jpg'), - ('0374513112', 'The Shackle', 'https://images.isbndb.com/covers/31/15/9780374513115.jpg'), - ('0446609145', 'Void Moon', 'https://images.isbndb.com/covers/91/42/9780446609142.jpg'), - ('0553575406', 'Murder On The Prowl', 'https://images.isbndb.com/covers/54/08/9780553575408.jpg'), - ('0380797631', 'Last Days Of Summer', 'https://images.isbndb.com/covers/76/39/9780380797639.jpg'), - ('0140161171', 'On The Side Of The Angels (Virago Modern Classics)', 'https://images.isbndb.com/covers/11/75/9780140161175.jpg'), - ('0141304677', 'James And The Giant Peach', 'https://images.isbndb.com/covers/46/70/9780141304670.jpg'), - ('0553213237', 'A Room With A View (Bantam Classics)', 'https://images.isbndb.com/covers/32/32/9780553213232.jpg'), - ('076791175X', 'Funny Letters From Famous People', 'https://images.isbndb.com/covers/17/57/9780767911757.jpg'), - ('0679433740', 'Paradise', 'https://images.isbndb.com/covers/37/43/9780679433743.jpg'), - ('0060501170', 'I''ll Take You There: A Novel', 'https://images.isbndb.com/covers/11/74/9780060501174.jpg'), - ('0375703063', 'A Virtuous Woman (Oprah''s Book Club)', 'https://images.isbndb.com/covers/30/65/9780375703065.jpg'), - ('0345343697', 'Off For The Sweet Hereafter', 'https://images.isbndb.com/covers/36/97/9780345343697.jpg'), - ('0838434762', 'Horizontes: Cultura Y Literatura (Spanish Edition)', 'https://images.isbndb.com/covers/47/65/9780838434765.jpg'), - ('0838434754', 'Horizontes: Gramatica Y Conversacion', 'https://images.isbndb.com/covers/47/58/9780838434758.jpg'), - ('0136155596', 'Appleton-Cuyas Spanish English/English Spanish Dictionary', 'https://images.isbndb.com/covers/55/91/9780136155591.jpg'), - ('0553351672', 'Doomsday Book', 'https://images.isbndb.com/covers/16/75/9780553351675.jpg'), - ('0140065407', 'Imaginary Crimes (The Penguin Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/54/04/9780140065404.jpg'), - ('0449244288', 'Not A Penny More, Not A Penny Less', 'https://images.isbndb.com/covers/42/89/9780449244289.jpg'), - ('1573222127', 'Miracle At St. Anna', 'https://images.isbndb.com/covers/21/29/9781573222129.jpg'), - ('0451523326', 'Jane Eyre (Signet Classics)', 'https://images.isbndb.com/covers/33/27/9780451523327.jpg'), - ('3492224466', 'Lexikon Der Populären Irrtümer', 'https://images.isbndb.com/covers/44/68/9783492224468.jpg'), - ('0140434003', 'Jane Eyre (Penguin Classics)', 'https://images.isbndb.com/covers/40/02/9780140434002.jpg'), - ('0756401100', 'Sorcery Rising (Fool''s Gold, Book 1)', 'https://images.isbndb.com/covers/11/08/9780756401108.jpg'), - ('038079439X', 'Expendable (League Of Peoples, Bk. 1)', 'https://images.isbndb.com/covers/43/93/9780380794393.jpg'), - ('0553577905', 'Windhaven', 'https://images.isbndb.com/covers/79/07/9780553577907.jpg'), - ('0451402391', 'The Search For The Green River Killer', 'https://images.isbndb.com/covers/23/94/9780451402394.jpg'), - ('0395877334', 'The Lost Language Of Cranes', 'https://images.isbndb.com/covers/73/33/9780395877333.jpg'), - ('274670238X', 'Cousins Par Alliance : Les Allemands En Notre Miroir', 'https://images.isbndb.com/covers/23/87/9782746702387.jpg'), - ('084770176X', 'La Segunda Hija (Spanish Edition)', 'https://images.isbndb.com/covers/17/66/9780847701766.jpg'), - ('0671028820', 'Celtika (Merlin Codex, Book 1)', 'https://images.isbndb.com/covers/88/24/9780671028824.jpg'), - ('2070404722', 'Prisonniers Du Paradis', 'https://images.isbndb.com/covers/47/28/9782070404728.jpg'), - ('2070415066', 'Geai', 'https://images.isbndb.com/covers/50/69/9782070415069.jpg'), - ('2841722171', 'Après-demains : Cent Vues Imprenables Sur Le Futur', 'https://images.isbndb.com/covers/21/74/9782841722174.jpg'), - ('2266091328', 'Le Cercle Des Loups', 'https://images.isbndb.com/covers/13/29/9782266091329.jpg'), - ('2845950470', 'Poésies', 'https://images.isbndb.com/covers/04/74/9782845950474.jpg'), - ('0671447807', 'Tales Of Power', 'https://images.isbndb.com/covers/78/09/9780671447809.jpg'), - ('9684113404', 'Movimiento Perpetuo (Spanish Edition)', 'https://images.isbndb.com/covers/34/04/9789684113404.jpg'), - ('0679409041', 'Queen Of The Turtle Derby And Other Southern Phenomena', 'https://images.isbndb.com/covers/90/45/9780679409045.jpg'), - ('0316782653', 'The Dangerous Husband: A Novel', 'https://images.isbndb.com/covers/26/54/9780316782654.jpg'), - ('0525945814', 'Falling Angels: A Novel', 'https://images.isbndb.com/covers/58/19/9780525945819.jpg'), - ('0140141499', 'The Drowning Room', 'https://images.isbndb.com/covers/14/98/9780140141498.jpg'), - ('0684870053', 'In The Gloaming: Stories', 'https://images.isbndb.com/covers/00/52/9780684870052.jpg'), - ('0060934913', 'Kitchen Confidential: Adventures In The Culinary Underbelly', 'https://images.isbndb.com/covers/49/10/9780060934910.jpg'), - ('0375814116', 'Pure Dead Wicked', 'https://images.isbndb.com/covers/41/12/9780375814112.jpg'), - ('0899193625', 'The Beans Of Egypt, Maine', 'https://images.isbndb.com/covers/36/25/9780899193625.jpg'), - ('0060974486', 'Immortality', 'https://images.isbndb.com/covers/44/80/9780060974480.jpg'), - ('0679736042', 'Toujours Provence', 'https://images.isbndb.com/covers/60/42/9780679736042.jpg'), - ('0679441247', 'Encore Provence', 'https://images.isbndb.com/covers/12/43/9780679441243.jpg'), - ('1558177604', 'The Mutilators: From The Files Of True Detective Magazine (Pinnacle True Crime)', 'https://images.isbndb.com/covers/76/04/9781558177604.jpg'), - ('0156005891', 'Eden Close', 'https://images.isbndb.com/covers/58/90/9780156005890.jpg'), - ('084395258X', 'They Wear What Under Their Kilts?', 'https://images.isbndb.com/covers/25/82/9780843952582.jpg'), - ('076790592X', 'Tuesdays With Morrie: An Old Man, A Young Man, And Life''s Greatest Lesson', 'https://images.isbndb.com/covers/59/23/9780767905923.jpg'), - ('0394711920', 'Appointment In Samarra', 'https://images.isbndb.com/covers/19/28/9780394711928.jpg'), - ('0618526412', 'The Heart Is A Lonely Hunter (Oprah''s Book Club)', 'https://images.isbndb.com/covers/64/13/9780618526413.jpg'), - ('0380815591', 'The Mermaids Singing', 'https://images.isbndb.com/covers/55/93/9780380815593.jpg'), - ('0060652934', 'The Screwtape Letters', 'https://images.isbndb.com/covers/29/37/9780060652937.jpg'), - ('1841953814', '69 Things To Do With A Dead Princess', 'https://images.isbndb.com/covers/38/16/9781841953816.jpg'), - ('1582341427', 'The Heart Is Deceitful Above All Things', 'https://images.isbndb.com/covers/14/22/9781582341422.jpg'), - ('0375709231', 'Observatory Mansions: A Novel', 'https://images.isbndb.com/covers/92/34/9780375709234.jpg'), - ('0688174035', 'More Than You Know: A Novel', 'https://images.isbndb.com/covers/40/33/9780688174033.jpg'), - ('0618246967', 'The Best American Nonrequired Reading 2003 (The Best American Series)', 'https://images.isbndb.com/covers/69/60/9780618246960.jpg'), - ('0758206135', 'Liar, Liar', 'https://images.isbndb.com/covers/61/38/9780758206138.jpg'), - ('0763617229', 'The Tale Of Despereaux: Being The Story Of A Mouse, A Princess, Some Soup, And A Spool Of Thread', 'https://images.isbndb.com/covers/72/26/9780763617226.jpg'), - ('0670032891', 'The Well Of Lost Plots: A Thursday Next Novel', 'https://images.isbndb.com/covers/28/91/9780670032891.jpg'), - ('068480445X', 'The Short Stories Of F. Scott Fitzgerald: A New Collection', 'https://images.isbndb.com/covers/44/53/9780684804453.jpg'), - ('1931520003', 'Stranger Things Happen: Stories', 'https://images.isbndb.com/covers/00/03/9781931520003.jpg'), - ('0595149782', 'Runaways: America''s Lost Youth', 'https://images.isbndb.com/covers/97/80/9780595149780.jpg'), - ('0595193021', 'The Man Who Loved Funerals', 'https://images.isbndb.com/covers/30/28/9780595193028.jpg'), - ('0967986508', 'Mother Teresa, Called To Love', 'https://images.isbndb.com/covers/65/00/9780967986500.jpg'), - ('0449216411', 'Legacy', 'https://images.isbndb.com/covers/64/15/9780449216415.jpg'), - ('0330319477', 'Toujours Provence', 'https://images.isbndb.com/covers/94/78/9780330319478.jpg'), - ('0812504593', 'The House Of The Seven Gables (Tor Classics)', 'https://images.isbndb.com/covers/45/90/9780812504590.jpg'), - ('9500406977', 'Eso / It (Spanish Edition)', 'https://images.isbndb.com/covers/69/70/9789500406970.jpg'), - ('1551110652', 'Heart Of Darkness (Broadview Literary Texts)', 'https://images.isbndb.com/covers/06/53/9781551110653.jpg'), - ('0552997706', 'Telling Liddy Pb', 'https://images.isbndb.com/covers/77/06/9780552997706.jpg'), - ('3442449898', 'Manila', 'https://images.isbndb.com/covers/98/97/9783442449897.jpg'), - ('3453108191', 'Schwarzes Eis', 'https://images.isbndb.com/covers/81/96/9783453108196.jpg'), - ('3442067855', 'Diamanten - Dynastie. Roman.', 'https://images.isbndb.com/covers/78/55/9783442067855.jpg'), - ('3442092639', 'Im Schatten Der Götter', 'https://images.isbndb.com/covers/26/35/9783442092635.jpg'), - ('3612275232', 'Der Tote Ist Immer Der Butler', 'https://images.isbndb.com/covers/52/33/9783612275233.jpg'), - ('3784427855', 'Die Internet-Generation', 'https://images.isbndb.com/covers/78/50/9783784427850.jpg'), - ('0945990049', 'Car-Free In Boston: The Guide To Public Transit In Greater Boston & New England (9th Ed)', 'https://images.isbndb.com/covers/00/48/9780945990048.jpg'), - ('0898620600', 'Weight, Sex, And Marriage: A Delicate Balance', 'https://images.isbndb.com/covers/06/03/9780898620603.jpg'), - ('0380807939', 'A Season Beyond A Kiss', 'https://images.isbndb.com/covers/79/32/9780380807932.jpg'), - ('0446602736', 'Border Music', 'https://images.isbndb.com/covers/27/30/9780446602730.jpg'), - ('0425098400', 'Celestial Navigation', 'https://images.isbndb.com/covers/84/00/9780425098400.jpg'), - ('0449904075', 'Overcoming Overeating', 'https://images.isbndb.com/covers/40/77/9780449904077.jpg'), - ('0446360589', 'The Burden Of Proof', 'https://images.isbndb.com/covers/05/86/9780446360586.jpg'), - ('0385315090', 'Mirror Image', 'https://images.isbndb.com/covers/50/98/9780385315098.jpg'), - ('0385319606', 'Irresistible Forces', 'https://images.isbndb.com/covers/96/07/9780385319607.jpg'), - ('0385311923', 'Lightning', 'https://images.isbndb.com/covers/19/22/9780385311922.jpg'), - ('0440500729', 'Star', 'https://images.isbndb.com/covers/07/28/9780440500728.jpg'), - ('0385297661', 'Daddy', 'https://images.isbndb.com/covers/76/60/9780385297660.jpg'), - ('0385306024', 'Accident', 'https://images.isbndb.com/covers/60/27/9780385306027.jpg'), - ('0345362721', 'Peachtree Road', 'https://images.isbndb.com/covers/27/28/9780345362728.jpg'), - ('0446802204', 'Master Of The Game', 'https://images.isbndb.com/covers/22/08/9780446802208.jpg'), - ('0446329894', 'IF TOMORROW COMES', 'https://images.isbndb.com/covers/98/97/9780446329897.jpg'), - ('0399144587', 'Hush Money (Spenser Mystery)', 'https://images.isbndb.com/covers/45/85/9780399144585.jpg'), - ('0671639218', 'Black Market', 'https://images.isbndb.com/covers/92/11/9780671639211.jpg'), - ('0679420649', 'Degree Of Guilt', 'https://images.isbndb.com/covers/06/44/9780679420644.jpg'), - ('0786889551', 'The Pied Piper', 'https://images.isbndb.com/covers/95/56/9780786889556.jpg'), - ('0312923856', 'Probable Cause: When One Man''s Passion For Justice Becomes An Obsession For Revenge', 'https://images.isbndb.com/covers/38/53/9780312923853.jpg'), - ('0786889667', 'The First Victim', 'https://images.isbndb.com/covers/96/62/9780786889662.jpg'), - ('0804111111', 'True Colors', 'https://images.isbndb.com/covers/11/19/9780804111119.jpg'), - ('055327032X', 'First Born', 'https://images.isbndb.com/covers/03/27/9780553270327.jpg'), - ('0821762532', 'Out Of Nowhere', 'https://images.isbndb.com/covers/25/30/9780821762530.jpg'), - ('044023574X', 'After The Fire', 'https://images.isbndb.com/covers/57/43/9780440235743.jpg'), - ('0304328464', 'Positive Lives-- Responses To HIV: A Photodocumentary (The Cassell Aids Awareness)', 'https://images.isbndb.com/covers/84/68/9780304328468.jpg'), - ('0345379020', 'Ghost King (Stones Of Power)', 'https://images.isbndb.com/covers/90/23/9780345379023.jpg'), - ('0310235561', 'The Prodigy', 'https://images.isbndb.com/covers/55/69/9780310235569.jpg'), - ('0743458168', 'Science Fiction: The Best Of 2002 (Science Fiction: The Best Of ... (Quality))', 'https://images.isbndb.com/covers/81/60/9780743458160.jpg'), - ('1586606735', 'A Treasure Deep (Perry Sachs Mystery Series #1)', 'https://images.isbndb.com/covers/67/32/9781586606732.jpg'), - ('1578565677', 'False Positive', 'https://images.isbndb.com/covers/56/72/9781578565672.jpg'), - ('0452284201', 'The Prodigal Project: Book 1: Genesis', 'https://images.isbndb.com/covers/42/03/9780452284203.jpg'), - ('349223562X', 'Tödliche Lügen: Roman', 'https://images.isbndb.com/covers/56/24/9783492235624.jpg'), - ('2890199029', 'Sage Comme Une Image', 'https://images.isbndb.com/covers/90/26/9782890199026.jpg'), - ('1889195162', 'Most Art Sucks: Coagula Art Journal And The Art Of The 1990''s', 'https://images.isbndb.com/covers/51/62/9781889195162.jpg'), - ('1904132073', 'The End Of Gay: (And The Death Of Heterosexuality)', 'https://images.isbndb.com/covers/20/73/9781904132073.jpg'), - ('2070408450', 'Saga', 'https://images.isbndb.com/covers/84/50/9782070408450.jpg'), - ('0312972954', 'Faithful Unto Death: A Chief Inspector Barnaby Novel (Chief Inspector Barnaby Mysteries)', 'https://images.isbndb.com/covers/29/50/9780312972950.jpg'), - ('0912333634', 'Ballykissangel: A Sense Of Place', 'https://images.isbndb.com/covers/36/32/9780912333632.jpg'), - ('0786702141', 'The Mammoth Book Of Historical Detectives', 'https://images.isbndb.com/covers/21/45/9780786702145.jpg'), - ('0446520837', 'The $100,000 Club: How To Make A Six-Figure Income', 'https://images.isbndb.com/covers/08/36/9780446520836.jpg'), - ('0937966185', 'Inside Vacationland: New Fiction From The Real Maine, 1st Edition', 'https://images.isbndb.com/covers/61/81/9780937966181.jpg'), - ('0141312556', 'The Pearl (Puffin Classics)', 'https://images.isbndb.com/covers/25/52/9780141312552.jpg'), - ('9871138016', 'Cronica De Una Muerte Anunciada (Spanish Edition)', 'https://images.isbndb.com/covers/80/12/9789871138012.jpg'), - ('0374503486', 'Memoirs Of Hadrian', 'https://images.isbndb.com/covers/34/82/9780374503482.jpg'), - ('2040162097', 'XVIe Siècle : Les Grands Auteurs Français Du Programme - Anthologie Et Histoire Littéraire', 'https://images.isbndb.com/covers/20/92/9782040162092.jpg'), - ('2080700324', 'Colomba', 'https://images.isbndb.com/covers/03/22/9782080700322.jpg'), - ('051722108X', 'The Adventures Of Tom Sawyer (The Illus Children''s Library)', 'https://images.isbndb.com/covers/10/82/9780517221082.jpg'), - ('0762414197', 'Robinson Crusoe', 'https://images.isbndb.com/covers/41/92/9780762414192.jpg'), - ('0854963782', 'Silence Of The Sea / Le Silence De La Mer: A Novel Of French Resistance During The Second World War By ''Vercors''', 'https://images.isbndb.com/covers/37/82/9780854963782.jpg'), - ('225303939X', 'Horace', 'https://images.isbndb.com/covers/93/96/9782253039396.jpg'), - ('1840020830', 'Britannicus', 'https://images.isbndb.com/covers/08/30/9781840020830.jpg'), - ('0152008675', 'The Bomb', 'https://images.isbndb.com/covers/86/73/9780152008673.jpg'), - ('0762405449', 'Edgar Allan Poe Reader (Courage Literary Classics)', 'https://images.isbndb.com/covers/54/42/9780762405442.jpg'), - ('0140386351', 'A Girl Named Disaster', 'https://images.isbndb.com/covers/63/56/9780140386356.jpg'), - ('359650533X', 'Der Plan', 'https://images.isbndb.com/covers/53/33/9783596505333.jpg'), - ('067102325X', 'Virus Ground Zero: Stalking The Killer Viruses With The Centers For Disease Control', 'https://images.isbndb.com/covers/32/56/9780671023256.jpg'), - ('0812213238', 'Anatomy Of A Crusade, 1213-1221 (The Middle Ages Series)', 'https://images.isbndb.com/covers/32/32/9780812213232.jpg'), - ('0679729976', 'The Stories Of Vladimir Nabokov', 'https://images.isbndb.com/covers/99/76/9780679729976.jpg'), - ('1562055089', 'Actually Useful Internet Security Techniques', 'https://images.isbndb.com/covers/50/80/9781562055080.jpg'), - ('0830645519', 'Troubleshooting & Repairing PC Drives & Memory Systems', 'https://images.isbndb.com/covers/55/10/9780830645510.jpg'), - ('0933121539', 'Black Genealogy', 'https://images.isbndb.com/covers/15/39/9780933121539.jpg'), - ('0373078811', 'Mary''S Child (Whose Child?) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/88/13/9780373078813.jpg'), - ('0373763808', 'In Bed With The Boss''S Daughter (Desire, 1380)', 'https://images.isbndb.com/covers/38/01/9780373763801.jpg'), - ('0452261457', 'The Making Of The African Queen', 'https://images.isbndb.com/covers/14/57/9780452261457.jpg'), - ('002031275X', 'TOLKIEN: The Illustrated Encyclopaedia', 'https://images.isbndb.com/covers/27/58/9780020312758.jpg'), - ('1565843525', 'Ethics: Subjectivity And Truth (Essential Works Of Foucault, 1954-1984, Vol. 1)', 'https://images.isbndb.com/covers/35/23/9781565843523.jpg'), - ('0140143459', 'Liar''s Poker: Rising Through The Wreckage On Wall Street', 'https://images.isbndb.com/covers/34/54/9780140143454.jpg'), - ('0864693257', 'Masculinities In Aotearoa/New Zealand', 'https://images.isbndb.com/covers/32/59/9780864693259.jpg'), - ('0070212147', 'Modern Epistemology: A New Introduction', 'https://images.isbndb.com/covers/21/45/9780070212145.jpg'), - ('0192853902', 'Judaism: A Very Short Introduction (Very Short Introductions)', 'https://images.isbndb.com/covers/39/05/9780192853905.jpg'), - ('0553580221', 'False Memory', 'https://images.isbndb.com/covers/02/28/9780553580228.jpg'), - ('0140442758', 'Phaedrus And Letters VII And VIII (Penguin Classics)', 'https://images.isbndb.com/covers/27/55/9780140442755.jpg'), - ('0679781358', 'The Hottest State: A Novel', 'https://images.isbndb.com/covers/13/56/9780679781356.jpg'), - ('0664246915', 'Situation Ethics: The New Morality', 'https://images.isbndb.com/covers/69/14/9780664246914.jpg'), - ('1879960400', 'Junglee Girl', 'https://images.isbndb.com/covers/04/04/9781879960404.jpg'), - ('0345370430', 'The Ruby Knight (Book Two Of The Elenium)', 'https://images.isbndb.com/covers/04/33/9780345370433.jpg'), - ('0553272616', 'The Unloved', 'https://images.isbndb.com/covers/26/11/9780553272611.jpg'), - ('1570621608', 'When Things Fall Apart: Heart Advice For Difficult Times', 'https://images.isbndb.com/covers/16/04/9781570621604.jpg'), - ('0743427084', 'How To Practice : The Way To A Meaningful Life', 'https://images.isbndb.com/covers/70/81/9780743427081.jpg'), - ('0712610847', 'The Buddhist Vision: Introduction To The Theory And Practice', 'https://images.isbndb.com/covers/08/41/9780712610841.jpg'), - ('1888375051', 'A Pebble For Your Pocket', 'https://images.isbndb.com/covers/50/53/9781888375053.jpg'), - ('0385492677', 'The Accidental Buddhist', 'https://images.isbndb.com/covers/26/76/9780385492676.jpg'), - ('0937938874', 'Open Heart, Clear Mind', 'https://images.isbndb.com/covers/88/74/9780937938874.jpg'), - ('0671039016', 'The Computer Connection', 'https://images.isbndb.com/covers/90/11/9780671039011.jpg'), - ('0020178506', 'Half A Life', 'https://images.isbndb.com/covers/85/07/9780020178507.jpg'), - ('0020198507', 'World Soul', 'https://images.isbndb.com/covers/85/05/9780020198505.jpg'), - ('068419001X', 'At Death''s Door', 'https://images.isbndb.com/covers/00/13/9780684190013.jpg'), - ('0140126422', 'Post No Bonds', 'https://images.isbndb.com/covers/64/26/9780140126426.jpg'), - ('0440162645', 'The Nantucket Diet Murders (Eugenia Potter Mysteries)', 'https://images.isbndb.com/covers/26/43/9780440162643.jpg'), - ('0450017095', 'Lord Peter Views The Body', 'https://images.isbndb.com/covers/70/94/9780450017094.jpg'), - ('0892965258', 'Wolf In The Shadows (A Sharon Mccone Mystery)', 'https://images.isbndb.com/covers/52/50/9780892965250.jpg'), - ('0140147381', 'The Very Last Gambado (Lovejoy Mystery)', 'https://images.isbndb.com/covers/73/84/9780140147384.jpg'), - ('0345333810', 'No Word From Winifred (Kate Fansler Novels)', 'https://images.isbndb.com/covers/38/10/9780345333810.jpg'), - ('0930031091', 'Automotive History Of Lucky Ke', 'https://images.isbndb.com/covers/10/91/9780930031091.jpg'), - ('0684814161', 'Eating Chinese Food Naked: A Novel', 'https://images.isbndb.com/covers/41/62/9780684814162.jpg'), - ('0671734601', 'The King Is Dead: A Samantha Adams Mystery', 'https://images.isbndb.com/covers/46/02/9780671734602.jpg'), - ('0449212750', 'Murder In The CIA (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/27/52/9780449212752.jpg'), - ('0425127230', 'Stardust (Spenser)', 'https://images.isbndb.com/covers/72/30/9780425127230.jpg'), - ('0451155580', 'Once On A Time (Signet)', 'https://images.isbndb.com/covers/55/80/9780451155580.jpg'), - ('0671884298', 'A Little Yellow Dog: An Easy Rawlins Mystery', 'https://images.isbndb.com/covers/42/91/9780671884291.jpg'), - ('0804108862', 'A Slipping-Down Life', 'https://images.isbndb.com/covers/88/67/9780804108867.jpg'), - ('0399139087', 'Second Nature', 'https://images.isbndb.com/covers/90/86/9780399139086.jpg'), - ('0385304374', 'All Our Yesterdays', 'https://images.isbndb.com/covers/43/75/9780385304375.jpg'), - ('0679438793', 'The Hippopotamus', 'https://images.isbndb.com/covers/87/93/9780679438793.jpg'), - ('0915801418', 'Entering Infinity', 'https://images.isbndb.com/covers/14/11/9780915801411.jpg'), - ('1559390476', 'Buddhism Through American Women''s Eyes', 'https://images.isbndb.com/covers/04/77/9781559390477.jpg'), - ('0064471047', 'The Lion, The Witch, And The Wardrobe (The Chronicles Of Narnia, Book 2)', 'https://images.isbndb.com/covers/10/46/9780064471046.jpg'), - ('0345441184', 'The Mists Of Avalon', 'https://images.isbndb.com/covers/11/88/9780345441188.jpg'), - ('0330491482', 'Whatever You Want', 'https://images.isbndb.com/covers/14/88/9780330491488.jpg'), - ('0767904141', 'Close To Shore: The Terrifying Shark Attacks Of 1916', 'https://images.isbndb.com/covers/41/48/9780767904148.jpg'), - ('0786868430', 'Madam Secretary: A Memoir', 'https://images.isbndb.com/covers/84/38/9780786868438.jpg'), - ('0394711556', 'Alone Of All Her Sex: The Myth And The Cult Of The Virgin Mary', 'https://images.isbndb.com/covers/15/53/9780394711553.jpg'), - ('2842190009', 'La Petite écuyère A Cafté', 'https://images.isbndb.com/covers/00/02/9782842190002.jpg'), - ('0060191538', 'Perfect Murder, Perfect Town: JonBenet And The City Of Boulder', 'https://images.isbndb.com/covers/15/35/9780060191535.jpg'), - ('0060191341', 'RealAge: Are You As Young As You Can Be?', 'https://images.isbndb.com/covers/13/44/9780060191344.jpg'), - ('0425166929', 'One Last Time: A Psychic Medium Speaks To Those We Have Loved And Lost', 'https://images.isbndb.com/covers/69/25/9780425166925.jpg'), - ('0425104044', 'The Gold''s Gym Weight Training Book', 'https://images.isbndb.com/covers/40/40/9780425104040.jpg'), - ('051509479X', 'What You Think Of Me Is None Of My Business', 'https://images.isbndb.com/covers/47/94/9780515094794.jpg'), - ('0312958129', 'Coming Home', 'https://images.isbndb.com/covers/81/21/9780312958121.jpg'), - ('0385336314', 'Dating Game', 'https://images.isbndb.com/covers/63/14/9780385336314.jpg'), - ('1891620452', 'Fortress America: The American Military And The Consequences Of Peace', 'https://images.isbndb.com/covers/04/54/9781891620454.jpg'), - ('0590477331', 'Mr Popper''s Penguins', 'https://images.isbndb.com/covers/73/38/9780590477338.jpg'), - ('3530267147', 'Die Götter Der Erde', 'https://images.isbndb.com/covers/71/43/9783530267143.jpg'), - ('3150000254', 'Das Fräulein Von Scuderi', 'https://images.isbndb.com/covers/02/50/9783150000250.jpg'), - ('3518100122', 'Tractatus Logico-philosophicus: Logisch-philosophische Abhandlung (edition Suhrkamp)', 'https://images.isbndb.com/covers/01/27/9783518100127.jpg'), - ('3518380338', 'Korrektur: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/03/38/9783518380338.jpg'), - ('074930152X', 'A Woman Named Jackie', 'https://images.isbndb.com/covers/15/21/9780749301521.jpg'), - ('3257232543', 'Doping. Roman', 'https://images.isbndb.com/covers/25/47/9783257232547.jpg'), - ('0140621466', 'The Water Babies', 'https://images.isbndb.com/covers/14/64/9780140621464.jpg'), - ('0345368754', 'Foucault''s Pendulum', 'https://images.isbndb.com/covers/87/51/9780345368751.jpg'), - ('3492260640', 'Zuflucht Im Teehaus: Roman', 'https://images.isbndb.com/covers/06/40/9783492260640.jpg'), - ('3627001028', 'Das Beste, Was Einem Croissant Passieren Kann', 'https://images.isbndb.com/covers/10/25/9783627001025.jpg'), - ('0553213164', 'Anne Of Windy Poplars (Anne Of Green Gables)', 'https://images.isbndb.com/covers/31/64/9780553213164.jpg'), - ('0446603929', 'See How They Run', 'https://images.isbndb.com/covers/39/28/9780446603928.jpg'), - ('067189787X', 'We Did It, Tara (The Paxton Cheerleaders #4)', 'https://images.isbndb.com/covers/78/71/9780671897871.jpg'), - ('0440431476', 'Active Enzyme Lemon-Freshened Junior High School Witch', 'https://images.isbndb.com/covers/14/73/9780440431473.jpg'), - ('0553213180', 'Anne''s House Of Dreams (Anne Of Green Gables, No. 5)', 'https://images.isbndb.com/covers/31/88/9780553213188.jpg'), - ('0061067318', 'Class Trip', 'https://images.isbndb.com/covers/73/10/9780061067310.jpg'), - ('037316243X', 'Party Of Two (American Romance)', 'https://images.isbndb.com/covers/24/37/9780373162437.jpg'), - ('0671745085', 'ROAD TO NOWHERE', 'https://images.isbndb.com/covers/50/80/9780671745080.jpg'), - ('014032724X', 'Hatchet', 'https://images.isbndb.com/covers/72/43/9780140327243.jpg'), - ('0312155204', 'El Sid: Saint Vicious', 'https://images.isbndb.com/covers/52/09/9780312155209.jpg'), - ('1569470170', 'Outsider In Amsterdam (Grijpstra & De Gier Mystery)', 'https://images.isbndb.com/covers/01/76/9781569470176.jpg'), - ('0440177049', 'Season Of Passion', 'https://images.isbndb.com/covers/70/43/9780440177043.jpg'), - ('0451528670', 'What To Listen For In Music', 'https://images.isbndb.com/covers/86/74/9780451528674.jpg'), - ('074347502X', 'Exploring The Matrix: Visions Of The Cyber Future', 'https://images.isbndb.com/covers/50/20/9780743475020.jpg'), - ('0590434616', 'The Dollhouse Murders', 'https://images.isbndb.com/covers/46/14/9780590434614.jpg'), - ('0812551702', 'Heartlight', 'https://images.isbndb.com/covers/17/09/9780812551709.jpg'), - ('0812551699', 'The Merlin Effect', 'https://images.isbndb.com/covers/16/93/9780812551693.jpg'), - ('0812536541', 'The Ancient One', 'https://images.isbndb.com/covers/65/46/9780812536546.jpg'), - ('0446518581', 'Border Music', 'https://images.isbndb.com/covers/85/81/9780446518581.jpg'), - ('0971181802', 'E-Wally And The Quest (Adventures Of E-Wally)', 'https://images.isbndb.com/covers/18/09/9780971181809.jpg'), - ('0380712040', 'Black Cherry Blues: A Dave Robicheaux Novel', 'https://images.isbndb.com/covers/20/45/9780380712045.jpg'), - ('0752837648', 'Lost Boy', 'https://images.isbndb.com/covers/76/42/9780752837642.jpg'), - ('0743225724', 'Good Harbor: A Novel', 'https://images.isbndb.com/covers/57/24/9780743225724.jpg'), - ('0553562401', 'Cry Of The Hawk: The Plainsmen (Scout)', 'https://images.isbndb.com/covers/24/08/9780553562408.jpg'), - ('0451523873', 'Madame Bovary (Signet Classics)', 'https://images.isbndb.com/covers/38/77/9780451523877.jpg'), - ('0553202960', 'Coming Currency Collapse', 'https://images.isbndb.com/covers/29/60/9780553202960.jpg'), - ('0060806389', 'She Shall Have Murder (Perennial Library, P638)', 'https://images.isbndb.com/covers/63/85/9780060806385.jpg'), - ('0553235605', 'The 13th Valley', 'https://images.isbndb.com/covers/56/09/9780553235609.jpg'), - ('0449243141', 'Restoring The American Dream', 'https://images.isbndb.com/covers/31/45/9780449243145.jpg'), - ('0553561057', 'Green Shadows, White Whale', 'https://images.isbndb.com/covers/10/50/9780553561050.jpg'), - ('0816627770', 'Starting And Running A Nonprofit Organization', 'https://images.isbndb.com/covers/77/76/9780816627776.jpg'), - ('0804461406', 'Discourse On Free Will (Milestones Of Thought)', 'https://images.isbndb.com/covers/14/05/9780804461405.jpg'), - ('0375756981', 'The Vagina Monologues: The V-Day Edition', 'https://images.isbndb.com/covers/69/86/9780375756986.jpg'), - ('068486729X', 'One Good Turn: A Natural History Of The Screwdriver And The Screw', 'https://images.isbndb.com/covers/72/98/9780684867298.jpg'), - ('0440504589', 'Migraine: The Complete Guide', 'https://images.isbndb.com/covers/45/80/9780440504580.jpg'), - ('0195014766', 'The Art Of War', 'https://images.isbndb.com/covers/47/61/9780195014761.jpg'), - ('0140440372', 'THE LAST DAYS OF SOCRATES', 'https://images.isbndb.com/covers/03/79/9780140440379.jpg'), - ('0844237809', 'Better Handwriting (Teach Yourself Series)', 'https://images.isbndb.com/covers/78/00/9780844237800.jpg'), - ('0394717023', 'The Hindu Tradition: Readings In Oriental Thought', 'https://images.isbndb.com/covers/70/29/9780394717029.jpg'), - ('0140442014', 'The Social Contract (Penguin Classics)', 'https://images.isbndb.com/covers/20/14/9780140442014.jpg'), - ('0765307596', 'Eastern Standard Tribe', 'https://images.isbndb.com/covers/75/90/9780765307590.jpg'), - ('0140258795', 'Longitude: The True Story Of A Lone Genius Who Solved The Greatest Scientific Problem Of His Time', 'https://images.isbndb.com/covers/87/90/9780140258790.jpg'), - ('0965063992', 'Oxford One-Volume Illustrated Encyclopedia', 'https://images.isbndb.com/covers/39/99/9780965063999.jpg'), - ('0898799767', 'Writer''s Digest Flip Dictionary', 'https://images.isbndb.com/covers/97/67/9780898799767.jpg'), - ('0812059379', 'Barron''s Student''s Concise Encyclopedia', 'https://images.isbndb.com/covers/93/73/9780812059373.jpg'), - ('0671850148', 'The New York Public Library Desk Reference, Second Edition', 'https://images.isbndb.com/covers/01/42/9780671850142.jpg'), - ('1559702141', 'Dictionary Of Word Origins: Histories Of More Than 8,000 English-Language Words', 'https://images.isbndb.com/covers/21/40/9781559702140.jpg'), - ('0395893380', 'The Big Book Of Beastly Mispronunciations : The Complete Opinionated Guide For The Careful Speaker', 'https://images.isbndb.com/covers/33/88/9780395893388.jpg'), - ('0060915765', 'Writing To Learn, 1st, First Edition', 'https://images.isbndb.com/covers/57/66/9780060915766.jpg'), - ('0380713926', 'The New Comprehensive American Rhyming Dictionary', 'https://images.isbndb.com/covers/39/29/9780380713929.jpg'), - ('0425117693', 'Roget''s II: The New Thesaurus', 'https://images.isbndb.com/covers/76/99/9780425117699.jpg'), - ('0877799156', 'The Official Scrabble Players Dictionary (Third Edition)', 'https://images.isbndb.com/covers/91/53/9780877799153.jpg'), - ('0804113491', 'The Random House Crossword Puzzle Dictionary', 'https://images.isbndb.com/covers/34/96/9780804113496.jpg'), - ('0521456932', 'Editing Fact And Fiction: A Concise Guide To Book Editing', 'https://images.isbndb.com/covers/69/37/9780521456937.jpg'), - ('0020474105', 'The Elements Of Editing: A Modern Guide For Editors And Journalists', 'https://images.isbndb.com/covers/41/04/9780020474104.jpg'), - ('0020154402', 'The Elements Of Grammar', 'https://images.isbndb.com/covers/44/02/9780020154402.jpg'), - ('0024182001', 'The Elements Of Style (with Index)', 'https://images.isbndb.com/covers/20/05/9780024182005.jpg'), - ('0312894708', 'Writing From Sources', 'https://images.isbndb.com/covers/47/02/9780312894702.jpg'), - ('0393320553', 'The Writer On Her Work, Volume 1', 'https://images.isbndb.com/covers/05/58/9780393320558.jpg'), - ('0226899152', 'Style: Toward Clarity And Grace (Chicago Guides To Writing, Editing, And Publishing)', 'https://images.isbndb.com/covers/91/52/9780226899152.jpg'), - ('0898794080', 'Handbook Of Magazine Article Writing', 'https://images.isbndb.com/covers/40/83/9780898794083.jpg'), - ('0062735233', 'On Writing Well: The Classic Guide To Writing Nonfiction', 'https://images.isbndb.com/covers/52/32/9780062735232.jpg'), - ('0596005059', '.Net Framework Essentials', 'https://images.isbndb.com/covers/50/54/9780596005054.jpg'), - ('0312422547', 'The Language Of Passion: Selected Commentary', 'https://images.isbndb.com/covers/25/47/9780312422547.jpg'), - ('067972754X', 'Dictionary Of The Khazars: A Lexicon Novel In 100,000 Words', 'https://images.isbndb.com/covers/75/45/9780679727545.jpg'), - ('0735619255', 'MCAD/MCSD Self-Paced Training Kit: Microsoft (2nd Edition) .NET Core Requirements, Exams 70-305, 70-315, 70-306, 70-316, 70-310, 70-320, And 70-300 Box Vol. Set', 'https://images.isbndb.com/covers/92/58/9780735619258.jpg'), - ('0596004893', 'Programming C#, Third Edition', 'https://images.isbndb.com/covers/48/97/9780596004897.jpg'), - ('0679727299', 'The Annotated Lolita: Revised And Updated', 'https://images.isbndb.com/covers/72/93/9780679727293.jpg'), - ('1400062535', 'The Best Of Gourmet: Featuring The Flavors Of Rome', 'https://images.isbndb.com/covers/25/39/9781400062539.jpg'), - ('0345464869', 'Saving Dinner: The Menus, Recipes, And Shopping Lists To Bring Your Family Back To The Table', 'https://images.isbndb.com/covers/48/66/9780345464866.jpg'), - ('0393051404', 'Monster Of God: The Man-Eating Predator In The Jungles Of History And The Mind', 'https://images.isbndb.com/covers/14/07/9780393051407.jpg'), - ('0385500696', 'The Fortress Of Solitude: A Novel', 'https://images.isbndb.com/covers/06/92/9780385500692.jpg'), - ('0898798736', 'The Writer''s Idea Book', 'https://images.isbndb.com/covers/87/39/9780898798739.jpg'), - ('0673522946', 'Technical Writing', 'https://images.isbndb.com/covers/29/48/9780673522948.jpg'), - ('0312203632', 'Sleeping Dogs Don''t Lay: Practical Advice For The Grammatically Challenged', 'https://images.isbndb.com/covers/36/34/9780312203634.jpg'), - ('0151003718', 'Words Fail Me: What Everyone Who Writes Should Know About Writing', 'https://images.isbndb.com/covers/37/16/9780151003716.jpg'), - ('0385509472', 'Diary: A Novel', 'https://images.isbndb.com/covers/94/73/9780385509473.jpg'), - ('0060988649', 'Lost: A Novel', 'https://images.isbndb.com/covers/86/47/9780060988647.jpg'), - ('0380725711', 'Say You Love Me (Malory, No. 5)', 'https://images.isbndb.com/covers/57/17/9780380725717.jpg'), - ('0380812959', 'Destiny: Book Three Of The Blending Enthroned', 'https://images.isbndb.com/covers/29/50/9780380812950.jpg'), - ('0061056278', 'Broken Blade (The Rune Blade Trilogy, Book 3)', 'https://images.isbndb.com/covers/62/77/9780061056277.jpg'), - ('0380788101', 'Betrayals (The Blending, Book 4)', 'https://images.isbndb.com/covers/81/01/9780380788101.jpg'), - ('0061056286', 'The Western King (The Rune Blade Trilogy, Book 2)', 'https://images.isbndb.com/covers/62/84/9780061056284.jpg'), - ('0380784157', 'Competitions (The Blending, Book 2)', 'https://images.isbndb.com/covers/41/58/9780380784158.jpg'), - ('0380788098', 'Challenges: Book Three Of The Blending', 'https://images.isbndb.com/covers/80/95/9780380788095.jpg'), - ('0671319930', 'Sidhe-Devil', 'https://images.isbndb.com/covers/99/39/9780671319939.jpg'), - ('0743471547', 'The Course Of Empire', 'https://images.isbndb.com/covers/15/41/9780743471541.jpg'), - ('0345392477', 'The Shaman (The Star Stone, Book 1)', 'https://images.isbndb.com/covers/24/73/9780345392473.jpg'), - ('0808572407', 'The Wishsong Of Shannara (Turtleback School & Library Binding Edition) (The Sword Of Shannara)', 'https://images.isbndb.com/covers/24/04/9780808572404.jpg'), - ('0595256368', 'Rhaeva', 'https://images.isbndb.com/covers/63/65/9780595256365.jpg'), - ('0425076490', '11 Harrowhouse', 'https://images.isbndb.com/covers/64/91/9780425076491.jpg'), - ('0061099708', 'Colony', 'https://images.isbndb.com/covers/97/00/9780061099700.jpg'), - ('0425182886', 'Potshot (Spenser)', 'https://images.isbndb.com/covers/28/88/9780425182888.jpg'), - ('0425179559', 'Hugger Mugger (Spenser)', 'https://images.isbndb.com/covers/95/50/9780425179550.jpg'), - ('0425174018', 'Hush Money (Spenser Mysteries)', 'https://images.isbndb.com/covers/40/12/9780425174012.jpg'), - ('0425157474', 'Chance (Spenser)', 'https://images.isbndb.com/covers/74/73/9780425157473.jpg'), - ('0425152901', 'Thin Air (Spenser)', 'https://images.isbndb.com/covers/29/04/9780425152904.jpg'), - ('0425147746', 'Walking Shadow (Spenser)', 'https://images.isbndb.com/covers/77/40/9780425147740.jpg'), - ('0425141551', 'Paper Doll (Spenser)', 'https://images.isbndb.com/covers/15/57/9780425141557.jpg'), - ('0425137937', 'Double Deuce (Spenser)', 'https://images.isbndb.com/covers/79/32/9780425137932.jpg'), - ('0425132935', 'Pastime (Spenser)', 'https://images.isbndb.com/covers/29/37/9780425132937.jpg'), - ('0425120015', 'Playmates (Spenser, No 16)', 'https://images.isbndb.com/covers/00/19/9780425120019.jpg'), - ('0440200040', 'Pale Kings And Princes (Spenser, No 14)', 'https://images.isbndb.com/covers/00/48/9780440200048.jpg'), - ('0440188415', 'Taming A Seahorse', 'https://images.isbndb.com/covers/84/14/9780440188414.jpg'), - ('0440111323', 'A Catskill Eagle (Spenser, Book 12)', 'https://images.isbndb.com/covers/13/20/9780440111320.jpg'), - ('0440195357', 'The Widening Gyre (Spenser Novels (Dell))', 'https://images.isbndb.com/covers/53/51/9780440195351.jpg'), - ('0440109930', 'Ceremony (Spenser Novels (Dell))', 'https://images.isbndb.com/covers/99/38/9780440109938.jpg'), - ('0440180953', 'A Savage Place', 'https://images.isbndb.com/covers/09/51/9780440180951.jpg'), - ('0440122147', 'Early Autumn', 'https://images.isbndb.com/covers/21/42/9780440122142.jpg'), - ('0440153166', 'Looking For Rachel Wallace', 'https://images.isbndb.com/covers/31/60/9780440153160.jpg'), - ('0671853864', 'Cow And Cow Parsley', 'https://images.isbndb.com/covers/38/60/9780671853860.jpg'), - ('0340750626', 'The Evidence Exposed', 'https://images.isbndb.com/covers/06/29/9780340750629.jpg'), - ('0440171970', 'Promised Land (A Spenser Novel)', 'https://images.isbndb.com/covers/19/73/9780440171973.jpg'), - ('0440157587', 'Mortal Stakes', 'https://images.isbndb.com/covers/75/88/9780440157588.jpg'), - ('0440129613', 'The Godwulf Manuscript', 'https://images.isbndb.com/covers/96/15/9780440129615.jpg'), - ('0874770475', 'The Apartment Farmer', 'https://images.isbndb.com/covers/04/76/9780874770476.jpg'), - ('0874770351', 'Postage Stamp Garden Book: How To Grow All The Food You Can Eat In Very Little Space', 'https://images.isbndb.com/covers/03/53/9780874770353.jpg'), - ('0917102258', 'All About Tomatoes', 'https://images.isbndb.com/covers/22/57/9780917102257.jpg'), - ('0878570950', 'The City People''s Book Of Raising Food', 'https://images.isbndb.com/covers/09/59/9780878570959.jpg'), - ('0812911520', 'New York Times Practical Traveler', 'https://images.isbndb.com/covers/15/27/9780812911527.jpg'), - ('0449215156', 'Mrs. Pollifax And The Golden Triangle', 'https://images.isbndb.com/covers/51/59/9780449215159.jpg'), - ('189400406X', 'When Do You Let The Animals Out?: A Field Guide To Rocky Mountain Humour', 'https://images.isbndb.com/covers/40/60/9781894004060.jpg'), - ('3746618363', 'Solange Du Da Bist: Roman', 'https://images.isbndb.com/covers/83/64/9783746618364.jpg'), - ('9722014862', 'Peregrinacao De Barnabe Das Indias: Romance (Coleccao Autores De Lingua Portuguesa) (Portuguese Edition)', 'https://images.isbndb.com/covers/48/61/9789722014861.jpg'), - ('345319926X', 'Unterland.', 'https://images.isbndb.com/covers/92/62/9783453199262.jpg'), - ('0451143752', 'Confessional', 'https://images.isbndb.com/covers/37/54/9780451143754.jpg'), - ('0670842702', 'The Gates Of Ivory', 'https://images.isbndb.com/covers/27/04/9780670842704.jpg'), - ('0140178260', 'Salaryman', 'https://images.isbndb.com/covers/82/65/9780140178265.jpg'), - ('0375758208', 'An Obvious Enchantment: A Novel', 'https://images.isbndb.com/covers/82/01/9780375758201.jpg'), - ('0385302304', 'Outlander', 'https://images.isbndb.com/covers/23/02/9780385302302.jpg'), - ('0375726241', 'Gob''s Grief: A Novel', 'https://images.isbndb.com/covers/62/48/9780375726248.jpg'), - ('344245073X', 'Streifzüge Durch Das Abendland: Europa Für Anfänger Und Fortgeschrittene', 'https://images.isbndb.com/covers/07/32/9783442450732.jpg'), - ('0515117234', 'Wild Horses', 'https://images.isbndb.com/covers/72/33/9780515117233.jpg'), - ('0805062858', 'Headlong: A Novel', 'https://images.isbndb.com/covers/28/54/9780805062854.jpg'), - ('0451158237', 'The Fountainhead', 'https://images.isbndb.com/covers/82/39/9780451158239.jpg'), - ('0393045986', 'Fearless Girls, Wise Women, And Beloved Sisters: Heroines In Folktales From Around The World', 'https://images.isbndb.com/covers/59/87/9780393045987.jpg'), - ('0452281881', 'E', 'https://images.isbndb.com/covers/18/82/9780452281882.jpg'), - ('0300029691', 'Picture Bride (Yale Series Of Younger Poets)', 'https://images.isbndb.com/covers/96/97/9780300029697.jpg'), - ('1555971148', 'The Graywolf Annual Five: Multi-Cultural Literacy (1-2, 4, 6-<8>: The Graywolf Short Fiction Series) (No.5)', 'https://images.isbndb.com/covers/11/44/9781555971144.jpg'), - ('0060163747', 'Return To Love: Reflections On The Principles Of A Course In Miracles', 'https://images.isbndb.com/covers/37/47/9780060163747.jpg'), - ('0553081209', 'Women''s Bodies, Women''s Wisdom', 'https://images.isbndb.com/covers/12/06/9780553081206.jpg'), - ('0684195488', 'Accordion Crimes', 'https://images.isbndb.com/covers/54/83/9780684195483.jpg'), - ('0931122422', 'The Death Of Long Steam Lady', 'https://images.isbndb.com/covers/24/22/9780931122422.jpg'), - ('0941831930', 'Men, Women And Relationships: Making Peace With The Opposite Sex', 'https://images.isbndb.com/covers/19/32/9780941831932.jpg'), - ('0446518425', 'Second Sight', 'https://images.isbndb.com/covers/84/20/9780446518420.jpg'), - ('9711004143', 'Squatters'' Rites', 'https://images.isbndb.com/covers/41/49/9789711004149.jpg'), - ('0932194400', 'Healing The Child Within: Discovery And Recovery For Adult Children Of Dysfunctional Families', 'https://images.isbndb.com/covers/44/04/9780932194404.jpg'), - ('0060961724', 'Her Wits About Her: Self-Defense Success Stories By Women', 'https://images.isbndb.com/covers/17/25/9780060961725.jpg'), - ('0140444300', 'Les Miserables (Penguin Classics)', 'https://images.isbndb.com/covers/43/08/9780140444308.jpg'), - ('0930377001', 'Linking Our Lives: Chinese American Women Of Los Angeles', 'https://images.isbndb.com/covers/70/07/9780930377007.jpg'), - ('0295968265', 'Fifth Chinese Daughter', 'https://images.isbndb.com/covers/82/61/9780295968261.jpg'), - ('0520007840', 'French Symbolist Poetry, Bilingual Edition (CAL 21)', 'https://images.isbndb.com/covers/78/40/9780520007840.jpg'), - ('039330678X', 'Every Person''s Life Is Worth A Novel', 'https://images.isbndb.com/covers/67/81/9780393306781.jpg'), - ('0312062346', 'The House Of Mirth (Case Studies In Contemporary Criticism)', 'https://images.isbndb.com/covers/23/47/9780312062347.jpg'), - ('0440220424', 'Having Our Say: The Delany Sisters'' First 100 Years', 'https://images.isbndb.com/covers/04/28/9780440220428.jpg'), - ('0679405135', 'Babel Tower', 'https://images.isbndb.com/covers/51/39/9780679405139.jpg'), - ('0060179228', 'River Of Darkness: A Novel Of Suspense', 'https://images.isbndb.com/covers/92/29/9780060179229.jpg'), - ('1557982414', 'Publication Manual Of The American Psychological Association', 'https://images.isbndb.com/covers/24/14/9781557982414.jpg'), - ('074321689X', 'Call Me Crazy: A Memoir (Lisa Drew Books)', 'https://images.isbndb.com/covers/68/90/9780743216890.jpg'), - ('0553057758', 'Skinny Legs And All', 'https://images.isbndb.com/covers/77/51/9780553057751.jpg'), - ('0060176873', 'Love, Again', 'https://images.isbndb.com/covers/68/77/9780060176877.jpg'), - ('0151255946', 'The Diary Of Anais Nin, Vol. 6: 1955-1966', 'https://images.isbndb.com/covers/59/48/9780151255948.jpg'), - ('0913175145', 'Seventeen Syllables And Other Stories', 'https://images.isbndb.com/covers/51/49/9780913175149.jpg'), - ('0871134799', 'Suicide Blonde', 'https://images.isbndb.com/covers/47/90/9780871134790.jpg'), - ('0060168536', 'The Real Thing: Stories And Sketches', 'https://images.isbndb.com/covers/85/37/9780060168537.jpg'), - ('0060149426', 'Touchstones: Letters Between Two Women, 1953-1964', 'https://images.isbndb.com/covers/94/20/9780060149420.jpg'), - ('0689817851', 'Go Ask Alice', 'https://images.isbndb.com/covers/78/54/9780689817854.jpg'), - ('044920846X', 'Love', 'https://images.isbndb.com/covers/84/65/9780449208465.jpg'), - ('0935710019', 'Awaken The Genius In Your Child', 'https://images.isbndb.com/covers/00/14/9780935710014.jpg'), - ('0807059056', 'Making Waves - An Anthology Of Writings By And About Asian American Women', 'https://images.isbndb.com/covers/90/50/9780807059050.jpg'), - ('0679723285', 'China Men', 'https://images.isbndb.com/covers/32/88/9780679723288.jpg'), - ('1561385751', 'Wonderplay', 'https://images.isbndb.com/covers/57/51/9781561385751.jpg'), - ('0140181997', 'Fantasia Of The Unconscious And Psychoanalysis And The Unconscious (Penguin Twentieth Century Classics)', 'https://images.isbndb.com/covers/19/99/9780140181999.jpg'), - ('0966691911', 'Virtual Memories (The Serena Wilcox Mysteries)', 'https://images.isbndb.com/covers/19/17/9780966691917.jpg'), - ('0970335555', 'You Shall Know Our Velocity', 'https://images.isbndb.com/covers/55/55/9780970335555.jpg'), - ('0755310721', 'The Kindness Of Strangers: The Autobiography', 'https://images.isbndb.com/covers/07/22/9780755310722.jpg'), - ('0553572431', 'Terminal Games: A Cyberthriller', 'https://images.isbndb.com/covers/24/38/9780553572438.jpg'), - ('0812549082', 'Mainline', 'https://images.isbndb.com/covers/90/89/9780812549089.jpg'), - ('006105691X', 'Maskerade', 'https://images.isbndb.com/covers/69/18/9780061056918.jpg'), - ('0553574604', 'Icon', 'https://images.isbndb.com/covers/46/09/9780553574609.jpg'), - ('0345388526', 'In The Balance: An Alternate History Of The Second World War (Worldwar, Volume 1)', 'https://images.isbndb.com/covers/85/20/9780345388520.jpg'), - ('0345402405', 'Upsetting The Balance (Worldwar Series, Volume 3)', 'https://images.isbndb.com/covers/24/00/9780345402400.jpg'), - ('0345389980', 'Tilting The Balance (Worldwar Series, Volume 2)', 'https://images.isbndb.com/covers/99/85/9780345389985.jpg'), - ('0373250207', 'Fishbowl', 'https://images.isbndb.com/covers/02/02/9780373250202.jpg'), - ('0671023934', 'The Anatomy Of Motive : The FBI''s Legendary Mindhunter Explores The Key To Understanding And Catching Violent Criminals', 'https://images.isbndb.com/covers/39/35/9780671023935.jpg'), - ('1571684115', 'Start With A Laugh: An Insider''s Guide To Roasts, Toasts, Eulogies, And Other Speeches', 'https://images.isbndb.com/covers/41/10/9781571684110.jpg'), - ('0312254199', 'Signposts In A Strange Land: Essays', 'https://images.isbndb.com/covers/41/93/9780312254193.jpg'), - ('0061000124', 'Yogi: It Ain''t Over', 'https://images.isbndb.com/covers/01/26/9780061000126.jpg'), - ('0671003941', 'Journey Into Darkness', 'https://images.isbndb.com/covers/39/44/9780671003944.jpg'), - ('0451523601', 'Far From The Madding Crowd (Signet Classics)', 'https://images.isbndb.com/covers/36/00/9780451523600.jpg'), - ('3453171837', 'Tom Clancys Net Force 3. Ehrenkodex.', 'https://images.isbndb.com/covers/18/31/9783453171831.jpg'), - ('345315195X', 'Tom Clancy''s Net Force 02. Fluchtpunkt.', 'https://images.isbndb.com/covers/19/56/9783453151956.jpg'), - ('3453147464', 'Tom Clancy''s Net Force 1, Intermafia', 'https://images.isbndb.com/covers/74/61/9783453147461.jpg'), - ('0241141788', 'Any Human Heart', 'https://images.isbndb.com/covers/17/86/9780241141786.jpg'), - ('0802131786', 'Tropic Of Cancer', 'https://images.isbndb.com/covers/17/82/9780802131782.jpg'), - ('0140075968', 'Stars And Bars', 'https://images.isbndb.com/covers/59/60/9780140075960.jpg'), - ('0385475195', 'Fly Fishing Through The Midlife Crisis', 'https://images.isbndb.com/covers/51/98/9780385475198.jpg'), - ('3473580309', 'Hautfarbe Nebensache', 'https://images.isbndb.com/covers/03/09/9783473580309.jpg'), - ('1558745041', 'Chicken Soup For The Mother''s Soul (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/50/49/9781558745049.jpg'), - ('076456174X', 'Cruise Vacations For Dummies 2001', 'https://images.isbndb.com/covers/17/40/9780764561740.jpg'), - ('0345386663', 'Garfield Pulls His Weight (No. 26)', 'https://images.isbndb.com/covers/66/63/9780345386663.jpg'), - ('0060594330', 'Cheaper By The Dozen', 'https://images.isbndb.com/covers/43/36/9780060594336.jpg'), - ('0812550773', 'Irish Lace: A Nuala Anne McGrail Novel (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/07/71/9780812550771.jpg'), - ('082175856X', 'Sara''s Song', 'https://images.isbndb.com/covers/85/64/9780821758564.jpg'), - ('044914982X', 'Serendipity', 'https://images.isbndb.com/covers/98/29/9780449149829.jpg'), - ('0671899597', 'Sleeping Beauty', 'https://images.isbndb.com/covers/95/92/9780671899592.jpg'), - ('038071616X', 'Fleetwood: My Life And Adventures In Fleetwood Mac', 'https://images.isbndb.com/covers/61/66/9780380716166.jpg'), - ('067179390X', 'WILD HONEY', 'https://images.isbndb.com/covers/39/06/9780671793906.jpg'), - ('0345365925', 'For All Their Lives: A Novel', 'https://images.isbndb.com/covers/59/27/9780345365927.jpg'), - ('0373834136', 'The O''Conners: Roses And Rain, Shadows In The Mist', 'https://images.isbndb.com/covers/41/36/9780373834136.jpg'), - ('0821772341', 'Kentucky Rich', 'https://images.isbndb.com/covers/23/48/9780821772348.jpg'), - ('0440237025', 'Journey', 'https://images.isbndb.com/covers/70/20/9780440237020.jpg'), - ('0316171476', 'Masquerade', 'https://images.isbndb.com/covers/14/72/9780316171472.jpg'), - ('034538170X', 'Garfield Takes His Licks (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/17/05/9780345381705.jpg'), - ('059098182X', 'Hatchet', 'https://images.isbndb.com/covers/18/28/9780590981828.jpg'), - ('0446603600', 'Puerto Vallarta Squeeze', 'https://images.isbndb.com/covers/36/07/9780446603607.jpg'), - ('0425180298', 'All Signs Point To Murder: First In The New Series!', 'https://images.isbndb.com/covers/02/97/9780425180297.jpg'), - ('0312986696', 'Blue Suede Clues: A Murder Mystery Featuring Elvis Presley (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/66/98/9780312986698.jpg'), - ('0345459679', 'Hulk', 'https://images.isbndb.com/covers/96/71/9780345459671.jpg'), - ('0312306326', 'Visions Of Sugar Plums: A Stephanie Plum Holiday Novel (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/63/28/9780312306328.jpg'), - ('0670852147', 'Strike Zone', 'https://images.isbndb.com/covers/21/47/9780670852147.jpg'), - ('0345442393', 'Peanuts 2000: The 50th Year Of The World''s Favorite Comic Strip', 'https://images.isbndb.com/covers/23/90/9780345442390.jpg'), - ('0061031550', 'Triggerfish Twist', 'https://images.isbndb.com/covers/15/57/9780061031557.jpg'), - ('0440214904', 'Lizard', 'https://images.isbndb.com/covers/49/08/9780440214908.jpg'), - ('0801678765', 'Basic Nursing: Theory And Practice', 'https://images.isbndb.com/covers/87/69/9780801678769.jpg'), - ('0451169522', 'Misery', 'https://images.isbndb.com/covers/95/25/9780451169525.jpg'), - ('0805054081', 'The Book Of Illusions: A Novel', 'https://images.isbndb.com/covers/40/88/9780805054088.jpg'), - ('0060927216', 'Paula', 'https://images.isbndb.com/covers/72/19/9780060927219.jpg'), - ('0064406962', 'Chasing Redbird (rpkg)', 'https://images.isbndb.com/covers/69/63/9780064406963.jpg'), - ('074324141X', 'Kaplan GRE Exam 2004', 'https://images.isbndb.com/covers/14/10/9780743241410.jpg'), - ('0812504305', 'Around The World In Eighty Days', 'https://images.isbndb.com/covers/43/09/9780812504309.jpg'), - ('0863040403', 'The Exploits Of The Incomparable Mulla Nasrudin / The Subtleties Of The Inimitable Mulla Nasrudin', 'https://images.isbndb.com/covers/04/05/9780863040405.jpg'), - ('0374172897', 'The Hours: A Novel', 'https://images.isbndb.com/covers/28/93/9780374172893.jpg'), - ('0140283404', 'Beloved: (Great Books Edition) (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/34/02/9780140283402.jpg'), - ('0380730774', 'Read This And Tell Me What It Says: Stories', 'https://images.isbndb.com/covers/07/73/9780380730773.jpg'), - ('0862418879', 'The Star Rover (A Rebel Inc. Classic)', 'https://images.isbndb.com/covers/88/78/9780862418878.jpg'), - ('340414645X', 'Die Keltennadel', 'https://images.isbndb.com/covers/64/51/9783404146451.jpg'), - ('3442730988', 'Tod In Der Datscha.', 'https://images.isbndb.com/covers/09/88/9783442730988.jpg'), - ('3404144783', 'Dunkel: Roman', 'https://images.isbndb.com/covers/47/85/9783404144785.jpg'), - ('0880707550', 'Whispers (Glenbrooke, Book 2)', 'https://images.isbndb.com/covers/75/58/9780880707558.jpg'), - ('068145413X', 'Cherished Moments', 'https://images.isbndb.com/covers/41/32/9780681454132.jpg'), - ('1569472793', 'Murder In Belleville (Aimee Leduc Investigations, No. 2)', 'https://images.isbndb.com/covers/27/98/9781569472798.jpg'), - ('0297829084', 'Child Star', 'https://images.isbndb.com/covers/90/89/9780297829089.jpg'), - ('1853406201', 'Semi-Perfect', 'https://images.isbndb.com/covers/62/01/9781853406201.jpg'), - ('0006551076', 'An Ocean In Iowa', 'https://images.isbndb.com/covers/10/72/9780006551072.jpg'), - ('1903650151', 'Spilt Milk', 'https://images.isbndb.com/covers/01/58/9781903650158.jpg'), - ('1852278951', 'Treasure Island According To Spike Milligan', 'https://images.isbndb.com/covers/89/53/9781852278953.jpg'), - ('1841153656', 'The Perfect Fool', 'https://images.isbndb.com/covers/36/50/9781841153650.jpg'), - ('0140178198', 'The Portable Jack Kerouac (Portable Library)', 'https://images.isbndb.com/covers/81/97/9780140178197.jpg'), - ('1877003034', 'Where In The World', 'https://images.isbndb.com/covers/30/35/9781877003035.jpg'), - ('3404144317', 'Wie Ein Lamm Unter Löwen: Historischer Roman', 'https://images.isbndb.com/covers/43/10/9783404144310.jpg'), - ('3453171861', 'Operation Rainbow: Roman', 'https://images.isbndb.com/covers/18/62/9783453171862.jpg'), - ('3852183219', 'Blumen Für Polt. Kriminalroman', 'https://images.isbndb.com/covers/32/13/9783852183213.jpg'), - ('3852182751', 'Polt Muß Weinen. Kriminalroman', 'https://images.isbndb.com/covers/27/59/9783852182759.jpg'), - ('2070408221', 'Ceux De La Soif', 'https://images.isbndb.com/covers/82/21/9782070408221.jpg'), - ('0792706250', 'The Corridors Of Fear (Curley Large Print Books)', 'https://images.isbndb.com/covers/62/50/9780792706250.jpg'), - ('0340568879', 'Anne Of Green Gables (Knight Books)', 'https://images.isbndb.com/covers/88/73/9780340568873.jpg'), - ('059040654X', 'Mostly Magic', 'https://images.isbndb.com/covers/65/43/9780590406543.jpg'), - ('0439557089', 'Barbie Mystery #5 (Barbie Mysteries)', 'https://images.isbndb.com/covers/70/85/9780439557085.jpg'), - ('0749707933', 'Astercote', 'https://images.isbndb.com/covers/79/34/9780749707934.jpg'), - ('0517189674', 'Heidi (Children''s Classics)', 'https://images.isbndb.com/covers/96/72/9780517189672.jpg'), - ('0810943980', 'Babar And The Ghost', 'https://images.isbndb.com/covers/39/88/9780810943988.jpg'), - ('0590248588', 'Money : Make It! Spend It! Save It!', 'https://images.isbndb.com/covers/85/87/9780590248587.jpg'), - ('0870449559', 'Pop-Up: Animal Acrobats', 'https://images.isbndb.com/covers/95/50/9780870449550.jpg'), - ('043910842X', 'Secret Codes For Kids (Mensa (Scholastic))', 'https://images.isbndb.com/covers/84/23/9780439108423.jpg'), - ('0749712295', 'The Nine Lives Of Montezuma', 'https://images.isbndb.com/covers/22/97/9780749712297.jpg'), - ('0749726881', 'Witch Repair Pb', 'https://images.isbndb.com/covers/68/81/9780749726881.jpg'), - ('0140309586', 'Pippi In The South Seas', 'https://images.isbndb.com/covers/95/84/9780140309584.jpg'), - ('0140319972', 'Lost And Found (Young Puffin Books)', 'https://images.isbndb.com/covers/99/72/9780140319972.jpg'), - ('156565269X', 'Super Math Tricks', 'https://images.isbndb.com/covers/26/99/9781565652699.jpg'), - ('0394839102', 'The Berenstain Bears And The Spooky Old Tree', 'https://images.isbndb.com/covers/91/03/9780394839103.jpg'), - ('0860201244', 'The KnowHow Book Of Detection', 'https://images.isbndb.com/covers/12/43/9780860201243.jpg'), - ('0395713250', 'Train To Somewhere', 'https://images.isbndb.com/covers/32/59/9780395713259.jpg'), - ('0894806149', 'The Bird Book & The Bird Feeder (Hand In Hand With Nature)', 'https://images.isbndb.com/covers/61/48/9780894806148.jpg'), - ('0140554556', 'Big Cat Dreaming', 'https://images.isbndb.com/covers/45/57/9780140554557.jpg'), - ('1563053179', 'Kids'' Best Dog Book And Field Guide To Neighborhood Dogs', 'https://images.isbndb.com/covers/31/77/9781563053177.jpg'), - ('039480967X', 'Bears On Wheels', 'https://images.isbndb.com/covers/96/70/9780394809670.jpg'), - ('0394800389', 'Fox In Socks (Beginner Books)', 'https://images.isbndb.com/covers/03/87/9780394800387.jpg'), - ('0802769756', 'A First Look At Ducks, Geese, And Swans (1st Look At Series)', 'https://images.isbndb.com/covers/97/56/9780802769756.jpg'), - ('0679823859', 'The Nutcracker Ballet (Step-Into-Reading, Step 3)', 'https://images.isbndb.com/covers/38/58/9780679823858.jpg'), - ('0064430227', 'Harold And The Purple Crayon 50th Anniversary Edition (Purple Crayon Books)', 'https://images.isbndb.com/covers/02/27/9780064430227.jpg'), - ('0030423910', 'Circus ABC', 'https://images.isbndb.com/covers/39/18/9780030423918.jpg'), - ('0140502076', 'Madeline''s Rescue', 'https://images.isbndb.com/covers/20/77/9780140502077.jpg'), - ('0843110406', 'Prince What-A-Mess', 'https://images.isbndb.com/covers/04/01/9780843110401.jpg'), - ('0843110430', 'What-A-Mess On The Beach', 'https://images.isbndb.com/covers/04/32/9780843110432.jpg'), - ('0881380199', 'Humands (A Star & Elephant Book)', 'https://images.isbndb.com/covers/01/94/9780881380194.jpg'), - ('1853261580', 'The Little Prince (Wordsworth Children''s Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/15/89/9781853261589.jpg'), - ('0307968219', 'Secret Of Nimh Storybook', 'https://images.isbndb.com/covers/82/10/9780307968210.jpg'), - ('0789495929', 'Sharks (DK Pockets)', 'https://images.isbndb.com/covers/59/21/9780789495921.jpg'), - ('0920236162', 'The Paper Bag Princess (Classic Munsch)', 'https://images.isbndb.com/covers/61/61/9780920236161.jpg'), - ('0140183515', 'Just-So Stories: For Little Children (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/35/11/9780140183511.jpg'), - ('0152014209', 'I Stay Near You: One Story In Three', 'https://images.isbndb.com/covers/42/09/9780152014209.jpg'), - ('0517556758', 'Weddings By Martha Stewart', 'https://images.isbndb.com/covers/67/57/9780517556757.jpg'), - ('0881660965', 'The Best Wedding Shower Book: A Complete Guide For Party Planners', 'https://images.isbndb.com/covers/09/68/9780881660968.jpg'), - ('188559304X', 'Vroom! Vroom!: Making ''Dozers, ''Copters, Trucks & More (Williamson Little Hands Book)', 'https://images.isbndb.com/covers/30/47/9781885593047.jpg'), - ('1557346755', 'Simple Science Fun: Hands-On Science Made Easy', 'https://images.isbndb.com/covers/67/59/9781557346759.jpg'), - ('155734678X', 'Creative Crafts For Clever Kids: Exciting Projects From Everyday Stuff', 'https://images.isbndb.com/covers/67/80/9781557346780.jpg'), - ('1557346763', 'Art For All Seasons: Simple, Fun Projects For Seasons And Holidays', 'https://images.isbndb.com/covers/67/66/9781557346766.jpg'), - ('0061093335', 'Nora, Nora: A Novel', 'https://images.isbndb.com/covers/33/33/9780061093333.jpg'), - ('0385479670', 'Catechism Of The Catholic Church', 'https://images.isbndb.com/covers/96/77/9780385479677.jpg'), - ('0786861924', 'The Beardstown Ladies'' Stitch-In-Time Guide To Growing Your Nest Egg: Step-By-Step Planning For A Comfortable Financial Future', 'https://images.isbndb.com/covers/19/27/9780786861927.jpg'), - ('0890430403', 'How To Buy A House, Condo, Or Co-Op', 'https://images.isbndb.com/covers/04/08/9780890430408.jpg'), - ('1551669021', 'Like Silk', 'https://images.isbndb.com/covers/90/21/9781551669021.jpg'), - ('076270327X', 'North Carolina Curiosities, 3rd: Jerry Bledsoe''s Guide To Outlandish Things To See And Do In North Carolina', 'https://images.isbndb.com/covers/32/72/9780762703272.jpg'), - ('0375504443', 'Double Fold: Libraries And The Assault On Paper', 'https://images.isbndb.com/covers/44/40/9780375504440.jpg'), - ('0618015841', 'Word Freak: Heartbreak, Triumph, Genius, And Obsession In The World Of Competitive Scrabble Players', 'https://images.isbndb.com/covers/58/49/9780618015849.jpg'), - ('0681403225', 'More Than Complete Hitchhiker''s Guide: Complete & Unabridged', 'https://images.isbndb.com/covers/32/22/9780681403222.jpg'), - ('0385316518', 'The Plague Tales', 'https://images.isbndb.com/covers/65/14/9780385316514.jpg'), - ('0440324971', 'The Feminine Mystique', 'https://images.isbndb.com/covers/49/73/9780440324973.jpg'), - ('0140168125', 'Big Sur', 'https://images.isbndb.com/covers/81/29/9780140168129.jpg'), - ('0192829068', 'The Masterpiece (The World''s Classics)', 'https://images.isbndb.com/covers/90/61/9780192829061.jpg'), - ('0688141862', 'The Yankee Way To Simplify Your Life: Old-Fashioned Wisdom For A New-fangled World', 'https://images.isbndb.com/covers/18/68/9780688141868.jpg'), - ('0446602450', 'Spencerville', 'https://images.isbndb.com/covers/24/57/9780446602457.jpg'), - ('0804113831', 'Sins Of The Wolf (William Monk Novels)', 'https://images.isbndb.com/covers/38/30/9780804113830.jpg'), - ('0061092193', 'Men At Arms', 'https://images.isbndb.com/covers/21/90/9780061092190.jpg'), - ('0061031321', 'Thief Of Time', 'https://images.isbndb.com/covers/13/28/9780061031328.jpg'), - ('0446359750', 'Devices And Desires (Adam Dalgliesh Mystery Series #8)', 'https://images.isbndb.com/covers/97/57/9780446359757.jpg'), - ('0380818604', 'The Curse Of Chalion', 'https://images.isbndb.com/covers/86/00/9780380818600.jpg'), - ('0812577833', 'The Far Shore Of Time (Eschaton Sequence)', 'https://images.isbndb.com/covers/78/39/9780812577839.jpg'), - ('0440208513', 'Evening News, The', 'https://images.isbndb.com/covers/85/18/9780440208518.jpg'), - ('0553299077', 'The Face Of The Waters', 'https://images.isbndb.com/covers/90/76/9780553299076.jpg'), - ('0061054895', 'Soul Music', 'https://images.isbndb.com/covers/48/91/9780061054891.jpg'), - ('0688177867', 'The Book Borrower: A Novel', 'https://images.isbndb.com/covers/78/67/9780688177867.jpg'), - ('0440458226', 'More Adventures Of The Great Brain', 'https://images.isbndb.com/covers/82/27/9780440458227.jpg'), - ('0767916069', 'Under The Tuscan Sun: At Home In Italy', 'https://images.isbndb.com/covers/60/66/9780767916066.jpg'), - ('067943299X', 'Talk Before Sleep', 'https://images.isbndb.com/covers/29/99/9780679432999.jpg'), - ('0156027119', 'Becoming Mona Lisa', 'https://images.isbndb.com/covers/71/13/9780156027113.jpg'), - ('0590065912', 'Karen''s Cooking Contest (Baby-Sitters Little Sister)', 'https://images.isbndb.com/covers/59/17/9780590065917.jpg'), - ('0966853016', 'Simon''s Hook; A Story About Teases And Put-downs', 'https://images.isbndb.com/covers/30/18/9780966853018.jpg'), - ('0689832133', 'Click, Clack, Moo: Cows That Type', 'https://images.isbndb.com/covers/21/30/9780689832130.jpg'), - ('0140179836', 'The Liars'' Club: A Memoir', 'https://images.isbndb.com/covers/98/35/9780140179835.jpg'), - ('0553580906', 'Claws And Effect (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/09/07/9780553580907.jpg'), - ('0300080301', 'Five Days In London, May 1940', 'https://images.isbndb.com/covers/03/08/9780300080308.jpg'), - ('044022103X', 'One True Thing: Love What You Have', 'https://images.isbndb.com/covers/10/36/9780440221036.jpg'), - ('0553581554', 'The Killing Game: A Novel (Eve Duncan)', 'https://images.isbndb.com/covers/15/53/9780553581553.jpg'), - ('0373834349', 'Mail-Order Marriages: Brides For Brothers/Marriage Risk (Midnight Sons 1-2)', 'https://images.isbndb.com/covers/43/41/9780373834341.jpg'), - ('0451179803', 'Spandau Phoenix: A Novel', 'https://images.isbndb.com/covers/98/07/9780451179807.jpg'), - ('0451203593', '24 Hours', 'https://images.isbndb.com/covers/35/95/9780451203595.jpg'), - ('0764223305', 'The Covenant (Abram''s Daughters #1)', 'https://images.isbndb.com/covers/33/03/9780764223303.jpg'), - ('0451207505', 'Trapped', 'https://images.isbndb.com/covers/75/00/9780451207500.jpg'), - ('1575666731', 'Plain Jane', 'https://images.isbndb.com/covers/67/30/9781575666730.jpg'), - ('0396080111', 'Secret Languages Of The Sea', 'https://images.isbndb.com/covers/01/14/9780396080114.jpg'), - ('0030476267', 'Inheritance', 'https://images.isbndb.com/covers/62/66/9780030476266.jpg'), - ('0812507436', 'People Of The River (The First North Americans Series, Book 4)', 'https://images.isbndb.com/covers/74/30/9780812507430.jpg'), - ('0201093804', 'Touchpoints The Essential Reference: Your Child''s Emotional And Behavioral Development', 'https://images.isbndb.com/covers/38/03/9780201093803.jpg'), - ('0671760602', 'Dr. Spock''s Baby And Child Care', 'https://images.isbndb.com/covers/06/01/9780671760601.jpg'), - ('0970634706', 'Heart Magic : Keeping Love Alive & Well', 'https://images.isbndb.com/covers/47/02/9780970634702.jpg'), - ('2020336480', 'Les Fous De Bassan', 'https://images.isbndb.com/covers/64/82/9782020336482.jpg'), - ('2070378306', 'La Maladie Humaine', 'https://images.isbndb.com/covers/83/02/9782070378302.jpg'), - ('2020315599', 'Un Secret Sans Importance', 'https://images.isbndb.com/covers/55/93/9782020315593.jpg'), - ('2080671618', 'On Dirait Des îles', 'https://images.isbndb.com/covers/16/15/9782080671615.jpg'), - ('2868697984', 'Un Chant D''amour', 'https://images.isbndb.com/covers/79/81/9782868697981.jpg'), - ('2253942723', 'Histoire De La Philosophie Moderne Et Contemporaine', 'https://images.isbndb.com/covers/27/26/9782253942726.jpg'), - ('2253942731', 'Histoire De La Philosophie Moderne Et Contemporaine', 'https://images.isbndb.com/covers/27/33/9782253942733.jpg'), - ('2070425266', 'Amours En Fuite', 'https://images.isbndb.com/covers/52/66/9782070425266.jpg'), - ('2070411729', 'Le Dieu Des Petits Riens', 'https://images.isbndb.com/covers/17/26/9782070411726.jpg'), - ('202009908X', 'La Vie Fantôme', 'https://images.isbndb.com/covers/90/80/9782020099080.jpg'), - ('2842190068', 'Nazis Dans Le Métro', 'https://images.isbndb.com/covers/00/64/9782842190064.jpg'), - ('2266023209', 'Le Chien Jaune', 'https://images.isbndb.com/covers/32/07/9782266023207.jpg'), - ('2264023481', 'La Bible De Néon', 'https://images.isbndb.com/covers/34/83/9782264023483.jpg'), - ('0345331397', 'I, Robot', 'https://images.isbndb.com/covers/13/97/9780345331397.jpg'), - ('2070361039', 'Zazie Dans Le Métro', 'https://images.isbndb.com/covers/10/38/9782070361038.jpg'), - ('207072333X', 'Aller Aux Mirabelles', 'https://images.isbndb.com/covers/33/31/9782070723331.jpg'), - ('2290328685', 'Je Vous Aime. : Les Plus Belles Lettres D''amour', 'https://images.isbndb.com/covers/86/82/9782290328682.jpg'), - ('2020281341', 'La Vie Me Fait Peur', 'https://images.isbndb.com/covers/13/48/9782020281348.jpg'), - ('2020323656', 'Kennedy Et Moi', 'https://images.isbndb.com/covers/36/59/9782020323659.jpg'), - ('2253037389', 'Le Bouc émissaire', 'https://images.isbndb.com/covers/73/85/9782253037385.jpg'), - ('2020094851', 'Sky My Husband ! : Guide Of The Running English', 'https://images.isbndb.com/covers/48/56/9782020094856.jpg'), - ('2020099136', 'Catalogue Des Idées Reçues Sur La Langue', 'https://images.isbndb.com/covers/91/34/9782020099134.jpg'), - ('2253023906', 'La Vie Mode D''emploi', 'https://images.isbndb.com/covers/39/06/9782253023906.jpg'), - ('2290045764', 'Extension Du Domaine De La Lutte', 'https://images.isbndb.com/covers/57/63/9782290045763.jpg'), - ('225314911X', 'Mercure', 'https://images.isbndb.com/covers/91/18/9782253149118.jpg'), - ('0679751750', 'Texaco: A Novel', 'https://images.isbndb.com/covers/17/55/9780679751755.jpg'), - ('0679751769', 'Solibo Magnificent', 'https://images.isbndb.com/covers/17/62/9780679751762.jpg'), - ('2070332748', 'Histoires Du Gaillard D''avant', 'https://images.isbndb.com/covers/27/48/9782070332748.jpg'), - ('2070369439', 'Le Marin De Gibraltar', 'https://images.isbndb.com/covers/94/30/9782070369430.jpg'), - ('2070426777', 'De La Vanité', 'https://images.isbndb.com/covers/67/75/9782070426775.jpg'), - ('2290302481', 'Le Maître Du Haut Château', 'https://images.isbndb.com/covers/24/84/9782290302484.jpg'), - ('0744302749', 'Gypsy Pie', 'https://images.isbndb.com/covers/27/45/9780744302745.jpg'), - ('3257231598', 'Schwesternliebe.', 'https://images.isbndb.com/covers/15/95/9783257231595.jpg'), - ('0751528498', 'The Ambassador', 'https://images.isbndb.com/covers/84/97/9780751528497.jpg'), - ('3478719615', 'Speed Reading. Schneller Lesen - Mehr Verstehen - Besser Behalten', 'https://images.isbndb.com/covers/96/12/9783478719612.jpg'), - ('3596137225', 'Verwandlungen / Transformations. Gedichte', 'https://images.isbndb.com/covers/72/20/9783596137220.jpg'), - ('0446341878', 'Bloodline', 'https://images.isbndb.com/covers/18/75/9780446341875.jpg'), - ('3257231180', 'Acqua Alta: Commissario Brunettis Fünfter Fall', 'https://images.isbndb.com/covers/11/82/9783257231182.jpg'), - ('3451048582', 'Das Etruskische Lächeln', 'https://images.isbndb.com/covers/85/86/9783451048586.jpg'), - ('0962655104', 'The Writings On The Wall: Peace At The Berlin Wall', 'https://images.isbndb.com/covers/51/04/9780962655104.jpg'), - ('3499228653', 'Das Bild Der Alten Dame', 'https://images.isbndb.com/covers/86/50/9783499228650.jpg'), - ('0451180232', 'Nightmares And Dreamscapes', 'https://images.isbndb.com/covers/02/30/9780451180230.jpg'), - ('1570671044', 'Spiritual Midwifery', 'https://images.isbndb.com/covers/10/43/9781570671043.jpg'), - ('0905712609', 'Stephen King: The Shining, Salems Lot, Night Shift, Carrie', 'https://images.isbndb.com/covers/26/04/9780905712604.jpg'), - ('0671625837', 'The Long Dark Tea-Time Of The Soul', 'https://images.isbndb.com/covers/58/32/9780671625832.jpg'), - ('0517693119', 'The More Than Complete Hitchhikers Guide', 'https://images.isbndb.com/covers/31/17/9780517693117.jpg'), - ('0452275350', 'Too Good To Leave, Too Bad To Stay: A Step-by-Step Guide To Help You Decide Whether To Stay In Or Get Out Of Your Relationship', 'https://images.isbndb.com/covers/53/55/9780452275355.jpg'), - ('0395584159', 'Myths Of Motherhood', 'https://images.isbndb.com/covers/41/56/9780395584156.jpg'), - ('0913028673', 'Psyche And Substance: Essays On Homoeopathy In The Light Of Jungian Psychology', 'https://images.isbndb.com/covers/86/74/9780913028674.jpg'), - ('0415040132', 'The Cultural Construction Of Sexuality', 'https://images.isbndb.com/covers/01/36/9780415040136.jpg'), - ('0836269640', '1,003 Great Things About Kids', 'https://images.isbndb.com/covers/96/42/9780836269642.jpg'), - ('1551667878', 'Night Heat', 'https://images.isbndb.com/covers/78/74/9781551667874.jpg'), - ('157566383X', 'Come The Morning', 'https://images.isbndb.com/covers/38/38/9781575663838.jpg'), - ('0380790718', 'The Dark Shore (The Dominions, Book 1)', 'https://images.isbndb.com/covers/07/15/9780380790715.jpg'), - ('0590462105', 'Jennie Garth (Star Shots Collector''s Book, 4)', 'https://images.isbndb.com/covers/21/05/9780590462105.jpg'), - ('0590462121', 'Tori Spelling (Star Shots Collector''s Book, 6)', 'https://images.isbndb.com/covers/21/29/9780590462129.jpg'), - ('0812022009', 'Basic Tips On The SAT', 'https://images.isbndb.com/covers/20/01/9780812022001.jpg'), - ('037321815X', 'Anything, Anywhere, Anytime', 'https://images.isbndb.com/covers/81/58/9780373218158.jpg'), - ('0373293143', 'West Of Heaven (Harlequin Historical)', 'https://images.isbndb.com/covers/31/48/9780373293148.jpg'), - ('0373293135', 'Fulk The Reluctant (Harlequin Historical)', 'https://images.isbndb.com/covers/31/31/9780373293131.jpg'), - ('0399145702', 'The Cat Who Robbed A Bank', 'https://images.isbndb.com/covers/57/04/9780399145704.jpg'), - ('0446346802', 'Brothers', 'https://images.isbndb.com/covers/68/01/9780446346801.jpg'), - ('0590483447', 'The Barking Ghost (Goosebumps #32)', 'https://images.isbndb.com/covers/34/45/9780590483445.jpg'), - ('0590453688', 'Say Cheese And Die! (Goosebumps)', 'https://images.isbndb.com/covers/36/84/9780590453684.jpg'), - ('0451137965', 'Thinner (Signet)', 'https://images.isbndb.com/covers/79/68/9780451137968.jpg'), - ('0553266578', 'The Unwanted', 'https://images.isbndb.com/covers/65/73/9780553266573.jpg'), - ('0449219550', 'Longshot', 'https://images.isbndb.com/covers/95/53/9780449219553.jpg'), - ('0425128164', 'The Voice Of The Night', 'https://images.isbndb.com/covers/81/69/9780425128169.jpg'), - ('0425107469', 'Watchers', 'https://images.isbndb.com/covers/74/61/9780425107461.jpg'), - ('0451162145', 'Koko', 'https://images.isbndb.com/covers/21/44/9780451162144.jpg'), - ('042510687X', 'Outbreak', 'https://images.isbndb.com/covers/68/77/9780425106877.jpg'), - ('0451451481', 'Stalkers', 'https://images.isbndb.com/covers/14/84/9780451451484.jpg'), - ('0440198577', 'When The Wind Blows', 'https://images.isbndb.com/covers/85/74/9780440198574.jpg'), - ('0553262645', 'Nathaniel', 'https://images.isbndb.com/covers/26/43/9780553262643.jpg'), - ('044018293X', 'Suffer The Children', 'https://images.isbndb.com/covers/29/31/9780440182931.jpg'), - ('0590568817', 'Say Cheese And Die-Again! (Goosebumps)', 'https://images.isbndb.com/covers/88/14/9780590568814.jpg'), - ('0553573616', 'My Point...And I Do Have One', 'https://images.isbndb.com/covers/36/19/9780553573619.jpg'), - ('0515101230', 'The Cat Who Went Underground', 'https://images.isbndb.com/covers/12/32/9780515101232.jpg'), - ('0515129941', 'The Cat Who Robbed A Bank', 'https://images.isbndb.com/covers/99/46/9780515129946.jpg'), - ('0590421174', 'How Spider Saved Halloween', 'https://images.isbndb.com/covers/11/71/9780590421171.jpg'), - ('089919463X', 'The Teeny-Tiny Woman', 'https://images.isbndb.com/covers/46/39/9780899194639.jpg'), - ('0590250841', 'Hyde And Go Shriek And Hunted (Tales From The Cryptkeeper)', 'https://images.isbndb.com/covers/08/49/9780590250849.jpg'), - ('0590250884', 'Tales From The Cryptkeeper', 'https://images.isbndb.com/covers/08/87/9780590250887.jpg'), - ('0743492919', 'Resident Evil: Genesis', 'https://images.isbndb.com/covers/29/11/9780743492911.jpg'), - ('0671039946', 'Ice (Shooting Stars)', 'https://images.isbndb.com/covers/99/43/9780671039943.jpg'), - ('0671039954', 'Rose (Shooting Stars, Bk. 3)', 'https://images.isbndb.com/covers/99/50/9780671039950.jpg'), - ('0671039962', 'Honey', 'https://images.isbndb.com/covers/99/67/9780671039967.jpg'), - ('0807554545', 'The Mystery Of The Pirate''s Map (The Boxcar Children Mysteries #70)', 'https://images.isbndb.com/covers/45/48/9780807554548.jpg'), - ('0807534374', 'The Hurricane Mystery (The Boxcar Children Mysteries #54)', 'https://images.isbndb.com/covers/43/73/9780807534373.jpg'), - ('0807530816', 'The Guide Dog Mystery (The Boxcar Children Mysteries #53)', 'https://images.isbndb.com/covers/08/18/9780807530818.jpg'), - ('0807554227', 'The Mystery Bookstore (The Boxcar Children Mysteries #48)', 'https://images.isbndb.com/covers/42/27/9780807554227.jpg'), - ('0807554200', 'The Mystery Of The Hot Air Balloon (The Boxcar Children Mysteries #47)', 'https://images.isbndb.com/covers/42/03/9780807554203.jpg'), - ('0671002031', 'Temptation', 'https://images.isbndb.com/covers/20/39/9780671002039.jpg'), - ('0872863077', 'Returning To A', 'https://images.isbndb.com/covers/30/71/9780872863071.jpg'), - ('0786014245', 'She Loves Me Not', 'https://images.isbndb.com/covers/42/48/9780786014248.jpg'), - ('0312312261', 'Are You Hungry, Dear?: Life, Laughs, And Lasagna', 'https://images.isbndb.com/covers/22/68/9780312312268.jpg'), - ('1574090356', 'Titanic Survivor', 'https://images.isbndb.com/covers/03/52/9781574090352.jpg'), - ('0142000221', 'Cause Celeb', 'https://images.isbndb.com/covers/02/29/9780142000229.jpg'), - ('014014773X', 'The Things They Carried (Contemporary American Fiction)', 'https://images.isbndb.com/covers/77/35/9780140147735.jpg'), - ('0060910690', 'Zelda: A Biography', 'https://images.isbndb.com/covers/06/93/9780060910693.jpg'), - ('0812925300', 'Where The Girls Are: Growing Up Female With The Mass Media', 'https://images.isbndb.com/covers/53/02/9780812925302.jpg'), - ('0312953496', 'Knowledge In A Nutshell', 'https://images.isbndb.com/covers/34/92/9780312953492.jpg'), - ('1858283434', 'The Rough Guide To The Internet 1999', 'https://images.isbndb.com/covers/34/32/9781858283432.jpg'), - ('0671732129', 'When All You Ever Wanted Isn''t Enough', 'https://images.isbndb.com/covers/21/27/9780671732127.jpg'), - ('0140041796', 'Switch Bitch', 'https://images.isbndb.com/covers/17/98/9780140041798.jpg'), - ('052594544X', 'On Secret Service', 'https://images.isbndb.com/covers/54/44/9780525945444.jpg'), - ('1567313590', 'Why People Believe Weird Things: Pseudo-Science, Superstition, And Bogus Notions Of Our Time', 'https://images.isbndb.com/covers/35/98/9781567313598.jpg'), - ('0812551478', 'Blood Of The Fold (Sword Of Truth, Book 3)', 'https://images.isbndb.com/covers/14/71/9780812551471.jpg'), - ('0765346524', 'Wizard''s First Rule', 'https://images.isbndb.com/covers/65/20/9780765346520.jpg'), - ('0345434676', 'Pegasus In Space', 'https://images.isbndb.com/covers/46/78/9780345434678.jpg'), - ('078670442X', 'The Drive-In: A Double-Feature Omnibus', 'https://images.isbndb.com/covers/44/22/9780786704422.jpg'), - ('0505525372', 'Spellbound In Seattle', 'https://images.isbndb.com/covers/53/76/9780505525376.jpg'), - ('055357339X', 'Assassin''s Apprentice (The Farseer Trilogy, Book 1)', 'https://images.isbndb.com/covers/33/98/9780553573398.jpg'), - ('0553209671', 'Sophie''s Choice', 'https://images.isbndb.com/covers/96/79/9780553209679.jpg'), - ('0440204208', 'Blood Shot (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/42/06/9780440204206.jpg'), - ('0140074511', 'How To Become Ridiculously Well-read In One Evening: A Collection Of Literary Encapsulations', 'https://images.isbndb.com/covers/45/12/9780140074512.jpg'), - ('0843952016', 'The Rising', 'https://images.isbndb.com/covers/20/18/9780843952018.jpg'), - ('0843951907', 'Dark Universe', 'https://images.isbndb.com/covers/19/05/9780843951905.jpg'), - ('0843949783', 'Island', 'https://images.isbndb.com/covers/97/80/9780843949780.jpg'), - ('0156252856', 'Der Kleine Prinz (A Harvest /HBJ Book) (German Edition)', 'https://images.isbndb.com/covers/28/50/9780156252850.jpg'), - ('1858286999', 'The Rough Guide To Japan 2 (Rough Guide Travel Guides)', 'https://images.isbndb.com/covers/69/90/9781858286990.jpg'), - ('1740591623', 'Lonely Planet Japan', 'https://images.isbndb.com/covers/16/21/9781740591621.jpg'), - ('3761400853', 'Silvestergespräche Eines Sechsecks: Ein Phantastischer Roman Von Gekrümmten Räumen Und Dem Sich Ausdehnenden Weltall', 'https://images.isbndb.com/covers/08/52/9783761400852.jpg'), - ('0864427557', 'Lonely Planet China', 'https://images.isbndb.com/covers/75/57/9780864427557.jpg'), - ('346202261X', 'American Psycho', 'https://images.isbndb.com/covers/26/12/9783462022612.jpg'), - ('3257217005', 'Meistererzählungen', 'https://images.isbndb.com/covers/70/01/9783257217001.jpg'), - ('0345315227', '3001 The Final Odyssey', 'https://images.isbndb.com/covers/52/29/9780345315229.jpg'), - ('0312871996', 'The Light Of Other Days', 'https://images.isbndb.com/covers/19/94/9780312871994.jpg'), - ('3455003273', 'Amerika', 'https://images.isbndb.com/covers/32/77/9783455003277.jpg'), - ('1571741119', 'The Books In My Life', 'https://images.isbndb.com/covers/11/10/9781571741110.jpg'), - ('0140620443', 'Hard Times (Penguin Popular Classics)', 'https://images.isbndb.com/covers/04/43/9780140620443.jpg'), - ('0517053616', 'William Shakespeare: The Complete Works, Deluxe Edition', 'https://images.isbndb.com/covers/36/14/9780517053614.jpg'), - ('0517147815', 'Lewis Carroll: The Complete, Fully Illustrated Works, Deluxe Edition', 'https://images.isbndb.com/covers/78/18/9780517147818.jpg'), - ('3453217314', 'Der Unmögliche Planet: Stories', 'https://images.isbndb.com/covers/73/17/9783453217317.jpg'), - ('0679436154', 'The Diagnosis: A Novel', 'https://images.isbndb.com/covers/61/57/9780679436157.jpg'), - ('345834277X', 'Das Dekameron (insel Taschenbuch)', 'https://images.isbndb.com/covers/27/79/9783458342779.jpg'), - ('0140135375', 'The Divided Self: An Existential Study In Sanity And Madness (Penguin Psychology)', 'https://images.isbndb.com/covers/53/74/9780140135374.jpg'), - ('0140442529', 'Notes From Underground; The Double (Penguin Classics)', 'https://images.isbndb.com/covers/25/26/9780140442526.jpg'), - ('3596258758', 'Die Verwandlung. Mit Einem Kommentar Von Vladimir Nabokov', 'https://images.isbndb.com/covers/87/58/9783596258758.jpg'), - ('3518068547', 'Von Seinen Lüsten Träumen', 'https://images.isbndb.com/covers/85/40/9783518068540.jpg'), - ('057106700X', 'Finnegans Wake (Faber Paper Covered Edition)', 'https://images.isbndb.com/covers/70/08/9780571067008.jpg'), - ('0140422161', 'Don Juan (Penguin Classics)', 'https://images.isbndb.com/covers/21/60/9780140422160.jpg'), - ('0006547834', 'Miss Smillas Feeling For Snow', 'https://images.isbndb.com/covers/78/39/9780006547839.jpg'), - ('1559706643', 'Black Dahlia Avenger: The True Story', 'https://images.isbndb.com/covers/66/43/9781559706643.jpg'), - ('3442724627', 'Doch Jeder Tötet, Was Er Liebt: Roman', 'https://images.isbndb.com/covers/46/28/9783442724628.jpg'), - ('0670822671', 'My Father''s Moon', 'https://images.isbndb.com/covers/26/76/9780670822676.jpg'), - ('972210585X', 'Cronicando (Uma Terra Sem Amos) (Portuguese Edition)', 'https://images.isbndb.com/covers/58/59/9789722105859.jpg'), - ('9726101794', 'As Mulheres Deviam Vir Com Livro De Instrucoes (Campo Da Literatura) (Portuguese Edition)', 'https://images.isbndb.com/covers/17/96/9789726101796.jpg'), - ('9722002171', 'A Costa DOS Murmurios (French Edition)', 'https://images.isbndb.com/covers/21/72/9789722002172.jpg'), - ('0345410017', 'Fahrenheit 451', 'https://images.isbndb.com/covers/00/16/9780345410016.jpg'), - ('0812550927', '20,000 Leagues Under The Sea', 'https://images.isbndb.com/covers/09/24/9780812550924.jpg'), - ('1577592735', 'THE LION AND THE MOUSE: An AESOP Fable', 'https://images.isbndb.com/covers/27/30/9781577592730.jpg'), - ('0553279300', 'Being There', 'https://images.isbndb.com/covers/93/06/9780553279306.jpg'), - ('0786702524', 'The Bloody Red Baron', 'https://images.isbndb.com/covers/25/27/9780786702527.jpg'), - ('0486414167', 'The Suicide Club (Dover Thrift Editions)', 'https://images.isbndb.com/covers/41/64/9780486414164.jpg'), - ('044100668X', 'The Lost Years Of Merlin (Lost Years Of Merlin, Bk. 1)', 'https://images.isbndb.com/covers/66/87/9780441006687.jpg'), - ('0826452450', 'Bret Easton Ellis''s American Psycho: A Reader''s Guide (Continuum Contemporaries)', 'https://images.isbndb.com/covers/24/50/9780826452450.jpg'), - ('0486270513', 'Songs Of Innocence And Songs Of Experience (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/17/9780486270517.jpg'), - ('0553274325', 'Johnny Got His Gun', 'https://images.isbndb.com/covers/43/25/9780553274325.jpg'), - ('0966505301', 'The Immortal', 'https://images.isbndb.com/covers/53/06/9780966505306.jpg'), - ('0375500936', 'The Silver Castle', 'https://images.isbndb.com/covers/09/30/9780375500930.jpg'), - ('034910171X', 'Canal Dreams', 'https://images.isbndb.com/covers/17/12/9780349101712.jpg'), - ('0385494238', 'Amsterdam', 'https://images.isbndb.com/covers/42/36/9780385494236.jpg'), - ('0671855670', 'Popcorn', 'https://images.isbndb.com/covers/56/73/9780671855673.jpg'), - ('3453152816', 'Frankreich', 'https://images.isbndb.com/covers/28/16/9783453152816.jpg'), - ('0333375114', '"Rolling Stone" Rock Almanac', 'https://images.isbndb.com/covers/51/12/9780333375112.jpg'), - ('0786861347', 'Don''t Stand Too Close To A Naked Man', 'https://images.isbndb.com/covers/13/47/9780786861347.jpg'), - ('1590889754', 'Shadows Of The Eclipse', 'https://images.isbndb.com/covers/97/56/9781590889756.jpg'), - ('0452283248', 'Leading The Revolution', 'https://images.isbndb.com/covers/32/44/9780452283244.jpg'), - ('0945320531', 'Understanding Variation: The Key To Managing Chaos', 'https://images.isbndb.com/covers/05/31/9780945320531.jpg'), - ('0425105334', 'The Talisman', 'https://images.isbndb.com/covers/53/37/9780425105337.jpg'), - ('0395878063', 'Fahrenheit 451: And Related Readings (Literature Connections)', 'https://images.isbndb.com/covers/80/64/9780395878064.jpg'), - ('0553580191', 'Seize The Night', 'https://images.isbndb.com/covers/01/98/9780553580198.jpg'), - ('0440442508', 'Johnny Tremain', 'https://images.isbndb.com/covers/25/09/9780440442509.jpg'), - ('0064400859', 'Dragonwings', 'https://images.isbndb.com/covers/08/55/9780064400855.jpg'), - ('0064400565', 'Stuart Little', 'https://images.isbndb.com/covers/05/65/9780064400565.jpg'), - ('0439049962', 'Captain Underpants And The Invasion Of The Incredibly Naughty Cafeteria Ladies From Outer Space (and The Subsequent Assault Of The Equally Evil Lunchroom Zombie Nerds)', 'https://images.isbndb.com/covers/99/62/9780439049962.jpg'), - ('0590846280', 'The Adventures Of Captain Underpants', 'https://images.isbndb.com/covers/62/88/9780590846288.jpg'), - ('0316358487', 'The Red Sea Sharks (The Adventures Of Tintin)', 'https://images.isbndb.com/covers/84/84/9780316358484.jpg'), - ('0316358452', 'Destination Moon (The Adventures Of Tintin)', 'https://images.isbndb.com/covers/84/53/9780316358453.jpg'), - ('0380787717', 'True Believers', 'https://images.isbndb.com/covers/77/15/9780380787715.jpg'), - ('0006485936', 'DUST', 'https://images.isbndb.com/covers/59/33/9780006485933.jpg'), - ('0671558684', 'The Awakening Heart: My Continuing Journey To Love', 'https://images.isbndb.com/covers/86/80/9780671558680.jpg'), - ('0345379365', 'Remember', 'https://images.isbndb.com/covers/93/68/9780345379368.jpg'), - ('0312855222', 'Beowulf''s Children', 'https://images.isbndb.com/covers/52/22/9780312855222.jpg'), - ('0345307615', 'Split Infinity (Apprentice Adept, Bk. 1)', 'https://images.isbndb.com/covers/76/13/9780345307613.jpg'), - ('0345315723', 'Dragonsbane', 'https://images.isbndb.com/covers/57/24/9780345315724.jpg'), - ('0201754703', 'The Little PC Book Windows XP Edition', 'https://images.isbndb.com/covers/47/04/9780201754704.jpg'), - ('0804119368', 'The Twisted Root (William Monk Novels)', 'https://images.isbndb.com/covers/93/68/9780804119368.jpg'), - ('0375759999', 'Dark Star: A Novel', 'https://images.isbndb.com/covers/99/94/9780375759994.jpg'), - ('0375758232', 'Paris To The Moon', 'https://images.isbndb.com/covers/82/32/9780375758232.jpg'), - ('0679413138', 'The World At Night', 'https://images.isbndb.com/covers/31/34/9780679413134.jpg'), - ('0525939105', 'Busy Bodies (Claire Malloy Mysteries, No. 10)', 'https://images.isbndb.com/covers/91/08/9780525939108.jpg'), - ('0375758275', 'The Polish Officer: A Novel', 'https://images.isbndb.com/covers/82/70/9780375758270.jpg'), - ('0451172817', 'Needful Things: The Last Castle Rock Story', 'https://images.isbndb.com/covers/28/15/9780451172815.jpg'), - ('0671886665', 'A Cry In The Night', 'https://images.isbndb.com/covers/66/60/9780671886660.jpg'), - ('0440487617', 'A Wind In The Door', 'https://images.isbndb.com/covers/76/16/9780440487616.jpg'), - ('0590109960', 'Last Stop (Watchers, No. 1)', 'https://images.isbndb.com/covers/99/63/9780590109963.jpg'), - ('0590462261', 'Back To The Titanic (Travelers Through Time, No. 1)', 'https://images.isbndb.com/covers/22/66/9780590462266.jpg'), - ('0440227194', 'Brian''s Winter', 'https://images.isbndb.com/covers/71/99/9780440227199.jpg'), - ('044021985X', 'Tomorrow, When The War Began (The Tomorrow Series #1)', 'https://images.isbndb.com/covers/98/59/9780440219859.jpg'), - ('0440220238', 'Kinship (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/02/37/9780440220237.jpg'), - ('0767915062', 'Bill Bryson''s African Diary', 'https://images.isbndb.com/covers/50/69/9780767915069.jpg'), - ('0062516930', 'The Dance: Moving To The Rhythms Of Your True Self', 'https://images.isbndb.com/covers/69/30/9780062516930.jpg'), - ('0679755047', 'Beard On Bread', 'https://images.isbndb.com/covers/50/43/9780679755043.jpg'), - ('0374173133', 'Housekeeping: A Novel', 'https://images.isbndb.com/covers/31/35/9780374173135.jpg'), - ('0060509171', 'City Of The Beasts', 'https://images.isbndb.com/covers/91/70/9780060509170.jpg'), - ('080506995X', 'Global Woman: Nannies, Maids, And Sex Workers In The New Economy', 'https://images.isbndb.com/covers/99/52/9780805069952.jpg'), - ('0809140586', 'Walking With Thomas Merton: Discovering His Poetry, Essays, And Journals', 'https://images.isbndb.com/covers/05/89/9780809140589.jpg'), - ('1583224890', '9-11', 'https://images.isbndb.com/covers/48/92/9781583224892.jpg'), - ('0809141353', 'Best Practices From America''s Best Churches', 'https://images.isbndb.com/covers/13/57/9780809141357.jpg'), - ('006008829X', 'Choices: Taking Control Of Your Life And Making It Matter', 'https://images.isbndb.com/covers/82/93/9780060088293.jpg'), - ('0764551620', 'Investing For Dummies, Second Edition', 'https://images.isbndb.com/covers/16/28/9780764551628.jpg'), - ('0553096087', 'The Mediterranean Diet Cookbook: A Delicious Alternative For Lifelong Health', 'https://images.isbndb.com/covers/60/88/9780553096088.jpg'), - ('0737003103', 'Papering & Painting (Time-Life Do-It-Yourself Factfiles, 4)', 'https://images.isbndb.com/covers/31/09/9780737003109.jpg'), - ('074322423X', 'Self Matters : Creating Your Life From The Inside Out', 'https://images.isbndb.com/covers/42/39/9780743224239.jpg'), - ('1572242396', 'Spiritual Housecleaning: Healing The Space Within By Beautifying The Space Around You', 'https://images.isbndb.com/covers/23/95/9781572242395.jpg'), - ('0312981589', 'Robert Ludlum''s The Cassandra Compact', 'https://images.isbndb.com/covers/15/87/9780312981587.jpg'), - ('006019328X', 'Plato, Not Prozac! Applying Philosophy To Everyday Problems', 'https://images.isbndb.com/covers/32/87/9780060193287.jpg'), - ('0399525009', 'Posture, Get It Straight!', 'https://images.isbndb.com/covers/50/01/9780399525001.jpg'), - ('0062508342', 'The Tibetan Book Of Living And Dying: The Spiritual Classic & International Bestseller', 'https://images.isbndb.com/covers/83/48/9780062508348.jpg'), - ('0140195874', 'One Continuous Mistake : Four Noble Truths For Writers', 'https://images.isbndb.com/covers/58/73/9780140195873.jpg'), - ('1591860008', 'Month-By-Month Gardening In The Desert Southwest', 'https://images.isbndb.com/covers/00/06/9781591860006.jpg'), - ('0874779685', 'Working Out, Working Within', 'https://images.isbndb.com/covers/96/84/9780874779684.jpg'), - ('0066214424', 'Communion: The Female Search For Love', 'https://images.isbndb.com/covers/44/29/9780066214429.jpg'), - ('0345394070', 'Living In Process : Basic Truths For Living The Path Of The Soul', 'https://images.isbndb.com/covers/40/71/9780345394071.jpg'), - ('0376017201', 'Ideas For Great Wall Systems', 'https://images.isbndb.com/covers/72/08/9780376017208.jpg'), - ('0376016760', 'Working With Tile', 'https://images.isbndb.com/covers/67/68/9780376016768.jpg'), - ('0696208180', 'Step-by-Step Tiling Projects (Better Homes & Gardens: Step By Step)', 'https://images.isbndb.com/covers/81/88/9780696208188.jpg'), - ('0060958014', 'Coastliners: A Novel', 'https://images.isbndb.com/covers/80/15/9780060958015.jpg'), - ('0312271247', 'When I Loved Myself Enough', 'https://images.isbndb.com/covers/12/44/9780312271244.jpg'), - ('1559706848', 'Galileo''s Mistake: A New Look At The Epic Confrontation Between Galileo And The Church', 'https://images.isbndb.com/covers/68/41/9781559706841.jpg'), - ('0848723716', '10-20-30 Minutes To Quilt (Sewing With Nancy)', 'https://images.isbndb.com/covers/37/12/9780848723712.jpg'), - ('1564145190', '100 Ways To Motivate Yourself', 'https://images.isbndb.com/covers/51/92/9781564145192.jpg'), - ('1573228354', 'A Woman''s Journey To God', 'https://images.isbndb.com/covers/83/50/9781573228350.jpg'), - ('1573222410', 'Almost There', 'https://images.isbndb.com/covers/24/19/9781573222419.jpg'), - ('1571780386', 'Beyond Fear: A Toltec Guide To Freedom And Joy - The Teachings Of Don Miguel Ruiz', 'https://images.isbndb.com/covers/03/86/9781571780386.jpg'), - ('0764586335', 'Taking And Sharing Digital Photographs (Cliffs Notes)', 'https://images.isbndb.com/covers/63/30/9780764586330.jpg'), - ('0937750123', 'Don Aslett''s Clutter-Free!: Finally & Forever', 'https://images.isbndb.com/covers/01/24/9780937750124.jpg'), - ('1583762027', 'Eat That Frog! 21 Great Ways To Stop Procrastinating And Get More Done In Less Time', 'https://images.isbndb.com/covers/20/28/9781583762028.jpg'), - ('2070403963', 'L''Allumeuse', 'https://images.isbndb.com/covers/39/67/9782070403967.jpg'), - ('2070392627', 'Les Vacances Du Petit Nicolas', 'https://images.isbndb.com/covers/26/29/9782070392629.jpg'), - ('0805071792', 'In Our Hands: A Hand Surgeon''s Tales Of The Body''s Most Exquisite Instrument', 'https://images.isbndb.com/covers/17/95/9780805071795.jpg'), - ('0316328197', 'Schrodinger''s Kittens And The Search For Reality: Solving The Quantum Mysteries', 'https://images.isbndb.com/covers/81/97/9780316328197.jpg'), - ('051513595X', 'The Arraignment (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/59/54/9780515135954.jpg'), - ('044021680X', 'Gai-Jin', 'https://images.isbndb.com/covers/68/03/9780440216803.jpg'), - ('3453092473', 'Nodus.', 'https://images.isbndb.com/covers/24/71/9783453092471.jpg'), - ('3453861825', 'Der Schattenkrieg', 'https://images.isbndb.com/covers/18/24/9783453861824.jpg'), - ('0345369416', 'Grumbles From The Grave', 'https://images.isbndb.com/covers/94/13/9780345369413.jpg'), - ('0440120500', 'The Dirty Duck', 'https://images.isbndb.com/covers/05/06/9780440120506.jpg'), - ('0743211375', 'From A Buick 8', 'https://images.isbndb.com/covers/13/76/9780743211376.jpg'), - ('0446606251', 'Snow In August', 'https://images.isbndb.com/covers/62/57/9780446606257.jpg'), - ('0521409047', 'A Midsummer Night''s Dream (Cambridge School Shakespeare)', 'https://images.isbndb.com/covers/90/49/9780521409049.jpg'), - ('0340682310', 'Lots Of Love', 'https://images.isbndb.com/covers/23/19/9780340682319.jpg'), - ('3518394045', 'Frauenleben: Ein Lesebuch (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/40/45/9783518394045.jpg'), - ('3426615355', 'How To Be Good', 'https://images.isbndb.com/covers/53/55/9783426615355.jpg'), - ('0446515078', 'Scarlett: The Sequel To Margaret Mitchell''s Gone With The Wind', 'https://images.isbndb.com/covers/50/78/9780446515078.jpg'), - ('185371545X', 'Vampyre', 'https://images.isbndb.com/covers/54/57/9781853715457.jpg'), - ('0446300152', 'Fit For Life', 'https://images.isbndb.com/covers/01/55/9780446300155.jpg'), - ('0671720147', 'The Vor Game', 'https://images.isbndb.com/covers/01/48/9780671720148.jpg'), - ('0060511508', 'The Further Observations Of Lady Whistledown', 'https://images.isbndb.com/covers/15/00/9780060511500.jpg'), - ('0140093060', 'Telling Of Lies: A Mystery', 'https://images.isbndb.com/covers/30/63/9780140093063.jpg'), - ('0671033085', 'Existenz', 'https://images.isbndb.com/covers/30/88/9780671033088.jpg'), - ('0684852144', 'Blonde Like Me: The Roots Of The Blonde Myth In Our Culture', 'https://images.isbndb.com/covers/21/40/9780684852140.jpg'), - ('0316787035', 'The Nightmare Years: 1930-1940, Vol. 2', 'https://images.isbndb.com/covers/70/31/9780316787031.jpg'), - ('156025307X', 'Cybershock: Surviving Hackers, Phreakers, Identity Thieves, Internet Terrorists And Weapons Of Mass Disruption', 'https://images.isbndb.com/covers/30/75/9781560253075.jpg'), - ('0452284139', 'Dangerous Waters: Modern Piracy And Terror On The High Seas', 'https://images.isbndb.com/covers/41/35/9780452284135.jpg'), - ('067145711X', 'The Great Bridge: The Epic Story Of The Building Of The Brooklyn Bridge', 'https://images.isbndb.com/covers/71/12/9780671457112.jpg'), - ('0553202308', 'The Last Mafioso: The Treacherous World Of Jimmy Fratianno', 'https://images.isbndb.com/covers/23/04/9780553202304.jpg'), - ('0385115784', 'Journeys Down The Line: Building The Trans-Alaska Pipeline', 'https://images.isbndb.com/covers/57/80/9780385115780.jpg'), - ('0684872889', 'Tuxedo Park : A Wall Street Tycoon And The Secret Palace Of Science That Changed The Course Of World War II', 'https://images.isbndb.com/covers/28/89/9780684872889.jpg'), - ('0802139604', 'Tobacco: A Cultural History Of How An Exotic Plant Seduced Civilization', 'https://images.isbndb.com/covers/96/03/9780802139603.jpg'), - ('0786881194', 'Edison: Inventing The Century', 'https://images.isbndb.com/covers/11/92/9780786881192.jpg'), - ('0140167455', 'Victorian Engineering', 'https://images.isbndb.com/covers/74/50/9780140167450.jpg'), - ('0385493258', 'Ingenious Pursuits: Building The Scientific Revolution', 'https://images.isbndb.com/covers/32/53/9780385493253.jpg'), - ('0767906039', 'The Nudist On The Late Shift: And Other True Tales Of Silicon Valley', 'https://images.isbndb.com/covers/60/36/9780767906036.jpg'), - ('0684835290', 'The INVENTION THAT CHANGED THE WORLD: HOW A SMALL GROUP OF RADAR PIONEERS WON THE SECOND WORLD WAR AND LAUNCHED A TECH', 'https://images.isbndb.com/covers/52/97/9780684835297.jpg'), - ('0451083709', 'Marie Curie', 'https://images.isbndb.com/covers/37/08/9780451083708.jpg'), - ('0871131455', 'Republican Party Reptile: Essays And Outrages', 'https://images.isbndb.com/covers/14/54/9780871131454.jpg'), - ('0425178838', 'Made In America: The True Stories Behind The Brand Names That Built A Na', 'https://images.isbndb.com/covers/88/36/9780425178836.jpg'), - ('077109972X', 'Apprenticeship Of Duddy Kravitz', 'https://images.isbndb.com/covers/97/24/9780771099724.jpg'), - ('0439386012', 'The Vile Village (A Series Of Unfortunate Events #7)', 'https://images.isbndb.com/covers/60/12/9780439386012.jpg'), - ('0451520882', 'Peter Pan: Centennial Edition (Signet Classics)', 'https://images.isbndb.com/covers/08/83/9780451520883.jpg'), - ('1841953229', 'Rembrandt''s Whore: A Novel', 'https://images.isbndb.com/covers/32/29/9781841953229.jpg'), - ('067943853X', 'Of Love And Other Demons', 'https://images.isbndb.com/covers/85/33/9780679438533.jpg'), - ('0349115222', 'The Bone Hunter', 'https://images.isbndb.com/covers/52/21/9780349115221.jpg'), - ('0060956135', 'The Cloud Sketcher: A Novel', 'https://images.isbndb.com/covers/61/34/9780060956134.jpg'), - ('0349111030', 'King Of The Ants', 'https://images.isbndb.com/covers/10/32/9780349111032.jpg'), - ('055214276X', 'Immediate Action', 'https://images.isbndb.com/covers/27/62/9780552142762.jpg'), - ('0330317490', 'The Twisted Sword (The Poldark Saga)', 'https://images.isbndb.com/covers/74/98/9780330317498.jpg'), - ('0552134759', 'The Negotiator', 'https://images.isbndb.com/covers/47/50/9780552134750.jpg'), - ('0425130711', 'Cold Fire', 'https://images.isbndb.com/covers/07/11/9780425130711.jpg'), - ('0575049804', 'Witches Abroad', 'https://images.isbndb.com/covers/98/02/9780575049802.jpg'), - ('0575047631', 'Moving Pictures (Discworld Novels)', 'https://images.isbndb.com/covers/76/31/9780575047631.jpg'), - ('0575046066', 'Guards! Guards!', 'https://images.isbndb.com/covers/60/61/9780575046061.jpg'), - ('0575044632', 'Pyramids', 'https://images.isbndb.com/covers/46/30/9780575044630.jpg'), - ('0575043636', 'Wyrd Sisters: Starring Three Witches, Also Kings, Daggers, Crowns', 'https://images.isbndb.com/covers/36/33/9780575043633.jpg'), - ('1593150229', 'Secrets Of The Code: The Unauthorized Guide To The Mysteries Behind The Da Vinci Code', 'https://images.isbndb.com/covers/02/28/9781593150228.jpg'), - ('0671787187', 'We Band Of Angels: The Untold Story Of American Nurses Trapped On Bataan By The Japanese', 'https://images.isbndb.com/covers/71/89/9780671787189.jpg'), - ('0449213013', 'Earth Abides', 'https://images.isbndb.com/covers/30/18/9780449213018.jpg'), - ('0385317093', 'Granny Dan', 'https://images.isbndb.com/covers/70/92/9780385317092.jpg'), - ('0451168089', 'Salem''s Lot', 'https://images.isbndb.com/covers/80/85/9780451168085.jpg'), - ('080411868X', 'Welcome To The World, Baby Girl!', 'https://images.isbndb.com/covers/86/82/9780804118682.jpg'), - ('0439420105', 'Harry Potter And The Chamber Of Secrets (Book 2)', 'https://images.isbndb.com/covers/01/05/9780439420105.jpg'), - ('1591824095', 'Chobits, Volume 8', 'https://images.isbndb.com/covers/40/91/9781591824091.jpg'), - ('039914417X', 'The Girl In The Photograph', 'https://images.isbndb.com/covers/41/72/9780399144172.jpg'), - ('0451163710', 'Strands Of Starlight (Signet)', 'https://images.isbndb.com/covers/37/14/9780451163714.jpg'), - ('0451158261', 'One Flew Over The Cuckoo''s Nest (Signet)', 'https://images.isbndb.com/covers/82/60/9780451158260.jpg'), - ('0671799584', 'Task Force Blue (Rogue Warrior ): Task Force Blue', 'https://images.isbndb.com/covers/95/88/9780671799588.jpg'), - ('1860465382', 'Long John Silver (Panther)', 'https://images.isbndb.com/covers/53/83/9781860465383.jpg'), - ('1591822580', 'Chobits, Volume 7', 'https://images.isbndb.com/covers/25/85/9781591822585.jpg'), - ('1591822572', 'Chobits, Volume 6', 'https://images.isbndb.com/covers/25/78/9781591822578.jpg'), - ('1591821533', 'Chobits, Volume 5', 'https://images.isbndb.com/covers/15/33/9781591821533.jpg'), - ('0765304686', 'Mistress Of Dragons', 'https://images.isbndb.com/covers/46/81/9780765304681.jpg'), - ('0786927402', 'Dragons Of A Vanished Moon (The War Of Souls, Vol. 3)', 'https://images.isbndb.com/covers/74/01/9780786927401.jpg'), - ('1591820073', 'Chobits, Volume 4', 'https://images.isbndb.com/covers/00/79/9781591820079.jpg'), - ('1591820065', 'Chobits, Volume 3', 'https://images.isbndb.com/covers/00/62/9781591820062.jpg'), - ('0812511751', 'The Elvenbane (Halfblood Chronicles, Bk. 1)', 'https://images.isbndb.com/covers/17/58/9780812511758.jpg'), - ('1591820057', 'Chobits, Volume 2', 'https://images.isbndb.com/covers/00/55/9781591820055.jpg'), - ('0345418263', 'The Princess Bride (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/82/65/9780345418265.jpg'), - ('1931514925', 'Chobits, Volume 1', 'https://images.isbndb.com/covers/49/27/9781931514927.jpg'), - ('034528349X', 'Dragon''s Egg', 'https://images.isbndb.com/covers/34/98/9780345283498.jpg'), - ('055309128X', 'Icon', 'https://images.isbndb.com/covers/12/81/9780553091281.jpg'), - ('0887621112', 'Salt Fish Girl: A Novel', 'https://images.isbndb.com/covers/11/16/9780887621116.jpg'), - ('0380775662', 'Guilty By Choice', 'https://images.isbndb.com/covers/56/68/9780380775668.jpg'), - ('0399124721', 'Wizard', 'https://images.isbndb.com/covers/47/23/9780399124723.jpg'), - ('0671876821', 'Chicks In Chainmail', 'https://images.isbndb.com/covers/68/21/9780671876821.jpg'), - ('0553141279', 'Dragonsinger', 'https://images.isbndb.com/covers/12/76/9780553141276.jpg'), - ('067172262X', 'Hamlet', 'https://images.isbndb.com/covers/26/23/9780671722623.jpg'), - ('0764226312', 'Arena', 'https://images.isbndb.com/covers/63/11/9780764226311.jpg'), - ('039304808X', 'Neurotica: Jewish Writers On Sex', 'https://images.isbndb.com/covers/80/87/9780393048087.jpg'), - ('0345445899', 'Vertical Burn', 'https://images.isbndb.com/covers/58/96/9780345445896.jpg'), - ('9681902548', 'La Historia Interminable (Osito/Little Bear) (Spanish Edition)', 'https://images.isbndb.com/covers/25/44/9789681902544.jpg'), - ('9681902068', 'El Profesor Ziper Y LA Fabulosa Guitarra Electrica (Infantil) (Spanish Edition)', 'https://images.isbndb.com/covers/20/63/9789681902063.jpg'), - ('0805052453', 'Under The Frog: A Novel', 'https://images.isbndb.com/covers/24/59/9780805052459.jpg'), - ('1841952338', 'Happiness', 'https://images.isbndb.com/covers/23/38/9781841952338.jpg'), - ('0330419560', 'Salmon Doubt', 'https://images.isbndb.com/covers/95/67/9780330419567.jpg'), - ('086611954X', 'The Call Of The Wild (Great Illustrated Classics)', 'https://images.isbndb.com/covers/95/42/9780866119542.jpg'), - ('0316877719', 'Under Sail', 'https://images.isbndb.com/covers/77/18/9780316877718.jpg'), - ('0747541140', 'Soft', 'https://images.isbndb.com/covers/11/41/9780747541141.jpg'), - ('0789426277', 'Forgotten Fire', 'https://images.isbndb.com/covers/62/77/9780789426277.jpg'), - ('0345449126', 'Take Me With You: A Round-the-World Journey To Invite A Stranger Home', 'https://images.isbndb.com/covers/91/22/9780345449122.jpg'), - ('055314300X', 'The Bourne Identity', 'https://images.isbndb.com/covers/30/03/9780553143003.jpg'), - ('0664225985', 'R Father N Hvn: Up 2 D8 Txts Frm D Bible', 'https://images.isbndb.com/covers/59/88/9780664225988.jpg'), - ('0671022202', 'Not Alan Clark''s Diary Pb', 'https://images.isbndb.com/covers/22/04/9780671022204.jpg'), - ('031217229X', 'Best Words, Best Order: Essays On Poetry', 'https://images.isbndb.com/covers/22/99/9780312172299.jpg'), - ('0060925752', 'Soul Mates: Honoring The Mystery Of Love And Relationship', 'https://images.isbndb.com/covers/57/58/9780060925758.jpg'), - ('038531177X', 'Rain Of Gold', 'https://images.isbndb.com/covers/17/79/9780385311779.jpg'), - ('0452264863', 'Night Of January 16th', 'https://images.isbndb.com/covers/48/61/9780452264861.jpg'), - ('1582341400', 'A Cook''s Tour: In Search Of The Perfect Meal', 'https://images.isbndb.com/covers/14/08/9781582341408.jpg'), - ('0515085995', 'The Mick', 'https://images.isbndb.com/covers/59/90/9780515085990.jpg'), - ('0449137465', 'East Of Desolation', 'https://images.isbndb.com/covers/74/68/9780449137468.jpg'), - ('0671887963', 'Ring Of Truth', 'https://images.isbndb.com/covers/79/64/9780671887964.jpg'), - ('0452273404', 'Two Or Three Things I Know For Sure', 'https://images.isbndb.com/covers/34/05/9780452273405.jpg'), - ('0965011615', 'The World''s Best Short Stories (of All Time)', 'https://images.isbndb.com/covers/16/17/9780965011617.jpg'), - ('0446404144', 'Open Season (Joe Gunther Mysteries)', 'https://images.isbndb.com/covers/41/43/9780446404143.jpg'), - ('0689859368', 'The Field Guide (The Spiderwick Chronicles, Book 1)', 'https://images.isbndb.com/covers/93/66/9780689859366.jpg'), - ('0440416655', 'A Straw For Two (Ink Drinker)', 'https://images.isbndb.com/covers/66/54/9780440416654.jpg'), - ('0440414857', 'The Ink Drinker (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/48/58/9780440414858.jpg'), - ('042518045X', 'Unraveled Sleeve (Needlecraft Mysteries, No. 4)', 'https://images.isbndb.com/covers/04/57/9780425180457.jpg'), - ('0959774661', 'Treat Your Own Back', 'https://images.isbndb.com/covers/46/65/9780959774665.jpg'), - ('0373259204', 'One Eager Bride To Go (The Wedding Ring) (Temptation 820)', 'https://images.isbndb.com/covers/92/05/9780373259205.jpg'), - ('0746016646', 'Starting Needle Craft (Usborne First Skills)', 'https://images.isbndb.com/covers/66/40/9780746016640.jpg'), - ('0373165218', 'Baby On The Doorstep (Harlequin American Romance)', 'https://images.isbndb.com/covers/52/16/9780373165216.jpg'), - ('0425145638', 'Fatal Cure', 'https://images.isbndb.com/covers/56/30/9780425145630.jpg'), - ('140003065X', 'A Fine Balance (Oprah''s Book Club)', 'https://images.isbndb.com/covers/06/51/9781400030651.jpg'), - ('0671708376', 'Perchance To Dream (Star Trek: The Next Generation, No. 19)', 'https://images.isbndb.com/covers/83/75/9780671708375.jpg'), - ('0671742647', 'Chains Of Command (Star Trek The Next Generation, No 21)', 'https://images.isbndb.com/covers/26/45/9780671742645.jpg'), - ('0671883410', 'Star Trek: The Next Generation No. 30: Debtors'' Planet', 'https://images.isbndb.com/covers/34/16/9780671883416.jpg'), - ('0671567993', 'The Garden (Star Trek Voyager, No 11)', 'https://images.isbndb.com/covers/79/96/9780671567996.jpg'), - ('0446345628', 'Dr. Ruth Guide To Marriage', 'https://images.isbndb.com/covers/56/20/9780446345620.jpg'), - ('0553260960', 'The Mammoth Hunters (Earth''s Children, Book 3)', 'https://images.isbndb.com/covers/09/60/9780553260960.jpg'), - ('0553801376', 'One Door Away From Heaven', 'https://images.isbndb.com/covers/13/78/9780553801378.jpg'), - ('0671733893', 'Q-In-Law (Star Trek The Next Generation, No 18)', 'https://images.isbndb.com/covers/38/96/9780671733896.jpg'), - ('0671700103', 'The Eyes Of The Beholders (Star Trek: The Next Generation, No. 13)', 'https://images.isbndb.com/covers/01/02/9780671700102.jpg'), - ('1551669447', 'The Christmas Basket', 'https://images.isbndb.com/covers/94/41/9781551669441.jpg'), - ('0552992062', 'Setting Free The Bears (Black Swan)', 'https://images.isbndb.com/covers/20/60/9780552992060.jpg'), - ('0684863308', 'ROWING AGAINST THE CURRENT: On Learning To Scull At Forty', 'https://images.isbndb.com/covers/33/06/9780684863306.jpg'), - ('0807508527', 'The Boxcar Children (The Boxcar Children, No. 1) (Boxcar Children Mysteries)', 'https://images.isbndb.com/covers/85/27/9780807508527.jpg'), - ('0590848860', 'Cyclops Doesn''t Roller-Skate (Adventures Of The Bailey School Kids)', 'https://images.isbndb.com/covers/88/62/9780590848862.jpg'), - ('037582233X', 'Stargirl', 'https://images.isbndb.com/covers/23/39/9780375822339.jpg'), - ('0842343318', 'Into The Storm (Left Behind: The Kids #11)', 'https://images.isbndb.com/covers/33/12/9780842343312.jpg'), - ('084234330X', 'On The Run (Left Behind: The Kids #10)', 'https://images.isbndb.com/covers/33/05/9780842343305.jpg'), - ('0842343326', 'Earthquake! (Left Behind: The Kids #12)', 'https://images.isbndb.com/covers/33/29/9780842343329.jpg'), - ('0842342974', 'Fire From Heaven: Deceiving The Enemy (Left Behind: The Kids)', 'https://images.isbndb.com/covers/29/71/9780842342971.jpg'), - ('0842321969', 'Facing The Future (Left Behind: The Kids #4)', 'https://images.isbndb.com/covers/19/69/9780842321969.jpg'), - ('0671021192', 'Harvest Moon (Sabrina, The Teenage Witch #15)', 'https://images.isbndb.com/covers/11/91/9780671021191.jpg'), - ('0671884492', 'Atlantis Station (Star Trek: The Next Generation: Starfleet Academy)', 'https://images.isbndb.com/covers/44/99/9780671884499.jpg'), - ('0380769557', 'Autumn Lover', 'https://images.isbndb.com/covers/95/51/9780380769551.jpg'), - ('0671028383', 'Grave Secrets', 'https://images.isbndb.com/covers/83/81/9780671028381.jpg'), - ('0671011367', 'Deja Dead (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/13/69/9780671011369.jpg'), - ('0091882087', 'One Hit Wonderland', 'https://images.isbndb.com/covers/20/82/9780091882082.jpg'), - ('0446670553', 'Maverick: The Success Story Behind The World''s Most Unusual Workplace', 'https://images.isbndb.com/covers/05/55/9780446670555.jpg'), - ('0671047485', 'Shallow Graves (Location Scout Mysteries)', 'https://images.isbndb.com/covers/74/81/9780671047481.jpg'), - ('0515136549', 'The Sherbrooke Twins (Bride Series)', 'https://images.isbndb.com/covers/65/48/9780515136548.jpg'), - ('0380814811', 'Home For The Holidays', 'https://images.isbndb.com/covers/48/17/9780380814817.jpg'), - ('0671019716', 'Shades Of Twilight', 'https://images.isbndb.com/covers/97/16/9780671019716.jpg'), - ('0671034057', 'Now You See Her', 'https://images.isbndb.com/covers/40/54/9780671034054.jpg'), - ('0373708718', 'Feel The Heat: America''s Bravest (Harlequin Superromance No. 871)', 'https://images.isbndb.com/covers/87/10/9780373708710.jpg'), - ('0671568841', 'All The Queen''s Men', 'https://images.isbndb.com/covers/88/49/9780671568849.jpg'), - ('0373289766', 'The Rogue''s Return (Most Unsuitable Men Trilogy, Book 3) (Harlequin Historicals #376)', 'https://images.isbndb.com/covers/97/69/9780373289769.jpg'), - ('0553581643', 'Come Back To Me', 'https://images.isbndb.com/covers/16/45/9780553581645.jpg'), - ('038078615X', 'Married At Midnight', 'https://images.isbndb.com/covers/61/52/9780380786152.jpg'), - ('0380781468', 'Beyond Scandal', 'https://images.isbndb.com/covers/14/61/9780380781461.jpg'), - ('0671027573', 'Mr. Perfect', 'https://images.isbndb.com/covers/75/75/9780671027575.jpg'), - ('0312962436', 'Nothing But Velvet', 'https://images.isbndb.com/covers/24/32/9780312962432.jpg'), - ('0312960891', 'Innocence Undone', 'https://images.isbndb.com/covers/08/96/9780312960896.jpg'), - ('055358068X', 'The Least Likely Bride', 'https://images.isbndb.com/covers/06/86/9780553580686.jpg'), - ('0440235510', 'Whirlwind Wedding', 'https://images.isbndb.com/covers/55/14/9780440235514.jpg'), - ('0451402049', 'Midsummer Magic (Magic Trilogy)', 'https://images.isbndb.com/covers/20/42/9780451402042.jpg'), - ('0521815819', 'Victorian Modernism: Pragmatism And The Varieties Of Aesthetic Experience', 'https://images.isbndb.com/covers/58/19/9780521815819.jpg'), - ('0553569910', 'The Ugly Duckling', 'https://images.isbndb.com/covers/99/19/9780553569919.jpg'), - ('0817235000', 'Let''s Take The Bus (Real Readers)', 'https://images.isbndb.com/covers/50/00/9780817235000.jpg'), - ('1576751511', 'Affluenza: The All-Consuming Epidemic', 'https://images.isbndb.com/covers/15/10/9781576751510.jpg'), - ('3442730368', 'Der Glaspalast: Roman', 'https://images.isbndb.com/covers/03/60/9783442730360.jpg'), - ('3442728266', 'Der Liebeswunsch: Roman', 'https://images.isbndb.com/covers/82/68/9783442728268.jpg'), - ('3442760771', 'Ein Leben Wird Besichtigt', 'https://images.isbndb.com/covers/07/70/9783442760770.jpg'), - ('3442729696', 'Das Buch Ruth.', 'https://images.isbndb.com/covers/96/92/9783442729692.jpg'), - ('3442729726', 'Die Geliebte Auf Dem Berg. Ein Lisi-Badichi-Roman', 'https://images.isbndb.com/covers/97/22/9783442729722.jpg'), - ('3442728312', 'Tod In Breslau.', 'https://images.isbndb.com/covers/83/12/9783442728312.jpg'), - ('350251884X', 'Treibjagd An Bord', 'https://images.isbndb.com/covers/88/46/9783502518846.jpg'), - ('3442429641', 'Liebling, Vergiss Die Socken Nicht!', 'https://images.isbndb.com/covers/96/46/9783442429646.jpg'), - ('3251004557', 'Holidays On Ice. Neue Geschichten', 'https://images.isbndb.com/covers/45/53/9783251004553.jpg'), - ('344254162X', 'Frische Goldjungs. Storys.', 'https://images.isbndb.com/covers/16/21/9783442541621.jpg'), - ('2253137243', 'Le Jour Des Fourmis', 'https://images.isbndb.com/covers/72/45/9782253137245.jpg'), - ('0345456335', 'Dragonflight', 'https://images.isbndb.com/covers/63/35/9780345456335.jpg'), - ('3404117476', 'Der Große Santini', 'https://images.isbndb.com/covers/74/75/9783404117475.jpg'), - ('0553578685', 'The Third Victim', 'https://images.isbndb.com/covers/86/83/9780553578683.jpg'), - ('0451409884', 'Dying To Have Her', 'https://images.isbndb.com/covers/98/81/9780451409881.jpg'), - ('0743418204', 'In Her Shoes : A Novel', 'https://images.isbndb.com/covers/82/01/9780743418201.jpg'), - ('0786863137', 'Brain Droppings', 'https://images.isbndb.com/covers/31/36/9780786863136.jpg'), - ('0553574639', 'The Main Corpse (Goldy Culinary Mysteries, Book 6)', 'https://images.isbndb.com/covers/46/30/9780553574630.jpg'), - ('0060512822', 'The Poisonwood Bible: A Novel', 'https://images.isbndb.com/covers/28/28/9780060512828.jpg'), - ('006097673X', 'Autobiography Of A Face', 'https://images.isbndb.com/covers/67/36/9780060976736.jpg'), - ('0805023232', 'More From The Gluten-Free Gourmet: Delicious Dining Without Wheat', 'https://images.isbndb.com/covers/32/37/9780805023237.jpg'), - ('0805039805', 'The Gluten-free Gourmet Cooks Fast And Healthy: Wheat-Free With Less Fuss And Fat', 'https://images.isbndb.com/covers/98/01/9780805039801.jpg'), - ('0805018352', 'The Gluten Free Gourmet: Living Well Without Wheat', 'https://images.isbndb.com/covers/83/56/9780805018356.jpg'), - ('0609608339', 'The Buffalo Soldier: A Novel By The Bestselling Author Of MIDWIVES', 'https://images.isbndb.com/covers/83/33/9780609608333.jpg'), - ('0871138433', 'Lost Nation', 'https://images.isbndb.com/covers/84/39/9780871138439.jpg'), - ('0446607681', 'The Disposable Man (Joe Gunther Mysteries)', 'https://images.isbndb.com/covers/76/81/9780446607681.jpg'), - ('1584650532', 'The Gore (Hardscrabble Books-Fiction Of New England)', 'https://images.isbndb.com/covers/05/39/9781584650539.jpg'), - ('1584650028', 'Guardian Angels (Hardscrabble Books-Fiction Of New England)', 'https://images.isbndb.com/covers/00/27/9781584650027.jpg'), - ('0874518849', 'Shadow Child (Hardscrabble Books-Fiction Of New England)', 'https://images.isbndb.com/covers/88/49/9780874518849.jpg'), - ('0786866845', 'Ice Bound: A Doctor''s Incredible Battle For Survival At The South Pole', 'https://images.isbndb.com/covers/68/47/9780786866847.jpg'), - ('0375757422', 'Emma (Modern Library Classics)', 'https://images.isbndb.com/covers/74/26/9780375757426.jpg'), - ('037570745X', 'In The Fall: A Novel', 'https://images.isbndb.com/covers/74/52/9780375707452.jpg'), - ('0553290533', 'Magic (Hennessey)', 'https://images.isbndb.com/covers/05/30/9780553290530.jpg'), - ('0312989393', 'Queen Bee Of Mimosa Branch: A Novel', 'https://images.isbndb.com/covers/93/92/9780312989392.jpg'), - ('0312273045', 'Second Thyme Around (Us)', 'https://images.isbndb.com/covers/30/40/9780312273040.jpg'), - ('1853261874', 'Rubaiyat Of Omar Khayyam (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/18/79/9781853261879.jpg'), - ('0836218310', 'The Far Side ® Gallery 3', 'https://images.isbndb.com/covers/83/12/9780836218312.jpg'), - ('0552146986', 'Inconceivable', 'https://images.isbndb.com/covers/69/82/9780552146982.jpg'), - ('0340818689', 'The Dog Catcher', 'https://images.isbndb.com/covers/86/88/9780340818688.jpg'), - ('0140059032', 'Life At Blandings (Omnibus)', 'https://images.isbndb.com/covers/90/38/9780140059038.jpg'), - ('0140011706', 'Pigs Have Wings: A Blandings Story', 'https://images.isbndb.com/covers/17/08/9780140011708.jpg'), - ('0552136492', 'Hungry', 'https://images.isbndb.com/covers/64/95/9780552136495.jpg'), - ('0330335278', 'Foetal Attraction', 'https://images.isbndb.com/covers/52/70/9780330335270.jpg'), - ('0743429044', 'Altered Land', 'https://images.isbndb.com/covers/90/47/9780743429047.jpg'), - ('1857027604', 'The Wrong Kind Of Shirts 2: More Curious Quips And Accusations From The Soccer World (Bk. 2)', 'https://images.isbndb.com/covers/76/00/9781857027600.jpg'), - ('1856354008', 'Its A Long Way From Penny Apples', 'https://images.isbndb.com/covers/40/04/9781856354004.jpg'), - ('0440501601', 'Do What You Love, The Money Will Follow: Discovering Your Right Livelihood', 'https://images.isbndb.com/covers/16/02/9780440501602.jpg'), - ('0952661020', 'Survival Of The Fattest 3 Pb (v. 3)', 'https://images.isbndb.com/covers/10/23/9780952661023.jpg'), - ('0952661012', 'Survival Of The Fattest 2 Pb (v. 2)', 'https://images.isbndb.com/covers/10/16/9780952661016.jpg'), - ('0952661004', 'Survival Of The Fattest Pb (v. 1)', 'https://images.isbndb.com/covers/10/09/9780952661009.jpg'), - ('0340660112', 'Kenny Dalglish Autobiography', 'https://images.isbndb.com/covers/01/19/9780340660119.jpg'), - ('0718146999', 'How Clean Is Your House?', 'https://images.isbndb.com/covers/69/93/9780718146993.jpg'), - ('0312135866', 'The Persian Pickle Club', 'https://images.isbndb.com/covers/58/67/9780312135867.jpg'), - ('0575065613', 'Jan The Man: From Anfield To Vetch Field', 'https://images.isbndb.com/covers/56/11/9780575065611.jpg'), - ('0752800442', 'Football Against The Enemy', 'https://images.isbndb.com/covers/04/48/9780752800448.jpg'), - ('1559704950', 'All Quiet On The Orient Express', 'https://images.isbndb.com/covers/49/53/9781559704953.jpg'), - ('0399141294', 'Before Women Had Wings', 'https://images.isbndb.com/covers/12/94/9780399141294.jpg'), - ('0312869932', 'White As Snow (Fairy Tale Series)', 'https://images.isbndb.com/covers/99/39/9780312869939.jpg'), - ('0425176789', 'The Squire''s Tale: A Dame Frevisse Medieval Mystery', 'https://images.isbndb.com/covers/67/88/9780425176788.jpg'), - ('0553580310', 'The Mentor', 'https://images.isbndb.com/covers/03/10/9780553580310.jpg'), - ('0679450742', 'The All-True Travels And Adventures Of Lidie Newton', 'https://images.isbndb.com/covers/07/40/9780679450740.jpg'), - ('0060391626', 'I Know This Much Is True', 'https://images.isbndb.com/covers/16/21/9780060391621.jpg'), - ('0374527229', 'Ex Libris: Confessions Of A Common Reader', 'https://images.isbndb.com/covers/72/28/9780374527228.jpg'), - ('0312253435', 'The Cassandra Compact: A Covert-One Novel', 'https://images.isbndb.com/covers/34/31/9780312253431.jpg'), - ('0385337477', 'Lord John And The Private Matter', 'https://images.isbndb.com/covers/74/72/9780385337472.jpg'), - ('0140431217', 'Adam Bede (Penguin Classics)', 'https://images.isbndb.com/covers/12/16/9780140431216.jpg'), - ('0312986319', 'The Last Temptation: A Novel (Dr. Tony Hill And Carol Jordan Mysteries)', 'https://images.isbndb.com/covers/63/15/9780312986315.jpg'), - ('0312989385', 'The Janson Directive', 'https://images.isbndb.com/covers/93/85/9780312989385.jpg'), - ('0345409329', 'Blood And Gold (Vampire Chronicles)', 'https://images.isbndb.com/covers/93/24/9780345409324.jpg'), - ('0451411056', 'Mind Catcher', 'https://images.isbndb.com/covers/10/51/9780451411051.jpg'), - ('0349115761', 'Things Snowball', 'https://images.isbndb.com/covers/57/64/9780349115764.jpg'), - ('0446603104', 'Seduction By Design', 'https://images.isbndb.com/covers/31/02/9780446603102.jpg'), - ('0553803220', 'Babylon Rising', 'https://images.isbndb.com/covers/32/28/9780553803228.jpg'), - ('1560232234', 'To The Edge', 'https://images.isbndb.com/covers/22/30/9781560232230.jpg'), - ('1883061318', 'One Summer Night', 'https://images.isbndb.com/covers/13/19/9781883061319.jpg'), - ('0060009462', 'No Lifeguard On Duty: The Accidental Life Of The World''s First Supermodel', 'https://images.isbndb.com/covers/94/65/9780060009465.jpg'), - ('0446519790', 'Unspeakable', 'https://images.isbndb.com/covers/97/93/9780446519793.jpg'), - ('2253146889', 'Attentat', 'https://images.isbndb.com/covers/68/89/9782253146889.jpg'), - ('0340629681', 'Secret Clues (Mystery Club)', 'https://images.isbndb.com/covers/96/80/9780340629680.jpg'), - ('0552998524', 'Elusive Truffle', 'https://images.isbndb.com/covers/85/29/9780552998529.jpg'), - ('074932483X', 'Ex-wives', 'https://images.isbndb.com/covers/48/34/9780749324834.jpg'), - ('014070714X', 'As You Like It (Penguin Shakespeare)', 'https://images.isbndb.com/covers/71/44/9780140707144.jpg'), - ('0140351140', 'Around The World In Eighty Days (Puffin Classics)', 'https://images.isbndb.com/covers/11/49/9780140351149.jpg'), - ('0340672250', 'Goodbye, Johnny Thunders', 'https://images.isbndb.com/covers/22/59/9780340672259.jpg'), - ('0563384514', 'The Nation''s Favourite Comic Poems: A Selection Of Humorous Verse', 'https://images.isbndb.com/covers/45/19/9780563384519.jpg'), - ('0060921161', 'None Died In Vain: The Saga Of The American Civil War', 'https://images.isbndb.com/covers/11/63/9780060921163.jpg'), - ('0330253603', 'Wilt', 'https://images.isbndb.com/covers/36/04/9780330253604.jpg'), - ('0553131605', 'The Amityville Horror', 'https://images.isbndb.com/covers/16/04/9780553131604.jpg'), - ('044011585X', 'Crossings', 'https://images.isbndb.com/covers/58/54/9780440115854.jpg'), - ('0440200563', 'Fine Things', 'https://images.isbndb.com/covers/05/67/9780440200567.jpg'), - ('0671774662', 'Roswell: The Outsider (TV Series)', 'https://images.isbndb.com/covers/46/60/9780671774660.jpg'), - ('0425075699', 'Darkfall', 'https://images.isbndb.com/covers/56/92/9780425075692.jpg'), - ('0425080021', 'Dune', 'https://images.isbndb.com/covers/00/23/9780425080023.jpg'), - ('0425085325', 'The Vision', 'https://images.isbndb.com/covers/53/25/9780425085325.jpg'), - ('042511984X', 'The Face Of Fear', 'https://images.isbndb.com/covers/98/46/9780425119846.jpg'), - ('0060393823', 'Lost: A Novel', 'https://images.isbndb.com/covers/38/23/9780060393823.jpg'), - ('0747517797', 'Secret Life Of Laszlo Count Dracula', 'https://images.isbndb.com/covers/77/95/9780747517795.jpg'), - ('0671431285', 'A Cry In The Night', 'https://images.isbndb.com/covers/12/80/9780671431280.jpg'), - ('0889627681', 'Killing Lana', 'https://images.isbndb.com/covers/76/80/9780889627680.jpg'), - ('0771058373', 'Daughters Of Earth And Other Stories', 'https://images.isbndb.com/covers/83/70/9780771058370.jpg'), - ('0875423086', 'Tea Leaf Reading (Llewellyn''s New Age Series)', 'https://images.isbndb.com/covers/30/81/9780875423081.jpg'), - ('0345349350', 'Get Off The Unicorn', 'https://images.isbndb.com/covers/93/54/9780345349354.jpg'), - ('156504875X', '*OP As One Dead (Vampire - The Masquerade)', 'https://images.isbndb.com/covers/87/51/9781565048751.jpg'), - ('1853267333', 'Count Of Monte Cristo (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/73/38/9781853267338.jpg'), - ('0061093998', 'Homebody: A Novel', 'https://images.isbndb.com/covers/39/99/9780061093999.jpg'), - ('0812508645', 'Pastwatch: The Redemption Of Christopher Columbus', 'https://images.isbndb.com/covers/86/42/9780812508642.jpg'), - ('0671743058', 'Boy''s Life', 'https://images.isbndb.com/covers/30/55/9780671743055.jpg'), - ('0048231398', 'The Silmarillion', 'https://images.isbndb.com/covers/13/90/9780048231390.jpg'), - ('0312932014', 'Walkers (Tor Horror)', 'https://images.isbndb.com/covers/20/15/9780312932015.jpg'), - ('0812580346', 'Flashforward', 'https://images.isbndb.com/covers/03/41/9780812580341.jpg'), - ('0671793152', 'MYSTERY ON MAKATUNK ISLAND (HARDY BOYS 125)', 'https://images.isbndb.com/covers/31/59/9780671793159.jpg'), - ('0671793128', 'Carnival Of Crime (Hardy Boys 122)', 'https://images.isbndb.com/covers/31/28/9780671793128.jpg'), - ('0671641379', 'Wings Of Fear (Nancy Drew Casefiles, Case 13)', 'https://images.isbndb.com/covers/13/75/9780671641375.jpg'), - ('0671568051', 'Going Home (Nancy Drew On Campus #16)', 'https://images.isbndb.com/covers/80/54/9780671568054.jpg'), - ('0671002112', 'Love On Line (Nancy Drew On Campus #19)', 'https://images.isbndb.com/covers/21/14/9780671002114.jpg'), - ('0671730886', 'Choosing Sides (The Nancy Drew Files 84)', 'https://images.isbndb.com/covers/08/88/9780671730888.jpg'), - ('0671794795', 'MOVING TARGET: (NANCY DREW FILES 87)', 'https://images.isbndb.com/covers/47/98/9780671794798.jpg'), - ('0393037606', 'The Commodore (Vol. Book 17) (Aubrey/Maturin Novels)', 'https://images.isbndb.com/covers/76/09/9780393037609.jpg'), - ('0205319149', 'Sociology: A Down-to-Earth Approach With SuperSite (5th Edition)', 'https://images.isbndb.com/covers/91/45/9780205319145.jpg'), - ('0316235024', 'The Gift Of Fear : Survival Signals That Protect Us From Violence', 'https://images.isbndb.com/covers/50/20/9780316235020.jpg'), - ('0060952970', 'Ophelia Speaks: Adolescent Girls Write About Their Search For Self', 'https://images.isbndb.com/covers/29/76/9780060952976.jpg'), - ('0836133471', 'On Troublesome Creek: A True Story About Christian Service In The Mountains Of Kentucky', 'https://images.isbndb.com/covers/34/79/9780836133479.jpg'), - ('0743203631', 'Gap Creek : The Story Of A Marriage (Oprah''s Book Club)', 'https://images.isbndb.com/covers/36/30/9780743203630.jpg'), - ('1567187072', 'A Kitchen Witch''s Cookbook', 'https://images.isbndb.com/covers/70/76/9781567187076.jpg'), - ('1551108496', 'The Essential Dessert Cookbook', 'https://images.isbndb.com/covers/84/90/9781551108490.jpg'), - ('0831711434', 'Dream Desserts: Spectacular Recipes For Delicious Desserts', 'https://images.isbndb.com/covers/14/36/9780831711436.jpg'), - ('0067575986', 'Provence: The Beautiful Cookbook', 'https://images.isbndb.com/covers/59/87/9780067575987.jpg'), - ('0023193913', 'The Range Of Religion: An Introductory Reader', 'https://images.isbndb.com/covers/39/10/9780023193910.jpg'), - ('0028639227', 'Rendezvous With Destiny A History Of Mod', 'https://images.isbndb.com/covers/92/22/9780028639222.jpg'), - ('0517159309', 'The Tarot And You: Book And Cards', 'https://images.isbndb.com/covers/93/09/9780517159309.jpg'), - ('1557866031', 'From Modernism To Postmodernism (Blackwell Philosophy Anthologies)', 'https://images.isbndb.com/covers/60/35/9781557866035.jpg'), - ('0931432820', 'The Complete Book Of Essential Oils And Aromatherapy: Over 600 Natural, Non-Toxic And Fragrant Recipes To Create Health - Beauty - A Safe Home Environment', 'https://images.isbndb.com/covers/28/28/9780931432828.jpg'), - ('0671528068', 'God And The New Physics', 'https://images.isbndb.com/covers/80/65/9780671528065.jpg'), - ('0800629701', 'Faith Of A Physicist (Theology & The Sciences)', 'https://images.isbndb.com/covers/97/00/9780800629700.jpg'), - ('0966496027', 'The Holy Man''s War (The Mystic Isle Legends, Book 1)', 'https://images.isbndb.com/covers/60/24/9780966496024.jpg'), - ('0966496019', 'The Tribulation (The Messiah Chronicles, Book 2)', 'https://images.isbndb.com/covers/60/17/9780966496017.jpg'), - ('0929661192', 'Johns Hopkins Symptoms And Remedies: The Complete Home Medical Reference', 'https://images.isbndb.com/covers/11/93/9780929661193.jpg'), - ('0922066434', 'German Step-by-Step: A Unique, Short-Cut Method To Learn And Speak German Fluently By One Of The World''s Master Language Teachers', 'https://images.isbndb.com/covers/64/38/9780922066438.jpg'), - ('0517025302', 'Relativity: The Special And The General Theory', 'https://images.isbndb.com/covers/53/07/9780517025307.jpg'), - ('0553344803', 'Beyond The Quantum', 'https://images.isbndb.com/covers/48/06/9780553344806.jpg'), - ('0060922583', 'The Holographic Universe', 'https://images.isbndb.com/covers/25/80/9780060922580.jpg'), - ('1580060218', 'The Curse Of Cain: The Untold Story Of John Wilkes Booth', 'https://images.isbndb.com/covers/02/19/9781580060219.jpg'), - ('0195113713', 'The Book Of The Rewards Of Life: Liber Vitae Meritorum', 'https://images.isbndb.com/covers/37/16/9780195113716.jpg'), - ('0452010136', 'The Italian Renaissance Reader (Meridian)', 'https://images.isbndb.com/covers/01/30/9780452010130.jpg'), - ('0345379586', 'Parapsychology', 'https://images.isbndb.com/covers/95/80/9780345379580.jpg'), - ('0192839071', 'The Meditations Of Marcus Aurelius Antoninus: And A Selection From The Letters Of Marcus And Fronto (Oxford World''s Classics)', 'https://images.isbndb.com/covers/90/77/9780192839077.jpg'), - ('0192834274', 'Symposium (Oxford World''s Classics)', 'https://images.isbndb.com/covers/42/70/9780192834270.jpg'), - ('0899548318', 'Romantic Delicacies', 'https://images.isbndb.com/covers/83/19/9780899548319.jpg'), - ('0374523835', 'Gilgamesh: A New Rendering In English Verse', 'https://images.isbndb.com/covers/38/31/9780374523831.jpg'), - ('0140585044', 'Shelley: Selected Poetry (Poetry Library, Penguin)', 'https://images.isbndb.com/covers/50/49/9780140585049.jpg'), - ('0899088236', 'Ethics Of World Religions (Opposing Viewpoints)', 'https://images.isbndb.com/covers/82/35/9780899088235.jpg'), - ('014130751X', 'Asking For Trouble', 'https://images.isbndb.com/covers/75/10/9780141307510.jpg'), - ('0140360468', 'Looking For Alibrandi (Puffin Books)', 'https://images.isbndb.com/covers/04/62/9780140360462.jpg'), - ('0140620842', 'Gulliver''s Travels (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/49/9780140620849.jpg'), - ('0590449389', 'Miriam''s Well', 'https://images.isbndb.com/covers/93/80/9780590449380.jpg'), - ('0553278002', 'The Icarus Agenda', 'https://images.isbndb.com/covers/80/02/9780553278002.jpg'), - ('0060198508', 'Extra Virgin: A Young Woman Discovers The Italian Riviera, Where Every Month Is Enchanted', 'https://images.isbndb.com/covers/85/03/9780060198503.jpg'), - ('0451187423', 'Deadly Care', 'https://images.isbndb.com/covers/74/20/9780451187420.jpg'), - ('0671750402', 'What Cops Know', 'https://images.isbndb.com/covers/04/04/9780671750404.jpg'), - ('080411109X', 'The Hundred Secret Senses', 'https://images.isbndb.com/covers/10/96/9780804111096.jpg'), - ('0425081818', 'The Talisman', 'https://images.isbndb.com/covers/18/15/9780425081815.jpg'), - ('0345369432', 'California Gold', 'https://images.isbndb.com/covers/94/37/9780345369437.jpg'), - ('0451206460', 'Hard Evidence', 'https://images.isbndb.com/covers/64/66/9780451206466.jpg'), - ('0552999954', 'High Society', 'https://images.isbndb.com/covers/99/53/9780552999953.jpg'), - ('0140287248', 'To The Edge Of The Sky', 'https://images.isbndb.com/covers/72/40/9780140287240.jpg'), - ('0590502077', 'You Can''t Eat Your Chicken Pox, Amber Brown', 'https://images.isbndb.com/covers/20/78/9780590502078.jpg'), - ('1590790510', 'Culture Clash: Managing The Global High-Performance Team (Global Leader Series)', 'https://images.isbndb.com/covers/05/19/9781590790519.jpg'), - ('1401040861', 'Angels And Bolters: Women''s Cancer Scripts', 'https://images.isbndb.com/covers/08/64/9781401040864.jpg'), - ('0310239397', 'Essential Christianity', 'https://images.isbndb.com/covers/93/90/9780310239390.jpg'), - ('0060652926', 'Mere Christianity', 'https://images.isbndb.com/covers/29/20/9780060652920.jpg'), - ('0786865482', 'Life Strategies: Doing What Works, Doing What Matters', 'https://images.isbndb.com/covers/54/82/9780786865482.jpg'), - ('084235266X', 'Bringing Up Boys: Practical Advice And Encouragement For Those Shaping The Next Generation Of Men', 'https://images.isbndb.com/covers/26/66/9780842352666.jpg'), - ('1557739579', 'A Vow To Keep', 'https://images.isbndb.com/covers/95/75/9781557739575.jpg'), - ('0140375988', 'Singularity', 'https://images.isbndb.com/covers/59/85/9780140375985.jpg'), - ('0451194721', 'Son Of Rosemary: The Sequel To Rosemary''s Baby', 'https://images.isbndb.com/covers/47/25/9780451194725.jpg'), - ('0679448608', 'A Firing Offense', 'https://images.isbndb.com/covers/86/00/9780679448600.jpg'), - ('0553089218', 'The Web', 'https://images.isbndb.com/covers/92/19/9780553089219.jpg'), - ('0312983379', 'In Harm''s Way: The Sinking Of The U.S.S. Indianapolis And The Extraordinary Story Of Its Survivors', 'https://images.isbndb.com/covers/33/76/9780312983376.jpg'), - ('140332557X', 'The Little Guide To Happiness: How To Smile Again', 'https://images.isbndb.com/covers/55/70/9781403325570.jpg'), - ('1562012541', 'Girl School', 'https://images.isbndb.com/covers/25/40/9781562012540.jpg'), - ('0330491970', 'Nip ''n'' Tuck', 'https://images.isbndb.com/covers/19/76/9780330491976.jpg'), - ('1858285453', 'The Rough Guide To Andalucia (3rd Edition)', 'https://images.isbndb.com/covers/54/50/9781858285450.jpg'), - ('0590487442', 'The Baby-Sitter IV (Point Horror Series)', 'https://images.isbndb.com/covers/74/43/9780590487443.jpg'), - ('0590431366', 'Missing Since Monday (Point)', 'https://images.isbndb.com/covers/13/61/9780590431361.jpg'), - ('0448060043', 'Alice In Wonderland And Through The Looking Glass (Illustrated Junior Library)', 'https://images.isbndb.com/covers/00/40/9780448060040.jpg'), - ('0553213172', 'Anne Of The Island (Anne Of Green Gables, Book 3)', 'https://images.isbndb.com/covers/31/71/9780553213171.jpg'), - ('0671722905', 'The Tempest (New Folger Library)', 'https://images.isbndb.com/covers/29/06/9780671722906.jpg'), - ('0397306938', 'A Little Princess', 'https://images.isbndb.com/covers/69/30/9780397306930.jpg'), - ('0345316452', 'Be Restored To Health', 'https://images.isbndb.com/covers/64/55/9780345316455.jpg'), - ('0590853112', 'It Takes Two', 'https://images.isbndb.com/covers/31/18/9780590853118.jpg'), - ('0517051516', 'Nature Library: Ocean Life', 'https://images.isbndb.com/covers/15/11/9780517051511.jpg'), - ('1562933493', 'The Boy Who Wouldn''t Eat Breakfast (Storytime Books)', 'https://images.isbndb.com/covers/34/94/9781562933494.jpg'), - ('0448343010', 'Little Toot (All Aboard Books)', 'https://images.isbndb.com/covers/30/13/9780448343013.jpg'), - ('0816715602', 'Heathcliff''s Halloween (Heathcliff)', 'https://images.isbndb.com/covers/56/02/9780816715602.jpg'), - ('0307117421', 'Puppies Are Special Friends (Look-Look)', 'https://images.isbndb.com/covers/74/27/9780307117427.jpg'), - ('0060931418', 'Their Eyes Were Watching God', 'https://images.isbndb.com/covers/14/14/9780060931414.jpg'), - ('051720679X', 'Sue Grafton: Three Complete Novels; A, B & C: A Is For Alibi; B Is For Burglar; C Is For Corpse', 'https://images.isbndb.com/covers/67/99/9780517206799.jpg'), - ('0451194772', 'Knock ''em Dead: A Murder, She Wrote Mystery', 'https://images.isbndb.com/covers/47/70/9780451194770.jpg'), - ('0679455884', 'Home Town', 'https://images.isbndb.com/covers/58/82/9780679455882.jpg'), - ('0142000981', 'Coal: A Human History', 'https://images.isbndb.com/covers/09/84/9780142000984.jpg'), - ('0971212309', 'The Light At The End Of The World', 'https://images.isbndb.com/covers/23/05/9780971212305.jpg'), - ('0060926198', 'A Valley In Italy', 'https://images.isbndb.com/covers/61/99/9780060926199.jpg'), - ('0310254752', 'The Case For Easter: Journalist Investigates The Evidence For The Resurrection', 'https://images.isbndb.com/covers/47/51/9780310254751.jpg'), - ('044990945X', 'A Walk Across France', 'https://images.isbndb.com/covers/94/54/9780449909454.jpg'), - ('0515136557', 'The Cat Who Brought Down The House', 'https://images.isbndb.com/covers/65/55/9780515136555.jpg'), - ('0449204324', 'Blue Highways', 'https://images.isbndb.com/covers/43/20/9780449204320.jpg'), - ('0747545545', 'Barca: A People''s Passion', 'https://images.isbndb.com/covers/55/45/9780747545545.jpg'), - ('0965455572', 'Fortunes Rocks', 'https://images.isbndb.com/covers/55/72/9780965455572.jpg'), - ('3492236014', 'Die Letzten Gäste Der Saison: Roman', 'https://images.isbndb.com/covers/60/10/9783492236010.jpg'), - ('3404147952', 'Kubanische Rhapsodie', 'https://images.isbndb.com/covers/79/53/9783404147953.jpg'), - ('3404146794', 'Sand Im Getriebe', 'https://images.isbndb.com/covers/67/96/9783404146796.jpg'), - ('3257227264', 'Die Häupter Meiner Lieben', 'https://images.isbndb.com/covers/72/60/9783257227260.jpg'), - ('3442429552', 'Die Puppenspieler: Roman', 'https://images.isbndb.com/covers/95/54/9783442429554.jpg'), - ('3596148731', 'Der Traum Vom Paradies.', 'https://images.isbndb.com/covers/87/38/9783596148738.jpg'), - ('349222962X', 'Das Winterhaus: Roman', 'https://images.isbndb.com/covers/96/23/9783492229623.jpg'), - ('3492235816', 'Das Achte Gebot: Kriminalroman (Hanne Wilhelmsen-Reihe)', 'https://images.isbndb.com/covers/58/15/9783492235815.jpg'), - ('0312320248', 'The Blessing Stone', 'https://images.isbndb.com/covers/02/49/9780312320249.jpg'), - ('3442726735', 'Der Wird Euch Mit Feuer Taufen: Roman', 'https://images.isbndb.com/covers/67/38/9783442726738.jpg'), - ('340414550X', 'Unter Verschluss: Thriller', 'https://images.isbndb.com/covers/55/08/9783404145508.jpg'), - ('3404148703', 'Mord Im Tal Der Könige.', 'https://images.isbndb.com/covers/87/07/9783404148707.jpg'), - ('3404145518', 'Patrick Von Irland', 'https://images.isbndb.com/covers/55/15/9783404145515.jpg'), - ('3404149122', 'Exponentialdrift: Roman', 'https://images.isbndb.com/covers/91/24/9783404149124.jpg'), - ('3596144868', 'Hannas Töchter', 'https://images.isbndb.com/covers/48/60/9783596144860.jpg'), - ('3426603136', 'Schuldlos Schuldig', 'https://images.isbndb.com/covers/31/30/9783426603130.jpg'), - ('3423026294', 'Die Verwandlung: Leipzig 1916', 'https://images.isbndb.com/covers/62/91/9783423026291.jpg'), - ('0804114498', 'American Tabloid', 'https://images.isbndb.com/covers/44/93/9780804114493.jpg'), - ('3442447038', 'Wellenbrecher', 'https://images.isbndb.com/covers/70/39/9783442447039.jpg'), - ('3442448336', 'Rühr Mich Nicht An, Sonderausgabe', 'https://images.isbndb.com/covers/83/33/9783442448333.jpg'), - ('3404144171', 'Der Geteilte Liebhaber', 'https://images.isbndb.com/covers/41/74/9783404144174.jpg'), - ('3404144694', 'Fackeln Des Teufels', 'https://images.isbndb.com/covers/46/93/9783404144693.jpg'), - ('3423201509', 'Die Weiße Löwin', 'https://images.isbndb.com/covers/15/06/9783423201506.jpg'), - ('3442442532', 'Falsetto', 'https://images.isbndb.com/covers/25/39/9783442442539.jpg'), - ('0020198906', 'Joshua: A Parable For Today', 'https://images.isbndb.com/covers/89/01/9780020198901.jpg'), - ('1578155584', '3 STEPHANIE PLUM NOVELS', 'https://images.isbndb.com/covers/55/83/9781578155583.jpg'), - ('0312082975', 'A Nation Of Victims: The Decay Of The American Character', 'https://images.isbndb.com/covers/29/70/9780312082970.jpg'), - ('0451527569', 'The House Of Mirth (Signet Classics)', 'https://images.isbndb.com/covers/75/61/9780451527561.jpg'), - ('0938317288', 'Keepers Of The Earth (Hell Yes, Texas Women''s Series)', 'https://images.isbndb.com/covers/72/89/9780938317289.jpg'), - ('0140089225', 'The Bone People: A Novel', 'https://images.isbndb.com/covers/92/26/9780140089226.jpg'), - ('0679449787', 'Neanderthal', 'https://images.isbndb.com/covers/97/82/9780679449782.jpg'), - ('0385425473', 'Wild Swans: Three Daughters Of China', 'https://images.isbndb.com/covers/54/76/9780385425476.jpg'), - ('0312959842', 'Murder In Scorpio (An Elizabeth Chase Mystery)', 'https://images.isbndb.com/covers/98/45/9780312959845.jpg'), - ('0312962940', 'The Cold Heart Of Capricorn', 'https://images.isbndb.com/covers/29/44/9780312962944.jpg'), - ('0061097152', 'Circles Of Confusion: A Claire Montrose Mystery (Claire Montrose Mysteries)', 'https://images.isbndb.com/covers/71/57/9780061097157.jpg'), - ('061812702X', 'Village School (The Fairacre Series #1)', 'https://images.isbndb.com/covers/70/23/9780618127023.jpg'), - ('082177364X', 'Finders Keepers', 'https://images.isbndb.com/covers/36/42/9780821773642.jpg'), - ('0440236878', 'An English Murder', 'https://images.isbndb.com/covers/68/70/9780440236870.jpg'), - ('0060963190', 'Making Sense Of Adoption: A Parent''s Guide', 'https://images.isbndb.com/covers/31/94/9780060963194.jpg'), - ('0743448642', 'Whispers And Lies', 'https://images.isbndb.com/covers/86/42/9780743448642.jpg'), - ('0553801449', 'Incriminating Evidence', 'https://images.isbndb.com/covers/14/46/9780553801446.jpg'), - ('0140263144', 'Rumpole And The Angel Of Death', 'https://images.isbndb.com/covers/31/45/9780140263145.jpg'), - ('0892813571', 'Women In Celtic Myth: Tales Of Extraordinary Women From The Ancient Celtic Tradition', 'https://images.isbndb.com/covers/35/75/9780892813575.jpg'), - ('0811214028', 'Cronopios And Famas', 'https://images.isbndb.com/covers/40/25/9780811214025.jpg'), - ('0679757899', 'East, West: Stories', 'https://images.isbndb.com/covers/78/94/9780679757894.jpg'), - ('157322877X', 'Light House', 'https://images.isbndb.com/covers/87/70/9781573228770.jpg'), - ('0385319525', 'The Pirate''s Daughter', 'https://images.isbndb.com/covers/95/22/9780385319522.jpg'), - ('0590418262', 'Sadie And The Snowman', 'https://images.isbndb.com/covers/82/63/9780590418263.jpg'), - ('0821769367', 'The Night Before', 'https://images.isbndb.com/covers/93/62/9780821769362.jpg'), - ('0743400399', 'Blood And Fog (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/03/98/9780743400398.jpg'), - ('0689866259', 'Buffy The Vampire Slayer: Chosen', 'https://images.isbndb.com/covers/62/58/9780689866258.jpg'), - ('0671042599', 'The Monster Book', 'https://images.isbndb.com/covers/25/92/9780671042592.jpg'), - ('0743427440', 'Tales Of The Slayer, Volume 2 (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/74/49/9780743427449.jpg'), - ('0743400453', 'Tales Of The Slayer, Volume 1 (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/04/59/9780743400459.jpg'), - ('0812564901', 'Dream A Little Dream: A Tale Of Myth And Moonshine', 'https://images.isbndb.com/covers/49/07/9780812564907.jpg'), - ('0812539265', 'Dream West', 'https://images.isbndb.com/covers/92/64/9780812539264.jpg'), - ('0440221919', 'The Blood Countess', 'https://images.isbndb.com/covers/19/13/9780440221913.jpg'), - ('1891153889', 'Buffy The Vampire Slayer: Core Rulebook (Buffy The Vampire Slayer Core Rulebooks)', 'https://images.isbndb.com/covers/38/84/9781891153884.jpg'), - ('068985918X', '"Once More, With Feeling": The Script Book', 'https://images.isbndb.com/covers/91/82/9780689859182.jpg'), - ('1569715416', 'Buffy The Vampire Slayer: Spike & Dru', 'https://images.isbndb.com/covers/54/13/9781569715413.jpg'), - ('0743418921', 'Spike And Dru: Pretty Maids All In A Row (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/89/28/9780743418928.jpg'), - ('0373482078', 'Silhouette Christmas Stories: Home For Christmas/ Let It Snow/ Starbright /Under The Mistletoe', 'https://images.isbndb.com/covers/20/78/9780373482078.jpg'), - ('0843129689', 'The Complete Murphy''s Law', 'https://images.isbndb.com/covers/96/87/9780843129687.jpg'), - ('0399525777', 'Writing The Wave: Inspired Rides For Aspiring Writers', 'https://images.isbndb.com/covers/57/73/9780399525773.jpg'), - ('0762401400', 'The Book Of The Sun', 'https://images.isbndb.com/covers/14/06/9780762401406.jpg'), - ('0762401397', 'The Book Of The Moon', 'https://images.isbndb.com/covers/13/90/9780762401390.jpg'), - ('0821223275', 'The Ancient Egypt Pack: A Three-Dimensional Celebration Of Egyptian Mythology, Culture, Art, Life And Afterlife', 'https://images.isbndb.com/covers/32/77/9780821223277.jpg'), - ('0785811338', 'Celtic Oracle', 'https://images.isbndb.com/covers/13/36/9780785811336.jpg'), - ('0316287555', 'Day Of Confession', 'https://images.isbndb.com/covers/75/55/9780316287555.jpg'), - ('0590433512', 'The Greek Gods', 'https://images.isbndb.com/covers/35/18/9780590433518.jpg'), - ('0345320530', 'Casino Gambling For The Winner', 'https://images.isbndb.com/covers/05/37/9780345320537.jpg'), - ('0486227456', 'The Illuminated Alphabet (Dover Children''s Activity Books)', 'https://images.isbndb.com/covers/74/50/9780486227450.jpg'), - ('0789709651', '10 Minute Guide To HTML 3.2', 'https://images.isbndb.com/covers/96/53/9780789709653.jpg'), - ('0141307129', 'The Road To El Dorado: Junior Novelization', 'https://images.isbndb.com/covers/71/21/9780141307121.jpg'), - ('0062732749', 'Cartoon Guide To The Environment', 'https://images.isbndb.com/covers/27/43/9780062732743.jpg'), - ('1586630326', 'Tutankhamun: The Eternal Splendor Of The Boy Pharaoh', 'https://images.isbndb.com/covers/03/24/9781586630324.jpg'), - ('0451458311', 'Out Of Avalon: An Anthology Of Old Magic & New Myths', 'https://images.isbndb.com/covers/83/15/9780451458315.jpg'), - ('0679885447', 'Witches & Magic-Makers (Eyewitness Books (Trade))', 'https://images.isbndb.com/covers/54/43/9780679885443.jpg'), - ('0762404590', 'Vampires 3-D Journal', 'https://images.isbndb.com/covers/45/99/9780762404599.jpg'), - ('051512558X', 'The Overseer', 'https://images.isbndb.com/covers/55/80/9780515125580.jpg'), - ('0743211995', 'An Hour Before Daylight : Memories Of A Rural Boyhood', 'https://images.isbndb.com/covers/19/94/9780743211994.jpg'), - ('0761530878', 'The Sims: Livin'' Large: Prima''s Official Strategy Guide', 'https://images.isbndb.com/covers/08/79/9780761530879.jpg'), - ('0761537295', 'The Sims: Hot Date: Prima''s Official Strategy Guide', 'https://images.isbndb.com/covers/72/98/9780761537298.jpg'), - ('0761539220', 'The Sims: Vacation (Prima''s Official Strategy Guide)', 'https://images.isbndb.com/covers/92/23/9780761539223.jpg'), - ('088038204X', 'Tower Of Darkness (Dungeons And Dragons Adventure Book)', 'https://images.isbndb.com/covers/20/45/9780880382045.jpg'), - ('0525463062', 'The Road To El Dorado', 'https://images.isbndb.com/covers/30/61/9780525463061.jpg'), - ('076071682X', 'Latin Stuff And Nonsense', 'https://images.isbndb.com/covers/68/23/9780760716823.jpg'), - ('0515132136', 'The Jury (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/21/37/9780515132137.jpg'), - ('076530127X', 'Daughter Of Ireland', 'https://images.isbndb.com/covers/12/77/9780765301277.jpg'), - ('0140431314', 'Jude The Obscure', 'https://images.isbndb.com/covers/13/15/9780140431315.jpg'), - ('0140430547', 'A Tale Of Two Cities (Penguin English Library)', 'https://images.isbndb.com/covers/05/47/9780140430547.jpg'), - ('0312154895', 'A Cab Called Reliable: A Novel', 'https://images.isbndb.com/covers/48/99/9780312154899.jpg'), - ('1410755568', 'Forever Yours, Tomcat', 'https://images.isbndb.com/covers/55/68/9781410755568.jpg'), - ('0316816531', 'Perfect Harmony', 'https://images.isbndb.com/covers/65/33/9780316816533.jpg'), - ('0156005492', 'Under The Black Flag: The Romance And The Reality Of Life Among The Pirates (Harvest Book)', 'https://images.isbndb.com/covers/54/94/9780156005494.jpg'), - ('038533446X', 'Lost Girls', 'https://images.isbndb.com/covers/44/64/9780385334464.jpg'), - ('0805059555', '"O" Is For Outlaw', 'https://images.isbndb.com/covers/95/57/9780805059557.jpg'), - ('0805036504', 'N Is For Noose (A Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/65/03/9780805036503.jpg'), - ('0060005009', 'Elvis The Rooster Almost Goes To Heaven (I Can Read Book 3)', 'https://images.isbndb.com/covers/50/09/9780060005009.jpg'), - ('0786831685', 'Simba''s A-Z (Disneys)', 'https://images.isbndb.com/covers/16/85/9780786831685.jpg'), - ('1578562589', 'Having A Mary Heart In A Martha World: Finding Intimacy With God In The Busyness Of Life (Revised Edition With New Bible Study)', 'https://images.isbndb.com/covers/25/89/9781578562589.jpg'), - ('0671024183', 'Morgan''s Run', 'https://images.isbndb.com/covers/41/85/9780671024185.jpg'), - ('0590448501', 'What Do You Do With A Kangaroo?', 'https://images.isbndb.com/covers/85/05/9780590448505.jpg'), - ('055305807X', 'Great Christmas Contest', 'https://images.isbndb.com/covers/80/79/9780553058079.jpg'), - ('0831746807', 'Hidden Pictures: Monster Madness', 'https://images.isbndb.com/covers/68/03/9780831746803.jpg'), - ('0373706863', 'The Water Baby: Family Man (Harlequin Superromance No. 686)', 'https://images.isbndb.com/covers/68/60/9780373706860.jpg'), - ('0671690558', 'Witch', 'https://images.isbndb.com/covers/05/57/9780671690557.jpg'), - ('0140173188', 'The Money Culture', 'https://images.isbndb.com/covers/31/85/9780140173185.jpg'), - ('1558172696', 'Working : My Life As A Prostitute', 'https://images.isbndb.com/covers/26/92/9781558172692.jpg'), - ('0399519483', 'A World Of Baby Names', 'https://images.isbndb.com/covers/94/82/9780399519482.jpg'), - ('1562650033', 'God''s Tribesman: The Rochunga Pudaite Story', 'https://images.isbndb.com/covers/00/32/9781562650032.jpg'), - ('0451173392', 'The Carbohydrate Addict''s Diet: The Lifelong Solution To Yo-Yo Dieting (Signet)', 'https://images.isbndb.com/covers/33/93/9780451173393.jpg'), - ('0679434046', 'In The Kitchen With Rosie: Oprah''s Favorite Recipes', 'https://images.isbndb.com/covers/40/47/9780679434047.jpg'), - ('1568846444', 'Gardening For Dummies', 'https://images.isbndb.com/covers/64/46/9781568846446.jpg'), - ('0895266067', 'Media Mischief And Misdeeds', 'https://images.isbndb.com/covers/60/64/9780895266064.jpg'), - ('0380004658', 'Bermuda Triangle', 'https://images.isbndb.com/covers/46/52/9780380004652.jpg'), - ('3462030531', 'Die Informanten', 'https://images.isbndb.com/covers/05/32/9783462030532.jpg'), - ('3442438799', 'Das Imperium', 'https://images.isbndb.com/covers/87/92/9783442438792.jpg'), - ('3442427983', 'Mein Ist Die Rache', 'https://images.isbndb.com/covers/79/87/9783442427987.jpg'), - ('0553155962', 'Bones On Black Spruce Mountain (A Bantam-Skylark Book)', 'https://images.isbndb.com/covers/59/69/9780553155969.jpg'), - ('0024080918', 'Psychology Work Today', 'https://images.isbndb.com/covers/09/12/9780024080912.jpg'), - ('027362198X', 'Key Management Solutions: 50 Leading Edge Solutions To Executive Problems (Financial Times Management Masterclass Series)', 'https://images.isbndb.com/covers/19/80/9780273621980.jpg'), - ('1885027060', 'Geezerhood: What To Expect From Life Now That You''re As Old As Dirt (Truth About Life Humor Books)', 'https://images.isbndb.com/covers/70/61/9781885027061.jpg'), - ('0312962185', 'The Cleveland Connection (Milan Jacovich Mysteries)', 'https://images.isbndb.com/covers/21/80/9780312962180.jpg'), - ('1932173102', 'My Brother''s Voice: How A Young Hungarian Boy Survived The Holocaust: A True Story', 'https://images.isbndb.com/covers/31/09/9781932173109.jpg'), - ('0373029578', 'The Cinderella Trap (Harlequin Romance, No 2957)', 'https://images.isbndb.com/covers/95/70/9780373029570.jpg'), - ('0380788500', 'Legends Walking: A Novel Of The Athanor', 'https://images.isbndb.com/covers/85/07/9780380788507.jpg'), - ('1558172297', 'Azarius', 'https://images.isbndb.com/covers/22/96/9781558172296.jpg'), - ('0373035039', 'Baby In A Million (Harlequin Romance , No 3503)', 'https://images.isbndb.com/covers/50/38/9780373035038.jpg'), - ('1878702033', 'Winterfire', 'https://images.isbndb.com/covers/20/36/9781878702036.jpg'), - ('0618124918', 'The Best American Mystery Stories 2001 (The Best American Series)', 'https://images.isbndb.com/covers/49/16/9780618124916.jpg'), - ('0380782332', 'Kiss An Angel', 'https://images.isbndb.com/covers/23/38/9780380782338.jpg'), - ('0553124773', 'Nebula Winners: 12', 'https://images.isbndb.com/covers/47/74/9780553124774.jpg'), - ('0698116844', 'The Cat Ate My Gymsuit', 'https://images.isbndb.com/covers/68/49/9780698116849.jpg'), - ('0440700132', 'Just As Long As Wer''e Together', 'https://images.isbndb.com/covers/01/35/9780440700135.jpg'), - ('0553278215', 'The Pearl', 'https://images.isbndb.com/covers/82/17/9780553278217.jpg'), - ('0743428625', 'Celeste (Gemini Series)', 'https://images.isbndb.com/covers/86/20/9780743428620.jpg'), - ('067174500X', 'Single White Female', 'https://images.isbndb.com/covers/50/04/9780671745004.jpg'), - ('0440213428', 'Who Killed My Daughter?', 'https://images.isbndb.com/covers/34/20/9780440213420.jpg'), - ('0671726587', 'What''s Wrong With Valerie?', 'https://images.isbndb.com/covers/65/84/9780671726584.jpg'), - ('0590679090', 'Jumanji', 'https://images.isbndb.com/covers/90/91/9780590679091.jpg'), - ('3453864050', 'Die überzeugende Bewerbungsmappe. Anschreiben. Lebenslauf. Zeugnisse.', 'https://images.isbndb.com/covers/40/54/9783453864054.jpg'), - ('3453864026', 'Die Optimale Bewerbung', 'https://images.isbndb.com/covers/40/23/9783453864023.jpg'), - ('0440406404', 'The Summer I Shrunk My Grandmother', 'https://images.isbndb.com/covers/64/02/9780440406402.jpg'), - ('0929923901', 'Wild Animals (Draw Science Series)', 'https://images.isbndb.com/covers/39/01/9780929923901.jpg'), - ('0446512478', 'Dear Stranger', 'https://images.isbndb.com/covers/24/73/9780446512473.jpg'), - ('0385417845', 'Woman Without A Past', 'https://images.isbndb.com/covers/78/46/9780385417846.jpg'), - ('0385312121', 'The Secret Of The Villa Mimosa', 'https://images.isbndb.com/covers/21/27/9780385312127.jpg'), - ('0553273280', 'Rich And Reckless', 'https://images.isbndb.com/covers/32/81/9780553273281.jpg'), - ('0425177351', 'Bio-Strike (Tom Clancy''s Power Plays, Book 4)', 'https://images.isbndb.com/covers/73/58/9780425177358.jpg'), - ('0312912153', 'Deadly Blessing', 'https://images.isbndb.com/covers/21/54/9780312912154.jpg'), - ('0671836862', 'Code Conquistador', 'https://images.isbndb.com/covers/68/63/9780671836863.jpg'), - ('1558020837', 'The Falstaff Cross', 'https://images.isbndb.com/covers/08/32/9781558020832.jpg'), - ('055311767X', 'Imperial 109', 'https://images.isbndb.com/covers/76/77/9780553117677.jpg'), - ('0312974256', 'Welcome To Temptation', 'https://images.isbndb.com/covers/42/51/9780312974251.jpg'), - ('0449222470', 'Justice For Some', 'https://images.isbndb.com/covers/24/78/9780449222478.jpg'), - ('052341899X', 'Hitler''s Daughter', 'https://images.isbndb.com/covers/89/95/9780523418995.jpg'), - ('0689846223', 'Anne Of Green Gables (Aladdin Classics)', 'https://images.isbndb.com/covers/62/29/9780689846229.jpg'), - ('0070504253', 'The McGraw-Hill Handbook Of Business Letters', 'https://images.isbndb.com/covers/42/57/9780070504257.jpg'), - ('067088782X', 'Woman''s Day Crafts For The Home', 'https://images.isbndb.com/covers/78/28/9780670887828.jpg'), - ('1893010023', 'Pot Stories For The Soul', 'https://images.isbndb.com/covers/00/24/9781893010024.jpg'), - ('0743456246', 'Hamlet II: Ophelia''s Revenge', 'https://images.isbndb.com/covers/62/41/9780743456241.jpg'), - ('0141439556', 'Wuthering Heights (Penguin Classics)', 'https://images.isbndb.com/covers/95/56/9780141439556.jpg'), - ('0679425268', 'Sole Survivor', 'https://images.isbndb.com/covers/52/67/9780679425267.jpg'), - ('0446608815', 'Pop Goes The Weasel', 'https://images.isbndb.com/covers/88/17/9780446608817.jpg'), - ('0515128546', 'Tears Of The Moon (Irish Trilogy, Book 2)', 'https://images.isbndb.com/covers/85/43/9780515128543.jpg'), - ('0440984696', 'Tiger Eyes', 'https://images.isbndb.com/covers/46/96/9780440984696.jpg'), - ('0515114006', 'Private Scandals', 'https://images.isbndb.com/covers/40/03/9780515114003.jpg'), - ('0375401601', 'Vittorio The Vampire: New Tales Of The Vampires', 'https://images.isbndb.com/covers/16/02/9780375401602.jpg'), - ('0446610348', 'Knight In My Bed', 'https://images.isbndb.com/covers/03/46/9780446610346.jpg'), - ('0517431491', 'The Historical Encyclopedia Of World War II', 'https://images.isbndb.com/covers/14/98/9780517431498.jpg'), - ('0300069766', 'Maps And History: Constructing Images Of The Past', 'https://images.isbndb.com/covers/97/61/9780300069761.jpg'), - ('0140178406', 'Aunt Dimity''s Death (Aunt Dimity Mystery)', 'https://images.isbndb.com/covers/84/01/9780140178401.jpg'), - ('0399149392', 'Chesapeake Blue (Quinn Brothers)', 'https://images.isbndb.com/covers/93/99/9780399149399.jpg'), - ('0312875681', 'Forests Of The Heart (Newford)', 'https://images.isbndb.com/covers/56/88/9780312875688.jpg'), - ('0385413041', 'Beach Music', 'https://images.isbndb.com/covers/30/46/9780385413046.jpg'), - ('0385308078', 'Midnight Lemonade', 'https://images.isbndb.com/covers/80/76/9780385308076.jpg'), - ('0395771382', 'So Far From The Bamboo Grove: Mcdougal Littell Literature Connections', 'https://images.isbndb.com/covers/13/89/9780395771389.jpg'), - ('0451523385', 'Wuthering Heights (Signet Classics)', 'https://images.isbndb.com/covers/33/89/9780451523389.jpg'), - ('0140440224', 'The Canterbury Tales: In Modern English (Penguin Classics)', 'https://images.isbndb.com/covers/02/25/9780140440225.jpg'), - ('0871138611', 'The Adventures Of Miles And Isabel', 'https://images.isbndb.com/covers/86/13/9780871138613.jpg'), - ('0380789663', 'Green Shadows, White Whale: A Novel Of Ray Bradbury''s Adventures Making Moby Dick With John Huston In Ireland', 'https://images.isbndb.com/covers/96/65/9780380789665.jpg'), - ('0380789590', 'Quicker Than The Eye', 'https://images.isbndb.com/covers/95/97/9780380789597.jpg'), - ('0316769495', 'Franny And Zooey', 'https://images.isbndb.com/covers/94/95/9780316769495.jpg'), - ('1551662809', 'Just For The Summer', 'https://images.isbndb.com/covers/28/00/9781551662800.jpg'), - ('1410784924', 'Myths Of The Super Parent: Finding The Power Of Real Parenting', 'https://images.isbndb.com/covers/49/26/9781410784926.jpg'), - ('0670880728', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/07/20/9780670880720.jpg'), - ('0385472943', 'The Runaway Jury', 'https://images.isbndb.com/covers/29/44/9780385472944.jpg'), - ('0679452354', 'Still Me', 'https://images.isbndb.com/covers/23/55/9780679452355.jpg'), - ('0142003727', 'Revenge Of The Middle-Aged Woman: A Novel', 'https://images.isbndb.com/covers/37/25/9780142003725.jpg'), - ('2253036218', 'Nouveaux Contes De La Folie Ordinaire', 'https://images.isbndb.com/covers/62/10/9782253036210.jpg'), - ('2290308404', 'Différentes Saisons', 'https://images.isbndb.com/covers/84/00/9782290308400.jpg'), - ('2738107915', 'Les Nourritures Affectives', 'https://images.isbndb.com/covers/79/16/9782738107916.jpg'), - ('2844121578', 'Mersonne Ne M''aime', 'https://images.isbndb.com/covers/15/78/9782844121578.jpg'), - ('2264002190', 'Génération X', 'https://images.isbndb.com/covers/21/98/9782264002198.jpg'), - ('2266072242', 'L''Aliéniste', 'https://images.isbndb.com/covers/22/43/9782266072243.jpg'), - ('1591299357', 'Releasing The Demons', 'https://images.isbndb.com/covers/93/56/9781591299356.jpg'), - ('0373703384', 'Mariah', 'https://images.isbndb.com/covers/33/88/9780373703388.jpg'), - ('0671047515', 'Hell''s Kitchen', 'https://images.isbndb.com/covers/75/11/9780671047511.jpg'), - ('0553581767', 'Manhattan Is My Beat (Rune Trilogy)', 'https://images.isbndb.com/covers/17/68/9780553581768.jpg'), - ('039308700X', 'Helter Skelter: The True Story Of The Manson Murders (25th Anniversary Edition)', 'https://images.isbndb.com/covers/70/00/9780393087000.jpg'), - ('0553801341', 'From The Corner Of His Eye', 'https://images.isbndb.com/covers/13/47/9780553801347.jpg'), - ('0375803017', 'The Halloween Tree', 'https://images.isbndb.com/covers/30/17/9780375803017.jpg'), - ('0671039725', 'Carrie', 'https://images.isbndb.com/covers/97/21/9780671039721.jpg'), - ('0345389425', 'Violin', 'https://images.isbndb.com/covers/94/28/9780345389428.jpg'), - ('0671660209', 'Love Stinks: The Romantic''s Guide To Breaking Up Without Breaking Down', 'https://images.isbndb.com/covers/02/08/9780671660208.jpg'), - ('0345422317', 'The Genesis Code', 'https://images.isbndb.com/covers/23/16/9780345422316.jpg'), - ('0140169598', 'Naked Beneath My Clothes: Tales Of A Revealing Nature', 'https://images.isbndb.com/covers/95/91/9780140169591.jpg'), - ('0671883429', 'Recovery (Star Trek, Book 73)', 'https://images.isbndb.com/covers/34/23/9780671883423.jpg'), - ('0671722891', 'The Taming Of The Shrew (The New Folger Library)', 'https://images.isbndb.com/covers/28/90/9780671722890.jpg'), - ('0441115985', 'Conan 05: Conan The Adventurer', 'https://images.isbndb.com/covers/59/83/9780441115983.jpg'), - ('0553234706', 'Comp. Guide To/tarot', 'https://images.isbndb.com/covers/47/01/9780553234701.jpg'), - ('067153873X', 'Twilight''s End (Star Trek, Book 77)', 'https://images.isbndb.com/covers/87/36/9780671538736.jpg'), - ('0671869124', 'The Better Man (Star Trek, Book 72)', 'https://images.isbndb.com/covers/91/20/9780671869120.jpg'), - ('0451142934', 'Skeleton Crew (Signet)', 'https://images.isbndb.com/covers/29/31/9780451142931.jpg'), - ('068805935X', 'How Did They Do That?', 'https://images.isbndb.com/covers/93/54/9780688059354.jpg'), - ('0786862564', 'Make The Connection: Ten Steps To A Better Body And A Better Life', 'https://images.isbndb.com/covers/25/66/9780786862566.jpg'), - ('0967575613', 'Tales From The Dark Tower', 'https://images.isbndb.com/covers/56/12/9780967575612.jpg'), - ('0345388623', 'Elephants'' Graveyard', 'https://images.isbndb.com/covers/86/29/9780345388629.jpg'), - ('0445407158', 'Nobody''s Perfect', 'https://images.isbndb.com/covers/71/52/9780445407152.jpg'), - ('0553568787', 'Carriage Trade', 'https://images.isbndb.com/covers/87/83/9780553568783.jpg'), - ('0345382528', 'Highwayman And Mr. Dickens: An Account Of The Strange Events Of The Medusa Murderers', 'https://images.isbndb.com/covers/25/28/9780345382528.jpg'), - ('0446363049', 'Vortex', 'https://images.isbndb.com/covers/30/44/9780446363044.jpg'), - ('0671017241', 'Fountain Society', 'https://images.isbndb.com/covers/72/48/9780671017248.jpg'), - ('0849939518', 'Snowboarding ...to The Extreme: Rippin'' (Short Cuts Series)', 'https://images.isbndb.com/covers/95/18/9780849939518.jpg'), - ('0740738089', 'Blueprint For Disaster: A Get Fuzzy Collection', 'https://images.isbndb.com/covers/80/81/9780740738081.jpg'), - ('0451526929', 'Hamlet (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/69/22/9780451526922.jpg'), - ('0446676209', 'Bosom Buddies: Lessons And Laughter On Breast Health And Cancer', 'https://images.isbndb.com/covers/62/05/9780446676205.jpg'), - ('0747553327', 'The Bluebird Cafe', 'https://images.isbndb.com/covers/33/28/9780747553328.jpg'), - ('0571134173', 'The Burning Book', 'https://images.isbndb.com/covers/41/75/9780571134175.jpg'), - ('0865733279', 'Quilting (Seams Sew Easy)', 'https://images.isbndb.com/covers/32/75/9780865733275.jpg'), - ('0451408462', 'Drop Dead Gorgeous', 'https://images.isbndb.com/covers/84/64/9780451408464.jpg'), - ('0446517399', 'There Was A Little Girl', 'https://images.isbndb.com/covers/73/93/9780446517393.jpg'), - ('0440173922', 'The Ring', 'https://images.isbndb.com/covers/39/22/9780440173922.jpg'), - ('0061031992', 'A Theory Of Relativity', 'https://images.isbndb.com/covers/19/91/9780061031991.jpg'), - ('0156394014', 'A Haunted House And Other Short Stories', 'https://images.isbndb.com/covers/40/17/9780156394017.jpg'), - ('0517703858', 'Spiritual Parenting: A Guide To Understanding And Nurturing The Heart Of Your Child', 'https://images.isbndb.com/covers/38/54/9780517703854.jpg'), - ('0425159671', 'Dream Stalker (Wind River Reservation Mystery)', 'https://images.isbndb.com/covers/96/75/9780425159675.jpg'), - ('1551668084', 'Storm Warning', 'https://images.isbndb.com/covers/80/86/9781551668086.jpg'), - ('0843948892', 'Savage Honor (Savage (Leisure Paperback))', 'https://images.isbndb.com/covers/88/99/9780843948899.jpg'), - ('038081014X', 'The Last Good Man', 'https://images.isbndb.com/covers/01/47/9780380810147.jpg'), - ('344244991X', 'Cave Canem: Ein Felidae-Roman', 'https://images.isbndb.com/covers/99/10/9783442449910.jpg'), - ('051513306X', 'The Shape Of Snakes', 'https://images.isbndb.com/covers/30/66/9780515133066.jpg'), - ('0805065393', 'Awake', 'https://images.isbndb.com/covers/53/98/9780805065398.jpg'), - ('0764226770', 'Coming Home', 'https://images.isbndb.com/covers/67/79/9780764226779.jpg'), - ('0425195244', 'Beauty Queen (Lear Family Trilogy, Book 2)', 'https://images.isbndb.com/covers/52/46/9780425195246.jpg'), - ('0060527412', 'For The First Time', 'https://images.isbndb.com/covers/74/19/9780060527419.jpg'), - ('042519213X', 'On What Grounds (Coffeehouse Mysteries, No. 1)', 'https://images.isbndb.com/covers/21/39/9780425192139.jpg'), - ('0671042513', 'The Last Chance Cafe : A Novel', 'https://images.isbndb.com/covers/25/16/9780671042516.jpg'), - ('045121188X', 'A Distinction Of Blood: A Mystery Of Georgian England', 'https://images.isbndb.com/covers/18/80/9780451211880.jpg'), - ('0446611468', 'A Place Called Rainwater (Missouri, Book 3)', 'https://images.isbndb.com/covers/14/66/9780446611466.jpg'), - ('0451211790', 'Louisa And The Missing Heiress: The First Louisa May Alcott Mystery (Louisa May Alcott Mystery Series)', 'https://images.isbndb.com/covers/17/98/9780451211798.jpg'), - ('0451408020', 'Forbidden Magic', 'https://images.isbndb.com/covers/80/20/9780451408020.jpg'), - ('0373225628', 'Protecting His Own (Harlequin Intrigue 562)', 'https://images.isbndb.com/covers/56/20/9780373225620.jpg'), - ('0373289138', 'Man Of The Mist (Harlequin Historical)', 'https://images.isbndb.com/covers/91/34/9780373289134.jpg'), - ('0060531231', 'When He Was Wicked (Bridgerton Family Series)', 'https://images.isbndb.com/covers/12/32/9780060531232.jpg'), - ('037322558X', 'Never Too Late (Harlequin Intrigue #558, 43 Light St. #21)', 'https://images.isbndb.com/covers/55/83/9780373225583.jpg'), - ('0312990030', 'The Dragon King''s Palace: A Novel (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/00/39/9780312990039.jpg'), - ('0373224648', 'Heat Of Passion (Harlequin Intrigue)', 'https://images.isbndb.com/covers/46/47/9780373224647.jpg'), - ('0451211839', 'Skylark', 'https://images.isbndb.com/covers/18/35/9780451211835.jpg'), - ('0821760955', 'Highland Honor', 'https://images.isbndb.com/covers/09/56/9780821760956.jpg'), - ('0425104346', 'Darkfall', 'https://images.isbndb.com/covers/43/47/9780425104347.jpg'), - ('0425198057', 'The London Blitz Murders', 'https://images.isbndb.com/covers/80/56/9780425198056.jpg'), - ('0451210646', 'Undone', 'https://images.isbndb.com/covers/06/47/9780451210647.jpg'), - ('0440224551', 'Blood Of Roses', 'https://images.isbndb.com/covers/45/56/9780440224556.jpg'), - ('0843953780', 'Eyeliner Of The Gods', 'https://images.isbndb.com/covers/37/87/9780843953787.jpg'), - ('0440237556', 'The Dark Highlander (The Highlander Series, Book 5)', 'https://images.isbndb.com/covers/75/56/9780440237556.jpg'), - ('0373245025', 'Cattleman''s Honor (Winchester Brides) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/50/24/9780373245024.jpg'), - ('0373226667', 'The Duke''s Covert Mission (The Carradignes: A Royal Mystery) (Harlequin Intrigue # 666)', 'https://images.isbndb.com/covers/66/65/9780373226665.jpg'), - ('0373224613', 'Ransom My Heart (Home To Texas) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/46/16/9780373224616.jpg'), - ('0373226772', 'When Lightning Strikes (Sign Of The Gray Wolf #1) (Harlequin Intrigue #677)', 'https://images.isbndb.com/covers/67/71/9780373226771.jpg'), - ('0373226144', 'Familiar Lullaby (Fear Familiar, Book 13) (Harlequin Intrigue Series #614)', 'https://images.isbndb.com/covers/61/46/9780373226146.jpg'), - ('037312273X', 'To Marry McAllister (Bachelor Cousins) (Harlequin Presents)', 'https://images.isbndb.com/covers/27/38/9780373122738.jpg'), - ('0373225806', 'Little Boy Lost (Secret Identity) (Harlequin Intrigue, 580)', 'https://images.isbndb.com/covers/58/04/9780373225804.jpg'), - ('0373225857', 'The Agent''s Secret Child (Texas Confidential, Book 2) (Harlequin Intrigue Series #585)', 'https://images.isbndb.com/covers/58/59/9780373225859.jpg'), - ('0505522837', 'The Magic Of Christmas (Heartspell)', 'https://images.isbndb.com/covers/28/32/9780505522832.jpg'), - ('0061084476', 'Misbegotten', 'https://images.isbndb.com/covers/44/78/9780061084478.jpg'), - ('0061000205', 'Father & Son', 'https://images.isbndb.com/covers/02/01/9780061000201.jpg'), - ('0590251627', 'Claudia And Mean Janine (Baby-Sitters Club #7)', 'https://images.isbndb.com/covers/16/24/9780590251624.jpg'), - ('0590251619', 'Kristy''s Big Day (Baby-Sitters Club # 6)', 'https://images.isbndb.com/covers/16/17/9780590251617.jpg'), - ('0590251600', 'Dawn And The Impossible Three (The Baby-Sitters Club #5)', 'https://images.isbndb.com/covers/16/00/9780590251600.jpg'), - ('1551669420', 'Mad About The Man', 'https://images.isbndb.com/covers/94/27/9781551669427.jpg'), - ('0152017682', 'The Darkangel: The Darkangel Trilogy, Volume I', 'https://images.isbndb.com/covers/76/82/9780152017682.jpg'), - ('0425176614', 'Nightswimmer', 'https://images.isbndb.com/covers/66/10/9780425176610.jpg'), - ('1581960085', 'My Secret Boyfriend (Young Adult Fiction)', 'https://images.isbndb.com/covers/00/82/9781581960082.jpg'), - ('0515134511', 'The Killing Dance (Anita Blake, Vampire Hunter, Book 6)', 'https://images.isbndb.com/covers/45/13/9780515134513.jpg'), - ('0486277879', 'The Way Of The World (Dover Thrift Editions)', 'https://images.isbndb.com/covers/78/75/9780486277875.jpg'), - ('1932344268', 'Does God Have A Remote Control', 'https://images.isbndb.com/covers/42/64/9781932344264.jpg'), - ('0967024250', 'What Is Becoming Clearer To Me', 'https://images.isbndb.com/covers/42/57/9780967024257.jpg'), - ('096702420X', 'Angel On Board', 'https://images.isbndb.com/covers/42/02/9780967024202.jpg'), - ('0446520802', 'The Notebook', 'https://images.isbndb.com/covers/08/05/9780446520805.jpg'), - ('0375500995', 'What We Keep', 'https://images.isbndb.com/covers/09/92/9780375500992.jpg'), - ('0062502514', 'Healing Words: The Power Of Prayer And The Practice Of Medicine', 'https://images.isbndb.com/covers/25/13/9780062502513.jpg'), - ('0425168468', 'Practical Magic', 'https://images.isbndb.com/covers/84/62/9780425168462.jpg'), - ('0553227467', 'Red Dragon', 'https://images.isbndb.com/covers/74/68/9780553227468.jpg'), - ('0140372628', 'The Mysterious Adventures Of Sherlock Holmes (Puffin Classics)', 'https://images.isbndb.com/covers/26/25/9780140372625.jpg'), - ('0394728815', 'Blow-Up: And Other Stories', 'https://images.isbndb.com/covers/88/10/9780394728810.jpg'), - ('0963930400', 'Secrets To Running A Successful Business : How To Have Fun Getting More Business', 'https://images.isbndb.com/covers/04/08/9780963930408.jpg'), - ('0963930419', 'Living Life As You Always Dreamed', 'https://images.isbndb.com/covers/04/15/9780963930415.jpg'), - ('0515130966', 'Riptide (FBI Series)', 'https://images.isbndb.com/covers/09/66/9780515130966.jpg'), - ('1551667339', 'White Lies', 'https://images.isbndb.com/covers/73/31/9781551667331.jpg'), - ('1571430237', 'Treasure: The Trials Of A Teenage Terror And Her Mom', 'https://images.isbndb.com/covers/02/36/9781571430236.jpg'), - ('0590474804', 'Call Waiting (Point Horror Series)', 'https://images.isbndb.com/covers/48/01/9780590474801.jpg'), - ('0060152583', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/25/81/9780060152581.jpg'), - ('0374512647', 'The Ripening Seed', 'https://images.isbndb.com/covers/26/44/9780374512644.jpg'), - ('0394743040', 'Ravishing Of Lol Stein', 'https://images.isbndb.com/covers/30/42/9780394743042.jpg'), - ('0394623266', 'Destroy She Said', 'https://images.isbndb.com/covers/32/69/9780394623269.jpg'), - ('0020191200', 'A Night At The Movies: Or, You Must Remember This (Collier Fiction)', 'https://images.isbndb.com/covers/12/09/9780020191209.jpg'), - ('0394744756', 'Kiss Of The Spider Woman', 'https://images.isbndb.com/covers/47/59/9780394744759.jpg'), - ('0394552369', 'The War: A Memoir', 'https://images.isbndb.com/covers/23/61/9780394552361.jpg'), - ('0375757147', 'Shrub : The Short But Happy Political Life Of George W. Bush', 'https://images.isbndb.com/covers/71/43/9780375757143.jpg'), - ('0440206146', 'Black Sunday', 'https://images.isbndb.com/covers/61/49/9780440206149.jpg'), - ('0060392436', 'The Anti-Aging Zone', 'https://images.isbndb.com/covers/24/37/9780060392437.jpg'), - ('0805064222', 'The Good German: A Novel', 'https://images.isbndb.com/covers/42/23/9780805064223.jpg'), - ('0140274316', 'This (BBC)', 'https://images.isbndb.com/covers/43/18/9780140274318.jpg'), - ('0609607804', 'I''m Next: The Strange Journey Of America''s Most Unlikely Superhero', 'https://images.isbndb.com/covers/78/00/9780609607800.jpg'), - ('3548265383', 'Vom Kriege', 'https://images.isbndb.com/covers/53/84/9783548265384.jpg'), - ('0618129014', 'The Lord Of The Rings (Movie Art Cover)', 'https://images.isbndb.com/covers/90/10/9780618129010.jpg'), - ('055338189X', 'Love, Greg & Lauren', 'https://images.isbndb.com/covers/18/94/9780553381894.jpg'), - ('0385509529', 'You Are Not A Stranger Here (Today Show Book Club #2)', 'https://images.isbndb.com/covers/95/27/9780385509527.jpg'), - ('0821601806', 'Clotel: Or, The President''s Daughter : A Narrative Of Slave Life In The United States', 'https://images.isbndb.com/covers/18/08/9780821601808.jpg'), - ('0345329732', 'Final Payments', 'https://images.isbndb.com/covers/97/38/9780345329738.jpg'), - ('1563521083', 'If Forever Came Tomorrow: These Are The Things I''d Like To Do Today', 'https://images.isbndb.com/covers/10/89/9781563521089.jpg'), - ('0449200256', 'The Power Of Positive Thinking', 'https://images.isbndb.com/covers/02/54/9780449200254.jpg'), - ('0684195976', 'The Body Farm', 'https://images.isbndb.com/covers/59/71/9780684195971.jpg'), - ('042506073X', 'Great Entertainers', 'https://images.isbndb.com/covers/07/35/9780425060735.jpg'), - ('0312971494', 'Black And White: A Novel', 'https://images.isbndb.com/covers/14/96/9780312971496.jpg'), - ('0451112121', 'Kate: The Life Of Katharine Hepburn (Signet Book)', 'https://images.isbndb.com/covers/21/25/9780451112125.jpg'), - ('0515123536', 'Before I Wake', 'https://images.isbndb.com/covers/35/31/9780515123531.jpg'), - ('037324195X', 'Every Cowgirl''s Dream (Silhouette Special Edition , No 1195)', 'https://images.isbndb.com/covers/19/58/9780373241958.jpg'), - ('0312954700', 'Husband, Lover, Spy', 'https://images.isbndb.com/covers/47/03/9780312954703.jpg'), - ('0671672495', 'Symphony', 'https://images.isbndb.com/covers/24/92/9780671672492.jpg'), - ('0425092917', 'The Accidental Tourist', 'https://images.isbndb.com/covers/29/10/9780425092910.jpg'), - ('0449911519', 'The Secret History', 'https://images.isbndb.com/covers/15/18/9780449911518.jpg'), - ('0440236754', 'Sunset In St. Tropez', 'https://images.isbndb.com/covers/67/57/9780440236757.jpg'), - ('0881660949', 'Grandma Knows Best, But No One Ever Listens', 'https://images.isbndb.com/covers/09/44/9780881660944.jpg'), - ('0451173317', 'The Waste Lands (The Dark Tower, Book 3)', 'https://images.isbndb.com/covers/33/17/9780451173317.jpg'), - ('0451160525', 'The Dark Tower The Gunslinger', 'https://images.isbndb.com/covers/05/22/9780451160522.jpg'), - ('0743446593', 'Detour: My Bipolar Road Trip In 4-D', 'https://images.isbndb.com/covers/65/94/9780743446594.jpg'), - ('068483068X', 'Gone With The Wind', 'https://images.isbndb.com/covers/06/81/9780684830681.jpg'), - ('0759695377', 'Celestial Voices', 'https://images.isbndb.com/covers/53/75/9780759695375.jpg'), - ('0340512660', 'Pigs Ahoy!', 'https://images.isbndb.com/covers/26/61/9780340512661.jpg'), - ('0099623404', 'ROOFWORLD', 'https://images.isbndb.com/covers/34/03/9780099623403.jpg'), - ('014035008X', 'Little Women (Puffin Classics)', 'https://images.isbndb.com/covers/00/81/9780140350081.jpg'), - ('0684813440', 'Joshua In The Holy Land', 'https://images.isbndb.com/covers/34/48/9780684813448.jpg'), - ('0684813459', 'Joshua And The Children', 'https://images.isbndb.com/covers/34/55/9780684813455.jpg'), - ('0684813467', 'Joshua: A Parable For Today', 'https://images.isbndb.com/covers/34/62/9780684813462.jpg'), - ('0553283111', 'QUIET AS A NUN (Jemima Shore Mysteries)', 'https://images.isbndb.com/covers/31/12/9780553283112.jpg'), - ('0030448565', 'Doonesbury''s Greatest Hits', 'https://images.isbndb.com/covers/85/60/9780030448560.jpg'), - ('0140188479', 'Black Lamb And Grey Falcon: A Journey Through Yugoslavia (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/84/79/9780140188479.jpg'), - ('0446393681', 'The Theory Of Everything', 'https://images.isbndb.com/covers/36/83/9780446393683.jpg'), - ('067177879X', 'Cyberpunk: Outlaws And Hackers On The Computer Frontier', 'https://images.isbndb.com/covers/87/98/9780671778798.jpg'), - ('0553238744', 'How To Break Your Addiction To A Person', 'https://images.isbndb.com/covers/87/47/9780553238747.jpg'), - ('0020199600', 'The Great Gatsby', 'https://images.isbndb.com/covers/96/01/9780020199601.jpg'), - ('0553210211', 'Wuthering Heights', 'https://images.isbndb.com/covers/02/17/9780553210217.jpg'), - ('0743211227', 'The Prize Winner Of Defiance, Ohio : How My Mother Raised 10 Kids On 25 Words Or Less', 'https://images.isbndb.com/covers/12/22/9780743211222.jpg'), - ('0553560441', 'The Road To Omaha', 'https://images.isbndb.com/covers/04/42/9780553560442.jpg'), - ('0445405627', 'The Maul And The Pear Tree: The Ratcliffe Highway Murders, 1811', 'https://images.isbndb.com/covers/56/22/9780445405622.jpg'), - ('0440201705', 'Heaven And Hell', 'https://images.isbndb.com/covers/17/00/9780440201700.jpg'), - ('0061090565', 'Under Fire: An American Story', 'https://images.isbndb.com/covers/05/61/9780061090561.jpg'), - ('0553297422', 'The Deceiver', 'https://images.isbndb.com/covers/74/23/9780553297423.jpg'), - ('0515117617', 'Happy Are Those Who Mourn (Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/76/15/9780515117615.jpg'), - ('0449217264', 'Alaska: A Novel', 'https://images.isbndb.com/covers/72/69/9780449217269.jpg'), - ('0345298349', 'Gorky Park (Arkady Renko Novels)', 'https://images.isbndb.com/covers/83/48/9780345298348.jpg'), - ('0345372050', 'You Just Don''t Understand: Women And Men In Conversation', 'https://images.isbndb.com/covers/20/55/9780345372055.jpg'), - ('0809130157', 'Living Simply In An Anxious World: An Invitation To Perspective', 'https://images.isbndb.com/covers/01/53/9780809130153.jpg'), - ('0060919833', 'Love, Medicine And Miracles: Lessons Learned About Self-Healing From A Surgeon''s Experience With Exceptional Patients', 'https://images.isbndb.com/covers/98/32/9780060919832.jpg'), - ('0553199803', 'Day Of The Jackal', 'https://images.isbndb.com/covers/98/02/9780553199802.jpg'), - ('0553269100', 'Lighthouse', 'https://images.isbndb.com/covers/91/09/9780553269109.jpg'), - ('0345311183', 'C.B. Greenfield: The Piano Bird', 'https://images.isbndb.com/covers/11/84/9780345311184.jpg'), - ('0553236776', 'Last Respects', 'https://images.isbndb.com/covers/67/74/9780553236774.jpg'), - ('0553236687', 'Parting Breath', 'https://images.isbndb.com/covers/66/82/9780553236682.jpg'), - ('155369046X', 'Summer In A Red Mustang With Cookies', 'https://images.isbndb.com/covers/04/67/9781553690467.jpg'), - ('0312971303', 'Catch Me', 'https://images.isbndb.com/covers/13/04/9780312971304.jpg'), - ('067188414X', 'Foreign Foes (Star Trek The Next Generation, No 31)', 'https://images.isbndb.com/covers/41/47/9780671884147.jpg'), - ('0440215404', 'Sins Of The Blood', 'https://images.isbndb.com/covers/54/00/9780440215400.jpg'), - ('1863736522', 'Seasonal Adjustments', 'https://images.isbndb.com/covers/65/27/9781863736527.jpg'), - ('1869503368', 'Letters From The Fire', 'https://images.isbndb.com/covers/33/69/9781869503369.jpg'), - ('1589610024', 'The Pleasure Of His Company: A Kendra Clayton Mystery', 'https://images.isbndb.com/covers/00/26/9781589610026.jpg'), - ('0425195473', 'Remember When', 'https://images.isbndb.com/covers/54/75/9780425195475.jpg'), - ('0899681069', 'Pollyanna', 'https://images.isbndb.com/covers/10/61/9780899681061.jpg'), - ('0802707815', 'A Falcon For The Hawks', 'https://images.isbndb.com/covers/78/19/9780802707819.jpg'), - ('0241894840', 'Until The Colours Fade', 'https://images.isbndb.com/covers/48/42/9780241894842.jpg'), - ('0002219476', 'The Way To Dusty Death', 'https://images.isbndb.com/covers/94/71/9780002219471.jpg'), - ('1551660369', 'Desires & Deceptions', 'https://images.isbndb.com/covers/03/63/9781551660363.jpg'), - ('0778321150', 'Down To The Bone', 'https://images.isbndb.com/covers/11/56/9780778321156.jpg'), - ('0860207161', 'Find The Piglet (Find It Board Books)', 'https://images.isbndb.com/covers/71/60/9780860207160.jpg'), - ('0671955543', 'The Blue Poodle Mystery (Bobbsey Twins, No.1)', 'https://images.isbndb.com/covers/55/40/9780671955540.jpg'), - ('0140307532', 'THE DIDAKOI ( TV Tie-n To ''Kizzy'')', 'https://images.isbndb.com/covers/75/35/9780140307535.jpg'), - ('0140328335', 'The Ghost On The Hill (Plus)', 'https://images.isbndb.com/covers/83/32/9780140328332.jpg'), - ('0006716067', 'Harold And Bella, Jammy And Me (Lions)', 'https://images.isbndb.com/covers/60/68/9780006716068.jpg'), - ('000692347X', 'The Clue Of The Broken Locket (Nancy Drew, Book 11)', 'https://images.isbndb.com/covers/34/73/9780006923473.jpg'), - ('085079188X', 'Cartoons: 43rd Series', 'https://images.isbndb.com/covers/18/84/9780850791884.jpg'), - ('0723237840', 'Farmyard Noises: Shaped Board Book (Potter Shaped Board Book)', 'https://images.isbndb.com/covers/78/46/9780723237846.jpg'), - ('0001360469', 'Dressing (Collins Baby & Toddler: Babe Board Books)', 'https://images.isbndb.com/covers/04/64/9780001360464.jpg'), - ('0721406173', 'First Ladybird Key Words Picture Dictionary (Bk. 1)', 'https://images.isbndb.com/covers/61/76/9780721406176.jpg'), - ('0948535156', 'The Lettermen In The Garden', 'https://images.isbndb.com/covers/51/54/9780948535154.jpg'), - ('059070592X', 'Postman Pat''s Wet Day', 'https://images.isbndb.com/covers/59/29/9780590705929.jpg'), - ('0001374869', 'Baby Plays (Collins Baby & Toddler)', 'https://images.isbndb.com/covers/48/67/9780001374867.jpg'), - ('0861122488', 'Open And Say', 'https://images.isbndb.com/covers/24/86/9780861122486.jpg'), - ('0307122034', 'Thumpity Thump Gets Dressed', 'https://images.isbndb.com/covers/20/32/9780307122032.jpg'), - ('1852700483', 'Whose Dinner', 'https://images.isbndb.com/covers/04/85/9781852700485.jpg'), - ('0750009861', 'Clothes', 'https://images.isbndb.com/covers/98/67/9780750009867.jpg'), - ('0721407501', 'First Picture Book: Toys (First Picture Books)', 'https://images.isbndb.com/covers/75/00/9780721407500.jpg'), - ('1858282160', 'The Internet And World Wide Web: The Rough Guide, Version 2.0 (2nd Ed)', 'https://images.isbndb.com/covers/21/69/9781858282169.jpg'), - ('0140276904', 'Jemima J', 'https://images.isbndb.com/covers/69/09/9780140276909.jpg'), - ('3453868315', 'Black Hawk Down. Kein Mann Bleibt Zurück', 'https://images.isbndb.com/covers/83/11/9783453868311.jpg'), - ('3442450020', 'JR', 'https://images.isbndb.com/covers/00/22/9783442450022.jpg'), - ('3404148665', 'Illuminati', 'https://images.isbndb.com/covers/86/60/9783404148660.jpg'), - ('0967819946', 'Final Copy', 'https://images.isbndb.com/covers/99/45/9780967819945.jpg'), - ('3630869459', 'Die Asche Meiner Mutter. Irische Erinnerungen', 'https://images.isbndb.com/covers/94/52/9783630869452.jpg'), - ('1551666650', 'Hurricane Bay', 'https://images.isbndb.com/covers/66/55/9781551666655.jpg'), - ('1558745157', 'The Lost Boy: A Foster Child''s Search For The Love Of A Family', 'https://images.isbndb.com/covers/51/55/9781558745155.jpg'), - ('0802139612', 'Dumped', 'https://images.isbndb.com/covers/96/10/9780802139610.jpg'), - ('0812966627', '10th Grade: A Novel', 'https://images.isbndb.com/covers/66/26/9780812966626.jpg'), - ('0806943238', 'Two-In-One Crosswords: Hard And Easy Clues For Every Puzzle', 'https://images.isbndb.com/covers/32/37/9780806943237.jpg'), - ('096737930X', 'Rock Picker''s Guide To Lake Superior''s North Shore (North Woods Naturalist Guides)', 'https://images.isbndb.com/covers/93/02/9780967379302.jpg'), - ('0531162192', 'Storm Chasers (Watts Library)', 'https://images.isbndb.com/covers/21/94/9780531162194.jpg'), - ('0439083699', 'Franklin''s Neighborhood (Franklin (Scholastic Paperback))', 'https://images.isbndb.com/covers/36/90/9780439083690.jpg'), - ('0060739487', 'Wringer (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/85/9780060739485.jpg'), - ('0060739495', 'Walk Two Moons (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/92/9780060739492.jpg'), - ('0060739444', 'Julie Of The Wolves (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/47/9780060739447.jpg'), - ('0743437314', 'The Merchant Of Death (Pendragon Series #1)', 'https://images.isbndb.com/covers/73/18/9780743437318.jpg'), - ('006073941X', 'Bridge To Terabithia (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/16/9780060739416.jpg'), - ('0439633737', 'Dragon''s Nest (Dragons Of Deltora, Book 1)', 'https://images.isbndb.com/covers/37/34/9780439633734.jpg'), - ('0439253233', 'The Forests Of Silence (Deltora Quest, 1)', 'https://images.isbndb.com/covers/32/39/9780439253239.jpg'), - ('034536208X', 'Fair And Tender Ladies', 'https://images.isbndb.com/covers/20/87/9780345362087.jpg'), - ('0553230212', 'The Parsifal Mosaic', 'https://images.isbndb.com/covers/02/15/9780553230215.jpg'), - ('1579903002', 'The Weekend Crafter: Rubber Stamp Carving: Techniques, Designs & Projects', 'https://images.isbndb.com/covers/30/08/9781579903008.jpg'), - ('0762727942', 'The Letterboxer''s Companion', 'https://images.isbndb.com/covers/79/40/9780762727940.jpg'), - ('1590591224', 'GeoCaching: Hike And Seek With Your GPS (Technology In Action Series)', 'https://images.isbndb.com/covers/12/22/9781590591222.jpg'), - ('0787108960', 'The Hitchhiker''s Guide To The Galaxy: Live In Concert', 'https://images.isbndb.com/covers/89/60/9780787108960.jpg'), - ('0812522133', 'Trouble And Her Friends', 'https://images.isbndb.com/covers/21/36/9780812522136.jpg'), - ('014028852X', 'Difficult Conversations: How To Discuss What Matters Most', 'https://images.isbndb.com/covers/85/20/9780140288520.jpg'), - ('1887424148', 'Attention Deficit Disorder : A Different Perception', 'https://images.isbndb.com/covers/41/41/9781887424141.jpg'), - ('0060928174', 'After The Affair: Healing The Pain And Rebuilding Trust When A Partner Has Been Unfaithful', 'https://images.isbndb.com/covers/81/79/9780060928179.jpg'), - ('0425063879', 'Northern Girl', 'https://images.isbndb.com/covers/38/73/9780425063873.jpg'), - ('1563890895', 'The Sandman Vol. 5: A Game Of You', 'https://images.isbndb.com/covers/08/95/9781563890895.jpg'), - ('0425064921', 'Dancers Of Arun', 'https://images.isbndb.com/covers/49/24/9780425064924.jpg'), - ('0425061957', 'Watchtower', 'https://images.isbndb.com/covers/19/54/9780425061954.jpg'), - ('1878424483', 'The Four Agreements Companion Book : Using The Four Agreements To Master The Dream Of Your Life', 'https://images.isbndb.com/covers/44/88/9781878424488.jpg'), - ('0789205106', 'Cats Up Close (Tiny Folios)', 'https://images.isbndb.com/covers/51/00/9780789205100.jpg'), - ('0679445358', 'If... (Questions For The Game Of Life)', 'https://images.isbndb.com/covers/53/57/9780679445357.jpg'), - ('1861870612', 'Words On Strength And Perserverance (Helen Exley Giftbook)', 'https://images.isbndb.com/covers/06/12/9781861870612.jpg'), - ('0804831904', 'The Code Of The Samurai: A Modern Translation Of The Bushido Shoshinshu Of Taira Shigesuke', 'https://images.isbndb.com/covers/19/01/9780804831901.jpg'), - ('0517163446', 'Meow Te Ching By Meow Tzu', 'https://images.isbndb.com/covers/34/43/9780517163443.jpg'), - ('1565123778', 'In Code: A Mathematical Journey', 'https://images.isbndb.com/covers/37/79/9781565123779.jpg'), - ('0553578731', 'I, Jedi (Star Wars)', 'https://images.isbndb.com/covers/87/37/9780553578737.jpg'), - ('0020292651', 'Be Expert With Map And Compass: The Complete Orienteering Handbook', 'https://images.isbndb.com/covers/26/54/9780020292654.jpg'), - ('0898866294', 'Wilderness Navigation: Finding Your Way Using Map, Compass, Altimeter, And GPS', 'https://images.isbndb.com/covers/62/92/9780898866292.jpg'), - ('1904492355', 'Matabele Gold', 'https://images.isbndb.com/covers/23/51/9781904492351.jpg'), - ('0440118700', 'Cry For The Strangers', 'https://images.isbndb.com/covers/87/01/9780440118701.jpg'), - ('0380710897', 'Among Schoolchildren', 'https://images.isbndb.com/covers/08/98/9780380710898.jpg'), - ('0615116426', 'Marching Through Culpeper : A Novel Of Culpeper, Virginia, Crossroads Of The Civil War', 'https://images.isbndb.com/covers/64/26/9780615116426.jpg'), - ('0590457241', 'You Be The Jury: Courtroom III', 'https://images.isbndb.com/covers/72/48/9780590457248.jpg'), - ('0553242172', 'Red Pony The', 'https://images.isbndb.com/covers/21/71/9780553242171.jpg'), - ('0553800949', 'Final Target', 'https://images.isbndb.com/covers/09/44/9780553800944.jpg'), - ('0330328913', 'Consider The Lily', 'https://images.isbndb.com/covers/89/13/9780330328913.jpg'), - ('0738867543', 'Tripping The Ballerina', 'https://images.isbndb.com/covers/75/40/9780738867540.jpg'), - ('0349105715', 'Complicity', 'https://images.isbndb.com/covers/57/10/9780349105710.jpg'), - ('057114456X', 'Immortality', 'https://images.isbndb.com/covers/45/63/9780571144563.jpg'), - ('3257205082', 'Maigret Und Die Junge Tote', 'https://images.isbndb.com/covers/50/84/9783257205084.jpg'), - ('0849955815', 'God''s Promises And Answers For Your Life', 'https://images.isbndb.com/covers/58/15/9780849955815.jpg'), - ('0590101129', 'War Of The Worlds', 'https://images.isbndb.com/covers/11/27/9780590101127.jpg'), - ('069811406X', 'Fat Chance', 'https://images.isbndb.com/covers/40/67/9780698114067.jpg'), - ('0373612605', 'Just One Look (Cooper''s Corner, Book 9)', 'https://images.isbndb.com/covers/26/04/9780373612604.jpg'), - ('0140430083', 'David Copperfield (Penguin Classics)', 'https://images.isbndb.com/covers/00/80/9780140430080.jpg'), - ('1582340722', 'Scepticism Inc.', 'https://images.isbndb.com/covers/07/22/9781582340722.jpg'), - ('0373822030', 'Stevie''s Chase (American Heroes Against All Odds: California #5)', 'https://images.isbndb.com/covers/20/34/9780373822034.jpg'), - ('0060000791', 'The Treasure Of Montsegur: A Novel Of The Cathars', 'https://images.isbndb.com/covers/07/90/9780060000790.jpg'), - ('006050918X', 'City Of The Beasts', 'https://images.isbndb.com/covers/91/87/9780060509187.jpg'), - ('0140124381', 'Red Dwarf: Better Than Life', 'https://images.isbndb.com/covers/43/85/9780140124385.jpg'), - ('039305747X', 'Crescent: A Novel', 'https://images.isbndb.com/covers/74/78/9780393057478.jpg'), - ('0689303173', 'The Dark Is Rising (The Dark Is Rising, Book 2)', 'https://images.isbndb.com/covers/31/73/9780689303173.jpg'), - ('0140441654', 'Utopia (Penguin Classics)', 'https://images.isbndb.com/covers/16/59/9780140441659.jpg'), - ('0140158014', 'Ramming The Shears', 'https://images.isbndb.com/covers/80/14/9780140158014.jpg'), - ('0140118047', 'Blindfold Horse Memoirs Of A Persian', 'https://images.isbndb.com/covers/80/49/9780140118049.jpg'), - ('0732264472', 'The World From Italy: Football, Food And Politics', 'https://images.isbndb.com/covers/44/75/9780732264475.jpg'), - ('0394759753', 'The Complete Book Of Massage', 'https://images.isbndb.com/covers/97/53/9780394759753.jpg'), - ('0910147140', 'World Treasury Of Great Poems', 'https://images.isbndb.com/covers/71/49/9780910147149.jpg'), - ('0895778742', 'The Complete Book Of Embroidery', 'https://images.isbndb.com/covers/87/41/9780895778741.jpg'), - ('0821723502', 'Abracadabra', 'https://images.isbndb.com/covers/35/00/9780821723500.jpg'), - ('0345418271', 'Foucault''s Pendulum', 'https://images.isbndb.com/covers/82/72/9780345418272.jpg'), - ('0534005411', 'Poems: Wadsworth Handbook And Anthology', 'https://images.isbndb.com/covers/54/12/9780534005412.jpg'), - ('0804114277', 'Prizes', 'https://images.isbndb.com/covers/42/71/9780804114271.jpg'), - ('0671795570', 'Foursome: Foursome', 'https://images.isbndb.com/covers/55/73/9780671795573.jpg'), - ('0312955006', 'The Concrete Blonde (Harry Bosch)', 'https://images.isbndb.com/covers/50/07/9780312955007.jpg'), - ('0440236169', 'Birdman', 'https://images.isbndb.com/covers/61/60/9780440236160.jpg'), - ('0425178552', 'Wake Up Little Susie', 'https://images.isbndb.com/covers/85/53/9780425178553.jpg'), - ('0312278284', 'The Easter Parade: A Novel', 'https://images.isbndb.com/covers/82/81/9780312278281.jpg'), - ('014071491X', 'Titus Andronicus (The Pelican Shakespeare)', 'https://images.isbndb.com/covers/49/13/9780140714913.jpg'), - ('1902825969', 'The Bluffer''s Guide To Rugby: Bluff Your Way In Rugby (Bluffers Guides)', 'https://images.isbndb.com/covers/59/60/9781902825960.jpg'), - ('0380803240', 'Talon Of The Silver Hawk (Conclave Of Shadows, Book 1)', 'https://images.isbndb.com/covers/32/48/9780380803248.jpg'), - ('0843952407', 'The Doorkeepers', 'https://images.isbndb.com/covers/24/07/9780843952407.jpg'), - ('0553235400', 'Pigman', 'https://images.isbndb.com/covers/54/01/9780553235401.jpg'), - ('0679723110', 'Grendel', 'https://images.isbndb.com/covers/31/10/9780679723110.jpg'), - ('0140430350', 'Vanity Fair: A Novel Without A Hero (Penguin English Library)', 'https://images.isbndb.com/covers/03/56/9780140430356.jpg'), - ('037325024X', 'Out Of The Blue (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/02/40/9780373250240.jpg'), - ('0743463544', 'The Man I Should Have Married', 'https://images.isbndb.com/covers/35/46/9780743463546.jpg'), - ('193152713X', 'A Journey To Hell And Back', 'https://images.isbndb.com/covers/71/32/9781931527132.jpg'), - ('1400060222', 'Getting Mother''s Body: A Novel', 'https://images.isbndb.com/covers/02/21/9781400060221.jpg'), - ('0061057908', 'Acorna''s Quest (Harper Prism SF)', 'https://images.isbndb.com/covers/79/08/9780061057908.jpg'), - ('0061050946', 'Acorna''s People', 'https://images.isbndb.com/covers/09/47/9780061050947.jpg'), - ('0061044431', 'The Salaryman''s Wife', 'https://images.isbndb.com/covers/44/34/9780061044434.jpg'), - ('0802140149', 'I, Lucifer: Finally, The Other Side Of The Story', 'https://images.isbndb.com/covers/01/42/9780802140142.jpg'), - ('006093140X', 'The Golden Notebook: Perennial Classics Edition', 'https://images.isbndb.com/covers/14/07/9780060931407.jpg'), - ('0345351878', 'Restoree', 'https://images.isbndb.com/covers/18/76/9780345351876.jpg'), - ('0441003389', 'Freedom''s Landing', 'https://images.isbndb.com/covers/33/89/9780441003389.jpg'), - ('0441005314', 'Freedom''s Choice', 'https://images.isbndb.com/covers/53/14/9780441005314.jpg'), - ('0061057894', 'Acorna: The Unicorn Girl', 'https://images.isbndb.com/covers/78/92/9780061057892.jpg'), - ('0380720868', 'Shadow Of A Dark Queen (The Serpentwar Saga, Book 1)', 'https://images.isbndb.com/covers/08/66/9780380720866.jpg'), - ('078670621X', 'Endurance: Shackleton''s Incredible Voyage', 'https://images.isbndb.com/covers/62/11/9780786706211.jpg'), - ('0393315606', 'Morality Play', 'https://images.isbndb.com/covers/56/08/9780393315608.jpg'), - ('0060936231', 'Soul Mountain', 'https://images.isbndb.com/covers/62/35/9780060936235.jpg'), - ('0156002108', 'Towing Jehovah (Harvest Book)', 'https://images.isbndb.com/covers/21/03/9780156002103.jpg'), - ('0786864400', 'The First Victim', 'https://images.isbndb.com/covers/44/09/9780786864409.jpg'), - ('0140178139', 'Leviathan', 'https://images.isbndb.com/covers/81/35/9780140178135.jpg'), - ('0440219930', 'Eyes Of A Stranger (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/99/34/9780440219934.jpg'), - ('0395640229', 'Pacific War Diary, 1942­-1945: The Secret Diary Of An American Sailor', 'https://images.isbndb.com/covers/02/27/9780395640227.jpg'), - ('0060178248', 'The Passion Dream Book (SIGNED)', 'https://images.isbndb.com/covers/82/46/9780060178246.jpg'), - ('1573220663', 'The Light Of The Falling Stars', 'https://images.isbndb.com/covers/06/68/9781573220668.jpg'), - ('0140139400', 'The Spectator Bird (Contemporary American Fiction)', 'https://images.isbndb.com/covers/94/02/9780140139402.jpg'), - ('0671682083', 'Terms Of Endearment', 'https://images.isbndb.com/covers/20/88/9780671682088.jpg'), - ('9151830485', 'Aprilhaxan (Swedish Edition)', 'https://images.isbndb.com/covers/04/83/9789151830483.jpg'), - ('0192816276', 'The Secret Agent: A Simple Tale (World''s Classics)', 'https://images.isbndb.com/covers/62/76/9780192816276.jpg'), - ('0330353713', 'Shuttlecock', 'https://images.isbndb.com/covers/37/17/9780330353717.jpg'), - ('0060503475', 'Isabel''s Daughter: A Novel', 'https://images.isbndb.com/covers/34/75/9780060503475.jpg'), - ('1400060117', 'A Round-Heeled Woman: My Late-Life Adventures In Sex And Romance', 'https://images.isbndb.com/covers/01/15/9781400060115.jpg'), - ('081296800X', 'Getting Mother''s Body: A Novel', 'https://images.isbndb.com/covers/80/02/9780812968002.jpg'), - ('0449908798', 'Duplicate Keys', 'https://images.isbndb.com/covers/87/92/9780449908792.jpg'), - ('0743255224', 'Name All The Animals: A Memoir', 'https://images.isbndb.com/covers/52/26/9780743255226.jpg'), - ('0399146113', 'It''s Not About The Bike: My Journey Back To Life', 'https://images.isbndb.com/covers/61/14/9780399146114.jpg'), - ('0312291523', 'The Dog Who Spoke With Gods', 'https://images.isbndb.com/covers/15/25/9780312291525.jpg'), - ('0446675059', 'The Honk And Holler Opening Soon', 'https://images.isbndb.com/covers/50/55/9780446675055.jpg'), - ('1558614621', 'The Girls In 3-B (Femmes Fatales : Women Write Pulp)', 'https://images.isbndb.com/covers/46/28/9781558614628.jpg'), - ('0753811251', 'Inge And Mira', 'https://images.isbndb.com/covers/12/52/9780753811252.jpg'), - ('0375411550', 'The Bluest Eye', 'https://images.isbndb.com/covers/15/57/9780375411557.jpg'), - ('0679774025', 'All Over But The Shoutin''', 'https://images.isbndb.com/covers/40/20/9780679774020.jpg'), - ('0380705648', 'Just Another Kid', 'https://images.isbndb.com/covers/56/41/9780380705641.jpg'), - ('0812968182', 'The Territory Of Men: A Memoir', 'https://images.isbndb.com/covers/81/87/9780812968187.jpg'), - ('0385318804', 'The Only Girl In The Car: A Memoir', 'https://images.isbndb.com/covers/88/08/9780385318808.jpg'), - ('0380652277', 'Murphy''s Boy', 'https://images.isbndb.com/covers/22/73/9780380652273.jpg'), - ('0375508627', 'Middletown, America: One Town''s Passage From Trauma To Hope', 'https://images.isbndb.com/covers/86/22/9780375508622.jpg'), - ('0452284937', 'Girl With A Pearl Earring (movie Tie-in Edition): A Novel', 'https://images.isbndb.com/covers/49/37/9780452284937.jpg'), - ('1573222267', 'Blue Shoe', 'https://images.isbndb.com/covers/22/66/9781573222266.jpg'), - ('0316781010', 'Fortune''s Rocks: A Novel', 'https://images.isbndb.com/covers/10/15/9780316781015.jpg'), - ('0865472807', 'Hard Laughter: A Novel', 'https://images.isbndb.com/covers/28/08/9780865472808.jpg'), - ('0345460359', 'Drowning Ruth', 'https://images.isbndb.com/covers/03/56/9780345460356.jpg'), - ('1885211929', 'Sand In My Bra And Other Misadventures: Funny Women Write From The Road (Travelers'' Tales Guides)', 'https://images.isbndb.com/covers/19/27/9781885211927.jpg'), - ('0743201027', 'Learning Joy From Dogs Without Collars : A Memoir', 'https://images.isbndb.com/covers/10/25/9780743201025.jpg'), - ('156292530X', 'America Out Of The Ashes: True Stories Of Courage And Heroism With Postcard', 'https://images.isbndb.com/covers/53/07/9781562925307.jpg'), - ('0684836556', 'The Accidental Activist', 'https://images.isbndb.com/covers/65/53/9780684836553.jpg'), - ('0842307419', 'The Teddy Bear Mystery (Elizabeth Gail Wind Rider Series #3)', 'https://images.isbndb.com/covers/74/13/9780842307413.jpg'), - ('1556612966', 'The Measure Of A Heart (Women Of The West #6)', 'https://images.isbndb.com/covers/29/61/9781556612961.jpg'), - ('0590465953', 'The Littles And The Trash Tinies (The Littles #7)', 'https://images.isbndb.com/covers/59/53/9780590465953.jpg'), - ('0671017276', 'To Cheat Or Not To Cheat (Full House Stephanie)', 'https://images.isbndb.com/covers/72/79/9780671017279.jpg'), - ('0895772175', 'The Adventures Of Tom Sawyer (The World''s Best Reading)', 'https://images.isbndb.com/covers/21/76/9780895772176.jpg'), - ('0064405109', 'Little Farm In The Ozarks (Little House, The Rocky Ridge Years)', 'https://images.isbndb.com/covers/51/02/9780064405102.jpg'), - ('0064405486', 'Grab Hands And Run', 'https://images.isbndb.com/covers/54/85/9780064405485.jpg'), - ('0064400018', 'Little House In The Big Woods (Little House, No 1)', 'https://images.isbndb.com/covers/00/15/9780064400015.jpg'), - ('1561797111', 'Gianna: Aborted...and Lived To Tell About It (Living Books)', 'https://images.isbndb.com/covers/71/10/9781561797110.jpg'), - ('0836217799', 'Bring Me The Head Of Willy The Mailboy!', 'https://images.isbndb.com/covers/77/97/9780836217797.jpg'), - ('083611714X', 'Rosanna Of The Amish', 'https://images.isbndb.com/covers/71/41/9780836117141.jpg'), - ('0440490995', 'The Saving Of P.S.', 'https://images.isbndb.com/covers/09/99/9780440490999.jpg'), - ('0380698714', 'Sideways Stories From Wayside School', 'https://images.isbndb.com/covers/87/14/9780380698714.jpg'), - ('0553481185', 'Jessica''s Mermaid (Sweet Valley Kids)', 'https://images.isbndb.com/covers/11/81/9780553481181.jpg'), - ('0689835744', 'Sheltie The Shetland Pony', 'https://images.isbndb.com/covers/57/42/9780689835742.jpg'), - ('0590450336', 'The Adventure Of The Backyard Sleep-Out', 'https://images.isbndb.com/covers/03/31/9780590450331.jpg'), - ('0316115568', 'Arthur Accused: A Marc Brown Arthur Chapter Book 5 (Arthur Chapter Books)', 'https://images.isbndb.com/covers/55/68/9780316115568.jpg'), - ('0590623516', 'Knight At Dawn', 'https://images.isbndb.com/covers/35/13/9780590623513.jpg'), - ('0140511008', 'Dictionary Of Microprocessors, The Penguin (Penguin Reference Books)', 'https://images.isbndb.com/covers/10/00/9780140511000.jpg'), - ('0609602438', 'The Love Poems Of Rumi', 'https://images.isbndb.com/covers/24/30/9780609602430.jpg'), - ('9723704552', 'O Medo (Documenta Poetica) (Portuguese Edition)', 'https://images.isbndb.com/covers/45/56/9789723704556.jpg'), - ('067177459X', 'The Intruder (Roswell High No. 5)', 'https://images.isbndb.com/covers/45/92/9780671774592.jpg'), - ('0618071784', 'Wild Health: How Animals Keep Themselves Well And What We Can Learn From Them', 'https://images.isbndb.com/covers/17/84/9780618071784.jpg'), - ('1550660160', 'Hyena Family (Jane Goodall''s Animal Series)', 'https://images.isbndb.com/covers/01/66/9781550660166.jpg'), - ('0876054440', 'Frogs And Toads: An Owner''s Guide To A Happy Healthy Pet', 'https://images.isbndb.com/covers/44/44/9780876054444.jpg'), - ('0882547593', 'Freshwater Aquarium Fish: A Color Guide', 'https://images.isbndb.com/covers/75/96/9780882547596.jpg'), - ('0316057517', 'The Trials Of Life: A Natural History Of Animal Behavior', 'https://images.isbndb.com/covers/75/16/9780316057516.jpg'), - ('0866220445', 'The Basset Hound/Ps-815', 'https://images.isbndb.com/covers/04/46/9780866220446.jpg'), - ('0517880539', 'Catwatching', 'https://images.isbndb.com/covers/05/31/9780517880531.jpg'), - ('0671449621', 'No Bad Dogs: The Woodhouse Way', 'https://images.isbndb.com/covers/96/29/9780671449629.jpg'), - ('3923880642', 'Dog Owners Guide To American And English Cocker Spaniels: Everything You Need To Know About Your Spaniel, Including Health Care, Training, Breeding A', 'https://images.isbndb.com/covers/06/45/9783923880645.jpg'), - ('0312104456', 'Critters: Adventures In Wildest Suburbia', 'https://images.isbndb.com/covers/44/50/9780312104450.jpg'), - ('0385314280', 'When Elephants Weep: The Emotional Lives Of Animals', 'https://images.isbndb.com/covers/42/82/9780385314282.jpg'), - ('0345285859', 'Shibumi', 'https://images.isbndb.com/covers/58/50/9780345285850.jpg'), - ('0872168255', 'Lion Of Ireland', 'https://images.isbndb.com/covers/82/51/9780872168251.jpg'), - ('0804102988', 'Sarum: The Novel Of England', 'https://images.isbndb.com/covers/29/88/9780804102988.jpg'), - ('0440150167', 'Love And War', 'https://images.isbndb.com/covers/01/69/9780440150169.jpg'), - ('0590988867', 'Tuck Everlasting (Literature Circle Edition)', 'https://images.isbndb.com/covers/88/65/9780590988865.jpg'), - ('059050214X', 'A Journey To The New World: The Diary Of Remember Patience Whipple, Mayflower, 1620 (Dear America Series)', 'https://images.isbndb.com/covers/21/46/9780590502146.jpg'), - ('0316286125', 'By The Great Horn Spoon!', 'https://images.isbndb.com/covers/61/21/9780316286121.jpg'), - ('0590053698', 'For Love Of A Horse', 'https://images.isbndb.com/covers/36/93/9780590053693.jpg'), - ('038523029X', 'Search For The Breed', 'https://images.isbndb.com/covers/02/92/9780385230292.jpg'), - ('0152177639', 'Maria: A Christmas Story', 'https://images.isbndb.com/covers/76/38/9780152177638.jpg'), - ('0380715635', 'One More River', 'https://images.isbndb.com/covers/56/33/9780380715633.jpg'), - ('0517667185', 'Andersen''s Fairy Tales', 'https://images.isbndb.com/covers/71/87/9780517667187.jpg'), - ('0316613231', 'Lonely Girls With Burning Eyes: A Wife Recalls Her Husband''s Journey Home From Vietnam', 'https://images.isbndb.com/covers/32/31/9780316613231.jpg'), - ('0140343865', 'Dear Mom, You''re Ruining My Life', 'https://images.isbndb.com/covers/38/61/9780140343861.jpg'), - ('0807593664', 'The Yellow House Mystery (The Boxcar Children, No. 3) (Boxcar Children Mysteries)', 'https://images.isbndb.com/covers/36/60/9780807593660.jpg'), - ('044021212X', 'A Candidate For Murder', 'https://images.isbndb.com/covers/21/26/9780440212126.jpg'), - ('0440411335', 'Mr. Tucket (The Francis Tucket Books)', 'https://images.isbndb.com/covers/13/38/9780440411338.jpg'), - ('0440497272', 'The Witches Of Worm', 'https://images.isbndb.com/covers/72/71/9780440497271.jpg'), - ('059042243X', 'Anne Of Green Gables', 'https://images.isbndb.com/covers/24/37/9780590422437.jpg'), - ('0140365826', 'A Different Beat', 'https://images.isbndb.com/covers/58/25/9780140365825.jpg'), - ('0671550748', 'Christopher Pikes Tales Of Terror (Book 1)', 'https://images.isbndb.com/covers/07/45/9780671550745.jpg'), - ('0821715186', 'Trivia Mania: Movies Volume II', 'https://images.isbndb.com/covers/51/85/9780821715185.jpg'), - ('0060233346', 'Walk Two Moons (Newbery Medal Book)', 'https://images.isbndb.com/covers/33/41/9780060233341.jpg'), - ('0590098535', 'New Adventures Of The Mad Scientists Club', 'https://images.isbndb.com/covers/85/33/9780590098533.jpg'), - ('0671866966', 'The Half Child', 'https://images.isbndb.com/covers/69/69/9780671866969.jpg'), - ('072324216X', 'Little Yellow Book (Flower Fairies)', 'https://images.isbndb.com/covers/21/61/9780723242161.jpg'), - ('0140314512', 'The Eighteenth Emergency (Camelot Book)', 'https://images.isbndb.com/covers/45/19/9780140314519.jpg'), - ('0590432664', 'The Book Of Time #3: Circle Of Gold', 'https://images.isbndb.com/covers/26/65/9780590432665.jpg'), - ('0440430712', 'The Great Brain', 'https://images.isbndb.com/covers/07/11/9780440430711.jpg'), - ('0590972154', 'Brain Stealers (Visitors, Book 3)', 'https://images.isbndb.com/covers/21/54/9780590972154.jpg'), - ('0380750260', 'Silver', 'https://images.isbndb.com/covers/02/69/9780380750269.jpg'), - ('0449219895', 'A Private Crime: A Lt. Norah Mulcahaney Mystery', 'https://images.isbndb.com/covers/98/98/9780449219898.jpg'), - ('0590399888', 'Cry Of The Cat (Goosebumps Series 2000, No 1)', 'https://images.isbndb.com/covers/98/83/9780590399883.jpg'), - ('0874067715', 'Come Home, Barkley', 'https://images.isbndb.com/covers/77/12/9780874067712.jpg'), - ('006440160X', 'A Dog On Barkham Street', 'https://images.isbndb.com/covers/16/09/9780064401609.jpg'), - ('0316142417', 'Skateboard Tough (Matt Christopher Sports Classics)', 'https://images.isbndb.com/covers/24/10/9780316142410.jpg'), - ('0786813563', 'Guests', 'https://images.isbndb.com/covers/35/68/9780786813568.jpg'), - ('0064470229', 'The Moves Make The Man', 'https://images.isbndb.com/covers/02/23/9780064470223.jpg'), - ('0590425560', '101 Silly Summertime Jokes', 'https://images.isbndb.com/covers/55/68/9780590425568.jpg'), - ('0590414356', '101 Super Sports Jokes', 'https://images.isbndb.com/covers/43/57/9780590414357.jpg'), - ('0910034532', 'Alateen: A Day At A Time', 'https://images.isbndb.com/covers/45/31/9780910034531.jpg'), - ('1591820324', 'GTO: Great Teacher Onizuka, Vol. 8', 'https://images.isbndb.com/covers/03/21/9781591820321.jpg'), - ('1591820316', 'GTO: Great Teacher Onizuka, Vol. 7', 'https://images.isbndb.com/covers/03/14/9781591820314.jpg'), - ('1591820308', 'GTO: Great Teacher Onizuka, Vol. 6', 'https://images.isbndb.com/covers/03/07/9781591820307.jpg'), - ('1591820286', 'GTO: Great Teacher Onizuka, Vol. 4', 'https://images.isbndb.com/covers/02/84/9781591820284.jpg'), - ('1931514496', 'GTO: Great Teacher Onizuka, Vol. 3', 'https://images.isbndb.com/covers/44/91/9781931514491.jpg'), - ('1931514968', 'GTO: Great Teacher Onizuka, Vol. 2', 'https://images.isbndb.com/covers/49/65/9781931514965.jpg'), - ('3426621657', 'Die Stimme Des Zwielichts', 'https://images.isbndb.com/covers/16/53/9783426621653.jpg'), - ('0312983336', 'I Think I Love You', 'https://images.isbndb.com/covers/33/38/9780312983338.jpg'), - ('0140714197', 'Romeo And Juliet (Shakespeare, Pelican)', 'https://images.isbndb.com/covers/41/97/9780140714197.jpg'), - ('0425154882', 'Carriers', 'https://images.isbndb.com/covers/48/85/9780425154885.jpg'), - ('0233981071', 'Moon Tiger', 'https://images.isbndb.com/covers/10/79/9780233981079.jpg'), - ('3453171489', 'Die Schöne Schrift', 'https://images.isbndb.com/covers/14/80/9783453171480.jpg'), - ('1550171348', 'The Whole Fam Damily', 'https://images.isbndb.com/covers/13/41/9781550171341.jpg'), - ('0345404769', 'Silent Witness', 'https://images.isbndb.com/covers/47/63/9780345404763.jpg'), - ('0425158594', 'Demon Seed', 'https://images.isbndb.com/covers/85/93/9780425158593.jpg'), - ('0099282194', 'Human Stain', 'https://images.isbndb.com/covers/21/98/9780099282198.jpg'), - ('0380806576', 'Veronica', 'https://images.isbndb.com/covers/65/77/9780380806577.jpg'), - ('0060508876', 'Beautiful Child', 'https://images.isbndb.com/covers/88/76/9780060508876.jpg'), - ('0967253535', 'Naked Through The Snow And Other Bits Of Silliness', 'https://images.isbndb.com/covers/35/34/9780967253534.jpg'), - ('0448095017', 'The Secret Of The Old Clock (Nancy Drew, Book 1)', 'https://images.isbndb.com/covers/50/11/9780448095011.jpg'), - ('0671038850', 'A Stitch In Time (Star Trek: Deep Space Nine #27)', 'https://images.isbndb.com/covers/88/54/9780671038854.jpg'), - ('345386722X', 'Spiegelkanon', 'https://images.isbndb.com/covers/72/22/9783453867222.jpg'), - ('0446359688', 'Red Phoenix', 'https://images.isbndb.com/covers/96/89/9780446359689.jpg'), - ('0892831189', 'Handbook To The Gospels: A Guide To The Gospel Writings And To The Life And Times Of Jesus', 'https://images.isbndb.com/covers/11/80/9780892831180.jpg'), - ('0449902927', 'Feel The Fear And Do It Anyway', 'https://images.isbndb.com/covers/29/29/9780449902929.jpg'), - ('1558745017', 'Chicken Soup For The Christian Soul: Stories To Open The Heart And Rekindle The Spirit (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/50/18/9781558745018.jpg'), - ('0671501283', '''Scuse Me While I Kiss This Guy: And Other Misheard Lyrics', 'https://images.isbndb.com/covers/12/80/9780671501280.jpg'), - ('033036197X', 'People Of Heaven', 'https://images.isbndb.com/covers/19/72/9780330361972.jpg'), - ('0767906780', 'Fatal Voyage: The Sinking Of The USS Indianapolis', 'https://images.isbndb.com/covers/67/84/9780767906784.jpg'), - ('0679744495', 'A Day At The Beach: Recollections', 'https://images.isbndb.com/covers/44/98/9780679744498.jpg'), - ('0440221099', 'Talk Before Sleep', 'https://images.isbndb.com/covers/10/98/9780440221098.jpg'), - ('0385319207', 'One True Thing', 'https://images.isbndb.com/covers/92/01/9780385319201.jpg'), - ('0449907635', 'The Cat Who Went To Paris', 'https://images.isbndb.com/covers/76/34/9780449907634.jpg'), - ('042518269X', 'Final Diagnosis', 'https://images.isbndb.com/covers/26/97/9780425182697.jpg'), - ('0060915749', 'The Knockout Artist', 'https://images.isbndb.com/covers/57/42/9780060915742.jpg'), - ('0553260618', '"B" IS FOR BURGLAR (Kinsey Millhone Mysteries (Paperback))', 'https://images.isbndb.com/covers/06/18/9780553260618.jpg'), - ('0671002783', 'God On A Harley', 'https://images.isbndb.com/covers/27/87/9780671002787.jpg'), - ('0671722794', 'A Midsummer Night''s Dream (Airmont Shakespeare Classics Series)', 'https://images.isbndb.com/covers/27/91/9780671722791.jpg'), - ('1893121119', 'Ticket To Everywhere : The Best Of "Detours" Travel Column', 'https://images.isbndb.com/covers/11/19/9781893121119.jpg'), - ('0804900078', 'Scarlet Letter', 'https://images.isbndb.com/covers/00/72/9780804900072.jpg'), - ('0385323905', 'Kaaterskill Falls', 'https://images.isbndb.com/covers/39/01/9780385323901.jpg'), - ('034540727X', 'The Killer Angels: The Classic Novel Of The Civil War', 'https://images.isbndb.com/covers/72/76/9780345407276.jpg'), - ('0786886625', 'Spilling Clarence', 'https://images.isbndb.com/covers/66/23/9780786886623.jpg'), - ('0375760504', 'Life After Death: A Novel', 'https://images.isbndb.com/covers/05/01/9780375760501.jpg'), - ('0312300530', 'The Last Jew', 'https://images.isbndb.com/covers/05/31/9780312300531.jpg'), - ('157322930X', 'High Maintenance', 'https://images.isbndb.com/covers/93/02/9781573229302.jpg'), - ('0805211020', 'A Good Enough Daughter: A Memoir', 'https://images.isbndb.com/covers/10/23/9780805211023.jpg'), - ('0679736891', 'Cambridge', 'https://images.isbndb.com/covers/68/99/9780679736899.jpg'), - ('0060915188', 'An American Childhood', 'https://images.isbndb.com/covers/51/86/9780060915186.jpg'), - ('0671792385', 'Reed''s Beach', 'https://images.isbndb.com/covers/23/81/9780671792381.jpg'), - ('0156008661', 'Ladies'' Night At Finbar''s Hotel', 'https://images.isbndb.com/covers/86/62/9780156008662.jpg'), - ('0609803247', 'The Red Devil : A Memoir About Beating The Odds', 'https://images.isbndb.com/covers/32/40/9780609803240.jpg'), - ('0425163407', 'Unnatural Exposure (Kay Scarpetta)', 'https://images.isbndb.com/covers/34/05/9780425163405.jpg'), - ('0671873199', 'The Corporate Raider''s Revenge (Silhouette Desire)', 'https://images.isbndb.com/covers/31/96/9780671873196.jpg'), - ('0812531353', 'The Boat Of A Million Years', 'https://images.isbndb.com/covers/13/50/9780812531350.jpg'), - ('0140281290', 'Over Hill And Dale', 'https://images.isbndb.com/covers/12/93/9780140281293.jpg'), - ('3596143500', 'Mannomann.', 'https://images.isbndb.com/covers/35/04/9783596143504.jpg'), - ('0451525027', 'Innocents Abroad (Signet Classics)', 'https://images.isbndb.com/covers/50/24/9780451525024.jpg'), - ('9074336329', 'Want Dit Is Mijn Lichaam (Dutch Edition)', 'https://images.isbndb.com/covers/63/21/9789074336321.jpg'), - ('3423704306', 'Heiße Spur Aus Afrika', 'https://images.isbndb.com/covers/43/04/9783423704304.jpg'), - ('0515099546', 'The Cat Who Sniffed Glue', 'https://images.isbndb.com/covers/95/46/9780515099546.jpg'), - ('0812542835', 'Reliquary (Pendergast, Book 2)', 'https://images.isbndb.com/covers/28/37/9780812542837.jpg'), - ('0373264208', 'Ransom At The Opera', 'https://images.isbndb.com/covers/42/09/9780373264209.jpg'), - ('0373264216', 'Keeping Silent', 'https://images.isbndb.com/covers/42/16/9780373264216.jpg'), - ('0425170306', 'The Lost Bird (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/03/04/9780425170304.jpg'), - ('042517025X', 'The Story Teller (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/02/50/9780425170250.jpg'), - ('0425180905', 'The Spirit Woman (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/09/07/9780425180907.jpg'), - ('0373263945', 'Lithium Murder (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/39/43/9780373263943.jpg'), - ('0425067769', 'The Big Four', 'https://images.isbndb.com/covers/77/65/9780425067765.jpg'), - ('0785278796', 'The Senator''s Agenda (Dead Air Series, Book 3)', 'https://images.isbndb.com/covers/87/95/9780785278795.jpg'), - ('1560431008', 'Woman, Thou Art Loosed!: Healing The Wounds Of The Past', 'https://images.isbndb.com/covers/10/08/9781560431008.jpg'), - ('1565076257', '15 Minutes Of Peace With God', 'https://images.isbndb.com/covers/62/59/9781565076259.jpg'), - ('0553575937', 'Jane And The Unpleasantness At Scargrave Manor: Being The First Jane Austen Mystery (Jane Austen Mysteries)', 'https://images.isbndb.com/covers/59/34/9780553575934.jpg'), - ('0571136117', 'Her Living Image', 'https://images.isbndb.com/covers/61/17/9780571136117.jpg'), - ('0856402915', 'Footprint Upon Water', 'https://images.isbndb.com/covers/29/13/9780856402913.jpg'), - ('0800714237', '13 Fatal Errors Managers Make, And How You Can Avoid Them', 'https://images.isbndb.com/covers/42/39/9780800714239.jpg'), - ('0140069453', 'Tirra Lirra By The River', 'https://images.isbndb.com/covers/94/57/9780140069457.jpg'), - ('0671852701', 'Fight The Best Fight', 'https://images.isbndb.com/covers/27/02/9780671852702.jpg'), - ('0553283588', 'Juffie Kane', 'https://images.isbndb.com/covers/35/87/9780553283587.jpg'), - ('055329508X', 'DREAMWEAVERS', 'https://images.isbndb.com/covers/50/85/9780553295085.jpg'), - ('0855616539', 'The Potato Factory: A Novel', 'https://images.isbndb.com/covers/65/33/9780855616533.jpg'), - ('0743410181', 'Temptation', 'https://images.isbndb.com/covers/01/82/9780743410182.jpg'), - ('0671502522', 'A Holiday Of Love : Miracles / Change Of Heart / Daniel And The Angel / Hark! The Herald', 'https://images.isbndb.com/covers/25/22/9780671502522.jpg'), - ('0373834292', 'Valentine Babies: Harlequin 3-Romance Novels: Goddess In Waiting; Gabe''s Special Delivery; My Man Valentine', 'https://images.isbndb.com/covers/42/97/9780373834297.jpg'), - ('0263819922', 'Marriage For Real (Presents)', 'https://images.isbndb.com/covers/99/22/9780263819922.jpg'), - ('0263823091', 'An Ardent Friendship (Mills & Boon Historical)', 'https://images.isbndb.com/covers/30/97/9780263823097.jpg'), - ('026382831X', 'This Time... Marriage', 'https://images.isbndb.com/covers/83/13/9780263828313.jpg'), - ('0671744623', 'The Heiress', 'https://images.isbndb.com/covers/46/25/9780671744625.jpg'), - ('0671025384', 'Imzadi II: Triangle (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/53/80/9780671025380.jpg'), - ('0671019228', 'Q-Strike (Star Trek The Next Generation, Book 49)', 'https://images.isbndb.com/covers/92/28/9780671019228.jpg'), - ('038073320X', 'The Gazebo: A Novel', 'https://images.isbndb.com/covers/32/00/9780380733200.jpg'), - ('0061044636', 'Mars And Venus On A Date: A Guide To Navigating The 5 Stages Of Dating To Create A Loving And Lasting Relationship', 'https://images.isbndb.com/covers/46/32/9780061044632.jpg'), - ('0553561049', 'Living In The Light: A Guide To Personal And Planetary Transformation', 'https://images.isbndb.com/covers/10/43/9780553561043.jpg'), - ('0263824683', 'Promise', 'https://images.isbndb.com/covers/46/81/9780263824681.jpg'), - ('0373047231', 'One Wedding Night (Montana Brides 07)', 'https://images.isbndb.com/covers/72/39/9780373047239.jpg'), - ('0373483872', 'Delivered By Christmas', 'https://images.isbndb.com/covers/38/77/9780373483877.jpg'), - ('3442438241', 'Der Magische Zirkel.', 'https://images.isbndb.com/covers/82/42/9783442438242.jpg'), - ('3596130417', 'Schiffsmeldungen', 'https://images.isbndb.com/covers/04/12/9783596130412.jpg'), - ('0552526150', 'Dreaming Of Larry', 'https://images.isbndb.com/covers/61/59/9780552526159.jpg'), - ('0307123332', 'Poky Little Puppy (Sturdy Shape Book)', 'https://images.isbndb.com/covers/33/36/9780307123336.jpg'), - ('0723245835', 'Peter Rabbit''s Giant Storybook (Potter)', 'https://images.isbndb.com/covers/58/34/9780723245834.jpg'), - ('3770156218', 'Der Fall Arbogast.', 'https://images.isbndb.com/covers/62/14/9783770156214.jpg'), - ('351828875X', 'Das Gehirn Und Seine Wirklichkeit: Kognitive Neurobiologie Und Ihre Philosophischen Konsequenzen (suhrkamp Taschenbuch Wissenschaft)', 'https://images.isbndb.com/covers/87/57/9783518288757.jpg'), - ('3453124502', 'Die Skulptur.', 'https://images.isbndb.com/covers/45/09/9783453124509.jpg'), - ('354835985X', 'Erste Person Plural', 'https://images.isbndb.com/covers/98/54/9783548359854.jpg'), - ('3404144449', 'Der Engel Mit Den Schwarzen Flügeln: Roman', 'https://images.isbndb.com/covers/44/40/9783404144440.jpg'), - ('3442420156', 'Die Werbung', 'https://images.isbndb.com/covers/01/55/9783442420155.jpg'), - ('0330294911', 'Man Who Mistook His Wife For A Hat (Picador)', 'https://images.isbndb.com/covers/49/11/9780330294911.jpg'), - ('3485008265', 'Ich Igelkind: Botschaften Aus Einer Autistischen Welt', 'https://images.isbndb.com/covers/82/66/9783485008266.jpg'), - ('0061053473', 'Goblins/Whirlwind', 'https://images.isbndb.com/covers/34/74/9780061053474.jpg'), - ('3792000261', 'Der Kleine Prinz', 'https://images.isbndb.com/covers/02/67/9783792000267.jpg'), - ('3257229305', 'Die Apothekerin', 'https://images.isbndb.com/covers/93/01/9783257229301.jpg'), - ('3499231689', 'Bélas Sünden', 'https://images.isbndb.com/covers/16/81/9783499231681.jpg'), - ('3423125071', 'Mein Herz So Weiß', 'https://images.isbndb.com/covers/50/79/9783423125079.jpg'), - ('0553239112', 'Heart Is A Lonely Hunter', 'https://images.isbndb.com/covers/91/19/9780553239119.jpg'), - ('0802141293', 'Troll: A Love Story', 'https://images.isbndb.com/covers/12/93/9780802141293.jpg'), - ('0451458915', 'Eternity Row: A Stardoc Novel', 'https://images.isbndb.com/covers/89/19/9780451458919.jpg'), - ('0451458559', 'Shockball: A Stardoc Novel', 'https://images.isbndb.com/covers/85/51/9780451458551.jpg'), - ('0451458141', 'Endurance (A Stardoc Novel)', 'https://images.isbndb.com/covers/81/48/9780451458148.jpg'), - ('0451457935', 'Beyond Varallan (Stardoc II)', 'https://images.isbndb.com/covers/79/36/9780451457936.jpg'), - ('0451457730', 'Stardoc', 'https://images.isbndb.com/covers/77/38/9780451457738.jpg'), - ('0142002798', 'Mary, Called Magdalene', 'https://images.isbndb.com/covers/27/97/9780142002797.jpg'), - ('0397300441', 'The Lost Queen Of Egypt', 'https://images.isbndb.com/covers/04/40/9780397300440.jpg'), - ('0451190955', 'Let The Drum Speak', 'https://images.isbndb.com/covers/09/56/9780451190956.jpg'), - ('0451160533', 'She Who Remembers (Signet)', 'https://images.isbndb.com/covers/05/39/9780451160539.jpg'), - ('0060530421', 'The Lady, The Chef, And The Courtesan', 'https://images.isbndb.com/covers/04/26/9780060530426.jpg'), - ('0395927218', 'The Namesake: A Novel', 'https://images.isbndb.com/covers/72/12/9780395927212.jpg'), - ('0345450302', 'The Mango Season', 'https://images.isbndb.com/covers/03/02/9780345450302.jpg'), - ('006039384X', 'Mirror Mirror: A Novel', 'https://images.isbndb.com/covers/38/47/9780060393847.jpg'), - ('037576092X', 'Autobiography Of A Fat Bride: True Tales Of A Pretend Adulthood', 'https://images.isbndb.com/covers/09/21/9780375760921.jpg'), - ('0874041872', 'Cynthia Ann Parker: The Life And The Legend (Southwestern Studies)', 'https://images.isbndb.com/covers/18/73/9780874041873.jpg'), - ('0515133876', 'Narcissus In Chains (Anita Blake, Vampire Hunter, Book 10)', 'https://images.isbndb.com/covers/38/75/9780515133875.jpg'), - ('0515134503', 'Obsidian Butterfly (An Anita Blake, Vampire Hunter, Book 9)', 'https://images.isbndb.com/covers/45/06/9780515134506.jpg'), - ('0515134457', 'Blue Moon (Anita Blake, Vampire Hunter, Book 8)', 'https://images.isbndb.com/covers/44/52/9780515134452.jpg'), - ('0515134473', 'Burnt Offerings (Anita Blake, Vampire Hunter, Book 7)', 'https://images.isbndb.com/covers/44/76/9780515134476.jpg'), - ('0810942631', 'Roman Sex: 100 B.C. To A.D. 250', 'https://images.isbndb.com/covers/26/39/9780810942639.jpg'), - ('0515134465', 'Bloody Bones (Anita Blake, Vampire Hunter, Book 5)', 'https://images.isbndb.com/covers/44/69/9780515134469.jpg'), - ('0142002593', 'A Mind Of Its Own: A Cultural History Of The Penis', 'https://images.isbndb.com/covers/25/99/9780142002599.jpg'), - ('051513452X', 'The Lunatic Cafe (Anita Blake, Vampire Hunter, Book 4)', 'https://images.isbndb.com/covers/45/20/9780515134520.jpg'), - ('0399150706', 'For Matrimonial Purposes', 'https://images.isbndb.com/covers/07/08/9780399150708.jpg'), - ('0515134481', 'Circus Of The Damned (Anita Blake, Vampire Hunter, Book 3)', 'https://images.isbndb.com/covers/44/83/9780515134483.jpg'), - ('038548237X', 'The Mistress Of Spices', 'https://images.isbndb.com/covers/23/70/9780385482370.jpg'), - ('051513449X', 'Guilty Pleasures (Anita Blake, Vampire Hunter: Book 1)', 'https://images.isbndb.com/covers/44/90/9780515134490.jpg'), - ('158567365X', 'Stone Heart: A Novel Of Sacajawea', 'https://images.isbndb.com/covers/36/50/9781585673650.jpg'), - ('0743456408', 'The Feast Of Roses: A Novel', 'https://images.isbndb.com/covers/64/01/9780743456401.jpg'), - ('0743427149', 'The Twentieth Wife: A Novel', 'https://images.isbndb.com/covers/71/42/9780743427142.jpg'), - ('1565113306', 'Fight Club', 'https://images.isbndb.com/covers/33/05/9781565113305.jpg'), - ('3442355907', 'Lasst Knochen Sprechen: Roman', 'https://images.isbndb.com/covers/59/07/9783442355907.jpg'), - ('3442448182', 'Monster: Roman', 'https://images.isbndb.com/covers/81/80/9783442448180.jpg'), - ('3442309646', 'Das Sexuelle Leben Der Catherine M.', 'https://images.isbndb.com/covers/96/41/9783442309641.jpg'), - ('3442541662', 'Der Simulant: Roman', 'https://images.isbndb.com/covers/16/69/9783442541669.jpg'), - ('3442451752', 'Dienstags Bei Morrie: Die Lehre Eines Lebens', 'https://images.isbndb.com/covers/17/53/9783442451753.jpg'), - ('9810023847', 'The Serpent And The Purple Moon (Windows Of Singapore Series)', 'https://images.isbndb.com/covers/38/43/9789810023843.jpg'), - ('081257558X', 'Winter''s Heart (The Wheel Of Time, Book 9)', 'https://images.isbndb.com/covers/55/83/9780812575583.jpg'), - ('0684859483', 'Ladies And Gentlemen Of The Jury: Greatest Closing Arguments In Modern Law', 'https://images.isbndb.com/covers/94/84/9780684859484.jpg'), - ('9810455674', 'A Leap Of Love: A Novella', 'https://images.isbndb.com/covers/56/75/9789810455675.jpg'), - ('0395971802', 'Salad Suppers', 'https://images.isbndb.com/covers/18/02/9780395971802.jpg'), - ('9810026595', 'Crystal Is Waiting (Window Of Singapore Series)', 'https://images.isbndb.com/covers/65/92/9789810026592.jpg'), - ('1853262439', 'The Comedy Of Errors (Wordsworth Classics)', 'https://images.isbndb.com/covers/24/32/9781853262432.jpg'), - ('1853262544', 'Much Ado About Nothing (Wordsworth Classics)', 'https://images.isbndb.com/covers/25/48/9781853262548.jpg'), - ('0971009902', 'The Colors Of The Rainbow : About Life And The Beauty Of Living', 'https://images.isbndb.com/covers/99/05/9780971009905.jpg'), - ('1840224002', 'The Hound Of The Baskervilles (Wordsworth Classics)', 'https://images.isbndb.com/covers/40/09/9781840224009.jpg'), - ('1853260339', 'Adventures Of Sherlock Holmes (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/03/39/9781853260339.jpg'), - ('0553212737', 'Emma (Bantam Classics)', 'https://images.isbndb.com/covers/27/30/9780553212730.jpg'), - ('2277301981', 'L''Accompagnatrice', 'https://images.isbndb.com/covers/19/81/9782277301981.jpg'), - ('0140106391', 'Glass Menagerie (Penguin Plays & Screenplays)', 'https://images.isbndb.com/covers/63/98/9780140106398.jpg'), - ('0345434110', 'Star Wars, Episode I - The Phantom Menace', 'https://images.isbndb.com/covers/41/11/9780345434111.jpg'), - ('0743456947', 'The New Revelations: A Conversation With God', 'https://images.isbndb.com/covers/69/44/9780743456944.jpg'), - ('1853265179', 'Flower In The Snow (Wordsworth Romance)', 'https://images.isbndb.com/covers/51/74/9781853265174.jpg'), - ('0671013777', 'The Goodnight Kiss (Fear Street Super Chillers, No. 3)', 'https://images.isbndb.com/covers/37/76/9780671013776.jpg'), - ('0446605700', 'He Say, She Say', 'https://images.isbndb.com/covers/57/00/9780446605700.jpg'), - ('0451186745', 'Lord Barry''s Dream House (Signet Regency Romance)', 'https://images.isbndb.com/covers/67/44/9780451186744.jpg'), - ('0553446282', 'Hunter In Disguise (Loveswept)', 'https://images.isbndb.com/covers/62/89/9780553446289.jpg'), - ('1857821173', 'Secrets Of The Street: My Life As Ivy Tilsley', 'https://images.isbndb.com/covers/11/78/9781857821178.jpg'), - ('0446531413', 'On A Night Like This', 'https://images.isbndb.com/covers/14/12/9780446531412.jpg'), - ('0061032476', 'Twelve Times Blessed', 'https://images.isbndb.com/covers/24/79/9780061032479.jpg'), - ('0373764405', 'Billionaire Bachelors: Garrett (Silhouette Desire)', 'https://images.isbndb.com/covers/44/02/9780373764402.jpg'), - ('0060533072', 'Unforgettable', 'https://images.isbndb.com/covers/30/76/9780060533076.jpg'), - ('055356983X', 'Anne Frank''s Tales From The Secret Annex', 'https://images.isbndb.com/covers/98/34/9780553569834.jpg'), - ('0330352695', 'Four Letters Of Love (Spanish Edition)', 'https://images.isbndb.com/covers/26/97/9780330352697.jpg'), - ('1860499627', 'Desert Dawn', 'https://images.isbndb.com/covers/96/23/9781860499623.jpg'), - ('0553492144', 'My Best Friend''s Girlfriend (Love Stories)', 'https://images.isbndb.com/covers/21/49/9780553492149.jpg'), - ('0553569228', 'Fire And Fog: A Fremont Jones Mystery (Fremont Jones Mysteries)', 'https://images.isbndb.com/covers/92/23/9780553569223.jpg'), - ('0061013714', 'Tidewater Blood', 'https://images.isbndb.com/covers/37/13/9780061013713.jpg'), - ('0345260791', 'Star Wars', 'https://images.isbndb.com/covers/07/96/9780345260796.jpg'), - ('0553493213', 'Andy & Andie (Love Stories)', 'https://images.isbndb.com/covers/32/14/9780553493214.jpg'), - ('0312274777', 'The Secret Wife Of King George IV', 'https://images.isbndb.com/covers/47/71/9780312274771.jpg'), - ('0140366709', 'King Arthur And His Knights Of The Round Table (Puffin Classics)', 'https://images.isbndb.com/covers/67/09/9780140366709.jpg'), - ('0060574216', 'Men Are From Mars, Women Are From Venus: The Classic Guide To Understanding The Opposite Sex', 'https://images.isbndb.com/covers/42/15/9780060574215.jpg'), - ('0060540591', 'Hitts & Mrs.', 'https://images.isbndb.com/covers/05/93/9780060540593.jpg'), - ('0553492942', 'The Dance (Love Stories)', 'https://images.isbndb.com/covers/29/41/9780553492941.jpg'), - ('1853262773', 'Pair Of Blue Eyes (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/27/77/9781853262777.jpg'), - ('0896380637', 'Do I Have To Give Up Me To Be Loved By You?', 'https://images.isbndb.com/covers/06/39/9780896380639.jpg'), - ('0752271687', 'How To Invest When You Don''t Have Any Money (The Motley Fool)', 'https://images.isbndb.com/covers/16/82/9780752271682.jpg'), - ('0899093655', 'Earl Proulx''s Yankee Home Hints: From Stains On The Rug To Squirrels In The Attic, Over 1,500 Ingenious Solutions To Everyday Household Problems', 'https://images.isbndb.com/covers/36/59/9780899093659.jpg'), - ('0312049994', 'The Sun In The Morning: My Early Years In India And England', 'https://images.isbndb.com/covers/99/97/9780312049997.jpg'), - ('0767914848', 'Cuba Diaries: An American Housewife In Havana', 'https://images.isbndb.com/covers/48/40/9780767914840.jpg'), - ('0684849690', 'The Secret Diary Of Anne Boleyn', 'https://images.isbndb.com/covers/96/90/9780684849690.jpg'), - ('0380731819', 'I Who Have Never Known Men', 'https://images.isbndb.com/covers/18/17/9780380731817.jpg'), - ('0505524902', 'The Magician', 'https://images.isbndb.com/covers/49/04/9780505524904.jpg'), - ('0515131679', 'The Gingerbread Man', 'https://images.isbndb.com/covers/16/73/9780515131673.jpg'), - ('0425195449', 'Naked Prey (Lucas Davenport, No. 14)', 'https://images.isbndb.com/covers/54/44/9780425195444.jpg'), - ('0446613851', 'A Body To Die For', 'https://images.isbndb.com/covers/38/59/9780446613859.jpg'), - ('034544227X', 'Just Friends', 'https://images.isbndb.com/covers/22/77/9780345442277.jpg'), - ('0451210611', 'Wish Come True (Carson Springs Novel)', 'https://images.isbndb.com/covers/06/16/9780451210616.jpg'), - ('0679438890', 'Original Sin (Adam Dalgliesh Mystery Series #9)', 'https://images.isbndb.com/covers/88/92/9780679438892.jpg'), - ('0399527826', 'Strong Women Eat Well', 'https://images.isbndb.com/covers/78/21/9780399527821.jpg'), - ('0767904095', 'All We Know Of Love: A Novel', 'https://images.isbndb.com/covers/40/94/9780767904094.jpg'), - ('0812929802', 'Expecting Adam: A True Story Of Birth, Rebirth, And Everyday Magic', 'https://images.isbndb.com/covers/98/05/9780812929805.jpg'), - ('0743400739', 'The Camino : A Journey Of The Spirit', 'https://images.isbndb.com/covers/07/32/9780743400732.jpg'), - ('2070424324', 'Le Jeûne Et Le Festin', 'https://images.isbndb.com/covers/43/20/9782070424320.jpg'), - ('2290311782', 'Je Voudrais Que Quelqu''un M''attende Quelque Part', 'https://images.isbndb.com/covers/17/83/9782290311783.jpg'), - ('2266031619', 'La Dame De Berlin', 'https://images.isbndb.com/covers/16/15/9782266031615.jpg'), - ('1550544683', 'The Jade Peony', 'https://images.isbndb.com/covers/46/88/9781550544688.jpg'), - ('0749717556', 'Falling Into Glory (Contents S.)', 'https://images.isbndb.com/covers/75/51/9780749717551.jpg'), - ('0881339512', 'The President', 'https://images.isbndb.com/covers/95/12/9780881339512.jpg'), - ('0140031189', 'The Wisdom Of Father Brown (Father Brown Mystery)', 'https://images.isbndb.com/covers/11/88/9780140031188.jpg'), - ('0871132648', 'A Fairy Tale Of New York (Donleavy, J. P.)', 'https://images.isbndb.com/covers/26/42/9780871132642.jpg'), - ('037575699X', 'Don Quixote (Modern Library Classics)', 'https://images.isbndb.com/covers/69/93/9780375756993.jpg'), - ('0141301104', 'The Witches', 'https://images.isbndb.com/covers/11/05/9780141301105.jpg'), - ('0714843377', 'It''s Not How Good You Are, Its How Good You Want To Be: The World''s Best Selling Book', 'https://images.isbndb.com/covers/33/77/9780714843377.jpg'), - ('3453150090', 'Diana-Taschenbücher, Nr.1, Das Grüne Akkordeon', 'https://images.isbndb.com/covers/00/96/9783453150096.jpg'), - ('0525944230', 'The Inheritance: A Novel', 'https://images.isbndb.com/covers/42/32/9780525944232.jpg'), - ('0425170500', 'White Horses', 'https://images.isbndb.com/covers/05/02/9780425170502.jpg'), - ('0399148248', 'Midnight Bayou', 'https://images.isbndb.com/covers/82/48/9780399148248.jpg'), - ('9500416387', 'Cerebro', 'https://images.isbndb.com/covers/63/82/9789500416382.jpg'), - ('9500704285', 'Cronica De Una Muerte Anunciada (Spanish Edition)', 'https://images.isbndb.com/covers/42/81/9789500704281.jpg'), - ('0425174344', 'Local Girls', 'https://images.isbndb.com/covers/43/40/9780425174340.jpg'), - ('0671027581', 'Open Season', 'https://images.isbndb.com/covers/75/82/9780671027582.jpg'), - ('0061015075', 'Divine Secrets Of The Ya-ya Sisterhood: A Novel', 'https://images.isbndb.com/covers/50/76/9780061015076.jpg'), - ('0224031457', 'Art And Lies Edition', 'https://images.isbndb.com/covers/14/55/9780224031455.jpg'), - ('0805066160', 'Bomber''s Law: A Novel (John MacRae Books)', 'https://images.isbndb.com/covers/61/66/9780805066166.jpg'), - ('0553564498', 'Fountain Of Death (Gregor Demarkian Series)', 'https://images.isbndb.com/covers/44/95/9780553564495.jpg'), - ('1883991145', 'Song Of Survival: Women Interned', 'https://images.isbndb.com/covers/11/42/9781883991142.jpg'), - ('0312970277', 'The Court', 'https://images.isbndb.com/covers/02/77/9780312970277.jpg'), - ('0449224627', 'Dress Her In Indigo (Travis Mcgee)', 'https://images.isbndb.com/covers/46/25/9780449224625.jpg'), - ('0060082194', 'Rum Punch', 'https://images.isbndb.com/covers/21/92/9780060082192.jpg'), - ('0618059458', 'The Human Stain', 'https://images.isbndb.com/covers/94/54/9780618059454.jpg'), - ('1573229725', 'Fingersmith', 'https://images.isbndb.com/covers/97/22/9781573229722.jpg'), - ('0786889306', 'Cimarron Rose (Billy Bob Holland)', 'https://images.isbndb.com/covers/93/03/9780786889303.jpg'), - ('325770044X', 'Warum Krieg? Ein Briefwechsel', 'https://images.isbndb.com/covers/04/42/9783257700442.jpg'), - ('0671534726', 'Heart Song (Logan Family Series, Bk. 2)', 'https://images.isbndb.com/covers/47/21/9780671534721.jpg'), - ('0671873202', 'Hidden Jewel (Landry Saga)', 'https://images.isbndb.com/covers/32/02/9780671873202.jpg'), - ('0671007637', 'Runaways (Orphans Series)', 'https://images.isbndb.com/covers/76/38/9780671007638.jpg'), - ('0671534734', 'Unfinished Symphony', 'https://images.isbndb.com/covers/47/38/9780671534738.jpg'), - ('0821745689', 'Creekers', 'https://images.isbndb.com/covers/56/87/9780821745687.jpg'), - ('0671534742', 'Music In The Night (Logan Family)', 'https://images.isbndb.com/covers/47/45/9780671534745.jpg'), - ('0380720973', 'Doll''s Eyes', 'https://images.isbndb.com/covers/09/72/9780380720972.jpg'), - ('0425136981', 'Shadowfires', 'https://images.isbndb.com/covers/69/80/9780425136980.jpg'), - ('2070381471', 'Aziyadé', 'https://images.isbndb.com/covers/14/70/9782070381470.jpg'), - ('0609607294', 'The Babel Effect', 'https://images.isbndb.com/covers/72/99/9780609607299.jpg'), - ('089733356X', 'In A Dark Wood Wandering: A Novel Of The Middle Ages', 'https://images.isbndb.com/covers/35/66/9780897333566.jpg'), - ('0375724397', 'The Abomination: A Novel', 'https://images.isbndb.com/covers/43/98/9780375724398.jpg'), - ('0226244962', 'The Life Of God (as Told By Himself)', 'https://images.isbndb.com/covers/49/69/9780226244969.jpg'), - ('0312965141', 'Strip Jack', 'https://images.isbndb.com/covers/51/43/9780312965143.jpg'), - ('0807612596', 'Janet Frame: An Autobiography; Volume One : To The Is-Land, Volume Two : An Angel At My Table, Volume Three : The Envoy From Mirror City/ 3 Volumes In One Book', 'https://images.isbndb.com/covers/25/90/9780807612590.jpg'), - ('0893819034', 'The Spirit Of Tibet: The Life And World Of Khyentse Rinpoche, Spiritual Teacher', 'https://images.isbndb.com/covers/90/33/9780893819033.jpg'), - ('0689848919', 'Fever 1793', 'https://images.isbndb.com/covers/89/19/9780689848919.jpg'), - ('3404161696', 'Die Männer Sind An Allem Schuld', 'https://images.isbndb.com/covers/16/90/9783404161690.jpg'), - ('0590436481', 'Karen''s Surprise (Baby-Sitters Little Sister, 13)', 'https://images.isbndb.com/covers/64/89/9780590436489.jpg'), - ('0671673653', 'ALL AROUND THE TOWN', 'https://images.isbndb.com/covers/36/59/9780671673659.jpg'), - ('1558746692', 'Taste Berries For Teens: Inspirational Short Stories And Encouragement On Life, Love, Friendship And Tough Issues', 'https://images.isbndb.com/covers/66/95/9781558746695.jpg'), - ('0140378278', 'Freud: Three Case Histories', 'https://images.isbndb.com/covers/82/76/9780140378276.jpg'), - ('0352332352', 'Feminine Wiles (Black Lace)', 'https://images.isbndb.com/covers/23/56/9780352332356.jpg'), - ('0452007380', 'Behind The Mask (Meridian)', 'https://images.isbndb.com/covers/73/83/9780452007383.jpg'), - ('0553133896', 'Midnight Whispers', 'https://images.isbndb.com/covers/38/99/9780553133899.jpg'), - ('0380599236', 'Spring Moon: A Novel Of China', 'https://images.isbndb.com/covers/92/33/9780380599233.jpg'), - ('0440224780', 'The Ranch', 'https://images.isbndb.com/covers/47/85/9780440224785.jpg'), - ('0446671002', 'The Celestine Prophecy', 'https://images.isbndb.com/covers/10/02/9780446671002.jpg'), - ('0590483404', 'A Shocker On Shock Street (Goosebumps)', 'https://images.isbndb.com/covers/34/07/9780590483407.jpg'), - ('0060930314', 'Identity: A Novel', 'https://images.isbndb.com/covers/03/18/9780060930318.jpg'), - ('0590453653', 'Welcome To Dead House (Goosebumps, No. 1)', 'https://images.isbndb.com/covers/36/53/9780590453653.jpg'), - ('059056885X', 'Attack Of The Jack-O''-Lanterns (Goosebumps)', 'https://images.isbndb.com/covers/88/52/9780590568852.jpg'), - ('038549842X', 'Remembering Blue: A Novel', 'https://images.isbndb.com/covers/84/25/9780385498425.jpg'), - ('0385246870', 'Up Through Water', 'https://images.isbndb.com/covers/68/73/9780385246873.jpg'), - ('0312869088', 'Conspiracy.Com: A Novel', 'https://images.isbndb.com/covers/90/83/9780312869083.jpg'), - ('0871312875', 'Second Sight: A Miraculous Story Of Vision Regained', 'https://images.isbndb.com/covers/28/77/9780871312877.jpg'), - ('0340415185', 'Blood And Sand', 'https://images.isbndb.com/covers/51/84/9780340415184.jpg'), - ('0684865491', 'Remembrance Day', 'https://images.isbndb.com/covers/54/92/9780684865492.jpg'), - ('0786862874', 'Where Serpents Lie', 'https://images.isbndb.com/covers/28/70/9780786862870.jpg'), - ('0679419454', 'Disclosure', 'https://images.isbndb.com/covers/94/57/9780679419457.jpg'), - ('0553057456', 'Confessions', 'https://images.isbndb.com/covers/74/54/9780553057454.jpg'), - ('0385298870', 'Bright Shark', 'https://images.isbndb.com/covers/88/72/9780385298872.jpg'), - ('0836252063', 'The Greatest Evil (Father Koesler Mystery)', 'https://images.isbndb.com/covers/20/64/9780836252064.jpg'), - ('1575662493', 'Presumption Of Guilt', 'https://images.isbndb.com/covers/24/97/9781575662497.jpg'), - ('1551668971', 'Hurricane Bay', 'https://images.isbndb.com/covers/89/70/9781551668970.jpg'), - ('1880909340', 'The Crawlspace Conspiracy', 'https://images.isbndb.com/covers/93/48/9781880909348.jpg'), - ('0517597152', 'The Sentry', 'https://images.isbndb.com/covers/71/56/9780517597156.jpg'), - ('0399149384', 'Light In Shadow', 'https://images.isbndb.com/covers/93/82/9780399149382.jpg'), - ('1559721162', 'Savage Justice: A Novel', 'https://images.isbndb.com/covers/11/65/9781559721165.jpg'), - ('0802733220', 'Malice In Miniature: A Dorothy Martin Mystery', 'https://images.isbndb.com/covers/32/21/9780802733221.jpg'), - ('0892967307', 'The Red Room', 'https://images.isbndb.com/covers/73/08/9780892967308.jpg'), - ('0446518859', 'The Juror', 'https://images.isbndb.com/covers/88/57/9780446518857.jpg'), - ('0688126731', 'Don''t Cry Now: A Novel', 'https://images.isbndb.com/covers/67/35/9780688126735.jpg'), - ('0684196549', 'All Shall Be Well (a Superintendent Duncan Kincaid/sergeant Gemma James Myster', 'https://images.isbndb.com/covers/65/41/9780684196541.jpg'), - ('0688158196', 'Kill The Shogun (Samurai Mysteries)', 'https://images.isbndb.com/covers/81/94/9780688158194.jpg'), - ('0345386299', 'The Shadow Man', 'https://images.isbndb.com/covers/62/98/9780345386298.jpg'), - ('0836278658', 'No Greater Love', 'https://images.isbndb.com/covers/86/51/9780836278651.jpg'), - ('0609602403', 'I''ll Be Watching You', 'https://images.isbndb.com/covers/24/09/9780609602409.jpg'), - ('1575663473', 'Chameleon', 'https://images.isbndb.com/covers/34/70/9781575663470.jpg'), - ('0525426701', 'The White Jade Fox', 'https://images.isbndb.com/covers/67/07/9780525426707.jpg'), - ('0689304420', 'Z FOR ZACHARIAH', 'https://images.isbndb.com/covers/44/22/9780689304422.jpg'), - ('0394473043', 'Summer Solstice', 'https://images.isbndb.com/covers/30/48/9780394473048.jpg'), - ('052593863X', 'Reckless Driver: A Novel', 'https://images.isbndb.com/covers/86/37/9780525938637.jpg'), - ('0385419457', 'Dreaming In Color', 'https://images.isbndb.com/covers/94/51/9780385419451.jpg'), - ('0060176539', 'Breakthrough: The Next Step', 'https://images.isbndb.com/covers/65/32/9780060176532.jpg'), - ('038530532X', 'Is Anyone Out There?', 'https://images.isbndb.com/covers/53/27/9780385305327.jpg'), - ('0385314124', 'Children Of The Vampire', 'https://images.isbndb.com/covers/41/21/9780385314121.jpg'), - ('0312112831', 'A Cardinal Offense: A Father Dowling Mystery', 'https://images.isbndb.com/covers/28/37/9780312112837.jpg'), - ('0618045678', 'Wild Decembers', 'https://images.isbndb.com/covers/56/79/9780618045679.jpg'), - ('0312263066', 'Daughter Mine: A Novel', 'https://images.isbndb.com/covers/30/65/9780312263065.jpg'), - ('038097729X', 'Paradise Lost (Joanna Brady Mysteries, Book 9)', 'https://images.isbndb.com/covers/72/91/9780380977291.jpg'), - ('0670854891', 'The Ghost Road', 'https://images.isbndb.com/covers/48/99/9780670854899.jpg'), - ('2266123254', 'Avis De Grand Frais', 'https://images.isbndb.com/covers/32/59/9782266123259.jpg'), - ('0439531640', 'Inkheart', 'https://images.isbndb.com/covers/16/41/9780439531641.jpg'), - ('0152045708', 'Troy', 'https://images.isbndb.com/covers/57/08/9780152045708.jpg'), - ('0812971043', 'The Dante Club: A Novel', 'https://images.isbndb.com/covers/10/40/9780812971040.jpg'), - ('0156319527', 'Flush: A Biography', 'https://images.isbndb.com/covers/95/22/9780156319522.jpg'), - ('0754807762', 'Home Makeovers In An Instant (Practical Handbook)', 'https://images.isbndb.com/covers/77/66/9780754807766.jpg'), - ('0060923288', 'Raising Your Spirited Child: A Guide For Parents Whose Child Is More Intense, Sensitive, Perceptive, Persistent, Energetic', 'https://images.isbndb.com/covers/32/80/9780060923280.jpg'), - ('1551669323', 'Crimson Rain', 'https://images.isbndb.com/covers/93/28/9781551669328.jpg'), - ('0330349112', 'Cross Channel', 'https://images.isbndb.com/covers/91/16/9780330349116.jpg'), - ('033035566X', 'Strange Places, Questionable People: Updated With A New Chapter On Kosovo', 'https://images.isbndb.com/covers/56/67/9780330355667.jpg'), - ('061805670X', 'A Dangerous Friend', 'https://images.isbndb.com/covers/67/05/9780618056705.jpg'), - ('0684860244', 'Derailed In Uncle Ho''s Victory Garden', 'https://images.isbndb.com/covers/02/44/9780684860244.jpg'), - ('0831731516', 'The Emperor''s New Clothes.', 'https://images.isbndb.com/covers/15/19/9780831731519.jpg'), - ('3453870212', 'Herbstwolken: Roman', 'https://images.isbndb.com/covers/02/15/9783453870215.jpg'), - ('3442355052', 'Der Gaukler Der Könige', 'https://images.isbndb.com/covers/50/51/9783442355051.jpg'), - ('0385509510', 'Under The Banner Of Heaven: A Story Of Violent Faith', 'https://images.isbndb.com/covers/95/10/9780385509510.jpg'), - ('3426616653', 'Der Ruf Des Meeres', 'https://images.isbndb.com/covers/66/59/9783426616659.jpg'), - ('0688169082', 'At The Entrance To The Garden Of Eden: A Jew''s Search For God With Christians And Muslims In The Holy Land', 'https://images.isbndb.com/covers/90/84/9780688169084.jpg'), - ('1570753881', 'Jesus Through Jewish Eyes: Rabbis And Scholars Engage An Ancient Brother In A New Conversation', 'https://images.isbndb.com/covers/38/86/9781570753886.jpg'), - ('0813339022', 'In The Shadow Of The Prophet: The Struggle For The Soul Of Islam', 'https://images.isbndb.com/covers/90/23/9780813339023.jpg'), - ('0465083668', 'Tales Of The Lavender Menace: A Memoir Of Liberation', 'https://images.isbndb.com/covers/36/64/9780465083664.jpg'), - ('0931779073', 'The Philosophy Of Humanism', 'https://images.isbndb.com/covers/90/77/9780931779077.jpg'), - ('0679757015', 'Gender Outlaw: On Men, Women And The Rest Of Us', 'https://images.isbndb.com/covers/70/16/9780679757016.jpg'), - ('0385239165', 'Betty White In Person', 'https://images.isbndb.com/covers/91/65/9780385239165.jpg'), - ('155896388X', 'The Unitarian Universalist Pocket Guide', 'https://images.isbndb.com/covers/38/87/9781558963887.jpg'), - ('0380771535', 'I Ching In Ten Minutes', 'https://images.isbndb.com/covers/15/30/9780380771530.jpg'), - ('0813526507', 'Pretty In Punk: Girl''s Gender Resistance In A Boy''s Subculture', 'https://images.isbndb.com/covers/65/08/9780813526508.jpg'), - ('0460873946', 'Travels In West Africa (Everyman''s Library (Paper))', 'https://images.isbndb.com/covers/39/49/9780460873949.jpg'), - ('0804115761', 'A Thousand Acres', 'https://images.isbndb.com/covers/57/66/9780804115766.jpg'), - ('0688118186', 'The Mayflower Murderer And Other Forgotten Firsts In American History', 'https://images.isbndb.com/covers/81/81/9780688118181.jpg'), - ('0671027328', 'The GOLD OF EXODUS', 'https://images.isbndb.com/covers/73/22/9780671027322.jpg'), - ('1863305955', 'Underground: Tales Of Hacking, Madness, And Obsession On The Electronic Frontier', 'https://images.isbndb.com/covers/59/52/9781863305952.jpg'), - ('0195090616', 'Islam And The West', 'https://images.isbndb.com/covers/06/11/9780195090611.jpg'), - ('0812513495', 'Ender''s Game (Enders)', 'https://images.isbndb.com/covers/34/93/9780812513493.jpg'), - ('0812971116', 'Why Are We At War?', 'https://images.isbndb.com/covers/11/18/9780812971118.jpg'), - ('0140481850', 'Equus (Penguin Plays)', 'https://images.isbndb.com/covers/18/53/9780140481853.jpg'), - ('3442449871', 'Falltür Ins Paradies.', 'https://images.isbndb.com/covers/98/73/9783442449873.jpg'), - ('3442450136', 'Joe Goulds Geheimnis', 'https://images.isbndb.com/covers/01/38/9783442450138.jpg'), - ('3442426030', 'Wilde Lupinen', 'https://images.isbndb.com/covers/60/34/9783442426034.jpg'), - ('0064406423', 'X Files #07 Fear (X Files Middle Grade)', 'https://images.isbndb.com/covers/64/20/9780064406420.jpg'), - ('0140249265', 'Away: A Novel', 'https://images.isbndb.com/covers/92/62/9780140249262.jpg'), - ('3462027697', 'Soloalbum.', 'https://images.isbndb.com/covers/76/93/9783462027693.jpg'), - ('0449147231', 'We Wish You A Merry Murder', 'https://images.isbndb.com/covers/72/38/9780449147238.jpg'), - ('0747258740', 'The Haunting (Paul Doherty Historical Mysteries)', 'https://images.isbndb.com/covers/87/42/9780747258742.jpg'), - ('0330351958', 'A Booke Of Days: A Journal Of The Crusade', 'https://images.isbndb.com/covers/19/59/9780330351959.jpg'), - ('0743419162', 'Fanning The Flame', 'https://images.isbndb.com/covers/91/61/9780743419161.jpg'), - ('0451205707', 'A Killing Sky (Frank Palvicek Mysteries)', 'https://images.isbndb.com/covers/57/04/9780451205704.jpg'), - ('0060179341', 'Downtown', 'https://images.isbndb.com/covers/93/42/9780060179342.jpg'), - ('0316152196', 'Angels Flight (Harry Bosch)', 'https://images.isbndb.com/covers/21/98/9780316152198.jpg'), - ('0312185863', 'Four To Score (Stephanie Plum, No. 4) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/58/62/9780312185862.jpg'), - ('0312865694', 'Irish Mist: A Nuala Anne McGrail Novel', 'https://images.isbndb.com/covers/56/96/9780312865696.jpg'), - ('0684193965', 'The Double Minded Men: A Martha''s Vineyard Mystery (Book 3 In Series)', 'https://images.isbndb.com/covers/39/60/9780684193960.jpg'), - ('0451206444', 'My Lady Notorious', 'https://images.isbndb.com/covers/64/42/9780451206442.jpg'), - ('0843947616', 'In The Shadow Of The Arch (Joe Keough Mysteries)', 'https://images.isbndb.com/covers/76/18/9780843947618.jpg'), - ('0689117353', 'Memoirs Of An Invisible Man', 'https://images.isbndb.com/covers/73/50/9780689117350.jpg'), - ('0787902314', 'A Voice Of Our Own: Leading American Women Celebrate The Right To Vote', 'https://images.isbndb.com/covers/23/15/9780787902315.jpg'), - ('0304328502', 'Found Wanting: Women, Christianity And Sexuality (Sexual Politics)', 'https://images.isbndb.com/covers/85/05/9780304328505.jpg'), - ('0745312187', 'Sisterhoods: Feminists In Film And Fiction (Film/Fiction Volume 3)', 'https://images.isbndb.com/covers/21/87/9780745312187.jpg'), - ('0889220603', 'Theme For Diverse Instruments', 'https://images.isbndb.com/covers/06/07/9780889220607.jpg'), - ('1558505164', 'The Book Of Women: 300 Notable Women History Passed By', 'https://images.isbndb.com/covers/51/62/9781558505162.jpg'), - ('1550221582', 'K.d. Lang: Carrying The Torch', 'https://images.isbndb.com/covers/15/89/9781550221589.jpg'), - ('0553380400', 'Bingo', 'https://images.isbndb.com/covers/04/08/9780553380408.jpg'), - ('1555838537', 'Stone Butch Blues: A Novel', 'https://images.isbndb.com/covers/85/39/9781555838539.jpg'), - ('0889223017', 'Desert Of The Heart', 'https://images.isbndb.com/covers/30/11/9780889223011.jpg'), - ('0449219399', 'Murder At The National Cathedral (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/93/93/9780449219393.jpg'), - ('0310248299', 'Cross And The Switchblade', 'https://images.isbndb.com/covers/82/93/9780310248293.jpg'), - ('006104296X', 'East Is East: A John Putnam Thatcher Mystery', 'https://images.isbndb.com/covers/29/66/9780061042966.jpg'), - ('0553803700', 'I, Robot (Bantam Spectra Book)', 'https://images.isbndb.com/covers/37/09/9780553803709.jpg'), - ('0553565079', 'Forward The Foundation (Foundation Novels)', 'https://images.isbndb.com/covers/50/72/9780553565072.jpg'), - ('0451524608', 'As You Like It (Signet Classics)', 'https://images.isbndb.com/covers/46/07/9780451524607.jpg'), - ('0451522869', 'Henry V: The Life Of (Signet Classics)', 'https://images.isbndb.com/covers/28/63/9780451522863.jpg'), - ('0451524101', 'King Lear', 'https://images.isbndb.com/covers/41/02/9780451524102.jpg'), - ('0451522990', 'King John And Henry VIII (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/29/93/9780451522993.jpg'), - ('0451522966', 'Coriolanus (Signet Classics)', 'https://images.isbndb.com/covers/29/62/9780451522962.jpg'), - ('0451524098', 'Measure For Measure (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/40/96/9780451524096.jpg'), - ('0451523113', 'The Comedy Of Errors', 'https://images.isbndb.com/covers/31/12/9780451523112.jpg'), - ('0451522664', 'Richard III (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/26/65/9780451522665.jpg'), - ('0451522974', 'Troilus And Cressida (Signet Classics)', 'https://images.isbndb.com/covers/29/79/9780451522979.jpg'), - ('0140707204', 'All''s Well That Ends Well (Shakespeare, Penguin)', 'https://images.isbndb.com/covers/72/05/9780140707205.jpg'), - ('0140707182', 'Henry IV, Part 1 (Penguin) (Shakespeare, Penguin) (Pt.1)', 'https://images.isbndb.com/covers/71/82/9780140707182.jpg'), - ('014070728X', 'Henry IV, Part 2 (The New Penguin Shakespeare) (Pt.2)', 'https://images.isbndb.com/covers/72/81/9780140707281.jpg'), - ('0441001416', 'Lyon''s Pride', 'https://images.isbndb.com/covers/14/15/9780441001415.jpg'), - ('0671025325', 'Triangle:Imzadi 11', 'https://images.isbndb.com/covers/53/28/9780671025328.jpg'), - ('0802850995', 'Maria Mitchell: The Soul Of An Astronomer (Women Of Spirit)', 'https://images.isbndb.com/covers/09/97/9780802850997.jpg'), - ('0804200637', 'The Bible Makes Sense', 'https://images.isbndb.com/covers/06/39/9780804200639.jpg'), - ('068700781X', 'Meditations To Make You Smile', 'https://images.isbndb.com/covers/78/13/9780687007813.jpg'), - ('0679730621', 'Bachelor Girls', 'https://images.isbndb.com/covers/06/20/9780679730620.jpg'), - ('1862044201', 'The Most Important Lessons In Life: Letters To A Young Girl', 'https://images.isbndb.com/covers/42/03/9781862044203.jpg'), - ('0345388879', 'Don''t Get Me Started', 'https://images.isbndb.com/covers/88/72/9780345388872.jpg'), - ('0316102334', 'Family Outing', 'https://images.isbndb.com/covers/23/39/9780316102339.jpg'), - ('0380792508', 'Outlaw School', 'https://images.isbndb.com/covers/25/04/9780380792504.jpg'), - ('0517552000', 'The Hitchhiker''s Trilogy, Omnibus Edition', 'https://images.isbndb.com/covers/20/01/9780517552001.jpg'), - ('0553564927', 'The Last Command (Star Wars: The Thrawn Trilogy, Vol. 3)', 'https://images.isbndb.com/covers/49/21/9780553564921.jpg'), - ('0064403149', 'The Last Of The Really Great Whangdoodles 30th Anniversary Edition', 'https://images.isbndb.com/covers/31/46/9780064403146.jpg'), - ('0446400718', 'The Piper On The Mountain', 'https://images.isbndb.com/covers/07/18/9780446400718.jpg'), - ('0786868848', 'What About The Big Stuff?: Finding Strength And Moving Forward When The Stakes Are High (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/88/41/9780786868841.jpg'), - ('0451410378', 'The Silent Bride (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/03/75/9780451410375.jpg'), - ('1573227889', 'Tipping The Velvet: A Novel', 'https://images.isbndb.com/covers/78/89/9781573227889.jpg'), - ('0446515272', 'Dixie Riggs', 'https://images.isbndb.com/covers/52/76/9780446515276.jpg'), - ('0425129039', 'Weird Ways To Die', 'https://images.isbndb.com/covers/90/36/9780425129036.jpg'), - ('0373240007', 'Pride Of Jared Mackade (The Mackade Brothers)', 'https://images.isbndb.com/covers/00/05/9780373240005.jpg'), - ('3596505275', 'Buddenbrooks. Jubiläums- Edition. Verfall Einer Familie.', 'https://images.isbndb.com/covers/52/72/9783596505272.jpg'), - ('3608934537', 'Der Rote Rock', 'https://images.isbndb.com/covers/45/33/9783608934533.jpg'), - ('0765304341', 'From A Whisper To A Scream (Key Books)', 'https://images.isbndb.com/covers/43/46/9780765304346.jpg'), - ('076530418X', 'Stories Of Your Life And Others', 'https://images.isbndb.com/covers/41/86/9780765304186.jpg'), - ('0312867808', 'Starlight 3 (Starlight (Tor Hardcover))', 'https://images.isbndb.com/covers/78/05/9780312867805.jpg'), - ('0812568850', 'Enemy Glory', 'https://images.isbndb.com/covers/88/51/9780812568851.jpg'), - ('0812575857', 'Starfish', 'https://images.isbndb.com/covers/58/59/9780812575859.jpg'), - ('0452263565', 'Annie John', 'https://images.isbndb.com/covers/35/67/9780452263567.jpg'), - ('0553285920', 'Silent Partner', 'https://images.isbndb.com/covers/59/25/9780553285925.jpg'), - ('0345346602', 'A Summons To Memphis', 'https://images.isbndb.com/covers/66/05/9780345346605.jpg'), - ('0679454748', 'The Autobiography Of Foudini M. Cat', 'https://images.isbndb.com/covers/47/48/9780679454748.jpg'), - ('0785280952', 'Jake', 'https://images.isbndb.com/covers/09/58/9780785280958.jpg'), - ('0345430514', 'Another City, Not My Own', 'https://images.isbndb.com/covers/05/19/9780345430519.jpg'), - ('0060933186', 'Little Altars Everywhere', 'https://images.isbndb.com/covers/31/80/9780060933180.jpg'), - ('0061097853', 'The First Eagle (Jim Chee Novels)', 'https://images.isbndb.com/covers/78/50/9780061097850.jpg'), - ('0552995770', 'Confessions Of Aubrey Beardsley', 'https://images.isbndb.com/covers/57/71/9780552995771.jpg'), - ('0718143051', 'The Safe House', 'https://images.isbndb.com/covers/30/53/9780718143053.jpg'), - ('1865083348', 'The Shape Of Snakes', 'https://images.isbndb.com/covers/33/46/9781865083346.jpg'), - ('3570206181', 'Schauergeschichten Doppeldecker 1: Gänsehaut', 'https://images.isbndb.com/covers/61/88/9783570206188.jpg'), - ('3570205932', 'Gänsehaut - Mein Unsichtbarer Freund', 'https://images.isbndb.com/covers/59/38/9783570205938.jpg'), - ('3473581720', 'Ich Knall Euch Ab!', 'https://images.isbndb.com/covers/17/26/9783473581726.jpg'), - ('349913943X', 'Blondinenträume', 'https://images.isbndb.com/covers/94/37/9783499139437.jpg'), - ('0553271369', 'The Lords Of Discipline', 'https://images.isbndb.com/covers/13/62/9780553271362.jpg'), - ('0671016733', 'Fork In The Road', 'https://images.isbndb.com/covers/67/39/9780671016739.jpg'), - ('0618145591', 'Grass Roof, Tin Roof', 'https://images.isbndb.com/covers/55/91/9780618145591.jpg'), - ('0307001377', 'This Is My Family (A Little Golden Book)', 'https://images.isbndb.com/covers/13/75/9780307001375.jpg'), - ('0140390227', 'The Awakening, And Selected Stories', 'https://images.isbndb.com/covers/02/23/9780140390223.jpg'), - ('0851129412', 'The Guinness Book Of British Hit Singles', 'https://images.isbndb.com/covers/94/19/9780851129419.jpg'), - ('0851128882', 'THE GUINNESS BOOK OF BRITISH HIT ALBUMS.', 'https://images.isbndb.com/covers/88/87/9780851128887.jpg'), - ('1852838892', '30 Years Of NME Album Charts', 'https://images.isbndb.com/covers/88/98/9781852838898.jpg'), - ('0743430344', 'BIG CHERRY HOLLER', 'https://images.isbndb.com/covers/03/40/9780743430340.jpg'), - ('0500091080', 'Hockney By Hockney', 'https://images.isbndb.com/covers/10/81/9780500091081.jpg'), - ('0851125794', 'The Guinness Who''s Who Of Indie And New Wave Music (The Guinness Who''s Who Of Popular Music Series)', 'https://images.isbndb.com/covers/57/94/9780851125794.jpg'), - ('0711930007', 'Morrissey & Marr: The Severed Alliance', 'https://images.isbndb.com/covers/00/01/9780711930001.jpg'), - ('034911319X', 'Park And Ride: Adventures In Suburbia', 'https://images.isbndb.com/covers/31/97/9780349113197.jpg'), - ('0688176461', 'Taking Lottie Home: A Novel', 'https://images.isbndb.com/covers/64/64/9780688176464.jpg'), - ('0373765207', 'Cinderella''s Millionaire (Dynasties: The Barones)', 'https://images.isbndb.com/covers/52/01/9780373765201.jpg'), - ('0439132266', 'Science Surprises', 'https://images.isbndb.com/covers/22/68/9780439132268.jpg'), - ('0195101685', 'One Nation, Underprivileged: Why American Poverty Affects Us All', 'https://images.isbndb.com/covers/16/83/9780195101683.jpg'), - ('0860202909', 'Usborne Book Of The Future', 'https://images.isbndb.com/covers/29/05/9780860202905.jpg'), - ('0743477553', 'Othello (Folger Shakespeare Library)', 'https://images.isbndb.com/covers/75/50/9780743477550.jpg'), - ('0451515927', 'The Red Badge Of Courage (Signet Classics)', 'https://images.isbndb.com/covers/59/26/9780451515926.jpg'), - ('0373169922', 'C.E.O. & The Cookie Queen (Harlequin American Romance)', 'https://images.isbndb.com/covers/99/24/9780373169924.jpg'), - ('0671867091', 'Remember Me', 'https://images.isbndb.com/covers/70/96/9780671867096.jpg'), - ('1575662728', 'Irish Magic II: The Changeling/ Earthly Magic/ To Recapture The Light/ Bride Price', 'https://images.isbndb.com/covers/27/25/9781575662725.jpg'), - ('0821758608', 'Highland Treasure (Zebra Historical Romance)', 'https://images.isbndb.com/covers/86/01/9780821758601.jpg'), - ('038072751X', 'The Legend Of Bagger Vance: A Novel Of Golf And The Game Of Life', 'https://images.isbndb.com/covers/75/13/9780380727513.jpg'), - ('0553207083', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/70/88/9780553207088.jpg'), - ('0590487922', 'Zlata''s Diary: A Child''s Life In Sarajevo', 'https://images.isbndb.com/covers/79/24/9780590487924.jpg'), - ('0590554093', 'Tris''s Book (Circle Of Magic #2)', 'https://images.isbndb.com/covers/40/91/9780590554091.jpg'), - ('0821756079', 'The First Mountain Man: Cheyenne Challenge', 'https://images.isbndb.com/covers/60/72/9780821756072.jpg'), - ('0886778905', 'The Black Swan (Fairy Tale Series, Book 2)', 'https://images.isbndb.com/covers/89/03/9780886778903.jpg'), - ('0425147517', 'The Key To Midnight', 'https://images.isbndb.com/covers/75/11/9780425147511.jpg'), - ('0345386108', 'Winter Moon', 'https://images.isbndb.com/covers/61/06/9780345386106.jpg'), - ('0671709607', 'Flight Of The Intruder', 'https://images.isbndb.com/covers/96/00/9780671709600.jpg'), - ('1881471578', 'Spiritland', 'https://images.isbndb.com/covers/15/78/9781881471578.jpg'), - ('3442725984', 'Das Falsche Urteil: Roman', 'https://images.isbndb.com/covers/59/84/9783442725984.jpg'), - ('0849942365', 'Falling In Love With Jesus Abandoning Yourself To The Greatest Romance Of Your Life', 'https://images.isbndb.com/covers/23/65/9780849942365.jpg'), - ('0895294958', 'Deaf Smith Country Cookbook', 'https://images.isbndb.com/covers/49/51/9780895294951.jpg'), - ('0028612671', 'Simply Heavenly!: The Monastery Vegetarian Cookbook', 'https://images.isbndb.com/covers/26/76/9780028612676.jpg'), - ('0395752833', 'Smart Eating', 'https://images.isbndb.com/covers/28/38/9780395752838.jpg'), - ('0061056154', 'Magazine Beach', 'https://images.isbndb.com/covers/61/54/9780061056154.jpg'), - ('0515130095', 'Secret Honor (Honor Bound)', 'https://images.isbndb.com/covers/00/96/9780515130096.jpg'), - ('0061099082', 'The Last Raven', 'https://images.isbndb.com/covers/90/83/9780061099083.jpg'), - ('0812531884', 'Time And Chance', 'https://images.isbndb.com/covers/18/86/9780812531886.jpg'), - ('0671795554', 'Remember When', 'https://images.isbndb.com/covers/55/59/9780671795559.jpg'), - ('0886775981', 'To Green Angel Tower, Part 1 (Memory, Sorrow, And Thorn, Book 3)', 'https://images.isbndb.com/covers/59/88/9780886775988.jpg'), - ('0515130044', 'The Attorney (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/00/41/9780515130041.jpg'), - ('1551665204', 'Baby Farm', 'https://images.isbndb.com/covers/52/07/9781551665207.jpg'), - ('0440217334', 'Last Sanctuary', 'https://images.isbndb.com/covers/73/36/9780440217336.jpg'), - ('0140287442', 'I Dreamed Of Africa', 'https://images.isbndb.com/covers/74/48/9780140287448.jpg'), - ('0425164152', 'Time''s Arrow: The Present (X-Men & Spider-Man, No 2)', 'https://images.isbndb.com/covers/41/50/9780425164150.jpg'), - ('038072118X', 'Where Is Joe Merchant?', 'https://images.isbndb.com/covers/11/84/9780380721184.jpg'), - ('0451407199', 'Valentine', 'https://images.isbndb.com/covers/71/91/9780451407191.jpg'), - ('0446608009', 'The Drowning People', 'https://images.isbndb.com/covers/80/08/9780446608008.jpg'), - ('0553576798', 'The Other Daughter', 'https://images.isbndb.com/covers/67/95/9780553576795.jpg'), - ('1558850767', 'Holy Radishes', 'https://images.isbndb.com/covers/07/67/9781558850767.jpg'), - ('0684871483', 'Kokology : The Game Of Self-Discovery', 'https://images.isbndb.com/covers/14/86/9780684871486.jpg'), - ('0446525537', 'A Walk To Remember', 'https://images.isbndb.com/covers/55/34/9780446525534.jpg'), - ('0385472978', 'Next Year In Cuba', 'https://images.isbndb.com/covers/29/75/9780385472975.jpg'), - ('0533133726', 'Care And Feeding Of The Chronologically Gifted Brain', 'https://images.isbndb.com/covers/37/27/9780533133727.jpg'), - ('1561708755', '10 Secrets For Success And Inner Peace', 'https://images.isbndb.com/covers/87/58/9781561708758.jpg'), - ('0375507639', 'A Long Way From Home: Growing Up In The American Heartland', 'https://images.isbndb.com/covers/76/32/9780375507632.jpg'), - ('0670894605', 'The Secret Life Of Bees', 'https://images.isbndb.com/covers/46/04/9780670894604.jpg'), - ('038550117X', 'Disobedience: A Novel', 'https://images.isbndb.com/covers/11/70/9780385501170.jpg'), - ('0684847450', 'MY SISTER FROM THE BLACK LAGOON : A Novel Of My Life', 'https://images.isbndb.com/covers/74/50/9780684847450.jpg'), - ('0886772796', 'Magicians Of Gor (Tarl Cabot Saga, Book 25)', 'https://images.isbndb.com/covers/27/96/9780886772796.jpg'), - ('0451451600', 'I Shudder At Your Touch', 'https://images.isbndb.com/covers/16/06/9780451451606.jpg'), - ('0752847732', 'Asterix And The Great Divide (Asterix (Orion Paperback))', 'https://images.isbndb.com/covers/77/33/9780752847733.jpg'), - ('0684865386', 'Namedropper: A Novel', 'https://images.isbndb.com/covers/53/86/9780684865386.jpg'), - ('1400030927', 'Jennifer Government', 'https://images.isbndb.com/covers/09/27/9781400030927.jpg'), - ('0340767065', 'Fractions Of Zero', 'https://images.isbndb.com/covers/70/61/9780340767061.jpg'), - ('0582327318', 'Understanding Immunology (Cell And Molecular Biology In Action)', 'https://images.isbndb.com/covers/73/13/9780582327313.jpg'), - ('0135605415', 'Mathematics And Statistics For The Bio-Sciences (Mathematics And Its Applications)', 'https://images.isbndb.com/covers/54/17/9780135605417.jpg'), - ('0395585686', 'Blue Highways: A Journey Into America', 'https://images.isbndb.com/covers/56/89/9780395585689.jpg'), - ('3442445078', 'Zeitbeben', 'https://images.isbndb.com/covers/50/73/9783442445073.jpg'), - ('0141012722', 'Late Season', 'https://images.isbndb.com/covers/27/28/9780141012728.jpg'), - ('0451208668', 'The Opposite Shore', 'https://images.isbndb.com/covers/86/68/9780451208668.jpg'), - ('0380976749', 'The Mermaids Singing', 'https://images.isbndb.com/covers/67/44/9780380976744.jpg'), - ('038549744X', 'English Passengers: A Novel', 'https://images.isbndb.com/covers/74/42/9780385497442.jpg'), - ('0316095648', 'A Question Of Blood: An Inspector Rebus Novel', 'https://images.isbndb.com/covers/56/48/9780316095648.jpg'), - ('1552781364', 'Moon Island', 'https://images.isbndb.com/covers/13/64/9781552781364.jpg'), - ('075530540X', 'My Lovers Lover', 'https://images.isbndb.com/covers/54/07/9780755305407.jpg'), - ('0590321579', 'The Girl With The Silver Eyes', 'https://images.isbndb.com/covers/15/70/9780590321570.jpg'), - ('0919926487', 'Queen Of The Headaches', 'https://images.isbndb.com/covers/64/86/9780919926486.jpg'), - ('090898801X', 'Wild At Heart: The South Island''s West Coast', 'https://images.isbndb.com/covers/80/13/9780908988013.jpg'), - ('0553275380', 'The Palace', 'https://images.isbndb.com/covers/53/84/9780553275384.jpg'), - ('0505522977', 'The Reluctant Viking (Timeswept)', 'https://images.isbndb.com/covers/29/79/9780505522979.jpg'), - ('3548256058', 'Der Golem', 'https://images.isbndb.com/covers/60/54/9783548256054.jpg'), - ('3404614887', 'Wo Keine Worte Sind, Da Ist Musik. Eine Junge Sängerin Bewältigt Ihre Vergangenheit.', 'https://images.isbndb.com/covers/48/82/9783404614882.jpg'), - ('2226133097', 'Chambre à Part', 'https://images.isbndb.com/covers/30/90/9782226133090.jpg'), - ('0684849046', 'The Deadhouse', 'https://images.isbndb.com/covers/90/41/9780684849041.jpg'), - ('0679752560', 'An Unspoken Hunger: Stories From The Field', 'https://images.isbndb.com/covers/25/61/9780679752561.jpg'), - ('0312270348', 'Let''s Go 2002: China (Let''s Go: China)', 'https://images.isbndb.com/covers/03/46/9780312270346.jpg'), - ('0345446666', 'Death In Holy Orders (Adam Dalgliesh Mystery Series #11)', 'https://images.isbndb.com/covers/66/64/9780345446664.jpg'), - ('0449207668', 'Bluegate Fields: A Charlotte And Thomas Pitt Novel', 'https://images.isbndb.com/covers/76/66/9780449207666.jpg'), - ('1877251038', 'Strawberries With The Fuhrer: A Journey From The Third Reich To New Zealand', 'https://images.isbndb.com/covers/10/30/9781877251030.jpg'), - ('0877734518', 'A Little Course In Dreams', 'https://images.isbndb.com/covers/45/12/9780877734512.jpg'), - ('1863305025', 'Homebush Boy', 'https://images.isbndb.com/covers/50/20/9781863305020.jpg'), - ('0460875523', '19th Century American Short Stories (Everyman''s Library (Paper))', 'https://images.isbndb.com/covers/55/23/9780460875523.jpg'), - ('0330359916', 'Night Letters', 'https://images.isbndb.com/covers/99/17/9780330359917.jpg'), - ('0553550020', 'A Home At The End Of The World', 'https://images.isbndb.com/covers/00/23/9780553550023.jpg'), - ('0881662089', 'Feed Me! I''m Yours: Baby Food Made Easy', 'https://images.isbndb.com/covers/20/85/9780881662085.jpg'), - ('0890875871', 'PMS: Premenstrual Syndrome Self-Help Book', 'https://images.isbndb.com/covers/58/72/9780890875872.jpg'), - ('0385423977', 'The Beauty Myth: How Images Of Beauty Are Used Against Women', 'https://images.isbndb.com/covers/39/77/9780385423977.jpg'), - ('0805031251', 'Food And Mood: The Complete Guide To Eating Well And Feeling Your Best (Henry Holt Reference Book)', 'https://images.isbndb.com/covers/12/56/9780805031256.jpg'), - ('0684859114', 'Damascus Gate', 'https://images.isbndb.com/covers/91/18/9780684859118.jpg'), - ('0812931378', 'Paris In The Fifties', 'https://images.isbndb.com/covers/13/72/9780812931372.jpg'), - ('042514321X', 'The Novice''s Tale (Sister Frevisse Medieval Mysteries)', 'https://images.isbndb.com/covers/32/16/9780425143216.jpg'), - ('0767904621', 'Play Like A Man, Win Like A Woman: What Men Know About Success That Women Need To Learn', 'https://images.isbndb.com/covers/46/29/9780767904629.jpg'), - ('0312205309', 'Dr. Laura: The Unauthorized Biography', 'https://images.isbndb.com/covers/53/00/9780312205300.jpg'), - ('0061008079', 'A Woman Of Substance', 'https://images.isbndb.com/covers/80/78/9780061008078.jpg'), - ('096843911X', 'Feng Shui : Going With The Flow', 'https://images.isbndb.com/covers/91/11/9780968439111.jpg'), - ('0553255762', 'Maya Angelou: Poems', 'https://images.isbndb.com/covers/57/68/9780553255768.jpg'), - ('1550460943', 'Daytripper 3: 50 Trips In And Around Eastern Ontario', 'https://images.isbndb.com/covers/09/40/9781550460940.jpg'), - ('067154683X', 'Anne Frank : The Diary Of A Young Girl', 'https://images.isbndb.com/covers/68/30/9780671546830.jpg'), - ('0671690094', 'Anne Frank: Diary Of A Young Girl', 'https://images.isbndb.com/covers/00/90/9780671690090.jpg'), - ('3492231489', 'Die Einsamkeit Des Managers. Ein Pepe-Carvalho-Roman', 'https://images.isbndb.com/covers/14/80/9783492231480.jpg'), - ('0618093974', 'My Life On A Plate', 'https://images.isbndb.com/covers/39/77/9780618093977.jpg'), - ('0060970421', 'Some Tame Gazelle', 'https://images.isbndb.com/covers/04/20/9780060970420.jpg'), - ('0440295556', 'The Partner', 'https://images.isbndb.com/covers/55/56/9780440295556.jpg'), - ('0590423827', 'Scared Silly', 'https://images.isbndb.com/covers/38/23/9780590423823.jpg'), - ('0440134056', 'Hackers', 'https://images.isbndb.com/covers/40/53/9780440134053.jpg'), - ('0399145419', 'Friendship With God: An Uncommon Dialogue', 'https://images.isbndb.com/covers/54/14/9780399145414.jpg'), - ('0553241443', 'Holiday For Murder,a', 'https://images.isbndb.com/covers/14/40/9780553241440.jpg'), - ('0425071588', 'Starship Troopers', 'https://images.isbndb.com/covers/15/88/9780425071588.jpg'), - ('0156004801', 'All The King''s Men', 'https://images.isbndb.com/covers/48/00/9780156004800.jpg'), - ('0380788802', 'Blood Red Roses', 'https://images.isbndb.com/covers/88/04/9780380788804.jpg'), - ('1853260975', 'Tender Is The Night (Wordsworth Classics)', 'https://images.isbndb.com/covers/09/71/9781853260971.jpg'), - ('0671047302', 'Venetian Dreaming', 'https://images.isbndb.com/covers/73/06/9780671047306.jpg'), - ('0843949465', 'Blood On The Arch', 'https://images.isbndb.com/covers/94/69/9780843949469.jpg'), - ('0099142309', 'Red Watch', 'https://images.isbndb.com/covers/23/00/9780099142300.jpg'), - ('0671640992', 'The Forest People', 'https://images.isbndb.com/covers/09/96/9780671640996.jpg'), - ('0312610556', 'Piece Of My Heart: The Life, Times And Legend Of Janis Joplin', 'https://images.isbndb.com/covers/05/55/9780312610555.jpg'), - ('0385493002', 'The Intuitionist: A Novel', 'https://images.isbndb.com/covers/30/00/9780385493000.jpg'), - ('0385418132', 'The Art Of Alfred Hitchcock: Fifty Years Of His Motion Pictures', 'https://images.isbndb.com/covers/81/33/9780385418133.jpg'), - ('0446611921', 'The Millionaires', 'https://images.isbndb.com/covers/19/23/9780446611923.jpg'), - ('006103018X', 'Coldheart Canyon', 'https://images.isbndb.com/covers/01/85/9780061030185.jpg'), - ('0525945725', 'The Darwin Awards: Evolution In Action', 'https://images.isbndb.com/covers/57/27/9780525945727.jpg'), - ('3351028253', 'Nirgends Und Zu Keiner Stunde', 'https://images.isbndb.com/covers/82/51/9783351028251.jpg'), - ('0140511687', 'Dictionary Of English Synonyms And Antonyms, The Penguin: Revised Edition (Reference)', 'https://images.isbndb.com/covers/16/80/9780140511680.jpg'), - ('0030291798', 'Business Marketing Management: A Strategic View Of Industrial And Organizational Markets', 'https://images.isbndb.com/covers/17/91/9780030291791.jpg'), - ('0060959541', 'From This Day Forward', 'https://images.isbndb.com/covers/95/48/9780060959548.jpg'), - ('0812967224', 'The Day I Turned Uncool: Confessions Of A Reluctant Grown-up', 'https://images.isbndb.com/covers/72/27/9780812967227.jpg'), - ('0374250995', 'Rivonia''s Children: Three Families And The Cost Of Conscience In White South Africa', 'https://images.isbndb.com/covers/09/97/9780374250997.jpg'), - ('0380710722', 'It''s Always Something', 'https://images.isbndb.com/covers/07/20/9780380710720.jpg'), - ('0006550576', 'Red Leaves', 'https://images.isbndb.com/covers/05/70/9780006550570.jpg'), - ('0743471555', '1633', 'https://images.isbndb.com/covers/15/58/9780743471558.jpg'), - ('0553101633', 'God Save The Queen', 'https://images.isbndb.com/covers/16/38/9780553101638.jpg'), - ('0743205820', 'Jinxed (Regan Reilly Mysteries, No. 6)', 'https://images.isbndb.com/covers/58/25/9780743205825.jpg'), - ('0061094226', 'Choke', 'https://images.isbndb.com/covers/42/24/9780061094224.jpg'), - ('0679776591', 'Fugitive Pieces: A Novel', 'https://images.isbndb.com/covers/65/98/9780679776598.jpg'), - ('3446177108', 'Das Kartengeheimnis', 'https://images.isbndb.com/covers/71/09/9783446177109.jpg'), - ('3426609568', 'Sturmwind', 'https://images.isbndb.com/covers/95/69/9783426609569.jpg'), - ('3453090578', 'Die Verurteilten', 'https://images.isbndb.com/covers/05/76/9783453090576.jpg'), - ('3442441188', 'Die Schiffe Der Kleopatra. Ein Krimi Aus Dem Alten Rom.', 'https://images.isbndb.com/covers/11/81/9783442441181.jpg'), - ('0679777423', 'Gut Symmetries', 'https://images.isbndb.com/covers/74/27/9780679777427.jpg'), - ('0553344234', 'Love Medicine', 'https://images.isbndb.com/covers/42/33/9780553344233.jpg'), - ('0060175796', 'The Bean Trees Anniversary Edition: A Novel', 'https://images.isbndb.com/covers/57/95/9780060175795.jpg'), - ('057121861X', 'Dart', 'https://images.isbndb.com/covers/86/15/9780571218615.jpg'), - ('0807004553', 'Sustainable Planet: Solutions For The Twenty-first Century', 'https://images.isbndb.com/covers/45/55/9780807004555.jpg'), - ('0140439072', 'The Sign Of Four (Penguin Classics)', 'https://images.isbndb.com/covers/90/76/9780140439076.jpg'), - ('0140288090', 'Looking For Maya', 'https://images.isbndb.com/covers/80/94/9780140288094.jpg'), - ('0679435549', 'Caramelo', 'https://images.isbndb.com/covers/55/49/9780679435549.jpg'), - ('3492044514', 'Balzac Und Die Kleine Chinesische Schneiderin', 'https://images.isbndb.com/covers/45/16/9783492044516.jpg'), - ('3442354722', 'Die Zwillingsschwester: Roman', 'https://images.isbndb.com/covers/47/26/9783442354726.jpg'), - ('3442356970', 'Der Zaubergarten.', 'https://images.isbndb.com/covers/69/73/9783442356973.jpg'), - ('3442442540', 'Der Verehrer', 'https://images.isbndb.com/covers/25/46/9783442442546.jpg'), - ('3442438659', 'Traumfrau Mit Nebenwirkungen: Roman', 'https://images.isbndb.com/covers/86/55/9783442438655.jpg'), - ('3499225964', 'Herz Dame Sticht', 'https://images.isbndb.com/covers/59/63/9783499225963.jpg'), - ('3492236324', 'Love-M@il: Roman', 'https://images.isbndb.com/covers/63/24/9783492236324.jpg'), - ('3426612828', 'Der Fluch Der Feuerfrau', 'https://images.isbndb.com/covers/28/28/9783426612828.jpg'), - ('3462030191', 'Paradies Der Ungeheuer: Ein Malaussene-Roman', 'https://images.isbndb.com/covers/01/98/9783462030198.jpg'), - ('3426622254', 'Panic Room, Film-Tie-In', 'https://images.isbndb.com/covers/22/54/9783426622254.jpg'), - ('3426048086', 'Gorillas Im Nebel. Mein Leben Mit Den Sanften Riesen.', 'https://images.isbndb.com/covers/80/85/9783426048085.jpg'), - ('3498006312', 'Berlin - Moskau. Eine Reise Zu Fuß', 'https://images.isbndb.com/covers/63/10/9783498006310.jpg'), - ('3746612160', 'Der Wilde Tanz Der Seidenröcke: Roman', 'https://images.isbndb.com/covers/21/64/9783746612164.jpg'), - ('3485008702', 'Ein Krokodil Für Mma Ramotswe. Der Erste Fall Der » No. 1 Ladies'' Detektive Agency «', 'https://images.isbndb.com/covers/87/09/9783485008709.jpg'), - ('3453195841', 'Das Süße Vermächtnis', 'https://images.isbndb.com/covers/58/44/9783453195844.jpg'), - ('340411566X', 'Der Club Der Toten Dichter: Roman', 'https://images.isbndb.com/covers/56/62/9783404115662.jpg'), - ('345307565X', 'Die Akte: Roman', 'https://images.isbndb.com/covers/56/58/9783453075658.jpg'), - ('3453177398', 'Ein Heißer Sommer Für Commissario Cataldo', 'https://images.isbndb.com/covers/73/90/9783453177390.jpg'), - ('0679020489', 'FODOR-HOLLAND''92 (Gold Guides)', 'https://images.isbndb.com/covers/04/86/9780679020486.jpg'), - ('0471526525', 'The Concierge''s Guide To Boston', 'https://images.isbndb.com/covers/65/20/9780471526520.jpg'), - ('0312263236', 'Four Mothers: A Novel', 'https://images.isbndb.com/covers/32/32/9780312263232.jpg'), - ('0670853097', 'The Stone Diaries', 'https://images.isbndb.com/covers/30/90/9780670853090.jpg'), - ('0140184325', 'The Aran Islands (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/43/27/9780140184327.jpg'), - ('0340424354', 'Mysteries Of Pittsburgh', 'https://images.isbndb.com/covers/43/53/9780340424353.jpg'), - ('1862045143', 'Lillian Too''s Little Book Of Feng Shui', 'https://images.isbndb.com/covers/51/49/9781862045149.jpg'), - ('0671000314', 'Flood Tide', 'https://images.isbndb.com/covers/03/18/9780671000318.jpg'), - ('0688170714', 'In The Family Way: An Urban Comedy', 'https://images.isbndb.com/covers/07/14/9780688170714.jpg'), - ('0375502114', 'In The Family Way: A Novel', 'https://images.isbndb.com/covers/21/18/9780375502118.jpg'), - ('0517703963', 'Midwives: A Novel', 'https://images.isbndb.com/covers/39/60/9780517703960.jpg'), - ('0786866500', 'Still Woman Enough: A Memoir', 'https://images.isbndb.com/covers/65/02/9780786866502.jpg'), - ('0062516086', 'The Measure Of A Man: A Spiritual Autobiography', 'https://images.isbndb.com/covers/60/84/9780062516084.jpg'), - ('0670879835', 'Orbiting The Giant Hairball: A Corporate Fool''s Guide To Surviving With Grace', 'https://images.isbndb.com/covers/98/30/9780670879830.jpg'), - ('1551920107', 'The Merchants Of Venus: Inside Harlequin And The Empire Of Romance', 'https://images.isbndb.com/covers/01/08/9781551920108.jpg'), - ('1591293049', 'Prisoner Of The Heart', 'https://images.isbndb.com/covers/30/40/9781591293040.jpg'), - ('087113795X', 'Peace Like A River', 'https://images.isbndb.com/covers/79/51/9780871137951.jpg'), - ('0446522597', 'The Winner', 'https://images.isbndb.com/covers/25/95/9780446522595.jpg'), - ('0375507876', 'Prague: A Novel', 'https://images.isbndb.com/covers/78/78/9780375507878.jpg'), - ('0671724800', 'Ski Weekend (Fear Street, No. 10)', 'https://images.isbndb.com/covers/48/01/9780671724801.jpg'), - ('0590446681', 'Home Alone', 'https://images.isbndb.com/covers/66/86/9780590446686.jpg'), - ('0590303805', '101 Pet Jokes', 'https://images.isbndb.com/covers/38/04/9780590303804.jpg'), - ('0590426257', '2 Sweet 2 B 4-Gotten (Friends 4-Ever Book #3)', 'https://images.isbndb.com/covers/62/51/9780590426251.jpg'), - ('0590426265', 'Yours Till The Meatball Bounces (Friends 4-Ever Book #2)', 'https://images.isbndb.com/covers/62/68/9780590426268.jpg'), - ('0671745069', 'Ancient Evil (Chain Letter 2)', 'https://images.isbndb.com/covers/50/66/9780671745066.jpg'), - ('0380710811', 'The First Man In Rome', 'https://images.isbndb.com/covers/08/12/9780380710812.jpg'), - ('0836226992', '1,003 Great Things About Getting Older', 'https://images.isbndb.com/covers/69/97/9780836226997.jpg'), - ('0066209773', 'The Master Butchers Singing Club: A Novel (Erdrich, Louise)', 'https://images.isbndb.com/covers/97/77/9780066209777.jpg'), - ('0140082255', 'Women And Self-Esteem: Understanding And Improving The Way We Think And Feel AboutOurselves', 'https://images.isbndb.com/covers/22/58/9780140082258.jpg'), - ('1558746226', 'A Second Chicken Soup For The Woman''s Soul: 101 More Stories To Open The Hearts And Rekindle The Spirits Of Women', 'https://images.isbndb.com/covers/62/20/9781558746220.jpg'), - ('0688167101', 'The Unspeakable: A Novel', 'https://images.isbndb.com/covers/71/03/9780688167103.jpg'), - ('0375502912', 'Seabiscuit: An American Legend', 'https://images.isbndb.com/covers/29/10/9780375502910.jpg'), - ('1400047714', 'Pigs At The Trough', 'https://images.isbndb.com/covers/77/10/9781400047710.jpg'), - ('1893224902', 'When You Ride Alone You Ride With Bin Laden: What The Government Should Be Telling Us To Help Fight The War On Terrorism', 'https://images.isbndb.com/covers/49/02/9781893224902.jpg'), - ('0811808424', 'Under The Tuscan Sun: At Home In Italy', 'https://images.isbndb.com/covers/84/22/9780811808422.jpg'), - ('0375506276', 'The Fourth Hand', 'https://images.isbndb.com/covers/62/77/9780375506277.jpg'), - ('0935300007', 'The Psychology Of Winning', 'https://images.isbndb.com/covers/00/00/9780935300000.jpg'), - ('905000105X', 'Het Huis Van De Zeven Zusters (Dutch Edition)', 'https://images.isbndb.com/covers/10/52/9789050001052.jpg'), - ('0898220785', 'DES Stories : Faces And Voices Of People Exposed To Diethylstilbestrol', 'https://images.isbndb.com/covers/07/80/9780898220780.jpg'), - ('207054351X', 'Harry Potter, Tome 4 : Harry Potter Et La Coupe De Feu', 'https://images.isbndb.com/covers/35/19/9782070543519.jpg'), - ('0440234700', 'The Bridegroom', 'https://images.isbndb.com/covers/47/08/9780440234708.jpg'), - ('0373075111', 'Dragonslayer (American Heroes) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/51/19/9780373075119.jpg'), - ('0451175190', 'Reversible Error (Signet)', 'https://images.isbndb.com/covers/51/99/9780451175199.jpg'), - ('0451181964', 'Corruption Of Blood', 'https://images.isbndb.com/covers/19/61/9780451181961.jpg'), - ('0886776686', 'The Ruins Of Ambrai (Exiles, Vol. 1)', 'https://images.isbndb.com/covers/66/88/9780886776688.jpg'), - ('1582340110', 'A Hard Time To Be A Father: Stories', 'https://images.isbndb.com/covers/01/11/9781582340111.jpg'), - ('1567920713', 'The Disobedience Of Water: Stories And Novellas', 'https://images.isbndb.com/covers/07/10/9781567920710.jpg'), - ('0743237196', 'Fall On Your Knees', 'https://images.isbndb.com/covers/71/92/9780743237192.jpg'), - ('0515136565', 'Final Justice (Badge Of Honor)', 'https://images.isbndb.com/covers/65/62/9780515136562.jpg'), - ('0312864124', 'The Young Savages', 'https://images.isbndb.com/covers/41/25/9780312864125.jpg'), - ('0684803968', 'Let Me Call You Sweetheart', 'https://images.isbndb.com/covers/39/68/9780684803968.jpg'), - ('0553582364', 'A Traitor To Memory', 'https://images.isbndb.com/covers/23/69/9780553582369.jpg'), - ('0446611476', 'Stone Kiss', 'https://images.isbndb.com/covers/14/73/9780446611473.jpg'), - ('0553284363', 'Payment In Blood', 'https://images.isbndb.com/covers/43/62/9780553284362.jpg'), - ('075151635X', 'Without Mercy', 'https://images.isbndb.com/covers/63/57/9780751516357.jpg'), - ('0515117420', 'The Murderers (Badge Of Honor) (Vol 4)', 'https://images.isbndb.com/covers/74/24/9780515117424.jpg'), - ('0515107476', 'The Witness (Badge Of Honor)', 'https://images.isbndb.com/covers/74/70/9780515107470.jpg'), - ('0515132489', 'Special Ops (Brotherhood Of War, Book 9)', 'https://images.isbndb.com/covers/24/89/9780515132489.jpg'), - ('0515103977', 'The Victim (Badge Of Honor) (Vol 3)', 'https://images.isbndb.com/covers/39/77/9780515103977.jpg'), - ('0515101486', 'Special Operations (Badge Of Honor)', 'https://images.isbndb.com/covers/14/85/9780515101485.jpg'), - ('0515097500', 'Men In Blue (Badge Of Honor)', 'https://images.isbndb.com/covers/75/04/9780515097504.jpg'), - ('0515111139', 'The Assassin: The Explosive Badge Of Honor Novel (Badge Of Honor 05)', 'https://images.isbndb.com/covers/11/32/9780515111132.jpg'), - ('0375500642', 'The Best Of Outside: The First 20 Years', 'https://images.isbndb.com/covers/06/40/9780375500640.jpg'), - ('0743219287', '8 Men And A Duck : An Improbable Voyage By Reed Boat To Easter Island', 'https://images.isbndb.com/covers/92/80/9780743219280.jpg'), - ('0451200152', 'The Town', 'https://images.isbndb.com/covers/01/50/9780451200150.jpg'), - ('0759239630', 'Live Girls', 'https://images.isbndb.com/covers/96/30/9780759239630.jpg'), - ('0812525647', 'Fright Night', 'https://images.isbndb.com/covers/56/49/9780812525649.jpg'), - ('0751500046', 'Captives', 'https://images.isbndb.com/covers/00/42/9780751500042.jpg'), - ('0684831708', 'One Two Buckle My Shoe', 'https://images.isbndb.com/covers/17/01/9780684831701.jpg'), - ('0446355917', 'Beastnights', 'https://images.isbndb.com/covers/59/19/9780446355919.jpg'), - ('0140390081', 'Two Years Before The Mast: A Personal Narrative Of Life At Sea (Penguin Classics)', 'https://images.isbndb.com/covers/00/87/9780140390087.jpg'), - ('0060168528', 'I Hope: Reminiscences And Reflections', 'https://images.isbndb.com/covers/85/20/9780060168520.jpg'), - ('0451522087', 'Ramona (Signet Classics)', 'https://images.isbndb.com/covers/20/85/9780451522085.jpg'), - ('0877953120', 'Murder On Capitol Hill: A Novel', 'https://images.isbndb.com/covers/31/28/9780877953128.jpg'), - ('0743411331', 'Never Change', 'https://images.isbndb.com/covers/13/32/9780743411332.jpg'), - ('044100914X', 'Castaways Of The Flying Dutchman', 'https://images.isbndb.com/covers/91/45/9780441009145.jpg'), - ('0553379194', 'Fortress Draconis (The DragonCrown War Cycle, Book 1)', 'https://images.isbndb.com/covers/91/98/9780553379198.jpg'), - ('0441008976', 'Channeling Cleopatra', 'https://images.isbndb.com/covers/89/71/9780441008971.jpg'), - ('0140386270', 'Vampire Heart', 'https://images.isbndb.com/covers/62/71/9780140386271.jpg'), - ('0451451430', 'Nightseer', 'https://images.isbndb.com/covers/14/39/9780451451439.jpg'), - ('0345444019', 'The Raven Warrior (Tales Of Guinevere)', 'https://images.isbndb.com/covers/40/11/9780345444011.jpg'), - ('0345444000', 'The Dragon Queen', 'https://images.isbndb.com/covers/40/04/9780345444004.jpg'), - ('0553103946', 'Prince Of Time', 'https://images.isbndb.com/covers/39/46/9780553103946.jpg'), - ('0345440781', 'The Redemption Of Althalus', 'https://images.isbndb.com/covers/07/85/9780345440785.jpg'), - ('0743431014', 'Songs Of The Humpback Whale: A Novel', 'https://images.isbndb.com/covers/10/19/9780743431019.jpg'), - ('0553381768', 'A Singular Hostage', 'https://images.isbndb.com/covers/17/64/9780553381764.jpg'), - ('051770739X', 'Downsize This!', 'https://images.isbndb.com/covers/73/95/9780517707395.jpg'), - ('0743227123', 'The Fabulist', 'https://images.isbndb.com/covers/71/24/9780743227124.jpg'), - ('0553370804', 'Parables From Other Planets', 'https://images.isbndb.com/covers/08/05/9780553370805.jpg'), - ('1550170759', 'A Whole Brass Band', 'https://images.isbndb.com/covers/07/57/9781550170757.jpg'), - ('0451203771', 'Scarlet Feather', 'https://images.isbndb.com/covers/37/79/9780451203779.jpg'), - ('0515124893', 'Homeport', 'https://images.isbndb.com/covers/48/97/9780515124897.jpg'), - ('0671528203', 'Stillwatch', 'https://images.isbndb.com/covers/82/01/9780671528201.jpg'), - ('0786860820', 'Burning Angel: A Novel (Dave Robicheaux Mysteries)', 'https://images.isbndb.com/covers/08/21/9780786860821.jpg'), - ('0394732928', 'The Kin Of Ata Are Waiting For You', 'https://images.isbndb.com/covers/29/23/9780394732923.jpg'), - ('0812540336', 'The Visitant (The Anasazi Mysteries, Book 1)', 'https://images.isbndb.com/covers/03/38/9780812540338.jpg'), - ('0061012165', 'Glimmering', 'https://images.isbndb.com/covers/21/67/9780061012167.jpg'), - ('0399504583', 'Pale Fire', 'https://images.isbndb.com/covers/45/87/9780399504587.jpg'), - ('0140351302', 'Great Expectations (Puffin Classics)', 'https://images.isbndb.com/covers/13/09/9780140351309.jpg'), - ('0195130928', 'Between Dignity And Despair: Jewish Life In Nazi Germany (Studies In Jewish History)', 'https://images.isbndb.com/covers/09/28/9780195130928.jpg'), - ('0553210793', 'The Adventures Of Huckleberry Finn (Bantam Classic)', 'https://images.isbndb.com/covers/07/98/9780553210798.jpg'), - ('0141180250', 'Passing (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/02/50/9780141180250.jpg'), - ('0385488181', 'Eiger Dreams: Ventures Among Men And Mountains', 'https://images.isbndb.com/covers/81/81/9780385488181.jpg'), - ('0590503111', 'The Librarian From The Black Lagoon', 'https://images.isbndb.com/covers/31/12/9780590503112.jpg'), - ('0879517034', 'Norwood', 'https://images.isbndb.com/covers/70/38/9780879517038.jpg'), - ('0790008696', 'The Whale Rider (Movie Cover Edition)', 'https://images.isbndb.com/covers/86/91/9780790008691.jpg'), - ('1885223331', 'Home Sweeter Home: Creating A Haven Of Simplicity And Spirit (Sweet Simplicity, Book 1)', 'https://images.isbndb.com/covers/33/33/9781885223333.jpg'), - ('0671522779', 'Out Of Harm''s Way: The Extraordinary True Story Of One Woman''s Lifelong Devotion To Animal Rescue', 'https://images.isbndb.com/covers/27/73/9780671522773.jpg'), - ('0451156455', 'The New Left: The Anti-Industrial Revolution', 'https://images.isbndb.com/covers/64/57/9780451156457.jpg'), - ('0373790953', 'All Tucked In... (Harlequin Blaze, 91)', 'https://images.isbndb.com/covers/09/51/9780373790951.jpg'), - ('1568655622', 'Wash Your Hair With Whipped Cream', 'https://images.isbndb.com/covers/56/28/9781568655628.jpg'), - ('0773731202', 'Eatons', 'https://images.isbndb.com/covers/12/02/9780773731202.jpg'), - ('0786867647', 'Lucky Man: A Memoir', 'https://images.isbndb.com/covers/76/46/9780786867646.jpg'), - ('1552782654', 'Letters From The Country IV', 'https://images.isbndb.com/covers/26/51/9781552782651.jpg'), - ('0515133973', 'Midnight Bayou', 'https://images.isbndb.com/covers/39/74/9780515133974.jpg'), - ('0771091591', 'Stone Angel', 'https://images.isbndb.com/covers/15/99/9780771091599.jpg'), - ('0802114970', 'The Six Wives Of Henry VIII', 'https://images.isbndb.com/covers/49/76/9780802114976.jpg'), - ('0771037457', 'The New Morningside Papers', 'https://images.isbndb.com/covers/74/50/9780771037450.jpg'), - ('044016205X', 'North And South (North And South Trilogy, Book 1)', 'https://images.isbndb.com/covers/20/56/9780440162056.jpg'), - ('0425097722', 'Fatherhood', 'https://images.isbndb.com/covers/77/24/9780425097724.jpg'), - ('067189109X', 'The Blessing', 'https://images.isbndb.com/covers/10/91/9780671891091.jpg'), - ('067162461X', 'Lonesome Dove M', 'https://images.isbndb.com/covers/46/13/9780671624613.jpg'), - ('0812580397', 'Mars Underground', 'https://images.isbndb.com/covers/03/96/9780812580396.jpg'), - ('0440229499', 'Gathering Blue (Readers Circle)', 'https://images.isbndb.com/covers/94/90/9780440229490.jpg'), - ('0446678619', 'Own Your Own Corporation: Why The Rich Own Their Own Companies And Everyone Else Works For Them (Rich Dad''s Advisors)', 'https://images.isbndb.com/covers/86/12/9780446678612.jpg'), - ('0671702513', 'The Prize', 'https://images.isbndb.com/covers/25/19/9780671702519.jpg'), - ('0679420428', 'Mrs. Dalloway (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/04/22/9780679420422.jpg'), - ('0273645919', 'Funky Business: Talent Makes Capital Dance', 'https://images.isbndb.com/covers/59/17/9780273645917.jpg'), - ('0449911594', 'Dinner At The Homesick Restaurant: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/15/94/9780449911594.jpg'), - ('0743255712', 'Winning Back America', 'https://images.isbndb.com/covers/57/14/9780743255714.jpg'), - ('1560255102', 'A Prayer For America (Nation Books)', 'https://images.isbndb.com/covers/51/09/9781560255109.jpg'), - ('0758203519', 'Al On America', 'https://images.isbndb.com/covers/35/19/9780758203519.jpg'), - ('0312287712', 'The Lecturer''s Tale: A Novel', 'https://images.isbndb.com/covers/77/19/9780312287719.jpg'), - ('0449703746', 'So Much To Tell You', 'https://images.isbndb.com/covers/37/48/9780449703748.jpg'), - ('0312872356', 'The Ring Of Five Dragons (Pearl)', 'https://images.isbndb.com/covers/23/59/9780312872359.jpg'), - ('0312872364', 'The Veil Of A Thousand Tears (The Pearl Saga, Book 2)', 'https://images.isbndb.com/covers/23/66/9780312872366.jpg'), - ('0969201745', 'Hans Christian Andersen - Tales And Stories For All Ages', 'https://images.isbndb.com/covers/17/48/9780969201748.jpg'), - ('0871133962', 'Gojiro', 'https://images.isbndb.com/covers/39/60/9780871133960.jpg'), - ('0312874413', 'A Sorcerer''s Treason: A Novel Of Isavalta (Isavalta, Book 1)', 'https://images.isbndb.com/covers/44/14/9780312874414.jpg'), - ('1551990393', 'Motion Sickness: A Memoir', 'https://images.isbndb.com/covers/03/92/9781551990392.jpg'), - ('0312890532', 'Temple Of The Winds (Sword Of Truth, Book 4)', 'https://images.isbndb.com/covers/05/37/9780312890537.jpg'), - ('0312861591', 'The Dragon In Lyonesse', 'https://images.isbndb.com/covers/15/99/9780312861599.jpg'), - ('0385496745', 'The Heartsong Of Charging Elk: A Novel', 'https://images.isbndb.com/covers/67/42/9780385496742.jpg'), - ('0393039307', 'Climbing Mount Improbable', 'https://images.isbndb.com/covers/93/06/9780393039306.jpg'), - ('0151002290', 'East Of The Mountains', 'https://images.isbndb.com/covers/22/90/9780151002290.jpg'), - ('0156013177', 'The Hole In The Universe: How Scientists Peered Over The Edge Of Emptiness And Found Everything', 'https://images.isbndb.com/covers/31/78/9780156013178.jpg'), - ('0880012528', 'Antaeus 64/65: Twentieth Anniversary Issue', 'https://images.isbndb.com/covers/25/22/9780880012522.jpg'), - ('0345296907', 'Seven Arrows', 'https://images.isbndb.com/covers/69/00/9780345296900.jpg'), - ('0192760319', 'Oxford Book Of Poetry For Children', 'https://images.isbndb.com/covers/03/19/9780192760319.jpg'), - ('1852304839', 'Holy Daring: An Outrageous Gift To Modern Spirituality From Saint Teresa, The Grand Wild Woman Of Avila', 'https://images.isbndb.com/covers/48/36/9781852304836.jpg'), - ('0934252238', 'In Praise Of Rumi', 'https://images.isbndb.com/covers/22/32/9780934252232.jpg'), - ('0875424953', 'Goddess Skhmt Hardcover', 'https://images.isbndb.com/covers/49/58/9780875424958.jpg'), - ('0806994754', 'The Illustrated Dream Dictionary', 'https://images.isbndb.com/covers/47/58/9780806994758.jpg'), - ('1880032074', 'Native Heart: An American Indian Odyssey', 'https://images.isbndb.com/covers/20/77/9781880032077.jpg'), - ('1889625035', 'Rumi: Fountain Of Fire', 'https://images.isbndb.com/covers/50/34/9781889625034.jpg'), - ('0060913312', 'Illywhacker: A Novel', 'https://images.isbndb.com/covers/33/11/9780060913311.jpg'), - ('0877732248', 'Space Time Medicine', 'https://images.isbndb.com/covers/22/42/9780877732242.jpg'), - ('0140126562', 'Gracie: A Love Story', 'https://images.isbndb.com/covers/65/63/9780140126563.jpg'), - ('0671673203', 'Man With A Gun', 'https://images.isbndb.com/covers/32/08/9780671673208.jpg'), - ('0312950098', 'Black Out (Law & Order)', 'https://images.isbndb.com/covers/00/95/9780312950095.jpg'), - ('0446892041', 'A Stranger In The Mirror', 'https://images.isbndb.com/covers/20/49/9780446892049.jpg'), - ('0142001309', 'The Olive Farm: A Memoir Of Life, Love, And Olive Oil In The South Of France', 'https://images.isbndb.com/covers/13/01/9780142001301.jpg'), - ('0802133347', 'Lady Chatterley''s Lover', 'https://images.isbndb.com/covers/33/42/9780802133342.jpg'), - ('0888992211', 'Ticket To Curlew', 'https://images.isbndb.com/covers/22/15/9780888992215.jpg'), - ('1553663950', 'Tell Time (Tell Me How)', 'https://images.isbndb.com/covers/39/59/9781553663959.jpg'), - ('0440401607', 'Pee Wee Scouts: Spring Sprouts (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/16/05/9780440401605.jpg'), - ('0440476399', 'Say "Cheese" (The Kids Of The Polk Street School #10)', 'https://images.isbndb.com/covers/63/99/9780440476399.jpg'), - ('067166641X', 'Surrender The Pink', 'https://images.isbndb.com/covers/64/15/9780671666415.jpg'), - ('1586212044', 'The Millionaires', 'https://images.isbndb.com/covers/20/49/9781586212049.jpg'), - ('1576739767', 'A Life God Rewards: Why Everything You Do Today Matters Forever', 'https://images.isbndb.com/covers/97/61/9781576739761.jpg'), - ('0448165384', 'Catch Me If You Can', 'https://images.isbndb.com/covers/53/87/9780448165387.jpg'), - ('0694523283', 'Legal Tender', 'https://images.isbndb.com/covers/32/83/9780694523283.jpg'), - ('0143017292', 'Beginning Of Was', 'https://images.isbndb.com/covers/72/95/9780143017295.jpg'), - ('1857997573', 'Tea And Biscuits (Phoenix 60p Paperbacks)', 'https://images.isbndb.com/covers/75/76/9781857997576.jpg'), - ('1570761418', 'The Crafter''s Pattern Sourcebook: 1,000 Classic Motifs For Every Craft From Around The World And Though The Ages', 'https://images.isbndb.com/covers/14/16/9781570761416.jpg'), - ('0968454402', 'Sailing Promise: Around The World On A Catamaran', 'https://images.isbndb.com/covers/44/04/9780968454404.jpg'), - ('0385333412', 'Dating Big Bird', 'https://images.isbndb.com/covers/34/12/9780385333412.jpg'), - ('1853261912', 'Mrs. Dalloway (Wordsworth Classics)', 'https://images.isbndb.com/covers/19/16/9781853261916.jpg'), - ('0060084405', 'Bread Alone: A Novel', 'https://images.isbndb.com/covers/44/00/9780060084400.jpg'), - ('0345367758', 'For All Their Lives', 'https://images.isbndb.com/covers/77/54/9780345367754.jpg'), - ('0783801157', 'Ellen Foster (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/11/55/9780783801155.jpg'), - ('1550135457', 'Coke Stop In Emo: Adventures Of A Long-Distance Paddler', 'https://images.isbndb.com/covers/54/59/9781550135459.jpg'), - ('0345445848', 'Big Cherry Holler: A Novel (Big Stone Gap Novels)', 'https://images.isbndb.com/covers/58/41/9780345445841.jpg'), - ('0375504036', 'Big Stone Gap', 'https://images.isbndb.com/covers/40/37/9780375504037.jpg'), - ('0453006264', 'Pearl', 'https://images.isbndb.com/covers/62/62/9780453006262.jpg'), - ('0375724850', 'An Italian Affair', 'https://images.isbndb.com/covers/48/55/9780375724855.jpg'), - ('1552781542', 'Prodigy', 'https://images.isbndb.com/covers/15/48/9781552781548.jpg'), - ('0140430016', 'Wuthering Heights (Penguin Classics)', 'https://images.isbndb.com/covers/00/11/9780140430011.jpg'), - ('0816158770', 'Pigs In Heaven (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/87/75/9780816158775.jpg'), - ('1862041318', 'Palmistry: Pocket Prophecy (The "Pocket Prophecy" Series)', 'https://images.isbndb.com/covers/13/18/9781862041318.jpg'), - ('0590203509', 'Little Women', 'https://images.isbndb.com/covers/35/00/9780590203500.jpg'), - ('0373708416', 'Winter Soldier: In Uniform (Harlequin Superromance No. 841)', 'https://images.isbndb.com/covers/84/13/9780373708413.jpg'), - ('0671734334', 'Sisters Long Ago', 'https://images.isbndb.com/covers/43/36/9780671734336.jpg'), - ('0399145052', 'Bagombo Snuff Box: Uncollected Short Fiction', 'https://images.isbndb.com/covers/50/56/9780399145056.jpg'), - ('0671883208', 'Finding You', 'https://images.isbndb.com/covers/32/01/9780671883201.jpg'), - ('0099740516', 'Fall On Your Knees', 'https://images.isbndb.com/covers/05/13/9780099740513.jpg'), - ('0747550867', 'Refugee Boy', 'https://images.isbndb.com/covers/08/60/9780747550860.jpg'), - ('0590453068', 'A House Is A House For Me', 'https://images.isbndb.com/covers/30/66/9780590453066.jpg'), - ('0064406113', 'To Race A Dream', 'https://images.isbndb.com/covers/61/16/9780064406116.jpg'), - ('0061056448', 'X-Files: Skin (The X-Files)', 'https://images.isbndb.com/covers/64/44/9780061056444.jpg'), - ('0689824750', 'Among The Hidden (Shadow Children #1)', 'https://images.isbndb.com/covers/47/53/9780689824753.jpg'), - ('0340577371', 'Four Scottish Journeys: An Identity Rediscovered', 'https://images.isbndb.com/covers/73/70/9780340577370.jpg'), - ('0345423623', 'Night Of The Wolf', 'https://images.isbndb.com/covers/36/27/9780345423627.jpg'), - ('0896731081', 'Dogs: An Exeter Leisure Guide', 'https://images.isbndb.com/covers/10/80/9780896731080.jpg'), - ('0804108897', 'Earthly Possessions', 'https://images.isbndb.com/covers/88/98/9780804108898.jpg'), - ('0399132007', 'Word For Word', 'https://images.isbndb.com/covers/20/01/9780399132001.jpg'), - ('0671003976', 'Singing Lessons: A Memoir Of Love, Loss, Hope, And Healing (with CD)', 'https://images.isbndb.com/covers/39/75/9780671003975.jpg'), - ('0553246895', 'The Heart Of A Woman', 'https://images.isbndb.com/covers/68/96/9780553246896.jpg'), - ('1567921892', 'The Woman In Black: A Ghost Story', 'https://images.isbndb.com/covers/18/92/9781567921892.jpg'), - ('0374181152', 'Border Crossing: A Novel', 'https://images.isbndb.com/covers/11/54/9780374181154.jpg'), - ('0385316577', 'Follow Your Heart', 'https://images.isbndb.com/covers/65/76/9780385316576.jpg'), - ('0330334182', 'Great Irish Detective Stories', 'https://images.isbndb.com/covers/41/81/9780330334181.jpg'), - ('0060012331', 'The Amazing Maurice And His Educated Rodents', 'https://images.isbndb.com/covers/23/35/9780060012335.jpg'), - ('0385501560', 'Choke', 'https://images.isbndb.com/covers/15/69/9780385501569.jpg'), - ('0066212448', 'Wittgenstein''s Poker: The Story Of A Ten-Minute Argument Between Two Great Philosophers', 'https://images.isbndb.com/covers/24/49/9780066212449.jpg'), - ('1932100024', 'Taking The Red Pill: Science, Philosophy And The Religion In The Matrix (Smart Pop Series)', 'https://images.isbndb.com/covers/00/20/9781932100020.jpg'), - ('0140264450', 'The Origins Of Virtue: Human Instincts And The Evolution Of Cooperation', 'https://images.isbndb.com/covers/44/56/9780140264456.jpg'), - ('0192632442', 'Darwinizing Culture: The Status Of Memetics As A Science', 'https://images.isbndb.com/covers/24/49/9780192632449.jpg'), - ('1400047838', 'Fugitives And Refugees: A Walk In Portland, Oregon (Crown Journeys)', 'https://images.isbndb.com/covers/78/33/9781400047833.jpg'), - ('0393045358', 'How The Mind Works', 'https://images.isbndb.com/covers/53/52/9780393045352.jpg'), - ('0486272702', 'Great Ghost Stories', 'https://images.isbndb.com/covers/27/02/9780486272702.jpg'), - ('0786864656', 'A Goose In Toulouse And Other Culinary Adventures In France', 'https://images.isbndb.com/covers/46/52/9780786864652.jpg'), - ('1400040752', 'Black Maps (John March Mysteries)', 'https://images.isbndb.com/covers/07/59/9781400040759.jpg'), - ('0446525774', 'Saving Faith', 'https://images.isbndb.com/covers/57/70/9780446525770.jpg'), - ('0385311133', 'Spirit Of The Season', 'https://images.isbndb.com/covers/11/37/9780385311137.jpg'), - ('0913428361', 'Blue Jacket: War Chief Of The Shawnees', 'https://images.isbndb.com/covers/83/68/9780913428368.jpg'), - ('0525945466', 'From Our House: A Memoir', 'https://images.isbndb.com/covers/54/68/9780525945468.jpg'), - ('0671795228', 'The Forms Of Water', 'https://images.isbndb.com/covers/52/21/9780671795221.jpg'), - ('1551668106', 'Granite Man (MacKenzie-Blackthorn, Book 4)', 'https://images.isbndb.com/covers/81/09/9781551668109.jpg'), - ('0440404975', 'Your Move, J.P.', 'https://images.isbndb.com/covers/49/72/9780440404972.jpg'), - ('0689713908', 'I Love You, Janie Tannenbaum', 'https://images.isbndb.com/covers/39/03/9780689713903.jpg'), - ('0590412485', 'Double Trouble', 'https://images.isbndb.com/covers/24/83/9780590412483.jpg'), - ('0440413729', 'Belle Prater''s Boy', 'https://images.isbndb.com/covers/37/21/9780440413721.jpg'), - ('044022747X', 'North By Night: A Story Of The Underground Railroad', 'https://images.isbndb.com/covers/74/72/9780440227472.jpg'), - ('006440630X', 'The Midwife''s Apprentice', 'https://images.isbndb.com/covers/63/07/9780064406307.jpg'), - ('0440407591', 'Year Of Impossible Goodbyes', 'https://images.isbndb.com/covers/75/91/9780440407591.jpg'), - ('0553244841', 'Journey To Stonehenge', 'https://images.isbndb.com/covers/48/47/9780553244847.jpg'), - ('0553231863', 'Mystery Of The Maya: Choose From 44 Possible Endings', 'https://images.isbndb.com/covers/18/61/9780553231861.jpg'), - ('0553233246', 'Hyperspace # 21', 'https://images.isbndb.com/covers/32/47/9780553233247.jpg'), - ('0552527742', 'Blood And Mortar (Freeway)', 'https://images.isbndb.com/covers/77/43/9780552527743.jpg'), - ('0553565060', 'Deception', 'https://images.isbndb.com/covers/50/65/9780553565065.jpg'), - ('050028251X', 'New Australia Style', 'https://images.isbndb.com/covers/25/19/9780500282519.jpg'), - ('0394533887', 'Poland', 'https://images.isbndb.com/covers/38/89/9780394533889.jpg'), - ('3492229697', 'Auf Der Suche Nach Marie.', 'https://images.isbndb.com/covers/96/92/9783492229692.jpg'), - ('0194226948', 'Oxford Bookworms Collection A Window On The Universe', 'https://images.isbndb.com/covers/69/43/9780194226943.jpg'), - ('0140034919', 'I''m The King Of The Castle', 'https://images.isbndb.com/covers/49/12/9780140034912.jpg'), - ('0879238526', 'In The Springtime Of The Year (Nonpareil Book)', 'https://images.isbndb.com/covers/85/20/9780879238520.jpg'), - ('1899293086', 'A Thing Apart', 'https://images.isbndb.com/covers/30/87/9781899293087.jpg'), - ('3257063199', 'Das Blaue Kleid', 'https://images.isbndb.com/covers/31/96/9783257063196.jpg'), - ('0345430573', 'A Certain Justice (Adam Dalgliesh Mysteries)', 'https://images.isbndb.com/covers/05/71/9780345430571.jpg'), - ('0892966505', 'While Other People Sleep (Sharon McCone Mysteries)', 'https://images.isbndb.com/covers/65/09/9780892966509.jpg'), - ('1559705884', 'The Little Girl Who Was Too Fond Of Matches: A Novel', 'https://images.isbndb.com/covers/58/82/9781559705882.jpg'), - ('0452284546', 'Swagbelly: A Novel For Today''s Gentleman', 'https://images.isbndb.com/covers/45/48/9780452284548.jpg'), - ('0743203232', 'The Nature Of Water And Air', 'https://images.isbndb.com/covers/32/34/9780743203234.jpg'), - ('0789300354', 'Growing Gardener', 'https://images.isbndb.com/covers/03/55/9780789300355.jpg'), - ('0451175867', 'A Cat With A Fiddle (An Alice Nestleton Mystery)', 'https://images.isbndb.com/covers/58/61/9780451175861.jpg'), - ('0812574923', '1916: A Novel Of The Irish Rebellion (Irish Century Novels)', 'https://images.isbndb.com/covers/49/20/9780812574920.jpg'), - ('0446600288', 'Bless The Child', 'https://images.isbndb.com/covers/02/86/9780446600286.jpg'), - ('0440208130', 'Paint The Wind', 'https://images.isbndb.com/covers/81/36/9780440208136.jpg'), - ('055337513X', 'Banana Rose', 'https://images.isbndb.com/covers/51/38/9780553375138.jpg'), - ('0671507036', 'Montana 1948: A Novel', 'https://images.isbndb.com/covers/70/39/9780671507039.jpg'), - ('0060930861', 'Cloudsplitter: A Novel', 'https://images.isbndb.com/covers/08/68/9780060930868.jpg'), - ('0821776037', 'Whispers', 'https://images.isbndb.com/covers/60/32/9780821776032.jpg'), - ('0345457005', 'Dirty Laundry (Charlotte Justice Novels)', 'https://images.isbndb.com/covers/70/04/9780345457004.jpg'), - ('0967404401', 'Hate Is My Neighbor', 'https://images.isbndb.com/covers/44/00/9780967404400.jpg'), - ('0140232990', 'Sister Stories: Taking The Journey Together', 'https://images.isbndb.com/covers/29/98/9780140232998.jpg'), - ('1582430349', 'East Into Upper East: Plain Tales From New York And New Delhi', 'https://images.isbndb.com/covers/03/48/9781582430348.jpg'), - ('1582430152', 'Heat And Dust', 'https://images.isbndb.com/covers/01/57/9781582430157.jpg'), - ('0345430808', 'Manifold: Origin', 'https://images.isbndb.com/covers/08/09/9780345430809.jpg'), - ('0140242058', 'Zlata''s Diary', 'https://images.isbndb.com/covers/20/58/9780140242058.jpg'), - ('0142001821', 'The Passion Of Artemisia: A Novel', 'https://images.isbndb.com/covers/18/20/9780142001820.jpg'), - ('0806511532', 'The Short Happy Life Of The Brown Oxford And Other Classic Stories (The Collected Stories Of Philip K. Dick, Vol. 1) (Vol 1)', 'https://images.isbndb.com/covers/15/35/9780806511535.jpg'), - ('0809001608', 'The Treasure Of The Sierra Madre', 'https://images.isbndb.com/covers/16/06/9780809001606.jpg'), - ('0380719185', 'Princess: A True Story Of Life Behind The Veil In Saudi Arabia', 'https://images.isbndb.com/covers/91/81/9780380719181.jpg'), - ('0452281903', 'A Man Named Dave: A Story Of Triumph And Forgiveness', 'https://images.isbndb.com/covers/19/05/9780452281905.jpg'), - ('0312983093', 'Breaking Point (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/30/93/9780312983093.jpg'), - ('0813511895', 'Pinelands Folklife', 'https://images.isbndb.com/covers/18/94/9780813511894.jpg'), - ('0671660705', 'Unknown Man: The Mysterious Birth Of A New Species', 'https://images.isbndb.com/covers/07/03/9780671660703.jpg'), - ('0671731874', 'Louise Nevelson', 'https://images.isbndb.com/covers/18/78/9780671731878.jpg'), - ('0385316917', 'Special Delivery', 'https://images.isbndb.com/covers/69/10/9780385316910.jpg'), - ('0385335431', 'Answered Prayers', 'https://images.isbndb.com/covers/54/30/9780385335430.jpg'), - ('0345435648', 'Indigo Slam: An Elvis Cole Novel', 'https://images.isbndb.com/covers/56/44/9780345435644.jpg'), - ('0385333463', 'His Bright Light', 'https://images.isbndb.com/covers/34/67/9780385333467.jpg'), - ('0440205573', 'Star', 'https://images.isbndb.com/covers/55/79/9780440205579.jpg'), - ('0440221501', 'Lightning', 'https://images.isbndb.com/covers/15/00/9780440221500.jpg'), - ('0385313012', 'Silent Honor', 'https://images.isbndb.com/covers/30/18/9780385313018.jpg'), - ('0385333064', 'The House On Hope Street', 'https://images.isbndb.com/covers/30/61/9780385333061.jpg'), - ('0446385077', 'In Search Of Excellence: Lessons From Americas Best Run Companies', 'https://images.isbndb.com/covers/50/77/9780446385077.jpg'), - ('0440201926', 'Kaleidoscope', 'https://images.isbndb.com/covers/19/22/9780440201922.jpg'), - ('0688141838', 'The Death Of An Irish Sea Wolf: A Peter McGarr Mystery', 'https://images.isbndb.com/covers/18/37/9780688141837.jpg'), - ('0671557378', 'Ariane', 'https://images.isbndb.com/covers/73/79/9780671557379.jpg'), - ('0440176484', 'Secrets', 'https://images.isbndb.com/covers/64/80/9780440176480.jpg'), - ('0373288689', 'The Saxon (The Viking Series, Book 2) (Harlequin Historical #268)', 'https://images.isbndb.com/covers/86/87/9780373288687.jpg'), - ('0753506483', 'Losing My Virginity: The Autobiography', 'https://images.isbndb.com/covers/64/86/9780753506486.jpg'), - ('0553576143', 'The Cry Of The Halidon', 'https://images.isbndb.com/covers/61/46/9780553576146.jpg'), - ('0446612731', 'The Black Echo (Harry Bosch)', 'https://images.isbndb.com/covers/27/39/9780446612739.jpg'), - ('0553252607', 'The Book Of Kells', 'https://images.isbndb.com/covers/26/06/9780553252606.jpg'), - ('2070323498', 'La Société De Consommation', 'https://images.isbndb.com/covers/34/94/9782070323494.jpg'), - ('0590448307', 'Karen''s Ducklings (Baby-Sitters Little Sister, No. 26)', 'https://images.isbndb.com/covers/83/07/9780590448307.jpg'), - ('0590424955', 'Claudia And Great Search (Baby-Sitters Club, 33)', 'https://images.isbndb.com/covers/49/50/9780590424950.jpg'), - ('0553573837', 'Boone', 'https://images.isbndb.com/covers/38/31/9780553573831.jpg'), - ('0590436457', 'Karen''s In Love (Baby-Sitters Little Sister, No. 15)', 'https://images.isbndb.com/covers/64/58/9780590436458.jpg'), - ('0590416677', 'Margaret''s Moves', 'https://images.isbndb.com/covers/66/72/9780590416672.jpg'), - ('0316139947', 'Face-Off', 'https://images.isbndb.com/covers/99/46/9780316139946.jpg'), - ('0570041945', 'Danger At Half Moon Lake (Adventure Quest Ser)', 'https://images.isbndb.com/covers/19/48/9780570041948.jpg'), - ('0440476968', 'Secret At Polk Street School (Polka Dot Private Eye)', 'https://images.isbndb.com/covers/69/62/9780440476962.jpg'), - ('0590435728', 'Stacey''s Emergency (Baby-Sitters Club, 43)', 'https://images.isbndb.com/covers/57/27/9780590435727.jpg'), - ('0590691821', 'Abby''s Book (Baby-Sitters Club Portrait Collection)', 'https://images.isbndb.com/covers/18/26/9780590691826.jpg'), - ('0345436733', 'Garfield Feeds The Kitty: #35 (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/67/33/9780345436733.jpg'), - ('0965866823', '300 Incredible Things For Sports Fans On The Internet (Powerfresh)', 'https://images.isbndb.com/covers/68/28/9780965866828.jpg'), - ('0965866807', '300 Incredible Things To Do On The Internet -- Vol. I', 'https://images.isbndb.com/covers/68/04/9780965866804.jpg'), - ('002708230X', 'Save Sirrushany! Also Agotha, Princess Gwyn, And All The Fearsome Beasts', 'https://images.isbndb.com/covers/23/02/9780027082302.jpg'), - ('0670894184', 'Back Roads (Oprah''s Book Club)', 'https://images.isbndb.com/covers/41/85/9780670894185.jpg'), - ('0373833458', 'Dr Texas (Heart Of Texas, No 4)', 'https://images.isbndb.com/covers/34/50/9780373833450.jpg'), - ('0316473049', 'The Pugilist At Rest: Stories', 'https://images.isbndb.com/covers/30/40/9780316473040.jpg'), - ('0449225925', 'Lady', 'https://images.isbndb.com/covers/59/29/9780449225929.jpg'), - ('0830713042', 'Christ, B.C.: Becoming Closer Friends With The Hidden Christ Of The Old Testament', 'https://images.isbndb.com/covers/30/42/9780830713042.jpg'), - ('0061092037', 'The Fourth Estate', 'https://images.isbndb.com/covers/20/39/9780061092039.jpg'), - ('0553275631', 'The Black Poets', 'https://images.isbndb.com/covers/56/36/9780553275636.jpg'), - ('0486270602', 'Young Goodman Brown And Other Short Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/09/9780486270609.jpg'), - ('0671669397', 'Silver Desoto', 'https://images.isbndb.com/covers/93/93/9780671669393.jpg'), - ('0486419274', 'Phèdre (Dover Thrift Editions)', 'https://images.isbndb.com/covers/92/75/9780486419275.jpg'), - ('0835918696', 'ADAP CLASSICS ALL QUIET WEST FRONT SE 96 (GLOBE ADAPTED CLASSICS)', 'https://images.isbndb.com/covers/86/95/9780835918695.jpg'), - ('0486270629', 'A Doll''s House (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/23/9780486270623.jpg'), - ('0486278026', 'Macbeth (Dover Thrift Editions)', 'https://images.isbndb.com/covers/80/25/9780486278025.jpg'), - ('0486297659', 'The Taming Of The Shrew (Dover Thrift Editions)', 'https://images.isbndb.com/covers/76/51/9780486297651.jpg'), - ('0836225902', 'Believing In Ourselves: The Wisdom Of Women (Ariel Quote-a-Page Books)', 'https://images.isbndb.com/covers/59/07/9780836225907.jpg'), - ('006273248X', 'All About Eve: The Complete Guide To Women''s Health And Well-Being', 'https://images.isbndb.com/covers/24/84/9780062732484.jpg'), - ('0440236053', 'Writ Of Execution', 'https://images.isbndb.com/covers/60/54/9780440236054.jpg'), - ('002920528X', 'Men Astutely Trained: A History Of The Jesuits In The American Century', 'https://images.isbndb.com/covers/52/80/9780029205280.jpg'), - ('1558003592', 'Pain And Medicine', 'https://images.isbndb.com/covers/35/90/9781558003590.jpg'), - ('0399144560', 'Field Of Thirteen', 'https://images.isbndb.com/covers/45/61/9780399144561.jpg'), - ('0553478206', 'Missing Pieces', 'https://images.isbndb.com/covers/82/04/9780553478204.jpg'), - ('0694523321', 'Nora, Nora', 'https://images.isbndb.com/covers/33/20/9780694523320.jpg'), - ('0060577479', 'Low Country', 'https://images.isbndb.com/covers/74/76/9780060577476.jpg'), - ('156740765X', 'The Pied Piper (Lou Boldt/Daphne Matthews Series)', 'https://images.isbndb.com/covers/76/55/9781567407655.jpg'), - ('0066621054', 'Longaberger: An American Success Story', 'https://images.isbndb.com/covers/10/50/9780066621050.jpg'), - ('1570721971', 'Haunting Refrain', 'https://images.isbndb.com/covers/19/77/9781570721977.jpg'), - ('0373706383', 'The Secret Years : Showcase (Harlequin Superromance No. 638)', 'https://images.isbndb.com/covers/63/89/9780373706389.jpg'), - ('037310734X', 'Brides Lace', 'https://images.isbndb.com/covers/73/46/9780373107346.jpg'), - ('1561290998', 'Sicilian Blood', 'https://images.isbndb.com/covers/09/94/9781561290994.jpg'), - ('0800784111', 'I Came To Love You Late', 'https://images.isbndb.com/covers/41/19/9780800784119.jpg'), - ('0802733662', 'Dead Ball : A Harvey Blissberg Mystery', 'https://images.isbndb.com/covers/36/65/9780802733665.jpg'), - ('0345426800', 'A Perfect Crime', 'https://images.isbndb.com/covers/68/02/9780345426802.jpg'), - ('0440216818', 'Daybreak', 'https://images.isbndb.com/covers/68/10/9780440216810.jpg'), - ('0440224330', 'Manhattan Nocturne', 'https://images.isbndb.com/covers/43/34/9780440224334.jpg'), - ('0446526126', 'Ten Things I Wish I''d Known Before I Went Out Into The Real World', 'https://images.isbndb.com/covers/61/28/9780446526128.jpg'), - ('0743242963', 'The Self Matters Companion : Helping You Create Your Life From The Inside Out', 'https://images.isbndb.com/covers/29/67/9780743242967.jpg'), - ('1401900844', 'Sylvia Browne''s Book Of Angels', 'https://images.isbndb.com/covers/08/47/9781401900847.jpg'), - ('0385319568', 'The Long Road Home', 'https://images.isbndb.com/covers/95/60/9780385319560.jpg'), - ('0062515845', 'The Invitation', 'https://images.isbndb.com/covers/58/41/9780062515841.jpg'), - ('0886779766', 'Shapechanger''s Song (Chronicles Of The Cheysuli, Bk. 1: Shapechangers And Bk. 2: The Song Of Homana)', 'https://images.isbndb.com/covers/97/64/9780886779764.jpg'), - ('0679454497', 'Blood And Gold (Vampire Chronicles)', 'https://images.isbndb.com/covers/44/96/9780679454496.jpg'), - ('0449906817', 'The Day The Rabbi Resigned', 'https://images.isbndb.com/covers/68/11/9780449906811.jpg'), - ('0505525178', 'Improper English', 'https://images.isbndb.com/covers/51/78/9780505525178.jpg'), - ('0671709569', 'Vampire', 'https://images.isbndb.com/covers/95/63/9780671709563.jpg'), - ('0061061778', 'Vampire''s Kiss', 'https://images.isbndb.com/covers/17/76/9780061061776.jpg'), - ('0671021826', 'The Beginning: The New Girl/The Surprise Party/The Overnight (Fear Street Collector''s Edition #1)', 'https://images.isbndb.com/covers/18/25/9780671021825.jpg'), - ('0553575414', 'Cat On The Scent (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/54/15/9780553575415.jpg'), - ('0312968973', 'Canapes For The Kitties', 'https://images.isbndb.com/covers/89/77/9780312968977.jpg'), - ('0441008658', 'Spindle''s End', 'https://images.isbndb.com/covers/86/50/9780441008650.jpg'), - ('0345368991', 'The Chronicles Of Pern: First Fall', 'https://images.isbndb.com/covers/89/97/9780345368997.jpg'), - ('0393309290', 'Mrs. Stevens Hears The Mermaids Singing', 'https://images.isbndb.com/covers/92/94/9780393309294.jpg'), - ('038542017X', 'Like Water For Chocolate: A Novel In Monthly Installments With Recipes, Romances, And Home Remedies', 'https://images.isbndb.com/covers/01/74/9780385420174.jpg'), - ('073943053X', 'I Brake For Bad Boys', 'https://images.isbndb.com/covers/05/38/9780739430538.jpg'), - ('0312958366', 'My Lady Caroline', 'https://images.isbndb.com/covers/83/67/9780312958367.jpg'), - ('0553582003', 'The Secret Swan', 'https://images.isbndb.com/covers/20/00/9780553582000.jpg'), - ('0515135305', 'Catching Midnight', 'https://images.isbndb.com/covers/53/05/9780515135305.jpg'), - ('0449140911', 'The Howling II', 'https://images.isbndb.com/covers/09/18/9780449140918.jpg'), - ('0451407695', 'Bittersweet', 'https://images.isbndb.com/covers/76/96/9780451407696.jpg'), - ('0451404793', 'White Rose (Topaz Historical Romances)', 'https://images.isbndb.com/covers/47/94/9780451404794.jpg'), - ('0345315499', 'Vengeance Of The Dancing Gods', 'https://images.isbndb.com/covers/54/96/9780345315496.jpg'), - ('0345308921', 'The River Of Dancing Gods', 'https://images.isbndb.com/covers/89/24/9780345308924.jpg'), - ('034530893X', 'Demons Of The Dancing Gods', 'https://images.isbndb.com/covers/89/31/9780345308931.jpg'), - ('0821773135', 'Luck Be A Lady (Zebra Encore)', 'https://images.isbndb.com/covers/31/30/9780821773130.jpg'), - ('0843943408', 'Bride Of The Dragon', 'https://images.isbndb.com/covers/34/05/9780843943405.jpg'), - ('0515130397', 'Very Truly Yours', 'https://images.isbndb.com/covers/03/93/9780515130393.jpg'), - ('0380414759', 'Tears Of Gold', 'https://images.isbndb.com/covers/47/58/9780380414758.jpg'), - ('0671556843', 'The Raider', 'https://images.isbndb.com/covers/68/46/9780671556846.jpg'), - ('0671779370', 'Chieftain', 'https://images.isbndb.com/covers/93/75/9780671779375.jpg'), - ('0821747479', 'Devil Moon (Lovegram Historical Romances)', 'https://images.isbndb.com/covers/74/76/9780821747476.jpg'), - ('0553571591', 'Mystique (Bantam Books Historical Romance)', 'https://images.isbndb.com/covers/15/92/9780553571592.jpg'), - ('0380807947', 'A Season Beyond A Kiss', 'https://images.isbndb.com/covers/79/49/9780380807949.jpg'), - ('0380005255', 'The Flame And The Flower', 'https://images.isbndb.com/covers/52/53/9780380005253.jpg'), - ('038079828X', 'Petals On The River', 'https://images.isbndb.com/covers/82/85/9780380798285.jpg'), - ('0380799383', 'Seventh Heaven', 'https://images.isbndb.com/covers/93/81/9780380799381.jpg'), - ('0446606227', 'Bed Of Roses', 'https://images.isbndb.com/covers/62/26/9780446606226.jpg'), - ('0843939427', 'Seduced', 'https://images.isbndb.com/covers/94/22/9780843939422.jpg'), - ('0671004123', 'Wonderful', 'https://images.isbndb.com/covers/41/25/9780671004125.jpg'), - ('0449006352', 'Prince Charming (Ascension Trilogy)', 'https://images.isbndb.com/covers/63/51/9780449006351.jpg'), - ('0671010085', 'One Pink Rose (Clayborne Brides)', 'https://images.isbndb.com/covers/00/89/9780671010089.jpg'), - ('0671010093', 'One White Rose', 'https://images.isbndb.com/covers/00/96/9780671010096.jpg'), - ('0881844365', 'Clans Of The Alphane Moon', 'https://images.isbndb.com/covers/43/68/9780881844368.jpg'), - ('0553572407', 'Interface', 'https://images.isbndb.com/covers/24/07/9780553572407.jpg'), - ('0345457641', 'A Thousand Days In Venice (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/76/46/9780345457646.jpg'), - ('0345423828', 'Cybergrrl! A Woman''s Guide To The World Wide Web', 'https://images.isbndb.com/covers/38/25/9780345423825.jpg'), - ('0312970129', 'If Loving You Is Wrong', 'https://images.isbndb.com/covers/01/23/9780312970123.jpg'), - ('1887128654', 'Why Things Burn: Poems', 'https://images.isbndb.com/covers/86/50/9781887128650.jpg'), - ('0345416430', 'The New York Diaries: Too-True Tales Of Urban Trauma', 'https://images.isbndb.com/covers/64/38/9780345416438.jpg'), - ('0688158234', 'Desert Flower: The Extraordinary Journey Of A Desert Nomad', 'https://images.isbndb.com/covers/82/31/9780688158231.jpg'), - ('0446608475', 'The Wild Swans', 'https://images.isbndb.com/covers/84/73/9780446608473.jpg'), - ('0435905260', 'Things Fall Apart', 'https://images.isbndb.com/covers/52/62/9780435905262.jpg'), - ('0965036022', 'Profiles In Courage', 'https://images.isbndb.com/covers/60/23/9780965036023.jpg'), - ('0590853015', 'The Chicken Doesn''t Skate', 'https://images.isbndb.com/covers/30/19/9780590853019.jpg'), - ('0671729330', 'SOUTHSIDE SLUGGERS: THE MISSING CHAMPSHIP RING', 'https://images.isbndb.com/covers/93/32/9780671729332.jpg'), - ('078686219X', 'Living The Simple Life: A Guide To Scaling Down And Enjoying More', 'https://images.isbndb.com/covers/21/91/9780786862191.jpg'), - ('0671769669', 'Teaching Your Children Values', 'https://images.isbndb.com/covers/96/66/9780671769666.jpg'), - ('0671741373', 'BEYOND SHYNESS: HOW TO CONQUER SOCIAL ANXIETY STEP BY STEP', 'https://images.isbndb.com/covers/13/72/9780671741372.jpg'), - ('0967851017', 'The Landlord', 'https://images.isbndb.com/covers/10/13/9780967851013.jpg'), - ('0385240716', 'My Husband Rock Hudson', 'https://images.isbndb.com/covers/07/10/9780385240710.jpg'), - ('0515111317', 'The Heiress Bride (Bride Series)', 'https://images.isbndb.com/covers/13/16/9780515111316.jpg'), - ('0451202902', 'Sweet Everlasting', 'https://images.isbndb.com/covers/29/01/9780451202901.jpg'), - ('0441005349', 'When Demons Walk (Sianim)', 'https://images.isbndb.com/covers/53/45/9780441005345.jpg'), - ('0446356611', 'Rage Of Angels', 'https://images.isbndb.com/covers/66/19/9780446356619.jpg'), - ('0446350109', 'Windmills Of The Gods', 'https://images.isbndb.com/covers/01/05/9780446350105.jpg'), - ('0671877992', 'Glenraven', 'https://images.isbndb.com/covers/79/96/9780671877996.jpg'), - ('0449216527', 'S', 'https://images.isbndb.com/covers/65/21/9780449216521.jpg'), - ('0671014757', 'Huntress Night World 7', 'https://images.isbndb.com/covers/47/59/9780671014759.jpg'), - ('0671014765', 'Black Dawn Night World', 'https://images.isbndb.com/covers/47/66/9780671014766.jpg'), - ('0671551361', 'DARK ANGEL NIGHT WORLD 4', 'https://images.isbndb.com/covers/13/60/9780671551360.jpg'), - ('0671551337', 'Secret Vampire (Night World, Book 1)', 'https://images.isbndb.com/covers/13/39/9780671551339.jpg'), - ('0671551388', 'Soulmate (Night World, Book 6)', 'https://images.isbndb.com/covers/13/84/9780671551384.jpg'), - ('0671551353', 'SPELLBINDER: NIGHTWORLD', 'https://images.isbndb.com/covers/13/53/9780671551353.jpg'), - ('0671014773', 'Witchlight Night World 9', 'https://images.isbndb.com/covers/47/73/9780671014773.jpg'), - ('0671551345', 'Night World: Daughters Of Darkness', 'https://images.isbndb.com/covers/13/46/9780671551346.jpg'), - ('0671721100', 'Born To Run', 'https://images.isbndb.com/covers/11/07/9780671721107.jpg'), - ('0553574574', 'Beach Music', 'https://images.isbndb.com/covers/45/79/9780553574579.jpg'), - ('0812534832', 'Demons Don''t Dream', 'https://images.isbndb.com/covers/48/32/9780812534832.jpg'), - ('0671721623', 'Fortress Of Frost And Fire (The Bard''s Tale, Book 2)', 'https://images.isbndb.com/covers/16/26/9780671721626.jpg'), - ('0671698850', 'Knight Of Ghosts & Shadows (Bedlam''s Bard, Bk. 1)', 'https://images.isbndb.com/covers/88/50/9780671698850.jpg'), - ('0671721542', 'When The Bough Breaks: A Novel Of The Serrated Edge', 'https://images.isbndb.com/covers/15/41/9780671721541.jpg'), - ('0671876155', 'Chrome Circle (The Serrated Edge, Bk. 4)', 'https://images.isbndb.com/covers/61/59/9780671876159.jpg'), - ('0140434895', 'Great Expectations (Penguin Classics)', 'https://images.isbndb.com/covers/48/97/9780140434897.jpg'), - ('0140180923', 'Lord Jim (Penguin Classics)', 'https://images.isbndb.com/covers/09/23/9780140180923.jpg'), - ('0393309282', 'Journal Of A Solitude', 'https://images.isbndb.com/covers/92/87/9780393309287.jpg'), - ('0060194790', 'Waiting : The True Confessions Of A Waitress', 'https://images.isbndb.com/covers/47/96/9780060194796.jpg'), - ('0452280397', 'Paradise (Oprah''s Book Club)', 'https://images.isbndb.com/covers/03/97/9780452280397.jpg'), - ('0886773318', 'The Last Wizard (Wizard Crystal)', 'https://images.isbndb.com/covers/33/11/9780886773311.jpg'), - ('0886775167', 'Winds Of Fate (The Mage Winds, Book 1)', 'https://images.isbndb.com/covers/51/62/9780886775162.jpg'), - ('0812521145', 'Jinx High', 'https://images.isbndb.com/covers/11/46/9780812521146.jpg'), - ('0671721259', 'Castle Of Deception (The Bard''s Tale, Book 1)', 'https://images.isbndb.com/covers/12/51/9780671721251.jpg'), - ('0671876287', 'The Robin & The Kestrel (Bardic Voices, Book 2)', 'https://images.isbndb.com/covers/62/89/9780671876289.jpg'), - ('0517543346', 'Out Of Season', 'https://images.isbndb.com/covers/33/44/9780517543344.jpg'), - ('0140265988', 'Falling Leaves: The True Story Of An Unwanted Chinese Daughter', 'https://images.isbndb.com/covers/59/89/9780140265989.jpg'), - ('0752271474', 'Purple Ronnie''s Love Poems', 'https://images.isbndb.com/covers/14/77/9780752271477.jpg'), - ('0751512966', 'Italian House', 'https://images.isbndb.com/covers/29/60/9780751512960.jpg'), - ('059049418X', 'The Change (Animorphs Ser., No. 13)', 'https://images.isbndb.com/covers/41/82/9780590494182.jpg'), - ('207038165X', 'L''insoutenable Légèreté De L''être', 'https://images.isbndb.com/covers/16/54/9782070381654.jpg'), - ('0531098745', 'How To Win A Pullet Surprise: The Pleasures And Pitfalls Of Our Language', 'https://images.isbndb.com/covers/87/45/9780531098745.jpg'), - ('0465026567', 'Gödel, Escher, Bach: An Eternal Golden Braid', 'https://images.isbndb.com/covers/65/62/9780465026562.jpg'), - ('0446674044', 'Drawing From Within: Unleashing Your Creative Potential', 'https://images.isbndb.com/covers/40/41/9780446674041.jpg'), - ('1592570801', 'The Complete Idiot''s Guide To Drawing, 2E', 'https://images.isbndb.com/covers/08/05/9781592570805.jpg'), - ('1582970807', 'Memoirs Of The Soul: Writing Your Spiritual Autobiography', 'https://images.isbndb.com/covers/08/06/9781582970806.jpg'), - ('158180119X', 'Watercolor Pencil Magic', 'https://images.isbndb.com/covers/11/94/9781581801194.jpg'), - ('1581802986', 'THE COMPLETE COLORED PENCIL BOOK', 'https://images.isbndb.com/covers/29/86/9781581802986.jpg'), - ('0891347208', 'Painting Houses, Cottages And Towns On Rocks', 'https://images.isbndb.com/covers/72/00/9780891347200.jpg'), - ('1581800320', 'Painting Pets On Rocks', 'https://images.isbndb.com/covers/03/26/9781581800326.jpg'), - ('0140390448', 'Walden And Civil Disobedience (Penguin American Library)', 'https://images.isbndb.com/covers/04/45/9780140390445.jpg'), - ('0004121120', 'Learn To Paint Watercolours (Collins Learn To Paint)', 'https://images.isbndb.com/covers/11/23/9780004121123.jpg'), - ('0861013743', 'The Creative Book Of Decorative Painting (Creative Book Of Homecrafts Series)', 'https://images.isbndb.com/covers/37/46/9780861013746.jpg'), - ('0525945407', 'Healing Grief : Reclaiming Life After Any Loss', 'https://images.isbndb.com/covers/54/06/9780525945406.jpg'), - ('0517654954', 'Dogs Of The World: An Illustrated Encyclopedia', 'https://images.isbndb.com/covers/49/58/9780517654958.jpg'), - ('0025294458', 'The Wild Lawn Handbook: Alternatives To The Traditional Front Lawn', 'https://images.isbndb.com/covers/44/55/9780025294455.jpg'), - ('0903505355', 'The House Plant Expert', 'https://images.isbndb.com/covers/53/52/9780903505352.jpg'), - ('0903505193', 'The Flower Expert (Expert Series)', 'https://images.isbndb.com/covers/51/92/9780903505192.jpg'), - ('1551050765', 'Lois Hole''s Perennial Favorites', 'https://images.isbndb.com/covers/07/68/9781551050768.jpg'), - ('0517693399', 'The Essential Gardener', 'https://images.isbndb.com/covers/33/91/9780517693391.jpg'), - ('1859671039', 'The Decorated Garden Room: Interior Design For Your Outside Living Space', 'https://images.isbndb.com/covers/10/30/9781859671030.jpg'), - ('0458921009', 'The Rutland Dirty Weekend Book', 'https://images.isbndb.com/covers/10/03/9780458921003.jpg'), - ('1842151126', 'Runes: For Divination, Protection And Healing (Guide For Life)', 'https://images.isbndb.com/covers/11/29/9781842151129.jpg'), - ('0920656404', 'Mammals Of The Canadian Wild', 'https://images.isbndb.com/covers/64/02/9780920656402.jpg'), - ('0399139206', 'Walking Shadow', 'https://images.isbndb.com/covers/92/08/9780399139208.jpg'), - ('0060163704', 'Coyote Waits', 'https://images.isbndb.com/covers/37/09/9780060163709.jpg'), - ('0920656080', 'The Architecture Of Animals: The Equinox Guide To Wildlife Structures', 'https://images.isbndb.com/covers/60/82/9780920656082.jpg'), - ('0920656943', 'Exploring The World Of Birds: An Equinox Guide To Avian Life', 'https://images.isbndb.com/covers/69/45/9780920656945.jpg'), - ('0835607771', 'Visual Journaling: Going Deeper Than Words', 'https://images.isbndb.com/covers/77/73/9780835607773.jpg'), - ('0345391373', 'An Incomplete Education, Revised Edition', 'https://images.isbndb.com/covers/13/77/9780345391377.jpg'), - ('0714836257', 'The Art Book', 'https://images.isbndb.com/covers/62/56/9780714836256.jpg'), - ('0920656269', 'Nightwatch: An Equinox Guide To Viewing The Universe', 'https://images.isbndb.com/covers/62/66/9780920656266.jpg'), - ('0345400577', 'A Book Of Angels: Reflections On Angels Past And Present And True Stories Of How They Touch Our Lives', 'https://images.isbndb.com/covers/05/74/9780345400574.jpg'), - ('0679419616', 'From Beginning To End:: The Rituals Of Our Lives', 'https://images.isbndb.com/covers/96/17/9780679419617.jpg'), - ('0201567792', 'Lighten Up: Survival Skills For People Under Pressure (A William Patrick Book)', 'https://images.isbndb.com/covers/77/93/9780201567793.jpg'), - ('0517331942', 'Meaning Of Masonry', 'https://images.isbndb.com/covers/19/41/9780517331941.jpg'), - ('1568361742', 'Off The Map: The Curious Histories Of Place-Names', 'https://images.isbndb.com/covers/17/41/9781568361741.jpg'), - ('0385315058', 'It''s Only Too Late If You Don''t Start Now : How To Create Your Second Life After Forty', 'https://images.isbndb.com/covers/50/50/9780385315050.jpg'), - ('9747315084', 'Bangkok : The Story Of A City', 'https://images.isbndb.com/covers/50/80/9789747315080.jpg'), - ('3453152891', 'Operation Rainbow', 'https://images.isbndb.com/covers/28/92/9783453152892.jpg'), - ('3442352983', 'Kopfüber In Die Kissen: Roman', 'https://images.isbndb.com/covers/29/82/9783442352982.jpg'), - ('3499101505', 'Der Richter Und Sein Henker.', 'https://images.isbndb.com/covers/15/02/9783499101502.jpg'), - ('3518382357', 'Von Liebe Und Schatten: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/23/56/9783518382356.jpg'), - ('3442446929', 'Der Keltische Ring.', 'https://images.isbndb.com/covers/69/26/9783442446926.jpg'), - ('3257218478', 'Indianersommer', 'https://images.isbndb.com/covers/84/73/9783257218473.jpg'), - ('0684854341', 'HEN FRIGATES: Passion And Peril, Nineteenth-Century Women At Sea', 'https://images.isbndb.com/covers/43/42/9780684854342.jpg'), - ('3453052544', 'Christine', 'https://images.isbndb.com/covers/25/43/9783453052543.jpg'), - ('3442724295', 'Warten Auf Kerouac', 'https://images.isbndb.com/covers/42/91/9783442724291.jpg'), - ('0821225685', 'Hand And Home: The Homes Of American Craftsmen', 'https://images.isbndb.com/covers/56/84/9780821225684.jpg'), - ('0449209881', 'Angle Of Repose', 'https://images.isbndb.com/covers/98/82/9780449209882.jpg'), - ('0375724443', 'Ava''s Man', 'https://images.isbndb.com/covers/44/42/9780375724442.jpg'), - ('0140282777', 'Big Fish: A Novel Of Mythic Proportions', 'https://images.isbndb.com/covers/27/71/9780140282771.jpg'), - ('034541005X', 'The Power Of One: A Novel', 'https://images.isbndb.com/covers/00/54/9780345410054.jpg'), - ('2894294247', 'Cat Lovers Companion', 'https://images.isbndb.com/covers/42/46/9782894294246.jpg'), - ('0553159445', 'Sarah''s Dad And Sophia''s Mom (Sweet Valley Twins And Friends, No 62)', 'https://images.isbndb.com/covers/94/48/9780553159448.jpg'), - ('0380713349', 'Polly Panic', 'https://images.isbndb.com/covers/33/49/9780380713349.jpg'), - ('059044333X', 'The Girlfriend (Point Horror Series)', 'https://images.isbndb.com/covers/33/33/9780590443333.jpg'), - ('0380614324', 'I Love You, Stupid', 'https://images.isbndb.com/covers/43/25/9780380614325.jpg'), - ('0440911257', 'The Castle Of Llyr', 'https://images.isbndb.com/covers/12/58/9780440911258.jpg'), - ('0671736795', 'The DANCE (FINAL FRIENDS 2): THE DANCE (Final Friends, Book 2)', 'https://images.isbndb.com/covers/67/98/9780671736798.jpg'), - ('0671529544', 'Forbidden Secrets: Fear Street Sagas #3', 'https://images.isbndb.com/covers/95/43/9780671529543.jpg'), - ('0671628410', 'Why Me?', 'https://images.isbndb.com/covers/84/13/9780671628413.jpg'), - ('0425133184', 'Sunset Reunion', 'https://images.isbndb.com/covers/31/87/9780425133187.jpg'), - ('0671888285', 'My Girl 2: A Novel', 'https://images.isbndb.com/covers/82/82/9780671888282.jpg'), - ('0425127729', 'Sunset Farewell (Sunset Island, 4)', 'https://images.isbndb.com/covers/77/28/9780425127728.jpg'), - ('0671894242', 'Bad Moonlight (Fear Street Super Chillers, No. 8)', 'https://images.isbndb.com/covers/42/45/9780671894245.jpg'), - ('0671529560', 'The Loudest Scream (Fear Street: Fear Park, No. 2)', 'https://images.isbndb.com/covers/95/67/9780671529567.jpg'), - ('059045370X', 'Let''s Get Invisible! (Goosebumps, No. 6)', 'https://images.isbndb.com/covers/37/07/9780590453707.jpg'), - ('0590453696', 'The Curse Of The Mummy''s Tomb (Goosebumps)', 'https://images.isbndb.com/covers/36/91/9780590453691.jpg'), - ('0590477382', 'One Day At Horrorland (Goosebumps #16)', 'https://images.isbndb.com/covers/73/83/9780590477383.jpg'), - ('0590466186', 'The Girl Who Cried Monster (Goosebumps, No. 8)', 'https://images.isbndb.com/covers/61/89/9780590466189.jpg'), - ('0446602558', 'Sweetwater', 'https://images.isbndb.com/covers/25/56/9780446602556.jpg'), - ('0316485187', 'How To Get What You Want In Life With The Money You Already Have', 'https://images.isbndb.com/covers/51/80/9780316485180.jpg'), - ('0890819858', 'Jerusalem The City Of God', 'https://images.isbndb.com/covers/98/52/9780890819852.jpg'), - ('0310539218', 'Armageddon, Oil, And The Middle East Crisis: What The Bible Says About The Future Of The MiddleEast And The End Of Western Civilization', 'https://images.isbndb.com/covers/92/16/9780310539216.jpg'), - ('156761583X', 'The Complete Idiot''s Guide To Buying And Upgrading PCs', 'https://images.isbndb.com/covers/58/38/9781567615838.jpg'), - ('0805042768', 'Debt Free!: Your Guide To Personal Bankruptcy Without Shame', 'https://images.isbndb.com/covers/27/64/9780805042764.jpg'), - ('0883964481', 'Always Believe In Yourself And Your Dreams (Blue Mountain Arts Collection)', 'https://images.isbndb.com/covers/44/84/9780883964484.jpg'), - ('0140432914', 'The Fall Of The House Of Usher And Other Writings: Poems, Tales, Essays, And Reviews (Penguin Classics)', 'https://images.isbndb.com/covers/29/16/9780140432916.jpg'), - ('0006742939', 'Weirdstone Of Brisingamen New Ed', 'https://images.isbndb.com/covers/29/37/9780006742937.jpg'), - ('1573222321', 'Journals', 'https://images.isbndb.com/covers/23/27/9781573222327.jpg'), - ('0688163165', 'Mystic River', 'https://images.isbndb.com/covers/31/67/9780688163167.jpg'), - ('0064400204', 'Sounder', 'https://images.isbndb.com/covers/02/06/9780064400206.jpg'), - ('0060557540', 'The Known World', 'https://images.isbndb.com/covers/75/46/9780060557546.jpg'), - ('0525947671', 'The Lady And The Unicorn', 'https://images.isbndb.com/covers/76/77/9780525947677.jpg'), - ('0151004439', 'Snow Falling On Cedars: Movie Tie-in Edition', 'https://images.isbndb.com/covers/44/30/9780151004430.jpg'), - ('0679642382', 'Possession: A Romance (Modern Library)', 'https://images.isbndb.com/covers/23/81/9780679642381.jpg'), - ('0804113475', 'Ladder Of Years', 'https://images.isbndb.com/covers/34/72/9780804113472.jpg'), - ('037576013X', 'Daniel Deronda (Modern Library Classics)', 'https://images.isbndb.com/covers/01/36/9780375760136.jpg'), - ('0679455612', 'A Lesson Before Dying', 'https://images.isbndb.com/covers/56/15/9780679455615.jpg'), - ('0553212435', 'Villette (Bantam Classics)', 'https://images.isbndb.com/covers/24/33/9780553212433.jpg'), - ('0440147956', 'Light A Penny Candle', 'https://images.isbndb.com/covers/79/54/9780440147954.jpg'), - ('0375415351', 'Sula (Oprah''s Book Club)', 'https://images.isbndb.com/covers/53/57/9780375415357.jpg'), - ('0763616052', 'Because Of Winn-Dixie', 'https://images.isbndb.com/covers/60/52/9780763616052.jpg'), - ('0380432811', 'Bridge To Terabithia', 'https://images.isbndb.com/covers/28/13/9780380432813.jpg'), - ('0440212359', 'London Transports', 'https://images.isbndb.com/covers/23/55/9780440212355.jpg'), - ('0670857459', 'Felicia''s Journey', 'https://images.isbndb.com/covers/74/56/9780670857456.jpg'), - ('1582344094', 'The Bobby Gold Stories: A Novel', 'https://images.isbndb.com/covers/40/96/9781582344096.jpg'), - ('0452285062', 'The Grits (Girls Raised In The South) Guide To Life', 'https://images.isbndb.com/covers/50/64/9780452285064.jpg'), - ('0805063315', 'Dr. Tatiana''s Sex Advice To All Creation: The Definitive Guide To The Evolutionary Biology Of Sex', 'https://images.isbndb.com/covers/33/18/9780805063318.jpg'), - ('0671507303', 'Dead Cert', 'https://images.isbndb.com/covers/73/05/9780671507305.jpg'), - ('0684844141', 'Fanny Kemble''s Civil Wars', 'https://images.isbndb.com/covers/41/45/9780684844145.jpg'), - ('0394722531', 'The Plantation Mistress: Woman''s World In The Old South', 'https://images.isbndb.com/covers/25/35/9780394722535.jpg'), - ('0375504184', 'I Knew A Woman: The Experience Of The Female Body', 'https://images.isbndb.com/covers/41/81/9780375504181.jpg'), - ('0671009443', 'Private Parts', 'https://images.isbndb.com/covers/94/41/9780671009441.jpg'), - ('0425165337', 'The Dream Stalker (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/53/31/9780425165331.jpg'), - ('0553579207', 'Ancient Ones', 'https://images.isbndb.com/covers/92/08/9780553579208.jpg'), - ('0060529148', 'Give Me A Break: How I Exposed Hucksters, Cheats, And Scam Artists And Became The Scourge Of The Liberal Media...', 'https://images.isbndb.com/covers/91/47/9780060529147.jpg'), - ('006104444X', 'Zen Attitude', 'https://images.isbndb.com/covers/44/41/9780061044441.jpg'), - ('1400034817', 'Red Meat Cures Cancer', 'https://images.isbndb.com/covers/48/19/9781400034819.jpg'), - ('0553378007', 'The Scalpel And The Silver Bear: The First Navajo Woman Surgeon Combines Western Medicine And Traditional Healing', 'https://images.isbndb.com/covers/80/09/9780553378009.jpg'), - ('0836226844', 'Forever, Erma: Best-Loved Writing From America''s Favorite Humorist', 'https://images.isbndb.com/covers/68/43/9780836226843.jpg'), - ('0515113328', 'The Cat Who Went Into The Closet', 'https://images.isbndb.com/covers/33/27/9780515113327.jpg'), - ('0345368436', 'Douglas Adams''s Starship Titanic', 'https://images.isbndb.com/covers/84/30/9780345368430.jpg'), - ('0515093203', 'The Cat Who Played Post Office', 'https://images.isbndb.com/covers/32/09/9780515093209.jpg'), - ('0446525731', 'The Christmas Train', 'https://images.isbndb.com/covers/57/32/9780446525732.jpg'), - ('0449212653', 'Flying Finish', 'https://images.isbndb.com/covers/26/53/9780449212653.jpg'), - ('0515107867', 'The Cat Who Knew A Cardinal', 'https://images.isbndb.com/covers/78/69/9780515107869.jpg'), - ('0140232257', 'Monster: The Autobiography Of An L.A. Gang Member', 'https://images.isbndb.com/covers/22/57/9780140232257.jpg'), - ('0449220273', 'Death And The Dogwalker', 'https://images.isbndb.com/covers/02/76/9780449220276.jpg'), - ('0312864876', 'Household Gods', 'https://images.isbndb.com/covers/48/73/9780312864873.jpg'), - ('0684813637', 'John Adams', 'https://images.isbndb.com/covers/36/39/9780684813639.jpg'), - ('0451192931', 'Just Plain Pickled To Death (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/29/36/9780451192936.jpg'), - ('0446400564', 'Dead Men''s Hearts', 'https://images.isbndb.com/covers/05/65/9780446400565.jpg'), - ('0446403083', 'Make No Bones', 'https://images.isbndb.com/covers/30/85/9780446403085.jpg'), - ('0445406836', 'The Corpse In Oozak''s Pond (Peter Shandy Mysteries)', 'https://images.isbndb.com/covers/68/34/9780445406834.jpg'), - ('0156003376', 'The Only Investment Guide You''ll Ever Need', 'https://images.isbndb.com/covers/33/77/9780156003377.jpg'), - ('0515132268', 'The Cat Who Smelled A Rat', 'https://images.isbndb.com/covers/22/67/9780515132267.jpg'), - ('0399524827', 'Dr. Jane''s Natural Care For A Healthier, Happier Dog', 'https://images.isbndb.com/covers/48/20/9780399524820.jpg'), - ('1563055619', 'Guerrillas Of Goodness Handbook', 'https://images.isbndb.com/covers/56/14/9781563055614.jpg'), - ('0451205685', 'Gruel And Unusual Punishment (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/56/81/9780451205681.jpg'), - ('0451190572', 'Green Mile Book 6: Coffey On The Mile: The Green Mile, Part 6', 'https://images.isbndb.com/covers/05/74/9780451190574.jpg'), - ('1555218067', 'History Of Witchcraft', 'https://images.isbndb.com/covers/80/65/9781555218065.jpg'), - ('0525940413', 'So Far...', 'https://images.isbndb.com/covers/04/18/9780525940418.jpg'), - ('0440411394', 'Under The Blood-Red Sun', 'https://images.isbndb.com/covers/13/90/9780440411390.jpg'), - ('0590425609', 'Stealing Home: The Story Of Jackie Robinson (Scholastic Biography)', 'https://images.isbndb.com/covers/56/05/9780590425605.jpg'), - ('0425187101', 'Canine Caper: Real-Life Tales Of A Female Pet Vigilante', 'https://images.isbndb.com/covers/71/04/9780425187104.jpg'), - ('1857026012', 'Wit & Wisdom Of Jane Austen', 'https://images.isbndb.com/covers/60/16/9781857026016.jpg'), - ('014007385X', 'Cafe Le Dog (Short Fiction)', 'https://images.isbndb.com/covers/38/50/9780140073850.jpg'), - ('0905762207', 'Frogs In A Well: Indian Women In Purdah', 'https://images.isbndb.com/covers/22/03/9780905762203.jpg'), - ('0771014813', 'The Wandering Soul Murders', 'https://images.isbndb.com/covers/48/19/9780771014819.jpg'), - ('0028610865', 'The Complete Idiot''s Guide To Managing Stress', 'https://images.isbndb.com/covers/08/63/9780028610863.jpg'), - ('0312862091', 'Preternatural', 'https://images.isbndb.com/covers/20/91/9780312862091.jpg'), - ('0312064330', 'Otherwhere', 'https://images.isbndb.com/covers/43/34/9780312064334.jpg'), - ('0312093586', 'Otherwise (Others Series, Vol 3)', 'https://images.isbndb.com/covers/35/87/9780312093587.jpg'), - ('0312866712', 'Preternatural Too: Gyre', 'https://images.isbndb.com/covers/67/16/9780312866716.jpg'), - ('0553229281', 'Majipoor Chronicles', 'https://images.isbndb.com/covers/92/88/9780553229288.jpg'), - ('0553244949', 'Valentine Pontifex (Majipoor: Lord Valentine, Book 3)', 'https://images.isbndb.com/covers/49/46/9780553244946.jpg'), - ('0441646611', 'Cat-a-Lyst', 'https://images.isbndb.com/covers/66/16/9780441646616.jpg'), - ('0441516645', 'Glory Lane', 'https://images.isbndb.com/covers/66/43/9780441516643.jpg'), - ('0671601075', 'Life, The Universe And Everything', 'https://images.isbndb.com/covers/10/72/9780671601072.jpg'), - ('067166493X', 'So Long And Thanks For All The Fish', 'https://images.isbndb.com/covers/49/30/9780671664930.jpg'), - ('0671532642', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/26/42/9780671532642.jpg'), - ('9681908244', 'La Piel Del Cielo (Spanish Edition)', 'https://images.isbndb.com/covers/82/49/9789681908249.jpg'), - ('0886772680', 'The Best Of Marion Zimmer Bradley (Daw Science Fiction)', 'https://images.isbndb.com/covers/26/80/9780886772680.jpg'), - ('0812511840', 'Knight Moves', 'https://images.isbndb.com/covers/18/40/9780812511840.jpg'), - ('0671865714', 'Here There Be Dragons (Star Trek The Next Generation, No 28)', 'https://images.isbndb.com/covers/57/19/9780671865719.jpg'), - ('0515105449', 'Few Die Well', 'https://images.isbndb.com/covers/54/45/9780515105445.jpg'), - ('0451404505', 'The Right Kind Of War', 'https://images.isbndb.com/covers/45/03/9780451404503.jpg'), - ('0515112461', 'Targets Of Opportunity', 'https://images.isbndb.com/covers/24/67/9780515112467.jpg'), - ('0451407504', 'Seaspell', 'https://images.isbndb.com/covers/75/04/9780451407504.jpg'), - ('0449206440', 'The Crystal Cave (The Arthurian Saga, Book 1)', 'https://images.isbndb.com/covers/64/47/9780449206447.jpg'), - ('0380809176', 'Meet Me At Midnight (With This Ring, Book 2)', 'https://images.isbndb.com/covers/91/72/9780380809172.jpg'), - ('0385506708', 'Death Match: A Novel (Child, Lincoln)', 'https://images.isbndb.com/covers/67/00/9780385506700.jpg'), - ('0515109509', 'The Cat Who Moved A Mountain', 'https://images.isbndb.com/covers/95/04/9780515109504.jpg'), - ('0446355569', 'The City Of Joy', 'https://images.isbndb.com/covers/55/68/9780446355568.jpg'), - ('0192838601', 'Sons And Lovers (Oxford World''s Classics)', 'https://images.isbndb.com/covers/86/05/9780192838605.jpg'), - ('0140255036', 'Digging', 'https://images.isbndb.com/covers/50/34/9780140255034.jpg'), - ('020717055X', 'Crocodile Fury', 'https://images.isbndb.com/covers/05/53/9780207170553.jpg'), - ('0060173092', 'Ecstasy Club: A Novel', 'https://images.isbndb.com/covers/30/98/9780060173098.jpg'), - ('0151001820', 'The Club Dumas', 'https://images.isbndb.com/covers/18/28/9780151001828.jpg'), - ('0553100890', 'Star Wars: Shadows Of The Empire', 'https://images.isbndb.com/covers/08/91/9780553100891.jpg'), - ('0679437851', 'An Anthropologist On Mars: Seven Paradoxical Tales', 'https://images.isbndb.com/covers/78/57/9780679437857.jpg'), - ('0385483260', 'A Tale Of Two Cities (Penguin Readers, Level 6)', 'https://images.isbndb.com/covers/32/61/9780385483261.jpg'), - ('0446522252', 'Reason For Hope: A Spiritual Journey', 'https://images.isbndb.com/covers/22/50/9780446522250.jpg'), - ('0030844924', 'The Vantage Point: Perspectives Of The Presidency, 1963-1969', 'https://images.isbndb.com/covers/49/28/9780030844928.jpg'), - ('0816029091', 'Encyclopedia Of Gods: Over 2,500 Deities Of The World', 'https://images.isbndb.com/covers/90/99/9780816029099.jpg'), - ('1578660343', 'Quilt Masterpieces', 'https://images.isbndb.com/covers/03/46/9781578660346.jpg'), - ('0801431611', 'Madness In America: Cultural And Medical Perceptions Of Mental Illness Before 1914 (Cornell Studies In The History Of Psychiatry)', 'https://images.isbndb.com/covers/16/16/9780801431616.jpg'), - ('0696207397', '101 Full-Size Quilt Blocks And Borders (Better Homes & Gardens)', 'https://images.isbndb.com/covers/73/96/9780696207396.jpg'), - ('1567994741', 'The Quilt: Beauty In Fabric And Thread', 'https://images.isbndb.com/covers/47/42/9781567994742.jpg'), - ('0714835420', 'The 20th Century Art Book', 'https://images.isbndb.com/covers/54/26/9780714835426.jpg'), - ('0517159635', 'Civil Rights Movement: An Illustrated History', 'https://images.isbndb.com/covers/96/37/9780517159637.jpg'), - ('0140237712', 'The Encyclopedia Of Embroidery Techniques: The Unique Visual Directory Of All The Major Embroidery Techniques...', 'https://images.isbndb.com/covers/77/19/9780140237719.jpg'), - ('1566195268', 'Mark Twain On The Damned Human Race', 'https://images.isbndb.com/covers/52/63/9781566195263.jpg'), - ('1888363576', 'Grand Central Winter: Stories From The Street', 'https://images.isbndb.com/covers/35/79/9781888363579.jpg'), - ('0449225046', 'Black Lightning', 'https://images.isbndb.com/covers/50/42/9780449225042.jpg'), - ('0938985000', 'Mountain Memories III', 'https://images.isbndb.com/covers/50/06/9780938985006.jpg'), - ('0140161163', 'The Lifted Veil (Virago Modern Classics)', 'https://images.isbndb.com/covers/11/68/9780140161168.jpg'), - ('0671675427', 'Marie Curie: A Life', 'https://images.isbndb.com/covers/54/24/9780671675424.jpg'), - ('9510119342', 'Kasialatiedon Opas (Finnish Edition)', 'https://images.isbndb.com/covers/93/41/9789510119341.jpg'), - ('0899670202', 'Lassie Come Home', 'https://images.isbndb.com/covers/02/01/9780899670201.jpg'), - ('055326026X', 'Twisting The Rope ( Black Dragon Series )', 'https://images.isbndb.com/covers/02/67/9780553260267.jpg'), - ('0312989474', 'A Fine And Bitter Snow: A Kate Shugak Novel (Kate Shugak Mysteries)', 'https://images.isbndb.com/covers/94/77/9780312989477.jpg'), - ('0821602039', 'Mrs. Byrne''s Dictionary Of Unusual, Obscure, And Preposterous Words', 'https://images.isbndb.com/covers/20/34/9780821602034.jpg'), - ('0765342227', 'The Sky So Big And Black', 'https://images.isbndb.com/covers/22/25/9780765342225.jpg'), - ('0553273817', 'A Canticle For Leibowitz', 'https://images.isbndb.com/covers/38/16/9780553273816.jpg'), - ('0812520157', 'Speaker For The Dead (Ender''s Game Series, No. 2)', 'https://images.isbndb.com/covers/01/56/9780812520156.jpg'), - ('0399133038', 'Just Another Kid', 'https://images.isbndb.com/covers/30/39/9780399133039.jpg'), - ('0836217241', 'The Far Side ® Gallery 4', 'https://images.isbndb.com/covers/72/47/9780836217247.jpg'), - ('0553349058', 'Wisdom Of The Heart', 'https://images.isbndb.com/covers/90/54/9780553349054.jpg'), - ('0671318578', 'Retief! (A Collection Of Stories)', 'https://images.isbndb.com/covers/85/74/9780671318574.jpg'), - ('0142000264', 'Murder At Monticello: A Homer Kelly Mystery (Homer Kelly Mysteries)', 'https://images.isbndb.com/covers/02/67/9780142000267.jpg'), - ('0449208281', 'The Unexpected Mrs. Pollifax', 'https://images.isbndb.com/covers/82/81/9780449208281.jpg'), - ('0689312024', 'Izzy, Willy-Nilly', 'https://images.isbndb.com/covers/20/21/9780689312021.jpg'), - ('0451199448', 'So Sure Of Death (Liam Campbell Mysteries)', 'https://images.isbndb.com/covers/94/47/9780451199447.jpg'), - ('0446405345', 'The Raven In The Foregate (Brother Cadfael Mysteries)', 'https://images.isbndb.com/covers/53/48/9780446405348.jpg'), - ('0440227437', 'Black Cauldron, The', 'https://images.isbndb.com/covers/74/34/9780440227434.jpg'), - ('1585671487', 'Islandia', 'https://images.isbndb.com/covers/14/89/9781585671489.jpg'), - ('0446672351', 'Reservation Blues', 'https://images.isbndb.com/covers/23/51/9780446672351.jpg'), - ('0425158497', 'A Cold-Blooded Business (Kate Shugak Mystery)', 'https://images.isbndb.com/covers/84/94/9780425158494.jpg'), - ('0768322413', 'Destiny', 'https://images.isbndb.com/covers/24/15/9780768322415.jpg'), - ('0380003856', 'Harold And Maude', 'https://images.isbndb.com/covers/38/53/9780380003853.jpg'), - ('0099272687', 'Patchwork Planet Uk Edition', 'https://images.isbndb.com/covers/26/87/9780099272687.jpg'), - ('1860465536', 'Seville Communion (Panther S.)', 'https://images.isbndb.com/covers/55/36/9781860465536.jpg'), - ('0525945784', 'Touch The Top Of The World: A Blind Man''s Journey To Climb Farther Than The Eye Can See', 'https://images.isbndb.com/covers/57/89/9780525945789.jpg'), - ('085572191X', '100 Walks In Tasmania', 'https://images.isbndb.com/covers/19/16/9780855721916.jpg'), - ('0061064866', 'The Forgotten Filly (Thoroughbred Club)', 'https://images.isbndb.com/covers/48/69/9780061064869.jpg'), - ('0140280499', 'The Farming Of Bones', 'https://images.isbndb.com/covers/04/94/9780140280494.jpg'), - ('0140259708', 'Anything Considered', 'https://images.isbndb.com/covers/97/04/9780140259704.jpg'), - ('0345338588', 'On A Pale Horse (Incarnations Of Immortality, Bk. 1)', 'https://images.isbndb.com/covers/85/87/9780345338587.jpg'), - ('0345318854', 'With A Tangled Skein (Incarnations Of Immortality, Book 3)', 'https://images.isbndb.com/covers/88/55/9780345318855.jpg'), - ('0140133496', 'Graves In Academe', 'https://images.isbndb.com/covers/34/93/9780140133493.jpg'), - ('0061097101', 'The Saving Graces: A Novel', 'https://images.isbndb.com/covers/71/02/9780061097102.jpg'), - ('2246650119', 'Chroniques De Los Angeles', 'https://images.isbndb.com/covers/01/19/9782246650119.jpg'), - ('0708832725', 'Seeds Of Love A', 'https://images.isbndb.com/covers/27/21/9780708832721.jpg'), - ('1843336162', 'The Beginner''s Guide To Self Hypnosis', 'https://images.isbndb.com/covers/61/67/9781843336167.jpg'), - ('1570621284', 'Shambhala: Sacred Path Of The Warrior (Shambhala Pocket Classics)', 'https://images.isbndb.com/covers/12/84/9781570621284.jpg'), - ('0812516257', 'Nightside The Long Sun (Book Of The Long Sun)', 'https://images.isbndb.com/covers/62/58/9780812516258.jpg'), - ('0140104321', 'Cadillac Desert', 'https://images.isbndb.com/covers/43/25/9780140104325.jpg'), - ('0140250824', 'Thin He Was And Filthy-Haired', 'https://images.isbndb.com/covers/08/24/9780140250824.jpg'), - ('2266104535', 'Et Si C''était Vrai...', 'https://images.isbndb.com/covers/45/31/9782266104531.jpg'), - ('2020352257', 'Vice-versa', 'https://images.isbndb.com/covers/22/53/9782020352253.jpg'), - ('2070417212', 'La Légende D''Alexandre', 'https://images.isbndb.com/covers/72/16/9782070417216.jpg'), - ('0902920049', 'Rhyming Cockney Slang', 'https://images.isbndb.com/covers/00/40/9780902920040.jpg'), - ('1858286794', 'The Mini Rough Guide To Paris', 'https://images.isbndb.com/covers/67/92/9781858286792.jpg'), - ('0140622306', 'Portrait Of The Artist As A Young Man (Penguin Popular Classics)', 'https://images.isbndb.com/covers/23/00/9780140622300.jpg'), - ('0440432960', 'HENRY AND RIBSY', 'https://images.isbndb.com/covers/29/68/9780440432968.jpg'), - ('0345380975', 'Stranger At The Wedding', 'https://images.isbndb.com/covers/09/75/9780345380975.jpg'), - ('067102261X', 'The Sum Of All Men (Runelords)', 'https://images.isbndb.com/covers/26/17/9780671022617.jpg'), - ('055327449X', 'The Illustrated Man (Grand Master Editions)', 'https://images.isbndb.com/covers/44/93/9780553274493.jpg'), - ('0425093328', 'The Cat Who Walks Through Walls', 'https://images.isbndb.com/covers/33/20/9780425093320.jpg'), - ('0312979533', 'A Place Of Execution', 'https://images.isbndb.com/covers/95/39/9780312979539.jpg'), - ('1569470154', 'Queen And I', 'https://images.isbndb.com/covers/01/52/9781569470152.jpg'), - ('0439228913', 'Wuthering Heights', 'https://images.isbndb.com/covers/89/16/9780439228916.jpg'), - ('0060951281', 'Eva Luna (Spanish Language Edition)', 'https://images.isbndb.com/covers/12/83/9780060951283.jpg'), - ('0679879269', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/92/68/9780679879268.jpg'), - ('0679879250', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/92/51/9780679879251.jpg'), - ('0060951303', 'La Casa De Los Espíritus', 'https://images.isbndb.com/covers/13/06/9780060951306.jpg'), - ('0439456983', 'Lucas', 'https://images.isbndb.com/covers/69/82/9780439456982.jpg'), - ('0813511704', 'Quicksand And Passing (American Women Writers Series)', 'https://images.isbndb.com/covers/17/02/9780813511702.jpg'), - ('0312890249', 'Prince Ombra', 'https://images.isbndb.com/covers/02/47/9780312890247.jpg'), - ('0393310396', 'Letters To A Young Poet', 'https://images.isbndb.com/covers/03/99/9780393310399.jpg'), - ('0312253737', 'The Basic Eight', 'https://images.isbndb.com/covers/37/38/9780312253738.jpg'), - ('0451159497', 'Sphinx', 'https://images.isbndb.com/covers/94/96/9780451159496.jpg'), - ('0446675792', 'Shagadelically Speaking: The Words And World Of Austin Powers', 'https://images.isbndb.com/covers/57/96/9780446675796.jpg'), - ('0425155404', 'Invasion', 'https://images.isbndb.com/covers/54/00/9780425155400.jpg'), - ('0671535552', 'This Side Of Paradise (Pocket Professor)', 'https://images.isbndb.com/covers/55/51/9780671535551.jpg'), - ('0299177742', 'The Complete Poetry Of Catullus (Wisconsin Studies In Classics)', 'https://images.isbndb.com/covers/77/44/9780299177744.jpg'), - ('0140231900', 'Mr. Vertigo', 'https://images.isbndb.com/covers/19/08/9780140231908.jpg'), - ('0762411554', '110%: 110 Strategies For Feeling Great Every Day', 'https://images.isbndb.com/covers/15/59/9780762411559.jpg'), - ('0747543259', 'Breaks Uk Edition', 'https://images.isbndb.com/covers/32/51/9780747543251.jpg'), - ('9875021245', 'Dracula/ Dracula (Spanish Edition)', 'https://images.isbndb.com/covers/12/42/9789875021242.jpg'), - ('0486405524', 'The War Of The Worlds (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/55/20/9780486405520.jpg'), - ('0863560237', 'The Crusades Through Arab Eyes (Saqi Essentials)', 'https://images.isbndb.com/covers/02/31/9780863560231.jpg'), - ('0674810511', 'Six Walks In The Fictional Woods', 'https://images.isbndb.com/covers/05/18/9780674810518.jpg'), - ('0151002177', 'Animal Farm: A Fairy Story', 'https://images.isbndb.com/covers/21/77/9780151002177.jpg'), - ('0451458222', 'The Summer Tree (The Fionavar Tapestry, Book 1)', 'https://images.isbndb.com/covers/82/23/9780451458223.jpg'), - ('0613072103', 'Airframe', 'https://images.isbndb.com/covers/21/06/9780613072106.jpg'), - ('067945540X', 'Lost World (Movie Tie-In Edition)', 'https://images.isbndb.com/covers/54/00/9780679455400.jpg'), - ('0618002243', 'The Return Of The King (The Lord Of The Rings, Part 3)', 'https://images.isbndb.com/covers/22/45/9780618002245.jpg'), - ('0618002235', 'The Two Towers (The Lord Of The Rings, Part 2)', 'https://images.isbndb.com/covers/22/38/9780618002238.jpg'), - ('0618002227', 'The Fellowship Of The Ring (The Lord Of The Rings, Part 1)', 'https://images.isbndb.com/covers/22/21/9780618002221.jpg'), - ('0001047973', 'Brave New World', 'https://images.isbndb.com/covers/79/76/9780001047976.jpg'), - ('0452262933', '1984: 60th-Anniversary Edition (Plume)', 'https://images.isbndb.com/covers/29/35/9780452262935.jpg'), - ('0684838087', 'Weird Like Us: My Bohemian America', 'https://images.isbndb.com/covers/80/83/9780684838083.jpg'), - ('0517488906', 'Alices Adventures In Wonderland', 'https://images.isbndb.com/covers/89/04/9780517488904.jpg'), - ('0679740678', 'The Man In The High Castle', 'https://images.isbndb.com/covers/06/74/9780679740674.jpg'), - ('0330346520', 'Hollywood Lies (Pb)', 'https://images.isbndb.com/covers/65/28/9780330346528.jpg'), - ('0679735747', 'Walden', 'https://images.isbndb.com/covers/57/48/9780679735748.jpg'), - ('0060294884', 'The Paper Doorway: Funny Verse And Nothing Worse', 'https://images.isbndb.com/covers/48/85/9780060294885.jpg'), - ('0440206324', 'The Island', 'https://images.isbndb.com/covers/63/23/9780440206323.jpg'), - ('0812536304', 'Mysteries Of Bizarre Animals And Freaks Of Nature (Strange Unsolved Mysteries)', 'https://images.isbndb.com/covers/63/00/9780812536300.jpg'), - ('3404612493', 'Draußen!', 'https://images.isbndb.com/covers/24/99/9783404612499.jpg'), - ('344242528X', 'Philadelphia. Roman.', 'https://images.isbndb.com/covers/52/80/9783442425280.jpg'), - ('006447108X', 'The Last Battle', 'https://images.isbndb.com/covers/10/84/9780064471084.jpg'), - ('0451409973', 'Julie And Romeo', 'https://images.isbndb.com/covers/99/73/9780451409973.jpg'), - ('0821773712', 'Autumn Leaves', 'https://images.isbndb.com/covers/37/10/9780821773710.jpg'), - ('0590477390', 'Why I''m Afraid Of Bees (Goosebumps)', 'https://images.isbndb.com/covers/73/90/9780590477390.jpg'), - ('0345368622', 'Wild Jasmine', 'https://images.isbndb.com/covers/86/21/9780345368621.jpg'), - ('0380816792', 'A Rose In Winter', 'https://images.isbndb.com/covers/67/98/9780380816798.jpg'), - ('0451404459', 'Petals In The Storm (Fallen Angels)', 'https://images.isbndb.com/covers/44/59/9780451404459.jpg'), - ('0553577379', 'The Perennial Killer: A Gardening Mystery', 'https://images.isbndb.com/covers/73/72/9780553577372.jpg'), - ('0373106939', 'No Other Chance (Harlequin Presents #693)', 'https://images.isbndb.com/covers/69/36/9780373106936.jpg'), - ('0373260024', 'In Remembrance Of Rose', 'https://images.isbndb.com/covers/00/27/9780373260027.jpg'), - ('0804101507', 'Mayflower Madam: The Secret Life Of Sydney Biddle Barrows', 'https://images.isbndb.com/covers/15/09/9780804101509.jpg'), - ('0449206610', 'The Brotherhood Of The Rose', 'https://images.isbndb.com/covers/66/14/9780449206614.jpg'), - ('1551660431', 'Full Bloom', 'https://images.isbndb.com/covers/04/31/9781551660431.jpg'), - ('0887291228', 'Langenscheidt''s Universal German Dictionary: German-English English-German (English And German Edition)', 'https://images.isbndb.com/covers/12/27/9780887291227.jpg'), - ('0486428427', 'Hans Brinker, Or The Silver Skates (Dover Children''s Evergreen Classics)', 'https://images.isbndb.com/covers/84/20/9780486428420.jpg'), - ('0345250559', 'Flora Sweet', 'https://images.isbndb.com/covers/05/51/9780345250551.jpg'), - ('0440209102', 'The Rose Of Blacksword', 'https://images.isbndb.com/covers/91/02/9780440209102.jpg'), - ('0446306177', 'Amanda Rose', 'https://images.isbndb.com/covers/61/71/9780446306171.jpg'), - ('067187098X', 'For The Roses', 'https://images.isbndb.com/covers/09/80/9780671870980.jpg'), - ('1557488371', 'Flower Of The North (Heartsong Presents #159)', 'https://images.isbndb.com/covers/83/74/9781557488374.jpg'), - ('0671676369', 'Lily And The Major (The Orphan Train Trilogy)', 'https://images.isbndb.com/covers/63/60/9780671676360.jpg'), - ('0380844001', 'A Rose In Winter', 'https://images.isbndb.com/covers/40/05/9780380844005.jpg'), - ('0140620753', 'Northanger Abbey (Penguin Popular Classics)', 'https://images.isbndb.com/covers/07/57/9780140620757.jpg'), - ('0689714335', 'The Cat Who Went To Heaven', 'https://images.isbndb.com/covers/43/37/9780689714337.jpg'), - ('1893224201', 'Barbs From The Bard', 'https://images.isbndb.com/covers/42/09/9781893224209.jpg'), - ('1892859084', 'Webster''s New Explorer Spanish-English Dictionary', 'https://images.isbndb.com/covers/90/82/9781892859082.jpg'), - ('1565122321', 'The Unexpected Salami: A Novel', 'https://images.isbndb.com/covers/23/21/9781565122321.jpg'), - ('0064401103', 'Heaven To Betsy (Betsy-Tacy)', 'https://images.isbndb.com/covers/11/04/9780064401104.jpg'), - ('0064400980', 'Betsy And Tacy Go Downtown (Harper Trophy Book)', 'https://images.isbndb.com/covers/09/85/9780064400985.jpg'), - ('0064400999', 'Betsy And Tacy Go Over The Big Hill (Betsy-Tacy Book)', 'https://images.isbndb.com/covers/09/92/9780064400992.jpg'), - ('0064408582', 'Emily Of Deep Valley', 'https://images.isbndb.com/covers/85/85/9780064408585.jpg'), - ('3423126299', 'Vogelbeerbaum', 'https://images.isbndb.com/covers/62/98/9783423126298.jpg'), - ('3404102800', 'Spiel Der Herzen. Roman.', 'https://images.isbndb.com/covers/28/08/9783404102808.jpg'), - ('3453870336', 'Helden. Wohin Die Liebe Geht, Wenn Sie Geht', 'https://images.isbndb.com/covers/03/38/9783453870338.jpg'), - ('0525946632', 'Thieves'' Paradise: A Novel', 'https://images.isbndb.com/covers/66/32/9780525946632.jpg'), - ('0345369025', 'Garfield''s Feline Fantasies', 'https://images.isbndb.com/covers/90/24/9780345369024.jpg'), - ('0375823255', 'Mahalia', 'https://images.isbndb.com/covers/32/51/9780375823251.jpg'), - ('2070424197', 'La Joueuse De Go - Prix Goncourt Des Lycéens 2001', 'https://images.isbndb.com/covers/41/91/9782070424191.jpg'), - ('0440295521', 'The Runaway Jury', 'https://images.isbndb.com/covers/55/25/9780440295525.jpg'), - ('0140389660', 'That Was Then, This Is Now', 'https://images.isbndb.com/covers/96/61/9780140389661.jpg'), - ('3423125195', 'América: Roman', 'https://images.isbndb.com/covers/51/92/9783423125192.jpg'), - ('0842365508', 'Sticky Situations: 365 Devotions For Kids And Families', 'https://images.isbndb.com/covers/55/05/9780842365505.jpg'), - ('0140363033', 'The Magic Finger', 'https://images.isbndb.com/covers/30/36/9780140363036.jpg'), - ('0440503310', 'Cold Moons, The', 'https://images.isbndb.com/covers/33/16/9780440503316.jpg'), - ('0671674005', 'Long Distances', 'https://images.isbndb.com/covers/40/07/9780671674007.jpg'), - ('0312961049', 'School Of Hard Knocks (Ginger Barnes Main Line Mysteries)', 'https://images.isbndb.com/covers/10/46/9780312961046.jpg'), - ('0590431692', 'Hurray For Ali Baba Bernstein', 'https://images.isbndb.com/covers/16/99/9780590431699.jpg'), - ('0590489410', 'Bug Off!', 'https://images.isbndb.com/covers/94/16/9780590489416.jpg'), - ('0786889322', 'I''M NOT REALLY HERE', 'https://images.isbndb.com/covers/93/27/9780786889327.jpg'), - ('3499232634', 'Herzort', 'https://images.isbndb.com/covers/26/33/9783499232633.jpg'), - ('346202812X', 'Die Dame In Blau.', 'https://images.isbndb.com/covers/81/26/9783462028126.jpg'), - ('1400030382', 'The Piano Tuner: A Novel', 'https://images.isbndb.com/covers/03/85/9781400030385.jpg'), - ('3518100319', 'Der Kaukasische Kreidekreis (edition Suhrkamp)', 'https://images.isbndb.com/covers/03/18/9783518100318.jpg'), - ('3499233347', 'Höchste Zeit', 'https://images.isbndb.com/covers/33/40/9783499233340.jpg'), - ('3150006597', 'Antigone', 'https://images.isbndb.com/covers/65/97/9783150006597.jpg'), - ('3548208975', 'Die Möwe Jonathan', 'https://images.isbndb.com/covers/89/78/9783548208978.jpg'), - ('3379015180', 'Schlafes Bruder', 'https://images.isbndb.com/covers/51/89/9783379015189.jpg'), - ('0451078721', 'The Shining (Signet)', 'https://images.isbndb.com/covers/87/28/9780451078728.jpg'), - ('0553484508', 'Eaten Alive (Star Wars: Galaxy Of Fear, Book 1)', 'https://images.isbndb.com/covers/45/02/9780553484502.jpg'), - ('0706366468', 'Investing In Pensions (You & Your Money)', 'https://images.isbndb.com/covers/64/64/9780706366464.jpg'), - ('0375411070', 'Basket Case', 'https://images.isbndb.com/covers/10/76/9780375411076.jpg'), - ('0679749020', 'The Anatomy Lesson', 'https://images.isbndb.com/covers/90/28/9780679749028.jpg'), - ('0525934553', 'Black Water', 'https://images.isbndb.com/covers/45/54/9780525934554.jpg'), - ('0312860129', 'Return To The House Of Usher', 'https://images.isbndb.com/covers/01/27/9780312860127.jpg'), - ('051743623X', 'The Complete Plays Of William Shakespeare And Selected Verse From The Plays (Chatham River Press Paperback Library)', 'https://images.isbndb.com/covers/62/33/9780517436233.jpg'), - ('0375726845', 'Our Gang', 'https://images.isbndb.com/covers/68/42/9780375726842.jpg'), - ('0312080824', 'Great Expectations (Case Studies In Contemporary Criticism)', 'https://images.isbndb.com/covers/08/22/9780312080822.jpg'), - ('0891979867', 'Spanish Drama Of The Golden Age: Twelve Plays', 'https://images.isbndb.com/covers/98/69/9780891979869.jpg'), - ('0812881176', 'The Arrangement', 'https://images.isbndb.com/covers/11/72/9780812881172.jpg'), - ('1850892237', 'One Fat Englishman (Transaction Large Print Books)', 'https://images.isbndb.com/covers/22/36/9781850892236.jpg'), - ('1880399679', 'Ibsen: Four Major Plays, Vol. I', 'https://images.isbndb.com/covers/96/75/9781880399675.jpg'), - ('0671525247', 'Dialogues Of Plato (Enriched Classics (Pocket))', 'https://images.isbndb.com/covers/52/48/9780671525248.jpg'), - ('0440343690', 'I Heard The Owl Call My Name', 'https://images.isbndb.com/covers/36/91/9780440343691.jpg'), - ('0899664016', 'Cass Timberlane', 'https://images.isbndb.com/covers/40/19/9780899664019.jpg'), - ('0151807027', 'Selected Prose Of T.S. Eliot', 'https://images.isbndb.com/covers/70/24/9780151807024.jpg'), - ('1853260231', 'Frankenstein (Wordsworth Classics)', 'https://images.isbndb.com/covers/02/30/9781853260230.jpg'), - ('0099478110', 'Unloved', 'https://images.isbndb.com/covers/81/19/9780099478119.jpg'), - ('0553214543', 'Women In Love', 'https://images.isbndb.com/covers/45/43/9780553214543.jpg'), - ('0394746295', 'The Good Terrorist', 'https://images.isbndb.com/covers/62/96/9780394746296.jpg'), - ('0449210901', 'Zuckerman Bound', 'https://images.isbndb.com/covers/09/01/9780449210901.jpg'), - ('0553256653', 'Flowers For Algernon', 'https://images.isbndb.com/covers/66/59/9780553256659.jpg'), - ('0099825201', 'Deception', 'https://images.isbndb.com/covers/52/03/9780099825203.jpg'), - ('0451528204', 'Madame Bovary: 150th Anniversary Edition (Signet Classics)', 'https://images.isbndb.com/covers/82/09/9780451528209.jpg'), - ('0802135226', 'The Passion', 'https://images.isbndb.com/covers/52/23/9780802135223.jpg'), - ('0679768203', 'Art Objects: Essays On Ecstasy And Effrontery', 'https://images.isbndb.com/covers/82/03/9780679768203.jpg'), - ('0679441816', 'Our Game', 'https://images.isbndb.com/covers/18/16/9780679441816.jpg'), - ('1557832307', 'Cyrano De Bergerac: By Edmund Rostand Translated By Anthony Burgess', 'https://images.isbndb.com/covers/23/06/9781557832306.jpg'), - ('0452276721', 'The Ghost Road (William Abrahams)', 'https://images.isbndb.com/covers/67/27/9780452276727.jpg'), - ('078711457X', 'Inventing Memory: A Novel Of Mothers And Daughters', 'https://images.isbndb.com/covers/45/72/9780787114572.jpg'), - ('0452274796', 'Fear Of Flying: New Introduction', 'https://images.isbndb.com/covers/47/92/9780452274792.jpg'), - ('0060927518', 'Testaments Betrayed: Essay In Nine Parts, An', 'https://images.isbndb.com/covers/75/16/9780060927516.jpg'), - ('0140096949', 'The Farewell Party: Revised Edition', 'https://images.isbndb.com/covers/69/41/9780140096941.jpg'), - ('0806133678', 'Circle Of Women: An Anthology Of Contemporary Western Women Writers', 'https://images.isbndb.com/covers/36/76/9780806133676.jpg'), - ('0691086192', 'Post-Modernism And The Social Sciences: Insights, Inroads, And Intrusions', 'https://images.isbndb.com/covers/61/94/9780691086194.jpg'), - ('0375410414', 'Friendship With God: An Uncommon Dialogue', 'https://images.isbndb.com/covers/04/13/9780375410413.jpg'), - ('1569246483', 'The Storyteller''s Goddess: Tales Of The Goddess And Her Wisdom From Around The World', 'https://images.isbndb.com/covers/64/81/9781569246481.jpg'), - ('1567184766', 'Death: Beginning Or End?: Methods For Immortality', 'https://images.isbndb.com/covers/47/61/9781567184761.jpg'), - ('0813519942', 'Yellow WallPaper (Women Writers)', 'https://images.isbndb.com/covers/99/44/9780813519944.jpg'), - ('0394497848', 'Song Of Solomon', 'https://images.isbndb.com/covers/78/46/9780394497846.jpg'), - ('0940322587', 'The Radiance Of The King (New York Review Books Classics)', 'https://images.isbndb.com/covers/25/85/9780940322585.jpg'), - ('0375712925', 'The Emperor Of Ocean Park', 'https://images.isbndb.com/covers/29/20/9780375712920.jpg'), - ('1582340331', 'Blood Ties', 'https://images.isbndb.com/covers/03/33/9781582340333.jpg'), - ('0446678457', 'Cane River (Oprah''s Book Club)', 'https://images.isbndb.com/covers/84/52/9780446678452.jpg'), - ('0345410998', 'Street Boys', 'https://images.isbndb.com/covers/09/93/9780345410993.jpg'), - ('0399149155', 'Q Is For Quarry (Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/91/53/9780399149153.jpg'), - ('0553264303', 'The Osterman Weekend', 'https://images.isbndb.com/covers/43/02/9780553264302.jpg'), - ('0553107003', 'Storm Warning', 'https://images.isbndb.com/covers/70/05/9780553107005.jpg'), - ('0440178002', 'Shogun', 'https://images.isbndb.com/covers/80/02/9780440178002.jpg'), - ('0717127516', 'Irish Legends', 'https://images.isbndb.com/covers/75/11/9780717127511.jpg'), - ('0385243022', 'Daphne Du Maurier''s Classics Of The Macabre', 'https://images.isbndb.com/covers/30/25/9780385243025.jpg'), - ('0446390895', 'That''s Not All Folks!', 'https://images.isbndb.com/covers/08/97/9780446390897.jpg'), - ('1573220167', 'High Fidelity', 'https://images.isbndb.com/covers/01/63/9781573220163.jpg'), - ('0060173211', 'Don''t Pee On My Leg And Tell Me It''s Raining', 'https://images.isbndb.com/covers/32/10/9780060173210.jpg'), - ('0316172006', 'The Damnable Question: A Study In Anglo-Irish Relations', 'https://images.isbndb.com/covers/20/04/9780316172004.jpg'), - ('0679415645', 'Cruising Paradise', 'https://images.isbndb.com/covers/56/40/9780679415640.jpg'), - ('0060976241', 'The Lone Ranger And Tonto Fistfight In Heaven', 'https://images.isbndb.com/covers/62/48/9780060976248.jpg'), - ('0767905202', 'Mr. Maybe: A Novel', 'https://images.isbndb.com/covers/52/06/9780767905206.jpg'), - ('315009951X', 'Die Lokalbahn: Komödie In Drei Akten', 'https://images.isbndb.com/covers/95/13/9783150099513.jpg'), - ('033034692X', 'The Cure: Faith', 'https://images.isbndb.com/covers/69/24/9780330346924.jpg'), - ('3442727952', 'Gefährliche Geliebte: Roman', 'https://images.isbndb.com/covers/79/57/9783442727957.jpg'), - ('1740590651', 'Lonely Planet Australia', 'https://images.isbndb.com/covers/06/55/9781740590655.jpg'), - ('1740590120', 'Lonely Planet East Coast Australia: Classic Overland Route', 'https://images.isbndb.com/covers/01/29/9781740590129.jpg'), - ('1863305130', 'Generation F: Sex, Power, And The Young Feminist', 'https://images.isbndb.com/covers/51/36/9781863305136.jpg'), - ('0140287698', '48 Shades Of Brown', 'https://images.isbndb.com/covers/76/91/9780140287691.jpg'), - ('0671034979', 'The Starr Evidence', 'https://images.isbndb.com/covers/49/79/9780671034979.jpg'), - ('1583225579', 'Information War: American Propaganda, Free Speech, And Opinion Control Since 9/11', 'https://images.isbndb.com/covers/55/78/9781583225578.jpg'), - ('0702228524', 'See Through', 'https://images.isbndb.com/covers/85/20/9780702228520.jpg'), - ('0330358561', 'Shooting Elvis', 'https://images.isbndb.com/covers/85/69/9780330358569.jpg'), - ('0702227218', 'Just A Prostitute (Uqp Paperbacks)', 'https://images.isbndb.com/covers/72/19/9780702227219.jpg'), - ('073225700X', 'The Onager (Moonstone)', 'https://images.isbndb.com/covers/70/02/9780732257002.jpg'), - ('0868246778', 'Passing Remarks', 'https://images.isbndb.com/covers/67/72/9780868246772.jpg'), - ('0671018280', 'Diana And Dodi: A Love Story Pb', 'https://images.isbndb.com/covers/82/83/9780671018283.jpg'), - ('0590603884', 'Blood Curse (Vampire''s Love No. 1)', 'https://images.isbndb.com/covers/38/81/9780590603881.jpg'), - ('0618131736', 'The Best American Short Stories 2002 (The Best American Series)', 'https://images.isbndb.com/covers/17/30/9780618131730.jpg'), - ('0060185252', 'Faithless: Tales Of Transgression', 'https://images.isbndb.com/covers/52/51/9780060185251.jpg'), - ('0688170528', 'The Pact: A Love Story', 'https://images.isbndb.com/covers/05/23/9780688170523.jpg'), - ('0743225082', 'Man And Boy: A Novel', 'https://images.isbndb.com/covers/50/83/9780743225083.jpg'), - ('0758201087', 'The Price Of Pleasure', 'https://images.isbndb.com/covers/10/89/9780758201089.jpg'), - ('0425184943', 'Blue Diary', 'https://images.isbndb.com/covers/49/43/9780425184943.jpg'), - ('0201570971', 'Dr. Susan Love''s Breast Book', 'https://images.isbndb.com/covers/09/77/9780201570977.jpg'), - ('067086014X', 'Songs In Ordinary Time (Oprah''s Book Club)', 'https://images.isbndb.com/covers/01/42/9780670860142.jpg'), - ('0864922108', 'Season Of Apples', 'https://images.isbndb.com/covers/21/06/9780864922106.jpg'), - ('0821765868', 'Border Fire', 'https://images.isbndb.com/covers/58/69/9780821765869.jpg'), - ('1551660733', 'Only Forever', 'https://images.isbndb.com/covers/07/38/9781551660738.jpg'), - ('0312977409', 'House Of Dreams', 'https://images.isbndb.com/covers/74/05/9780312977405.jpg'), - ('0843941774', 'The Forever Bride (Timeswept)', 'https://images.isbndb.com/covers/17/77/9780843941777.jpg'), - ('0515120626', 'Just Once', 'https://images.isbndb.com/covers/06/22/9780515120622.jpg'), - ('0440212308', 'Lions And Lace', 'https://images.isbndb.com/covers/23/00/9780440212300.jpg'), - ('038076766X', 'Almost A Lady', 'https://images.isbndb.com/covers/76/63/9780380767663.jpg'), - ('038075942X', 'Dream Fever', 'https://images.isbndb.com/covers/94/22/9780380759422.jpg'), - ('0515077437', 'Lawless Heart', 'https://images.isbndb.com/covers/74/38/9780515077438.jpg'), - ('067102177X', 'The Clayborne Brides: One Pink Rose / One White Rose / One Red Rose (3 Books In 1)', 'https://images.isbndb.com/covers/17/71/9780671021771.jpg'), - ('0380761327', 'Flowers From The Storm', 'https://images.isbndb.com/covers/13/26/9780380761326.jpg'), - ('055358183X', 'The Bride And The Beast', 'https://images.isbndb.com/covers/18/36/9780553581836.jpg'), - ('0843949848', 'My Fair Viking', 'https://images.isbndb.com/covers/98/41/9780843949841.jpg'), - ('0671867164', 'The Lottery Winner: Alvirah And Willy Stories', 'https://images.isbndb.com/covers/71/64/9780671867164.jpg'), - ('0060955635', 'Young Wives: A Novel', 'https://images.isbndb.com/covers/56/32/9780060955632.jpg'), - ('0688013929', 'A History Of The End Of The World (An Invisible Book)', 'https://images.isbndb.com/covers/39/29/9780688013929.jpg'), - ('1558748903', 'Chicken Soup For The Mother''s Soul 2: More Stories To Open The Hearts And Rekindle The Spirits Of Mothers', 'https://images.isbndb.com/covers/89/03/9781558748903.jpg'), - ('0684841371', 'Until Today!: Daily Devotions For Spiritual Growth And Peace Of Mind', 'https://images.isbndb.com/covers/13/73/9780684841373.jpg'), - ('0739405047', 'Lip Service', 'https://images.isbndb.com/covers/50/48/9780739405048.jpg'), - ('0804108412', 'Damage', 'https://images.isbndb.com/covers/84/16/9780804108416.jpg'), - ('0394589955', 'Vox', 'https://images.isbndb.com/covers/99/54/9780394589954.jpg'), - ('0385414250', 'Break The Heart Of Me', 'https://images.isbndb.com/covers/42/58/9780385414258.jpg'), - ('0312120001', 'Topping From Below', 'https://images.isbndb.com/covers/00/09/9780312120009.jpg'), - ('0060740450', 'One Hundred Years Of Solitude (Oprah''s Book Club)', 'https://images.isbndb.com/covers/04/50/9780060740450.jpg'), - ('0802111815', 'Wild At Heart: The Story Of Sailor And Lula', 'https://images.isbndb.com/covers/18/14/9780802111814.jpg'), - ('0836220498', 'Night Of The Crash-Test Dummies', 'https://images.isbndb.com/covers/04/90/9780836220490.jpg'), - ('0800781562', 'The Hiding Place', 'https://images.isbndb.com/covers/15/69/9780800781569.jpg'), - ('0881334588', 'Road Belong Cargo: A Study Of The Cargo Movement In The Southern Madang District, New Guinea', 'https://images.isbndb.com/covers/45/86/9780881334586.jpg'), - ('0679730680', 'Not Available In Any Store', 'https://images.isbndb.com/covers/06/82/9780679730682.jpg'), - ('0671420186', 'Songs Of The Doomed: More Notes On The Death Of The American Dream Gonzo Papers', 'https://images.isbndb.com/covers/01/85/9780671420185.jpg'), - ('0312081944', 'For The Love Of A Child', 'https://images.isbndb.com/covers/19/42/9780312081942.jpg'), - ('3499138956', 'Ein Bär Will Nach Oben', 'https://images.isbndb.com/covers/89/59/9783499138959.jpg'), - ('3426611457', 'Heimweg Nach Kilmoran', 'https://images.isbndb.com/covers/14/56/9783426611456.jpg'), - ('0702228230', 'After January (Uqp Young Adult Fiction)', 'https://images.isbndb.com/covers/82/30/9780702228230.jpg'), - ('0878579915', 'The Rodale Book Of Composting: Easy Methods For Every Gardener', 'https://images.isbndb.com/covers/99/14/9780878579914.jpg'), - ('156512281X', '100 Birds And How They Got Their Names', 'https://images.isbndb.com/covers/28/19/9781565122819.jpg'), - ('1551660717', 'Forbidden Fruit', 'https://images.isbndb.com/covers/07/14/9781551660714.jpg'), - ('0451199685', 'False Pretenses (Contemporary Romantic Thriller)', 'https://images.isbndb.com/covers/96/83/9780451199683.jpg'), - ('0385189508', 'Grimms'' Tales For Young And Old: The Complete Stories', 'https://images.isbndb.com/covers/95/07/9780385189507.jpg'), - ('0810933160', 'Flowers, Birds, And Unicorns: Medieval Needlepoint', 'https://images.isbndb.com/covers/31/63/9780810933163.jpg'), - ('1565121384', '100 Flowers And How They Got Their Names', 'https://images.isbndb.com/covers/13/86/9781565121386.jpg'), - ('0395653738', 'Noah''s Garden: Restoring The Ecology Of Our Own Backyards', 'https://images.isbndb.com/covers/37/39/9780395653739.jpg'), - ('0312170955', 'Fantastic Folds: Origami Projects', 'https://images.isbndb.com/covers/09/50/9780312170950.jpg'), - ('0152013415', 'Down To Earth', 'https://images.isbndb.com/covers/34/17/9780152013417.jpg'), - ('0679441018', 'Memnoch, The Devil. The Vampire Chronicles.', 'https://images.isbndb.com/covers/10/14/9780679441014.jpg'), - ('0345377648', 'Lasher (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/76/47/9780345377647.jpg'), - ('0201409429', '101 Corporate Haiku', 'https://images.isbndb.com/covers/94/20/9780201409420.jpg'), - ('0765107619', 'Dragonfly Beetle Butterfly Bee (Maryjo Koch Series)', 'https://images.isbndb.com/covers/76/19/9780765107619.jpg'), - ('0140052801', 'Dracula', 'https://images.isbndb.com/covers/28/00/9780140052800.jpg'), - ('1853687022', 'Make Your Own Patterns: An Easy Step-By-Step Guide To Making Over 60 Patterns', 'https://images.isbndb.com/covers/70/20/9781853687020.jpg'), - ('068815512X', 'The Purpose Of Your Life: Finding Your Place In The World Using Synchronicity, Intuition, And Uncommon Sense', 'https://images.isbndb.com/covers/51/24/9780688155124.jpg'), - ('155870406X', 'Stage Costume Step-By-Step: The Complete Guide To Designing And Making Stage Costumes For All Major Drama Periods And Genres From Classical Through The Twentieth Century', 'https://images.isbndb.com/covers/40/60/9781558704060.jpg'), - ('0679723005', 'The Book: On The Taboo Against Knowing Who You Are', 'https://images.isbndb.com/covers/30/04/9780679723004.jpg'), - ('1555830617', 'Choices', 'https://images.isbndb.com/covers/06/18/9781555830618.jpg'), - ('0312420048', 'Pages For You: A Novel', 'https://images.isbndb.com/covers/00/48/9780312420048.jpg'), - ('1578591473', 'The Fortune-Telling Book: The Encyclopedia Of Divination And Soothsaying', 'https://images.isbndb.com/covers/14/73/9781578591473.jpg'), - ('0062511173', 'Nothing Special', 'https://images.isbndb.com/covers/11/71/9780062511171.jpg'), - ('0394719999', 'Cloud-hidden, Whereabouts Unknown: A Mountain Journal', 'https://images.isbndb.com/covers/99/93/9780394719993.jpg'), - ('0135113385', 'The Joy Within: Step-by-step Guide To Meditation', 'https://images.isbndb.com/covers/33/87/9780135113387.jpg'), - ('0807032530', 'Drawing Down The Moon : Witches, Druids, Goddess-Worshippers, And Other Pagans In America Today', 'https://images.isbndb.com/covers/25/34/9780807032534.jpg'), - ('0449910172', 'Out Of The Garden: Women Writers On The Bible', 'https://images.isbndb.com/covers/01/77/9780449910177.jpg'), - ('0395353440', 'Zen Effects: The Life Of Alan Watts', 'https://images.isbndb.com/covers/34/48/9780395353448.jpg'), - ('0345310020', 'Chronicle Of A Death Foretold', 'https://images.isbndb.com/covers/00/26/9780345310026.jpg'), - ('0679891072', 'Rescue Party (Dinotopia, Book 9)', 'https://images.isbndb.com/covers/10/79/9780679891079.jpg'), - ('0394751019', 'The Persian Boy', 'https://images.isbndb.com/covers/10/16/9780394751016.jpg'), - ('0064403688', 'Jacob Have I Loved', 'https://images.isbndb.com/covers/36/89/9780064403689.jpg'), - ('0064472795', 'Princess In The Spotlight (The Princess Diaries, Vol. 2)', 'https://images.isbndb.com/covers/27/91/9780064472791.jpg'), - ('0679783598', 'The Seeker''s Guide (previously Published As The New American Spirituality)', 'https://images.isbndb.com/covers/35/96/9780679783596.jpg'), - ('0595271618', 'Words Like Weeds, Book One: Ring Around The Moon', 'https://images.isbndb.com/covers/16/10/9780595271610.jpg'), - ('031230093X', 'Savage Girls And Wild Boys: A History Of Feral Children', 'https://images.isbndb.com/covers/09/37/9780312300937.jpg'), - ('0140434941', 'David Copperfield (Penguin Classics)', 'https://images.isbndb.com/covers/49/41/9780140434941.jpg'), - ('0152380418', 'If I Should Die Before I Wake', 'https://images.isbndb.com/covers/04/10/9780152380410.jpg'), - ('0590467158', 'When She Hollers', 'https://images.isbndb.com/covers/71/55/9780590467155.jpg'), - ('0689835337', 'The Watcher', 'https://images.isbndb.com/covers/53/39/9780689835339.jpg'), - ('0374480095', 'Tuck Everlasting (A Sunburst Book)', 'https://images.isbndb.com/covers/00/97/9780374480097.jpg'), - ('3257056109', 'Das Parfum: Die Geschichte Eines Mörders', 'https://images.isbndb.com/covers/61/05/9783257056105.jpg'), - ('0425177432', 'Murder At Manasses (Harrison Raines Civil War Mysteries, Book 1)', 'https://images.isbndb.com/covers/74/33/9780425177433.jpg'), - ('0684859998', 'Every Day I Pray : Prayers For Awakening To The Grace Of Inner Communion', 'https://images.isbndb.com/covers/99/96/9780684859996.jpg'), - ('0688154395', 'Rose Daughter', 'https://images.isbndb.com/covers/43/94/9780688154394.jpg'), - ('0684848147', 'Imperfect Control: Our Lifelong Struggles With Power And Surrender', 'https://images.isbndb.com/covers/81/43/9780684848143.jpg'), - ('0684848120', 'The Motley Fools You Have More Than You Think: The Foolish Guide To Investing What You Have (Motley Fool Books)', 'https://images.isbndb.com/covers/81/29/9780684848129.jpg'), - ('0553210351', 'The Death Of Ivan Ilyich (Bantam Classics)', 'https://images.isbndb.com/covers/03/54/9780553210354.jpg'), - ('1567313965', 'Understanding Attention Deficit Disorder: Ground-Breaking Methods Of Diagnosis And Treatment', 'https://images.isbndb.com/covers/39/63/9781567313963.jpg'), - ('0375401458', 'Night Falls Fast: Understanding Suicide', 'https://images.isbndb.com/covers/14/59/9780375401459.jpg'), - ('0671528165', 'People Of The Lie: The Hope For Healing Human Evil', 'https://images.isbndb.com/covers/81/64/9780671528164.jpg'), - ('006251184X', 'Undercurrents: A Life Beneath The Surface', 'https://images.isbndb.com/covers/18/43/9780062511843.jpg'), - ('0515128325', 'After The Fall', 'https://images.isbndb.com/covers/83/21/9780515128321.jpg'), - ('0140276823', 'The Way Between The Worlds (View From The Mirror)', 'https://images.isbndb.com/covers/68/24/9780140276824.jpg'), - ('3596137306', 'Romeo Und Julia. Das Buch Zum Film.', 'https://images.isbndb.com/covers/73/05/9783596137305.jpg'), - ('3596237874', 'Beim Nächsten Mann Wird Alles Anders (Frau In Der Gesellschaft)', 'https://images.isbndb.com/covers/78/76/9783596237876.jpg'), - ('0380820757', 'My Brother Michael', 'https://images.isbndb.com/covers/07/57/9780380820757.jpg'), - ('0807062995', 'The Female Man (Bluestreak)', 'https://images.isbndb.com/covers/29/99/9780807062999.jpg'), - ('0786865148', 'A Long Way Home: Twelve Years Of Words', 'https://images.isbndb.com/covers/51/47/9780786865147.jpg'), - ('0345322061', 'Making Peace With Yourself (Formerly Titled : The Achilles Syndrome)', 'https://images.isbndb.com/covers/20/67/9780345322067.jpg'), - ('0764552988', 'Spirituality For Dummies', 'https://images.isbndb.com/covers/29/84/9780764552984.jpg'), - ('0811809935', 'How To Draw A Radish: And Other Fun Things To Do At Work', 'https://images.isbndb.com/covers/99/31/9780811809931.jpg'), - ('0943015073', 'The I Ching: The Book Of Changes And How To Use It', 'https://images.isbndb.com/covers/50/71/9780943015071.jpg'), - ('0140361219', 'Winnie-the-Pooh (Pooh Original Edition)', 'https://images.isbndb.com/covers/12/16/9780140361216.jpg'), - ('0553269631', 'The Heart Is A Lonely Hunter', 'https://images.isbndb.com/covers/96/35/9780553269635.jpg'), - ('0553272543', 'Ballad Of The Sad Cafe', 'https://images.isbndb.com/covers/25/43/9780553272543.jpg'), - ('0671887173', 'Daily Reflections For Highly Effective People: Living The 7 Habits Of Highly Effective People Every Day', 'https://images.isbndb.com/covers/71/79/9780671887179.jpg'), - ('0553285726', 'Journey Of Awakening: A Meditator''s Guidebook', 'https://images.isbndb.com/covers/57/27/9780553285727.jpg'), - ('0062552767', 'Daily Meditations For Practicing The Course', 'https://images.isbndb.com/covers/27/61/9780062552761.jpg'), - ('0671787004', 'New Book Of Rock Lists', 'https://images.isbndb.com/covers/70/04/9780671787004.jpg'), - ('0060919760', 'Your Erroneous Zones: Step-by-Step Advice For Escaping The Trap Of Negative Thinking And Taking Control Of Your Life', 'https://images.isbndb.com/covers/97/64/9780060919764.jpg'), - ('0060507233', 'Buddhism Is Not What You Think: Finding Freedom Beyond Beliefs', 'https://images.isbndb.com/covers/72/37/9780060507237.jpg'), - ('0915811006', 'Way Of The Peaceful Warrior: A Book That Changes Lives', 'https://images.isbndb.com/covers/10/07/9780915811007.jpg'), - ('1558744274', 'Bradshaw On: The Family: A New Way Of Creating Solid Self-Esteem', 'https://images.isbndb.com/covers/42/71/9781558744271.jpg'), - ('0192829823', 'Walden (Oxford World''s Classics)', 'https://images.isbndb.com/covers/98/25/9780192829825.jpg'), - ('1567314163', 'The 12 Secrets Of Highly Creative Women: A Portable Mentor', 'https://images.isbndb.com/covers/41/68/9781567314168.jpg'), - ('0743416996', 'Soul Prints: Your Path To Fulfillment', 'https://images.isbndb.com/covers/69/93/9780743416993.jpg'), - ('0786880708', 'Wherever You Go, There You Are: Mindfulness Meditation In Everyday Life', 'https://images.isbndb.com/covers/07/06/9780786880706.jpg'), - ('1561703753', 'Well Of Creativity (New Dimensions Books)', 'https://images.isbndb.com/covers/37/53/9781561703753.jpg'), - ('0452272041', 'Reinventing Your Life: The Breakthough Program To End Negative Behavior...and Feel Great Again', 'https://images.isbndb.com/covers/20/40/9780452272040.jpg'), - ('0316133175', 'The Thinker''s Way : 8 Steps To A Richer Life', 'https://images.isbndb.com/covers/31/73/9780316133173.jpg'), - ('0878331859', 'That''s Not In My American History Book: A Compilation Of Little-Known Events And Forgotten Heroes', 'https://images.isbndb.com/covers/18/57/9780878331857.jpg'), - ('0679600442', 'The Red Badge Of Courage (Modern Library Series)', 'https://images.isbndb.com/covers/04/42/9780679600442.jpg'), - ('1567314260', 'Imagine A Woman In Love With Herself: Embracing Your Wisdom And Wholeness', 'https://images.isbndb.com/covers/42/67/9781567314267.jpg'), - ('1573241172', 'The Book Of Awakening: Having The Life You Want By Being Present To The Life You Have', 'https://images.isbndb.com/covers/11/75/9781573241175.jpg'), - ('0345311000', 'HOW TO GET WHAT YOU REALLY WANT, A UNIQUE, STEP-BY-STEP PLAN TO PINPOINT YOUR GOALS AND MAKE YOUR DREAMS COM TRUE', 'https://images.isbndb.com/covers/10/09/9780345311009.jpg'), - ('0849916836', 'He Did This Just For You', 'https://images.isbndb.com/covers/68/30/9780849916830.jpg'), - ('0764553143', 'Accounting For Dummies', 'https://images.isbndb.com/covers/31/41/9780764553141.jpg'), - ('3462029592', 'Ich Glaube, Er Hat Schluss Gemacht', 'https://images.isbndb.com/covers/95/98/9783462029598.jpg'), - ('3499121581', 'Rubinroter Dschungel', 'https://images.isbndb.com/covers/15/86/9783499121586.jpg'), - ('3453210719', 'Ich Ein Tag Sprechen Hübsch', 'https://images.isbndb.com/covers/07/14/9783453210714.jpg'), - ('0380728249', 'Almost Adam', 'https://images.isbndb.com/covers/82/44/9780380728244.jpg'), - ('0380792648', 'Subterranean', 'https://images.isbndb.com/covers/26/41/9780380792641.jpg'), - ('0553242598', 'Tsunami', 'https://images.isbndb.com/covers/25/91/9780553242591.jpg'), - ('0385031149', 'Goethe''s Faust', 'https://images.isbndb.com/covers/11/41/9780385031141.jpg'), - ('0836982215', 'Critic''s Choice: New York Drama Critics'' Circle Prize Plays, 1935-55 (Play Anthology Reprint Series)', 'https://images.isbndb.com/covers/22/13/9780836982213.jpg'), - ('0451171128', 'Cat On A Hot Tin Roof (Signet)', 'https://images.isbndb.com/covers/11/22/9780451171122.jpg'), - ('0061052280', 'David Copperfield''s Tales Of The Impossible', 'https://images.isbndb.com/covers/22/86/9780061052286.jpg'), - ('0140620850', 'Vanity Fair (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/56/9780140620856.jpg'), - ('3462032208', '31 Songs', 'https://images.isbndb.com/covers/22/08/9783462032208.jpg'), - ('0060925795', 'Medieval Lives: Eight Charismatic Men And Women Of The Middle Ages', 'https://images.isbndb.com/covers/57/96/9780060925796.jpg'), - ('189162007X', 'Others Unknown : The Oklahoma City Bombing Conspiracy', 'https://images.isbndb.com/covers/00/72/9781891620072.jpg'), - ('0931580633', 'Do It! Let''s Get Off Our But''s (The Life 101 Series)', 'https://images.isbndb.com/covers/06/35/9780931580635.jpg'), - ('0684839873', 'Driving To Detroit : An Automotive Odyssey', 'https://images.isbndb.com/covers/98/75/9780684839875.jpg'), - ('0156006820', 'Be Sweet: A Conditional Love Story', 'https://images.isbndb.com/covers/68/28/9780156006828.jpg'), - ('068483295X', 'Mountain Time: A Novel', 'https://images.isbndb.com/covers/29/51/9780684832951.jpg'), - ('0670852627', 'The Magic Touch: A Novel', 'https://images.isbndb.com/covers/26/28/9780670852628.jpg'), - ('0871138018', 'The Absolutely True Diary Of A Part-Time Indian', 'https://images.isbndb.com/covers/80/19/9780871138019.jpg'), - ('0201877589', 'Unix System Programming (2nd Edition)', 'https://images.isbndb.com/covers/75/88/9780201877588.jpg'), - ('0596001967', 'Web Design In A Nutshell', 'https://images.isbndb.com/covers/19/64/9780596001964.jpg'), - ('1568654383', 'Year''s Best SF 2', 'https://images.isbndb.com/covers/43/86/9781568654386.jpg'), - ('0764551280', 'Landscaping For Dummies', 'https://images.isbndb.com/covers/12/84/9780764551284.jpg'), - ('0669164062', 'Calculus With Analytic Geometry', 'https://images.isbndb.com/covers/40/60/9780669164060.jpg'), - ('283151794X', 'Berlitz Essential Japanese', 'https://images.isbndb.com/covers/79/40/9782831517940.jpg'), - ('1556618123', 'Drums Of Change (Women Of The West #12)', 'https://images.isbndb.com/covers/81/23/9781556618123.jpg'), - ('0380812924', 'Hokkaido Popsicle', 'https://images.isbndb.com/covers/29/29/9780380812929.jpg'), - ('0812550293', 'The Path Of Daggers (The Wheel Of Time, Book 8)', 'https://images.isbndb.com/covers/02/90/9780812550290.jpg'), - ('0679751319', 'Dead Man Walking: An Eyewitness Account Of The Death Penalty In The United States', 'https://images.isbndb.com/covers/13/11/9780679751311.jpg'), - ('0316285269', 'White Oleander', 'https://images.isbndb.com/covers/52/61/9780316285261.jpg'), - ('0553277537', 'Dandelion Wine (Grand Master Editions)', 'https://images.isbndb.com/covers/75/31/9780553277531.jpg'), - ('0440502721', 'Boyd''s Curiosity Shop', 'https://images.isbndb.com/covers/27/22/9780440502722.jpg'), - ('207036805X', 'La Nausée', 'https://images.isbndb.com/covers/80/51/9782070368051.jpg'), - ('0553234161', 'Cannery Row', 'https://images.isbndb.com/covers/41/69/9780553234169.jpg'), - ('0812502841', 'The Vietnam Legacy', 'https://images.isbndb.com/covers/28/48/9780812502848.jpg'), - ('0671640585', 'Night Of Fox', 'https://images.isbndb.com/covers/05/83/9780671640583.jpg'), - ('1586480286', 'The King Of California: J.G. Boswell And The Making Of A Secret American Empire', 'https://images.isbndb.com/covers/02/88/9781586480288.jpg'), - ('1558596909', 'The Expectant Father: Facts, Tips, And Advice For Dads-To-Be', 'https://images.isbndb.com/covers/69/00/9781558596900.jpg'), - ('0449910237', 'Moo', 'https://images.isbndb.com/covers/02/38/9780449910238.jpg'), - ('0553235575', 'Mysterious Affair At Styles', 'https://images.isbndb.com/covers/55/79/9780553235579.jpg'), - ('0020519605', 'A Moveable Feast (Scribner Classic)', 'https://images.isbndb.com/covers/96/07/9780020519607.jpg'), - ('0140274375', 'The Underground Man', 'https://images.isbndb.com/covers/43/70/9780140274370.jpg'), - ('0140024018', 'Monkey Planet', 'https://images.isbndb.com/covers/40/12/9780140024012.jpg'), - ('0425138151', 'Breaking Blue', 'https://images.isbndb.com/covers/81/51/9780425138151.jpg'), - ('1550376284', 'After Hamelin', 'https://images.isbndb.com/covers/62/89/9781550376289.jpg'), - ('0375725202', 'Was This Man A Genius?: Talks With Andy Kaufman', 'https://images.isbndb.com/covers/52/03/9780375725203.jpg'), - ('0140306323', 'The Tombs Of Atuan (The Earthsea Cycle, Book 2)', 'https://images.isbndb.com/covers/63/23/9780140306323.jpg'), - ('0140048987', 'Gadget (Penguin Crime Fiction)', 'https://images.isbndb.com/covers/89/88/9780140048988.jpg'), - ('0671878549', 'The Ship Errant', 'https://images.isbndb.com/covers/85/42/9780671878542.jpg'), - ('0671730134', 'Forever''s Team', 'https://images.isbndb.com/covers/01/30/9780671730130.jpg'), - ('0446520667', 'Beyond The Horizon: Visions Of The New Millennium', 'https://images.isbndb.com/covers/06/69/9780446520669.jpg'), - ('0706406141', 'POPULAR ANTIQUES', 'https://images.isbndb.com/covers/61/46/9780706406146.jpg'), - ('087474945X', 'Magnificent Voyagers', 'https://images.isbndb.com/covers/94/58/9780874749458.jpg'), - ('0881149497', 'Healing Promises', 'https://images.isbndb.com/covers/94/94/9780881149494.jpg'), - ('0380726238', 'A Drink Before The War (Patrick Kenzie/Angela Gennaro Novels)', 'https://images.isbndb.com/covers/62/33/9780380726233.jpg'), - ('0806524154', 'The Perfect Soldier: Special Operations, Commandos, And The Future Of Us Warfare', 'https://images.isbndb.com/covers/41/53/9780806524153.jpg'), - ('0306811677', 'The Bedford Boys: One American Town''s Ultimate D-day Sacrifice', 'https://images.isbndb.com/covers/16/78/9780306811678.jpg'), - ('0425182703', 'Tentmaker', 'https://images.isbndb.com/covers/27/03/9780425182703.jpg'), - ('1566633370', 'The Burden Of Bad Ideas: How Modern Intellectuals Misshape Our Society', 'https://images.isbndb.com/covers/33/76/9781566633376.jpg'), - ('0399148701', 'Red Rabbit', 'https://images.isbndb.com/covers/87/05/9780399148705.jpg'), - ('0399131493', 'Red Storm Rising', 'https://images.isbndb.com/covers/14/93/9780399131493.jpg'), - ('0870212850', 'The Hunt For Red October', 'https://images.isbndb.com/covers/28/57/9780870212857.jpg'), - ('006009527X', 'Fire Lover: A True Story', 'https://images.isbndb.com/covers/52/77/9780060095277.jpg'), - ('0224030361', 'Man In Full', 'https://images.isbndb.com/covers/03/66/9780224030366.jpg'), - ('0679736395', 'Darkness Visible: A Memoir Of Madness', 'https://images.isbndb.com/covers/63/94/9780679736394.jpg'), - ('1568849168', 'Macromedia Director 4 For Macs For Dummies', 'https://images.isbndb.com/covers/91/64/9781568849164.jpg'), - ('0451403959', 'Grace Point (Signet)', 'https://images.isbndb.com/covers/39/57/9780451403957.jpg'), - ('014028088X', 'The Salon.com Reader''s Guide To Contemporary Authors', 'https://images.isbndb.com/covers/08/83/9780140280883.jpg'), - ('0394726251', 'The Discoverers', 'https://images.isbndb.com/covers/62/50/9780394726250.jpg'), - ('0887307396', 'Built To Last: Successful Habits Of Visionary Companies', 'https://images.isbndb.com/covers/73/93/9780887307393.jpg'), - ('0679735739', 'The Information', 'https://images.isbndb.com/covers/57/31/9780679735731.jpg'), - ('0834800799', 'Zen Mind, Beginner''s Mind: Informal Talks On Zen Meditation And Practice', 'https://images.isbndb.com/covers/07/93/9780834800793.jpg'), - ('0837850681', 'The Story Of Jonah (An Alice In Bibleland Storybook)', 'https://images.isbndb.com/covers/06/89/9780837850689.jpg'), - ('0671545140', 'Leadership Secrets Of The Rogue Warrior', 'https://images.isbndb.com/covers/51/47/9780671545147.jpg'), - ('0914457527', 'Paintball!: Strategies & Tactics', 'https://images.isbndb.com/covers/75/27/9780914457527.jpg'), - ('0786705833', 'The Mammoth Book Of 20th Century Ghost Stories', 'https://images.isbndb.com/covers/58/32/9780786705832.jpg'), - ('0807107808', 'Wildflowers Of Louisiana And Adjoining States', 'https://images.isbndb.com/covers/78/05/9780807107805.jpg'), - ('0385326521', 'Zigazak! A Magical Hanukkah Night', 'https://images.isbndb.com/covers/65/20/9780385326520.jpg'), - ('1588270475', 'My So Called Life In The Army', 'https://images.isbndb.com/covers/04/74/9781588270474.jpg'), - ('0425150143', 'Mirror Image (Tom Clancy''s Op-Center, Book 2)', 'https://images.isbndb.com/covers/01/46/9780425150146.jpg'), - ('0841914036', 'Escape Via Siberia: A Jewish Child''s Odyssey Of Survival', 'https://images.isbndb.com/covers/40/32/9780841914032.jpg'), - ('0809233169', 'Econoguide 1997 - Las Vegas, Reno, Laughlin, Lake Tahoe (1997 Edition)', 'https://images.isbndb.com/covers/31/68/9780809233168.jpg'), - ('0679446028', 'Imagining Atlantis', 'https://images.isbndb.com/covers/60/26/9780679446026.jpg'), - ('0671469975', 'Women Coming Of Age', 'https://images.isbndb.com/covers/99/79/9780671469979.jpg'), - ('0440506743', 'Your Six-Year-Old: Loving And Defiant', 'https://images.isbndb.com/covers/67/44/9780440506744.jpg'), - ('0743234693', 'The Footprints Of God : A Novel', 'https://images.isbndb.com/covers/46/96/9780743234696.jpg'), - ('019281513X', 'Jane Eyre (World''s Classics)', 'https://images.isbndb.com/covers/51/32/9780192815132.jpg'), - ('0399144803', 'Daring To Dream; Holding The Dream; Finding The Dream: Three Complete Novels (Dream Trilogy)', 'https://images.isbndb.com/covers/48/06/9780399144806.jpg'), - ('0702226009', 'Small Ecstasies (UQP Fiction)', 'https://images.isbndb.com/covers/60/07/9780702226007.jpg'), - ('0613361628', 'Snow Crash (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/16/20/9780613361620.jpg'), - ('0553586971', 'Thomas The Rhymer', 'https://images.isbndb.com/covers/69/78/9780553586978.jpg'), - ('158005059X', 'A Woman Alone: Travel Tales From Around The Globe', 'https://images.isbndb.com/covers/05/93/9781580050593.jpg'), - ('1551669188', 'Love In Bloom''s', 'https://images.isbndb.com/covers/91/82/9781551669182.jpg'), - ('0380728613', 'After Death: A New Future For Human Consciousness', 'https://images.isbndb.com/covers/86/19/9780380728619.jpg'), - ('0064406601', 'Harriet The Spy', 'https://images.isbndb.com/covers/66/04/9780064406604.jpg'), - ('0689868456', 'Code Name Cassandra (1-800-Where-R-You)', 'https://images.isbndb.com/covers/84/50/9780689868450.jpg'), - ('0061096113', 'Mistaken Identity', 'https://images.isbndb.com/covers/61/12/9780061096112.jpg'), - ('0812575970', 'The Bishop And The Beggar Girl Of St. Germain (A Father Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/59/72/9780812575972.jpg'), - ('006092330X', 'I Love Paul Revere, Whether He Rode Or Not', 'https://images.isbndb.com/covers/33/03/9780060923303.jpg'), - ('0316116726', 'Connections', 'https://images.isbndb.com/covers/67/25/9780316116725.jpg'), - ('0890877025', 'Sark''s Journal And Play!Book : A Place To Dream While Awake', 'https://images.isbndb.com/covers/70/29/9780890877029.jpg'), - ('0877284245', 'The Sea Priestess', 'https://images.isbndb.com/covers/42/46/9780877284246.jpg'), - ('1878825011', 'What Uncle Sam Really Wants (The Real Story Series)', 'https://images.isbndb.com/covers/50/18/9781878825018.jpg'), - ('0805029648', 'Dave Barry''s Bad Habits: A 100% Fact-Free Book', 'https://images.isbndb.com/covers/96/42/9780805029642.jpg'), - ('1888766034', 'Hologram Of Liberty: The Constitution''s Shocking Alliance With Big Government', 'https://images.isbndb.com/covers/60/35/9781888766035.jpg'), - ('0380728176', 'King Con: A Novel', 'https://images.isbndb.com/covers/81/76/9780380728176.jpg'), - ('0345409973', 'The Cobra Event', 'https://images.isbndb.com/covers/99/73/9780345409973.jpg'), - ('0671743074', 'Gone South', 'https://images.isbndb.com/covers/30/79/9780671743079.jpg'), - ('0345413865', 'Billy Straight', 'https://images.isbndb.com/covers/38/64/9780345413864.jpg'), - ('0380786974', 'Moonrise', 'https://images.isbndb.com/covers/69/78/9780380786978.jpg'), - ('1567312373', 'The Illuminatus! Trilogy: The Eye In The Pyramid, The Golden Apple, And Leviathan', 'https://images.isbndb.com/covers/23/79/9781567312379.jpg'), - ('0446609404', 'Cradle And All', 'https://images.isbndb.com/covers/94/01/9780446609401.jpg'), - ('1842230514', 'Upside Down, Inside Out', 'https://images.isbndb.com/covers/05/10/9781842230510.jpg'), - ('0864922302', 'Strange Heaven', 'https://images.isbndb.com/covers/23/04/9780864922304.jpg'), - ('0671785214', 'Home Town', 'https://images.isbndb.com/covers/52/15/9780671785215.jpg'), - ('0312111029', 'The Year''s Best Fantasy And Horror Seventh Annual Collection', 'https://images.isbndb.com/covers/10/21/9780312111021.jpg'), - ('0439219175', 'The Ark', 'https://images.isbndb.com/covers/91/74/9780439219174.jpg'), - ('0449203794', 'Space', 'https://images.isbndb.com/covers/37/98/9780449203798.jpg'), - ('0374522928', 'Call It Sleep: A Novel', 'https://images.isbndb.com/covers/29/26/9780374522926.jpg'), - ('0440219515', 'Letters From The Inside', 'https://images.isbndb.com/covers/95/14/9780440219514.jpg'), - ('1573221937', 'How To Be Good', 'https://images.isbndb.com/covers/19/31/9781573221931.jpg'), - ('0441002935', 'The Lunatic Cafe (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/29/31/9780441002931.jpg'), - ('0441000916', 'The Laughing Corpse (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/09/13/9780441000913.jpg'), - ('0306454114', 'The Loom Of God', 'https://images.isbndb.com/covers/41/10/9780306454110.jpg'), - ('0896087247', 'War Talk', 'https://images.isbndb.com/covers/72/48/9780896087248.jpg'), - ('0451523652', 'Pride And Prejudice', 'https://images.isbndb.com/covers/36/55/9780451523655.jpg'), - ('0140043128', 'One Flew Over The Cuckoo''s Nest', 'https://images.isbndb.com/covers/31/29/9780140043129.jpg'), - ('0841914060', 'The Royal Game & Other Stories', 'https://images.isbndb.com/covers/40/63/9780841914063.jpg'), - ('1870041364', 'Witches'' Rings (Series B (Norvik Press))', 'https://images.isbndb.com/covers/13/62/9781870041362.jpg'), - ('0060557257', 'Sushi For Beginners', 'https://images.isbndb.com/covers/72/56/9780060557256.jpg'), - ('0553582313', 'First Kiss', 'https://images.isbndb.com/covers/23/14/9780553582314.jpg'), - ('0373835876', 'Simply Sinful (The Simply Series, Book 1)', 'https://images.isbndb.com/covers/58/74/9780373835874.jpg'), - ('037383599X', 'Simply Sensual (The Simply Series, Book 3)', 'https://images.isbndb.com/covers/59/97/9780373835997.jpg'), - ('0373835795', 'Simply Scandalous (The Simply Series, Book 2)', 'https://images.isbndb.com/covers/57/99/9780373835799.jpg'), - ('0380794578', 'A Rake''s Vow (Cynster Novels)', 'https://images.isbndb.com/covers/45/77/9780380794577.jpg'), - ('0380805685', 'Scandal''s Bride (Cynster Novels)', 'https://images.isbndb.com/covers/56/86/9780380805686.jpg'), - ('0380812010', 'All About Love (Cynster Novels)', 'https://images.isbndb.com/covers/20/11/9780380812011.jpg'), - ('0312983301', 'Full Blast', 'https://images.isbndb.com/covers/33/07/9780312983307.jpg'), - ('006051762X', 'The Pursuit Of Marriage', 'https://images.isbndb.com/covers/76/25/9780060517625.jpg'), - ('0440236606', 'Slightly Sinful', 'https://images.isbndb.com/covers/66/03/9780440236603.jpg'), - ('0446610569', 'The Heartbreaker (The Chandler Brothers, Book 3)', 'https://images.isbndb.com/covers/05/68/9780446610568.jpg'), - ('0060582308', 'Love: Undercover', 'https://images.isbndb.com/covers/23/02/9780060582302.jpg'), - ('0553586203', 'The Wedding Game', 'https://images.isbndb.com/covers/62/06/9780553586206.jpg'), - ('0373790473', 'Hot On Her Tail (Harlequin Blaze, No 43)', 'https://images.isbndb.com/covers/04/70/9780373790470.jpg'), - ('0373790481', 'My Sexiest Mistake (Harlequin Blaze)', 'https://images.isbndb.com/covers/04/87/9780373790487.jpg'), - ('0373483694', 'Macgregor Grooms (Macgregors)', 'https://images.isbndb.com/covers/36/93/9780373483693.jpg'), - ('1551669374', 'Sisters Found', 'https://images.isbndb.com/covers/93/73/9781551669373.jpg'), - ('0821763431', 'Highland Spirits', 'https://images.isbndb.com/covers/34/38/9780821763438.jpg'), - ('0821767623', 'Border Storm (Zebra Historical Romance)', 'https://images.isbndb.com/covers/76/27/9780821767627.jpg'), - ('0373218478', 'The MacGregor Brides (Macgregors)', 'https://images.isbndb.com/covers/84/79/9780373218479.jpg'), - ('0380813017', 'When The Laird Returns: Book Two Of The Highland Lords', 'https://images.isbndb.com/covers/30/18/9780380813018.jpg'), - ('1551669226', 'The Hidden Heart', 'https://images.isbndb.com/covers/92/29/9781551669229.jpg'), - ('0380820552', 'Getting Her Man', 'https://images.isbndb.com/covers/05/59/9780380820559.jpg'), - ('0505525038', 'Ooh, La La!', 'https://images.isbndb.com/covers/50/31/9780505525031.jpg'), - ('0380791021', 'Simply Love', 'https://images.isbndb.com/covers/10/26/9780380791026.jpg'), - ('0553583913', 'Castles In The Mist', 'https://images.isbndb.com/covers/39/15/9780553583915.jpg'), - ('1551669234', 'Stonebrook Cottage', 'https://images.isbndb.com/covers/92/36/9781551669236.jpg'), - ('0804119538', 'The Defiant Hero (Troubleshooters, Book 2)', 'https://images.isbndb.com/covers/95/35/9780804119535.jpg'), - ('0440225299', 'Numbered Account', 'https://images.isbndb.com/covers/52/94/9780440225294.jpg'), - ('0931580501', 'Wealth 101: Getting What You Want-Enjoying What You''Ve Got', 'https://images.isbndb.com/covers/05/05/9780931580505.jpg'), - ('0553295101', 'Life 101: Everything We Wish We Had Learned In High School-But Didn''t', 'https://images.isbndb.com/covers/51/08/9780553295108.jpg'), - ('156276134X', 'PC Learning Labs Teaches Ami Pro 3.0: Logical Operations/Book And Disk', 'https://images.isbndb.com/covers/13/49/9781562761349.jpg'), - ('0716713616', 'Aha! Gotcha: Paradoxes To Puzzle And Delight', 'https://images.isbndb.com/covers/36/16/9780716713616.jpg'), - ('0886778581', 'Green Rider', 'https://images.isbndb.com/covers/85/83/9780886778583.jpg'), - ('0451140354', 'Maia', 'https://images.isbndb.com/covers/03/57/9780451140357.jpg'), - ('0380008238', 'Second Foundation', 'https://images.isbndb.com/covers/82/30/9780380008230.jpg'), - ('080912596X', 'Dealing With Difficult People', 'https://images.isbndb.com/covers/59/68/9780809125968.jpg'), - ('0375704051', 'Awakenings', 'https://images.isbndb.com/covers/40/55/9780375704055.jpg'), - ('0590509616', 'Gargoyles Don''t Drive School Buses (The Adventures Of The Bailey School Kids, #19)', 'https://images.isbndb.com/covers/96/19/9780590509619.jpg'), - ('0395544262', 'Fox In A Trap', 'https://images.isbndb.com/covers/42/66/9780395544266.jpg'), - ('0448095491', 'The Secret Of Mirror Bay (Nancy Drew Mystery Stories, No 49)', 'https://images.isbndb.com/covers/54/93/9780448095493.jpg'), - ('0448095432', 'The Mystery Of The 99 Steps (Nancy Drew Mystery Stories, No 43)', 'https://images.isbndb.com/covers/54/31/9780448095431.jpg'), - ('0590436465', 'Karen''s New Year (Baby-Sitters Little Sister, No. 14)', 'https://images.isbndb.com/covers/64/65/9780590436465.jpg'), - ('0448095157', 'The Haunted Bridge (Nancy Drew, Book 15)', 'https://images.isbndb.com/covers/51/58/9780448095158.jpg'), - ('0448095440', 'The Clue In The Crossword Cipher (Nancy Drew, Book 44)', 'https://images.isbndb.com/covers/54/48/9780448095448.jpg'), - ('0439130204', 'Coming Home (Heartland #1)', 'https://images.isbndb.com/covers/02/02/9780439130202.jpg'), - ('0439130220', 'After The Storm (Heartland #2)', 'https://images.isbndb.com/covers/02/26/9780439130226.jpg'), - ('0439130247', 'Breaking Free (Heartland #3)', 'https://images.isbndb.com/covers/02/40/9780439130240.jpg'), - ('0746022751', 'Riding (Usborne Hotshots)', 'https://images.isbndb.com/covers/27/57/9780746022757.jpg'), - ('0590300393', 'Horse For X.Y.Z.', 'https://images.isbndb.com/covers/03/91/9780590300391.jpg'), - ('0590944711', 'Return Of Santa Paws', 'https://images.isbndb.com/covers/47/17/9780590944717.jpg'), - ('0679836101', 'The Berenstain Bears And The Nerdy Nephew', 'https://images.isbndb.com/covers/61/00/9780679836100.jpg'), - ('0679866655', 'The Berenstain Bears And The Dress Code', 'https://images.isbndb.com/covers/66/57/9780679866657.jpg'), - ('0590673130', 'Ghost Horse (Phantom Rider)', 'https://images.isbndb.com/covers/31/36/9780590673136.jpg'), - ('0448148943', 'Thunder: Mighty Stallion To The Rescue', 'https://images.isbndb.com/covers/89/46/9780448148946.jpg'), - ('0671787136', 'Chelsey And The Green-Haired Kid: Chelsey And The Green-Haired Kid', 'https://images.isbndb.com/covers/71/34/9780671787134.jpg'), - ('038079537X', 'To The Summit', 'https://images.isbndb.com/covers/53/76/9780380795376.jpg'), - ('0440414911', 'Journey To Nowhere', 'https://images.isbndb.com/covers/49/19/9780440414919.jpg'), - ('0671183699', 'Horse & Rider: From Basics To Show Competition', 'https://images.isbndb.com/covers/36/91/9780671183691.jpg'), - ('0590957678', 'Riding Freedom', 'https://images.isbndb.com/covers/76/70/9780590957670.jpg'), - ('0439120470', 'Unicorns Of Balinor #05: Search For The Star', 'https://images.isbndb.com/covers/04/70/9780439120470.jpg'), - ('0439062837', 'By Fire, By Moonlight (Unicorns Of Balinor #4)', 'https://images.isbndb.com/covers/28/31/9780439062831.jpg'), - ('0439062829', 'Unicorns Of Balinor #03: Valley Of Fear', 'https://images.isbndb.com/covers/28/24/9780439062824.jpg'), - ('0439062802', 'The Road To Balinor (Unicorns Of Balinor #1)', 'https://images.isbndb.com/covers/28/00/9780439062800.jpg'), - ('0517208326', 'Instant Guide To Horses (Instant Guides)', 'https://images.isbndb.com/covers/83/28/9780517208328.jpg'), - ('0590416936', 'Ghost Abbey (Point)', 'https://images.isbndb.com/covers/69/31/9780590416931.jpg'), - ('0439056527', 'The Well', 'https://images.isbndb.com/covers/65/26/9780439056526.jpg'), - ('0936650087', 'Maggie And A Horse Named Devildust', 'https://images.isbndb.com/covers/00/81/9780936650081.jpg'), - ('0440219779', 'The Voice On The Radio', 'https://images.isbndb.com/covers/97/74/9780440219774.jpg'), - ('038072913X', 'The Maze', 'https://images.isbndb.com/covers/91/35/9780380729135.jpg'), - ('0425067750', 'Appointment With Death', 'https://images.isbndb.com/covers/77/58/9780425067758.jpg'), - ('0060805188', 'The Birthday Murder (Perennial Library Mystery Series)', 'https://images.isbndb.com/covers/51/80/9780060805180.jpg'), - ('0449200019', 'Athabasca', 'https://images.isbndb.com/covers/00/18/9780449200018.jpg'), - ('0441698859', 'Quiet As A Nun', 'https://images.isbndb.com/covers/88/51/9780441698851.jpg'), - ('0671600427', 'Shadows And Light', 'https://images.isbndb.com/covers/04/26/9780671600426.jpg'), - ('0425132358', 'Medical Treason', 'https://images.isbndb.com/covers/23/57/9780425132357.jpg'), - ('0671466801', 'The Best Science Fiction Of The Year #12', 'https://images.isbndb.com/covers/68/00/9780671466800.jpg'), - ('0140011528', 'The Purple Plain', 'https://images.isbndb.com/covers/15/24/9780140011524.jpg'), - ('0425108449', 'But Death Runs Faster', 'https://images.isbndb.com/covers/84/44/9780425108444.jpg'), - ('0671649469', 'In Pale Battalions: In Pale Battalions', 'https://images.isbndb.com/covers/94/63/9780671649463.jpg'), - ('0671642561', 'Fallen Hearts (Casteel, No. 3)', 'https://images.isbndb.com/covers/25/63/9780671642563.jpg'), - ('0671695126', 'Secrets Of The Morning (Cutler Series)', 'https://images.isbndb.com/covers/51/25/9780671695125.jpg'), - ('0671443283', 'Seeds Of Yesterday (Dollanganger, No. 4)', 'https://images.isbndb.com/covers/32/83/9780671443283.jpg'), - ('0373702213', 'Nightcap (Harlequin Superromance No. 221)', 'https://images.isbndb.com/covers/22/13/9780373702213.jpg'), - ('0380778009', 'On Maiden Lane', 'https://images.isbndb.com/covers/80/03/9780380778003.jpg'), - ('0425144372', 'Clear And Present Danger', 'https://images.isbndb.com/covers/43/74/9780425144374.jpg'), - ('055312997X', 'The Far Pavillions', 'https://images.isbndb.com/covers/99/77/9780553129977.jpg'), - ('0380785358', 'Hidden Assets', 'https://images.isbndb.com/covers/53/53/9780380785353.jpg'), - ('0872165272', 'The Love Token', 'https://images.isbndb.com/covers/52/74/9780872165274.jpg'), - ('055323336X', 'The God Project', 'https://images.isbndb.com/covers/33/60/9780553233360.jpg'), - ('0671672711', 'Hamlet Ultimatum', 'https://images.isbndb.com/covers/27/13/9780671672713.jpg'), - ('0671721143', 'Cobras Two', 'https://images.isbndb.com/covers/11/45/9780671721145.jpg'), - ('0131654233', 'Computer Data-Base Organization (Prentice-Hall Series In Automatic Computation)', 'https://images.isbndb.com/covers/42/35/9780131654235.jpg'), - ('0672315610', 'Microsoft Windows DNA Exposed', 'https://images.isbndb.com/covers/56/19/9780672315619.jpg'), - ('0137089171', 'Principles Of Data-Base Management', 'https://images.isbndb.com/covers/91/78/9780137089178.jpg'), - ('0136362346', 'Open Systems (Prentice Hall Series In Innovative Technology)', 'https://images.isbndb.com/covers/23/40/9780136362340.jpg'), - ('907219439X', 'A Conceptual Model Of A Business Transaction Management System', 'https://images.isbndb.com/covers/43/98/9789072194398.jpg'), - ('0471969478', 'Workflow Handbook 1997', 'https://images.isbndb.com/covers/94/71/9780471969471.jpg'), - ('0060256656', 'The Giving Tree', 'https://images.isbndb.com/covers/66/54/9780060256654.jpg'), - ('0152010289', 'Verdi', 'https://images.isbndb.com/covers/02/87/9780152010287.jpg'), - ('0698116151', 'Chicken Sunday', 'https://images.isbndb.com/covers/61/53/9780698116153.jpg'), - ('0060259078', 'A Little Prairie House (Little House)', 'https://images.isbndb.com/covers/90/75/9780060259075.jpg'), - ('0590568663', 'Miss Spider''s Wedding', 'https://images.isbndb.com/covers/86/61/9780590568661.jpg'), - ('0749933380', 'Safe Harbour', 'https://images.isbndb.com/covers/33/88/9780749933388.jpg'), - ('1859028519', 'Magpies', 'https://images.isbndb.com/covers/85/13/9781859028513.jpg'), - ('0142301655', 'Someone Like You / Keeping The Moon Flip Book', 'https://images.isbndb.com/covers/16/54/9780142301654.jpg'), - ('0948524588', 'Invincible', 'https://images.isbndb.com/covers/45/85/9780948524585.jpg'), - ('0349111863', 'Sex And The City', 'https://images.isbndb.com/covers/18/65/9780349111865.jpg'), - ('0749395389', 'Follow Your Heart', 'https://images.isbndb.com/covers/53/84/9780749395384.jpg'), - ('0140118470', 'Ah, Sweet Mystery Of Life (Penguin Fiction)', 'https://images.isbndb.com/covers/84/76/9780140118476.jpg'), - ('044024126X', 'Taken', 'https://images.isbndb.com/covers/12/63/9780440241263.jpg'), - ('1840225106', 'Tales Of Old Japan (Myth Legend & Folklore)', 'https://images.isbndb.com/covers/51/05/9781840225105.jpg'), - ('0340654163', 'Escape: The Love Story From Whirlwind', 'https://images.isbndb.com/covers/41/63/9780340654163.jpg'), - ('0380773309', 'Call Of The Deep', 'https://images.isbndb.com/covers/33/05/9780380773305.jpg'), - ('0812512774', 'The Wild', 'https://images.isbndb.com/covers/27/79/9780812512779.jpg'), - ('0671729403', 'Fallen Hearts (Casteel Saga)', 'https://images.isbndb.com/covers/94/00/9780671729400.jpg'), - ('0671729438', 'Gates Of Paradise (Casteel Saga)', 'https://images.isbndb.com/covers/94/31/9780671729431.jpg'), - ('0006749151', 'The Beast Is Waiting For You (Nightmares)', 'https://images.isbndb.com/covers/91/58/9780006749158.jpg'), - ('0425139697', 'Spring Break (Terror Academy Series Four)', 'https://images.isbndb.com/covers/96/91/9780425139691.jpg'), - ('0061062472', 'Bloodlines (Vampire Twins, Vol 1)', 'https://images.isbndb.com/covers/24/76/9780061062476.jpg'), - ('0380718758', 'Snow White, Blood Red', 'https://images.isbndb.com/covers/87/57/9780380718757.jpg'), - ('067172939X', 'Dark Angel (Casteel Saga)', 'https://images.isbndb.com/covers/93/94/9780671729394.jpg'), - ('0671729446', 'Heaven (Casteel Series)', 'https://images.isbndb.com/covers/94/48/9780671729448.jpg'), - ('1853264180', 'The Works Of Robert Browning (Wordsworth Poetry) (Wordsworth Poetry Library)', 'https://images.isbndb.com/covers/41/84/9781853264184.jpg'), - ('1585673382', 'Blandings Castle', 'https://images.isbndb.com/covers/33/84/9781585673384.jpg'), - ('1842157086', 'Action Origami: Over 25 Animated Paperfolding Projects (Import)', 'https://images.isbndb.com/covers/70/84/9781842157084.jpg'), - ('972708530X', 'Caes (Ficcao Portuguesa) (Portuguese Edition)', 'https://images.isbndb.com/covers/53/09/9789727085309.jpg'), - ('9722110500', 'A Varanda Do Frangipani: Romance (Uma Terra Sem Amos) (Portuguese Edition)', 'https://images.isbndb.com/covers/05/01/9789722110501.jpg'), - ('0002257580', 'Jesus And The Adman Hb', 'https://images.isbndb.com/covers/75/89/9780002257589.jpg'), - ('0375708049', 'Joe Gould''s Secret', 'https://images.isbndb.com/covers/80/46/9780375708046.jpg'), - ('0375701435', 'Little Kingdoms (Vintage Contemporaries)', 'https://images.isbndb.com/covers/14/36/9780375701436.jpg'), - ('9722100718', 'Cada Homem E Uma Raca: Estorias (Uma Terra Sem Amos) (Portuguese Edition)', 'https://images.isbndb.com/covers/07/17/9789722100717.jpg'), - ('9721030791', 'A Cidade E As Serras (Portuguese Edition)', 'https://images.isbndb.com/covers/07/94/9789721030794.jpg'), - ('0028604199', 'Once Upon A More Enlightened Time: More Politically Correct Bedtime Stories', 'https://images.isbndb.com/covers/41/90/9780028604190.jpg'), - ('0374202281', 'Man Or Mango? : A Lament', 'https://images.isbndb.com/covers/22/86/9780374202286.jpg'), - ('0874779111', 'The Cosmic Serpent', 'https://images.isbndb.com/covers/91/10/9780874779110.jpg'), - ('0345369491', 'Sheriff And The Folsom Man Murders', 'https://images.isbndb.com/covers/94/99/9780345369499.jpg'), - ('0525484272', 'Roger Caras'' Cat Stories', 'https://images.isbndb.com/covers/42/71/9780525484271.jpg'), - ('0671526022', 'The Color Purple', 'https://images.isbndb.com/covers/60/23/9780671526023.jpg'), - ('0060154969', 'Love, Medicine, And Miracles', 'https://images.isbndb.com/covers/49/67/9780060154967.jpg'), - ('0060930888', 'April 1865: The Month That Saved America', 'https://images.isbndb.com/covers/08/82/9780060930882.jpg'), - ('039585993X', 'An American Requiem: God, My Father, And The War That Came Between Us', 'https://images.isbndb.com/covers/99/33/9780395859933.jpg'), - ('3785538448', 'Fear Street. Teufelskreis: Es Gibt Kein Entkommen.', 'https://images.isbndb.com/covers/84/49/9783785538449.jpg'), - ('0385492707', 'A Love Of My Own: A Novel', 'https://images.isbndb.com/covers/27/06/9780385492706.jpg'), - ('0140369945', 'Spider Mansion Pb', 'https://images.isbndb.com/covers/99/46/9780140369946.jpg'), - ('1566191432', 'Pride & Prejudice', 'https://images.isbndb.com/covers/14/32/9781566191432.jpg'), - ('0874771501', 'The New Diary', 'https://images.isbndb.com/covers/15/03/9780874771503.jpg'), - ('0060645873', 'When The Heart Waits: Spiritual Direction For Life''s Sacred Questions', 'https://images.isbndb.com/covers/58/78/9780060645878.jpg'), - ('0768420350', 'Hinds Feet On High Places: Devotional', 'https://images.isbndb.com/covers/03/57/9780768420357.jpg'), - ('1557250537', 'Up On The Mountain', 'https://images.isbndb.com/covers/05/37/9781557250537.jpg'), - ('0877936250', 'The Cup Of Our Life: A Guide For Spiritual Growth', 'https://images.isbndb.com/covers/62/51/9780877936251.jpg'), - ('0867164301', 'Armchair Mystic: Easing Into Contemplative Prayer', 'https://images.isbndb.com/covers/43/05/9780867164305.jpg'), - ('1565070569', 'A Place Called Simplicity: The Quiet Beauty Of Simple Living', 'https://images.isbndb.com/covers/05/61/9781565070561.jpg'), - ('0896939758', 'What Happens When Women Pray', 'https://images.isbndb.com/covers/97/52/9780896939752.jpg'), - ('1401901484', 'Life Is Short, Wear Your Party Pants', 'https://images.isbndb.com/covers/14/86/9781401901486.jpg'), - ('0829419888', 'A Healing Walk With St. Ignatius: Discovering God''s Presence In Difficult Times', 'https://images.isbndb.com/covers/98/87/9780829419887.jpg'), - ('0062548689', 'A Tree Full Of Angels: Seeing The Holy In The Ordinary', 'https://images.isbndb.com/covers/86/89/9780062548689.jpg'), - ('0824519302', 'A New Set Of Eyes: Encountering The Hidden God', 'https://images.isbndb.com/covers/93/08/9780824519308.jpg'), - ('0451182006', 'Mortal Pursuit', 'https://images.isbndb.com/covers/20/05/9780451182005.jpg'), - ('0425186709', 'Mission Of Honor (Tom Clancy''s Op-Center, Book 9)', 'https://images.isbndb.com/covers/67/01/9780425186701.jpg'), - ('0671026682', 'Serpent: A Novel From The NUMA Files', 'https://images.isbndb.com/covers/66/84/9780671026684.jpg'), - ('0684846608', 'Fountain Society: A Novel', 'https://images.isbndb.com/covers/66/06/9780684846606.jpg'), - ('0399151613', 'The Jane Austen Book Club', 'https://images.isbndb.com/covers/16/13/9780399151613.jpg'), - ('0330314971', 'Foucault''s Pendulum', 'https://images.isbndb.com/covers/49/78/9780330314978.jpg'), - ('051788433X', 'Extraordinary Popular Delusions & The Madness Of Crowds', 'https://images.isbndb.com/covers/43/31/9780517884331.jpg'), - ('0688160999', 'Biomimicry: Innovation Inspired By Nature', 'https://images.isbndb.com/covers/09/99/9780688160999.jpg'), - ('1553662415', 'The Incidental Guru: Lessons In Healing From A Dog', 'https://images.isbndb.com/covers/24/19/9781553662419.jpg'), - ('1585421499', 'Hope''s Edge: The Next Diet For A Small Planet', 'https://images.isbndb.com/covers/14/97/9781585421497.jpg'), - ('0679729798', 'Sheltering Sky', 'https://images.isbndb.com/covers/97/92/9780679729792.jpg'), - ('0140127739', 'Lost In Translation: A Life In A New Language', 'https://images.isbndb.com/covers/77/37/9780140127737.jpg'), - ('1567315208', 'Letters To A Young Poet / The Possibility Of Being', 'https://images.isbndb.com/covers/52/02/9781567315202.jpg'), - ('0141182806', 'Ulysses (Modern Classics (Penguin))', 'https://images.isbndb.com/covers/28/03/9780141182803.jpg'), - ('0006143199', 'Snow Tiger', 'https://images.isbndb.com/covers/31/92/9780006143192.jpg'), - ('0140050000', 'Plague Dogs', 'https://images.isbndb.com/covers/00/04/9780140050004.jpg'), - ('0843949090', 'Bliss', 'https://images.isbndb.com/covers/90/94/9780843949094.jpg'), - ('1893224848', 'The Cat Who Killed Lilian Jackson Braun', 'https://images.isbndb.com/covers/48/41/9781893224841.jpg'), - ('0553586335', 'Gone To The Dogs', 'https://images.isbndb.com/covers/63/36/9780553586336.jpg'), - ('3551749612', 'Angelic Layer, Battle.1, Das Ist Das Ei, In Dem Die Träume Ruhen', 'https://images.isbndb.com/covers/96/11/9783551749611.jpg'), - ('3551749620', 'Angelic Layer, Battle.2, Gemeinsam Mit Hikaru Schaff Ich Es!', 'https://images.isbndb.com/covers/96/28/9783551749628.jpg'), - ('3551751846', 'Angel Sanctuary, Bd.4', 'https://images.isbndb.com/covers/18/43/9783551751843.jpg'), - ('3551745315', 'Bastard!!, Bd.1, Angriff Auf Metallicana: Das Heer Der Schatten - Angriff Auf Metallicana', 'https://images.isbndb.com/covers/53/16/9783551745316.jpg'), - ('3251003011', 'Wege Zum Ruhm. 13 Hilfestellungen Für Junge Künstler Und 1 Warnung', 'https://images.isbndb.com/covers/30/13/9783251003013.jpg'), - ('3870245123', 'Generation Golf', 'https://images.isbndb.com/covers/51/22/9783870245122.jpg'), - ('3150012198', 'Il Principe /Der Fürst: Ital. /Dt.: Italienisch/Deutsch', 'https://images.isbndb.com/covers/21/92/9783150012192.jpg'), - ('3858620203', 'New York Selbst Entdecken. Neuausgabe 2000', 'https://images.isbndb.com/covers/02/00/9783858620200.jpg'), - ('0553138758', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/87/57/9780553138757.jpg'), - ('0345344375', 'UFO''s In Space: Anatomy Of A Phenomenon', 'https://images.isbndb.com/covers/43/73/9780345344373.jpg'), - ('0553138596', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/85/97/9780553138597.jpg'), - ('0842345566', 'More Than A Carpenter', 'https://images.isbndb.com/covers/55/69/9780842345569.jpg'), - ('0802415881', 'If God Should Choose: The Authorized Story Of Jim And Roni Bowers', 'https://images.isbndb.com/covers/58/82/9780802415882.jpg'), - ('0684834731', 'The Locket', 'https://images.isbndb.com/covers/47/33/9780684834733.jpg'), - ('1565121465', 'Space: A Memoir', 'https://images.isbndb.com/covers/14/61/9781565121461.jpg'), - ('0312021690', 'Blossom Comes Home', 'https://images.isbndb.com/covers/16/96/9780312021696.jpg'), - ('0140465340', 'The Read-Aloud Handbook (Penguin Handbooks)', 'https://images.isbndb.com/covers/53/41/9780140465341.jpg'), - ('0312549059', 'Moses The Kitten', 'https://images.isbndb.com/covers/90/53/9780312549053.jpg'), - ('0671794248', 'Who Stole Feminism?: How Women Have Betrayed Women', 'https://images.isbndb.com/covers/42/48/9780671794248.jpg'), - ('0767901428', 'The Prodigal Spy', 'https://images.isbndb.com/covers/14/20/9780767901420.jpg'), - ('0060170832', 'The Things That Matter Most', 'https://images.isbndb.com/covers/08/37/9780060170837.jpg'), - ('0060928069', 'How Could You Do That?!: The Abdication Of Character, Courage, And Conscience', 'https://images.isbndb.com/covers/80/63/9780060928063.jpg'), - ('0875420087', 'How To Meet & Work With Spirit Guides (Llewellyn''s How To)', 'https://images.isbndb.com/covers/00/80/9780875420080.jpg'), - ('0373760639', 'Lucy And The Loner (Man Of The Month/ The Family Mccormick) (Silhouette Desire)', 'https://images.isbndb.com/covers/06/33/9780373760633.jpg'), - ('0816772045', '101 Best Cheers', 'https://images.isbndb.com/covers/20/49/9780816772049.jpg'), - ('1561797332', 'A Promise Is Forever (The Christy Miller Series #12)', 'https://images.isbndb.com/covers/73/32/9781561797332.jpg'), - ('1561797324', 'Sweet Dreams (The Christy Miller Series #11)', 'https://images.isbndb.com/covers/73/25/9781561797325.jpg'), - ('1561797316', 'A Time To Cherish (The Christy Miller Series #10)', 'https://images.isbndb.com/covers/73/18/9781561797318.jpg'), - ('1561797308', 'Seventeen Wishes (The Christy Miller Series #9)', 'https://images.isbndb.com/covers/73/01/9781561797301.jpg'), - ('1561797200', 'True Friends (The Christy Miller Series #7)', 'https://images.isbndb.com/covers/72/02/9781561797202.jpg'), - ('1561797197', 'A Heart Full Of Hope (The Christy Miller Series #6)', 'https://images.isbndb.com/covers/71/96/9781561797196.jpg'), - ('1561797189', 'Island Dreamer (The Christy Miller Series #5)', 'https://images.isbndb.com/covers/71/89/9781561797189.jpg'), - ('156179600X', 'Surprise Endings (The Christy Miller Series #4)', 'https://images.isbndb.com/covers/60/07/9781561796007.jpg'), - ('1561795992', 'Yours Forever (The Christy Miller Series #3)', 'https://images.isbndb.com/covers/59/94/9781561795994.jpg'), - ('1561795976', 'Summer Promise (The Christy Miller Series #1)', 'https://images.isbndb.com/covers/59/70/9781561795970.jpg'), - ('1561797219', 'Starry Night (The Christy Miller Series #8)', 'https://images.isbndb.com/covers/72/19/9781561797219.jpg'), - ('1561795984', 'A Whisper And A Wish (The Christy Miller Series #2)', 'https://images.isbndb.com/covers/59/87/9781561795987.jpg'), - ('0373037732', 'The Ordinary Princess High Society Brides (Harlequin Romance)', 'https://images.isbndb.com/covers/77/35/9780373037735.jpg'), - ('0395519519', 'Desire', 'https://images.isbndb.com/covers/95/16/9780395519516.jpg'), - ('0395735262', 'The Seven-Year Stretch: How Families Work Together To Grow Through Adolescence', 'https://images.isbndb.com/covers/52/68/9780395735268.jpg'), - ('0831710349', 'Step-By-Step 50 Cushions, Covers & Curtains (Step-By-Step Series)', 'https://images.isbndb.com/covers/03/47/9780831710347.jpg'), - ('093439573X', 'Dixie Ghosts (American Ghosts)', 'https://images.isbndb.com/covers/57/31/9780934395731.jpg'), - ('0689804466', 'Izzy, Willy-Nilly', 'https://images.isbndb.com/covers/44/65/9780689804465.jpg'), - ('0451409132', 'Biting The Moon', 'https://images.isbndb.com/covers/91/33/9780451409133.jpg'), - ('0425160424', 'Janine And Alex, Alex And Janine', 'https://images.isbndb.com/covers/04/28/9780425160428.jpg'), - ('0385297548', 'Blessings', 'https://images.isbndb.com/covers/75/47/9780385297547.jpg'), - ('0142301493', 'Leave Well Enough Alone', 'https://images.isbndb.com/covers/14/94/9780142301494.jpg'), - ('0140167153', 'Your Money Or Your Life: Transforming Your Relationship With Money And Achieving Financial MORE', 'https://images.isbndb.com/covers/71/53/9780140167153.jpg'), - ('014034912X', 'The Perilous Gard (Newbery Library, Puffin)', 'https://images.isbndb.com/covers/91/22/9780140349122.jpg'), - ('0060182687', 'Power Of A Woman', 'https://images.isbndb.com/covers/26/87/9780060182687.jpg'), - ('0743204832', 'Bitterroot', 'https://images.isbndb.com/covers/48/35/9780743204835.jpg'), - ('0786888741', 'Lucky Man: A Memoir', 'https://images.isbndb.com/covers/87/40/9780786888740.jpg'), - ('0446604682', 'Nathan''s Run', 'https://images.isbndb.com/covers/46/80/9780446604680.jpg'), - ('0399150552', 'McNally''s Dare', 'https://images.isbndb.com/covers/05/55/9780399150555.jpg'), - ('0312289901', 'Robert Ludlum''s The Altman Code: A Covert-One Novel', 'https://images.isbndb.com/covers/99/04/9780312289904.jpg'), - ('0553561723', 'Burning Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/17/22/9780553561722.jpg'), - ('0743426657', 'The Courtship Gift', 'https://images.isbndb.com/covers/66/57/9780743426657.jpg'), - ('0061098760', 'Law Of Gravity', 'https://images.isbndb.com/covers/87/65/9780061098765.jpg'), - ('0451204158', 'Black Sunday', 'https://images.isbndb.com/covers/41/58/9780451204158.jpg'), - ('0451171861', 'Immoral Certainty (Signet)', 'https://images.isbndb.com/covers/18/63/9780451171863.jpg'), - ('0142001384', 'The Quiet American (Now A Major Motion Picture From Miramax Films)', 'https://images.isbndb.com/covers/13/87/9780142001387.jpg'), - ('0440206685', 'Doc: The Rape Of The Town Of Lovell', 'https://images.isbndb.com/covers/66/82/9780440206682.jpg'), - ('0345373707', 'Cry To Heaven', 'https://images.isbndb.com/covers/37/00/9780345373700.jpg'), - ('0440376408', 'The Scarlet Letter', 'https://images.isbndb.com/covers/64/08/9780440376408.jpg'), - ('0440180090', 'Slapstick', 'https://images.isbndb.com/covers/00/98/9780440180098.jpg'), - ('0670839531', 'Needful Things: The Last Castle Rock Story', 'https://images.isbndb.com/covers/95/37/9780670839537.jpg'), - ('0446358584', 'The Talbot Odyssey', 'https://images.isbndb.com/covers/85/83/9780446358583.jpg'), - ('0374121230', 'Child Of My Heart', 'https://images.isbndb.com/covers/12/35/9780374121235.jpg'), - ('0671014218', 'The Mulberry Tree', 'https://images.isbndb.com/covers/42/16/9780671014216.jpg'), - ('0670856495', 'AN Imaginative Experience: A Novel', 'https://images.isbndb.com/covers/64/97/9780670856497.jpg'), - ('0812035844', 'A Midsummer Night''s Dream (Shakespeare Made Easy)', 'https://images.isbndb.com/covers/58/41/9780812035841.jpg'), - ('0385242719', 'Labyrinths Of Reason: Paradox, Puzzles, And The Frailty Of Knowledge', 'https://images.isbndb.com/covers/27/14/9780385242714.jpg'), - ('0553578529', 'Into The Wilderness', 'https://images.isbndb.com/covers/85/22/9780553578522.jpg'), - ('0671041800', 'Getting It Right: How Working Mothers Successfully Take Up The Challenge Of Life, Family, And Career', 'https://images.isbndb.com/covers/18/09/9780671041809.jpg'), - ('0471123005', 'Martha Inc.: The Incredible Story Of Martha Stewart Living Omnimedia', 'https://images.isbndb.com/covers/30/02/9780471123002.jpg'), - ('0553213768', 'The Phantom Of The Opera (Bantam Classics)', 'https://images.isbndb.com/covers/37/68/9780553213768.jpg'), - ('0316693707', 'Kiss The Girls', 'https://images.isbndb.com/covers/37/07/9780316693707.jpg'), - ('1852305606', 'The Encyclopaedia Of Celtic Wisdom : A Celtic Shaman''s Sourcebook', 'https://images.isbndb.com/covers/56/04/9781852305604.jpg'), - ('0375752501', 'The Magnificent Ambersons (Modern Library Classics)', 'https://images.isbndb.com/covers/25/06/9780375752506.jpg'), - ('1573226041', 'Sorrow Floats', 'https://images.isbndb.com/covers/60/42/9781573226042.jpg'), - ('0380013207', 'The Lathe Of Heaven', 'https://images.isbndb.com/covers/32/03/9780380013203.jpg'), - ('0451192575', 'Donnie Brasco', 'https://images.isbndb.com/covers/25/78/9780451192578.jpg'), - ('0966080521', 'Day Job: A Workplace Reader For The Restless Age', 'https://images.isbndb.com/covers/05/20/9780966080520.jpg'), - ('0385467958', 'Woman Of The Inner Sea, A', 'https://images.isbndb.com/covers/79/57/9780385467957.jpg'), - ('0515123447', 'Killing Floor (Jack Reacher, No. 1)', 'https://images.isbndb.com/covers/34/49/9780515123449.jpg'), - ('0441010512', 'Club Dead (Southern Vampire Mysteries, Book 3)', 'https://images.isbndb.com/covers/05/16/9780441010516.jpg'), - ('0887308589', 'The Dilbert Principle: A Cubicle''s-Eye View Of Bosses, Meetings, Management Fads & Other Workplace Afflictions', 'https://images.isbndb.com/covers/85/81/9780887308581.jpg'), - ('0140363386', 'The Letter, The Witch, And The Ring (Lewis Barnavelt)', 'https://images.isbndb.com/covers/33/88/9780140363388.jpg'), - ('0140363378', 'The Figure In The Shadows (Lewis Barnavelt)', 'https://images.isbndb.com/covers/33/71/9780140363371.jpg'), - ('0312854137', 'Letters To Jenny', 'https://images.isbndb.com/covers/41/33/9780312854133.jpg'), - ('0380727331', 'Memoir From Antproof Case', 'https://images.isbndb.com/covers/73/39/9780380727339.jpg'), - ('0440226236', 'The Death Pit', 'https://images.isbndb.com/covers/62/39/9780440226239.jpg'), - ('0393049701', 'No Great Mischief', 'https://images.isbndb.com/covers/97/01/9780393049701.jpg'), - ('0345441044', 'The Fan-Maker''s Inquisition: A Novel Of The Marquis De Sade (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/10/41/9780345441041.jpg'), - ('0374189870', 'Lives Of The Monster Dogs', 'https://images.isbndb.com/covers/98/77/9780374189877.jpg'), - ('0425161633', 'Second Nature', 'https://images.isbndb.com/covers/16/30/9780425161630.jpg'), - ('190415123X', 'Practical Intranet Development', 'https://images.isbndb.com/covers/12/34/9781904151234.jpg'), - ('1400002877', 'Hija Del Curandero (Spanish Edition)', 'https://images.isbndb.com/covers/28/70/9781400002870.jpg'), - ('0946395438', 'Continuity Planning', 'https://images.isbndb.com/covers/54/39/9780946395439.jpg'), - ('0874772095', 'Chop Wood, Carry Water: A Guide To Finding Spiritual Fulfillment In Everyday Life', 'https://images.isbndb.com/covers/20/98/9780874772098.jpg'), - ('0684853612', 'High Exposure: An Enduring Passion For Everest And Unforgiving Places', 'https://images.isbndb.com/covers/36/11/9780684853611.jpg'), - ('0312145357', 'Accustomed To The Dark', 'https://images.isbndb.com/covers/53/54/9780312145354.jpg'), - ('0595131700', 'Resurrection Angel (Denton Ward And Monty Crocetti Mysteries)', 'https://images.isbndb.com/covers/17/09/9780595131709.jpg'), - ('0399148876', 'Savage Run', 'https://images.isbndb.com/covers/88/73/9780399148873.jpg'), - ('0316442178', 'Raveling', 'https://images.isbndb.com/covers/21/76/9780316442176.jpg'), - ('0786708395', 'Garnethill: A Novel Of Crime', 'https://images.isbndb.com/covers/83/90/9780786708390.jpg'), - ('0446606928', 'Blue Light', 'https://images.isbndb.com/covers/69/29/9780446606929.jpg'), - ('0425177718', 'Angel Fire', 'https://images.isbndb.com/covers/77/16/9780425177716.jpg'), - ('0316110493', 'Arthur''s First Sleepover: An Arthur Adventure', 'https://images.isbndb.com/covers/04/95/9780316110495.jpg'), - ('0385503954', 'Atonement: A Novel', 'https://images.isbndb.com/covers/39/52/9780385503952.jpg'), - ('0375502947', 'Georgiana: Duchess Of Devonshire', 'https://images.isbndb.com/covers/29/41/9780375502941.jpg'), - ('0060959517', 'Elizabeth: The Struggle For The Throne', 'https://images.isbndb.com/covers/95/17/9780060959517.jpg'), - ('0671527967', 'Confusion (Volume Three Of The Cazalet Chronicle)', 'https://images.isbndb.com/covers/79/69/9780671527969.jpg'), - ('0312266499', 'The Spencers: A Personal History Of An English Family', 'https://images.isbndb.com/covers/64/93/9780312266493.jpg'), - ('0312242417', 'The Sisters Of Henry VIII: The Tumultuous Lives Of Margaret Of Scotland And Mary Of France', 'https://images.isbndb.com/covers/24/11/9780312242411.jpg'), - ('0881845973', 'Don''t Tell Alfred', 'https://images.isbndb.com/covers/59/76/9780881845976.jpg'), - ('0375718990', 'The Pursuit Of Love & Love In A Cold Climate: Two Novels', 'https://images.isbndb.com/covers/89/91/9780375718991.jpg'), - ('0674766911', 'The Return Of Martin Guerre', 'https://images.isbndb.com/covers/69/14/9780674766914.jpg'), - ('0316097500', 'The Gospel Of Judas : A Novel', 'https://images.isbndb.com/covers/75/05/9780316097505.jpg'), - ('088730866X', 'The Dilbert Future: Thriving On Stupidity In The 21st Century', 'https://images.isbndb.com/covers/86/66/9780887308666.jpg'), - ('0425185001', 'The Titian Committee (Jonathan Argyll Mysteries)', 'https://images.isbndb.com/covers/50/01/9780425185001.jpg'), - ('0741412896', 'Collateral Damage', 'https://images.isbndb.com/covers/28/98/9780741412898.jpg'), - ('0345396545', 'Ilse Witch (The Voyage Of The Jerle Shannara, Book 1)', 'https://images.isbndb.com/covers/65/49/9780345396549.jpg'), - ('0060008865', 'Do No Harm', 'https://images.isbndb.com/covers/88/64/9780060008864.jpg'), - ('0141309725', 'The Man In The Woods', 'https://images.isbndb.com/covers/97/29/9780141309729.jpg'), - ('044021646X', 'The Misbegotten Son: The True Story Of Arthur J. Shawcross', 'https://images.isbndb.com/covers/64/69/9780440216469.jpg'), - ('0006498035', 'Maid Of The Mist', 'https://images.isbndb.com/covers/80/32/9780006498032.jpg'), - ('0749390832', 'The Book Of Spells', 'https://images.isbndb.com/covers/08/39/9780749390839.jpg'), - ('0140132155', 'Lewis Percy', 'https://images.isbndb.com/covers/21/51/9780140132151.jpg'), - ('0140238131', 'In Custody', 'https://images.isbndb.com/covers/81/36/9780140238136.jpg'), - ('0385507607', 'The Probable Future', 'https://images.isbndb.com/covers/76/08/9780385507608.jpg'), - ('0743206061', 'The Second Time Around', 'https://images.isbndb.com/covers/60/68/9780743206068.jpg'), - ('006016249X', 'Outer Banks', 'https://images.isbndb.com/covers/24/98/9780060162498.jpg'), - ('0553802453', 'No One To Trust (Eve Duncan)', 'https://images.isbndb.com/covers/24/50/9780553802450.jpg'), - ('0345445910', 'Into The Inferno', 'https://images.isbndb.com/covers/59/19/9780345445919.jpg'), - ('0399148469', 'Hunting Season', 'https://images.isbndb.com/covers/84/60/9780399148460.jpg'), - ('089296765X', 'Dead Midnight (Sharon McCone Mysteries)', 'https://images.isbndb.com/covers/76/50/9780892967650.jpg'), - ('0553802461', 'Dead Aim', 'https://images.isbndb.com/covers/24/67/9780553802467.jpg'), - ('0440224071', 'Los Alamos', 'https://images.isbndb.com/covers/40/75/9780440224075.jpg'), - ('0679781307', 'The Reader', 'https://images.isbndb.com/covers/13/01/9780679781301.jpg'), - ('0440174643', 'Roots (Dell Book)', 'https://images.isbndb.com/covers/46/46/9780440174646.jpg'), - ('0449221393', 'Driving Force', 'https://images.isbndb.com/covers/13/96/9780449221396.jpg'), - ('0671652796', '13 French Street And The Red Scarf', 'https://images.isbndb.com/covers/27/91/9780671652791.jpg'), - ('068480378X', 'ROADKILL (Kinky Friedman Novels)', 'https://images.isbndb.com/covers/37/84/9780684803784.jpg'), - ('0380807203', 'Resort To Murder: A Henrie O Mystery', 'https://images.isbndb.com/covers/72/08/9780380807208.jpg'), - ('0449147282', 'Milk And Honey (A Peter Decker & Rina Lazarus Novel)', 'https://images.isbndb.com/covers/72/83/9780449147283.jpg'), - ('0451195981', 'Beware The Laughing Gull (Lucy Wayles Mysteries)', 'https://images.isbndb.com/covers/59/82/9780451195982.jpg'), - ('0425071871', 'Darkfall', 'https://images.isbndb.com/covers/18/78/9780425071878.jpg'), - ('0449218929', 'Quality Of Mercy', 'https://images.isbndb.com/covers/89/21/9780449218921.jpg'), - ('0671604082', 'A Quiver Full Of Arrows', 'https://images.isbndb.com/covers/40/80/9780671604080.jpg'), - ('0553275100', 'The Butcher''s Theater', 'https://images.isbndb.com/covers/51/00/9780553275100.jpg'), - ('0030598583', 'The Case Of The One-Penny Orange (A Masao Masuto Mystery)', 'https://images.isbndb.com/covers/85/86/9780030598586.jpg'), - ('0671660632', 'Dirk Gently''s Holistic Detective Agency (Dirk Gently, No. 1)', 'https://images.isbndb.com/covers/06/35/9780671660635.jpg'), - ('0440207460', 'Pious Deception', 'https://images.isbndb.com/covers/74/67/9780440207467.jpg'), - ('0345362667', 'Philly Stakes', 'https://images.isbndb.com/covers/26/67/9780345362667.jpg'), - ('0345323750', 'The Life And Loves Of A She Devil', 'https://images.isbndb.com/covers/37/50/9780345323750.jpg'), - ('0486280314', 'Nonsense Poems (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/03/18/9780486280318.jpg'), - ('0913866024', 'Tarot Cards For Fun And Fortune Telling: Illustrated Guide To The Spreading And Interpretation Of The Popular 78-Card Tarot I Jj Deck Of Muller & Cie, Switzerland', 'https://images.isbndb.com/covers/60/23/9780913866023.jpg'), - ('157297317X', 'Austin Powers: How To Be An International Man Of Mystery', 'https://images.isbndb.com/covers/31/76/9781572973176.jpg'), - ('0806519630', 'The Modern Witch''s Guide To Magic And Spells: A Remarkable Collection Of Over 100 Spells To Entice A Lover, Win Back One Who Strays, Protect Your ... Illness, Ward Off Evil Spirits And Much More', 'https://images.isbndb.com/covers/96/30/9780806519630.jpg'), - ('0399521577', 'Schmoozing: The Private Conversations Of American Jews', 'https://images.isbndb.com/covers/15/77/9780399521577.jpg'), - ('0312267126', 'BLOW: How A Small-Town Boy Made $100 Million With The Medellin Cocaine Cartel And Lost It All', 'https://images.isbndb.com/covers/71/24/9780312267124.jpg'), - ('0671870238', 'Aloha: A Novel Of The Near Future', 'https://images.isbndb.com/covers/02/32/9780671870232.jpg'), - ('0345346904', 'Gateway (Heechee Saga)', 'https://images.isbndb.com/covers/69/02/9780345346902.jpg'), - ('1591823641', 'Pet Shop Of Horrors, Vol. 2', 'https://images.isbndb.com/covers/36/43/9781591823643.jpg'), - ('1591823633', 'Pet Shop Of Horrors, Book 1', 'https://images.isbndb.com/covers/36/36/9781591823636.jpg'), - ('193248020X', 'Galaxy Angel, Vol. 1', 'https://images.isbndb.com/covers/02/07/9781932480207.jpg'), - ('1932480099', 'Aquarian Age - Juvenile Orion Volume 1', 'https://images.isbndb.com/covers/00/92/9781932480092.jpg'), - ('1591820162', 'Love Hina, Vol. 5', 'https://images.isbndb.com/covers/01/61/9781591820161.jpg'), - ('1569310491', 'Battle Angel Alita, Vol. 2: Tears Of An Angel (Viz Graphic Novel)', 'https://images.isbndb.com/covers/04/96/9781569310496.jpg'), - ('0743458206', 'The Ultimate Dracula', 'https://images.isbndb.com/covers/82/07/9780743458207.jpg'), - ('1591824729', 'Kare Kano: His And Her Circumstances, Vol. 7', 'https://images.isbndb.com/covers/47/25/9781591824725.jpg'), - ('0060530804', 'Dangerous Girls', 'https://images.isbndb.com/covers/08/08/9780060530808.jpg'), - ('0553493264', 'London: Kit & Robin: Year Abroad Trilogy 1 (Love Stories)', 'https://images.isbndb.com/covers/32/69/9780553493269.jpg'), - ('1591821819', 'Kare Kano: His And Her Circumstances, Vol. 6', 'https://images.isbndb.com/covers/18/16/9781591821816.jpg'), - ('1591820588', 'Kare Kano: His And Her Circumstances, Vol. 3', 'https://images.isbndb.com/covers/05/81/9781591820581.jpg'), - ('1560974109', 'Mail Order Bride', 'https://images.isbndb.com/covers/41/09/9781560974109.jpg'), - ('1591823951', 'Confidential Confessions, Book 3', 'https://images.isbndb.com/covers/39/57/9781591823957.jpg'), - ('1591823935', 'Confidential Confessions, Book 1', 'https://images.isbndb.com/covers/39/33/9781591823933.jpg'), - ('1591822246', 'Rising Stars Of Manga, Book 1', 'https://images.isbndb.com/covers/22/40/9781591822240.jpg'), - ('159182415X', '.hack//Legend Of The Twilight, Vol. 2', 'https://images.isbndb.com/covers/41/52/9781591824152.jpg'), - ('1591824141', '.Hack: //Legend Of The Twilight, Vol. 1', 'https://images.isbndb.com/covers/41/45/9781591824145.jpg'), - ('1931514186', 'Peach Girl, Book 8', 'https://images.isbndb.com/covers/41/87/9781931514187.jpg'), - ('1931514178', 'Peach Girl, Book 7', 'https://images.isbndb.com/covers/41/70/9781931514170.jpg'), - ('193151416X', 'Peach Girl #6', 'https://images.isbndb.com/covers/41/63/9781931514163.jpg'), - ('1931514151', 'Peach Girl #5', 'https://images.isbndb.com/covers/41/56/9781931514156.jpg'), - ('0872262278', 'Shakespeare''s Stories: Tragedies', 'https://images.isbndb.com/covers/22/70/9780872262270.jpg'), - ('082302377X', '"How To Draw Halloween, Christmas And Seasonal Characters" (How To Draw (Watson Guptill))', 'https://images.isbndb.com/covers/37/76/9780823023776.jpg'), - ('1591821800', 'Kare Kano: His And Her Circumstances, Vol. 5', 'https://images.isbndb.com/covers/18/09/9781591821809.jpg'), - ('1591820596', 'Kare Kano: His And Her Circumstances, Vol. 4', 'https://images.isbndb.com/covers/05/98/9781591820598.jpg'), - ('159182303X', 'Miyuki-chan In Wonderland', 'https://images.isbndb.com/covers/30/32/9781591823032.jpg'), - ('1931514798', 'Kare Kano: His And Her Circumstances, Vol. 1', 'https://images.isbndb.com/covers/47/98/9781931514798.jpg'), - ('1931514801', 'Kare Kano: His And Her Circumstances, Vol. 2', 'https://images.isbndb.com/covers/48/04/9781931514804.jpg'), - ('1591160502', 'X/1999, Vol. 8: Crescendo', 'https://images.isbndb.com/covers/05/02/9781591160502.jpg'), - ('156931568X', 'X/1999, Vol. 7: Rhapsody', 'https://images.isbndb.com/covers/56/82/9781569315682.jpg'), - ('1569314748', 'X/1999, Vol. 6: Duet', 'https://images.isbndb.com/covers/47/46/9781569314746.jpg'), - ('1569314071', 'X/1999, Vol. 5: Serenade', 'https://images.isbndb.com/covers/40/74/9781569314074.jpg'), - ('1569312648', 'X/1999, Vol. 4: Intermezzo', 'https://images.isbndb.com/covers/26/43/9781569312643.jpg'), - ('1569312273', 'X/1999, Volume 3: Sonata', 'https://images.isbndb.com/covers/22/78/9781569312278.jpg'), - ('1569311897', 'X/1999, Volume 2: Overture', 'https://images.isbndb.com/covers/18/99/9781569311899.jpg'), - ('1569311382', 'X/1999, Volume 1: Prelude', 'https://images.isbndb.com/covers/13/87/9781569311387.jpg'), - ('1591823455', 'Forbidden Dance, Book 1', 'https://images.isbndb.com/covers/34/52/9781591823452.jpg'), - ('1591825369', 'Rising Stars Of Manga, Book 2', 'https://images.isbndb.com/covers/53/64/9781591825364.jpg'), - ('1586649000', 'Aquarium', 'https://images.isbndb.com/covers/90/05/9781586649005.jpg'), - ('0224045814', 'Cloudland (A Tom Maschler Book)', 'https://images.isbndb.com/covers/58/10/9780224045810.jpg'), - ('0751505366', 'Dishonoured', 'https://images.isbndb.com/covers/53/68/9780751505368.jpg'), - ('1841640212', 'Mr Mole Gets Lost And Other Stories (Childrens Storytime Collection)', 'https://images.isbndb.com/covers/02/11/9781841640211.jpg'), - ('0553563971', 'Master Of Judo (Choose Your Own Adventure)', 'https://images.isbndb.com/covers/39/79/9780553563979.jpg'), - ('0571197418', 'The Spark Files: Dark Forces Bk. 6', 'https://images.isbndb.com/covers/74/15/9780571197415.jpg'), - ('0330482432', 'The Children''s Book Of Books 2000', 'https://images.isbndb.com/covers/24/31/9780330482431.jpg'), - ('0141307757', 'Chicken Run Novelisation', 'https://images.isbndb.com/covers/77/56/9780141307756.jpg'), - ('0750004088', 'The Little Vampire In Danger (Fiction: Little Vampire)', 'https://images.isbndb.com/covers/40/84/9780750004084.jpg'), - ('059013387X', 'Attack Of Killer Puzzles (Puzzle Books)', 'https://images.isbndb.com/covers/38/76/9780590133876.jpg'), - ('0746020899', 'Nightmare At Mystery Mansion (Spine Chillers)', 'https://images.isbndb.com/covers/08/90/9780746020890.jpg'), - ('0006751032', 'Butterfly Lion', 'https://images.isbndb.com/covers/10/38/9780006751038.jpg'), - ('1858811945', 'Ganging Up (Dolphin Books)', 'https://images.isbndb.com/covers/19/49/9781858811949.jpg'), - ('0330481355', 'The Worst Journey In The World: Antarctica 1910-13', 'https://images.isbndb.com/covers/13/59/9780330481359.jpg'), - ('0099769913', 'Songlines', 'https://images.isbndb.com/covers/99/10/9780099769910.jpg'), - ('3404143434', 'The Green Mile: Das Größte Geschenk überhaupt Ist Echte Freundscha: Der Grosse Roman Jetzt Verfilmt', 'https://images.isbndb.com/covers/34/36/9783404143436.jpg'), - ('3492107400', 'Herbstmilch. Lebenserinnerungen Einer Bäuerin', 'https://images.isbndb.com/covers/74/02/9783492107402.jpg'), - ('3453152271', 'Das Magische Messer', 'https://images.isbndb.com/covers/22/74/9783453152274.jpg'), - ('3404148932', 'Das Jesus Video. Filmbuch.', 'https://images.isbndb.com/covers/89/36/9783404148936.jpg'), - ('3257225350', 'Der Richter Und Sein Henker', 'https://images.isbndb.com/covers/53/58/9783257225358.jpg'), - ('3596113318', 'Virginia Woolf. Gesammelte Werke: Orlando', 'https://images.isbndb.com/covers/33/16/9783596113316.jpg'), - ('3150034914', 'Über Die Freiheit', 'https://images.isbndb.com/covers/49/10/9783150034910.jpg'), - ('3880220131', 'Im Schatten Des Friedens. Ein Bericht Aus Vietnam Und Kamputschea.', 'https://images.isbndb.com/covers/01/33/9783880220133.jpg'), - ('3150000912', 'Der Zerbrochne Krug', 'https://images.isbndb.com/covers/09/15/9783150000915.jpg'), - ('3499230755', 'Eine Seele Von Mörder.', 'https://images.isbndb.com/covers/07/52/9783499230752.jpg'), - ('3453137442', 'Der Goldene Kompass. His-Dark-Materials 01', 'https://images.isbndb.com/covers/74/48/9783453137448.jpg'), - ('3421051496', 'Mein Leben', 'https://images.isbndb.com/covers/14/93/9783421051493.jpg'), - ('3257008724', 'Weihnachtslied: Eine Gespenstergeschichte', 'https://images.isbndb.com/covers/87/22/9783257008722.jpg'), - ('1857025539', 'Dear London: Notes From The Big City', 'https://images.isbndb.com/covers/55/38/9781857025538.jpg'), - ('3426618303', 'London. Roman', 'https://images.isbndb.com/covers/83/01/9783426618301.jpg'), - ('3426611384', 'Selbstjustiz', 'https://images.isbndb.com/covers/13/88/9783426611388.jpg'), - ('3442447186', 'Träume Am Ufer Des Meeres: Roman', 'https://images.isbndb.com/covers/71/83/9783442447183.jpg'), - ('0553050680', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/06/84/9780553050684.jpg'), - ('1560761210', 'The Verdant Passage (Dark Sun World)', 'https://images.isbndb.com/covers/12/11/9781560761211.jpg'), - ('0747272522', 'Pastures Nouveaux', 'https://images.isbndb.com/covers/25/26/9780747272526.jpg'), - ('0385606990', 'Lyra''s Oxford', 'https://images.isbndb.com/covers/69/98/9780385606998.jpg'), - ('1843910500', 'With The Flow (Hesperus Classics)', 'https://images.isbndb.com/covers/05/03/9781843910503.jpg'), - ('0439288886', 'Treasure Island (Scholastic Classics)', 'https://images.isbndb.com/covers/88/80/9780439288880.jpg'), - ('1840221178', 'Chapman''s Homer: The Iliad And The Odyssey (Classics Of World Literature)', 'https://images.isbndb.com/covers/11/76/9781840221176.jpg'), - ('3791321641', 'Frida Kahlo And Diego Rivera (Pegasus Library)', 'https://images.isbndb.com/covers/16/46/9783791321646.jpg'), - ('1840225025', 'The Night Side Of Nature (Myth Legend & Folklore)', 'https://images.isbndb.com/covers/50/20/9781840225020.jpg'), - ('0340857382', 'Angela Carter: A Beginner''s Guide', 'https://images.isbndb.com/covers/73/80/9780340857380.jpg'), - ('057117857X', 'Freedom And Death', 'https://images.isbndb.com/covers/85/75/9780571178575.jpg'), - ('0345391837', 'So Long, And Thanks For All The Fish', 'https://images.isbndb.com/covers/18/34/9780345391834.jpg'), - ('0762413697', 'The Book Lover''s Kit', 'https://images.isbndb.com/covers/36/90/9780762413690.jpg'), - ('0141315741', 'The Magical Worlds Of The "Lord Of The Rings": An Unauthorised Guide - A Treasury Of Myths, Legends And Fascinating Facts', 'https://images.isbndb.com/covers/57/44/9780141315744.jpg'), - ('0711708770', 'Somerset, Wiltshire & The Mendips Walks (Pathfinder Guides)', 'https://images.isbndb.com/covers/87/78/9780711708778.jpg'), - ('0802139779', 'Young Adam', 'https://images.isbndb.com/covers/97/71/9780802139771.jpg'), - ('0297643347', 'Women In Purple: Three Byzantine Empresses', 'https://images.isbndb.com/covers/33/40/9780297643340.jpg'), - ('1900512440', 'Can Reindeer Fly?: The Science Of Christmas', 'https://images.isbndb.com/covers/24/42/9781900512442.jpg'), - ('0571081789', 'The Bell Jar', 'https://images.isbndb.com/covers/17/83/9780571081783.jpg'), - ('0156236001', 'The D. Case: Or The Truth About The Mystery Of Edwin Drood', 'https://images.isbndb.com/covers/60/03/9780156236003.jpg'), - ('1844130533', 'How To Read A Church', 'https://images.isbndb.com/covers/05/35/9781844130535.jpg'), - ('0310209307', 'The Case For Christ: A Journalist''s Personal Investigation Of The Evidence For Jesus', 'https://images.isbndb.com/covers/93/00/9780310209300.jpg'), - ('0060177888', 'All I Know About Animal Behavior I Learned In Loehmann''s Dressing Room', 'https://images.isbndb.com/covers/78/81/9780060177881.jpg'), - ('0440214114', 'Mixed Blessings', 'https://images.isbndb.com/covers/41/13/9780440214113.jpg'), - ('0671016652', 'Three Wishes', 'https://images.isbndb.com/covers/66/54/9780671016654.jpg'), - ('0515110132', 'Line Of Fire (The Corps, Book 5)', 'https://images.isbndb.com/covers/01/35/9780515110135.jpg'), - ('0446607827', 'Superstition', 'https://images.isbndb.com/covers/78/27/9780446607827.jpg'), - ('0613572742', 'Siddartha', 'https://images.isbndb.com/covers/27/43/9780613572743.jpg'), - ('0919924034', 'Driving Force Of Spiritual Powers', 'https://images.isbndb.com/covers/40/31/9780919924031.jpg'), - ('0448210339', 'Look Inside Your Body (Poke And Look)', 'https://images.isbndb.com/covers/03/39/9780448210339.jpg'), - ('0312099436', 'Women Of The Silk: A Novel', 'https://images.isbndb.com/covers/94/35/9780312099435.jpg'), - ('0451450442', 'Pyramids', 'https://images.isbndb.com/covers/04/49/9780451450449.jpg'), - ('0440987202', 'The Third Eye (Laurel-leaf Books)', 'https://images.isbndb.com/covers/72/08/9780440987208.jpg'), - ('0142301094', 'Origins (Sweep, No. 11)', 'https://images.isbndb.com/covers/10/98/9780142301098.jpg'), - ('0446357421', 'If Tomorrow Comes', 'https://images.isbndb.com/covers/74/25/9780446357425.jpg'), - ('0130314803', 'Mosaicos: Spanish As A World Language With CD-ROM (3rd Edition)', 'https://images.isbndb.com/covers/48/02/9780130314802.jpg'), - ('0812092821', '501 Spanish Verbs: Fully Conjugated In All The Tenses In A New Easy-to-Learn Format Alphabetically Arranged', 'https://images.isbndb.com/covers/28/20/9780812092820.jpg'), - ('0764551949', 'Spanish For Dummies', 'https://images.isbndb.com/covers/19/49/9780764551949.jpg'), - ('0312959249', 'Necessary Evil', 'https://images.isbndb.com/covers/92/41/9780312959241.jpg'), - ('1576739562', 'Tested By Fire (The Baxter Series #1)', 'https://images.isbndb.com/covers/95/63/9781576739563.jpg'), - ('0684868938', 'Don''t Make Me Stop This Car!: Adventures In Fatherhood', 'https://images.isbndb.com/covers/89/36/9780684868936.jpg'), - ('0312966814', 'Sleeping With The Crawfish (A St. Martin''s Dead Letter Mystery)', 'https://images.isbndb.com/covers/68/12/9780312966812.jpg'), - ('0399141065', 'Contagion', 'https://images.isbndb.com/covers/10/65/9780399141065.jpg'), - ('0425171272', 'Home Song', 'https://images.isbndb.com/covers/12/71/9780425171271.jpg'), - ('1880033100', 'Prayer Of The Warrior', 'https://images.isbndb.com/covers/31/04/9781880033104.jpg'), - ('0804900973', 'Adventures Of Sherlock Holmes', 'https://images.isbndb.com/covers/09/73/9780804900973.jpg'), - ('0449215571', 'Gone To Soldiers', 'https://images.isbndb.com/covers/55/79/9780449215579.jpg'), - ('0451516060', 'Robinson Crusoe (Signet Classics)', 'https://images.isbndb.com/covers/60/60/9780451516060.jpg'), - ('0764585932', 'Frankenstein (Cliffs Notes)', 'https://images.isbndb.com/covers/59/37/9780764585937.jpg'), - ('0553212478', 'Frankenstein', 'https://images.isbndb.com/covers/24/71/9780553212471.jpg'), - ('0671432427', 'Fathers Day', 'https://images.isbndb.com/covers/24/23/9780671432423.jpg'), - ('0517569620', 'Black Valentine', 'https://images.isbndb.com/covers/96/27/9780517569627.jpg'), - ('0671827944', 'Moviola', 'https://images.isbndb.com/covers/79/46/9780671827946.jpg'), - ('0671701363', 'Adventures Of Huckleberry Finn (Enriched Classic)', 'https://images.isbndb.com/covers/13/69/9780671701369.jpg'), - ('0553247727', 'Pritikin Program For Diet And Exercise', 'https://images.isbndb.com/covers/77/25/9780553247725.jpg'), - ('0842329242', 'Nicolae: The Rise Of Antichrist (Left Behind No. 3)', 'https://images.isbndb.com/covers/92/48/9780842329248.jpg'), - ('0553106333', 'Ashes To Ashes', 'https://images.isbndb.com/covers/63/36/9780553106336.jpg'), - ('0395683297', 'Silent Spring', 'https://images.isbndb.com/covers/32/93/9780395683293.jpg'), - ('0590451782', 'Jo''s Boys (Apple Classic)', 'https://images.isbndb.com/covers/17/89/9780590451789.jpg'), - ('0452270529', 'This Little Light Of Mine: The Life Of Fannie Lou Hamer', 'https://images.isbndb.com/covers/05/27/9780452270527.jpg'), - ('0425168298', 'Secret Prey (Lucas Davenport, No 9)', 'https://images.isbndb.com/covers/82/95/9780425168295.jpg'), - ('1566193087', 'Wuthering Heights', 'https://images.isbndb.com/covers/30/85/9781566193085.jpg'), - ('0553213423', 'Great Expectations (Bantam Classics)', 'https://images.isbndb.com/covers/34/23/9780553213423.jpg'), - ('0394713788', 'Is There No Place On Earth For Me?', 'https://images.isbndb.com/covers/37/86/9780394713786.jpg'), - ('0345433165', 'The Right Hand Of Evil', 'https://images.isbndb.com/covers/31/69/9780345433169.jpg'), - ('0785804714', 'All The Women Of The Bible', 'https://images.isbndb.com/covers/47/10/9780785804710.jpg'), - ('0002229544', 'Cold New Dawn', 'https://images.isbndb.com/covers/95/48/9780002229548.jpg'), - ('0140011307', 'The Thirty-Nine Steps (Classic Crime)', 'https://images.isbndb.com/covers/13/02/9780140011302.jpg'), - ('0671007343', 'At All Costs (Nancy Drew & Hardy Boys Super Mysteries #33)', 'https://images.isbndb.com/covers/73/48/9780671007348.jpg'), - ('067084943X', 'The Book Of Guys', 'https://images.isbndb.com/covers/94/37/9780670849437.jpg'), - ('0671799045', 'Evening Star', 'https://images.isbndb.com/covers/90/45/9780671799045.jpg'), - ('067178501X', 'Palmistry: How To Chart The Lines Of Your Life', 'https://images.isbndb.com/covers/50/17/9780671785017.jpg'), - ('0721406270', 'The Little Mermaid (Well Loved Tales)', 'https://images.isbndb.com/covers/62/75/9780721406275.jpg'), - ('0062508326', 'A Lover''s Alphabet: A Collection Of Aphrodisiac Recipes, Magic Formulae, Lovemaking Secrets And Erotic Miscellany From East And West (Pillow Book)', 'https://images.isbndb.com/covers/83/24/9780062508324.jpg'), - ('0486264661', 'Selected Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/46/60/9780486264660.jpg'), - ('0486272818', 'Miss Julie (Dover Thrift Editions)', 'https://images.isbndb.com/covers/28/18/9780486272818.jpg'), - ('0486272648', 'Beowulf (Dover Thrift Editions)', 'https://images.isbndb.com/covers/26/41/9780486272641.jpg'), - ('0486277836', 'My Last Duchess And Other Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/78/37/9780486277837.jpg'), - ('048627053X', 'Notes From The Underground (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/31/9780486270531.jpg'), - ('0064472531', 'Violet & Claire', 'https://images.isbndb.com/covers/25/31/9780064472531.jpg'), - ('0205131999', 'Perspectives On Personality', 'https://images.isbndb.com/covers/19/90/9780205131990.jpg'), - ('0451625781', 'A Primer Of Jungian Psychology (Mentor)', 'https://images.isbndb.com/covers/57/86/9780451625786.jpg'), - ('0441005004', 'Virus Clans: A Story Of Evolution', 'https://images.isbndb.com/covers/50/00/9780441005000.jpg'), - ('002346450X', 'The Consolation Of Philosophy: Boethius', 'https://images.isbndb.com/covers/45/08/9780023464508.jpg'), - ('0312280637', 'Ten Women Who Shook The World: Stories', 'https://images.isbndb.com/covers/06/35/9780312280635.jpg'), - ('0380017822', 'Animal Liberation: A New Ethics For Our Treatment Of Animals', 'https://images.isbndb.com/covers/78/29/9780380017829.jpg'), - ('0515129232', 'Second Wind', 'https://images.isbndb.com/covers/92/36/9780515129236.jpg'), - ('0345400011', 'It Wasn''t Always Easy, But I Sure Had Fun', 'https://images.isbndb.com/covers/00/17/9780345400017.jpg'), - ('0316898163', 'River, Cross My Heart : A Novel', 'https://images.isbndb.com/covers/81/64/9780316898164.jpg'), - ('0937611018', 'You Can Heal Your Life', 'https://images.isbndb.com/covers/10/12/9780937611012.jpg'), - ('0965834522', 'Hellspark', 'https://images.isbndb.com/covers/45/20/9780965834520.jpg'), - ('0671695347', 'About Face: The Odyssey Of An American Warrior', 'https://images.isbndb.com/covers/53/47/9780671695347.jpg'), - ('0671758748', 'Coping With Difficult People', 'https://images.isbndb.com/covers/87/45/9780671758745.jpg'), - ('0399147659', 'Isle Of Dogs (Andy Brazil)', 'https://images.isbndb.com/covers/76/54/9780399147654.jpg'), - ('0671869205', 'Truman', 'https://images.isbndb.com/covers/92/05/9780671869205.jpg'), - ('0374525102', 'Annie John: A Novel', 'https://images.isbndb.com/covers/51/01/9780374525101.jpg'), - ('0140003185', 'I, Claudius / Claudius The God (2 Volumes)', 'https://images.isbndb.com/covers/31/85/9780140003185.jpg'), - ('1853262412', '100 Selected Stories (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/24/18/9781853262418.jpg'), - ('1880656655', 'Ash', 'https://images.isbndb.com/covers/66/55/9781880656655.jpg'), - ('0812544196', 'Metamorphosis: The Sorcerer, Book 2 (The Camulod Chronicles, Book 6)', 'https://images.isbndb.com/covers/41/90/9780812544190.jpg'), - ('0446610526', 'The Legend', 'https://images.isbndb.com/covers/05/20/9780446610520.jpg'), - ('0385285965', 'Legends Of The Fall', 'https://images.isbndb.com/covers/59/64/9780385285964.jpg'), - ('0140017917', 'The Power And The Glory', 'https://images.isbndb.com/covers/79/15/9780140017915.jpg'), - ('0741409577', 'Chronicles Of Thanatos The Reaper', 'https://images.isbndb.com/covers/95/77/9780741409577.jpg'), - ('0380784130', 'Fair Peril', 'https://images.isbndb.com/covers/41/34/9780380784134.jpg'), - ('0345367693', 'The Diamond Throne', 'https://images.isbndb.com/covers/76/93/9780345367693.jpg'), - ('0345373529', 'The Ruby Knight (Book Two Of The Elenium)', 'https://images.isbndb.com/covers/35/26/9780345373526.jpg'), - ('096623460X', 'I Spit On Your Graves', 'https://images.isbndb.com/covers/46/02/9780966234602.jpg'), - ('0140165347', 'Jump And Other Short Stories', 'https://images.isbndb.com/covers/53/40/9780140165340.jpg'), - ('0446357448', 'Bloodline', 'https://images.isbndb.com/covers/74/49/9780446357449.jpg'), - ('0805209522', 'The Red Orchestra (Witnesses To War)', 'https://images.isbndb.com/covers/95/25/9780805209525.jpg'), - ('0385147635', 'Rogano: A Novel', 'https://images.isbndb.com/covers/76/37/9780385147637.jpg'), - ('0708905307', 'Kundu', 'https://images.isbndb.com/covers/53/02/9780708905302.jpg'), - ('0060510323', 'La Ciudad De Las Bestias (Spanish Edition)', 'https://images.isbndb.com/covers/03/29/9780060510329.jpg'), - ('0061008095', 'To Be The Best', 'https://images.isbndb.com/covers/80/92/9780061008092.jpg'), - ('0446606294', 'Perfect Harmony', 'https://images.isbndb.com/covers/62/95/9780446606295.jpg'), - ('0671689746', 'Sweet Liar', 'https://images.isbndb.com/covers/97/42/9780671689742.jpg'), - ('0060951273', 'El Plan Infinito (Spanish Edition)', 'https://images.isbndb.com/covers/12/76/9780060951276.jpg'), - ('0374523789', 'The Acts Of King Arthur And His Noble Knights: From The Winchester Manuscripts Of Thomas Malory & Other Sources', 'https://images.isbndb.com/covers/37/87/9780374523787.jpg'), - ('0449208885', 'Road To Paradise Island', 'https://images.isbndb.com/covers/88/85/9780449208885.jpg'), - ('0399136002', 'It Began In Vauxhall Gardens', 'https://images.isbndb.com/covers/60/09/9780399136009.jpg'), - ('067972768X', 'The Joy Luck Club: A Novel', 'https://images.isbndb.com/covers/76/82/9780679727682.jpg'), - ('0380723409', 'Virgins Of Paradise', 'https://images.isbndb.com/covers/34/09/9780380723409.jpg'), - ('0380790904', 'A Well Favored Gentleman', 'https://images.isbndb.com/covers/09/06/9780380790906.jpg'), - ('0800711246', 'Peace And Quiet And Other Hazards', 'https://images.isbndb.com/covers/12/45/9780800711245.jpg'), - ('0439104645', 'I Choose You (Pokemon Chapter Book #1)', 'https://images.isbndb.com/covers/46/47/9780439104647.jpg'), - ('0439160197', 'Powerpuff Girls Chapter Book #01: Powerful Professor (Powerpuff Girls, Chaper Book) (No. 1)', 'https://images.isbndb.com/covers/01/93/9780439160193.jpg'), - ('0439104661', 'Island Of The Giant Pokemon (Pokemon, No. 2)', 'https://images.isbndb.com/covers/46/61/9780439104661.jpg'), - ('0451401182', 'Dazzle (Onyx)', 'https://images.isbndb.com/covers/11/82/9780451401182.jpg'), - ('0345370139', 'Hollywood: A Novel Of America In The 1920s', 'https://images.isbndb.com/covers/01/36/9780345370136.jpg'), - ('0451145577', 'The Seventh Secret (Signet)', 'https://images.isbndb.com/covers/55/74/9780451145574.jpg'), - ('0440207428', 'The Minotaur', 'https://images.isbndb.com/covers/74/29/9780440207429.jpg'), - ('0446608106', 'Home Fires (Deborah Knott Mysteries)', 'https://images.isbndb.com/covers/81/07/9780446608107.jpg'), - ('0553562916', 'Better Homes And Gardens New Cook Book, 10th Edition', 'https://images.isbndb.com/covers/29/10/9780553562910.jpg'), - ('0345435907', 'Diana: The Secret Years', 'https://images.isbndb.com/covers/59/03/9780345435903.jpg'), - ('0385319215', 'Weep No More, My Lady', 'https://images.isbndb.com/covers/92/18/9780385319218.jpg'), - ('0684855135', 'The Last Dance: A Novel Of The 87th Precinct', 'https://images.isbndb.com/covers/51/34/9780684855134.jpg'), - ('0425160343', 'Connecticut Yankee In Criminal Court (Mark Twain Mystery)', 'https://images.isbndb.com/covers/03/43/9780425160343.jpg'), - ('0425155129', 'Death On The Mississippi (Mark Twain Mystery)', 'https://images.isbndb.com/covers/51/27/9780425155127.jpg'), - ('0425165671', 'The Prince And The Prosecuter (Mark Twain Mystery)', 'https://images.isbndb.com/covers/56/76/9780425165676.jpg'), - ('0553574566', 'A Monstrous Regiment Of Women', 'https://images.isbndb.com/covers/45/62/9780553574562.jpg'), - ('0394759842', 'Oscar Wilde', 'https://images.isbndb.com/covers/98/45/9780394759845.jpg'), - ('188845136X', 'Some Of The Parts', 'https://images.isbndb.com/covers/13/68/9781888451368.jpg'), - ('0553347756', 'Wild Mind: Living The Writer''s Life', 'https://images.isbndb.com/covers/77/53/9780553347753.jpg'), - ('3800015064', 'Das Rotweissrote Weltkugelbuch', 'https://images.isbndb.com/covers/50/61/9783800015061.jpg'), - ('3789129453', 'Die Kinder Aus Bullerbü', 'https://images.isbndb.com/covers/94/52/9783789129452.jpg'), - ('0452278384', 'The Carbohydrate Addict''s Lifespan Program : A Personalized Plan For Becoming Slim, Fit And Healthy In Your 40s, 50s, 60s And Beyond', 'https://images.isbndb.com/covers/83/87/9780452278387.jpg'), - ('0743250192', 'Chocolate For A Woman''s Soul Volume II : 77 Stories That Celebrate The Richness Of Life', 'https://images.isbndb.com/covers/01/91/9780743250191.jpg'), - ('1551664348', 'Montana', 'https://images.isbndb.com/covers/43/47/9781551664347.jpg'), - ('0061099732', 'Outer Banks', 'https://images.isbndb.com/covers/97/31/9780061099731.jpg'), - ('3453149793', 'Der Magier, Der Sand Der Zeit', 'https://images.isbndb.com/covers/97/93/9783453149793.jpg'), - ('3518404741', 'Amanda Herzlos: Roman', 'https://images.isbndb.com/covers/47/44/9783518404744.jpg'), - ('3442722357', 'Auf Den Schultern Meines Vaters. Eine Rückkehr Nach China.', 'https://images.isbndb.com/covers/23/58/9783442722358.jpg'), - ('3502151040', 'Sorge Dich Nicht, Lebe!', 'https://images.isbndb.com/covers/10/43/9783502151043.jpg'), - ('1570623392', 'A Troubadour''s Testament', 'https://images.isbndb.com/covers/33/94/9781570623394.jpg'), - ('0340590262', 'Children''s Children', 'https://images.isbndb.com/covers/02/63/9780340590263.jpg'), - ('3518366823', 'Siddhartha. Eine Indische Dichtung.', 'https://images.isbndb.com/covers/68/20/9783518366820.jpg'), - ('0452262380', 'Maxi-marketing: The New Direction In Advertising, Promotion, And Marketing Strategy', 'https://images.isbndb.com/covers/23/86/9780452262386.jpg'), - ('0688132464', 'The Customer Comes Second', 'https://images.isbndb.com/covers/24/60/9780688132460.jpg'), - ('0684834669', 'True Professionalism', 'https://images.isbndb.com/covers/46/65/9780684834665.jpg'), - ('1566471192', 'Teller Of Hawaiian Tales', 'https://images.isbndb.com/covers/11/90/9781566471190.jpg'), - ('0446393568', 'Successful Large Account Management: How To Hold On To Your Most Important Customers - And Keep Them Going Strong - In Today''s Marketplace', 'https://images.isbndb.com/covers/35/60/9780446393560.jpg'), - ('0425114686', 'How To Win Customers And Keep Them For Life', 'https://images.isbndb.com/covers/46/81/9780425114681.jpg'), - ('0515110396', 'Compelling Evidence (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/03/95/9780515110395.jpg'), - ('0385335555', 'Tell No One', 'https://images.isbndb.com/covers/55/53/9780385335553.jpg'), - ('0385414587', 'Mrs. Pollifax And The Whirling Dervish', 'https://images.isbndb.com/covers/45/86/9780385414586.jpg'), - ('0449911373', 'Mrs. Pollifax, Innocent Tourist', 'https://images.isbndb.com/covers/13/72/9780449911372.jpg'), - ('0399142193', 'Executive Orders', 'https://images.isbndb.com/covers/21/92/9780399142192.jpg'), - ('0385729332', 'Sisterhood Of The Traveling Pants (The Sisterhood Of The Traveling Pants)', 'https://images.isbndb.com/covers/93/38/9780385729338.jpg'), - ('0140048944', 'North Of South: An African Journey', 'https://images.isbndb.com/covers/89/40/9780140048940.jpg'), - ('0385333005', 'Driving Mr. Albert: A Trip Across America With Einstein''s Brain', 'https://images.isbndb.com/covers/30/09/9780385333009.jpg'), - ('0671517635', 'Gumpisms: The Wit And Wisdom Of Forrest Gump', 'https://images.isbndb.com/covers/76/32/9780671517632.jpg'), - ('0812695313', 'Buffy The Vampire Slayer And Philosophy: Fear And Trembling In Sunnydale (Popular Culture And Philosophy, Vol. 4)', 'https://images.isbndb.com/covers/53/11/9780812695311.jpg'), - ('0671606832', 'White Hart', 'https://images.isbndb.com/covers/68/31/9780671606831.jpg'), - ('0345428919', 'Out Of The Blue', 'https://images.isbndb.com/covers/89/12/9780345428912.jpg'), - ('0553289314', 'Indiana Jones And The Peril At Delphi (Indiana Jones, No. 1)', 'https://images.isbndb.com/covers/93/12/9780553289312.jpg'), - ('0399134999', 'Beyond The Fall Of Night', 'https://images.isbndb.com/covers/49/99/9780399134999.jpg'), - ('0321130073', 'HTML For The World Wide Web With XHTML And CSS, Fifth Edition', 'https://images.isbndb.com/covers/00/75/9780321130075.jpg'), - ('0812523113', 'The Winter Of The World', 'https://images.isbndb.com/covers/31/19/9780812523119.jpg'), - ('0886775388', 'Guilt-edged Ivory (Daw Science Fiction)', 'https://images.isbndb.com/covers/53/84/9780886775384.jpg'), - ('0312853742', 'The Element Of Fire', 'https://images.isbndb.com/covers/37/47/9780312853747.jpg'), - ('0441010210', 'Channeling Cleopatra', 'https://images.isbndb.com/covers/02/19/9780441010219.jpg'), - ('0451454146', 'The Innkeeper''s Song', 'https://images.isbndb.com/covers/41/40/9780451454140.jpg'), - ('0684854422', 'The Exes: A Novel', 'https://images.isbndb.com/covers/44/27/9780684854427.jpg'), - ('0312877994', 'Gene Roddenberry''s Earth: Final Conflict--Augur''s Teacher', 'https://images.isbndb.com/covers/79/96/9780312877996.jpg'), - ('0505525542', 'Sex And The Single Vampire', 'https://images.isbndb.com/covers/55/43/9780505525543.jpg'), - ('0345448995', 'Regina''s Song', 'https://images.isbndb.com/covers/89/96/9780345448996.jpg'), - ('0061099155', 'People Of Darkness', 'https://images.isbndb.com/covers/91/51/9780061099151.jpg'), - ('0671878638', 'Bedlam''s Bard', 'https://images.isbndb.com/covers/86/34/9780671878634.jpg'), - ('0802139981', 'A Storm In Flanders: The Ypres Salient, 1914-1918: Tragedy And Triumph On The Western Front', 'https://images.isbndb.com/covers/99/86/9780802139986.jpg'), - ('0886778913', 'Sword And Sorceress XVII', 'https://images.isbndb.com/covers/89/10/9780886778910.jpg'), - ('0451198379', 'Leonard Maltin''s Movie And Video Guide 2000', 'https://images.isbndb.com/covers/83/72/9780451198372.jpg'), - ('0152337016', 'Helga''s Dowry: A Troll Love Story', 'https://images.isbndb.com/covers/70/18/9780152337018.jpg'), - ('0873585763', 'Goose And The Mountain Lion', 'https://images.isbndb.com/covers/57/67/9780873585767.jpg'), - ('0394546415', 'Minute By Minute...: The Story Of "60 Minutes"', 'https://images.isbndb.com/covers/64/14/9780394546414.jpg'), - ('051512768X', 'The Orchid Hunter', 'https://images.isbndb.com/covers/76/83/9780515127683.jpg'), - ('0312916671', 'Friends, Russians And Countrymen', 'https://images.isbndb.com/covers/66/71/9780312916671.jpg'), - ('0671218336', 'The Mote In God''s Eye', 'https://images.isbndb.com/covers/83/31/9780671218331.jpg'), - ('0449700895', 'Homecoming', 'https://images.isbndb.com/covers/08/91/9780449700891.jpg'), - ('031203833X', 'Flight To Yesterday', 'https://images.isbndb.com/covers/83/35/9780312038335.jpg'), - ('0688044816', 'I Never Played The Game', 'https://images.isbndb.com/covers/48/17/9780688044817.jpg'), - ('0688035418', 'The Resort', 'https://images.isbndb.com/covers/54/19/9780688035419.jpg'), - ('0679723250', 'The Postman Always Rings Twice', 'https://images.isbndb.com/covers/32/57/9780679723257.jpg'), - ('0441203981', 'Elric Of Melnibone 1', 'https://images.isbndb.com/covers/39/87/9780441203987.jpg'), - ('0441048854', 'The Bane Of The Black Sword (Elric Saga, Book 5)', 'https://images.isbndb.com/covers/88/54/9780441048854.jpg'), - ('0441787541', 'Storm Bringer (Elric Saga, Book 6)', 'https://images.isbndb.com/covers/75/48/9780441787548.jpg'), - ('0441888054', 'The Weird Of The White Wolf - (Book 3 Of The Elric Saga)', 'https://images.isbndb.com/covers/80/54/9780441888054.jpg'), - ('0441001068', 'The Revenge Of The Rose', 'https://images.isbndb.com/covers/10/64/9780441001064.jpg'), - ('0441860397', 'Vanishing Tower 4', 'https://images.isbndb.com/covers/03/95/9780441860395.jpg'), - ('0441748635', 'The Sailor On The Seas Of Fate 2 (Elric Saga) (Book 2)', 'https://images.isbndb.com/covers/86/31/9780441748631.jpg'), - ('0374455031', 'The Night Of Wishes', 'https://images.isbndb.com/covers/50/33/9780374455033.jpg'), - ('1582402159', 'Magdalena: Blood Divine', 'https://images.isbndb.com/covers/21/54/9781582402154.jpg'), - ('0140449132', 'Crime And Punishment (Penguin Classics)', 'https://images.isbndb.com/covers/91/36/9780140449136.jpg'), - ('0192823795', 'The Sign Of Four (The Oxford Sherlock Holmes)', 'https://images.isbndb.com/covers/37/93/9780192823793.jpg'), - ('0394758277', 'Farewell, My Lovely', 'https://images.isbndb.com/covers/82/75/9780394758275.jpg'), - ('0375405119', 'The Talented Mr. Ripley', 'https://images.isbndb.com/covers/51/12/9780375405112.jpg'), - ('0739307320', 'The Devil Wears Prada', 'https://images.isbndb.com/covers/73/28/9780739307328.jpg'), - ('014044629X', 'The Decameron: Second Edition (Penguin Classics)', 'https://images.isbndb.com/covers/62/96/9780140446296.jpg'), - ('0140184937', 'Our Man In Havana: An Entertainment (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/49/38/9780140184938.jpg'), - ('1587156865', 'The Black Tulip', 'https://images.isbndb.com/covers/68/61/9781587156861.jpg'), - ('1400100666', 'The Invisible Man', 'https://images.isbndb.com/covers/06/68/9781400100668.jpg'), - ('9505812760', 'Corsario Negro, El (Spanish Edition)', 'https://images.isbndb.com/covers/27/69/9789505812769.jpg'), - ('0451527461', 'The Prince (Signet Classics)', 'https://images.isbndb.com/covers/74/62/9780451527462.jpg'), - ('078688942X', 'The Book Of D''Ni (Myst, Book 3)', 'https://images.isbndb.com/covers/94/26/9780786889426.jpg'), - ('0553373854', 'Buddha''s Little Instruction Book', 'https://images.isbndb.com/covers/38/51/9780553373851.jpg'), - ('0688171451', 'Altar Ego', 'https://images.isbndb.com/covers/14/52/9780688171452.jpg'), - ('0942394577', 'New York, Images Of The Landscape', 'https://images.isbndb.com/covers/45/73/9780942394573.jpg'), - ('0345315715', 'The Robots Of Dawn (R. Daneel Olivaw, No. 3)', 'https://images.isbndb.com/covers/57/17/9780345315717.jpg'), - ('0345336275', 'Foundation, Book 1', 'https://images.isbndb.com/covers/62/79/9780345336279.jpg'), - ('0425115291', 'Silver Tower', 'https://images.isbndb.com/covers/52/99/9780425115299.jpg'), - ('1551667010', 'The Soul Catcher: A Maggie O''Dell Novel', 'https://images.isbndb.com/covers/70/10/9781551667010.jpg'), - ('0425168220', 'State Of Siege (Tom Clancy''s Op-Center, Book 6)', 'https://images.isbndb.com/covers/82/26/9780425168226.jpg'), - ('0440220793', 'The 13th Juror (Dismas Hardy)', 'https://images.isbndb.com/covers/07/94/9780440220794.jpg'), - ('0446301353', 'Grey Mask', 'https://images.isbndb.com/covers/13/50/9780446301350.jpg'), - ('0425146413', 'Night Prey', 'https://images.isbndb.com/covers/64/15/9780425146415.jpg'), - ('0553566075', 'Dead Man''s Island', 'https://images.isbndb.com/covers/60/79/9780553566079.jpg'), - ('0451409639', 'Pandora''s Curse (Philip Mercer)', 'https://images.isbndb.com/covers/96/38/9780451409638.jpg'), - ('0553580167', 'Gemini Man', 'https://images.isbndb.com/covers/01/67/9780553580167.jpg'), - ('0590341286', 'I Spy Super Challenger', 'https://images.isbndb.com/covers/12/88/9780590341288.jpg'), - ('0310535212', 'How To Survive Middle School A Humorous Guide To The Wonder Years: A Humorous Guide To The Wonder Years (Get ''em Growing)', 'https://images.isbndb.com/covers/52/18/9780310535218.jpg'), - ('0880385480', 'LEGEND OF HUMA (Dragonlance: Heroes)', 'https://images.isbndb.com/covers/54/80/9780880385480.jpg'), - ('0380793342', 'The Heir', 'https://images.isbndb.com/covers/33/41/9780380793341.jpg'), - ('0140285105', 'Equal Music', 'https://images.isbndb.com/covers/51/09/9780140285109.jpg'), - ('0486295729', 'The Double (Dover Thrift Editions)', 'https://images.isbndb.com/covers/57/25/9780486295725.jpg'), - ('0140622160', 'Selected Poems (Popular Classics)', 'https://images.isbndb.com/covers/21/64/9780140622164.jpg'), - ('0515094773', 'Vows', 'https://images.isbndb.com/covers/47/70/9780515094770.jpg'), - ('068803196X', 'Bloodline', 'https://images.isbndb.com/covers/19/61/9780688031961.jpg'), - ('060303294X', 'The Naughtiest Girl Is A Monitor (Rewards)', 'https://images.isbndb.com/covers/29/43/9780603032943.jpg'), - ('1551664445', 'To Love, Honor And Betray', 'https://images.isbndb.com/covers/44/46/9781551664446.jpg'), - ('0373271948', 'The Man Who Would Be King (Romancing The Crown) (Harlequin Romantic Suspense # 1124)', 'https://images.isbndb.com/covers/19/48/9780373271948.jpg'), - ('2080701142', 'Histoires Grotesques Et Sérieuses', 'https://images.isbndb.com/covers/11/45/9782080701145.jpg'), - ('158243140X', 'Deus Lo Volt!: A Chronicle Of The Crusades', 'https://images.isbndb.com/covers/14/06/9781582431406.jpg'), - ('0138153094', 'Soccer Drills For Individual And Team Play', 'https://images.isbndb.com/covers/30/90/9780138153090.jpg'), - ('0452011345', 'A Brief History Of The Caribbean: From The Arawak And The Carib To The Present', 'https://images.isbndb.com/covers/13/42/9780452011342.jpg'), - ('0764912518', 'Cryptorunes: Codes And Secret Writing', 'https://images.isbndb.com/covers/25/11/9780764912511.jpg'), - ('1588800296', 'CISSP Exam Cram', 'https://images.isbndb.com/covers/02/99/9781588800299.jpg'), - ('0486275574', 'Romeo And Juliet (Dover Thrift Editions)', 'https://images.isbndb.com/covers/55/74/9780486275574.jpg'), - ('1857933206', 'Clubbed Class Hb', 'https://images.isbndb.com/covers/32/08/9781857933208.jpg'), - ('0349107688', 'Whit', 'https://images.isbndb.com/covers/76/84/9780349107684.jpg'), - ('0868065951', 'Halfway To Eden (Contemporary Australian Poets)', 'https://images.isbndb.com/covers/59/53/9780868065953.jpg'), - ('0860682854', 'Literature Of Their Own', 'https://images.isbndb.com/covers/28/51/9780860682851.jpg'), - ('0811214575', 'A Far Cry From Kensington', 'https://images.isbndb.com/covers/45/75/9780811214575.jpg'), - ('1862053642', 'Fallen Angels: Paintings By Jack Vettriano', 'https://images.isbndb.com/covers/36/49/9781862053649.jpg'), - ('014043061X', 'Confessions Of An English Opium Eater (Penguin English Library)', 'https://images.isbndb.com/covers/06/15/9780140430615.jpg'), - ('0679738134', 'Look At Me', 'https://images.isbndb.com/covers/81/38/9780679738138.jpg'), - ('0140028668', 'The Sailor Who Fell From Grace With The Sea', 'https://images.isbndb.com/covers/86/69/9780140028669.jpg'), - ('0345255577', 'Star Trek Log Nine', 'https://images.isbndb.com/covers/55/70/9780345255570.jpg'), - ('0553121375', 'Vulcan!', 'https://images.isbndb.com/covers/13/77/9780553121377.jpg'), - ('0553252526', 'Star Trek 12', 'https://images.isbndb.com/covers/25/21/9780553252521.jpg'), - ('0553109782', 'The Price Of The Phoenix (Star Trek)', 'https://images.isbndb.com/covers/97/88/9780553109788.jpg'), - ('0671632663', 'Star Trek IV: The Voyage Home', 'https://images.isbndb.com/covers/26/63/9780671632663.jpg'), - ('0671501070', 'Dragon''s Honor (Star Trek: The Next Generation, No. 38)', 'https://images.isbndb.com/covers/10/75/9780671501075.jpg'), - ('081253221X', 'Gremlins Go Home', 'https://images.isbndb.com/covers/22/10/9780812532210.jpg'), - ('0671027514', 'Springwater', 'https://images.isbndb.com/covers/75/13/9780671027513.jpg'), - ('0451404327', 'The Rebel Bride (Coulter Historical Romance)', 'https://images.isbndb.com/covers/43/29/9780451404329.jpg'), - ('0310200059', 'The Book Of God: The Bible As A Novel', 'https://images.isbndb.com/covers/00/55/9780310200055.jpg'), - ('1576736261', 'African Skies (Palisades Pure Romance)', 'https://images.isbndb.com/covers/62/65/9781576736265.jpg'), - ('0345333926', 'Ringworld', 'https://images.isbndb.com/covers/39/26/9780345333926.jpg'), - ('0446603503', 'Superstitious', 'https://images.isbndb.com/covers/35/08/9780446603508.jpg'), - ('0345257502', 'A WORLD OUT OF TIME', 'https://images.isbndb.com/covers/75/05/9780345257505.jpg'), - ('0812510127', 'High Flight', 'https://images.isbndb.com/covers/01/26/9780812510126.jpg'), - ('0440225825', 'Move To Strike', 'https://images.isbndb.com/covers/58/29/9780440225829.jpg'), - ('0425191729', 'Golden Buddha (The Oregon Files)', 'https://images.isbndb.com/covers/17/29/9780425191729.jpg'), - ('0849396409', 'The CRC Concise Encyclopedia Of Mathematics', 'https://images.isbndb.com/covers/64/03/9780849396403.jpg'), - ('0879800429', 'A New Guide To Rational Living', 'https://images.isbndb.com/covers/04/20/9780879800420.jpg'), - ('0446349763', 'Edgar Cayce On Mysteries Of The Mind', 'https://images.isbndb.com/covers/97/65/9780446349765.jpg'), - ('0553227386', 'The Edgar Cayce Primer', 'https://images.isbndb.com/covers/73/83/9780553227383.jpg'), - ('0138094764', 'Simon & Schuster Handbook For Writers Second Edition', 'https://images.isbndb.com/covers/47/68/9780138094768.jpg'), - ('0471084263', 'How To Write Articles That Sell (General Trade)', 'https://images.isbndb.com/covers/42/66/9780471084266.jpg'), - ('0911654690', 'Sell Copy: How To Write It, How To Sell It, How To Buy It', 'https://images.isbndb.com/covers/46/91/9780911654691.jpg'), - ('0385484984', 'Visions', 'https://images.isbndb.com/covers/49/85/9780385484985.jpg'), - ('0878575707', 'Dave Barry''s Stay Fit And Healthy Until You''re Dead', 'https://images.isbndb.com/covers/57/01/9780878575701.jpg'), - ('0671832638', 'The Further Education Of Oversoul Seven', 'https://images.isbndb.com/covers/26/36/9780671832636.jpg'), - ('0449144585', 'Next Encounter', 'https://images.isbndb.com/covers/45/89/9780449144589.jpg'), - ('0449243583', 'Donahue: My Own Story', 'https://images.isbndb.com/covers/35/89/9780449243589.jpg'), - ('0394558332', 'Trust Me', 'https://images.isbndb.com/covers/83/32/9780394558332.jpg'), - ('0312977026', 'K-Pax', 'https://images.isbndb.com/covers/70/23/9780312977023.jpg'), - ('067346427X', 'Constellations: A Contextual Reader For Writers / [Ed. By] John Schilb.', 'https://images.isbndb.com/covers/42/79/9780673464279.jpg'), - ('044990668X', 'Cat-Dependent No More: Learning To Live Cat-Free In A Cat-Filled World', 'https://images.isbndb.com/covers/66/82/9780449906682.jpg'), - ('0465005594', 'The Physics Of Star Trek', 'https://images.isbndb.com/covers/55/98/9780465005598.jpg'), - ('044022330X', 'Rush Limbaugh Is A Big Fat Idiot', 'https://images.isbndb.com/covers/33/06/9780440223306.jpg'), - ('2211016529', 'Inspecteur Toutou', 'https://images.isbndb.com/covers/65/20/9782211016520.jpg'), - ('0752803409', 'Pavement For My Pillow Hb', 'https://images.isbndb.com/covers/34/01/9780752803401.jpg'), - ('0609800140', 'Anatomy Of The Spirit: The Seven Stages Of Power And Healing', 'https://images.isbndb.com/covers/01/40/9780609800140.jpg'), - ('1893732126', 'Everyday Simplicity: A Practical Guide To Spiritual Growth', 'https://images.isbndb.com/covers/21/24/9781893732124.jpg'), - ('3499231670', 'Masken Der Illuminaten.', 'https://images.isbndb.com/covers/16/74/9783499231674.jpg'), - ('3499222736', 'Illuminatus 03: Leviathan', 'https://images.isbndb.com/covers/27/33/9783499222733.jpg'), - ('3499222728', 'Illuminatus 02. Der Goldene Apfel', 'https://images.isbndb.com/covers/27/26/9783499222726.jpg'), - ('0375431403', 'The Smoke Jumper (Random House Large Print)', 'https://images.isbndb.com/covers/14/01/9780375431401.jpg'), - ('0553050044', 'Night Probe! (Dirk Pitt Adventure)', 'https://images.isbndb.com/covers/00/42/9780553050042.jpg'), - ('0911104674', 'Never Eat Anything Bigger Than Your Head & Other Drawings', 'https://images.isbndb.com/covers/46/77/9780911104677.jpg'), - ('0380725347', 'Even The Wicked: A Matthew Scudder Novel', 'https://images.isbndb.com/covers/53/42/9780380725342.jpg'), - ('0312978820', 'Hot Night In The City', 'https://images.isbndb.com/covers/88/22/9780312978822.jpg'), - ('0889951853', 'Restlessness (Fiction)', 'https://images.isbndb.com/covers/18/53/9780889951853.jpg'), - ('0002005395', 'Deafening', 'https://images.isbndb.com/covers/53/95/9780002005395.jpg'), - ('1551668076', 'Gathering Lies', 'https://images.isbndb.com/covers/80/79/9781551668079.jpg'), - ('0670892084', 'Welcome To My Planet', 'https://images.isbndb.com/covers/20/82/9780670892082.jpg'), - ('0888012748', 'Macaws Of Death (A Robyn Devara Mystery)', 'https://images.isbndb.com/covers/27/46/9780888012746.jpg'), - ('0889951918', 'Shield Country: The Life And Times Of The Oldest Piece Of The Planet (Anthologies)', 'https://images.isbndb.com/covers/19/14/9780889951914.jpg'), - ('0812534085', 'The Ivory And The Horn (Tor Fantasy)', 'https://images.isbndb.com/covers/40/85/9780812534085.jpg'), - ('0888012268', 'Hoot To Kill (Robyn Devara Mysteries)', 'https://images.isbndb.com/covers/22/65/9780888012265.jpg'), - ('0394740181', 'American Indian Myths And Legends (Pantheon Fairy Tale & Folklore Library)', 'https://images.isbndb.com/covers/01/88/9780394740188.jpg'), - ('0812589505', 'Song Of The Axe', 'https://images.isbndb.com/covers/95/04/9780812589504.jpg'), - ('076150592X', 'Small Business Toolkit - Marketing For The Self-Employed', 'https://images.isbndb.com/covers/59/21/9780761505921.jpg'), - ('077109969X', 'The Lost Salt Gift Of Blood', 'https://images.isbndb.com/covers/96/94/9780771099694.jpg'), - ('039304632X', 'The Voyage Of The Narwhal', 'https://images.isbndb.com/covers/63/28/9780393046328.jpg'), - ('1552631885', 'Walking Since Daybreak', 'https://images.isbndb.com/covers/18/81/9781552631881.jpg'), - ('0385475004', 'Joining The Tribe: Growing Up Gay And Lesbian In The ''90s', 'https://images.isbndb.com/covers/50/06/9780385475006.jpg'), - ('0553279580', 'The Valley Of Thunder (Philip Jose Farmer''s Dungeon, Book 3)', 'https://images.isbndb.com/covers/95/80/9780553279580.jpg'), - ('0553276409', 'The Dark Abyss ( The Dungeon, Volume 2)', 'https://images.isbndb.com/covers/64/04/9780553276404.jpg'), - ('0679731725', 'The Remains Of The Day', 'https://images.isbndb.com/covers/17/26/9780679731726.jpg'), - ('0886776287', 'Sing The Four Quarters', 'https://images.isbndb.com/covers/62/82/9780886776282.jpg'), - ('0385172419', 'The Politics Of Women''s Spirituality: Essays By Founding Mothers Of The Movement', 'https://images.isbndb.com/covers/24/17/9780385172417.jpg'), - ('0889223025', 'Les Belles Soeurs: (Revised)', 'https://images.isbndb.com/covers/30/28/9780889223028.jpg'), - ('0889221456', 'Balconville', 'https://images.isbndb.com/covers/14/51/9780889221451.jpg'), - ('0919591566', 'Rapid Transits And Other Stories', 'https://images.isbndb.com/covers/15/61/9780919591561.jpg'), - ('0064402754', 'The Best Christmas Pageant Ever', 'https://images.isbndb.com/covers/27/50/9780064402750.jpg'), - ('088001539X', '20th Century Pleasures', 'https://images.isbndb.com/covers/53/94/9780880015394.jpg'), - ('0380441071', 'Nosferatu The Vampire', 'https://images.isbndb.com/covers/10/75/9780380441075.jpg'), - ('0451210638', 'A Case Of Need', 'https://images.isbndb.com/covers/06/30/9780451210630.jpg'), - ('0345346890', 'For Love Of Mother-Not (Adventures Of Pip And Flinx)', 'https://images.isbndb.com/covers/68/96/9780345346896.jpg'), - ('0486290387', 'Looking Backward (Dover Thrift Editions)', 'https://images.isbndb.com/covers/03/86/9780486290386.jpg'), - ('0525938508', 'Life On The Color Line', 'https://images.isbndb.com/covers/85/07/9780525938507.jpg'), - ('0373052987', 'Destiny''s Daughter (Silhouette Desire, No 298)', 'https://images.isbndb.com/covers/29/81/9780373052981.jpg'), - ('0373052367', 'River Of Dreams (Silhouette Desire)', 'https://images.isbndb.com/covers/23/63/9780373052363.jpg'), - ('0373054742', 'Thin Ice (Desire)', 'https://images.isbndb.com/covers/47/49/9780373054749.jpg'), - ('0671570986', 'Midnight Wine (Silhouette Romance, No. 98)', 'https://images.isbndb.com/covers/09/89/9780671570989.jpg'), - ('0671571117', 'Vancouver Victoria Map', 'https://images.isbndb.com/covers/11/15/9780671571115.jpg'), - ('0373095287', 'If There Be Love (Silhouette Special Edition)', 'https://images.isbndb.com/covers/52/85/9780373095285.jpg'), - ('0440149843', 'Lost Letters (Ecstasy, No 311)', 'https://images.isbndb.com/covers/98/42/9780440149842.jpg'), - ('0440118891', 'Destiny''s Touch', 'https://images.isbndb.com/covers/88/93/9780440118893.jpg'), - ('0440173701', 'Remembrance', 'https://images.isbndb.com/covers/37/00/9780440173700.jpg'), - ('0373089899', 'Seeker (Silhouette Romance)', 'https://images.isbndb.com/covers/98/95/9780373089895.jpg'), - ('0906710618', 'Garfield-Who''s Talking? (Garfield Pocket Books)', 'https://images.isbndb.com/covers/06/16/9780906710616.jpg'), - ('0375432329', 'The Five People You Meet In Heaven (Random House Large Print)', 'https://images.isbndb.com/covers/23/23/9780375432323.jpg'), - ('0399151060', 'Remember When', 'https://images.isbndb.com/covers/10/64/9780399151064.jpg'), - ('0739437631', '311 Pelican Court (Cedar Cove Series #3)', 'https://images.isbndb.com/covers/76/36/9780739437636.jpg'), - ('0345456521', 'No Graves As Yet: A Novel Of World War I, 1st Edition', 'https://images.isbndb.com/covers/65/26/9780345456526.jpg'), - ('0842384065', 'Soon (Underground Zealot Series #1)', 'https://images.isbndb.com/covers/40/63/9780842384063.jpg'), - ('0842332340', 'Armageddon: The Cosmic Battle Of The Ages (Left Behind #11)', 'https://images.isbndb.com/covers/23/47/9780842332347.jpg'), - ('0425191796', 'Letter From Home', 'https://images.isbndb.com/covers/17/98/9780425191798.jpg'), - ('0449207005', 'A Morbid Taste For Bones (Brother Cadfael Mysteries)', 'https://images.isbndb.com/covers/70/00/9780449207000.jpg'), - ('0060809078', 'Gaudy Night', 'https://images.isbndb.com/covers/90/72/9780060809072.jpg'), - ('0446600768', 'Snagged (Regan Reilly Mystery Series, Book 2)', 'https://images.isbndb.com/covers/07/67/9780446600767.jpg'), - ('0451186729', 'Somebody Else''s Child', 'https://images.isbndb.com/covers/67/20/9780451186720.jpg'), - ('074341134X', 'True To Form : A Novel', 'https://images.isbndb.com/covers/13/49/9780743411349.jpg'), - ('0804103658', 'Radiant Way', 'https://images.isbndb.com/covers/36/57/9780804103657.jpg'), - ('0345347676', 'Camber Of Culdi (Legends Of Camber Of Culdi)', 'https://images.isbndb.com/covers/76/71/9780345347671.jpg'), - ('0553109332', 'The Things I Want Most: The Extraordinary Story Of A Boy''s Journey To A Family Of His Own', 'https://images.isbndb.com/covers/93/37/9780553109337.jpg'), - ('0764225170', 'Shadows Of The Canyon (Desert Roses #1)', 'https://images.isbndb.com/covers/51/78/9780764225178.jpg'), - ('0395636264', 'River-Horse: A Voyage Across America', 'https://images.isbndb.com/covers/62/68/9780395636268.jpg'), - ('0451402383', 'Fire Song (Song Novels)', 'https://images.isbndb.com/covers/23/87/9780451402387.jpg'), - ('0451402340', 'Secret Song (Song Novels)', 'https://images.isbndb.com/covers/23/49/9780451402349.jpg'), - ('0345284364', 'The Stories Of John Cheever', 'https://images.isbndb.com/covers/43/65/9780345284365.jpg'), - ('0671525751', 'Someone To Watch Over Me : A Novel', 'https://images.isbndb.com/covers/57/50/9780671525750.jpg'), - ('0743227611', 'The Silent Lady: A Novel', 'https://images.isbndb.com/covers/76/12/9780743227612.jpg'), - ('0670030511', 'Stones Of Jerusalem (Zion Legacy)', 'https://images.isbndb.com/covers/05/14/9780670030514.jpg'), - ('0670891797', 'Aunt Dimity Beats The Devil', 'https://images.isbndb.com/covers/17/95/9780670891795.jpg'), - ('015100692X', 'The Crimson Petal And The White', 'https://images.isbndb.com/covers/69/22/9780151006922.jpg'), - ('0802733794', 'Sins Out Of School (Dorothy Martin Mysteries, No. 8)', 'https://images.isbndb.com/covers/37/95/9780802733795.jpg'), - ('0609602497', 'On Mystic Lake', 'https://images.isbndb.com/covers/24/92/9780609602492.jpg'), - ('0312864833', 'The Crystal City (Tales Of Alvin Maker, Book 6)', 'https://images.isbndb.com/covers/48/35/9780312864835.jpg'), - ('1888363819', 'Parable Of The Talents: A Novel', 'https://images.isbndb.com/covers/38/14/9781888363814.jpg'), - ('0802713432', 'Galileo''s Daughter', 'https://images.isbndb.com/covers/34/38/9780802713438.jpg'), - ('0375431314', 'The World Below (Random House Large Print)', 'https://images.isbndb.com/covers/13/19/9780375431319.jpg'), - ('155166884X', 'Doing Good', 'https://images.isbndb.com/covers/88/40/9781551668840.jpg'), - ('0783889542', 'Galileo''s Daughter: A Historical Memoir Of Science, Faith, And Love', 'https://images.isbndb.com/covers/95/42/9780783889542.jpg'), - ('0156790157', 'The Roots Of Treason: Ezra Pound And The Secret Of St. Elizabeths', 'https://images.isbndb.com/covers/01/54/9780156790154.jpg'), - ('0312272197', 'The Wedding: A Novel', 'https://images.isbndb.com/covers/21/97/9780312272197.jpg'), - ('0312863462', 'Secret Passages', 'https://images.isbndb.com/covers/34/63/9780312863463.jpg'), - ('0743446496', 'The Right Words At The Right Time', 'https://images.isbndb.com/covers/64/95/9780743446495.jpg'), - ('0385502176', 'Open Secrets: A Spiritual Journey Through A Country Church', 'https://images.isbndb.com/covers/21/77/9780385502177.jpg'), - ('0060158638', 'The Bean Trees', 'https://images.isbndb.com/covers/86/37/9780060158637.jpg'), - ('0805056637', 'Are You Somebody?: The Accidental Memoir Of A Dublin Woman', 'https://images.isbndb.com/covers/66/31/9780805056631.jpg'), - ('0064407691', 'The Miserable Mill (A Series Of Unfortunate Events, Book 4)', 'https://images.isbndb.com/covers/76/94/9780064407694.jpg'), - ('0385314698', 'The Sixteen Pleasures: A Novel', 'https://images.isbndb.com/covers/46/95/9780385314695.jpg'), - ('0156000520', 'Clabbered Dirt, Sweet Grass', 'https://images.isbndb.com/covers/05/29/9780156000529.jpg'), - ('0553110004', 'All Things Bright And Beautiful', 'https://images.isbndb.com/covers/00/05/9780553110005.jpg'), - ('0881762024', 'Campbell''s Creative Cooking With Soup: Over 19,000 Delicious Mix And Match Recipes', 'https://images.isbndb.com/covers/20/20/9780881762020.jpg'), - ('0312208804', 'Biggie And The Meddlesome Mailman', 'https://images.isbndb.com/covers/88/06/9780312208806.jpg'), - ('076455168X', 'Weight Training For Dummies', 'https://images.isbndb.com/covers/16/80/9780764551680.jpg'), - ('087483435X', 'Storytelling Coach: How To Listen, Praise, And Bring Out People''s Best (American Storytelling)', 'https://images.isbndb.com/covers/43/52/9780874834352.jpg'), - ('0590415719', 'It''s Thanksgiving', 'https://images.isbndb.com/covers/57/12/9780590415712.jpg'), - ('0070540403', 'Presenting & Training With Magic : 53 Simple Magic Tricks You Can Use To Energize Any Audience', 'https://images.isbndb.com/covers/04/08/9780070540408.jpg'), - ('1563083701', 'Storytelling Professionally: The Nuts And Bolts Of A Working Performer', 'https://images.isbndb.com/covers/37/09/9781563083709.jpg'), - ('0938756370', 'The Ghost & I: Scary Stories For Paticipatory Telling', 'https://images.isbndb.com/covers/63/78/9780938756378.jpg'), - ('0917846494', 'Beyond Words: Great Stories For Hand And Voice', 'https://images.isbndb.com/covers/64/96/9780917846496.jpg'), - ('0874835909', 'Shake-It-Up Tales!', 'https://images.isbndb.com/covers/59/08/9780874835908.jpg'), - ('0385127685', 'Paul Harvey''s The Rest Of The Story', 'https://images.isbndb.com/covers/76/84/9780385127684.jpg'), - ('0874834473', 'Eleven Nature Tales: A Multicultural Journey (World Storytelling) (World Storytelling From August House)', 'https://images.isbndb.com/covers/44/75/9780874834475.jpg'), - ('0963870580', 'How To Make Money Performing In Schools: The Definitive Guide To Developing, Marketing, And Presenting School Assembly Programs', 'https://images.isbndb.com/covers/05/82/9780963870582.jpg'), - ('1566197198', 'A-Z Steps To A Richer Life', 'https://images.isbndb.com/covers/71/99/9781566197199.jpg'), - ('0945353863', 'Read It Again!: How To Read Aloud To Kids', 'https://images.isbndb.com/covers/38/67/9780945353867.jpg'), - ('0192761870', 'The Oxford Treasury Of Classic Poems (Oxford Treasury Classics)', 'https://images.isbndb.com/covers/18/73/9780192761873.jpg'), - ('0060193328', 'First They Killed My Father: A Daughter Of Cambodia Remembers', 'https://images.isbndb.com/covers/33/24/9780060193324.jpg'), - ('044900211X', 'The Marching Season', 'https://images.isbndb.com/covers/21/17/9780449002117.jpg'), - ('0786000511', 'Barbra Streisand: The Untold Story', 'https://images.isbndb.com/covers/05/17/9780786000517.jpg'), - ('0553373730', 'Fractured Fairy Tales', 'https://images.isbndb.com/covers/37/38/9780553373738.jpg'), - ('0671004239', 'The Locket', 'https://images.isbndb.com/covers/42/31/9780671004231.jpg'), - ('084236966X', 'Thieves', 'https://images.isbndb.com/covers/96/64/9780842369664.jpg'), - ('0843946954', 'You Come When I Call You', 'https://images.isbndb.com/covers/69/56/9780843946956.jpg'), - ('0786866020', 'Fish! A Remarkable Way To Boost Morale And Improve Results', 'https://images.isbndb.com/covers/60/21/9780786866021.jpg'), - ('0399146725', 'The Jury', 'https://images.isbndb.com/covers/67/25/9780399146725.jpg'), - ('0449006565', 'The Whitechapel Conspiracy', 'https://images.isbndb.com/covers/65/66/9780449006566.jpg'), - ('0345440048', 'Southampton Row (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/00/44/9780345440044.jpg'), - ('0345385071', 'Shadow Play', 'https://images.isbndb.com/covers/50/79/9780345385079.jpg'), - ('0553580337', 'House Corrino (Dune: House Trilogy, Book 3)', 'https://images.isbndb.com/covers/03/34/9780553580334.jpg'), - ('0425153088', 'Leave The Grave Green', 'https://images.isbndb.com/covers/30/86/9780425153086.jpg'), - ('0425166139', 'The Raphael Affair (Art History Mystery)', 'https://images.isbndb.com/covers/61/30/9780425166130.jpg'), - ('0140282513', 'A Clear Conscience (Helen West Mystery)', 'https://images.isbndb.com/covers/25/11/9780140282511.jpg'), - ('0345376579', 'The End Of The Pier', 'https://images.isbndb.com/covers/65/72/9780345376572.jpg'), - ('0451458540', 'Once Upon A Winter''s Night', 'https://images.isbndb.com/covers/85/44/9780451458544.jpg'), - ('0441007511', 'Out Of Time', 'https://images.isbndb.com/covers/75/16/9780441007516.jpg'), - ('0380791285', 'Sky Of Swords : A Tale Of The King''s Blades', 'https://images.isbndb.com/covers/12/86/9780380791286.jpg'), - ('0380791277', 'Lord Of The Fire Lands: A Tale Of The King''s Blades', 'https://images.isbndb.com/covers/12/79/9780380791279.jpg'), - ('0671629689', 'Dream Kinship', 'https://images.isbndb.com/covers/96/87/9780671629687.jpg'), - ('0671027212', 'Frontiers', 'https://images.isbndb.com/covers/72/16/9780671027216.jpg'), - ('075284413X', 'Dead Souls (Inspector Rebus)', 'https://images.isbndb.com/covers/41/38/9780752844138.jpg'), - ('0460878247', 'Poetry Please Eman Poet Lib #09 (Everyman Poetry)', 'https://images.isbndb.com/covers/82/41/9780460878241.jpg'), - ('0670899771', 'Our Lady Of The Lost And Found: A Novel Of Mary, Faith, And Friendship', 'https://images.isbndb.com/covers/97/77/9780670899777.jpg'), - ('0700606572', 'Founding Fathers: Brief Lives Of The Framers Of The United States Constitution', 'https://images.isbndb.com/covers/65/73/9780700606573.jpg'), - ('0874775191', 'The Healing Power Of Humor', 'https://images.isbndb.com/covers/51/98/9780874775198.jpg'), - ('0060391634', 'Slouching Towards Gomorrah', 'https://images.isbndb.com/covers/16/38/9780060391638.jpg'), - ('0374192030', 'The Lexus And The Olive Tree', 'https://images.isbndb.com/covers/20/37/9780374192037.jpg'), - ('345313138X', 'Das Amulett Von Ruwenda.', 'https://images.isbndb.com/covers/13/85/9783453131385.jpg'), - ('2038716633', 'L''École Des Femmes, Texte Intégral', 'https://images.isbndb.com/covers/66/34/9782038716634.jpg'), - ('1400001625', 'Sultana (Spanish Edition)', 'https://images.isbndb.com/covers/16/20/9781400001620.jpg'), - ('0192833901', 'A Tale Of Two Cities (Oxford World''s Classics)', 'https://images.isbndb.com/covers/39/07/9780192833907.jpg'), - ('0140432620', 'Daisy Miller (Penguin Classics)', 'https://images.isbndb.com/covers/26/26/9780140432626.jpg'), - ('0939218208', 'The Narrative Of The Captivity And Restoration Of Mrs. Mary Rowlandson', 'https://images.isbndb.com/covers/82/02/9780939218202.jpg'), - ('0679457526', 'Into Thin Air: A Personal Account Of The Mount Everest Disaster', 'https://images.isbndb.com/covers/75/27/9780679457527.jpg'), - ('037550298X', 'Geeks: How Two Lost Boys Rode The Internet Out Of Idaho', 'https://images.isbndb.com/covers/29/89/9780375502989.jpg'), - ('3423130989', 'Gegen Den Strich: Roman', 'https://images.isbndb.com/covers/09/81/9783423130981.jpg'), - ('3463403021', 'Der Boden Unter Ihren Füßen', 'https://images.isbndb.com/covers/30/21/9783463403021.jpg'), - ('1561451010', 'Out To Pasture: But Not Over The Hill', 'https://images.isbndb.com/covers/10/12/9781561451012.jpg'), - ('0385496052', 'What The Body Remembers: A Novel', 'https://images.isbndb.com/covers/60/56/9780385496056.jpg'), - ('006103066X', 'The Shark Mutiny (Harper Torch 103066)', 'https://images.isbndb.com/covers/06/66/9780061030666.jpg'), - ('0446610550', 'The Playboy (The Chandler Brothers, Book 2)', 'https://images.isbndb.com/covers/05/51/9780446610551.jpg'), - ('0399150412', 'White Death: A Novel From The Numa Files', 'https://images.isbndb.com/covers/04/18/9780399150418.jpg'), - ('0440207770', 'Silver Wedding', 'https://images.isbndb.com/covers/77/71/9780440207771.jpg'), - ('0861710649', 'Mindfulness In Plain English', 'https://images.isbndb.com/covers/06/45/9780861710645.jpg'), - ('0062585215', 'Northern Edge: A Novel Of Survival In Alaska''s Arctic', 'https://images.isbndb.com/covers/52/19/9780062585219.jpg'), - ('0553297945', 'The Wakefield Legacy (Sweet Valley High)', 'https://images.isbndb.com/covers/79/42/9780553297942.jpg'), - ('1901881555', 'Sweet Dreamer: A Guide For Young Dreamers (Cosmic Kits)', 'https://images.isbndb.com/covers/15/54/9781901881554.jpg'), - ('0440228352', 'Whirligig', 'https://images.isbndb.com/covers/83/56/9780440228356.jpg'), - ('0679894772', 'Seuss-isms For Success (Life Favors(TM))', 'https://images.isbndb.com/covers/47/73/9780679894773.jpg'), - ('0886776783', 'The Perfect Princess (Dragon Nimbus)', 'https://images.isbndb.com/covers/67/87/9780886776787.jpg'), - ('9500705117', 'Otona Del Patriarca (Spanish Edition)', 'https://images.isbndb.com/covers/51/10/9789500705110.jpg'), - ('0571206484', 'Prodigal Summer', 'https://images.isbndb.com/covers/64/83/9780571206483.jpg'), - ('0743201116', 'The Faeries'' Oracle', 'https://images.isbndb.com/covers/11/17/9780743201117.jpg'), - ('0316769509', 'Nine Stories', 'https://images.isbndb.com/covers/95/01/9780316769501.jpg'), - ('0553585509', 'Turning The Storm', 'https://images.isbndb.com/covers/55/06/9780553585506.jpg'), - ('0451150716', 'Carrie (Signet)', 'https://images.isbndb.com/covers/07/14/9780451150714.jpg'), - ('0380704161', 'Through A Glass Darkly', 'https://images.isbndb.com/covers/41/63/9780380704163.jpg'), - ('0812553861', 'Sofia', 'https://images.isbndb.com/covers/38/64/9780812553864.jpg'), - ('1403905843', 'Authoring A PhD Thesis: How To Plan, Draft, Write And Finish A Doctoral Dissertation', 'https://images.isbndb.com/covers/58/40/9781403905840.jpg'), - ('0399137920', 'Claude', 'https://images.isbndb.com/covers/79/21/9780399137921.jpg'), - ('0786814225', 'Wild Blood (Switchers)', 'https://images.isbndb.com/covers/42/20/9780786814220.jpg'), - ('0886775280', 'Christmas Bestiary', 'https://images.isbndb.com/covers/52/85/9780886775285.jpg'), - ('0061059056', 'Hogfather', 'https://images.isbndb.com/covers/90/56/9780061059056.jpg'), - ('0304353493', 'Tales From Kings African Rifles (Cassell Military Paperbacks)', 'https://images.isbndb.com/covers/34/91/9780304353491.jpg'), - ('3770149599', 'Ein Hinreissender Schrotthändler', 'https://images.isbndb.com/covers/95/99/9783770149599.jpg'), - ('344243761X', 'Das Hotel Am See.', 'https://images.isbndb.com/covers/76/10/9783442437610.jpg'), - ('3596129052', 'Briefe Einer Verhinderten Emanze', 'https://images.isbndb.com/covers/90/58/9783596129058.jpg'), - ('0738849901', 'Counterpoint', 'https://images.isbndb.com/covers/99/04/9780738849904.jpg'), - ('0739438573', 'Black Water (Book Club Edition)', 'https://images.isbndb.com/covers/85/72/9780739438572.jpg'), - ('037541178X', 'While I Was Gone', 'https://images.isbndb.com/covers/17/86/9780375411786.jpg'), - ('039914675X', 'The Cat Who Went Up The Creek', 'https://images.isbndb.com/covers/67/56/9780399146756.jpg'), - ('0061066079', 'Without Wonder (Thoroughbred Series #36)', 'https://images.isbndb.com/covers/60/78/9780061066078.jpg'), - ('0451522796', 'The Signet Classic Book Of American Short Stories', 'https://images.isbndb.com/covers/27/95/9780451522795.jpg'), - ('157748794X', 'Montana: A Legacy Of Faith And Love In Four Complete Novels (Autumn Love / Contagious Love / Inspired Love / Distant Love)', 'https://images.isbndb.com/covers/79/44/9781577487944.jpg'), - ('0671007610', 'Olivia (Logan Family)', 'https://images.isbndb.com/covers/76/14/9780671007614.jpg'), - ('0671534718', 'Melody (Logan)', 'https://images.isbndb.com/covers/47/14/9780671534714.jpg'), - ('0440904196', 'Are You There God? It''s Me, Margaret', 'https://images.isbndb.com/covers/41/99/9780440904199.jpg'), - ('1885840020', 'They''re Killing Our Children: Inside The Kidnapping & Child Murder Epidemic Sweeping America', 'https://images.isbndb.com/covers/00/28/9781885840028.jpg'), - ('0553273299', 'Flashback', 'https://images.isbndb.com/covers/32/98/9780553273298.jpg'), - ('0671741187', 'Where Are The Children?', 'https://images.isbndb.com/covers/11/81/9780671741181.jpg'), - ('0590568795', 'Egg Monsters From Mars (Goosebumps #42)', 'https://images.isbndb.com/covers/87/91/9780590568791.jpg'), - ('0590568825', 'Ghost Camp (Goosebumps, No 45)', 'https://images.isbndb.com/covers/88/21/9780590568821.jpg'), - ('0590568744', 'The Headless Ghost (Goosebumps, No 37)', 'https://images.isbndb.com/covers/87/46/9780590568746.jpg'), - ('0590483471', 'Monster Blood III (Goosebumps, No. 29)', 'https://images.isbndb.com/covers/34/76/9780590483476.jpg'), - ('0590483455', 'The Horror At Camp Jellyjam (Goosebumps)', 'https://images.isbndb.com/covers/34/52/9780590483452.jpg'), - ('0590483544', 'Phantom Of The Auditorium (Goosebumps #24)', 'https://images.isbndb.com/covers/35/44/9780590483544.jpg'), - ('059048351X', 'A Night In Terror Tower (Goosebumps # 27)', 'https://images.isbndb.com/covers/35/13/9780590483513.jpg'), - ('0590568752', 'The Abominable Snowman Of Pasadena (Goosebumps, No 38)', 'https://images.isbndb.com/covers/87/53/9780590568753.jpg'), - ('0590483552', 'GOOSEBUMPS ATTACK OF THE MUTANT', 'https://images.isbndb.com/covers/35/51/9780590483551.jpg'), - ('0590568760', 'How I Got My Shrunken Head (Goosebumps, No 39)', 'https://images.isbndb.com/covers/87/60/9780590568760.jpg'), - ('0590494503', 'You Can''t Scare Me! (Goosebumps)', 'https://images.isbndb.com/covers/45/02/9780590494502.jpg'), - ('0590483501', 'My Hairiest Adventure (Goosebumps)', 'https://images.isbndb.com/covers/35/06/9780590483506.jpg'), - ('0312110790', 'Three Squirt Dog', 'https://images.isbndb.com/covers/07/96/9780312110796.jpg'), - ('0517585154', 'Time''s Arrow', 'https://images.isbndb.com/covers/51/53/9780517585153.jpg'), - ('1585421359', 'The Fasting Girl: A True Victorian Medical Mystery', 'https://images.isbndb.com/covers/13/50/9781585421350.jpg'), - ('0805064478', 'Wrack: A Novel', 'https://images.isbndb.com/covers/44/76/9780805064476.jpg'), - ('9023405587', 'De Ergste Treitertrends (BB Literair) (Dutch Edition)', 'https://images.isbndb.com/covers/55/80/9789023405580.jpg'), - ('0743467329', 'Final Jeopardy', 'https://images.isbndb.com/covers/73/22/9780743467322.jpg'), - ('044900709X', 'Malice Downstream (Erskine Powell, Book 5)', 'https://images.isbndb.com/covers/70/99/9780449007099.jpg'), - ('0345453409', 'Dying To Please', 'https://images.isbndb.com/covers/34/02/9780345453402.jpg'), - ('0440147190', 'The Legacy (The Lavette Saga, No. 4)', 'https://images.isbndb.com/covers/71/90/9780440147190.jpg'), - ('0451456068', 'The Jigsaw Woman', 'https://images.isbndb.com/covers/60/69/9780451456069.jpg'), - ('0060521902', 'A Path Of Shadows', 'https://images.isbndb.com/covers/19/05/9780060521905.jpg'), - ('0743482212', 'Sugar Skull: An Eve Diamond Novel (Eve Diamond Novels)', 'https://images.isbndb.com/covers/22/19/9780743482219.jpg'), - ('0812520327', 'Psychamok (Psychomech Trilogy)', 'https://images.isbndb.com/covers/03/23/9780812520323.jpg'), - ('037321877X', 'Dangerous Affair: Dangerous Magic / Affair Of Honor', 'https://images.isbndb.com/covers/87/76/9780373218776.jpg'), - ('0440235154', 'Where You Belong', 'https://images.isbndb.com/covers/51/56/9780440235156.jpg'), - ('0964631601', 'Pierced By A Sword', 'https://images.isbndb.com/covers/16/01/9780964631601.jpg'), - ('0515136433', 'Man Eater', 'https://images.isbndb.com/covers/64/32/9780515136432.jpg'), - ('0786010126', 'Song Of Eagles (The Eagles)', 'https://images.isbndb.com/covers/01/27/9780786010127.jpg'), - ('0671452533', 'The Golden Swan', 'https://images.isbndb.com/covers/25/37/9780671452537.jpg'), - ('0373037716', 'Outback Bridegroom: Koomera Crossing (Harlequin Romance)', 'https://images.isbndb.com/covers/77/11/9780373037711.jpg'), - ('0345295463', 'Trouble Valley', 'https://images.isbndb.com/covers/54/60/9780345295460.jpg'), - ('0743424107', 'Deadly Embrace', 'https://images.isbndb.com/covers/41/03/9780743424103.jpg'), - ('0425190943', 'Justice Gun', 'https://images.isbndb.com/covers/09/44/9780425190944.jpg'), - ('0312984839', 'Dance With The Devil (Dark-Hunter, Book 4)', 'https://images.isbndb.com/covers/48/30/9780312984830.jpg'), - ('0446353957', 'Mirror Image', 'https://images.isbndb.com/covers/39/53/9780446353953.jpg'), - ('0373835922', 'Lawless (Loving Jack)', 'https://images.isbndb.com/covers/59/28/9780373835928.jpg'), - ('0449003302', 'Grievous Sin (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/33/05/9780449003305.jpg'), - ('0312987013', 'Minion (Vampire Huntress Legend)', 'https://images.isbndb.com/covers/70/15/9780312987015.jpg'), - ('0399140751', 'The Cat Who Said Cheese', 'https://images.isbndb.com/covers/07/54/9780399140754.jpg'), - ('0743479068', 'Dark Desire: A Vampire Novel', 'https://images.isbndb.com/covers/90/66/9780743479066.jpg'), - ('0671722131', 'Some Can Whistle', 'https://images.isbndb.com/covers/21/35/9780671722135.jpg'), - ('0812575393', 'Dead Hand', 'https://images.isbndb.com/covers/53/92/9780812575392.jpg'), - ('0451172507', 'Everlasting (Signet)', 'https://images.isbndb.com/covers/25/01/9780451172501.jpg'), - ('0312993536', 'Sons Of Fortune', 'https://images.isbndb.com/covers/35/35/9780312993535.jpg'), - ('0061056383', 'Foundation''s Fear (Foundation Trilogy)', 'https://images.isbndb.com/covers/63/83/9780061056383.jpg'), - ('0373222815', 'Hunter''S Moon (Harlequin Intrigue)', 'https://images.isbndb.com/covers/28/10/9780373222810.jpg'), - ('0451210972', 'Eating For Life: One Simple Diet For Total Health', 'https://images.isbndb.com/covers/09/75/9780451210975.jpg'), - ('3453177746', 'Hannibal', 'https://images.isbndb.com/covers/77/41/9783453177741.jpg'), - ('0747257833', 'Perfect Timing', 'https://images.isbndb.com/covers/78/37/9780747257837.jpg'), - ('0399129111', 'Twelve Apostles', 'https://images.isbndb.com/covers/91/17/9780399129117.jpg'), - ('0399131280', 'Her Father''s Daughter', 'https://images.isbndb.com/covers/12/88/9780399131288.jpg'), - ('0312059612', 'Shadow Of A Doubt', 'https://images.isbndb.com/covers/96/13/9780312059613.jpg'), - ('039915034X', 'Star Witness', 'https://images.isbndb.com/covers/03/40/9780399150340.jpg'), - ('0345428293', 'Trust Fund', 'https://images.isbndb.com/covers/82/95/9780345428295.jpg'), - ('0743411323', 'Never Change', 'https://images.isbndb.com/covers/13/25/9780743411325.jpg'), - ('0805053077', 'The Defense', 'https://images.isbndb.com/covers/30/74/9780805053074.jpg'), - ('0446527378', 'The Judgment', 'https://images.isbndb.com/covers/73/78/9780446527378.jpg'), - ('0312155581', 'The Judgment', 'https://images.isbndb.com/covers/55/82/9780312155582.jpg'), - ('0060177012', 'Death Penalty: A Novel', 'https://images.isbndb.com/covers/70/10/9780060177010.jpg'), - ('0312280661', 'Proof Of Intent: A Charley Sloan Courtroom Thriller', 'https://images.isbndb.com/covers/06/66/9780312280666.jpg'), - ('0446527386', 'The Legacy', 'https://images.isbndb.com/covers/73/85/9780446527385.jpg'), - ('0805071903', 'The Romantic: A Novel', 'https://images.isbndb.com/covers/19/00/9780805071900.jpg'), - ('0345443268', 'Silent Partner', 'https://images.isbndb.com/covers/32/67/9780345443267.jpg'), - ('0449908593', 'Prizes', 'https://images.isbndb.com/covers/85/94/9780449908594.jpg'), - ('0449911799', 'Clock Winder (1st Ballantine Books Trade Ed)', 'https://images.isbndb.com/covers/17/92/9780449911792.jpg'), - ('0449911721', 'Morgan''s Passing', 'https://images.isbndb.com/covers/17/23/9780449911723.jpg'), - ('0449911780', 'If Morning Ever Comes: A Novel', 'https://images.isbndb.com/covers/17/85/9780449911785.jpg'), - ('0449911896', 'The Tin Can Tree: A Novel (1st Ballantine Books Trade Ed)', 'https://images.isbndb.com/covers/18/91/9780449911891.jpg'), - ('0345410033', 'Games People Play: The Basic Handbook Of Transactional Analysis.', 'https://images.isbndb.com/covers/00/30/9780345410030.jpg'), - ('0345439600', 'The Black Rose', 'https://images.isbndb.com/covers/96/04/9780345439604.jpg'), - ('0030597862', 'An Unknown Woman: A Journey To Self-Discovery', 'https://images.isbndb.com/covers/78/62/9780030597862.jpg'), - ('0345353617', 'The Women''s Room', 'https://images.isbndb.com/covers/36/10/9780345353610.jpg'), - ('0061003964', 'The Watershed', 'https://images.isbndb.com/covers/39/67/9780061003967.jpg'), - ('0553561111', 'Scruples Two', 'https://images.isbndb.com/covers/11/11/9780553561111.jpg'), - ('0671024353', 'Until We Meet Again', 'https://images.isbndb.com/covers/43/52/9780671024352.jpg'), - ('0446601853', 'Charade', 'https://images.isbndb.com/covers/18/56/9780446601856.jpg'), - ('0758203896', 'Easy', 'https://images.isbndb.com/covers/38/92/9780758203892.jpg'), - ('0373121717', 'Seductive Revenge (Red Hot Revenge) (Harlequin Presents)', 'https://images.isbndb.com/covers/17/17/9780373121717.jpg'), - ('0385411235', 'Mommy Club, The', 'https://images.isbndb.com/covers/12/33/9780385411233.jpg'), - ('0060989238', 'Hunger Point: A Novel', 'https://images.isbndb.com/covers/92/31/9780060989231.jpg'), - ('0758206283', 'The Fabulous Emily Briggs', 'https://images.isbndb.com/covers/62/82/9780758206282.jpg'), - ('0060195460', 'Keep It Simple, Stupid: You''re Smarter Than You Look', 'https://images.isbndb.com/covers/54/65/9780060195465.jpg'), - ('0312992327', 'Public Displays Of Affection', 'https://images.isbndb.com/covers/23/23/9780312992323.jpg'), - ('0380727293', 'Dr. Atkins'' New Diet Revolution', 'https://images.isbndb.com/covers/72/92/9780380727292.jpg'), - ('0967303516', 'Mossy Creek', 'https://images.isbndb.com/covers/35/12/9780967303512.jpg'), - ('0553561375', 'The Jewels Of Tessa Kent', 'https://images.isbndb.com/covers/13/71/9780553561371.jpg'), - ('0449211584', 'Chesapeake', 'https://images.isbndb.com/covers/15/88/9780449211588.jpg'), - ('0452280192', 'You Must Remember This', 'https://images.isbndb.com/covers/01/99/9780452280199.jpg'), - ('0060186941', 'Leading With My Chin', 'https://images.isbndb.com/covers/69/44/9780060186944.jpg'), - ('0553110748', 'John Glenn: A Memoir', 'https://images.isbndb.com/covers/07/46/9780553110746.jpg'), - ('0786863269', 'Between Each Line Of Pain And Glory: My Life Story', 'https://images.isbndb.com/covers/32/66/9780786863266.jpg'), - ('0688110290', 'Gifts Of Time', 'https://images.isbndb.com/covers/02/91/9780688110291.jpg'), - ('0060196300', 'U.S.S. Seawolf', 'https://images.isbndb.com/covers/63/01/9780060196301.jpg'), - ('0684850737', 'The Prisoner''s Wife', 'https://images.isbndb.com/covers/07/33/9780684850733.jpg'), - ('0810931850', 'Cat Horoscopes: For Each Of Your Cat''s Nine Lives', 'https://images.isbndb.com/covers/18/55/9780810931855.jpg'), - ('0030463262', 'ROBERT FROST A Tribute To The Source', 'https://images.isbndb.com/covers/32/66/9780030463266.jpg'), - ('0449235998', 'Lucifer''s Hammer', 'https://images.isbndb.com/covers/59/97/9780449235997.jpg'), - ('0451524780', 'The Hound Of The Baskervilles (Signet Classics)', 'https://images.isbndb.com/covers/47/82/9780451524782.jpg'), - ('3499229935', 'Nur Nicht Unsichtbar Werden: Ein Irisches Leben', 'https://images.isbndb.com/covers/99/30/9783499229930.jpg'), - ('2871294011', 'Inu-Yasha, Tome 1', 'https://images.isbndb.com/covers/40/16/9782871294016.jpg'), - ('0312872836', 'Witch Hill', 'https://images.isbndb.com/covers/28/30/9780312872830.jpg'), - ('0140258175', 'Emma', 'https://images.isbndb.com/covers/81/72/9780140258172.jpg'), - ('1569312036', 'Ranma 1/2, Vol. 9', 'https://images.isbndb.com/covers/20/32/9781569312032.jpg'), - ('1569312028', 'Ranma 1/2, Vol. 8', 'https://images.isbndb.com/covers/20/25/9781569312025.jpg'), - ('1569311285', 'Ranma 1/2, Vol. 7', 'https://images.isbndb.com/covers/12/88/9781569311288.jpg'), - ('1569311374', 'Ranma 1/2, Vol. 6', 'https://images.isbndb.com/covers/13/70/9781569311370.jpg'), - ('1569310858', 'Ranma 1/2: Vol. 4', 'https://images.isbndb.com/covers/08/54/9781569310854.jpg'), - ('1569310203', 'Ranma 1/2, Vol. 3', 'https://images.isbndb.com/covers/02/05/9781569310205.jpg'), - ('1569310165', 'Ranma 1/2, Vol. 2', 'https://images.isbndb.com/covers/01/68/9781569310168.jpg'), - ('1569319626', 'Ranma 1/2, Vol. 1', 'https://images.isbndb.com/covers/96/28/9781569319628.jpg'), - ('1568361181', 'Sailor Moon, Friends And Foes', 'https://images.isbndb.com/covers/11/85/9781568361185.jpg'), - ('1568361173', 'Meet Sailor Moon', 'https://images.isbndb.com/covers/11/78/9781568361178.jpg'), - ('1892213974', 'Sailor Moon Stars # 3', 'https://images.isbndb.com/covers/39/76/9781892213976.jpg'), - ('159264029X', 'The Blessing Of A Broken Heart', 'https://images.isbndb.com/covers/02/94/9781592640294.jpg'), - ('0140074317', 'The Neverending Story', 'https://images.isbndb.com/covers/43/14/9780140074314.jpg'), - ('1874061688', 'Tanners Twelve Swingers', 'https://images.isbndb.com/covers/16/87/9781874061687.jpg'), - ('0670875953', 'White City Blue', 'https://images.isbndb.com/covers/59/55/9780670875955.jpg'), - ('1590580680', 'The Fig Tree Murder: A Mamur Zapt Mystery (Mamur Zapt Mysteries)', 'https://images.isbndb.com/covers/06/84/9781590580684.jpg'), - ('014026065X', 'The Little Book Of Calm', 'https://images.isbndb.com/covers/06/56/9780140260656.jpg'), - ('0714120022', 'Ancient Olympic Games Pb', 'https://images.isbndb.com/covers/00/27/9780714120027.jpg'), - ('0786810424', 'Nancy Kerrigan: In My Own Words', 'https://images.isbndb.com/covers/04/20/9780786810420.jpg'), - ('0740706020', 'Mia Hamm', 'https://images.isbndb.com/covers/60/28/9780740706028.jpg'), - ('0316142573', 'On The Ice With...Tara Lapinski (Athlete Biographies)', 'https://images.isbndb.com/covers/25/71/9780316142571.jpg'), - ('0789447649', 'Going For Gold! (DK Readers: Level 4: Proficient Readers)', 'https://images.isbndb.com/covers/76/47/9780789447647.jpg'), - ('0448431025', 'Sarah Hughes: Golden Girl (All Aboard Reading)', 'https://images.isbndb.com/covers/10/24/9780448431024.jpg'), - ('1876825251', 'Golden Girl: An Autobiography', 'https://images.isbndb.com/covers/52/56/9781876825256.jpg'), - ('1575727331', 'The Greeks (Crafts From The Past)', 'https://images.isbndb.com/covers/73/32/9781575727332.jpg'), - ('0141310979', 'It''s All Greek To Me (Time Warp Trio)', 'https://images.isbndb.com/covers/09/78/9780141310978.jpg'), - ('0394751027', 'The Praise Singer', 'https://images.isbndb.com/covers/10/23/9780394751023.jpg'), - ('0525470417', 'A Handbook Of Greek Mythology', 'https://images.isbndb.com/covers/04/10/9780525470410.jpg'), - ('0451628004', 'Gods, Heroes And Men Of Ancient Greece (Mentor)', 'https://images.isbndb.com/covers/80/08/9780451628008.jpg'), - ('0451198808', 'South: The Endurance Expedition', 'https://images.isbndb.com/covers/88/08/9780451198808.jpg'), - ('0446603422', 'STORMY WEATHER,', 'https://images.isbndb.com/covers/34/23/9780446603423.jpg'), - ('0672604426', 'Three Greek Romances', 'https://images.isbndb.com/covers/44/23/9780672604423.jpg'), - ('0915144182', 'Plato''s Phaedo', 'https://images.isbndb.com/covers/41/81/9780915144181.jpg'), - ('0316141631', 'Olympic Dream (Matt Christopher Sports Classics)', 'https://images.isbndb.com/covers/16/35/9780316141635.jpg'), - ('0449206092', 'Moon-Spinners', 'https://images.isbndb.com/covers/60/96/9780449206096.jpg'), - ('0876853904', 'Women', 'https://images.isbndb.com/covers/39/00/9780876853900.jpg'), - ('0553100017', 'Prime Cut', 'https://images.isbndb.com/covers/00/13/9780553100013.jpg'), - ('0553100009', 'The Grilling Season', 'https://images.isbndb.com/covers/00/06/9780553100006.jpg'), - ('0684195984', 'From Potter''s Field', 'https://images.isbndb.com/covers/59/88/9780684195988.jpg'), - ('0399141464', 'Cause Of Death (Patricia Cornwell)', 'https://images.isbndb.com/covers/14/61/9780399141461.jpg'), - ('0684195305', 'Cruel And Unusual', 'https://images.isbndb.com/covers/53/08/9780684195308.jpg'), - ('0941711420', 'Scarpetta''s Winter Table', 'https://images.isbndb.com/covers/14/25/9780941711425.jpg'), - ('0786866195', 'Buried Evidence', 'https://images.isbndb.com/covers/61/99/9780786866199.jpg'), - ('0553091735', 'Dead Man''s Island', 'https://images.isbndb.com/covers/17/31/9780553091731.jpg'), - ('0425177068', 'Family Honor (Sunny Randall)', 'https://images.isbndb.com/covers/70/68/9780425177068.jpg'), - ('0312198299', 'Aquarius Descending (Elizabeth Chase Mysteries)', 'https://images.isbndb.com/covers/82/99/9780312198299.jpg'), - ('0026125803', 'Rajac A Story', 'https://images.isbndb.com/covers/58/02/9780026125802.jpg'), - ('1585420093', 'The Right To Write: An Invitation And Initiation Into The Writing Life', 'https://images.isbndb.com/covers/00/94/9781585420094.jpg'), - ('0786904739', 'Blood Hostages (Blood Wars Trilogy)', 'https://images.isbndb.com/covers/47/30/9780786904730.jpg'), - ('0553276123', 'The Stainless Steel Rat For President', 'https://images.isbndb.com/covers/61/21/9780553276121.jpg'), - ('0812551079', 'The Stainless Steel Rat Goes To Hell', 'https://images.isbndb.com/covers/10/75/9780812551075.jpg'), - ('1560768983', 'Go Quest, Young Man', 'https://images.isbndb.com/covers/89/82/9781560768982.jpg'), - ('0441000541', 'Majyk By Hook Or Crook', 'https://images.isbndb.com/covers/05/48/9780441000548.jpg'), - ('0061054658', 'Ships Of Merior (Wars Of Light & Shadow, Vol. 2)', 'https://images.isbndb.com/covers/46/55/9780061054655.jpg'), - ('0886773849', 'The Dragonbone Chair: Book One Of Memory, Sorrow, And Thorn', 'https://images.isbndb.com/covers/38/47/9780886773847.jpg'), - ('0886775272', 'Black Sun Rising (The Coldfire Trilogy, Book 1)', 'https://images.isbndb.com/covers/52/78/9780886775278.jpg'), - ('0786905018', 'Abyssal Warriors (Planescape: Blood Wars Trilogy #2)', 'https://images.isbndb.com/covers/50/10/9780786905010.jpg'), - ('0821743279', 'I Am Dracula...Know Me.', 'https://images.isbndb.com/covers/32/70/9780821743270.jpg'), - ('006050675X', 'The Emerald Cavern (Fifth Ring)', 'https://images.isbndb.com/covers/67/59/9780060506759.jpg'), - ('0765305224', 'Naked Empire (Sword Of Truth, Book 8)', 'https://images.isbndb.com/covers/52/20/9780765305220.jpg'), - ('0786918179', 'Dragons Of A Lost Star (Dragonlance: The War Of Souls, Volume II)', 'https://images.isbndb.com/covers/81/71/9780786918171.jpg'), - ('0765300265', 'The Pillars Of Creation (Sword Of Truth, Book 7)', 'https://images.isbndb.com/covers/02/63/9780765300263.jpg'), - ('0060506512', 'The Fifth Ring', 'https://images.isbndb.com/covers/65/13/9780060506513.jpg'), - ('0553575651', 'Ship Of Destiny (The Liveship Traders, Book 3)', 'https://images.isbndb.com/covers/56/51/9780553575651.jpg'), - ('0756400996', 'Sword-Sworn (Tiger And Del)', 'https://images.isbndb.com/covers/09/96/9780756400996.jpg'), - ('0553575643', 'Mad Ship (The Liveship Traders, Book 2)', 'https://images.isbndb.com/covers/56/44/9780553575644.jpg'), - ('0061020575', 'Well Of Darkness (The Sovereign Stone Trilogy, Book 1)', 'https://images.isbndb.com/covers/05/75/9780061020575.jpg'), - ('0553575635', 'Ship Of Magic (The Liveship Traders, Book 1)', 'https://images.isbndb.com/covers/56/37/9780553575637.jpg'), - ('0886772885', 'Sword And Sorceress V (5)', 'https://images.isbndb.com/covers/28/88/9780886772888.jpg'), - ('0451456408', 'Crystal Sage (Salterton Trilogy)', 'https://images.isbndb.com/covers/64/03/9780451456403.jpg'), - ('0886779804', 'Villains Victorious', 'https://images.isbndb.com/covers/98/01/9780886779801.jpg'), - ('0812575237', 'Legends 2 : Short Novels By The Masters Of Modern Fantasy', 'https://images.isbndb.com/covers/52/31/9780812575231.jpg'), - ('078691808X', 'Thornhold (Forgotten Realms: Songs And Swords, Book 4)', 'https://images.isbndb.com/covers/80/89/9780786918089.jpg'), - ('0451452682', 'The Eye Of The Hunter (Mithgar)', 'https://images.isbndb.com/covers/26/89/9780451452689.jpg'), - ('0553110845', 'House Corrino (Dune: House Trilogy, Book 3)', 'https://images.isbndb.com/covers/08/45/9780553110845.jpg'), - ('0756400007', 'The Flightless Falcon', 'https://images.isbndb.com/covers/00/02/9780756400002.jpg'), - ('1930662513', 'Intelligence, Internment & Relocation: Roosevelt''s Executive Order 9066: How Top Secret "MAGIC" Intelligence Led To Evacuation', 'https://images.isbndb.com/covers/25/13/9781930662513.jpg'), - ('1903650267', 'Irish Girls About Town', 'https://images.isbndb.com/covers/02/64/9781903650264.jpg'), - ('3518398873', 'Nootebooms Hotel (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/88/76/9783518398876.jpg'), - ('0525935762', 'Shot On Location: 2 (Goodman-Bradley Mystery)', 'https://images.isbndb.com/covers/57/66/9780525935766.jpg'), - ('0345437829', 'Hanging Up', 'https://images.isbndb.com/covers/78/22/9780345437822.jpg'), - ('0862417031', 'Drinker''s Guide To The Middle East (Rebel Inc.)', 'https://images.isbndb.com/covers/70/31/9780862417031.jpg'), - ('157322135X', 'The Distance To The Moon: A Road Trip Into The American Dream', 'https://images.isbndb.com/covers/13/51/9781573221351.jpg'), - ('0812815904', 'Sappho Was A Right-On Woman: A Liberated View Of Lesbianism', 'https://images.isbndb.com/covers/59/00/9780812815900.jpg'), - ('0345333748', 'Simon''s Night', 'https://images.isbndb.com/covers/37/42/9780345333742.jpg'), - ('0740713906', 'Excuse Me While I Wag: A Dilbert Book (Dilbert Books (Paperback Andrews McMeel))', 'https://images.isbndb.com/covers/39/03/9780740713903.jpg'), - ('0670030295', 'Roscoe', 'https://images.isbndb.com/covers/02/93/9780670030293.jpg'), - ('0451211480', 'The Confessor (Gabriel Allon Novels)', 'https://images.isbndb.com/covers/14/84/9780451211484.jpg'), - ('0743245520', 'Hello, Darkness', 'https://images.isbndb.com/covers/55/24/9780743245524.jpg'), - ('0140440755', 'The Song Of Roland (Penguin Classics)', 'https://images.isbndb.com/covers/07/51/9780140440751.jpg'), - ('0449209733', 'Fraternity Of The Stone', 'https://images.isbndb.com/covers/97/38/9780449209738.jpg'), - ('0399142177', 'Rabin: Our Life, His Legacy', 'https://images.isbndb.com/covers/21/78/9780399142178.jpg'), - ('0140112847', 'Children Of The Holocaust: Conversations With Sons And Daughters Of Survivors', 'https://images.isbndb.com/covers/28/49/9780140112849.jpg'), - ('0812534271', 'World Without End', 'https://images.isbndb.com/covers/42/76/9780812534276.jpg'), - ('0375753788', 'I Will Bear Witness: A Diary Of The Nazi Years, 1933-1941 (Modern Library Paperbacks)', 'https://images.isbndb.com/covers/37/87/9780375753787.jpg'), - ('1590710088', 'All The Beautiful Sinners', 'https://images.isbndb.com/covers/00/81/9781590710081.jpg'), - ('0452281709', 'Jakob The Liar', 'https://images.isbndb.com/covers/17/07/9780452281707.jpg'), - ('000654861X', 'Life And Death In Shanghai', 'https://images.isbndb.com/covers/86/14/9780006548614.jpg'), - ('0452274427', 'In The Time Of The Butterflies', 'https://images.isbndb.com/covers/44/26/9780452274426.jpg'), - ('0836220870', 'Hound Of The Far Side ®', 'https://images.isbndb.com/covers/08/72/9780836220872.jpg'), - ('0130816795', 'Breaking Into Print (A Spectrum Book)', 'https://images.isbndb.com/covers/67/95/9780130816795.jpg'), - ('0399141960', 'Woe Is I: The Grammarphobe''s Guide To Better English In Plain English', 'https://images.isbndb.com/covers/19/66/9780399141966.jpg'), - ('0898796407', 'The Writer''s Digest Guide To Good Writing', 'https://images.isbndb.com/covers/64/07/9780898796407.jpg'), - ('0028613228', 'The New York Public Library American History Desk Reference', 'https://images.isbndb.com/covers/32/22/9780028613222.jpg'), - ('0898796342', 'Conflict, Action And Suspense (Elements Of Fiction Writing)', 'https://images.isbndb.com/covers/63/46/9780898796346.jpg'), - ('0425194515', 'Midnight', 'https://images.isbndb.com/covers/45/15/9780425194515.jpg'), - ('0688132286', 'Telling Lies For Fun & Profit: A Manual For Fiction Writers', 'https://images.isbndb.com/covers/22/86/9780688132286.jpg'), - ('0060198303', 'The Burglar On The Prowl (Block, Lawrence)', 'https://images.isbndb.com/covers/83/05/9780060198305.jpg'), - ('0679408193', 'Ablaze: The Story Of The Heroes And Victims Of Chernobyl', 'https://images.isbndb.com/covers/81/92/9780679408192.jpg'), - ('1931201080', 'Wolfpointe', 'https://images.isbndb.com/covers/10/87/9781931201087.jpg'), - ('0393951693', 'The Vanishing Hitchhiker: American Urban Legends And Their Meanings', 'https://images.isbndb.com/covers/16/91/9780393951691.jpg'), - ('0816727953', '50 Amazing U.S. Mazes', 'https://images.isbndb.com/covers/79/57/9780816727957.jpg'), - ('0446532215', 'The Elder Gods (The Dreamers, Book 1)', 'https://images.isbndb.com/covers/22/11/9780446532211.jpg'), - ('0312964293', 'I Have Lived In The Monster: Inside The Minds Of The World''s Most Notorious Serial Killers (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/42/90/9780312964290.jpg'), - ('0312956789', 'Titans', 'https://images.isbndb.com/covers/67/83/9780312956783.jpg'), - ('0380727544', 'The Plan', 'https://images.isbndb.com/covers/75/44/9780380727544.jpg'), - ('0345466632', 'The Demon In The Freezer', 'https://images.isbndb.com/covers/66/31/9780345466631.jpg'), - ('0440237246', 'Area 51: Nosferatu', 'https://images.isbndb.com/covers/72/42/9780440237242.jpg'), - ('0771087462', 'Much Depends On Dinner', 'https://images.isbndb.com/covers/74/62/9780771087462.jpg'), - ('0060973323', 'The Ginger Tree', 'https://images.isbndb.com/covers/33/22/9780060973322.jpg'), - ('0140065598', 'Six Feet Of The Country', 'https://images.isbndb.com/covers/55/96/9780140065596.jpg'), - ('0440359376', 'Meet My Maker The Mad Molecule & The Saddest Summer Of Samuel S', 'https://images.isbndb.com/covers/93/71/9780440359371.jpg'), - ('0553103105', 'Zen And The Art Of Motorcycle Maintenance : An Inquiry Into Values', 'https://images.isbndb.com/covers/31/06/9780553103106.jpg'), - ('0006135986', 'The Woman Destroyed', 'https://images.isbndb.com/covers/59/82/9780006135982.jpg'), - ('0553572202', 'Self-Defense (Alex Delaware Novels)', 'https://images.isbndb.com/covers/22/09/9780553572209.jpg'), - ('0898704448', 'The Everlasting Man', 'https://images.isbndb.com/covers/44/40/9780898704440.jpg'), - ('0399144714', 'Vector', 'https://images.isbndb.com/covers/47/14/9780399144714.jpg'), - ('0312859279', 'Issola (The Vlad Taltos Novels)', 'https://images.isbndb.com/covers/92/75/9780312859275.jpg'), - ('0812589173', 'Issola (Vlad Taltos)', 'https://images.isbndb.com/covers/91/77/9780812589177.jpg'), - ('0312866925', 'Dragon', 'https://images.isbndb.com/covers/69/21/9780312866921.jpg'), - ('0441001963', 'Orca', 'https://images.isbndb.com/covers/19/65/9780441001965.jpg'), - ('0441033423', 'Athyra', 'https://images.isbndb.com/covers/34/23/9780441033423.jpg'), - ('0441662250', 'Phoenix', 'https://images.isbndb.com/covers/22/58/9780441662258.jpg'), - ('0441182003', 'Taltos', 'https://images.isbndb.com/covers/20/08/9780441182008.jpg'), - ('0441799779', 'Teckla', 'https://images.isbndb.com/covers/97/70/9780441799770.jpg'), - ('0441944604', 'Yendi', 'https://images.isbndb.com/covers/46/06/9780441944606.jpg'), - ('0441385540', 'Jhereg', 'https://images.isbndb.com/covers/55/46/9780441385546.jpg'), - ('0553565699', 'Assassin''s Quest (The Farseer Trilogy, Book 3)', 'https://images.isbndb.com/covers/56/90/9780553565690.jpg'), - ('0553375636', 'Royal Assassin (The Farseer Trilogy, Book 2)', 'https://images.isbndb.com/covers/56/33/9780553375633.jpg'), - ('0553374451', 'Assassin''s Apprentice (The Farseer Trilogy, Book 1)', 'https://images.isbndb.com/covers/44/52/9780553374452.jpg'), - ('0553381709', 'A Storm Of Swords: A Song Of Ice And Fire: Book Three', 'https://images.isbndb.com/covers/17/02/9780553381702.jpg'), - ('0373195818', 'Trish''s Not-So-Little Secret (Silhouette Romance, No 1581)', 'https://images.isbndb.com/covers/58/17/9780373195817.jpg'), - ('0060962348', 'Courage To Heal: A Guide For Women Survivors Of Child Sexual Abuse', 'https://images.isbndb.com/covers/23/40/9780060962340.jpg'), - ('0446526924', 'Hidden Treasures: Searching For Masterpieces Of American Furniture', 'https://images.isbndb.com/covers/69/20/9780446526920.jpg'), - ('0312275714', 'Artistic License', 'https://images.isbndb.com/covers/57/16/9780312275716.jpg'), - ('2266025791', 'Les Choses', 'https://images.isbndb.com/covers/57/99/9782266025799.jpg'), - ('0440343194', 'Illusions', 'https://images.isbndb.com/covers/31/96/9780440343196.jpg'), - ('0449212645', 'For Kicks', 'https://images.isbndb.com/covers/26/46/9780449212646.jpg'), - ('0970566506', 'Dawning : The Next Great Move Of God', 'https://images.isbndb.com/covers/65/08/9780970566508.jpg'), - ('0553252704', 'The Parsifal Mosaic', 'https://images.isbndb.com/covers/27/05/9780553252705.jpg'), - ('0880117834', 'Acsm Fitness Book (American College Of Sports Med)', 'https://images.isbndb.com/covers/78/38/9780880117838.jpg'), - ('067082982X', 'The Dark Half', 'https://images.isbndb.com/covers/98/28/9780670829828.jpg'), - ('0919591051', 'Vancouver Fiction', 'https://images.isbndb.com/covers/10/59/9780919591059.jpg'), - ('0440164842', 'Noble House', 'https://images.isbndb.com/covers/48/45/9780440164845.jpg'), - ('0440226457', 'Time To Hunt', 'https://images.isbndb.com/covers/64/51/9780440226451.jpg'), - ('0140440232', 'Crime And Punishment (Classics)', 'https://images.isbndb.com/covers/02/32/9780140440232.jpg'), - ('0451204301', 'Impulse (Contemporary Romantic Thriller)', 'https://images.isbndb.com/covers/43/01/9780451204301.jpg'), - ('0842329269', 'Apollyon: The Destroyer Is Unleashed (Left Behind No. 5)', 'https://images.isbndb.com/covers/92/62/9780842329262.jpg'), - ('0786868155', 'Social Crimes', 'https://images.isbndb.com/covers/81/55/9780786868155.jpg'), - ('0156002523', 'Melancholy Of Rebirth: Essays From Post-Communist Central Europe, 1989-1994', 'https://images.isbndb.com/covers/25/23/9780156002523.jpg'), - ('0440507626', 'Nitpicker''s Guide For Deep Space Nine Trekkers', 'https://images.isbndb.com/covers/76/28/9780440507628.jpg'), - ('0380976307', 'Far Horizons:: All New Tales From The Greatest Worlds Of Science Fiction', 'https://images.isbndb.com/covers/63/00/9780380976300.jpg'), - ('0887306918', 'Cracking The Corporate Closet: The 200 Best (And Worst Companies To Work For, Buy From, And Invest In If You''re Gay Or Lesbian - And Even If You Ar)', 'https://images.isbndb.com/covers/69/14/9780887306914.jpg'), - ('0840791712', 'The Lord''s Blessings/Hope And Peace For Those In Recovery', 'https://images.isbndb.com/covers/17/19/9780840791719.jpg'), - ('0140380736', 'The Arkadians', 'https://images.isbndb.com/covers/07/36/9780140380736.jpg'), - ('0689828772', 'The Raging Quiet', 'https://images.isbndb.com/covers/87/75/9780689828775.jpg'), - ('0689313535', 'The Hideaway', 'https://images.isbndb.com/covers/35/30/9780689313530.jpg'), - ('0679411836', 'Jumping Ship And Other Stories', 'https://images.isbndb.com/covers/18/33/9780679411833.jpg'), - ('0151962960', 'Where Is Joe Merchant?: A Novel Tale', 'https://images.isbndb.com/covers/29/69/9780151962969.jpg'), - ('3404921178', 'Nur Der Tod Ist Ohne Makel: Fran Varadys Erster Fall', 'https://images.isbndb.com/covers/11/71/9783404921171.jpg'), - ('0451136330', 'Small World (Signet)', 'https://images.isbndb.com/covers/63/36/9780451136336.jpg'), - ('0061001023', 'Birthright', 'https://images.isbndb.com/covers/10/24/9780061001024.jpg'), - ('0843934557', 'The Lake', 'https://images.isbndb.com/covers/45/57/9780843934557.jpg'), - ('0312961006', 'The Trickster', 'https://images.isbndb.com/covers/10/08/9780312961008.jpg'), - ('2266041517', 'LE CHEVAL D''ORGUEIL. Mémoires D''un Breton Du Pays Bigouden', 'https://images.isbndb.com/covers/15/15/9782266041515.jpg'), - ('2290047155', 'Le Bois Aux Elfes', 'https://images.isbndb.com/covers/71/56/9782290047156.jpg'), - ('2226120467', 'Lettre Ouverte Aux Français Qui Se Croient Le Nombril Du Monde', 'https://images.isbndb.com/covers/04/65/9782226120465.jpg'), - ('0446523089', 'The Secret Of Shambhala : In Search Of The Eleventh Insight', 'https://images.isbndb.com/covers/30/80/9780446523080.jpg'), - ('0373226136', 'Someone''s Baby (Trueblood, Texas #1) (Harlequin Intrigue Series #613)', 'https://images.isbndb.com/covers/61/39/9780373226139.jpg'), - ('0688167810', 'Wonder When You''ll Miss Me', 'https://images.isbndb.com/covers/78/13/9780688167813.jpg'), - ('0373704526', 'Dangerous Loyalty (Harlequin Superromance No. 452)', 'https://images.isbndb.com/covers/45/21/9780373704521.jpg'), - ('0373484895', 'Captive Star (The Stars Of Mithra)', 'https://images.isbndb.com/covers/48/98/9780373484898.jpg'), - ('0451524497', 'Anna Karenina (A Signet Classic)', 'https://images.isbndb.com/covers/44/92/9780451524492.jpg'), - ('0449234576', 'Short Friday', 'https://images.isbndb.com/covers/45/70/9780449234570.jpg'), - ('014025773X', 'James The Brother Of Jesus: The Key To Unlocking The Secrets Of Early Christianity And The Dead Sea Scrolls', 'https://images.isbndb.com/covers/77/31/9780140257731.jpg'), - ('0395533627', 'COLLECTED WRITINGS PORTER PA', 'https://images.isbndb.com/covers/36/28/9780395533628.jpg'), - ('0393963039', 'Uncle Tom''s Cabin (Norton Critical Editions)', 'https://images.isbndb.com/covers/30/38/9780393963038.jpg'), - ('0941104311', 'Hot Licks (Real Comet Flipbooks)', 'https://images.isbndb.com/covers/43/19/9780941104319.jpg'), - ('0375401296', 'Building A Bridge To The 18th Century: How The Past Can Improve Our Future', 'https://images.isbndb.com/covers/12/99/9780375401299.jpg'), - ('0393322157', 'Glue', 'https://images.isbndb.com/covers/21/56/9780393322156.jpg'), - ('0060005424', 'Lirael: Daughter Of The Clayr', 'https://images.isbndb.com/covers/54/29/9780060005429.jpg'), - ('3404615131', 'Live Dabei: Erinnerungen Eines Journalisten', 'https://images.isbndb.com/covers/51/31/9783404615131.jpg'), - ('0449205878', 'Poland', 'https://images.isbndb.com/covers/58/77/9780449205877.jpg'), - ('0670813699', 'Man Who Fell From The Sky: The True Story Gaudy Life Bizarre Demise 20''s Tycoon Alfred Loewenstein Mod', 'https://images.isbndb.com/covers/36/98/9780670813698.jpg'), - ('0552996181', 'Behind The Scenes At The Museum', 'https://images.isbndb.com/covers/61/81/9780552996181.jpg'), - ('0451211561', 'Capital Crimes (Will Lee Novel)', 'https://images.isbndb.com/covers/15/69/9780451211569.jpg'), - ('3499420694', 'Gefährliche Neugier.', 'https://images.isbndb.com/covers/06/96/9783499420696.jpg'), - ('3257218362', 'Banshee, Die Todesfee', 'https://images.isbndb.com/covers/83/67/9783257218367.jpg'), - ('0380729407', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/94/01/9780380729401.jpg'), - ('0310214653', 'Fit To Be Tied', 'https://images.isbndb.com/covers/46/56/9780310214656.jpg'), - ('0486299929', 'Six Characters In Search Of An Author (Dover Thrift Editions)', 'https://images.isbndb.com/covers/99/21/9780486299921.jpg'), - ('0486278042', 'Antigone (Dover Thrift Editions)', 'https://images.isbndb.com/covers/80/49/9780486278049.jpg'), - ('0486282252', 'Lysistrata (Dover Thrift Editions)', 'https://images.isbndb.com/covers/22/51/9780486282251.jpg'), - ('0738807338', 'Queenmaker', 'https://images.isbndb.com/covers/73/31/9780738807331.jpg'), - ('0446523151', 'At All Costs', 'https://images.isbndb.com/covers/31/58/9780446523158.jpg'), - ('1558749209', 'Chicken Soup For The Soul', 'https://images.isbndb.com/covers/92/07/9781558749207.jpg'), - ('0446601020', 'The Judas Cross', 'https://images.isbndb.com/covers/10/23/9780446601023.jpg'), - ('3492238882', 'Die Meere Des Südens · Wenn Tote Baden: Zwei Pepe-Carvalho-Romane In Einem Band', 'https://images.isbndb.com/covers/88/85/9783492238885.jpg'), - ('3257205368', 'Topkapi', 'https://images.isbndb.com/covers/53/67/9783257205367.jpg'), - ('0749396547', 'Made In America', 'https://images.isbndb.com/covers/65/41/9780749396541.jpg'), - ('325130058X', 'Hühnerherbst. Ein Gonzo Krimi.', 'https://images.isbndb.com/covers/05/87/9783251300587.jpg'), - ('3794147286', 'Das Mag Elsa Entchen Gern', 'https://images.isbndb.com/covers/72/81/9783794147281.jpg'), - ('3548243746', 'Kelim-Connection', 'https://images.isbndb.com/covers/37/40/9783548243740.jpg'), - ('0670814458', 'In The Country Of Last Things', 'https://images.isbndb.com/covers/44/59/9780670814459.jpg'), - ('0816707987', 'Great American Short Stories (Wtm) (Watermill Classics)', 'https://images.isbndb.com/covers/79/80/9780816707980.jpg'), - ('3426617277', 'Die Frau Mit Den Regenhänden', 'https://images.isbndb.com/covers/72/74/9783426617274.jpg'), - ('185863864X', 'George: A 20th Century Miniature', 'https://images.isbndb.com/covers/86/45/9781858638645.jpg'), - ('3596294312', 'Buddenbrooks: Verfall Einer Familie. Roman', 'https://images.isbndb.com/covers/43/12/9783596294312.jpg'), - ('3453209419', 'Ocean''s Eleven. Roman Zum Film.', 'https://images.isbndb.com/covers/94/11/9783453209411.jpg'), - ('0595250955', 'In The Spirit Of Armorbearing: Being The Gift Of Support To God''s Leaders', 'https://images.isbndb.com/covers/09/50/9780595250950.jpg'), - ('0399135790', 'Cold Fire', 'https://images.isbndb.com/covers/57/98/9780399135798.jpg'), - ('0345356950', 'The Scions Of Shannara (The Heritage Of Shannara #1)', 'https://images.isbndb.com/covers/69/56/9780345356956.jpg'), - ('2253060224', 'Vingt-quatre Heures De La Vie D''une Femme', 'https://images.isbndb.com/covers/02/22/9782253060222.jpg'), - ('0312265859', 'Hard Eight (A Stephanie Plum Novel) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/58/54/9780312265854.jpg'), - ('0130421499', 'Secondary School Teaching: A Guide To Methods And Resources (2nd Edition)', 'https://images.isbndb.com/covers/14/94/9780130421494.jpg'), - ('0673980111', 'The Little, Brown Compact Handbook/Includes Mla Update', 'https://images.isbndb.com/covers/01/13/9780673980113.jpg'), - ('157029237X', 'Terrific Tips For Toddler Teachers', 'https://images.isbndb.com/covers/23/78/9781570292378.jpg'), - ('0935989870', 'Learning To Read And Write : Developmentally Appropriate Practices For Young Children', 'https://images.isbndb.com/covers/98/78/9780935989878.jpg'), - ('0876591063', 'Learning Letters Through All Five Senses: A Language Development Activity Book', 'https://images.isbndb.com/covers/10/62/9780876591062.jpg'), - ('0876591195', 'Story S-t-r-e-t-c-h-e-r-s: Activities To Expand Children''s Favorite Books (Pre-K And K)', 'https://images.isbndb.com/covers/11/92/9780876591192.jpg'), - ('0935989900', 'Much More Than The ABC''s: The Early Stages Of Reading And Writing', 'https://images.isbndb.com/covers/99/08/9780935989908.jpg'), - ('0553380303', 'Baby Minds: Brain-Building Games Your Baby Will Love', 'https://images.isbndb.com/covers/03/09/9780553380309.jpg'), - ('0316744441', 'From Aaron To Zoe: 15,000 Great Baby Names', 'https://images.isbndb.com/covers/44/47/9780316744447.jpg'), - ('0316779032', 'The Discipline Book: How To Have A Better-Behaved Child From Birth To Age Ten', 'https://images.isbndb.com/covers/90/36/9780316779036.jpg'), - ('089586763X', 'Pregnant/lovin It #2', 'https://images.isbndb.com/covers/76/36/9780895867636.jpg'), - ('0827348916', 'Understanding Child Development', 'https://images.isbndb.com/covers/89/12/9780827348912.jpg'), - ('0060406046', 'The Developing Child', 'https://images.isbndb.com/covers/60/42/9780060406042.jpg'), - ('0312636490', 'The Premature Baby Book: A Parents Guide To Coping And Caring In The First Years', 'https://images.isbndb.com/covers/64/94/9780312636494.jpg'), - ('0671739999', 'How To Raise A Brighter Child', 'https://images.isbndb.com/covers/99/97/9780671739997.jpg'), - ('0912500212', 'Becoming A Father: How To Nurture And Enjoy Your Family (Growing Family Series)', 'https://images.isbndb.com/covers/02/18/9780912500218.jpg'), - ('1576734587', 'On Becoming Baby Wise, Book 1: Learn How Over One Million Babies Were Trained To Sleep Through The Night The Natural Way', 'https://images.isbndb.com/covers/45/82/9781576734582.jpg'), - ('0786884525', 'Baby Days: Activities, Ideas, And Games For Enjoying Daily Life With A Child Under Three', 'https://images.isbndb.com/covers/45/20/9780786884520.jpg'), - ('0553347187', 'Before You Conceive: The Complete Pregnancy Guide', 'https://images.isbndb.com/covers/71/80/9780553347180.jpg'), - ('0671537628', 'Dr. Spock''s Baby And Childcare: Seventh Edition', 'https://images.isbndb.com/covers/76/23/9780671537623.jpg'), - ('0553226630', 'The Name Book: How Your Name Affects Your Life', 'https://images.isbndb.com/covers/66/38/9780553226638.jpg'), - ('0553580655', 'Better Homes And Gardens New Baby Book: The Complete Guide To Pregnancy, Childbirth, And Baby Care Revised', 'https://images.isbndb.com/covers/06/55/9780553580655.jpg'), - ('0440127092', 'Four Thousand Names For Your Baby', 'https://images.isbndb.com/covers/70/93/9780440127093.jpg'), - ('0671836285', 'Games Babies Play', 'https://images.isbndb.com/covers/62/83/9780671836283.jpg'), - ('0312969767', 'You Might As Well Laugh: Because Crying Will Only Smear Your Mascara', 'https://images.isbndb.com/covers/97/69/9780312969769.jpg'), - ('0440214475', '21st Century Dictionary Of Quotations (21st Century Reference)', 'https://images.isbndb.com/covers/44/72/9780440214472.jpg'), - ('0380790750', 'Make Your Medicine Safe: How To Prevent Side Effects From The Drugs You Take', 'https://images.isbndb.com/covers/07/53/9780380790753.jpg'), - ('0671027271', 'The Merck Manual Of Medical Information (Merck Manual Of Medical Information, Home Ed.)', 'https://images.isbndb.com/covers/72/78/9780671027278.jpg'), - ('0764561960', 'Arizona For Dummies', 'https://images.isbndb.com/covers/19/62/9780764561962.jpg'), - ('0831788356', 'South (American Traveler Series)', 'https://images.isbndb.com/covers/83/53/9780831788353.jpg'), - ('1566910838', 'Moon Handbooks Massachusetts', 'https://images.isbndb.com/covers/08/35/9781566910835.jpg'), - ('0803893728', 'Daytrips Italy (3rd Edition)', 'https://images.isbndb.com/covers/37/26/9780803893726.jpg'), - ('1558534334', 'The Annual Directory Of American And Canadian Bed & Breakfasts 1997 (Annual Directory Of American And Canadian Bed And Breakfasts)', 'https://images.isbndb.com/covers/43/39/9781558534339.jpg'), - ('0873374789', 'Trouble-Free Travel: And What To Do When Things Go Wrong', 'https://images.isbndb.com/covers/47/81/9780873374781.jpg'), - ('0395714060', 'Mastering Computer Typing: A Painless Course For Beginners And Professionals', 'https://images.isbndb.com/covers/40/65/9780395714065.jpg'), - ('0878570764', 'The Rodale Herb Book: How To Use, Grow, And Buy Nature''s Miracle Plants (An Organic Gardening And Farming Book)', 'https://images.isbndb.com/covers/07/68/9780878570768.jpg'), - ('0380758962', 'Dinosaur Data Book: The Definitive, Fully Illustrated Encyclopedia Of Dinosaurs', 'https://images.isbndb.com/covers/89/68/9780380758968.jpg'), - ('0553088122', 'The End Of Evolution', 'https://images.isbndb.com/covers/81/20/9780553088120.jpg'), - ('0879752408', 'In The Beginning: A Scientist Shows Why The Creationists Are Wrong', 'https://images.isbndb.com/covers/24/08/9780879752408.jpg'), - ('0425096505', 'Tom Brown''s Field Guide To Wilderness Survival', 'https://images.isbndb.com/covers/65/05/9780425096505.jpg'), - ('0822023016', 'Advanced Placement Biology Examination: Preparation Guide', 'https://images.isbndb.com/covers/30/12/9780822023012.jpg'), - ('0307336565', 'Birds Of North America', 'https://images.isbndb.com/covers/65/69/9780307336569.jpg'), - ('0486224570', 'My Bondage And My Freedom (Black Rediscovery)', 'https://images.isbndb.com/covers/45/72/9780486224572.jpg'), - ('0842346740', 'Mysteries And Intrigues Of The Bible Extraordinary Events And Fascinating People', 'https://images.isbndb.com/covers/67/40/9780842346740.jpg'), - ('0805061835', 'Real Boys : Rescuing Our Sons From The Myths Of Boyhood', 'https://images.isbndb.com/covers/18/33/9780805061833.jpg'), - ('0425165701', 'Ruthless.Com (Tom Clancy''s Power Plays, Book 2)', 'https://images.isbndb.com/covers/57/06/9780425165706.jpg'), - ('0451522273', 'Ethan Frome (Signet Classics)', 'https://images.isbndb.com/covers/22/76/9780451522276.jpg'), - ('0767900189', 'The Kingdom Of Shivas Irons', 'https://images.isbndb.com/covers/01/88/9780767900188.jpg'), - ('0060196661', 'A Stay Against Confusion: Essays On Faith And Fiction', 'https://images.isbndb.com/covers/66/60/9780060196660.jpg'), - ('344242366X', 'Der Rumpf', 'https://images.isbndb.com/covers/36/68/9783442423668.jpg'), - ('2070415708', 'Le Cycle De Fondation, Tome 1 : Fondation', 'https://images.isbndb.com/covers/57/00/9782070415700.jpg'), - ('2290316296', 'L''Assassin Royal, Tome 3 : La Nef Du Crépuscule', 'https://images.isbndb.com/covers/62/90/9782290316290.jpg'), - ('2290313238', 'L''Assassin Royal, Tome 2 : L''Assassin Du Roi', 'https://images.isbndb.com/covers/32/37/9782290313237.jpg'), - ('2290303607', 'L''Assassin Royal, Tome 1 : L''apprenti Assassin', 'https://images.isbndb.com/covers/36/03/9782290303603.jpg'), - ('2290304778', 'Night Océan Et Autres Nouvelles', 'https://images.isbndb.com/covers/47/78/9782290304778.jpg'), - ('2290042560', 'La Quête Onirique De Kadath L''inconnue', 'https://images.isbndb.com/covers/25/64/9782290042564.jpg'), - ('2290331341', 'Le Mythe De Cthulhu', 'https://images.isbndb.com/covers/13/47/9782290331347.jpg'), - ('2226135022', 'Oscar Et La Dame Rose', 'https://images.isbndb.com/covers/50/25/9782226135025.jpg'), - ('0449003213', 'Kingdom Come', 'https://images.isbndb.com/covers/32/13/9780449003213.jpg'), - ('0688046592', 'The Pillars Of The Earth', 'https://images.isbndb.com/covers/65/90/9780688046590.jpg'), - ('3548332374', 'Checkpoint Charlie And The Wall', 'https://images.isbndb.com/covers/23/76/9783548332376.jpg'), - ('2207304183', 'Maître De L''espace Et Du Temps', 'https://images.isbndb.com/covers/41/81/9782207304181.jpg'), - ('2207304132', 'Un Navire De Nulle Part', 'https://images.isbndb.com/covers/41/36/9782207304136.jpg'), - ('2207304116', 'Annales De Klepsis', 'https://images.isbndb.com/covers/41/12/9782207304112.jpg'), - ('2207304078', 'Kosmokrim', 'https://images.isbndb.com/covers/40/75/9782207304075.jpg'), - ('2207304027', 'Bonjour, Chaos', 'https://images.isbndb.com/covers/40/20/9782207304020.jpg'), - ('2207304019', 'Démon', 'https://images.isbndb.com/covers/40/13/9782207304013.jpg'), - ('2207304000', 'Démon', 'https://images.isbndb.com/covers/40/06/9782207304006.jpg'), - ('2207303993', 'Le Trône De Folie', 'https://images.isbndb.com/covers/39/93/9782207303993.jpg'), - ('2207303888', 'Janus', 'https://images.isbndb.com/covers/38/87/9782207303887.jpg'), - ('2207301656', 'Le Péril Vient De La Mer', 'https://images.isbndb.com/covers/16/54/9782207301654.jpg'), - ('2207250660', 'Les Machines à Bonheur', 'https://images.isbndb.com/covers/06/62/9782207250662.jpg'), - ('2742743537', 'La Treizième Cible', 'https://images.isbndb.com/covers/35/37/9782742743537.jpg'), - ('0399148779', 'Eleventh Hour', 'https://images.isbndb.com/covers/87/74/9780399148774.jpg'), - ('3442439019', 'Die Hornisse: Roman (Andy Brazil)', 'https://images.isbndb.com/covers/90/10/9783442439010.jpg'), - ('0452281725', 'The Quilter''s Apprentice (Elm Creek Quilts Series #1)', 'https://images.isbndb.com/covers/17/21/9780452281721.jpg'), - ('0385092148', 'The Country Of The Pointed Firs : And Other Stories', 'https://images.isbndb.com/covers/21/42/9780385092142.jpg'), - ('0745916147', 'The Transforming Friendship', 'https://images.isbndb.com/covers/61/49/9780745916149.jpg'), - ('0830727639', 'God''s Timing For Your Life: Seeing The Seasons Of Your Life Through God''s Eyes (Life Point)', 'https://images.isbndb.com/covers/76/36/9780830727636.jpg'), - ('0662174860', 'A Living Tradition: Penitentiary Chaplaincy', 'https://images.isbndb.com/covers/48/68/9780662174868.jpg'), - ('187963905X', 'Reclaiming Youth At Risk: Our Hope For The Future', 'https://images.isbndb.com/covers/90/58/9781879639058.jpg'), - ('0380795671', 'The Liberal Arts Advantage: How To Turn Your Degree Into A Great Job', 'https://images.isbndb.com/covers/56/73/9780380795673.jpg'), - ('1567181449', 'Charting Your Career: The Horoscope Reveals Your Life Purpose', 'https://images.isbndb.com/covers/14/49/9781567181449.jpg'), - ('0805047794', 'Achilles In The Quantum Universe: The Definitive History Of Infinity', 'https://images.isbndb.com/covers/77/90/9780805047790.jpg'), - ('0671542141', 'The Fire From Within', 'https://images.isbndb.com/covers/21/46/9780671542146.jpg'), - ('0553211161', 'Leaves Of Grass (Bantam Classics)', 'https://images.isbndb.com/covers/11/60/9780553211160.jpg'), - ('0812556070', 'The Hall Of The Mountain King (Volume One Of Avaryan Rising)', 'https://images.isbndb.com/covers/60/70/9780812556070.jpg'), - ('0812532597', 'The Memory Of Earth', 'https://images.isbndb.com/covers/25/93/9780812532593.jpg'), - ('0879050721', 'Wilderness Essays (Literature Of The American Wilderness)', 'https://images.isbndb.com/covers/07/26/9780879050726.jpg'), - ('0345339967', 'Foundation And Earth', 'https://images.isbndb.com/covers/99/66/9780345339966.jpg'), - ('3442089832', 'Der Kuß. Kunst Und Leben Der Camille Claudel', 'https://images.isbndb.com/covers/98/33/9783442089833.jpg'), - ('1414034563', 'WHEN IN DOUBT...BLAME A JEW!: A PERSONAL AND PEOPLE''S MEMOIR OF ANTI-SEMITISM', 'https://images.isbndb.com/covers/45/60/9781414034560.jpg'), - ('0880385871', 'Spellfire (Forgotten Realms: Shandril''s Saga, Book 1)', 'https://images.isbndb.com/covers/58/79/9780880385879.jpg'), - ('0141182253', 'Under The Volcano (Penguin Modern Classics)', 'https://images.isbndb.com/covers/22/54/9780141182254.jpg'), - ('0060526769', 'The Heart Of Christianity: Rediscovering A Life Of Faith', 'https://images.isbndb.com/covers/67/64/9780060526764.jpg'), - ('1858285283', 'The Rough Guide To Jazz 2 (Rough Guide Music Guides)', 'https://images.isbndb.com/covers/52/83/9781858285283.jpg'), - ('0385404859', 'The First Church Of The New Millennium', 'https://images.isbndb.com/covers/48/53/9780385404853.jpg'), - ('0375760520', 'Paris 1919: Six Months That Changed The World', 'https://images.isbndb.com/covers/05/25/9780375760525.jpg'), - ('0525945768', 'The Oath (Dismas Hardy)', 'https://images.isbndb.com/covers/57/65/9780525945765.jpg'), - ('1592400388', 'Almost French: Love And A New Life In Paris', 'https://images.isbndb.com/covers/03/86/9781592400386.jpg'), - ('0060589272', 'Eleven Minutes: A Novel', 'https://images.isbndb.com/covers/92/71/9780060589271.jpg'), - ('0553583158', 'Legacy Of The Dead (Inspector Ian Rutledge Mysteries)', 'https://images.isbndb.com/covers/31/51/9780553583151.jpg'), - ('0804102511', 'Intensive Care: The Story Of A Nurse', 'https://images.isbndb.com/covers/25/13/9780804102513.jpg'), - ('0137791577', 'Returning To School: Guide For Nurses', 'https://images.isbndb.com/covers/15/76/9780137791576.jpg'), - ('0804118213', 'Tending Lives: Nurses On The Medical Front', 'https://images.isbndb.com/covers/82/17/9780804118217.jpg'), - ('0425148297', 'Naked In Death (In Death, Book 1)', 'https://images.isbndb.com/covers/82/97/9780425148297.jpg'), - ('0670628301', 'Second Heaven', 'https://images.isbndb.com/covers/83/08/9780670628308.jpg'), - ('0312868278', 'Dark Cities Underground', 'https://images.isbndb.com/covers/82/77/9780312868277.jpg'), - ('0395752906', 'The Best American Short Stories 1996', 'https://images.isbndb.com/covers/29/06/9780395752906.jpg'), - ('0060523492', 'Force 5 Recon: Deployment: Pakistan', 'https://images.isbndb.com/covers/34/97/9780060523497.jpg'), - ('0451209443', 'Sphere Of Influence', 'https://images.isbndb.com/covers/94/43/9780451209443.jpg'), - ('0689311982', 'Kumquat May, I''ll Always Love You', 'https://images.isbndb.com/covers/19/87/9780689311987.jpg'), - ('0312039409', 'The Stone Veil', 'https://images.isbndb.com/covers/94/00/9780312039400.jpg'), - ('0451207947', 'Only By Your Touch', 'https://images.isbndb.com/covers/79/44/9780451207944.jpg'), - ('042519065X', 'Wings Of Fire', 'https://images.isbndb.com/covers/06/54/9780425190654.jpg'), - ('0060008369', 'The Shadows Of Power', 'https://images.isbndb.com/covers/83/69/9780060008369.jpg'), - ('0451208773', 'Punk''s Wing', 'https://images.isbndb.com/covers/87/74/9780451208774.jpg'), - ('0425190919', 'Sea Of Fire (Tom Clancy''s Op-Centre, Book 10)', 'https://images.isbndb.com/covers/09/13/9780425190913.jpg'), - ('006103181X', 'The Last Phoenix', 'https://images.isbndb.com/covers/18/16/9780061031816.jpg'), - ('0446612901', 'The Kingmaker', 'https://images.isbndb.com/covers/29/06/9780446612906.jpg'), - ('051513581X', 'Piranha (Dale Brown''s Dreamland)', 'https://images.isbndb.com/covers/58/17/9780515135817.jpg'), - ('0515119202', 'Daring To Dream: The Dream Trilogy #1', 'https://images.isbndb.com/covers/92/06/9780515119206.jpg'), - ('1551660504', 'Skin Deep (The O''hurleys)', 'https://images.isbndb.com/covers/05/09/9781551660509.jpg'), - ('0671013947', 'By Dawn''s Early Light: A Novel', 'https://images.isbndb.com/covers/39/43/9780671013943.jpg'), - ('042512164X', 'Capital Crimes', 'https://images.isbndb.com/covers/16/41/9780425121641.jpg'), - ('0451197534', 'Final Venture', 'https://images.isbndb.com/covers/75/35/9780451197535.jpg'), - ('0425188795', 'The Sentinel', 'https://images.isbndb.com/covers/87/98/9780425188798.jpg'), - ('0515134864', 'Turbulence', 'https://images.isbndb.com/covers/48/65/9780515134865.jpg'), - ('0312925778', 'Night Thoughts - Reflections Of A Sex Therapist', 'https://images.isbndb.com/covers/57/72/9780312925772.jpg'), - ('031228361X', 'Liberty: A Jake Grafton Novel', 'https://images.isbndb.com/covers/36/12/9780312283612.jpg'), - ('0786889845', 'Conflict Of Interest', 'https://images.isbndb.com/covers/98/46/9780786889846.jpg'), - ('0765341697', 'Against All Enemies', 'https://images.isbndb.com/covers/16/93/9780765341693.jpg'), - ('0060094397', 'Razor''s Edge (Dale Brown''s Dreamland)', 'https://images.isbndb.com/covers/43/93/9780060094393.jpg'), - ('0451410645', 'Dark Ambition', 'https://images.isbndb.com/covers/06/41/9780451410641.jpg'), - ('0446610402', 'Mirage', 'https://images.isbndb.com/covers/04/07/9780446610407.jpg'), - ('0061032425', 'The Family', 'https://images.isbndb.com/covers/24/24/9780061032424.jpg'), - ('0743405900', 'True Justice', 'https://images.isbndb.com/covers/59/04/9780743405904.jpg'), - ('0425163415', 'The President''s Daughter (Sean Dillon)', 'https://images.isbndb.com/covers/34/12/9780425163412.jpg'), - ('0425187721', 'Nerve Center (Dale Brown''s Dreamland, No. 2)', 'https://images.isbndb.com/covers/77/22/9780425187722.jpg'), - ('0553574035', 'Edge, The', 'https://images.isbndb.com/covers/40/36/9780553574036.jpg'), - ('044022473X', 'Breach Of Promise', 'https://images.isbndb.com/covers/47/30/9780440224730.jpg'), - ('0091833345', 'Something That Happens To Other People: Stories Of Women Growing Older', 'https://images.isbndb.com/covers/33/43/9780091833343.jpg'), - ('0899972020', '50 Best Short Hikes In California''s Central Coast', 'https://images.isbndb.com/covers/20/22/9780899972022.jpg'), - ('0553254502', 'Roll Of Thunder, Hear My Cry', 'https://images.isbndb.com/covers/45/01/9780553254501.jpg'), - ('0140097058', 'In The Country Of Last Things', 'https://images.isbndb.com/covers/70/54/9780140097054.jpg'), - ('0688155308', 'Naked Pictures Of Famous People', 'https://images.isbndb.com/covers/53/08/9780688155308.jpg'), - ('0688046606', 'Night Over Water', 'https://images.isbndb.com/covers/66/06/9780688046606.jpg'), - ('0451624769', 'The Double Helix (Mentor Series)', 'https://images.isbndb.com/covers/47/65/9780451624765.jpg'), - ('0441006949', 'Mariel Of Redwall (Redwall, Book 4)', 'https://images.isbndb.com/covers/69/46/9780441006946.jpg'), - ('0747265453', 'Unnatural Justice (Oz Blackstone Mysteries)', 'https://images.isbndb.com/covers/54/50/9780747265450.jpg'), - ('0747263884', 'Head Shot (Bob Skinner Mysteries)', 'https://images.isbndb.com/covers/38/83/9780747263883.jpg'), - ('0140137815', 'Opportunities: A Handbook Of Business Opportunity Search', 'https://images.isbndb.com/covers/78/11/9780140137811.jpg'), - ('0156767503', 'The Road To Wigan Pier', 'https://images.isbndb.com/covers/75/07/9780156767507.jpg'), - ('0380563908', 'The Thorn Birds', 'https://images.isbndb.com/covers/39/06/9780380563906.jpg'), - ('0345331176', 'Two Sisters', 'https://images.isbndb.com/covers/11/75/9780345331175.jpg'), - ('0241102634', 'Kindergarten', 'https://images.isbndb.com/covers/26/33/9780241102633.jpg'), - ('0786708069', 'Doris Lessing: A Biography', 'https://images.isbndb.com/covers/80/62/9780786708062.jpg'), - ('0743411447', 'Jolie Blon''s Bounce', 'https://images.isbndb.com/covers/14/48/9780743411448.jpg'), - ('0140432264', 'Washington Square (Penguin Classics)', 'https://images.isbndb.com/covers/22/68/9780140432268.jpg'), - ('0452276772', 'Kinflicks: 20th Anniversary Edition', 'https://images.isbndb.com/covers/67/72/9780452276772.jpg'), - ('0140185887', 'Cakes And Ale (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/58/81/9780140185881.jpg'), - ('0140008950', 'Zuleika Dobson: Or An Oxford Love Story (Penguin Modern Classics)', 'https://images.isbndb.com/covers/89/51/9780140008951.jpg'), - ('0743235053', 'Haunted Ground: A Novel', 'https://images.isbndb.com/covers/50/51/9780743235051.jpg'), - ('1561310271', 'The Greenhouse', 'https://images.isbndb.com/covers/02/72/9781561310272.jpg'), - ('0553210246', 'The Mayor Of Casterbridge (Bantam Classics)', 'https://images.isbndb.com/covers/02/48/9780553210248.jpg'), - ('0140054316', 'Tempest-tost (Salterton Trilogy)', 'https://images.isbndb.com/covers/43/16/9780140054316.jpg'), - ('0590372343', 'Trouble With Valentines', 'https://images.isbndb.com/covers/23/43/9780590372343.jpg'), - ('0595279171', 'God Is In Hell: Opening My Heart To The Holocaust', 'https://images.isbndb.com/covers/91/73/9780595279173.jpg'), - ('0312983417', 'Starting Over', 'https://images.isbndb.com/covers/34/13/9780312983413.jpg'), - ('0440238412', 'When Zachary Beaver Came To Town (New Readers Circle Editions)', 'https://images.isbndb.com/covers/84/16/9780440238416.jpg'), - ('006054564X', 'My Invented Country: A Nostalgic Journey Through Chile', 'https://images.isbndb.com/covers/56/42/9780060545642.jpg'), - ('0385502761', 'Look At Me', 'https://images.isbndb.com/covers/27/64/9780385502764.jpg'), - ('0440229081', 'Skellig', 'https://images.isbndb.com/covers/90/87/9780440229087.jpg'), - ('038550084X', 'Fraud', 'https://images.isbndb.com/covers/08/45/9780385500845.jpg'), - ('0553257749', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/77/48/9780553257748.jpg'), - ('0380005166', 'Shardik', 'https://images.isbndb.com/covers/51/61/9780380005161.jpg'), - ('0394309685', 'Light In August', 'https://images.isbndb.com/covers/96/82/9780394309682.jpg'), - ('0970141947', 'Just A Couple Of Days', 'https://images.isbndb.com/covers/19/41/9780970141941.jpg'), - ('0451516680', 'Heart Of Darkness And The Secret Sharer', 'https://images.isbndb.com/covers/66/88/9780451516688.jpg'), - ('0140367829', 'Aladdin And Other Tales From The Arabian Nights (Puffin Classics)', 'https://images.isbndb.com/covers/78/29/9780140367829.jpg'), - ('0345441788', 'The Forest', 'https://images.isbndb.com/covers/17/82/9780345441782.jpg'), - ('1853260207', 'Jane Eyre (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/02/09/9781853260209.jpg'), - ('0140620478', 'Far From The Madding Crowd (Penguin Popular Classics)', 'https://images.isbndb.com/covers/04/74/9780140620474.jpg'), - ('0679750150', 'The Sailor Who Fell From Grace With The Sea', 'https://images.isbndb.com/covers/01/54/9780679750154.jpg'), - ('0060930438', 'Kids, Parents, And Power Struggles: Winning For A Lifetime', 'https://images.isbndb.com/covers/04/31/9780060930431.jpg'), - ('0671796356', 'Meditations For Parents Who Do Too Much', 'https://images.isbndb.com/covers/63/58/9780671796358.jpg'), - ('0811841553', 'The Worst-Case Scenario Survival Handbook: Parenting', 'https://images.isbndb.com/covers/15/59/9780811841559.jpg'), - ('076070015X', 'The Age Of Innocence', 'https://images.isbndb.com/covers/01/50/9780760700150.jpg'), - ('0312261357', 'Claiming Kin: Confronting The History Of An African American Family', 'https://images.isbndb.com/covers/13/51/9780312261351.jpg'), - ('188090845X', 'Out Of The Past: Amish Traditon And Faith (Celebrating America)', 'https://images.isbndb.com/covers/84/57/9781880908457.jpg'), - ('0804818584', 'Japan Country Living', 'https://images.isbndb.com/covers/85/82/9780804818582.jpg'), - ('080482052X', 'Blue And White Japan', 'https://images.isbndb.com/covers/05/23/9780804820523.jpg'), - ('0440237424', 'The Best Revenge', 'https://images.isbndb.com/covers/74/26/9780440237426.jpg'), - ('2253030589', 'Mrs Dalloway', 'https://images.isbndb.com/covers/05/84/9782253030584.jpg'), - ('0425087700', 'Parker Pyne Investigates', 'https://images.isbndb.com/covers/77/01/9780425087701.jpg'), - ('2013218923', 'Le Crime De L''Orient-Express', 'https://images.isbndb.com/covers/89/24/9782013218924.jpg'), - ('0140286829', 'The Third Man', 'https://images.isbndb.com/covers/68/23/9780140286823.jpg'), - ('2290333697', 'Le Mystère De La Chambre Jaune', 'https://images.isbndb.com/covers/36/93/9782290333693.jpg'), - ('0679722610', 'Red Harvest', 'https://images.isbndb.com/covers/26/18/9780679722618.jpg'), - ('1592247938', 'The Red Badge Of Courage', 'https://images.isbndb.com/covers/79/36/9781592247936.jpg'), - ('958949479X', 'THE COUNT OF MONTECRISTO (Spanish Edition)', 'https://images.isbndb.com/covers/47/90/9789589494790.jpg'), - ('0553213296', 'The Last Of The Mohicans (Bantam Classics)', 'https://images.isbndb.com/covers/32/94/9780553213294.jpg'), - ('0812523016', 'Dracula', 'https://images.isbndb.com/covers/30/10/9780812523010.jpg'), - ('0553214209', 'From The Earth To The Moon (Bantam Classics)', 'https://images.isbndb.com/covers/42/08/9780553214208.jpg'), - ('0140367152', 'Journey To The Centre Of The Earth (Puffin Classics)', 'https://images.isbndb.com/covers/71/57/9780140367157.jpg'), - ('9500286327', 'Los Tres Mosqueteros (Spanish Edition)', 'https://images.isbndb.com/covers/63/29/9789500286329.jpg'), - ('0689810962', 'Michael Strogoff: A Courier Of The Czar (Scribner Illustrated Classics)', 'https://images.isbndb.com/covers/09/61/9780689810961.jpg'), - ('0062702475', 'Ordinary People, Extraordinary Wealth: The 8 Secrets Of How 5,000 Ordinary Americans Became Successful Investors--and How You Can Too', 'https://images.isbndb.com/covers/24/70/9780062702470.jpg'), - ('0385415613', 'CHRISTMAS OUT WEST (A Double D Western)', 'https://images.isbndb.com/covers/56/13/9780385415613.jpg'), - ('0449219771', 'The Rise And Fall Of The Third Reich : A History Of Nazi Germany', 'https://images.isbndb.com/covers/97/75/9780449219775.jpg'), - ('0195038630', 'Battle Cry Of Freedom: The Civil War Era (The Oxford History Of The United States)', 'https://images.isbndb.com/covers/86/37/9780195038637.jpg'), - ('0385418973', 'Decisive Day: The Battle For Bunker Hill', 'https://images.isbndb.com/covers/89/73/9780385418973.jpg'), - ('0345380746', 'Long Knife', 'https://images.isbndb.com/covers/07/46/9780345380746.jpg'), - ('1564963179', 'Type: Hot Designers Make Cool Fonts', 'https://images.isbndb.com/covers/31/78/9781564963178.jpg'), - ('156496518X', 'Web Site Graphics: Navigation: The Best Work From The Web', 'https://images.isbndb.com/covers/51/89/9781564965189.jpg'), - ('0891347739', 'Graphic Design: Inspirations & Innovations 2 (v. 2)', 'https://images.isbndb.com/covers/77/36/9780891347736.jpg'), - ('1566091888', 'A Blip In The Continuum (Macintosh Version)', 'https://images.isbndb.com/covers/18/86/9781566091886.jpg'), - ('0891346406', 'Graphic Design: Inspirations And Innovations', 'https://images.isbndb.com/covers/64/01/9780891346401.jpg'), - ('1573441244', 'Erotic Fairy Tales: A Romp Through The Classics', 'https://images.isbndb.com/covers/12/47/9781573441247.jpg'), - ('0140280243', 'A Treasury Of Royal Scandals: The Shocking True Stories History''s Wickedest, Weirdest, Most Wanton Kings, Queens, Tsars, Popes, And Emperors', 'https://images.isbndb.com/covers/02/41/9780140280241.jpg'), - ('1570716439', 'Zen Meditations On Being A Mother With CD (Audio)', 'https://images.isbndb.com/covers/64/30/9781570716430.jpg'), - ('076151340X', 'Smoothies For Life! Yummy, Fun, And Nutritious!', 'https://images.isbndb.com/covers/34/07/9780761513407.jpg'), - ('0345359925', 'The Power Of One', 'https://images.isbndb.com/covers/99/26/9780345359926.jpg'), - ('1562829254', 'The Ultimate Disney Trivia Quiz Book (Vol 2)', 'https://images.isbndb.com/covers/92/54/9781562829254.jpg'), - ('0688127258', 'The International Dictionary Of Desserts, Pastries, And Confections: A Comprehensive Guide With More Than 800 Definitions And 86 Classic Recipes For', 'https://images.isbndb.com/covers/72/51/9780688127251.jpg'), - ('0140109269', 'The Jaguar Smile: A Nicaraguan Journey', 'https://images.isbndb.com/covers/92/69/9780140109269.jpg'), - ('0452260302', 'The Universal Baseball Association, Inc., J. Henry Waugh, Prop.', 'https://images.isbndb.com/covers/03/06/9780452260306.jpg'), - ('0140116168', 'Dorothy Parker: What Fresh Hell Is This?', 'https://images.isbndb.com/covers/61/68/9780140116168.jpg'), - ('0449205061', 'Rabbit, Run', 'https://images.isbndb.com/covers/50/68/9780449205068.jpg'), - ('0886775361', 'Gatherer Of Clouds (The Initiate Brother, Book 2)', 'https://images.isbndb.com/covers/53/60/9780886775360.jpg'), - ('0061020672', 'Sourcery', 'https://images.isbndb.com/covers/06/74/9780061020674.jpg'), - ('0671664948', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/49/47/9780671664947.jpg'), - ('0345316509', 'Job: A Comedy Of Justice', 'https://images.isbndb.com/covers/65/09/9780345316509.jpg'), - ('0140185992', 'The Painted Veil (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/59/97/9780140185997.jpg'), - ('006440174X', 'Good Night, Mr. Tom', 'https://images.isbndb.com/covers/17/46/9780064401746.jpg'), - ('0385333862', 'The Running Mate', 'https://images.isbndb.com/covers/38/63/9780385333863.jpg'), - ('0330392611', 'Idea Of Perfection', 'https://images.isbndb.com/covers/26/17/9780330392617.jpg'), - ('0684822768', 'In Our Time', 'https://images.isbndb.com/covers/27/61/9780684822761.jpg'), - ('0374480133', 'Tuck Everlasting', 'https://images.isbndb.com/covers/01/34/9780374480134.jpg'), - ('1842124196', 'Ivan The Terrible', 'https://images.isbndb.com/covers/41/92/9781842124192.jpg'), - ('1559723475', 'The Titanic Conspiracy. Cover-ups And Mysteries Of The World''s Most Famous Sea Disaster', 'https://images.isbndb.com/covers/34/73/9781559723473.jpg'), - ('0812521463', 'Aztec', 'https://images.isbndb.com/covers/14/67/9780812521467.jpg'), - ('0394512669', '"Well, There''s Your Problem": Cartoons', 'https://images.isbndb.com/covers/26/62/9780394512662.jpg'), - ('0451192915', 'Murder On The QE2: Murder She Wrote', 'https://images.isbndb.com/covers/29/12/9780451192912.jpg'), - ('0553100343', 'Brightness Reef (Bantam Spectra Book)', 'https://images.isbndb.com/covers/03/41/9780553100341.jpg'), - ('0684172755', 'Death Of A Don', 'https://images.isbndb.com/covers/27/50/9780684172750.jpg'), - ('0811804844', 'Little Wisdoms: Mysticism (Little Wisdom Library)', 'https://images.isbndb.com/covers/48/44/9780811804844.jpg'), - ('0385483414', 'The 176 Stupidest Things Ever Done', 'https://images.isbndb.com/covers/34/14/9780385483414.jpg'), - ('0451194756', 'Murder, She Wrote: A Little Yuletide Murder', 'https://images.isbndb.com/covers/47/56/9780451194756.jpg'), - ('0449905950', 'Stalking Horse', 'https://images.isbndb.com/covers/59/51/9780449905951.jpg'), - ('0345342313', 'A Death For A Doctor', 'https://images.isbndb.com/covers/23/17/9780345342317.jpg'), - ('0448168324', 'Hagar: Sack Time', 'https://images.isbndb.com/covers/83/26/9780448168326.jpg'), - ('0805004602', '"F" Is For Fugitive (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/46/01/9780805004601.jpg'), - ('0590449036', 'Mom, You''re Fired!', 'https://images.isbndb.com/covers/90/38/9780590449038.jpg'), - ('0747232679', 'The Brothers Of Gwynedd Quartet: Comprising Sunrise In The West, The Dragon At Noonday, The Hounds Of Sunset, Afterglow And Nightfall', 'https://images.isbndb.com/covers/26/74/9780747232674.jpg'), - ('0133140547', 'Feeding Your Baby: A Parent''s Guide To Practical Nutrition', 'https://images.isbndb.com/covers/05/45/9780133140545.jpg'), - ('0671732277', 'Delusions Of Grandma', 'https://images.isbndb.com/covers/22/71/9780671732271.jpg'), - ('0451406176', 'The Duke (Coulter Historical Romance)', 'https://images.isbndb.com/covers/61/70/9780451406170.jpg'), - ('0345424115', 'Canine Crimes', 'https://images.isbndb.com/covers/41/12/9780345424112.jpg'), - ('0345302656', 'Satan: His Psychotherapy And Cure By The Unfortunate Dr. Kassler, J.S.P.S.', 'https://images.isbndb.com/covers/26/56/9780345302656.jpg'), - ('0140082565', 'The Scandal Of Father Brown (Father Brown Mystery)', 'https://images.isbndb.com/covers/25/62/9780140082562.jpg'), - ('0695808117', 'Survival Handbook For Children Of Aging Parents', 'https://images.isbndb.com/covers/81/12/9780695808112.jpg'), - ('0373152507', 'For Better For Worse', 'https://images.isbndb.com/covers/25/06/9780373152506.jpg'), - ('0394486986', 'Your Isadora: The Love Story Of Isadora Duncan & Gordon Craig', 'https://images.isbndb.com/covers/69/87/9780394486987.jpg'), - ('0440071240', 'Random Winds', 'https://images.isbndb.com/covers/12/42/9780440071242.jpg'), - ('0688078028', 'One (Silver Arrow Books)', 'https://images.isbndb.com/covers/80/27/9780688078027.jpg'), - ('0312285329', 'Feather Castles', 'https://images.isbndb.com/covers/53/26/9780312285326.jpg'), - ('0380785749', 'Happily Ever After (An Avon Romantic Treasure)', 'https://images.isbndb.com/covers/57/42/9780380785742.jpg'), - ('044920099X', 'Emerald', 'https://images.isbndb.com/covers/09/95/9780449200995.jpg'), - ('0345385209', 'Losers', 'https://images.isbndb.com/covers/52/08/9780345385208.jpg'), - ('055325555X', 'WHEN GRAVITY FAILS', 'https://images.isbndb.com/covers/55/53/9780553255553.jpg'), - ('084311861X', 'Should I Have Baby Te', 'https://images.isbndb.com/covers/86/12/9780843118612.jpg'), - ('0553249371', 'Wild Swan', 'https://images.isbndb.com/covers/93/78/9780553249378.jpg'), - ('0446911968', 'Superman: Miracle Monday', 'https://images.isbndb.com/covers/19/62/9780446911962.jpg'), - ('0440142326', 'Joan Embery''s Collection Of Amazing Animal Facts', 'https://images.isbndb.com/covers/23/24/9780440142324.jpg'), - ('0425077047', '...And Ladies Of The Club', 'https://images.isbndb.com/covers/70/47/9780425077047.jpg'), - ('0385278861', 'Fatal Obsession', 'https://images.isbndb.com/covers/88/67/9780385278867.jpg'), - ('0446602345', 'Original Sin (Adam Dalgliesh Mystery Series #9)', 'https://images.isbndb.com/covers/23/41/9780446602341.jpg'), - ('0671737775', 'Iceberg (Dirk Pitt, No. 3)', 'https://images.isbndb.com/covers/77/71/9780671737771.jpg'), - ('0553276328', 'Pacific Vortex (Dirk Pitt Adventure)', 'https://images.isbndb.com/covers/63/29/9780553276329.jpg'), - ('0446610232', 'The Ice Limit', 'https://images.isbndb.com/covers/02/30/9780446610230.jpg'), - ('0812564375', 'Mount Dragon', 'https://images.isbndb.com/covers/43/72/9780812564372.jpg'), - ('0812543262', 'Relic (Pendergast, Book 1)', 'https://images.isbndb.com/covers/32/61/9780812543261.jpg'), - ('0061014591', 'The Terrible Hours', 'https://images.isbndb.com/covers/45/98/9780061014598.jpg'), - ('0787103950', 'Morning Noon And Night', 'https://images.isbndb.com/covers/39/58/9780787103958.jpg'), - ('0451409744', 'Men Of Honor', 'https://images.isbndb.com/covers/97/44/9780451409744.jpg'), - ('0688147259', 'Notes From A Small Island', 'https://images.isbndb.com/covers/72/59/9780688147259.jpg'), - ('0446523364', 'Riptide', 'https://images.isbndb.com/covers/33/63/9780446523363.jpg'), - ('0761512195', 'Your First Year In Network Marketing: Overcome Your Fears, Experience Success, And Achieve Your Dreams!', 'https://images.isbndb.com/covers/21/96/9780761512196.jpg'), - ('0761504397', 'The Wave 3 Way To Building Your Downline', 'https://images.isbndb.com/covers/43/99/9780761504399.jpg'), - ('0963425900', 'The Greatest Networker In The World', 'https://images.isbndb.com/covers/59/04/9780963425904.jpg'), - ('0812571029', 'Uther (The Camulod Chronicles, Book 7)', 'https://images.isbndb.com/covers/10/28/9780812571028.jpg'), - ('0804109729', 'Russka: The Novel Of Russia', 'https://images.isbndb.com/covers/97/27/9780804109727.jpg'), - ('0553280643', 'The Gate To Women''s Country', 'https://images.isbndb.com/covers/06/47/9780553280647.jpg'), - ('0385480210', 'The Pocket Mirror Of Heroes', 'https://images.isbndb.com/covers/02/15/9780385480215.jpg'), - ('0345431901', 'The Finishing School (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/19/05/9780345431905.jpg'), - ('0385497105', 'Up In The Air', 'https://images.isbndb.com/covers/71/07/9780385497107.jpg'), - ('0465031358', 'The Origin Of Humankind (Science Masters Series)', 'https://images.isbndb.com/covers/13/51/9780465031351.jpg'), - ('0306808900', 'Hemingway: A Biography', 'https://images.isbndb.com/covers/89/06/9780306808906.jpg'), - ('031219904X', 'Jack London: A Life', 'https://images.isbndb.com/covers/90/43/9780312199043.jpg'), - ('0312980663', 'A Twist At The End', 'https://images.isbndb.com/covers/06/65/9780312980665.jpg'), - ('0062502891', 'The Chalice And The Blade: Our History, Our Future', 'https://images.isbndb.com/covers/28/96/9780062502896.jpg'), - ('1570612676', 'Best Places Portland', 'https://images.isbndb.com/covers/26/71/9781570612671.jpg'), - ('0451452313', 'Better Than Life (Red Dwarf)', 'https://images.isbndb.com/covers/23/13/9780451452313.jpg'), - ('0767912365', 'Ciao, America!: An Italian Discovers The U.S.', 'https://images.isbndb.com/covers/23/65/9780767912365.jpg'), - ('3293202047', 'Nana Plaza', 'https://images.isbndb.com/covers/20/47/9783293202047.jpg'), - ('0595319033', 'The Savior Of The Woods', 'https://images.isbndb.com/covers/90/39/9780595319039.jpg'), - ('0201626098', 'Digital Woes', 'https://images.isbndb.com/covers/60/94/9780201626094.jpg'), - ('0684868660', 'Altar Music: A Novel', 'https://images.isbndb.com/covers/86/60/9780684868660.jpg'), - ('0060194995', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/49/94/9780060194994.jpg'), - ('0805065415', 'Blue Latitudes: Boldly Going Where Captain Cook Has Gone Before', 'https://images.isbndb.com/covers/54/11/9780805065411.jpg'), - ('044023655X', 'Kiss Of The Highlander (The Highlander Series, Book 4)', 'https://images.isbndb.com/covers/65/59/9780440236559.jpg'), - ('0312979975', 'Fantasy Lover', 'https://images.isbndb.com/covers/99/73/9780312979973.jpg'), - ('0440236525', 'The Highlander''s Touch (Highlander, Book 3)', 'https://images.isbndb.com/covers/65/28/9780440236528.jpg'), - ('0312979983', 'Night Pleasures (Dark-Hunter, Book 2)', 'https://images.isbndb.com/covers/99/80/9780312979980.jpg'), - ('0743226844', 'Mama Gena''s School Of Womanly Arts: Using The Power Of Pleasure To Have Your Way With The World', 'https://images.isbndb.com/covers/68/44/9780743226844.jpg'), - ('0440234816', 'To Tame A Highland Warrior (Highlander, Book 2)', 'https://images.isbndb.com/covers/48/14/9780440234814.jpg'), - ('0671019740', 'Heart Of Fire (Pocket Books Romance)', 'https://images.isbndb.com/covers/97/47/9780671019747.jpg'), - ('0373691300', 'American Heroes: Riley', 'https://images.isbndb.com/covers/13/02/9780373691302.jpg'), - ('0425190927', 'The Wife Test', 'https://images.isbndb.com/covers/09/20/9780425190920.jpg'), - ('0446600814', 'Crystal Flame', 'https://images.isbndb.com/covers/08/11/9780446600811.jpg'), - ('0440234808', 'Beyond The Highland Mist (Highlander, Book 1)', 'https://images.isbndb.com/covers/48/07/9780440234807.jpg'), - ('0373806841', 'Devil To Pay', 'https://images.isbndb.com/covers/68/43/9780373806843.jpg'), - ('0373252579', 'Main Attraction', 'https://images.isbndb.com/covers/25/72/9780373252572.jpg'), - ('0373834683', 'Full Bloom/Compromising Positions (Harlequin Temptation 2-In-1 Collection)', 'https://images.isbndb.com/covers/46/86/9780373834686.jpg'), - ('084233193X', 'A New Graft On The Family Tree (GLH Library)', 'https://images.isbndb.com/covers/19/37/9780842331937.jpg'), - ('0061087130', 'Master Of Desire', 'https://images.isbndb.com/covers/71/34/9780061087134.jpg'), - ('0671019635', 'Family Man', 'https://images.isbndb.com/covers/96/31/9780671019631.jpg'), - ('0876664206', 'Cockatiels', 'https://images.isbndb.com/covers/42/09/9780876664209.jpg'), - ('0609605216', 'The Art Of Imperfection: Simple Ways To Make Peace With Yourself', 'https://images.isbndb.com/covers/52/19/9780609605219.jpg'), - ('0740723367', 'The Meaning Of Life', 'https://images.isbndb.com/covers/33/60/9780740723360.jpg'), - ('0380004801', 'Forgotten Beasts Of Eld', 'https://images.isbndb.com/covers/48/05/9780380004805.jpg'), - ('2277302686', 'Le Peuple Du Tapis', 'https://images.isbndb.com/covers/26/81/9782277302681.jpg'), - ('2070334430', 'Contes De Ma Mère L''Oye', 'https://images.isbndb.com/covers/44/38/9782070334438.jpg'), - ('2290045802', 'Les Chiennes Savantes', 'https://images.isbndb.com/covers/58/00/9782290045800.jpg'), - ('2070403734', 'Les Confessions: Livres I à IV', 'https://images.isbndb.com/covers/37/38/9782070403738.jpg'), - ('220730521X', 'L''Oeil De La Sibylle', 'https://images.isbndb.com/covers/52/18/9782207305218.jpg'), - ('2207306038', 'Le Faiseur De Veuves. Renaissance', 'https://images.isbndb.com/covers/60/31/9782207306031.jpg'), - ('2207248526', 'Contes De La Fée Verte', 'https://images.isbndb.com/covers/85/22/9782207248522.jpg'), - ('2207306046', 'Le Faiseur De Veuves.', 'https://images.isbndb.com/covers/60/48/9782207306048.jpg'), - ('2207304884', 'Le Nouveau Soleil De Teur', 'https://images.isbndb.com/covers/48/84/9782207304884.jpg'), - ('2207304892', 'Le Nouveau Soleil De Teur, Tome 2', 'https://images.isbndb.com/covers/48/91/9782207304891.jpg'), - ('2207303454', 'La Griffe Du Demi-dieu', 'https://images.isbndb.com/covers/34/50/9782207303450.jpg'), - ('2070326977', 'Théorie De L''art Moderne', 'https://images.isbndb.com/covers/69/76/9782070326976.jpg'), - ('2910932915', 'Où S''embrasser En France', 'https://images.isbndb.com/covers/29/16/9782910932916.jpg'), - ('2844850235', 'De La Bêtise', 'https://images.isbndb.com/covers/02/32/9782844850232.jpg'), - ('2846400539', 'Let''s Go Espagne - Côte Méditerranéenne 2003', 'https://images.isbndb.com/covers/05/34/9782846400534.jpg'), - ('2846400520', 'Let''s Go Espagne 2003', 'https://images.isbndb.com/covers/05/27/9782846400527.jpg'), - ('0061091790', 'After All These Years', 'https://images.isbndb.com/covers/17/97/9780061091797.jpg'), - ('039453896X', 'Psychotic Reactions And Carburetor Dung', 'https://images.isbndb.com/covers/89/69/9780394538969.jpg'), - ('0141006633', 'The Penguin Book Of Canadian Jokes', 'https://images.isbndb.com/covers/66/35/9780141006635.jpg'), - ('0803723547', 'Magpie Magic: A Tale Of Colorful Mischief', 'https://images.isbndb.com/covers/35/42/9780803723542.jpg'), - ('0440236851', 'The Wedding', 'https://images.isbndb.com/covers/68/56/9780440236856.jpg'), - ('0345397843', 'Double Jeopardy', 'https://images.isbndb.com/covers/78/43/9780345397843.jpg'), - ('0843925795', 'Demon Within', 'https://images.isbndb.com/covers/57/91/9780843925791.jpg'), - ('0425151867', 'Acceptable Risk', 'https://images.isbndb.com/covers/18/60/9780425151860.jpg'), - ('0395746566', 'Sector 7 (Caldecott Honor Book)', 'https://images.isbndb.com/covers/65/61/9780395746561.jpg'), - ('0345380193', 'Just Cause', 'https://images.isbndb.com/covers/01/97/9780345380197.jpg'), - ('0380715937', 'The Dreaming', 'https://images.isbndb.com/covers/59/30/9780380715930.jpg'), - ('0451188071', 'The Expert', 'https://images.isbndb.com/covers/80/76/9780451188076.jpg'), - ('0449704378', 'The Light In The Forest', 'https://images.isbndb.com/covers/43/70/9780449704370.jpg'), - ('0751370312', 'Dinotopia: The World Beneath', 'https://images.isbndb.com/covers/03/17/9780751370317.jpg'), - ('0340721480', 'Behind The Smile: My Story', 'https://images.isbndb.com/covers/14/83/9780340721483.jpg'), - ('0399127216', 'The White Plague', 'https://images.isbndb.com/covers/72/12/9780399127212.jpg'), - ('0843948760', 'The Lost', 'https://images.isbndb.com/covers/87/69/9780843948769.jpg'), - ('0385720211', 'In The Drink: A Novel', 'https://images.isbndb.com/covers/02/12/9780385720212.jpg'), - ('0671671421', 'Manhattan Cocktail And Other Irreverent Observations On Life, Taxes And Meter Maids', 'https://images.isbndb.com/covers/14/26/9780671671426.jpg'), - ('0961551453', 'Best Places To Kiss In North West (Best Places To Kiss In The Northwest: A Romantic Travel Guide)', 'https://images.isbndb.com/covers/14/52/9780961551452.jpg'), - ('0671024620', 'All Around Atlantis', 'https://images.isbndb.com/covers/46/28/9780671024628.jpg'), - ('0553256092', 'Princess Daisy', 'https://images.isbndb.com/covers/60/93/9780553256093.jpg'), - ('0553293761', 'Dazzle', 'https://images.isbndb.com/covers/37/60/9780553293760.jpg'), - ('067102096X', 'Lethal Seduction', 'https://images.isbndb.com/covers/09/65/9780671020965.jpg'), - ('0874830842', 'The Wreath Ribbon Quilt', 'https://images.isbndb.com/covers/08/42/9780874830842.jpg'), - ('1573225444', 'Loving Edith', 'https://images.isbndb.com/covers/54/41/9781573225441.jpg'), - ('0446311774', 'Innocent Blood (Adam Dalgliesh Mystery Series #7)', 'https://images.isbndb.com/covers/17/79/9780446311779.jpg'), - ('0553561367', 'Spring Collection', 'https://images.isbndb.com/covers/13/64/9780553561364.jpg'), - ('0882669842', 'Milk-Based Soaps: Making Natural, Skin-Nourishing Soap', 'https://images.isbndb.com/covers/98/47/9780882669847.jpg'), - ('0743206088', 'Flowers Are For Love: A Bouquet Of Inspirational Stories', 'https://images.isbndb.com/covers/60/82/9780743206082.jpg'), - ('0826307361', 'The Southwest', 'https://images.isbndb.com/covers/73/61/9780826307361.jpg'), - ('0312982518', 'The Sigma Protocol', 'https://images.isbndb.com/covers/25/15/9780312982515.jpg'), - ('074320218X', 'Change Me Into Zeus''s Daughter', 'https://images.isbndb.com/covers/21/83/9780743202183.jpg'), - ('0425180050', 'Line Of Control (Tom Clancy''s Op-Center, Book 8)', 'https://images.isbndb.com/covers/00/51/9780425180051.jpg'), - ('055347068X', 'The Brothers K', 'https://images.isbndb.com/covers/06/80/9780553470680.jpg'), - ('0394572726', 'Legacy', 'https://images.isbndb.com/covers/27/27/9780394572727.jpg'), - ('0553199609', 'Trevayne', 'https://images.isbndb.com/covers/96/04/9780553199604.jpg'), - ('0962546895', 'Making The Most Of Marin: A Best Selling Guide To The Most Stunning County On The California Coast', 'https://images.isbndb.com/covers/68/91/9780962546891.jpg'), - ('0553014803', 'The Turning Point: Science, Society, And The Rising Culture', 'https://images.isbndb.com/covers/48/08/9780553014808.jpg'), - ('0679439196', 'Being Digital', 'https://images.isbndb.com/covers/91/96/9780679439196.jpg'), - ('0140157352', 'Getting To Yes: Negotiating Agreement Without Giving In', 'https://images.isbndb.com/covers/73/52/9780140157352.jpg'), - ('0691083886', 'QED: The Strange Theory Of Light And Matter', 'https://images.isbndb.com/covers/38/89/9780691083889.jpg'), - ('0030211212', 'McClane''s Field Guide To Saltwater Fishes Of North America: A Project Of The Gamefish Research Association', 'https://images.isbndb.com/covers/12/18/9780030211218.jpg'), - ('0312950586', 'Every Living Thing', 'https://images.isbndb.com/covers/05/83/9780312950583.jpg'), - ('0380778130', 'Hostile Witness', 'https://images.isbndb.com/covers/81/33/9780380778133.jpg'), - ('0806107014', 'Indian Legends From The Northern Rockies', 'https://images.isbndb.com/covers/70/11/9780806107011.jpg'), - ('027522600X', 'Living With Cancer', 'https://images.isbndb.com/covers/60/08/9780275226008.jpg'), - ('039913087X', 'On The Road With Charles Kuralt', 'https://images.isbndb.com/covers/08/78/9780399130878.jpg'), - ('0679736646', 'Ubik', 'https://images.isbndb.com/covers/66/46/9780679736646.jpg'), - ('1904908004', 'Shakespeare My Butt', 'https://images.isbndb.com/covers/80/05/9781904908005.jpg'), - ('0091882109', 'One Hit Wonderland', 'https://images.isbndb.com/covers/21/05/9780091882105.jpg'), - ('0743406230', 'Grift Sense (Tony Valentine Novels)', 'https://images.isbndb.com/covers/62/39/9780743406239.jpg'), - ('0446609943', 'The Switch', 'https://images.isbndb.com/covers/99/44/9780446609944.jpg'), - ('0783884397', 'The Case Of The Caretaker''s Cat', 'https://images.isbndb.com/covers/43/94/9780783884394.jpg'), - ('0380017962', 'Dona Flor And Her Two Husbands', 'https://images.isbndb.com/covers/79/66/9780380017966.jpg'), - ('0316153990', 'Blood Work', 'https://images.isbndb.com/covers/39/97/9780316153997.jpg'), - ('0375411275', 'Pobby And Dingan', 'https://images.isbndb.com/covers/12/74/9780375411274.jpg'), - ('0375507760', 'The Nightspinners: A Novel', 'https://images.isbndb.com/covers/77/62/9780375507762.jpg'), - ('0152022686', 'Armageddon Summer', 'https://images.isbndb.com/covers/26/86/9780152022686.jpg'), - ('0060956860', 'Joy In The Morning (Perennial Classics)', 'https://images.isbndb.com/covers/68/68/9780060956868.jpg'), - ('0940642247', 'Angry Women (Re/Search ; 13)', 'https://images.isbndb.com/covers/22/49/9780940642249.jpg'), - ('0393316041', 'Surely You''re Joking, Mr. Feynman! (Adventures Of A Curious Character)', 'https://images.isbndb.com/covers/60/49/9780393316049.jpg'), - ('0440223970', 'A Rain Of Death', 'https://images.isbndb.com/covers/39/79/9780440223979.jpg'), - ('0345441109', 'White Rose: Una Rosa Blanca (A Ballantine Readers'' Circle Book)', 'https://images.isbndb.com/covers/11/02/9780345441102.jpg'), - ('0380725576', 'Charms For The Easy Life', 'https://images.isbndb.com/covers/55/71/9780380725571.jpg'), - ('3423104740', 'Früchte Des Zorns: Roman', 'https://images.isbndb.com/covers/47/46/9783423104746.jpg'), - ('3442455235', 'Geständnisse Eines Küchenchefs: Was Sie über Restaurants Nie Wissen Wollten', 'https://images.isbndb.com/covers/52/32/9783442455232.jpg'), - ('0679748253', 'Beautiful Losers', 'https://images.isbndb.com/covers/82/50/9780679748250.jpg'), - ('3499128381', 'Am Anfang War Das Wort. Texte Von 1969 Bis 1990. (rororo Aktuell / Essay).', 'https://images.isbndb.com/covers/83/87/9783499128387.jpg'), - ('3596235316', 'Sucht Ohne Drogen. Arbeiten, Spielen, Essen, Lieben...', 'https://images.isbndb.com/covers/53/15/9783596235315.jpg'), - ('3320013041', 'Herzlichst Ihre Rosa. Ausgewählte Briefe', 'https://images.isbndb.com/covers/30/42/9783320013042.jpg'), - ('343017581X', 'Niemand Hat Kolumbus Ausgelacht. Sonderausgabe. Fälschungen Und Legenden Der Geschichte Richtiggestellt', 'https://images.isbndb.com/covers/58/14/9783430175814.jpg'), - ('0671725017', 'The Examined Life: Philosophical Meditations', 'https://images.isbndb.com/covers/50/13/9780671725013.jpg'), - ('0062510533', 'Gardens From The Sand: A Story About Looking For Answers & Finding Miracles', 'https://images.isbndb.com/covers/05/32/9780062510532.jpg'), - ('1561710059', 'Surviving The Not So Golden Years: Vital Medical And Financial Strategies For Anyone Planning To Grow Old', 'https://images.isbndb.com/covers/00/58/9781561710058.jpg'), - ('0722535724', 'Seventy-Eight Degrees Of Wisdom', 'https://images.isbndb.com/covers/57/21/9780722535721.jpg'), - ('0966164202', 'Be Full Of Yourself!: The Journey From Self-Criticism To Self-Celebration', 'https://images.isbndb.com/covers/42/06/9780966164206.jpg'), - ('1852304960', 'Red Moon: Understanding And Using The Gifts Of The Menstrual Cycle (Women''s Health And Parenting)', 'https://images.isbndb.com/covers/49/66/9781852304966.jpg'), - ('0062514083', 'The Third Millennium: Living In The Posthistoric World', 'https://images.isbndb.com/covers/40/80/9780062514080.jpg'), - ('042518286X', 'Shock', 'https://images.isbndb.com/covers/28/64/9780425182864.jpg'), - ('0394712528', 'One Of Ours', 'https://images.isbndb.com/covers/25/29/9780394712529.jpg'), - ('0553250426', 'The Clan Of The Cave Bear (Earth''s Children, Book One)', 'https://images.isbndb.com/covers/04/28/9780553250428.jpg'), - ('0394714342', 'Sapphira And The Slave Girl', 'https://images.isbndb.com/covers/43/49/9780394714349.jpg'), - ('0821772287', 'The Awakening', 'https://images.isbndb.com/covers/22/87/9780821772287.jpg'), - ('0590130048', '101 Wacky Computer Jokes', 'https://images.isbndb.com/covers/00/42/9780590130042.jpg'), - ('0425136612', 'Night Of The Hawk', 'https://images.isbndb.com/covers/66/14/9780425136614.jpg'), - ('0446602698', 'The Juror', 'https://images.isbndb.com/covers/26/93/9780446602693.jpg'), - ('0312975112', 'Romancing The Rogue', 'https://images.isbndb.com/covers/51/11/9780312975111.jpg'), - ('0425060055', 'The Girl Of The Sea Of Cortez', 'https://images.isbndb.com/covers/00/56/9780425060056.jpg'), - ('0671039903', 'Willow (De Beers)', 'https://images.isbndb.com/covers/99/05/9780671039905.jpg'), - ('0373243286', 'Irish Rebel (Silhouette Special Edition No. 1328)', 'https://images.isbndb.com/covers/32/80/9780373243280.jpg'), - ('0425163865', 'Detective', 'https://images.isbndb.com/covers/38/63/9780425163863.jpg'), - ('0553252828', 'Sicilian, The', 'https://images.isbndb.com/covers/28/28/9780553252828.jpg'), - ('0812501756', 'Ark', 'https://images.isbndb.com/covers/17/59/9780812501759.jpg'), - ('0446604208', 'Annapolis', 'https://images.isbndb.com/covers/42/08/9780446604208.jpg'), - ('0345317386', 'Loo Sanction', 'https://images.isbndb.com/covers/73/84/9780345317384.jpg'), - ('0345311809', 'Shibumi', 'https://images.isbndb.com/covers/18/01/9780345311801.jpg'), - ('0425076717', 'Role Of Honor', 'https://images.isbndb.com/covers/67/12/9780425076712.jpg'), - ('0440169127', 'A Pinch Of Snuff', 'https://images.isbndb.com/covers/91/23/9780440169123.jpg'), - ('0706406974', 'Home Baking', 'https://images.isbndb.com/covers/69/79/9780706406979.jpg'), - ('0440117437', 'Now And Forever', 'https://images.isbndb.com/covers/74/38/9780440117438.jpg'), - ('038055111X', 'Saving The Queen', 'https://images.isbndb.com/covers/11/18/9780380551118.jpg'), - ('0446363251', 'Scarlett: The Sequel To Margaret Mitchell''s "Gone With The Wind"', 'https://images.isbndb.com/covers/32/59/9780446363259.jpg'), - ('0935312390', 'Life In The Iron Mills And Other Stories: Second Edition', 'https://images.isbndb.com/covers/23/93/9780935312393.jpg'), - ('0679785892', 'Fear And Loathing In Las Vegas: A Savage Journey To The Heart Of The American Dream', 'https://images.isbndb.com/covers/58/97/9780679785897.jpg'), - ('0020360754', 'Heart Songs And Other Stories', 'https://images.isbndb.com/covers/07/59/9780020360759.jpg'), - ('1586420232', 'Fighting Gravity: A Novel', 'https://images.isbndb.com/covers/02/39/9781586420239.jpg'), - ('0060974990', 'Savage Inequalities: Children In America''s Schools', 'https://images.isbndb.com/covers/49/92/9780060974992.jpg'), - ('0671797867', 'Scar Lover', 'https://images.isbndb.com/covers/78/67/9780671797867.jpg'), - ('0375701966', 'The Moviegoer', 'https://images.isbndb.com/covers/19/62/9780375701962.jpg'), - ('0802136346', 'Being There', 'https://images.isbndb.com/covers/63/43/9780802136343.jpg'), - ('0330282565', 'The Little Drummer Girl', 'https://images.isbndb.com/covers/25/67/9780330282567.jpg'), - ('0310480000', 'Dave Says...Well Done!: The Common Guy''s Guide To Everyday Success', 'https://images.isbndb.com/covers/00/06/9780310480006.jpg'), - ('006093056X', 'Mara And Dann: An Adventure', 'https://images.isbndb.com/covers/05/61/9780060930561.jpg'), - ('0060099062', 'Meant To Be', 'https://images.isbndb.com/covers/90/60/9780060099060.jpg'), - ('0312310439', 'The Marrying Game: A Novel', 'https://images.isbndb.com/covers/04/31/9780312310431.jpg'), - ('0310501016', 'Becoming A Contagious Christian Participant''s Guide', 'https://images.isbndb.com/covers/10/15/9780310501015.jpg'), - ('0812535707', 'On The Run', 'https://images.isbndb.com/covers/57/09/9780812535709.jpg'), - ('0553274074', 'A Fire In The Sun', 'https://images.isbndb.com/covers/40/73/9780553274073.jpg'), - ('0380754134', 'A More Perfect Union', 'https://images.isbndb.com/covers/41/37/9780380754137.jpg'), - ('0804112894', 'Tarnished Icons', 'https://images.isbndb.com/covers/28/95/9780804112895.jpg'), - ('0440526701', 'For Reading Out Loud', 'https://images.isbndb.com/covers/67/04/9780440526704.jpg'), - ('0743243307', 'Brick Lane: A Novel', 'https://images.isbndb.com/covers/33/08/9780743243308.jpg'), - ('0520223446', 'Gandhi''s Way: A Handbook Of Conflict Resolution', 'https://images.isbndb.com/covers/34/48/9780520223448.jpg'), - ('0440223806', 'The Cowboy', 'https://images.isbndb.com/covers/38/01/9780440223801.jpg'), - ('0399146032', 'The Barbarians Are Coming', 'https://images.isbndb.com/covers/60/39/9780399146039.jpg'), - ('0786885238', 'The Cider House Rules: A Screenplay', 'https://images.isbndb.com/covers/52/37/9780786885237.jpg'), - ('0880015233', 'A Nest Of Ninnies', 'https://images.isbndb.com/covers/52/33/9780880015233.jpg'), - ('0380820048', 'Smoke And Mirrors', 'https://images.isbndb.com/covers/00/47/9780380820047.jpg'), - ('0553288555', 'The Wind Dancer', 'https://images.isbndb.com/covers/85/51/9780553288551.jpg'), - ('0399149716', 'This Just In: What I Couldn''t Tell You On TV', 'https://images.isbndb.com/covers/97/19/9780399149719.jpg'), - ('0393049779', 'In The Snow Forest: Three Novellas', 'https://images.isbndb.com/covers/97/70/9780393049770.jpg'), - ('0849929660', 'Let''s Make A Memory : Great Ideas For Building Family Traditions And Togetherness', 'https://images.isbndb.com/covers/96/63/9780849929663.jpg'), - ('0374524602', 'Louisa May Alcott: A Modern Biography', 'https://images.isbndb.com/covers/46/09/9780374524609.jpg'), - ('1887166009', 'Pandemonium: Or Life With Kids: A Collection Of Parental Humor', 'https://images.isbndb.com/covers/60/03/9781887166003.jpg'), - ('0679420991', 'True North: A Memoir', 'https://images.isbndb.com/covers/09/96/9780679420996.jpg'), - ('0394574567', 'The Road From Coorain', 'https://images.isbndb.com/covers/45/61/9780394574561.jpg'), - ('0801865212', 'The 36-Hour Day: A Family Guide To Caring For Persons With Alzheimer Disease, Related Dementing Illnesses, And Memory Loss In Later Life (A Johns Hopkins Press Health Book)', 'https://images.isbndb.com/covers/52/13/9780801865213.jpg'), - ('1568651732', 'The Enchanted Forest Chronicles', 'https://images.isbndb.com/covers/17/36/9781568651736.jpg'), - ('060980877X', 'The Sweet Potato Queens'' Big-Ass Cookbook (and Financial Planner)', 'https://images.isbndb.com/covers/87/71/9780609808771.jpg'), - ('0671748408', 'Way Men Act', 'https://images.isbndb.com/covers/84/01/9780671748401.jpg'), - ('0449909557', 'Mrs. Pollifax And The Lion Killer', 'https://images.isbndb.com/covers/95/53/9780449909553.jpg'), - ('0020236107', 'The Funeral Makers', 'https://images.isbndb.com/covers/61/08/9780020236108.jpg'), - ('0465021182', 'Every Day Gets A Little Closer: A Twice-told Therapy', 'https://images.isbndb.com/covers/11/85/9780465021185.jpg'), - ('0446677507', 'Cat Haiku', 'https://images.isbndb.com/covers/75/09/9780446677509.jpg'), - ('055356949X', 'Dolley', 'https://images.isbndb.com/covers/94/90/9780553569490.jpg'), - ('0440223032', 'After All', 'https://images.isbndb.com/covers/30/30/9780440223030.jpg'), - ('1586480316', 'Blue Hearts', 'https://images.isbndb.com/covers/03/18/9781586480318.jpg'), - ('0553262386', 'Housekeeping', 'https://images.isbndb.com/covers/23/84/9780553262384.jpg'), - ('0060957271', 'Model Patient: My Life As An Incurable Wise-Ass', 'https://images.isbndb.com/covers/72/78/9780060957278.jpg'), - ('0028617274', 'The Tea Companion: A Connoisseur''s Guide', 'https://images.isbndb.com/covers/72/75/9780028617275.jpg'), - ('0446301582', 'Word Of Honor', 'https://images.isbndb.com/covers/15/89/9780446301589.jpg'), - ('1885171080', 'Girlfriends: Invisible Bonds, Enduring Ties', 'https://images.isbndb.com/covers/10/85/9781885171085.jpg'), - ('0425046605', 'Duke Of Deception: Memories Of My Father', 'https://images.isbndb.com/covers/66/09/9780425046609.jpg'), - ('0743457838', 'Blood On The Tongue', 'https://images.isbndb.com/covers/78/35/9780743457835.jpg'), - ('1841192538', 'Daemons And Angels', 'https://images.isbndb.com/covers/25/36/9781841192536.jpg'), - ('1559701501', 'Texas Summer', 'https://images.isbndb.com/covers/15/01/9781559701501.jpg'), - ('0060596325', 'Rice: A Novel', 'https://images.isbndb.com/covers/63/23/9780060596323.jpg'), - ('0449912116', 'Memories Of The Ford Administration', 'https://images.isbndb.com/covers/21/19/9780449912119.jpg'), - ('0140255893', 'In The Beauty Of The Lilies', 'https://images.isbndb.com/covers/58/98/9780140255898.jpg'), - ('0679446400', 'In The Beauty Of The Lilies', 'https://images.isbndb.com/covers/64/08/9780679446408.jpg'), - ('0449911632', 'Brazil', 'https://images.isbndb.com/covers/16/31/9780449911631.jpg'), - ('0552998478', 'What We Did On Our Holiday', 'https://images.isbndb.com/covers/84/75/9780552998475.jpg'), - ('0743469763', 'Strange Secrets: Real Government Files On The Unknown', 'https://images.isbndb.com/covers/97/60/9780743469760.jpg'), - ('0553584480', 'The Face: A Novel', 'https://images.isbndb.com/covers/44/86/9780553584486.jpg'), - ('0802139590', 'Gould''s Book Of Fish', 'https://images.isbndb.com/covers/95/97/9780802139597.jpg'), - ('0684852225', 'Close Range : Wyoming Stories', 'https://images.isbndb.com/covers/22/25/9780684852225.jpg'), - ('186207044X', 'Stalking Fiona', 'https://images.isbndb.com/covers/04/48/9781862070448.jpg'), - ('0449908585', 'Happy Isles Of Oceania: Paddling The Pacific', 'https://images.isbndb.com/covers/85/87/9780449908587.jpg'), - ('0156029987', 'Vernon God Little', 'https://images.isbndb.com/covers/99/88/9780156029988.jpg'), - ('1841955485', 'How The Light Gets In', 'https://images.isbndb.com/covers/54/83/9781841955483.jpg'), - ('0226743497', 'Staying On: A Novel (Phoenix Fiction)', 'https://images.isbndb.com/covers/34/93/9780226743493.jpg'), - ('0571179282', 'Interesting Facts About The State Of Arizona', 'https://images.isbndb.com/covers/92/82/9780571179282.jpg'), - ('0671032631', 'The Treatment', 'https://images.isbndb.com/covers/26/30/9780671032630.jpg'), - ('0340278269', 'Rings Of Sand', 'https://images.isbndb.com/covers/82/60/9780340278260.jpg'), - ('0684837242', 'Tumbling', 'https://images.isbndb.com/covers/72/46/9780684837246.jpg'), - ('0330328085', 'Carn Uk', 'https://images.isbndb.com/covers/80/81/9780330328081.jpg'), - ('0340750464', 'White Mice', 'https://images.isbndb.com/covers/04/69/9780340750469.jpg'), - ('0743203712', 'Shark Tales: True (and Amazing) Stories From America''s Lawyers', 'https://images.isbndb.com/covers/37/15/9780743203715.jpg'), - ('0393319296', 'Invisible Monsters: A Novel', 'https://images.isbndb.com/covers/92/93/9780393319293.jpg'), - ('0786861495', 'Kink: An Autobiography', 'https://images.isbndb.com/covers/14/91/9780786861491.jpg'), - ('0679410325', 'The Secret History', 'https://images.isbndb.com/covers/03/24/9780679410324.jpg'), - ('0671737996', 'Outrageous!: The Fine Life And Flagrant Good Times Of Basketball''s Irresistible Force', 'https://images.isbndb.com/covers/79/93/9780671737993.jpg'), - ('0609809431', 'Kick Me: Adventures In Adolescence', 'https://images.isbndb.com/covers/94/33/9780609809433.jpg'), - ('0449206211', 'Murder On Embassy Row (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/62/18/9780449206218.jpg'), - ('0759629625', 'Twenty-Five For The Road', 'https://images.isbndb.com/covers/96/22/9780759629622.jpg'), - ('0812521617', 'Double Fault', 'https://images.isbndb.com/covers/16/10/9780812521610.jpg'), - ('055320663X', 'Night Probe', 'https://images.isbndb.com/covers/66/30/9780553206630.jpg'), - ('0671631845', 'CYCLOPS', 'https://images.isbndb.com/covers/18/40/9780671631840.jpg'), - ('0671742760', 'Dragon', 'https://images.isbndb.com/covers/27/68/9780671742768.jpg'), - ('0671001809', 'The SEA HUNTERS', 'https://images.isbndb.com/covers/18/03/9780671001803.jpg'), - ('0670858692', 'Rose Madder', 'https://images.isbndb.com/covers/86/99/9780670858699.jpg'), - ('0740721909', 'God''s Debris: A Thought Experiment', 'https://images.isbndb.com/covers/19/08/9780740721908.jpg'), - ('0553814516', 'No Shitting In The Toilet: The Travel Guide For When You''Ve Really Lost It', 'https://images.isbndb.com/covers/45/14/9780553814514.jpg'), - ('0441000525', 'Dead Morn', 'https://images.isbndb.com/covers/05/24/9780441000524.jpg'), - ('0872235130', 'Signals', 'https://images.isbndb.com/covers/51/37/9780872235137.jpg'), - ('0441023622', 'Another Fine Myth (Myth, Book 1)', 'https://images.isbndb.com/covers/36/22/9780441023622.jpg'), - ('0759550182', 'In Translation', 'https://images.isbndb.com/covers/01/86/9780759550186.jpg'), - ('0786862572', 'I''m Not Really Here', 'https://images.isbndb.com/covers/25/73/9780786862573.jpg'), - ('0140282025', 'The Age Of Spiritual Machines: When Computers Exceed Human Intelligence', 'https://images.isbndb.com/covers/20/23/9780140282023.jpg'), - ('0446531316', 'Street Dreams', 'https://images.isbndb.com/covers/13/13/9780446531313.jpg'), - ('0380708353', 'Butterfly', 'https://images.isbndb.com/covers/83/52/9780380708352.jpg'), - ('0446356522', 'Rose Of Rapture', 'https://images.isbndb.com/covers/65/27/9780446356527.jpg'), - ('0380007762', 'Wicked Loving Lies', 'https://images.isbndb.com/covers/77/69/9780380007769.jpg'), - ('0553578936', 'A Valentine Wedding', 'https://images.isbndb.com/covers/89/35/9780553578935.jpg'), - ('0515124621', 'Then Came Heaven', 'https://images.isbndb.com/covers/46/20/9780515124620.jpg'), - ('0671737600', 'Double Standards', 'https://images.isbndb.com/covers/76/03/9780671737603.jpg'), - ('0671870963', 'Prince Charming', 'https://images.isbndb.com/covers/09/66/9780671870966.jpg'), - ('0553567756', 'Prince Of Wolves', 'https://images.isbndb.com/covers/77/55/9780553567755.jpg'), - ('0451138775', 'Parachutes & Kisses', 'https://images.isbndb.com/covers/87/74/9780451138774.jpg'), - ('0515121398', 'This Is All I Ask', 'https://images.isbndb.com/covers/13/91/9780515121391.jpg'), - ('0671744607', 'REMEMBRANCE', 'https://images.isbndb.com/covers/46/01/9780671744601.jpg'), - ('038071504X', 'Stars', 'https://images.isbndb.com/covers/50/46/9780380715046.jpg'), - ('0312954212', 'Tully', 'https://images.isbndb.com/covers/42/15/9780312954215.jpg'), - ('0451403673', 'Thunder And Roses (Onyx)', 'https://images.isbndb.com/covers/36/74/9780451403674.jpg'), - ('051512219X', 'Small Town Girl', 'https://images.isbndb.com/covers/21/90/9780515122190.jpg'), - ('0440216575', 'Legacy Of Secrets', 'https://images.isbndb.com/covers/65/75/9780440216575.jpg'), - ('0671525743', 'Night Whispers', 'https://images.isbndb.com/covers/57/43/9780671525743.jpg'), - ('0380757478', 'Fires Of Winter', 'https://images.isbndb.com/covers/74/73/9780380757473.jpg'), - ('0061094595', 'Calder Pride', 'https://images.isbndb.com/covers/45/90/9780061094590.jpg'), - ('067101417X', 'High Tide', 'https://images.isbndb.com/covers/41/79/9780671014179.jpg'), - ('0671742558', 'Almost Heaven', 'https://images.isbndb.com/covers/25/53/9780671742553.jpg'), - ('1551660571', 'Sweet Memories', 'https://images.isbndb.com/covers/05/78/9781551660578.jpg'), - ('0440217032', 'Desired', 'https://images.isbndb.com/covers/70/39/9780440217039.jpg'), - ('0671521438', 'Imagine', 'https://images.isbndb.com/covers/14/31/9780671521431.jpg'), - ('006108459X', 'Miranda', 'https://images.isbndb.com/covers/45/91/9780061084591.jpg'), - ('0440216907', 'Storyville', 'https://images.isbndb.com/covers/69/02/9780440216902.jpg'), - ('0671744186', 'Lady Boss', 'https://images.isbndb.com/covers/41/82/9780671744182.jpg'), - ('0553575244', 'The Silver Rose', 'https://images.isbndb.com/covers/52/48/9780553575248.jpg'), - ('0553582542', 'Seduction In Mind', 'https://images.isbndb.com/covers/25/43/9780553582543.jpg'), - ('044689270X', 'The Summer Day Is Done', 'https://images.isbndb.com/covers/27/04/9780446892704.jpg'), - ('0451162919', 'Garden Of Lies', 'https://images.isbndb.com/covers/29/15/9780451162915.jpg'), - ('0671737627', 'Once And Always', 'https://images.isbndb.com/covers/76/27/9780671737627.jpg'), - ('0763618292', 'Witch Child', 'https://images.isbndb.com/covers/82/92/9780763618292.jpg'), - ('0345442768', 'Swimming (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/27/65/9780345442765.jpg'), - ('0345396812', 'Women Who Run With The Wolves: Myths And Stories Of The Wild Woman Archetype', 'https://images.isbndb.com/covers/68/15/9780345396815.jpg'), - ('0375758682', 'Shutterbabe: Adventures In Love And War', 'https://images.isbndb.com/covers/86/83/9780375758683.jpg'), - ('0060518049', 'The Secret History', 'https://images.isbndb.com/covers/80/42/9780060518042.jpg'), - ('0340733950', 'Tinker Tailor Soldier Spy', 'https://images.isbndb.com/covers/39/50/9780340733950.jpg'), - ('034539643X', 'Alpine Icon (Emma Lord Mysteries)', 'https://images.isbndb.com/covers/64/33/9780345396433.jpg'), - ('0451198239', 'Burnout', 'https://images.isbndb.com/covers/82/35/9780451198235.jpg'), - ('0061099368', 'PALINDROME MM', 'https://images.isbndb.com/covers/93/66/9780061099366.jpg'), - ('0061097829', 'Who''s Afraid Of Virginia Ham?', 'https://images.isbndb.com/covers/78/29/9780061097829.jpg'), - ('0812584341', 'To Wear The White Cloak: A Catherine LeVendeur Mystery', 'https://images.isbndb.com/covers/43/49/9780812584349.jpg'), - ('3453071174', 'Die Firma: Roman', 'https://images.isbndb.com/covers/11/79/9783453071179.jpg'), - ('3404120604', 'Die Kinder Des Gral', 'https://images.isbndb.com/covers/06/04/9783404120604.jpg'), - ('0140258825', 'Sherlock Holmes And The Red Demon: A Sherlock Holmes Adventure In North America', 'https://images.isbndb.com/covers/88/20/9780140258820.jpg'), - ('1550590154', 'Canadians On Everest', 'https://images.isbndb.com/covers/01/59/9781550590159.jpg'), - ('0394536967', 'Winter: Love It Or Leave It', 'https://images.isbndb.com/covers/69/65/9780394536965.jpg'), - ('1895449553', 'Under NeWest Eyes: Stories From NeWest Review', 'https://images.isbndb.com/covers/95/56/9781895449556.jpg'), - ('1565049055', 'Tombs', 'https://images.isbndb.com/covers/90/55/9781565049055.jpg'), - ('031207090X', 'Success: New And Selected Stories', 'https://images.isbndb.com/covers/09/08/9780312070908.jpg'), - ('1568650922', 'Master Of The Game', 'https://images.isbndb.com/covers/09/20/9781568650920.jpg'), - ('0684810948', 'The Intruder', 'https://images.isbndb.com/covers/09/42/9780684810942.jpg'), - ('0399134239', 'Movieland Hollywood', 'https://images.isbndb.com/covers/42/34/9780399134234.jpg'), - ('0553053868', 'Journey To The Stars: Space Exploration Tomorrow And Beyond', 'https://images.isbndb.com/covers/38/69/9780553053869.jpg'), - ('0525939857', 'The Takeover', 'https://images.isbndb.com/covers/98/56/9780525939856.jpg'), - ('0312858817', 'Ghostlight', 'https://images.isbndb.com/covers/88/10/9780312858810.jpg'), - ('0399143122', 'Counterparts', 'https://images.isbndb.com/covers/31/20/9780399143120.jpg'), - ('068810973X', 'Flower Shadows: A Novel', 'https://images.isbndb.com/covers/97/38/9780688109738.jpg'), - ('0679425136', 'The Night Manager', 'https://images.isbndb.com/covers/51/37/9780679425137.jpg'), - ('0671679473', 'Cruel Doubt', 'https://images.isbndb.com/covers/94/77/9780671679477.jpg'), - ('0671692976', 'The Big Hype', 'https://images.isbndb.com/covers/29/71/9780671692971.jpg'), - ('1556112289', 'April Fools', 'https://images.isbndb.com/covers/22/87/9781556112287.jpg'), - ('0671870602', 'The Intruders', 'https://images.isbndb.com/covers/06/07/9780671870607.jpg'), - ('1895897653', 'Nine-Tenths Unseen', 'https://images.isbndb.com/covers/76/54/9781895897654.jpg'), - ('1897580193', 'This Side Of Brightness Edition U K', 'https://images.isbndb.com/covers/01/96/9781897580196.jpg'), - ('0060183039', 'Coming To Terms: A Novel', 'https://images.isbndb.com/covers/30/35/9780060183035.jpg'), - ('0688143679', 'Prayers For The Dead: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/36/71/9780688143671.jpg'), - ('0805059237', '30', 'https://images.isbndb.com/covers/92/36/9780805059236.jpg'), - ('0773728805', 'Yankee Doodle Dandy: Brian Mulroney And The American Agenda', 'https://images.isbndb.com/covers/88/06/9780773728806.jpg'), - ('0671864866', 'The Agenda: Inside The Clinton White House', 'https://images.isbndb.com/covers/48/66/9780671864866.jpg'), - ('0763615757', 'Ten In The Bed', 'https://images.isbndb.com/covers/57/58/9780763615758.jpg'), - ('0789420279', 'Children Just Like Me: Celebrations!', 'https://images.isbndb.com/covers/02/75/9780789420275.jpg'), - ('0789402017', 'Children Just Like Me: A Unique Celebration Of Children Around The World', 'https://images.isbndb.com/covers/20/11/9780789402011.jpg'), - ('0395898714', 'Roverandom', 'https://images.isbndb.com/covers/87/10/9780395898710.jpg'), - ('1929132123', 'I Want My Potty', 'https://images.isbndb.com/covers/21/26/9781929132126.jpg'), - ('0679600213', 'Out Of Africa (Modern Library)', 'https://images.isbndb.com/covers/02/13/9780679600213.jpg'), - ('0394827406', 'The Biggest House In The World', 'https://images.isbndb.com/covers/74/07/9780394827407.jpg'), - ('0451527046', 'Treasure Island (Signet Classics)', 'https://images.isbndb.com/covers/70/42/9780451527042.jpg'), - ('0486404277', 'Robinson Crusoe (Dover Thrift Editions)', 'https://images.isbndb.com/covers/42/71/9780486404271.jpg'), - ('0517189585', 'Black Beauty (Children''s Classics)', 'https://images.isbndb.com/covers/95/80/9780517189580.jpg'), - ('1859846815', 'Barbecued Husbands: And Other Stories From The Amazon', 'https://images.isbndb.com/covers/68/10/9781859846810.jpg'), - ('0261103431', 'Tales From The Perilous Realm', 'https://images.isbndb.com/covers/34/36/9780261103436.jpg'), - ('0060932678', 'The Autumn Of The Patriarch (Perennial Classics)', 'https://images.isbndb.com/covers/26/71/9780060932671.jpg'), - ('0156949601', 'The Waves', 'https://images.isbndb.com/covers/96/06/9780156949606.jpg'), - ('0664243916', 'Tales Of The Sacred And The Supernatural', 'https://images.isbndb.com/covers/39/13/9780664243913.jpg'), - ('0345442822', 'Angry Housewives Eating Bon Bons (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/28/26/9780345442826.jpg'), - ('0393322815', 'Daily Afflictions: The Agony Of Being Connected To Everything In The Universe', 'https://images.isbndb.com/covers/28/11/9780393322811.jpg'), - ('0671638688', 'It''s Always Something', 'https://images.isbndb.com/covers/86/89/9780671638689.jpg'), - ('0773517634', 'War And Society In Europe 1870-1970 (War & European Society)', 'https://images.isbndb.com/covers/76/39/9780773517639.jpg'), - ('1550546163', 'Frozen In Time: The Fate Of The Franklin Expedition', 'https://images.isbndb.com/covers/61/63/9781550546163.jpg'), - ('0670031372', 'Stolen (Women Of The Otherworld, Book 2)', 'https://images.isbndb.com/covers/13/75/9780670031375.jpg'), - ('0809468700', 'The Near Planets (Voyage Through The Universe)', 'https://images.isbndb.com/covers/87/06/9780809468706.jpg'), - ('0809468549', 'The Far Planets : Voyage Through The Universe', 'https://images.isbndb.com/covers/85/46/9780809468546.jpg'), - ('0805017224', 'The Complete Phantom Of The Opera (Owl Books)', 'https://images.isbndb.com/covers/72/29/9780805017229.jpg'), - ('0582438349', 'Motherland: Russia In The Twentieth Century', 'https://images.isbndb.com/covers/83/47/9780582438347.jpg'), - ('0192815970', 'The Canterbury Tales (Oxford Paperbacks)', 'https://images.isbndb.com/covers/59/72/9780192815972.jpg'), - ('0393967913', 'Mansfield Park (Norton Critical Editions)', 'https://images.isbndb.com/covers/79/13/9780393967913.jpg'), - ('1563893304', 'Kingdom Come', 'https://images.isbndb.com/covers/33/08/9781563893308.jpg'), - ('0670894710', 'Bitten (Women Of The Otherworld, Book 1)', 'https://images.isbndb.com/covers/47/10/9780670894710.jpg'), - ('0451627318', 'Child Of The Dark: The Diary Of Carolina Maria De Jesus (Mentor)', 'https://images.isbndb.com/covers/73/15/9780451627315.jpg'), - ('0836221362', 'It''s A Magical World: A Calvin And Hobbes Collection', 'https://images.isbndb.com/covers/13/67/9780836221367.jpg'), - ('0836217691', 'Homicidal Psycho Jungle Cat: A Calvin And Hobbes Collection', 'https://images.isbndb.com/covers/76/98/9780836217698.jpg'), - ('0806973404', 'Book Of Victorian Alphabets And Designs', 'https://images.isbndb.com/covers/34/01/9780806973401.jpg'), - ('0836218051', 'The Essential Calvin And Hobbes', 'https://images.isbndb.com/covers/80/53/9780836218053.jpg'), - ('0836218523', 'The Calvin And Hobbes Lazy Sunday Book', 'https://images.isbndb.com/covers/85/27/9780836218527.jpg'), - ('0836218833', 'Attack Of The Deranged Mutant Killer Monster Snow Goons (Calvin & Hobbes)', 'https://images.isbndb.com/covers/88/31/9780836218831.jpg'), - ('0836218787', 'Scientific Progress Goes ''Boink'': A Calvin And Hobbes Collection', 'https://images.isbndb.com/covers/87/87/9780836218787.jpg'), - ('0836218663', 'The Revenge Of The Baby-Sat', 'https://images.isbndb.com/covers/86/64/9780836218664.jpg'), - ('0836218620', 'Weirdos From Another Planet!', 'https://images.isbndb.com/covers/86/26/9780836218626.jpg'), - ('0836220889', 'Calvin And Hobbes', 'https://images.isbndb.com/covers/08/89/9780836220889.jpg'), - ('0374339716', 'The Juniper Tree: And Other Tales From Grimm', 'https://images.isbndb.com/covers/97/15/9780374339715.jpg'), - ('0394558235', 'The Queen Of The Damned (The Third Book In The Vampire Chronicles)', 'https://images.isbndb.com/covers/82/33/9780394558233.jpg'), - ('0517189682', 'Anne Of Green Gables (Children''s Classics)', 'https://images.isbndb.com/covers/96/89/9780517189689.jpg'), - ('1570981094', 'HOLLYWOOD IRISH: In Their Own Words: Illustrated Interviews With Gabriel Byrne, Liam Neeson, Pierce Brosnan, Stephen Rea, Aidan Quinn And Patrick Bergin', 'https://images.isbndb.com/covers/10/98/9781570981098.jpg'), - ('0140440046', 'Candide Or Optimism', 'https://images.isbndb.com/covers/00/41/9780140440041.jpg'), - ('1853260495', 'Last Of The Mohicans (Wadsworth Collection)', 'https://images.isbndb.com/covers/04/90/9781853260490.jpg'), - ('3426617463', 'Toujours Provence', 'https://images.isbndb.com/covers/74/65/9783426617465.jpg'), - ('3442357780', 'Auch Engel Mögen''s Heiß: Roman', 'https://images.isbndb.com/covers/77/89/9783442357789.jpg'), - ('3442133513', 'Ein Kleiner Tod / Weg In Die Nacht.', 'https://images.isbndb.com/covers/35/12/9783442133512.jpg'), - ('3442726840', 'Vertrauen Gegen Vertrauen', 'https://images.isbndb.com/covers/68/44/9783442726844.jpg'), - ('3404604989', 'Die Geheime Botschaft Unserer Speisen', 'https://images.isbndb.com/covers/49/82/9783404604982.jpg'), - ('344245204X', 'Livealbum', 'https://images.isbndb.com/covers/20/40/9783442452040.jpg'), - ('3404143744', 'Survivor, Die Überlebende.', 'https://images.isbndb.com/covers/37/40/9783404143740.jpg'), - ('3404132998', 'Der Werwolf Von Tarker Mills: Kalender-Geschichten', 'https://images.isbndb.com/covers/29/97/9783404132997.jpg'), - ('3453171721', 'Geschöpfe Der Nacht: Roman', 'https://images.isbndb.com/covers/17/25/9783453171725.jpg'), - ('3404141849', 'Intensity.', 'https://images.isbndb.com/covers/18/45/9783404141845.jpg'), - ('3404142187', 'Security. Unheimlicher Roman.', 'https://images.isbndb.com/covers/21/87/9783404142187.jpg'), - ('3453177541', 'Schattenbrüder.', 'https://images.isbndb.com/covers/75/43/9783453177543.jpg'), - ('3453162900', 'Tür Ins Dunkel', 'https://images.isbndb.com/covers/29/07/9783453162907.jpg'), - ('3453036972', 'Das Monstrum, Tommyknockers', 'https://images.isbndb.com/covers/69/70/9783453036970.jpg'), - ('3453088883', 'Abgrund', 'https://images.isbndb.com/covers/88/87/9783453088887.jpg'), - ('3404131606', 'Nachtschicht', 'https://images.isbndb.com/covers/16/00/9783404131600.jpg'), - ('340413088X', 'Katzenauge: Filmerzählungen: Quitters, Inc./Der Mauervorsprung: Erzählungen Vom Meister Des Horrors', 'https://images.isbndb.com/covers/08/87/9783404130887.jpg'), - ('3453021347', 'Im Morgengrauen. Unheimliche Geschichten.', 'https://images.isbndb.com/covers/13/41/9783453021341.jpg'), - ('3453003128', 'Der Fornit', 'https://images.isbndb.com/covers/31/25/9783453003125.jpg'), - ('3404130014', 'Feuerkind.', 'https://images.isbndb.com/covers/00/16/9783404130016.jpg'), - ('0451190750', 'Thinner', 'https://images.isbndb.com/covers/07/58/9780451190758.jpg'), - ('3453002393', 'Todesmarsch', 'https://images.isbndb.com/covers/23/95/9783453002395.jpg'), - ('0451524276', 'Silas Marner (Signet Classic)', 'https://images.isbndb.com/covers/42/70/9780451524270.jpg'), - ('0395193958', 'The Lord Of The Rings (Collector''s Edition)', 'https://images.isbndb.com/covers/39/52/9780395193952.jpg'), - ('1874166986', 'Introducing Cultural Studies', 'https://images.isbndb.com/covers/69/86/9781874166986.jpg'), - ('0671619829', 'Abc''s Of Chess', 'https://images.isbndb.com/covers/98/24/9780671619824.jpg'), - ('0704339927', 'Queen Of The States (The Women''s Press Science Fiction Series)', 'https://images.isbndb.com/covers/99/27/9780704339927.jpg'), - ('0843136170', 'Adventures Of Barbie: Wildhorse (Adventures With Barbie)', 'https://images.isbndb.com/covers/61/73/9780843136173.jpg'), - ('0816735662', 'Ufo Kids', 'https://images.isbndb.com/covers/56/62/9780816735662.jpg'), - ('0771056222', 'The Ghost Of The Stanley Cup (Screech Owls Series #11)', 'https://images.isbndb.com/covers/62/22/9780771056222.jpg'), - ('0771056281', 'The Screech Owls'' Northern Adventure (Screech Owls Series #3)', 'https://images.isbndb.com/covers/62/84/9780771056284.jpg'), - ('0679762698', 'Encore Provence: New Adventures In The South Of France', 'https://images.isbndb.com/covers/26/90/9780679762690.jpg'), - ('3546002474', 'In Alle Ewigkeit', 'https://images.isbndb.com/covers/24/79/9783546002479.jpg'), - ('0517701405', 'Unleashed: Poems By Writers'' Dogs', 'https://images.isbndb.com/covers/14/09/9780517701409.jpg'), - ('0679741151', 'The Vintage Book Of Contemporary World Poetry', 'https://images.isbndb.com/covers/11/52/9780679741152.jpg'), - ('0553210599', 'The Turn Of The Screw And Other Short Fiction (Bantam Classics)', 'https://images.isbndb.com/covers/05/90/9780553210590.jpg'), - ('0684873052', 'Excelsior! : The Amazing Life Of Stan Lee', 'https://images.isbndb.com/covers/30/53/9780684873053.jpg'), - ('0974218006', 'Obligate Carnivore: Cats, Dogs, And What It Really Means To Be Vegan', 'https://images.isbndb.com/covers/80/07/9780974218007.jpg'), - ('0441783600', 'Starseed', 'https://images.isbndb.com/covers/36/01/9780441783601.jpg'), - ('0140244816', 'What''s A Girl Gotta Do? (Robin Hudson, Book 1)', 'https://images.isbndb.com/covers/48/16/9780140244816.jpg'), - ('0812509250', 'Xenocide (Ender, Book 3)', 'https://images.isbndb.com/covers/92/50/9780812509250.jpg'), - ('0812532554', 'Songmaster', 'https://images.isbndb.com/covers/25/55/9780812532555.jpg'), - ('0061000116', 'Wyvern', 'https://images.isbndb.com/covers/01/19/9780061000119.jpg'), - ('088240041X', 'Richard Harrington''s Yukon', 'https://images.isbndb.com/covers/04/19/9780882400419.jpg'), - ('0140043888', 'The Manticore', 'https://images.isbndb.com/covers/38/84/9780140043884.jpg'), - ('0425068323', 'Lyonesse', 'https://images.isbndb.com/covers/83/28/9780425068328.jpg'), - ('0451523407', 'The Jungle Books (Signet Classics)', 'https://images.isbndb.com/covers/34/02/9780451523402.jpg'), - ('0425143945', 'Cleopatra Gold', 'https://images.isbndb.com/covers/39/40/9780425143940.jpg'), - ('0553278029', 'A Great Deliverance', 'https://images.isbndb.com/covers/80/26/9780553278026.jpg'), - ('0515133639', 'The Absence Of Nectar', 'https://images.isbndb.com/covers/36/39/9780515133639.jpg'), - ('0671868098', 'FLOATING CITY', 'https://images.isbndb.com/covers/80/93/9780671868093.jpg'), - ('0380804174', 'Elizabeth', 'https://images.isbndb.com/covers/41/77/9780380804177.jpg'), - ('0345417976', 'A Prayer For Owen Meany: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/79/78/9780345417978.jpg'), - ('0451525469', 'Tess Of The D''Urbervilles', 'https://images.isbndb.com/covers/54/68/9780451525468.jpg'), - ('0020199309', 'Tender Is The Night (Reissue)', 'https://images.isbndb.com/covers/93/04/9780020199304.jpg'), - ('0061031151', 'The Bride''s Kimono', 'https://images.isbndb.com/covers/11/51/9780061031151.jpg'), - ('0060921714', 'The Complete Stories', 'https://images.isbndb.com/covers/17/12/9780060921712.jpg'), - ('0439286034', 'Tangerine', 'https://images.isbndb.com/covers/60/39/9780439286039.jpg'), - ('0393324494', 'A Murder, A Mystery And A Marriage: A Story', 'https://images.isbndb.com/covers/44/95/9780393324495.jpg'), - ('0679722661', 'An Artist Of The Floating World', 'https://images.isbndb.com/covers/26/63/9780679722663.jpg'), - ('0673982432', 'Style: Ten Lessons In Clarity And Grace', 'https://images.isbndb.com/covers/24/38/9780673982438.jpg'), - ('0312980329', 'The Ten Thousand: A Novel Of Ancient Greece', 'https://images.isbndb.com/covers/03/20/9780312980320.jpg'), - ('3499180936', 'Stell Dir Vor. Kreativ Visualsieren', 'https://images.isbndb.com/covers/09/34/9783499180934.jpg'), - ('0451410823', 'Summer Secrets', 'https://images.isbndb.com/covers/08/25/9780451410825.jpg'), - ('0394579259', 'Jacob The Baker: Gentle Wisdom For A Complicated World', 'https://images.isbndb.com/covers/92/52/9780394579252.jpg'), - ('0385425627', 'Charity', 'https://images.isbndb.com/covers/56/29/9780385425629.jpg'), - ('0312984685', 'The Good Sister', 'https://images.isbndb.com/covers/46/87/9780312984687.jpg'), - ('1551667053', 'A Twist Of Fate', 'https://images.isbndb.com/covers/70/58/9781551667058.jpg'), - ('0440217466', 'Vanished: A Novel', 'https://images.isbndb.com/covers/74/66/9780440217466.jpg'), - ('0385720726', 'You Are Not A Stranger Here: Stories', 'https://images.isbndb.com/covers/07/24/9780385720724.jpg'), - ('0936728779', 'Living Water: The Power Of The Holy Spirit In Your Life', 'https://images.isbndb.com/covers/87/73/9780936728773.jpg'), - ('0936728787', 'Why Grace Changes Everything', 'https://images.isbndb.com/covers/87/80/9780936728780.jpg'), - ('0936728485', 'What The World Is Coming To: A Commentary On The Book Of Revelation Verse By Verse', 'https://images.isbndb.com/covers/84/83/9780936728483.jpg'), - ('0380719223', 'Mariel Of Redwall (Redwall, Book 4)', 'https://images.isbndb.com/covers/92/28/9780380719228.jpg'), - ('0345428811', 'Star Wars Episode II: Attack Of The Clones', 'https://images.isbndb.com/covers/88/13/9780345428813.jpg'), - ('3442434130', 'Die Vertraute', 'https://images.isbndb.com/covers/41/38/9783442434138.jpg'), - ('3442351588', 'Sternenmelodie', 'https://images.isbndb.com/covers/15/89/9783442351589.jpg'), - ('3453150147', 'Die Hüterin Der Gewürze', 'https://images.isbndb.com/covers/01/40/9783453150140.jpg'), - ('3404128397', 'Der Fluch Des Kopernikus: Ein Renaissance-Roman', 'https://images.isbndb.com/covers/83/96/9783404128396.jpg'), - ('3453151704', 'Die Alchimistin', 'https://images.isbndb.com/covers/17/03/9783453151703.jpg'), - ('3548245897', 'Hin Und Weg.', 'https://images.isbndb.com/covers/58/98/9783548245898.jpg'), - ('0898151953', 'Look Homeward Erotica', 'https://images.isbndb.com/covers/19/54/9780898151954.jpg'), - ('0140195831', 'If The Buddha Dated: A Handbook For Finding Love On A Spiritual Path', 'https://images.isbndb.com/covers/58/35/9780140195835.jpg'), - ('1568360487', 'The Forbidden Experiment (Kodansha Globe)', 'https://images.isbndb.com/covers/04/85/9781568360485.jpg'), - ('0375401466', 'Old School', 'https://images.isbndb.com/covers/14/66/9780375401466.jpg'), - ('0916890015', 'Mountaineering: The Freedom Of The Hills', 'https://images.isbndb.com/covers/00/18/9780916890018.jpg'), - ('0743202236', 'A Mind At A Time: America''s Top Learning Expert Shows How Every Child Can Succeed', 'https://images.isbndb.com/covers/22/37/9780743202237.jpg'), - ('0440412226', 'Anastasia Absolutely', 'https://images.isbndb.com/covers/22/29/9780440412229.jpg'), - ('038508854X', 'Astronomy Made Simple', 'https://images.isbndb.com/covers/85/41/9780385088541.jpg'), - ('1559718641', 'Everything Cat: What Kids Really Want To Know About Cats (Kids'' FAQs)', 'https://images.isbndb.com/covers/86/46/9781559718646.jpg'), - ('0590632744', 'Got Issues Much?: Celebrities Share Their Traumas And Triumphs', 'https://images.isbndb.com/covers/27/44/9780590632744.jpg'), - ('0439343518', 'Friend Or Foe? (Outernet #1)', 'https://images.isbndb.com/covers/35/10/9780439343510.jpg'), - ('0765345706', 'In The Land Of The Lawn Weenies: And Other Warped And Creepy Tales (Starscape)', 'https://images.isbndb.com/covers/57/07/9780765345707.jpg'), - ('0448416484', 'Who Is He Really?: Fun Quizzes About Guys And You!', 'https://images.isbndb.com/covers/64/89/9780448416489.jpg'), - ('0590477625', 'More Sideways Arithmetic From Wayside School', 'https://images.isbndb.com/covers/76/28/9780590477628.jpg'), - ('0590457268', 'Sideways Arithmetic From Wayside School', 'https://images.isbndb.com/covers/72/62/9780590457262.jpg'), - ('0590252372', 'The Moonlight Man', 'https://images.isbndb.com/covers/23/79/9780590252379.jpg'), - ('0671887351', 'Maniac', 'https://images.isbndb.com/covers/73/53/9780671887353.jpg'), - ('0679429948', 'The Death Of Common Sense: How Law Is Suffocating America', 'https://images.isbndb.com/covers/99/44/9780679429944.jpg'), - ('1570360421', 'My Life In ''Toons: From Flatbush To Bedrock In Under A Century', 'https://images.isbndb.com/covers/04/28/9781570360428.jpg'), - ('0613003225', 'Help! I''m Trapped In The President''s Body', 'https://images.isbndb.com/covers/32/23/9780613003223.jpg'), - ('0807281530', 'Wayside School Gets A Little Stranger', 'https://images.isbndb.com/covers/15/36/9780807281536.jpg'), - ('0786888067', 'The Snow Garden', 'https://images.isbndb.com/covers/80/61/9780786888061.jpg'), - ('3453213394', 'Hexenkessel', 'https://images.isbndb.com/covers/33/95/9783453213395.jpg'), - ('0375508112', 'Strand Of A Thousand Pearls: A Novel', 'https://images.isbndb.com/covers/81/10/9780375508110.jpg'), - ('0312254385', 'Werewolves In Their Youth: Stories', 'https://images.isbndb.com/covers/43/84/9780312254384.jpg'), - ('0425176169', 'From The Heart: Tonight And Always/A Matter Of Choice/Endings And Beginnings', 'https://images.isbndb.com/covers/61/60/9780425176160.jpg'), - ('0374423296', '5 Novels: Alan Mendelsohn, The Boy From Mars; Slaves Of Spiegel; The Last Guru; Young Adult Novel; The Snarkout Boys And The Avocado Of Death', 'https://images.isbndb.com/covers/32/92/9780374423292.jpg'), - ('0440223202', 'Evening Class', 'https://images.isbndb.com/covers/32/07/9780440223207.jpg'), - ('0802839061', 'A Charles Williams Reader', 'https://images.isbndb.com/covers/90/60/9780802839060.jpg'), - ('0156029030', 'Delta Of Venus', 'https://images.isbndb.com/covers/90/32/9780156029032.jpg'), - ('0316666335', 'House Of Women: A Novel', 'https://images.isbndb.com/covers/63/36/9780316666336.jpg'), - ('0670852945', 'Songs Of Innocence And Experience: Essays In Celebration Of The Ordinary', 'https://images.isbndb.com/covers/29/49/9780670852949.jpg'), - ('0761133208', 'I Do. I Did. Now What?!: Life After The Wedding Dress', 'https://images.isbndb.com/covers/32/09/9780761133209.jpg'), - ('0060915943', 'The Art Of Loving', 'https://images.isbndb.com/covers/59/40/9780060915940.jpg'), - ('0312300700', 'The Rich Part Of Life: A Novel', 'https://images.isbndb.com/covers/07/08/9780312300708.jpg'), - ('1928556221', 'Bless Your Heart, Tramp', 'https://images.isbndb.com/covers/62/20/9781928556220.jpg'), - ('0060172789', 'A Long Way Home', 'https://images.isbndb.com/covers/27/87/9780060172787.jpg'), - ('1556705069', 'The Life Of Saint Nicholas', 'https://images.isbndb.com/covers/50/69/9781556705069.jpg'), - ('0671441035', 'Heritage: Civilization And The Jews', 'https://images.isbndb.com/covers/10/36/9780671441036.jpg'), - ('2253153982', 'L''Ultime Secret', 'https://images.isbndb.com/covers/39/86/9782253153986.jpg'), - ('2253076996', 'Une Mort Sans Nom', 'https://images.isbndb.com/covers/69/95/9782253076995.jpg'), - ('2266127365', 'Taltos', 'https://images.isbndb.com/covers/73/63/9782266127363.jpg'), - ('2266128876', 'Les Enfants De La Terre, Tome 5 : Les Refuges De Pierres, Volume 1', 'https://images.isbndb.com/covers/88/72/9782266128872.jpg'), - ('157794304X', 'Jambalaya For The Soul: Humorous Stories And Cajun Recipes From The Bayou', 'https://images.isbndb.com/covers/30/44/9781577943044.jpg'), - ('0575072741', 'Devil In Green (Dark Age)', 'https://images.isbndb.com/covers/27/49/9780575072749.jpg'), - ('0373264429', 'Glare Ice (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/44/21/9780373264421.jpg'), - ('0451205367', 'The Richest Man In Babylon', 'https://images.isbndb.com/covers/53/60/9780451205360.jpg'), - ('0843953144', 'Deep In The Darkness', 'https://images.isbndb.com/covers/31/45/9780843953145.jpg'), - ('0380712202', 'How To Make Your Life Easier At Work', 'https://images.isbndb.com/covers/22/05/9780380712205.jpg'), - ('0590431978', 'Scary Stories To Tell In The Dark', 'https://images.isbndb.com/covers/19/72/9780590431972.jpg'), - ('0764551248', 'Workouts For Dummies', 'https://images.isbndb.com/covers/12/46/9780764551246.jpg'), - ('0764550780', 'Beauty Secrets For Dummies', 'https://images.isbndb.com/covers/07/82/9780764550782.jpg'), - ('1568848668', 'Fitness For Dummies', 'https://images.isbndb.com/covers/86/62/9781568848662.jpg'), - ('0764550136', 'Personal Finance For Dummies', 'https://images.isbndb.com/covers/01/33/9780764550133.jpg'), - ('0028613430', 'The Complete Idiot''s Guide To Getting Rich', 'https://images.isbndb.com/covers/34/37/9780028613437.jpg'), - ('0684870940', 'Dream Power: How To Use Your Night Dreams To Change Your Life', 'https://images.isbndb.com/covers/09/46/9780684870946.jpg'), - ('1882606256', 'Tai Chi Made Easy: A Step-By-Step Guide To Health And Relaxation', 'https://images.isbndb.com/covers/62/52/9781882606252.jpg'), - ('0830732586', 'Back On Track: A 16-Week Challenge To Help You Reach Your Weight-Loss Goals', 'https://images.isbndb.com/covers/25/86/9780830732586.jpg'), - ('0922729387', 'Creative Abundance: Keys To Spiritual And Material Prosperity (Pocket Guide To Practical Spirituality)', 'https://images.isbndb.com/covers/93/88/9780922729388.jpg'), - ('0062505378', 'Stake Your Claim: Exploring The Gold Mine Within', 'https://images.isbndb.com/covers/53/78/9780062505378.jpg'), - ('0671829777', 'Petals On The Wind', 'https://images.isbndb.com/covers/97/73/9780671829773.jpg'), - ('0708837085', 'Archon (Orbit Books)', 'https://images.isbndb.com/covers/70/85/9780708837085.jpg'), - ('0140042598', 'On The Road', 'https://images.isbndb.com/covers/25/97/9780140042597.jpg'), - ('0345459164', 'Star Wars: Survivor''s Quest', 'https://images.isbndb.com/covers/91/69/9780345459169.jpg'), - ('0553578790', 'Vision Of The Future (Star Wars: The Hand Of Thrawn, Book 2)', 'https://images.isbndb.com/covers/87/99/9780553578799.jpg'), - ('0553298046', 'Specter Of The Past (Star Wars: The Hand Of Thrawn #1)', 'https://images.isbndb.com/covers/80/48/9780553298048.jpg'), - ('3442442508', 'Dunkle Kammern.', 'https://images.isbndb.com/covers/25/08/9783442442508.jpg'), - ('0060083263', 'Sleeping Beauty (Margolin, Phillip)', 'https://images.isbndb.com/covers/32/67/9780060083267.jpg'), - ('0670032808', 'The Good Wife Strikes Back', 'https://images.isbndb.com/covers/28/08/9780670032808.jpg'), - ('1401300901', 'PS, I Love You', 'https://images.isbndb.com/covers/09/06/9781401300906.jpg'), - ('0743446291', 'Lost', 'https://images.isbndb.com/covers/62/97/9780743446297.jpg'), - ('0451210816', 'Murder Between The Covers (Dead-End Job Mysteries, Book 2)', 'https://images.isbndb.com/covers/08/14/9780451210814.jpg'), - ('0451208552', 'Shop Till You Drop', 'https://images.isbndb.com/covers/85/52/9780451208552.jpg'), - ('0399149848', 'Birthright', 'https://images.isbndb.com/covers/98/49/9780399149849.jpg'), - ('0066211220', 'Breathing Room: A Novel', 'https://images.isbndb.com/covers/12/20/9780066211220.jpg'), - ('0385335377', 'Lone Eagle', 'https://images.isbndb.com/covers/53/79/9780385335379.jpg'), - ('0060393408', 'The Case Against Hillary Clinton', 'https://images.isbndb.com/covers/34/03/9780060393403.jpg'), - ('1890957313', 'Free Stuff For Seniors', 'https://images.isbndb.com/covers/73/15/9781890957315.jpg'), - ('073882688X', 'Sizzle', 'https://images.isbndb.com/covers/68/82/9780738826882.jpg'), - ('0425183378', 'Cape Light (Cape Light Series, Book 1)', 'https://images.isbndb.com/covers/33/73/9780425183373.jpg'), - ('0684194201', 'The Fragile Species', 'https://images.isbndb.com/covers/42/02/9780684194202.jpg'), - ('0307060381', 'Sesame Street: Little Elmo''s Toy Box (Baby''s First Book)', 'https://images.isbndb.com/covers/03/89/9780307060389.jpg'), - ('0792218345', 'Pile Of Puppies (Little Learners Board Books)', 'https://images.isbndb.com/covers/83/40/9780792218340.jpg'), - ('0553292552', 'Quoth The Raven', 'https://images.isbndb.com/covers/25/58/9780553292558.jpg'), - ('0786807083', 'Daughters Of The Moon, Book #3: Night Shade', 'https://images.isbndb.com/covers/70/86/9780786807086.jpg'), - ('0425119920', 'Strangers', 'https://images.isbndb.com/covers/99/21/9780425119921.jpg'), - ('0805002707', 'Johnny Under Ground (Inspector Henry Tibbett Mystery)', 'https://images.isbndb.com/covers/27/06/9780805002706.jpg'), - ('0553566040', 'Missing Joseph', 'https://images.isbndb.com/covers/60/48/9780553566048.jpg'), - ('0451456521', 'Lady Of Avalon (Avalon, Book 3)', 'https://images.isbndb.com/covers/65/26/9780451456526.jpg'), - ('1551660202', 'The Last Honest Woman', 'https://images.isbndb.com/covers/02/02/9781551660202.jpg'), - ('0373764170', 'Playboy Sheikh (Man Of The Month/Sons Of The Desert) (Silhouette Desire)', 'https://images.isbndb.com/covers/41/74/9780373764174.jpg'), - ('0373763794', 'Sultan''s Heir (Sons Of The Desert: The Sultans) (Desire, 1379)', 'https://images.isbndb.com/covers/37/95/9780373763795.jpg'), - ('0373764243', 'The Sheikh Takes A Bride (Dynasties: The Connellys) (Silhouette Desire, No. 1424)', 'https://images.isbndb.com/covers/42/42/9780373764242.jpg'), - ('0821746286', 'Torment', 'https://images.isbndb.com/covers/62/88/9780821746288.jpg'), - ('0743431030', 'Mother Of Pearl', 'https://images.isbndb.com/covers/10/33/9780743431033.jpg'), - ('067187702X', 'WISHING SEASON', 'https://images.isbndb.com/covers/70/26/9780671877026.jpg'), - ('0812518624', 'The Hour Of The Oxrun Dead', 'https://images.isbndb.com/covers/86/27/9780812518627.jpg'), - ('0451192192', 'The Store', 'https://images.isbndb.com/covers/21/96/9780451192196.jpg'), - ('0886774209', 'Devil Worshipers (Daw Science Fiction)', 'https://images.isbndb.com/covers/42/02/9780886774202.jpg'), - ('0671045423', 'The Defense Is Ready', 'https://images.isbndb.com/covers/54/25/9780671045425.jpg'), - ('0449217124', 'Thornyhold', 'https://images.isbndb.com/covers/71/22/9780449217122.jpg'), - ('042512519X', 'The Second Deadly Sin', 'https://images.isbndb.com/covers/51/99/9780425125199.jpg'), - ('0425104273', 'The First Deadly Sin (The Deadly Sins Novels)', 'https://images.isbndb.com/covers/42/79/9780425104279.jpg'), - ('0307128539', 'Gemstones (The Golden Science Close-Up Series)', 'https://images.isbndb.com/covers/85/39/9780307128539.jpg'), - ('006020186X', 'Amelia Bedelia (I Can Read Book 2)', 'https://images.isbndb.com/covers/18/69/9780060201869.jpg'), - ('0823405796', 'The Castle In The Attic', 'https://images.isbndb.com/covers/57/94/9780823405794.jpg'), - ('225314696X', 'Contes De Fées à L''usage Des Moyennes Personnes', 'https://images.isbndb.com/covers/69/64/9782253146964.jpg'), - ('2070567842', 'L''Histoire De Monsieur Sommer', 'https://images.isbndb.com/covers/78/43/9782070567843.jpg'), - ('0446358592', 'By The Rivers Of Babylon', 'https://images.isbndb.com/covers/85/90/9780446358590.jpg'), - ('0446600466', 'Black Market', 'https://images.isbndb.com/covers/04/60/9780446600460.jpg'), - ('0425098834', 'If Morning Ever Comes', 'https://images.isbndb.com/covers/88/37/9780425098837.jpg'), - ('0345409051', 'Errands', 'https://images.isbndb.com/covers/90/58/9780345409058.jpg'), - ('0446600474', 'Season Of The Machete', 'https://images.isbndb.com/covers/04/77/9780446600477.jpg'), - ('0140272100', 'Vanished', 'https://images.isbndb.com/covers/21/09/9780140272109.jpg'), - ('0446364800', 'The General''s Daughter', 'https://images.isbndb.com/covers/48/05/9780446364805.jpg'), - ('0679450408', 'Silent Witness', 'https://images.isbndb.com/covers/04/05/9780679450405.jpg'), - ('0613028155', 'The Neverending Story (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/81/58/9780613028158.jpg'), - ('034543014X', 'The Princess Bride: S. Morgenstern''s Classic Tale Of True Love And High Adventure (The 25th Anniversary Edition)', 'https://images.isbndb.com/covers/01/44/9780345430144.jpg'), - ('1563895730', 'The Sandman: The Dream Hunters', 'https://images.isbndb.com/covers/57/39/9781563895739.jpg'), - ('1563890356', 'Season Of Mists (Sandman, Book 4)', 'https://images.isbndb.com/covers/03/52/9781563890352.jpg'), - ('0345294688', 'The Best Of H.P. Lovecraft : Bloodcurdling Tales Of Horror And The Macabre', 'https://images.isbndb.com/covers/46/85/9780345294685.jpg'), - ('1566197589', 'Lady Chatterley''s Lover', 'https://images.isbndb.com/covers/75/88/9781566197588.jpg'), - ('0871131811', 'Zodiac: The Eco Thriller', 'https://images.isbndb.com/covers/18/12/9780871131812.jpg'), - ('0375713549', 'Fletch', 'https://images.isbndb.com/covers/35/45/9780375713545.jpg'), - ('0061020699', 'Equal Rites', 'https://images.isbndb.com/covers/06/98/9780061020698.jpg'), - ('086140324X', 'The Colour Of Magic (Discworld Novels)', 'https://images.isbndb.com/covers/32/40/9780861403240.jpg'), - ('156389226X', 'Dream Country (Sandman, Book 3)', 'https://images.isbndb.com/covers/22/64/9781563892264.jpg'), - ('1401200893', 'The Sandman: Endless Nights', 'https://images.isbndb.com/covers/08/93/9781401200893.jpg'), - ('0373650132', 'Marriage By Contract (Harlequin 36 Hours)', 'https://images.isbndb.com/covers/01/32/9780373650132.jpg'), - ('0671786113', 'Fair Haven', 'https://images.isbndb.com/covers/61/13/9780671786113.jpg'), - ('0373822456', 'The Return Of Caine O''Halloran (American Heroes Against All Odds: Washington #47)', 'https://images.isbndb.com/covers/24/54/9780373822454.jpg'), - ('0061092819', 'Together Alone', 'https://images.isbndb.com/covers/28/17/9780061092817.jpg'), - ('0373224540', 'Watch Over Me (Rocky Mountain Rescue) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/45/48/9780373224548.jpg'), - ('0373825617', 'Contract: Paternity (Delta Justice, Book 1)', 'https://images.isbndb.com/covers/56/15/9780373825615.jpg'), - ('0373707711', 'Father Of Two', 'https://images.isbndb.com/covers/77/13/9780373707713.jpg'), - ('0373708130', 'Julia: Circle Of Friends (Harlequin Superromance No. 813)', 'https://images.isbndb.com/covers/81/30/9780373708130.jpg'), - ('0373241739', 'Stallion Tamer (Cowboys Of The Southwest) (Special Edition)', 'https://images.isbndb.com/covers/17/36/9780373241736.jpg'), - ('037326240X', 'Meadowlark', 'https://images.isbndb.com/covers/24/03/9780373262403.jpg'), - ('0373825692', 'For The Love Of Beau (Delta Justice, Book 9)', 'https://images.isbndb.com/covers/56/91/9780373825691.jpg'), - ('0373166613', 'Cowboy Groom (4 Brides For 4 Brothers) (American Romance)', 'https://images.isbndb.com/covers/66/19/9780373166619.jpg'), - ('0312869592', 'Jack Of Kinrowan: Jack The Giant-Killer And Drink Down The Moon', 'https://images.isbndb.com/covers/95/95/9780312869595.jpg'), - ('0140328734', 'Danny The Champion Of The World', 'https://images.isbndb.com/covers/87/38/9780140328738.jpg'), - ('1563892251', 'The Doll''s House (Sandman, Book 2)', 'https://images.isbndb.com/covers/22/57/9781563892257.jpg'), - ('1563892464', 'The Tragical Comedy Or Comical Tragedy Of Mr. Punch', 'https://images.isbndb.com/covers/24/62/9781563892462.jpg'), - ('038097827X', 'The Wolves In The Walls (New York Times Best Illustrated Books (Awards))', 'https://images.isbndb.com/covers/82/74/9780380978274.jpg'), - ('0312874014', 'Tapping The Dream Tree', 'https://images.isbndb.com/covers/40/18/9780312874018.jpg'), - ('0312873972', 'The Onion Girl', 'https://images.isbndb.com/covers/39/74/9780312873974.jpg'), - ('1565041992', 'The Day I Swapped My Dad For Two Goldfish', 'https://images.isbndb.com/covers/19/98/9781565041998.jpg'), - ('014143967X', 'Hard Times', 'https://images.isbndb.com/covers/96/79/9780141439679.jpg'), - ('038070174X', 'The Ambassador''s Women', 'https://images.isbndb.com/covers/17/42/9780380701742.jpg'), - ('0804108552', 'Dead In The Water', 'https://images.isbndb.com/covers/85/53/9780804108553.jpg'), - ('0373708149', 'O Little Town Of Glory: Men Of Glory (Harlequin Superromance No. 814)', 'https://images.isbndb.com/covers/81/47/9780373708147.jpg'), - ('0373242441', 'Dream Groom (Brides Of Bradley House) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/24/43/9780373242443.jpg'), - ('0451150244', 'Pet Sematary (Signet)', 'https://images.isbndb.com/covers/02/40/9780451150240.jpg'), - ('0385134681', 'Family Affairs', 'https://images.isbndb.com/covers/46/82/9780385134682.jpg'), - ('0553350072', 'Witness For The Prosecution (The Agatha Christie Mystery Collection)', 'https://images.isbndb.com/covers/00/74/9780553350074.jpg'), - ('0380973634', 'Neverwhere', 'https://images.isbndb.com/covers/36/37/9780380973637.jpg'), - ('0765300222', 'Into The Green', 'https://images.isbndb.com/covers/02/25/9780765300225.jpg'), - ('0441008615', 'Good Omens (Discworld)', 'https://images.isbndb.com/covers/86/12/9780441008612.jpg'), - ('0679405828', 'Jane Eyre (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/58/25/9780679405825.jpg'), - ('0140367470', 'The Three Musketeers (Puffin Classics)', 'https://images.isbndb.com/covers/74/78/9780140367478.jpg'), - ('0345434803', 'The Vampire Armand (The Vampire Chronicles) Book 6', 'https://images.isbndb.com/covers/48/07/9780345434807.jpg'), - ('037370951X', 'The First Family Of Texas (Harlequin Superromance, No. 951) (Home On The Ranch)', 'https://images.isbndb.com/covers/95/19/9780373709519.jpg'), - ('0373072430', 'Summer Of The Wolf (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/24/39/9780373072439.jpg'), - ('0671040480', 'This Calder Range Volume 1', 'https://images.isbndb.com/covers/04/82/9780671040482.jpg'), - ('0449005550', 'Candles On Bay Street', 'https://images.isbndb.com/covers/55/52/9780449005552.jpg'), - ('1551667894', 'Four Seasons', 'https://images.isbndb.com/covers/78/98/9781551667898.jpg'), - ('0373242077', 'A Family Kind Of Gal', 'https://images.isbndb.com/covers/20/78/9780373242078.jpg'), - ('0425177009', 'Lavender Lies: A China Bayles Mystery', 'https://images.isbndb.com/covers/70/06/9780425177006.jpg'), - ('0373834543', 'The First Man You Meet / Jacob''s Girls', 'https://images.isbndb.com/covers/45/49/9780373834549.jpg'), - ('0373707290', 'Another Man''s Child (9 Months Later) (Harlequin Superromance, No. 729)', 'https://images.isbndb.com/covers/72/94/9780373707294.jpg'), - ('0373226071', 'Nighttime Guardian (Harlequin Intrigue 607)', 'https://images.isbndb.com/covers/60/78/9780373226078.jpg'), - ('0451201914', 'Winter Raven', 'https://images.isbndb.com/covers/19/11/9780451201911.jpg'), - ('0373822405', 'Out Of Danger (American Heroes Against All Odds: Tennessee #42)', 'https://images.isbndb.com/covers/24/09/9780373822409.jpg'), - ('0373063040', 'Heart''s Command (Medical Romance, #4)', 'https://images.isbndb.com/covers/30/48/9780373063048.jpg'), - ('155166500X', 'An Independent Wife', 'https://images.isbndb.com/covers/50/09/9781551665009.jpg'), - ('0060502320', 'I''ve Got You, Babe', 'https://images.isbndb.com/covers/23/24/9780060502324.jpg'), - ('0821771949', 'A Country Courtship (Zebra Regency Romance)', 'https://images.isbndb.com/covers/19/45/9780821771945.jpg'), - ('0304345350', 'Dictionary Of Superstitions', 'https://images.isbndb.com/covers/53/59/9780304345359.jpg'), - ('0373835558', 'Arabella', 'https://images.isbndb.com/covers/55/53/9780373835553.jpg'), - ('0812542819', 'Divine Endurance', 'https://images.isbndb.com/covers/28/13/9780812542813.jpg'), - ('0590402129', 'Sounder', 'https://images.isbndb.com/covers/21/25/9780590402125.jpg'), - ('0671465376', 'Murder With Mirrors', 'https://images.isbndb.com/covers/53/77/9780671465377.jpg'), - ('0141301066', 'Matilda', 'https://images.isbndb.com/covers/10/68/9780141301068.jpg'), - ('0515095524', 'Burden', 'https://images.isbndb.com/covers/55/24/9780515095524.jpg'), - ('0451628276', 'Great Dialogues Of Plato (Mentor)', 'https://images.isbndb.com/covers/82/75/9780451628275.jpg'), - ('0449226182', 'Amethyst Dreams', 'https://images.isbndb.com/covers/61/86/9780449226186.jpg'), - ('1551660237', 'Tiger Prince', 'https://images.isbndb.com/covers/02/33/9781551660233.jpg'), - ('059043893X', 'Dogsong', 'https://images.isbndb.com/covers/89/33/9780590438933.jpg'), - ('0451408845', 'Moonspun Magic (Magic Trilogy)', 'https://images.isbndb.com/covers/88/46/9780451408846.jpg'), - ('0451088816', 'Fools Die (Signet)', 'https://images.isbndb.com/covers/88/19/9780451088819.jpg'), - ('0515090379', 'Seperate Beds', 'https://images.isbndb.com/covers/03/76/9780515090376.jpg'), - ('0373242034', 'From House Calls To Husband (Prescription: Marriage) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/20/30/9780373242030.jpg'), - ('0373707266', '40 Tons Of Trouble (Women Who Dare, Book 29) (Harlequin Superromance, No 726)', 'https://images.isbndb.com/covers/72/63/9780373707263.jpg'), - ('0373835493', 'The Foundling', 'https://images.isbndb.com/covers/54/92/9780373835492.jpg'), - ('0373835590', 'These Old Shades', 'https://images.isbndb.com/covers/55/91/9780373835591.jpg'), - ('0373835582', 'The Black Moth', 'https://images.isbndb.com/covers/55/84/9780373835584.jpg'), - ('0373834454', 'The Convenient Marriage', 'https://images.isbndb.com/covers/44/57/9780373834457.jpg'), - ('0373834446', 'The Nonesuch', 'https://images.isbndb.com/covers/44/40/9780373834440.jpg'), - ('0380810492', 'He Could Be The One', 'https://images.isbndb.com/covers/04/99/9780380810499.jpg'), - ('051510521X', 'Bitter Sweet', 'https://images.isbndb.com/covers/52/16/9780515105216.jpg'), - ('0895774011', 'The Return Of Sherlock Holmes (World''s Best Reading)', 'https://images.isbndb.com/covers/40/19/9780895774019.jpg'), - ('0590440675', 'Upstairs Room', 'https://images.isbndb.com/covers/06/77/9780590440677.jpg'), - ('0895775522', 'The Further Adventures Of Sherlock Holmes', 'https://images.isbndb.com/covers/55/28/9780895775528.jpg'), - ('0801957729', 'Tripping In America;: Off The Beaten Track', 'https://images.isbndb.com/covers/77/27/9780801957727.jpg'), - ('1931081727', 'The Devil You Know', 'https://images.isbndb.com/covers/17/26/9781931081726.jpg'), - ('0808520695', 'Cat''s Cradle (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/06/96/9780808520696.jpg'), - ('0449242765', 'Star Gate', 'https://images.isbndb.com/covers/27/66/9780449242766.jpg'), - ('0446329142', 'Bloodline', 'https://images.isbndb.com/covers/91/49/9780446329149.jpg'), - ('0446354678', 'Memories Of Midnight', 'https://images.isbndb.com/covers/46/77/9780446354677.jpg'), - ('0446341932', 'Stranger In The Mirror', 'https://images.isbndb.com/covers/19/36/9780446341936.jpg'), - ('0060934700', 'Smoke And Mirrors: Short Fictions And Illusions', 'https://images.isbndb.com/covers/47/05/9780060934705.jpg'), - ('0373834489', 'The Corinthian', 'https://images.isbndb.com/covers/44/88/9780373834488.jpg'), - ('0679409033', 'Love Always Remembers', 'https://images.isbndb.com/covers/90/38/9780679409038.jpg'), - ('0066238501', 'The Chronicles Of Narnia', 'https://images.isbndb.com/covers/85/00/9780066238500.jpg'), - ('0553265741', 'Sacred Sins', 'https://images.isbndb.com/covers/57/43/9780553265743.jpg'), - ('0380977281', 'Stardust', 'https://images.isbndb.com/covers/72/84/9780380977284.jpg'), - ('014100018X', 'Chocolat', 'https://images.isbndb.com/covers/01/83/9780141000183.jpg'), - ('1556520743', 'Assata: An Autobiography (Lawrence Hill & Co.)', 'https://images.isbndb.com/covers/07/47/9781556520747.jpg'), - ('088396452X', 'To My Daughter With Love On The Important Things In Life (More Family Titles)', 'https://images.isbndb.com/covers/45/21/9780883964521.jpg'), - ('1567310877', 'Shout!: The Beatles In Their Generation', 'https://images.isbndb.com/covers/08/70/9781567310870.jpg'), - ('0441172695', 'Dune Messiah (Dune Chronicles, Book 2)', 'https://images.isbndb.com/covers/26/96/9780441172696.jpg'), - ('0312865104', 'Greenmantle', 'https://images.isbndb.com/covers/51/08/9780312865108.jpg'), - ('088001380X', 'Worshipful Company Of Fletchers', 'https://images.isbndb.com/covers/38/02/9780880013802.jpg'), - ('0965834581', 'Candles For Elizabeth', 'https://images.isbndb.com/covers/45/82/9780965834582.jpg'), - ('0373834462', 'Cousin Kate', 'https://images.isbndb.com/covers/44/64/9780373834464.jpg'), - ('0345357019', 'Roofworld', 'https://images.isbndb.com/covers/70/14/9780345357014.jpg'), - ('0679433228', 'Erotic Poems (Everyman''s Library Pocket Poets)', 'https://images.isbndb.com/covers/32/24/9780679433224.jpg'), - ('0446529540', 'Futureland: Nine Stories Of An Imminent World', 'https://images.isbndb.com/covers/95/49/9780446529549.jpg'), - ('0681415207', 'The Immortal John Lennon: 1940-1980 (The Immortal Series)', 'https://images.isbndb.com/covers/52/01/9780681415201.jpg'), - ('1861870019', 'My Daughter, My Joy', 'https://images.isbndb.com/covers/00/18/9781861870018.jpg'), - ('0811826848', 'The Beatles Anthology', 'https://images.isbndb.com/covers/68/46/9780811826846.jpg'), - ('0375756469', 'Women', 'https://images.isbndb.com/covers/64/67/9780375756467.jpg'), - ('067164405X', 'Blood And Water And Other Tales', 'https://images.isbndb.com/covers/40/55/9780671644055.jpg'), - ('0575061596', 'About A Boy', 'https://images.isbndb.com/covers/15/90/9780575061590.jpg'), - ('0340718153', 'My Legendary Girlfriend', 'https://images.isbndb.com/covers/81/55/9780340718155.jpg'), - ('0380817845', 'Man At Work', 'https://images.isbndb.com/covers/78/49/9780380817849.jpg'), - ('0553560468', 'Wilderness Tips', 'https://images.isbndb.com/covers/04/66/9780553560466.jpg'), - ('0312868332', 'The Tooth Fairy', 'https://images.isbndb.com/covers/83/38/9780312868338.jpg'), - ('0446356832', 'The Sands Of Time', 'https://images.isbndb.com/covers/68/31/9780446356831.jpg'), - ('0553263633', 'Martian Chronicles', 'https://images.isbndb.com/covers/36/33/9780553263633.jpg'), - ('0060976977', 'Amazing Grace: The Lives Of Children And The Conscience Of A Nation', 'https://images.isbndb.com/covers/69/72/9780060976972.jpg'), - ('0553280325', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/03/26/9780553280326.jpg'), - ('0373810431', 'Expiration Date (Men At Work: Doctor, Doctor #31)', 'https://images.isbndb.com/covers/04/37/9780373810437.jpg'), - ('0373810482', 'The Miracle (Men At Work: Doctor, Doctor #36)', 'https://images.isbndb.com/covers/04/82/9780373810482.jpg'), - ('0373033605', 'A Brief Encounter (Harlequin Romance, No. 3360)', 'https://images.isbndb.com/covers/36/07/9780373033607.jpg'), - ('0373162669', 'Always A Bridesmaid (Harlequin American Romance)', 'https://images.isbndb.com/covers/26/66/9780373162666.jpg'), - ('0373226063', 'Bayou Blood Brothers (Harlequin Intrigue, No. 606)(3 Stories) (Tyler, Nick, Jules)', 'https://images.isbndb.com/covers/60/61/9780373226061.jpg'), - ('0446363499', 'A Coral Kiss', 'https://images.isbndb.com/covers/34/95/9780446363495.jpg'), - ('1583140379', 'Fools Rush In (Arabesque)', 'https://images.isbndb.com/covers/03/76/9781583140376.jpg'), - ('0373810601', 'Hotshot (Men At Work: Magnificent Men #48)', 'https://images.isbndb.com/covers/06/04/9780373810604.jpg'), - ('037307848X', 'Overnight Alibi (Silhouette Intimate Moments, No 848)', 'https://images.isbndb.com/covers/84/86/9780373078486.jpg'), - ('0373075502', 'Uncertain Angels (Silhouette Intimate Moments No. 550)', 'https://images.isbndb.com/covers/55/08/9780373075508.jpg'), - ('0373707010', 'Hot And Bothered (Women Who Dare, Book 26) (Harlequin Superromance, No 701)', 'https://images.isbndb.com/covers/70/10/9780373707010.jpg'), - ('1551667959', '7b', 'https://images.isbndb.com/covers/79/59/9781551667959.jpg'), - ('0373031106', 'Fair Trial (Harlequin Romance)', 'https://images.isbndb.com/covers/11/08/9780373031108.jpg'), - ('0373030959', 'Unfriendly Proposition (Harlequin Romance #3095)', 'https://images.isbndb.com/covers/09/58/9780373030958.jpg'), - ('0671676245', 'Silver Linings', 'https://images.isbndb.com/covers/62/47/9780671676247.jpg'), - ('0373033923', 'Husband Material (Holding Out For A Hero) (Harlequin Romance)', 'https://images.isbndb.com/covers/39/28/9780373033928.jpg'), - ('051788139X', 'The Harmony Illustrated Encyclopedia Of Country Music: 3rd Edition', 'https://images.isbndb.com/covers/13/92/9780517881392.jpg'), - ('0141310685', 'Westmark (The Westmark Trilogy)', 'https://images.isbndb.com/covers/06/88/9780141310688.jpg'), - ('0373226276', 'His Only Desire (Harlequin Intrigue, # 627)', 'https://images.isbndb.com/covers/62/76/9780373226276.jpg'), - ('0373243952', 'Ties That Bind (A Family Bond) (Harlequin Special Edition)', 'https://images.isbndb.com/covers/39/52/9780373243952.jpg'), - ('0375503838', 'The Very Persistent Gappers Of Frip', 'https://images.isbndb.com/covers/38/32/9780375503832.jpg'), - ('0373243944', 'Do You Take This Rebel? (The Calamity Janes, Book 1)', 'https://images.isbndb.com/covers/39/45/9780373243945.jpg'), - ('0373709889', 'Now That You''re Here (Harlequin Superromance No. 988)', 'https://images.isbndb.com/covers/98/85/9780373709885.jpg'), - ('0373709625', 'Fully Engaged (Harlequin Superromance No. 962)', 'https://images.isbndb.com/covers/96/25/9780373709625.jpg'), - ('0373600739', 'Falling Angel (Rita Award)', 'https://images.isbndb.com/covers/07/31/9780373600731.jpg'), - ('0373243979', 'Race To The Altar (Harlequin Special Edition)', 'https://images.isbndb.com/covers/39/76/9780373243976.jpg'), - ('0345342445', 'Citizen Of The Galaxy', 'https://images.isbndb.com/covers/24/47/9780345342447.jpg'), - ('0345350596', 'The Star Beast', 'https://images.isbndb.com/covers/05/96/9780345350596.jpg'), - ('0375503269', 'Anonymous Rex: A Detective Story', 'https://images.isbndb.com/covers/32/69/9780375503269.jpg'), - ('0689711522', 'Silver On The Tree (The Dark Is Rising, Book 4)', 'https://images.isbndb.com/covers/15/27/9780689711527.jpg'), - ('0689710895', 'The Grey King (The Dark Is Rising Sequence)', 'https://images.isbndb.com/covers/08/96/9780689710896.jpg'), - ('0375815147', 'Colman', 'https://images.isbndb.com/covers/51/40/9780375815140.jpg'), - ('1557733856', 'A New Leash On Death', 'https://images.isbndb.com/covers/38/56/9781557733856.jpg'), - ('0553294849', 'Ruffly Speaking (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/48/42/9780553294842.jpg'), - ('0553297341', 'Gone To The Dogs (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/73/48/9780553297348.jpg'), - ('0898153778', 'Friendly Foods (Gourmet Vegetarian Cuisine)', 'https://images.isbndb.com/covers/37/74/9780898153774.jpg'), - ('0880117168', 'Strength Training Past 50: (Ageless Athlete)', 'https://images.isbndb.com/covers/71/66/9780880117166.jpg'), - ('0590462237', 'The Littles To The Rescue', 'https://images.isbndb.com/covers/22/35/9780590462235.jpg'), - ('0307115208', 'When I Grow Up (Look-Look)', 'https://images.isbndb.com/covers/52/01/9780307115201.jpg'), - ('0743260244', 'Against All Enemies: Inside America''s War On Terror', 'https://images.isbndb.com/covers/02/44/9780743260244.jpg'), - ('0425115844', 'The Crying Child', 'https://images.isbndb.com/covers/58/48/9780425115848.jpg'), - ('0553580523', 'Evil Breeding (Dog Lover''s Mystery)', 'https://images.isbndb.com/covers/05/25/9780553580525.jpg'), - ('0915368587', 'Ingathering: The Complete People Stories Of Zenna Henderson', 'https://images.isbndb.com/covers/85/87/9780915368587.jpg'), - ('0679833692', 'Juniper', 'https://images.isbndb.com/covers/36/97/9780679833697.jpg'), - ('0394825985', 'Wise Child', 'https://images.isbndb.com/covers/59/84/9780394825984.jpg'), - ('0759228086', 'Silver Sun', 'https://images.isbndb.com/covers/80/85/9780759228085.jpg'), - ('067144378X', 'SABLE MOON', 'https://images.isbndb.com/covers/37/88/9780671443788.jpg'), - ('0812502124', 'Prentice Alvin (Tales Of Alvin Maker, Book 3)', 'https://images.isbndb.com/covers/21/21/9780812502121.jpg'), - ('0812533593', 'Red Prophet: The Tales Of Alvin Maker, Volume II', 'https://images.isbndb.com/covers/35/90/9780812533590.jpg'), - ('0812533534', 'Seventh Son (Tales Of Alvin Maker, Vol. I)', 'https://images.isbndb.com/covers/35/38/9780812533538.jpg'), - ('0440236061', 'Unfit To Practice', 'https://images.isbndb.com/covers/60/61/9780440236061.jpg'), - ('0743444523', 'Sweet Dreams, Irene: An Irene Kelly Novel', 'https://images.isbndb.com/covers/45/21/9780743444521.jpg'), - ('0743474325', 'Judgment Of The Witch (Speaks The Nightbird, Vol. 1)', 'https://images.isbndb.com/covers/43/20/9780743474320.jpg'), - ('067102406X', 'Mosaic', 'https://images.isbndb.com/covers/40/62/9780671024062.jpg'), - ('0061094560', 'Flashpoint', 'https://images.isbndb.com/covers/45/69/9780061094569.jpg'), - ('0451210891', 'Suspicion Of Madness', 'https://images.isbndb.com/covers/08/90/9780451210890.jpg'), - ('0345447409', 'Until Dark', 'https://images.isbndb.com/covers/74/01/9780345447401.jpg'), - ('0553571842', 'After Caroline', 'https://images.isbndb.com/covers/18/44/9780553571844.jpg'), - ('0936034025', 'We''re In The Mountains, Not Over The Hill: Tales And Tips From Seasoned Women Backpackers', 'https://images.isbndb.com/covers/40/27/9780936034027.jpg'), - ('0553583441', 'Touching Evil', 'https://images.isbndb.com/covers/34/41/9780553583441.jpg'), - ('0425168948', 'Dove In The Window (Benni Harper Mystery)', 'https://images.isbndb.com/covers/89/43/9780425168943.jpg'), - ('0786817070', 'Artemis Fowl (Artemis Fowl, Book 1)', 'https://images.isbndb.com/covers/70/78/9780786817078.jpg'), - ('0140230165', 'The Te Of Piglet', 'https://images.isbndb.com/covers/01/61/9780140230161.jpg'), - ('0553258176', 'Light On The Mountain', 'https://images.isbndb.com/covers/81/72/9780553258172.jpg'), - ('0553575538', 'Stealing Shadows (Shadows Trilogy)', 'https://images.isbndb.com/covers/55/38/9780553575538.jpg'), - ('1557734909', 'A Bite Of Death (A Dog Lover''s Mystery, 3rd In The Series) (A Holly Winter Mystery)', 'https://images.isbndb.com/covers/49/07/9781557734907.jpg'), - ('034546074X', 'The Clinic (Alex Delaware)', 'https://images.isbndb.com/covers/07/45/9780345460745.jpg'), - ('0152325808', 'Growing Vegetable Soup (Voyager Books)', 'https://images.isbndb.com/covers/58/00/9780152325800.jpg'), - ('0439163099', 'The Mozart Season', 'https://images.isbndb.com/covers/30/95/9780439163095.jpg'), - ('0449000265', 'Eight Weeks To Optimum Health: A Proven Program For Taking Full Advantage Of Your Body''s Natural Healing Power', 'https://images.isbndb.com/covers/02/67/9780449000267.jpg'), - ('0307119424', 'The New Baby', 'https://images.isbndb.com/covers/94/21/9780307119421.jpg'), - ('0064400026', 'Little House On The Prairie (Little House, No 2)', 'https://images.isbndb.com/covers/00/22/9780064400022.jpg'), - ('0307117375', 'The Volcano Machine (Dino Riders)', 'https://images.isbndb.com/covers/73/73/9780307117373.jpg'), - ('0307128865', 'Disney''s Pocahontas (Golden Look-Look Book)', 'https://images.isbndb.com/covers/88/67/9780307128867.jpg'), - ('0816738556', 'Let''s Tell Time (First-Start Easy Readers)', 'https://images.isbndb.com/covers/85/57/9780816738557.jpg'), - ('0874065925', 'The Haunted Underwear', 'https://images.isbndb.com/covers/59/23/9780874065923.jpg'), - ('0440403553', 'Black Beauty', 'https://images.isbndb.com/covers/35/55/9780440403555.jpg'), - ('0439080967', 'Bad, Badder, Baddest (Bad Girls)', 'https://images.isbndb.com/covers/09/65/9780439080965.jpg'), - ('0821769340', 'Cold Blooded (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/93/48/9780821769348.jpg'), - ('0671885634', 'The Second Horror (99 Fear Street, No. 2)', 'https://images.isbndb.com/covers/56/32/9780671885632.jpg'), - ('0590442988', 'Karen''s Little Sister (Baby-Sitters Little Sister #6)', 'https://images.isbndb.com/covers/29/85/9780590442985.jpg'), - ('0553157124', 'Against Taffy Sinclair Club, The', 'https://images.isbndb.com/covers/71/23/9780553157123.jpg'), - ('0380724332', 'Skeleton Canyon (Joanna Brady Mysteries, Book 5)', 'https://images.isbndb.com/covers/43/38/9780380724338.jpg'), - ('0684196387', 'Two For The Dough (Stephanie Plum, No. 2) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/63/81/9780684196381.jpg'), - ('3596237262', 'Wie Meine Mutter', 'https://images.isbndb.com/covers/72/65/9783596237265.jpg'), - ('0140430091', 'The History Of Tom Jones (Penguin Classics)', 'https://images.isbndb.com/covers/00/97/9780140430097.jpg'), - ('0140620249', 'The Woman In White', 'https://images.isbndb.com/covers/02/45/9780140620245.jpg'), - ('3499179806', 'Werde Was Du Bist: Selbstverwirklichung Durch Psychosynthese: Selbstverwirklichung Durch Psychosynthese. (rororo Transformation)', 'https://images.isbndb.com/covers/98/08/9783499179808.jpg'), - ('3453188519', 'Beziehungskonferenz. Wege Zu Einem Konstruktiven Miteinander.', 'https://images.isbndb.com/covers/85/18/9783453188518.jpg'), - ('0140128107', 'The Courage Of Their Convictions: Sixteen Americans Who Fought Their Way To The Supreme Court', 'https://images.isbndb.com/covers/81/09/9780140128109.jpg'), - ('0060164662', '28 Barbary Lane: A "Tales Of The City" Omnibus', 'https://images.isbndb.com/covers/46/69/9780060164669.jpg'), - ('0385470819', 'A Time To Kill', 'https://images.isbndb.com/covers/08/10/9780385470810.jpg'), - ('0316779423', 'Barrel Fever: Stories And Essays', 'https://images.isbndb.com/covers/94/25/9780316779425.jpg'), - ('0679419624', 'The Palace Thief', 'https://images.isbndb.com/covers/96/24/9780679419624.jpg'), - ('0375400699', 'Love In The Time Of Cholera (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/06/98/9780375400698.jpg'), - ('0151000719', 'Last Watch Of The Night', 'https://images.isbndb.com/covers/07/15/9780151000715.jpg'), - ('1841950521', 'Seasons Of The Heart', 'https://images.isbndb.com/covers/05/25/9781841950525.jpg'), - ('0140366857', 'The Wind In The Willows', 'https://images.isbndb.com/covers/68/53/9780140366853.jpg'), - ('2909051196', 'Le Français : Cent Difficultés', 'https://images.isbndb.com/covers/11/92/9782909051192.jpg'), - ('2876916193', 'Le Petit Livre Des Tests Du Francais Correct', 'https://images.isbndb.com/covers/61/97/9782876916197.jpg'), - ('2253170127', 'Douce Nuit', 'https://images.isbndb.com/covers/01/29/9782253170129.jpg'), - ('2253170372', 'La Maison Du Clair De Lune', 'https://images.isbndb.com/covers/03/72/9782253170372.jpg'), - ('2253170569', 'Ni Vue Ni Connue', 'https://images.isbndb.com/covers/05/63/9782253170563.jpg'), - ('2253001457', 'Vipère Au Poing', 'https://images.isbndb.com/covers/14/54/9782253001454.jpg'), - ('2253140872', 'L''écume Des Jours', 'https://images.isbndb.com/covers/08/70/9782253140870.jpg'), - ('2070393577', 'Exercices De Style', 'https://images.isbndb.com/covers/35/72/9782070393572.jpg'), - ('2070375609', 'La Burlesque équipée Du Cycliste', 'https://images.isbndb.com/covers/56/08/9782070375608.jpg'), - ('2070375722', 'Enfants Des étoiles', 'https://images.isbndb.com/covers/57/21/9782070375721.jpg'), - ('2266002996', 'Le Secret Du Masque De Fer', 'https://images.isbndb.com/covers/29/98/9782266002998.jpg'), - ('2070322068', 'Les Orientales ; Les Feuilles D''automne', 'https://images.isbndb.com/covers/20/60/9782070322060.jpg'), - ('2253049417', 'Bilbo Le Hobbit', 'https://images.isbndb.com/covers/94/18/9782253049418.jpg'), - ('2253000868', 'Cri De La Chouette', 'https://images.isbndb.com/covers/08/60/9782253000860.jpg'), - ('2253006866', 'La Mort Du Petit Cheval', 'https://images.isbndb.com/covers/68/62/9782253006862.jpg'), - ('2253002895', 'Colline', 'https://images.isbndb.com/covers/28/95/9782253002895.jpg'), - ('2253051381', 'La Folle Journée, Ou, Le Mariage De Figaro', 'https://images.isbndb.com/covers/13/81/9782253051381.jpg'), - ('2253037796', 'Le Barbier De Séville', 'https://images.isbndb.com/covers/77/98/9782253037798.jpg'), - ('2857043821', 'Le Cycle Du Graal : La Naissance Du Roi Arthur', 'https://images.isbndb.com/covers/38/29/9782857043829.jpg'), - ('0061092606', 'Sacred Clowns (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/26/02/9780061092602.jpg'), - ('0752804510', 'Evening Class Uk Edition', 'https://images.isbndb.com/covers/45/14/9780752804514.jpg'), - ('0373270089', 'Waiting For The Wolf Moon (Silhouette Shadows)', 'https://images.isbndb.com/covers/00/88/9780373270088.jpg'), - ('0373123205', 'The Forced Marriage (Italian Husbands) (Harlequin Presents #2320)', 'https://images.isbndb.com/covers/32/09/9780373123209.jpg'), - ('0373037481', 'The Marriage Market (9 To 5)', 'https://images.isbndb.com/covers/74/83/9780373037483.jpg'), - ('0373118333', 'Father Of Her Child (Top Author) (Harlequin Presents)', 'https://images.isbndb.com/covers/83/35/9780373118335.jpg'), - ('0373196725', 'Counterfeit Princess (Catching The Crown)', 'https://images.isbndb.com/covers/67/22/9780373196722.jpg'), - ('0373613601', 'The Last Bachelor (Lone Star Country Club, 9)', 'https://images.isbndb.com/covers/36/01/9780373613601.jpg'), - ('0373196679', 'Betrothed To The Prince (Catching The Crown)', 'https://images.isbndb.com/covers/66/78/9780373196678.jpg'), - ('0373123167', 'An Enigmatic Man (Do Not Disturb!)', 'https://images.isbndb.com/covers/31/62/9780373123162.jpg'), - ('0373036582', 'Twins Included (Harlequin Romance, No. 3658)', 'https://images.isbndb.com/covers/65/85/9780373036585.jpg'), - ('0399206868', 'Getting Into Radio-Controlled Sports', 'https://images.isbndb.com/covers/68/63/9780399206863.jpg'), - ('0060085444', 'She Went All The Way', 'https://images.isbndb.com/covers/54/45/9780060085445.jpg'), - ('0373122829', 'Marriage On Command (Wedlocked!) (Harlequin Presents)', 'https://images.isbndb.com/covers/28/20/9780373122820.jpg'), - ('037316971X', 'Prescription: Marry Her Immediately: The Babies Of Doctors Circle (Harlequin American Romance, No 971)', 'https://images.isbndb.com/covers/97/19/9780373169719.jpg'), - ('0373123248', 'His Convenient Proposal (The Australians)', 'https://images.isbndb.com/covers/32/47/9780373123247.jpg'), - ('0590431250', 'Blind Date', 'https://images.isbndb.com/covers/12/55/9780590431255.jpg'), - ('0373037449', 'The Venetian Playboy''s Bride (The Counts Of Calvani)', 'https://images.isbndb.com/covers/74/45/9780373037445.jpg'), - ('0821766066', 'Seducing Alicia (Zebra Bouquet)', 'https://images.isbndb.com/covers/60/64/9780821766064.jpg'), - ('0892964049', 'Flight Of A Witch', 'https://images.isbndb.com/covers/40/48/9780892964048.jpg'), - ('0618260307', 'The Hobbit', 'https://images.isbndb.com/covers/03/00/9780618260300.jpg'), - ('0849995299', 'One Incredible Moment Celebrating The Majesty Of The Manger', 'https://images.isbndb.com/covers/52/93/9780849995293.jpg'), - ('0553258656', 'The House Of The Spirits', 'https://images.isbndb.com/covers/86/53/9780553258653.jpg'), - ('067081976X', 'Leaving Home: A Collection Of Lake Wobegon Stories', 'https://images.isbndb.com/covers/97/68/9780670819768.jpg'), - ('0020435207', 'The House Of Dies Drear (Dies Drear Chronicle)', 'https://images.isbndb.com/covers/52/04/9780020435204.jpg'), - ('0151829756', 'The Slaying Of The Dragon: Modern Tales Of The Playful Imagination', 'https://images.isbndb.com/covers/97/50/9780151829750.jpg'), - ('0060971819', 'Dancing At The Rascal Fair: A Novel', 'https://images.isbndb.com/covers/18/16/9780060971816.jpg'), - ('096444724X', 'The Great Adventure', 'https://images.isbndb.com/covers/72/40/9780964447240.jpg'), - ('0140440399', 'The History Of The Peloponnesian War', 'https://images.isbndb.com/covers/03/93/9780140440393.jpg'), - ('0871564599', 'The War Against The Greens: The "Wise-Use" Movement, The New Right, And Anti-Environmental Violence', 'https://images.isbndb.com/covers/45/97/9780871564597.jpg'), - ('0553247921', 'Hiroshima', 'https://images.isbndb.com/covers/79/23/9780553247923.jpg'), - ('0671415948', 'Hickory Dickory Death', 'https://images.isbndb.com/covers/59/45/9780671415945.jpg'), - ('0440215234', 'At Weddings And Wakes', 'https://images.isbndb.com/covers/52/33/9780440215233.jpg'), - ('0553290207', 'In Lane Three, Alex Archer', 'https://images.isbndb.com/covers/02/02/9780553290202.jpg'), - ('0140149937', 'The Women Of Deh Koh: Lives In An Iranian Village', 'https://images.isbndb.com/covers/99/37/9780140149937.jpg'), - ('0140444750', 'Early Christian Writings: The Apostolic Fathers (Penguin Classics)', 'https://images.isbndb.com/covers/47/59/9780140444759.jpg'), - ('0140017151', 'The Flame Trees Of Thika: Memories Of An African Childhood', 'https://images.isbndb.com/covers/71/51/9780140017151.jpg'), - ('0062740083', 'Emily Post On Weddings: Revised Edition', 'https://images.isbndb.com/covers/00/83/9780062740083.jpg'), - ('0385491085', 'Lady Oracle', 'https://images.isbndb.com/covers/10/82/9780385491082.jpg'), - ('0670869902', 'How Stella Got Her Groove Back', 'https://images.isbndb.com/covers/99/09/9780670869909.jpg'), - ('0345334930', 'More Momilies', 'https://images.isbndb.com/covers/49/30/9780345334930.jpg'), - ('0553255851', 'Where The Red Fern Grows', 'https://images.isbndb.com/covers/58/50/9780553255850.jpg'), - ('1904301088', 'Raggy Boy Trilogy', 'https://images.isbndb.com/covers/10/80/9781904301080.jpg'), - ('0517556278', 'The Mammoth Hunters-Earth''s Children', 'https://images.isbndb.com/covers/62/76/9780517556276.jpg'), - ('0460876171', 'Wings Of The Dove (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/61/79/9780460876179.jpg'), - ('0064401847', 'Bridge To Terabithia', 'https://images.isbndb.com/covers/18/45/9780064401845.jpg'), - ('0340188022', 'Across The Bitter Sea (Coronet Books)', 'https://images.isbndb.com/covers/80/26/9780340188026.jpg'), - ('0385315279', 'The Fiery Cross', 'https://images.isbndb.com/covers/52/72/9780385315272.jpg'), - ('051509465X', 'Dancing On My Grave', 'https://images.isbndb.com/covers/46/57/9780515094657.jpg'), - ('0684174685', 'THIS SIDE OF PARADISE (Scribner Classic)', 'https://images.isbndb.com/covers/46/86/9780684174686.jpg'), - ('0553569074', 'Wouldn''t Take Nothing For My Journey Now', 'https://images.isbndb.com/covers/90/70/9780553569070.jpg'), - ('1571740252', 'Conversations With God: An Uncommon Dialogue', 'https://images.isbndb.com/covers/02/50/9781571740250.jpg'), - ('0425082202', 'Mister Rogers Tr', 'https://images.isbndb.com/covers/22/01/9780425082201.jpg'), - ('039607412X', 'Masterpieces Of Murder', 'https://images.isbndb.com/covers/41/20/9780396074120.jpg'), - ('0671641778', 'The Firebrand', 'https://images.isbndb.com/covers/17/71/9780671641771.jpg'), - ('0671689711', 'The Duchess', 'https://images.isbndb.com/covers/97/11/9780671689711.jpg'), - ('0440514428', 'Cold Sassy Tree', 'https://images.isbndb.com/covers/44/28/9780440514428.jpg'), - ('0449230279', 'PEANUTS DOUBLE VOL 2', 'https://images.isbndb.com/covers/02/75/9780449230275.jpg'), - ('0440401224', 'The Peppermint Pig (Yearling Classic)', 'https://images.isbndb.com/covers/12/23/9780440401223.jpg'), - ('0553206575', 'The Crucible', 'https://images.isbndb.com/covers/65/79/9780553206579.jpg'), - ('0553211013', 'Madame Bovary', 'https://images.isbndb.com/covers/10/16/9780553211016.jpg'), - ('0553561278', 'For The Sake Of Elena', 'https://images.isbndb.com/covers/12/72/9780553561272.jpg'), - ('0449700712', 'Dicey''s Song', 'https://images.isbndb.com/covers/07/16/9780449700716.jpg'), - ('0440215978', 'Land Of Hope (Ellis Island)', 'https://images.isbndb.com/covers/59/74/9780440215974.jpg'), - ('0064402967', 'Mandy', 'https://images.isbndb.com/covers/29/65/9780064402965.jpg'), - ('0553272586', 'Farewell To Manzanar', 'https://images.isbndb.com/covers/25/81/9780553272581.jpg'), - ('0375507507', 'Don''t Let''s Go To The Dogs Tonight: An African Childhood', 'https://images.isbndb.com/covers/75/02/9780375507502.jpg'), - ('0898700744', 'Prayer', 'https://images.isbndb.com/covers/07/49/9780898700749.jpg'), - ('1576832899', 'The Message: The Bible In Contemporary Language', 'https://images.isbndb.com/covers/28/99/9781576832899.jpg'), - ('0380817705', 'The Sandman: Book Of Dreams', 'https://images.isbndb.com/covers/77/02/9780380817702.jpg'), - ('0060907894', 'Crossing The Water', 'https://images.isbndb.com/covers/78/91/9780060907891.jpg'), - ('014018371X', 'Nostromo: A Tale Of The Seaboard (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/37/19/9780140183719.jpg'), - ('0785107649', 'X-Men 2 Backpack (Backpack Marvels)', 'https://images.isbndb.com/covers/76/44/9780785107644.jpg'), - ('1853261750', 'Idiot (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/17/56/9781853261756.jpg'), - ('0451197003', 'The Man In The Iron Mask', 'https://images.isbndb.com/covers/70/09/9780451197009.jpg'), - ('0551031085', 'Stress Family Robinson 2', 'https://images.isbndb.com/covers/10/81/9780551031081.jpg'), - ('0451139712', 'The Stand (Signet)', 'https://images.isbndb.com/covers/97/19/9780451139719.jpg'), - ('0553234811', 'The Valley Of The Horses (Book 2, Earth''s Children)', 'https://images.isbndb.com/covers/48/17/9780553234817.jpg'), - ('0394312066', 'Ordeal By Fire: The Civil War And Reconstruction', 'https://images.isbndb.com/covers/20/64/9780394312064.jpg'), - ('0226726770', 'The Cholera Years: The United States In 1832, 1849, And 1866', 'https://images.isbndb.com/covers/67/79/9780226726779.jpg'), - ('0880384514', 'Darkwalker On Moonshae (Forgotten Realms-Moonshae Trilogy, Book 1)', 'https://images.isbndb.com/covers/45/13/9780880384513.jpg'), - ('0671667815', 'Women On War: Essential Voices For The Nuclear Age From A Brilliant International Assembly', 'https://images.isbndb.com/covers/78/18/9780671667818.jpg'), - ('0553052268', 'The Renewal Factor: How The Best Get And Keep The Competitive Edge', 'https://images.isbndb.com/covers/22/68/9780553052268.jpg'), - ('0553268945', 'Forging The Darksword: The Darksword Trilogy, Volume 1', 'https://images.isbndb.com/covers/89/42/9780553268942.jpg'), - ('0345334515', 'From Sea To Shining Sea', 'https://images.isbndb.com/covers/45/10/9780345334510.jpg'), - ('0312140940', 'Wonder Boys: A Novel', 'https://images.isbndb.com/covers/09/46/9780312140946.jpg'), - ('0613117905', 'Little Beaver And The Echo (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/79/06/9780613117906.jpg'), - ('0862648092', 'What Do You Want To Be , Brian?', 'https://images.isbndb.com/covers/80/91/9780862648091.jpg'), - ('074603010X', 'Where''s Rusty (Farmyard Tales Flap Books Series)', 'https://images.isbndb.com/covers/01/03/9780746030103.jpg'), - ('0142300128', 'The Very Noisy Night (Picture Puffins)', 'https://images.isbndb.com/covers/01/21/9780142300121.jpg'), - ('0750003049', 'Six Dinner Sid (Picture Books)', 'https://images.isbndb.com/covers/30/49/9780750003049.jpg'), - ('0749720182', 'The Adventures Of Thomas: V. 4 (Thomas Photo Paperbacks)', 'https://images.isbndb.com/covers/01/86/9780749720186.jpg'), - ('0006642004', 'Life With Loopy', 'https://images.isbndb.com/covers/20/08/9780006642008.jpg'), - ('0006643094', 'Carrot Tops And Cotton Tails', 'https://images.isbndb.com/covers/30/98/9780006643098.jpg'), - ('0689853491', 'We''re Going On A Bear Hunt', 'https://images.isbndb.com/covers/34/94/9780689853494.jpg'), - ('0744530717', 'The Elephant Tree', 'https://images.isbndb.com/covers/07/11/9780744530711.jpg'), - ('0679883878', 'Hoot', 'https://images.isbndb.com/covers/38/76/9780679883876.jpg'), - ('058242092X', 'Dinosaurs And All That Rubbish (Storytime Giants)', 'https://images.isbndb.com/covers/09/22/9780582420922.jpg'), - ('0749725028', 'Miss Bilbery S New House Pb (Mam)', 'https://images.isbndb.com/covers/50/20/9780749725020.jpg'), - ('0434971383', 'Thomas And The Station Cat: Lift The Flap Book', 'https://images.isbndb.com/covers/13/81/9780434971381.jpg'), - ('0805067868', 'Humphrey''s Corner', 'https://images.isbndb.com/covers/78/66/9780805067866.jpg'), - ('0811828379', 'The Golden Egg (Templar)', 'https://images.isbndb.com/covers/83/76/9780811828376.jpg'), - ('0140563733', 'Spot Visits His Grandparents', 'https://images.isbndb.com/covers/37/33/9780140563733.jpg'), - ('2253009164', 'La Machine Infernale', 'https://images.isbndb.com/covers/91/60/9782253009160.jpg'), - ('2070412571', 'La Maison Du Sommeil', 'https://images.isbndb.com/covers/25/70/9782070412570.jpg'), - ('0440224837', 'The Long Road Home', 'https://images.isbndb.com/covers/48/39/9780440224839.jpg'), - ('0812520424', 'The Untold Legend Of The Batman', 'https://images.isbndb.com/covers/04/22/9780812520422.jpg'), - ('0451198247', 'Sprinter', 'https://images.isbndb.com/covers/82/42/9780451198242.jpg'), - ('2070362361', 'La Cantatrice Chauve Suivi De La Leçon', 'https://images.isbndb.com/covers/23/63/9782070362363.jpg'), - ('2253152064', 'Elle M''appelait Miette', 'https://images.isbndb.com/covers/20/64/9782253152064.jpg'), - ('0375726322', 'The Dark Room: A Novel', 'https://images.isbndb.com/covers/63/23/9780375726323.jpg'), - ('2290314110', 'La Métamorphose Suivi De "Dans La Colonie Pénitentiaire"', 'https://images.isbndb.com/covers/41/11/9782290314111.jpg'), - ('2723407381', 'Balade Au Bout Du Monde, Tome 3 : Le Bâtard', 'https://images.isbndb.com/covers/73/80/9782723407380.jpg'), - ('2723407403', 'Balade Au Bout Du Monde, Tome 2 : Grand Pays', 'https://images.isbndb.com/covers/74/03/9782723407403.jpg'), - ('2723407411', 'Balade Au Bout Du Monde, Tome 1 : La Prison', 'https://images.isbndb.com/covers/74/10/9782723407410.jpg'), - ('2070513726', 'Le Bon Gros Géant', 'https://images.isbndb.com/covers/37/27/9782070513727.jpg'), - ('2070544281', 'Sacrées Sorcières', 'https://images.isbndb.com/covers/42/88/9782070544288.jpg'), - ('2264027681', 'La Triste Fin Du Petit Enfant Huître Et Autres Histoires', 'https://images.isbndb.com/covers/76/89/9782264027689.jpg'), - ('2266120158', 'Le Silence Des Agneaux', 'https://images.isbndb.com/covers/01/59/9782266120159.jpg'), - ('0723206015', 'The Tale Of The Flopsy Bunnies (Potter 23 Tales)', 'https://images.isbndb.com/covers/60/19/9780723206019.jpg'), - ('0843110589', 'Paddington''s Shopping Adventure', 'https://images.isbndb.com/covers/05/86/9780843110586.jpg'), - ('014143984X', 'Dracula (Penguin Classics)', 'https://images.isbndb.com/covers/98/46/9780141439846.jpg'), - ('2290307831', 'La Parfaite Lumière', 'https://images.isbndb.com/covers/78/30/9782290307830.jpg'), - ('0671619055', 'Flood', 'https://images.isbndb.com/covers/90/53/9780671619053.jpg'), - ('2266022504', 'Si C''est Un Homme', 'https://images.isbndb.com/covers/25/07/9782266022507.jpg'), - ('2020291541', 'Je Suis Vivant Et Vous êtes Morts', 'https://images.isbndb.com/covers/15/45/9782020291545.jpg'), - ('2707318094', 'Qui A Tué Roger Ackroyd ?', 'https://images.isbndb.com/covers/80/91/9782707318091.jpg'), - ('2871294798', 'Lady Oscar : La Rose De Versailles, Tome 2', 'https://images.isbndb.com/covers/47/95/9782871294795.jpg'), - ('287129478X', 'Lady Oscar : La Rose De Versailles, Tome 1', 'https://images.isbndb.com/covers/47/88/9782871294788.jpg'), - ('226612269X', 'Où Es-tu ?', 'https://images.isbndb.com/covers/26/96/9782266122696.jpg'), - ('2070375161', 'La Ferme Des Animaux', 'https://images.isbndb.com/covers/51/65/9782070375165.jpg'), - ('0140274294', 'Lady Chatterley''s Lover (Essential Penguin)', 'https://images.isbndb.com/covers/42/95/9780140274295.jpg'), - ('2266085778', 'Les Châtiments', 'https://images.isbndb.com/covers/57/79/9782266085779.jpg'), - ('2253001295', 'Electre', 'https://images.isbndb.com/covers/12/94/9782253001294.jpg'), - ('273811167X', 'Le Voyage D''Hector Ou La Recherche Du Bonheur', 'https://images.isbndb.com/covers/16/78/9782738111678.jpg'), - ('2264028815', 'Ubik', 'https://images.isbndb.com/covers/88/15/9782264028815.jpg'), - ('0752853694', 'Unadulterated Cat', 'https://images.isbndb.com/covers/36/97/9780752853697.jpg'), - ('0971116288', 'Oogie Boogie Central', 'https://images.isbndb.com/covers/62/83/9780971116283.jpg'), - ('0679416781', 'The English Patient', 'https://images.isbndb.com/covers/67/84/9780679416784.jpg'), - ('0451528484', 'The Upanishads: Breath Of The Eternal', 'https://images.isbndb.com/covers/84/83/9780451528483.jpg'), - ('156476303X', 'The Little Quarterback (Shaun Gayle''s Sports Tales)', 'https://images.isbndb.com/covers/30/37/9781564763037.jpg'), - ('2207300838', 'Les Langages De Pao', 'https://images.isbndb.com/covers/08/31/9782207300831.jpg'), - ('0380603764', 'An Indecent Obsession', 'https://images.isbndb.com/covers/37/63/9780380603763.jpg'), - ('0345450515', 'Billie''s Kiss (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/05/17/9780345450517.jpg'), - ('0671640003', 'Winter In Jerusalem', 'https://images.isbndb.com/covers/00/02/9780671640002.jpg'), - ('033390785X', 'Ice Station', 'https://images.isbndb.com/covers/78/56/9780333907856.jpg'), - ('0156006332', 'Finbar''s Hotel: A Novel', 'https://images.isbndb.com/covers/63/30/9780156006330.jpg'), - ('0451526988', 'Immigrant Voices: Twenty-Four Voices On Becoming An American (Signet Classics)', 'https://images.isbndb.com/covers/69/84/9780451526984.jpg'), - ('0606006133', 'Ethan Frome', 'https://images.isbndb.com/covers/61/32/9780606006132.jpg'), - ('0375725296', 'Eclipse: A Novel', 'https://images.isbndb.com/covers/52/96/9780375725296.jpg'), - ('0312420366', 'The Debt To Pleasure: A Novel', 'https://images.isbndb.com/covers/03/69/9780312420369.jpg'), - ('0590673211', 'Under The Magician''s Spell (Give Yourself Goosebumps)', 'https://images.isbndb.com/covers/32/11/9780590673211.jpg'), - ('1875657320', 'Foxspell', 'https://images.isbndb.com/covers/73/22/9781875657322.jpg'), - ('0091832861', 'Bat Attack Pb (Hair-raisers)', 'https://images.isbndb.com/covers/28/65/9780091832865.jpg'), - ('1592247865', 'The Moonstone', 'https://images.isbndb.com/covers/78/68/9781592247868.jpg'), - ('0684852705', 'Hamlet''s Dresser: A Memoir', 'https://images.isbndb.com/covers/27/06/9780684852706.jpg'), - ('0752817051', 'Song Of Troy (OME)', 'https://images.isbndb.com/covers/70/57/9780752817057.jpg'), - ('0140176616', 'Asta''s Book', 'https://images.isbndb.com/covers/66/12/9780140176612.jpg'), - ('0330291610', 'Biggles: The Untold Story', 'https://images.isbndb.com/covers/16/13/9780330291613.jpg'), - ('1853260657', 'Secret Agent (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/50/9781853260650.jpg'), - ('0746020120', 'Storms And Hurricanes (Usborne Understanding Geography)', 'https://images.isbndb.com/covers/01/28/9780746020128.jpg'), - ('0954395913', 'A Revolution In Kindness', 'https://images.isbndb.com/covers/59/19/9780954395919.jpg'), - ('0446691216', 'Flash House', 'https://images.isbndb.com/covers/12/15/9780446691215.jpg'), - ('1862071624', 'Too True', 'https://images.isbndb.com/covers/16/29/9781862071629.jpg'), - ('0385336403', 'Cloud Of Sparrows', 'https://images.isbndb.com/covers/64/06/9780385336406.jpg'), - ('1400075637', 'I''m Not Scared', 'https://images.isbndb.com/covers/56/38/9781400075638.jpg'), - ('1860491235', 'Oyster', 'https://images.isbndb.com/covers/12/38/9781860491238.jpg'), - ('044652719X', 'The Lightstone (The Ea Cycle Series Book 1)', 'https://images.isbndb.com/covers/71/94/9780446527194.jpg'), - ('0881104086', 'Agent Arthur''s Arctic Adventure (Usborne Puzzle Adventures)', 'https://images.isbndb.com/covers/40/80/9780881104080.jpg'), - ('075350507X', 'To The Pole', 'https://images.isbndb.com/covers/50/76/9780753505076.jpg'), - ('2253152188', 'Le Cycle De Pendragon, Tome 1: Taliesin', 'https://images.isbndb.com/covers/21/87/9782253152187.jpg'), - ('0345439481', 'The High Flyer (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/94/82/9780345439482.jpg'), - ('3471794484', 'Quattrocento', 'https://images.isbndb.com/covers/44/87/9783471794487.jpg'), - ('0060000805', 'The Treasure Of Montsegur: A Novel Of The Cathars', 'https://images.isbndb.com/covers/08/06/9780060000806.jpg'), - ('0142003581', 'The Stone Carvers', 'https://images.isbndb.com/covers/35/89/9780142003589.jpg'), - ('156849663X', 'Empire Of The Sun', 'https://images.isbndb.com/covers/66/34/9781568496634.jpg'), - ('1400060648', 'The Bone Woman: A Forensic Anthropologist''s Search For Truth In The Mass Graves Of Rwanda, Bosnia, Croatia, And Kosovo', 'https://images.isbndb.com/covers/06/41/9781400060641.jpg'), - ('014100374X', 'Pants On Fire', 'https://images.isbndb.com/covers/37/40/9780141003740.jpg'), - ('0812541979', 'Tea From An Empty Cup', 'https://images.isbndb.com/covers/19/77/9780812541977.jpg'), - ('0679777377', 'The English Patient', 'https://images.isbndb.com/covers/73/73/9780679777373.jpg'), - ('1585672939', 'The Maharajah''s Box: An Imperial Story Of Conspiracy, Love, And A Guru''s Prophecy', 'https://images.isbndb.com/covers/29/36/9781585672936.jpg'), - ('0007119860', 'Colour Of Heaven', 'https://images.isbndb.com/covers/98/68/9780007119868.jpg'), - ('0061030015', 'The Rhythm Section', 'https://images.isbndb.com/covers/00/17/9780061030017.jpg'), - ('0531301427', 'Looking For Alibrandi', 'https://images.isbndb.com/covers/14/25/9780531301425.jpg'), - ('0140185844', 'The Tree Of Man (Penguin Classics)', 'https://images.isbndb.com/covers/58/43/9780140185843.jpg'), - ('0743234413', 'Cloudstreet : A Novel', 'https://images.isbndb.com/covers/44/12/9780743234412.jpg'), - ('0743228480', 'Dirt Music : A Novel', 'https://images.isbndb.com/covers/84/80/9780743228480.jpg'), - ('0743418735', 'Perfect Match', 'https://images.isbndb.com/covers/87/37/9780743418737.jpg'), - ('0671776134', 'Plain Truth: A Novel', 'https://images.isbndb.com/covers/61/38/9780671776138.jpg'), - ('0965881261', 'Geisha', 'https://images.isbndb.com/covers/12/65/9780965881265.jpg'), - ('0140104569', 'Ruth Park''s "Harp In The South" Novels: WITH Missus, Harp In The South AND Poor Man''s Orange', 'https://images.isbndb.com/covers/45/61/9780140104561.jpg'), - ('0330391763', 'Swan River', 'https://images.isbndb.com/covers/17/64/9780330391764.jpg'), - ('0330483013', 'The Fisher Child', 'https://images.isbndb.com/covers/30/18/9780330483018.jpg'), - ('0312421184', 'The Silence Of The Rain: An Inspector Espinosa Mystery', 'https://images.isbndb.com/covers/11/82/9780312421182.jpg'), - ('0747265097', 'Startling Moon', 'https://images.isbndb.com/covers/50/92/9780747265092.jpg'), - ('0618446877', 'Dark Star Safari: Overland From Cairo To Capetown', 'https://images.isbndb.com/covers/68/72/9780618446872.jpg'), - ('0679725229', 'Ada, Or Ardor: A Family Chronicle', 'https://images.isbndb.com/covers/52/20/9780679725220.jpg'), - ('0385418485', 'How The Irish Saved Civilization: The Untold Story Of Ireland''s Heroic Role From The Fall Of Rome To The Rise Of Medieval Europe', 'https://images.isbndb.com/covers/84/85/9780385418485.jpg'), - ('0385319452', 'A Cup Of Light', 'https://images.isbndb.com/covers/94/54/9780385319454.jpg'), - ('0156001314', 'The Name Of The Rose: Including The Author''s Postscript', 'https://images.isbndb.com/covers/13/11/9780156001311.jpg'), - ('1573229865', 'The Dream Of Scipio', 'https://images.isbndb.com/covers/98/69/9781573229869.jpg'), - ('0151004137', 'The Seven Storey Mountain: Fiftieth-Anniversary Edition', 'https://images.isbndb.com/covers/41/33/9780151004133.jpg'), - ('1841955469', 'Stargazing: Memoirs Of A Young Lighthouse Keeper', 'https://images.isbndb.com/covers/54/69/9781841955469.jpg'), - ('0316353299', 'Blue Highways: A Journey Into America', 'https://images.isbndb.com/covers/32/98/9780316353298.jpg'), - ('1869503171', 'Spirit Writing', 'https://images.isbndb.com/covers/31/78/9781869503178.jpg'), - ('0767903862', 'In A Sunburned Country', 'https://images.isbndb.com/covers/38/68/9780767903868.jpg'), - ('0060931671', 'The Crying Of Lot 49', 'https://images.isbndb.com/covers/16/74/9780060931674.jpg'), - ('0060730552', 'Touching The Void: The True Story Of One Man''s Miraculous Survival', 'https://images.isbndb.com/covers/05/50/9780060730550.jpg'), - ('009179319X', 'Neanderthal', 'https://images.isbndb.com/covers/31/97/9780091793197.jpg'), - ('0743444329', 'Geisha : A Life', 'https://images.isbndb.com/covers/43/23/9780743444323.jpg'), - ('0812563581', 'The Relic', 'https://images.isbndb.com/covers/35/80/9780812563580.jpg'), - ('1558850945', 'A Fire In The Earth', 'https://images.isbndb.com/covers/09/41/9781558850941.jpg'), - ('1575664550', 'Hanging Curve (Mickey Rawlings Baseball Mysteries)', 'https://images.isbndb.com/covers/45/52/9781575664552.jpg'), - ('0688145736', 'The Body In The Bog', 'https://images.isbndb.com/covers/57/36/9780688145736.jpg'), - ('1560796626', 'Runamok: A Novel About The Realities Of Small Business', 'https://images.isbndb.com/covers/66/26/9781560796626.jpg'), - ('0684191415', 'Postmortem: A Mystery Introducing Dr. Kay Scarpetta', 'https://images.isbndb.com/covers/14/16/9780684191416.jpg'), - ('0140092501', 'Chaos: Making A New Science', 'https://images.isbndb.com/covers/25/09/9780140092509.jpg'), - ('0553265520', 'Brain Child', 'https://images.isbndb.com/covers/55/21/9780553265521.jpg'), - ('074345300X', 'Bare Bones: A Novel (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/30/04/9780743453004.jpg'), - ('1932270329', 'Johnny Cash: An American Legend', 'https://images.isbndb.com/covers/03/27/9781932270327.jpg'), - ('0425191362', 'Isle Of Palms: A Lowcountry Tale', 'https://images.isbndb.com/covers/13/61/9780425191361.jpg'), - ('0451401492', 'Bitter Blood: A True Story Of Southern Family Pride, Madness, And Multiple Murder (Onyx)', 'https://images.isbndb.com/covers/14/96/9780451401496.jpg'), - ('0425042715', 'The Sixth Commandment', 'https://images.isbndb.com/covers/27/17/9780425042717.jpg'), - ('0312304250', 'Vertical Coffin: A Shane Scully Novel (Shane Scully Novels)', 'https://images.isbndb.com/covers/42/56/9780312304256.jpg'), - ('0385508603', 'The Bug', 'https://images.isbndb.com/covers/86/05/9780385508605.jpg'), - ('0399133143', 'The Tommyknockers', 'https://images.isbndb.com/covers/31/45/9780399133145.jpg'), - ('0570060265', 'Three Men Who Walked In Fire (Arch Books)', 'https://images.isbndb.com/covers/02/60/9780570060260.jpg'), - ('1558007725', 'Even Cowgirls Get The Blues', 'https://images.isbndb.com/covers/77/27/9781558007727.jpg'), - ('0671882198', 'Beguiled', 'https://images.isbndb.com/covers/21/98/9780671882198.jpg'), - ('1893910245', 'Patient Heal Thyself: A Remarkable Health Program Combining Ancient Wisdom With', 'https://images.isbndb.com/covers/02/49/9781893910249.jpg'), - ('0425133516', 'The Hunt For Red October (Jack Ryan)', 'https://images.isbndb.com/covers/35/14/9780425133514.jpg'), - ('0553583298', 'Hard News (Rune Trilogy)', 'https://images.isbndb.com/covers/32/98/9780553583298.jpg'), - ('0375505547', 'I Love You, Ronnie: The Letters Of Ronald Reagan To Nancy Reagan', 'https://images.isbndb.com/covers/55/46/9780375505546.jpg'), - ('0899199089', 'Leaving Cold Sassy: The Unfinished Sequel To Cold Sassy Tree', 'https://images.isbndb.com/covers/90/85/9780899199085.jpg'), - ('0151881006', 'Thomas Gray: Philosopher Cat', 'https://images.isbndb.com/covers/10/00/9780151881000.jpg'), - ('0425174360', 'The Wedding Guide For The Grownup Bride: Getting Married When You''re Old Enough To Know What You''re Doing', 'https://images.isbndb.com/covers/43/64/9780425174364.jpg'), - ('0802713815', 'Sun, Moon And Earth (Wooden Books)', 'https://images.isbndb.com/covers/38/10/9780802713810.jpg'), - ('0875964125', 'Fat To Firm At Any Age : Weight Loss Strategies For Women Who Want To Slim Down, Shape Up, And Get Rid Of Annoying Bulges At 30, 40 And Beyond', 'https://images.isbndb.com/covers/41/26/9780875964126.jpg'), - ('0385325126', 'I Love You So Much', 'https://images.isbndb.com/covers/51/27/9780385325127.jpg'), - ('0486408760', 'Selected Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/67/9780486408767.jpg'), - ('039588408X', 'Without: Poems', 'https://images.isbndb.com/covers/40/89/9780395884089.jpg'), - ('1569021074', 'Blankets Of Sand: Poems Of War And Exile', 'https://images.isbndb.com/covers/10/71/9781569021071.jpg'), - ('044801582X', 'Marshmallow Worlds', 'https://images.isbndb.com/covers/58/28/9780448015828.jpg'), - ('0844239461', 'Zen: A Way Of Life (Teach Yourself Books)', 'https://images.isbndb.com/covers/94/60/9780844239460.jpg'), - ('0679439242', 'Phenomenal Woman: Four Poems Celebrating Women', 'https://images.isbndb.com/covers/92/40/9780679439240.jpg'), - ('0671017586', 'I Think Im Outta Here: A Memoir', 'https://images.isbndb.com/covers/75/83/9780671017583.jpg'), - ('0385140932', 'Lord, Let Me Love', 'https://images.isbndb.com/covers/09/35/9780385140935.jpg'), - ('0646286927', 'Success With Soul: New Insights To Achieving Success With Real Meaning', 'https://images.isbndb.com/covers/69/21/9780646286921.jpg'), - ('0385490615', 'Notes On The Kitchen Table', 'https://images.isbndb.com/covers/06/10/9780385490610.jpg'), - ('0887482570', 'Scattering The Ashes (Carnegie Mellon Poetry Series)', 'https://images.isbndb.com/covers/25/71/9780887482571.jpg'), - ('0800705246', 'Someone Cares', 'https://images.isbndb.com/covers/52/44/9780800705244.jpg'), - ('0929587227', 'Selected Short Stories Of Sinclair Lewis (Rep)', 'https://images.isbndb.com/covers/72/26/9780929587226.jpg'), - ('0684855631', 'The Empty Chair', 'https://images.isbndb.com/covers/56/39/9780684855639.jpg'), - ('0934971609', 'Switch', 'https://images.isbndb.com/covers/16/07/9780934971607.jpg'), - ('0345382544', 'Simple Passion', 'https://images.isbndb.com/covers/25/42/9780345382542.jpg'), - ('0679775471', 'Ka: Stories Of The Mind And Gods Of India', 'https://images.isbndb.com/covers/54/78/9780679775478.jpg'), - ('0156838389', 'Sophocles, The Oedipus Cycle: Oedipus Rex, Oedipus At Colonus, Antigone', 'https://images.isbndb.com/covers/83/82/9780156838382.jpg'), - ('0618129030', 'The Fellowship Of The Ring (The Lord Of The Rings, Part 1)', 'https://images.isbndb.com/covers/90/34/9780618129034.jpg'), - ('0451162463', 'Dear Theo: The Autobiography Of Vincent Van Gogh (Signet)', 'https://images.isbndb.com/covers/24/65/9780451162465.jpg'), - ('0060536705', 'Who Will Take This Man?', 'https://images.isbndb.com/covers/67/01/9780060536701.jpg'), - ('0373708300', 'The Wrong Bride (Harlequin SuperRomance, No. 830)', 'https://images.isbndb.com/covers/83/07/9780373708307.jpg'), - ('0373079621', 'The Admiral''s Bride ( Silhouette Intimate Moments Tall, Dark & Dangerous, #962)', 'https://images.isbndb.com/covers/96/29/9780373079629.jpg'), - ('0373196636', 'The Knight''s Kiss', 'https://images.isbndb.com/covers/66/30/9780373196630.jpg'), - ('0553562746', 'Fanta C', 'https://images.isbndb.com/covers/27/43/9780553562743.jpg'), - ('0373706901', 'The Baby Contract : 9 Months Later (Harlequin Superromance No. 690)', 'https://images.isbndb.com/covers/69/07/9780373706907.jpg'), - ('0373871864', 'Out Of The Shadows (Love Inspired #179)', 'https://images.isbndb.com/covers/18/65/9780373871865.jpg'), - ('0373706987', 'You Again: Showcase (Harlequin Superromance No. 698)', 'https://images.isbndb.com/covers/69/83/9780373706983.jpg'), - ('0373707959', 'The Want Ad (Harlequin Superromance No. 795)', 'https://images.isbndb.com/covers/79/59/9780373707959.jpg'), - ('037370836X', 'Her Secret, His Child: A Little Secret (Harlequin Superromance No. 836)', 'https://images.isbndb.com/covers/83/69/9780373708369.jpg'), - ('037324522X', 'There Goes The Bride (Kane''s Crossing)', 'https://images.isbndb.com/covers/52/22/9780373245222.jpg'), - ('037370822X', 'The Maine Man: By The Year 2000: Marriage (Harlequin Superromance No. 822)', 'https://images.isbndb.com/covers/82/22/9780373708222.jpg'), - ('0373259840', 'What''s Your Pleasure?: Heat (Harlequin Temptation)', 'https://images.isbndb.com/covers/98/47/9780373259847.jpg'), - ('0373708084', 'Deborah''s Son: 9 Months Later (Harlequin Superromance No. 808)', 'https://images.isbndb.com/covers/80/86/9780373708086.jpg'), - ('037330157X', 'Inheritance (Western Lovers: Hitched In Haste #9)', 'https://images.isbndb.com/covers/15/77/9780373301577.jpg'), - ('0061082945', 'Always', 'https://images.isbndb.com/covers/29/48/9780061082948.jpg'), - ('0771086776', 'Matters Of The Heart', 'https://images.isbndb.com/covers/67/79/9780771086779.jpg'), - ('0849938635', 'The Oath', 'https://images.isbndb.com/covers/86/34/9780849938634.jpg'), - ('0373706200', 'Safekeeping (Women Who Dare, Book 13) (Harlequin Superromance, No 620)', 'https://images.isbndb.com/covers/62/04/9780373706204.jpg'), - ('0373707061', 'Daniel: Return To Calloway Corners (Harlequin Superromance No. 706)', 'https://images.isbndb.com/covers/70/65/9780373707065.jpg'), - ('1551666030', 'Prodigal Daughter', 'https://images.isbndb.com/covers/60/37/9781551666037.jpg'), - ('0553107232', 'Tough Cookie', 'https://images.isbndb.com/covers/72/34/9780553107234.jpg'), - ('0778320138', 'Chieftain (Mira S.)', 'https://images.isbndb.com/covers/01/35/9780778320135.jpg'), - ('0743431367', 'Uplift : Secrets From The Sisterhood Of Breast Cancer Survivors', 'https://images.isbndb.com/covers/13/61/9780743431361.jpg'), - ('0689856644', 'Sanctuary (Angel)', 'https://images.isbndb.com/covers/66/48/9780689856648.jpg'), - ('0440168724', 'A Perfect Stranger', 'https://images.isbndb.com/covers/87/20/9780440168720.jpg'), - ('0446527130', 'Envy', 'https://images.isbndb.com/covers/71/32/9780446527132.jpg'), - ('0061096024', 'Charity', 'https://images.isbndb.com/covers/60/20/9780061096020.jpg'), - ('0345289420', 'Introducing C. B. Greenfield', 'https://images.isbndb.com/covers/94/21/9780345289421.jpg'), - ('0553576666', 'The Next President', 'https://images.isbndb.com/covers/66/65/9780553576665.jpg'), - ('0380787865', 'Power Curve', 'https://images.isbndb.com/covers/78/69/9780380787869.jpg'), - ('0671774514', 'The Quest (Sonnet Books)', 'https://images.isbndb.com/covers/45/16/9780671774516.jpg'), - ('0425060772', 'The Case Of Lucy Bending', 'https://images.isbndb.com/covers/07/73/9780425060773.jpg'), - ('0515129739', 'Love''s Labyrinth (Time Passages)', 'https://images.isbndb.com/covers/97/31/9780515129731.jpg'), - ('0843948698', 'Wire Mesh Mothers', 'https://images.isbndb.com/covers/86/91/9780843948691.jpg'), - ('0553584898', 'Almost A Princess', 'https://images.isbndb.com/covers/48/99/9780553584899.jpg'), - ('0505524236', 'Night Visitor (Timeswept)', 'https://images.isbndb.com/covers/42/32/9780505524232.jpg'), - ('0515130419', 'The Night The Stars Fell', 'https://images.isbndb.com/covers/04/16/9780515130416.jpg'), - ('0843948078', 'The Man Of Steel', 'https://images.isbndb.com/covers/80/73/9780843948073.jpg'), - ('0373192398', 'Groom For Maggie (Whirlwind Weddings) (Silhouette Romance)', 'https://images.isbndb.com/covers/23/97/9780373192397.jpg'), - ('0553267159', 'The Dark Druid', 'https://images.isbndb.com/covers/71/50/9780553267150.jpg'), - ('0671629972', 'By Love Divided', 'https://images.isbndb.com/covers/99/77/9780671629977.jpg'), - ('0380777304', 'Dazzled', 'https://images.isbndb.com/covers/73/03/9780380777303.jpg'), - ('0671039938', 'Cinnamon (Shooting Stars, Bk. 1)', 'https://images.isbndb.com/covers/99/36/9780671039936.jpg'), - ('0515118230', 'Home Song', 'https://images.isbndb.com/covers/82/30/9780515118230.jpg'), - ('0380806304', 'Surrender To Love', 'https://images.isbndb.com/covers/63/00/9780380806300.jpg'), - ('0515101222', 'Spring Fancy', 'https://images.isbndb.com/covers/12/25/9780515101225.jpg'), - ('0553285947', 'Surrender', 'https://images.isbndb.com/covers/59/49/9780553285949.jpg'), - ('0345447867', 'The Apprentice- Tess Gerritsen', 'https://images.isbndb.com/covers/78/69/9780345447869.jpg'), - ('0373512112', 'The Seventh Night', 'https://images.isbndb.com/covers/21/19/9780373512119.jpg'), - ('037328800X', 'The Viking (The Viking Series, Book 1) (Harlequin Historical #200)', 'https://images.isbndb.com/covers/80/07/9780373288007.jpg'), - ('0373700474', 'Dark Side Of Love (Harlequin Superromance No. 47)', 'https://images.isbndb.com/covers/04/79/9780373700479.jpg'), - ('0451207963', 'The Deepest Edge', 'https://images.isbndb.com/covers/79/68/9780451207968.jpg'), - ('0743467191', 'Wildest Hearts', 'https://images.isbndb.com/covers/71/93/9780743467193.jpg'), - ('038075620X', 'Night Fire', 'https://images.isbndb.com/covers/62/09/9780380756209.jpg'), - ('0373703023', 'It''s All In The Game (Harlequin Superromance No. 302)', 'https://images.isbndb.com/covers/30/29/9780373703029.jpg'), - ('0553574078', 'Affair', 'https://images.isbndb.com/covers/40/74/9780553574074.jpg'), - ('055329945X', 'The Beloved Scoundrel', 'https://images.isbndb.com/covers/94/58/9780553299458.jpg'), - ('0373511876', 'Dreamscapes: Dark Moon', 'https://images.isbndb.com/covers/18/77/9780373511877.jpg'), - ('0515107662', 'The Sherbrooke Bride (Bride Series, Book 1)', 'https://images.isbndb.com/covers/76/61/9780515107661.jpg'), - ('0380820056', 'Stuck On You', 'https://images.isbndb.com/covers/00/54/9780380820054.jpg'), - ('0802705499', 'Travels Around America', 'https://images.isbndb.com/covers/54/95/9780802705495.jpg'), - ('050552435X', 'Whispers On The Wind (Futuristic Romance)', 'https://images.isbndb.com/covers/43/55/9780505524355.jpg'), - ('0373224818', 'Married In Haste (Hidden Identity, Book 6) (Harlequin Intrigue Series #481)', 'https://images.isbndb.com/covers/48/14/9780373224814.jpg'), - ('0061083275', 'Second Chances', 'https://images.isbndb.com/covers/32/73/9780061083273.jpg'), - ('0373195036', 'Eligible Bachelor', 'https://images.isbndb.com/covers/50/39/9780373195039.jpg'), - ('0373121709', 'All Night Long (Harlequin Presents Passion #2170)', 'https://images.isbndb.com/covers/17/00/9780373121700.jpg'), - ('0505524333', 'Marry Me, Maddie (Time Of Your Life)', 'https://images.isbndb.com/covers/43/31/9780505524331.jpg'), - ('0373036485', 'The Man She''ll Marry (Cowboy Grooms Wanted!)', 'https://images.isbndb.com/covers/64/86/9780373036486.jpg'), - ('0373121601', 'Rafael''s Love-Child (Harlequin Presents #2160)', 'https://images.isbndb.com/covers/16/01/9780373121601.jpg'), - ('0373168438', 'Who Gets To Marry Max? (Harlequin American Romance, No. 843)', 'https://images.isbndb.com/covers/84/39/9780373168439.jpg'), - ('0373121857', 'Bride On Demand (Harlequin Presents: No. 2185)', 'https://images.isbndb.com/covers/18/54/9780373121854.jpg'), - ('0505522969', 'Faithless Angel (Love Spell)', 'https://images.isbndb.com/covers/29/62/9780505522962.jpg'), - ('0828003882', 'Song Of Eve', 'https://images.isbndb.com/covers/38/89/9780828003889.jpg'), - ('155166450X', 'Impetuous', 'https://images.isbndb.com/covers/45/07/9781551664507.jpg'), - ('0671737821', 'Honor''s Splendour', 'https://images.isbndb.com/covers/78/25/9780671737825.jpg'), - ('0451205189', 'Murder Can Cool Off Your Affair (Desiree Shapiro Mystery #9)', 'https://images.isbndb.com/covers/51/86/9780451205186.jpg'), - ('0821747703', 'Beloved', 'https://images.isbndb.com/covers/77/04/9780821747704.jpg'), - ('0440213290', 'The Copper Beech', 'https://images.isbndb.com/covers/32/91/9780440213291.jpg'), - ('0373226934', 'Undercover Wife (The Colby Agency: The Specialists, Book 9) (Harlequin Intrigue Series #693)', 'https://images.isbndb.com/covers/69/31/9780373226931.jpg'), - ('038076735X', 'Lady Legend', 'https://images.isbndb.com/covers/73/59/9780380767359.jpg'), - ('0821768107', 'Anne''s Wish (Ballad Romances)', 'https://images.isbndb.com/covers/81/05/9780821768105.jpg'), - ('0441791212', 'Sweet Love Survive', 'https://images.isbndb.com/covers/12/17/9780441791217.jpg'), - ('0373707169', 'Trouble At Lone Spur (Home On The Ranch, Book 7) (Harlequin Superromance, No 716)', 'https://images.isbndb.com/covers/71/64/9780373707164.jpg'), - ('0446346438', 'Cactus Flower', 'https://images.isbndb.com/covers/64/36/9780446346436.jpg'), - ('0373226950', 'McQueen''s Heat (Harlequin Intrigue #695)', 'https://images.isbndb.com/covers/69/55/9780373226955.jpg'), - ('0821740121', 'Golden Threads (Lucky In Love No. 14)', 'https://images.isbndb.com/covers/01/25/9780821740125.jpg'), - ('0671521446', 'Carried Away', 'https://images.isbndb.com/covers/14/48/9780671521448.jpg'), - ('0373169299', 'At The Rancher''s Bidding (Harlequin American Romance, No 929)', 'https://images.isbndb.com/covers/92/90/9780373169290.jpg'), - ('067179793X', 'Princess Annie', 'https://images.isbndb.com/covers/79/35/9780671797935.jpg'), - ('0821768441', 'Love To Love You Baby (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/84/40/9780821768440.jpg'), - ('0886777755', 'Olympus', 'https://images.isbndb.com/covers/77/53/9780886777753.jpg'), - ('0440225868', 'Priceless', 'https://images.isbndb.com/covers/58/67/9780440225867.jpg'), - ('0373222467', 'Spirit Warrior (Harlequin Intrigue)', 'https://images.isbndb.com/covers/24/69/9780373222469.jpg'), - ('0762406984', 'World''s Shortest Stories Of Love And Death', 'https://images.isbndb.com/covers/69/82/9780762406982.jpg'), - ('0717802418', 'The Communist Manifesto', 'https://images.isbndb.com/covers/24/18/9780717802418.jpg'), - ('477001970X', '弓道の精神と明心―Illuminated Spirit [英文書]', 'https://images.isbndb.com/covers/97/07/9784770019707.jpg'), - ('1882180887', 'Basic Guide To Archery 2nd Edition (Official U.S. Olympic Sports)', 'https://images.isbndb.com/covers/08/82/9781882180882.jpg'), - ('0345409663', 'Servant Of The Bones', 'https://images.isbndb.com/covers/96/69/9780345409669.jpg'), - ('1878257528', 'Stop! The Watch: A Book Of Everyday, Ordinary, Anybody Olympics With Other (Klutz)', 'https://images.isbndb.com/covers/75/29/9781878257529.jpg'), - ('0865714487', 'Dumbing Us Down: The Hidden Curriculum Of Compulsory Schooling', 'https://images.isbndb.com/covers/44/89/9780865714489.jpg'), - ('0679724494', 'Kiss Of The Spider Woman', 'https://images.isbndb.com/covers/44/90/9780679724490.jpg'), - ('0805059970', 'Anne Frank: The Biography', 'https://images.isbndb.com/covers/99/77/9780805059977.jpg'), - ('0071360166', 'The Undergroundtrader.com Guide To Electronic Trading: Day Trading Techniques Of A Master Guerrilla Trader', 'https://images.isbndb.com/covers/01/66/9780071360166.jpg'), - ('0300096860', 'One World: The Ethics Of Globalization', 'https://images.isbndb.com/covers/68/66/9780300096866.jpg'), - ('039472903X', 'Ogilvy On Advertising', 'https://images.isbndb.com/covers/90/39/9780394729039.jpg'), - ('0851706517', 'The Birds (BFI Film Classics)', 'https://images.isbndb.com/covers/65/11/9780851706511.jpg'), - ('0670031518', 'The Blank Slate: The Modern Denial Of Human Nature', 'https://images.isbndb.com/covers/15/11/9780670031511.jpg'), - ('0786864230', 'Joy Shtick Or What Is The Existential Vacuum And Does It Come With Attachments', 'https://images.isbndb.com/covers/42/32/9780786864232.jpg'), - ('1852424214', 'Break It Down (High Risk Books)', 'https://images.isbndb.com/covers/42/13/9781852424213.jpg'), - ('0465005225', 'The Atoms Of Language: The Mind''s Hidden Rules Of Grammar', 'https://images.isbndb.com/covers/52/22/9780465005222.jpg'), - ('0425104338', 'Stephen King''s Danse Macabre', 'https://images.isbndb.com/covers/43/30/9780425104330.jpg'), - ('0451191935', 'Bachman Books: 4 Early Novels By Richard Bachman, Author Of The Regulators', 'https://images.isbndb.com/covers/19/39/9780451191939.jpg'), - ('0671792288', 'Bad Or, The Dumbing Of America', 'https://images.isbndb.com/covers/22/82/9780671792282.jpg'), - ('0787955876', 'The Contrarian''s Guide To Leadership', 'https://images.isbndb.com/covers/58/78/9780787955878.jpg'), - ('0743242602', 'The Myth Of The First Three Years: A New Understanding Of Early Brain Development And Lifelong Learning', 'https://images.isbndb.com/covers/26/08/9780743242608.jpg'), - ('0520204514', 'The Future Of The Book', 'https://images.isbndb.com/covers/45/15/9780520204515.jpg'), - ('0205318088', 'Mastering Public Speaking, Fourth Edition', 'https://images.isbndb.com/covers/80/87/9780205318087.jpg'), - ('014118485X', 'Seize The Day (Penguin Modern Classics)', 'https://images.isbndb.com/covers/48/52/9780141184852.jpg'), - ('1570623449', 'When Things Fall Apart: Heart Advice For Difficult Times (Shambhala Classics)', 'https://images.isbndb.com/covers/34/48/9781570623448.jpg'), - ('0446672483', 'The Good Marriage: How And Why Love Lasts', 'https://images.isbndb.com/covers/24/81/9780446672481.jpg'), - ('1558681752', 'Culture Shock! Taiwan (Culture Shock! A Survival Guide To Customs & Etiquette)', 'https://images.isbndb.com/covers/17/50/9781558681750.jpg'), - ('0394743644', 'Sleeping On The Wing: An Anthology Of Modern Poetry With Essays On Reading And Writing', 'https://images.isbndb.com/covers/36/46/9780394743646.jpg'), - ('0380713810', 'Made In America: An Informal History Of The English Language In The United States', 'https://images.isbndb.com/covers/38/13/9780380713813.jpg'), - ('067162248X', 'People Skills: How To Assert Yourself, Listen To Others, And Resolve Conflicts', 'https://images.isbndb.com/covers/24/80/9780671622480.jpg'), - ('0767913973', '30 Things Everyone Should Know How To Do Before Turning 30', 'https://images.isbndb.com/covers/39/73/9780767913973.jpg'), - ('0684867486', 'Yesterday I Cried: Celebrating The Lessons Of Living And Loving', 'https://images.isbndb.com/covers/74/89/9780684867489.jpg'), - ('1864502118', 'Lonely Planet Taiwan (Lonely Planet Taiwan: Travel Survival Kit)', 'https://images.isbndb.com/covers/21/14/9781864502114.jpg'), - ('1587410133', 'The Hazards Of Being Male: Surviving The Myth Of Masculine Privilege', 'https://images.isbndb.com/covers/01/30/9781587410130.jpg'), - ('0968246907', 'Tuiavii''s Way : A South Sea Chief''s Comments On Western Society', 'https://images.isbndb.com/covers/69/00/9780968246900.jpg'), - ('0316441791', 'Set Your Voice Free', 'https://images.isbndb.com/covers/17/97/9780316441797.jpg'), - ('0140125086', 'Bad Language (Penguin Language And Linguistics)', 'https://images.isbndb.com/covers/50/85/9780140125085.jpg'), - ('0140260234', 'Language Myths', 'https://images.isbndb.com/covers/02/36/9780140260236.jpg'), - ('0415222818', 'Thinking From A To Z', 'https://images.isbndb.com/covers/28/15/9780415222815.jpg'), - ('1904048145', 'Hal Hartley (Pocket Essential Series)', 'https://images.isbndb.com/covers/81/45/9781904048145.jpg'), - ('1573922110', 'Think To Win: The Power Of Logic In Everyday Life', 'https://images.isbndb.com/covers/21/11/9781573922111.jpg'), - ('0300087152', 'Humanity: A Moral History Of The Twentieth Century', 'https://images.isbndb.com/covers/71/54/9780300087154.jpg'), - ('0679756450', 'Portnoy''s Complaint', 'https://images.isbndb.com/covers/64/53/9780679756453.jpg'), - ('0340802995', 'Chinese Language, Life And Culture (Teach Yourself)', 'https://images.isbndb.com/covers/29/91/9780340802991.jpg'), - ('0140140328', 'The Granta Book Of The American Short Story', 'https://images.isbndb.com/covers/03/23/9780140140323.jpg'), - ('1573228583', 'Speaking With The Angel', 'https://images.isbndb.com/covers/85/89/9781573228589.jpg'), - ('0330334360', 'Essays In Love/a Novel', 'https://images.isbndb.com/covers/43/65/9780330334365.jpg'), - ('0140286780', 'Your Money Or Your Life: Transforming Your Relationship With Money And Achieving Financial Independence', 'https://images.isbndb.com/covers/67/86/9780140286786.jpg'), - ('0803959907', 'Intercultural Interactions: A Practical Guide (Cross Cultural Research And Methodology)', 'https://images.isbndb.com/covers/99/03/9780803959903.jpg'), - ('0679734031', 'The Art Of Fiction: Notes On Craft For Young Writers', 'https://images.isbndb.com/covers/40/31/9780679734031.jpg'), - ('0761123695', 'The Introvert Advantage: How To Thrive In An Extrovert World', 'https://images.isbndb.com/covers/36/99/9780761123699.jpg'), - ('0060997028', 'Life Is Elsewhere', 'https://images.isbndb.com/covers/70/21/9780060997021.jpg'), - ('0060997001', 'Farewell Waltz: A Novel', 'https://images.isbndb.com/covers/70/07/9780060997007.jpg'), - ('0618219196', 'The Seven Sins Of Memory: How The Mind Forgets And Remembers', 'https://images.isbndb.com/covers/91/93/9780618219193.jpg'), - ('0140289216', 'Sociolinguistics: An Introduction To Language And Society, Fourth Edition', 'https://images.isbndb.com/covers/92/13/9780140289213.jpg'), - ('0415167914', 'The Articulate Mammal: An Introduction To Psycholinguistics', 'https://images.isbndb.com/covers/79/18/9780415167918.jpg'), - ('0140135154', 'Ways Of Seeing: Based On The BBC Television Series', 'https://images.isbndb.com/covers/51/52/9780140135152.jpg'), - ('0553211684', 'Tess Of The D''Urbervilles (Bantam Classics)', 'https://images.isbndb.com/covers/16/89/9780553211689.jpg'), - ('0375757325', 'Robinson Crusoe (Modern Library Classics)', 'https://images.isbndb.com/covers/73/27/9780375757327.jpg'), - ('0684866005', 'Can''t Buy My Love: How Advertising Changes The Way We Think And Feel', 'https://images.isbndb.com/covers/60/00/9780684866000.jpg'), - ('0451525914', 'Women In Love (Signet Classic)', 'https://images.isbndb.com/covers/59/18/9780451525918.jpg'), - ('185788292X', 'Survival Kit For Overseas Living: For Americans Planning To Live And Work Abroad', 'https://images.isbndb.com/covers/29/26/9781857882926.jpg'), - ('0345362322', 'Know It All!', 'https://images.isbndb.com/covers/23/22/9780345362322.jpg'), - ('0874779472', 'Deep Writing: 7 Principles That Bring Ideas To Life', 'https://images.isbndb.com/covers/94/79/9780874779479.jpg'), - ('0393324869', 'Naked Economics: Undressing The Dismal Science', 'https://images.isbndb.com/covers/48/60/9780393324860.jpg'), - ('0385722192', 'Lullaby', 'https://images.isbndb.com/covers/21/93/9780385722193.jpg'), - ('0743455967', 'On Writing', 'https://images.isbndb.com/covers/59/61/9780743455961.jpg'), - ('0679758941', 'Nonzero: The Logic Of Human Destiny', 'https://images.isbndb.com/covers/89/45/9780679758945.jpg'), - ('0151104212', 'Babbitt', 'https://images.isbndb.com/covers/42/15/9780151104215.jpg'), - ('0679430946', 'The Hot Zone', 'https://images.isbndb.com/covers/09/40/9780679430940.jpg'), - ('0688164080', 'The KGB Bar Reader', 'https://images.isbndb.com/covers/40/89/9780688164089.jpg'), - ('1565840968', '''I Won''t Learn From You'': And Other Thoughts On Creative Maladjustment', 'https://images.isbndb.com/covers/09/66/9781565840966.jpg'), - ('0385094027', 'The Presentation Of Self In Everyday Life', 'https://images.isbndb.com/covers/40/23/9780385094023.jpg'), - ('157322829X', 'Coercion: Why We Listen To What "They" Say', 'https://images.isbndb.com/covers/82/99/9781573228299.jpg'), - ('0130957011', 'Tested Advertising Methods (Prentice Hall Business Classics)', 'https://images.isbndb.com/covers/70/16/9780130957016.jpg'), - ('1840463503', 'Introducing Learning And Memory', 'https://images.isbndb.com/covers/35/07/9781840463507.jpg'), - ('0435240609', 'SOURCE BOOK TEACH ENG FORN LAN', 'https://images.isbndb.com/covers/06/08/9780435240608.jpg'), - ('0840339402', 'Creativity Is Forever', 'https://images.isbndb.com/covers/94/09/9780840339409.jpg'), - ('0879804211', 'The Knight In Rusty Armor', 'https://images.isbndb.com/covers/42/13/9780879804213.jpg'), - ('0130647608', 'Critical Thinking: Tools For Taking Charge Of Your Professional And Personal Life', 'https://images.isbndb.com/covers/76/03/9780130647603.jpg'), - ('0060931361', 'Plato, Not Prozac!: Applying Eternal Wisdom To Everyday Problems', 'https://images.isbndb.com/covers/13/60/9780060931360.jpg'), - ('0582037670', 'Alternatives Games Exercises And Conversations For The Language Classroom (Pilgrims Longman Resource Books)', 'https://images.isbndb.com/covers/76/70/9780582037670.jpg'), - ('0531110397', 'Caution: This May Be An Advertisement : A Teen Guide To Advertising', 'https://images.isbndb.com/covers/03/93/9780531110393.jpg'), - ('0345333152', 'The Straight Dope', 'https://images.isbndb.com/covers/31/55/9780345333155.jpg'), - ('0194315193', 'The Good Grammar Book With Answers', 'https://images.isbndb.com/covers/51/97/9780194315197.jpg'), - ('0024031216', 'Freedom To Learn (3rd Edition)', 'https://images.isbndb.com/covers/12/11/9780024031211.jpg'), - ('0140137793', 'Lateral Thinking', 'https://images.isbndb.com/covers/77/98/9780140137798.jpg'), - ('0953309819', 'Resourceful English Teacher (Professional Perspectives)', 'https://images.isbndb.com/covers/98/18/9780953309818.jpg'), - ('1555831753', 'The Trouble With Harry Hay: Founder Of The Modern Gay Movement', 'https://images.isbndb.com/covers/17/52/9781555831752.jpg'), - ('0062513982', 'By The River Piedra I Sat Down And Wept', 'https://images.isbndb.com/covers/39/84/9780062513984.jpg'), - ('006251279X', 'The Pilgrimage - A Contemporary Quest For Ancient Wisdom', 'https://images.isbndb.com/covers/27/96/9780062512796.jpg'), - ('0345453557', 'Vivian Lives', 'https://images.isbndb.com/covers/35/56/9780345453556.jpg'), - ('093077356X', 'The Remains Of River Names', 'https://images.isbndb.com/covers/35/64/9780930773564.jpg'), - ('0060191988', 'A Night Without Armor: Poems', 'https://images.isbndb.com/covers/19/86/9780060191986.jpg'), - ('068483992X', 'MAKING YOUR OWN DAYS: THE PLEASURES OF READING AND WRITING POETRY', 'https://images.isbndb.com/covers/99/29/9780684839929.jpg'), - ('0425133656', 'Deep Thoughts', 'https://images.isbndb.com/covers/36/51/9780425133651.jpg'), - ('0874221501', 'Valley Walking: Notes On The Land (Northwest Voices Essay Series)', 'https://images.isbndb.com/covers/15/03/9780874221503.jpg'), - ('0451525353', 'The Love Songs Of Sappho (Signet Classics)', 'https://images.isbndb.com/covers/53/52/9780451525352.jpg'), - ('1563054671', 'The Little Zen Companion', 'https://images.isbndb.com/covers/46/79/9781563054679.jpg'), - ('0345453549', 'The Autobiography Of Vivian', 'https://images.isbndb.com/covers/35/49/9780345453549.jpg'), - ('1580420079', 'Whiz Kids Teach Chess', 'https://images.isbndb.com/covers/00/75/9781580420075.jpg'), - ('0713440228', 'Sicilian-- E6 And-- D6 Systems (Tournament Player''s Repertoire Of Openings)', 'https://images.isbndb.com/covers/02/25/9780713440225.jpg'), - ('0441004997', 'Hero And The Crown', 'https://images.isbndb.com/covers/49/97/9780441004997.jpg'), - ('0698119509', 'Spindle''s End', 'https://images.isbndb.com/covers/95/05/9780698119505.jpg'), - ('0689821417', 'Tommy''s New Playmate (The Rugrats Movie 8 X 8)', 'https://images.isbndb.com/covers/14/17/9780689821417.jpg'), - ('067086935X', 'Dog Brain', 'https://images.isbndb.com/covers/93/50/9780670869350.jpg'), - ('0816743924', 'I Love You Stinky Face', 'https://images.isbndb.com/covers/39/26/9780816743926.jpg'), - ('0765341174', 'Sarah: Women Of Genesis', 'https://images.isbndb.com/covers/11/74/9780765341174.jpg'), - ('030768993X', 'The Mother Goose Book (A Golden Book For Early Childhood)', 'https://images.isbndb.com/covers/99/31/9780307689931.jpg'), - ('0679434054', 'The Scarlet Ruse', 'https://images.isbndb.com/covers/40/54/9780679434054.jpg'), - ('1570960305', 'The Tea Planter''s Bride/Cassette', 'https://images.isbndb.com/covers/03/07/9781570960307.jpg'), - ('0886777208', 'Sword Of Ice: And Other Tales Of Valdemar (Daw Book Collectors)', 'https://images.isbndb.com/covers/72/03/9780886777203.jpg'), - ('0886777550', 'Storm Breaking (The Mage Storms, Book 3)', 'https://images.isbndb.com/covers/75/55/9780886777555.jpg'), - ('0886777127', 'Storm Rising (Mage Storms, No 2)', 'https://images.isbndb.com/covers/71/28/9780886777128.jpg'), - ('0886776619', 'Storm Warning (The Mage Storms, Book 1)', 'https://images.isbndb.com/covers/66/19/9780886776619.jpg'), - ('0886776120', 'Winds Of Fury (The Mage Winds, Book 3)', 'https://images.isbndb.com/covers/61/21/9780886776121.jpg'), - ('0886775639', 'Winds Of Change (The Mage Winds, Book 2)', 'https://images.isbndb.com/covers/56/36/9780886775636.jpg'), - ('0886774632', 'By The Sword (Kerowyn''s Tale)', 'https://images.isbndb.com/covers/46/39/9780886774639.jpg'), - ('0886775043', 'Horse Fantastic', 'https://images.isbndb.com/covers/50/49/9780886775049.jpg'), - ('0886774144', 'The Oathbound (Vows And Honor, Book 1)', 'https://images.isbndb.com/covers/41/41/9780886774141.jpg'), - ('0886774543', 'Oathbreakers (Vows And Honor, Book 2)', 'https://images.isbndb.com/covers/45/47/9780886774547.jpg'), - ('0886777739', 'Oathblood (Vows And Honor, Book 3)', 'https://images.isbndb.com/covers/77/39/9780886777739.jpg'), - ('0886774004', 'Arrow''s Fall (The Heralds Of Valdemar, Book 3)', 'https://images.isbndb.com/covers/40/04/9780886774004.jpg'), - ('0886773776', 'Arrow''s Flight (The Heralds Of Valdemar, Book 2)', 'https://images.isbndb.com/covers/37/79/9780886773779.jpg'), - ('0671701843', 'Chessercizes: New Winning Techniques For Players Of All Levels', 'https://images.isbndb.com/covers/18/40/9780671701840.jpg'), - ('0812535219', 'Saints', 'https://images.isbndb.com/covers/52/11/9780812535211.jpg'), - ('0312921098', 'Treason', 'https://images.isbndb.com/covers/10/95/9780312921095.jpg'), - ('0812533313', 'The Worthing Saga', 'https://images.isbndb.com/covers/33/16/9780812533316.jpg'), - ('0812533577', 'Wyrms', 'https://images.isbndb.com/covers/35/76/9780812533576.jpg'), - ('0812500865', 'The Folk Of The Fringe', 'https://images.isbndb.com/covers/08/68/9780812500868.jpg'), - ('0812521358', 'Harts Hope', 'https://images.isbndb.com/covers/13/51/9780812521351.jpg'), - ('0812523679', 'Monkey Sonatas (Maps In A Mirror)', 'https://images.isbndb.com/covers/36/76/9780812523676.jpg'), - ('0812523040', 'Cruel Miracles', 'https://images.isbndb.com/covers/30/41/9780812523041.jpg'), - ('0812533658', 'The Changed Man: Short Fiction Of Orson Scott Card Vol 1 (Maps In A Mirror)', 'https://images.isbndb.com/covers/36/51/9780812533651.jpg'), - ('0812516850', 'Flux: Tales Of Human Futures', 'https://images.isbndb.com/covers/68/52/9780812516852.jpg'), - ('0669271896', 'The Second Rape: Society''s Continued Betrayal Of The Victim', 'https://images.isbndb.com/covers/18/98/9780669271898.jpg'), - ('0812532961', 'Earthfall (Homecoming)', 'https://images.isbndb.com/covers/29/68/9780812532968.jpg'), - ('0812532988', 'Earthborn (Homecoming)', 'https://images.isbndb.com/covers/29/82/9780812532982.jpg'), - ('0812532619', 'The Call Of Earth', 'https://images.isbndb.com/covers/26/16/9780812532616.jpg'), - ('0812532635', 'The Ships Of Earth: Homecoming: Volume 3', 'https://images.isbndb.com/covers/26/30/9780812532630.jpg'), - ('0886776589', 'Beyond Ragnarok (Renshai Chronicles)', 'https://images.isbndb.com/covers/65/89/9780886776589.jpg'), - ('0886777151', 'Prince Of Demons (Renshai Chronicles)', 'https://images.isbndb.com/covers/71/59/9780886777159.jpg'), - ('0886778603', 'The Children Of Wrath: The Renshai Chronicles, Volume 3', 'https://images.isbndb.com/covers/86/06/9780886778606.jpg'), - ('0886775493', 'Child Of Thunder (Renshai Trilogy)', 'https://images.isbndb.com/covers/54/90/9780886775490.jpg'), - ('0886775205', 'The Western Wizard (Renshai Trilogy)', 'https://images.isbndb.com/covers/52/09/9780886775209.jpg'), - ('0886775035', 'The Last Of The Renshai (Renshai Trilogy)', 'https://images.isbndb.com/covers/50/32/9780886775032.jpg'), - ('0380775123', 'Tiger Burning Bright', 'https://images.isbndb.com/covers/51/25/9780380775125.jpg'), - ('0061020427', 'Sword And Shadow (Sword In Exile, Book 3)', 'https://images.isbndb.com/covers/04/21/9780061020421.jpg'), - ('0061020419', 'King Of Shadows (Sword In Exile, Book 2)', 'https://images.isbndb.com/covers/04/14/9780061020414.jpg'), - ('0061059773', 'Cloudbearer''s Shadow (Sword In Exile, Book 1)', 'https://images.isbndb.com/covers/97/73/9780061059773.jpg'), - ('0061056294', 'Kingmaker''s Sword (The Rune Blade Trilogy, Book 1)', 'https://images.isbndb.com/covers/62/91/9780061056291.jpg'), - ('0451458028', 'The Invisible Ring (Black Jewels, Book 4)', 'https://images.isbndb.com/covers/80/25/9780451458025.jpg'), - ('0451459423', 'The House Of Gaian (Tir Alainn Trilogy)', 'https://images.isbndb.com/covers/94/28/9780451459428.jpg'), - ('0451458990', 'Shadows And Light', 'https://images.isbndb.com/covers/89/95/9780451458995.jpg'), - ('0451458508', 'The Pillars Of The World (Tir Alainn Trilogy)', 'https://images.isbndb.com/covers/85/06/9780451458506.jpg'), - ('0746030517', 'Living World Encyclopedia (Usborne Encyclopedia)', 'https://images.isbndb.com/covers/05/16/9780746030516.jpg'), - ('0874936225', 'Pediatric Basic Life Support, 1997-1999', 'https://images.isbndb.com/covers/62/23/9780874936223.jpg'), - ('0965987302', 'Birthing From Within: An Extra-Ordinary Guide To Childbirth Preparation', 'https://images.isbndb.com/covers/73/01/9780965987301.jpg'), - ('0688161162', 'Easy To Love, Difficult To Discipline: The 7 Basic Skills For Turning Conflict Into Cooperation', 'https://images.isbndb.com/covers/11/63/9780688161163.jpg'), - ('0875962432', 'Dr. Pitcairn''s Complete Guide To Natural Health For Dogs & Cats', 'https://images.isbndb.com/covers/24/36/9780875962436.jpg'), - ('0201632721', 'Mothering The Mother: How A Doula Can Help You Have A Shorter, Easier, And Healthier Birth', 'https://images.isbndb.com/covers/27/29/9780201632729.jpg'), - ('0553379534', 'Women''s Bodies, Women''s Wisdom: Creating Physical And Emotional Health And Healing', 'https://images.isbndb.com/covers/95/32/9780553379532.jpg'), - ('0894716174', 'Baby Games: The Joyful Guide To Child''s Play From Birth To Three Years', 'https://images.isbndb.com/covers/61/71/9780894716171.jpg'), - ('1556432151', 'The Vaccine Guide: Making An Informed Choice', 'https://images.isbndb.com/covers/21/56/9781556432156.jpg'), - ('1891400495', 'A Simple Choice : A Practical Guide For Saving Your Time, Money And Sanity', 'https://images.isbndb.com/covers/04/90/9781891400490.jpg'), - ('0671025554', 'What''s In A Name?', 'https://images.isbndb.com/covers/55/57/9780671025557.jpg'), - ('0316542377', 'Toilet Learning: The Picture Book Technique For Children And Parents', 'https://images.isbndb.com/covers/23/71/9780316542371.jpg'), - ('0912500867', 'Defining Your Own Success: Breastfeeding After Breast Reduction Surgery', 'https://images.isbndb.com/covers/08/67/9780912500867.jpg'), - ('1558506438', 'The Everything Games Book: Hundreds Of Classic Games For All Ages (Everything (Hobbies & Games))', 'https://images.isbndb.com/covers/64/35/9781558506435.jpg'), - ('0316779059', 'The Baby Book: Everything You Need To Know About Your Baby From Birth To Age Two', 'https://images.isbndb.com/covers/90/50/9780316779050.jpg'), - ('0764550039', 'Chess For Dummies', 'https://images.isbndb.com/covers/00/34/9780764550034.jpg'), - ('0192800493', 'The Oxford Companion To Chess', 'https://images.isbndb.com/covers/04/97/9780192800497.jpg'), - ('0375815260', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/52/63/9780375815263.jpg'), - ('0882710583', 'The Catholic Children''s Bible,', 'https://images.isbndb.com/covers/05/87/9780882710587.jpg'), - ('0060256737', 'A Light In The Attic', 'https://images.isbndb.com/covers/67/39/9780060256739.jpg'), - ('0060248025', 'Falling Up', 'https://images.isbndb.com/covers/80/24/9780060248024.jpg'), - ('0880887575', 'Flowers For My Friend With Bookmark (Peter Pauper Petite Ser)', 'https://images.isbndb.com/covers/75/71/9780880887571.jpg'), - ('0786880007', 'Simplify Your Life: 100 Ways To Slow Down And Enjoy The Things That Really Matter', 'https://images.isbndb.com/covers/00/03/9780786880003.jpg'), - ('0793800153', 'Your First Parakeet', 'https://images.isbndb.com/covers/01/55/9780793800155.jpg'), - ('0595006035', 'Banking On Torture: A Nina Steel Adventure (Nina Steel Adventures)', 'https://images.isbndb.com/covers/60/38/9780595006038.jpg'), - ('0595093019', 'Reunion: Nina Steel Adventures', 'https://images.isbndb.com/covers/30/14/9780595093014.jpg'), - ('0761107363', '97 Ways To Make A Baby Laugh', 'https://images.isbndb.com/covers/73/61/9780761107361.jpg'), - ('0515136379', 'Key Of Knowledge', 'https://images.isbndb.com/covers/63/71/9780515136371.jpg'), - ('0515136530', 'Key Of Valor', 'https://images.isbndb.com/covers/65/31/9780515136531.jpg'), - ('0553288202', 'The Fall Of Hyperion', 'https://images.isbndb.com/covers/82/09/9780553288209.jpg'), - ('0812545990', 'Starfarers', 'https://images.isbndb.com/covers/59/99/9780812545999.jpg'), - ('0671524313', 'The Girlfriends'' Guide To Pregnancy: Or Everything Your Doctor Won''t Tell You', 'https://images.isbndb.com/covers/43/19/9780671524319.jpg'), - ('051513628X', 'Key Of Light', 'https://images.isbndb.com/covers/62/89/9780515136289.jpg'), - ('0912500522', 'Mothering Your Nursing Toddler', 'https://images.isbndb.com/covers/05/22/9780912500522.jpg'), - ('0912500549', 'How Weaning Happens', 'https://images.isbndb.com/covers/05/46/9780912500546.jpg'), - ('0451529014', 'The Black Jewels: Trilogy: Daughter Of The Blood / Heir To The Shadows / Queen Of The Darkness', 'https://images.isbndb.com/covers/90/15/9780451529015.jpg'), - ('0886777593', 'Prince Of Demons (Renshai Chronicles Vol. 2)', 'https://images.isbndb.com/covers/75/93/9780886777593.jpg'), - ('0886777011', 'Beyond Ragnarok (Renshai Chronicles)', 'https://images.isbndb.com/covers/70/12/9780886777012.jpg'), - ('0385294638', 'Wanderlust', 'https://images.isbndb.com/covers/46/38/9780385294638.jpg'), - ('0486275728', 'Irish Fairy Tales (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/57/27/9780486275727.jpg'), - ('156402976X', 'Catkin', 'https://images.isbndb.com/covers/97/68/9781564029768.jpg'), - ('0895779129', 'Foods That Harm, Foods That Heal: An A - Z Guide To Safe And Healthy Eating', 'https://images.isbndb.com/covers/91/20/9780895779120.jpg'), - ('0060950536', 'Taking Charge Of Your Fertility: The Definitive Guide To Natural Birth Control And Pregnancy Achievement', 'https://images.isbndb.com/covers/05/38/9780060950538.jpg'), - ('0895295458', 'Smart Medicine For A Healthier Child: A Practical A-to-Z Reference Ot Natural And Conventional Treatments', 'https://images.isbndb.com/covers/54/53/9780895295453.jpg'), - ('0688117619', 'Mayo Clinic Complete Book Of Pregnancy & Baby''s First Year', 'https://images.isbndb.com/covers/76/10/9780688117610.jpg'), - ('0671027441', 'Natural Family Living: The Mothering Magazine Guide To Parenting', 'https://images.isbndb.com/covers/74/45/9780671027445.jpg'), - ('0590448293', 'Karen''s Big Joke (Baby-Sitters Little Sister, No. 27)', 'https://images.isbndb.com/covers/82/91/9780590448291.jpg'), - ('0590448285', 'Karen''s Tea Party (Baby-Sitters Little Sister)', 'https://images.isbndb.com/covers/82/84/9780590448284.jpg'), - ('059046597X', 'The Littles Give A Party', 'https://images.isbndb.com/covers/59/77/9780590465977.jpg'), - ('0590455788', 'The Littles And The Terrible Tiny Kid', 'https://images.isbndb.com/covers/57/87/9780590455787.jpg'), - ('0439222303', 'Abracadabra #01: Poof! Rabbits Everywhere (Abracadabra)', 'https://images.isbndb.com/covers/23/03/9780439222303.jpg'), - ('0786710330', 'Time Machines: The Best Time Travel Stories Ever Written', 'https://images.isbndb.com/covers/03/31/9780786710331.jpg'), - ('0786814241', 'Cheetah Girls, The: Woof, There It Is - Book #5', 'https://images.isbndb.com/covers/42/44/9780786814244.jpg'), - ('0439176824', 'The Fall (Seventh Tower #1)', 'https://images.isbndb.com/covers/68/28/9780439176828.jpg'), - ('0590956159', 'In The Time Of Dinosaurs (Animorphs Megamorphs, 2)', 'https://images.isbndb.com/covers/61/54/9780590956154.jpg'), - ('0590010891', 'Star Wars, Episode I - The Phantom Menace (Junior Novelization)', 'https://images.isbndb.com/covers/08/94/9780590010894.jpg'), - ('0142302163', 'The Ghost Sitter', 'https://images.isbndb.com/covers/21/63/9780142302163.jpg'), - ('038071907X', 'Nothing But The Truth: A Documentary Novel', 'https://images.isbndb.com/covers/90/75/9780380719075.jpg'), - ('1565111575', 'Return Of The Jedi: The Original Radio Drama', 'https://images.isbndb.com/covers/15/78/9781565111578.jpg'), - ('1567187293', 'Silver''s Spells For Protection', 'https://images.isbndb.com/covers/72/98/9781567187298.jpg'), - ('1561008931', 'Knee Deep In Paradise (Nova Audio Books)', 'https://images.isbndb.com/covers/89/33/9781561008933.jpg'), - ('0671038931', 'Isaac Asimov''s Robot City, Volumes 1 And 2', 'https://images.isbndb.com/covers/89/39/9780671038939.jpg'), - ('1570420564', 'A Dream Is A Wish Your Heart Makes: My Story', 'https://images.isbndb.com/covers/05/66/9781570420566.jpg'), - ('0373691653', 'Packing Heat (Harlequin Temptation)', 'https://images.isbndb.com/covers/16/54/9780373691654.jpg'), - ('0448426862', 'Who Was Harry Houdini?', 'https://images.isbndb.com/covers/68/60/9780448426860.jpg'), - ('059047054X', 'Claudia And The Clue In The Photograph (Baby-Sitters Club Mysteries)', 'https://images.isbndb.com/covers/05/44/9780590470544.jpg'), - ('0881848603', 'This Day In Rock: Day By Day Record Of Rock''s Biggest News Stories', 'https://images.isbndb.com/covers/86/01/9780881848601.jpg'), - ('0806512318', 'The Worst Rock N'' Roll Records Of All Time: A Fan''s Guide To The Stuff You Love To Hate', 'https://images.isbndb.com/covers/23/10/9780806512310.jpg'), - ('0394563131', 'One Size Doesn''t Fit All', 'https://images.isbndb.com/covers/31/38/9780394563138.jpg'), - ('0394553284', 'One Knee Equals Two Feet: And Everything Else You Need To Know About Football', 'https://images.isbndb.com/covers/32/83/9780394553283.jpg'), - ('0688047211', 'The Lives Of John Lennon', 'https://images.isbndb.com/covers/72/14/9780688047214.jpg'), - ('0151879834', 'Tales From Margaritaville: Fictional Facts And Factual Fictions', 'https://images.isbndb.com/covers/98/30/9780151879830.jpg'), - ('0345351738', '2061: Odyssey Three', 'https://images.isbndb.com/covers/17/39/9780345351739.jpg'), - ('0451125452', 'Salem''s Lot (Signet)', 'https://images.isbndb.com/covers/54/53/9780451125453.jpg'), - ('0451149513', 'It (A Signet Book)', 'https://images.isbndb.com/covers/95/10/9780451149510.jpg'), - ('037328960X', 'Outlaw Love (Debut Author) (Harlequin Historical)', 'https://images.isbndb.com/covers/96/08/9780373289608.jpg'), - ('093317490X', 'The Yucatan: A Guide To The Land Of Maya Mysteries (Tetra)', 'https://images.isbndb.com/covers/49/00/9780933174900.jpg'), - ('0764550349', 'Consulting For Dummies', 'https://images.isbndb.com/covers/03/48/9780764550348.jpg'), - ('0373638167', 'Savage Sun', 'https://images.isbndb.com/covers/81/61/9780373638161.jpg'), - ('0441693237', 'Quantum Leap: Too Close For Comfort', 'https://images.isbndb.com/covers/32/38/9780441693238.jpg'), - ('1572970944', 'Quantum Leap 00: The Novel', 'https://images.isbndb.com/covers/09/46/9781572970946.jpg'), - ('0441000762', 'Quantum Leap: Prelude', 'https://images.isbndb.com/covers/07/60/9780441000760.jpg'), - ('1559029897', 'Dorothy And The Wizard In OZ', 'https://images.isbndb.com/covers/98/96/9781559029896.jpg'), - ('0679805265', 'LONG SHOT (The 3 Investigators)', 'https://images.isbndb.com/covers/52/67/9780679805267.jpg'), - ('0394843509', 'REEL TROUBLE (The Three Investigators Crimebusters, Book 7)', 'https://images.isbndb.com/covers/35/06/9780394843506.jpg'), - ('0373765649', 'Breathless For The Bachelor (Silhouette Desire)', 'https://images.isbndb.com/covers/56/45/9780373765645.jpg'), - ('0373642970', 'Deadly Pursuit: The Moon Shadow Trilogy (Executioner)', 'https://images.isbndb.com/covers/29/77/9780373642977.jpg'), - ('0373642962', 'Nuclear Game (The Executioner #296)', 'https://images.isbndb.com/covers/29/60/9780373642960.jpg'), - ('0373642954', 'The Executioner: Hostile Alliance', 'https://images.isbndb.com/covers/29/53/9780373642953.jpg'), - ('0373642946', 'Scorpion Rising (The Executioner #294)', 'https://images.isbndb.com/covers/29/46/9780373642946.jpg'), - ('0373642938', 'Death Merchants (Executioner 293)', 'https://images.isbndb.com/covers/29/39/9780373642939.jpg'), - ('0373642911', 'Blood Trade (The Executioner #291)', 'https://images.isbndb.com/covers/29/15/9780373642915.jpg'), - ('0373642903', 'Pursued (The Executioner #290)', 'https://images.isbndb.com/covers/29/08/9780373642908.jpg'), - ('0373642857', 'Final Strike (Executioner #285)', 'https://images.isbndb.com/covers/28/54/9780373642854.jpg'), - ('0373642849', 'The Executioner: Devil''s Army', 'https://images.isbndb.com/covers/28/47/9780373642847.jpg'), - ('0373642822', 'Jungle Conflict (Executioner #282)', 'https://images.isbndb.com/covers/28/23/9780373642823.jpg'), - ('037364292X', 'Savage Game (Executioner #292)', 'https://images.isbndb.com/covers/29/22/9780373642922.jpg'), - ('0373614918', 'Mack Bolan: Line Of Control', 'https://images.isbndb.com/covers/49/12/9780373614912.jpg'), - ('0373632452', 'Waste Not, Want Not (Destroyer #130)', 'https://images.isbndb.com/covers/24/59/9780373632459.jpg'), - ('0440219035', 'Tunes For Bears To Dance To', 'https://images.isbndb.com/covers/90/33/9780440219033.jpg'), - ('0373619472', 'Freedom Watch (Stony Man #63)', 'https://images.isbndb.com/covers/94/74/9780373619474.jpg'), - ('0373619499', 'Stony Man: The Third Protocol', 'https://images.isbndb.com/covers/94/98/9780373619498.jpg'), - ('0373619502', 'Axis Of Conflict The Terror File', 'https://images.isbndb.com/covers/95/04/9780373619504.jpg'), - ('0373614896', 'Strike And Retrieve (Super Bolan #89)', 'https://images.isbndb.com/covers/48/99/9780373614899.jpg'), - ('0373638078', 'Earth Blood (Earthblood #1)', 'https://images.isbndb.com/covers/80/79/9780373638079.jpg'), - ('0803298145', 'When Worlds Collide (Bison Frontiers Of Imagination)', 'https://images.isbndb.com/covers/81/49/9780803298149.jpg'), - ('0743486625', 'Damnation Alley', 'https://images.isbndb.com/covers/66/20/9780743486620.jpg'), - ('034528710X', 'Han Solo And The Lost Legacy', 'https://images.isbndb.com/covers/71/06/9780345287106.jpg'), - ('0671803530', 'Apple To Core', 'https://images.isbndb.com/covers/35/37/9780671803537.jpg'), - ('037361490X', 'Age Of War (Super Bolan #90)', 'https://images.isbndb.com/covers/49/05/9780373614905.jpg'), - ('0590880748', 'Destination Unknown (Remnants #2)', 'https://images.isbndb.com/covers/07/49/9780590880749.jpg'), - ('0590879979', 'The Mayflower Project (Remnants, No 1)', 'https://images.isbndb.com/covers/99/72/9780590879972.jpg'), - ('0590880780', 'Them (Remnants, 3)', 'https://images.isbndb.com/covers/07/87/9780590880787.jpg'), - ('0679811761', 'The Secret Of Terror Castle (The Three Investigators #1)', 'https://images.isbndb.com/covers/17/63/9780679811763.jpg'), - ('0440920221', 'Dracula Go Home', 'https://images.isbndb.com/covers/02/29/9780440920229.jpg'), - ('0698119916', 'Time Stops For No Mouse (Hermux Tantamoq Adventures)', 'https://images.isbndb.com/covers/99/18/9780698119918.jpg'), - ('0441007732', 'The Legend Of Luke (Redwall, Book 12)', 'https://images.isbndb.com/covers/77/38/9780441007738.jpg'), - ('097089726X', 'Jasper', 'https://images.isbndb.com/covers/72/68/9780970897268.jpg'), - ('037379116X', 'Anything Goes (Harlequin Blaze)', 'https://images.isbndb.com/covers/11/63/9780373791163.jpg'), - ('0060506989', 'We Were Soldiers Once... And Young: Ia Drang--The Battle That Changed The War In Vietnam', 'https://images.isbndb.com/covers/69/88/9780060506988.jpg'), - ('0451191579', 'Rebound: The Odyssey Of Michael Jordan', 'https://images.isbndb.com/covers/15/71/9780451191571.jpg'), - ('0375706933', 'My Cat Spit McGee', 'https://images.isbndb.com/covers/69/36/9780375706936.jpg'), - ('0345423038', 'The Wild Road', 'https://images.isbndb.com/covers/30/30/9780345423030.jpg'), - ('0553073273', 'Star Wars: Heir To The Empire', 'https://images.isbndb.com/covers/32/70/9780553073270.jpg'), - ('038513097X', 'Mary Frampton And Friends: Rock And Roll Recipes', 'https://images.isbndb.com/covers/09/74/9780385130974.jpg'), - ('0394531094', 'Hey,Wait A Minute (I Wrote A Book!)', 'https://images.isbndb.com/covers/10/90/9780394531090.jpg'), - ('0786807555', 'Under A War-Torn Sky', 'https://images.isbndb.com/covers/75/50/9780786807550.jpg'), - ('0373614845', 'Mack Bolan: Dark Truth', 'https://images.isbndb.com/covers/48/44/9780373614844.jpg'), - ('0553290851', '22 Indigo Place', 'https://images.isbndb.com/covers/08/51/9780553290851.jpg'), - ('0886774829', 'Stronghold (Dragon Star, Book 1)', 'https://images.isbndb.com/covers/48/20/9780886774820.jpg'), - ('0886774500', 'Dragon Prince (Book 1)', 'https://images.isbndb.com/covers/45/09/9780886774509.jpg'), - ('0886775426', 'The Dragon Token (Dragon Star, Book 2)', 'https://images.isbndb.com/covers/54/21/9780886775421.jpg'), - ('0886775957', 'Skybowl (Dragon Star, Book 3)', 'https://images.isbndb.com/covers/59/57/9780886775957.jpg'), - ('0671693816', 'Wifey', 'https://images.isbndb.com/covers/38/17/9780671693817.jpg'), - ('0785276890', 'Surprised By Laughter: The Comic World Of C.S. Lewis', 'https://images.isbndb.com/covers/68/90/9780785276890.jpg'), - ('0743445813', 'Tea For Two', 'https://images.isbndb.com/covers/58/18/9780743445818.jpg'), - ('0843949856', 'To Burn', 'https://images.isbndb.com/covers/98/58/9780843949858.jpg'), - ('0440222109', 'The Border Hostage', 'https://images.isbndb.com/covers/21/01/9780440222101.jpg'), - ('1565928431', 'ASP In A Nutshell, 2nd Edition', 'https://images.isbndb.com/covers/84/35/9781565928435.jpg'), - ('1931836876', 'Stealing The Network: How To Own The Box', 'https://images.isbndb.com/covers/68/76/9781931836876.jpg'), - ('096265342X', 'Principia Discordia: How I Found Goddess And What I Did To Her When I Found Her', 'https://images.isbndb.com/covers/34/21/9780962653421.jpg'), - ('0596000588', 'XML In A Nutshell : A Desktop Quick Reference (Nutshell Handbook)', 'https://images.isbndb.com/covers/05/85/9780596000585.jpg'), - ('1565927206', 'VBScript In A Nutshell: A Desktop Quick Reference (In A Nutshell (O''Reilly))', 'https://images.isbndb.com/covers/72/09/9781565927209.jpg'), - ('1565926994', 'Programming The Perl DBI', 'https://images.isbndb.com/covers/69/98/9781565926998.jpg'), - ('0486211339', 'Odd John And Sirius', 'https://images.isbndb.com/covers/13/36/9780486211336.jpg'), - ('0914918346', 'Kahuna Magic', 'https://images.isbndb.com/covers/83/49/9780914918349.jpg'), - ('0835605728', 'Kahuna Healing (Quest Books)', 'https://images.isbndb.com/covers/57/24/9780835605724.jpg'), - ('0072131780', 'Cascading Style Sheets 2.0 Programmer''s Reference', 'https://images.isbndb.com/covers/17/89/9780072131789.jpg'), - ('042504842X', 'Crooked Tree', 'https://images.isbndb.com/covers/84/29/9780425048429.jpg'), - ('0441760066', 'Caught In Crystal (Lyra Series, No.1)', 'https://images.isbndb.com/covers/00/60/9780441760060.jpg'), - ('0553268546', 'The Shore Of Women (Spectra)', 'https://images.isbndb.com/covers/85/46/9780553268546.jpg'), - ('0671831593', 'Watchstar', 'https://images.isbndb.com/covers/15/92/9780671831592.jpg'), - ('0445201223', 'To The High Redoubt', 'https://images.isbndb.com/covers/12/24/9780445201224.jpg'), - ('0446912689', 'Dead And Buried', 'https://images.isbndb.com/covers/26/86/9780446912686.jpg'), - ('0671559060', 'The Zanzibar Cat', 'https://images.isbndb.com/covers/90/69/9780671559069.jpg'), - ('0671019813', 'Day Of Honor (Star Trek Voyager)', 'https://images.isbndb.com/covers/98/15/9780671019815.jpg'), - ('0061097195', 'Stop Struggling With Your Child', 'https://images.isbndb.com/covers/71/95/9780061097195.jpg'), - ('0441653162', 'The Patchwork Girl', 'https://images.isbndb.com/covers/31/64/9780441653164.jpg'), - ('0671440683', 'RITE OF PASSAGE', 'https://images.isbndb.com/covers/06/88/9780671440688.jpg'), - ('0441775578', 'The Sorcery Within', 'https://images.isbndb.com/covers/55/76/9780441775576.jpg'), - ('0671002570', 'Klingon: Star Trek', 'https://images.isbndb.com/covers/25/72/9780671002572.jpg'), - ('0671656597', 'DARK ANGEL', 'https://images.isbndb.com/covers/65/91/9780671656591.jpg'), - ('0380896354', 'Trumps Of Doom (Chronicles Of Amber)', 'https://images.isbndb.com/covers/63/56/9780380896356.jpg'), - ('0441091660', 'Cards Of Grief', 'https://images.isbndb.com/covers/16/69/9780441091669.jpg'), - ('0671698508', 'Time Gate', 'https://images.isbndb.com/covers/85/08/9780671698508.jpg'), - ('0451132319', 'Eyes Of Amber And Other Tales', 'https://images.isbndb.com/covers/23/14/9780451132314.jpg'), - ('0345370732', 'The Hunt (formerly 27)', 'https://images.isbndb.com/covers/07/30/9780345370730.jpg'), - ('0812525752', 'A Matter Of Taste (The Dracula Series)', 'https://images.isbndb.com/covers/57/55/9780812525755.jpg'), - ('0425074498', 'Witchdame', 'https://images.isbndb.com/covers/44/97/9780425074497.jpg'), - ('0345296052', 'THE FELLOWSHIP OF THE RING (Part One Of The Lord Of The Rings)', 'https://images.isbndb.com/covers/60/54/9780345296054.jpg'), - ('0523485263', 'The Swordswoman', 'https://images.isbndb.com/covers/52/63/9780523485263.jpg'), - ('0879977051', 'Hecate''s Cauldron', 'https://images.isbndb.com/covers/70/54/9780879977054.jpg'), - ('0446890359', 'Without Feathers', 'https://images.isbndb.com/covers/03/59/9780446890359.jpg'), - ('0441896448', 'Witch Blood', 'https://images.isbndb.com/covers/64/48/9780441896448.jpg'), - ('0380699575', 'What Do You Really Want For Your Children?', 'https://images.isbndb.com/covers/95/75/9780380699575.jpg'), - ('0942024001', 'The Hundredth Monkey', 'https://images.isbndb.com/covers/40/05/9780942024005.jpg'), - ('052547014X', 'The History Of The Kings Of Britain', 'https://images.isbndb.com/covers/01/44/9780525470144.jpg'), - ('0892131144', 'Coming Back: The Science Of Reincarnation', 'https://images.isbndb.com/covers/11/43/9780892131143.jpg'), - ('067183276X', 'The Klingon Gambit', 'https://images.isbndb.com/covers/27/66/9780671832766.jpg'), - ('0812533496', 'Merlin''s Bones', 'https://images.isbndb.com/covers/34/91/9780812533491.jpg'), - ('0345296044', 'The Hobbit', 'https://images.isbndb.com/covers/60/47/9780345296047.jpg'), - ('0671658131', 'Memory Prime (Star Trek, Book 42)', 'https://images.isbndb.com/covers/81/37/9780671658137.jpg'), - ('0441102573', 'Changeling (Changeling Saga, Bk. 1)', 'https://images.isbndb.com/covers/25/70/9780441102570.jpg'), - ('0553287737', 'The Bourne Ultimatum (Bourne Trilogy, Book 3)', 'https://images.isbndb.com/covers/77/38/9780553287738.jpg'), - ('0812521048', 'Burning Water (Diana Tregarde Investigation)', 'https://images.isbndb.com/covers/10/47/9780812521047.jpg'), - ('0345368959', 'The Dolphins Of Pern (Dragonriders Of Pern)', 'https://images.isbndb.com/covers/89/59/9780345368959.jpg'), - ('0345285980', 'Crystal Singer', 'https://images.isbndb.com/covers/59/80/9780345285980.jpg'), - ('0553248456', 'The Nature Of Personal Reality: A Seth Book', 'https://images.isbndb.com/covers/84/56/9780553248456.jpg'), - ('0451161343', 'Thinner (Signet)', 'https://images.isbndb.com/covers/13/45/9780451161345.jpg'), - ('0879977620', 'Hawkmistress! (Darkover: The Hundred Kingdoms)', 'https://images.isbndb.com/covers/76/27/9780879977627.jpg'), - ('0879979623', 'City Of Sorcery (Darkover)', 'https://images.isbndb.com/covers/96/21/9780879979621.jpg'), - ('044106857X', 'The Bloody Sun', 'https://images.isbndb.com/covers/85/79/9780441068579.jpg'), - ('0879978066', 'Darkover Landfall (Darkover, The Founding: Bk. 1)', 'https://images.isbndb.com/covers/80/68/9780879978068.jpg'), - ('0345315642', 'The Catch Trap', 'https://images.isbndb.com/covers/56/49/9780345315649.jpg'), - ('0886771854', 'The Other Side Of The Mirror (Darkover)', 'https://images.isbndb.com/covers/18/50/9780886771850.jpg'), - ('0451454081', 'Strands Of Sunlight', 'https://images.isbndb.com/covers/40/89/9780451454089.jpg'), - ('0886770963', 'Free Amazons Of Darkover', 'https://images.isbndb.com/covers/09/69/9780886770969.jpg'), - ('0886774519', 'The Heirs Of Hammerfell (Darkover)', 'https://images.isbndb.com/covers/45/16/9780886774516.jpg'), - ('0879978155', 'Greyhaven: An Anthology Of Fantasy', 'https://images.isbndb.com/covers/81/50/9780879978150.jpg'), - ('0345303067', '2010: Odyssey Two', 'https://images.isbndb.com/covers/30/66/9780345303066.jpg'), - ('0671448757', 'Web Of Light', 'https://images.isbndb.com/covers/87/52/9780671448752.jpg'), - ('0441892558', 'The Winds Of Darkover', 'https://images.isbndb.com/covers/25/56/9780441892556.jpg'), - ('0886770750', 'Warrior Woman', 'https://images.isbndb.com/covers/07/54/9780886770754.jpg'), - ('0812500067', 'Witch Hill (Light Series)', 'https://images.isbndb.com/covers/00/66/9780812500066.jpg'), - ('0879978570', 'Thendara House (Darkover: Renunciates Trilogy, Bk. 2)', 'https://images.isbndb.com/covers/85/70/9780879978570.jpg'), - ('0671440349', 'The Sword Is Forged', 'https://images.isbndb.com/covers/03/43/9780671440343.jpg'), - ('0671833073', 'The Covenant Of The Crown (Star Trek, No 4)', 'https://images.isbndb.com/covers/30/77/9780671833077.jpg'), - ('0671633295', 'Deep Domain (Star Trek, Book 33)', 'https://images.isbndb.com/covers/32/95/9780671633295.jpg'), - ('0553291165', 'Raising The Stones', 'https://images.isbndb.com/covers/11/62/9780553291162.jpg'), - ('0671632671', 'BATTLESTATIONS! (Star Trek #31)', 'https://images.isbndb.com/covers/26/70/9780671632670.jpg'), - ('0671618733', 'Dreadnought! (Start Trek, Book 29)', 'https://images.isbndb.com/covers/87/35/9780671618735.jpg'), - ('0441159354', 'The Door Through Space', 'https://images.isbndb.com/covers/93/52/9780441159352.jpg'), - ('0553231251', 'Focusing', 'https://images.isbndb.com/covers/12/50/9780553231250.jpg'), - ('0345288300', 'The House Between The Worlds', 'https://images.isbndb.com/covers/83/01/9780345288301.jpg'), - ('0671448773', 'The Colors Of Space', 'https://images.isbndb.com/covers/87/76/9780671448776.jpg'), - ('0879979283', 'Sword & Sorceress I', 'https://images.isbndb.com/covers/92/87/9780879979287.jpg'), - ('0886770416', 'Sword And Sorceress II (2)', 'https://images.isbndb.com/covers/04/19/9780886770419.jpg'), - ('0425058646', 'Cloudcry', 'https://images.isbndb.com/covers/86/40/9780425058640.jpg'), - ('0671465414', 'Mutiny On The Enterprise (Star Trek, No 12)', 'https://images.isbndb.com/covers/54/14/9780671465414.jpg'), - ('0671794264', 'The Devil''s Heart (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/42/62/9780671794262.jpg'), - ('044018178X', 'Songmaster', 'https://images.isbndb.com/covers/17/81/9780440181781.jpg'), - ('0441138764', 'Daughter Of The Bright Moon', 'https://images.isbndb.com/covers/87/60/9780441138760.jpg'), - ('0441918107', 'Worthing Chronicle', 'https://images.isbndb.com/covers/81/02/9780441918102.jpg'), - ('0061099643', 'Imajica', 'https://images.isbndb.com/covers/96/49/9780061099649.jpg'), - ('0451452941', 'Shroud Of Shadow', 'https://images.isbndb.com/covers/29/48/9780451452948.jpg'), - ('0451452305', 'Maze Of Moonlight', 'https://images.isbndb.com/covers/23/06/9780451452306.jpg'), - ('0451454499', 'O Greenest Branch! (Book I Of Water!)', 'https://images.isbndb.com/covers/44/92/9780451454492.jpg'), - ('0671832972', 'The Abode Of Life (Star Trek, No 6)', 'https://images.isbndb.com/covers/29/71/9780671832971.jpg'), - ('0671836323', 'Black Fire (Star Trek, No 8)', 'https://images.isbndb.com/covers/63/20/9780671836320.jpg'), - ('0441065848', 'The Black Flame', 'https://images.isbndb.com/covers/58/44/9780441065844.jpg'), - ('0425058190', 'Harts Hope', 'https://images.isbndb.com/covers/81/90/9780425058190.jpg'), - ('0786014652', 'Eye Of The Beholder', 'https://images.isbndb.com/covers/46/51/9780786014651.jpg'), - ('0743424387', 'The Meeting Of The Waters (Book One Of The Watchers)', 'https://images.isbndb.com/covers/43/87/9780743424387.jpg'), - ('0800758056', 'Neat Mom, Messie Kids: A Survival Guide', 'https://images.isbndb.com/covers/80/59/9780800758059.jpg'), - ('047121888X', 'Multiple Streams Of Internet Income', 'https://images.isbndb.com/covers/88/83/9780471218883.jpg'), - ('1588720284', 'Why Your Life Sucks: And What You Can Do About It', 'https://images.isbndb.com/covers/02/83/9781588720283.jpg'), - ('0345460693', 'Time Bomb (Alex Delaware)', 'https://images.isbndb.com/covers/06/91/9780345460691.jpg'), - ('0446613681', 'The Legacy', 'https://images.isbndb.com/covers/36/82/9780446613682.jpg'), - ('0886773199', 'Oathbreakers (Vows And Honor)', 'https://images.isbndb.com/covers/31/99/9780886773199.jpg'), - ('0553574582', 'With Child', 'https://images.isbndb.com/covers/45/86/9780553574586.jpg'), - ('0886772222', 'Arrow''s Flight (Heralds Of Valdemar)', 'https://images.isbndb.com/covers/22/22/9780886772222.jpg'), - ('0886772559', 'Arrow''s Fall (Heralds Of Valdemar)', 'https://images.isbndb.com/covers/25/50/9780886772550.jpg'), - ('0886771897', 'Arrows Of The Queen (Heralds Of Valdemar)', 'https://images.isbndb.com/covers/18/98/9780886771898.jpg'), - ('0886772850', 'The Oathbound (Vows And Honor)', 'https://images.isbndb.com/covers/28/57/9780886772857.jpg'), - ('0671578510', 'Telzey Amberdon (Telzey Amberdon (Baen))', 'https://images.isbndb.com/covers/85/10/9780671578510.jpg'), - ('0786006579', 'Ulterior Motive', 'https://images.isbndb.com/covers/65/71/9780786006571.jpg'), - ('0061098353', 'Twice Dying', 'https://images.isbndb.com/covers/83/52/9780061098352.jpg'), - ('0756400147', 'Child Of Flame (Crown Of Stars, Book 4)', 'https://images.isbndb.com/covers/01/49/9780756400149.jpg'), - ('0449007383', 'Murder At Ford''s Theatre', 'https://images.isbndb.com/covers/73/89/9780449007389.jpg'), - ('0802773524', 'The New Brainbooster: Six Hours To Rapid Learning And Remembering', 'https://images.isbndb.com/covers/35/24/9780802773524.jpg'), - ('0425170470', 'Pregnancy After A Loss: A Guide To Pregnancy After A Miscarriage, Stillbirth, Or Infant Death', 'https://images.isbndb.com/covers/04/72/9780425170472.jpg'), - ('0878331824', 'Trying Again: A Guide To Pregnancy After Miscarriage, Stillbirth, And Infant Loss', 'https://images.isbndb.com/covers/18/26/9780878331826.jpg'), - ('0060937645', 'Taking Charge Of Your Fertility: The Definitive Guide To Natural Birth Control, Pregnancy Achievement, And Reproductive Health (Revised Edition)', 'https://images.isbndb.com/covers/76/45/9780060937645.jpg'), - ('0789488914', 'Crime Scene: The Ultimate Guide To Forensic Science', 'https://images.isbndb.com/covers/89/16/9780789488916.jpg'), - ('0020960808', 'Natural Superiority Of Women', 'https://images.isbndb.com/covers/08/05/9780020960805.jpg'), - ('0449703274', 'Rumors And Whispers', 'https://images.isbndb.com/covers/32/74/9780449703274.jpg'), - ('0380542625', 'One Child', 'https://images.isbndb.com/covers/26/28/9780380542628.jpg'), - ('0312983220', 'Area 7', 'https://images.isbndb.com/covers/32/22/9780312983222.jpg'), - ('0515135747', 'Wrongful Death', 'https://images.isbndb.com/covers/57/49/9780515135749.jpg'), - ('0071414975', 'The Fat Flush Journal And Shopping Guide (Gittleman)', 'https://images.isbndb.com/covers/49/75/9780071414975.jpg'), - ('0071383832', 'The Fat Flush Plan', 'https://images.isbndb.com/covers/38/37/9780071383837.jpg'), - ('1855858320', 'Detox: Cleanse And Recharge Your Mind, Body And Soul', 'https://images.isbndb.com/covers/83/29/9781855858329.jpg'), - ('1400047064', 'Suzanne Somers'' Eat, Cheat, And Melt The Fat Away', 'https://images.isbndb.com/covers/70/62/9781400047062.jpg'), - ('1570671273', 'Apple Cider Vinegar: For Weight Loss And Good Health', 'https://images.isbndb.com/covers/12/72/9781570671272.jpg'), - ('0062517791', 'Power Healing: The Four Keys To Energizing Your Body, Mind, And Spirit', 'https://images.isbndb.com/covers/77/91/9780062517791.jpg'), - ('0062517821', 'The Secret Of The Shadow: The Power Of Owning Your Whole Story', 'https://images.isbndb.com/covers/78/21/9780062517821.jpg'), - ('089529768X', 'Lick The Sugar Habit', 'https://images.isbndb.com/covers/76/86/9780895297686.jpg'), - ('0071407944', 'The Fat Flush Cookbook (Gittleman)', 'https://images.isbndb.com/covers/79/46/9780071407946.jpg'), - ('0446521612', 'Fountain Of Youth: The Anti-Aging Weight-Loss Program', 'https://images.isbndb.com/covers/16/11/9780446521611.jpg'), - ('1562059513', 'Inside Adobe(R) Photoshop(R) 5 (Limited Edition)', 'https://images.isbndb.com/covers/95/14/9781562059514.jpg'), - ('0441116868', 'Conjure Wife', 'https://images.isbndb.com/covers/68/67/9780441116867.jpg'), - ('0425052990', 'The Beverly Hills Diet', 'https://images.isbndb.com/covers/29/90/9780425052990.jpg'), - ('0425062856', 'Floating Dragon', 'https://images.isbndb.com/covers/28/52/9780425062852.jpg'), - ('044921852X', 'Angel Eyes', 'https://images.isbndb.com/covers/85/25/9780449218525.jpg'), - ('0758201931', 'The Night We Met', 'https://images.isbndb.com/covers/19/35/9780758201935.jpg'), - ('0340182563', 'Creative Writing (Teach Yourself)', 'https://images.isbndb.com/covers/25/67/9780340182567.jpg'), - ('0385018681', 'How To Learn Astrology (A Doubleday Dolphin Book)', 'https://images.isbndb.com/covers/86/85/9780385018685.jpg'), - ('0446936383', 'The Tranquilizing Of America', 'https://images.isbndb.com/covers/63/85/9780446936385.jpg'), - ('0460016989', 'ARTHURIAN ROMANCES', 'https://images.isbndb.com/covers/69/88/9780460016988.jpg'), - ('0932870171', 'Rocking The Cradle Lesbian Mothers: A Challenge In Family Living', 'https://images.isbndb.com/covers/01/79/9780932870179.jpg'), - ('0394730526', 'Women Loving: A Journey Toward Becoming An Independent Woman (Bookworks)', 'https://images.isbndb.com/covers/05/23/9780394730523.jpg'), - ('0133143023', 'Female Sexual Slavery', 'https://images.isbndb.com/covers/30/27/9780133143027.jpg'), - ('0671795988', 'Stop The Insanity! Eat, Breathe, Move, Change The Way You Look And Feel--Forever', 'https://images.isbndb.com/covers/59/86/9780671795986.jpg'), - ('0801615194', 'Basic Processes In Adult Developmental Psychology', 'https://images.isbndb.com/covers/51/91/9780801615191.jpg'), - ('0139634479', 'The Word Processing Handbook', 'https://images.isbndb.com/covers/44/75/9780139634475.jpg'), - ('0679504885', 'Preparing For Parenthood: Understanding Your Feelings About Pregnancy, Childbirth, And Your Baby', 'https://images.isbndb.com/covers/48/87/9780679504887.jpg'), - ('0882293613', 'Johnny Deadline, Reporter: The Best Of Bob Greene', 'https://images.isbndb.com/covers/36/15/9780882293615.jpg'), - ('0030632366', 'Outrageous Acts And Everyday Rebellions', 'https://images.isbndb.com/covers/23/65/9780030632365.jpg'), - ('0882840185', 'Herstory: A Woman''s View Of American History', 'https://images.isbndb.com/covers/01/85/9780882840185.jpg'), - ('0897890272', 'Silent Knife: Cesarean Prevention And Vaginal Birth After Cesarean (VBAC)', 'https://images.isbndb.com/covers/02/74/9780897890274.jpg'), - ('0898620406', 'Ethnicity And Family Therapy (Guilford Family Therapy Series, The) (The Guilford Family Therapy Series)', 'https://images.isbndb.com/covers/04/05/9780898620405.jpg'), - ('0030589533', 'Conduct Of Social Research', 'https://images.isbndb.com/covers/95/39/9780030589539.jpg'), - ('0151712824', 'Passenger', 'https://images.isbndb.com/covers/28/23/9780151712823.jpg'), - ('0312191952', 'Demeter Flower', 'https://images.isbndb.com/covers/19/55/9780312191955.jpg'), - ('0312019009', 'The Mayor Of Castro Street: The Life And Times Of Harvey Milk (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/90/06/9780312019006.jpg'), - ('031209261X', 'Conduct Unbecoming: Lesbians And Gays In The U.S. Military, Vietnam To The Persian Gulf', 'https://images.isbndb.com/covers/26/10/9780312092610.jpg'), - ('0446518220', 'Out In All Directions: Almanac Of Gay And Lesbian America', 'https://images.isbndb.com/covers/82/22/9780446518222.jpg'), - ('0786861657', 'The Rise And Fall Of Gay Culture', 'https://images.isbndb.com/covers/16/51/9780786861651.jpg'), - ('0684803976', 'Penny Saved', 'https://images.isbndb.com/covers/39/75/9780684803975.jpg'), - ('0131953621', 'Cultural Awareness In The Human Services: A Multi-cultural Approach (Prentice-Hall Series In Social Work Practice)', 'https://images.isbndb.com/covers/36/28/9780131953628.jpg'), - ('0449903001', 'Remaking Motherhood: How Working Mothers Are Shaping Our Children''s Future', 'https://images.isbndb.com/covers/30/01/9780449903001.jpg'), - ('0895942402', 'Going Out Of Our Minds: The Metaphysics Of Liberation', 'https://images.isbndb.com/covers/24/01/9780895942401.jpg'), - ('0553052691', 'Coming Of The King (Spectra)', 'https://images.isbndb.com/covers/26/95/9780553052695.jpg'), - ('0671669583', 'COP HUNTER', 'https://images.isbndb.com/covers/95/84/9780671669584.jpg'), - ('0534129064', 'Grassroots Resistance: Social Movements In Twentieth Century America', 'https://images.isbndb.com/covers/90/64/9780534129064.jpg'), - ('1559723009', 'Martina: The Lives And Times Of Martina Navratilova', 'https://images.isbndb.com/covers/30/08/9781559723008.jpg'), - ('1556111401', 'Intimate Evil', 'https://images.isbndb.com/covers/14/02/9781556111402.jpg'), - ('0441515444', 'The Magic Goes Away', 'https://images.isbndb.com/covers/54/48/9780441515448.jpg'), - ('0553341014', 'Beloved Exile', 'https://images.isbndb.com/covers/10/10/9780553341010.jpg'), - ('0671808427', 'Psycho Squad', 'https://images.isbndb.com/covers/84/26/9780671808426.jpg'), - ('0812583361', 'God Game', 'https://images.isbndb.com/covers/33/66/9780812583366.jpg'), - ('0671523627', 'Medical Center Murders (A Whodunit Myster #2)', 'https://images.isbndb.com/covers/36/26/9780671523626.jpg'), - ('0812880145', 'The Diane Game', 'https://images.isbndb.com/covers/01/44/9780812880144.jpg'), - ('0449237842', 'At Wits End', 'https://images.isbndb.com/covers/78/47/9780449237847.jpg'), - ('0440980429', 'Some Kind Of Wonderful', 'https://images.isbndb.com/covers/04/21/9780440980421.jpg'), - ('0449243842', 'Casebook Of The Black Widowers', 'https://images.isbndb.com/covers/38/48/9780449243848.jpg'), - ('0804101787', 'Midwife''s Story', 'https://images.isbndb.com/covers/17/83/9780804101783.jpg'), - ('0441791131', 'Survey Ship', 'https://images.isbndb.com/covers/11/32/9780441791132.jpg'), - ('0931580366', 'Hypericum (St. John''s Wort) And Depression', 'https://images.isbndb.com/covers/03/69/9780931580369.jpg'), - ('0385054882', 'Future Kin; Eight Science Fiction Stories', 'https://images.isbndb.com/covers/48/81/9780385054881.jpg'), - ('0446360430', 'Catwoman', 'https://images.isbndb.com/covers/04/32/9780446360432.jpg'), - ('0312855486', 'Elvenblood: An Epic High Fantasy (The Halfblood Chronicles)', 'https://images.isbndb.com/covers/54/82/9780312855482.jpg'), - ('0930436024', 'The Wanderground: Stories Of The Hill Women', 'https://images.isbndb.com/covers/60/25/9780930436025.jpg'), - ('0840764049', 'Worlds Near And Far: Nine Stories Of Science Fiction And Fantasy', 'https://images.isbndb.com/covers/40/41/9780840764041.jpg'), - ('0671896776', 'Crossover (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/67/75/9780671896775.jpg'), - ('0345272463', 'Dinosaur Planet Survivors.', 'https://images.isbndb.com/covers/24/61/9780345272461.jpg'), - ('0345257448', 'Restoree', 'https://images.isbndb.com/covers/74/44/9780345257444.jpg'), - ('0441735762', 'The Rowan', 'https://images.isbndb.com/covers/57/61/9780441735761.jpg'), - ('0345273575', 'To Ride Pegasus', 'https://images.isbndb.com/covers/35/74/9780345273574.jpg'), - ('0345256662', 'Get Off The Unicorn', 'https://images.isbndb.com/covers/66/69/9780345256669.jpg'), - ('0671698702', 'Lunar Activity', 'https://images.isbndb.com/covers/87/06/9780671698706.jpg'), - ('0671464795', 'Web Of The Romulans (Star Trek, No 10)', 'https://images.isbndb.com/covers/47/90/9780671464790.jpg'), - ('0345272455', 'Dinosaur Planet #1', 'https://images.isbndb.com/covers/24/54/9780345272454.jpg'), - ('044173684X', 'Runes', 'https://images.isbndb.com/covers/68/43/9780441736843.jpg'), - ('0671721178', 'Liar''S Oath', 'https://images.isbndb.com/covers/11/76/9780671721176.jpg'), - ('0345379144', 'Zombies Of The Gene Pool', 'https://images.isbndb.com/covers/91/46/9780345379146.jpg'), - ('0345277406', 'Convergent Series', 'https://images.isbndb.com/covers/74/04/9780345277404.jpg'), - ('0441167128', 'The Barsoom Project (Dream Park Series, Book 2)', 'https://images.isbndb.com/covers/71/28/9780441167128.jpg'), - ('0671495003', 'Star Trek III: The Search For Spock (Star Trek #17)', 'https://images.isbndb.com/covers/50/08/9780671495008.jpg'), - ('0425056023', 'Dancers Of Arun', 'https://images.isbndb.com/covers/60/28/9780425056028.jpg'), - ('0671833987', 'Prometheus Design (Star Trek #5)', 'https://images.isbndb.com/covers/39/85/9780671833985.jpg'), - ('0553113925', 'Star Trek The New Voyages #2', 'https://images.isbndb.com/covers/39/21/9780553113921.jpg'), - ('034528643X', 'Alchemy And Academe', 'https://images.isbndb.com/covers/64/37/9780345286437.jpg'), - ('0425055272', 'Watchtower', 'https://images.isbndb.com/covers/52/74/9780425055274.jpg'), - ('0425047253', 'Northern Girl', 'https://images.isbndb.com/covers/72/55/9780425047255.jpg'), - ('0671833995', 'Triangle (Star Trek, Book 9)', 'https://images.isbndb.com/covers/39/92/9780671833992.jpg'), - ('0671836927', 'The Entropy Effect (Star Trek, No 2)', 'https://images.isbndb.com/covers/69/24/9780671836924.jpg'), - ('0671625810', 'Star Trek Enterprise: The First Adventure', 'https://images.isbndb.com/covers/58/18/9780671625818.jpg'), - ('0671635743', 'The IDIC Epidemic (Star Trek, Book 38)', 'https://images.isbndb.com/covers/57/49/9780671635749.jpg'), - ('0671547305', 'Uhura''s Song (Star Trek No 21)', 'https://images.isbndb.com/covers/73/01/9780671547301.jpg'), - ('0441889697', 'Wildraith''s Last Battle', 'https://images.isbndb.com/covers/96/93/9780441889693.jpg'), - ('0425055914', 'Frostflower And Windbourne', 'https://images.isbndb.com/covers/59/15/9780425055915.jpg'), - ('0425045404', 'Frostflower And Thorn', 'https://images.isbndb.com/covers/54/04/9780425045404.jpg'), - ('0345275497', 'Flight Of The Horse', 'https://images.isbndb.com/covers/54/93/9780345275493.jpg'), - ('0425030520', 'Unpleasant Prof. J. Hoag', 'https://images.isbndb.com/covers/05/23/9780425030523.jpg'), - ('0345260724', 'SPACE CADET', 'https://images.isbndb.com/covers/07/27/9780345260727.jpg'), - ('0671806769', 'Tales Of Power', 'https://images.isbndb.com/covers/67/67/9780671806767.jpg'), - ('0523419562', 'Every Secret Thing', 'https://images.isbndb.com/covers/95/65/9780523419565.jpg'), - ('0425050424', 'Muggable Mary', 'https://images.isbndb.com/covers/04/22/9780425050422.jpg'), - ('0425037967', 'Once And Future King', 'https://images.isbndb.com/covers/79/66/9780425037966.jpg'), - ('0671442260', 'The Eagle''s Gift', 'https://images.isbndb.com/covers/22/62/9780671442262.jpg'), - ('0671549952', 'The Second Ring Of Power', 'https://images.isbndb.com/covers/99/54/9780671549954.jpg'), - ('0451171845', 'Precious Victims (Penguin True Crime)', 'https://images.isbndb.com/covers/18/49/9780451171849.jpg'), - ('0312913435', 'Mother On Trial: The Mysterious Death Of An Outback Baby', 'https://images.isbndb.com/covers/34/34/9780312913434.jpg'), - ('0553236679', 'Nurse''s Story, The', 'https://images.isbndb.com/covers/66/75/9780553236675.jpg'), - ('0425050343', 'The Making Of A Woman Surgeon', 'https://images.isbndb.com/covers/03/47/9780425050347.jpg'), - ('0061030643', 'The Associate', 'https://images.isbndb.com/covers/06/42/9780061030642.jpg'), - ('0886779200', 'The Family: Special Effects, Book 1 (Family, Bk 1)', 'https://images.isbndb.com/covers/92/07/9780886779207.jpg'), - ('0515130125', 'Blackout', 'https://images.isbndb.com/covers/01/26/9780515130126.jpg'), - ('0345291158', 'The Image', 'https://images.isbndb.com/covers/11/58/9780345291158.jpg'), - ('0312974728', 'The Trophy Wife', 'https://images.isbndb.com/covers/47/25/9780312974725.jpg'), - ('0345298713', 'Forbidden Sanctuary', 'https://images.isbndb.com/covers/87/13/9780345298713.jpg'), - ('0345308476', 'The Girl From The Emeraline Island', 'https://images.isbndb.com/covers/84/74/9780345308474.jpg'), - ('0441370594', 'Infinity Concerto', 'https://images.isbndb.com/covers/05/97/9780441370597.jpg'), - ('0671473905', 'Corona (Star Trek # 15)', 'https://images.isbndb.com/covers/39/07/9780671473907.jpg'), - ('0451115481', 'Sleeping Beauty', 'https://images.isbndb.com/covers/54/85/9780451115485.jpg'), - ('0446327085', 'Happy Are The Clean Of Heart: A Father Blackie Ryan Story', 'https://images.isbndb.com/covers/70/84/9780446327084.jpg'), - ('0446349461', 'Happy Are Those Who Thirst For Justice (A Father Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/94/68/9780446349468.jpg'), - ('0446346829', 'Patience Of A Saint', 'https://images.isbndb.com/covers/68/25/9780446346825.jpg'), - ('0440204925', 'The Old Silent', 'https://images.isbndb.com/covers/49/23/9780440204923.jpg'), - ('0440145465', 'King Rat', 'https://images.isbndb.com/covers/54/62/9780440145462.jpg'), - ('0671797050', 'The First Wives Club', 'https://images.isbndb.com/covers/70/58/9780671797058.jpg'), - ('0553290797', 'The Black Trillium', 'https://images.isbndb.com/covers/07/90/9780553290790.jpg'), - ('0671653601', 'ANGELS IN HELL', 'https://images.isbndb.com/covers/36/06/9780671653606.jpg'), - ('0671721224', 'Summoned To Tourney', 'https://images.isbndb.com/covers/12/20/9780671721220.jpg'), - ('0425033260', 'Bionic Woman : Extracurricular Activities', 'https://images.isbndb.com/covers/32/65/9780425033265.jpg'), - ('088950900X', 'Seeds Of Change (Laser #00)', 'https://images.isbndb.com/covers/90/09/9780889509009.jpg'), - ('067155915X', 'Returning Creation (High Couch Of Silistra)', 'https://images.isbndb.com/covers/91/51/9780671559151.jpg'), - ('0441227449', 'Famine', 'https://images.isbndb.com/covers/74/40/9780441227440.jpg'), - ('087216683X', 'Rhea', 'https://images.isbndb.com/covers/68/37/9780872166837.jpg'), - ('0872168026', 'The Desecration Of Susan Browning', 'https://images.isbndb.com/covers/80/22/9780872168022.jpg'), - ('0345397371', 'Witch', 'https://images.isbndb.com/covers/73/79/9780345397379.jpg'), - ('0671531360', 'SUPERLUMINAL', 'https://images.isbndb.com/covers/13/62/9780671531362.jpg'), - ('0425084574', 'Moon Flash', 'https://images.isbndb.com/covers/45/71/9780425084571.jpg'), - ('0879977906', 'Red As Blood Or Tales From The Sisters Grimmer', 'https://images.isbndb.com/covers/79/00/9780879977900.jpg'), - ('0553204769', 'The Unborn', 'https://images.isbndb.com/covers/47/66/9780553204766.jpg'), - ('0449232085', 'Woman On Edge Of Time', 'https://images.isbndb.com/covers/20/88/9780449232088.jpg'), - ('0553246089', 'A Mother''s Trial', 'https://images.isbndb.com/covers/60/87/9780553246087.jpg'), - ('0440948754', 'Little Demonstration Of Affection', 'https://images.isbndb.com/covers/87/59/9780440948759.jpg'), - ('0425054578', 'Bless This House', 'https://images.isbndb.com/covers/45/74/9780425054574.jpg'), - ('0449236714', 'Small Changes', 'https://images.isbndb.com/covers/67/10/9780449236710.jpg'), - ('0446957402', 'The Next', 'https://images.isbndb.com/covers/74/03/9780446957403.jpg'), - ('0380482800', 'The Bad Sister', 'https://images.isbndb.com/covers/28/01/9780380482801.jpg'), - ('0449245284', 'Childsong', 'https://images.isbndb.com/covers/52/86/9780449245286.jpg'), - ('0380770210', 'All Fall Down', 'https://images.isbndb.com/covers/02/12/9780380770212.jpg'), - ('0440110602', 'Captain Newman, M.D.', 'https://images.isbndb.com/covers/06/06/9780440110606.jpg'), - ('0440128757', 'The Gift', 'https://images.isbndb.com/covers/87/55/9780440128755.jpg'), - ('0671415018', 'Pin', 'https://images.isbndb.com/covers/50/13/9780671415013.jpg'), - ('0451115589', 'Getting Better', 'https://images.isbndb.com/covers/55/84/9780451115584.jpg'), - ('0553260219', 'The Secrets Of Harry Bright', 'https://images.isbndb.com/covers/02/12/9780553260212.jpg'), - ('0671722026', 'Minerva Wakes', 'https://images.isbndb.com/covers/20/29/9780671722029.jpg'), - ('0812545540', 'Screwtop / The Girl Who Was Plugged In (Tor Double)', 'https://images.isbndb.com/covers/55/48/9780812545548.jpg'), - ('0425046648', 'Psi Hunt', 'https://images.isbndb.com/covers/66/47/9780425046647.jpg'), - ('0345275187', 'Thrice Upon A Time', 'https://images.isbndb.com/covers/51/89/9780345275189.jpg'), - ('0671832867', 'Chekov''s Enterprise: A Personal Journal Of The Making Of Star Trek, The Motion Picture', 'https://images.isbndb.com/covers/28/65/9780671832865.jpg'), - ('0345357620', 'The Steerswoman', 'https://images.isbndb.com/covers/76/25/9780345357625.jpg'), - ('0425040801', 'The Cylon Death Machine (Battlestar Galactica, Book 2)', 'https://images.isbndb.com/covers/08/05/9780425040805.jpg'), - ('0441003435', 'The Adept 1', 'https://images.isbndb.com/covers/34/33/9780441003433.jpg'), - ('0812545508', 'Prince Ombra', 'https://images.isbndb.com/covers/55/00/9780812545500.jpg'), - ('0345361407', 'Greenmagic', 'https://images.isbndb.com/covers/14/00/9780345361400.jpg'), - ('055323577X', 'The Seeding', 'https://images.isbndb.com/covers/57/77/9780553235777.jpg'), - ('0451401905', 'Soul/mate (Onyx)', 'https://images.isbndb.com/covers/19/08/9780451401908.jpg'), - ('0553249533', 'Fatal Dosage', 'https://images.isbndb.com/covers/95/38/9780553249538.jpg'), - ('0449238121', 'High Cost Of Living', 'https://images.isbndb.com/covers/81/27/9780449238127.jpg'), - ('0449201147', 'Dance The Eagle To Sleep', 'https://images.isbndb.com/covers/11/45/9780449201145.jpg'), - ('0425053008', 'Save Johanna', 'https://images.isbndb.com/covers/30/03/9780425053003.jpg'), - ('0345382447', 'The Child Queen: The Tale Of Guinevere And King Arthur', 'https://images.isbndb.com/covers/24/43/9780345382443.jpg'), - ('0441373879', 'Iseult', 'https://images.isbndb.com/covers/38/71/9780441373871.jpg'), - ('0380872625', 'Romancing The Stone', 'https://images.isbndb.com/covers/26/26/9780380872626.jpg'), - ('0446322563', 'August', 'https://images.isbndb.com/covers/25/60/9780446322560.jpg'), - ('082171306X', 'Personal Habits', 'https://images.isbndb.com/covers/30/68/9780821713068.jpg'), - ('0449240886', 'Other', 'https://images.isbndb.com/covers/08/85/9780449240885.jpg'), - ('0553258311', 'Sisters, The', 'https://images.isbndb.com/covers/83/18/9780553258318.jpg'), - ('1559702125', 'Letters To Sartre', 'https://images.isbndb.com/covers/21/26/9781559702126.jpg'), - ('0671622358', 'Who Rules America Now?: A View For The 80''s', 'https://images.isbndb.com/covers/23/50/9780671622350.jpg'), - ('0395247764', 'Woman Doctor', 'https://images.isbndb.com/covers/77/61/9780395247761.jpg'), - ('0393310477', 'The Diversity Of Life', 'https://images.isbndb.com/covers/04/74/9780393310474.jpg'), - ('0345326962', 'Confessions Of A Taoist On Wall St.', 'https://images.isbndb.com/covers/69/66/9780345326966.jpg'), - ('0553227041', 'Sisterhood', 'https://images.isbndb.com/covers/70/48/9780553227048.jpg'), - ('0446794031', 'Sybil.', 'https://images.isbndb.com/covers/40/39/9780446794039.jpg'), - ('0671658875', 'Letters From A Pregnant Coward', 'https://images.isbndb.com/covers/88/78/9780671658878.jpg'), - ('0394499026', 'Harry''s Game', 'https://images.isbndb.com/covers/90/24/9780394499024.jpg'), - ('0399129723', 'The Passion Of Molly T.', 'https://images.isbndb.com/covers/97/28/9780399129728.jpg'), - ('1555610889', 'Your Pregnancy After 30 (Your Pregnancy Series)', 'https://images.isbndb.com/covers/08/83/9781555610883.jpg'), - ('1556522347', 'Your Second Pregnancy: What To Expect This Time', 'https://images.isbndb.com/covers/23/45/9781556522345.jpg'), - ('0812585151', 'Bard: The Odyssey Of The Irish (Celtic World Of Morgan Llywelyn)', 'https://images.isbndb.com/covers/51/55/9780812585155.jpg'), - ('0312970617', 'Circle Of Stones: A Novel', 'https://images.isbndb.com/covers/06/11/9780312970611.jpg'), - ('0425039048', 'The First Deadly Sin', 'https://images.isbndb.com/covers/90/45/9780425039045.jpg'), - ('0671743872', 'In The Flesh', 'https://images.isbndb.com/covers/38/71/9780671743871.jpg'), - ('0684852802', 'The Hypochondriac''s Guide To Life. And Death.', 'https://images.isbndb.com/covers/28/05/9780684852805.jpg'), - ('0671468200', 'MY SWEET AUDRINA', 'https://images.isbndb.com/covers/82/00/9780671468200.jpg'), - ('0671428306', 'Brainchild', 'https://images.isbndb.com/covers/83/03/9780671428303.jpg'), - ('1573220000', 'Remarkable Recovery: What Extraordinary Healings Tell Us About Getting Well And Staying Well', 'https://images.isbndb.com/covers/00/02/9781573220002.jpg'), - ('0449209695', 'Murder In The Supreme Court (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/96/91/9780449209691.jpg'), - ('0449206181', 'Murder At The FBI (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/61/88/9780449206188.jpg'), - ('1551668467', 'The Deepest Water', 'https://images.isbndb.com/covers/84/68/9781551668468.jpg'), - ('0345254112', 'The West End Horror: A Posthumous Memoir Of John H. Watson, M.D.', 'https://images.isbndb.com/covers/41/15/9780345254115.jpg'), - ('0451204891', 'The Hearing', 'https://images.isbndb.com/covers/48/99/9780451204899.jpg'), - ('0743437888', 'Starfleet Year One (Star Trek)', 'https://images.isbndb.com/covers/78/82/9780743437882.jpg'), - ('0345423615', 'The Silver Wolf (Legends Of The Wolves, Book 1)', 'https://images.isbndb.com/covers/36/10/9780345423610.jpg'), - ('038072880X', 'High Crimes', 'https://images.isbndb.com/covers/88/00/9780380728800.jpg'), - ('0688143660', 'Flame War: A Cyberthriller', 'https://images.isbndb.com/covers/36/64/9780688143664.jpg'), - ('0380724987', 'Justice (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/49/87/9780380724987.jpg'), - ('0451205073', 'Last Breath', 'https://images.isbndb.com/covers/50/70/9780451205070.jpg'), - ('0756400619', 'The Serpent''s Shadow (Elemental Masters, Book 1)', 'https://images.isbndb.com/covers/06/13/9780756400613.jpg'), - ('006109918X', 'TALKING GOD MM (Jim Chee Novels)', 'https://images.isbndb.com/covers/91/82/9780061099182.jpg'), - ('0553576623', 'Miracle Cure', 'https://images.isbndb.com/covers/66/27/9780553576627.jpg'), - ('0812575962', 'The Bishop And The Missing L Train (A Father Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/59/65/9780812575965.jpg'), - ('0553289640', 'Body Of Truth', 'https://images.isbndb.com/covers/96/40/9780553289640.jpg'), - ('0553262009', 'CAVERNS OF MORNAS (Escape From The Kingdom Of Frome)', 'https://images.isbndb.com/covers/20/01/9780553262001.jpg'), - ('0553564013', 'The Reality Machine (Choose Your Own Adventure No. 142)', 'https://images.isbndb.com/covers/40/13/9780553564013.jpg'), - ('0590403370', 'Destination: Brain (Explorer, No. 2)', 'https://images.isbndb.com/covers/33/75/9780590403375.jpg'), - ('0553155040', 'AMAZING BEN FRANKLIN (Time Traveler)', 'https://images.isbndb.com/covers/50/44/9780553155044.jpg'), - ('0064408655', 'The Vile Village (A Series Of Unfortunate Events, No. 7)', 'https://images.isbndb.com/covers/86/53/9780064408653.jpg'), - ('0385337116', 'The Rule Of Four', 'https://images.isbndb.com/covers/71/13/9780385337113.jpg'), - ('0373260776', 'Hooky Gets The Wooden Spoon', 'https://images.isbndb.com/covers/07/75/9780373260775.jpg'), - ('0671793225', 'Death Count (Star Trek, Book 62)', 'https://images.isbndb.com/covers/32/27/9780671793227.jpg'), - ('0425136191', 'Blindsight', 'https://images.isbndb.com/covers/61/95/9780425136195.jpg'), - ('044175046X', 'Satellite Night News', 'https://images.isbndb.com/covers/04/67/9780441750467.jpg'), - ('0446348287', 'A Mind To Murder (Adam Dalgliesh Mystery Series #2)', 'https://images.isbndb.com/covers/82/87/9780446348287.jpg'), - ('0373261071', 'Final Cut (Inspector Charlie Salter Mystery)', 'https://images.isbndb.com/covers/10/79/9780373261079.jpg'), - ('0394820304', 'A Tale Of Time City', 'https://images.isbndb.com/covers/03/09/9780394820309.jpg'), - ('0671502948', 'Islands Of Intrigue (Nancy Drew & Hardy Boys Super Mysteries #27)', 'https://images.isbndb.com/covers/29/42/9780671502942.jpg'), - ('0590408747', 'Stage Fright: It''s Role In Acting', 'https://images.isbndb.com/covers/87/45/9780590408745.jpg'), - ('0671746065', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/60/63/9780671746063.jpg'), - ('059033560X', 'Dear Dr. Dynamite', 'https://images.isbndb.com/covers/56/07/9780590335607.jpg'), - ('0449702766', 'Dicey''s Song (The Tillerman Series #2)', 'https://images.isbndb.com/covers/27/65/9780449702765.jpg'), - ('0441800106', 'Tek Lords', 'https://images.isbndb.com/covers/01/00/9780441800100.jpg'), - ('0451119932', 'Fever', 'https://images.isbndb.com/covers/99/33/9780451119933.jpg'), - ('0140291954', 'Perfectly Pure And Good', 'https://images.isbndb.com/covers/19/57/9780140291957.jpg'), - ('0425171973', 'Till Death Do Us Part', 'https://images.isbndb.com/covers/19/74/9780425171974.jpg'), - ('0765340054', 'Shadow Puppets (Ender, Book 7)', 'https://images.isbndb.com/covers/00/54/9780765340054.jpg'), - ('0345275861', 'Agatha', 'https://images.isbndb.com/covers/58/68/9780345275868.jpg'), - ('0451160312', 'I Never Promised You A Rose Garden', 'https://images.isbndb.com/covers/03/17/9780451160317.jpg'), - ('0786013567', 'Privileged Information', 'https://images.isbndb.com/covers/35/62/9780786013562.jpg'), - ('0812509145', 'The Copenhagen Connection', 'https://images.isbndb.com/covers/91/44/9780812509144.jpg'), - ('0812524608', 'Design For Great-Day', 'https://images.isbndb.com/covers/46/04/9780812524604.jpg'), - ('0446603775', 'Dawn (Xenogenesis, Bk. 1)', 'https://images.isbndb.com/covers/37/75/9780446603775.jpg'), - ('0451525299', 'The Rainbow (Signet Classics)', 'https://images.isbndb.com/covers/52/91/9780451525291.jpg'), - ('0064408663', 'The Hostile Hospital (A Series Of Unfortunate Events #8)', 'https://images.isbndb.com/covers/86/60/9780064408660.jpg'), - ('0671034251', 'Blind Spot', 'https://images.isbndb.com/covers/42/52/9780671034252.jpg'), - ('0937295221', 'Samantha''s Surprise (American Girl)', 'https://images.isbndb.com/covers/52/29/9780937295229.jpg'), - ('0937295477', 'Changes For Samantha (American Girl)', 'https://images.isbndb.com/covers/54/72/9780937295472.jpg'), - ('1562471171', 'Molly''s Cookbook: A Peek At Dining In The Past With Meals You Can Cook Today (American Girls Pastimes)', 'https://images.isbndb.com/covers/11/70/9781562471170.jpg'), - ('0141301058', 'The BFG', 'https://images.isbndb.com/covers/10/51/9780141301051.jpg'), - ('0439078059', 'Isabel: Jewel Of Castilla, Spain, 1466 (The Royal Diaries)', 'https://images.isbndb.com/covers/80/54/9780439078054.jpg'), - ('0916773752', 'The Littlest Christmas Tree: A Tale Of Growing And Becoming', 'https://images.isbndb.com/covers/37/55/9780916773755.jpg'), - ('0026890380', 'The Real Mother Goose', 'https://images.isbndb.com/covers/03/80/9780026890380.jpg'), - ('039922405X', 'Christina Katerina And The Time She Quit The Family', 'https://images.isbndb.com/covers/40/58/9780399224058.jpg'), - ('0679830006', 'The Berenstain Bears And The Trouble With Grownups', 'https://images.isbndb.com/covers/00/09/9780679830009.jpg'), - ('0679877061', 'The Berenstain Bears And Too Much Teasing', 'https://images.isbndb.com/covers/70/66/9780679877066.jpg'), - ('0307128385', 'Black Beauty (Golden Look-Look Book)', 'https://images.isbndb.com/covers/83/86/9780307128386.jpg'), - ('0060235330', 'A Pussycat''s Christmas', 'https://images.isbndb.com/covers/53/38/9780060235338.jpg'), - ('0679848053', 'The Berenstain Bears And The Bully', 'https://images.isbndb.com/covers/80/59/9780679848059.jpg'), - ('0395827418', 'Martha Calling', 'https://images.isbndb.com/covers/74/13/9780395827413.jpg'), - ('0679864342', 'The Berenstain Bears And The Green-Eyed Monster', 'https://images.isbndb.com/covers/43/49/9780679864349.jpg'), - ('0394873335', 'The Berenstain Bears Forget Their Manners', 'https://images.isbndb.com/covers/33/36/9780394873336.jpg'), - ('0312180624', 'Buster Midnight''s Cafe', 'https://images.isbndb.com/covers/06/21/9780312180621.jpg'), - ('0451171616', 'Sam Walton: The Inside Story Of America''s Richest Man (Signet)', 'https://images.isbndb.com/covers/16/10/9780451171610.jpg'), - ('0937295906', 'Happy Birthday, Molly!: A Springtime Story (American Girl)', 'https://images.isbndb.com/covers/59/08/9780937295908.jpg'), - ('0937295167', 'Molly Learns A Lesson (American Girls Collection)', 'https://images.isbndb.com/covers/51/68/9780937295168.jpg'), - ('0937295256', 'Molly''s Surprise: A Christmas Story, Book Three (The American Girls Collection)', 'https://images.isbndb.com/covers/52/50/9780937295250.jpg'), - ('0937295434', 'Molly Saves The Day (American Girls Collection)', 'https://images.isbndb.com/covers/54/34/9780937295434.jpg'), - ('0937295043', 'Meet Samantha (American Girl)', 'https://images.isbndb.com/covers/50/45/9780937295045.jpg'), - ('0590298356', 'California Diaries #1: Dawn', 'https://images.isbndb.com/covers/83/53/9780590298353.jpg'), - ('0374109990', 'Before And After', 'https://images.isbndb.com/covers/99/98/9780374109998.jpg'), - ('0345329163', 'Still River', 'https://images.isbndb.com/covers/91/65/9780345329165.jpg'), - ('0399137629', 'McNally''s Luck', 'https://images.isbndb.com/covers/76/24/9780399137624.jpg'), - ('0812568788', 'The Dark Side Of Nowhere', 'https://images.isbndb.com/covers/87/83/9780812568783.jpg'), - ('0307168409', 'Little Critter''s Read It Yourself Storybook', 'https://images.isbndb.com/covers/84/05/9780307168405.jpg'), - ('0723236658', 'Peter Rabbit Tales: Four Complete Stories', 'https://images.isbndb.com/covers/66/58/9780723236658.jpg'), - ('1570824304', 'Disney''s 101 Dalmatians: The Movie Storybook', 'https://images.isbndb.com/covers/43/02/9781570824302.jpg'), - ('0064440168', 'Come Back Amelia Bedelia An I Can Read (An I Can Read Book)', 'https://images.isbndb.com/covers/01/65/9780064440165.jpg'), - ('0156849097', 'The Star Thrower', 'https://images.isbndb.com/covers/90/98/9780156849098.jpg'), - ('0918956730', 'More Evidence That Demands A Verdict: Historical Evidences For The Christian Scriptures', 'https://images.isbndb.com/covers/67/36/9780918956736.jpg'), - ('0918956463', 'Evidence That Demands A Verdict: Historical Evidences For The Christian Faith', 'https://images.isbndb.com/covers/64/60/9780918956460.jpg'), - ('0970760094', 'Mendel''s Child', 'https://images.isbndb.com/covers/00/98/9780970760098.jpg'), - ('0440213029', 'The Lilac Bus', 'https://images.isbndb.com/covers/30/24/9780440213024.jpg'), - ('0025003305', 'Ten Philosophical Mistakes: Basic Errors In Modern Thought - How They Came About, Their Consequences, And How To Avoid Them', 'https://images.isbndb.com/covers/33/09/9780025003309.jpg'), - ('0449219372', 'Murder On The Potomac (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/93/79/9780449219379.jpg'), - ('0440223016', 'A Long Fatal Love Chase', 'https://images.isbndb.com/covers/30/16/9780440223016.jpg'), - ('0786867752', 'When You Come To A Fork In The Road, Take It!: Inspiration And Wisdom From One Of Baseball''s Greatest Heroes', 'https://images.isbndb.com/covers/77/52/9780786867752.jpg'), - ('1565073541', 'The Power Of A Praying Parent', 'https://images.isbndb.com/covers/35/48/9781565073548.jpg'), - ('0688031188', 'The Frugal Gourmet', 'https://images.isbndb.com/covers/11/83/9780688031183.jpg'), - ('1890437557', 'Crested Butte : A Novel', 'https://images.isbndb.com/covers/75/58/9781890437558.jpg'), - ('0671657135', 'The Society Of Mind', 'https://images.isbndb.com/covers/71/30/9780671657130.jpg'), - ('0745926290', 'At Home In Mitford (The Mitford Years, Book 1)', 'https://images.isbndb.com/covers/62/92/9780745926292.jpg'), - ('0451628330', 'Growing Up In The South: An Anthology Of Modern Southern Literature (Mentor)', 'https://images.isbndb.com/covers/83/36/9780451628336.jpg'), - ('014027684X', 'Daughter Of The Queen Of Sheba: A Memoir', 'https://images.isbndb.com/covers/68/48/9780140276848.jpg'), - ('0849942187', 'The Immortal', 'https://images.isbndb.com/covers/21/81/9780849942181.jpg'), - ('0446607339', 'Dead Even', 'https://images.isbndb.com/covers/73/39/9780446607339.jpg'), - ('0898157803', 'Menopaws: The Silent Meow', 'https://images.isbndb.com/covers/78/02/9780898157802.jpg'), - ('0140279288', 'Thirty Nothing', 'https://images.isbndb.com/covers/92/83/9780140279283.jpg'), - ('0805421351', 'Rich Mullins: An Arrow Pointing To Heaven', 'https://images.isbndb.com/covers/13/54/9780805421354.jpg'), - ('0967307902', 'Marley''s Ghost', 'https://images.isbndb.com/covers/79/09/9780967307909.jpg'), - ('0804111154', 'Maybe (Maybe Not) (Maybe Not : Second Thoughts From A Secret Life)', 'https://images.isbndb.com/covers/11/57/9780804111157.jpg'), - ('1556616120', 'The Bluebird And The Sparrow (Women Of The West #10)', 'https://images.isbndb.com/covers/61/29/9781556616129.jpg'), - ('155661456X', 'Too Long A Stranger (Women Of The West, Book 9)', 'https://images.isbndb.com/covers/45/69/9781556614569.jpg'), - ('0871915537', 'Paul Newman (Stars Of Stage And Screen)', 'https://images.isbndb.com/covers/55/35/9780871915535.jpg'), - ('1561797464', 'A Christmas Carol (Great Stories)', 'https://images.isbndb.com/covers/74/62/9781561797462.jpg'), - ('0380787814', 'Blues All Around Me: The Autobiography Of B. B. King', 'https://images.isbndb.com/covers/78/14/9780380787814.jpg'), - ('0736903054', 'Ice Cream As A Clue To The Meaning Of The Universe: A Journey Toward Eternal Delight', 'https://images.isbndb.com/covers/30/59/9780736903059.jpg'), - ('0874869870', 'She Said Yes: The Unlikely Martyrdom Of Cassie Bernall', 'https://images.isbndb.com/covers/98/73/9780874869873.jpg'), - ('0805029486', 'Twice In A Blue Moon: An Inspector Henry Tibbett Mystery (A Henry Holt Mystery)', 'https://images.isbndb.com/covers/94/82/9780805029482.jpg'), - ('0020869002', 'Perelandra (Space Trilogy, Bk. 2)', 'https://images.isbndb.com/covers/90/09/9780020869009.jpg'), - ('0684835525', 'Dog Love', 'https://images.isbndb.com/covers/55/25/9780684835525.jpg'), - ('0939431238', 'Great Day Hikes In & Around Napa Valley, 2d Ed.', 'https://images.isbndb.com/covers/12/36/9780939431236.jpg'), - ('0684852772', 'The Spirit Of St. Louis (Scribner Classic)', 'https://images.isbndb.com/covers/27/75/9780684852775.jpg'), - ('1576738590', 'Stories For A Woman''s Heart: Second Collection: Over One Hundred Treasures To Touch Your Soul (Stories For The Heart)', 'https://images.isbndb.com/covers/85/97/9781576738597.jpg'), - ('0806961740', 'The Little Giant Book Of Optical Illusions', 'https://images.isbndb.com/covers/17/43/9780806961743.jpg'), - ('1565121562', 'The Christmas Letters', 'https://images.isbndb.com/covers/15/60/9781565121560.jpg'), - ('0806624302', 'Prime Time Together-- With Kids: Creative Ideas, Activities, Games, And Projects', 'https://images.isbndb.com/covers/43/03/9780806624303.jpg'), - ('0345319672', 'Ballad Of Typhoid Mary', 'https://images.isbndb.com/covers/96/78/9780345319678.jpg'), - ('0689824351', 'Steal Away Home (Aladdin Historical Fiction)', 'https://images.isbndb.com/covers/43/57/9780689824357.jpg'), - ('0310322413', 'The Mommy Book', 'https://images.isbndb.com/covers/24/12/9780310322412.jpg'), - ('0684823772', 'Joyful Christian', 'https://images.isbndb.com/covers/37/75/9780684823775.jpg'), - ('0375410546', 'When We Were Orphans', 'https://images.isbndb.com/covers/05/43/9780375410543.jpg'), - ('0800786084', 'In His Steps', 'https://images.isbndb.com/covers/60/83/9780800786083.jpg'), - ('0812505123', 'White Fang (Tor Classics)', 'https://images.isbndb.com/covers/51/22/9780812505122.jpg'), - ('1564766047', 'We Are Sisters', 'https://images.isbndb.com/covers/60/45/9781564766045.jpg'), - ('1561794708', 'Sportin'' A ''Tude: What Your Attitude Says When You''re Not Looking', 'https://images.isbndb.com/covers/47/06/9781561794706.jpg'), - ('0786883375', 'Don''t Sweat The Small Stuff With Your Family: Simple Ways To Keep Daily Responsibilities And Household Chaos From Taking Over Your Life (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/33/70/9780786883370.jpg'), - ('0671753819', 'The Last Picture Show', 'https://images.isbndb.com/covers/38/18/9780671753818.jpg'), - ('0140094385', 'Amusing Ourselves To Death: Public Discourse In The Age Of Show Business', 'https://images.isbndb.com/covers/43/81/9780140094381.jpg'), - ('0373245076', 'Tall, Dark And Irresistible (The Baby Bet: McAllister''s Gifts)', 'https://images.isbndb.com/covers/50/79/9780373245079.jpg'), - ('0440766419', 'One Eyed Cat', 'https://images.isbndb.com/covers/64/14/9780440766414.jpg'), - ('0892838981', '101 Ways To Make Money At Home', 'https://images.isbndb.com/covers/89/81/9780892838981.jpg'), - ('0345439252', 'Trial By Ice: The True Story Of Murder And Survival On The 1871 Polaris Expedition', 'https://images.isbndb.com/covers/92/53/9780345439253.jpg'), - ('0671872672', 'Remember Me 3: The Last Story', 'https://images.isbndb.com/covers/26/70/9780671872670.jpg'), - ('0395070902', 'Shane', 'https://images.isbndb.com/covers/09/01/9780395070901.jpg'), - ('0440942500', 'Johnny Tremain', 'https://images.isbndb.com/covers/25/04/9780440942504.jpg'), - ('0061056987', 'I D4: Independence Day', 'https://images.isbndb.com/covers/69/87/9780061056987.jpg'), - ('0684835355', 'Cloud Chamber: A Novel', 'https://images.isbndb.com/covers/53/58/9780684835358.jpg'), - ('0451129040', 'Pat Widmer''s Cat Book', 'https://images.isbndb.com/covers/90/48/9780451129048.jpg'), - ('0310216222', 'Perennial: Meditations For The Seasons Of Life', 'https://images.isbndb.com/covers/62/23/9780310216223.jpg'), - ('0553211587', 'Pudd''nhead Wilson (Bantam Classics)', 'https://images.isbndb.com/covers/15/80/9780553211580.jpg'), - ('0310211883', 'Fresh Wind, Fresh Fire', 'https://images.isbndb.com/covers/18/84/9780310211884.jpg'), - ('1576737284', 'The Final Week Of Jesus', 'https://images.isbndb.com/covers/72/86/9781576737286.jpg'), - ('0060186860', 'The Blessing Of The Animals: True Stories Of Ginny, The Dog Who Rescues Cats', 'https://images.isbndb.com/covers/68/69/9780060186869.jpg'), - ('0843951141', 'Chase The Wind', 'https://images.isbndb.com/covers/11/41/9780843951141.jpg'), - ('0671643126', 'Not A Penny More Not A Penny Less', 'https://images.isbndb.com/covers/31/26/9780671643126.jpg'), - ('1567184855', 'Journey Of Souls: Case Studies Of Life Between Lives', 'https://images.isbndb.com/covers/48/53/9781567184853.jpg'), - ('0812521757', 'Burning Bright', 'https://images.isbndb.com/covers/17/57/9780812521757.jpg'), - ('0786813334', 'The Other Shepards', 'https://images.isbndb.com/covers/33/39/9780786813339.jpg'), - ('0449215296', 'Family - The Ties That Bind...And Gag!', 'https://images.isbndb.com/covers/52/96/9780449215296.jpg'), - ('0440498058', 'A Wrinkle In Time', 'https://images.isbndb.com/covers/80/56/9780440498056.jpg'), - ('0971290903', 'At The Manger: The Stories Of Those Who Were There', 'https://images.isbndb.com/covers/09/07/9780971290907.jpg'), - ('0141311908', 'Charlie & The Chocolate Factory', 'https://images.isbndb.com/covers/19/06/9780141311906.jpg'), - ('0310514916', 'Friendship: Skills For Having A Friend, Being A Friend', 'https://images.isbndb.com/covers/49/16/9780310514916.jpg'), - ('0064401324', 'Stone Fox', 'https://images.isbndb.com/covers/13/26/9780064401326.jpg'), - ('0671702262', 'Are You My Mommy?', 'https://images.isbndb.com/covers/22/67/9780671702267.jpg'), - ('0819310077', 'But No Elephants', 'https://images.isbndb.com/covers/00/71/9780819310071.jpg'), - ('0688025072', 'The Wicked Day', 'https://images.isbndb.com/covers/50/76/9780688025076.jpg'), - ('0140430113', 'Jane Eyre (Penguin Classics)', 'https://images.isbndb.com/covers/01/10/9780140430110.jpg'), - ('0849941768', 'Strengthening Your Grip', 'https://images.isbndb.com/covers/17/64/9780849941764.jpg'), - ('0156329301', 'The Four Loves', 'https://images.isbndb.com/covers/93/09/9780156329309.jpg'), - ('0387986065', 'The Observer''s Sky Atlas: With 50 Star Charts Covering The Entire Sky', 'https://images.isbndb.com/covers/60/67/9780387986067.jpg'), - ('0385066392', 'Peter And Veronica', 'https://images.isbndb.com/covers/63/96/9780385066396.jpg'), - ('0553212060', 'House Of The Seven Gables', 'https://images.isbndb.com/covers/20/68/9780553212068.jpg'), - ('0842345523', 'More Than A Carpenter', 'https://images.isbndb.com/covers/55/21/9780842345521.jpg'), - ('1556614373', 'Where Two Seas Met (Cheney & Shiloh: The Inheritance #1)', 'https://images.isbndb.com/covers/43/78/9781556614378.jpg'), - ('1556616996', 'Driven With The Wind (Cheney Duvall, M.D. Series #8)', 'https://images.isbndb.com/covers/69/90/9781556616990.jpg'), - ('1556616988', 'Island Of The Innocent (Cheney Duvall, M.D. Series #7) (Book 7)', 'https://images.isbndb.com/covers/69/83/9781556616983.jpg'), - ('0871237954', 'When Comes The Spring (Canadian West)', 'https://images.isbndb.com/covers/79/58/9780871237958.jpg'), - ('0380726815', 'Sights Unseen', 'https://images.isbndb.com/covers/68/13/9780380726813.jpg'), - ('0671729896', 'Good Earth', 'https://images.isbndb.com/covers/98/99/9780671729899.jpg'), - ('0064471098', 'The Silver Chair', 'https://images.isbndb.com/covers/10/91/9780064471091.jpg'), - ('1570361975', 'Hoop Dreams', 'https://images.isbndb.com/covers/19/75/9781570361975.jpg'), - ('0226500578', 'A River Runs Through It And Other Stories', 'https://images.isbndb.com/covers/05/77/9780226500577.jpg'), - ('0849910013', 'Flying Closer To The Flame: A Passion For The Holy Spirit', 'https://images.isbndb.com/covers/00/12/9780849910012.jpg'), - ('048626968X', 'White Fang (Dover Thrift Editions)', 'https://images.isbndb.com/covers/96/89/9780486269689.jpg'), - ('0849911672', 'Angels', 'https://images.isbndb.com/covers/16/75/9780849911675.jpg'), - ('0800717147', 'A Book Of Blessings', 'https://images.isbndb.com/covers/71/48/9780800717148.jpg'), - ('0880702753', 'Kids With Character: Preparing Children For A Lifetime Of Choices', 'https://images.isbndb.com/covers/27/51/9780880702751.jpg'), - ('1565073584', 'Fill My Cup, Lord... With The Peace Of Your Presence', 'https://images.isbndb.com/covers/35/86/9781565073586.jpg'), - ('071483839X', 'Portraits', 'https://images.isbndb.com/covers/83/97/9780714838397.jpg'), - ('0345301137', 'HELL''S ANGELS', 'https://images.isbndb.com/covers/11/30/9780345301130.jpg'), - ('1593080549', 'The Strange Case Of Dr. Jekyll And Mr. Hyde And Other Stories (Barnes & Noble Classics Series) (B&N Classics)', 'https://images.isbndb.com/covers/05/49/9781593080549.jpg'), - ('051788206X', 'Almost Vegetarian: A Primer For Cooks Who Are Eating Vegetarian Most Of The Time, Chicken & Fish Some Of The Time, & Altogether Well All Of The Time', 'https://images.isbndb.com/covers/20/61/9780517882061.jpg'), - ('0743442482', 'The Adventures Of Buckaroo Banzai : Across The Eighth Dimension', 'https://images.isbndb.com/covers/24/80/9780743442480.jpg'), - ('0375503897', 'A General Theory Of Love', 'https://images.isbndb.com/covers/38/94/9780375503894.jpg'), - ('0899198929', 'The Best American Essays, 1989', 'https://images.isbndb.com/covers/89/27/9780899198927.jpg'), - ('0671722654', 'Henry V (New Folger Library Shakespeare)', 'https://images.isbndb.com/covers/26/54/9780671722654.jpg'), - ('067084134X', 'Ravelstein - A Novel', 'https://images.isbndb.com/covers/13/49/9780670841349.jpg'), - ('0399525750', 'How We Choose To Be Happy: The 9 Choices Of Extremely Happy People, Their Secrets, Their Stories', 'https://images.isbndb.com/covers/57/59/9780399525759.jpg'), - ('0062554735', 'One More Day: Daily Meditations For People With Chronic Illness (Hazelden Medition Series)', 'https://images.isbndb.com/covers/47/34/9780062554734.jpg'), - ('0452282195', 'The Bluest Eye (Oprah''s Book Club)', 'https://images.isbndb.com/covers/21/93/9780452282193.jpg'), - ('0394742117', 'Out Of Africa & Shadows On The Grass', 'https://images.isbndb.com/covers/21/13/9780394742113.jpg'), - ('0618119809', 'A Tortoise For The Queen Of Tonga: Stories', 'https://images.isbndb.com/covers/98/06/9780618119806.jpg'), - ('0425097269', 'Shadowland', 'https://images.isbndb.com/covers/72/67/9780425097267.jpg'), - ('0060924179', 'The Real Thing: Stories And Sketches', 'https://images.isbndb.com/covers/41/71/9780060924171.jpg'), - ('1583225498', 'Our Media, Not Theirs: The Democratic Struggle Against Corporate Media (Open Media Series)', 'https://images.isbndb.com/covers/54/93/9781583225493.jpg'), - ('0195061675', 'Antigone (Greek Tragedy In New Translations)', 'https://images.isbndb.com/covers/16/73/9780195061673.jpg'), - ('0060929979', 'Inventing The Abbots And Other Stories', 'https://images.isbndb.com/covers/99/78/9780060929978.jpg'), - ('0962197963', 'Portals In A Northern Sky', 'https://images.isbndb.com/covers/79/63/9780962197963.jpg'), - ('1566190932', 'Pride And Prejudice', 'https://images.isbndb.com/covers/09/30/9781566190930.jpg'), - ('0451521250', 'The Tempest (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/12/55/9780451521255.jpg'), - ('0451521323', 'Othello', 'https://images.isbndb.com/covers/13/23/9780451521323.jpg'), - ('0061054887', 'The Dispossessed', 'https://images.isbndb.com/covers/48/84/9780061054884.jpg'), - ('0486270637', 'Five Great Short Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/30/9780486270630.jpg'), - ('0271007494', 'Who Is Black?: One Nation''s Definition', 'https://images.isbndb.com/covers/74/96/9780271007496.jpg'), - ('0060977205', 'The Transcendent Child: Tales Of Triumph Over The Past', 'https://images.isbndb.com/covers/72/07/9780060977207.jpg'), - ('0394172663', 'Casebook On Waiting For Godot', 'https://images.isbndb.com/covers/26/68/9780394172668.jpg'), - ('0679745424', 'Playing In The Dark: Whiteness And The Literary Imagination', 'https://images.isbndb.com/covers/54/26/9780679745426.jpg'), - ('0915943565', 'Cracking India', 'https://images.isbndb.com/covers/35/62/9780915943562.jpg'), - ('0140120491', 'The Great Indian Novel', 'https://images.isbndb.com/covers/04/93/9780140120493.jpg'), - ('1556151047', 'Mathematics And The Imagination (Tempus)', 'https://images.isbndb.com/covers/10/40/9781556151040.jpg'), - ('0804832560', 'Tale Of Genji (Tuttle Classics Of Japanese Literature)', 'https://images.isbndb.com/covers/25/64/9780804832564.jpg'), - ('1570613028', 'Rare Encounters With Ordinary Birds: Notes From A Northwest Year', 'https://images.isbndb.com/covers/30/29/9781570613029.jpg'), - ('044900483X', 'Children Of God (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/48/38/9780449004838.jpg'), - ('0679422188', 'A Woman''s Worth', 'https://images.isbndb.com/covers/21/81/9780679422181.jpg'), - ('0553206036', 'Feminist Papers', 'https://images.isbndb.com/covers/60/36/9780553206036.jpg'), - ('1582431485', 'Poets On The Peaks: Gary Snyder, Philip Whalen & Jack Kerouac In The Cascades', 'https://images.isbndb.com/covers/14/82/9781582431482.jpg'), - ('0071360638', 'The Quotable Scientist Words Of Wisdom From Charles Darwin, Albert Einstein, Richard Feynman, Galileo, Marie Curie, Rene Descartes, And More', 'https://images.isbndb.com/covers/06/30/9780071360630.jpg'), - ('039597707X', '3 Bowls : Vegetarian Recipes From An American Zen Buddhist Monastery', 'https://images.isbndb.com/covers/70/71/9780395977071.jpg'), - ('0918949165', 'When I Am An Old Woman I Shall Wear Purple', 'https://images.isbndb.com/covers/91/65/9780918949165.jpg'), - ('037540273X', 'Beloved: Gift Edition', 'https://images.isbndb.com/covers/27/39/9780375402739.jpg'), - ('0449227545', 'The Hammer Of Eden', 'https://images.isbndb.com/covers/75/41/9780449227541.jpg'), - ('0425171884', 'Shadow Watch (Tom Clancy''s Power Plays, Book 3)', 'https://images.isbndb.com/covers/18/82/9780425171882.jpg'), - ('0061003638', 'At Bertram''s Hotel', 'https://images.isbndb.com/covers/36/39/9780061003639.jpg'), - ('1561003913', 'Politically Correct Bedtime Stories', 'https://images.isbndb.com/covers/39/14/9781561003914.jpg'), - ('0393314812', 'Ar''n''t I A Woman?: Female Slaves In The Plantation South', 'https://images.isbndb.com/covers/48/16/9780393314816.jpg'), - ('0553279718', 'The Uplift War (The Uplift Saga, Book 3)', 'https://images.isbndb.com/covers/97/19/9780553279719.jpg'), - ('0553269828', 'Sundiver (The Uplift Saga, Book 1)', 'https://images.isbndb.com/covers/98/26/9780553269826.jpg'), - ('0425164829', 'The Magician''s Tale', 'https://images.isbndb.com/covers/48/22/9780425164822.jpg'), - ('0312006926', 'Technique In Fiction/Second Edition: Revised And Updated For A New Generation', 'https://images.isbndb.com/covers/69/21/9780312006921.jpg'), - ('0060830719', 'Great Short Works Of Leo Tolstoy (Perennial Library)', 'https://images.isbndb.com/covers/07/17/9780060830717.jpg'), - ('0553274872', 'Under The Influence: A Guide To The Myths And Realities Of Alcoholism', 'https://images.isbndb.com/covers/48/75/9780553274875.jpg'), - ('0874776953', 'When Someone You Love Has A Mental Illness', 'https://images.isbndb.com/covers/69/59/9780874776959.jpg'), - ('1886039224', 'Prescription Drug Abuse: The Hidden Epidemic : A Guide To Coping And Understanding', 'https://images.isbndb.com/covers/92/23/9781886039223.jpg'), - ('0935908315', 'Intervention: How To Help Someone Who Doesn''t Want Help', 'https://images.isbndb.com/covers/83/12/9780935908312.jpg'), - ('0231121989', 'Salt: Grain Of Life', 'https://images.isbndb.com/covers/19/89/9780231121989.jpg'), - ('0385094787', 'Archy And Mehitabel', 'https://images.isbndb.com/covers/47/88/9780385094788.jpg'), - ('0832903930', 'The McDougall Health-Supporting Cookbook: Volume One', 'https://images.isbndb.com/covers/39/39/9780832903939.jpg'), - ('0553214187', 'My Ántonia (Bantam Classic)', 'https://images.isbndb.com/covers/41/85/9780553214185.jpg'), - ('0312286236', 'Bombay Time: A Novel', 'https://images.isbndb.com/covers/62/31/9780312286231.jpg'), - ('0380726254', 'Serpent''s Tooth: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/62/57/9780380726257.jpg'), - ('0071387218', 'Occupational Outlook Handbook, 2002-2003 Edition', 'https://images.isbndb.com/covers/72/17/9780071387217.jpg'), - ('0062505319', 'The Woman''s Comfort Book: A Self-Nurturing Guide For Restoring Balance In Your Life', 'https://images.isbndb.com/covers/53/16/9780062505316.jpg'), - ('0679872027', 'Fuzzytail Farm (Chunky Flap Books)', 'https://images.isbndb.com/covers/20/23/9780679872023.jpg'), - ('0931580617', 'How To Heal Depression', 'https://images.isbndb.com/covers/06/11/9780931580611.jpg'), - ('0553238000', 'Mistral''s Daughter', 'https://images.isbndb.com/covers/80/06/9780553238006.jpg'), - ('087131794X', 'Dr. Atkins'' New Diet Cookbook', 'https://images.isbndb.com/covers/79/40/9780871317940.jpg'), - ('0786864680', 'The Secrets About Life Every Woman Should Know: Ten Principles For Total Emotional And Spiritual Fulfillment', 'https://images.isbndb.com/covers/46/83/9780786864683.jpg'), - ('1561703184', 'Confidence: Finding It And Living It', 'https://images.isbndb.com/covers/31/80/9781561703180.jpg'), - ('0931580242', 'You Can''t Afford The Luxury Of A Negative Thought (The Life 101 Series)', 'https://images.isbndb.com/covers/02/46/9780931580246.jpg'), - ('0440193567', 'The Von Bulow Affair', 'https://images.isbndb.com/covers/35/62/9780440193562.jpg'), - ('0380706512', 'Patty Hearst Her Story', 'https://images.isbndb.com/covers/65/18/9780380706518.jpg'), - ('0671707248', 'Reversal Of Fortune: Inside The Von Bulow Case', 'https://images.isbndb.com/covers/72/48/9780671707248.jpg'), - ('0895860724', 'Drawing', 'https://images.isbndb.com/covers/07/29/9780895860729.jpg'), - ('0882668870', 'How To Make Raffia Hats, Bags & Baskets', 'https://images.isbndb.com/covers/88/71/9780882668871.jpg'), - ('0609803387', 'Spice World: The Movie: The Official Book Of The Film', 'https://images.isbndb.com/covers/33/87/9780609803387.jpg'), - ('042518403X', 'A Murderous Yarn (Needlecraft Mystery)', 'https://images.isbndb.com/covers/40/35/9780425184035.jpg'), - ('1584855185', 'Cecile: Gates Of Gold (Girls Of Many Lands)', 'https://images.isbndb.com/covers/51/87/9781584855187.jpg'), - ('0451625552', 'Writing For Story (Mentor)', 'https://images.isbndb.com/covers/55/57/9780451625557.jpg'), - ('0786011661', 'Child''s Prey (Pinnacle True Crime)', 'https://images.isbndb.com/covers/16/67/9780786011667.jpg'), - ('0451157087', 'Lullaby And Good Night', 'https://images.isbndb.com/covers/70/89/9780451157089.jpg'), - ('0451405897', 'Lindbergh: The Crime', 'https://images.isbndb.com/covers/58/90/9780451405890.jpg'), - ('0395860032', 'Poems Of Akhmatova: Izbrannye Stikhi', 'https://images.isbndb.com/covers/00/38/9780395860038.jpg'), - ('0689821867', 'Just Ella (Aladdin Fantasy)', 'https://images.isbndb.com/covers/18/68/9780689821868.jpg'), - ('0619016620', 'Programming With Microsoft Visual Basic .Net', 'https://images.isbndb.com/covers/66/23/9780619016623.jpg'), - ('0914881655', 'No-Sew Applique: Holiday Magic', 'https://images.isbndb.com/covers/16/50/9780914881650.jpg'), - ('0877931003', 'Day By Day: The Notre Dame Prayerbook For Students', 'https://images.isbndb.com/covers/10/03/9780877931003.jpg'), - ('0374515360', 'The Complete Stories', 'https://images.isbndb.com/covers/53/62/9780374515362.jpg'), - ('0307617963', 'Meteor Monsters (Masters Of The Universe Super Adventure Books)', 'https://images.isbndb.com/covers/79/65/9780307617965.jpg'), - ('0060193387', 'A History Of The Wife', 'https://images.isbndb.com/covers/33/86/9780060193386.jpg'), - ('067950754X', 'History Of The SS', 'https://images.isbndb.com/covers/75/43/9780679507543.jpg'), - ('0517576988', 'Backlash: The Undeclared War Against Women', 'https://images.isbndb.com/covers/69/84/9780517576984.jpg'), - ('0747545847', 'The Mistress (Bloomsbury Paperbacks)', 'https://images.isbndb.com/covers/58/42/9780747545842.jpg'), - ('0385261764', '11 Edward Street', 'https://images.isbndb.com/covers/17/60/9780385261760.jpg'), - ('0887291058', 'Langenscheidt''s Pocket German Dictionary', 'https://images.isbndb.com/covers/10/50/9780887291050.jpg'), - ('0312157061', 'Twenty Years At Hull-House (Bedford Series In History & Culture)', 'https://images.isbndb.com/covers/70/67/9780312157067.jpg'), - ('0915811642', 'The Laws Of Spirit: Simple, Powerful Truths For Making Life Work', 'https://images.isbndb.com/covers/16/49/9780915811649.jpg'), - ('0393962873', 'The Norton Anthology Of English Literature, Vol. 1', 'https://images.isbndb.com/covers/28/71/9780393962871.jpg'), - ('0553207628', 'History Of Women In America', 'https://images.isbndb.com/covers/76/20/9780553207620.jpg'), - ('0752500260', 'Robert Burns (Illustrated Poets)', 'https://images.isbndb.com/covers/02/63/9780752500263.jpg'), - ('0871318903', 'Resurrection Of The Shroud: New Scientific, Medical, And Archeological Evidence', 'https://images.isbndb.com/covers/89/09/9780871318909.jpg'), - ('0140141510', 'Granta 59: France The Outsider', 'https://images.isbndb.com/covers/15/11/9780140141511.jpg'), - ('014005264X', 'Betrayal Of Innocence: Incest And Its Devastation', 'https://images.isbndb.com/covers/26/40/9780140052640.jpg'), - ('0451628667', 'Jews, God And History: Revised And Updated Edition', 'https://images.isbndb.com/covers/86/64/9780451628664.jpg'), - ('1884910009', 'Turning Life Into Fiction', 'https://images.isbndb.com/covers/00/05/9781884910005.jpg'), - ('0688075665', 'From Cradle To Grave: The Short Lives And Strange Deaths Of Marybeth Tinning''s Nine Children', 'https://images.isbndb.com/covers/56/68/9780688075668.jpg'), - ('0312194390', 'The Autobiography Of Henry VIII: With Notes By His Fool, Will Somers', 'https://images.isbndb.com/covers/43/90/9780312194390.jpg'), - ('0843711299', 'The Times Atlas Of World History', 'https://images.isbndb.com/covers/12/95/9780843711295.jpg'), - ('0451522923', 'David Copperfield (Signet Classics)', 'https://images.isbndb.com/covers/29/24/9780451522924.jpg'), - ('0696013908', 'Better Homes And Gardens Easy Bazaar Crafts', 'https://images.isbndb.com/covers/39/04/9780696013904.jpg'), - ('0696023644', 'Susan Winget''s The Changing Seasons (An American Sampler)', 'https://images.isbndb.com/covers/36/44/9780696023644.jpg'), - ('0800864166', 'The Portable Needlepoint Boutique', 'https://images.isbndb.com/covers/41/63/9780800864163.jpg'), - ('0781805899', 'Beginners Welsh (Beginner''s)', 'https://images.isbndb.com/covers/58/96/9780781805896.jpg'), - ('0201043823', 'Individual In A Social World: Essays And Experiments (Addison-Wesley Series In Social Psychology)', 'https://images.isbndb.com/covers/38/22/9780201043822.jpg'), - ('0631158189', 'Causal Attribution: From Cognitive Processes To Collective Beliefs', 'https://images.isbndb.com/covers/81/89/9780631158189.jpg'), - ('0205152074', 'Readings In Social Psychology: General, Classic, And Contemporary Selections', 'https://images.isbndb.com/covers/20/70/9780205152070.jpg'), - ('0205126987', 'Readings In Social Psychology: General, Classic And Contemporary Selections', 'https://images.isbndb.com/covers/69/89/9780205126989.jpg'), - ('0425171493', 'Framed In Lace (Needlecraft Mystery)', 'https://images.isbndb.com/covers/14/93/9780425171493.jpg'), - ('157224223X', 'The Anxiety & Phobia Workbook', 'https://images.isbndb.com/covers/22/34/9781572242234.jpg'), - ('0449704335', 'Shizuko''s Daughter', 'https://images.isbndb.com/covers/43/32/9780449704332.jpg'), - ('0864426488', 'Lonely Planet Europe On A Shoestring', 'https://images.isbndb.com/covers/64/82/9780864426482.jpg'), - ('0898798140', 'Writing Articles About The World Around You', 'https://images.isbndb.com/covers/81/42/9780898798142.jpg'), - ('0361074662', 'Tales From Bohemia', 'https://images.isbndb.com/covers/46/67/9780361074667.jpg'), - ('0140445587', 'The Koran (Penguin Classics)', 'https://images.isbndb.com/covers/55/89/9780140445589.jpg'), - ('0060830476', 'Giants In The Earth: A Saga Of The Prairie', 'https://images.isbndb.com/covers/04/72/9780060830472.jpg'), - ('0375708111', 'The Elegant Universe: Superstrings, Hidden Dimensions, And The Quest For The Ultimate Theory', 'https://images.isbndb.com/covers/81/14/9780375708114.jpg'), - ('0385477058', 'Hyperspace: A Scientific Odyssey Through Parallel Universes, Time Warps, And The 10th Dimens Ion', 'https://images.isbndb.com/covers/70/55/9780385477055.jpg'), - ('0517589818', 'Atomic Harvest: Hanford And The Lethal Toll Of America''s Nuclear Arsenal', 'https://images.isbndb.com/covers/98/16/9780517589816.jpg'), - ('0201340208', 'Introductory And Intermediate Algebra: A Combined Approach', 'https://images.isbndb.com/covers/02/04/9780201340204.jpg'), - ('0195017854', 'The American Woman: Her Changing Social, Economic, And Political Roles, 1920-1970 (Galaxy Books)', 'https://images.isbndb.com/covers/78/54/9780195017854.jpg'), - ('0892434090', 'Handbook For Today''s Catholic: Beliefs, Practices, Prayers (A Redemptorist Pastoral Publication)', 'https://images.isbndb.com/covers/40/91/9780892434091.jpg'), - ('0425187144', 'Hanging By A Thread', 'https://images.isbndb.com/covers/71/42/9780425187142.jpg'), - ('0151004943', 'Our Fathers: A Novel By The Author Of The Missing', 'https://images.isbndb.com/covers/49/42/9780151004942.jpg'), - ('0306811588', 'The London Monster: A Sanguinary Tale', 'https://images.isbndb.com/covers/15/86/9780306811586.jpg'), - ('0743234979', 'Think Of England: A Novel', 'https://images.isbndb.com/covers/49/79/9780743234979.jpg'), - ('0374106843', 'August 1914 (Avgust Chetyrnadtsatogo)', 'https://images.isbndb.com/covers/68/43/9780374106843.jpg'), - ('0394568354', 'S', 'https://images.isbndb.com/covers/83/55/9780394568355.jpg'), - ('0520063279', 'Veiled Sentiments: Honor And Poetry In A Bedouin Society', 'https://images.isbndb.com/covers/32/73/9780520063273.jpg'), - ('0394529383', 'Memoirs', 'https://images.isbndb.com/covers/93/87/9780394529387.jpg'), - ('0140441077', 'The Prince (Penguin Classics)', 'https://images.isbndb.com/covers/10/79/9780140441079.jpg'), - ('0764801422', 'The Spiritual Exercises Of Saint Ignatius: A New Translation From The Authorized Latin Text (A Triumph Classic)', 'https://images.isbndb.com/covers/14/26/9780764801426.jpg'), - ('0684195208', 'Constantine The Great: The Man And His Times', 'https://images.isbndb.com/covers/52/09/9780684195209.jpg'), - ('0553100793', 'Lenin In Zurich', 'https://images.isbndb.com/covers/07/92/9780553100792.jpg'), - ('0140055312', 'Boat People: An ''Age'' Investigation With Bruce Grant', 'https://images.isbndb.com/covers/53/13/9780140055313.jpg'), - ('0451522397', 'Ox Bow Incident', 'https://images.isbndb.com/covers/23/99/9780451522399.jpg'), - ('0906138213', 'In Conversation With God: Meditations For Each Day Of The Year, Vol. 2: Lent, Holy Week, Eastertide', 'https://images.isbndb.com/covers/82/12/9780906138212.jpg'), - ('3423078006', 'Damals War Es Friedrich', 'https://images.isbndb.com/covers/80/09/9783423078009.jpg'), - ('0895862530', 'Sewing', 'https://images.isbndb.com/covers/25/32/9780895862532.jpg'), - ('0895861682', 'Scrap Fabric Crafts', 'https://images.isbndb.com/covers/16/89/9780895861689.jpg'), - ('1551800713', 'Craft Business (Self-Counsel Business Series)', 'https://images.isbndb.com/covers/07/14/9781551800714.jpg'), - ('0882951017', 'Duchess Of Malfi (Crofts Classics)', 'https://images.isbndb.com/covers/10/10/9780882951010.jpg'), - ('0394752937', 'The Mistress Of Husaby: Kristin Lavransdatter, Vol. 2', 'https://images.isbndb.com/covers/29/38/9780394752938.jpg'), - ('0060653035', 'Lives Of The Popes: The Pontiffs From St. Peter To John Paul II', 'https://images.isbndb.com/covers/30/33/9780060653033.jpg'), - ('0801522315', 'Eleanor Of Aquitaine', 'https://images.isbndb.com/covers/23/14/9780801522314.jpg'), - ('0713990988', 'A History Of Wales', 'https://images.isbndb.com/covers/09/80/9780713990980.jpg'), - ('1568360290', 'The World Of The Shining Prince: Court Life In Ancient Japan (Kodansha Globe)', 'https://images.isbndb.com/covers/02/94/9781568360294.jpg'), - ('0385720254', 'The Unabridged Journals Of Sylvia Plath', 'https://images.isbndb.com/covers/02/50/9780385720250.jpg'), - ('0631133917', 'The Aristocracy In England, 1660-1914', 'https://images.isbndb.com/covers/39/19/9780631133919.jpg'), - ('0688024610', 'The White-Boned Demon: A Biography Of Madame Mao Zedong', 'https://images.isbndb.com/covers/46/11/9780688024611.jpg'), - ('0399123237', 'My House Has Two Doors', 'https://images.isbndb.com/covers/32/38/9780399123238.jpg'), - ('0452006228', 'The Germans (Meridian)', 'https://images.isbndb.com/covers/62/25/9780452006225.jpg'), - ('031210104X', 'The United States In The Twentieth Century: America 1900-1945', 'https://images.isbndb.com/covers/10/46/9780312101046.jpg'), - ('063118449X', 'Mary Tudor: A Life', 'https://images.isbndb.com/covers/44/92/9780631184492.jpg'), - ('0253204232', 'Beyond The Veil, Revised Edition: Male-Female Dynamics In Modern Muslim Society', 'https://images.isbndb.com/covers/42/33/9780253204233.jpg'), - ('0933932669', 'The Sadness Of Christ (Yale University Press Translation)', 'https://images.isbndb.com/covers/26/61/9780933932661.jpg'), - ('0155013459', 'The Human Perspective', 'https://images.isbndb.com/covers/34/52/9780155013452.jpg'), - ('006064205X', 'The Awakened One - The Life And Work Of Bhagwan Shree Rajneesh', 'https://images.isbndb.com/covers/20/51/9780060642051.jpg'), - ('1573225681', 'Living Buddha, Living Christ', 'https://images.isbndb.com/covers/56/87/9781573225687.jpg'), - ('0684856603', 'All Through The Night : A Suspense Story', 'https://images.isbndb.com/covers/66/05/9780684856605.jpg'), - ('0006329527', 'The Stuarts: A Study In English Kingship (British Monarchy Series)', 'https://images.isbndb.com/covers/95/27/9780006329527.jpg'), - ('0520011309', 'Henry VIII (English Monarchs Series)', 'https://images.isbndb.com/covers/13/04/9780520011304.jpg'), - ('0394752996', 'The Bridal Wreath: Kristin Lavransdatter, Vol.1', 'https://images.isbndb.com/covers/29/90/9780394752990.jpg'), - ('0030056284', 'Second Daughter: Growing Up In China 1930-1949', 'https://images.isbndb.com/covers/62/84/9780030056284.jpg'), - ('0312155948', 'Mrs Keppel And Her Daughter', 'https://images.isbndb.com/covers/59/40/9780312155940.jpg'), - ('0895261677', 'The Final Days: The Last, Desperate Abuses Of Power By The Clinton White House', 'https://images.isbndb.com/covers/16/70/9780895261670.jpg'), - ('0449209113', 'In The Beginning', 'https://images.isbndb.com/covers/91/10/9780449209110.jpg'), - ('0743204123', 'Maestro: Greenspan''s Fed And The American Boom', 'https://images.isbndb.com/covers/41/25/9780743204125.jpg'), - ('0061096962', 'Perfect Murder, Perfect Town : The Uncensored Story Of The JonBenet Murder And The Grand Jury''s Search For The Final Truth', 'https://images.isbndb.com/covers/69/69/9780061096969.jpg'), - ('0840795319', 'Woman On Death Row', 'https://images.isbndb.com/covers/53/11/9780840795311.jpg'), - ('1573228834', 'Ethics For The New Millennium', 'https://images.isbndb.com/covers/88/31/9781573228831.jpg'), - ('0553212486', 'House Of Mirth,the', 'https://images.isbndb.com/covers/24/88/9780553212488.jpg'), - ('0440237084', 'Left For Dead: My Journey Home From Everest', 'https://images.isbndb.com/covers/70/82/9780440237082.jpg'), - ('0486266907', 'Ethan Frome (Dover Thrift Editions)', 'https://images.isbndb.com/covers/69/09/9780486266909.jpg'), - ('0800871863', 'Silence', 'https://images.isbndb.com/covers/18/64/9780800871864.jpg'), - ('023399226X', 'Murder By Numbers', 'https://images.isbndb.com/covers/22/66/9780233992266.jpg'), - ('0060812494', 'Native Son: And How Bigger Was Born', 'https://images.isbndb.com/covers/24/92/9780060812492.jpg'), - ('0140044507', 'Eichmann In Jerusalem, A Report On The Banality Of Evil', 'https://images.isbndb.com/covers/45/08/9780140044508.jpg'), - ('1556520794', 'Our Sisters'' London: Feminist Walking Tours', 'https://images.isbndb.com/covers/07/92/9781556520792.jpg'), - ('0394717953', 'America At 1750: A Social Portrait', 'https://images.isbndb.com/covers/79/51/9780394717951.jpg'), - ('1894877233', 'Ghost Stories Of The Sea', 'https://images.isbndb.com/covers/72/37/9781894877237.jpg'), - ('0312118341', 'Jasmine Nights', 'https://images.isbndb.com/covers/83/41/9780312118341.jpg'), - ('0670886955', 'Berlin: The Downfall 1945', 'https://images.isbndb.com/covers/69/51/9780670886951.jpg'), - ('0385491077', 'Bodily Harm', 'https://images.isbndb.com/covers/10/75/9780385491075.jpg'), - ('0316355208', 'Pentimento', 'https://images.isbndb.com/covers/52/09/9780316355209.jpg'), - ('0425167801', 'Crewel World (Needlecraft Mystery)', 'https://images.isbndb.com/covers/78/09/9780425167809.jpg'), - ('0873326903', 'The Politics Of Disillusionment: The Chinese Communist Party Under Deng Xiapong, 1978-1989 (Studies On Contemporary China)', 'https://images.isbndb.com/covers/69/02/9780873326902.jpg'), - ('067975833X', 'Confederates In The Attic: Dispatches From The Unfinished Civil War', 'https://images.isbndb.com/covers/83/34/9780679758334.jpg'), - ('0786889624', 'The Hearse You Came In On (Hitchcock Sewell Mysteries)', 'https://images.isbndb.com/covers/96/24/9780786889624.jpg'), - ('0446343455', 'Tourist Season', 'https://images.isbndb.com/covers/34/59/9780446343459.jpg'), - ('0916410641', 'How Sharp Is Your Pencil?', 'https://images.isbndb.com/covers/06/43/9780916410643.jpg'), - ('0399131256', 'The Eighth Commandment', 'https://images.isbndb.com/covers/12/57/9780399131257.jpg'), - ('0671454056', 'River Lady', 'https://images.isbndb.com/covers/40/50/9780671454050.jpg'), - ('0553239813', 'Little Drummer Girl', 'https://images.isbndb.com/covers/98/12/9780553239812.jpg'), - ('0425045048', 'The Jesus Incident', 'https://images.isbndb.com/covers/50/46/9780425045046.jpg'), - ('0553234617', 'A Wizard Of Earthsea (The Earthsea Cycle, Book 1)', 'https://images.isbndb.com/covers/46/19/9780553234619.jpg'), - ('0380000547', 'The Science Fiction Hall Of Fame, Volume IIB', 'https://images.isbndb.com/covers/05/48/9780380000548.jpg'), - ('0453010105', 'The Wisdom Of Amish Folk Medicine: The Plain People''s Method On How To Cut Down On Doctor Bills', 'https://images.isbndb.com/covers/01/08/9780453010108.jpg'), - ('0671721755', 'If I Pay Thee Not In Gold', 'https://images.isbndb.com/covers/17/56/9780671721756.jpg'), - ('0345257189', 'The Power That Preserves', 'https://images.isbndb.com/covers/71/85/9780345257185.jpg'), - ('0345257170', 'The Illearth War: The Chronicles Of Thomas Covenant The Unbeliever Book Two', 'https://images.isbndb.com/covers/71/78/9780345257178.jpg'), - ('0345257162', 'Lord Foul''s Bane (The Chronicles Of Thomas Covenant The Unbeliever, Book 1)', 'https://images.isbndb.com/covers/71/61/9780345257161.jpg'), - ('0684825457', 'It Takes A Village: And Other Lessons Children Teach Us', 'https://images.isbndb.com/covers/54/58/9780684825458.jpg'), - ('0345335651', 'Queen Of Sorcery (The Belgariad, Book 2)', 'https://images.isbndb.com/covers/56/54/9780345335654.jpg'), - ('067170561X', 'Contamination (Star Trek: The Next Generation, No. 16)', 'https://images.isbndb.com/covers/56/19/9780671705619.jpg'), - ('0553109405', 'Black Sunday', 'https://images.isbndb.com/covers/94/05/9780553109405.jpg'), - ('0671735160', 'Strike Zone (Star Trek: The Next Generation, Book 5)', 'https://images.isbndb.com/covers/51/66/9780671735166.jpg'), - ('0345355237', 'The Surveillance (Intervention, Book 1)', 'https://images.isbndb.com/covers/52/32/9780345355232.jpg'), - ('0671894226', 'Federation (Star Trek)', 'https://images.isbndb.com/covers/42/21/9780671894221.jpg'), - ('0140296441', 'Sherlock Holmes And The Red Demon (Sherlock Holmes Mysteries (Penguin))', 'https://images.isbndb.com/covers/64/40/9780140296440.jpg'), - ('3518393421', 'Wo Ein Vogel Am Schönsten Singt', 'https://images.isbndb.com/covers/34/20/9783518393420.jpg'), - ('344272578X', 'Die Luftgängerin', 'https://images.isbndb.com/covers/57/86/9783442725786.jpg'), - ('3257231652', 'Top Job', 'https://images.isbndb.com/covers/16/56/9783257231656.jpg'), - ('3492220169', 'Die Felder Der Ehre.', 'https://images.isbndb.com/covers/01/63/9783492220163.jpg'), - ('3404123425', 'Weites, Wildes Land', 'https://images.isbndb.com/covers/34/21/9783404123421.jpg'), - ('3404122763', 'Das Fünfte Evangelium: Roman', 'https://images.isbndb.com/covers/27/69/9783404122769.jpg'), - ('3548252192', 'Der Schneefalke', 'https://images.isbndb.com/covers/21/93/9783548252193.jpg'), - ('3499233002', 'In Guten Wie In Schlechten Tagen.', 'https://images.isbndb.com/covers/30/05/9783499233005.jpg'), - ('3746650291', 'Narrenweisheit Oder Tod Und Verklärung Des Jean-Jacques Rousseau.', 'https://images.isbndb.com/covers/02/96/9783746650296.jpg'), - ('3458335684', 'Romane Und Erzählungen. 8 Bände: Die Versuchung Des Heiligen Antonius (insel Taschenbuch)', 'https://images.isbndb.com/covers/56/89/9783458335689.jpg'), - ('3442420970', 'Abgründig.', 'https://images.isbndb.com/covers/09/71/9783442420971.jpg'), - ('3442424747', 'Übermorgen', 'https://images.isbndb.com/covers/47/40/9783442424740.jpg'), - ('3404147596', 'Der Sohn Des Himmels', 'https://images.isbndb.com/covers/75/95/9783404147595.jpg'), - ('325720485X', 'Ediths Tagebuch', 'https://images.isbndb.com/covers/48/58/9783257204858.jpg'), - ('3453150244', 'Das Französische Testament. Roman', 'https://images.isbndb.com/covers/02/49/9783453150249.jpg'), - ('3423202823', 'Die Stürme Des Lebens', 'https://images.isbndb.com/covers/28/24/9783423202824.jpg'), - ('3627000927', 'Holzschnitte Von Frauen', 'https://images.isbndb.com/covers/09/29/9783627000929.jpg'), - ('3596141990', 'Das Geheimnis Der Maske', 'https://images.isbndb.com/covers/19/99/9783596141999.jpg'), - ('354824789X', 'Browns Grabgesang', 'https://images.isbndb.com/covers/78/92/9783548247892.jpg'), - ('349922710X', 'Die Prozedur', 'https://images.isbndb.com/covers/71/03/9783499227103.jpg'), - ('3423130199', 'Ein Job: Krininalroman', 'https://images.isbndb.com/covers/01/96/9783423130196.jpg'), - ('3499228548', 'Sehr Blaue Augen: Mit Einem Neuen Nachwort Der Autorin', 'https://images.isbndb.com/covers/85/44/9783499228544.jpg'), - ('3442728363', 'Die Abbildung', 'https://images.isbndb.com/covers/83/67/9783442728367.jpg'), - ('3596150531', 'Der Unschickliche Antrag.', 'https://images.isbndb.com/covers/05/33/9783596150533.jpg'), - ('0316358568', 'The Blue Lotus (The Adventures Of Tintin)', 'https://images.isbndb.com/covers/85/69/9780316358569.jpg'), - ('0836220676', 'Valley Of The Far Side ®', 'https://images.isbndb.com/covers/06/74/9780836220674.jpg'), - ('0688124887', 'Hexwood', 'https://images.isbndb.com/covers/48/85/9780688124885.jpg'), - ('044100895X', 'Ombria In Shadow', 'https://images.isbndb.com/covers/89/57/9780441008957.jpg'), - ('0441004385', 'Winter Rose', 'https://images.isbndb.com/covers/43/86/9780441004386.jpg'), - ('042507448X', 'Gods Of Riverworld (Riverworld Saga)', 'https://images.isbndb.com/covers/44/80/9780425074480.jpg'), - ('1853260096', 'Hamlet (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/94/9781853260094.jpg'), - ('0425132153', 'Good Omens', 'https://images.isbndb.com/covers/21/59/9780425132159.jpg'), - ('0064408086', 'Ascension (Water Trilogy, Book 1)', 'https://images.isbndb.com/covers/80/80/9780064408080.jpg'), - ('0345320115', 'Garfield Sits Around The House (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/01/17/9780345320117.jpg'), - ('0345328175', 'Day Of The Triffids', 'https://images.isbndb.com/covers/81/75/9780345328175.jpg'), - ('0312860684', 'Grimmy: Friends Don''t Let Friends Own Cats!', 'https://images.isbndb.com/covers/06/84/9780312860684.jpg'), - ('0441007961', 'The Chalice (The Sword, The Ring, And The Chalice, Book 3)', 'https://images.isbndb.com/covers/79/67/9780441007967.jpg'), - ('0441007570', 'The Ring (The Sword, The Ring, And The Chalice, Book 2)', 'https://images.isbndb.com/covers/75/78/9780441007578.jpg'), - ('0441007023', 'The Sword (The Sword, The Ring, And The Chalice, Book 1)', 'https://images.isbndb.com/covers/70/28/9780441007028.jpg'), - ('0441009972', 'The Queen''s Gambit', 'https://images.isbndb.com/covers/99/78/9780441009978.jpg'), - ('0345319656', 'The Time Of The Dark (The Darwath Trilogy, Book 1)', 'https://images.isbndb.com/covers/96/54/9780345319654.jpg'), - ('0345335805', 'Garfield Tips The Scales (#8) (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/58/07/9780345335807.jpg'), - ('0345296710', 'The Armies Of Daylight (Darwath, No. 3)', 'https://images.isbndb.com/covers/67/19/9780345296719.jpg'), - ('0345296702', 'The Walls Of Air (The Darwath Trilogy, Book 2)', 'https://images.isbndb.com/covers/67/02/9780345296702.jpg'), - ('1569316961', 'Ceres: Celestial Legend, Vol. 1: Aya', 'https://images.isbndb.com/covers/69/62/9781569316962.jpg'), - ('0394832205', 'Juniper', 'https://images.isbndb.com/covers/22/03/9780394832203.jpg'), - ('0451207246', 'How To Murder A Millionaire (Blackbird Sisters Mysteries, No. 1)', 'https://images.isbndb.com/covers/72/41/9780451207241.jpg'), - ('0823414566', 'My Own Worst Enemy', 'https://images.isbndb.com/covers/45/67/9780823414567.jpg'), - ('0803720947', 'Friends To Die For', 'https://images.isbndb.com/covers/09/47/9780803720947.jpg'), - ('0883659662', 'The Company Of Dogs', 'https://images.isbndb.com/covers/96/63/9780883659663.jpg'), - ('0893753688', 'The Story Of My Life', 'https://images.isbndb.com/covers/36/89/9780893753689.jpg'), - ('0521398266', 'The Pastons And Their England: Studies In An Age Of Transition (Canto Original Series)', 'https://images.isbndb.com/covers/82/68/9780521398268.jpg'), - ('0060936800', 'Girl Anatomy: A Novel', 'https://images.isbndb.com/covers/68/08/9780060936808.jpg'), - ('0060096195', 'The Boy Next Door', 'https://images.isbndb.com/covers/61/99/9780060096199.jpg'), - ('0373250533', 'The Matzo Ball Heiress (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/05/30/9780373250530.jpg'), - ('0375503846', '66 Laps A Novel', 'https://images.isbndb.com/covers/38/49/9780375503849.jpg'), - ('037325041X', 'The Solomon Sisters Wise Up (Red Dress Ink Novels)', 'https://images.isbndb.com/covers/04/17/9780373250417.jpg'), - ('0805064346', 'Cosmos Coyote And William The Nice', 'https://images.isbndb.com/covers/43/46/9780805064346.jpg'), - ('0376026138', 'Starbucks Passion For Coffee', 'https://images.isbndb.com/covers/61/32/9780376026132.jpg'), - ('051788268X', 'The Essential Vegetarian Cookbook: Your Guide To The Best Foods On Earth: What To Eat, Where To Get It, How To Prepare It', 'https://images.isbndb.com/covers/26/89/9780517882689.jpg'), - ('039470780X', 'The Victory Garden Cookbook', 'https://images.isbndb.com/covers/78/08/9780394707808.jpg'), - ('0140388419', 'Guests Of War Trilogy', 'https://images.isbndb.com/covers/84/11/9780140388411.jpg'), - ('1568361815', 'The Smoky Mountain Cage Bird Society: And Other Magical Tales From Everyday Life', 'https://images.isbndb.com/covers/18/19/9781568361819.jpg'), - ('0060509392', 'Mrs. Kimble: A Novel', 'https://images.isbndb.com/covers/93/92/9780060509392.jpg'), - ('0375507124', 'It''s My F---ing Birthday', 'https://images.isbndb.com/covers/71/20/9780375507120.jpg'), - ('0385322135', 'The Voice On The Radio', 'https://images.isbndb.com/covers/21/33/9780385322133.jpg'), - ('0027357813', 'A Long Way From Verona', 'https://images.isbndb.com/covers/78/13/9780027357813.jpg'), - ('0060235284', 'Julie (Julie Of The Wolves)', 'https://images.isbndb.com/covers/52/84/9780060235284.jpg'), - ('0688068677', 'After The Rain', 'https://images.isbndb.com/covers/86/77/9780688068677.jpg'), - ('0679886370', 'Stargirl', 'https://images.isbndb.com/covers/63/72/9780679886372.jpg'), - ('0374336644', 'Joey Pigza Swallowed The Key (Joey Pigza Books)', 'https://images.isbndb.com/covers/66/46/9780374336646.jpg'), - ('0439053870', 'Civil War Ghosts', 'https://images.isbndb.com/covers/38/77/9780439053877.jpg'), - ('0525459685', 'Dancer', 'https://images.isbndb.com/covers/96/82/9780525459682.jpg'), - ('039923389X', 'Getting Near To Baby (Newbery Honor Book)', 'https://images.isbndb.com/covers/38/90/9780399233890.jpg'), - ('0375726632', 'Oldest Living Confederate Widow Tells All: A Novel', 'https://images.isbndb.com/covers/66/37/9780375726637.jpg'), - ('1584790679', 'Your Friendship Means The World To Me (Sandra Magsamen)', 'https://images.isbndb.com/covers/06/79/9781584790679.jpg'), - ('0525946276', 'Sophie And The Rising Sun: A Novel', 'https://images.isbndb.com/covers/62/74/9780525946274.jpg'), - ('0374437165', 'Jack''s Black Book: What Happens When You Flunk An IQ Test? (Jack Henry) (Jack Henry Adventures)', 'https://images.isbndb.com/covers/71/69/9780374437169.jpg'), - ('0312284535', 'The Apprentice: A Novel', 'https://images.isbndb.com/covers/45/34/9780312284534.jpg'), - ('0060544260', 'Stone Garden: A Novel', 'https://images.isbndb.com/covers/42/63/9780060544263.jpg'), - ('1581570007', 'Country Inns And Back Roads Cookbook', 'https://images.isbndb.com/covers/00/07/9781581570007.jpg'), - ('0394555295', 'The Breakfast Book', 'https://images.isbndb.com/covers/52/94/9780394555294.jpg'), - ('0152167919', 'Once Upon A Marigold', 'https://images.isbndb.com/covers/79/12/9780152167912.jpg'), - ('0312046448', 'A Proper Breakfast', 'https://images.isbndb.com/covers/64/46/9780312046446.jpg'), - ('0894800159', 'What To Eat When You''re Expecting', 'https://images.isbndb.com/covers/01/53/9780894800153.jpg'), - ('1400032644', 'The Diary Of An American Au Pair: A Novel', 'https://images.isbndb.com/covers/26/48/9781400032648.jpg'), - ('0385721897', 'Disappearing Ingenue', 'https://images.isbndb.com/covers/18/99/9780385721899.jpg'), - ('0451209028', 'Coffee And Kung Fu', 'https://images.isbndb.com/covers/90/23/9780451209023.jpg'), - ('0373250258', 'Fashionistas (Red Dress Ink S.)', 'https://images.isbndb.com/covers/02/57/9780373250257.jpg'), - ('0517703777', 'Instructions To The Cook ~ A Zen Master''s Lessons In Living A Life That Matters', 'https://images.isbndb.com/covers/37/79/9780517703779.jpg'), - ('1560442956', 'Everyone''s Mandala Coloring Book Vol. 2', 'https://images.isbndb.com/covers/29/50/9781560442950.jpg'), - ('0373250487', 'Rescuing Rose (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/04/86/9780373250486.jpg'), - ('0525942254', 'Damned In Paradise: A Nathan Heller Novel (Nathan Heller Novels)', 'https://images.isbndb.com/covers/22/52/9780525942252.jpg'), - ('0399145362', 'The Attorney', 'https://images.isbndb.com/covers/53/60/9780399145360.jpg'), - ('038071082X', 'The Grass Crown', 'https://images.isbndb.com/covers/08/29/9780380710829.jpg'), - ('0060157992', 'Peachtree Road', 'https://images.isbndb.com/covers/79/99/9780060157999.jpg'), - ('0786710101', 'Resolution: A Novel Of Crime', 'https://images.isbndb.com/covers/01/02/9780786710102.jpg'), - ('0553801414', 'Special Circumstances (Mike Daley, Book 1)', 'https://images.isbndb.com/covers/14/15/9780553801415.jpg'), - ('0670850780', 'The Negative', 'https://images.isbndb.com/covers/07/85/9780670850785.jpg'), - ('0385320175', 'Numbered Account', 'https://images.isbndb.com/covers/01/77/9780385320177.jpg'), - ('0789308894', 'The Art Of Giving: Gift Ideas To Delight The Senses', 'https://images.isbndb.com/covers/88/94/9780789308894.jpg'), - ('0385501005', 'Mr. Commitment', 'https://images.isbndb.com/covers/10/02/9780385501002.jpg'), - ('0060290307', 'Angel On The Square', 'https://images.isbndb.com/covers/03/06/9780060290306.jpg'), - ('059055204X', 'A Little Princess', 'https://images.isbndb.com/covers/20/42/9780590552042.jpg'), - ('0374416842', 'Dance In The Desert', 'https://images.isbndb.com/covers/68/43/9780374416843.jpg'), - ('0881011126', 'Heidi (Gateway Classics)', 'https://images.isbndb.com/covers/11/28/9780881011128.jpg'), - ('0140322051', 'Friedrich (Puffin Books)', 'https://images.isbndb.com/covers/20/57/9780140322057.jpg'), - ('0195154991', 'Your Name Is Renée: Ruth Kapp Hartz''s Story As A Hidden Child In Nazi-Occupied France', 'https://images.isbndb.com/covers/49/93/9780195154993.jpg'), - ('0141308419', 'Witnesses To War', 'https://images.isbndb.com/covers/84/18/9780141308418.jpg'), - ('0805037152', 'We Remember The Holocaust', 'https://images.isbndb.com/covers/71/59/9780805037159.jpg'), - ('0515127485', 'Archangel', 'https://images.isbndb.com/covers/74/85/9780515127485.jpg'), - ('0789458063', 'Early Humans ( DK Eyewitness Books)', 'https://images.isbndb.com/covers/80/63/9780789458063.jpg'), - ('0609610031', 'Step Ball Change: A Novel', 'https://images.isbndb.com/covers/00/39/9780609610039.jpg'), - ('0743436695', 'Second Draft Of My Life : A Novel', 'https://images.isbndb.com/covers/66/94/9780743436694.jpg'), - ('0684856875', 'Ask A Nurse: From Home Remedies To Hospital Care', 'https://images.isbndb.com/covers/68/72/9780684856872.jpg'), - ('043916589X', 'The Beastly Arms', 'https://images.isbndb.com/covers/58/91/9780439165891.jpg'), - ('0689505868', 'Ratha''s Challenge', 'https://images.isbndb.com/covers/58/67/9780689505867.jpg'), - ('0060097469', 'Dancing In My Nuddy-Pants: Even Further Confessions Of Georgia Nicolson', 'https://images.isbndb.com/covers/74/62/9780060097462.jpg'), - ('1400060427', 'Girl Cook: A Novel', 'https://images.isbndb.com/covers/04/29/9781400060429.jpg'), - ('0439482682', 'Cold Tom', 'https://images.isbndb.com/covers/26/84/9780439482684.jpg'), - ('093872116X', 'Kiplinger''s Invest Your Way To Wealth: How Ordinary People Can Accumulate Extraordinary Amounts Of Money', 'https://images.isbndb.com/covers/11/61/9780938721161.jpg'), - ('0316699128', 'Common Cents: A Retiring Six-Term Congressman Reveals How Congress Really Works-And What We Must Do To Fix It', 'https://images.isbndb.com/covers/91/29/9780316699129.jpg'), - ('0761129774', 'Father To Daughter: Life Lessons On Raising A Girl', 'https://images.isbndb.com/covers/97/76/9780761129776.jpg'), - ('0375822739', 'The City Of Ember: The First Book Of Ember (Books Of Ember)', 'https://images.isbndb.com/covers/27/35/9780375822735.jpg'), - ('0684837226', 'Flaming Iguanas: An Illustrated All-Girl Road Novel Thing (Mad Dog Rodriguez Trilogy)', 'https://images.isbndb.com/covers/72/22/9780684837222.jpg'), - ('0688180728', 'Last Chance Saloon: A Novel', 'https://images.isbndb.com/covers/07/20/9780688180720.jpg'), - ('0373250282', 'Engaging Men', 'https://images.isbndb.com/covers/02/88/9780373250288.jpg'), - ('0060084456', 'Chasing Rumi: A Fable About Finding The Heart''s True Desire', 'https://images.isbndb.com/covers/44/55/9780060084455.jpg'), - ('0374404542', 'Aria Of The Sea', 'https://images.isbndb.com/covers/45/43/9780374404543.jpg'), - ('0142003484', 'Three Daughters', 'https://images.isbndb.com/covers/34/80/9780142003480.jpg'), - ('0618250735', 'Better Than Running At Night', 'https://images.isbndb.com/covers/07/38/9780618250738.jpg'), - ('0448190834', 'The Velveteen Rabbit (Reading Railroad)', 'https://images.isbndb.com/covers/08/39/9780448190839.jpg'), - ('0385416679', 'A Southern Belle Primer: Why Princess Margaret Will Never Be A Kappa Kappa Gamma', 'https://images.isbndb.com/covers/66/72/9780385416672.jpg'), - ('0812570626', 'The English Governess And The Siamese Court: The True Story Behind ''The King And I''', 'https://images.isbndb.com/covers/06/25/9780812570625.jpg'), - ('0316070211', 'What Every Girl (except Me) Knows', 'https://images.isbndb.com/covers/02/18/9780316070218.jpg'), - ('0395562333', 'Tacky The Penguin', 'https://images.isbndb.com/covers/23/38/9780395562338.jpg'), - ('0380709163', 'Ramona And Her Father', 'https://images.isbndb.com/covers/91/68/9780380709168.jpg'), - ('0590876120', 'The Littles And Their Amazing New Friend', 'https://images.isbndb.com/covers/61/24/9780590876124.jpg'), - ('0064406822', 'There''s An Owl In The Shower', 'https://images.isbndb.com/covers/68/26/9780064406826.jpg'), - ('0064406326', 'Absolutely Normal Chaos (rpkg)', 'https://images.isbndb.com/covers/63/21/9780064406321.jpg'), - ('0689813481', 'Who Invited Aliens To My Slumber Party (Scaredy Cats)', 'https://images.isbndb.com/covers/34/81/9780689813481.jpg'), - ('0689808585', 'The Day The Ants Got Really Mad (Scaredy Cats)', 'https://images.isbndb.com/covers/85/86/9780689808586.jpg'), - ('0894808605', 'The Bones Book & Skeleton (Hand In Hand With Nature)', 'https://images.isbndb.com/covers/86/09/9780894808609.jpg'), - ('0717218937', 'Chipmunks/Beavers (Getting To Know Nature''s Children Series)', 'https://images.isbndb.com/covers/89/36/9780717218936.jpg'), - ('0769612873', 'Grandpa''s Surprise (Bunny Bunch)', 'https://images.isbndb.com/covers/28/74/9780769612874.jpg'), - ('044040150X', 'Nate The Great Stalks Stupidweed', 'https://images.isbndb.com/covers/15/06/9780440401506.jpg'), - ('0316140074', 'The Hit-Away Kid (Peach Street Mudders Story)', 'https://images.isbndb.com/covers/00/72/9780316140072.jpg'), - ('0399215301', 'Going To The Hospital (Mr. Rogers)', 'https://images.isbndb.com/covers/53/08/9780399215308.jpg'), - ('0874498155', 'Rosie''s Two Left Feet', 'https://images.isbndb.com/covers/81/58/9780874498158.jpg'), - ('0689710550', 'Fireflies (Reading Rainbow)', 'https://images.isbndb.com/covers/05/51/9780689710551.jpg'), - ('0517613441', 'Frog And Dog Find A Treasure', 'https://images.isbndb.com/covers/34/43/9780517613443.jpg'), - ('0517613476', 'Frog And Dog At The Sea', 'https://images.isbndb.com/covers/34/74/9780517613474.jpg'), - ('0785279954', 'Sammy Discovers The Alphabet (Learn-With-Sammy)', 'https://images.isbndb.com/covers/99/52/9780785279952.jpg'), - ('0517703351', 'The Martha Stewart Cookbook: Collected Recipes For Every Day', 'https://images.isbndb.com/covers/33/59/9780517703359.jpg'), - ('0684856220', 'Cupid And Diana: A Novel', 'https://images.isbndb.com/covers/62/23/9780684856223.jpg'), - ('0345435257', 'Angel Fire East (The Word And The Void Trilogy, Book 3)', 'https://images.isbndb.com/covers/52/55/9780345435255.jpg'), - ('0783502370', 'Salads (Williams-Sonoma Kitchen Library)', 'https://images.isbndb.com/covers/23/73/9780783502373.jpg'), - ('0735100004', 'The Fruit Of The Tree', 'https://images.isbndb.com/covers/00/08/9780735100008.jpg'), - ('0679413383', 'The Arabian Nights (Everyman''s Library)', 'https://images.isbndb.com/covers/33/87/9780679413387.jpg'), - ('0964122804', 'Saltwater Adventure In The Florida Keys: An Introduction To Fishing For Kids', 'https://images.isbndb.com/covers/28/02/9780964122802.jpg'), - ('0553213776', 'Kilmeny Of The Orchard (L.M. Montgomery Books)', 'https://images.isbndb.com/covers/37/75/9780553213775.jpg'), - ('0553280503', 'A Tangled Web', 'https://images.isbndb.com/covers/05/00/9780553280500.jpg'), - ('0553280511', 'The Blue Castle', 'https://images.isbndb.com/covers/05/17/9780553280517.jpg'), - ('0553280465', 'Magic For Marigold (L.M. Montgomery Books)', 'https://images.isbndb.com/covers/04/63/9780553280463.jpg'), - ('0553264931', 'Emily''s Quest (Emily Novels)', 'https://images.isbndb.com/covers/49/37/9780553264937.jpg'), - ('0553262149', 'Emily Climbs (Emily Novels)', 'https://images.isbndb.com/covers/21/48/9780553262148.jpg'), - ('055323370X', 'Emily Of New Moon (Emily Novels)', 'https://images.isbndb.com/covers/37/04/9780553233704.jpg'), - ('1565970497', 'All But Love (Kismet Romance)', 'https://images.isbndb.com/covers/04/96/9781565970496.jpg'), - ('0373706421', 'Monday''s Child (Women Who Dare, Book 16) (Harlequin Superromance, No 642)', 'https://images.isbndb.com/covers/64/26/9780373706426.jpg'), - ('0373706448', 'Finding Father : Family Man (Harlequin Superromance No. 644)', 'https://images.isbndb.com/covers/64/40/9780373706440.jpg'), - ('1565970500', 'Midnight Sun', 'https://images.isbndb.com/covers/05/02/9781565970502.jpg'), - ('0316415022', 'Captain Saturday: A Novel', 'https://images.isbndb.com/covers/50/26/9780316415026.jpg'), - ('0061093890', 'Fashionably Late', 'https://images.isbndb.com/covers/38/90/9780061093890.jpg'), - ('078180583X', 'English Royal Cookbook: Favorite Court Recipes (Hippocrene International Cookbook Series)', 'https://images.isbndb.com/covers/58/34/9780781805834.jpg'), - ('0679445390', 'Wake Up And Smell The Coffee!:: Advice, Wisdom, And Uncommon Good Sense', 'https://images.isbndb.com/covers/53/95/9780679445395.jpg'), - ('0553800973', 'Body Of Lies (Eve Duncan)', 'https://images.isbndb.com/covers/09/75/9780553800975.jpg'), - ('0345435796', 'The First Horseman', 'https://images.isbndb.com/covers/57/98/9780345435798.jpg'), - ('0937721778', 'Convenience Food Facts: Help For Planning Quick, Healthy, And Convenient Meals (Wellness & Nutrition Library)', 'https://images.isbndb.com/covers/17/73/9780937721773.jpg'), - ('0805070834', 'Welcome Home Or Someplace Like It', 'https://images.isbndb.com/covers/08/35/9780805070835.jpg'), - ('0385730985', 'The Tears Of The Salamander', 'https://images.isbndb.com/covers/09/83/9780385730983.jpg'), - ('0803728468', 'A Cool Moonlight', 'https://images.isbndb.com/covers/84/62/9780803728462.jpg'), - ('0345450892', 'The Lake Of Dead Languages (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/08/90/9780345450890.jpg'), - ('0373250231', 'Spanish Disco (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/02/33/9780373250233.jpg'), - ('068486441X', 'Eating The Cheshire Cat: A Novel', 'https://images.isbndb.com/covers/44/19/9780684864419.jpg'), - ('0395966051', 'The Story Of A Million Years', 'https://images.isbndb.com/covers/60/51/9780395966051.jpg'), - ('0152167056', 'A Northern Light', 'https://images.isbndb.com/covers/70/59/9780152167059.jpg'), - ('0066213339', 'Who Killed Tiffany Jones?: A Novel', 'https://images.isbndb.com/covers/33/30/9780066213330.jpg'), - ('0689848641', 'Witch-Hunt: Mysteries Of The Salem Witch Trials', 'https://images.isbndb.com/covers/86/43/9780689848643.jpg'), - ('1557093334', 'A Little Maid Of Virginia', 'https://images.isbndb.com/covers/33/32/9781557093332.jpg'), - ('0805047379', 'The Sweetheart Season: A Novel', 'https://images.isbndb.com/covers/73/70/9780805047370.jpg'), - ('1879441845', 'Betty Groff Cookbook', 'https://images.isbndb.com/covers/18/42/9781879441842.jpg'), - ('0767913000', 'Fourplay: A Novel', 'https://images.isbndb.com/covers/30/03/9780767913003.jpg'), - ('051788576X', 'My Little Sister Ate One Hare (Dragonfly Books)', 'https://images.isbndb.com/covers/57/65/9780517885765.jpg'), - ('0698115597', 'The Reason For A Flower (World Of Nature)', 'https://images.isbndb.com/covers/55/90/9780698115590.jpg'), - ('1565124006', 'Boulevard', 'https://images.isbndb.com/covers/40/04/9781565124004.jpg'), - ('0373117515', 'Bride For The Taking (Harlequin Presents)', 'https://images.isbndb.com/covers/75/12/9780373117512.jpg'), - ('0373190255', 'Male Animal (Silhouette Romance)', 'https://images.isbndb.com/covers/02/56/9780373190256.jpg'), - ('0373031424', 'Lovespell (Harlequin Romance)', 'https://images.isbndb.com/covers/14/29/9780373031429.jpg'), - ('0373075944', 'The Devil And Jessie Webster (Silhouette Intimate Moments #594)', 'https://images.isbndb.com/covers/59/42/9780373075942.jpg'), - ('0373810199', 'Body And Soul (Men At Work: Tall, Dark & Smart #7)', 'https://images.isbndb.com/covers/01/92/9780373810192.jpg'), - ('037322138X', 'Carnival (Harlequin Intrigue)', 'https://images.isbndb.com/covers/13/87/9780373221387.jpg'), - ('0671527886', 'Possession', 'https://images.isbndb.com/covers/78/84/9780671527884.jpg'), - ('0440222826', 'The Mercy Rule (Dismas Hardy)', 'https://images.isbndb.com/covers/28/28/9780440222828.jpg'), - ('0446600830', 'Tainted Evidence', 'https://images.isbndb.com/covers/08/35/9780446600835.jpg'), - ('0783502508', 'Soups (Williams-Sonoma Kitchen Library)', 'https://images.isbndb.com/covers/25/02/9780783502502.jpg'), - ('0140265716', 'Memoirs Of An Ex-Prom Queen', 'https://images.isbndb.com/covers/57/12/9780140265712.jpg'), - ('1585421758', 'Callie''s Tally: An Accounting Of Baby''s First Year (Or, What My Daughter Owes Me)', 'https://images.isbndb.com/covers/17/56/9781585421756.jpg'), - ('0807506451', 'Benny Uncovers A Mystery (The Boxcar Children Mysteries #19)', 'https://images.isbndb.com/covers/64/55/9780807506455.jpg'), - ('0590731890', 'Kristy And The Secret Of Susan (Baby-Sitters Club)', 'https://images.isbndb.com/covers/18/98/9780590731898.jpg'), - ('0439050138', 'The Journal Of Scott Pendleton Collins: A World War II Soldier, Normandy, France, 1944 (My Name Is America: A Dear America Book)', 'https://images.isbndb.com/covers/01/35/9780439050135.jpg'), - ('0373250142', 'Dating Without Novocaine (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/01/41/9780373250141.jpg'), - ('0373250150', 'Confessions Of An Ex-Girlfriend', 'https://images.isbndb.com/covers/01/58/9780373250158.jpg'), - ('0345388968', 'How To Make An American Quilt', 'https://images.isbndb.com/covers/89/64/9780345388964.jpg'), - ('0743222261', 'The Runaway Quilt (Elm Creek Quilts Series #4)', 'https://images.isbndb.com/covers/22/66/9780743222266.jpg'), - ('0345453387', 'Dog Handling', 'https://images.isbndb.com/covers/33/89/9780345453389.jpg'), - ('0393315797', 'Capitol Cuisine: Recipes From The Hill: A Bipartisan Cookbook', 'https://images.isbndb.com/covers/57/90/9780393315790.jpg'), - ('051757702X', 'Martha Stewart''s Healthy Quick Cook', 'https://images.isbndb.com/covers/70/28/9780517577028.jpg'), - ('0060277491', 'Violet & Claire', 'https://images.isbndb.com/covers/74/99/9780060277499.jpg'), - ('044022313X', 'Black Light', 'https://images.isbndb.com/covers/31/39/9780440223139.jpg'), - ('0671526723', 'Audrey Hepburn''s Neck', 'https://images.isbndb.com/covers/67/26/9780671526726.jpg'), - ('0373250169', 'L. A. Woman (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/01/65/9780373250165.jpg'), - ('0684857340', 'And The Horse He Rode In On', 'https://images.isbndb.com/covers/73/43/9780684857343.jpg'), - ('0609800256', 'Away For The Weekend (R): Southeast -- Revised And Updated Edition: Great Getaways For Every Season In Alabama, Georgia, North Carolina, South Carol Ina And Tennessee (Away For The Weekend Series)', 'https://images.isbndb.com/covers/02/56/9780609800256.jpg'), - ('0399142606', 'The Magician''s Tale', 'https://images.isbndb.com/covers/26/04/9780399142604.jpg'), - ('0385488440', 'Purple Cane Road', 'https://images.isbndb.com/covers/84/40/9780385488440.jpg'), - ('1886910553', 'Many Stones', 'https://images.isbndb.com/covers/05/53/9781886910553.jpg'), - ('0060513888', 'Important Things That Don''t Matter', 'https://images.isbndb.com/covers/38/87/9780060513887.jpg'), - ('0375706429', 'Otherwise Engaged: A Novel', 'https://images.isbndb.com/covers/64/24/9780375706424.jpg'), - ('0689855583', 'Leprechaun Luck: A Wee Book Of Irish Wisdom', 'https://images.isbndb.com/covers/55/80/9780689855580.jpg'), - ('0743205987', 'Stillwater: A Novel', 'https://images.isbndb.com/covers/59/86/9780743205986.jpg'), - ('0803725167', 'Fair Weather', 'https://images.isbndb.com/covers/51/64/9780803725164.jpg'), - ('0060191058', 'The Bachelor''s Cat: A Love Story', 'https://images.isbndb.com/covers/10/54/9780060191054.jpg'), - ('0060090367', 'Watermelon', 'https://images.isbndb.com/covers/03/64/9780060090364.jpg'), - ('0786863218', 'Don''t Worry, Make Money: Spiritual And Practical Ways To Create Abundance And More Fun In Your Life', 'https://images.isbndb.com/covers/32/11/9780786863211.jpg'), - ('0880014164', 'The Classic Of Tea: Origins & Rituals', 'https://images.isbndb.com/covers/41/68/9780880014168.jpg'), - ('0451183460', '50 Ways To Lower Your Fat And Cholesterol (Medical Book Of Remedies)', 'https://images.isbndb.com/covers/34/60/9780451183460.jpg'), - ('0451823192', 'Medical Book Of Home Remedies For People Over 40', 'https://images.isbndb.com/covers/31/99/9780451823199.jpg'), - ('0451192729', 'Alternative Medicine', 'https://images.isbndb.com/covers/27/21/9780451192721.jpg'), - ('0688173896', 'The Scandalous Summer Of Sissy LeBlanc: A Novel', 'https://images.isbndb.com/covers/38/90/9780688173890.jpg'), - ('0517162695', 'A Different Kind Of Christmas', 'https://images.isbndb.com/covers/26/99/9780517162699.jpg'), - ('0789426099', 'Saying It Out Loud', 'https://images.isbndb.com/covers/60/93/9780789426093.jpg'), - ('0140360042', 'Breaking The Fall (Plus)', 'https://images.isbndb.com/covers/00/42/9780140360042.jpg'), - ('0802788300', 'Jinx', 'https://images.isbndb.com/covers/83/06/9780802788306.jpg'), - ('038532331X', 'Gallows Hill', 'https://images.isbndb.com/covers/33/14/9780385323314.jpg'), - ('0671787209', 'Dreamworld', 'https://images.isbndb.com/covers/72/02/9780671787202.jpg'), - ('0425178234', 'Ladies With Options', 'https://images.isbndb.com/covers/82/32/9780425178232.jpg'), - ('0446531286', 'Blessed Are The Cheesemakers', 'https://images.isbndb.com/covers/12/83/9780446531283.jpg'), - ('0393038548', 'Recipes From The Dump', 'https://images.isbndb.com/covers/85/45/9780393038545.jpg'), - ('1567312497', 'Uppity Women Of Ancient Times', 'https://images.isbndb.com/covers/24/92/9781567312492.jpg'), - ('0316910333', 'Gossip Girl #1: A Novel (Gossip Girl Series)', 'https://images.isbndb.com/covers/03/30/9780316910330.jpg'), - ('0452272734', 'Some Girls', 'https://images.isbndb.com/covers/27/36/9780452272736.jpg'), - ('0934971722', 'The Inner Life Of Objects', 'https://images.isbndb.com/covers/17/20/9780934971720.jpg'), - ('0525946403', 'The Trouble With Catherine', 'https://images.isbndb.com/covers/64/03/9780525946403.jpg'), - ('0758204175', 'I Brake For Bad Boys', 'https://images.isbndb.com/covers/41/72/9780758204172.jpg'), - ('0373250118', 'See Jane Date (Red Dress Ink)', 'https://images.isbndb.com/covers/01/10/9780373250110.jpg'), - ('0375410767', 'The Family Orchard', 'https://images.isbndb.com/covers/07/65/9780375410765.jpg'), - ('0385501722', 'Juno And Juliet', 'https://images.isbndb.com/covers/17/29/9780385501729.jpg'), - ('0767905199', 'Mr. Maybe', 'https://images.isbndb.com/covers/51/90/9780767905190.jpg'), - ('0670879045', 'My Year Of Meats: A Novel', 'https://images.isbndb.com/covers/90/45/9780670879045.jpg'), - ('0385312431', 'The Good Mother', 'https://images.isbndb.com/covers/24/31/9780385312431.jpg'), - ('0385492243', 'An Invisible Sign Of My Own: A Novel', 'https://images.isbndb.com/covers/22/49/9780385492249.jpg'), - ('0786862335', 'Child Of Mine: Writers Talk About The First Year Of Motherhhod', 'https://images.isbndb.com/covers/23/37/9780786862337.jpg'), - ('0380720787', 'My Life As A Whale', 'https://images.isbndb.com/covers/07/81/9780380720781.jpg'), - ('0671737899', 'The Ragman''s Son', 'https://images.isbndb.com/covers/78/94/9780671737894.jpg'), - ('0553251473', 'Iacocca: An Autobiography', 'https://images.isbndb.com/covers/14/70/9780553251470.jpg'), - ('0515086991', 'Living With The Kennedys: The Joan Kennedy Story', 'https://images.isbndb.com/covers/69/97/9780515086997.jpg'), - ('0062517317', 'Friendship Cake: A Novel', 'https://images.isbndb.com/covers/73/19/9780062517319.jpg'), - ('0684811766', 'Making The Most Of Your Money', 'https://images.isbndb.com/covers/17/65/9780684811765.jpg'), - ('1551667932', 'The Devil''s Own', 'https://images.isbndb.com/covers/79/35/9781551667935.jpg'), - ('0345433319', 'Midnight Voices', 'https://images.isbndb.com/covers/33/12/9780345433312.jpg'), - ('0743442628', 'Tickled Pink: A Comic Novel', 'https://images.isbndb.com/covers/26/26/9780743442626.jpg'), - ('0673524299', 'The Little, Brown Reader', 'https://images.isbndb.com/covers/42/94/9780673524294.jpg'), - ('1551668394', 'Wedding Party', 'https://images.isbndb.com/covers/83/90/9781551668390.jpg'), - ('039595777X', 'Love Poems', 'https://images.isbndb.com/covers/77/76/9780395957776.jpg'), - ('0064407446', 'Echo', 'https://images.isbndb.com/covers/74/41/9780064407441.jpg'), - ('0399145079', 'Local Girls', 'https://images.isbndb.com/covers/50/70/9780399145070.jpg'), - ('0152021973', 'An Acquaintance With Darkness', 'https://images.isbndb.com/covers/19/79/9780152021979.jpg'), - ('0312203594', 'Alice''s Tulips: A Novel', 'https://images.isbndb.com/covers/35/97/9780312203597.jpg'), - ('068480302X', 'Exorcising Your Ex: How To Get Rid Of The Demons Of Relationships Past', 'https://images.isbndb.com/covers/30/29/9780684803029.jpg'), - ('0385486812', 'Mirror, Mirror On The Wall: Women Writers Explore Their Favorite Fairy Tales', 'https://images.isbndb.com/covers/68/11/9780385486811.jpg'), - ('0671015648', 'Isabel''s Bed', 'https://images.isbndb.com/covers/56/40/9780671015640.jpg'), - ('0395971179', 'Dare Truth Or Promise', 'https://images.isbndb.com/covers/11/78/9780395971178.jpg'), - ('0743205049', 'Cat''s Meow: A Novel', 'https://images.isbndb.com/covers/50/47/9780743205047.jpg'), - ('0385333757', 'Losing Julia', 'https://images.isbndb.com/covers/37/57/9780385333757.jpg'), - ('1567310362', 'The Healing Foods: The Easy-To-Use, One-Source Guide For Better Health Through Nutrition', 'https://images.isbndb.com/covers/03/68/9781567310368.jpg'), - ('067945778X', 'The Fortunate Pilgrim', 'https://images.isbndb.com/covers/77/87/9780679457787.jpg'), - ('0802137008', 'Pure', 'https://images.isbndb.com/covers/70/05/9780802137005.jpg'), - ('0688147364', '"More More More," Said The Baby (A Caldecott Honor Book)', 'https://images.isbndb.com/covers/73/65/9780688147365.jpg'), - ('0373250215', 'Burning The Map', 'https://images.isbndb.com/covers/02/19/9780373250219.jpg'), - ('0385323638', 'Pink Slip', 'https://images.isbndb.com/covers/36/35/9780385323635.jpg'), - ('1888338032', 'New Millennium Writings: A Journal For The 21st Century', 'https://images.isbndb.com/covers/80/34/9781888338034.jpg'), - ('0517139618', 'Aspen Gold', 'https://images.isbndb.com/covers/96/15/9780517139615.jpg'), - ('0141439564', 'Great Expectations (Penguin Classics)', 'https://images.isbndb.com/covers/95/63/9780141439563.jpg'), - ('0060194146', 'The Catsitters: A Novel', 'https://images.isbndb.com/covers/41/47/9780060194147.jpg'), - ('0306807203', 'Charles Sumner', 'https://images.isbndb.com/covers/72/06/9780306807206.jpg'), - ('0525947116', 'In Full Bloom', 'https://images.isbndb.com/covers/71/10/9780525947110.jpg'), - ('0553381121', 'Feeding Christine: A Novel', 'https://images.isbndb.com/covers/11/22/9780553381122.jpg'), - ('0316320277', 'Anarchy And Elegance: Confessions Of A Journalist At Yale Law School', 'https://images.isbndb.com/covers/02/76/9780316320276.jpg'), - ('0385318790', 'Morrie: In His Own Words', 'https://images.isbndb.com/covers/87/92/9780385318792.jpg'), - ('031227193X', 'Saving Agnes: A Novel', 'https://images.isbndb.com/covers/19/30/9780312271930.jpg'), - ('0451169026', 'What Happened When: A Chronology Of Life & Events In America (Signet)', 'https://images.isbndb.com/covers/90/20/9780451169020.jpg'), - ('0449005577', 'Catching Alice', 'https://images.isbndb.com/covers/55/76/9780449005576.jpg'), - ('0385722435', 'Ella Minnow Pea: A Novel In Letters', 'https://images.isbndb.com/covers/24/38/9780385722438.jpg'), - ('0425135012', 'Dave''s Way', 'https://images.isbndb.com/covers/50/13/9780425135013.jpg'), - ('0826212433', 'The Society Of Friends: Stories', 'https://images.isbndb.com/covers/24/36/9780826212436.jpg'), - ('0609807900', 'Sloppy Firsts: A Jessica Darling Novel', 'https://images.isbndb.com/covers/79/03/9780609807903.jpg'), - ('0786883367', 'Don''t Sweat The Small Stuff At Work', 'https://images.isbndb.com/covers/33/63/9780786883363.jpg'), - ('0890434573', 'The Mortgage Book', 'https://images.isbndb.com/covers/45/74/9780890434574.jpg'), - ('0525246398', 'Real World: 2', 'https://images.isbndb.com/covers/63/98/9780525246398.jpg'), - ('0896933466', 'Great Human Race', 'https://images.isbndb.com/covers/34/60/9780896933460.jpg'), - ('0842350128', 'Parenting Teens', 'https://images.isbndb.com/covers/01/29/9780842350129.jpg'), - ('0871202824', 'Education On The Edge Of Possibility', 'https://images.isbndb.com/covers/28/26/9780871202826.jpg'), - ('0830713573', 'The Travelers Guide To Life At Warp Speed', 'https://images.isbndb.com/covers/35/78/9780830713578.jpg'), - ('0830817220', 'Unlocking The Power Of God''s Word', 'https://images.isbndb.com/covers/72/21/9780830817221.jpg'), - ('1560790512', 'Making It On Your First Job', 'https://images.isbndb.com/covers/05/18/9781560790518.jpg'), - ('0310231612', 'What Ever Happened To Commitment', 'https://images.isbndb.com/covers/16/15/9780310231615.jpg'), - ('0875164358', 'Stop, Think, Start!: Steps To Change Your Head And Change Your Life', 'https://images.isbndb.com/covers/43/59/9780875164359.jpg'), - ('0802726216', 'Hagar (A Biblical Novel)', 'https://images.isbndb.com/covers/62/16/9780802726216.jpg'), - ('1560790555', 'Greetings From High School (Peterson''s H.S. Series)', 'https://images.isbndb.com/covers/05/56/9781560790556.jpg'), - ('0890813302', 'The Emotions Of A Man', 'https://images.isbndb.com/covers/33/00/9780890813300.jpg'), - ('0446520888', 'Mail', 'https://images.isbndb.com/covers/08/81/9780446520881.jpg'), - ('0312023022', 'Tough Stuff', 'https://images.isbndb.com/covers/30/27/9780312023027.jpg'), - ('0689821395', 'A Wolf At The Door And Other Retold Fairy Tales (13 Stories)', 'https://images.isbndb.com/covers/13/94/9780689821394.jpg'), - ('0446394580', '8 Steps To A Healthy Heart: The Complete Guide To Heart Disease Prevention And Recovery From Heart Attack And Bypass Surgery', 'https://images.isbndb.com/covers/45/81/9780446394581.jpg'), - ('0671521101', 'Sahara', 'https://images.isbndb.com/covers/11/03/9780671521103.jpg'), - ('1579540791', 'Bliss: 33 Simple Ways To Awaken Your Spiritual Self', 'https://images.isbndb.com/covers/07/91/9781579540791.jpg'), - ('0935180621', 'Maui''s Hana Highway', 'https://images.isbndb.com/covers/06/26/9780935180626.jpg'), - ('0380690543', 'The Celery Stalks At Midnight', 'https://images.isbndb.com/covers/05/41/9780380690541.jpg'), - ('0971700915', 'Under Fire: An American Story', 'https://images.isbndb.com/covers/09/18/9780971700918.jpg'), - ('0671894404', 'The Final Days', 'https://images.isbndb.com/covers/44/05/9780671894405.jpg'), - ('0345404440', 'Hanging Up', 'https://images.isbndb.com/covers/44/42/9780345404442.jpg'), - ('0446690155', 'Talking To Addison', 'https://images.isbndb.com/covers/01/57/9780446690157.jpg'), - ('0385319037', 'Animal Husbandry', 'https://images.isbndb.com/covers/90/34/9780385319034.jpg'), - ('0373250185', 'Strapless: Australia Or Bust: A Novel', 'https://images.isbndb.com/covers/01/89/9780373250189.jpg'), - ('0140282033', 'Chocolat', 'https://images.isbndb.com/covers/20/30/9780140282030.jpg'), - ('0671867407', 'Who Will Tell The People? : The Betrayal Of American Democracy', 'https://images.isbndb.com/covers/74/09/9780671867409.jpg'), - ('0684835819', 'My Story', 'https://images.isbndb.com/covers/58/15/9780684835815.jpg'), - ('1878448021', 'Worship Of The Common Heart: New And Selected Stories', 'https://images.isbndb.com/covers/80/26/9781878448026.jpg'), - ('0060529733', 'The Long Silence Of Mario Salviati: A Novel', 'https://images.isbndb.com/covers/97/34/9780060529734.jpg'), - ('067088698X', 'Before You Sleep', 'https://images.isbndb.com/covers/69/82/9780670886982.jpg'), - ('0156010887', 'The Blue Bedspread', 'https://images.isbndb.com/covers/08/87/9780156010887.jpg'), - ('0590424939', 'Baby-Sitters Island Adventure (Baby-Sitters Club Super Special, 4)', 'https://images.isbndb.com/covers/49/36/9780590424936.jpg'), - ('0394805720', 'There''s A Boy In The Girls'' Bathroom', 'https://images.isbndb.com/covers/57/26/9780394805726.jpg'), - ('0688152937', 'Thank You, Jackie Robinson', 'https://images.isbndb.com/covers/29/32/9780688152932.jpg'), - ('0590673890', 'Mallory And The Trouble With Twins (Baby-Sitters Club: Collector''s Edition #21)', 'https://images.isbndb.com/covers/38/91/9780590673891.jpg'), - ('0030442818', 'Creek Mary''s Blood: A Novel', 'https://images.isbndb.com/covers/28/10/9780030442810.jpg'), - ('0345320409', 'Rediscovering America''s Values', 'https://images.isbndb.com/covers/04/07/9780345320407.jpg'), - ('0684804433', 'Look Homeward, Angel', 'https://images.isbndb.com/covers/44/39/9780684804439.jpg'), - ('0517075032', 'The Fortune', 'https://images.isbndb.com/covers/50/36/9780517075036.jpg'), - ('1565123190', 'Traveling While Married', 'https://images.isbndb.com/covers/31/99/9781565123199.jpg'), - ('0312270801', 'The Perfect Elizabeth: A Tale Of Two Sisters', 'https://images.isbndb.com/covers/08/03/9780312270803.jpg'), - ('0452282659', 'The Green Suit', 'https://images.isbndb.com/covers/26/50/9780452282650.jpg'), - ('0943233828', 'More Random Acts Of Kindness', 'https://images.isbndb.com/covers/38/26/9780943233826.jpg'), - ('0945448619', 'Diabetes Meal Planning Made Easy : How To Put The Food Pyramid To Work For You', 'https://images.isbndb.com/covers/86/17/9780945448617.jpg'), - ('0761511032', 'Real Food For People With Diabetes', 'https://images.isbndb.com/covers/10/38/9780761511038.jpg'), - ('0375701230', 'A Death In The Family', 'https://images.isbndb.com/covers/12/38/9780375701238.jpg'), - ('0452281679', 'Simply Divine', 'https://images.isbndb.com/covers/16/77/9780452281677.jpg'), - ('0609603809', 'The Ladies Farm', 'https://images.isbndb.com/covers/38/02/9780609603802.jpg'), - ('0767906993', 'Geeks: How Two Lost Boys Rode The Internet Out Of Idaho', 'https://images.isbndb.com/covers/69/99/9780767906999.jpg'), - ('0060293152', 'The Two Princesses Of Bamarre', 'https://images.isbndb.com/covers/31/54/9780060293154.jpg'), - ('0446605336', 'My Sergei: A Love Story', 'https://images.isbndb.com/covers/53/35/9780446605335.jpg'), - ('0684802082', 'JOSLIN GUIDE TO DIABETES : A Program For Managing Your Treatment', 'https://images.isbndb.com/covers/20/84/9780684802084.jpg'), - ('0385312512', 'Midnight Lemonade', 'https://images.isbndb.com/covers/25/16/9780385312516.jpg'), - ('0312961324', 'The Shell Seekers', 'https://images.isbndb.com/covers/13/29/9780312961329.jpg'), - ('0671027646', 'The Christmas Box Collection: The Christmas Box, Timepiece, And The Letter', 'https://images.isbndb.com/covers/76/43/9780671027643.jpg'), - ('068810004X', 'Tag: A Diabetic Food System', 'https://images.isbndb.com/covers/00/49/9780688100049.jpg'), - ('1567312500', 'Uppity Women Of Medieval Times', 'https://images.isbndb.com/covers/25/08/9781567312508.jpg'), - ('0060294698', 'All-American Girl', 'https://images.isbndb.com/covers/46/94/9780060294694.jpg'), - ('0609606441', 'Barefoot Contessa Parties! Ideas And Recipes For Easy Parties That Are Really Fun', 'https://images.isbndb.com/covers/64/45/9780609606445.jpg'), - ('0613072111', 'Pegasus In Flight Pegasus In Flight', 'https://images.isbndb.com/covers/21/13/9780613072113.jpg'), - ('0831771348', 'Week By Week Guide To Your Pregnancy', 'https://images.isbndb.com/covers/13/48/9780831771348.jpg'), - ('0425113884', 'Mortal Fear', 'https://images.isbndb.com/covers/38/82/9780425113882.jpg'), - ('0679752617', 'Dr. Haggard''s Disease', 'https://images.isbndb.com/covers/26/15/9780679752615.jpg'), - ('0679764925', 'Quite A Year For Plums: A Novel', 'https://images.isbndb.com/covers/49/22/9780679764922.jpg'), - ('0679770151', 'Sleeping At The Starlite Motel: And Other Adventures On The Way Back Home', 'https://images.isbndb.com/covers/01/52/9780679770152.jpg'), - ('0962855022', 'Low Fat & Light Four Ingredient Cookbook (Vol. III)', 'https://images.isbndb.com/covers/50/23/9780962855023.jpg'), - ('0066236568', 'Knocked Out By My Nunga-Nungas: Further, Further Confessions Of Georgia Nicolson', 'https://images.isbndb.com/covers/65/68/9780066236568.jpg'), - ('0800717716', 'In My Father''s House: The Years Before "The Hiding Place" (Corrie Ten Boom Library)', 'https://images.isbndb.com/covers/77/11/9780800717711.jpg'), - ('0553213873', 'The Story Of My Life (Bantam Classic)', 'https://images.isbndb.com/covers/38/74/9780553213874.jpg'), - ('0618127038', 'Village Centenary (The Fairacre Series #15)', 'https://images.isbndb.com/covers/70/30/9780618127030.jpg'), - ('0060185287', 'Flight Lessons', 'https://images.isbndb.com/covers/52/82/9780060185282.jpg'), - ('0345356365', 'The Wishsong Of Shannara (The Sword Of Shannara)', 'https://images.isbndb.com/covers/63/69/9780345356369.jpg'), - ('0345336429', 'Family Linen', 'https://images.isbndb.com/covers/64/22/9780345336422.jpg'), - ('0671556835', 'Temptress', 'https://images.isbndb.com/covers/68/39/9780671556839.jpg'), - ('014017821X', 'The Bloody Chamber: And Other Stories', 'https://images.isbndb.com/covers/82/10/9780140178210.jpg'), - ('0425109240', 'The Timothy Files', 'https://images.isbndb.com/covers/92/43/9780425109243.jpg'), - ('0312146957', 'The Old Forest And Other Stories', 'https://images.isbndb.com/covers/69/55/9780312146955.jpg'), - ('1567182186', 'True Hauntings: Spirits With A Purpose', 'https://images.isbndb.com/covers/21/87/9781567182187.jpg'), - ('1558747060', 'Chicken Soup For The Single''s Soul', 'https://images.isbndb.com/covers/70/67/9781558747067.jpg'), - ('1558746463', 'Chicken Soup For The Couple''s Soul', 'https://images.isbndb.com/covers/64/66/9781558746466.jpg'), - ('1558746099', 'Chicken Soup For The Kid''s Soul: 101 Stories Of Courage, Hope And Laughter (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/60/91/9781558746091.jpg'), - ('1558747141', 'Chicken Soup For The Christian Family Soul : Stories To Open The Heart And Rekindle The Spirit (Chicken Soup For The Soul Series)', 'https://images.isbndb.com/covers/71/42/9781558747142.jpg'), - ('0316120863', 'All The Finest Girls: A Novel', 'https://images.isbndb.com/covers/08/69/9780316120869.jpg'), - ('0911379010', 'Out Of The Crisis', 'https://images.isbndb.com/covers/90/13/9780911379013.jpg'), - ('0345382919', 'Devil''s Dream', 'https://images.isbndb.com/covers/29/17/9780345382917.jpg'), - ('1556113854', 'Skylark''s Song: A Novel', 'https://images.isbndb.com/covers/38/57/9781556113857.jpg'), - ('0452266637', 'Beauty''s Release', 'https://images.isbndb.com/covers/66/36/9780452266636.jpg'), - ('155972126X', 'Father''s Day', 'https://images.isbndb.com/covers/12/64/9781559721264.jpg'), - ('006109028X', 'Sharpe''s Devil (Richard Sharpe''s Adventure Series #21)', 'https://images.isbndb.com/covers/02/88/9780061090288.jpg'), - ('0515113719', 'The Simeon Chamber', 'https://images.isbndb.com/covers/37/16/9780515113716.jpg'), - ('0757300243', 'Chicken Soup For The Sister''s Soul: Inspirational Stories About Sisters And Their Changing Relationships (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/02/40/9780757300240.jpg'), - ('1558744029', 'Chicken Soup For The Surviving Soul: 101 Healing Stories About Those Who Have Survived Cancer', 'https://images.isbndb.com/covers/40/28/9781558744028.jpg'), - ('1558743790', 'A 3rd Serving Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/37/93/9781558743793.jpg'), - ('084991437X', 'Jesus Among Other Gods: The Absolute Claims Of The Christian Message', 'https://images.isbndb.com/covers/43/79/9780849914379.jpg'), - ('1558748008', 'Chicken Soup For The Preteen Soul - 101 Stories Of Changes, Choices', 'https://images.isbndb.com/covers/80/02/9781558748002.jpg'), - ('1558745629', 'Chicken Soup For The Country Soul: Stories Served Up Country-Style And Straight From The Heart (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/56/29/9781558745629.jpg'), - ('1558747966', 'Chicken Soup For The Expectant Mother''s Soul', 'https://images.isbndb.com/covers/79/68/9781558747968.jpg'), - ('006447187X', 'Girl Goddess #9: Nine Stories', 'https://images.isbndb.com/covers/18/79/9780064471879.jpg'), - ('0375760628', 'Slave To Fashion: A Novel', 'https://images.isbndb.com/covers/06/24/9780375760624.jpg'), - ('0060287365', 'Hippolyta And The Curse Of The Amazons', 'https://images.isbndb.com/covers/73/68/9780060287368.jpg'), - ('0380727021', 'Come And Go, Molly Snow', 'https://images.isbndb.com/covers/70/25/9780380727025.jpg'), - ('0312187106', 'The Diary Of Mattie Spenser', 'https://images.isbndb.com/covers/71/01/9780312187101.jpg'), - ('0849952476', 'Life Lessons: Book Of John', 'https://images.isbndb.com/covers/24/70/9780849952470.jpg'), - ('0849952492', 'Life Lessons: Book Of Romans', 'https://images.isbndb.com/covers/24/94/9780849952494.jpg'), - ('0789405652', '101 Essential Tips: House Plants', 'https://images.isbndb.com/covers/56/54/9780789405654.jpg'), - ('1580172938', 'Melt & Mold Soap Crafting', 'https://images.isbndb.com/covers/29/36/9781580172936.jpg'), - ('0449910741', 'The Return Of Merlin', 'https://images.isbndb.com/covers/07/40/9780449910740.jpg'), - ('1591450055', 'Circle Of Honor (The Scottish Crown Series, Book 1)', 'https://images.isbndb.com/covers/00/54/9781591450054.jpg'), - ('038072152X', 'Hello Darling, Are You Working?', 'https://images.isbndb.com/covers/15/28/9780380721528.jpg'), - ('0440413869', 'A Traitor Among The Boys', 'https://images.isbndb.com/covers/38/68/9780440413868.jpg'), - ('0133349705', 'Frommer''s Hawaii ''92 On $70 A Day (Frommer''s Hawaii From $ A Day)', 'https://images.isbndb.com/covers/97/02/9780133349702.jpg'), - ('1577311108', 'You Can Be Happy No Matter What: Five Principles For Keeping Life In Perspective', 'https://images.isbndb.com/covers/11/02/9781577311102.jpg'), - ('0062740067', 'Emily Post On Entertaining', 'https://images.isbndb.com/covers/00/69/9780062740069.jpg'), - ('0439435242', 'The Seeing Stone', 'https://images.isbndb.com/covers/52/46/9780439435246.jpg'), - ('1563051818', 'Meditations For New Mothers', 'https://images.isbndb.com/covers/18/14/9781563051814.jpg'), - ('0671743686', 'For Love Alone', 'https://images.isbndb.com/covers/36/80/9780671743680.jpg'), - ('0818405422', 'Bodies Of Evidence: The True Story Of Judias Buenoano Florida''s Serial Murderess', 'https://images.isbndb.com/covers/54/26/9780818405426.jpg'), - ('1891105035', '30-Minute Meals', 'https://images.isbndb.com/covers/50/36/9781891105036.jpg'), - ('006621016X', 'Filthy Rich', 'https://images.isbndb.com/covers/01/62/9780066210162.jpg'), - ('0786865504', 'World Of Pies: A Novel', 'https://images.isbndb.com/covers/55/05/9780786865505.jpg'), - ('0679456937', 'The Inn At Lake Devine: A Novel', 'https://images.isbndb.com/covers/69/33/9780679456933.jpg'), - ('0380975580', 'Murder Gets A Life:: A Southern Sisters Mystery (Southern Sisters Mysteries)', 'https://images.isbndb.com/covers/55/87/9780380975587.jpg'), - ('0684853620', 'The Strangeness Of Beauty: A Novel', 'https://images.isbndb.com/covers/36/28/9780684853628.jpg'), - ('0060392827', 'Confessions Of An Ugly Stepsister', 'https://images.isbndb.com/covers/28/26/9780060392826.jpg'), - ('1551668157', 'About That Man', 'https://images.isbndb.com/covers/81/54/9781551668154.jpg'), - ('0553213156', 'Anne Of Ingleside (Anne Of Green Gables, No. 6)', 'https://images.isbndb.com/covers/31/57/9780553213157.jpg'), - ('0613225937', 'Welcome To The World Baby Gir Welcome To The World Baby Gir', 'https://images.isbndb.com/covers/59/39/9780613225939.jpg'), - ('1573221260', 'The Funnies', 'https://images.isbndb.com/covers/12/69/9781573221269.jpg'), - ('0345410092', 'Me : Stories Of My Life', 'https://images.isbndb.com/covers/00/92/9780345410092.jpg'), - ('0440124344', 'Family Album', 'https://images.isbndb.com/covers/43/44/9780440124344.jpg'), - ('014027927X', 'Ralph''s Party', 'https://images.isbndb.com/covers/92/76/9780140279276.jpg'), - ('078688360X', 'Don''t Worry, Make Money: Spiritual And Practical Ways To Create Abundance And More Fun In Your Life', 'https://images.isbndb.com/covers/36/08/9780786883608.jpg'), - ('0152008799', 'Finishing Becca: A Story About Peggy Shippen And Benedict Arnold', 'https://images.isbndb.com/covers/87/96/9780152008796.jpg'), - ('0805063781', 'The Gospel According To Larry', 'https://images.isbndb.com/covers/37/83/9780805063783.jpg'), - ('0064473023', 'Grecian Holiday: Or, How I Turned Down The Best Possible Thing Only To Have The Time Of My Life', 'https://images.isbndb.com/covers/30/26/9780064473026.jpg'), - ('0152001018', 'A Break With Charity: A Story About The Salem Witch Trials', 'https://images.isbndb.com/covers/10/18/9780152001018.jpg'), - ('0761316426', 'The Cannibals: Starring Tiffany Spratt (Single Titles)', 'https://images.isbndb.com/covers/64/28/9780761316428.jpg'), - ('0312209673', 'Man Or Mango?', 'https://images.isbndb.com/covers/96/74/9780312209674.jpg'), - ('1883523362', 'Those Jordan Girls', 'https://images.isbndb.com/covers/33/67/9781883523367.jpg'), - ('0060976497', 'Ten Stupid Things Women Do To Mess Up Their Lives', 'https://images.isbndb.com/covers/64/91/9780060976491.jpg'), - ('0312147015', 'The Persian Pickle Club', 'https://images.isbndb.com/covers/70/13/9780312147013.jpg'), - ('1558743545', 'Chicken Soup For The Soul Cookbook: 101 Stories With Recipes From The Heart', 'https://images.isbndb.com/covers/35/40/9781558743540.jpg'), - ('0452282128', 'Thirty Nothing', 'https://images.isbndb.com/covers/21/24/9780452282124.jpg'), - ('0767906543', 'Mr. Commitment', 'https://images.isbndb.com/covers/65/48/9780767906548.jpg'), - ('0374399891', 'Joey Pigza Loses Control (Newbery Honor Book)', 'https://images.isbndb.com/covers/98/94/9780374399894.jpg'), - ('0517100800', 'How Angels Get Their Wings', 'https://images.isbndb.com/covers/08/06/9780517100806.jpg'), - ('068485595X', 'Hundred Dollar Holiday: The Case For A More Joyful Christmas', 'https://images.isbndb.com/covers/59/50/9780684855950.jpg'), - ('0786884207', 'Don''t Sweat The Small Stuff In Love (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/42/09/9780786884209.jpg'), - ('0375506187', 'Milk Glass Moon: A Big Stone Gap Novel (Big Stone Gap Novels)', 'https://images.isbndb.com/covers/61/85/9780375506185.jpg'), - ('0812524160', 'Nine Levels Down', 'https://images.isbndb.com/covers/41/61/9780812524161.jpg'), - ('0399135278', 'Night Secrets', 'https://images.isbndb.com/covers/52/79/9780399135279.jpg'), - ('0312908830', 'Night Of Error', 'https://images.isbndb.com/covers/88/36/9780312908836.jpg'), - ('0142000345', 'A Common Life: The Wedding Story (The Mitford Years #6)', 'https://images.isbndb.com/covers/03/42/9780142000342.jpg'), - ('1577488288', 'Colorado Wings: A Wing And A Prayer/Wings Like Eagles/Wings Of The Dawn/A Gift Of Wings (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/82/86/9781577488286.jpg'), - ('0800781724', 'Raptured', 'https://images.isbndb.com/covers/17/29/9780800781729.jpg'), - ('1577482158', 'A Funny Thing Happened On My Way Through The Bible', 'https://images.isbndb.com/covers/21/54/9781577482154.jpg'), - ('0882702637', 'The Christian Employee', 'https://images.isbndb.com/covers/26/36/9780882702636.jpg'), - ('0821723006', 'Pat Nixon: The Untold Story', 'https://images.isbndb.com/covers/30/05/9780821723005.jpg'), - ('0380796104', 'Lucy Sullivan Is Getting Married', 'https://images.isbndb.com/covers/61/06/9780380796106.jpg'), - ('1565120167', 'Music Of The Swamp (Front Porch Paperbacks)', 'https://images.isbndb.com/covers/01/67/9781565120167.jpg'), - ('1586603981', 'South Carolina: Southern Gentleman/After The Storm/Somewhere A Rainbow/Catch Of A Lifetime (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/39/84/9781586603984.jpg'), - ('031020755X', 'Relationships: An Open And Honest Guide To Making Bad Relationships Better And Good Relationships Great', 'https://images.isbndb.com/covers/75/59/9780310207559.jpg'), - ('0764501801', 'Windows 95 For Dummies', 'https://images.isbndb.com/covers/18/07/9780764501807.jpg'), - ('0399141855', 'To The Hilt', 'https://images.isbndb.com/covers/18/50/9780399141850.jpg'), - ('0140340831', 'Aldo Applesauce (Puffin Story Books)', 'https://images.isbndb.com/covers/08/39/9780140340839.jpg'), - ('0310213975', 'Touched By An Angel', 'https://images.isbndb.com/covers/39/70/9780310213970.jpg'), - ('0517588242', 'Making Your Own Gourmet Coffee Drinks: Espressos, Cappuccinos, Lattes, Mochas, And More!', 'https://images.isbndb.com/covers/82/46/9780517588246.jpg'), - ('0385485697', 'Joshua And The City (The Joshua Series)', 'https://images.isbndb.com/covers/56/92/9780385485692.jpg'), - ('1565075722', 'The Power Of A Praying Wife', 'https://images.isbndb.com/covers/57/26/9781565075726.jpg'), - ('0440415829', 'Piping Down The Valleys Wild', 'https://images.isbndb.com/covers/58/24/9780440415824.jpg'), - ('0064460932', 'Joyful Noise: Poems For Two Voices', 'https://images.isbndb.com/covers/09/34/9780064460934.jpg'), - ('0590959433', 'A Glory Of Unicorns', 'https://images.isbndb.com/covers/94/38/9780590959438.jpg'), - ('076422249X', 'The Sacred Shore (Song Of Acadia #2)', 'https://images.isbndb.com/covers/24/98/9780764222498.jpg'), - ('0816318050', 'Escape To God: How Our Family Left The Rat Race Behind To Search For Genuine Spirituality And The Simple Life', 'https://images.isbndb.com/covers/80/56/9780816318056.jpg'), - ('0142000477', 'More Than Enough: The Ten Keys To Changing Your Financial Destiny', 'https://images.isbndb.com/covers/04/72/9780142000472.jpg'), - ('1586602616', 'California: Golden Dreams/A Gift From Above/Better Than Friends/To Truly See (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/26/11/9781586602611.jpg'), - ('1586602772', 'Ozarks: A Sign Of Love/A Place For Love/The Hasty Heart/The Healing Promise (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/27/72/9781586602772.jpg'), - ('0395636477', 'The Call Of Service: A Witness To Idealism', 'https://images.isbndb.com/covers/64/73/9780395636473.jpg'), - ('0060617519', 'The Long Loneliness: The Autobiography Of The Legendary Catholic Social Activist', 'https://images.isbndb.com/covers/75/16/9780060617516.jpg'), - ('0446530115', 'The Shadow Women', 'https://images.isbndb.com/covers/01/18/9780446530118.jpg'), - ('0553581066', 'Neurotica', 'https://images.isbndb.com/covers/10/65/9780553581065.jpg'), - ('0671794493', 'Flavor Of The Month', 'https://images.isbndb.com/covers/44/91/9780671794491.jpg'), - ('0380978342', 'Ritual Of Proof', 'https://images.isbndb.com/covers/83/42/9780380978342.jpg'), - ('0312105231', 'Peckover Joins The Choir', 'https://images.isbndb.com/covers/52/35/9780312105235.jpg'), - ('0060179988', 'The Journeyman Tailor', 'https://images.isbndb.com/covers/99/84/9780060179984.jpg'), - ('013029604X', 'American Steel: Hot Metal Men And The Resurrection Of The Rust Belt (First Edition)', 'https://images.isbndb.com/covers/60/47/9780130296047.jpg'), - ('0380975351', 'Joining', 'https://images.isbndb.com/covers/53/58/9780380975358.jpg'), - ('034531221X', 'Lincoln', 'https://images.isbndb.com/covers/22/11/9780345312211.jpg'), - ('0849939585', 'The Princess Club: Christy Series #7', 'https://images.isbndb.com/covers/95/87/9780849939587.jpg'), - ('0849939593', 'Christy Series #8: Family Secrets', 'https://images.isbndb.com/covers/95/94/9780849939594.jpg'), - ('0849936888', 'Christy Series #3: The Angry Intruder', 'https://images.isbndb.com/covers/68/83/9780849936883.jpg'), - ('0849939194', 'Christy Series #6: Christy''s Choice', 'https://images.isbndb.com/covers/91/98/9780849939198.jpg'), - ('0590460560', 'A Stitch In Time (Quilt Trilogy, Volume 1)', 'https://images.isbndb.com/covers/05/69/9780590460569.jpg'), - ('0590460528', 'The Blue Door (Quilt Trilogy #3)', 'https://images.isbndb.com/covers/05/21/9780590460521.jpg'), - ('0590460544', 'Broken Days (Quilt Trilogy #2)', 'https://images.isbndb.com/covers/05/45/9780590460545.jpg'), - ('0830707360', 'Chronicles Of Mansoul: A John Bunyan Classic', 'https://images.isbndb.com/covers/73/62/9780830707362.jpg'), - ('1576738167', 'Redeeming Love', 'https://images.isbndb.com/covers/81/60/9781576738160.jpg'), - ('0915684012', 'Twelve Baskets Of Crumbs', 'https://images.isbndb.com/covers/40/14/9780915684014.jpg'), - ('0802404332', 'Amy Carmichael: Let The Little Children Come', 'https://images.isbndb.com/covers/43/36/9780802404336.jpg'), - ('1874508003', 'Bible Basics- Indonesian Version', 'https://images.isbndb.com/covers/80/07/9781874508007.jpg'), - ('155166576X', 'Dakota Born (Dakota Series #1)', 'https://images.isbndb.com/covers/57/64/9781551665764.jpg'), - ('0060926201', 'She Flew The Coop: A Novel Concerning Life, Death, Sex And Recipes In Limoges, Louisiana', 'https://images.isbndb.com/covers/62/05/9780060926205.jpg'), - ('0804108293', 'Crazy Ladies', 'https://images.isbndb.com/covers/82/94/9780804108294.jpg'), - ('0849953421', 'Let The Journey Begin God''s Roadmap For New Beginnings', 'https://images.isbndb.com/covers/34/22/9780849953422.jpg'), - ('0664254829', 'St. Paul At The Movies: The Apostle''s Dialogue With American Culture', 'https://images.isbndb.com/covers/48/27/9780664254827.jpg'), - ('0310515114', 'From The Claws Of The Dragon: A Story Of Deliverance From The Chinese Red Guards', 'https://images.isbndb.com/covers/51/11/9780310515111.jpg'), - ('1556615833', 'Please Give Me Another Chance, Lord: The Secret Of Prayer In A Teen''s Life', 'https://images.isbndb.com/covers/58/32/9781556615832.jpg'), - ('0816733082', 'Winni Allfours', 'https://images.isbndb.com/covers/30/88/9780816733088.jpg'), - ('0375811354', 'The Foot Book (Nifty Lift-and-Look)', 'https://images.isbndb.com/covers/13/57/9780375811357.jpg'), - ('0806984929', 'Windows On The World Complete Wine Course', 'https://images.isbndb.com/covers/49/26/9780806984926.jpg'), - ('067165845X', 'Night And Day', 'https://images.isbndb.com/covers/84/58/9780671658458.jpg'), - ('0060173084', 'Ten Stupid Things Men Do To Mess Up Their Lives', 'https://images.isbndb.com/covers/30/81/9780060173081.jpg'), - ('0451204123', 'The Association', 'https://images.isbndb.com/covers/41/27/9780451204127.jpg'), - ('0152006737', 'A Ride Into Morning: The Story Of Tempe Wick', 'https://images.isbndb.com/covers/67/30/9780152006730.jpg'), - ('0842319018', 'The Shoe Box', 'https://images.isbndb.com/covers/90/10/9780842319010.jpg'), - ('051734582X', 'Asimov''s Guide To The Bible: Two Volumes In One, The Old And New Testaments', 'https://images.isbndb.com/covers/58/25/9780517345825.jpg'), - ('1580082319', 'How Wal-Mart Is Destroying America And The World And What You Can Do About It', 'https://images.isbndb.com/covers/23/10/9781580082310.jpg'), - ('0345427297', 'The Milk Mustache Book: A Behind-The-Scenes Look At America''s Favorite Advertising Campaign', 'https://images.isbndb.com/covers/72/98/9780345427298.jpg'), - ('0140547533', 'The Funny Little Woman (Picture Puffins)', 'https://images.isbndb.com/covers/75/35/9780140547535.jpg'), - ('1578564719', 'What''s A Christian To Do With Harry Potter?', 'https://images.isbndb.com/covers/47/12/9781578564712.jpg'), - ('1576737810', 'What I Wish I''d Known Before I Got Married', 'https://images.isbndb.com/covers/78/11/9781576737811.jpg'), - ('0785270221', '10 Commandments Of Dating', 'https://images.isbndb.com/covers/02/25/9780785270225.jpg'), - ('1576737098', 'Boy Meets Girl: Say Hello To Courtship', 'https://images.isbndb.com/covers/70/95/9781576737095.jpg'), - ('1576730360', 'I Kissed Dating Goodbye: A New Attitude Toward Relationships And Romance', 'https://images.isbndb.com/covers/03/62/9781576730362.jpg'), - ('0786862262', 'Jesus In Blue Jeans: A Practical Guide To Everyday Spirituality', 'https://images.isbndb.com/covers/22/69/9780786862269.jpg'), - ('031023008X', 'Fresh Power: Experiencing The Vast Resources Of The Spirit Of God', 'https://images.isbndb.com/covers/00/83/9780310230083.jpg'), - ('0840771835', 'The Smoke Of A Thousand Villages...and Other Stories Of Real Life Heroes Of The Faith', 'https://images.isbndb.com/covers/18/34/9780840771834.jpg'), - ('0380975068', 'The Lust Lizard Of Melancholy Cove', 'https://images.isbndb.com/covers/50/68/9780380975068.jpg'), - ('0517118971', 'Earth, Water & Air (Snoopy''s World)', 'https://images.isbndb.com/covers/89/79/9780517118979.jpg'), - ('0394873416', 'The Berenstain Bears And The Bad Dream', 'https://images.isbndb.com/covers/34/11/9780394873411.jpg'), - ('059040024X', 'The Magic School Bus: Gets Ants In Its Pants: A Book About Ants', 'https://images.isbndb.com/covers/02/44/9780590400244.jpg'), - ('0590226517', 'Across The Wide And Lonesome Prairie: The Oregon Trail Diary Of Hattie Campbell, 1847 (Dear America Series)', 'https://images.isbndb.com/covers/65/16/9780590226516.jpg'), - ('1580626599', 'Laura: America''s First Lady, First Mother', 'https://images.isbndb.com/covers/65/90/9781580626590.jpg'), - ('0590543199', 'Mine Eyes Have Seen', 'https://images.isbndb.com/covers/31/94/9780590543194.jpg'), - ('067161276X', 'The Great Alone', 'https://images.isbndb.com/covers/27/64/9780671612764.jpg'), - ('0871316072', 'Nikrova''s Passion: An Evans Novel Of Romance', 'https://images.isbndb.com/covers/60/73/9780871316073.jpg'), - ('0671794507', 'Flavor Of The Month', 'https://images.isbndb.com/covers/45/07/9780671794507.jpg'), - ('0152164502', 'The Coffin Quilt: The Feud Between The Hatfields And The McCoys', 'https://images.isbndb.com/covers/45/08/9780152164508.jpg'), - ('0312959176', 'Beauty From Ashes (Georgia Trilogy)', 'https://images.isbndb.com/covers/91/73/9780312959173.jpg'), - ('1577361814', 'New Moon Rising (St. Simons Trilogy, Vol. 2)', 'https://images.isbndb.com/covers/18/17/9781577361817.jpg'), - ('0679867406', 'Glasses For D W', 'https://images.isbndb.com/covers/74/01/9780679867401.jpg'), - ('0394865871', 'Little Witch''s Big Night (Step-Into-Reading, Step 3)', 'https://images.isbndb.com/covers/58/74/9780394865874.jpg'), - ('0849942829', 'A Time To Dance', 'https://images.isbndb.com/covers/28/22/9780849942822.jpg'), - ('0764222120', 'The Crossroad (Amish Country Crossroads #2)', 'https://images.isbndb.com/covers/21/22/9780764222122.jpg'), - ('0764222112', 'The Postcard (Amish Country Crossroads #1)', 'https://images.isbndb.com/covers/21/15/9780764222115.jpg'), - ('0310201683', 'The Promise (The American Quilt Series #3)', 'https://images.isbndb.com/covers/16/87/9780310201687.jpg'), - ('0395251818', 'Chronicles Of Fairacre: Village School / Village Diary / Storm In The Village (The Fairacre Omnibus)', 'https://images.isbndb.com/covers/18/12/9780395251812.jpg'), - ('0440228611', 'The Last Silk Dress', 'https://images.isbndb.com/covers/86/15/9780440228615.jpg'), - ('0880701366', 'Imagination: Embracing A Theology Of Wonder', 'https://images.isbndb.com/covers/13/65/9780880701365.jpg'), - ('0590742590', 'The Second Bend In The River', 'https://images.isbndb.com/covers/25/97/9780590742597.jpg'), - ('0934395500', 'The American Country Inn And Bed & Breakfast Cookbook, Volume I: More Than 1,700 Crowd-pleasing Recipes From 500 American Inns (American Country Inn & Bed & Breakfast Cookbook)', 'https://images.isbndb.com/covers/55/02/9780934395502.jpg'), - ('0394872177', 'The Berenstain Bears And Too Much Junk Food', 'https://images.isbndb.com/covers/21/79/9780394872179.jpg'), - ('0590426230', 'Big Sarah''s Little Boots (A Blue Ribbon Book)', 'https://images.isbndb.com/covers/62/37/9780590426237.jpg'), - ('006446735X', 'Shark Swimathon (MathStart 3)', 'https://images.isbndb.com/covers/73/53/9780064467353.jpg'), - ('0679800921', 'Five Silly Fishermen (Step-Into-Reading, Step 2)', 'https://images.isbndb.com/covers/09/27/9780679800927.jpg'), - ('0590479172', 'The Gym Teacher From The Black Lagoon', 'https://images.isbndb.com/covers/91/72/9780590479172.jpg'), - ('0698116003', 'Chato''s Kitchen', 'https://images.isbndb.com/covers/60/09/9780698116009.jpg'), - ('068806518X', 'Feelings (Reading Rainbow Book)', 'https://images.isbndb.com/covers/51/88/9780688065188.jpg'), - ('1880000334', 'Zora Hurston And The Chinaberry Tree (Reading Rainbow Book)', 'https://images.isbndb.com/covers/03/35/9781880000335.jpg'), - ('0590480898', 'The Bunyans', 'https://images.isbndb.com/covers/08/95/9780590480895.jpg'), - ('0064402509', 'The Family Under The Bridge', 'https://images.isbndb.com/covers/25/07/9780064402507.jpg'), - ('0590934252', 'Amber Brown Goes Fourth', 'https://images.isbndb.com/covers/42/51/9780590934251.jpg'), - ('067988341X', 'Polar Bears Past Bedtime (Magic Tree House, No. 12)', 'https://images.isbndb.com/covers/34/18/9780679883418.jpg'), - ('0590449206', 'Lily And Miss Liberty', 'https://images.isbndb.com/covers/92/05/9780590449205.jpg'), - ('0590947168', 'Amber Brown Wants Extra Credit', 'https://images.isbndb.com/covers/71/69/9780590947169.jpg'), - ('0679824111', 'Dinosaurs Before Dark (Magic Tree House, No. 1)', 'https://images.isbndb.com/covers/41/14/9780679824114.jpg'), - ('0805002138', 'The Wind In The Willows', 'https://images.isbndb.com/covers/21/33/9780805002133.jpg'), - ('1587172046', 'The Wind In The Willows', 'https://images.isbndb.com/covers/20/45/9781587172045.jpg'), - ('0380719002', 'Stepping On The Cracks', 'https://images.isbndb.com/covers/90/06/9780380719006.jpg'), - ('0064440591', 'Frog And Toad All Year (I Can Read Book 2)', 'https://images.isbndb.com/covers/05/92/9780064440592.jpg'), - ('0141302283', 'The Giraffe And The Pelly And Me', 'https://images.isbndb.com/covers/22/87/9780141302287.jpg'), - ('0671677136', 'How To Survive Third Grade (American Sisters)', 'https://images.isbndb.com/covers/71/38/9780671677138.jpg'), - ('0440409411', 'The Castle In The Attic', 'https://images.isbndb.com/covers/94/10/9780440409410.jpg'), - ('0590543385', 'Runaway Pony (Pony Pals #7)', 'https://images.isbndb.com/covers/33/85/9780590543385.jpg'), - ('0060163097', '365 Easy Low-Calorie Recipes (365 Ways)', 'https://images.isbndb.com/covers/30/99/9780060163099.jpg'), - ('0440416248', 'Frozen Summer', 'https://images.isbndb.com/covers/62/41/9780440416241.jpg'), - ('0140349812', 'Lyddie (Puffin Books)', 'https://images.isbndb.com/covers/98/18/9780140349818.jpg'), - ('0140386742', 'Jip: His Story', 'https://images.isbndb.com/covers/67/45/9780140386745.jpg'), - ('0140365931', 'A Pocket Full Of Seeds (A Puffin Book)', 'https://images.isbndb.com/covers/59/31/9780140365931.jpg'), - ('0439099048', 'Katarina', 'https://images.isbndb.com/covers/90/42/9780439099042.jpg'), - ('0613177177', 'One Bird', 'https://images.isbndb.com/covers/71/77/9780613177177.jpg'), - ('1565121570', 'Yo!', 'https://images.isbndb.com/covers/15/77/9781565121577.jpg'), - ('1558746587', 'Chicken Soup For The Golfer''s Soul', 'https://images.isbndb.com/covers/65/89/9781558746589.jpg'), - ('0964095564', 'The Golfer''s Book Of Wisdom: Common Sense And Uncommon Genius From 101 Golfing Greats', 'https://images.isbndb.com/covers/55/64/9780964095564.jpg'), - ('0099133717', 'American Ghosts And Old World Wonders', 'https://images.isbndb.com/covers/37/11/9780099133711.jpg'), - ('0771068182', 'NOW City Guide To Toronto (Now City Guides)', 'https://images.isbndb.com/covers/81/88/9780771068188.jpg'), - ('2894641214', 'Toronto (anglais)', 'https://images.isbndb.com/covers/12/17/9782894641217.jpg'), - ('1858284147', 'The Rough Guide To Toronto', 'https://images.isbndb.com/covers/41/49/9781858284149.jpg'), - ('1558533311', 'Live And Learn And Pass It On: People Ages 5 To 95 Share What They''Ve Discovered About Life, Love, And Other Good Stuff (Live & Learn & Pass It On)', 'https://images.isbndb.com/covers/33/18/9781558533318.jpg'), - ('0394557212', 'I Touch The Future: The Story Of Christa McAuliffe', 'https://images.isbndb.com/covers/72/12/9780394557212.jpg'), - ('0590697692', 'Faith And The Electric Dogs', 'https://images.isbndb.com/covers/76/99/9780590697699.jpg'), - ('0590486691', 'At Her Majesty''s Request: An African Princess In Victorian England', 'https://images.isbndb.com/covers/66/99/9780590486699.jpg'), - ('0140376283', 'Phoenix Rising', 'https://images.isbndb.com/covers/62/89/9780140376289.jpg'), - ('0698118804', 'Lost Flower Children', 'https://images.isbndb.com/covers/88/05/9780698118805.jpg'), - ('0531087875', 'A Message From The Match Girl (Investigators Of The Unknown, Bk. 3)', 'https://images.isbndb.com/covers/78/79/9780531087879.jpg'), - ('0590439448', 'Afternoon Of The Elves', 'https://images.isbndb.com/covers/94/42/9780590439442.jpg'), - ('0684823799', 'Miracles: A Preliminary Study (C.S. Lewis Classics)', 'https://images.isbndb.com/covers/37/99/9780684823799.jpg'), - ('0679732187', 'Absalom, Absalom! The Corrected Text', 'https://images.isbndb.com/covers/21/81/9780679732181.jpg'), - ('0140344438', 'Nothing''s Fair In Fifth Grade', 'https://images.isbndb.com/covers/44/31/9780140344431.jpg'), - ('0451523954', 'The Signet Classic Book Of Southern Short Stories (Signet Classics)', 'https://images.isbndb.com/covers/39/52/9780451523952.jpg'), - ('0064406865', 'Pleasing The Ghost', 'https://images.isbndb.com/covers/68/64/9780064406864.jpg'), - ('0440430461', 'The Gift Of The Pirate Queen', 'https://images.isbndb.com/covers/04/69/9780440430469.jpg'), - ('0590117440', 'Amelia''s War', 'https://images.isbndb.com/covers/74/49/9780590117449.jpg'), - ('0689842945', 'Wenny Has Wings', 'https://images.isbndb.com/covers/29/48/9780689842948.jpg'), - ('1883672902', 'The Diary Of Chickabiddy Baby', 'https://images.isbndb.com/covers/29/04/9781883672904.jpg'), - ('0689842309', 'Double Dutch', 'https://images.isbndb.com/covers/23/06/9780689842306.jpg'), - ('0060281766', 'Freewill', 'https://images.isbndb.com/covers/17/62/9780060281762.jpg'), - ('0152003924', 'The Secret Of Sarah Revere', 'https://images.isbndb.com/covers/39/20/9780152003920.jpg'), - ('0380978636', 'Don''t You Know There''s A War On?', 'https://images.isbndb.com/covers/86/32/9780380978632.jpg'), - ('0809206196', 'Jamestown''s American Portraits: Corn Raid: A Story Of The Jamestown Settlement (Jamestown''s American Portraits)', 'https://images.isbndb.com/covers/61/93/9780809206193.jpg'), - ('0842300198', 'Alive (Campus Life Series)', 'https://images.isbndb.com/covers/01/93/9780842300193.jpg'), - ('0140236201', 'Paradise Of The Blind: A Novel', 'https://images.isbndb.com/covers/62/00/9780140236200.jpg'), - ('0140481877', 'Master Harold . . . And The Boys (Penguin Plays)', 'https://images.isbndb.com/covers/18/77/9780140481877.jpg'), - ('0486273008', 'Japanese Fairy Tales (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/30/06/9780486273006.jpg'), - ('0140108599', 'Clear Light Of Day', 'https://images.isbndb.com/covers/85/90/9780140108590.jpg'), - ('0195867866', 'From The Bluest Part Of The Harbour: Poems From Hong Kong (Oxford In Asia Paperbacks)', 'https://images.isbndb.com/covers/78/62/9780195867862.jpg'), - ('0451628454', 'Other Voices, Other Vistas: Short Stories From Africa, China, India, Japan And Latin America (Mentor)', 'https://images.isbndb.com/covers/84/59/9780451628459.jpg'), - ('0679887911', 'Knots In My Yo-Yo String', 'https://images.isbndb.com/covers/79/11/9780679887911.jpg'), - ('0674354427', 'The Girl With The Brown Crayon: How Childen Use Stories To Shape Their Lives', 'https://images.isbndb.com/covers/44/25/9780674354425.jpg'), - ('0440226848', 'What Child Is This?: A Christmas Story', 'https://images.isbndb.com/covers/68/40/9780440226840.jpg'), - ('0590319906', 'When She Was Good', 'https://images.isbndb.com/covers/99/04/9780590319904.jpg'), - ('0064470679', 'Gentlehands (Harper Keypoint Book)', 'https://images.isbndb.com/covers/06/74/9780064470674.jpg'), - ('0156004771', 'SPAM: A Biography: The Amazing True Story Of America''s "Miracle Meat!"', 'https://images.isbndb.com/covers/47/70/9780156004770.jpg'), - ('0061081116', 'Loss Of Innocence', 'https://images.isbndb.com/covers/11/18/9780061081118.jpg'), - ('0373483503', 'Macgregor Brides (Macgregors)', 'https://images.isbndb.com/covers/35/01/9780373483501.jpg'), - ('0380785757', 'Lion Heart (Avon Romantic Treasures)', 'https://images.isbndb.com/covers/57/59/9780380785759.jpg'), - ('0380785714', 'Lyon''s Gift', 'https://images.isbndb.com/covers/57/11/9780380785711.jpg'), - ('0553294091', 'Once An Angel', 'https://images.isbndb.com/covers/40/95/9780553294095.jpg'), - ('0590023888', 'Misty Of Chincoteague', 'https://images.isbndb.com/covers/38/87/9780590023887.jpg'), - ('0812544420', 'Summer At The Lake (Mysteries & Horror)', 'https://images.isbndb.com/covers/44/28/9780812544428.jpg'), - ('0373290853', 'Cooper''s Wife (Harlequin Historicals #485)', 'https://images.isbndb.com/covers/08/57/9780373290857.jpg'), - ('0671741268', 'Seasons Of Gold', 'https://images.isbndb.com/covers/12/66/9780671741266.jpg'), - ('0312033001', 'Can My Bridesmaids Wear Black?-- And 325 Other Most-Asked Etiquette Questions', 'https://images.isbndb.com/covers/30/02/9780312033002.jpg'), - ('0373270976', 'Night Shield (Silhouette Intimate Moments, #1027)', 'https://images.isbndb.com/covers/09/72/9780373270972.jpg'), - ('0812571762', 'The Senator''s Daughter', 'https://images.isbndb.com/covers/17/69/9780812571769.jpg'), - ('0671025708', 'The Last Dance', 'https://images.isbndb.com/covers/57/00/9780671025700.jpg'), - ('0812514092', 'Aristoi', 'https://images.isbndb.com/covers/40/94/9780812514094.jpg'), - ('0515122734', 'Sanctuary', 'https://images.isbndb.com/covers/27/32/9780515122732.jpg'), - ('0440224578', 'The Pride Of Lions', 'https://images.isbndb.com/covers/45/70/9780440224570.jpg'), - ('0440217857', 'Across A Moonlit Sea', 'https://images.isbndb.com/covers/78/55/9780440217855.jpg'), - ('0373705867', 'Single...with Children (Harlequin Superromance No. 586)', 'https://images.isbndb.com/covers/58/63/9780373705863.jpg'), - ('1551665794', 'Twelve Across', 'https://images.isbndb.com/covers/57/95/9781551665795.jpg'), - ('0061010995', 'Moment To Moment', 'https://images.isbndb.com/covers/09/96/9780061010996.jpg'), - ('0373762690', 'Dr. Mommy (From Here To Maternity) (Silhouette Desire, 1269) (Harlequin Desire)', 'https://images.isbndb.com/covers/26/99/9780373762699.jpg'), - ('0451407806', 'Something Wicked', 'https://images.isbndb.com/covers/78/01/9780451407801.jpg'), - ('0373484046', 'Soldiers Of Fortune', 'https://images.isbndb.com/covers/40/41/9780373484041.jpg'), - ('1854879820', 'That Cinderella Feeling (Scarlet)', 'https://images.isbndb.com/covers/98/20/9781854879820.jpg'), - ('0373168209', 'His-And-Hers Twins (Harlequin American Romance, No. 820)', 'https://images.isbndb.com/covers/82/00/9780373168200.jpg'), - ('0373290861', 'The Dreammaker (Harlequin Historical #486)', 'https://images.isbndb.com/covers/08/64/9780373290864.jpg'), - ('0743232933', 'Ruminations On College Life', 'https://images.isbndb.com/covers/29/37/9780743232937.jpg'), - ('0312305664', 'Let''s Go 2003: Britain & Ireland', 'https://images.isbndb.com/covers/56/66/9780312305666.jpg'), - ('1583486259', 'Imagined', 'https://images.isbndb.com/covers/62/52/9781583486252.jpg'), - ('0451160916', 'The Shining (Signet)', 'https://images.isbndb.com/covers/09/11/9780451160911.jpg'), - ('1551665077', 'Last Honest Woman (The O''hurleys)', 'https://images.isbndb.com/covers/50/78/9781551665078.jpg'), - ('0446607207', 'Tell Me Your Dreams', 'https://images.isbndb.com/covers/72/09/9780446607209.jpg'), - ('0373223587', 'The Renegade (Avenging Angels, Book 1) (Harlequin Intrigue Series #358)', 'https://images.isbndb.com/covers/35/89/9780373223589.jpg'), - ('0553581147', 'Lady Of Conquest', 'https://images.isbndb.com/covers/11/40/9780553581140.jpg'), - ('0553579231', 'The Legend Mackinnon', 'https://images.isbndb.com/covers/92/39/9780553579239.jpg'), - ('0440209412', 'Message From Nam', 'https://images.isbndb.com/covers/94/16/9780440209416.jpg'), - ('0553574310', 'Dream Stone', 'https://images.isbndb.com/covers/43/19/9780553574319.jpg'), - ('0060631317', 'Words For Your Wedding: The Wedding Service Book', 'https://images.isbndb.com/covers/13/14/9780060631314.jpg'), - ('0140375899', 'Over The Water', 'https://images.isbndb.com/covers/58/93/9780140375893.jpg'), - ('1885983212', 'Hotel Sarajevo', 'https://images.isbndb.com/covers/32/13/9781885983213.jpg'), - ('0380700670', 'Amelia Bedelia Goes Camping', 'https://images.isbndb.com/covers/06/77/9780380700677.jpg'), - ('0380725622', 'The Barn', 'https://images.isbndb.com/covers/56/25/9780380725625.jpg'), - ('0807510092', 'Caboose Mystery (Boxcar Children #11)', 'https://images.isbndb.com/covers/00/94/9780807510094.jpg'), - ('0842321950', 'Through The Flames (Left Behind: The Kids #3)', 'https://images.isbndb.com/covers/19/52/9780842321952.jpg'), - ('0440407125', 'Guts', 'https://images.isbndb.com/covers/71/26/9780440407126.jpg'), - ('0590312413', 'The Castaway', 'https://images.isbndb.com/covers/24/17/9780590312417.jpg'), - ('0141312424', 'My Side Of The Mountain', 'https://images.isbndb.com/covers/24/22/9780141312422.jpg'), - ('0816704058', 'The Tree House Detective Club (Easy To Read Mysteries)', 'https://images.isbndb.com/covers/40/57/9780816704057.jpg'), - ('0590481819', 'My Secret Valentine', 'https://images.isbndb.com/covers/18/16/9780590481816.jpg'), - ('0590228706', 'Dawn Schafer, Undercover Babysitter (Baby-Sitters Club Mysteries)', 'https://images.isbndb.com/covers/87/01/9780590228701.jpg'), - ('0439049989', 'Captain Underpants And The Perilous Plot Of Professor Poopypants', 'https://images.isbndb.com/covers/99/86/9780439049986.jpg'), - ('0590228773', 'Mary Anne And The Memory Garden (Baby-Sitters Club)', 'https://images.isbndb.com/covers/87/70/9780590228770.jpg'), - ('0439050006', 'Captain Underpants And The Wrath Of The Wicked Wedgie Woman', 'https://images.isbndb.com/covers/00/05/9780439050005.jpg'), - ('0671019376', 'The Great Escape (Upchuck And The Rotten Willy)', 'https://images.isbndb.com/covers/93/72/9780671019372.jpg'), - ('0590944770', 'The Berenstain Bear Scouts And The Run-amuck Robot (Berenstain Bear Scouts)', 'https://images.isbndb.com/covers/47/79/9780590944779.jpg'), - ('0871234408', 'Why Knock Rock? Is It Bad? Is It Good? Does It Really Matter?', 'https://images.isbndb.com/covers/44/07/9780871234407.jpg'), - ('0880296143', 'Haunted Heartland (Dorset Reprints Series)', 'https://images.isbndb.com/covers/61/44/9780880296144.jpg'), - ('0892741880', 'Jihad: The Holy War', 'https://images.isbndb.com/covers/18/85/9780892741885.jpg'), - ('0786864249', 'DON''T SWEAT THE SMALL STUFF AND IT''S ALL SMALL STUFF:Simple Ways To Keep The Little Things From Taking Over Your Life.', 'https://images.isbndb.com/covers/42/49/9780786864249.jpg'), - ('0449150011', 'Dead Duck (Sam And Hollis Mystery)', 'https://images.isbndb.com/covers/00/16/9780449150016.jpg'), - ('0842329250', 'Soul Harvest: The World Takes Sides (Left Behind No. 4)', 'https://images.isbndb.com/covers/92/55/9780842329255.jpg'), - ('0553102354', 'In Pursuit Of The Proper Sinner', 'https://images.isbndb.com/covers/23/52/9780553102352.jpg'), - ('0912111631', 'A Brief History Of Qi', 'https://images.isbndb.com/covers/16/36/9780912111636.jpg'), - ('0767903390', 'Chi Kung: The Way Of Healing', 'https://images.isbndb.com/covers/33/94/9780767903394.jpg'), - ('055334935X', 'Tao Te Ching', 'https://images.isbndb.com/covers/93/51/9780553349351.jpg'), - ('0060591706', 'Reino Del Dragon De Oro, El (Spanish Edition)', 'https://images.isbndb.com/covers/17/00/9780060591700.jpg'), - ('0679763384', 'La Sonrisa Etrusca (Spanish Edition)', 'https://images.isbndb.com/covers/33/83/9780679763383.jpg'), - ('1557042608', 'The Sense And Sensibility: Screenplay & Diaries : Bringing Jane Austen''s Novel To Film', 'https://images.isbndb.com/covers/26/06/9781557042606.jpg'), - ('0815410565', 'The Complete Bolivian Diaries Of Che Guevara, And Other Captured Documents', 'https://images.isbndb.com/covers/05/60/9780815410560.jpg'), - ('0060951311', 'Cuentos De Eva Luna', 'https://images.isbndb.com/covers/13/13/9780060951313.jpg'), - ('9682321557', 'Patas Arriba. La Escuela Del Mundo Al Reves', 'https://images.isbndb.com/covers/15/59/9789682321559.jpg'), - ('1878448900', 'Girl In Hyacinth Blue', 'https://images.isbndb.com/covers/89/03/9781878448903.jpg'), - ('155994806X', 'Alice In Wonderland And Through The Looking Glass Audio', 'https://images.isbndb.com/covers/80/67/9781559948067.jpg'), - ('9500723832', 'El Libro Negro De Las Marcas (Spanish Edition)', 'https://images.isbndb.com/covers/38/31/9789500723831.jpg'), - ('0198641583', 'The Oxford-Duden Pictorial Spanish-English Dictionary', 'https://images.isbndb.com/covers/15/82/9780198641582.jpg'), - ('0807281859', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/18/57/9780807281857.jpg'), - ('0140011749', 'THE BEST OF P.G. WOODHOUSE 6 VOLUME SET.: CARRY ON, JEEVES, LORD EMSWORTH AND OTHERS, VERY GOOD, JEEVES, THE LUCK OF THE BODKINS, THE INIMITABLE JEEVES, AND RIGHT HO, JEEVES.', 'https://images.isbndb.com/covers/17/46/9780140011746.jpg'), - ('9684322046', 'El Principe (Spanish Edition)', 'https://images.isbndb.com/covers/20/42/9789684322042.jpg'), - ('042509345X', 'Robot Dreams (Masterworks Of Science Fiction And Fantasy, No 5)', 'https://images.isbndb.com/covers/34/50/9780425093450.jpg'), - ('0743448782', 'Honor Lost: Love And Death In Modern-Day Jordan', 'https://images.isbndb.com/covers/87/89/9780743448789.jpg'), - ('0385471475', 'Child Of War, Woman Of Peace', 'https://images.isbndb.com/covers/14/73/9780385471473.jpg'), - ('0312983786', 'The Pillow Book Of Lady Wisteria (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/37/89/9780312983789.jpg'), - ('0525455205', 'Pooh And The Philosophers : In Which It Is Shown That All Of Western Philosophy Is Merely A Preamble To Winnie-The-Pooh', 'https://images.isbndb.com/covers/52/02/9780525455202.jpg'), - ('0747233667', 'A Bloody Field By Shrewsbury', 'https://images.isbndb.com/covers/36/64/9780747233664.jpg'), - ('0061091944', 'Stonehenge', 'https://images.isbndb.com/covers/19/40/9780061091940.jpg'), - ('0671003534', 'The Holland Suggestions: A Novel', 'https://images.isbndb.com/covers/35/31/9780671003531.jpg'), - ('0671003526', 'Deadline', 'https://images.isbndb.com/covers/35/24/9780671003524.jpg'), - ('0688134017', 'The Spellcoats (Dalemark Quartet, Book 3)', 'https://images.isbndb.com/covers/40/13/9780688134013.jpg'), - ('0688134009', 'Drowned Ammet (Dalemark Quartet)', 'https://images.isbndb.com/covers/40/06/9780688134006.jpg'), - ('0064473139', 'Cart And Cwidder (Dalemark Quartet, Vol. 1)', 'https://images.isbndb.com/covers/31/32/9780064473132.jpg'), - ('0553103032', 'Just An Ordinary Day', 'https://images.isbndb.com/covers/30/38/9780553103038.jpg'), - ('0553574418', 'Remake', 'https://images.isbndb.com/covers/44/18/9780553574418.jpg'), - ('037326237X', 'Caravaggio Books', 'https://images.isbndb.com/covers/23/73/9780373262373.jpg'), - ('0804116571', 'Malice In The Highlands (Erskine Powell Mysteries)', 'https://images.isbndb.com/covers/65/72/9780804116572.jpg'), - ('0449210529', 'More Tales Of The Black Widowers', 'https://images.isbndb.com/covers/05/29/9780449210529.jpg'), - ('0345441710', 'Dragonstar', 'https://images.isbndb.com/covers/17/13/9780345441713.jpg'), - ('0345414365', 'Merro Tree (Del Rey Discovery)', 'https://images.isbndb.com/covers/43/66/9780345414366.jpg'), - ('0441002617', 'The Shape-Changer''s Wife', 'https://images.isbndb.com/covers/26/10/9780441002610.jpg'), - ('015201800X', 'The Pearl Of The Soul Of The World: The Darkangel Trilogy, Volume III', 'https://images.isbndb.com/covers/80/09/9780152018009.jpg'), - ('0152018018', 'A Gathering Of Gargoyles: The Darkangel Trilogy, Volume II', 'https://images.isbndb.com/covers/80/16/9780152018016.jpg'), - ('0804107025', 'The Chymical Wedding', 'https://images.isbndb.com/covers/70/20/9780804107020.jpg'), - ('0142501433', 'The Hidden Land (The Secret Country Trilogy, Vol. 2)', 'https://images.isbndb.com/covers/14/36/9780142501436.jpg'), - ('0142501530', 'The Secret Country', 'https://images.isbndb.com/covers/15/35/9780142501535.jpg'), - ('0141311096', 'The Ear, The Eye And The Arm', 'https://images.isbndb.com/covers/10/98/9780141311098.jpg'), - ('0553568736', 'A Plague Of Angels', 'https://images.isbndb.com/covers/87/38/9780553568738.jpg'), - ('0792276868', 'Living With Cannibals And Other Womens Adventures', 'https://images.isbndb.com/covers/68/69/9780792276869.jpg'), - ('044144525X', 'Kings Blood Four (True Game, Vol. 1)', 'https://images.isbndb.com/covers/52/57/9780441445257.jpg'), - ('0441568572', 'Necromancer Nine', 'https://images.isbndb.com/covers/85/74/9780441568574.jpg'), - ('044190209X', 'Wizards Eleven', 'https://images.isbndb.com/covers/20/95/9780441902095.jpg'), - ('0375503641', 'Shutterbabe: Adventures In Love And War', 'https://images.isbndb.com/covers/36/41/9780375503641.jpg'), - ('0451171012', 'Mystery Cats (Signet)', 'https://images.isbndb.com/covers/10/16/9780451171016.jpg'), - ('0451456599', 'Mother Grimm', 'https://images.isbndb.com/covers/65/95/9780451456595.jpg'), - ('0394534433', 'The Vampire Lestat', 'https://images.isbndb.com/covers/44/35/9780394534435.jpg'), - ('0553573314', 'The Diamond Age', 'https://images.isbndb.com/covers/33/12/9780553573312.jpg'), - ('0553562614', 'Snow Crash', 'https://images.isbndb.com/covers/26/13/9780553562613.jpg'), - ('0553573861', 'Zodiac', 'https://images.isbndb.com/covers/38/62/9780553573862.jpg'), - ('0553095145', 'Shadow''s End', 'https://images.isbndb.com/covers/51/42/9780553095142.jpg'), - ('0802138578', 'Artemisia: A Novel', 'https://images.isbndb.com/covers/85/76/9780802138576.jpg'), - ('1579546137', 'Pilates For Every Body: Strengthen, Lengthen, And Tone-- With This Complete 3-Week Body Makeover', 'https://images.isbndb.com/covers/61/37/9781579546137.jpg'), - ('0152046976', 'Born Blue', 'https://images.isbndb.com/covers/69/72/9780152046972.jpg'), - ('0802131867', 'The Subterraneans', 'https://images.isbndb.com/covers/18/67/9780802131867.jpg'), - ('0786860219', 'In Search Of Stones: A Pilgrimage Of Faith, Reason, And Discovery', 'https://images.isbndb.com/covers/02/10/9780786860210.jpg'), - ('0452282438', 'In The Name Of Salome', 'https://images.isbndb.com/covers/24/38/9780452282438.jpg'), - ('0520222571', 'Pearl''s Secret: A Black Man''s Search For His White Family', 'https://images.isbndb.com/covers/25/71/9780520222571.jpg'), - ('0380723085', 'Durable Goods', 'https://images.isbndb.com/covers/30/89/9780380723089.jpg'), - ('0345410289', 'Oral History', 'https://images.isbndb.com/covers/02/83/9780345410283.jpg'), - ('0452280699', 'More Hot Chocolate For The Mystical Soul', 'https://images.isbndb.com/covers/06/94/9780452280694.jpg'), - ('0914913360', 'Confronting Silence: Selected Writings (Fallen Leaf Monographs On Contemporary Composers)', 'https://images.isbndb.com/covers/33/68/9780914913368.jpg'), - ('0679755624', 'Open Secrets: Stories', 'https://images.isbndb.com/covers/56/23/9780679755623.jpg'), - ('0679414614', 'How We Die: Reflections On Life''s Final Chapter', 'https://images.isbndb.com/covers/46/12/9780679414612.jpg'), - ('0060977191', 'White Rabbit', 'https://images.isbndb.com/covers/71/91/9780060977191.jpg'), - ('0345410424', 'Cakewalk', 'https://images.isbndb.com/covers/04/29/9780345410429.jpg'), - ('0679723692', 'Cathedral', 'https://images.isbndb.com/covers/36/91/9780679723691.jpg'), - ('0060956291', 'Clear Springs: A Family Story', 'https://images.isbndb.com/covers/62/95/9780060956295.jpg'), - ('0671748092', 'Sugar Cage', 'https://images.isbndb.com/covers/80/98/9780671748098.jpg'), - ('0609608738', 'Justice: Crimes, Trials, And Punishments', 'https://images.isbndb.com/covers/87/39/9780609608739.jpg'), - ('0805031871', 'Cry Me A River', 'https://images.isbndb.com/covers/18/74/9780805031874.jpg'), - ('1878067990', 'Nowle''s Passing (Forbes, Edith)', 'https://images.isbndb.com/covers/79/99/9781878067999.jpg'), - ('0345410394', 'Fancy Strut (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/03/99/9780345410399.jpg'), - ('0375500510', 'Black And Blue: A Novel', 'https://images.isbndb.com/covers/05/10/9780375500510.jpg'), - ('0425184757', 'The Drowning Season', 'https://images.isbndb.com/covers/47/52/9780425184752.jpg'), - ('0452283167', 'Glory Denied: The Saga Of Jim Thompson, America''s Longest-Held Prisoner Of War', 'https://images.isbndb.com/covers/31/69/9780452283169.jpg'), - ('1582340765', 'Sarah: A Novel', 'https://images.isbndb.com/covers/07/60/9781582340760.jpg'), - ('1571310169', 'The Empress Of One', 'https://images.isbndb.com/covers/01/63/9781571310163.jpg'), - ('0380820145', 'Friendship Cake (Hope Springs)', 'https://images.isbndb.com/covers/01/46/9780380820146.jpg'), - ('0385333293', 'A Bigamist''s Daughter', 'https://images.isbndb.com/covers/32/90/9780385333290.jpg'), - ('0060923202', 'The Enlightened Mind', 'https://images.isbndb.com/covers/32/04/9780060923204.jpg'), - ('0061054437', 'Waking The Moon', 'https://images.isbndb.com/covers/44/33/9780061054433.jpg'), - ('0312187343', 'The Lady Who Liked Clean Restrooms: The Chronicle Of One Of The Strangest Stories Ever To Be Rumoured About Around New York', 'https://images.isbndb.com/covers/73/47/9780312187347.jpg'), - ('0679416730', 'Sin', 'https://images.isbndb.com/covers/67/39/9780679416739.jpg'), - ('0380729768', 'Sister', 'https://images.isbndb.com/covers/97/60/9780380729760.jpg'), - ('0060926465', 'Guest Of A Sinner', 'https://images.isbndb.com/covers/64/65/9780060926465.jpg'), - ('0316691178', 'Exiting Nirvana: A Daughter''s Life With Autism', 'https://images.isbndb.com/covers/11/78/9780316691178.jpg'), - ('0871138328', 'Death At The Priory: Sex, Love, And Murder In Victorian England', 'https://images.isbndb.com/covers/83/23/9780871138323.jpg'), - ('1565122437', 'Tea: A Novel', 'https://images.isbndb.com/covers/24/37/9781565122437.jpg'), - ('0345386574', 'A Woman''s Worth', 'https://images.isbndb.com/covers/65/71/9780345386571.jpg'), - ('0156907399', 'To The Lighthouse', 'https://images.isbndb.com/covers/73/92/9780156907392.jpg'), - ('0395908728', 'Innocence', 'https://images.isbndb.com/covers/87/23/9780395908723.jpg'), - ('0066209463', 'Middle Age: A Romance', 'https://images.isbndb.com/covers/94/63/9780066209463.jpg'), - ('0802136265', 'Passing On', 'https://images.isbndb.com/covers/62/68/9780802136268.jpg'), - ('1559704640', 'A Short History Of Decay', 'https://images.isbndb.com/covers/46/49/9781559704649.jpg'), - ('0743227840', 'The Ice Beneath You: A Novel', 'https://images.isbndb.com/covers/78/41/9780743227841.jpg'), - ('0452271045', 'Pleasure In The Word: Writings By Latin American Women', 'https://images.isbndb.com/covers/10/43/9780452271043.jpg'), - ('0684867826', 'Blue Calhoun: A Novel', 'https://images.isbndb.com/covers/78/23/9780684867823.jpg'), - ('0060984333', 'American Pie: A Novel', 'https://images.isbndb.com/covers/43/35/9780060984335.jpg'), - ('0679723056', 'What We Talk About When We Talk About Love: Stories', 'https://images.isbndb.com/covers/30/59/9780679723059.jpg'), - ('0345389247', 'Crazy In Alabama', 'https://images.isbndb.com/covers/92/44/9780345389244.jpg'), - ('0375503315', 'Brothel: Mustang Ranch And Its Women', 'https://images.isbndb.com/covers/33/13/9780375503313.jpg'), - ('0393956539', 'The Scarlet Letter: An Authoritative Text Essays In Criticism And Scholarship (Norton Critical Editions)', 'https://images.isbndb.com/covers/65/35/9780393956535.jpg'), - ('0395977711', 'Homestead', 'https://images.isbndb.com/covers/77/12/9780395977712.jpg'), - ('0380728826', 'Recipes From The Dump', 'https://images.isbndb.com/covers/88/24/9780380728824.jpg'), - ('0452282098', 'City Of God', 'https://images.isbndb.com/covers/20/94/9780452282094.jpg'), - ('096521365X', 'Lo''s Diary', 'https://images.isbndb.com/covers/36/53/9780965213653.jpg'), - ('0380732149', 'On The Occasion Of My Last Afternoon', 'https://images.isbndb.com/covers/21/42/9780380732142.jpg'), - ('0312283474', 'So Far Back: A Novel', 'https://images.isbndb.com/covers/34/76/9780312283476.jpg'), - ('0385314256', 'When Elephants Weep: The Emotional Lives Of Animals', 'https://images.isbndb.com/covers/42/51/9780385314251.jpg'), - ('0394563158', 'The Pigeon', 'https://images.isbndb.com/covers/31/52/9780394563152.jpg'), - ('0786869011', 'My Forbidden Face: Growing Up Under The Taliban: A Young Woman''s Story', 'https://images.isbndb.com/covers/90/15/9780786869015.jpg'), - ('1573221511', 'Black Girl In Paris', 'https://images.isbndb.com/covers/15/11/9781573221511.jpg'), - ('0812968344', 'A Garden Of Earthly Delights (20th Century Rediscoveries Series)', 'https://images.isbndb.com/covers/83/47/9780812968347.jpg'), - ('0312243111', 'Love In The Ruins', 'https://images.isbndb.com/covers/31/11/9780312243111.jpg'), - ('0375726012', 'The Whore''s Child: Stories', 'https://images.isbndb.com/covers/60/19/9780375726019.jpg'), - ('0812968131', 'Ordinary Life: Stories', 'https://images.isbndb.com/covers/81/32/9780812968132.jpg'), - ('0345423097', 'Joy School (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/30/92/9780345423092.jpg'), - ('0743411358', 'True To Form : A Novel', 'https://images.isbndb.com/covers/13/56/9780743411356.jpg'), - ('0425176487', 'The Pull Of The Moon', 'https://images.isbndb.com/covers/64/81/9780425176481.jpg'), - ('0671441981', 'Ghost Story', 'https://images.isbndb.com/covers/19/82/9780671441982.jpg'), - ('0671673947', 'Seven Stairs: An Adventure Of The Heart (Touchstone Books)', 'https://images.isbndb.com/covers/39/49/9780671673949.jpg'), - ('0440507723', 'The Art Of Family: Rituals, Imagination, And Everyday Spirituality', 'https://images.isbndb.com/covers/77/27/9780440507727.jpg'), - ('0963634291', 'The Thru-hiker''s Handbook (Georgia To Maine 2001): #1 Guide For Long-Distance Hikes On The Appalachian Trail', 'https://images.isbndb.com/covers/42/90/9780963634290.jpg'), - ('0897322096', 'The New Appalachian Trail (Appalachian Hiker)', 'https://images.isbndb.com/covers/20/96/9780897322096.jpg'), - ('0812548051', 'Wizard''s First Rule (Sword Of Truth, Book 1)', 'https://images.isbndb.com/covers/80/51/9780812548051.jpg'), - ('0822011298', 'CliffsNotes On Plato''s The Republic', 'https://images.isbndb.com/covers/12/93/9780822011293.jpg'), - ('0140440488', 'The Republic (Penguin Classics)', 'https://images.isbndb.com/covers/04/85/9780140440485.jpg'), - ('0449215261', 'Ugly American', 'https://images.isbndb.com/covers/52/65/9780449215265.jpg'), - ('0786886471', 'Tin Cup Dreams: A Long Shot Makes It On The PGA Tour', 'https://images.isbndb.com/covers/64/70/9780786886470.jpg'), - ('055357325X', 'The Seventh Gate: A Death Gate Novel, Volume 7', 'https://images.isbndb.com/covers/32/51/9780553573251.jpg'), - ('0553290983', 'Elven Star (The Death Gate Cycle, Volume 2)', 'https://images.isbndb.com/covers/09/81/9780553290981.jpg'), - ('0553295411', 'Fire Sea (The Death Gate Cycle, Vol. 3)', 'https://images.isbndb.com/covers/54/12/9780553295412.jpg'), - ('0553561405', 'Serpent Mage (The Death Gate Cycle, Vol 4)', 'https://images.isbndb.com/covers/14/01/9780553561401.jpg'), - ('0006548180', 'A Cat Among The Pigeons', 'https://images.isbndb.com/covers/81/88/9780006548188.jpg'), - ('1857027051', 'Larrys Party', 'https://images.isbndb.com/covers/70/51/9781857027051.jpg'), - ('1857988027', 'Hope (Gollancz Sf S.)', 'https://images.isbndb.com/covers/80/24/9781857988024.jpg'), - ('0241100100', 'In His Image: Cloning Of A Man', 'https://images.isbndb.com/covers/01/03/9780241100103.jpg'), - ('0552995649', 'Just For The Summer', 'https://images.isbndb.com/covers/56/41/9780552995641.jpg'), - ('1840672013', 'Daughter Of The River', 'https://images.isbndb.com/covers/20/15/9781840672015.jpg'), - ('0575048360', 'Eric (Discworld Novels)', 'https://images.isbndb.com/covers/83/62/9780575048362.jpg'), - ('0753813823', 'Congress Of Rough Riders', 'https://images.isbndb.com/covers/38/29/9780753813829.jpg'), - ('0330354566', 'Love Like Hate Adore', 'https://images.isbndb.com/covers/45/61/9780330354561.jpg'), - ('0349115087', 'A Very English Agent', 'https://images.isbndb.com/covers/50/85/9780349115085.jpg'), - ('0146001788', 'The Judgement And In The Penal Colony (Penguin 60s Classics)', 'https://images.isbndb.com/covers/17/89/9780146001789.jpg'), - ('1857995457', 'High Waving Heather (Phoenix 60p Paperbacks)', 'https://images.isbndb.com/covers/54/59/9781857995459.jpg'), - ('0553288660', 'Pariah', 'https://images.isbndb.com/covers/86/67/9780553288667.jpg'), - ('0694520799', 'Chasing Down The Dawn', 'https://images.isbndb.com/covers/07/94/9780694520794.jpg'), - ('0310342023', 'Armageddon, Oil And The Middle East Crisis', 'https://images.isbndb.com/covers/20/21/9780310342021.jpg'), - ('0688143687', 'Serpent''s Tooth: A Peter Decker/rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/36/88/9780688143688.jpg'), - ('0394722191', 'Ake: The Years Of Childhood', 'https://images.isbndb.com/covers/21/91/9780394722191.jpg'), - ('0805001182', 'The Lynchers', 'https://images.isbndb.com/covers/11/81/9780805001181.jpg'), - ('0140006095', 'Winesburg, Ohio', 'https://images.isbndb.com/covers/60/94/9780140006094.jpg'), - ('006019345X', 'The Divine Secrets Of The Ya Ya Sisterhood', 'https://images.isbndb.com/covers/34/54/9780060193454.jpg'), - ('0394501691', 'Broca''s Brain: Reflections On The Romance Of Science', 'https://images.isbndb.com/covers/16/97/9780394501697.jpg'), - ('0441731538', 'Robot Dreams Tr', 'https://images.isbndb.com/covers/15/34/9780441731534.jpg'), - ('0394721683', 'Jakob Von Gunten: A Novel', 'https://images.isbndb.com/covers/16/82/9780394721682.jpg'), - ('0553210424', 'Metamorphosis', 'https://images.isbndb.com/covers/04/22/9780553210422.jpg'), - ('0140157913', 'It Was A Dark And Stormy Night: The Final Conflict: Yet More Of The Best (?) From The Bulwer-Lytton Fiction Contest (Bulwer-Lytton Contest)', 'https://images.isbndb.com/covers/79/18/9780140157918.jpg'), - ('0060912227', 'Jacques & His Master', 'https://images.isbndb.com/covers/22/22/9780060912222.jpg'), - ('0156997789', 'You Can''t Keep A Good Woman Down - Stories', 'https://images.isbndb.com/covers/77/82/9780156997782.jpg'), - ('1551669196', 'Twice Burned (Mira Romantic Suspense)', 'https://images.isbndb.com/covers/91/99/9781551669199.jpg'), - ('0826404286', 'Winners And Losers: The 1988 Race For The Presidency-One Candidate''s Perspective', 'https://images.isbndb.com/covers/42/82/9780826404282.jpg'), - ('0140096922', 'The Joke', 'https://images.isbndb.com/covers/69/27/9780140096927.jpg'), - ('0140064702', 'Life Is Elsewhere', 'https://images.isbndb.com/covers/47/04/9780140064704.jpg'), - ('0140088393', 'Son Of It Was A Dark And Stormy Night (Bulwer-Lytton Contest)', 'https://images.isbndb.com/covers/83/97/9780140088397.jpg'), - ('014010304X', 'Bride Of Dark And Stormy: Yet More Of The Best (?) From The Bulwer-Lytton Contest', 'https://images.isbndb.com/covers/30/45/9780140103045.jpg'), - ('0553203487', 'Franny And Zooey', 'https://images.isbndb.com/covers/34/86/9780553203486.jpg'), - ('0553123432', 'Snow Leopard', 'https://images.isbndb.com/covers/34/32/9780553123432.jpg'), - ('0140059245', 'The Book Of Laughter And Forgetting (Writers From The Other Europe)', 'https://images.isbndb.com/covers/92/43/9780140059243.jpg'), - ('0679724222', 'Holidays In Hell', 'https://images.isbndb.com/covers/42/23/9780679724223.jpg'), - ('0156970902', 'Wind, Sand And Stars', 'https://images.isbndb.com/covers/09/07/9780156970907.jpg'), - ('067973502X', 'Republic Of Fear: The Inside Story Of Saddam''s Iraq', 'https://images.isbndb.com/covers/50/21/9780679735021.jpg'), - ('0345335864', 'Christian''s Secret Of A Happy Life', 'https://images.isbndb.com/covers/58/69/9780345335869.jpg'), - ('0452011116', 'Breaking Down The Wall Of Silence: The Liberating Experience Of Facing Painful Truth', 'https://images.isbndb.com/covers/11/13/9780452011113.jpg'), - ('0385473079', 'The Return Of The Prodigal Son: A Story Of Homecoming', 'https://images.isbndb.com/covers/30/71/9780385473071.jpg'), - ('0345292340', 'Fahrenheit 451', 'https://images.isbndb.com/covers/23/46/9780345292346.jpg'), - ('0380003333', 'The Clown', 'https://images.isbndb.com/covers/33/34/9780380003334.jpg'), - ('080410378X', 'Love In The Ruins', 'https://images.isbndb.com/covers/37/87/9780804103787.jpg'), - ('0871563223', 'Track Of The Grizzly', 'https://images.isbndb.com/covers/32/24/9780871563224.jpg'), - ('1557783446', 'Stealing From America: A History Of Corruption From Jamestown To Reagan', 'https://images.isbndb.com/covers/34/48/9781557783448.jpg'), - ('0679442405', 'Traveling Mercies: Some Thoughts On Faith', 'https://images.isbndb.com/covers/24/00/9780679442400.jpg'), - ('0671250841', 'KARMA COLA P (A Touchstone Book)', 'https://images.isbndb.com/covers/08/43/9780671250843.jpg'), - ('3442723183', 'Längengrad', 'https://images.isbndb.com/covers/31/88/9783442723188.jpg'), - ('0373078056', 'Man To Trust (Trinity Street West) (Silhouette Intimate Moments, No 805)', 'https://images.isbndb.com/covers/80/59/9780373078059.jpg'), - ('1551660016', 'Devil''S Own (Astray & Devil)', 'https://images.isbndb.com/covers/00/11/9781551660011.jpg'), - ('0821746219', 'Bright Star''s Promise (Lovegram Historical Romances)', 'https://images.isbndb.com/covers/62/19/9780821746219.jpg'), - ('0373169264', 'A Baby For Lord Roderick (Royal Flash) (Harlequin American Romance)', 'https://images.isbndb.com/covers/92/69/9780373169269.jpg'), - ('0373169841', 'Montana Twins (Harlequin American Romance, No 984)', 'https://images.isbndb.com/covers/98/49/9780373169849.jpg'), - ('0821758969', 'A Mother''s Heart', 'https://images.isbndb.com/covers/89/60/9780821758960.jpg'), - ('084394272X', 'Purity (Dangerous Virtues Series)', 'https://images.isbndb.com/covers/27/29/9780843942729.jpg'), - ('0373222823', 'Dominoes (Harlequin Intrigue)', 'https://images.isbndb.com/covers/28/27/9780373222827.jpg'), - ('0843948884', 'Fallen (Leisure Historical Romance)', 'https://images.isbndb.com/covers/88/82/9780843948882.jpg'), - ('0373501757', 'Man With A Past', 'https://images.isbndb.com/covers/17/55/9780373501755.jpg'), - ('0380818078', 'When It''s Perfect (Avon Romantic Treasures)', 'https://images.isbndb.com/covers/80/75/9780380818075.jpg'), - ('0373031939', 'Wrong Kind Of Man (Harlequin Romance)', 'https://images.isbndb.com/covers/19/31/9780373031931.jpg'), - ('037310507X', 'South Of Capricorn (Harlequin Presents Series, No. 507)', 'https://images.isbndb.com/covers/50/76/9780373105076.jpg'), - ('0373482949', 'Honor Bound', 'https://images.isbndb.com/covers/29/48/9780373482948.jpg'), - ('0671469134', 'Sweet Rush Of April', 'https://images.isbndb.com/covers/91/39/9780671469139.jpg'), - ('0373288816', 'Magician''S Quest (Harlequin Historical)', 'https://images.isbndb.com/covers/88/16/9780373288816.jpg'), - ('037365054X', 'Rich , Rugged...Ruthless (Montana Mavericks)', 'https://images.isbndb.com/covers/05/45/9780373650545.jpg'), - ('0373706898', 'The Man From Blue River : Home On The Ranch (Harlequin Superromance No. 689)', 'https://images.isbndb.com/covers/68/91/9780373706891.jpg'), - ('0373885121', 'Someone Waiting (Western Lovers: Hitched In Haste #12)', 'https://images.isbndb.com/covers/51/21/9780373885121.jpg'), - ('0373098855', 'Vow To Love (Vows) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/88/59/9780373098859.jpg'), - ('0373076223', 'An Irresistible Man (Silhouette Intimate Moments, No 622)', 'https://images.isbndb.com/covers/62/22/9780373076222.jpg'), - ('0373821514', 'Mother Knows Best (Family Continuity Program Ser., No. 3)', 'https://images.isbndb.com/covers/15/18/9780373821518.jpg'), - ('0373288093', 'Honeyed Lies.. (Harlequin Historical)', 'https://images.isbndb.com/covers/80/90/9780373288090.jpg'), - ('155166531X', 'Tiger Prince', 'https://images.isbndb.com/covers/53/13/9781551665313.jpg'), - ('0373240899', 'The Wrong Man... The Right Time (Silhouette Special Edition)', 'https://images.isbndb.com/covers/08/90/9780373240890.jpg'), - ('0380815346', 'NO MARRIAGE CONVENIENCE MM (Avon Romantic Treasure)', 'https://images.isbndb.com/covers/53/40/9780380815340.jpg'), - ('037321703X', 'Big, Bad Wolfe, At The Altar! Big, Bad Wolfe, At The Altar! (Big, Bad Wolfe Omibus)', 'https://images.isbndb.com/covers/70/38/9780373217038.jpg'), - ('0446360732', 'A Treasure Worth Seeking', 'https://images.isbndb.com/covers/07/39/9780446360739.jpg'), - ('0373093829', 'In The Name Of Love (Silhouette Special Edition)', 'https://images.isbndb.com/covers/38/23/9780373093823.jpg'), - ('0373096828', 'Yours, Mine And ...Ours (Silhouette Special Edition)', 'https://images.isbndb.com/covers/68/24/9780373096824.jpg'), - ('0373099150', 'Bachelor Dad (Silhouette Special Edition)', 'https://images.isbndb.com/covers/91/53/9780373099153.jpg'), - ('0821718398', 'Defiant Mistress', 'https://images.isbndb.com/covers/83/91/9780821718391.jpg'), - ('0843946466', 'Hawk', 'https://images.isbndb.com/covers/64/68/9780843946468.jpg'), - ('0373168721', 'Have Baby, Need Beau (A Walk Down The Aisle: Wedding Celebration #4) (Harlequin American Romance, No 872)', 'https://images.isbndb.com/covers/87/29/9780373168729.jpg'), - ('0373164386', 'Father Knows Best (Harlequin American Romance, No. 438)', 'https://images.isbndb.com/covers/43/87/9780373164387.jpg'), - ('0373451903', 'The Last Frontier (Men Made In America: South Carolina #40)', 'https://images.isbndb.com/covers/19/06/9780373451906.jpg'), - ('0373169035', 'Her Passionate Pirate (Harlequin American Romance)', 'https://images.isbndb.com/covers/90/30/9780373169030.jpg'), - ('0743436466', 'The Nanotech War (Star Trek Voyager)', 'https://images.isbndb.com/covers/64/65/9780743436465.jpg'), - ('067178577X', 'Thin Air (Star Trek: New Earth, Book 5)', 'https://images.isbndb.com/covers/57/72/9780671785772.jpg'), - ('0373168411', 'The Bride Said, Finally! The Lockharts Of Texas (Harlequin American Romance, No. 841)', 'https://images.isbndb.com/covers/84/15/9780373168415.jpg'), - ('0553567683', 'Adam''s Fall', 'https://images.isbndb.com/covers/76/87/9780553567687.jpg'), - ('0446603090', 'Bittersweet Rain', 'https://images.isbndb.com/covers/30/96/9780446603096.jpg'), - ('0373099894', 'This Child Is Mine (Silhouette Special Edition)', 'https://images.isbndb.com/covers/98/94/9780373099894.jpg'), - ('0380774542', 'The Lady And The Outlaw', 'https://images.isbndb.com/covers/45/48/9780380774548.jpg'), - ('0061083402', 'The Bandit''s Lady (Harper Monogram)', 'https://images.isbndb.com/covers/34/02/9780061083402.jpg'), - ('0373451555', 'Deceptions (Men Made In America: California #5)', 'https://images.isbndb.com/covers/15/55/9780373451555.jpg'), - ('0373077289', 'Leader Of The Pack (Trinity Street West) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/72/81/9780373077281.jpg'), - ('0373168683', 'Montana Mail-Order Wife (Identity Swap) (Harlequin American Romance, No 868)', 'https://images.isbndb.com/covers/86/82/9780373168682.jpg'), - ('0373169493', 'Their Instant Baby: The Deveraux Legacy (Harlequin American Romance, No 949)', 'https://images.isbndb.com/covers/94/98/9780373169498.jpg'), - ('0373451806', 'Moments Harsh, Moments Gentle (Men Made In America: New Jersey #30)', 'https://images.isbndb.com/covers/18/07/9780373451807.jpg'), - ('0373168748', 'Cowboy With A Secret (Harlequin American Romance)', 'https://images.isbndb.com/covers/87/43/9780373168743.jpg'), - ('0373225202', 'Secret Lover (Harlequin Intrigue Series #520)', 'https://images.isbndb.com/covers/52/00/9780373225200.jpg'), - ('0373168527', 'The Marriage Portrait (Harlequin American Romance, No 852)', 'https://images.isbndb.com/covers/85/21/9780373168521.jpg'), - ('0373705247', 'String Of Miracles (Harlequin Super Romance)', 'https://images.isbndb.com/covers/52/45/9780373705245.jpg'), - ('0373118775', 'Final Proposal (The Marriage Maker) (Harlequin Presents)', 'https://images.isbndb.com/covers/87/79/9780373118779.jpg'), - ('0373168632', 'The Pregnant Ms. Potter (Harlequin American Romance, No 863)', 'https://images.isbndb.com/covers/86/37/9780373168637.jpg'), - ('0373169779', 'Frisco Joe''s Fiancee: Cowboys By The Dozen! (Harlequin American Romance, No 977)', 'https://images.isbndb.com/covers/97/71/9780373169771.jpg'), - ('055329783X', 'A Whole New Light', 'https://images.isbndb.com/covers/78/36/9780553297836.jpg'), - ('0373169760', 'Inherited: One Baby! (Harlequin American Romance, No 976)', 'https://images.isbndb.com/covers/97/64/9780373169764.jpg'), - ('0373166958', 'Quick Find A Ring (Three Weddings & A Hurricane) (Harlequin American Romance)', 'https://images.isbndb.com/covers/69/54/9780373166954.jpg'), - ('0671835645', 'Tanya', 'https://images.isbndb.com/covers/56/44/9780671835644.jpg'), - ('0373168675', 'Rent A Millionaire Groom (2001 Ways To Wed) (Harlequin American Romance)', 'https://images.isbndb.com/covers/86/75/9780373168675.jpg'), - ('0373451547', 'Another Kind Of Love (Men Made In America: Arkansas #4)', 'https://images.isbndb.com/covers/15/48/9780373451548.jpg'), - ('0373169620', 'Diagnosis: Expecting Boss''s Baby: The Babies Of Doctors Circle (Harlequin American Romance, No 962)', 'https://images.isbndb.com/covers/96/27/9780373169627.jpg'), - ('037316596X', 'Counterfeit Husband (Harlequin American Romance)', 'https://images.isbndb.com/covers/59/64/9780373165964.jpg'), - ('0373169736', 'Taking Over The Tycoon: The Deveraux Legacy (Harlequin American Romance, No 973)', 'https://images.isbndb.com/covers/97/33/9780373169733.jpg'), - ('037316954X', 'Commander''s Little Surprise: Grooms In Uniform (Harlequin American Romance, No 954)', 'https://images.isbndb.com/covers/95/42/9780373169542.jpg'), - ('0373650396', 'In The Arms Of A Hero (The Fortunes Of Texas)', 'https://images.isbndb.com/covers/03/92/9780373650392.jpg'), - ('0441023142', 'A Night In The Netherhells', 'https://images.isbndb.com/covers/31/41/9780441023141.jpg'), - ('0373257813', 'Manhunting In Miami (Manhunting ...) (Temptation)', 'https://images.isbndb.com/covers/78/12/9780373257812.jpg'), - ('0373201575', 'Sons Of Texas: Cowboys And Wedding Bells (By Request) (Harlequin By Request: Sons Of Texas)', 'https://images.isbndb.com/covers/15/70/9780373201570.jpg'), - ('0373030932', 'Master Of Glen Crannach (Harlequin Romance)', 'https://images.isbndb.com/covers/09/34/9780373030934.jpg'), - ('0451180143', 'A Regency Christmas VII', 'https://images.isbndb.com/covers/01/48/9780451180148.jpg'), - ('0373160011', 'Tomorrow''s Promise (Harlequin American Romance, #1)', 'https://images.isbndb.com/covers/00/13/9780373160013.jpg'), - ('0373898347', 'Lord Of The High Lonesome', 'https://images.isbndb.com/covers/83/43/9780373898343.jpg'), - ('0373201427', 'A Family Christmas', 'https://images.isbndb.com/covers/14/26/9780373201426.jpg'), - ('0373115113', 'Dark Heritage (Harlequin Presents)', 'https://images.isbndb.com/covers/51/12/9780373115112.jpg'), - ('037316968X', 'High-Tide Bride (Harlequin American Romance, No 968)', 'https://images.isbndb.com/covers/96/89/9780373169689.jpg'), - ('0373169531', 'Jackpot Baby: Millionaire, Montana (Harlequin American Romance, No 953)', 'https://images.isbndb.com/covers/95/35/9780373169535.jpg'), - ('0373168705', 'The Virgin Bride Said, "Wow!" (The Lockharts Of Texas) (Harlequin American Romance # 870)', 'https://images.isbndb.com/covers/87/05/9780373168705.jpg'), - ('0373169868', 'Ranger''s Wild Woman (Harlequin American Romance, No. 986)(Cowboys By The Dozen)', 'https://images.isbndb.com/covers/98/63/9780373169863.jpg'), - ('0671519077', 'INDIGO FIRE', 'https://images.isbndb.com/covers/90/70/9780671519070.jpg'), - ('0373108400', 'Fantasy (Harlequin Presents)', 'https://images.isbndb.com/covers/84/04/9780373108404.jpg'), - ('037316985X', 'Cowboy Lessons (Harlequin American Romance)', 'https://images.isbndb.com/covers/98/56/9780373169856.jpg'), - ('0373289871', 'Knights Of Christmas (Harlequin Historicals, No 387)', 'https://images.isbndb.com/covers/98/75/9780373289875.jpg'), - ('1878702823', 'Call Back Our Yesterdays', 'https://images.isbndb.com/covers/28/21/9781878702821.jpg'), - ('0373099169', 'Interrupted Marriage (Silhouette Special Edition)', 'https://images.isbndb.com/covers/91/60/9780373099160.jpg'), - ('0515087998', 'Her Man Of Affairs', 'https://images.isbndb.com/covers/79/94/9780515087994.jpg'), - ('0553220284', 'A Whole New Light', 'https://images.isbndb.com/covers/02/85/9780553220285.jpg'), - ('0373253184', 'Fulfillment', 'https://images.isbndb.com/covers/31/80/9780373253180.jpg'), - ('0373169566', 'Under Alaskan Skies (Harlequin American Romance, No 956)', 'https://images.isbndb.com/covers/95/66/9780373169566.jpg'), - ('0373290012', 'By King''S Decree (Harlequin Historical Romance)', 'https://images.isbndb.com/covers/00/17/9780373290017.jpg'), - ('0671535706', 'Beyond The Birds And The Bees', 'https://images.isbndb.com/covers/57/04/9780671535704.jpg'), - ('0373290438', 'Pride Of Lions (Harlequin Historical)', 'https://images.isbndb.com/covers/04/37/9780373290437.jpg'), - ('0061093343', 'Fault Lines', 'https://images.isbndb.com/covers/33/40/9780061093340.jpg'), - ('0373706871', 'The Cupid Chronicles (The Camerons Of Colorado, Book 3) (Harlequin Superromance, No 687)', 'https://images.isbndb.com/covers/68/77/9780373706877.jpg'), - ('0373106734', 'Caribbean Confusion', 'https://images.isbndb.com/covers/67/38/9780373106738.jpg'), - ('0373898339', 'That Carolina Summer (Americana, North Carolina #33)', 'https://images.isbndb.com/covers/83/36/9780373898336.jpg'), - ('0373169361', 'The Rich Girl Goes Wild (Harlequin American Romance, No 936)', 'https://images.isbndb.com/covers/93/68/9780373169368.jpg'), - ('0373169329', 'Stranded At Cupid''s Hideaway (Harlequin American Romance, No 932)', 'https://images.isbndb.com/covers/93/20/9780373169320.jpg'), - ('0373169191', 'The Blacksheep''s Arranged Marriage (Billion-Dollar Braddocks) (Harlequin American Romance)', 'https://images.isbndb.com/covers/91/91/9780373169191.jpg'), - ('0821767720', 'Valentine Rogues (Zebra Regency Romance)', 'https://images.isbndb.com/covers/77/26/9780821767726.jpg'), - ('0373025920', 'No Room In His Life (Harlequin Romance)', 'https://images.isbndb.com/covers/59/23/9780373025923.jpg'), - ('0373072422', 'More Than A Miracle (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/24/22/9780373072422.jpg'), - ('0440224454', 'The Pink Flamingo Murders', 'https://images.isbndb.com/covers/44/57/9780440224457.jpg'), - ('0312956762', 'Die Hard: With A Vengeance - A Novel', 'https://images.isbndb.com/covers/67/69/9780312956769.jpg'), - ('0373288646', 'Pearl Beyond Price (Harlequin Historical)', 'https://images.isbndb.com/covers/86/49/9780373288649.jpg'), - ('0373076746', 'Morning Side Of Dawn (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/67/41/9780373076741.jpg'), - ('037370643X', 'Every Move You Make : 4 Strong Men (Harlequin Superromance No. 643)', 'https://images.isbndb.com/covers/64/33/9780373706433.jpg'), - ('0373241437', 'Cop And The Cradle (Switched At Birth) (Harlequin Special Edition)', 'https://images.isbndb.com/covers/14/39/9780373241439.jpg'), - ('0373074808', 'Diamond Willow (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/48/08/9780373074808.jpg'), - ('0373765053', 'Billionaire Boss (Matched In Montana)', 'https://images.isbndb.com/covers/50/58/9780373765058.jpg'), - ('0061042331', 'Gemstone', 'https://images.isbndb.com/covers/23/31/9780061042331.jpg'), - ('0373093918', 'Some Warm Hunger (Silhouette Special Edition)', 'https://images.isbndb.com/covers/39/15/9780373093915.jpg'), - ('0786000139', 'Across Forever', 'https://images.isbndb.com/covers/01/35/9780786000135.jpg'), - ('0373114931', 'Dance For A Stranger (Harlequin Presents)', 'https://images.isbndb.com/covers/49/31/9780373114931.jpg'), - ('0440211352', 'Seduced', 'https://images.isbndb.com/covers/13/58/9780440211358.jpg'), - ('0425105156', 'Accent On Desire (Second Chance At Love)', 'https://images.isbndb.com/covers/51/53/9780425105153.jpg'), - ('0373074492', 'Conard County: Exile''s End ( Silhouette Intimate Moments #449)', 'https://images.isbndb.com/covers/44/95/9780373074495.jpg'), - ('0449223515', 'Lady Whilton''s Wedding', 'https://images.isbndb.com/covers/35/12/9780449223512.jpg'), - ('0886778212', 'Mob Magic', 'https://images.isbndb.com/covers/82/17/9780886778217.jpg'), - ('0373024665', 'Dark Enigma (Harlequin Romance #2466)', 'https://images.isbndb.com/covers/46/67/9780373024667.jpg'), - ('0373650159', 'Nine Months (Harlequin 36 Hours, No 10)', 'https://images.isbndb.com/covers/01/56/9780373650156.jpg'), - ('0671775235', 'The Valiant (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/52/30/9780671775230.jpg'), - ('0553279335', 'Star Trek The New Voyages 2 (Star Trek)', 'https://images.isbndb.com/covers/93/37/9780553279337.jpg'), - ('0425058247', 'Memory Of Lions/a', 'https://images.isbndb.com/covers/82/44/9780425058244.jpg'), - ('037329011X', 'Lion''S Lady (The Sutherland Series) (Historical)', 'https://images.isbndb.com/covers/01/16/9780373290116.jpg'), - ('055322039X', 'Gambling Lady (Dreamweavers)', 'https://images.isbndb.com/covers/03/91/9780553220391.jpg'), - ('0373704070', 'Streets Of Fire (Superromance)', 'https://images.isbndb.com/covers/40/71/9780373704071.jpg'), - ('0373097840', 'When Somebody Needs You (Silhouette Special Edition)', 'https://images.isbndb.com/covers/78/45/9780373097845.jpg'), - ('037319692X', 'Most Eligible Doctor (Silhouette Romance)', 'https://images.isbndb.com/covers/69/20/9780373196920.jpg'), - ('0373241224', 'Seven Reasons Why (Harlequin Special Edition)', 'https://images.isbndb.com/covers/12/24/9780373241224.jpg'), - ('0373291175', 'Bandera''s Bride (Harlequin Historicals, No 517)', 'https://images.isbndb.com/covers/11/75/9780373291175.jpg'), - ('0449232131', 'The Queen''s Confession', 'https://images.isbndb.com/covers/21/32/9780449232132.jpg'), - ('0449129047', 'Walk In Beauty', 'https://images.isbndb.com/covers/90/43/9780449129043.jpg'), - ('0671019147', 'Republic (Star Trek: My Brother''s Keeper, Book 1)', 'https://images.isbndb.com/covers/91/43/9780671019143.jpg'), - ('0373501749', 'Baby Wanted (Montana Mavericks #10)', 'https://images.isbndb.com/covers/17/48/9780373501748.jpg'), - ('0373079184', 'Mother Of His Child (Conveniently Wed) (Silhouette Intimate Moments No. 918)', 'https://images.isbndb.com/covers/91/86/9780373079186.jpg'), - ('037310667X', 'Forgotten Passion (Harlequin Presents # 667)', 'https://images.isbndb.com/covers/66/77/9780373106677.jpg'), - ('0373292155', 'The Texan (Harlequin Historical)', 'https://images.isbndb.com/covers/21/58/9780373292158.jpg'), - ('0373116373', 'Corsican Gambit (Harlequin Presents)', 'https://images.isbndb.com/covers/63/79/9780373116379.jpg'), - ('0373288050', 'Raven And The Swan (Harlequin Historical)', 'https://images.isbndb.com/covers/80/52/9780373288052.jpg'), - ('0345435419', 'Shadow Hunter (Star Wars: Darth Maul)', 'https://images.isbndb.com/covers/54/15/9780345435415.jpg'), - ('0373051921', 'More Than Promises', 'https://images.isbndb.com/covers/19/22/9780373051922.jpg'), - ('037329106X', 'Virgin Spring (Historical, 506)', 'https://images.isbndb.com/covers/10/69/9780373291069.jpg'), - ('0373114206', 'One Girl At A Time (Harlequin Presents #1420)', 'https://images.isbndb.com/covers/42/07/9780373114207.jpg'), - ('082173427X', 'Wild Wyoming Love (Heart Fire)', 'https://images.isbndb.com/covers/42/78/9780821734278.jpg'), - ('0373291205', 'Lady Of Lyonsbridge (Historical, 529)', 'https://images.isbndb.com/covers/12/05/9780373291205.jpg'), - ('0373254571', 'Stud (Harlequin Temptation)', 'https://images.isbndb.com/covers/45/76/9780373254576.jpg'), - ('0373163541', 'Humble Pie (Harlequin American Romance)', 'https://images.isbndb.com/covers/35/40/9780373163540.jpg'), - ('0373243022', 'Lonesome No More (Harlequin Special Edition)', 'https://images.isbndb.com/covers/30/20/9780373243020.jpg'), - ('0449125394', 'Stardust', 'https://images.isbndb.com/covers/53/97/9780449125397.jpg'), - ('0553219510', 'Long Time Coming', 'https://images.isbndb.com/covers/95/17/9780553219517.jpg'), - ('0373166575', 'Littlest Angel (Gift-Wrapped Grooms) (Harlequin American Romance)', 'https://images.isbndb.com/covers/65/72/9780373166572.jpg'), - ('0373168802', 'Family: The Secret Ingredient (Harlequin American Romance)', 'https://images.isbndb.com/covers/88/04/9780373168804.jpg'), - ('0821745085', 'Velvet Thunder (Heartfire Romance)', 'https://images.isbndb.com/covers/50/83/9780821745083.jpg'), - ('0553219928', 'JOKER''S WILD (Loveswept)', 'https://images.isbndb.com/covers/99/20/9780553219920.jpg'), - ('0553440136', 'SOPHISTICATED LADY', 'https://images.isbndb.com/covers/01/33/9780553440133.jpg'), - ('0373162510', 'Honeymoon Hotel (Harlequin American Romance, No. 251)', 'https://images.isbndb.com/covers/25/12/9780373162512.jpg'), - ('0445206608', 'The White Raven', 'https://images.isbndb.com/covers/66/01/9780445206601.jpg'), - ('051506162X', 'Lured Into Dawn', 'https://images.isbndb.com/covers/16/28/9780515061628.jpg'), - ('0373074123', 'Bad Moon Rising (Silhouette Intimate Moments # 412)', 'https://images.isbndb.com/covers/41/29/9780373074129.jpg'), - ('0373291213', 'Blushing Bride (Historical, 521)', 'https://images.isbndb.com/covers/12/12/9780373291212.jpg'), - ('0373286740', 'Mission Of Mercy (Harlequin Historical)', 'https://images.isbndb.com/covers/67/44/9780373286744.jpg'), - ('0373121369', 'Mistress Of The Sheikh', 'https://images.isbndb.com/covers/13/66/9780373121366.jpg'), - ('0373099568', 'A Secret And A Bridal Pledge (This Time Forever) (Silhouette Special Edition, No 956)', 'https://images.isbndb.com/covers/95/66/9780373099566.jpg'), - ('0671047574', 'Maximum Warp Book Two: Forever Dark (Star Trek The Next Generation, No 63)', 'https://images.isbndb.com/covers/75/73/9780671047573.jpg'), - ('0373071485', 'For Old Time''s Sake (Silhouette Intimate Moments, No 148)', 'https://images.isbndb.com/covers/14/87/9780373071487.jpg'), - ('037328926X', 'My Lady''S Champion (Harlequin Historical)', 'https://images.isbndb.com/covers/92/64/9780373289264.jpg'), - ('0373165676', 'Buffalo Mccloud (Harlequin American Romance)', 'https://images.isbndb.com/covers/56/74/9780373165674.jpg'), - ('0373118651', 'Mirror Bride (The Marriage Maker) (Harlequin Presents)', 'https://images.isbndb.com/covers/86/56/9780373118656.jpg'), - ('0373121482', 'The Baby Claim (Harlequin Presents, 2148)', 'https://images.isbndb.com/covers/14/89/9780373121489.jpg'), - ('0553220012', 'Temperatures Rising (Loveswept No. 336)', 'https://images.isbndb.com/covers/00/18/9780553220018.jpg'), - ('0553444433', 'IMAGINARY LOVER (Loveswept)', 'https://images.isbndb.com/covers/44/38/9780553444438.jpg'), - ('0373289537', 'Lady Thorn (Harlequin Historical)', 'https://images.isbndb.com/covers/95/30/9780373289530.jpg'), - ('0373162227', 'Summer''S Witness (Harlequin American Romance)', 'https://images.isbndb.com/covers/22/22/9780373162222.jpg'), - ('0373288212', 'Fourth Of Forever (Harlequin Historical)', 'https://images.isbndb.com/covers/82/12/9780373288212.jpg'), - ('0373098847', 'Dangerous Alliance (Men Of Courage) (Silhouette Special Edition, No 884)', 'https://images.isbndb.com/covers/88/42/9780373098842.jpg'), - ('0373710550', 'Fleet Hospital: In Uniform (Harlequin Superromance No. 1055)', 'https://images.isbndb.com/covers/05/53/9780373710553.jpg'), - ('0373151896', 'Christmas Magic', 'https://images.isbndb.com/covers/18/99/9780373151899.jpg'), - ('0373288727', 'Lion Of The North (Harlequin Historical)', 'https://images.isbndb.com/covers/87/24/9780373288724.jpg'), - ('0373077351', 'Bringing Benjy Home (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/73/59/9780373077359.jpg'), - ('0440169836', 'Playing With Fire (Candlelight Ecstasy Romance, No 427)', 'https://images.isbndb.com/covers/98/33/9780440169833.jpg'), - ('0373075367', 'Beyond All Reason (Wide Open Spaces) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/53/62/9780373075362.jpg'), - ('0440112907', 'Cactus Rose', 'https://images.isbndb.com/covers/29/07/9780440112907.jpg'), - ('0440173787', 'Restless Wind (Candlelight Ecstasy Romance)', 'https://images.isbndb.com/covers/37/86/9780440173786.jpg'), - ('0373032072', 'Man Of Truth (Harlequin Romance No. 3207)', 'https://images.isbndb.com/covers/20/75/9780373032075.jpg'), - ('0373097735', 'Tilt At Windmills (Silhouette Special Edition, #773)', 'https://images.isbndb.com/covers/77/39/9780373097739.jpg'), - ('0380897857', 'Splintered Moon (Velvet Glove)', 'https://images.isbndb.com/covers/78/58/9780380897858.jpg'), - ('0373106696', 'Trust In Summer Madness (Harlequin Presents No. 669)', 'https://images.isbndb.com/covers/66/91/9780373106691.jpg'), - ('037307638X', 'Out Of The Dark (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/63/83/9780373076383.jpg'), - ('0373099738', 'The Bride Price (That Special Woman) (Silhouette Special Edition, No 973)', 'https://images.isbndb.com/covers/97/33/9780373099733.jpg'), - ('0373707002', 'She Caught The Sheriff (Home On The Ranch, Book 5) (Harlequin Superromance, No 700)', 'https://images.isbndb.com/covers/70/03/9780373707003.jpg'), - ('0373111622', 'Exclusively Yours (Harlequin Presents, No. 1162)', 'https://images.isbndb.com/covers/16/26/9780373111626.jpg'), - ('0373162111', 'Second Harmony (Harlequin American Romance)', 'https://images.isbndb.com/covers/21/16/9780373162116.jpg'), - ('0373290055', 'Gabriel''s Heart (March Madness) (Harlequin Historical)', 'https://images.isbndb.com/covers/00/55/9780373290055.jpg'), - ('0373076932', 'Guarding Raine (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/69/32/9780373076932.jpg'), - ('0553445006', 'BAD TO THE BONE (Treasured Tales)', 'https://images.isbndb.com/covers/50/08/9780553445008.jpg'), - ('0553217771', '22 Indigo Place (Loveswept, #154)', 'https://images.isbndb.com/covers/77/73/9780553217773.jpg'), - ('0373243685', 'Expectant Bride-To-Be (Here Comes The Brides) (Silhouette Special Edition, No 1368)', 'https://images.isbndb.com/covers/36/86/9780373243686.jpg'), - ('0373167520', 'Doorstep Daddy (The Holiday Heart) (Harlequin American Romance)', 'https://images.isbndb.com/covers/75/24/9780373167524.jpg'), - ('0373076592', 'Hunted (Silhouette Sensation) (Silhouette Intimate Moments No. 659)', 'https://images.isbndb.com/covers/65/98/9780373076598.jpg'), - ('0373035101', 'Mail - Order Mother (Romance)', 'https://images.isbndb.com/covers/51/06/9780373035106.jpg'), - ('0373254547', 'Naughty Thoughts (Harlequin Temptation)', 'https://images.isbndb.com/covers/45/45/9780373254545.jpg'), - ('0373288506', 'Roarke''s Folly (Harlequin Historical, No 250)', 'https://images.isbndb.com/covers/85/02/9780373288502.jpg'), - ('0446606448', 'Ciara''s Song: A Chronicle Of The Witch World', 'https://images.isbndb.com/covers/64/48/9780446606448.jpg'), - ('0373107072', 'Illusion Of Love (Harlequin Presents No 707)', 'https://images.isbndb.com/covers/70/70/9780373107070.jpg'), - ('0445208848', 'Savage Tides (Lovestruck)', 'https://images.isbndb.com/covers/88/41/9780445208841.jpg'), - ('0821749374', 'Summer Wind', 'https://images.isbndb.com/covers/93/71/9780821749371.jpg'), - ('0821718053', 'Crimson Rapture', 'https://images.isbndb.com/covers/80/56/9780821718056.jpg'), - ('0312901925', 'The Fallen Angels', 'https://images.isbndb.com/covers/19/29/9780312901929.jpg'), - ('0553289993', 'The Wizard Of Seattle', 'https://images.isbndb.com/covers/99/92/9780553289992.jpg'), - ('0671460412', 'A Distant Castle', 'https://images.isbndb.com/covers/04/19/9780671460419.jpg'), - ('0373790538', 'Double The Pleasure: Twins (Harlequin Blaze)', 'https://images.isbndb.com/covers/05/31/9780373790531.jpg'), - ('0515058181', 'Intriguing Lady', 'https://images.isbndb.com/covers/81/85/9780515058185.jpg'), - ('0373224915', 'Spencer''s Secret (The Spencer Brothers) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/49/13/9780373224913.jpg'), - ('0373709560', 'A Daughter''s Place (Harlequin Superromance No. 956)', 'https://images.isbndb.com/covers/95/64/9780373709564.jpg'), - ('0373105401', 'NOT FAR ENOUGH', 'https://images.isbndb.com/covers/54/03/9780373105403.jpg'), - ('0671495429', 'Out Of Bounds (Silhouette Desire, 118)', 'https://images.isbndb.com/covers/54/28/9780671495428.jpg'), - ('0061096156', 'Society Of The Mind: A Cyberthriller', 'https://images.isbndb.com/covers/61/50/9780061096150.jpg'), - ('0441007147', 'Wrapt In Crystal', 'https://images.isbndb.com/covers/71/41/9780441007141.jpg'), - ('0451161122', 'The War Birds (Signet)', 'https://images.isbndb.com/covers/11/23/9780451161123.jpg'), - ('0671032569', 'Vectors: Double Helix #2 (Star Trek Next Generation: Double Helix)', 'https://images.isbndb.com/covers/25/62/9780671032562.jpg'), - ('0553569651', 'On Wings Of Magic', 'https://images.isbndb.com/covers/96/50/9780553569650.jpg'), - ('0821744798', 'Wild Texas Blossom (Heartfire Romance)', 'https://images.isbndb.com/covers/47/96/9780821744796.jpg'), - ('0345379055', 'The King Beyond The Gate (Drenai Tales, Book 2)', 'https://images.isbndb.com/covers/90/54/9780345379054.jpg'), - ('0061083577', 'Chickadee (Harper Monogram)', 'https://images.isbndb.com/covers/35/70/9780061083570.jpg'), - ('0373161387', 'Edge Of Forever (Harlequin American Romance)', 'https://images.isbndb.com/covers/13/86/9780373161386.jpg'), - ('0373109040', 'An Unbreakable Bond (Harlequin Presents, No 904)', 'https://images.isbndb.com/covers/90/43/9780373109043.jpg'), - ('0451456823', 'Invasion America: A Novel', 'https://images.isbndb.com/covers/68/23/9780451456823.jpg'), - ('0345276353', 'Master Of The Five Magics', 'https://images.isbndb.com/covers/63/53/9780345276353.jpg'), - ('0671042092', 'Swordhunt (Star Trek, No. 95: Rihannsu, Book 3)', 'https://images.isbndb.com/covers/20/97/9780671042097.jpg'), - ('0312980353', 'Circle Of Stars', 'https://images.isbndb.com/covers/03/51/9780312980351.jpg'), - ('0373117949', 'Indiscretions (Bride''s Bay Resort, Book 2) (Harlequin Presents, No 1794)', 'https://images.isbndb.com/covers/79/49/9780373117949.jpg'), - ('0671473646', 'Sweetheart Contract (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/36/48/9780671473648.jpg'), - ('037370707X', 'Texas Standoff: Home On The Ranch (Harlequin Superromance No. 707)', 'https://images.isbndb.com/covers/70/72/9780373707072.jpg'), - ('0373166877', 'Daddy Warlock (Harlequin American Romance #687)', 'https://images.isbndb.com/covers/68/79/9780373166879.jpg'), - ('0553443976', 'SLOW HANDS (Loveswept)', 'https://images.isbndb.com/covers/39/74/9780553443974.jpg'), - ('0373118716', 'Meant To Marry (The Marriage Maker) (Harlequin Presents)', 'https://images.isbndb.com/covers/87/17/9780373118717.jpg'), - ('0743410645', 'Restoration (Star Trek New Frontier: Excalibur, Book 3)', 'https://images.isbndb.com/covers/06/49/9780743410649.jpg'), - ('0449140180', 'Storm Over Sabrehill', 'https://images.isbndb.com/covers/01/85/9780449140185.jpg'), - ('0553443119', 'PRIVATE LESSONS (Loveswept)', 'https://images.isbndb.com/covers/31/10/9780553443110.jpg'), - ('0821740296', 'Lone Star Loving', 'https://images.isbndb.com/covers/02/93/9780821740293.jpg'), - ('0373165544', 'Invisible Groom (Harlequin American Romance)', 'https://images.isbndb.com/covers/55/44/9780373165544.jpg'), - ('0373093799', 'Voyage Of The Nightingale (Silhouette Special Edition No. 379)', 'https://images.isbndb.com/covers/37/93/9780373093793.jpg'), - ('0373165595', 'Secret Agent Dad (Harlequin American Romance, No. 559)', 'https://images.isbndb.com/covers/55/99/9780373165599.jpg'), - ('0553219987', 'Simply Irresistible (Loveswept, No 334)', 'https://images.isbndb.com/covers/99/82/9780553219982.jpg'), - ('0373291183', 'Molly''S Hero', 'https://images.isbndb.com/covers/11/82/9780373291182.jpg'), - ('038076864X', 'Fortune''s Mistress (An Avon Romantic Treasure)', 'https://images.isbndb.com/covers/86/46/9780380768646.jpg'), - ('0373289421', 'Beauty And The Beast (Harlequin Historical)', 'https://images.isbndb.com/covers/94/24/9780373289424.jpg'), - ('037309437X', 'Candles In The Night', 'https://images.isbndb.com/covers/43/70/9780373094370.jpg'), - ('0373098987', 'Cowboy Daddy (Silhouette Special Edition No. 898)', 'https://images.isbndb.com/covers/89/89/9780373098989.jpg'), - ('0373165811', 'Operation: Husband (Harlequin American Romance)', 'https://images.isbndb.com/covers/58/10/9780373165810.jpg'), - ('0786005416', 'Cassandra (Pinnacle Historical Romance)', 'https://images.isbndb.com/covers/54/13/9780786005413.jpg'), - ('0373088701', 'Right Man For Loving (Silhouette Romance)', 'https://images.isbndb.com/covers/87/06/9780373088706.jpg'), - ('0553218298', 'NOT A MARRYING MAN (Loveswept)', 'https://images.isbndb.com/covers/82/99/9780553218299.jpg'), - ('0553218514', 'ONE STEP FROM PARADISE (Loveswept)', 'https://images.isbndb.com/covers/85/10/9780553218510.jpg'), - ('0373092741', 'Class Act (Silhouette Special Edition)', 'https://images.isbndb.com/covers/27/41/9780373092741.jpg'), - ('0553233688', 'Bowdrie', 'https://images.isbndb.com/covers/36/81/9780553233681.jpg'), - ('0373166931', 'Mission: Motherhood (Big Apple Babies) (Harlequin American Romance)', 'https://images.isbndb.com/covers/69/30/9780373166930.jpg'), - ('0821726382', 'Outlaw Ecstasy (Heartfire Romance)', 'https://images.isbndb.com/covers/63/89/9780821726389.jpg'), - ('037329056X', 'Tender Stranger (Harlequin Historical)', 'https://images.isbndb.com/covers/05/67/9780373290567.jpg'), - ('0553443763', 'Dancing In The Dark (Loveswept #609)', 'https://images.isbndb.com/covers/37/69/9780553443769.jpg'), - ('0821760459', 'Bright Morning Star (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/04/51/9780821760451.jpg'), - ('0931122651', 'The Unicorn Poems Of Flowers And Songs Of Sorrow', 'https://images.isbndb.com/covers/26/51/9780931122651.jpg'), - ('0739439065', 'Key Of Knowledge (The Key Trilogy, Book 2)', 'https://images.isbndb.com/covers/90/67/9780739439067.jpg'), - ('0345446100', 'Edge Of Victory II: Rebirth (Star Wars: The New Jedi Order, No. 8)', 'https://images.isbndb.com/covers/61/07/9780345446107.jpg'), - ('0688103324', 'Don''t Know Much About Geography: Everything You Need To Know About The World But Never Learned', 'https://images.isbndb.com/covers/33/23/9780688103323.jpg'), - ('0553213342', 'Sense And Sensibility (Bantam Classics)', 'https://images.isbndb.com/covers/33/48/9780553213348.jpg'), - ('0679885501', 'Crash', 'https://images.isbndb.com/covers/55/04/9780679885504.jpg'), - ('0385266294', 'Why In The World: Adventures In Geography', 'https://images.isbndb.com/covers/62/91/9780385266291.jpg'), - ('080707103X', 'The Passionate Nomad: The Diary Of Isabelle Eberhardt (Virago/Beacon Traveler Series)', 'https://images.isbndb.com/covers/10/38/9780807071038.jpg'), - ('0061064173', 'Wishbone Classic #07 Frankenstein (Wishbone Classics)', 'https://images.isbndb.com/covers/41/73/9780061064173.jpg'), - ('0671785699', 'Bad Dreams (Fear Street, No. 22)', 'https://images.isbndb.com/covers/56/97/9780671785697.jpg'), - ('044840172X', 'Jurassic Park (Junior Novelization)', 'https://images.isbndb.com/covers/17/20/9780448401720.jpg'), - ('0451143183', 'Passport To French (Signet)', 'https://images.isbndb.com/covers/31/81/9780451143181.jpg'), - ('0877282684', 'The Book Of Thoth: A Short Essay On The Tarot Of The Egyptians, Being The Equinox Volume III No. V', 'https://images.isbndb.com/covers/26/86/9780877282686.jpg'), - ('1561840092', 'Angel Tech: A Modern Shamans Guide To Reality Selection', 'https://images.isbndb.com/covers/00/90/9781561840090.jpg'), - ('0811202925', 'Siddhartha', 'https://images.isbndb.com/covers/29/23/9780811202923.jpg'), - ('0764153730', 'The Water Garden Design Book', 'https://images.isbndb.com/covers/37/30/9780764153730.jpg'), - ('0850307147', 'Magic: An Occult Primer', 'https://images.isbndb.com/covers/71/46/9780850307146.jpg'), - ('0316488356', 'The Fortune Telling Book: Reading Crystal Balls, Tea Leaves, Playing Cards, And Everyday Omens Of Love And Luck', 'https://images.isbndb.com/covers/83/58/9780316488358.jpg'), - ('0671704613', 'Magic Power Of Self-Image Psychology', 'https://images.isbndb.com/covers/46/12/9780671704612.jpg'), - ('0563551011', 'Changing Rooms', 'https://images.isbndb.com/covers/10/10/9780563551010.jpg'), - ('0743412346', 'Sir Apropos Of Nothing', 'https://images.isbndb.com/covers/23/46/9780743412346.jpg'), - ('0671629980', 'How Much For Just The Planet? (Star Trek, Book 36)', 'https://images.isbndb.com/covers/99/84/9780671629984.jpg'), - ('0812534077', 'Memory And Dream', 'https://images.isbndb.com/covers/40/78/9780812534078.jpg'), - ('0312964250', 'Overture To Death (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/42/52/9780312964252.jpg'), - ('0446400580', 'The Potter''s Field: The Seventeenth Chronicle Of Brother Cadfael', 'https://images.isbndb.com/covers/05/89/9780446400589.jpg'), - ('034531784X', 'HITLER(ABRIDGED ED)', 'https://images.isbndb.com/covers/78/41/9780345317841.jpg'), - ('0345346912', 'Midway: The Battle That Doomed Japan', 'https://images.isbndb.com/covers/69/19/9780345346919.jpg'), - ('0671008803', 'Spectre (Star Trek)', 'https://images.isbndb.com/covers/88/02/9780671008802.jpg'), - ('0345311639', 'Lando Calrissian And The Flamewind Of Oseon', 'https://images.isbndb.com/covers/16/34/9780345311634.jpg'), - ('0345283716', 'The Vicar Of Christ', 'https://images.isbndb.com/covers/37/19/9780345283719.jpg'), - ('0345329457', 'At The Mountains Of Madness: And Other Tales Of Terror', 'https://images.isbndb.com/covers/94/55/9780345329455.jpg'), - ('0935127291', 'The Only Way To Learn About Horary And Electional Astrology, Vol. 6', 'https://images.isbndb.com/covers/72/94/9780935127294.jpg'), - ('0671503618', 'Starship Haiku', 'https://images.isbndb.com/covers/36/11/9780671503611.jpg'), - ('0879801107', '1001 Brilliant Ways To Checkmate (Chess Lovers'' Library)', 'https://images.isbndb.com/covers/11/06/9780879801106.jpg'), - ('0887330045', 'Rhialto The Marvellous', 'https://images.isbndb.com/covers/00/49/9780887330049.jpg'), - ('1558172378', 'Destroyer 21-Deadly Seeds (The Destroyer)', 'https://images.isbndb.com/covers/23/71/9781558172371.jpg'), - ('094383208X', 'Devotions To The Saints', 'https://images.isbndb.com/covers/20/81/9780943832081.jpg'), - ('0879493046', 'Hindu Kush', 'https://images.isbndb.com/covers/30/42/9780879493042.jpg'), - ('0312958838', 'Mysterious Valley', 'https://images.isbndb.com/covers/88/31/9780312958831.jpg'), - ('0440100259', 'A Soldier Reports', 'https://images.isbndb.com/covers/02/56/9780440100256.jpg'), - ('0234770554', 'The Brains Of Earth', 'https://images.isbndb.com/covers/05/59/9780234770559.jpg'), - ('0394733312', 'Go For Beginners', 'https://images.isbndb.com/covers/33/19/9780394733319.jpg'), - ('0894872281', 'Scott 1998 Standard Postage Stamp Catalogue: United States And Affiliated Territories, United Nations, Countries Of The World, A-B (154th Ed. Vol 1)', 'https://images.isbndb.com/covers/22/80/9780894872280.jpg'), - ('0821717510', 'The Great Commanders Of World War II: The Americans', 'https://images.isbndb.com/covers/75/16/9780821717516.jpg'), - ('0821717529', 'The Great Commanders Of World War II: The Germans', 'https://images.isbndb.com/covers/75/23/9780821717523.jpg'), - ('0571130143', 'Bridge With Aunt Agatha: Technique Without Tears', 'https://images.isbndb.com/covers/01/46/9780571130146.jpg'), - ('1561840599', 'Urban Voodoo: A Beginners Guide To Afro-Caribbean Magic', 'https://images.isbndb.com/covers/05/95/9781561840595.jpg'), - ('1561841536', 'Rebels & Devils: The Psychology Of Liberation', 'https://images.isbndb.com/covers/15/30/9781561841530.jpg'), - ('0887330630', 'Bird Isle And Take My Face', 'https://images.isbndb.com/covers/06/36/9780887330636.jpg'), - ('0786703873', 'The Horror In The Museum And Other Revisions', 'https://images.isbndb.com/covers/38/76/9780786703876.jpg'), - ('0886776244', 'World Without End (Moontide Magic Rise)', 'https://images.isbndb.com/covers/62/44/9780886776244.jpg'), - ('0445204524', 'Cyteen: The Betrayal', 'https://images.isbndb.com/covers/45/22/9780445204522.jpg'), - ('0066210844', 'The Archer''s Tale (The Grail Quest, Book 1)', 'https://images.isbndb.com/covers/08/41/9780066210841.jpg'), - ('0345384210', 'Dreams Of Terror And Death: The Dream Cycle Of H. P. Lovecraft', 'https://images.isbndb.com/covers/42/18/9780345384218.jpg'), - ('0312909233', 'Zombie!', 'https://images.isbndb.com/covers/92/39/9780312909239.jpg'), - ('0879977388', 'The Dimensioneers (Daw UE1738)', 'https://images.isbndb.com/covers/73/82/9780879977382.jpg'), - ('0786706473', 'Vintage Science Fiction: Stories Inspired By Landmark Films', 'https://images.isbndb.com/covers/64/71/9780786706471.jpg'), - ('0743412419', 'The Book Of Fours (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/24/14/9780743412414.jpg'), - ('0425126021', 'The Roswell Incident', 'https://images.isbndb.com/covers/60/28/9780425126028.jpg'), - ('087542127X', 'The Truth About Witchcraft Today (Truth About Series)', 'https://images.isbndb.com/covers/12/78/9780875421278.jpg'), - ('0061057525', 'Dreams Of The Dark (Dark Shadows)', 'https://images.isbndb.com/covers/75/26/9780061057526.jpg'), - ('0140182926', 'Collected Dorothy Parker Pb (Penguin Twentieth-Century Clas)', 'https://images.isbndb.com/covers/29/27/9780140182927.jpg'), - ('0140261184', 'Bad Wisdom', 'https://images.isbndb.com/covers/11/89/9780140261189.jpg'), - ('0140139125', 'It Ends With Magic: A Milligan Family Story', 'https://images.isbndb.com/covers/91/29/9780140139129.jpg'), - ('1567184731', 'A Chakra & Kundalini Workbook: Psycho-Spiritual Techniques For Health, Rejuvenation, Psychic Powers & Spiritual Realization', 'https://images.isbndb.com/covers/47/30/9781567184730.jpg'), - ('1852278862', 'The Spike Milligan''s Family Album', 'https://images.isbndb.com/covers/88/61/9781852278861.jpg'), - ('0140035206', 'Adolf Hitler: My Part In His Downfall (War Memoirs Vol. 1)', 'https://images.isbndb.com/covers/52/09/9780140035209.jpg'), - ('0140023747', 'Puckoon', 'https://images.isbndb.com/covers/37/49/9780140023749.jpg'), - ('0007155093', 'The Essential Spike Milligan', 'https://images.isbndb.com/covers/50/95/9780007155095.jpg'), - ('0671037390', 'Only Dad', 'https://images.isbndb.com/covers/73/90/9780671037390.jpg'), - ('0671015850', 'The Last Lighthouse Keeper', 'https://images.isbndb.com/covers/58/55/9780671015855.jpg'), - ('0749930632', 'Fair Exchange', 'https://images.isbndb.com/covers/06/39/9780749930639.jpg'), - ('0553282182', 'Alicia', 'https://images.isbndb.com/covers/21/84/9780553282184.jpg'), - ('0671037382', 'Animal Instincts', 'https://images.isbndb.com/covers/73/83/9780671037383.jpg'), - ('0413519503', 'Lear (Methuen Student Editions)', 'https://images.isbndb.com/covers/95/04/9780413519504.jpg'), - ('0340693096', 'The Talk Of The Town', 'https://images.isbndb.com/covers/30/94/9780340693094.jpg'), - ('3426195593', 'Rache Kennt Kein Gebot', 'https://images.isbndb.com/covers/55/98/9783426195598.jpg'), - ('3404129490', 'Venezianisches Labyrinth', 'https://images.isbndb.com/covers/94/92/9783404129492.jpg'), - ('3596505151', 'Opernball. Jubiläums- Edition.', 'https://images.isbndb.com/covers/51/59/9783596505159.jpg'), - ('3518100734', 'Der Gute Mensch Von Sezuan: Parabelstück (edition Suhrkamp)', 'https://images.isbndb.com/covers/07/38/9783518100738.jpg'), - ('3596224284', 'Dear Doosie: Eine Liebesgeschichte In Briefen. Auch Eine Möglichkeit, Sein Englisch Spielend Aufzufrischen', 'https://images.isbndb.com/covers/42/89/9783596224289.jpg'), - ('340413348X', 'Der Mit Dem Wolf Tanzt', 'https://images.isbndb.com/covers/34/82/9783404133482.jpg'), - ('0749719745', 'The Mystery Of The Invisible Thief (The Mystery Series)', 'https://images.isbndb.com/covers/97/46/9780749719746.jpg'), - ('1841150770', 'Captain Bligh Portable', 'https://images.isbndb.com/covers/07/72/9781841150772.jpg'), - ('0099286572', 'Elizabeth: Apprenticeship', 'https://images.isbndb.com/covers/65/78/9780099286578.jpg'), - ('3125781108', 'The War Between The Classes. Englischsprachige Ausgabe.', 'https://images.isbndb.com/covers/11/08/9783125781108.jpg'), - ('312577540X', 'The Guardians', 'https://images.isbndb.com/covers/54/04/9783125775404.jpg'), - ('3518365010', 'Warten Auf Godot - En Attendant Godot - Waiting For Godot', 'https://images.isbndb.com/covers/50/14/9783518365014.jpg'), - ('3442161177', 'Endlich Wunschgewicht! Der Einfache Weg, Mit Gewichtsproblemen Schluss Zu Machen', 'https://images.isbndb.com/covers/11/71/9783442161171.jpg'), - ('3442139112', 'Die Markert-Diät', 'https://images.isbndb.com/covers/91/18/9783442139118.jpg'), - ('3404148657', 'Kerzenlicht Für Eine Leiche: Mitchell & Markbys Achter Fall: Mitchell Und Markbys Achter Fall', 'https://images.isbndb.com/covers/86/53/9783404148653.jpg'), - ('3746652618', 'L''Adultera: Novelle: (Berliner Frauenromane)', 'https://images.isbndb.com/covers/26/10/9783746652610.jpg'), - ('3502518998', 'Sarabande', 'https://images.isbndb.com/covers/89/90/9783502518990.jpg'), - ('3548256171', 'In Blindem Zorn', 'https://images.isbndb.com/covers/61/77/9783548256177.jpg'), - ('3426080648', 'Leben Will Ich. (7510 624). Roman. ( Frauen Und Literatur).', 'https://images.isbndb.com/covers/06/41/9783426080641.jpg'), - ('3442450322', 'Die Schwarze Schatulle: Roman', 'https://images.isbndb.com/covers/03/29/9783442450329.jpg'), - ('3453146972', 'Per Anhalter Durch Die Galaxis', 'https://images.isbndb.com/covers/69/76/9783453146976.jpg'), - ('3404118251', 'Grüne Tomaten', 'https://images.isbndb.com/covers/82/50/9783404118250.jpg'), - ('0752218751', 'Dawson''s Creek: Trouble In Paradise V.7 (Vol 7)', 'https://images.isbndb.com/covers/87/55/9780752218755.jpg'), - ('186046808X', 'Faceless Killers (A Kurt Wallander Mystery)', 'https://images.isbndb.com/covers/80/87/9781860468087.jpg'), - ('0684873753', 'Details At Ten', 'https://images.isbndb.com/covers/37/56/9780684873756.jpg'), - ('0152020683', 'Half Magic', 'https://images.isbndb.com/covers/06/82/9780152020682.jpg'), - ('0385503466', 'Shutterbug Follies: Graphic Novel (Doubleday Graphic Novels)', 'https://images.isbndb.com/covers/34/64/9780385503464.jpg'), - ('0767901843', 'Nuts! Southwest Airlines'' Crazy Recipe For Business And Personal Success', 'https://images.isbndb.com/covers/18/40/9780767901840.jpg'), - ('0671020110', 'Counterfeit Lady', 'https://images.isbndb.com/covers/01/18/9780671020118.jpg'), - ('0373484429', 'Reflections And Dreams', 'https://images.isbndb.com/covers/44/23/9780373484423.jpg'), - ('0671042920', 'Ride A Dark Horse', 'https://images.isbndb.com/covers/29/29/9780671042929.jpg'), - ('0446524999', 'The Arcanum: The Extraordinary True Story', 'https://images.isbndb.com/covers/49/95/9780446524995.jpg'), - ('0767908260', 'The Island Of Lost Maps: A True Story Of Cartographic Crime', 'https://images.isbndb.com/covers/82/69/9780767908269.jpg'), - ('0140434682', 'The Power Of Sympathy And The Coquette (Penguin Classics)', 'https://images.isbndb.com/covers/46/82/9780140434682.jpg'), - ('0140434127', 'Aurora Leigh And Other Poems (Penguin Classics)', 'https://images.isbndb.com/covers/41/25/9780140434125.jpg'), - ('0140154515', 'A Moment On The Earth: The Coming Age Of Environmental Optimism', 'https://images.isbndb.com/covers/45/11/9780140154511.jpg'), - ('0140432809', 'Grace Abounding To The Chief Of Sinners: Or Brief Faithful Relation Exceeding Mercy God Christ His Poor Servant John (Penguin Classics)', 'https://images.isbndb.com/covers/28/00/9780140432800.jpg'), - ('014051290X', 'Dictionary Of Music, The Penguin: Sixth Edition (Dictionary, Penguin)', 'https://images.isbndb.com/covers/29/08/9780140512908.jpg'), - ('0140445285', 'Crime And Punishment (Penguin Classics)', 'https://images.isbndb.com/covers/52/82/9780140445282.jpg'), - ('0140445625', 'A Short Account Of The Destruction Of The Indies', 'https://images.isbndb.com/covers/56/26/9780140445626.jpg'), - ('0140194886', 'The Book Of Chuang Tzu (Compass)', 'https://images.isbndb.com/covers/48/83/9780140194883.jpg'), - ('1573220922', 'Freak', 'https://images.isbndb.com/covers/09/27/9781573220927.jpg'), - ('0140466606', 'The Stanislavski System: The Professional Training Of An Actor; Second Revised Edition (Penguin Handbooks)', 'https://images.isbndb.com/covers/66/07/9780140466607.jpg'), - ('0140188517', 'Complete Poems', 'https://images.isbndb.com/covers/85/16/9780140188516.jpg'), - ('0060171928', 'Mutant Message Down Under', 'https://images.isbndb.com/covers/19/26/9780060171926.jpg'), - ('0140587489', 'Common Carnage (Poets, Penguin)', 'https://images.isbndb.com/covers/74/87/9780140587487.jpg'), - ('0310239729', 'A Step Further', 'https://images.isbndb.com/covers/97/27/9780310239727.jpg'), - ('0684717654', 'This Side Of Paradise (A Scribner Classic)', 'https://images.isbndb.com/covers/76/54/9780684717654.jpg'), - ('0786913339', 'Spectre Of The Black Rose (Ravenloft Terror Of Lord Soth, Vol. 2)', 'https://images.isbndb.com/covers/33/36/9780786913336.jpg'), - ('0515041858', 'Rebels', 'https://images.isbndb.com/covers/18/59/9780515041859.jpg'), - ('0515041866', 'Seekers', 'https://images.isbndb.com/covers/18/66/9780515041866.jpg'), - ('0515035084', 'The Bastard', 'https://images.isbndb.com/covers/50/87/9780515035087.jpg'), - ('0345409876', 'Women Who Run With The Wolves', 'https://images.isbndb.com/covers/98/74/9780345409874.jpg'), - ('0679724516', 'The Second Sex', 'https://images.isbndb.com/covers/45/13/9780679724513.jpg'), - ('0679763309', 'An Unquiet Mind: A Memoir Of Moods And Madness', 'https://images.isbndb.com/covers/33/07/9780679763307.jpg'), - ('0393027414', 'Cutting: Understanding And Overcoming Self-Mutilation', 'https://images.isbndb.com/covers/74/19/9780393027419.jpg'), - ('0813522137', 'Media Madness: Public Images Of Mental Illness', 'https://images.isbndb.com/covers/21/35/9780813522135.jpg'), - ('0375757295', 'Persuasion (Modern Library Classics)', 'https://images.isbndb.com/covers/72/97/9780375757297.jpg'), - ('0425183971', 'Reunion In Death', 'https://images.isbndb.com/covers/39/77/9780425183977.jpg'), - ('0582292190', 'The Media And Mental Distress', 'https://images.isbndb.com/covers/21/92/9780582292192.jpg'), - ('067973225X', 'As I Lay Dying: The Corrected Text', 'https://images.isbndb.com/covers/22/59/9780679732259.jpg'), - ('0060174900', 'The Bell Jar, 25th Anniversary Edition', 'https://images.isbndb.com/covers/49/03/9780060174903.jpg'), - ('1879237741', 'Living Without Depression And Manic Depression: A Workbook For Maintaining Mood Stability (New Harbinger Workbooks)', 'https://images.isbndb.com/covers/77/42/9781879237742.jpg'), - ('0375704469', 'The Colossus And Other Poems', 'https://images.isbndb.com/covers/44/68/9780375704468.jpg'), - ('0894803204', 'The Book Of Questions', 'https://images.isbndb.com/covers/32/08/9780894803208.jpg'), - ('093158079X', 'Do It! Let''s Get Off Our Buts', 'https://images.isbndb.com/covers/07/96/9780931580796.jpg'), - ('0486270521', 'Sonnets From The Portuguese And Other Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/24/9780486270524.jpg'), - ('0449200248', 'Love: A Warm And Wonderful Book About The Largest Experience In Life', 'https://images.isbndb.com/covers/02/47/9780449200247.jpg'), - ('0937858668', 'Success Is The Quality Of Your Journey', 'https://images.isbndb.com/covers/86/60/9780937858660.jpg'), - ('0684839075', 'The Torrents Of Spring', 'https://images.isbndb.com/covers/90/73/9780684839073.jpg'), - ('0140266933', 'Prince Charming Isn''t Coming: How Women Get Smart About Money', 'https://images.isbndb.com/covers/69/31/9780140266931.jpg'), - ('0684818981', 'To Have And Have Not', 'https://images.isbndb.com/covers/89/86/9780684818986.jpg'), - ('1862042055', 'Writing For Self-Discovery: A Personal Approach To Creative Writing', 'https://images.isbndb.com/covers/20/56/9781862042056.jpg'), - ('068482499X', 'A Moveable Feast', 'https://images.isbndb.com/covers/49/94/9780684824994.jpg'), - ('0020199856', 'The Love Of The Last Tycoon', 'https://images.isbndb.com/covers/98/54/9780020199854.jpg'), - ('1558508473', 'The Everything After College Book; Real-World Advice For Surviving And Thriving On Your Own', 'https://images.isbndb.com/covers/84/77/9781558508477.jpg'), - ('0441007813', 'Obsidian Butterfly (Anita Blake, Vampire Hunter)', 'https://images.isbndb.com/covers/78/13/9780441007813.jpg'), - ('0804002800', 'Spy In House Of Love: V4 In Nin''S Continuous Novel (Vol IV)', 'https://images.isbndb.com/covers/28/06/9780804002806.jpg'), - ('0671680110', 'Little Birds', 'https://images.isbndb.com/covers/01/14/9780671680114.jpg'), - ('0446609048', 'Run Jane Run', 'https://images.isbndb.com/covers/90/43/9780446609043.jpg'), - ('0446606677', 'A.K.A. Jane', 'https://images.isbndb.com/covers/66/77/9780446606677.jpg'), - ('0380790963', 'The Promise', 'https://images.isbndb.com/covers/09/68/9780380790968.jpg'), - ('0380790947', 'The Passion', 'https://images.isbndb.com/covers/09/44/9780380790944.jpg'), - ('006093316X', 'The Great And Secret Show', 'https://images.isbndb.com/covers/31/66/9780060933166.jpg'), - ('0060909005', 'The Collected Poems', 'https://images.isbndb.com/covers/90/00/9780060909000.jpg'), - ('0062731009', 'The Cartoon Guide To Physics', 'https://images.isbndb.com/covers/10/05/9780062731005.jpg'), - ('0062731025', 'Cartoon Guide To Statistics', 'https://images.isbndb.com/covers/10/29/9780062731029.jpg'), - ('0804001480', 'House Of Incest', 'https://images.isbndb.com/covers/14/89/9780804001489.jpg'), - ('0441005748', 'Blue Moon (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/57/41/9780441005741.jpg'), - ('156333609X', 'White Stains', 'https://images.isbndb.com/covers/60/96/9781563336096.jpg'), - ('0812566688', 'Darksong Rising: The Third Book Of The Spellsong Cycle', 'https://images.isbndb.com/covers/66/80/9780812566680.jpg'), - ('0312860226', 'The Soprano Sorceress', 'https://images.isbndb.com/covers/02/26/9780312860226.jpg'), - ('0812540026', 'The Spellsong War (Spellsong Cycle #2)', 'https://images.isbndb.com/covers/00/24/9780812540024.jpg'), - ('0811824225', 'Sleeping With Random Beasts: A Novel', 'https://images.isbndb.com/covers/42/24/9780811824224.jpg'), - ('1889295000', 'Monsters From The Id (Brainstorm)', 'https://images.isbndb.com/covers/50/08/9781889295008.jpg'), - ('0786808012', 'Artemis Fowl (Artemis Fowl, Book 1)', 'https://images.isbndb.com/covers/80/14/9780786808014.jpg'), - ('0385285019', 'Illusions: The Adventures Of A Reluctant Messiah', 'https://images.isbndb.com/covers/50/18/9780385285018.jpg'), - ('1573245003', '365 Health & Happiness Boosters', 'https://images.isbndb.com/covers/50/05/9781573245005.jpg'), - ('0380802317', 'Where Dreams Begin', 'https://images.isbndb.com/covers/23/19/9780380802319.jpg'), - ('0821771418', 'You''re The One (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/14/19/9780821771419.jpg'), - ('0385484011', 'Bitch: In Praise Of Difficult Women', 'https://images.isbndb.com/covers/40/15/9780385484015.jpg'), - ('0452281458', 'Beauty''s Release: The Conclusion Of The Classic Erotic Trilogy Of Sleeping Beauty', 'https://images.isbndb.com/covers/14/55/9780452281455.jpg'), - ('0452281431', 'Beauty''s Punishment (Sleeping Beauty)', 'https://images.isbndb.com/covers/14/31/9780452281431.jpg'), - ('0440210038', 'Hot Property', 'https://images.isbndb.com/covers/00/30/9780440210030.jpg'), - ('1551668483', 'North Of Clever (Hannah Garvey Mysteries #3)', 'https://images.isbndb.com/covers/84/82/9781551668482.jpg'), - ('0380795736', 'Talking Rain: A Professo (Professor Teodora Morelli Mystery)', 'https://images.isbndb.com/covers/57/34/9780380795734.jpg'), - ('0312191189', 'Emma Who Saved My Life', 'https://images.isbndb.com/covers/11/84/9780312191184.jpg'), - ('074340596X', 'Married For A Month', 'https://images.isbndb.com/covers/59/66/9780743405966.jpg'), - ('0821771159', 'Husband Material (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/50/9780821771150.jpg'), - ('1551668289', 'Looking For Laura', 'https://images.isbndb.com/covers/82/84/9781551668284.jpg'), - ('0061014788', 'Smart Vs. Pretty', 'https://images.isbndb.com/covers/47/89/9780061014789.jpg'), - ('0345317211', 'The Cook', 'https://images.isbndb.com/covers/72/16/9780345317216.jpg'), - ('0451526120', 'The Age Of Innocence (Signet Classics)', 'https://images.isbndb.com/covers/61/20/9780451526120.jpg'), - ('0449215024', 'Sacred And Profane', 'https://images.isbndb.com/covers/50/29/9780449215029.jpg'), - ('0552142506', 'Sickness Of The Soul', 'https://images.isbndb.com/covers/25/02/9780552142502.jpg'), - ('0425176088', 'Airport', 'https://images.isbndb.com/covers/60/85/9780425176085.jpg'), - ('0440216974', 'Mortal Grace', 'https://images.isbndb.com/covers/69/71/9780440216971.jpg'), - ('0451170113', 'Night Shift (Signet)', 'https://images.isbndb.com/covers/01/18/9780451170118.jpg'), - ('0316153915', 'Chasing The Dime', 'https://images.isbndb.com/covers/39/11/9780316153911.jpg'), - ('0425155722', 'The Fool''s Run (Kidd)', 'https://images.isbndb.com/covers/57/21/9780425155721.jpg'), - ('0425189031', 'Portrait In Death', 'https://images.isbndb.com/covers/90/30/9780425189030.jpg'), - ('0671015443', 'Vulcan''s Heart (Star Trek)', 'https://images.isbndb.com/covers/54/42/9780671015442.jpg'), - ('0440236665', 'Lone Eagle', 'https://images.isbndb.com/covers/66/65/9780440236665.jpg'), - ('0425049264', 'Chthon', 'https://images.isbndb.com/covers/92/66/9780425049266.jpg'), - ('0812551486', 'Temple Of The Winds (Sword Of Truth, Book 4)', 'https://images.isbndb.com/covers/14/88/9780812551488.jpg'), - ('081257639X', 'Faith Of The Fallen (Sword Of Truth, Book 6)', 'https://images.isbndb.com/covers/63/99/9780812576399.jpg'), - ('0736618198', 'Devices And Desires (Adam Dalgliesh Mystery Series #8)', 'https://images.isbndb.com/covers/81/99/9780736618199.jpg'), - ('0061007153', 'A Quiver Full Of Arrows', 'https://images.isbndb.com/covers/71/56/9780061007156.jpg'), - ('0380011220', 'Creatures Of Light And Darkness', 'https://images.isbndb.com/covers/12/23/9780380011223.jpg'), - ('0451525884', 'Pride And Prejudice: New Edition', 'https://images.isbndb.com/covers/58/88/9780451525888.jpg'), - ('034539092X', 'The Great Train Robbery', 'https://images.isbndb.com/covers/09/29/9780345390929.jpg'), - ('0345323173', 'The Case Of The Velvet Claws', 'https://images.isbndb.com/covers/31/70/9780345323170.jpg'), - ('0345378784', 'The Case Of The Amorous Aunt (A Perry Mason Mystery)', 'https://images.isbndb.com/covers/87/81/9780345378781.jpg'), - ('0441703534', 'Jaguar', 'https://images.isbndb.com/covers/35/31/9780441703531.jpg'), - ('0345349520', 'Vanity Dies Hard', 'https://images.isbndb.com/covers/95/21/9780345349521.jpg'), - ('0886776554', 'Exile''s Return (Ghatti''s Tale)', 'https://images.isbndb.com/covers/65/58/9780886776558.jpg'), - ('0002243776', 'Visible Worlds: A Novel', 'https://images.isbndb.com/covers/37/73/9780002243773.jpg'), - ('0385491107', 'Life Before Man', 'https://images.isbndb.com/covers/11/05/9780385491105.jpg'), - ('0786209542', 'Marrying Mom: A Novel', 'https://images.isbndb.com/covers/95/45/9780786209545.jpg'), - ('0385720955', 'The Blind Assassin: A Novel', 'https://images.isbndb.com/covers/09/53/9780385720953.jpg'), - ('0751510610', 'Bizarre World', 'https://images.isbndb.com/covers/06/14/9780751510614.jpg'), - ('0743442245', 'The Road To Perdition', 'https://images.isbndb.com/covers/22/44/9780743442244.jpg'), - ('0571168639', 'Moon Palace', 'https://images.isbndb.com/covers/86/37/9780571168637.jpg'), - ('0142002003', 'Youth: Scenes From Provincial Life II', 'https://images.isbndb.com/covers/20/01/9780142002001.jpg'), - ('0330480952', 'Sleeping Partner', 'https://images.isbndb.com/covers/09/56/9780330480956.jpg'), - ('0758203888', 'Easy', 'https://images.isbndb.com/covers/38/85/9780758203885.jpg'), - ('3596282756', 'Tristan Und Isolde', 'https://images.isbndb.com/covers/27/53/9783596282753.jpg'), - ('006109868X', 'Pigs In Heaven', 'https://images.isbndb.com/covers/86/80/9780061098680.jpg'), - ('0451208846', 'The Puzzle Bark Tree', 'https://images.isbndb.com/covers/88/42/9780451208842.jpg'), - ('0684867427', 'Jukebox Queen Of Malta: A Novel', 'https://images.isbndb.com/covers/74/27/9780684867427.jpg'), - ('0060520507', 'Sushi For Beginners: A Novel', 'https://images.isbndb.com/covers/05/02/9780060520502.jpg'), - ('0425184498', 'The Boy Next Door', 'https://images.isbndb.com/covers/44/93/9780425184493.jpg'), - ('0767915593', 'Straight Talking: A Novel', 'https://images.isbndb.com/covers/55/95/9780767915595.jpg'), - ('0451196813', 'Breakfast At Madeline''s : A Jacob Burns Mystery ((Jacob Burns Mystery Series)', 'https://images.isbndb.com/covers/68/11/9780451196811.jpg'), - ('1889853038', 'The Nurse''s Story', 'https://images.isbndb.com/covers/30/31/9781889853031.jpg'), - ('0860681297', 'Edible Woman', 'https://images.isbndb.com/covers/12/98/9780860681298.jpg'), - ('0553212664', 'Modern Mephistopheles', 'https://images.isbndb.com/covers/26/62/9780553212662.jpg'), - ('0385319002', 'Animal Husbandry', 'https://images.isbndb.com/covers/90/03/9780385319003.jpg'), - ('0330482076', 'The Princess Diaries: Third Time Lucky', 'https://images.isbndb.com/covers/20/73/9780330482073.jpg'), - ('0060294655', 'Princess In The Spotlight (The Princess Diaries, Vol. 2)', 'https://images.isbndb.com/covers/46/56/9780060294656.jpg'), - ('0316057401', 'Vegetarian Express : Easy, Tasty, And Healthy Menus In 28 Minutes(or Less!)', 'https://images.isbndb.com/covers/74/00/9780316057400.jpg'), - ('0316777722', 'Me Talk Pretty One Day', 'https://images.isbndb.com/covers/77/28/9780316777728.jpg'), - ('0340682272', 'Snap Happy', 'https://images.isbndb.com/covers/22/72/9780340682272.jpg'), - ('0345376927', 'Horrors Of The Dancing Gods', 'https://images.isbndb.com/covers/69/23/9780345376923.jpg'), - ('0345347994', 'Songs Of The Dancing Gods: (#4)', 'https://images.isbndb.com/covers/79/92/9780345347992.jpg'), - ('0747230307', 'Afterglow And Nightfall (Brothers Of Gwynedd)', 'https://images.isbndb.com/covers/03/04/9780747230304.jpg'), - ('0399511156', 'The Professional Image', 'https://images.isbndb.com/covers/11/58/9780399511158.jpg'), - ('0870946595', 'Service America!: Doing Business In The New Economy', 'https://images.isbndb.com/covers/65/92/9780870946592.jpg'), - ('0070145121', 'Quality Is Free: The Art Of Making Quality Certain: How To Manage Quality - So That It Becomes A Source Of Profit For Your Business', 'https://images.isbndb.com/covers/51/22/9780070145122.jpg'), - ('007014530X', 'Quality Without Tears: The Art Of Hassle-Free Management', 'https://images.isbndb.com/covers/53/06/9780070145306.jpg'), - ('0767904427', 'Going After Cacciato', 'https://images.isbndb.com/covers/44/21/9780767904421.jpg'), - ('0679723161', 'Lolita', 'https://images.isbndb.com/covers/31/65/9780679723165.jpg'), - ('0618066136', 'Mr. Wroe''s Virgins', 'https://images.isbndb.com/covers/61/31/9780618066131.jpg'), - ('0451458478', 'Pride Of Kings', 'https://images.isbndb.com/covers/84/76/9780451458476.jpg'), - ('0805052046', 'A Place Of Greater Safety: A Novel', 'https://images.isbndb.com/covers/20/46/9780805052046.jpg'), - ('0345447212', 'Longing: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/72/10/9780345447210.jpg'), - ('0140276300', 'Before I Say Goodbye', 'https://images.isbndb.com/covers/63/05/9780140276305.jpg'), - ('0099143712', 'Fried Green Tomatoes At The Whistle Stop Cafe', 'https://images.isbndb.com/covers/37/10/9780099143710.jpg'), - ('0721401023', 'The Ladybird Book Of Trees (Nature, Series 536)', 'https://images.isbndb.com/covers/10/27/9780721401027.jpg'), - ('0140234209', 'I Believe In Angels', 'https://images.isbndb.com/covers/42/06/9780140234206.jpg'), - ('0140252525', 'Apprenticeship Of Duddy Kravitz Pb', 'https://images.isbndb.com/covers/25/21/9780140252521.jpg'), - ('1550541129', 'Bachelor Brothers'' Bed & Breakfast', 'https://images.isbndb.com/covers/11/20/9781550541120.jpg'), - ('0767903382', 'Tender At The Bone: Growing Up At The Table', 'https://images.isbndb.com/covers/33/87/9780767903387.jpg'), - ('156924703X', 'Amistad - A Novel', 'https://images.isbndb.com/covers/70/37/9781569247037.jpg'), - ('0156012022', 'Our Fathers', 'https://images.isbndb.com/covers/20/27/9780156012027.jpg'), - ('0767902041', 'Tomcat In Love', 'https://images.isbndb.com/covers/20/45/9780767902045.jpg'), - ('0312283377', 'The Northern Lights: A Novel', 'https://images.isbndb.com/covers/33/77/9780312283377.jpg'), - ('0671679430', 'VANISHED', 'https://images.isbndb.com/covers/94/39/9780671679439.jpg'), - ('0143033603', 'Downhill Chance', 'https://images.isbndb.com/covers/36/08/9780143033608.jpg'), - ('0140283641', 'Kits Law', 'https://images.isbndb.com/covers/36/48/9780140283648.jpg'), - ('0340728256', 'Oxygen : A Novel', 'https://images.isbndb.com/covers/82/53/9780340728253.jpg'), - ('0140285822', 'Notes From The Hyena''s Belly', 'https://images.isbndb.com/covers/58/26/9780140285826.jpg'), - ('0140277439', 'Home From The Vinyl Cafe', 'https://images.isbndb.com/covers/74/32/9780140277432.jpg'), - ('0684853868', 'The LAST PICTURE SHOW : A Novel', 'https://images.isbndb.com/covers/38/64/9780684853864.jpg'), - ('1894294424', 'Donovan''s Station: A Novel', 'https://images.isbndb.com/covers/44/23/9781894294423.jpg'), - ('0679767207', 'So Long, See You Tomorrow', 'https://images.isbndb.com/covers/72/06/9780679767206.jpg'), - ('0679455116', 'Chasing Cezanne', 'https://images.isbndb.com/covers/51/10/9780679455110.jpg'), - ('1552782395', 'Last Summer At Barebones', 'https://images.isbndb.com/covers/23/92/9781552782392.jpg'), - ('0771054602', 'Canoe Lake', 'https://images.isbndb.com/covers/46/00/9780771054600.jpg'), - ('0375724834', 'Motherless Brooklyn', 'https://images.isbndb.com/covers/48/31/9780375724831.jpg'), - ('0771095651', 'Sand Dance: By Camel Across Arabia''s Great Southern Desert', 'https://images.isbndb.com/covers/56/58/9780771095658.jpg'), - ('0679724362', 'The Road From Coorain', 'https://images.isbndb.com/covers/43/60/9780679724360.jpg'), - ('0312135092', 'Herb ''N'' Lorna: A Novel', 'https://images.isbndb.com/covers/50/96/9780312135096.jpg'), - ('015100658X', 'The Painter Of Birds', 'https://images.isbndb.com/covers/65/88/9780151006588.jpg'), - ('0385333641', 'From Here To Eternity', 'https://images.isbndb.com/covers/36/41/9780385333641.jpg'), - ('0345417941', 'The Cider House Rules', 'https://images.isbndb.com/covers/79/47/9780345417947.jpg'), - ('0385720467', 'Disobedience: A Novel', 'https://images.isbndb.com/covers/04/65/9780385720465.jpg'), - ('0771041837', 'Broken Ground', 'https://images.isbndb.com/covers/18/39/9780771041839.jpg'), - ('0684803356', 'For Whom The Bell Tolls', 'https://images.isbndb.com/covers/33/57/9780684803357.jpg'), - ('0684865726', 'True At First Light : A Fictional Memoir', 'https://images.isbndb.com/covers/57/20/9780684865720.jpg'), - ('0679731156', 'Floating In My Mother''s Palm', 'https://images.isbndb.com/covers/11/53/9780679731153.jpg'), - ('0006385370', 'Freedom''s Just Another Word', 'https://images.isbndb.com/covers/53/70/9780006385370.jpg'), - ('0676971997', 'The Wise And Foolish Virgins', 'https://images.isbndb.com/covers/19/96/9780676971996.jpg'), - ('074341005X', 'Give Me My Father''s Body: The Life Of Minik, The New York Eskimo', 'https://images.isbndb.com/covers/00/52/9780743410052.jpg'), - ('0140291091', 'The End Of The Affair: (movie Tie-in Edition)', 'https://images.isbndb.com/covers/10/94/9780140291094.jpg'), - ('1569471169', 'Falling Angels', 'https://images.isbndb.com/covers/11/66/9781569471166.jpg'), - ('0920897533', 'Chorus Of Mushrooms (Nunatak Fiction)', 'https://images.isbndb.com/covers/75/39/9780920897539.jpg'), - ('0312205546', 'THE JOURNAL OF MRS. PEPYS: Portrait Of A Marriage', 'https://images.isbndb.com/covers/55/46/9780312205546.jpg'), - ('0385333706', 'After Long Silence', 'https://images.isbndb.com/covers/37/02/9780385333702.jpg'), - ('1552634523', 'Making A Stone Of The Heart: A Novel', 'https://images.isbndb.com/covers/45/23/9781552634523.jpg'), - ('0802137849', 'Sound Of One Hand Clapping', 'https://images.isbndb.com/covers/78/45/9780802137845.jpg'), - ('0006480608', 'The Piano Man''s Daughter', 'https://images.isbndb.com/covers/06/00/9780006480600.jpg'), - ('0002244098', 'Dust To Dust: Stories', 'https://images.isbndb.com/covers/40/91/9780002244091.jpg'), - ('014029984X', 'Generica: A Novel', 'https://images.isbndb.com/covers/98/47/9780140299847.jpg'), - ('1550548409', 'Open Arms', 'https://images.isbndb.com/covers/84/02/9781550548402.jpg'), - ('0864922299', 'Man Of Bone', 'https://images.isbndb.com/covers/22/98/9780864922298.jpg'), - ('1895411416', 'April Raintree', 'https://images.isbndb.com/covers/14/16/9781895411416.jpg'), - ('1861590466', 'The Emerald Underground', 'https://images.isbndb.com/covers/04/66/9781861590466.jpg'), - ('1861591799', 'The Keepers Of Truth', 'https://images.isbndb.com/covers/17/91/9781861591791.jpg'), - ('0670872202', 'Boyhood: Scenes From Provincial Life', 'https://images.isbndb.com/covers/22/06/9780670872206.jpg'), - ('0141000252', 'Baroque-A-Nova', 'https://images.isbndb.com/covers/02/51/9780141000251.jpg'), - ('1551924579', 'A Sack Of Teeth', 'https://images.isbndb.com/covers/45/71/9781551924571.jpg'), - ('0771014902', 'Burying Ariel (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/49/01/9780771014901.jpg'), - ('0385475772', 'Nine Parts Of Desire: The Hidden World Of Islamic Women', 'https://images.isbndb.com/covers/57/78/9780385475778.jpg'), - ('0771014538', 'The Chrome Suite', 'https://images.isbndb.com/covers/45/36/9780771014536.jpg'), - ('0679767770', 'To The Wedding', 'https://images.isbndb.com/covers/77/70/9780679767770.jpg'), - ('0452272726', 'The Eye In The Door', 'https://images.isbndb.com/covers/27/29/9780452272729.jpg'), - ('0525941916', 'The Ghost Road', 'https://images.isbndb.com/covers/19/10/9780525941910.jpg'), - ('0452270073', 'Regeneration', 'https://images.isbndb.com/covers/00/77/9780452270077.jpg'), - ('1552633470', 'Critical Injuries', 'https://images.isbndb.com/covers/34/72/9781552633472.jpg'), - ('1552630110', 'Getting Over Edgar', 'https://images.isbndb.com/covers/01/12/9781552630112.jpg'), - ('1550135570', 'Charlotte And Claudia Keeping In Touch: A Novel', 'https://images.isbndb.com/covers/55/72/9781550135572.jpg'), - ('0312301731', 'Kabul', 'https://images.isbndb.com/covers/17/36/9780312301736.jpg'), - ('0312267568', 'The Language Of Threads: A Novel', 'https://images.isbndb.com/covers/75/68/9780312267568.jpg'), - ('0521662605', 'Negotiating With The Dead: A Writer On Writing (The Empson Lectures)', 'https://images.isbndb.com/covers/26/04/9780521662604.jpg'), - ('0345419030', 'Tender', 'https://images.isbndb.com/covers/90/33/9780345419033.jpg'), - ('0684850273', 'The Fall Of A Sparrow', 'https://images.isbndb.com/covers/02/76/9780684850276.jpg'), - ('1573229717', 'Miracle At St. Anna', 'https://images.isbndb.com/covers/97/15/9781573229715.jpg'), - ('1573227749', 'The Tesseract', 'https://images.isbndb.com/covers/77/42/9781573227742.jpg'), - ('0440574862', 'Refiner''s Fire: The Life And Adventures Of Marshall Pearl, A Foundling', 'https://images.isbndb.com/covers/48/66/9780440574866.jpg'), - ('0312168675', 'How Long Has This Been Going On (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/86/74/9780312168674.jpg'), - ('0312144504', 'The Year''s Best Fantasy And Horror: Ninth Annual Collection (No.9)', 'https://images.isbndb.com/covers/45/00/9780312144500.jpg'), - ('0671726730', 'To Dance With The White Dog', 'https://images.isbndb.com/covers/67/37/9780671726737.jpg'), - ('0060275855', 'Red Scarf Girl: A Memoir Of The Cultural Revolution', 'https://images.isbndb.com/covers/58/53/9780060275853.jpg'), - ('067944999X', 'The Kiss: A Memoir', 'https://images.isbndb.com/covers/99/97/9780679449997.jpg'), - ('0061099058', 'I Want To Grow Hair, I Want To Grow Up, I Want To Go To Boise (Children Surviving Cancer)', 'https://images.isbndb.com/covers/90/52/9780061099052.jpg'), - ('0486268756', 'The Gold-Bug And Other Tales (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/50/9780486268750.jpg'), - ('0486270645', 'The Necklace And Other Short Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/47/9780486270647.jpg'), - ('0553273353', 'Thomas Jefferson: An Intimate History', 'https://images.isbndb.com/covers/33/59/9780553273359.jpg'), - ('1566475961', 'Na Wahine', 'https://images.isbndb.com/covers/59/69/9781566475969.jpg'), - ('0399133453', 'The Cardinal Of The Kremlin', 'https://images.isbndb.com/covers/34/59/9780399133459.jpg'), - ('0380714752', 'The True Confessions Of Charlotte Doyle', 'https://images.isbndb.com/covers/47/59/9780380714759.jpg'), - ('0805401539', 'Our Sacred Honor: Words Of Advice From The Founders In Stories, Letters, Poems, And Speeches', 'https://images.isbndb.com/covers/15/30/9780805401530.jpg'), - ('0385054580', 'City: Rediscovering The Center', 'https://images.isbndb.com/covers/45/84/9780385054584.jpg'), - ('0812923634', 'The Jury: Trial And Error In The American Courtroom', 'https://images.isbndb.com/covers/36/36/9780812923636.jpg'), - ('0446341339', 'Dunn''s Conundrum', 'https://images.isbndb.com/covers/13/32/9780446341332.jpg'), - ('0671775464', 'Playing Away', 'https://images.isbndb.com/covers/54/69/9780671775469.jpg'), - ('0679454756', 'Gut Symmetries', 'https://images.isbndb.com/covers/47/55/9780679454755.jpg'), - ('0881441791', 'A Mother''s Love Is Made Up Of...', 'https://images.isbndb.com/covers/17/96/9780881441796.jpg'), - ('0684174715', 'The Snows Of Kilimanjaro And Other Stories', 'https://images.isbndb.com/covers/47/16/9780684174716.jpg'), - ('0849934176', 'Mama Get The Hammer! There''s A Fly On Papa''s Head!', 'https://images.isbndb.com/covers/41/79/9780849934179.jpg'), - ('0849937019', 'He''s Gonna Toot And I''m Gonna Scoot', 'https://images.isbndb.com/covers/70/19/9780849937019.jpg'), - ('042519485X', 'Undead And Unwed (Queen Betsy, Book 1)', 'https://images.isbndb.com/covers/48/50/9780425194850.jpg'), - ('0930117018', 'Wahiawa: From Dream To Community', 'https://images.isbndb.com/covers/70/16/9780930117016.jpg'), - ('0553269674', 'The Early Childhood Years: The 2 To 6 Year Old', 'https://images.isbndb.com/covers/96/73/9780553269673.jpg'), - ('0440227828', 'Nobody Else Has To Know (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/78/23/9780440227823.jpg'), - ('0849906873', 'A Requiem For Love', 'https://images.isbndb.com/covers/68/79/9780849906879.jpg'), - ('067179342X', 'The PASSION OF AN ANGEL: THE PASSION OF AN ANGEL', 'https://images.isbndb.com/covers/34/25/9780671793425.jpg'), - ('0375702903', 'A Patchwork Planet: A Novel (Random House Large Print)', 'https://images.isbndb.com/covers/29/07/9780375702907.jpg'), - ('0689821719', 'Mrs Frisby And The Rats Of Nimh', 'https://images.isbndb.com/covers/17/14/9780689821714.jpg'), - ('0060172754', 'Rule Of The Bone', 'https://images.isbndb.com/covers/27/56/9780060172756.jpg'), - ('042517428X', 'The Burning Point', 'https://images.isbndb.com/covers/42/89/9780425174289.jpg'), - ('0446608041', 'Into The Thinking Kingdoms (Journeys Of The Catechist, Book 2)', 'https://images.isbndb.com/covers/80/46/9780446608046.jpg'), - ('0446609307', 'A Triumph Of Souls (Journeys Of The Catechist, Book 3)', 'https://images.isbndb.com/covers/93/02/9780446609302.jpg'), - ('1570649669', 'Dog Days Of The West', 'https://images.isbndb.com/covers/96/60/9781570649660.jpg'), - ('0312038208', 'Animating Maria (School For Manners, Book 5)', 'https://images.isbndb.com/covers/82/05/9780312038205.jpg'), - ('0743458311', 'W3 Women In Deep Time', 'https://images.isbndb.com/covers/83/13/9780743458313.jpg'), - ('0345414462', 'Angle Of Impact', 'https://images.isbndb.com/covers/44/65/9780345414465.jpg'), - ('0380786761', 'Tex And Molly In The Afterlife', 'https://images.isbndb.com/covers/67/63/9780380786763.jpg'), - ('0061094781', 'New York Dead', 'https://images.isbndb.com/covers/47/81/9780061094781.jpg'), - ('0425156745', 'Crimes Of The Heart', 'https://images.isbndb.com/covers/67/42/9780425156742.jpg'), - ('0451197143', 'Leonard Maltin''s Family Movie Guide', 'https://images.isbndb.com/covers/71/46/9780451197146.jpg'), - ('0451191986', 'Vengeance Is Hers', 'https://images.isbndb.com/covers/19/84/9780451191984.jpg'), - ('0812512766', 'Whoo?', 'https://images.isbndb.com/covers/27/62/9780812512762.jpg'), - ('0451458753', 'Angry Lead Skies: A Garrett, P.I., Novel', 'https://images.isbndb.com/covers/87/59/9780451458759.jpg'), - ('0451174976', 'The Mammoth Stone (Signet)', 'https://images.isbndb.com/covers/49/70/9780451174970.jpg'), - ('0425164101', 'Crime Through Time 2', 'https://images.isbndb.com/covers/41/05/9780425164105.jpg'), - ('0553577565', 'Men In Black: A Novel', 'https://images.isbndb.com/covers/75/63/9780553577563.jpg'), - ('0380778726', 'Ruby Slippers, Golden Tears', 'https://images.isbndb.com/covers/87/20/9780380778720.jpg'), - ('0553580256', 'Pawing Through The Past (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/02/59/9780553580259.jpg'), - ('0345362497', 'Magnificat (Galactic Milieu Trilogy)', 'https://images.isbndb.com/covers/24/90/9780345362490.jpg'), - ('0702220957', 'Amy''s Children', 'https://images.isbndb.com/covers/09/51/9780702220951.jpg'), - ('0786868104', 'Cosbyology: Essays And Observations From The Doctor Of Comedy', 'https://images.isbndb.com/covers/81/00/9780786868100.jpg'), - ('1557044791', 'Finding Forrester: A Novel', 'https://images.isbndb.com/covers/47/92/9781557044792.jpg'), - ('0679720227', 'The Fall', 'https://images.isbndb.com/covers/02/25/9780679720225.jpg'), - ('0452282276', 'Round Robin (Elm Creek Quilts Series #2)', 'https://images.isbndb.com/covers/22/78/9780452282278.jpg'), - ('006440031X', 'The First Four Years (Little House)', 'https://images.isbndb.com/covers/03/12/9780064400312.jpg'), - ('0590649191', 'The Firehouse Mystery: The Boxcar Children #56', 'https://images.isbndb.com/covers/91/93/9780590649193.jpg'), - ('0590462245', 'The Littles Have A Wedding (The Littles #4)', 'https://images.isbndb.com/covers/22/42/9780590462242.jpg'), - ('0374453071', 'Moominpappa''s Memoirs', 'https://images.isbndb.com/covers/30/77/9780374453077.jpg'), - ('0380725231', 'Coyote Blue', 'https://images.isbndb.com/covers/52/36/9780380725236.jpg'), - ('0836218817', 'Unnatural Selections', 'https://images.isbndb.com/covers/88/17/9780836218817.jpg'), - ('0553560077', 'Dinosaur Island (Choose Your Own Adventure #138)', 'https://images.isbndb.com/covers/00/77/9780553560077.jpg'), - ('0380800780', 'Legs Benedict:: A Bed-And-breakfast Mystery (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/07/80/9780380800780.jpg'), - ('0312962606', 'The Gourmet Detective (Culinary Mysteries)', 'https://images.isbndb.com/covers/26/09/9780312962609.jpg'), - ('0440944597', 'The Chocolate War', 'https://images.isbndb.com/covers/45/91/9780440944591.jpg'), - ('0451528417', 'The Reader''s Companion To World Literature', 'https://images.isbndb.com/covers/84/14/9780451528414.jpg'), - ('0553239759', 'Pardon Me Youre Stepping On My Eyeball', 'https://images.isbndb.com/covers/97/51/9780553239751.jpg'), - ('0380811804', 'Next Stop, Paradise', 'https://images.isbndb.com/covers/18/09/9780380811809.jpg'), - ('0440223253', 'Women On The Case', 'https://images.isbndb.com/covers/32/52/9780440223252.jpg'), - ('045120834X', 'Murder Of A Snake In The Grass (Scumble River Mysteries, Book 4)', 'https://images.isbndb.com/covers/83/47/9780451208347.jpg'), - ('0451210727', 'Murder Of A Barbie And Ken (Scumble River Mysteries, Book 5)', 'https://images.isbndb.com/covers/07/22/9780451210722.jpg'), - ('0886774616', 'Catfantastic 2 (Daw Book Collectors)', 'https://images.isbndb.com/covers/46/15/9780886774615.jpg'), - ('0061080969', 'Something''s Cooking: An Angie Amalfi Mystery (Angie Amalfi Mysteries)', 'https://images.isbndb.com/covers/09/68/9780061080968.jpg'), - ('082177512X', 'Say No To Joe? (Visitation, Book 1)', 'https://images.isbndb.com/covers/51/27/9780821775127.jpg'), - ('0553562835', 'Sam Walton: Made In America', 'https://images.isbndb.com/covers/28/35/9780553562835.jpg'), - ('0553572350', 'Murder At Monticello (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/23/53/9780553572353.jpg'), - ('0312104952', 'New Orleans Requiem', 'https://images.isbndb.com/covers/49/55/9780312104955.jpg'), - ('067087762X', 'Ranch Of Dreams', 'https://images.isbndb.com/covers/76/21/9780670877621.jpg'), - ('0670826472', 'We Are Still Married: Stories & Letters', 'https://images.isbndb.com/covers/64/76/9780670826476.jpg'), - ('067088796X', 'Me: By Jimmy (Big Boy) Valente', 'https://images.isbndb.com/covers/79/65/9780670887965.jpg'), - ('0446393746', 'Headlines III: Not The Movie, Still The Book', 'https://images.isbndb.com/covers/37/44/9780446393744.jpg'), - ('0312969228', 'The Concubine''s Tattoo (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/92/26/9780312969226.jpg'), - ('0061096105', 'Rough Justice', 'https://images.isbndb.com/covers/61/05/9780061096105.jpg'), - ('0804118906', 'Before Women Had Wings', 'https://images.isbndb.com/covers/89/03/9780804118903.jpg'), - ('0807083054', 'Kindred (Black Women Writers Series)', 'https://images.isbndb.com/covers/30/55/9780807083055.jpg'), - ('0684824728', 'How To Talk So Kids Can Learn', 'https://images.isbndb.com/covers/47/27/9780684824727.jpg'), - ('1592980414', 'The Dance Of Trees', 'https://images.isbndb.com/covers/04/13/9781592980413.jpg'), - ('0312327188', 'Eddie Would Go: The Story Of Eddie Aikau, Hawaiian Hero And Pioneer Of Big Wave Surfing', 'https://images.isbndb.com/covers/71/87/9780312327187.jpg'), - ('0027582000', 'The Lion, The Witch And The Wardrobe (The Chronicles Of Narnia)', 'https://images.isbndb.com/covers/20/00/9780027582000.jpg'), - ('0670874914', 'The Veil Of Snows', 'https://images.isbndb.com/covers/49/10/9780670874910.jpg'), - ('0670868434', 'A City In Winter', 'https://images.isbndb.com/covers/84/38/9780670868438.jpg'), - ('0395498589', 'Swan Lake', 'https://images.isbndb.com/covers/85/83/9780395498583.jpg'), - ('1573220825', 'An Instance Of The Fingerpost', 'https://images.isbndb.com/covers/08/28/9781573220828.jpg'), - ('0140548572', 'Cats Know Best (Pied Piper Paperbacks)', 'https://images.isbndb.com/covers/85/70/9780140548570.jpg'), - ('0807563277', 'The Panther Mystery (The Boxcar Children Mysteries #66)', 'https://images.isbndb.com/covers/32/74/9780807563274.jpg'), - ('0345352491', 'How To Be A Financially Secure Woman', 'https://images.isbndb.com/covers/24/91/9780345352491.jpg'), - ('0395713730', 'NPR INTERVIEWS 1994', 'https://images.isbndb.com/covers/37/30/9780395713730.jpg'), - ('0385176228', 'The Neverending Story', 'https://images.isbndb.com/covers/62/24/9780385176224.jpg'), - ('0345335236', 'The Frugal Gourmet', 'https://images.isbndb.com/covers/52/34/9780345335234.jpg'), - ('0312112629', 'Depeche Mode: Some Great Reward', 'https://images.isbndb.com/covers/26/22/9780312112622.jpg'), - ('0156001128', 'Writers & Company', 'https://images.isbndb.com/covers/11/20/9780156001120.jpg'), - ('0688120202', 'Farewell To My Concubine: A Novel', 'https://images.isbndb.com/covers/02/07/9780688120207.jpg'), - ('156619945X', 'I Ching: The Classic Chinese Oracle Of Change [The First Complete Translation With Concordance]', 'https://images.isbndb.com/covers/94/52/9781566199452.jpg'), - ('0809117541', 'Hope For The Flowers', 'https://images.isbndb.com/covers/75/43/9780809117543.jpg'), - ('0451528212', 'The Bible''s Greatest Stories (Signet Classics)', 'https://images.isbndb.com/covers/82/16/9780451528216.jpg'), - ('0380794012', 'Twentynine Palms: A True Story Of Murder, Marines, And The Mojave', 'https://images.isbndb.com/covers/40/10/9780380794010.jpg'), - ('0439087171', 'Read To Your Bunny (Max & Ruby)', 'https://images.isbndb.com/covers/71/79/9780439087179.jpg'), - ('0020223722', 'How Green Was My Valley', 'https://images.isbndb.com/covers/37/26/9780020223726.jpg'), - ('0380009471', 'The Dollmaker', 'https://images.isbndb.com/covers/94/73/9780380009473.jpg'), - ('0156189216', 'The Collected Stories Of Eudora Welty', 'https://images.isbndb.com/covers/92/17/9780156189217.jpg'), - ('0743466527', 'Fall On Your Knees (Oprah''s Book Club)', 'https://images.isbndb.com/covers/65/23/9780743466523.jpg'), - ('0440218101', 'Elephantasm', 'https://images.isbndb.com/covers/81/04/9780440218104.jpg'), - ('0440404193', 'Are You There God? It''s Me, Margaret', 'https://images.isbndb.com/covers/41/94/9780440404194.jpg'), - ('0874832772', 'Raised Catholic (American Storytelling)', 'https://images.isbndb.com/covers/27/78/9780874832778.jpg'), - ('0061097667', 'Young Wives', 'https://images.isbndb.com/covers/76/69/9780061097669.jpg'), - ('0440229510', 'The Gadget', 'https://images.isbndb.com/covers/95/13/9780440229513.jpg'), - ('0671521500', 'Everlasting Love: Connecting Rooms / Resurrection / Lake Of Dreams / Role Of A Lifetime / Tricks Of Fate', 'https://images.isbndb.com/covers/15/09/9780671521509.jpg'), - ('1551668459', 'The Cabin', 'https://images.isbndb.com/covers/84/51/9781551668451.jpg'), - ('0934257507', 'Army Brat: A Memoir', 'https://images.isbndb.com/covers/75/03/9780934257503.jpg'), - ('0380817624', 'The Observatory: A Novel', 'https://images.isbndb.com/covers/76/27/9780380817627.jpg'), - ('0345422473', 'Gods And Generals', 'https://images.isbndb.com/covers/24/77/9780345422477.jpg'), - ('0394578074', 'Chili Dawgs Always Bark At Night', 'https://images.isbndb.com/covers/80/71/9780394578071.jpg'), - ('0060193700', 'Why She Left Us', 'https://images.isbndb.com/covers/37/06/9780060193706.jpg'), - ('0618033874', 'Into The Tangle Of Friendship : A Memoir Of The Things That Matter', 'https://images.isbndb.com/covers/38/74/9780618033874.jpg'), - ('034530263X', '187 Ways To Amuse A Bored Cat', 'https://images.isbndb.com/covers/26/32/9780345302632.jpg'), - ('0440495563', 'Wizard In The Tree, The', 'https://images.isbndb.com/covers/55/67/9780440495567.jpg'), - ('0945397542', 'Fashion Means Your Fur Hat Is Dead: A Guide To Good Manners And Social Survival In Alaska', 'https://images.isbndb.com/covers/75/40/9780945397540.jpg'), - ('034543885X', 'Redemption Song: A Novel', 'https://images.isbndb.com/covers/88/50/9780345438850.jpg'), - ('0740718770', 'Mikwright Family Style', 'https://images.isbndb.com/covers/87/79/9780740718779.jpg'), - ('0385304854', 'A Newbery Christmas', 'https://images.isbndb.com/covers/48/56/9780385304856.jpg'), - ('0767916220', 'A Christmas Story: The Book That Inspired The Hilarious Classic Film', 'https://images.isbndb.com/covers/62/26/9780767916226.jpg'), - ('0786863153', 'Pour Your Heart Into It: How Starbucks Built A Company One Cup At A Time', 'https://images.isbndb.com/covers/31/50/9780786863150.jpg'), - ('0141001976', 'Blanche Passes Go', 'https://images.isbndb.com/covers/19/75/9780141001975.jpg'), - ('0874779901', 'Everything In Its Place: My Trials And Triumphs With Obsessive Compulsive Disorder', 'https://images.isbndb.com/covers/99/05/9780874779905.jpg'), - ('0836230671', 'Witty Women: Wise, Wicked, And Wonderful Words', 'https://images.isbndb.com/covers/06/73/9780836230673.jpg'), - ('0836218655', 'Wiener Dog Art: A Far Side Collection', 'https://images.isbndb.com/covers/86/57/9780836218657.jpg'), - ('0836220986', 'The Far Side ® Observer', 'https://images.isbndb.com/covers/09/88/9780836220988.jpg'), - ('0836220730', 'It Came From The Far Side ®', 'https://images.isbndb.com/covers/07/35/9780836220735.jpg'), - ('0345330455', 'Garfield''s Halloween Adventure (Formerly Titled Garfield In Disguise)', 'https://images.isbndb.com/covers/04/51/9780345330451.jpg'), - ('0345326342', 'GARFIELD ROLLS ON, His Eleventh Book [11th]', 'https://images.isbndb.com/covers/63/48/9780345326348.jpg'), - ('0688108059', 'The Eentsy, Weentsy Spider: Fingerplays And Action Rhymes', 'https://images.isbndb.com/covers/80/52/9780688108052.jpg'), - ('0689818769', 'Frindle', 'https://images.isbndb.com/covers/87/69/9780689818769.jpg'), - ('0679006826', 'Fodor''s Exploring Hawaii, 3rd Edition (Exploring Guides)', 'https://images.isbndb.com/covers/68/24/9780679006824.jpg'), - ('0811801802', 'Sabine''s Notebook: In Which The Extraordinary Correspondence Of Griffin & Sabine Continues', 'https://images.isbndb.com/covers/18/05/9780811801805.jpg'), - ('0451167872', 'A Cat In The Manger (An Alice Nestleton Mystery)', 'https://images.isbndb.com/covers/78/73/9780451167873.jpg'), - ('0671008978', 'Timepiece', 'https://images.isbndb.com/covers/89/70/9780671008970.jpg'), - ('1569248281', 'The Tick: The Naked City', 'https://images.isbndb.com/covers/82/87/9781569248287.jpg'), - ('0684815990', 'Mine Eyes Have Seen: A First-Person History Of The Events That Shaped America', 'https://images.isbndb.com/covers/59/92/9780684815992.jpg'), - ('087754042X', 'The World Encyclopedia Of Comics', 'https://images.isbndb.com/covers/04/27/9780877540427.jpg'), - ('0877796130', 'What''s In A Name?: Reflections Of An Irrepressible Name Collector', 'https://images.isbndb.com/covers/61/38/9780877796138.jpg'), - ('038078047X', '20,001 Names For Baby', 'https://images.isbndb.com/covers/04/71/9780380780471.jpg'), - ('0671683829', 'Baby Name Personality Book', 'https://images.isbndb.com/covers/38/25/9780671683825.jpg'), - ('0345377702', 'Me: Stories Of My Life', 'https://images.isbndb.com/covers/77/08/9780345377708.jpg'), - ('0345433017', 'Creepy Susie: And 13 Other Tragic Tales For Troubled Children', 'https://images.isbndb.com/covers/30/15/9780345433015.jpg'), - ('0525938346', 'The African-American Kitchen: Cooking From Our Heritage', 'https://images.isbndb.com/covers/83/47/9780525938347.jpg'), - ('0060960833', 'Cheaper And Better: Homemade Alternatives', 'https://images.isbndb.com/covers/08/34/9780060960834.jpg'), - ('0809276984', 'Lexicon Of Jewish Cooking', 'https://images.isbndb.com/covers/69/81/9780809276981.jpg'), - ('0930878450', 'Lee Wade''s Korean Cookery', 'https://images.isbndb.com/covers/84/50/9780930878450.jpg'), - ('0767903617', 'The Minimalist Cooks At Home: Recipes That Give You More Flavor From Fewer Ingredients In Less Time', 'https://images.isbndb.com/covers/36/15/9780767903615.jpg'), - ('1563053462', 'Miami Spice: The New Florida Cuisine', 'https://images.isbndb.com/covers/34/67/9781563053467.jpg'), - ('1563052377', 'Sheila Lukins All Around The World Cookbook', 'https://images.isbndb.com/covers/23/78/9781563052378.jpg'), - ('0517881225', 'Great Good Food: Luscious Lower-Fat Cooking', 'https://images.isbndb.com/covers/12/24/9780517881224.jpg'), - ('0060955597', 'What To Cook When You Think There''s Nothing In The House To Eat: More Than 175 Easy Recipes And Meal Ideas', 'https://images.isbndb.com/covers/55/95/9780060955595.jpg'), - ('0696010976', 'Better Homes And Gardens Cooking Chinese', 'https://images.isbndb.com/covers/09/72/9780696010972.jpg'), - ('1556701799', 'Scandinavian Feasts', 'https://images.isbndb.com/covers/17/95/9781556701795.jpg'), - ('0912656506', 'Crepe Cookery', 'https://images.isbndb.com/covers/65/02/9780912656502.jpg'), - ('1859674801', 'A Flash In The Pan: 100 Fast And Furious Recipes For Wok And Stir-Fry', 'https://images.isbndb.com/covers/48/02/9781859674802.jpg'), - ('1579590225', 'Bread, Tomato, Garlic: Quick Cooking With 3 Main Ingredients', 'https://images.isbndb.com/covers/02/22/9781579590222.jpg'), - ('0316139289', 'The Ubiquitous Shrimp: From Simple To Exotic, From Feasts To Snacks, All The Wonderful Ways To Savor America''s Favorite Seafood', 'https://images.isbndb.com/covers/92/81/9780316139281.jpg'), - ('0688113133', 'Unplugged Kitchen: A Return To The Simple, Authentic Joys Of Cooking', 'https://images.isbndb.com/covers/31/31/9780688113131.jpg'), - ('0761106332', 'Rosie''s Bakery All-Butter, Fresh Cream, Sugar-Packed, No-Holds-Barred Baking Book', 'https://images.isbndb.com/covers/63/33/9780761106333.jpg'), - ('0762400072', 'White Dog Cafe Cookbook: Multicultural Recipes And Tales Of Adventure From Philadelphia''s Revolutionary Restaurant', 'https://images.isbndb.com/covers/00/72/9780762400072.jpg'), - ('0894802046', 'The Silver Palate Cookbook', 'https://images.isbndb.com/covers/20/41/9780894802041.jpg'), - ('0684818701', 'The 1997 Joy Of Cooking', 'https://images.isbndb.com/covers/87/02/9780684818702.jpg'), - ('0028610105', 'How To Cook Everything: Simple Recipes For Great Food', 'https://images.isbndb.com/covers/01/08/9780028610108.jpg'), - ('076110481X', 'Desperation Dinners', 'https://images.isbndb.com/covers/48/10/9780761104810.jpg'), - ('0894803921', 'The New Basics Cookbook', 'https://images.isbndb.com/covers/39/25/9780894803925.jpg'), - ('0785813640', 'Fiesta! A Celebration Of Latin Hospitality', 'https://images.isbndb.com/covers/36/44/9780785813644.jpg'), - ('1563051729', 'Terrific Pacific Cookbook', 'https://images.isbndb.com/covers/17/22/9781563051722.jpg'), - ('0024103411', 'Food For Fifty: 9th Edition', 'https://images.isbndb.com/covers/34/13/9780024103413.jpg'), - ('0898151899', 'White Trash Cooking (Jargon)', 'https://images.isbndb.com/covers/18/93/9780898151893.jpg'), - ('0836217268', 'Far Side Gallery 4', 'https://images.isbndb.com/covers/72/61/9780836217261.jpg'), - ('0896103145', 'Driving And Discovering Oahu (Driving And Discovering Books)', 'https://images.isbndb.com/covers/31/46/9780896103146.jpg'), - ('0882681265', 'Overcoming Migraines: A Comprehensive Guide To Treatment And Prevention By A Survivor', 'https://images.isbndb.com/covers/12/69/9780882681269.jpg'), - ('044652705X', 'Companions In Courage : Triumphant Tales Of Heroic Athletes', 'https://images.isbndb.com/covers/70/57/9780446527057.jpg'), - ('0786862343', 'No Shirt, No Shoes... No Problem!', 'https://images.isbndb.com/covers/23/44/9780786862344.jpg'), - ('1561792535', 'The Way They Learn', 'https://images.isbndb.com/covers/25/35/9781561792535.jpg'), - ('0684844001', 'The MOTLEY FOOL''S RULE BREAKERS, RULE MAKERS: THE FOOLISH GUIDE TO PICKING STOCKS', 'https://images.isbndb.com/covers/40/08/9780684844008.jpg'), - ('0316099813', 'Help Me To Help My Child: A Sourcebook For Parents Of Learning-Disabled Children', 'https://images.isbndb.com/covers/98/13/9780316099813.jpg'), - ('0060094745', 'Claws', 'https://images.isbndb.com/covers/47/44/9780060094744.jpg'), - ('0803709773', 'Ryan White: My Own Story', 'https://images.isbndb.com/covers/97/75/9780803709775.jpg'), - ('076790849X', 'The No Spin Zone: Confrontations With The Powerful And Famous In America', 'https://images.isbndb.com/covers/84/98/9780767908498.jpg'), - ('0452267072', 'The Challenge Of Parenthood (Plume)', 'https://images.isbndb.com/covers/70/77/9780452267077.jpg'), - ('0913589357', 'Parents Are Teachers, Too: Enriching Your Child''s First Six Years (Little Hands(r))', 'https://images.isbndb.com/covers/93/59/9780913589359.jpg'), - ('0894861611', 'Each Day A New Beginning: Daily Meditations For Women', 'https://images.isbndb.com/covers/16/11/9780894861611.jpg'), - ('0684867672', 'The Five Minute Iliad Other Instant Classics: Great Books For The Short Attention Span', 'https://images.isbndb.com/covers/76/70/9780684867670.jpg'), - ('0060977744', 'Crazy Ladies: A Novel', 'https://images.isbndb.com/covers/77/40/9780060977740.jpg'), - ('0060931221', 'The Last Report On The Miracles At Little No Horse: A Novel', 'https://images.isbndb.com/covers/12/23/9780060931223.jpg'), - ('014050639X', 'Each Peach Pear Plum (Picture Puffins)', 'https://images.isbndb.com/covers/63/96/9780140506396.jpg'), - ('0870679546', 'Whoreson: The Story Of A Ghetto Pimp', 'https://images.isbndb.com/covers/95/44/9780870679544.jpg'), - ('0618043012', 'Practical English Handbook Eleventh Edition', 'https://images.isbndb.com/covers/30/19/9780618043019.jpg'), - ('0590458981', 'The Glory Field', 'https://images.isbndb.com/covers/89/86/9780590458986.jpg'), - ('0679744398', 'All The Pretty Horses (The Border Trilogy, Book 1)', 'https://images.isbndb.com/covers/43/99/9780679744399.jpg'), - ('0140177388', 'Cannery Row', 'https://images.isbndb.com/covers/73/81/9780140177381.jpg'), - ('0439076668', 'Marie Antoinette: Princess Of Versailles, Austria-France, 1769 (The Royal Diaries)', 'https://images.isbndb.com/covers/66/61/9780439076661.jpg'), - ('0590819755', 'Cleopatra VII: Daughter Of The Nile, Egypt, 57 B.C. (The Royal Diaries)', 'https://images.isbndb.com/covers/97/56/9780590819756.jpg'), - ('0553251996', 'Singin'' And Swingin'' And Gettin'' Merry Like Christmas', 'https://images.isbndb.com/covers/19/99/9780553251999.jpg'), - ('0935180915', 'Pearl', 'https://images.isbndb.com/covers/09/16/9780935180916.jpg'), - ('0786000821', 'Rush To Us/Americans Hail Rush Limbaugh', 'https://images.isbndb.com/covers/08/21/9780786000821.jpg'), - ('0671563076', 'Gump & Co.', 'https://images.isbndb.com/covers/30/73/9780671563073.jpg'), - ('0441359175', 'I Will Fear No Evil', 'https://images.isbndb.com/covers/91/72/9780441359172.jpg'), - ('0671522663', 'Better Times Than These', 'https://images.isbndb.com/covers/26/67/9780671522667.jpg'), - ('0385185596', 'Laugh Book, The', 'https://images.isbndb.com/covers/55/92/9780385185592.jpg'), - ('0395866502', 'The Book Of Ruth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/65/04/9780395866504.jpg'), - ('0849908280', 'One Life At A Time', 'https://images.isbndb.com/covers/82/86/9780849908286.jpg'), - ('0824816285', 'Twilight Over Burma: My Life As A Shan Princess (Kolowalu Books)', 'https://images.isbndb.com/covers/62/85/9780824816285.jpg'), - ('0399504877', 'Sound Of Waves', 'https://images.isbndb.com/covers/48/77/9780399504877.jpg'), - ('0060964073', 'Babycakes', 'https://images.isbndb.com/covers/40/78/9780060964078.jpg'), - ('0060964065', 'Further Tales Of The City', 'https://images.isbndb.com/covers/40/61/9780060964061.jpg'), - ('0060964057', 'More Tales Of The City: Volume Two In The Tales Of The City Series', 'https://images.isbndb.com/covers/40/54/9780060964054.jpg'), - ('1573061727', 'Christmas Talk Story (Book & CD)', 'https://images.isbndb.com/covers/17/28/9781573061728.jpg'), - ('093049248X', 'Oahu The Gathering Place', 'https://images.isbndb.com/covers/24/89/9780930492489.jpg'), - ('0689866976', 'Cats, Cats, Cats!', 'https://images.isbndb.com/covers/69/75/9780689866975.jpg'), - ('0743442911', 'Turning On The Girls', 'https://images.isbndb.com/covers/29/16/9780743442916.jpg'), - ('0060256680', 'Where The Sidewalk Ends: Poems And Drawings', 'https://images.isbndb.com/covers/66/85/9780060256685.jpg'), - ('0060256745', 'A Light In The Attic', 'https://images.isbndb.com/covers/67/46/9780060256746.jpg'), - ('0425166422', 'Evans Above (Constable Evans Mystery)', 'https://images.isbndb.com/covers/64/20/9780425166420.jpg'), - ('0312965478', 'Diamond Head (John Caine Mysteries)', 'https://images.isbndb.com/covers/54/71/9780312965471.jpg'), - ('0380778785', 'Auntie Mayhem (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/87/82/9780380778782.jpg'), - ('0374525234', 'It''s A Slippery Slope', 'https://images.isbndb.com/covers/52/31/9780374525231.jpg'), - ('0804816255', 'Even Monkeys Fall From Trees (P): The Wit And Wisdom Of Japanese Proverbs', 'https://images.isbndb.com/covers/62/50/9780804816250.jpg'), - ('0679411089', 'Talk: NPR''s Susan Stamberg Considers All Things', 'https://images.isbndb.com/covers/10/86/9780679411086.jpg'), - ('0871134942', 'A Single Tear: A Family''s Persecution, Love, And Endurance In Communist China', 'https://images.isbndb.com/covers/49/43/9780871134943.jpg'), - ('0374423075', 'Finn Family Moomintroll', 'https://images.isbndb.com/covers/30/70/9780374423070.jpg'), - ('0312959966', 'Cracker To Say I Love You', 'https://images.isbndb.com/covers/99/68/9780312959968.jpg'), - ('0060987510', 'These Is My Words: The Diary Of Sarah Agnes Prine, 1881-1901 Arizona Territories', 'https://images.isbndb.com/covers/75/10/9780060987510.jpg'), - ('0140468811', 'The New Read-aloud Handbook', 'https://images.isbndb.com/covers/88/16/9780140468816.jpg'), - ('0786885416', 'The Hungry Ocean: A Swordboat Captain''s Journey', 'https://images.isbndb.com/covers/54/11/9780786885411.jpg'), - ('0395860296', 'Kowloon Tong', 'https://images.isbndb.com/covers/02/98/9780395860298.jpg'), - ('0802115454', 'N.P.: A Novel', 'https://images.isbndb.com/covers/54/54/9780802115454.jpg'), - ('0451206363', 'Susie, Sadly, And The Black Torpedo Of Doom', 'https://images.isbndb.com/covers/63/67/9780451206367.jpg'), - ('0140148450', 'Dear Dad: Letters From An Adult Child', 'https://images.isbndb.com/covers/84/59/9780140148459.jpg'), - ('0020446500', 'Z For Zachariah', 'https://images.isbndb.com/covers/65/07/9780020446507.jpg'), - ('0736401954', 'Disney''s 102 Dalmatians : A Read-Aloud Storybook', 'https://images.isbndb.com/covers/19/51/9780736401951.jpg'), - ('0380731398', 'Blu''s Hanging', 'https://images.isbndb.com/covers/13/98/9780380731398.jpg'), - ('0435905554', 'So Long A Letter (African Writers)', 'https://images.isbndb.com/covers/55/52/9780435905552.jpg'), - ('031242258X', 'Dress Codes: Of Three Girlhoods--My Mother''s, My Father''s, And Mine', 'https://images.isbndb.com/covers/25/85/9780312422585.jpg'), - ('0740713957', 'Fresh For ''01... You Suckas: A Boondocks Collection', 'https://images.isbndb.com/covers/39/58/9780740713958.jpg'), - ('0609601032', 'Douglas Adams''s Starship Titanic', 'https://images.isbndb.com/covers/10/37/9780609601037.jpg'), - ('0760700761', 'The Constitution Of The United States Of America', 'https://images.isbndb.com/covers/07/61/9780760700761.jpg'), - ('0786882506', 'Sling Blade: A Screenplay', 'https://images.isbndb.com/covers/25/02/9780786882502.jpg'), - ('1880985020', 'High Adventure In The Great Outdoors', 'https://images.isbndb.com/covers/50/21/9781880985021.jpg'), - ('0871566230', 'Reweaving The World: The Emergence Of Ecofeminism', 'https://images.isbndb.com/covers/62/32/9780871566232.jpg'), - ('0807014133', 'Gyn/Ecology: The Metaethics Of Radical Feminism', 'https://images.isbndb.com/covers/41/34/9780807014134.jpg'), - ('0868614726', 'Daughters Of The Dreaming', 'https://images.isbndb.com/covers/47/24/9780868614724.jpg'), - ('0060924926', 'Further Tales Of The City (Tales Of The City Series, V. 3)', 'https://images.isbndb.com/covers/49/28/9780060924928.jpg'), - ('0394752910', 'The Cross: Kristin Lavransdatter, Vol. 3', 'https://images.isbndb.com/covers/29/14/9780394752914.jpg'), - ('0679734406', 'Room Temperature', 'https://images.isbndb.com/covers/44/06/9780679734406.jpg'), - ('0679451145', 'The Island Of The Colorblind', 'https://images.isbndb.com/covers/11/43/9780679451143.jpg'), - ('0385298293', 'Little Big Man', 'https://images.isbndb.com/covers/82/92/9780385298292.jpg'), - ('0684852756', 'Intimacy: A Novel', 'https://images.isbndb.com/covers/27/51/9780684852751.jpg'), - ('0671892614', 'SHADOW SONG', 'https://images.isbndb.com/covers/26/16/9780671892616.jpg'), - ('0525934197', 'Strange Days: My Life With And Without Jim Morrison', 'https://images.isbndb.com/covers/41/96/9780525934196.jpg'), - ('0440486971', 'The Smartest Bear And His Brother Oliver', 'https://images.isbndb.com/covers/69/78/9780440486978.jpg'), - ('0440401038', 'Dr. Dolittle''s Garden', 'https://images.isbndb.com/covers/10/32/9780440401032.jpg'), - ('0763611999', 'I Saw Esau: The Schoolchild''s Pocket Book', 'https://images.isbndb.com/covers/19/96/9780763611996.jpg'), - ('0515128872', 'Checkered Flag: Firewall', 'https://images.isbndb.com/covers/88/71/9780515128871.jpg'), - ('0671000721', 'SEAL FORCE ALPHA', 'https://images.isbndb.com/covers/07/21/9780671000721.jpg'), - ('0316460842', 'Just Plain Folks: Original Tales Of Living, Loving, Longing, And Learning, As Told By A Perfectly Ordinary, Quite Commonly Sensible, And Absolutely Awe-Inspiring Colore', 'https://images.isbndb.com/covers/08/42/9780316460842.jpg'), - ('0439162521', 'Clifford''s Schoolhouse', 'https://images.isbndb.com/covers/25/24/9780439162524.jpg'), - ('0809232057', 'Unbelievably Good Deals That You Absoultely Can''t Get Unless You''re A Parent (Unbelievably Good Deals That You Absolutely Can''t Get Unless You''re A Parent)', 'https://images.isbndb.com/covers/20/55/9780809232055.jpg'), - ('0590406205', 'Stuart Little', 'https://images.isbndb.com/covers/62/08/9780590406208.jpg'), - ('0590213113', 'P.S. Longer Letter Later', 'https://images.isbndb.com/covers/31/10/9780590213110.jpg'), - ('0688046266', 'Encyclopedia Brown And The Case Of The Mysterious Handprints', 'https://images.isbndb.com/covers/62/62/9780688046262.jpg'), - ('0446522570', 'Propeller One-Way Night Coach: A Fable For All Ages', 'https://images.isbndb.com/covers/25/71/9780446522571.jpg'), - ('0151006040', 'Odd Girl Out: The Hidden Culture Of Aggression In Girls', 'https://images.isbndb.com/covers/60/45/9780151006045.jpg'), - ('0060955694', 'I Don''t Know But I''ve Been Told: A Novel', 'https://images.isbndb.com/covers/56/94/9780060955694.jpg'), - ('0763615676', 'Burger Wuss', 'https://images.isbndb.com/covers/56/73/9780763615673.jpg'), - ('0152018255', 'No Mirrors In My Nana''s House', 'https://images.isbndb.com/covers/82/52/9780152018252.jpg'), - ('1564020703', 'Don Quixote', 'https://images.isbndb.com/covers/07/03/9781564020703.jpg'), - ('0375810838', 'You Read To Me & I''ll Read To You: Stories To Share From The 20th Century', 'https://images.isbndb.com/covers/08/31/9780375810831.jpg'), - ('0688106390', 'My Father Is In The Navy', 'https://images.isbndb.com/covers/63/93/9780688106393.jpg'), - ('0761121323', 'What To Expect When You''re Expecting', 'https://images.isbndb.com/covers/13/29/9780761121329.jpg'), - ('0023376627', 'The Conscious Reader', 'https://images.isbndb.com/covers/66/27/9780023376627.jpg'), - ('0062734547', 'Terms Of Adornment: The Ultimate Guide To Accessories', 'https://images.isbndb.com/covers/45/49/9780062734549.jpg'), - ('0060931213', 'Dreamland', 'https://images.isbndb.com/covers/12/16/9780060931216.jpg'), - ('0517093650', 'Ain''t I A Woman! A Book Of Women''s Poetry From Around The World', 'https://images.isbndb.com/covers/36/58/9780517093658.jpg'), - ('0307020460', 'Scuffy The Tugboat And His Adventures Down The River', 'https://images.isbndb.com/covers/04/68/9780307020468.jpg'), - ('0440412234', 'Child Of The Silent Night', 'https://images.isbndb.com/covers/22/36/9780440412236.jpg'), - ('0064402053', 'Sarah, Plain And Tall', 'https://images.isbndb.com/covers/20/57/9780064402057.jpg'), - ('0425095517', 'Mrs. Mike', 'https://images.isbndb.com/covers/55/15/9780425095515.jpg'), - ('0451163443', 'Brighton Beach Memoirs (Signet)', 'https://images.isbndb.com/covers/34/48/9780451163448.jpg'), - ('014017737X', 'The Pearl', 'https://images.isbndb.com/covers/73/74/9780140177374.jpg'), - ('0449130320', 'Dolly Hit Me Back!', 'https://images.isbndb.com/covers/03/22/9780449130322.jpg'), - ('0671041444', 'Angel: City Of (Angel)', 'https://images.isbndb.com/covers/14/41/9780671041441.jpg'), - ('1573061565', 'Honolulu Homicide: Murder And Mayhem In Paradise', 'https://images.isbndb.com/covers/15/68/9781573061568.jpg'), - ('1566473209', 'Obake: Ghost Stories In Hawaii (Mutual Publishing Paperback)', 'https://images.isbndb.com/covers/32/00/9781566473200.jpg'), - ('0440952522', 'Many Waters', 'https://images.isbndb.com/covers/25/27/9780440952527.jpg'), - ('188712876X', 'Get Your War On', 'https://images.isbndb.com/covers/87/66/9781887128766.jpg'), - ('0590981811', 'My Side Of The Mountain', 'https://images.isbndb.com/covers/18/11/9780590981811.jpg'), - ('0553274422', 'The Incredible Journey', 'https://images.isbndb.com/covers/44/24/9780553274424.jpg'), - ('0064403319', 'Harriet The Spy', 'https://images.isbndb.com/covers/33/13/9780064403313.jpg'), - ('0380818973', 'Asking For Trouble: A Novel', 'https://images.isbndb.com/covers/89/76/9780380818976.jpg'), - ('0440409683', 'The Grand Escape', 'https://images.isbndb.com/covers/96/87/9780440409687.jpg'), - ('1573229628', 'Prozac Nation (Movie Tie-In)', 'https://images.isbndb.com/covers/96/23/9781573229623.jpg'), - ('1888363363', 'Bloodchild And Other Stories', 'https://images.isbndb.com/covers/33/64/9781888363364.jpg'), - ('0525936327', 'Foxfire: Confessions Of A Girl Gang', 'https://images.isbndb.com/covers/63/29/9780525936329.jpg'), - ('0890876797', 'I Do: A Guide To Creating Your Own Wedding Ceremony', 'https://images.isbndb.com/covers/67/94/9780890876794.jpg'), - ('0201626705', 'Sleeping At The Starlight Motel: And Other Adventures On The Way Back Home', 'https://images.isbndb.com/covers/67/04/9780201626704.jpg'), - ('0671204971', 'Time And Again', 'https://images.isbndb.com/covers/49/76/9780671204976.jpg'), - ('0440322049', 'Ellis Island', 'https://images.isbndb.com/covers/20/47/9780440322047.jpg'), - ('0140328696', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/86/91/9780140328691.jpg'), - ('0156028778', 'The Crimson Petal And The White', 'https://images.isbndb.com/covers/87/76/9780156028776.jpg'), - ('0916291456', 'Everyone Poops (My Body Science)', 'https://images.isbndb.com/covers/14/57/9780916291457.jpg'), - ('0375826688', 'Eragon (Inheritance, Book 1)', 'https://images.isbndb.com/covers/66/89/9780375826689.jpg'), - ('0743244427', 'A Mighty Heart: The Brave Life And Death Of My Husband, Danny Pearl', 'https://images.isbndb.com/covers/44/28/9780743244428.jpg'), - ('0910043590', 'Intersecting Circles: The Voices Of Hapa Women In Poetry And Prose (Bamboo Ridge)', 'https://images.isbndb.com/covers/35/95/9780910043595.jpg'), - ('0451196856', 'The Most Wanted', 'https://images.isbndb.com/covers/68/59/9780451196859.jpg'), - ('0395304482', 'Jumanji', 'https://images.isbndb.com/covers/44/88/9780395304488.jpg'), - ('0590630954', 'Harvey Potters Balloon Farm', 'https://images.isbndb.com/covers/09/55/9780590630955.jpg'), - ('0899198546', 'The Owl And The Pussy-Cat', 'https://images.isbndb.com/covers/85/45/9780899198545.jpg'), - ('0201107120', 'Let''s Give Kitty A Bath', 'https://images.isbndb.com/covers/71/28/9780201107128.jpg'), - ('0812521021', 'Spectre', 'https://images.isbndb.com/covers/10/23/9780812521023.jpg'), - ('0446351709', 'One L: An Inside Account Of Life In The First Year At Harvard Law School', 'https://images.isbndb.com/covers/17/06/9780446351706.jpg'), - ('0140390316', 'The Jungle (The Penguin American Library)', 'https://images.isbndb.com/covers/03/15/9780140390315.jpg'), - ('0786704608', 'James Herriot: The Life Of A Country Vet', 'https://images.isbndb.com/covers/46/06/9780786704606.jpg'), - ('0684853779', 'Bobos In Paradise: The New Upper Class And How They Got There', 'https://images.isbndb.com/covers/37/72/9780684853772.jpg'), - ('0889104999', 'Better Than Life', 'https://images.isbndb.com/covers/49/90/9780889104990.jpg'), - ('1555913458', 'Diplomatic Dance: The New Embassy Life In America', 'https://images.isbndb.com/covers/34/58/9781555913458.jpg'), - ('0316548189', 'Long Walk To Freedom: The Autobiography Of Nelson Mandela', 'https://images.isbndb.com/covers/81/82/9780316548182.jpg'), - ('0385468628', 'We Who Believe In Freedom', 'https://images.isbndb.com/covers/86/26/9780385468626.jpg'), - ('0385336780', 'Broken Music: A Memoir', 'https://images.isbndb.com/covers/67/89/9780385336789.jpg'), - ('0399238794', 'The Sands Of Time: A Hermux Tantamoq Adventure (Hermux Tantamoq Adventures)', 'https://images.isbndb.com/covers/87/96/9780399238796.jpg'), - ('0374529035', 'Naked In Baghdad: The Iraq War As Seen By NPR''s Correspondent Anne Garrels', 'https://images.isbndb.com/covers/90/31/9780374529031.jpg'), - ('0385507836', 'Prisoners Of Hope: The Story Of Our Captivity And Freedom In Afghanistan', 'https://images.isbndb.com/covers/78/37/9780385507837.jpg'), - ('0060953225', 'More Mirth Of A Nation : The Best Contemporary Humor', 'https://images.isbndb.com/covers/32/25/9780060953225.jpg'), - ('0553151657', 'Roald Dahl''s James And The Giant Peach', 'https://images.isbndb.com/covers/16/57/9780553151657.jpg'), - ('0553150979', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/09/71/9780553150971.jpg'), - ('1578400619', 'Typee (Classics Illustrated)', 'https://images.isbndb.com/covers/06/14/9781578400614.jpg'), - ('1578401860', 'Faust (Classics Illustrated)', 'https://images.isbndb.com/covers/18/64/9781578401864.jpg'), - ('1578400600', 'Uncle Tom''s Cabin (Classic Illustrated)', 'https://images.isbndb.com/covers/06/07/9781578400607.jpg'), - ('0385315511', 'Drinking: A Love Story', 'https://images.isbndb.com/covers/55/17/9780385315517.jpg'), - ('0877845824', 'Parents In Pain : Overcoming The Hurt And Frustration Of Problem Children', 'https://images.isbndb.com/covers/58/29/9780877845829.jpg'), - ('0813511690', 'Quicksand And Passing (American Women Writers)', 'https://images.isbndb.com/covers/16/96/9780813511696.jpg'), - ('0385471432', 'Wedding, The', 'https://images.isbndb.com/covers/14/35/9780385471435.jpg'), - ('067973743X', 'Bury Me Standing: The Gypsies And Their Journey', 'https://images.isbndb.com/covers/74/38/9780679737438.jpg'), - ('1574780255', 'Gone Fishin'': An Easy Rawlins Novel (Easy Rawlins Mysteries)', 'https://images.isbndb.com/covers/02/53/9781574780253.jpg'), - ('0679769781', 'We''re Right, They''re Wrong: A Handbook For Spirited Progressives', 'https://images.isbndb.com/covers/97/81/9780679769781.jpg'), - ('0525938850', 'So Good', 'https://images.isbndb.com/covers/88/59/9780525938859.jpg'), - ('0880291230', 'The Roald Dahl Omnibus: Perfect Bedtime Stories For Sleepless Nights', 'https://images.isbndb.com/covers/12/31/9780880291231.jpg'), - ('0440226198', 'The Gift Of Fear', 'https://images.isbndb.com/covers/61/92/9780440226192.jpg'), - ('0140055770', 'My Uncle Oswald', 'https://images.isbndb.com/covers/57/71/9780140055771.jpg'), - ('0394743180', 'A Room With A View', 'https://images.isbndb.com/covers/31/89/9780394743189.jpg'), - ('0449912744', 'Best Of Ann Landers: Her Favorite Letters Of All Time', 'https://images.isbndb.com/covers/27/44/9780449912744.jpg'), - ('1551667215', 'Book Club', 'https://images.isbndb.com/covers/72/18/9781551667218.jpg'), - ('0064402371', 'Journey To Jo''burg: A South African Story', 'https://images.isbndb.com/covers/23/78/9780064402378.jpg'), - ('0671521012', 'The JOURNAL OF CALLIE WADE', 'https://images.isbndb.com/covers/10/11/9780671521011.jpg'), - ('0671871390', 'A Spy In The House Of Love', 'https://images.isbndb.com/covers/13/90/9780671871390.jpg'), - ('0399233881', 'A Is For Salad', 'https://images.isbndb.com/covers/38/83/9780399233883.jpg'), - ('0307122379', 'Nothing To Do Puppy (Bedtime Stories)', 'https://images.isbndb.com/covers/23/77/9780307122377.jpg'), - ('067187893X', 'Chicka Chicka ABC', 'https://images.isbndb.com/covers/89/31/9780671878931.jpg'), - ('067943979X', 'The Lost Children Of Wilder : The Epic Struggle To Change Foster Care', 'https://images.isbndb.com/covers/97/90/9780679439790.jpg'), - ('1559720093', 'Diner Guys', 'https://images.isbndb.com/covers/00/90/9781559720090.jpg'), - ('1573420387', 'Day Hikes On Oahu, 3rd', 'https://images.isbndb.com/covers/03/89/9781573420389.jpg'), - ('0394849558', 'Lady And The Tramp (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/95/53/9780394849553.jpg'), - ('0375502025', 'The Greatest Generation', 'https://images.isbndb.com/covers/20/26/9780375502026.jpg'), - ('1566911605', 'Moon Handbooks: Hawaii', 'https://images.isbndb.com/covers/16/03/9781566911603.jpg'), - ('0451199634', 'New International Dictionary Of Quotations, 3rd Edition', 'https://images.isbndb.com/covers/96/38/9780451199638.jpg'), - ('0441007368', 'Titan A.E.: Novelization', 'https://images.isbndb.com/covers/73/63/9780441007363.jpg'), - ('1573241180', 'Stone Soup For The World: Life-Changing Stories Of Kindness & Courageous Acts Of Service', 'https://images.isbndb.com/covers/11/82/9781573241182.jpg'), - ('0743225961', 'The Biker Code: Wisdom For The Ride', 'https://images.isbndb.com/covers/59/60/9780743225960.jpg'), - ('0312161271', 'Advocacy In The Classroom: Problems And Possibilities', 'https://images.isbndb.com/covers/12/79/9780312161279.jpg'), - ('1890132322', 'The Man Who Planted Trees', 'https://images.isbndb.com/covers/23/23/9781890132323.jpg'), - ('0805002545', 'Dave Barry''s Bad Habits: A 100% Fact-Free Book', 'https://images.isbndb.com/covers/25/46/9780805002546.jpg'), - ('0452265169', 'A Wild Sheep Chase: A Novel (Contemporary Fiction, Plume)', 'https://images.isbndb.com/covers/51/65/9780452265165.jpg'), - ('0962307203', 'Kitty The Raccoon', 'https://images.isbndb.com/covers/72/01/9780962307201.jpg'), - ('0374413312', 'Comet In Moominland', 'https://images.isbndb.com/covers/33/16/9780374413316.jpg'), - ('0449218228', 'Everyday Is Father''s Day: The Best Things Ever Said About Dear Old Dad', 'https://images.isbndb.com/covers/82/28/9780449218228.jpg'), - ('1885167504', 'Marketing Outrageously: How To Increase Your Revenue By Staggering Amounts!', 'https://images.isbndb.com/covers/75/07/9781885167507.jpg'), - ('0711919518', 'The Cure: Songwords, 1978-1989', 'https://images.isbndb.com/covers/95/18/9780711919518.jpg'), - ('0399238786', 'Time Stops For No Mouse: A Hermux Tantamoq Adventure (Hermux Tantamoq Adventures)', 'https://images.isbndb.com/covers/87/89/9780399238789.jpg'), - ('0307021742', 'Tommy Visits The Doctor (A Little Golden Book)', 'https://images.isbndb.com/covers/17/48/9780307021748.jpg'), - ('030701021X', 'The Secret City Under The Sea (A Little Golden Book) (Disney''s Duck Tales)', 'https://images.isbndb.com/covers/02/16/9780307010216.jpg'), - ('0307001040', 'Peter Pan (A Golden Book)', 'https://images.isbndb.com/covers/10/47/9780307001047.jpg'), - ('0307001342', 'Little Red Riding Hood (Little Golden Book)', 'https://images.isbndb.com/covers/13/44/9780307001344.jpg'), - ('0307030717', 'The Tale Of Peter Rabbit (Little Golden Book)', 'https://images.isbndb.com/covers/07/19/9780307030719.jpg'), - ('0307302024', 'Walt Disney''s The Sorcerer''s Apprentice (A Little Golden Book)', 'https://images.isbndb.com/covers/20/21/9780307302021.jpg'), - ('0717288234', 'How To Catch A Heffalump (Disney''s Pooh) (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/82/36/9780717288236.jpg'), - ('0689804520', 'Twelve Snails To One Lizard: A Tale Of Mischief And Measurement', 'https://images.isbndb.com/covers/45/26/9780689804526.jpg'), - ('0439213614', 'Clifford And The Runaway Rabbit (Clifford The Big Red Dog) (Big Red Reader Series)', 'https://images.isbndb.com/covers/36/15/9780439213615.jpg'), - ('0439381282', 'The Powerpuff Girls Movie: Saving The World Before Bedtime!', 'https://images.isbndb.com/covers/12/84/9780439381284.jpg'), - ('0816714584', 'Red-Headed Gooseberry Ghost (Haunted House Storybook)', 'https://images.isbndb.com/covers/45/82/9780816714582.jpg'), - ('0590341952', 'Alligator Baby', 'https://images.isbndb.com/covers/19/50/9780590341950.jpg'), - ('0448343606', 'All Aboard Fire Trucks (Reading Railroad)', 'https://images.isbndb.com/covers/36/00/9780448343600.jpg'), - ('0590334271', 'The Great Egg Mystery (Who Did It? Sticker Mysteries)', 'https://images.isbndb.com/covers/42/73/9780590334273.jpg'), - ('0394851455', '500 Palabras Nuevas Para Ti / 500 Words To Grow On', 'https://images.isbndb.com/covers/14/57/9780394851457.jpg'), - ('0590689908', 'Dinofours: It''s Time For School!', 'https://images.isbndb.com/covers/99/08/9780590689908.jpg'), - ('0590738720', 'The Magic School Bus Going Batty: A Book About Bats', 'https://images.isbndb.com/covers/87/29/9780590738729.jpg'), - ('0590464639', 'The Biggest Pumpkin Ever', 'https://images.isbndb.com/covers/46/35/9780590464635.jpg'), - ('0590411853', 'The Twelve Dancing Princesses: A Folk Tale From The Brothers Grimm (Easy To Read Folktale)', 'https://images.isbndb.com/covers/18/51/9780590411851.jpg'), - ('0394840704', 'Do You Know? Pictback', 'https://images.isbndb.com/covers/07/03/9780394840703.jpg'), - ('0307020908', 'The Good-by Day (A Little Golden Book)', 'https://images.isbndb.com/covers/09/01/9780307020901.jpg'), - ('0307988384', 'Pooh Trick Or Treat! (Little Golden Book)', 'https://images.isbndb.com/covers/83/86/9780307988386.jpg'), - ('0307010309', 'Cookie Monster And The Cookie Tree (Little Golden Books)', 'https://images.isbndb.com/covers/03/08/9780307010308.jpg'), - ('0307002101', 'My Little Golden Book Of Cars And Trucks', 'https://images.isbndb.com/covers/21/05/9780307002105.jpg'), - ('0307010945', 'I Think That It Is Wonderful And Other Poems From Sesame Street ( Little Golden Book)', 'https://images.isbndb.com/covers/09/40/9780307010940.jpg'), - ('0307601900', 'Grover''s Own Alphabet (Sesame Street)', 'https://images.isbndb.com/covers/19/02/9780307601902.jpg'), - ('0307001369', 'Best Little Word Book Ever (Little Golden Book)', 'https://images.isbndb.com/covers/13/68/9780307001368.jpg'), - ('0307301400', 'Richard Scarry''s Busiest Firefighters Ever (Little Golden Books)', 'https://images.isbndb.com/covers/14/06/9780307301406.jpg'), - ('0307010856', 'The Monster At The End Of This Book (Sesame Street) (Little Golden Book)', 'https://images.isbndb.com/covers/08/58/9780307010858.jpg'), - ('0152420371', 'Kat Kong', 'https://images.isbndb.com/covers/03/76/9780152420376.jpg'), - ('088138044X', 'If You''re Afraid Of The Dark Remember The Rainbow', 'https://images.isbndb.com/covers/04/46/9780881380446.jpg'), - ('0141309199', 'Slam', 'https://images.isbndb.com/covers/91/94/9780141309194.jpg'), - ('0425153061', 'Maya''s First Rose: Diary Of A Very Special Love', 'https://images.isbndb.com/covers/30/62/9780425153062.jpg'), - ('0446674249', 'L.A. Confidential', 'https://images.isbndb.com/covers/42/49/9780446674249.jpg'), - ('0440400597', 'All-of-a-Kind Family', 'https://images.isbndb.com/covers/05/92/9780440400592.jpg'), - ('188521135X', 'Hawai''i: True Stories Of The Island Spirit (Travelers'' Tales Guides)', 'https://images.isbndb.com/covers/13/54/9781885211354.jpg'), - ('0865476268', 'Postmodern Pooh', 'https://images.isbndb.com/covers/62/64/9780865476264.jpg'), - ('0140274782', 'Wobegon Boy', 'https://images.isbndb.com/covers/47/83/9780140274783.jpg'), - ('0156717204', 'The Philosophy Of Andy Warhol : (From A To B And Back Again)', 'https://images.isbndb.com/covers/72/05/9780156717205.jpg'), - ('0307960374', 'Seven Little Postmen (A Little Golden Book)', 'https://images.isbndb.com/covers/03/75/9780307960375.jpg'), - ('0394837037', 'The Truck Book (Pictureback(R))', 'https://images.isbndb.com/covers/70/31/9780394837031.jpg'), - ('0380017199', 'Rehearsal''s Off!', 'https://images.isbndb.com/covers/71/95/9780380017195.jpg'), - ('1573060194', 'Pupus: An Island Tradition', 'https://images.isbndb.com/covers/01/96/9781573060196.jpg'), - ('0618164723', 'Fat Land: How Americans Became The Fattest People In The World', 'https://images.isbndb.com/covers/47/21/9780618164721.jpg'), - ('1400045088', 'The Salmon Of Doubt: Hitchhiking The Galaxy One Last Time', 'https://images.isbndb.com/covers/50/82/9781400045082.jpg'), - ('081120068X', 'Siddhartha', 'https://images.isbndb.com/covers/06/84/9780811200684.jpg'), - ('0380707799', 'Borrowed Time: An Aids Memoir', 'https://images.isbndb.com/covers/77/99/9780380707799.jpg'), - ('0061096164', 'True Love', 'https://images.isbndb.com/covers/61/67/9780061096167.jpg'), - ('1558538445', 'I Hope You Dance', 'https://images.isbndb.com/covers/84/43/9781558538443.jpg'), - ('0879236671', 'Bear (Nonpareil Books)', 'https://images.isbndb.com/covers/66/70/9780879236670.jpg'), - ('0312954468', 'River God: A Novel Of Ancient Egypt', 'https://images.isbndb.com/covers/44/68/9780312954468.jpg'), - ('0965574911', 'Daughter Of The Queen Of Sheba', 'https://images.isbndb.com/covers/49/14/9780965574914.jpg'), - ('0394889568', 'NOISY COUNTING BOOK (Tough Enough For Toddlers)', 'https://images.isbndb.com/covers/95/66/9780394889566.jpg'), - ('0064430677', 'William''s Doll', 'https://images.isbndb.com/covers/06/78/9780064430678.jpg'), - ('0689304374', 'The Church Mice And The Moon', 'https://images.isbndb.com/covers/43/78/9780689304378.jpg'), - ('0964335905', 'Family Traditions In Hawaii', 'https://images.isbndb.com/covers/59/05/9780964335905.jpg'), - ('0060812451', 'Tao Te Ching', 'https://images.isbndb.com/covers/24/54/9780060812454.jpg'), - ('0738861618', 'O Au No Keia: Voices From Hawai''i''s Mahu And Transgender Communities', 'https://images.isbndb.com/covers/16/16/9780738861616.jpg'), - ('0312167989', 'A Child''s Night Dream', 'https://images.isbndb.com/covers/79/81/9780312167981.jpg'), - ('0824813928', 'New Pocket Hawaiian Dictionary: With A Concise Grammar And Given Names In Hawaiian', 'https://images.isbndb.com/covers/39/25/9780824813925.jpg'), - ('0679781277', 'Martin Dressler: The Tale Of An American Dreamer', 'https://images.isbndb.com/covers/12/71/9780679781271.jpg'), - ('0865470545', 'Mr. Bridge', 'https://images.isbndb.com/covers/05/45/9780865470545.jpg'), - ('0345440145', 'I''m The One That I Want', 'https://images.isbndb.com/covers/01/43/9780345440143.jpg'), - ('0026098407', 'For Colored Girls Who Have Considered Suicide When The Rainbow Is Enuf', 'https://images.isbndb.com/covers/84/03/9780026098403.jpg'), - ('0060167688', 'After All These Years', 'https://images.isbndb.com/covers/76/84/9780060167684.jpg'), - ('0689846258', 'Jennifer, Hecate, MacBeth, William McKinley And Me, Elizabeth', 'https://images.isbndb.com/covers/62/50/9780689846250.jpg'), - ('0060812508', 'Black Boy (American Hunger : A Record Of Childhood And Youth)', 'https://images.isbndb.com/covers/25/08/9780060812508.jpg'), - ('0066211662', 'The Bitch In The House: 26 Women Tell The Truth About Sex, Solitude, Work, Motherhood, And Marriage', 'https://images.isbndb.com/covers/16/64/9780066211664.jpg'), - ('1401300014', 'The Essential 55: An Award-Winning Educator''s Rules For Discovering The Successful Student In Every Child', 'https://images.isbndb.com/covers/00/12/9781401300012.jpg'), - ('1561633259', 'To Afghanistan And Back: A Graphic Travelougue', 'https://images.isbndb.com/covers/32/58/9781561633258.jpg'), - ('055328942X', 'The Shelters Of Stone (Earth''s Children, Book 5)', 'https://images.isbndb.com/covers/94/28/9780553289428.jpg'), - ('0425167054', 'The Tick: Mighty Blue Justice', 'https://images.isbndb.com/covers/70/52/9780425167052.jpg'), - ('0140083049', 'Pooh''s Workout Book', 'https://images.isbndb.com/covers/30/40/9780140083040.jpg'), - ('0767900316', 'The Corner: A Year In The Life Of An Inner-City Neighborhood', 'https://images.isbndb.com/covers/03/17/9780767900317.jpg'), - ('0684863871', 'Random Family: Love, Drugs, Trouble, And Coming Of Age In The Bronx', 'https://images.isbndb.com/covers/38/70/9780684863870.jpg'), - ('0836236637', 'Send In The Stunt Mom: The Second Collection Of Committed', 'https://images.isbndb.com/covers/66/37/9780836236637.jpg'), - ('0316597058', 'On A Street Called Easy, In A Cottage Called Joye', 'https://images.isbndb.com/covers/70/50/9780316597050.jpg'), - ('0312922728', 'Modern Women', 'https://images.isbndb.com/covers/27/26/9780312922726.jpg'), - ('1551520559', 'Bad Jobs: My Last Shift At Albert Wong''s Pagoda And Other Ugly Tales Of The Workplace', 'https://images.isbndb.com/covers/05/51/9781551520551.jpg'), - ('0425103285', 'Mrs. Mike: The Story Of Katherine Mary Flannigan', 'https://images.isbndb.com/covers/32/89/9780425103289.jpg'), - ('0553342762', 'Jaguars Ripped My Flesh: Adventure Is A Risky Business', 'https://images.isbndb.com/covers/27/65/9780553342765.jpg'), - ('0553574086', 'Critical Judgment', 'https://images.isbndb.com/covers/40/81/9780553574081.jpg'), - ('0553287575', 'End Of The Road, The', 'https://images.isbndb.com/covers/75/78/9780553287578.jpg'), - ('0970159404', 'Flying Hawaii : A Pilot''s Guide To The Islands', 'https://images.isbndb.com/covers/94/03/9780970159403.jpg'), - ('0757300618', 'Chicken Soup From The Soul Of Hawaii: Stories Of Aloha To Create Paradise Wherever You Are', 'https://images.isbndb.com/covers/06/15/9780757300615.jpg'), - ('0445205377', 'Wild Seed (Patternist)', 'https://images.isbndb.com/covers/53/76/9780445205376.jpg'), - ('0446610798', 'Right As Rain (Derek Strange/Terry Quinn)', 'https://images.isbndb.com/covers/07/97/9780446610797.jpg'), - ('0307986241', 'Good Night, Little Bear (Little Golden Book)', 'https://images.isbndb.com/covers/62/45/9780307986245.jpg'), - ('0446611328', 'Hell To Pay', 'https://images.isbndb.com/covers/13/29/9780446611329.jpg'), - ('0761125493', 'What To Expect When You''re Expecting, 3rd Edition', 'https://images.isbndb.com/covers/54/95/9780761125495.jpg'), - ('1931686408', 'Escape From Fire Island!', 'https://images.isbndb.com/covers/64/02/9781931686402.jpg'), - ('039923392X', 'You Are My I Love You', 'https://images.isbndb.com/covers/39/20/9780399233920.jpg'), - ('0967418305', 'I Had A Dollar In Hawai''i', 'https://images.isbndb.com/covers/83/08/9780967418308.jpg'), - ('1566471575', 'A Pocket Guide To Oahu', 'https://images.isbndb.com/covers/15/72/9781566471572.jpg'), - ('0816704317', 'Home For A Dinosaur (Giant First Start Reader)', 'https://images.isbndb.com/covers/43/16/9780816704316.jpg'), - ('1556114753', 'Scarlet Women', 'https://images.isbndb.com/covers/47/55/9781556114755.jpg'), - ('0449908453', 'Brunswick Gardens', 'https://images.isbndb.com/covers/84/57/9780449908457.jpg'), - ('0553568779', 'Wild Kat (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/87/76/9780553568776.jpg'), - ('0061097489', 'The Abduction', 'https://images.isbndb.com/covers/74/85/9780061097485.jpg'), - ('0440221048', 'A Certain Justice (Abe Glitsky)', 'https://images.isbndb.com/covers/10/43/9780440221043.jpg'), - ('0345394267', 'Rainbow''s End', 'https://images.isbndb.com/covers/42/62/9780345394262.jpg'), - ('0385420951', 'Kat''s Cradle: A Perfect Crime Book (A Kat Colorado Mystery, No. 3)', 'https://images.isbndb.com/covers/09/52/9780385420952.jpg'), - ('0836261313', 'Call No Man Father', 'https://images.isbndb.com/covers/13/18/9780836261318.jpg'), - ('0449909360', 'House Of Blues', 'https://images.isbndb.com/covers/93/62/9780449909362.jpg'), - ('0892965711', 'The Odd Job (Sarah Kelling And Max Bittersohn Mysteries)', 'https://images.isbndb.com/covers/57/17/9780892965717.jpg'), - ('0679429883', 'Eyes Of A Child', 'https://images.isbndb.com/covers/98/83/9780679429883.jpg'), - ('0762102519', 'A Kiss Before Dying (The Best Mysteries Of All Time)', 'https://images.isbndb.com/covers/25/18/9780762102518.jpg'), - ('0385242395', 'Proving', 'https://images.isbndb.com/covers/23/94/9780385242394.jpg'), - ('0671003364', 'Ransom', 'https://images.isbndb.com/covers/33/64/9780671003364.jpg'), - ('0380714868', 'Katapult (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/48/65/9780380714865.jpg'), - ('0380711877', 'Katwalk (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/18/71/9780380711871.jpg'), - ('0345375351', 'Show Of Evil', 'https://images.isbndb.com/covers/53/53/9780345375353.jpg'), - ('0812568672', 'Y2k', 'https://images.isbndb.com/covers/86/77/9780812568677.jpg'), - ('0446515868', 'Night Train To Memphis', 'https://images.isbndb.com/covers/58/63/9780446515863.jpg'), - ('0446523186', 'Belladonna: A Novel Of Revenge', 'https://images.isbndb.com/covers/31/89/9780446523189.jpg'), - ('0553140175', 'The Simple Solution To Rubik''s Cube', 'https://images.isbndb.com/covers/01/70/9780553140170.jpg'), - ('0786860472', 'Suitable For Framing', 'https://images.isbndb.com/covers/04/70/9780786860470.jpg'), - ('0671694170', 'China White', 'https://images.isbndb.com/covers/41/73/9780671694173.jpg'), - ('0399132066', 'The Traveler', 'https://images.isbndb.com/covers/20/63/9780399132063.jpg'), - ('0070590826', 'Daydreams', 'https://images.isbndb.com/covers/08/23/9780070590823.jpg'), - ('0312983603', 'The Mermaids Singing (Dr. Tony Hill And Carol Jordan Mysteries)', 'https://images.isbndb.com/covers/36/04/9780312983604.jpg'), - ('0553106341', 'Dust To Dust', 'https://images.isbndb.com/covers/63/43/9780553106343.jpg'), - ('0399144927', 'The Breaker', 'https://images.isbndb.com/covers/49/29/9780399144929.jpg'), - ('0399143807', 'Judas Child', 'https://images.isbndb.com/covers/38/09/9780399143809.jpg'), - ('0345404785', 'Dark Lady', 'https://images.isbndb.com/covers/47/87/9780345404787.jpg'), - ('0425158608', 'Honky Tonk Kat (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/86/09/9780425158609.jpg'), - ('0380728168', 'Final Victim', 'https://images.isbndb.com/covers/81/69/9780380728169.jpg'), - ('0515121282', 'Cold Shoulder', 'https://images.isbndb.com/covers/12/85/9780515121285.jpg'), - ('068480297X', 'Shock Wave (Dirk Pitt Adventures)', 'https://images.isbndb.com/covers/29/78/9780684802978.jpg'), - ('0399139710', 'Acceptable Risk', 'https://images.isbndb.com/covers/97/10/9780399139710.jpg'), - ('0375704892', 'No More Dying Then: An Inspector Wexford Mystery', 'https://images.isbndb.com/covers/48/95/9780375704895.jpg'), - ('0671875817', 'A Gathering Of Saints', 'https://images.isbndb.com/covers/58/17/9780671875817.jpg'), - ('0553575260', 'A Free Man Of Color (Benjamin January, Book 1)', 'https://images.isbndb.com/covers/52/62/9780553575262.jpg'), - ('0553092650', 'In The Presence Of The Enemy', 'https://images.isbndb.com/covers/26/53/9780553092653.jpg'), - ('0385468520', 'Alley Kat Blues', 'https://images.isbndb.com/covers/85/27/9780385468527.jpg'), - ('0892965835', 'Serious Intent', 'https://images.isbndb.com/covers/58/30/9780892965830.jpg'), - ('0553264680', 'C IS FOR CORPSE (Kinsey Millhone Mysteries (Paperback))', 'https://images.isbndb.com/covers/46/85/9780553264685.jpg'), - ('0451191951', 'The Brimstone Wedding', 'https://images.isbndb.com/covers/19/53/9780451191953.jpg'), - ('0679429891', 'The Final Judgment', 'https://images.isbndb.com/covers/98/90/9780679429890.jpg'), - ('0061009881', 'Hostile Witness', 'https://images.isbndb.com/covers/98/84/9780061009884.jpg'), - ('0316693863', 'Hide & Seek', 'https://images.isbndb.com/covers/38/68/9780316693868.jpg'), - ('0449224392', 'Traitors Gate', 'https://images.isbndb.com/covers/43/97/9780449224397.jpg'), - ('0553575945', 'Requiem For A Glass Heart', 'https://images.isbndb.com/covers/59/41/9780553575941.jpg'), - ('0451184726', 'She Walks These Hills', 'https://images.isbndb.com/covers/47/26/9780451184726.jpg'), - ('0440237513', 'On Edge', 'https://images.isbndb.com/covers/75/18/9780440237518.jpg'), - ('0375709045', 'She''s Gone Country: Dispatches From A Lost Soul In The Heart Of Dixie', 'https://images.isbndb.com/covers/90/43/9780375709043.jpg'), - ('0345389409', 'Memnoch The Devil (Vampire Chronicles, Book 5)', 'https://images.isbndb.com/covers/94/04/9780345389404.jpg'), - ('0066210690', 'The Last Lone Inventor: A Tale Of Genius, Deceit, And The Birth Of Television', 'https://images.isbndb.com/covers/06/98/9780066210698.jpg'), - ('0743201957', 'Two O''Clock, Eastern Wartime', 'https://images.isbndb.com/covers/19/57/9780743201957.jpg'), - ('0425160920', 'Trick Question', 'https://images.isbndb.com/covers/09/23/9780425160923.jpg'), - ('0451404270', 'Dead Time (Signet)', 'https://images.isbndb.com/covers/42/75/9780451404275.jpg'), - ('0425173305', 'Slackjaw', 'https://images.isbndb.com/covers/33/05/9780425173305.jpg'), - ('0451409485', 'First Avenue', 'https://images.isbndb.com/covers/94/85/9780451409485.jpg'), - ('0399145850', 'Day Of Reckoning', 'https://images.isbndb.com/covers/58/58/9780399145858.jpg'), - ('0151003580', 'At End Of Day', 'https://images.isbndb.com/covers/35/87/9780151003587.jpg'), - ('037571412X', 'The Dying Animal', 'https://images.isbndb.com/covers/41/22/9780375714122.jpg'), - ('0446667900', 'A Darkness More Than Night (Harry Bosch)', 'https://images.isbndb.com/covers/79/06/9780446667906.jpg'), - ('0805056645', 'Are You Somebody?: The Accidental Memoir Of A Dublin Woman', 'https://images.isbndb.com/covers/66/48/9780805056648.jpg'), - ('0786881011', 'The Lost Get-Back Boogie', 'https://images.isbndb.com/covers/10/17/9780786881017.jpg'), - ('0380730820', 'Jupiter''s Bones: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/08/27/9780380730827.jpg'), - ('0821765957', 'Key West', 'https://images.isbndb.com/covers/59/51/9780821765951.jpg'), - ('0446604232', 'Exclusive', 'https://images.isbndb.com/covers/42/39/9780446604239.jpg'), - ('0060914289', 'The Egg And I', 'https://images.isbndb.com/covers/42/88/9780060914288.jpg'), - ('0345366395', 'Virginia Woolf: The Impact Of Childhood Sexual Abuse On Her Life And Work', 'https://images.isbndb.com/covers/63/99/9780345366399.jpg'), - ('0805208488', 'The Trial', 'https://images.isbndb.com/covers/84/81/9780805208481.jpg'), - ('0517084791', 'Three Complete Novels: The Andromeda Strain, The Terminal Man, And The Great Train Robbery', 'https://images.isbndb.com/covers/47/93/9780517084793.jpg'), - ('0312253974', 'Lazarus And The Hurricane: The Freeing Of Rubin "Hurricane" Carter', 'https://images.isbndb.com/covers/39/74/9780312253974.jpg'), - ('0517702134', 'True Crime', 'https://images.isbndb.com/covers/21/30/9780517702130.jpg'), - ('0312169345', 'The Moor: A Mary Russell Novel', 'https://images.isbndb.com/covers/93/43/9780312169343.jpg'), - ('0684837765', 'KILLING TIME: AN INSPECTOR BILL SLIDER MYSTERY (Inspector Bill Slider Mysteries)', 'https://images.isbndb.com/covers/77/65/9780684837765.jpg'), - ('0807070971', 'Breathless: An Asthma Journal', 'https://images.isbndb.com/covers/09/70/9780807070970.jpg'), - ('0020447019', 'Hot Type: Our Most Celebrated Writers Introduce The Next Word In Contemporary American Fiction (Collier Fiction)', 'https://images.isbndb.com/covers/70/16/9780020447016.jpg'), - ('0060916559', 'John Dollar: A Novel', 'https://images.isbndb.com/covers/65/58/9780060916558.jpg'), - ('0525939695', 'Ballad Of Frankie Silver', 'https://images.isbndb.com/covers/96/96/9780525939696.jpg'), - ('0312264143', 'The Woman In The Yard: A Novel', 'https://images.isbndb.com/covers/41/47/9780312264147.jpg'), - ('0446527912', 'Animosity : A Novel', 'https://images.isbndb.com/covers/79/10/9780446527910.jpg'), - ('0679762051', 'My Dark Places', 'https://images.isbndb.com/covers/20/58/9780679762058.jpg'), - ('0553578774', 'Night Dogs', 'https://images.isbndb.com/covers/87/75/9780553578775.jpg'), - ('0380790432', 'Ghost Dance', 'https://images.isbndb.com/covers/04/32/9780380790432.jpg'), - ('0553581481', 'Eleven Days', 'https://images.isbndb.com/covers/14/85/9780553581485.jpg'), - ('0553571702', 'Hard Frost', 'https://images.isbndb.com/covers/17/07/9780553571707.jpg'), - ('0061044393', 'Hocus', 'https://images.isbndb.com/covers/43/97/9780061044397.jpg'), - ('0446403237', 'Bootlegger''s Daughter (Deborah Knott Mysteries, No. 1)', 'https://images.isbndb.com/covers/32/38/9780446403238.jpg'), - ('0446604062', 'Up Jumps The Devil (Deborah Knott Mysteries)', 'https://images.isbndb.com/covers/40/62/9780446604062.jpg'), - ('0399146245', '24 Hours', 'https://images.isbndb.com/covers/62/44/9780399146244.jpg'), - ('0679753117', 'Dead Lagoon: An Aurelio Zen Mystery', 'https://images.isbndb.com/covers/31/17/9780679753117.jpg'), - ('0671708104', 'Right To Die', 'https://images.isbndb.com/covers/81/08/9780671708108.jpg'), - ('0671898744', 'Invasion Of Privacy (John Francis Cuddy Mystery)', 'https://images.isbndb.com/covers/87/48/9780671898748.jpg'), - ('0671898752', 'Rescue', 'https://images.isbndb.com/covers/87/55/9780671898755.jpg'), - ('0671695843', 'YESTERDAY''S NEWS', 'https://images.isbndb.com/covers/58/42/9780671695842.jpg'), - ('0671708120', 'SHALLOW GRAVES', 'https://images.isbndb.com/covers/81/22/9780671708122.jpg'), - ('0449223132', 'Brazil', 'https://images.isbndb.com/covers/31/30/9780449223130.jpg'), - ('0373710240', 'Shenandoah Christmas: You, Me & The Kids (Harlequin Superromance No. 1024)', 'https://images.isbndb.com/covers/02/49/9780373710249.jpg'), - ('0373710194', 'Substitute Father: Marriage Of Inconvenience (Harlequin Superromance No. 1019)', 'https://images.isbndb.com/covers/01/95/9780373710195.jpg'), - ('0373217250', 'All They Want For Christmas: Comfort And Joy / Merry Christmas, Baby', 'https://images.isbndb.com/covers/72/50/9780373217250.jpg'), - ('037371033X', 'Man With A Mission: The Men Of Maple Hill (Harlequin Superromance No. 1033)', 'https://images.isbndb.com/covers/03/31/9780373710331.jpg'), - ('0373709331', 'Hitched! The Taggarts Of Texas (Harlequin Superromance No. 933)', 'https://images.isbndb.com/covers/93/35/9780373709335.jpg'), - ('0373709870', 'Dear Maggie (Harlequin Superromance No. 987)', 'https://images.isbndb.com/covers/98/78/9780373709878.jpg'), - ('0373217242', 'Yuletide Brides (2 Novels In 1)', 'https://images.isbndb.com/covers/72/43/9780373217243.jpg'), - ('0373471599', 'Marriage By The Book (Silhouette, Born In The USA: Florida, No. 9)', 'https://images.isbndb.com/covers/15/91/9780373471591.jpg'), - ('0425067858', 'The Labors Of Hercules (Hercule Poirot)', 'https://images.isbndb.com/covers/78/57/9780425067857.jpg'), - ('0671036602', 'The Burning City', 'https://images.isbndb.com/covers/66/07/9780671036607.jpg'), - ('0553560980', 'Sideshow (One Last Wish)', 'https://images.isbndb.com/covers/09/85/9780553560985.jpg'), - ('0756401518', 'Moreau Omnibus (Daw Book Collectors)', 'https://images.isbndb.com/covers/15/11/9780756401511.jpg'), - ('0425174727', 'Poirot Investigates (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/47/22/9780425174722.jpg'), - ('0740721984', 'Fuzzy Logic Get Fuzzy 2', 'https://images.isbndb.com/covers/19/84/9780740721984.jpg'), - ('0061319481', 'We''re In The Money', 'https://images.isbndb.com/covers/94/88/9780061319488.jpg'), - ('0446526681', 'Lion''s Blood: A Novel Of Slavery And Freedom In An Alternate America', 'https://images.isbndb.com/covers/66/85/9780446526685.jpg'), - ('0312875568', 'The White Mare''s Daughter', 'https://images.isbndb.com/covers/55/65/9780312875565.jpg'), - ('0886779561', 'The Sand Wars, Volume One: Solar Kill, Lasertown Blues And Celestial Hit List (Sand Wars Omnibus)', 'https://images.isbndb.com/covers/95/66/9780886779566.jpg'), - ('0345361326', 'Those Who Hunt The Night (James Asher, Book 1)', 'https://images.isbndb.com/covers/13/25/9780345361325.jpg'), - ('0312971958', 'Tied Up In Tinsel', 'https://images.isbndb.com/covers/19/53/9780312971953.jpg'), - ('0312970978', 'When In Rome', 'https://images.isbndb.com/covers/09/70/9780312970970.jpg'), - ('1582340978', 'Prince And Other Dogs, 1850-1940', 'https://images.isbndb.com/covers/09/75/9781582340975.jpg'), - ('0789480646', 'Dynamic Yoga', 'https://images.isbndb.com/covers/06/44/9780789480644.jpg'), - ('0553276069', 'Death Of A Doxy (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/60/60/9780553276060.jpg'), - ('0451209850', 'The Chocolate Frog Frame-Up (Chocoholic Mysteries, No. 3)', 'https://images.isbndb.com/covers/98/56/9780451209856.jpg'), - ('0312968329', 'Death Of A Fool (St. Martin''s Dead Letter Mysteries)', 'https://images.isbndb.com/covers/83/28/9780312968328.jpg'), - ('0740723227', 'Zits Unzipped: Sketchbook #5 (Zits Collection Sketchbook)', 'https://images.isbndb.com/covers/32/23/9780740723223.jpg'), - ('0836282868', 'Yesh! (Mutts IV)', 'https://images.isbndb.com/covers/28/63/9780836282863.jpg'), - ('0140280898', 'Sherlock Holmes And The Ice Palace Murders: From The American Chronicles Of John H. Watson, M.D.', 'https://images.isbndb.com/covers/08/90/9780140280890.jpg'), - ('0060084022', 'The Big Bounce', 'https://images.isbndb.com/covers/40/28/9780060084028.jpg'), - ('0380784491', 'Murder Runs In The Family: A Southern Sisters Mystery', 'https://images.isbndb.com/covers/44/93/9780380784493.jpg'), - ('0790009072', 'Mists Of Time: Ngapuhi Myths And Legends', 'https://images.isbndb.com/covers/90/70/9780790009070.jpg'), - ('0140238530', 'The Singing Whakapapa', 'https://images.isbndb.com/covers/85/32/9780140238532.jpg'), - ('1878067125', 'Disappearing Moon Cafe', 'https://images.isbndb.com/covers/71/28/9781878067128.jpg'), - ('014025644X', 'Rice', 'https://images.isbndb.com/covers/64/44/9780140256444.jpg'), - ('1582343187', 'Prince And Other Dogs II', 'https://images.isbndb.com/covers/31/81/9781582343181.jpg'), - ('0553247468', 'One Police Plaza', 'https://images.isbndb.com/covers/74/66/9780553247466.jpg'), - ('0312966695', 'Spinsters In Jeopardy', 'https://images.isbndb.com/covers/66/90/9780312966690.jpg'), - ('0836268237', 'More Shtuff - Mutts III (Mutts)', 'https://images.isbndb.com/covers/82/32/9780836268232.jpg'), - ('140004832X', 'Ambulance Girl: How I Saved Myself By Becoming An EMT', 'https://images.isbndb.com/covers/83/28/9781400048328.jpg'), - ('0812514300', 'Good Night, Mr. Holmes: An Irene Adler Novel', 'https://images.isbndb.com/covers/43/08/9780812514308.jpg'), - ('0061057878', 'Deadly Legacy', 'https://images.isbndb.com/covers/78/78/9780061057878.jpg'), - ('0515081574', 'Sins Of The Fathers', 'https://images.isbndb.com/covers/15/72/9780515081572.jpg'), - ('0553581112', 'Justice Hall (Mary Russell Novels)', 'https://images.isbndb.com/covers/11/19/9780553581119.jpg'), - ('1567312292', 'The Left-Hander''s Handbook', 'https://images.isbndb.com/covers/22/94/9781567312294.jpg'), - ('0380806355', 'Fender Benders', 'https://images.isbndb.com/covers/63/55/9780380806355.jpg'), - ('0446611085', 'Suzanne''s Diary For Nicholas', 'https://images.isbndb.com/covers/10/84/9780446611084.jpg'), - ('0740704567', 'Our Mutts Five', 'https://images.isbndb.com/covers/45/67/9780740704567.jpg'), - ('0553581058', 'O Jerusalem (Mary Russell)', 'https://images.isbndb.com/covers/10/58/9780553581058.jpg'), - ('0515075019', 'A Wreath For Rivera', 'https://images.isbndb.com/covers/50/14/9780515075014.jpg'), - ('0345443128', 'A False Sense Of Well Being (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/31/20/9780345443120.jpg'), - ('0872863654', 'Postcards From The Underground: Portraits Of The Beat Era', 'https://images.isbndb.com/covers/36/51/9780872863651.jpg'), - ('0425144690', 'Died In The Wool', 'https://images.isbndb.com/covers/46/95/9780425144695.jpg'), - ('0908652658', 'Crimes Of Neglect', 'https://images.isbndb.com/covers/26/55/9780908652655.jpg'), - ('0908569734', 'All The Tenderness Left In The World Ppr', 'https://images.isbndb.com/covers/97/31/9780908569731.jpg'), - ('0740728946', 'Groovitude: A Get Fuzzy Treasury', 'https://images.isbndb.com/covers/89/45/9780740728945.jpg'), - ('0393325172', 'Master And Commander (Movie Tie-In Edition)', 'https://images.isbndb.com/covers/51/71/9780393325171.jpg'), - ('1892514877', 'Truelove And Homegrown Tomatoes', 'https://images.isbndb.com/covers/48/75/9781892514875.jpg'), - ('0140119507', 'If The River Was Whiskey: Stories (Contemporary American Fiction)', 'https://images.isbndb.com/covers/95/03/9780140119503.jpg'), - ('0140299939', 'World''s End (Contemporary American Fiction)', 'https://images.isbndb.com/covers/99/39/9780140299939.jpg'), - ('0140092862', 'Descent Of Man (Contemporary American Fiction)', 'https://images.isbndb.com/covers/28/68/9780140092868.jpg'), - ('0140081518', 'Budding Prospects (Contemporary American Fiction)', 'https://images.isbndb.com/covers/15/10/9780140081510.jpg'), - ('1841954608', 'Vernon God Little (Man Booker Prize)', 'https://images.isbndb.com/covers/46/08/9781841954608.jpg'), - ('0909486727', 'Dinkum Oil', 'https://images.isbndb.com/covers/67/23/9780909486723.jpg'), - ('0684856328', 'Uncle Boris In The Yukon And Other Shaggy Dog Stories', 'https://images.isbndb.com/covers/63/22/9780684856322.jpg'), - ('0312313810', 'The Dirty Girls Social Club: A Novel', 'https://images.isbndb.com/covers/38/14/9780312313814.jpg'), - ('0824817060', 'Grace: Potiki (Talanoa)', 'https://images.isbndb.com/covers/70/60/9780824817060.jpg'), - ('0375414290', 'When The Emperor Was Divine', 'https://images.isbndb.com/covers/42/99/9780375414299.jpg'), - ('0340401079', 'Rest For The Wicked Ppr NZ', 'https://images.isbndb.com/covers/10/71/9780340401071.jpg'), - ('0394537602', 'The Witches Of Eastwick', 'https://images.isbndb.com/covers/76/03/9780394537603.jpg'), - ('0806518561', 'The Philip K. Dick Reader', 'https://images.isbndb.com/covers/85/65/9780806518565.jpg'), - ('006051406X', 'Molly Moon''s Incredible Book Of Hypnotism', 'https://images.isbndb.com/covers/40/68/9780060514068.jpg'), - ('0375502971', 'A Dog Year: Twelve Months, Four Dogs, And Me', 'https://images.isbndb.com/covers/29/72/9780375502972.jpg'), - ('0670825212', 'With Thanks And Appreciation: Thoughts, Sentiments, Tokens And Traditions Of The Past (Sweet Nellie)', 'https://images.isbndb.com/covers/52/19/9780670825219.jpg'), - ('0618219153', 'Hotel Honolulu: A Novel', 'https://images.isbndb.com/covers/91/55/9780618219155.jpg'), - ('0892131012', 'The Science Of Self-Realization', 'https://images.isbndb.com/covers/10/13/9780892131013.jpg'), - ('0679722769', 'Ulysses', 'https://images.isbndb.com/covers/27/62/9780679722762.jpg'), - ('0380780879', 'Murder On A Bad Hair Day: A Southern Sisters Mystery', 'https://images.isbndb.com/covers/08/77/9780380780877.jpg'), - ('0786709324', 'The Complete History Of Jack The Ripper', 'https://images.isbndb.com/covers/93/28/9780786709328.jpg'), - ('0060503467', 'Isabel''s Daughter: A Novel', 'https://images.isbndb.com/covers/34/68/9780060503468.jpg'), - ('140004538X', 'Sins Of The Seventh Sister: A Novel Based On A True Story Of The Gothic South', 'https://images.isbndb.com/covers/53/89/9781400045389.jpg'), - ('0618246940', 'The Best American Nonrequired Reading 2002 (The Best American Series)', 'https://images.isbndb.com/covers/69/46/9780618246946.jpg'), - ('1570089949', 'Sarah: Women Of Genesis (Women Of Genesis (Forge))', 'https://images.isbndb.com/covers/99/47/9781570089947.jpg'), - ('0932379435', 'A Letter To Harvey Milk: Short Stories', 'https://images.isbndb.com/covers/94/36/9780932379436.jpg'), - ('0066212901', 'The Samurai''s Daughter', 'https://images.isbndb.com/covers/29/06/9780066212906.jpg'), - ('1558171665', 'The Revenge Of The Hound', 'https://images.isbndb.com/covers/16/64/9781558171664.jpg'), - ('0380728257', 'When The Sacred Ginmill Closes (Matthew Scudder Mysteries)', 'https://images.isbndb.com/covers/82/51/9780380728251.jpg'), - ('0141002166', 'Blue Ridge', 'https://images.isbndb.com/covers/21/63/9780141002163.jpg'), - ('0792265289', 'I Myself Have Seen It: The Myth Of Hawai''i', 'https://images.isbndb.com/covers/52/83/9780792265283.jpg'), - ('0156006898', 'The Wreck Of The Whaleship Essex', 'https://images.isbndb.com/covers/68/97/9780156006897.jpg'), - ('1570629137', 'Confessions Of A Pagan Nun: A Novel', 'https://images.isbndb.com/covers/91/36/9781570629136.jpg'), - ('0312252854', 'The Music Lesson: A Novel', 'https://images.isbndb.com/covers/28/54/9780312252854.jpg'), - ('0312287984', 'Rashomon Gate: A Mystery Of Ancient Japan', 'https://images.isbndb.com/covers/79/86/9780312287986.jpg'), - ('0312966717', 'Scales Of Justice (Inspector Roderick Alleyn Mysteries)', 'https://images.isbndb.com/covers/67/13/9780312966713.jpg'), - ('0312964285', 'Death And The Dancing Footman', 'https://images.isbndb.com/covers/42/83/9780312964283.jpg'), - ('0312969902', 'Dead Water', 'https://images.isbndb.com/covers/99/05/9780312969905.jpg'), - ('0312966059', 'Final Curtain', 'https://images.isbndb.com/covers/60/58/9780312966058.jpg'), - ('1563335506', 'Golden Age Of Promiscuity', 'https://images.isbndb.com/covers/55/01/9781563335501.jpg'), - ('0684850400', 'Finding The Boyfriend Within: A Practical Guide For Tapping Into Your Own Source Of Love, Happiness, And Respect', 'https://images.isbndb.com/covers/04/05/9780684850405.jpg'), - ('1575663783', 'Moving On: The Gay Man''s Guide For Coping When A Relationship Ends', 'https://images.isbndb.com/covers/37/84/9781575663784.jpg'), - ('0316107093', 'Toons For Our Times: A Bloom County Book Of Heavy Metal Rump ''N Roll', 'https://images.isbndb.com/covers/70/99/9780316107099.jpg'), - ('0395836220', 'Stern Men', 'https://images.isbndb.com/covers/62/24/9780395836224.jpg'), - ('0743422287', 'Amy''s Answering Machine: Messages From Mom', 'https://images.isbndb.com/covers/22/84/9780743422284.jpg'), - ('0380842939', 'Sacajawea (Lewis & Clark Expedition)', 'https://images.isbndb.com/covers/29/33/9780380842933.jpg'), - ('0061093084', 'Everville: The Second Book Of The Art', 'https://images.isbndb.com/covers/30/81/9780061093081.jpg'), - ('0061099015', 'The Great And Secret Show', 'https://images.isbndb.com/covers/90/14/9780061099014.jpg'), - ('0451197399', 'The Ballad Of Frankie Silver', 'https://images.isbndb.com/covers/73/99/9780451197399.jpg'), - ('0889104646', 'Mother Tongue (Passport Books No 3)', 'https://images.isbndb.com/covers/46/48/9780889104648.jpg'), - ('0152050167', 'The Whale Rider', 'https://images.isbndb.com/covers/01/60/9780152050160.jpg'), - ('0151003130', 'The Doubtful Guest', 'https://images.isbndb.com/covers/31/36/9780151003136.jpg'), - ('0312978863', 'Murder With Puffins (Meg Langslow Mysteries)', 'https://images.isbndb.com/covers/88/60/9780312978860.jpg'), - ('0525946578', 'The Virgin''s Knot', 'https://images.isbndb.com/covers/65/71/9780525946571.jpg'), - ('0312282664', 'The Dragon King''s Palace: A Novel', 'https://images.isbndb.com/covers/26/60/9780312282660.jpg'), - ('0380732343', 'Hammerhead Ranch Motel', 'https://images.isbndb.com/covers/23/40/9780380732340.jpg'), - ('0670031909', 'Lost In A Good Book: A Thursday Next Novel', 'https://images.isbndb.com/covers/19/00/9780670031900.jpg'), - ('0380978415', 'Fluke: Or, I Know Why The Winged Whale Sings', 'https://images.isbndb.com/covers/84/10/9780380978410.jpg'), - ('055356773X', 'The Cereal Murders (Goldy Culinary Mysteries, Book 3)', 'https://images.isbndb.com/covers/77/31/9780553567731.jpg'), - ('0790004062', 'Nights In The Gardens Of Spain', 'https://images.isbndb.com/covers/40/68/9780790004068.jpg'), - ('076271235X', 'Puerto Rico Off The Beaten Path, 2nd: A Guide To Unique Places', 'https://images.isbndb.com/covers/23/59/9780762712359.jpg'), - ('0679750533', 'The Elephant Vanishes: Stories', 'https://images.isbndb.com/covers/05/36/9780679750536.jpg'), - ('038000741X', 'Monkey Wrench Gang', 'https://images.isbndb.com/covers/74/17/9780380007417.jpg'), - ('0553251481', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/14/87/9780553251487.jpg'), - ('0345326490', 'Desert Solitaire: A Season In The Wilderness', 'https://images.isbndb.com/covers/64/92/9780345326492.jpg'), - ('0451179285', 'The Stand', 'https://images.isbndb.com/covers/92/89/9780451179289.jpg'), - ('014003613X', 'Down Among The Women', 'https://images.isbndb.com/covers/61/38/9780140036138.jpg'), - ('0002712172', 'The Death Of The Body', 'https://images.isbndb.com/covers/21/70/9780002712170.jpg'), - ('0140099271', 'Oracles And Miracles', 'https://images.isbndb.com/covers/92/70/9780140099270.jpg'), - ('0553577808', 'A Letter Of Mary (Mary Russell Novels)', 'https://images.isbndb.com/covers/78/08/9780553577808.jpg'), - ('0812561864', 'Cat On A Hyacinth Hunt: A Midnight Louie Mystery (Midnight Louie Mysteries)', 'https://images.isbndb.com/covers/18/69/9780812561869.jpg'), - ('0790000458', 'Tangi (Pacific Writers)', 'https://images.isbndb.com/covers/04/59/9780790000459.jpg'), - ('1565120507', 'Night Of The Avenging Blowfish: A Novel Of Covert Operations, Love, And Luncheon Meat', 'https://images.isbndb.com/covers/05/01/9781565120501.jpg'), - ('0060936150', 'The Wise Women Of Havana', 'https://images.isbndb.com/covers/61/50/9780060936150.jpg'), - ('0399149562', 'Short & Tall Tales: Moose County Legends Collected By James Mackintosh Qwilleran', 'https://images.isbndb.com/covers/95/66/9780399149566.jpg'), - ('0312966849', 'Quaker Indictment (Quaker Sojourn)', 'https://images.isbndb.com/covers/68/43/9780312966843.jpg'), - ('0751501220', 'The Limits Of Detection: Ten Of The World''s Strangest Detective Stories', 'https://images.isbndb.com/covers/12/23/9780751501223.jpg'), - ('0684853043', 'The River Midnight', 'https://images.isbndb.com/covers/30/48/9780684853048.jpg'), - ('0688021174', 'The Highwayman', 'https://images.isbndb.com/covers/11/77/9780688021177.jpg'), - ('0718146298', 'Visions Of Sugar Plums', 'https://images.isbndb.com/covers/62/90/9780718146290.jpg'), - ('0946487758', 'Milk Treading', 'https://images.isbndb.com/covers/77/52/9780946487752.jpg'), - ('0446344672', 'Don''t Sit Under The Grits Tree With Anyone Else But Me', 'https://images.isbndb.com/covers/46/78/9780446344678.jpg'), - ('0425143538', 'Death Of A Peer', 'https://images.isbndb.com/covers/35/37/9780425143537.jpg'), - ('0743457471', 'A Lady Never Trifles With Thieves', 'https://images.isbndb.com/covers/74/77/9780743457477.jpg'), - ('0515077003', 'Death At The Bar', 'https://images.isbndb.com/covers/70/01/9780515077001.jpg'), - ('0515075345', 'Artists In Crime (Roderick Alleyn, Book 6)', 'https://images.isbndb.com/covers/53/42/9780515075342.jpg'), - ('0312966709', 'Enter A Murderer (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/67/06/9780312966706.jpg'), - ('0802135161', 'Oranges Are Not The Only Fruit', 'https://images.isbndb.com/covers/51/62/9780802135162.jpg'), - ('0312973144', 'Light Thickens', 'https://images.isbndb.com/covers/31/48/9780312973148.jpg'), - ('0515076279', 'Black As He''s Painted', 'https://images.isbndb.com/covers/62/71/9780515076271.jpg'), - ('0515078514', 'The Nursing Home Murder', 'https://images.isbndb.com/covers/85/10/9780515078510.jpg'), - ('0515075078', 'Night At The Vulcan', 'https://images.isbndb.com/covers/50/76/9780515075076.jpg'), - ('0515085928', 'Death In Ecstasy', 'https://images.isbndb.com/covers/59/21/9780515085921.jpg'), - ('0380780860', 'Murder On A Girls'' Night Out: A Southern Sisters Mystery', 'https://images.isbndb.com/covers/08/60/9780380780860.jpg'), - ('0060093595', 'The Conquest', 'https://images.isbndb.com/covers/35/94/9780060093594.jpg'), - ('0449004279', 'Saints And Villains (Fawcett Book)', 'https://images.isbndb.com/covers/42/72/9780449004272.jpg'), - ('0684844826', 'Salt Dancers', 'https://images.isbndb.com/covers/48/24/9780684844824.jpg'), - ('0061052582', 'Voyage', 'https://images.isbndb.com/covers/25/83/9780061052583.jpg'), - ('0802133525', 'Party Time And The New World Order', 'https://images.isbndb.com/covers/35/26/9780802133526.jpg'), - ('0880299193', 'The Jeeves Omnibus: Stiff Upper Lip / The Inimitable Jeeves / Carry On, Jeeves', 'https://images.isbndb.com/covers/91/90/9780880299190.jpg'), - ('0743243412', 'Wacky Chicks : Life Lessons From Fearlessly Inappropriate And Fabulously Eccentric Women', 'https://images.isbndb.com/covers/34/14/9780743243414.jpg'), - ('0316365521', 'Toot & Puddle', 'https://images.isbndb.com/covers/55/29/9780316365529.jpg'), - ('0684872536', 'December 6: A Novel', 'https://images.isbndb.com/covers/25/37/9780684872537.jpg'), - ('0743411943', 'The Book Of Fred: A Novel', 'https://images.isbndb.com/covers/19/43/9780743411943.jpg'), - ('0789305186', 'Overheard At The Bookstore', 'https://images.isbndb.com/covers/51/83/9780789305183.jpg'), - ('0515076066', 'Overture To Death', 'https://images.isbndb.com/covers/60/66/9780515076066.jpg'), - ('0553261096', 'Not Quite Dead Enough (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/10/97/9780553261097.jpg'), - ('0812574745', 'Swell Foop (Xanth, No. 25)', 'https://images.isbndb.com/covers/47/46/9780812574746.jpg'), - ('0380816547', 'Island Of The Sequined Love Nun', 'https://images.isbndb.com/covers/65/45/9780380816545.jpg'), - ('0316137251', 'Gentleman Junkie: The Life And Legacy Of William S. Burroughs', 'https://images.isbndb.com/covers/72/56/9780316137256.jpg'), - ('0151003378', 'Lost And Found: Dogs, Cats, And Everyday Heroes At A Country Animal Shelter', 'https://images.isbndb.com/covers/33/72/9780151003372.jpg'), - ('0060002433', 'Sons Of Heaven', 'https://images.isbndb.com/covers/24/35/9780060002435.jpg'), - ('0887300405', 'The E-Myth: Why Most Businesses Don''t Work And What To Do About It', 'https://images.isbndb.com/covers/04/00/9780887300400.jpg'), - ('0312042779', 'Catering To Nobody', 'https://images.isbndb.com/covers/27/76/9780312042776.jpg'), - ('0451182979', 'Parsley, Sage, Rosemary And Crime: A Pennsylvania Dutch Mystery With Recipes', 'https://images.isbndb.com/covers/29/75/9780451182975.jpg'), - ('0142000892', 'Miss Julia Takes Over', 'https://images.isbndb.com/covers/08/92/9780142000892.jpg'), - ('0553575295', 'Sold Down The River (Benjamin January, Book 4)', 'https://images.isbndb.com/covers/52/93/9780553575293.jpg'), - ('0679729771', 'Maus II: A Survivor''s Tale: And Here My Troubles Began', 'https://images.isbndb.com/covers/97/78/9780679729778.jpg'), - ('0066212545', 'The House Of Blue Mangoes: A Novel', 'https://images.isbndb.com/covers/25/48/9780066212548.jpg'), - ('0312119313', 'Voodoo Dreams: A Novel Of Marie Laveau', 'https://images.isbndb.com/covers/93/17/9780312119317.jpg'), - ('0345430948', 'Ripley Bogle (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/09/46/9780345430946.jpg'), - ('0553575287', 'Graveyard Dust (Benjamin January, Book 3)', 'https://images.isbndb.com/covers/52/86/9780553575286.jpg'), - ('0394735307', 'The Tale Of Genji', 'https://images.isbndb.com/covers/53/06/9780394735306.jpg'), - ('0060394366', 'Homesick: A Memoir', 'https://images.isbndb.com/covers/43/63/9780060394363.jpg'), - ('1565123352', 'Tamarind Woman', 'https://images.isbndb.com/covers/33/59/9781565123359.jpg'), - ('0375505172', 'April Witch: A Novel', 'https://images.isbndb.com/covers/51/71/9780375505171.jpg'), - ('0312282060', 'Murphy''s Law (A Molly Murphy Mystery)', 'https://images.isbndb.com/covers/20/66/9780312282066.jpg'), - ('0971263906', 'Saint Nick', 'https://images.isbndb.com/covers/39/01/9780971263901.jpg'), - ('0684831376', 'The Secret Of The Bulls', 'https://images.isbndb.com/covers/13/74/9780684831374.jpg'), - ('0385495420', 'The Colony Of Unrequited Dreams', 'https://images.isbndb.com/covers/54/24/9780385495424.jpg'), - ('0451186346', 'The Burglar Who Thought He Was Bogart: A Bernie Rhodenbarr Mystery', 'https://images.isbndb.com/covers/63/48/9780451186348.jpg'), - ('0394747232', 'Maus I: A Survivor''s Tale: My Father Bleeds History', 'https://images.isbndb.com/covers/72/31/9780394747231.jpg'), - ('0966086503', 'Vlad Dracula: The Dragon Prince', 'https://images.isbndb.com/covers/65/08/9780966086508.jpg'), - ('0061092002', 'Galilee', 'https://images.isbndb.com/covers/20/08/9780061092008.jpg'), - ('0451206002', 'Over The Edge (Alex Delaware)', 'https://images.isbndb.com/covers/60/08/9780451206008.jpg'), - ('0553234978', 'The Silent Speaker (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/49/78/9780553234978.jpg'), - ('0684810972', 'Bloodsucking Fiends', 'https://images.isbndb.com/covers/09/73/9780684810973.jpg'), - ('0312951469', 'Practical Demonkeeping: A Comedy Of Horrors', 'https://images.isbndb.com/covers/14/67/9780312951467.jpg'), - ('0898866065', 'Kurt Diemberger Omnibus: Summits & Secrets, The Endless Knot, Spirits Of The Air', 'https://images.isbndb.com/covers/60/63/9780898866063.jpg'), - ('0140043519', 'Junky', 'https://images.isbndb.com/covers/35/18/9780140043518.jpg'), - ('0451165624', 'On The Road (Signet)', 'https://images.isbndb.com/covers/56/26/9780451165626.jpg'), - ('1850514496', 'Collecting Art Nouveau', 'https://images.isbndb.com/covers/44/97/9781850514497.jpg'), - ('0312969880', 'The Mango Opera (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/98/82/9780312969882.jpg'), - ('1892327988', 'Sunk Without A Sound : The Tragic Colorado River Honeymoon Of Glen And Bessie Hyde', 'https://images.isbndb.com/covers/79/87/9781892327987.jpg'), - ('0066214440', 'Enemy Women: A Novel', 'https://images.isbndb.com/covers/44/43/9780066214443.jpg'), - ('0671881884', 'Coyote Blue', 'https://images.isbndb.com/covers/18/87/9780671881887.jpg'), - ('0312273126', 'The Women Of Molise: An Italian Village, 1950', 'https://images.isbndb.com/covers/31/25/9780312273125.jpg'), - ('0553575279', 'Fever Season (Benjamin January, Book 2)', 'https://images.isbndb.com/covers/52/79/9780553575279.jpg'), - ('0966941411', 'Dreamer', 'https://images.isbndb.com/covers/14/18/9780966941418.jpg'), - ('0394741919', 'Late Night With David Letterman: The Book', 'https://images.isbndb.com/covers/19/18/9780394741918.jpg'), - ('055358281X', 'A Little Death', 'https://images.isbndb.com/covers/28/19/9780553582819.jpg'), - ('0066211239', 'The Wise Women Of Havana', 'https://images.isbndb.com/covers/12/37/9780066211237.jpg'), - ('0441363946', 'I Have No Mouth', 'https://images.isbndb.com/covers/39/40/9780441363940.jpg'), - ('0671042297', 'Dream Of The Walled City', 'https://images.isbndb.com/covers/22/95/9780671042295.jpg'), - ('0380978407', 'Lamb: The Gospel According To Biff, Christ''s Childhood Pal', 'https://images.isbndb.com/covers/84/03/9780380978403.jpg'), - ('0553109243', 'Die Upon A Kiss', 'https://images.isbndb.com/covers/92/45/9780553109245.jpg'), - ('0618012710', 'The Best American Mystery Stories Of The Century (The Best American Series)', 'https://images.isbndb.com/covers/27/18/9780618012718.jpg'), - ('0312282621', 'The Pillow Book Of Lady Wisteria (St. Martin''s Minotaur Mystery)', 'https://images.isbndb.com/covers/26/22/9780312282622.jpg'), - ('0374129851', 'The Englishman''s Daughter: A True Story Of Love And Betrayal In World War One', 'https://images.isbndb.com/covers/98/59/9780374129859.jpg'), - ('1569471568', 'Tattoo Murder Case (Soho Crime)', 'https://images.isbndb.com/covers/15/62/9781569471562.jpg'), - ('0060958111', 'Extra Virgin: A Young Woman Discovers The Italian Riviera, Where Every Month Is Enchanted', 'https://images.isbndb.com/covers/81/14/9780060958114.jpg'), - ('0312966679', 'The Toyotomi Blades: A Ken Tanaka Mystery', 'https://images.isbndb.com/covers/66/76/9780312966676.jpg'), - ('0312963238', 'Death In Little Tokyo (A Ken Tanaka Mystery)', 'https://images.isbndb.com/covers/32/31/9780312963231.jpg'), - ('0375709118', 'In The Pond', 'https://images.isbndb.com/covers/91/11/9780375709111.jpg'), - ('1558746927', 'The 60-Second Novelist - What 22,613 People Taught Me About Life', 'https://images.isbndb.com/covers/69/23/9781558746923.jpg'), - ('0679441239', 'Anything Considered', 'https://images.isbndb.com/covers/12/36/9780679441236.jpg'), - ('0345438817', 'Welcome To The Great Mysterious', 'https://images.isbndb.com/covers/88/12/9780345438812.jpg'), - ('0312198493', 'Crazy For You', 'https://images.isbndb.com/covers/84/97/9780312198497.jpg'), - ('0553261940', 'NEW PROMISE, A #3 (Caitlin: The Promise Trilogy)', 'https://images.isbndb.com/covers/19/43/9780553261943.jpg'), - ('0553261568', 'Promises Broken (Caitlin: The Promise Trilogy, Book 2)', 'https://images.isbndb.com/covers/15/61/9780553261561.jpg'), - ('0553258125', 'TENDER PROMISES/ (Caitlin: The Promise Trilogy)', 'https://images.isbndb.com/covers/81/27/9780553258127.jpg'), - ('055325295X', 'TRUE LOVE (Caitlin: Love Trilogy) (v. 3)', 'https://images.isbndb.com/covers/29/58/9780553252958.jpg'), - ('0553251309', 'LOVE LOST (Caitlin: Love Trilogy)', 'https://images.isbndb.com/covers/13/02/9780553251302.jpg'), - ('0553247166', 'LOVING (Caitlin: Love Trilogy)', 'https://images.isbndb.com/covers/71/69/9780553247169.jpg'), - ('055325944X', 'PRETTY IN PINK', 'https://images.isbndb.com/covers/94/45/9780553259445.jpg'), - ('0671682849', 'Dark Angel (Casteel Saga, Book 2)', 'https://images.isbndb.com/covers/28/42/9780671682842.jpg'), - ('067164257X', 'Garden Of Shadows (Dollanganger, No. 5)', 'https://images.isbndb.com/covers/25/70/9780671642570.jpg'), - ('0671656570', 'MY SWEET AUDRINA', 'https://images.isbndb.com/covers/65/77/9780671656577.jpg'), - ('0671640453', 'Flowers In The Attic', 'https://images.isbndb.com/covers/04/53/9780671640453.jpg'), - ('0440202558', 'The End Of Summer', 'https://images.isbndb.com/covers/25/54/9780440202554.jpg'), - ('0440202515', 'Another View', 'https://images.isbndb.com/covers/25/16/9780440202516.jpg'), - ('0060090383', 'Rachel''s Holiday', 'https://images.isbndb.com/covers/03/88/9780060090388.jpg'), - ('0425135020', 'The Empress File (Kidd)', 'https://images.isbndb.com/covers/50/20/9780425135020.jpg'), - ('0871138190', 'Four Blondes', 'https://images.isbndb.com/covers/81/94/9780871138194.jpg'), - ('006103004X', 'Blind Man''s Bluff: The Untold Story Of American Submarine Espionage', 'https://images.isbndb.com/covers/00/48/9780061030048.jpg'), - ('0446600458', 'The Thomas Berryman Number', 'https://images.isbndb.com/covers/04/53/9780446600453.jpg'), - ('055327824X', 'Of Mice And Men', 'https://images.isbndb.com/covers/82/48/9780553278248.jpg'), - ('0553211765', 'A Tale Of Two Cities (Bantam Classic)', 'https://images.isbndb.com/covers/17/64/9780553211764.jpg'), - ('0451403754', 'Sweet Everlasting (Topaz Historical Romances)', 'https://images.isbndb.com/covers/37/59/9780451403759.jpg'), - ('0553107240', 'Sticks & Scones', 'https://images.isbndb.com/covers/72/41/9780553107241.jpg'), - ('0517574985', 'Cleopatra Gold', 'https://images.isbndb.com/covers/49/80/9780517574980.jpg'), - ('0836221443', 'Camille''s Children: 31 Miracles And Counting', 'https://images.isbndb.com/covers/14/42/9780836221442.jpg'), - ('0312861230', 'In The Arms Of The Sky', 'https://images.isbndb.com/covers/12/30/9780312861230.jpg'), - ('0399142401', 'Sanctuary', 'https://images.isbndb.com/covers/24/06/9780399142406.jpg'), - ('0684872706', 'Waking Up In America: How One Doctor Brings Hope To Those Who Need It Most', 'https://images.isbndb.com/covers/27/04/9780684872704.jpg'), - ('0310231876', 'Forgiving The Dead Man Walking: Only One Woman Can Tell The Entire Story', 'https://images.isbndb.com/covers/18/75/9780310231875.jpg'), - ('0684871262', 'Speaking In Tongues : A Novel', 'https://images.isbndb.com/covers/12/64/9780684871264.jpg'), - ('0451188489', 'A Maiden''s Grave', 'https://images.isbndb.com/covers/84/89/9780451188489.jpg'), - ('0970816308', 'Channeling Biker Bob: Heart Of A Warrior', 'https://images.isbndb.com/covers/63/06/9780970816306.jpg'), - ('0312063571', 'Flowers In The Rain & Other Stories', 'https://images.isbndb.com/covers/35/73/9780312063573.jpg'), - ('0070064512', 'If Life Is A Bowl Of Cherries, What Am I Doing In The Pits?', 'https://images.isbndb.com/covers/45/15/9780070064515.jpg'), - ('0385499825', 'A Girl Named Zippy: Growing Up Small In Mooreland Indiana', 'https://images.isbndb.com/covers/98/28/9780385499828.jpg'), - ('0722536305', 'Hayfever: How To Beat Hayfever-Permanently (Thorsons Health)', 'https://images.isbndb.com/covers/63/08/9780722536308.jpg'), - ('0836270320', 'Love, Otto: The Legacy Of Anne Frank', 'https://images.isbndb.com/covers/03/27/9780836270327.jpg'), - ('1560438487', 'Lady In Waiting: Developing Your Love Relationships', 'https://images.isbndb.com/covers/84/89/9781560438489.jpg'), - ('1565075315', 'What To Do Until Love Finds You: Getting Ready For Mr. Right', 'https://images.isbndb.com/covers/53/13/9781565075313.jpg'), - ('0385315724', 'The Paperboy', 'https://images.isbndb.com/covers/57/22/9780385315722.jpg'), - ('0761517049', 'How We Met: Chance Encounters And Other True Love Stories Of Real-Life Couples', 'https://images.isbndb.com/covers/70/47/9780761517047.jpg'), - ('0739400614', 'A Child Called "It" And The Lost Boy - One Child''s Courage To Survive', 'https://images.isbndb.com/covers/06/16/9780739400616.jpg'), - ('1558746625', 'A 6th Bowl Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/66/26/9781558746626.jpg'), - ('1558744592', 'A 4th Course Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/45/92/9781558744592.jpg'), - ('0670032379', 'The Secret Life Of Bees', 'https://images.isbndb.com/covers/23/72/9780670032372.jpg'), - ('0425186326', 'Family Album', 'https://images.isbndb.com/covers/63/29/9780425186329.jpg'), - ('0446610674', 'On Bear Mountain', 'https://images.isbndb.com/covers/06/74/9780446610674.jpg'), - ('0440224594', 'The Return Journey', 'https://images.isbndb.com/covers/45/94/9780440224594.jpg'), - ('0553066684', 'Success Is A Choice', 'https://images.isbndb.com/covers/66/85/9780553066685.jpg'), - ('0739417991', 'Necessary Changes', 'https://images.isbndb.com/covers/79/97/9780739417997.jpg'), - ('0670878847', 'The Most Wanted', 'https://images.isbndb.com/covers/88/40/9780670878840.jpg'), - ('0688160344', 'When I Fall In Love', 'https://images.isbndb.com/covers/03/40/9780688160340.jpg'), - ('0060193751', 'Circle Of Three: A Novel', 'https://images.isbndb.com/covers/37/51/9780060193751.jpg'), - ('0446516953', 'Last Tango In Brooklyn', 'https://images.isbndb.com/covers/69/52/9780446516952.jpg'), - ('0375412336', 'Bare: On Women, Dancing, Sex, And Power', 'https://images.isbndb.com/covers/23/32/9780375412332.jpg'), - ('0553288105', 'The Gods Themselves', 'https://images.isbndb.com/covers/81/00/9780553288100.jpg'), - ('0586025944', 'THE REST OF THE ROBOTS', 'https://images.isbndb.com/covers/59/49/9780586025949.jpg'), - ('0586062009', 'Robots And Empire', 'https://images.isbndb.com/covers/20/05/9780586062005.jpg'), - ('055326981X', 'The Practice Effect (Bantam Spectra Book)', 'https://images.isbndb.com/covers/98/19/9780553269819.jpg'), - ('0946626820', 'The Diary Of A Chambermaid (Decadence From Dedalus)', 'https://images.isbndb.com/covers/68/23/9780946626823.jpg'), - ('0375755365', 'The Haunted Wood: Soviet Espionage In America--The Stalin Era (Modern Library Paperbacks)', 'https://images.isbndb.com/covers/53/61/9780375755361.jpg'), - ('1869414365', 'Belief', 'https://images.isbndb.com/covers/43/68/9781869414368.jpg'), - ('0684818442', 'From Time To Time', 'https://images.isbndb.com/covers/84/43/9780684818443.jpg'), - ('0890876517', 'A Creative Companion: How To Free Your Creative Spirit', 'https://images.isbndb.com/covers/65/10/9780890876510.jpg'), - ('0380766558', 'The Elusive Flame', 'https://images.isbndb.com/covers/65/50/9780380766550.jpg'), - ('0310217601', 'Trial By Fire (Newpointe 911 Series #4)', 'https://images.isbndb.com/covers/76/02/9780310217602.jpg'), - ('0803289065', 'Peder Victorious: A Tale Of The Pioneers Twenty Years Later', 'https://images.isbndb.com/covers/90/62/9780803289062.jpg'), - ('0805401725', 'The Lazarus Project', 'https://images.isbndb.com/covers/17/21/9780805401721.jpg'), - ('0708942008', 'The Call Of The Isles (Ulverscroft Large Print Series)', 'https://images.isbndb.com/covers/20/00/9780708942000.jpg'), - ('0310243882', 'Deadlock', 'https://images.isbndb.com/covers/38/85/9780310243885.jpg'), - ('0764220330', 'Honor''s Quest (Rocky Mountain Legacy #3)', 'https://images.isbndb.com/covers/03/33/9780764220333.jpg'), - ('0380812061', 'The Black Lyon', 'https://images.isbndb.com/covers/20/66/9780380812066.jpg'), - ('0890876789', 'Inspiration Sandwich: Stories To Inspire Our Creative Freedom', 'https://images.isbndb.com/covers/67/87/9780890876787.jpg'), - ('0836246047', 'Life Is Just A Chair Of Bowlies', 'https://images.isbndb.com/covers/60/49/9780836246049.jpg'), - ('0805210288', 'All Rivers Run To The Sea: Memoirs', 'https://images.isbndb.com/covers/02/86/9780805210286.jpg'), - ('0062512234', 'Boychiks In The Hood: Travels In The Hasidic Underground', 'https://images.isbndb.com/covers/22/39/9780062512239.jpg'), - ('0803298188', 'The Sleeper Awakes (Bison Frontiers Of Imagination)', 'https://images.isbndb.com/covers/81/87/9780803298187.jpg'), - ('082177462X', 'Kentucky Sunrise', 'https://images.isbndb.com/covers/46/25/9780821774625.jpg'), - ('0140149902', 'The Republic Of Love', 'https://images.isbndb.com/covers/99/06/9780140149906.jpg'), - ('0385334060', 'A Still Small Voice', 'https://images.isbndb.com/covers/40/68/9780385334068.jpg'), - ('039914983X', 'The Spinning Man', 'https://images.isbndb.com/covers/98/32/9780399149832.jpg'), - ('0743230191', 'The Falling Nun: And Other Stories', 'https://images.isbndb.com/covers/01/93/9780743230193.jpg'), - ('0679767185', 'The Country Ahead Of Us, The Country Behind', 'https://images.isbndb.com/covers/71/83/9780679767183.jpg'), - ('0060925582', 'How Does Aspirin Find A Headache?', 'https://images.isbndb.com/covers/55/81/9780060925581.jpg'), - ('037570177X', 'Day Of The Bees: A Novel', 'https://images.isbndb.com/covers/17/71/9780375701771.jpg'), - ('0380714647', 'Gift Of A Letter: Giving The Gift Of Ourselves-- Add Richness And Grace To Your Life Through The Art Of Letter-writing', 'https://images.isbndb.com/covers/46/43/9780380714643.jpg'), - ('0765305569', 'The Pixel Eye (Phil D''Amato)', 'https://images.isbndb.com/covers/55/65/9780765305565.jpg'), - ('0811831620', 'The Gryphon: In Which The Extraordinary Correspondence Of Griffin & Sabine Is Rediscovered', 'https://images.isbndb.com/covers/16/28/9780811831628.jpg'), - ('0886776430', 'The Black Gryphon (Mage Wars)', 'https://images.isbndb.com/covers/64/35/9780886776435.jpg'), - ('0553564935', 'Magician: Master (Riftwar Saga, Book 2)', 'https://images.isbndb.com/covers/49/38/9780553564938.jpg'), - ('0743422937', 'Bleeding Heart', 'https://images.isbndb.com/covers/29/32/9780743422932.jpg'), - ('0345338715', 'Enchanters'' End Game (The Belgariad, Book 5)', 'https://images.isbndb.com/covers/87/16/9780345338716.jpg'), - ('0435909592', 'God''s Bits Of Wood', 'https://images.isbndb.com/covers/95/98/9780435909598.jpg'), - ('0385413017', 'Fumblerules', 'https://images.isbndb.com/covers/30/15/9780385413015.jpg'), - ('0345403959', 'Belgarath The Sorcerer', 'https://images.isbndb.com/covers/39/57/9780345403957.jpg'), - ('0553285246', 'Prince Of The Blood (Spectra Fantasy)', 'https://images.isbndb.com/covers/52/46/9780553285246.jpg'), - ('0394178637', 'San Francisco At Your Feet: The Great Walks In A Walker''s Town (An Evergreen Book)', 'https://images.isbndb.com/covers/86/39/9780394178639.jpg'), - ('0380718839', 'Booked To Die', 'https://images.isbndb.com/covers/88/32/9780380718832.jpg'), - ('9974560004', 'Cadaveres Exquisitos (Biblioteca Del Sur) (Spanish Edition)', 'https://images.isbndb.com/covers/00/00/9789974560000.jpg'), - ('0679740074', 'No Heroics, Please: Uncollected Writings', 'https://images.isbndb.com/covers/00/70/9780679740070.jpg'), - ('0786648287', 'Swing Jazz Duets, Tenor Sax Edition', 'https://images.isbndb.com/covers/82/83/9780786648283.jpg'), - ('0679727124', 'The Debut', 'https://images.isbndb.com/covers/71/25/9780679727125.jpg'), - ('015640057X', 'Henry And June: From The Unexpurgated Diary Of Ana?s Nin, [1931-1932].', 'https://images.isbndb.com/covers/05/72/9780156400572.jpg'), - ('0140309594', 'Pippi Goes On Board (Pippi Longstocking)', 'https://images.isbndb.com/covers/95/91/9780140309591.jpg'), - ('0451205235', 'Cold Flat Junction (Emma Graham Mysteries)', 'https://images.isbndb.com/covers/52/30/9780451205230.jpg'), - ('0804120021', 'Out Of Sight (The Men Of T-FLAC: The Wrights, Book 5)', 'https://images.isbndb.com/covers/00/29/9780804120029.jpg'), - ('0449909433', 'Travels With Lizbeth: Three Years On The Road And On The Streets', 'https://images.isbndb.com/covers/94/30/9780449909430.jpg'), - ('0802137954', 'The Ginger Man', 'https://images.isbndb.com/covers/79/51/9780802137951.jpg'), - ('0684822652', 'Three To Get Deadly (Stephanie Plum, No. 3) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/26/55/9780684822655.jpg'), - ('038547640X', 'On A Bed Of Rice', 'https://images.isbndb.com/covers/64/09/9780385476409.jpg'), - ('1580291023', 'Elvis: Unknown Stories Behind The Legend', 'https://images.isbndb.com/covers/10/26/9781580291026.jpg'), - ('0316896586', 'Cut Numbers : A Novel', 'https://images.isbndb.com/covers/65/80/9780316896580.jpg'), - ('015600514X', 'St. Burl''s Obituary', 'https://images.isbndb.com/covers/51/42/9780156005142.jpg'), - ('0441005608', 'The Warlock In Spite Of Himself (Warlock Series)', 'https://images.isbndb.com/covers/56/04/9780441005604.jpg'), - ('0345371631', 'Shadow Leader (Tales Of The Wolves)', 'https://images.isbndb.com/covers/16/38/9780345371638.jpg'), - ('0380789833', 'Shards Of A Broken Crown (Serpentwar Saga, Book 4)', 'https://images.isbndb.com/covers/98/32/9780380789832.jpg'), - ('0689860064', 'Dragondrums (Harper Hall Trilogy)', 'https://images.isbndb.com/covers/00/65/9780689860065.jpg'), - ('0937295353', 'Happy Birthday, Samantha! (American Girls Collection)', 'https://images.isbndb.com/covers/53/59/9780937295359.jpg'), - ('1562475355', 'Josefina 1824: Meet Josefina, Josefina Learns A Lesson, Josefina''s Surprise', 'https://images.isbndb.com/covers/53/52/9781562475352.jpg'), - ('0937295418', 'Samantha Saves The Day (American Girl)', 'https://images.isbndb.com/covers/54/10/9780937295410.jpg'), - ('1562470078', 'Felicity Learns A Lesson (American Girl Collection)', 'https://images.isbndb.com/covers/00/74/9781562470074.jpg'), - ('0451524381', 'Romeo And Juliet, The Tragedy Of (Signet Classics)', 'https://images.isbndb.com/covers/43/86/9780451524386.jpg'), - ('0805066128', 'Before I Say Goodbye: Recollections And Observations From One Woman''s Final Year', 'https://images.isbndb.com/covers/61/28/9780805066128.jpg'), - ('068817163X', 'May I Kiss You On The Lips, Miss Sandra?', 'https://images.isbndb.com/covers/16/36/9780688171636.jpg'), - ('0553569155', 'Seinlanguage', 'https://images.isbndb.com/covers/91/55/9780553569155.jpg'), - ('0316735116', 'Playing The Bones', 'https://images.isbndb.com/covers/51/17/9780316735117.jpg'), - ('0060520825', 'The Hidden Life Of Otto Frank', 'https://images.isbndb.com/covers/08/23/9780060520823.jpg'), - ('0671517325', 'Love Me To Death: A Journalist''s Memoir Of The Hunt For Her Friend''s Killer', 'https://images.isbndb.com/covers/73/28/9780671517328.jpg'), - ('0316785644', 'The Fig Eater', 'https://images.isbndb.com/covers/56/48/9780316785648.jpg'), - ('0899193846', 'My Present Age', 'https://images.isbndb.com/covers/38/47/9780899193847.jpg'), - ('0425169871', 'Firebird', 'https://images.isbndb.com/covers/98/72/9780425169872.jpg'), - ('081296697X', 'Selected Short Stories Of John O''Hara (Modern Library Classics)', 'https://images.isbndb.com/covers/69/78/9780812966978.jpg'), - ('067974245X', 'Me (Random House Large Print)', 'https://images.isbndb.com/covers/24/56/9780679742456.jpg'), - ('0375506128', 'I Cannot Tell A Lie, Exactly', 'https://images.isbndb.com/covers/61/23/9780375506123.jpg'), - ('1573061425', 'Elvis In Hawaii', 'https://images.isbndb.com/covers/14/21/9781573061421.jpg'), - ('0879052651', 'Sudden Fiction: American Short-Short Stories', 'https://images.isbndb.com/covers/26/52/9780879052652.jpg'), - ('0688177026', 'Best Friends', 'https://images.isbndb.com/covers/70/27/9780688177027.jpg'), - ('1558612203', 'The Right Thing To Do', 'https://images.isbndb.com/covers/22/04/9781558612204.jpg'), - ('0684872730', 'The Vision Of Emma Blau', 'https://images.isbndb.com/covers/27/35/9780684872735.jpg'), - ('0393316580', 'The Shadow Of Desire', 'https://images.isbndb.com/covers/65/82/9780393316582.jpg'), - ('0449911438', 'Eating Fire And Drinking Water', 'https://images.isbndb.com/covers/14/33/9780449911433.jpg'), - ('0804117683', 'Moo', 'https://images.isbndb.com/covers/76/85/9780804117685.jpg'), - ('0836217012', 'Cows Of Our Planet: A Far Side Collection', 'https://images.isbndb.com/covers/70/18/9780836217018.jpg'), - ('0140447954', 'A Hero Of Our Time (Penguin Classics)', 'https://images.isbndb.com/covers/79/58/9780140447958.jpg'), - ('0446600660', 'Strip Tease', 'https://images.isbndb.com/covers/06/68/9780446600668.jpg'), - ('0399236260', 'Things Not Seen', 'https://images.isbndb.com/covers/62/66/9780399236266.jpg'), - ('1573220485', 'The Beach', 'https://images.isbndb.com/covers/04/84/9781573220484.jpg'), - ('0375757430', 'Shades Of Jade: A Novel (Strivers Row)', 'https://images.isbndb.com/covers/74/33/9780375757433.jpg'), - ('0880707232', 'One Small Sparrow: The Remarkable, Real-Life Drama Of One Community''s Response To Save A Little Boy ''s Life', 'https://images.isbndb.com/covers/72/37/9780880707237.jpg'), - ('0385491034', 'The Robber Bride', 'https://images.isbndb.com/covers/10/37/9780385491037.jpg'), - ('0380727943', 'Ain''t Gonna Be The Same Fool Twice', 'https://images.isbndb.com/covers/79/40/9780380727940.jpg'), - ('0374527075', 'A Small Place', 'https://images.isbndb.com/covers/70/75/9780374527075.jpg'), - ('0801855578', 'The Friday Book (Maryland Paperback Bookshelf)', 'https://images.isbndb.com/covers/55/73/9780801855573.jpg'), - ('0374134669', 'Dance Real Slow', 'https://images.isbndb.com/covers/46/62/9780374134662.jpg'), - ('0679772936', 'False Allegations: A Burke Novel', 'https://images.isbndb.com/covers/29/34/9780679772934.jpg'), - ('0312194404', 'Bachelor Brothers'' Bed & Breakfast Pillow Book', 'https://images.isbndb.com/covers/44/06/9780312194406.jpg'), - ('0064431290', 'George Shrinks (Reading Rainbow)', 'https://images.isbndb.com/covers/12/93/9780064431293.jpg'), - ('0684808943', 'A Good Life: Newspapering And Other Adventures', 'https://images.isbndb.com/covers/89/49/9780684808949.jpg'), - ('0380814110', 'Duty: A Father, His Son, And The Man Who Won The War', 'https://images.isbndb.com/covers/41/14/9780380814114.jpg'), - ('1580172466', 'North American Clone Brews: Homebrew Recipes For Your Favorite American And Canadian Beers', 'https://images.isbndb.com/covers/24/62/9781580172462.jpg'), - ('0446677388', 'Kiss The Girls (2nd Alex Cross Novel)', 'https://images.isbndb.com/covers/73/87/9780446677387.jpg'), - ('0679762108', 'The Sportswriter: Bascombe Trilogy (1)', 'https://images.isbndb.com/covers/21/02/9780679762102.jpg'), - ('0312315600', 'Big Lies: The Right-Wing Propaganda Machine And How It Distorts The Truth', 'https://images.isbndb.com/covers/56/03/9780312315603.jpg'), - ('0811214206', 'Midsummer Night', 'https://images.isbndb.com/covers/42/09/9780811214209.jpg'), - ('0553072455', 'Long Quiet Highway: Waking Up In America', 'https://images.isbndb.com/covers/24/57/9780553072457.jpg'), - ('0060914440', 'Skywriting By Word Of Mouth : And Other Writings, Including "The Ballad Of John And Yoko"', 'https://images.isbndb.com/covers/44/48/9780060914448.jpg'), - ('0385498055', 'The Daydreamer', 'https://images.isbndb.com/covers/80/50/9780385498050.jpg'), - ('0399518231', '1,401 More Things That P*Ss Me Off', 'https://images.isbndb.com/covers/82/32/9780399518232.jpg'), - ('0679749519', 'Remembering Babylon: A Novel', 'https://images.isbndb.com/covers/95/16/9780679749516.jpg'), - ('0761513116', 'The Wealthy Barber, Updated 3rd Edition: Everyone''s Commonsense Guide To Becoming Financially Independent', 'https://images.isbndb.com/covers/31/17/9780761513117.jpg'), - ('0679731946', 'Picturing Will', 'https://images.isbndb.com/covers/19/48/9780679731948.jpg'), - ('0679745327', 'Brightness Falls', 'https://images.isbndb.com/covers/53/27/9780679745327.jpg'), - ('7119020412', 'TALES FROM ANCIENT CHINA''S IMPERIAL HAREM', 'https://images.isbndb.com/covers/04/19/9787119020419.jpg'), - ('0130866172', 'Accent Of Success, The: A Practical Guide For International Students', 'https://images.isbndb.com/covers/61/72/9780130866172.jpg'), - ('0929701364', 'She Drove Without Stopping: A Novel', 'https://images.isbndb.com/covers/13/63/9780929701363.jpg'), - ('067975444X', 'Separation', 'https://images.isbndb.com/covers/44/42/9780679754442.jpg'), - ('0671028502', 'Home Before Dark (Contemporary Classics (Washington Square Press))', 'https://images.isbndb.com/covers/85/03/9780671028503.jpg'), - ('0671047426', 'Spanking Watson (Kinky Friedman Novels)', 'https://images.isbndb.com/covers/74/29/9780671047429.jpg'), - ('0385313152', 'Blown Sideways Through Life: A Hilarious Tour De Resume', 'https://images.isbndb.com/covers/31/55/9780385313155.jpg'), - ('0451202112', 'Wake Of The Perdido Star', 'https://images.isbndb.com/covers/21/16/9780451202116.jpg'), - ('059527059X', 'The Greenhouse Conspiracy', 'https://images.isbndb.com/covers/05/90/9780595270590.jpg'), - ('0345390016', 'Nurses', 'https://images.isbndb.com/covers/00/11/9780345390011.jpg'), - ('0449221431', 'The Novel', 'https://images.isbndb.com/covers/14/33/9780449221433.jpg'), - ('0140186832', 'A Portrait Of The Artist As A Young Man (Twentieth-Century Classics)', 'https://images.isbndb.com/covers/68/33/9780140186833.jpg'), - ('0060929855', 'Three Plays (Perennial Classics)', 'https://images.isbndb.com/covers/98/55/9780060929855.jpg'), - ('0380792478', 'Rattlesnake Crossing (Joanna Brady Mysteries, Book 6)', 'https://images.isbndb.com/covers/24/74/9780380792474.jpg'), - ('0670839809', 'Waiting To Exhale', 'https://images.isbndb.com/covers/98/03/9780670839803.jpg'), - ('0679426612', 'Rose', 'https://images.isbndb.com/covers/66/15/9780679426615.jpg'), - ('0471349976', 'The Professional Chef''s Knife Kit', 'https://images.isbndb.com/covers/99/76/9780471349976.jpg'), - ('0679769420', 'The Hundred Brothers', 'https://images.isbndb.com/covers/94/22/9780679769422.jpg'), - ('044990542X', 'Tales From Margaritaville', 'https://images.isbndb.com/covers/54/25/9780449905425.jpg'), - ('0152022341', 'Sacajawea', 'https://images.isbndb.com/covers/23/41/9780152022341.jpg'), - ('0816752087', 'My Cat Is Going To The Dogs (Wacky World Of Snarvey Gooper)', 'https://images.isbndb.com/covers/20/89/9780816752089.jpg'), - ('0001714600', 'I Want To Be Somebody New! (Beginner Series)', 'https://images.isbndb.com/covers/46/01/9780001714601.jpg'), - ('0395906954', 'See The Circus (Lift The Flap Series)', 'https://images.isbndb.com/covers/69/58/9780395906958.jpg'), - ('0689831803', 'Raggedy Ann And Andy And The Magic Potion', 'https://images.isbndb.com/covers/18/05/9780689831805.jpg'), - ('0880016620', 'The Palace', 'https://images.isbndb.com/covers/66/29/9780880016629.jpg'), - ('0758201885', 'Afterlife', 'https://images.isbndb.com/covers/18/81/9780758201881.jpg'), - ('0873492862', 'Motown : The Golden Years: The Stars And Music That Shaped A Generation', 'https://images.isbndb.com/covers/28/67/9780873492867.jpg'), - ('0688167241', 'Basic Baking: Everything You Need To Know To Start Baking Plus 101 Luscious Dessert Recipes That Anyone Can Make', 'https://images.isbndb.com/covers/72/40/9780688167240.jpg'), - ('1580083986', 'Foods Of The Southwest Indian Nations', 'https://images.isbndb.com/covers/39/80/9781580083980.jpg'), - ('1864503157', 'Catalunya & The Costa Brava (Lonely Planet Catalunya & Costa Brava)', 'https://images.isbndb.com/covers/31/59/9781864503159.jpg'), - ('0688167802', 'Circling The Drain: Stories', 'https://images.isbndb.com/covers/78/06/9780688167806.jpg'), - ('0688067700', 'Fat Tuesday', 'https://images.isbndb.com/covers/77/00/9780688067700.jpg'), - ('0446528595', 'Swimming Across: A Memoir', 'https://images.isbndb.com/covers/85/97/9780446528597.jpg'), - ('0140275010', 'Cod: A Biography Of The Fish That Changed The World', 'https://images.isbndb.com/covers/50/18/9780140275018.jpg'), - ('185585662X', 'Greetings From Earth: The Art Of Bob Eggleton', 'https://images.isbndb.com/covers/66/22/9781855856622.jpg'), - ('0140109595', 'A Place I''ve Never Been (Contemporary American Fiction)', 'https://images.isbndb.com/covers/95/97/9780140109597.jpg'), - ('0520206738', 'Golden Days (California Fiction)', 'https://images.isbndb.com/covers/67/31/9780520206731.jpg'), - ('0880015942', 'Spence And Lila', 'https://images.isbndb.com/covers/59/43/9780880015943.jpg'), - ('0394741188', 'Ransom', 'https://images.isbndb.com/covers/11/85/9780394741185.jpg'), - ('1566198798', 'Essays And Sketches Of Mark Twain', 'https://images.isbndb.com/covers/87/90/9781566198790.jpg'), - ('0060002093', 'Ignorance: A Novel', 'https://images.isbndb.com/covers/20/91/9780060002091.jpg'), - ('0807083178', 'Thousand Pieces Of Gold (Asian Voices)', 'https://images.isbndb.com/covers/31/78/9780807083178.jpg'), - ('0679722181', 'The Good Soldier', 'https://images.isbndb.com/covers/21/82/9780679722182.jpg'), - ('1896891063', 'Beans & Rice (Company''s Coming)', 'https://images.isbndb.com/covers/10/64/9781896891064.jpg'), - ('038089887X', 'Foreign Affairs', 'https://images.isbndb.com/covers/88/79/9780380898879.jpg'), - ('034540453X', 'Vanishing Smile (Thomas Black Mysteries)', 'https://images.isbndb.com/covers/45/34/9780345404534.jpg'), - ('1562827960', 'Coffee Will Make You Black', 'https://images.isbndb.com/covers/79/60/9781562827960.jpg'), - ('1567313736', 'Uppity Women Of Shakespearean Times', 'https://images.isbndb.com/covers/37/34/9781567313734.jpg'), - ('031202259X', 'Murder In The Oval Office', 'https://images.isbndb.com/covers/25/94/9780312022594.jpg'), - ('0762723742', 'Washington Off The Beaten Path, 5th: A Guide To Unique Places (Off The Beaten Path Series)', 'https://images.isbndb.com/covers/37/44/9780762723744.jpg'), - ('0684833840', 'KAPLAN SAT IN A WEEK (1996 Edition)', 'https://images.isbndb.com/covers/38/42/9780684833842.jpg'), - ('0805056084', 'Cruel As The Grave: A Medieval Mystery', 'https://images.isbndb.com/covers/60/82/9780805056082.jpg'), - ('0374153248', 'Family Man', 'https://images.isbndb.com/covers/32/43/9780374153243.jpg'), - ('0786863951', 'When You Eat At The Refrigerator, Pull Up A Chair: 50 Ways To Feel Thin, Gorgeous, And Happy (When You Feel Anything But)', 'https://images.isbndb.com/covers/39/52/9780786863952.jpg'), - ('185828869X', 'The Rough Guide To New York City', 'https://images.isbndb.com/covers/86/97/9781858288697.jpg'), - ('0684857022', 'MY DATE WITH SATAN: Stories', 'https://images.isbndb.com/covers/70/22/9780684857022.jpg'), - ('0440403790', 'My Name Is Not Angelica', 'https://images.isbndb.com/covers/37/91/9780440403791.jpg'), - ('0517220121', 'They Went Broke?!: Bankruptcies And Money Disaster Of The Rich & Famous', 'https://images.isbndb.com/covers/01/22/9780517220122.jpg'), - ('0805067922', 'Dancer: A Novel', 'https://images.isbndb.com/covers/79/27/9780805067927.jpg'), - ('0449907562', 'Engaged Woman''s Survival Guide', 'https://images.isbndb.com/covers/75/66/9780449907566.jpg'), - ('0878575103', 'Babies And Other Hazards Of Sex: How To Make A Tiny Person In Only 9 Months, With Tools You Probably Have Around The Home', 'https://images.isbndb.com/covers/51/07/9780878575107.jpg'), - ('1877988243', 'Best Places To Kiss In The Northwest : A Romantic Travel Guide (7th Rev Ed)', 'https://images.isbndb.com/covers/82/40/9781877988240.jpg'), - ('0785799524', 'Breathing Lessons', 'https://images.isbndb.com/covers/95/28/9780785799528.jpg'), - ('0877017883', 'Griffin & Sabine: An Extraordinary Correspondence', 'https://images.isbndb.com/covers/78/82/9780877017882.jpg'), - ('0446604100', 'The Broken Promise Land', 'https://images.isbndb.com/covers/41/09/9780446604109.jpg'), - ('0440222028', 'Simisola', 'https://images.isbndb.com/covers/20/26/9780440222026.jpg'), - ('0316199648', 'Jim The Boy: A Novel', 'https://images.isbndb.com/covers/96/43/9780316199643.jpg'), - ('1556522460', 'The Book Group Book: A Thoughtful Guide To Forming And Enjoying A Stimulating Book Discussion Group', 'https://images.isbndb.com/covers/24/68/9781556522468.jpg'), - ('0525485082', 'Painted Ladies Revisited: San Francisco''s Resplendent Victorians Inside And Out', 'https://images.isbndb.com/covers/50/87/9780525485087.jpg'), - ('1558748865', 'Chicken Soup For The Gardener''s Soul, 101 Stories To Sow Seeds Of Love, Hope And Laughter (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/88/66/9781558748866.jpg'), - ('1573223425', 'Blue Shoe', 'https://images.isbndb.com/covers/34/23/9781573223423.jpg'), - ('0679753761', 'Far Afield', 'https://images.isbndb.com/covers/37/66/9780679753766.jpg'), - ('0060081961', 'Once Upon A Town: The Miracle Of The North Platte Canteen', 'https://images.isbndb.com/covers/19/66/9780060081966.jpg'), - ('0486200701', 'The Book Of Tea', 'https://images.isbndb.com/covers/07/05/9780486200705.jpg'), - ('0553096060', 'Sein Language', 'https://images.isbndb.com/covers/60/64/9780553096064.jpg'), - ('0813525764', 'Transit Talk: New York''s Bus And Subway Workers Tell Their Stories', 'https://images.isbndb.com/covers/57/61/9780813525761.jpg'), - ('0380730200', 'The Giant''s House: A Romance', 'https://images.isbndb.com/covers/02/09/9780380730209.jpg'), - ('0451403800', 'Telling Lies (Maggie MacGowen Mystery)', 'https://images.isbndb.com/covers/38/03/9780451403803.jpg'), - ('0312290888', 'Jane Austen In Boca: A Novel', 'https://images.isbndb.com/covers/08/87/9780312290887.jpg'), - ('0679404864', 'Dave Barry''s Complete Guide To Guys: A Fairly Short Book', 'https://images.isbndb.com/covers/48/66/9780679404866.jpg'), - ('0062507583', 'Walking On Alligators: A Book Of Meditations For Writers', 'https://images.isbndb.com/covers/75/87/9780062507587.jpg'), - ('0449210502', 'Bridge At Andau', 'https://images.isbndb.com/covers/05/05/9780449210505.jpg'), - ('0316816884', 'The Hacienda: A Memoir', 'https://images.isbndb.com/covers/68/85/9780316816885.jpg'), - ('0931122562', 'The Girl', 'https://images.isbndb.com/covers/25/69/9780931122569.jpg'), - ('0312187688', 'Used And Rare: Travels In The Book World', 'https://images.isbndb.com/covers/76/82/9780312187682.jpg'), - ('0399519785', 'Book Finds: How To Find, Buy, And Sell Used And Rare Books', 'https://images.isbndb.com/covers/97/89/9780399519789.jpg'), - ('0060958294', 'The Natural (Perennial Classics)', 'https://images.isbndb.com/covers/82/99/9780060958299.jpg'), - ('0684827107', 'The End Of Alice', 'https://images.isbndb.com/covers/71/00/9780684827100.jpg'), - ('0609803875', 'A Gracious Plenty: A Novel', 'https://images.isbndb.com/covers/38/75/9780609803875.jpg'), - ('1882413768', 'One Stick Song', 'https://images.isbndb.com/covers/37/68/9781882413768.jpg'), - ('0871133741', 'A New Path To The Waterfall', 'https://images.isbndb.com/covers/37/48/9780871133748.jpg'), - ('0805068015', 'Eva Moves The Furniture: A Novel', 'https://images.isbndb.com/covers/80/16/9780805068016.jpg'), - ('0671793578', 'The End Of The Dream The Golden Boy Who Never Grew Up : Ann Rules Crime Files Volume 5', 'https://images.isbndb.com/covers/35/79/9780671793579.jpg'), - ('0375750525', 'The Vagina Monologues', 'https://images.isbndb.com/covers/05/26/9780375750526.jpg'), - ('0802133991', 'The Magic Of Blood', 'https://images.isbndb.com/covers/39/91/9780802133991.jpg'), - ('060960516X', 'Enchanted Night: A Novella', 'https://images.isbndb.com/covers/51/65/9780609605165.jpg'), - ('0316197475', 'Your Blue-Eyed Boy: A Novel', 'https://images.isbndb.com/covers/74/72/9780316197472.jpg'), - ('0140122060', 'Paris Trout (Contemporary American Fiction)', 'https://images.isbndb.com/covers/20/60/9780140122060.jpg'), - ('1555835821', 'Soon To Be A Major Motion Picture', 'https://images.isbndb.com/covers/58/28/9781555835828.jpg'), - ('0140133488', 'Crossing To Safety', 'https://images.isbndb.com/covers/34/86/9780140133486.jpg'), - ('0930773284', 'When Bobby Kennedy Was A Moving Man', 'https://images.isbndb.com/covers/32/81/9780930773281.jpg'), - ('0671729470', 'Petals On The Wind (Dollanganger Series)', 'https://images.isbndb.com/covers/94/79/9780671729479.jpg'), - ('0590865420', 'A Wizard''s Dozen: Stories Of The Fantastic', 'https://images.isbndb.com/covers/54/25/9780590865425.jpg'), - ('0771021828', 'Book Of Mercy', 'https://images.isbndb.com/covers/18/24/9780771021824.jpg'), - ('0156814161', 'The Shadow Of The Sun', 'https://images.isbndb.com/covers/41/64/9780156814164.jpg'), - ('0912310782', 'New Art Of Belly Dancing', 'https://images.isbndb.com/covers/07/87/9780912310787.jpg'), - ('0452276756', 'Alice In Bed', 'https://images.isbndb.com/covers/67/58/9780452276758.jpg'), - ('0676904955', 'Compass American Guides: Manhattan, 4th Edition', 'https://images.isbndb.com/covers/49/56/9780676904956.jpg'), - ('0028606736', 'Baedeker New York (Baedeker''s City Guides)', 'https://images.isbndb.com/covers/67/36/9780028606736.jpg'), - ('0970038704', 'Cut My Hair', 'https://images.isbndb.com/covers/87/08/9780970038708.jpg'), - ('0140248927', 'Aunt Julia And The Scriptwriter: A Novel', 'https://images.isbndb.com/covers/89/20/9780140248920.jpg'), - ('0767900340', 'Practical Intuition', 'https://images.isbndb.com/covers/03/48/9780767900348.jpg'), - ('0345385764', 'Night Manager', 'https://images.isbndb.com/covers/57/65/9780345385765.jpg'), - ('0060976993', 'The Assassination Of Jesse James By The Coward Robert Ford', 'https://images.isbndb.com/covers/69/96/9780060976996.jpg'), - ('0679740775', 'The Virgin And The Gipsy', 'https://images.isbndb.com/covers/07/73/9780679740773.jpg'), - ('052594642X', 'The Impressionist', 'https://images.isbndb.com/covers/64/27/9780525946427.jpg'), - ('0140147292', 'More Everyday Parenting', 'https://images.isbndb.com/covers/72/92/9780140147292.jpg'), - ('0553255282', 'Dare To Discipline', 'https://images.isbndb.com/covers/52/87/9780553255287.jpg'), - ('0688168248', 'The Book Borrower: A Novel', 'https://images.isbndb.com/covers/82/47/9780688168247.jpg'), - ('0684830922', 'Franco American Dreams', 'https://images.isbndb.com/covers/09/26/9780684830926.jpg'), - ('0714530603', 'De Sade''s Valet', 'https://images.isbndb.com/covers/06/04/9780714530604.jpg'), - ('0151489262', 'The Flanders Panel', 'https://images.isbndb.com/covers/92/68/9780151489268.jpg'), - ('015670160X', 'Orlando: A Biography', 'https://images.isbndb.com/covers/16/00/9780156701600.jpg'), - ('0385133448', 'Eye Winker, Tom Tinker', 'https://images.isbndb.com/covers/34/49/9780385133449.jpg'), - ('0345318145', 'How To Organize Your Kid''s Room', 'https://images.isbndb.com/covers/81/45/9780345318145.jpg'), - ('0440127068', 'Feed Your Kids Right', 'https://images.isbndb.com/covers/70/62/9780440127062.jpg'), - ('0312198647', 'Elegy For Iris', 'https://images.isbndb.com/covers/86/40/9780312198640.jpg'), - ('0804113629', 'Feline And Famous: Cat Crimes Goes Hollywood', 'https://images.isbndb.com/covers/36/25/9780804113625.jpg'), - ('0963608894', 'Simply Classic: A New Collection Of Recipes To Celebrate The Northwest', 'https://images.isbndb.com/covers/88/95/9780963608895.jpg'), - ('0590428837', 'Sixth Grade Can Really Kill You (An Apple Paperback)', 'https://images.isbndb.com/covers/88/35/9780590428835.jpg'), - ('0060932384', 'Immortality (Perennial Classics)', 'https://images.isbndb.com/covers/23/81/9780060932381.jpg'), - ('038071843X', 'Breach Of Duty: A J.P. Beaumont Mystery', 'https://images.isbndb.com/covers/84/36/9780380718436.jpg'), - ('0836218515', 'The PreHistory Of The Far Side ®:: A 10th Anniversary Exhibit', 'https://images.isbndb.com/covers/85/10/9780836218510.jpg'), - ('0395744415', 'Manhattan, When I Was Young', 'https://images.isbndb.com/covers/44/13/9780395744413.jpg'), - ('0385484275', 'Perfidia', 'https://images.isbndb.com/covers/42/75/9780385484275.jpg'), - ('0684848295', 'SCRIBNER''S BEST OF THE FICTION WORKSHOPS 1999', 'https://images.isbndb.com/covers/82/97/9780684848297.jpg'), - ('0373243790', 'Considering Kate (The Stanislaskis) (Silhouette Special Edition No. 1379)', 'https://images.isbndb.com/covers/37/92/9780373243792.jpg'), - ('0395528151', 'The Call Of Stories: Teaching And The Moral Imagination', 'https://images.isbndb.com/covers/81/50/9780395528150.jpg'), - ('1559240059', 'Happiness Is An Inside Job', 'https://images.isbndb.com/covers/00/55/9781559240055.jpg'), - ('0345346491', 'Walking Across Egypt', 'https://images.isbndb.com/covers/64/90/9780345346490.jpg'), - ('0385319401', 'Blue Italian', 'https://images.isbndb.com/covers/94/09/9780385319409.jpg'), - ('0060096772', 'Your Mouth Is Lovely: A Novel', 'https://images.isbndb.com/covers/67/79/9780060096779.jpg'), - ('1569470553', 'Adrian Mole: The Lost Years', 'https://images.isbndb.com/covers/05/58/9781569470558.jpg'), - ('0671892673', 'A Place Where The Sea Remembers (Scribner''s Paperback Fiction)', 'https://images.isbndb.com/covers/26/78/9780671892678.jpg'), - ('0836211499', 'Beyond The Far Side ®', 'https://images.isbndb.com/covers/14/98/9780836211498.jpg'), - ('0330294008', 'Less Than Zero (Picador)', 'https://images.isbndb.com/covers/40/03/9780330294003.jpg'), - ('0961655321', 'Monongahela National Forest Hiking Guide', 'https://images.isbndb.com/covers/53/27/9780961655327.jpg'), - ('0679759263', 'The Soloist', 'https://images.isbndb.com/covers/92/63/9780679759263.jpg'), - ('0393900401', 'Epicoene, Or The Silent Woman (New Mermaids)', 'https://images.isbndb.com/covers/04/08/9780393900408.jpg'), - ('0688177905', 'In The Family Way: An Urban Comedy', 'https://images.isbndb.com/covers/79/04/9780688177904.jpg'), - ('0140064834', 'To See You Again (The Penguin Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/48/34/9780140064834.jpg'), - ('0345336712', 'Lady''s Time', 'https://images.isbndb.com/covers/67/12/9780345336712.jpg'), - ('0345440129', 'Two Women: A Novel Of Friendship', 'https://images.isbndb.com/covers/01/29/9780345440129.jpg'), - ('067975556X', 'THE LAST GOOD TIME', 'https://images.isbndb.com/covers/55/62/9780679755562.jpg'), - ('0679783571', 'The Broke Diaries: The Completely True And Hilarious Misadventures Of A Good Girl Gone Broke', 'https://images.isbndb.com/covers/35/72/9780679783572.jpg'), - ('0553380672', 'Loose Lips', 'https://images.isbndb.com/covers/06/75/9780553380675.jpg'), - ('1885061781', 'Real Scandinavians Never Ask Directions', 'https://images.isbndb.com/covers/17/82/9781885061782.jpg'), - ('0679727256', 'The Gift', 'https://images.isbndb.com/covers/72/55/9780679727255.jpg'), - ('0679727272', 'Bend Sinister', 'https://images.isbndb.com/covers/72/79/9780679727279.jpg'), - ('031228425X', 'Winter Range: A Novel', 'https://images.isbndb.com/covers/42/51/9780312284251.jpg'), - ('0962054364', 'Beads And Threads: A New Technique For Fiber Jewelry', 'https://images.isbndb.com/covers/43/65/9780962054365.jpg'), - ('0670031542', 'The Story Of Lucy Gault', 'https://images.isbndb.com/covers/15/42/9780670031542.jpg'), - ('0399145672', 'Big Trouble', 'https://images.isbndb.com/covers/56/74/9780399145674.jpg'), - ('1864501936', 'Lonely Planet Portugal (Portugal, 3rd Ed)', 'https://images.isbndb.com/covers/19/33/9781864501933.jpg'), - ('0060976772', 'Family', 'https://images.isbndb.com/covers/67/74/9780060976774.jpg'), - ('0140280456', 'Secrets', 'https://images.isbndb.com/covers/04/56/9780140280456.jpg'), - ('0385499345', 'The Lexus And The Olive Tree: Understanding Globalization', 'https://images.isbndb.com/covers/93/47/9780385499347.jpg'), - ('0385334931', 'Sometimes I Dream In Italian', 'https://images.isbndb.com/covers/49/38/9780385334938.jpg'), - ('0688163769', 'The Mediterranean Kitchen', 'https://images.isbndb.com/covers/37/61/9780688163761.jpg'), - ('1860469345', 'The Fish Can Sing', 'https://images.isbndb.com/covers/93/43/9781860469343.jpg'), - ('0679742409', 'Through The Ivory Gate: A Novel', 'https://images.isbndb.com/covers/24/01/9780679742401.jpg'), - ('0912365307', 'Breakfast In Bed Cookbook: The Best B And B Recipes From Northern California To British Columbia', 'https://images.isbndb.com/covers/53/05/9780912365305.jpg'), - ('0295962194', 'During My Time Florence Edenshaw Davidso', 'https://images.isbndb.com/covers/21/91/9780295962191.jpg'), - ('0345419081', 'The Eight', 'https://images.isbndb.com/covers/90/88/9780345419088.jpg'), - ('0671663143', 'The Case Of The Disappearing Deejay (Nancy Drew 89)', 'https://images.isbndb.com/covers/31/48/9780671663148.jpg'), - ('015600464X', 'Ex Utero (Harvest American Writing)', 'https://images.isbndb.com/covers/46/40/9780156004640.jpg'), - ('156833186X', 'The Bodhran Makers', 'https://images.isbndb.com/covers/18/67/9781568331867.jpg'), - ('0375704248', 'Falling Slowly', 'https://images.isbndb.com/covers/42/46/9780375704246.jpg'), - ('0452282543', 'From Our House', 'https://images.isbndb.com/covers/25/44/9780452282544.jpg'), - ('0836221818', 'The Concrete Enema: And Other News Of The Weird Classics', 'https://images.isbndb.com/covers/18/17/9780836221817.jpg'), - ('0679432477', 'Empire Falls', 'https://images.isbndb.com/covers/24/70/9780679432470.jpg'), - ('0736900640', 'Someone To Belong To (Whispering Pine)', 'https://images.isbndb.com/covers/06/45/9780736900645.jpg'), - ('034539044X', 'Rose', 'https://images.isbndb.com/covers/04/48/9780345390448.jpg'), - ('0804109796', 'Cat Crimes', 'https://images.isbndb.com/covers/97/96/9780804109796.jpg'), - ('0060168609', 'Cloudsplitter: A Novel', 'https://images.isbndb.com/covers/86/05/9780060168605.jpg'), - ('0140131604', 'Leaving Home', 'https://images.isbndb.com/covers/16/04/9780140131604.jpg'), - ('0679735461', 'The Laughing Sutra', 'https://images.isbndb.com/covers/54/65/9780679735465.jpg'), - ('0940242737', 'The Five Thousand And One Nights (European Short Stories, No. 4)', 'https://images.isbndb.com/covers/27/39/9780940242739.jpg'), - ('1588370011', 'Rooster', 'https://images.isbndb.com/covers/00/13/9781588370013.jpg'), - ('0517595753', 'Dave Barry In Cyberspace', 'https://images.isbndb.com/covers/57/56/9780517595756.jpg'), - ('0609602330', 'Isaac''s Storm : A Man, A Time, And The Deadliest Hurricane In History', 'https://images.isbndb.com/covers/23/31/9780609602331.jpg'), - ('0679462988', 'The Bullfighter Checks Her Makeup: My Encounters With Extraordinary People', 'https://images.isbndb.com/covers/29/89/9780679462989.jpg'), - ('0517595532', 'New Times In The Old South: Or Why Scarlett''s In Therapy & Tara''s Going Condo', 'https://images.isbndb.com/covers/55/34/9780517595534.jpg'), - ('044020867X', 'Life Is Uncertain...Eat Dessert First!', 'https://images.isbndb.com/covers/86/79/9780440208679.jpg'), - ('0964303558', 'Positive Charges: 544 Ways To Stay Upbeat During Downbeat Times', 'https://images.isbndb.com/covers/35/53/9780964303553.jpg'), - ('068480123X', 'House Of Mirth', 'https://images.isbndb.com/covers/12/30/9780684801230.jpg'), - ('0679734589', 'The Rachel Papers', 'https://images.isbndb.com/covers/45/81/9780679734581.jpg'), - ('0679422587', 'IN THE CUT', 'https://images.isbndb.com/covers/25/87/9780679422587.jpg'), - ('0767902025', 'Tomcat In Love', 'https://images.isbndb.com/covers/20/21/9780767902021.jpg'), - ('0156006197', 'The Millstone', 'https://images.isbndb.com/covers/61/94/9780156006194.jpg'), - ('0375724842', 'Harm Done: A New Inspector Wexford Mystery', 'https://images.isbndb.com/covers/48/48/9780375724848.jpg'), - ('0385720408', 'Ali And Nino: A Love Story', 'https://images.isbndb.com/covers/04/03/9780385720403.jpg'), - ('0312143834', 'Objects In Mirror Are Closer Than They Appear: A Novel', 'https://images.isbndb.com/covers/38/31/9780312143831.jpg'), - ('0452279070', 'Ragtime', 'https://images.isbndb.com/covers/90/70/9780452279070.jpg'), - ('0553582801', 'The Man Who Ate The 747', 'https://images.isbndb.com/covers/28/02/9780553582802.jpg'), - ('0425137473', 'Women Of Mystery 1', 'https://images.isbndb.com/covers/74/75/9780425137475.jpg'), - ('0451407261', 'The Maggody Militia (Arly Hanks Mystery)', 'https://images.isbndb.com/covers/72/69/9780451407269.jpg'), - ('0060198133', 'Five Quarters Of The Orange', 'https://images.isbndb.com/covers/81/38/9780060198138.jpg'), - ('0030640075', 'Craig Claibornes: A Feast Made For Laughter', 'https://images.isbndb.com/covers/00/70/9780030640070.jpg'), - ('0345310799', 'Stallion Gate', 'https://images.isbndb.com/covers/07/98/9780345310798.jpg'), - ('0446391719', 'To Asmara', 'https://images.isbndb.com/covers/17/19/9780446391719.jpg'), - ('038077514X', 'Murder And Spies, Lovers And Lies: Settling The Great Controversies Of American History', 'https://images.isbndb.com/covers/51/49/9780380775149.jpg'), - ('006092411X', 'The Living: A Novel', 'https://images.isbndb.com/covers/41/19/9780060924119.jpg'), - ('0449912787', 'Your Oasis On Flame Lake', 'https://images.isbndb.com/covers/27/82/9780449912782.jpg'), - ('037550155X', 'The Handyman: A Novel', 'https://images.isbndb.com/covers/15/55/9780375501555.jpg'), - ('0670892742', 'Cherry: A Memoir', 'https://images.isbndb.com/covers/27/47/9780670892747.jpg'), - ('0449216241', 'Tending To Virginia', 'https://images.isbndb.com/covers/62/48/9780449216248.jpg'), - ('0316313076', 'Victory Over Japan: A Book Of Stories (Back Bay Books)', 'https://images.isbndb.com/covers/30/70/9780316313070.jpg'), - ('0345384237', 'Lempriere''s Dictionary: A Novel', 'https://images.isbndb.com/covers/42/32/9780345384232.jpg'), - ('0156007819', 'Eucalyptus: A Novel', 'https://images.isbndb.com/covers/78/18/9780156007818.jpg'), - ('1550171631', 'Dogless In Metchosin', 'https://images.isbndb.com/covers/16/31/9781550171631.jpg'), - ('0393311031', 'Hen''s Teeth And Horse''s Toes: Further Reflections In Natural History', 'https://images.isbndb.com/covers/10/37/9780393311037.jpg'), - ('0684849135', 'Why We Buy: The Science Of Shopping', 'https://images.isbndb.com/covers/91/33/9780684849133.jpg'), - ('0060928417', 'Slowness: A Novel', 'https://images.isbndb.com/covers/84/14/9780060928414.jpg'), - ('0140097112', 'What''s Bred In The Bone (Cornish Trilogy)', 'https://images.isbndb.com/covers/71/15/9780140097115.jpg'), - ('0156006340', 'The Flower In The Skull', 'https://images.isbndb.com/covers/63/47/9780156006347.jpg'), - ('0140119795', 'The Cape Ann (Contemporary American Fiction)', 'https://images.isbndb.com/covers/97/94/9780140119794.jpg'), - ('1573220280', 'The Cloister Walk', 'https://images.isbndb.com/covers/02/86/9781573220286.jpg'), - ('0880014857', 'Open Water', 'https://images.isbndb.com/covers/48/54/9780880014854.jpg'), - ('0452281202', 'The Evolution Of Jane', 'https://images.isbndb.com/covers/12/02/9780452281202.jpg'), - ('0671885332', 'At Paradise Gate', 'https://images.isbndb.com/covers/53/35/9780671885335.jpg'), - ('1571430148', 'I Should Have Stayed Home: The Worst Trips Of Great Writers (Travel Literature Series)', 'https://images.isbndb.com/covers/01/44/9781571430144.jpg'), - ('0140040188', 'American Fried: Adventures Of A Happy Eater', 'https://images.isbndb.com/covers/01/80/9780140040180.jpg'), - ('0330305336', 'Cannibal In Manhattan (Picador Books)', 'https://images.isbndb.com/covers/53/34/9780330305334.jpg'), - ('0843133805', 'How To Flirt', 'https://images.isbndb.com/covers/38/06/9780843133806.jpg'), - ('0671644076', 'Twilight', 'https://images.isbndb.com/covers/40/79/9780671644079.jpg'), - ('0553110438', 'Kids Say The Darndest Things', 'https://images.isbndb.com/covers/04/32/9780553110432.jpg'), - ('034536676X', 'The World According To Garp', 'https://images.isbndb.com/covers/67/64/9780345366764.jpg'), - ('0812217268', 'The House On The Strand', 'https://images.isbndb.com/covers/72/61/9780812217261.jpg'), - ('0451525116', 'Selected Stories (A Signet Classic)', 'https://images.isbndb.com/covers/51/16/9780451525116.jpg'), - ('0671640488', 'Three By Finney', 'https://images.isbndb.com/covers/04/84/9780671640484.jpg'), - ('0140284621', 'Uncle Fred In The Springtime (A Blandings Story)', 'https://images.isbndb.com/covers/46/21/9780140284621.jpg'), - ('0140030395', 'Piccadilly Jim (Penguin Books)', 'https://images.isbndb.com/covers/03/96/9780140030396.jpg'), - ('0394716310', 'Two Towns In Provence: Map Of Another Town And A Considerable Town', 'https://images.isbndb.com/covers/63/12/9780394716312.jpg'), - ('0843733756', 'European Detours: A Travel Guide To Unusual Sights', 'https://images.isbndb.com/covers/37/54/9780843733754.jpg'), - ('0449209105', 'The Promise', 'https://images.isbndb.com/covers/91/03/9780449209103.jpg'), - ('0679743839', 'Barcelona', 'https://images.isbndb.com/covers/38/35/9780679743835.jpg'), - ('1404306781', 'Haunted Bookshop, The', 'https://images.isbndb.com/covers/67/83/9781404306783.jpg'), - ('0140011722', 'LAUGHING GAS', 'https://images.isbndb.com/covers/17/22/9780140011722.jpg'), - ('0449908747', 'Barn Blind: A Novel', 'https://images.isbndb.com/covers/87/47/9780449908747.jpg'), - ('0915230151', 'The Mirror', 'https://images.isbndb.com/covers/01/50/9780915230150.jpg'), - ('0618127046', 'Summer At Fairacre', 'https://images.isbndb.com/covers/70/47/9780618127047.jpg'), - ('156305115X', 'You Know You''re Grown Up When . . .', 'https://images.isbndb.com/covers/11/59/9781563051159.jpg'), - ('0060972122', 'The Mysteries Of Pittsburgh', 'https://images.isbndb.com/covers/21/27/9780060972127.jpg'), - ('0671754629', 'Cats Of Thistle Hill: A Mostly Peaceable Kingdom', 'https://images.isbndb.com/covers/46/24/9780671754624.jpg'), - ('0394741714', 'Alice, Let''s Eat', 'https://images.isbndb.com/covers/17/10/9780394741710.jpg'), - ('0452261848', 'Lives Of Girls And Women (Plume)', 'https://images.isbndb.com/covers/18/46/9780452261846.jpg'), - ('0449910571', 'Ladder Of Years: A Novel', 'https://images.isbndb.com/covers/05/73/9780449910573.jpg'), - ('0671242954', 'Time And Again', 'https://images.isbndb.com/covers/29/54/9780671242954.jpg'), - ('0449214370', 'Golden Days', 'https://images.isbndb.com/covers/43/74/9780449214374.jpg'), - ('0553148923', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/89/23/9780553148923.jpg'), - ('0393048144', 'The Ladies Auxiliary: A Novel', 'https://images.isbndb.com/covers/81/48/9780393048148.jpg'), - ('0140046860', 'Reflections Marin: Reflections On A Marine Venus', 'https://images.isbndb.com/covers/68/61/9780140046861.jpg'), - ('0671254308', 'Number Our Days: A Triumph Of Continuity And Culture Among Jewish Old People In An Urban Ghetto', 'https://images.isbndb.com/covers/43/08/9780671254308.jpg'), - ('0679456945', 'The Ladies'' Man', 'https://images.isbndb.com/covers/69/40/9780679456940.jpg'), - ('0375400656', 'A Samba For Sherlock', 'https://images.isbndb.com/covers/06/50/9780375400650.jpg'), - ('0312252803', 'The Country Life: A Novel', 'https://images.isbndb.com/covers/28/09/9780312252809.jpg'), - ('078688908X', 'Chain Of Evidence', 'https://images.isbndb.com/covers/90/82/9780786889082.jpg'), - ('0452268427', 'Catholic Girls: Stories, Poems, And Memoirs (Plume)', 'https://images.isbndb.com/covers/84/25/9780452268425.jpg'), - ('0060970782', 'Jane', 'https://images.isbndb.com/covers/07/89/9780060970789.jpg'), - ('0671881604', 'ISABEL''S BED', 'https://images.isbndb.com/covers/16/03/9780671881603.jpg'), - ('0375501959', 'Comfort Me With Apples: More Adventures At The Table', 'https://images.isbndb.com/covers/19/51/9780375501951.jpg'), - ('0811202208', 'The Glass Menagerie (New Classics Series)', 'https://images.isbndb.com/covers/22/06/9780811202206.jpg'), - ('0446677922', 'The Bottoms', 'https://images.isbndb.com/covers/79/29/9780446677929.jpg'), - ('1568360266', 'The Heart Of The Sky: Travels Among The Maya', 'https://images.isbndb.com/covers/02/63/9781568360263.jpg'), - ('0767900057', 'Earth Angels', 'https://images.isbndb.com/covers/00/58/9780767900058.jpg'), - ('0312192037', 'Linda Goodman''s Star Signs', 'https://images.isbndb.com/covers/20/37/9780312192037.jpg'), - ('0316299235', 'Demon Of The Waters: The True Story Of The Mutiny On The Whaleship Globe', 'https://images.isbndb.com/covers/92/37/9780316299237.jpg'), - ('1842152130', 'Making Spells And Charms: A Practical Guide To Simple Spellweaving', 'https://images.isbndb.com/covers/21/33/9781842152133.jpg'), - ('1567180892', 'Coin Divination: Pocket Fortuneteller', 'https://images.isbndb.com/covers/08/93/9781567180893.jpg'), - ('0877286868', 'The Holy Books Of Thelema', 'https://images.isbndb.com/covers/68/68/9780877286868.jpg'), - ('0877283478', 'Tarot Divination', 'https://images.isbndb.com/covers/34/78/9780877283478.jpg'), - ('0743437802', 'The Stone Monkey (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/78/06/9780743437806.jpg'), - ('0771099940', 'Wild Geese (New Canadian Library)', 'https://images.isbndb.com/covers/99/46/9780771099946.jpg'), - ('0743410599', 'Scandalous (Banning Sisters Trilogy)', 'https://images.isbndb.com/covers/05/95/9780743410595.jpg'), - ('0316890642', 'Evening News: A Novel', 'https://images.isbndb.com/covers/06/49/9780316890649.jpg'), - ('0440224012', 'Heartwood (Billy Bob Boy Howdy)', 'https://images.isbndb.com/covers/40/13/9780440224013.jpg'), - ('0786012676', 'Blood Of Others', 'https://images.isbndb.com/covers/26/71/9780786012671.jpg'), - ('075153286X', 'Whistling For The Elephants', 'https://images.isbndb.com/covers/28/69/9780751532869.jpg'), - ('0349114021', 'Bilgewater', 'https://images.isbndb.com/covers/40/26/9780349114026.jpg'), - ('0552997803', 'Knowledge Of Angels', 'https://images.isbndb.com/covers/78/05/9780552997805.jpg'), - ('0566074184', 'The Goal', 'https://images.isbndb.com/covers/41/89/9780566074189.jpg'), - ('0140250409', 'No Night Is Too Long', 'https://images.isbndb.com/covers/04/04/9780140250404.jpg'), - ('034082607X', 'The Rice Mother', 'https://images.isbndb.com/covers/60/72/9780340826072.jpg'), - ('0753804549', 'Dream Woman And Other Stories (Phoenix Short Stories)', 'https://images.isbndb.com/covers/45/44/9780753804544.jpg'), - ('0722176082', 'Jenny Alone A', 'https://images.isbndb.com/covers/60/85/9780722176085.jpg'), - ('0006372570', 'Don''t Ask The Price: The Memoirs Of The President Of Marks & Spencer', 'https://images.isbndb.com/covers/25/78/9780006372578.jpg'), - ('0330293796', 'Lester: The Official Biography', 'https://images.isbndb.com/covers/37/92/9780330293792.jpg'), - ('034060977X', 'Dancing In The Moonlight Pb', 'https://images.isbndb.com/covers/97/74/9780340609774.jpg'), - ('0751511935', 'No Medals For The Major', 'https://images.isbndb.com/covers/19/32/9780751511932.jpg'), - ('0962500631', 'The Undutchables: A Observation Of The Netherlands : Its Culture And Its Inhabitants', 'https://images.isbndb.com/covers/06/33/9780962500633.jpg'), - ('0951980424', 'Living And Working In Spain: A Survival Handbook (Living And Working Guides)', 'https://images.isbndb.com/covers/04/22/9780951980422.jpg'), - ('0140071814', 'The Kingdom By The Sea: A Journey Around The Coast Of Great Britain', 'https://images.isbndb.com/covers/18/18/9780140071818.jpg'), - ('055299619X', 'Human Croquet', 'https://images.isbndb.com/covers/61/98/9780552996198.jpg'), - ('1857021037', 'Mortal Beings', 'https://images.isbndb.com/covers/10/35/9781857021035.jpg'), - ('014302812X', 'The Merlin And The Hibiscus: Contemporary Short Stories From Singapore And Malaysia', 'https://images.isbndb.com/covers/81/23/9780143028123.jpg'), - ('0345460391', 'The Saints And Sinners Of Okay County', 'https://images.isbndb.com/covers/03/94/9780345460394.jpg'), - ('0553566067', 'Virtual Light', 'https://images.isbndb.com/covers/60/62/9780553566062.jpg'), - ('0694016446', 'Spider-Man: I Am Spider-Man', 'https://images.isbndb.com/covers/64/40/9780694016440.jpg'), - ('0345433327', 'Black Creek Crossing', 'https://images.isbndb.com/covers/33/29/9780345433329.jpg'), - ('038550943X', 'Going To Bend: A Novel', 'https://images.isbndb.com/covers/94/35/9780385509435.jpg'), - ('0671519867', 'GRIEF STREET (Neil Hockaday Mystery)', 'https://images.isbndb.com/covers/98/65/9780671519865.jpg'), - ('0375811729', 'Cassie''s Runaway Kite (Jellybean Books(R))', 'https://images.isbndb.com/covers/17/22/9780375811722.jpg'), - ('0786015772', 'No Stone Unturned: The True Story Of The World''s Premier Forensic Investigators', 'https://images.isbndb.com/covers/57/71/9780786015771.jpg'), - ('0786880112', 'Two For Texas', 'https://images.isbndb.com/covers/01/19/9780786880119.jpg'), - ('0688174590', 'Kisscut: A Novel', 'https://images.isbndb.com/covers/45/90/9780688174590.jpg'), - ('0525947302', 'Family Trust', 'https://images.isbndb.com/covers/73/01/9780525947301.jpg'), - ('0525947132', 'The Room-Mating Season', 'https://images.isbndb.com/covers/71/34/9780525947134.jpg'), - ('0743229061', 'Absolute Certainty : A Crime Novel', 'https://images.isbndb.com/covers/90/67/9780743229067.jpg'), - ('0316102121', 'American Icon: A Novel', 'https://images.isbndb.com/covers/21/24/9780316102124.jpg'), - ('0312192428', 'Blind Items: A (Love) Story', 'https://images.isbndb.com/covers/24/26/9780312192426.jpg'), - ('0440220440', 'Deal Breaker: The First Myron Bolitar Novel (A Myron Bolitar Novel)', 'https://images.isbndb.com/covers/04/42/9780440220442.jpg'), - ('0440222702', 'Back Spin (Myron Bolitar Mysteries)', 'https://images.isbndb.com/covers/27/05/9780440222705.jpg'), - ('0440222680', 'Fade Away (Myron Bolitar Mysteries)', 'https://images.isbndb.com/covers/26/82/9780440222682.jpg'), - ('0440220459', 'Drop Shot (Myron Bolitar Mysteries)', 'https://images.isbndb.com/covers/04/59/9780440220459.jpg'), - ('0753700891', 'Worlds Greatest Serial Killers', 'https://images.isbndb.com/covers/08/91/9780753700891.jpg'), - ('0060509406', 'Mrs. Kimble: A Novel', 'https://images.isbndb.com/covers/94/08/9780060509408.jpg'), - ('1578566363', 'Garden Of Dreams', 'https://images.isbndb.com/covers/63/65/9781578566365.jpg'), - ('0743448677', 'Without Pity: Ann Rule''s Most Dangerous Killers', 'https://images.isbndb.com/covers/86/73/9780743448673.jpg'), - ('0060560754', 'The Dim Sum Of All Things', 'https://images.isbndb.com/covers/07/51/9780060560751.jpg'), - ('0451211200', 'I Never Promised You A Rose Garden', 'https://images.isbndb.com/covers/12/00/9780451211200.jpg'), - ('0849939372', 'The Family Manager', 'https://images.isbndb.com/covers/93/72/9780849939372.jpg'), - ('1892065444', 'Cats In Cyberspace', 'https://images.isbndb.com/covers/54/45/9781892065445.jpg'), - ('0330487949', 'Wow!: A Novel Of Dogs, Divas And Deviance', 'https://images.isbndb.com/covers/79/48/9780330487948.jpg'), - ('031225234X', 'Name Dropping', 'https://images.isbndb.com/covers/23/42/9780312252342.jpg'), - ('1583143203', 'Surviving Mr. Right (Sepia)', 'https://images.isbndb.com/covers/32/09/9781583143209.jpg'), - ('0060595620', 'The Sweetest Taboo', 'https://images.isbndb.com/covers/56/23/9780060595623.jpg'), - ('0312209517', 'Life Skills', 'https://images.isbndb.com/covers/95/13/9780312209513.jpg'), - ('0312284683', 'Faking It', 'https://images.isbndb.com/covers/46/88/9780312284688.jpg'), - ('0060595833', 'Almost Like Being In Love: A Novel', 'https://images.isbndb.com/covers/58/38/9780060595838.jpg'), - ('0345278666', 'Desert Solitaire', 'https://images.isbndb.com/covers/86/61/9780345278661.jpg'), - ('0380800373', 'Three Kisses', 'https://images.isbndb.com/covers/03/77/9780380800377.jpg'), - ('0373440081', 'Madcap Heiress (Harlequin Love And Laugher)', 'https://images.isbndb.com/covers/00/85/9780373440085.jpg'), - ('0385319347', 'Lost In Translation', 'https://images.isbndb.com/covers/93/48/9780385319348.jpg'), - ('0743229584', 'Wide Blue Yonder: A Novel', 'https://images.isbndb.com/covers/95/86/9780743229586.jpg'), - ('0451160436', 'The I-5 Killer (Signet)', 'https://images.isbndb.com/covers/04/30/9780451160430.jpg'), - ('0743454510', 'Second Glance: A Novel', 'https://images.isbndb.com/covers/45/13/9780743454513.jpg'), - ('037541388X', 'Her', 'https://images.isbndb.com/covers/38/89/9780375413889.jpg'), - ('0515126772', 'Jewels Of The Sun: The Gallaghers Of Ardmore Trilogy (Irish Trilogy, Book 1)', 'https://images.isbndb.com/covers/67/78/9780515126778.jpg'), - ('0060086386', 'Filthy Rich', 'https://images.isbndb.com/covers/63/81/9780060086381.jpg'), - ('0767903854', 'In A Sunburned Country', 'https://images.isbndb.com/covers/38/51/9780767903851.jpg'), - ('0446521507', 'Tails From The Barkside', 'https://images.isbndb.com/covers/15/05/9780446521505.jpg'), - ('0451407482', 'Mama''s Boy: The True Story Of A Serial Killer And His Mother', 'https://images.isbndb.com/covers/74/81/9780451407481.jpg'), - ('0060393149', 'The Summer Wind : Thomas Capano And The Murder Of Anne Marie Fahey', 'https://images.isbndb.com/covers/31/44/9780060393144.jpg'), - ('1899712186', 'Mind Bending Classic Logic Puzzles (Mind Bending Puzzle Books)', 'https://images.isbndb.com/covers/21/82/9781899712182.jpg'), - ('0316317713', 'The Courts Of Love: Stories', 'https://images.isbndb.com/covers/77/19/9780316317719.jpg'), - ('1902852427', 'Bend Sinister: The Gay Times Book Of Short Stories 3 (Gay Times Books)', 'https://images.isbndb.com/covers/24/23/9781902852423.jpg'), - ('0345367081', 'Chili Dawgs Always Bark At Night', 'https://images.isbndb.com/covers/70/82/9780345367082.jpg'), - ('042513749X', 'Dead In The Water (Kate Shugak Mystery)', 'https://images.isbndb.com/covers/74/99/9780425137499.jpg'), - ('0671042696', 'Candy Is Dandy (Nancy Drew Notebooks No. 38)', 'https://images.isbndb.com/covers/26/91/9780671042691.jpg'), - ('0394882695', 'Richard Scarry''s Bedtime Stories (Pictureback(R))', 'https://images.isbndb.com/covers/26/97/9780394882697.jpg'), - ('0590456601', 'Mallory Hates Boys And Gym (Baby-Sitters Club, 59)', 'https://images.isbndb.com/covers/66/09/9780590456609.jpg'), - ('0590425013', 'Welcome Back, Stacey (Baby-Sitters Club, 28)', 'https://images.isbndb.com/covers/50/18/9780590425018.jpg'), - ('0590424971', 'The Baby-Sitters Club Book 31: Dawn''s Wicked Stepsister', 'https://images.isbndb.com/covers/49/74/9780590424974.jpg'), - ('0590437208', 'Dawn And The Impossible Three (The Baby-Sitters Club, No. 5)', 'https://images.isbndb.com/covers/72/02/9780590437202.jpg'), - ('0590435124', 'Mary Anne Saves The Day (The Baby-Sitters Club #4)', 'https://images.isbndb.com/covers/51/23/9780590435123.jpg'), - ('0590401386', 'Little''s Give A Party', 'https://images.isbndb.com/covers/13/88/9780590401388.jpg'), - ('0590438999', 'Kristy''s Big Day (Baby-Sitters Club)', 'https://images.isbndb.com/covers/89/95/9780590438995.jpg'), - ('0140548130', 'There''s Something In My Attic', 'https://images.isbndb.com/covers/81/36/9780140548136.jpg'), - ('0060093412', 'The Case Of The Tattooed Cat', 'https://images.isbndb.com/covers/34/19/9780060093419.jpg'), - ('0590880144', 'The Case Of The Volcano Mystery: A Novelization (Adventures Of Mary-Kate & Ashley)', 'https://images.isbndb.com/covers/01/45/9780590880145.jpg'), - ('068984042X', 'Hall Monitor', 'https://images.isbndb.com/covers/04/25/9780689840425.jpg'), - ('0689841930', 'Sandy''s Rocket (Spongebob Squarepants Chapter Books)', 'https://images.isbndb.com/covers/19/34/9780689841934.jpg'), - ('0380491710', 'Good Work, Amelia Bedelia', 'https://images.isbndb.com/covers/17/11/9780380491711.jpg'), - ('0590442996', 'Karen''s Worst Day (Baby-Sitters Little Sister, No. 3)', 'https://images.isbndb.com/covers/29/92/9780590442992.jpg'), - ('0750012706', 'Drina Ballerina (Drina Books)', 'https://images.isbndb.com/covers/27/06/9780750012706.jpg'), - ('0396077897', 'Monsters You Never Heard Of', 'https://images.isbndb.com/covers/78/93/9780396077893.jpg'), - ('0590420070', 'Dawn On The Coast (The Baby-Sitters Club #23)', 'https://images.isbndb.com/covers/00/75/9780590420075.jpg'), - ('0590433466', 'The Secret Garden', 'https://images.isbndb.com/covers/34/64/9780590433464.jpg'), - ('0743423569', 'Not Guilty', 'https://images.isbndb.com/covers/35/64/9780743423564.jpg'), - ('1889186414', 'Mother Bitchfight', 'https://images.isbndb.com/covers/64/12/9781889186412.jpg'), - ('0451211189', 'A Night As Clear As Day', 'https://images.isbndb.com/covers/11/87/9780451211187.jpg'), - ('0451206355', 'Frontera Street', 'https://images.isbndb.com/covers/63/50/9780451206350.jpg'), - ('0312850514', 'Midnight Sun', 'https://images.isbndb.com/covers/05/17/9780312850517.jpg'), - ('0312269374', 'Coming Back To Me: A Novel', 'https://images.isbndb.com/covers/93/71/9780312269371.jpg'), - ('0425129551', 'Billy', 'https://images.isbndb.com/covers/95/55/9780425129555.jpg'), - ('0060565519', 'Take Me, Take Me With You: A Novel Of Suspense', 'https://images.isbndb.com/covers/55/10/9780060565510.jpg'), - ('1400060923', 'Lost Boy, Lost Girl', 'https://images.isbndb.com/covers/09/24/9781400060924.jpg'), - ('0843951710', 'Possessions', 'https://images.isbndb.com/covers/17/14/9780843951714.jpg'), - ('0399151273', 'Retribution', 'https://images.isbndb.com/covers/12/79/9780399151279.jpg'), - ('0316570826', 'Man In My Basement', 'https://images.isbndb.com/covers/08/24/9780316570824.jpg'), - ('0843951575', 'In This Skin', 'https://images.isbndb.com/covers/15/78/9780843951578.jpg'), - ('0743412761', 'Cameo Lake', 'https://images.isbndb.com/covers/27/66/9780743412766.jpg'), - ('0060199105', 'What''s The Girl Worth?', 'https://images.isbndb.com/covers/91/04/9780060199104.jpg'), - ('0451205758', 'The Matter Of Grace (Nal Accent Novels)', 'https://images.isbndb.com/covers/57/59/9780451205759.jpg'), - ('0385334370', 'Handyman', 'https://images.isbndb.com/covers/43/72/9780385334372.jpg'), - ('0972915710', 'Teratologist', 'https://images.isbndb.com/covers/57/17/9780972915717.jpg'), - ('0312983832', 'Nobody Knows', 'https://images.isbndb.com/covers/38/33/9780312983833.jpg'), - ('1557736154', 'Offspring', 'https://images.isbndb.com/covers/61/54/9781557736154.jpg'), - ('039915180X', 'Hidden Prey', 'https://images.isbndb.com/covers/18/04/9780399151804.jpg'), - ('0061032212', 'Sleepyhead', 'https://images.isbndb.com/covers/22/19/9780061032219.jpg'), - ('0451211197', 'One Small Thing', 'https://images.isbndb.com/covers/11/94/9780451211194.jpg'), - ('081296814X', 'Durable Goods: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/81/49/9780812968149.jpg'), - ('1401300189', 'The Bone Parade', 'https://images.isbndb.com/covers/01/80/9781401300180.jpg'), - ('1840680059', 'Cows', 'https://images.isbndb.com/covers/00/58/9781840680058.jpg'), - ('1892950138', 'The Bighead : Author''s Preferred Version', 'https://images.isbndb.com/covers/01/30/9781892950130.jpg'), - ('1887368698', 'Sleep Disorder', 'https://images.isbndb.com/covers/86/98/9781887368698.jpg'), - ('0312286449', 'Desert Places', 'https://images.isbndb.com/covers/64/46/9780312286446.jpg'), - ('0345445724', 'Entering Normal', 'https://images.isbndb.com/covers/57/28/9780345445728.jpg'), - ('0843953276', 'Black Fire', 'https://images.isbndb.com/covers/32/75/9780843953275.jpg'), - ('084395177X', 'Nightmare House', 'https://images.isbndb.com/covers/17/76/9780843951776.jpg'), - ('0553298186', 'Summer Of The Monkeys (Bantam Starfire Books)', 'https://images.isbndb.com/covers/81/85/9780553298185.jpg'), - ('0553298917', 'Shackled', 'https://images.isbndb.com/covers/89/18/9780553298918.jpg'), - ('0970998716', 'Three Complete Novels (Dark Rivers Of The Heart / Sole Survivor / Intensity)', 'https://images.isbndb.com/covers/87/12/9780970998712.jpg'), - ('055310666X', 'False Memory', 'https://images.isbndb.com/covers/66/64/9780553106664.jpg'), - ('0385335520', 'The Cottage', 'https://images.isbndb.com/covers/55/22/9780385335522.jpg'), - ('0385335490', 'Johnny Angel', 'https://images.isbndb.com/covers/54/92/9780385335492.jpg'), - ('0758205511', 'Bad Boys To Go (Watson Brothers)', 'https://images.isbndb.com/covers/55/13/9780758205513.jpg'), - ('0553801430', 'By The Light Of The Moon', 'https://images.isbndb.com/covers/14/39/9780553801439.jpg'), - ('0066212995', 'Sleepyhead', 'https://images.isbndb.com/covers/29/99/9780066212999.jpg'), - ('1402201478', 'The Last Noel', 'https://images.isbndb.com/covers/14/79/9781402201479.jpg'), - ('0425145662', 'Joyride', 'https://images.isbndb.com/covers/56/61/9780425145661.jpg'), - ('0312289510', 'The Christmas Shoes (Christmas Hope Series #1)', 'https://images.isbndb.com/covers/95/15/9780312289515.jpg'), - ('0786014555', 'Dark Masques (First Mountain Man)', 'https://images.isbndb.com/covers/45/52/9780786014552.jpg'), - ('0843952199', 'The WYRM', 'https://images.isbndb.com/covers/21/93/9780843952193.jpg'), - ('0843953292', 'In Silent Graves', 'https://images.isbndb.com/covers/32/99/9780843953299.jpg'), - ('0843951826', 'Body Rides', 'https://images.isbndb.com/covers/18/20/9780843951820.jpg'), - ('0843952571', 'Borrowed Flesh', 'https://images.isbndb.com/covers/25/75/9780843952575.jpg'), - ('0743242548', 'Stacking In Rivertown', 'https://images.isbndb.com/covers/25/47/9780743242547.jpg'), - ('1592861857', 'The Fire Within', 'https://images.isbndb.com/covers/18/59/9781592861859.jpg'), - ('189295012X', 'The Safety Of Unknown Cities', 'https://images.isbndb.com/covers/01/23/9781892950123.jpg'), - ('0553382527', 'Keeping Watch', 'https://images.isbndb.com/covers/25/25/9780553382525.jpg'), - ('0553573691', 'Venus', 'https://images.isbndb.com/covers/36/95/9780553573695.jpg'), - ('037324598X', 'Bluegrass Baby: Merlyn County Midwives (Silhouette Special Edition No. 1598)', 'https://images.isbndb.com/covers/59/87/9780373245987.jpg'), - ('1551662604', 'This Matter Of Marriage', 'https://images.isbndb.com/covers/26/02/9781551662602.jpg'), - ('0972930930', 'Poisoning Eros', 'https://images.isbndb.com/covers/09/32/9780972930932.jpg'), - ('1887368353', 'Ladies Night', 'https://images.isbndb.com/covers/83/53/9781887368353.jpg'), - ('1587670674', 'The Crossings', 'https://images.isbndb.com/covers/06/71/9781587670671.jpg'), - ('0312272758', 'Panic Snap: A Novel', 'https://images.isbndb.com/covers/27/53/9780312272753.jpg'), - ('0843950404', 'Red', 'https://images.isbndb.com/covers/04/03/9780843950403.jpg'), - ('0843950463', 'Night In The Lonesome October', 'https://images.isbndb.com/covers/04/65/9780843950465.jpg'), - ('0451194004', 'Rosemary''s Baby', 'https://images.isbndb.com/covers/40/08/9780451194008.jpg'), - ('0679753362', 'Born Bad: Collected Stories', 'https://images.isbndb.com/covers/33/60/9780679753360.jpg'), - ('0843952032', 'Infernal Angel', 'https://images.isbndb.com/covers/20/32/9780843952032.jpg'), - ('0743453468', 'Whispers At Midnight', 'https://images.isbndb.com/covers/34/62/9780743453462.jpg'), - ('0679735771', 'American Psycho', 'https://images.isbndb.com/covers/57/79/9780679735779.jpg'), - ('0843951036', 'No Sanctuary', 'https://images.isbndb.com/covers/10/35/9780843951035.jpg'), - ('0671014188', 'The Summerhouse', 'https://images.isbndb.com/covers/41/86/9780671014186.jpg'), - ('0345447832', 'The Surgeon', 'https://images.isbndb.com/covers/78/38/9780345447838.jpg'), - ('0345439007', 'All The Dead Were Strangers (Conrad Voort Novels)', 'https://images.isbndb.com/covers/90/00/9780345439000.jpg'), - ('0843951532', 'Four Dark Nights', 'https://images.isbndb.com/covers/15/30/9780843951530.jpg'), - ('0765345080', 'Hunted Past Reason', 'https://images.isbndb.com/covers/50/80/9780765345080.jpg'), - ('1551669730', 'This Matter Of Marriage (MIRA)', 'https://images.isbndb.com/covers/97/31/9781551669731.jpg'), - ('0843951818', 'Blood Games', 'https://images.isbndb.com/covers/18/13/9780843951813.jpg'), - ('0140620222', 'Pride And Prejudice (Penguin Popular Classics)', 'https://images.isbndb.com/covers/02/21/9780140620221.jpg'), - ('1894815351', 'Suffer The Flesh', 'https://images.isbndb.com/covers/53/52/9781894815352.jpg'), - ('0373230117', 'Yesterday''s Memories (By Request 2''s)', 'https://images.isbndb.com/covers/01/12/9780373230112.jpg'), - ('1889186384', 'Portrait Of The Psychopath As A Young Woman', 'https://images.isbndb.com/covers/63/82/9781889186382.jpg'), - ('1887368566', 'Right To Life: And 2 Stories', 'https://images.isbndb.com/covers/85/68/9781887368568.jpg'), - ('1892950618', 'The Girl Next Door', 'https://images.isbndb.com/covers/06/11/9781892950611.jpg'), - ('0385336306', 'Safe Harbour', 'https://images.isbndb.com/covers/63/07/9780385336307.jpg'), - ('0399151729', 'A Royal Duty', 'https://images.isbndb.com/covers/17/29/9780399151729.jpg'), - ('0671738763', 'Lie To Me', 'https://images.isbndb.com/covers/87/61/9780671738761.jpg'), - ('0892967269', 'Beneath The Skin', 'https://images.isbndb.com/covers/72/61/9780892967261.jpg'), - ('0679410554', 'Tap,Tap', 'https://images.isbndb.com/covers/05/53/9780679410553.jpg'), - ('0373785070', 'Hideaway (Hideaway, Book 1)', 'https://images.isbndb.com/covers/50/70/9780373785070.jpg'), - ('0786015578', 'Black Water (Tango Key Mysteries)', 'https://images.isbndb.com/covers/55/73/9780786015573.jpg'), - ('1551667207', 'Danger Zone', 'https://images.isbndb.com/covers/72/01/9781551667201.jpg'), - ('0843946903', 'One Rainy Night', 'https://images.isbndb.com/covers/69/01/9780843946901.jpg'), - ('0671886118', 'Bring Me Children', 'https://images.isbndb.com/covers/61/10/9780671886110.jpg'), - ('0679410562', 'Cul-de-Sac: A Novel', 'https://images.isbndb.com/covers/05/60/9780679410560.jpg'), - ('1551669676', 'Remember Me', 'https://images.isbndb.com/covers/96/70/9781551669670.jpg'), - ('0843948507', 'The Traveling Vampire Show', 'https://images.isbndb.com/covers/85/09/9780843948509.jpg'), - ('0373250304', 'The Thin Pink Line', 'https://images.isbndb.com/covers/03/01/9780373250301.jpg'), - ('0373218974', 'Temptation (Language Of Love)', 'https://images.isbndb.com/covers/89/74/9780373218974.jpg'), - ('0743445597', 'Deadly Honeymoon', 'https://images.isbndb.com/covers/55/97/9780743445597.jpg'), - ('0373245645', 'His Pretend Fiancee: Manhattan Multiples (Silhouette Special Edition)', 'https://images.isbndb.com/covers/56/42/9780373245642.jpg'), - ('0440224810', 'Special Delivery', 'https://images.isbndb.com/covers/48/15/9780440224815.jpg'), - ('1551667401', 'Out Of The Dark (Mira S.)', 'https://images.isbndb.com/covers/74/09/9781551667409.jpg'), - ('0446602159', 'Commitments', 'https://images.isbndb.com/covers/21/50/9780446602150.jpg'), - ('0156027127', 'The Life Before Her Eyes', 'https://images.isbndb.com/covers/71/20/9780156027120.jpg'), - ('0679412921', 'Mystery Ride', 'https://images.isbndb.com/covers/29/22/9780679412922.jpg'), - ('0373218966', 'Sullivan''s Woman', 'https://images.isbndb.com/covers/89/67/9780373218967.jpg'), - ('155166416X', 'Sweet Baby', 'https://images.isbndb.com/covers/41/63/9781551664163.jpg'), - ('0373239963', 'Waiting For Nick (Silhouette Special Edition, No 1088)', 'https://images.isbndb.com/covers/99/62/9780373239962.jpg'), - ('0440170796', 'The Promise', 'https://images.isbndb.com/covers/07/92/9780440170792.jpg'), - ('0767902238', 'Inc. Yourself (Inc. Yourself: How To Profit By Setting Up Your Own Corporation)', 'https://images.isbndb.com/covers/22/36/9780767902236.jpg'), - ('0670844527', 'Dolores Claiborne', 'https://images.isbndb.com/covers/45/24/9780670844524.jpg'), - ('0380731479', 'The Kiss', 'https://images.isbndb.com/covers/14/73/9780380731473.jpg'), - ('084395275X', 'Red Angel', 'https://images.isbndb.com/covers/27/59/9780843952759.jpg'), - ('0743223128', 'Ghost Image : A Novel', 'https://images.isbndb.com/covers/31/26/9780743223126.jpg'), - ('0843951958', 'Face', 'https://images.isbndb.com/covers/19/50/9780843951950.jpg'), - ('0061097748', 'Kill Me First', 'https://images.isbndb.com/covers/77/44/9780061097744.jpg'), - ('0451410963', 'Left To Die', 'https://images.isbndb.com/covers/09/62/9780451410962.jpg'), - ('0743474104', 'Going Home', 'https://images.isbndb.com/covers/41/08/9780743474108.jpg'), - ('0312984618', 'Black For Remembrance', 'https://images.isbndb.com/covers/46/18/9780312984618.jpg'), - ('048627165X', 'Best Remembered Poems', 'https://images.isbndb.com/covers/16/51/9780486271651.jpg'), - ('0312253079', 'Alexandra: The Last Tsarina', 'https://images.isbndb.com/covers/30/73/9780312253073.jpg'), - ('0811823555', 'Things Unspoken', 'https://images.isbndb.com/covers/35/55/9780811823555.jpg'), - ('006053429X', 'Couldn''t Keep It To Myself: Testimonies From Our Imprisoned Sisters', 'https://images.isbndb.com/covers/42/95/9780060534295.jpg'), - ('0345439244', 'Remembering Blue: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/92/46/9780345439246.jpg'), - ('0446360716', 'Shadows Of Yesterday', 'https://images.isbndb.com/covers/07/15/9780446360715.jpg'), - ('0345439155', 'The Outside Of August', 'https://images.isbndb.com/covers/91/54/9780345439154.jpg'), - ('031020707X', 'Never Again Good-Bye (Second Chances Series #1)', 'https://images.isbndb.com/covers/70/78/9780310207078.jpg'), - ('0786868139', 'The Snow Garden: A Novel', 'https://images.isbndb.com/covers/81/31/9780786868131.jpg'), - ('0312988249', 'Compulsion: A Novel (Frank Clevenger)', 'https://images.isbndb.com/covers/82/41/9780312988241.jpg'), - ('0812568729', 'Silent Children', 'https://images.isbndb.com/covers/87/21/9780812568721.jpg'), - ('0553582941', 'Sole Survivor', 'https://images.isbndb.com/covers/29/49/9780553582949.jpg'), - ('0425181928', 'A Century Of Great Suspense Stories', 'https://images.isbndb.com/covers/19/28/9780425181928.jpg'), - ('0671744690', 'Mama''s Boy', 'https://images.isbndb.com/covers/46/94/9780671744694.jpg'), - ('0446519537', 'Superstitious', 'https://images.isbndb.com/covers/95/33/9780446519533.jpg'), - ('0553578243', 'A Darker Place', 'https://images.isbndb.com/covers/82/49/9780553578249.jpg'), - ('0743412664', 'Fifth Born: A Novel', 'https://images.isbndb.com/covers/26/67/9780743412667.jpg'), - ('0380820498', 'Wednesday''s Child: An Inspector Banks Novel (Inspector Banks Novels)', 'https://images.isbndb.com/covers/04/98/9780380820498.jpg'), - ('1587670127', 'Once Upon A Halloween', 'https://images.isbndb.com/covers/01/21/9781587670121.jpg'), - ('1587670348', 'Friday Night In Beast House (Beast House Chronicles)', 'https://images.isbndb.com/covers/03/43/9781587670343.jpg'), - ('0373834365', 'The Last Two Bachelors: Falling For Him/Ending In Marriage (Midnight Sons Series 5-6)', 'https://images.isbndb.com/covers/43/65/9780373834365.jpg'), - ('0743219341', 'Baby Catcher: Chronicles Of A Modern Midwife', 'https://images.isbndb.com/covers/93/41/9780743219341.jpg'), - ('0553123904', 'The Guardian', 'https://images.isbndb.com/covers/39/06/9780553123906.jpg'), - ('031213150X', 'The Quake', 'https://images.isbndb.com/covers/15/00/9780312131500.jpg'), - ('0345396065', 'Sleepers', 'https://images.isbndb.com/covers/60/68/9780345396068.jpg'), - ('0881848581', 'Best New Horror 3 (Mammoth Book Of Best New Horror)', 'https://images.isbndb.com/covers/85/88/9780881848588.jpg'), - ('055308920X', 'Self-Defense', 'https://images.isbndb.com/covers/92/02/9780553089202.jpg'), - ('0553074741', 'Shadows', 'https://images.isbndb.com/covers/47/41/9780553074741.jpg'), - ('0553100335', 'Vertical Run', 'https://images.isbndb.com/covers/03/34/9780553100334.jpg'), - ('0671743066', 'Gone South', 'https://images.isbndb.com/covers/30/62/9780671743062.jpg'), - ('0671521705', 'Gump & Co.', 'https://images.isbndb.com/covers/17/07/9780671521707.jpg'), - ('0679419853', 'A Simple Plan', 'https://images.isbndb.com/covers/98/53/9780679419853.jpg'), - ('031205811X', 'Adams V. Texas', 'https://images.isbndb.com/covers/81/11/9780312058111.jpg'), - ('067940211X', 'Primal Fear', 'https://images.isbndb.com/covers/21/14/9780679402114.jpg'), - ('0891076182', 'Prophet', 'https://images.isbndb.com/covers/61/86/9780891076186.jpg'), - ('0553089196', 'Bad Love', 'https://images.isbndb.com/covers/91/96/9780553089196.jpg'), - ('0688088686', 'Tell Me No Secrets', 'https://images.isbndb.com/covers/86/82/9780688088682.jpg'), - ('067942525X', 'Intensity', 'https://images.isbndb.com/covers/52/50/9780679425250.jpg'), - ('0312968078', 'Tonight You''re Mine: A Novel Of Psychological Suspense', 'https://images.isbndb.com/covers/80/76/9780312968076.jpg'), - ('067100042X', 'Silent Night', 'https://images.isbndb.com/covers/04/24/9780671000424.jpg'), - ('0553291009', 'Someone''s Watching', 'https://images.isbndb.com/covers/10/01/9780553291001.jpg'), - ('0525939571', 'My Soul To Keep: 9A Novel', 'https://images.isbndb.com/covers/95/73/9780525939573.jpg'), - ('0786710829', 'The Snowman''s Children: A Novel', 'https://images.isbndb.com/covers/08/29/9780786710829.jpg'), - ('0525940456', 'Zombie', 'https://images.isbndb.com/covers/04/56/9780525940456.jpg'), - ('0802139280', 'An Honorable Profession: A Novel', 'https://images.isbndb.com/covers/92/83/9780802139283.jpg'), - ('0743446259', 'Whispers And Lies: A Novel', 'https://images.isbndb.com/covers/62/59/9780743446259.jpg'), - ('0451207874', 'When You Go Away (Nal Accent Novels)', 'https://images.isbndb.com/covers/78/76/9780451207876.jpg'), - ('0446531510', 'Land Of The Living', 'https://images.isbndb.com/covers/15/11/9780446531511.jpg'), - ('006000133X', 'The Creek', 'https://images.isbndb.com/covers/13/39/9780060001339.jpg'), - ('0060286881', 'Nightmare Hour: Time For Terror', 'https://images.isbndb.com/covers/68/80/9780060286880.jpg'), - ('0060531061', 'The Tattooed Girl: A Novel (Oates, Joyce Carol)', 'https://images.isbndb.com/covers/10/65/9780060531065.jpg'), - ('0385299087', 'Heartbeat', 'https://images.isbndb.com/covers/90/84/9780385299084.jpg'), - ('0425140032', 'Dragon Tears', 'https://images.isbndb.com/covers/00/31/9780425140031.jpg'), - ('0684829924', 'Dream Boy: A Novel', 'https://images.isbndb.com/covers/99/20/9780684829920.jpg'), - ('0060196572', 'The Girls Of Summer: The U.S. Women''s Soccer Team And How It Changed The World', 'https://images.isbndb.com/covers/65/78/9780060196578.jpg'), - ('0451202821', 'Her Daughter''s Eyes', 'https://images.isbndb.com/covers/28/26/9780451202826.jpg'), - ('055327998X', 'Book Of The Dead', 'https://images.isbndb.com/covers/99/86/9780553279986.jpg'), - ('068815333X', 'Prayers For Rain', 'https://images.isbndb.com/covers/33/35/9780688153335.jpg'), - ('0345422783', 'How Reading Changed My Life', 'https://images.isbndb.com/covers/27/81/9780345422781.jpg'), - ('0385497369', 'Midnight Sun', 'https://images.isbndb.com/covers/73/67/9780385497367.jpg'), - ('0345383826', 'Saints: The Chosen Few', 'https://images.isbndb.com/covers/38/22/9780345383822.jpg'), - ('1879402297', 'The Qur''an Translation', 'https://images.isbndb.com/covers/22/94/9781879402294.jpg'), - ('0553213520', 'The Idiot (Bantam Classic)', 'https://images.isbndb.com/covers/35/22/9780553213522.jpg'), - ('0062509586', 'The Essential Rumi', 'https://images.isbndb.com/covers/95/81/9780062509581.jpg'), - ('1855013592', 'The Sonnets', 'https://images.isbndb.com/covers/35/99/9781855013599.jpg'), - ('0151006261', 'Under The Skin', 'https://images.isbndb.com/covers/62/67/9780151006267.jpg'), - ('0345350685', 'The Autobiography Of Malcolm X: As Told To Alex Haley', 'https://images.isbndb.com/covers/06/88/9780345350688.jpg'), - ('0020631502', 'The MacMillan Book Of Organic Gardening (Collier Books)', 'https://images.isbndb.com/covers/15/07/9780020631507.jpg'), - ('0441644856', 'Out Of Time''s Abyss: The Lost Continent''s Most Startling Secret (Ace SF Classic, No. 64485)', 'https://images.isbndb.com/covers/48/58/9780441644858.jpg'), - ('0440234859', 'Losing Julia', 'https://images.isbndb.com/covers/48/52/9780440234852.jpg'), - ('0441468721', 'The Lad And The Lion', 'https://images.isbndb.com/covers/87/20/9780441468720.jpg'), - ('0345374053', 'The Moon Maid', 'https://images.isbndb.com/covers/40/59/9780345374059.jpg'), - ('0345427998', 'Eye Of The Beholder', 'https://images.isbndb.com/covers/79/91/9780345427991.jpg'), - ('0451451538', 'Vampire$: A Novel', 'https://images.isbndb.com/covers/15/38/9780451451538.jpg'), - ('0446608483', 'The Pledge', 'https://images.isbndb.com/covers/84/80/9780446608480.jpg'), - ('0553024248', 'The Great Train Robbery', 'https://images.isbndb.com/covers/42/41/9780553024241.jpg'), - ('043938074X', 'Dare To Draw In 3-d #3', 'https://images.isbndb.com/covers/07/44/9780439380744.jpg'), - ('043937989X', 'Dare To Draw In 3-D', 'https://images.isbndb.com/covers/98/92/9780439379892.jpg'), - ('0684833727', 'Drawing In 3-D', 'https://images.isbndb.com/covers/37/29/9780684833729.jpg'), - ('0823026906', 'Kids Draw Anime', 'https://images.isbndb.com/covers/69/06/9780823026906.jpg'), - ('0590603795', 'The Berenstain Bear Scouts In Giant Bat Cave (Bear Scouts)', 'https://images.isbndb.com/covers/37/99/9780590603799.jpg'), - ('0195283910', 'The Catholic Study Bible: New American Bible', 'https://images.isbndb.com/covers/39/14/9780195283914.jpg'), - ('055305614X', 'Mickey''s Birthday Surprise: Mickey''s Young Readers Library Vol. 1', 'https://images.isbndb.com/covers/61/43/9780553056143.jpg'), - ('0879733438', 'Before You Were Born (OSV Read-Along Book)', 'https://images.isbndb.com/covers/34/38/9780879733438.jpg'), - ('0590437747', 'Mary Had A Little Lamb', 'https://images.isbndb.com/covers/77/45/9780590437745.jpg'), - ('0060097825', 'Zoya''s Story: An Afghan Woman''s Struggle For Freedom', 'https://images.isbndb.com/covers/78/20/9780060097820.jpg'), - ('014017799X', 'Meditations For Cats Who Do Too Much', 'https://images.isbndb.com/covers/79/92/9780140177992.jpg'), - ('1553373405', 'ABC Of Canada', 'https://images.isbndb.com/covers/34/07/9781553373407.jpg'), - ('0689831935', 'Manneken Pis: A Simple Story Of A Boy Who Peed On A War', 'https://images.isbndb.com/covers/19/35/9780689831935.jpg'), - ('0375802975', 'Knights And Castles (Magic Tree House Research Guide, Paper)', 'https://images.isbndb.com/covers/29/73/9780375802973.jpg'), - ('0395440904', 'The Boy Of The Three-Year Nap', 'https://images.isbndb.com/covers/09/02/9780395440902.jpg'), - ('0394805666', 'The Berenstain Bears Get The Gimmies', 'https://images.isbndb.com/covers/56/65/9780394805665.jpg'), - ('0689823215', 'Roanoke: The Lost Colony--An Unsolved Mystery From History', 'https://images.isbndb.com/covers/32/13/9780689823213.jpg'), - ('0439625602', 'Coloring Book (Harry Potter)', 'https://images.isbndb.com/covers/56/09/9780439625609.jpg'), - ('0689831781', 'Maxwell''s Magic Mix-up', 'https://images.isbndb.com/covers/17/82/9780689831782.jpg'), - ('0696209063', 'Hey, Kids! Come Craft With ME', 'https://images.isbndb.com/covers/90/62/9780696209062.jpg'), - ('0345335082', 'Dragonquest (Dragonriders Of Pern #2)', 'https://images.isbndb.com/covers/50/81/9780345335081.jpg'), - ('0399146857', 'The Bonesetter''s Daughter', 'https://images.isbndb.com/covers/68/55/9780399146855.jpg'), - ('0590672975', 'M. C. Higgins: The Great', 'https://images.isbndb.com/covers/29/79/9780590672979.jpg'), - ('0553370227', 'The Warrior Maiden (Bank Street Level 3*)', 'https://images.isbndb.com/covers/02/25/9780553370225.jpg'), - ('0789429624', 'DK Readers: Beastly Tales (Level 3: Reading Alone)', 'https://images.isbndb.com/covers/96/29/9780789429629.jpg'), - ('0894809938', 'My World & Globe', 'https://images.isbndb.com/covers/99/34/9780894809934.jpg'), - ('0590403729', 'If You Lived At The Time Of The Great San Francisco Earthquake', 'https://images.isbndb.com/covers/37/26/9780590403726.jpg'), - ('0064400484', 'The Trumpet Of The Swan', 'https://images.isbndb.com/covers/04/80/9780064400480.jpg'), - ('0064441075', 'Sam The Minuteman (I Can Read Book 3)', 'https://images.isbndb.com/covers/10/70/9780064441070.jpg'), - ('055325605X', 'Belles On Their Toes', 'https://images.isbndb.com/covers/60/55/9780553256055.jpg'), - ('0440228956', 'The Headless Cupid', 'https://images.isbndb.com/covers/89/50/9780440228950.jpg'), - ('0452264030', 'Teaching Montessori In The Home: The School Years (Plume)', 'https://images.isbndb.com/covers/40/38/9780452264038.jpg'), - ('156138190X', 'Further Five-Minute Mysteries', 'https://images.isbndb.com/covers/19/06/9781561381906.jpg'), - ('0842359249', 'The Strong-Willed Child', 'https://images.isbndb.com/covers/92/45/9780842359245.jpg'), - ('0448095122', 'The Message In The Hollow Oak (Nancy Drew, Book 12)', 'https://images.isbndb.com/covers/51/27/9780448095127.jpg'), - ('0448095106', 'The Password To Larkspur Lane (Nancy Drew, Book 10)', 'https://images.isbndb.com/covers/51/03/9780448095103.jpg'), - ('0440417945', 'Dear Mr. Henshaw (A Dell Yearling Book)', 'https://images.isbndb.com/covers/79/41/9780440417941.jpg'), - ('0394800028', 'The Cat In The Hat Comes Back (Beginner Books(R))', 'https://images.isbndb.com/covers/00/28/9780394800028.jpg'), - ('0312491670', 'My Picture Atlas (Smart Kids)', 'https://images.isbndb.com/covers/16/73/9780312491673.jpg'), - ('1579121489', 'Story Of The Orchestra : Listen While You Learn About The Instruments, The Music And The Composers Who Wrote The Music!', 'https://images.isbndb.com/covers/14/88/9781579121488.jpg'), - ('0816713170', 'Charley Skedaddle', 'https://images.isbndb.com/covers/31/72/9780816713172.jpg'), - ('0064462080', 'Red Scarf Girl (rpkg): A Memoir Of The Cultural Revolution', 'https://images.isbndb.com/covers/20/82/9780064462082.jpg'), - ('0767915445', 'Andrea Immer''s 2004 Wine Buying Guide For Everyone (Andrea Robinson''s Wine Buying Guide For Everyone)', 'https://images.isbndb.com/covers/54/41/9780767915441.jpg'), - ('1931484198', 'Ruse V. 1: Enter The Detective', 'https://images.isbndb.com/covers/41/90/9781931484190.jpg'), - ('0140469710', 'The Read-Aloud Handbook: Third Revised Edition (Read-Aloud Handbook)', 'https://images.isbndb.com/covers/97/14/9780140469714.jpg'), - ('0940319004', 'A Home Start In Reading (Grades K-3)', 'https://images.isbndb.com/covers/90/04/9780940319004.jpg'), - ('0698119487', 'On My Way: A 26 Fairmount Avenue Book', 'https://images.isbndb.com/covers/94/82/9780698119482.jpg'), - ('0399234969', 'Here We All Are (A 26 Fairmount Avenue Book)', 'https://images.isbndb.com/covers/49/65/9780399234965.jpg'), - ('039923246X', '26 Fairmount Avenue', 'https://images.isbndb.com/covers/24/66/9780399232466.jpg'), - ('0060284773', 'Zlateh The Goat And Other Stories', 'https://images.isbndb.com/covers/47/70/9780060284770.jpg'), - ('0689844077', 'A Little Princess (Aladdin Classics)', 'https://images.isbndb.com/covers/40/72/9780689844072.jpg'), - ('0060278226', 'Our Only May Amelia (Newbery Honor Book, 2000)', 'https://images.isbndb.com/covers/82/29/9780060278229.jpg'), - ('0689831285', 'Just Ella (Aladdin Fantasy)', 'https://images.isbndb.com/covers/12/87/9780689831287.jpg'), - ('0590386336', 'The Library Card', 'https://images.isbndb.com/covers/63/33/9780590386333.jpg'), - ('0786817577', 'Bill Nye The Science Guy''s Big Blue Ocean', 'https://images.isbndb.com/covers/75/73/9780786817573.jpg'), - ('059042582X', '. . . If You Lived At The Time Of Martin Luther King', 'https://images.isbndb.com/covers/58/27/9780590425827.jpg'), - ('0425187012', 'Magical Worlds Of Harry Potter', 'https://images.isbndb.com/covers/70/12/9780425187012.jpg'), - ('0785258442', 'My First Catholic Bible For Catholic Children Who Want A Devotional Bible Of Their Very Own!', 'https://images.isbndb.com/covers/84/45/9780785258445.jpg'), - ('0553272500', 'Cheaper By The Dozen (A Bantam Starfire Book)', 'https://images.isbndb.com/covers/25/05/9780553272505.jpg'), - ('0395549701', 'The Samurai''s Tale', 'https://images.isbndb.com/covers/97/04/9780395549704.jpg'), - ('0395881560', 'Matilda Bone', 'https://images.isbndb.com/covers/15/69/9780395881569.jpg'), - ('0316454311', 'Twin Tales : The Magic And Mystery Of Multiple Birth', 'https://images.isbndb.com/covers/43/15/9780316454315.jpg'), - ('0840758634', 'The Confessions Of Saint Augustine: A New Translation With Introductions', 'https://images.isbndb.com/covers/86/37/9780840758637.jpg'), - ('0312277350', 'Julia''s Mother: Life Lessons In The Pediatric ER', 'https://images.isbndb.com/covers/73/52/9780312277352.jpg'), - ('1885593155', 'Boredom Busters!: The Curious Kids'' Activity Book (Williamson Kids Can Books)', 'https://images.isbndb.com/covers/31/53/9781885593153.jpg'), - ('0913589721', 'The Kids'' Multicultural Art Book: Art & Craft Experiences From Around The World (Williamson Kids Can!)', 'https://images.isbndb.com/covers/97/24/9780913589724.jpg'), - ('0785335927', '365 Holiday Craft And Activities', 'https://images.isbndb.com/covers/59/24/9780785335924.jpg'), - ('0156806797', 'The Seven Storey Mountain (Harvest/HBJ Book)', 'https://images.isbndb.com/covers/67/94/9780156806794.jpg'), - ('1584850388', 'Hair: Styling Tips And Tricks For Girls (American Girl Library)', 'https://images.isbndb.com/covers/03/80/9781584850380.jpg'), - ('0590623524', 'Dinosaurs Before Dark (Magic Tree House #1)', 'https://images.isbndb.com/covers/35/20/9780590623520.jpg'), - ('1889209023', 'A Charlotte Mason Companion: Personal Reflections On The Gentle Art Of Learning', 'https://images.isbndb.com/covers/90/29/9781889209029.jpg'), - ('1561384380', 'The Whole Christmas Catalogue: The Complete Compendium Of Christmas Traditions, Recipes, Crafts, Carols, Lore, And More', 'https://images.isbndb.com/covers/43/89/9781561384389.jpg'), - ('0942237129', 'Christmas Portraits', 'https://images.isbndb.com/covers/71/22/9780942237122.jpg'), - ('0942237080', 'Christmas Keepsakes', 'https://images.isbndb.com/covers/70/85/9780942237085.jpg'), - ('156476737X', 'Holidays: Family Nights Tool Chest', 'https://images.isbndb.com/covers/73/70/9781564767370.jpg'), - ('0812043650', 'Learn Japanese The Fast And Fun Way', 'https://images.isbndb.com/covers/36/55/9780812043655.jpg'), - ('0844283738', 'Beginner''s Kana Workbook', 'https://images.isbndb.com/covers/37/39/9780844283739.jpg'), - ('0844283460', 'Easy Japanese Crossword Puzzles: Using Roomaji', 'https://images.isbndb.com/covers/34/63/9780844283463.jpg'), - ('0812046439', 'Japanese Grammar (Grammar Series)', 'https://images.isbndb.com/covers/64/34/9780812046434.jpg'), - ('0517590662', 'Living Language Conversational Japanese (Living Language Coursebooks)', 'https://images.isbndb.com/covers/06/69/9780517590669.jpg'), - ('0517590670', 'Living Language Japanese Dictionary (English And Japanese Edition)', 'https://images.isbndb.com/covers/06/76/9780517590676.jpg'), - ('0679889337', 'Cezanne Pinto', 'https://images.isbndb.com/covers/93/35/9780679889335.jpg'), - ('0819310433', 'Alligator''s Song', 'https://images.isbndb.com/covers/04/39/9780819310439.jpg'), - ('1551050900', 'Animal Tracks Of Washington And Oregon (Animal Tracks Guides)', 'https://images.isbndb.com/covers/09/04/9781551050904.jpg'), - ('0312291450', 'If Chins Could Kill: Confessions Of A B Movie Actor', 'https://images.isbndb.com/covers/14/57/9780312291457.jpg'), - ('1565123085', 'How To Get Your Child To Love Reading: For Ravenous And Reluctant Readers Alike', 'https://images.isbndb.com/covers/30/83/9781565123083.jpg'), - ('1575724103', 'The Vikings (Crafts From The Past)', 'https://images.isbndb.com/covers/41/02/9781575724102.jpg'), - ('0688177484', 'Aztec Crafts From The Past', 'https://images.isbndb.com/covers/74/85/9780688177485.jpg'), - ('0881661775', 'Pregnancy, Childbirth And The Newborn: The Complete Guide', 'https://images.isbndb.com/covers/17/74/9780881661774.jpg'), - ('1562313010', 'Snip Your Snapshots & Trim Your Treasures', 'https://images.isbndb.com/covers/30/12/9781562313012.jpg'), - ('0679989560', 'The Berenstain Bears Lend A Helping Hand (First Time Books(R))', 'https://images.isbndb.com/covers/95/61/9780679989561.jpg'), - ('0764800582', 'Lift Up Your Heart: A Guide To Spiritual Peace (Triumph Classic)', 'https://images.isbndb.com/covers/05/80/9780764800580.jpg'), - ('0385029039', 'The Autobiography Of Saint Therese Of Lisieux: The Story Of A Soul', 'https://images.isbndb.com/covers/90/32/9780385029032.jpg'), - ('0451525264', 'Les Misérables (Signet Classics)', 'https://images.isbndb.com/covers/52/60/9780451525260.jpg'), - ('0760734046', 'Beautiful Stories From Shakespeare For Children', 'https://images.isbndb.com/covers/40/49/9780760734049.jpg'), - ('1888992042', 'Where We Got The Bible: Our Debt To The Catholic Church', 'https://images.isbndb.com/covers/20/45/9781888992045.jpg'), - ('0517562898', 'Robert Frost (The Great American Poets)', 'https://images.isbndb.com/covers/28/95/9780517562895.jpg'), - ('0805063331', 'The Easter Story: According To The Gospels Of Matthew, Luke And John From The King James Bible', 'https://images.isbndb.com/covers/33/32/9780805063332.jpg'), - ('0819830992', 'Saint Gianna Beretta Molta A Woman''s Life 1922-1962', 'https://images.isbndb.com/covers/09/99/9780819830999.jpg'), - ('1931709300', 'The Cross At Ground Zero', 'https://images.isbndb.com/covers/93/09/9781931709309.jpg'), - ('0963903209', 'Children Of Winter: How The Classroom Is Murdering The Innocence Of Your Child', 'https://images.isbndb.com/covers/32/04/9780963903204.jpg'), - ('0898706785', 'A Landscape With Dragons: The Battle For Your Child''s Mind', 'https://images.isbndb.com/covers/67/89/9780898706789.jpg'), - ('0689829507', 'Good Night, Blue (Blue''s Clues)', 'https://images.isbndb.com/covers/95/05/9780689829505.jpg'), - ('1851825924', 'Character Building: A Guide For Parents And Teachers', 'https://images.isbndb.com/covers/59/29/9781851825929.jpg'), - ('0898706602', 'Designing Your Own Classical Curriculum: A Guide To Catholic Home Education', 'https://images.isbndb.com/covers/66/04/9780898706604.jpg'), - ('0898704367', 'A Still, Small Voice: A Practical Guide On Reported Revelations', 'https://images.isbndb.com/covers/43/65/9780898704365.jpg'), - ('0590414488', 'Gods, Demigods, And Demons: An Encyclopedia Of Greek Mythology (Point)', 'https://images.isbndb.com/covers/44/87/9780590414487.jpg'), - ('0971412936', 'The Story Of The World: History For The Classical Child, Volume 2: The Middle Ages: From The Fall Of Rome To The Rise Of The Renaissance', 'https://images.isbndb.com/covers/29/34/9780971412934.jpg'), - ('0439141346', 'Favorite Medieval Tales', 'https://images.isbndb.com/covers/13/45/9780439141345.jpg'), - ('0842373624', 'The Passion: Photography From The Movie "The Passion Of The Christ"', 'https://images.isbndb.com/covers/36/23/9780842373623.jpg'), - ('193264542X', 'A Guide To The Passion: 100 Questions About The Passion Of The Christ', 'https://images.isbndb.com/covers/54/22/9781932645422.jpg'), - ('078681859X', 'The Amulet Of Samarkand (The Bartimaeus Trilogy, Book 1)', 'https://images.isbndb.com/covers/85/94/9780786818594.jpg'), - ('0553381075', 'New Mother''s Guide To Breastfeeding (American Academy Of Pediatrics)', 'https://images.isbndb.com/covers/10/78/9780553381078.jpg'), - ('0898707609', 'Bernadette: Our Lady''s Little Servant (Vision Books)', 'https://images.isbndb.com/covers/76/01/9780898707601.jpg'), - ('1570642389', 'Barney And BJ Go To The Police Station', 'https://images.isbndb.com/covers/23/88/9781570642388.jpg'), - ('0809256851', 'How To Draw Caricatures', 'https://images.isbndb.com/covers/68/53/9780809256853.jpg'), - ('078943413X', 'Illustrated Dictionary Of Mythology', 'https://images.isbndb.com/covers/41/35/9780789434135.jpg'), - ('0805068422', 'The Anti-Coloring Book: Creative Activities For Ages 6 And Up', 'https://images.isbndb.com/covers/84/29/9780805068429.jpg'), - ('0671882538', 'Saints: Who They Are And How They Help You', 'https://images.isbndb.com/covers/25/32/9780671882532.jpg'), - ('1569552924', 'Life-Giving Love : Embracing God''s Beautiful Design For Marriage', 'https://images.isbndb.com/covers/29/26/9781569552926.jpg'), - ('037312354X', 'The Italian''s Demand: Italians Husband (Harlequin Presents)', 'https://images.isbndb.com/covers/35/44/9780373123544.jpg'), - ('0829411739', 'An Empty Cradle, A Full Heart: Reflections For Mothers And Fathers After Miscarriage, Stillbirth, Or Infant Death', 'https://images.isbndb.com/covers/17/37/9780829411737.jpg'), - ('089870569X', 'Born Fundamentalist, Born Again Catholic', 'https://images.isbndb.com/covers/56/90/9780898705690.jpg'), - ('0879736739', 'Padre Pio: The True Story', 'https://images.isbndb.com/covers/67/36/9780879736736.jpg'), - ('089283756X', 'Catholics And The New Age', 'https://images.isbndb.com/covers/75/64/9780892837564.jpg'), - ('0879735775', 'Holding Hands With God: Catholic Women Share Their Stories Of Courage And Hope', 'https://images.isbndb.com/covers/57/77/9780879735777.jpg'), - ('1928832180', 'Surprised By Truth 2: 15 Men And Women Give The Biblical And Historical Reasons For Becoming Catholic. (v. 2)', 'https://images.isbndb.com/covers/21/88/9781928832188.jpg'), - ('0964261081', 'Surprised By Truth: 11 Converts Give The Biblical And Historical Reasons For Becoming Catholic', 'https://images.isbndb.com/covers/10/82/9780964261082.jpg'), - ('0312134517', 'Coming Home', 'https://images.isbndb.com/covers/45/18/9780312134518.jpg'), - ('1576581454', 'George Muller: The Guardian Of Bristol''s Orphans (Christian Heroes: Then & Now)', 'https://images.isbndb.com/covers/14/52/9781576581452.jpg'), - ('0439236398', 'Robin Hood Of Sherwood Forest (Scholastic Junior Classics)', 'https://images.isbndb.com/covers/63/93/9780439236393.jpg'), - ('0385319800', 'Homecoming', 'https://images.isbndb.com/covers/98/05/9780385319805.jpg'), - ('0618159789', 'The Place At The Edge Of The Earth', 'https://images.isbndb.com/covers/97/89/9780618159789.jpg'), - ('0740718665', 'Coast To Coast Ghosts: True Stories Of Hauntings Across America', 'https://images.isbndb.com/covers/86/63/9780740718663.jpg'), - ('0445408510', 'Games To Keep The Dark Away', 'https://images.isbndb.com/covers/85/17/9780445408517.jpg'), - ('0140350144', 'King Solomon''s Mines: Complete And Unabridged (Puffin Classics)', 'https://images.isbndb.com/covers/01/42/9780140350142.jpg'), - ('0553271717', 'Stalking Lamb, The', 'https://images.isbndb.com/covers/17/13/9780553271713.jpg'), - ('0060163402', 'The Perfect Murder: Five Great Mystery Writers Create The Perfect Crime', 'https://images.isbndb.com/covers/34/02/9780060163402.jpg'), - ('0671730762', 'Swiss Secrets (Passport To Romance Trilogy #1) (The Nancy Drew Files, Case 72)', 'https://images.isbndb.com/covers/07/65/9780671730765.jpg'), - ('0671730703', 'Tall, Dark And Deadly (Nancy Drew Casefiles, Case 66)', 'https://images.isbndb.com/covers/07/03/9780671730703.jpg'), - ('0671730711', 'NOBODY''S BUSINESS: NANCY DREW FILES #67', 'https://images.isbndb.com/covers/07/10/9780671730710.jpg'), - ('0553241346', 'The Hills Of Homicide', 'https://images.isbndb.com/covers/13/41/9780553241341.jpg'), - ('055321229X', 'Silas Marner (Bantam Classics)', 'https://images.isbndb.com/covers/22/97/9780553212297.jpg'), - ('0553210602', 'Ten Plays By Euripides', 'https://images.isbndb.com/covers/06/06/9780553210606.jpg'), - ('0385418957', 'Seven Pillars Of Wisdom: A Triumph', 'https://images.isbndb.com/covers/89/59/9780385418959.jpg'), - ('0395346355', 'The Practical Cogitator Or The Thinker''s Anthology', 'https://images.isbndb.com/covers/63/58/9780395346358.jpg'), - ('0871932148', 'The Enneagram : A Journey Of Self Discovery', 'https://images.isbndb.com/covers/21/43/9780871932143.jpg'), - ('0451521692', 'Les Liaisons Dangereuses', 'https://images.isbndb.com/covers/16/99/9780451521699.jpg'), - ('0380722658', 'The Man Who Understood Cats (John Thinnes/Jack Caleb Mysteries)', 'https://images.isbndb.com/covers/26/55/9780380722655.jpg'), - ('0316150460', 'Cats And Their Women', 'https://images.isbndb.com/covers/04/60/9780316150460.jpg'), - ('0822210940', 'Suddenly Last Summer.', 'https://images.isbndb.com/covers/09/48/9780822210948.jpg'), - ('0140436499', 'American Notes For General Circulation (Penguin Classics)', 'https://images.isbndb.com/covers/64/95/9780140436495.jpg'), - ('0553126121', 'Aeneid Of Virgil', 'https://images.isbndb.com/covers/61/29/9780553126129.jpg'), - ('0451526783', 'As You Like It (Signet Classics)', 'https://images.isbndb.com/covers/67/86/9780451526786.jpg'), - ('0553212818', 'Four Comedies: The Taming Of The Shrew, A Midsummer Night''s Dream, The Merchant Of Venice, Twelfth Night (Bantam Classics)', 'https://images.isbndb.com/covers/28/15/9780553212815.jpg'), - ('0819310395', 'Henry''s Awful Mistake', 'https://images.isbndb.com/covers/03/92/9780819310392.jpg'), - ('055357857X', 'The Dead Cat Bounce: A Home Repair Is Homicide Mystery', 'https://images.isbndb.com/covers/85/77/9780553578577.jpg'), - ('0345360354', 'Lovely In Her Bones', 'https://images.isbndb.com/covers/03/59/9780345360359.jpg'), - ('0312989741', 'Murder At The Cat Show', 'https://images.isbndb.com/covers/97/43/9780312989743.jpg'), - ('0816714630', 'Hard Times (A Watermill Classic)', 'https://images.isbndb.com/covers/46/36/9780816714636.jpg'), - ('0590934899', 'Escape From Camp Run-for-Your-Life (Give Yourself Goosebumps, No 19)', 'https://images.isbndb.com/covers/48/93/9780590934893.jpg'), - ('0307016277', 'Attack/Killer Tomatoes Pt N Mk', 'https://images.isbndb.com/covers/62/70/9780307016270.jpg'), - ('0440464854', 'Now We Are Six', 'https://images.isbndb.com/covers/48/53/9780440464853.jpg'), - ('0590262173', 'The Case Of The Chocolate Fingerprints (Clue Jr. #3)', 'https://images.isbndb.com/covers/21/70/9780590262170.jpg'), - ('0590847740', 'The Creepy Creations Of Professor Shock (Give Yourself Goosebumps, No 14)', 'https://images.isbndb.com/covers/77/42/9780590847742.jpg'), - ('0064401863', 'Graven Images: Three Stories (Newbery Honor Roll)', 'https://images.isbndb.com/covers/18/69/9780064401869.jpg'), - ('0020868308', 'Mere Christianity', 'https://images.isbndb.com/covers/83/09/9780020868309.jpg'), - ('0307302709', 'Daddies: All About The Work They Do (Little Golden Book)', 'https://images.isbndb.com/covers/27/00/9780307302700.jpg'), - ('0451410106', 'A Kiss Gone Bad', 'https://images.isbndb.com/covers/01/08/9780451410108.jpg'), - ('039470648X', 'MASSAGE AND MEDITATION (Bookworks)', 'https://images.isbndb.com/covers/64/81/9780394706481.jpg'), - ('0896380653', 'Hug Therapy Book', 'https://images.isbndb.com/covers/06/53/9780896380653.jpg'), - ('1575668335', 'Birthday Party Murder (Lucy Stone Mysteries, No. 9)', 'https://images.isbndb.com/covers/83/38/9781575668338.jpg'), - ('0590341502', 'The Borrowers', 'https://images.isbndb.com/covers/15/09/9780590341509.jpg'), - ('0449221059', 'Miss Melville Rides A Tiger', 'https://images.isbndb.com/covers/10/51/9780449221051.jpg'), - ('0449212599', 'Miss Melville Regrets', 'https://images.isbndb.com/covers/25/92/9780449212592.jpg'), - ('0449214990', 'Miss Melville Returns', 'https://images.isbndb.com/covers/49/92/9780449214992.jpg'), - ('0684808129', 'Five Sisters: The Langhornes Of Virginia', 'https://images.isbndb.com/covers/81/23/9780684808123.jpg'), - ('0840796560', '10,000 Things To Praise God For', 'https://images.isbndb.com/covers/65/61/9780840796561.jpg'), - ('0750926376', 'Edward VII''s Last Loves', 'https://images.isbndb.com/covers/63/79/9780750926379.jpg'), - ('0804101167', 'Grania: She-King Of The Irish Seas', 'https://images.isbndb.com/covers/11/65/9780804101165.jpg'), - ('0821748726', 'Dead In The Melon Patch (Amanda Hazard Mysteries)', 'https://images.isbndb.com/covers/87/25/9780821748725.jpg'), - ('0445407549', 'The Eighth Dwarf', 'https://images.isbndb.com/covers/75/41/9780445407541.jpg'), - ('0446602809', 'Romance', 'https://images.isbndb.com/covers/28/08/9780446602808.jpg'), - ('1575666278', 'High Seas Murder: A Lindy Haggerty Mystery', 'https://images.isbndb.com/covers/62/73/9781575666273.jpg'), - ('0553573004', 'Stud Rites', 'https://images.isbndb.com/covers/30/08/9780553573008.jpg'), - ('0515087122', 'The Cat Who Ate Danish Modern', 'https://images.isbndb.com/covers/71/23/9780515087123.jpg'), - ('0671700359', 'HOT PURSUIT (NANCY DREW FILES 58)', 'https://images.isbndb.com/covers/03/55/9780671700355.jpg'), - ('0380798565', 'The Ape Who Guards The Balance : An Amelia Peabody Mystery', 'https://images.isbndb.com/covers/85/68/9780380798568.jpg'), - ('1575663309', 'Back To School Murder (Lucy Stone Mysteries, No. 4)', 'https://images.isbndb.com/covers/33/02/9781575663302.jpg'), - ('1590600762', 'King Arthur And The Knights Of The Round Table (Illustrated Classics Editions)', 'https://images.isbndb.com/covers/07/64/9781590600764.jpg'), - ('0895269163', 'Euthypro, Crito, Apology, And Symposium', 'https://images.isbndb.com/covers/91/64/9780895269164.jpg'), - ('067173069X', 'Final Notes (Nancy Drew Files, No 65)', 'https://images.isbndb.com/covers/06/97/9780671730697.jpg'), - ('0671700375', 'POISON PEN (NANCY DREW FILES 60)', 'https://images.isbndb.com/covers/03/79/9780671700379.jpg'), - ('006091565X', 'The Dance Of Anger: A Woman''s Guide To Changing The Patterns Of Intimate Relationships', 'https://images.isbndb.com/covers/56/50/9780060915650.jpg'), - ('006104363X', 'The Five Red Herrings', 'https://images.isbndb.com/covers/36/35/9780061043635.jpg'), - ('0965608646', 'Been There Should''ve Done That: 505 Tips For Making The Most Of College', 'https://images.isbndb.com/covers/86/40/9780965608640.jpg'), - ('1575662191', 'Trick Or Treat Murder (Lucy Stone Mysteries, No. 3)', 'https://images.isbndb.com/covers/21/90/9781575662190.jpg'), - ('0449213323', 'Murder In Georgetown (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/33/22/9780449213322.jpg'), - ('0446314889', 'Murder In The White House', 'https://images.isbndb.com/covers/48/86/9780446314886.jpg'), - ('0449001725', 'Murder In The House (Capital Crime)', 'https://images.isbndb.com/covers/17/21/9780449001721.jpg'), - ('0345394380', 'Only Good Yankee (A Jordan Poteet Mystery)', 'https://images.isbndb.com/covers/43/85/9780345394385.jpg'), - ('0345389484', 'Do Unto Others', 'https://images.isbndb.com/covers/94/80/9780345389480.jpg'), - ('0671721097', 'PartnerShip (The Ship Who...)', 'https://images.isbndb.com/covers/10/91/9780671721091.jpg'), - ('038542406X', 'SEVEN FOR A SECRET', 'https://images.isbndb.com/covers/40/66/9780385424066.jpg'), - ('0449006700', 'Mrs. Pollifax Unveiled (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/67/02/9780449006702.jpg'), - ('0452263301', 'Metropolitan Life (Plume)', 'https://images.isbndb.com/covers/33/07/9780452263307.jpg'), - ('0932194540', 'Bradshaw On The Family: A Revolutionary Way Of Self Discovery', 'https://images.isbndb.com/covers/45/41/9780932194541.jpg'), - ('0030628822', 'Way Of The Bull', 'https://images.isbndb.com/covers/88/25/9780030628825.jpg'), - ('0380793474', 'Regarding The Fountain', 'https://images.isbndb.com/covers/34/71/9780380793471.jpg'), - ('0517093588', 'Shakespeare''s Stories: The Comedies', 'https://images.isbndb.com/covers/35/80/9780517093580.jpg'), - ('0425165698', 'Mrs. Jeffries Takes The Cake (Victorian Mystery)', 'https://images.isbndb.com/covers/56/90/9780425165690.jpg'), - ('0939149222', 'O Come Ye Back To Ireland: Our First Year In County Clare', 'https://images.isbndb.com/covers/92/23/9780939149223.jpg'), - ('0671509810', 'Romeo And Juliet', 'https://images.isbndb.com/covers/98/11/9780671509811.jpg'), - ('0671661590', 'Veil: The Secret Wars Of The CIA 1981-1987', 'https://images.isbndb.com/covers/15/95/9780671661595.jpg'), - ('0399136134', 'The Spy Wore Silk', 'https://images.isbndb.com/covers/61/39/9780399136139.jpg'), - ('0671435248', 'The Man In The Queue', 'https://images.isbndb.com/covers/52/40/9780671435240.jpg'), - ('0786880376', 'Organize Your Office!: Simple Routines For Managing Your Workspace', 'https://images.isbndb.com/covers/03/79/9780786880379.jpg'), - ('0674445449', 'In A Different Voice: Psychological Theory And Women''s Development', 'https://images.isbndb.com/covers/54/44/9780674445444.jpg'), - ('0517597985', 'All I Really Need To Know I Learned From Watching Star Trek', 'https://images.isbndb.com/covers/79/89/9780517597989.jpg'), - ('0312966199', 'All Things Bright And Beautiful', 'https://images.isbndb.com/covers/61/95/9780312966195.jpg'), - ('1579830021', 'Waking Up In Time: Finding Inner Peace In Times Of Accelerating Change', 'https://images.isbndb.com/covers/00/21/9781579830021.jpg'), - ('0449212238', 'The Pilgrim Of Hate (Chronicle Of Brother Cadfael)', 'https://images.isbndb.com/covers/22/33/9780449212233.jpg'), - ('0446522899', 'Working Wounded: Advice That Adds Insight To Injury', 'https://images.isbndb.com/covers/28/92/9780446522892.jpg'), - ('0316769517', 'Raise High The Roof Beam, Carpenters And Seymour: An Introduction', 'https://images.isbndb.com/covers/95/18/9780316769518.jpg'), - ('0523413920', 'Flying Colors: The Hornblower Saga #7', 'https://images.isbndb.com/covers/39/21/9780523413921.jpg'), - ('0831400889', 'Into The Dark For Gold', 'https://images.isbndb.com/covers/08/80/9780831400880.jpg'), - ('0375701214', 'The Diving Bell And The Butterfly: A Memoir Of Life In Death', 'https://images.isbndb.com/covers/12/14/9780375701214.jpg'), - ('0449239047', 'Plague Dogs', 'https://images.isbndb.com/covers/90/49/9780449239049.jpg'), - ('0515119520', 'Come To Grief', 'https://images.isbndb.com/covers/95/27/9780515119527.jpg'), - ('0553345745', 'Good-Bye To Guilt: Releasing Fear Through Forgiveness', 'https://images.isbndb.com/covers/57/42/9780553345742.jpg'), - ('0380008971', 'Whose Body?', 'https://images.isbndb.com/covers/89/71/9780380008971.jpg'), - ('0916392392', 'What You Think Of Me Is None Of My Business', 'https://images.isbndb.com/covers/23/90/9780916392390.jpg'), - ('0449205452', 'American Way Of Death', 'https://images.isbndb.com/covers/54/57/9780449205457.jpg'), - ('093033003X', 'Lady Molly Of Scotland Yard', 'https://images.isbndb.com/covers/00/33/9780930330033.jpg'), - ('0394724550', 'Gift From The Sea', 'https://images.isbndb.com/covers/45/53/9780394724553.jpg'), - ('0394562720', 'The Making Of The African Queen: Or How I Went To Africa With Bogart, Bacall And Huston And Almost Lost My Mind', 'https://images.isbndb.com/covers/27/28/9780394562728.jpg'), - ('0684847515', 'Miss Pym Disposes', 'https://images.isbndb.com/covers/75/11/9780684847511.jpg'), - ('0140063315', 'Rumpole And The Golden Thread', 'https://images.isbndb.com/covers/33/18/9780140063318.jpg'), - ('034529873X', 'Moreta: Dragonlady Of Pern', 'https://images.isbndb.com/covers/87/37/9780345298737.jpg'), - ('0061043494', 'Gaudy Night (Lord Peter Wimsey Mysteries)', 'https://images.isbndb.com/covers/34/99/9780061043499.jpg'), - ('0345370767', 'All The Crazy Winters', 'https://images.isbndb.com/covers/07/61/9780345370761.jpg'), - ('0590763563', 'Michelle Kwan: My Story - Heart Of A Champion', 'https://images.isbndb.com/covers/35/61/9780590763561.jpg'), - ('0061099813', 'When You Look Like Your Passport Photo, It''s Time To Go Home', 'https://images.isbndb.com/covers/98/16/9780061099816.jpg'), - ('1575665670', 'The Haunted Lady', 'https://images.isbndb.com/covers/56/72/9781575665672.jpg'), - ('0679742298', 'The Talented Mr. Ripley', 'https://images.isbndb.com/covers/22/96/9780679742296.jpg'), - ('038080722X', 'April Fool Dead (Death On Demand Mysteries, No. 13)', 'https://images.isbndb.com/covers/72/22/9780380807222.jpg'), - ('0802733670', 'To Perish In Penzance (Dorothy Martin Mysteries, No. 7)', 'https://images.isbndb.com/covers/36/72/9780802733672.jpg'), - ('0307103803', 'Walt Disney''s Bambi', 'https://images.isbndb.com/covers/38/02/9780307103802.jpg'), - ('0345343247', 'The Murder At Murder At The Mimosa Inn (Claire Malloy Mysteries, No. 2)', 'https://images.isbndb.com/covers/32/46/9780345343246.jpg'), - ('0345327772', 'Killing Orders', 'https://images.isbndb.com/covers/77/72/9780345327772.jpg'), - ('1557734534', 'Adjusted To Death', 'https://images.isbndb.com/covers/45/32/9781557734532.jpg'), - ('0515060712', 'Killer Dolphin', 'https://images.isbndb.com/covers/07/13/9780515060713.jpg'), - ('0345300785', 'Enchanter''s End Game (The Belgariad, Book 5)', 'https://images.isbndb.com/covers/07/82/9780345300782.jpg'), - ('0345300793', 'QUEEN OF SORCERY: Book II Of The Belgariad', 'https://images.isbndb.com/covers/07/99/9780345300799.jpg'), - ('0446602744', 'The Rules: Time-Tested Secrets For Capturing The Heart Of Mr. Right', 'https://images.isbndb.com/covers/27/47/9780446602747.jpg'), - ('1853262005', 'Crime And Punishment (Wordsworth Classics)', 'https://images.isbndb.com/covers/20/05/9781853262005.jpg'), - ('0312960743', 'Revenge Of The Barbeque Queens: At The Barbeque World Series, More Than Ribs Will Be Swimming In Sauce (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/07/42/9780312960742.jpg'), - ('0786881623', 'Moving Violations: War Zones, Wheelchairs, And Declarations Of Independence', 'https://images.isbndb.com/covers/16/28/9780786881628.jpg'), - ('0881763004', 'Selecting And Caring For Your Cat', 'https://images.isbndb.com/covers/30/03/9780881763003.jpg'), - ('0671730509', 'Mystery Of The Jade Tiger (Nancy Drew 104): Mystery Of The Jade Tiger', 'https://images.isbndb.com/covers/05/05/9780671730505.jpg'), - ('0671730541', 'Secret Of The Tibetan Treasure (Nancy Drew 108): Secret Of The Tibetan Treasure (Nancy Drew On Campus)', 'https://images.isbndb.com/covers/05/43/9780671730543.jpg'), - ('0449205320', 'To Dream Of Love', 'https://images.isbndb.com/covers/53/27/9780449205327.jpg'), - ('1575663740', 'A Pedigree To Die For', 'https://images.isbndb.com/covers/37/46/9781575663746.jpg'), - ('0595217354', 'The End Of Work As We Know It', 'https://images.isbndb.com/covers/73/59/9780595217359.jpg'), - ('0396036619', 'Good Morning, Miss Dove', 'https://images.isbndb.com/covers/66/16/9780396036616.jpg'), - ('0345377443', 'Women Who Run With The Wolves: Myths And Stories Of The Wild Woman Archetype', 'https://images.isbndb.com/covers/74/49/9780345377449.jpg'), - ('0449209377', 'Aunt Erma''s Cope Book', 'https://images.isbndb.com/covers/93/70/9780449209370.jpg'), - ('0816704589', 'Scarlet Pimpernel (Complete And Unabridged Classics)', 'https://images.isbndb.com/covers/45/83/9780816704583.jpg'), - ('0448095025', 'The Hidden Staircase (Nancy Drew Mystery Stories #2)', 'https://images.isbndb.com/covers/50/28/9780448095028.jpg'), - ('0448095033', 'The Bungalow Mystery (Nancy Drew Mystery Stories, Bk 3)', 'https://images.isbndb.com/covers/50/35/9780448095035.jpg'), - ('0448095068', 'The Secret Of Red Gate Farm (Nancy Drew, Book 6)', 'https://images.isbndb.com/covers/50/66/9780448095066.jpg'), - ('044809519X', 'The Quest Of The Missing Map (Nancy Drew, Book 19)', 'https://images.isbndb.com/covers/51/96/9780448095196.jpg'), - ('0448095238', 'The Mystery Of The Tolling Bell (Nancy Drew Mystery Stories, No 23)', 'https://images.isbndb.com/covers/52/33/9780448095233.jpg'), - ('0448095246', 'The Clue In The Old Album (Nancy Drew Mystery Stories, No 24)', 'https://images.isbndb.com/covers/52/40/9780448095240.jpg'), - ('044809522X', 'The Clue In The Crumbling Wall (Nancy Drew No. 22)', 'https://images.isbndb.com/covers/52/26/9780448095226.jpg'), - ('1576736792', 'Lord Foulgrin''s Letters', 'https://images.isbndb.com/covers/67/91/9781576736791.jpg'), - ('0553210416', 'The Aeneid Of Virgil (Bantam Classics)', 'https://images.isbndb.com/covers/04/15/9780553210415.jpg'), - ('0671223666', 'How Did I Get To Be 40 & Other Atrocities', 'https://images.isbndb.com/covers/36/63/9780671223663.jpg'), - ('0590494481', 'Piano Lessons Can Be Murder (Goosebumps #13)', 'https://images.isbndb.com/covers/44/89/9780590494489.jpg'), - ('156987025X', 'My First Book Of Opposites', 'https://images.isbndb.com/covers/02/59/9781569870259.jpg'), - ('0380793660', 'Murder Gets A Life (A Souther Sisters Mystery)', 'https://images.isbndb.com/covers/36/62/9780380793662.jpg'), - ('0553291955', 'The Thin Woman', 'https://images.isbndb.com/covers/19/57/9780553291957.jpg'), - ('0806519339', 'Beyond Mulder And Scully: The Mysterious Characters Of "the X-Files"', 'https://images.isbndb.com/covers/93/33/9780806519333.jpg'), - ('0761504370', 'Perimenopause - Preparing For The Change: A Guide To The Early Stages Of Menopause And Beyond', 'https://images.isbndb.com/covers/43/75/9780761504375.jpg'), - ('0393048136', 'The New New Thing : A Silicon Valley Story', 'https://images.isbndb.com/covers/81/31/9780393048131.jpg'), - ('0440459516', 'The Not-Just-Anybody Family (Yearling Book)', 'https://images.isbndb.com/covers/95/14/9780440459514.jpg'), - ('0590687247', 'Ramona Quimby, Age 8', 'https://images.isbndb.com/covers/72/49/9780590687249.jpg'), - ('0449149560', 'Mrs. Pollifax Pursued (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/95/60/9780449149560.jpg'), - ('0553156756', 'The Great Mom Swap', 'https://images.isbndb.com/covers/67/51/9780553156751.jpg'), - ('0812536339', 'Mysteries Of The Mind And Senses (Strange Unsolved Mysteries)', 'https://images.isbndb.com/covers/63/31/9780812536331.jpg'), - ('0448095211', 'The Secret In The Old Attic (Nancy Drew, Book 21)', 'https://images.isbndb.com/covers/52/19/9780448095219.jpg'), - ('0448095203', 'The Clue In The Jewel Box (Nancy Drew, Book 20)', 'https://images.isbndb.com/covers/52/02/9780448095202.jpg'), - ('0380801493', 'Murder Shoots The Bull: A Southern Sisters Mystery (Southern Sisters Mysteries)', 'https://images.isbndb.com/covers/14/97/9780380801497.jpg'), - ('0671722182', 'A Clear Case Of Murder', 'https://images.isbndb.com/covers/21/80/9780671722180.jpg'), - ('0590866338', 'The Case Of The Mystery Ghost (Clue Jr. #7)', 'https://images.isbndb.com/covers/63/30/9780590866330.jpg'), - ('0671034375', 'Southern Fried Makeover: Clueless', 'https://images.isbndb.com/covers/43/75/9780671034375.jpg'), - ('0716765144', 'Cave (One Small Square)', 'https://images.isbndb.com/covers/51/41/9780716765141.jpg'), - ('0670445800', 'Madeline', 'https://images.isbndb.com/covers/58/06/9780670445806.jpg'), - ('0439060435', 'The Case Of The Disappearing Princess (The New Adventures Of Mary-Kate & Ashley)', 'https://images.isbndb.com/covers/04/31/9780439060431.jpg'), - ('0307100820', 'The Fire Engine Book (Look-Look)', 'https://images.isbndb.com/covers/08/25/9780307100825.jpg'), - ('0861128273', 'Show Baby: 1 2 3 (Show Baby)', 'https://images.isbndb.com/covers/82/73/9780861128273.jpg'), - ('0789405784', 'Pop Out Drive: Diggers Dumpers', 'https://images.isbndb.com/covers/57/84/9780789405784.jpg'), - ('0679819770', 'A Cow On The Line And Other Thomas The Tank Engine Stories (Thomas & Friends) (Pictureback(R))', 'https://images.isbndb.com/covers/97/76/9780679819776.jpg'), - ('0345370295', 'Garfield Takes Up Space (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/02/97/9780345370297.jpg'), - ('0590444301', 'Strange Creatures That Really Lived', 'https://images.isbndb.com/covers/43/09/9780590444309.jpg'), - ('0395743427', 'Reginas Glasses, Reader Es Level 2 Book 17: Houghton Mifflin Early Success (Invitations To Literacy)', 'https://images.isbndb.com/covers/34/23/9780395743423.jpg'), - ('0590275232', 'Chocolate Chippo Hippo', 'https://images.isbndb.com/covers/52/31/9780590275231.jpg'), - ('0307101991', 'The Golden Ball (Super Fashion Books)', 'https://images.isbndb.com/covers/19/90/9780307101990.jpg'), - ('0590333194', 'Simon''s Book', 'https://images.isbndb.com/covers/31/91/9780590333191.jpg'), - ('0026885522', 'Alf: Mission To Mars', 'https://images.isbndb.com/covers/55/22/9780026885522.jpg'), - ('0891914927', 'Sometimes I Need To Be Hugged: Psalm 84 For Children (David And I Talk To God)', 'https://images.isbndb.com/covers/49/21/9780891914921.jpg'), - ('0140178414', 'Aunt Dimity And The Duke (Aunt Dimity Mystery)', 'https://images.isbndb.com/covers/84/18/9780140178418.jpg'), - ('0671649175', 'Double Crossing (Nancy Drew & Hardy Boys Super Mystery #1)', 'https://images.isbndb.com/covers/91/73/9780671649173.jpg'), - ('0553264842', 'Secret Of The Ninja (Choose Your Own Adventure #66)', 'https://images.isbndb.com/covers/48/45/9780553264845.jpg'), - ('0445402296', 'The Murders Of Richard III', 'https://images.isbndb.com/covers/22/94/9780445402294.jpg'), - ('1575663929', 'Tippy Toe Murder (Lucy Stone Mysteries, No. 2)', 'https://images.isbndb.com/covers/39/20/9781575663920.jpg'), - ('0393308804', 'Wide Sargasso Sea: A Novel', 'https://images.isbndb.com/covers/88/08/9780393308808.jpg'), - ('0449239799', 'My Enemy The Queen', 'https://images.isbndb.com/covers/97/97/9780449239797.jpg'), - ('0671006614', 'Tears Of Rage - From Grieving Father To Crusader For Justice: The Untold Story Of The Adam Walsh Case', 'https://images.isbndb.com/covers/66/17/9780671006617.jpg'), - ('0553074938', 'How To Murder Your Mother-In-Law', 'https://images.isbndb.com/covers/49/32/9780553074932.jpg'), - ('0312862083', 'The Abductors: Conspiracy', 'https://images.isbndb.com/covers/20/84/9780312862084.jpg'), - ('0394416457', 'The Honourable Schoolboy', 'https://images.isbndb.com/covers/64/58/9780394416458.jpg'), - ('0671727680', 'Romeo And Juliet', 'https://images.isbndb.com/covers/76/80/9780671727680.jpg'), - ('0451149939', 'Miss Fiona''s Fancy (Signet Regency Romance)', 'https://images.isbndb.com/covers/99/30/9780451149930.jpg'), - ('0380809389', 'Murder Carries A Torch (A Southern Sisters Mystery)', 'https://images.isbndb.com/covers/93/87/9780380809387.jpg'), - ('0140311645', 'Pippi In The South Seas Pb (Puffin Books)', 'https://images.isbndb.com/covers/16/48/9780140311648.jpg'), - ('0061098132', 'The Bachelor''s Cat: A Love Story', 'https://images.isbndb.com/covers/81/30/9780061098130.jpg'), - ('0440473519', 'RAMONA THE BRAVE', 'https://images.isbndb.com/covers/35/10/9780440473510.jpg'), - ('0590447742', 'The Wind In The Willows', 'https://images.isbndb.com/covers/77/44/9780590447744.jpg'), - ('0446361046', 'The 36-Hour Day: A Family Guide To Caring For Persons With Alzheimer Disease, Related Dementing Illnesses, And Memory Loss Later In Life', 'https://images.isbndb.com/covers/10/40/9780446361040.jpg'), - ('0440495555', 'Wind In The Willows, The', 'https://images.isbndb.com/covers/55/50/9780440495550.jpg'), - ('0373264011', 'Murder, Mayhem And Mistletoe: Four Crimes At Christmas', 'https://images.isbndb.com/covers/40/18/9780373264018.jpg'), - ('0671047345', 'Separation Of Power (Mitch Rapp Novels)', 'https://images.isbndb.com/covers/73/44/9780671047344.jpg'), - ('0380709546', 'Ramona The Pest (Ramona Quimby)', 'https://images.isbndb.com/covers/95/40/9780380709540.jpg'), - ('0440454115', 'Mitch & Amy', 'https://images.isbndb.com/covers/41/13/9780440454113.jpg'), - ('0930328787', 'KB IRELAND''99:INNS&ITIN (Karen Brown''s Country Inns Series)', 'https://images.isbndb.com/covers/87/88/9780930328788.jpg'), - ('1556380801', 'The Sacred Journey: You And Your Higher Self (English)', 'https://images.isbndb.com/covers/08/08/9781556380808.jpg'), - ('0380006456', 'Fletch', 'https://images.isbndb.com/covers/64/58/9780380006458.jpg'), - ('0441002692', 'The Godmother', 'https://images.isbndb.com/covers/26/96/9780441002696.jpg'), - ('0441873375', 'Warlock Spite Himself', 'https://images.isbndb.com/covers/33/71/9780441873371.jpg'), - ('0451525302', 'Spoon River Anthology (Signet Classics)', 'https://images.isbndb.com/covers/53/07/9780451525307.jpg'), - ('0553240838', 'A Most Contagious Game', 'https://images.isbndb.com/covers/08/32/9780553240832.jpg'), - ('0345274563', 'Her Majesty''s Wizard', 'https://images.isbndb.com/covers/45/64/9780345274564.jpg'), - ('0425179184', 'Crime Brulee (Culinary Food Writer)', 'https://images.isbndb.com/covers/91/85/9780425179185.jpg'), - ('0425185249', 'Death A L''Orange (A Culinary Mystery With Recipes)', 'https://images.isbndb.com/covers/52/47/9780425185247.jpg'), - ('042518272X', 'Truffled Feathers (Culinary Food Writer)', 'https://images.isbndb.com/covers/27/27/9780425182727.jpg'), - ('0743410068', 'War Letters: Extraordinary Correspondence From American Wars', 'https://images.isbndb.com/covers/00/69/9780743410069.jpg'), - ('0451198476', 'The Burglar In The Rye: The New Bernie Rhodenbarr Mystery (Bernie Rhodenbarr Mysteries)', 'https://images.isbndb.com/covers/84/71/9780451198471.jpg'), - ('0590448331', 'Karen''s Little Witch (Baby-Sitters Little Sister, No. 22)', 'https://images.isbndb.com/covers/83/38/9780590448338.jpg'), - ('0440442079', 'Jelly Belly', 'https://images.isbndb.com/covers/20/73/9780440442073.jpg'), - ('0553152017', 'Indian Trail (Skylark Choose Your Own Adventure)', 'https://images.isbndb.com/covers/20/12/9780553152012.jpg'), - ('0590482947', 'In The Line Of Fire: Eight Women War Spies', 'https://images.isbndb.com/covers/29/43/9780590482943.jpg'), - ('0590443607', 'The Slave Ship', 'https://images.isbndb.com/covers/36/09/9780590443609.jpg'), - ('0445085452', 'Tim - The Thorn Birds', 'https://images.isbndb.com/covers/54/59/9780445085459.jpg'), - ('0590407252', 'Nothing''s Fair In Fifth Grade', 'https://images.isbndb.com/covers/72/50/9780590407250.jpg'), - ('055348513X', 'Encyclopedia Brown And The Case Of Pablos Nose', 'https://images.isbndb.com/covers/51/34/9780553485134.jpg'), - ('0553157248', 'Encyclopedia Brown Boy Detective (Encyclopedia Brown #1)', 'https://images.isbndb.com/covers/72/46/9780553157246.jpg'), - ('0805000739', 'Death Of A Party Animal (A Doonesbury Book)', 'https://images.isbndb.com/covers/07/33/9780805000733.jpg'), - ('0671730738', 'RUNNING SCARED: NANCY DREW FILES #69', 'https://images.isbndb.com/covers/07/34/9780671730734.jpg'), - ('0312203039', 'High Five (Stephanie Plum, No. 5) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/30/30/9780312203030.jpg'), - ('0440422256', 'The Egypt Game', 'https://images.isbndb.com/covers/22/59/9780440422259.jpg'), - ('0060937793', 'The Red Dancer: The Life And Times Of Mata Hari', 'https://images.isbndb.com/covers/77/99/9780060937799.jpg'), - ('0446608270', 'The Last Victim: A True-Life Journey Into The Mind Of The Serial Killer', 'https://images.isbndb.com/covers/82/75/9780446608275.jpg'), - ('0449223558', 'Murdering Mr. Monti', 'https://images.isbndb.com/covers/35/50/9780449223550.jpg'), - ('0933488327', 'Treason In America: From Aaron Burr To Averell Harriman', 'https://images.isbndb.com/covers/83/28/9780933488328.jpg'), - ('0897330854', 'The Provincial Lady In London', 'https://images.isbndb.com/covers/08/55/9780897330855.jpg'), - ('0897330536', 'Diary Of A Provincial Lady (Provincial Lady Series)', 'https://images.isbndb.com/covers/05/34/9780897330534.jpg'), - ('0380794063', 'Malice Domestic 7', 'https://images.isbndb.com/covers/40/65/9780380794065.jpg'), - ('0061007358', 'Not A Penny More, Not A Penny Less', 'https://images.isbndb.com/covers/73/54/9780061007354.jpg'), - ('0812531167', 'Prostho Plus', 'https://images.isbndb.com/covers/11/69/9780812531169.jpg'), - ('0425140989', 'Thyme Of Death (China Bayles 1)', 'https://images.isbndb.com/covers/09/87/9780425140987.jpg'), - ('042515405X', 'Rosemary Remembered (China Bayles Mystery)', 'https://images.isbndb.com/covers/40/52/9780425154052.jpg'), - ('0425128482', 'Miss Seeton Paints The Town (Heron Carvic''s Miss Seeton)', 'https://images.isbndb.com/covers/84/80/9780425128480.jpg'), - ('0060524936', 'A Nose For Murder', 'https://images.isbndb.com/covers/49/37/9780060524937.jpg'), - ('0812576071', 'Irish Stew!: A Nuala Anne McGrail Novel (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/60/78/9780812576078.jpg'), - ('0062502972', 'Trevor''s Place: The Story Of The Boy Who Brings Hope To The Homeless', 'https://images.isbndb.com/covers/29/71/9780062502971.jpg'), - ('0440159415', 'My Wild World', 'https://images.isbndb.com/covers/94/14/9780440159414.jpg'), - ('0671450492', 'Green Grow Dollars', 'https://images.isbndb.com/covers/04/96/9780671450496.jpg'), - ('0812541529', 'A Wizard In A Feud', 'https://images.isbndb.com/covers/15/26/9780812541526.jpg'), - ('042518885X', 'The Wicked Flea (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/88/59/9780425188859.jpg'), - ('0756400988', 'Wondrous Beginnings', 'https://images.isbndb.com/covers/09/89/9780756400989.jpg'), - ('0440840953', 'Tuck Everlasting', 'https://images.isbndb.com/covers/09/54/9780440840954.jpg'), - ('0425180042', 'Mrs. Jeffries Pinches The Post', 'https://images.isbndb.com/covers/00/44/9780425180044.jpg'), - ('0345374568', 'The Old Contemptibles', 'https://images.isbndb.com/covers/45/61/9780345374561.jpg'), - ('0140367683', 'At The Back Of The North Wind: Complete And Unabridged (Puffin Classics)', 'https://images.isbndb.com/covers/76/83/9780140367683.jpg'), - ('0440430909', 'A Girl Of The Limberlost (A Dell Yearling Classic)', 'https://images.isbndb.com/covers/09/02/9780440430902.jpg'), - ('038081563X', 'Silver Scream: A Bed-and-Breakfast Mystery (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/56/30/9780380815630.jpg'), - ('0060953675', 'The Sunday Tertulia: A Novel', 'https://images.isbndb.com/covers/36/76/9780060953676.jpg'), - ('0553153277', 'Anne Of Green Gables', 'https://images.isbndb.com/covers/32/79/9780553153279.jpg'), - ('0140088121', 'Saratoga Snapper: A Charlie Bradshaw Mystery', 'https://images.isbndb.com/covers/81/20/9780140088120.jpg'), - ('0802115160', 'Kitchen', 'https://images.isbndb.com/covers/51/64/9780802115164.jpg'), - ('0312201656', 'I Capture The Castle', 'https://images.isbndb.com/covers/16/54/9780312201654.jpg'), - ('0451519167', 'Pride And Prejudice', 'https://images.isbndb.com/covers/91/60/9780451519160.jpg'), - ('067173072X', 'CROSSCURRENTS (NANCY DREW FILES 68)', 'https://images.isbndb.com/covers/07/27/9780671730727.jpg'), - ('0603550622', 'Mysteries: "Mystery Of The Burnt Cottage", "Mystery Of The Disappearing Cat", "Mystery Of The Secret Room" V. 1', 'https://images.isbndb.com/covers/06/21/9780603550621.jpg'), - ('0312207662', 'Agatha Raisin And The Love From Hell (Agatha Raisin Mysteries, No. 11)', 'https://images.isbndb.com/covers/76/63/9780312207663.jpg'), - ('0679844074', 'Junie B. Jones And Her Big Fat Mouth (Junie B. Jones, No. 3)', 'https://images.isbndb.com/covers/40/75/9780679844075.jpg'), - ('0064410722', 'Four Stupid Cupids (The Hamlet Chronicles)', 'https://images.isbndb.com/covers/07/24/9780064410724.jpg'), - ('0380815605', 'Alice-by-Accident', 'https://images.isbndb.com/covers/56/09/9780380815609.jpg'), - ('0440204739', 'Missing Madonna, The', 'https://images.isbndb.com/covers/47/32/9780440204732.jpg'), - ('0553258915', 'The Two Mrs. Grenvilles', 'https://images.isbndb.com/covers/89/12/9780553258912.jpg'), - ('0553271954', 'The New Voyages (Star Trek)', 'https://images.isbndb.com/covers/19/59/9780553271959.jpg'), - ('055315723X', 'Encyclopedia Brown Takes The Case', 'https://images.isbndb.com/covers/72/39/9780553157239.jpg'), - ('0553157256', 'Encyclopedia Brown Finds The Clues (Book 3)', 'https://images.isbndb.com/covers/72/53/9780553157253.jpg'), - ('0553157353', 'Encyclopedia Brown Keeps The Peace', 'https://images.isbndb.com/covers/73/52/9780553157352.jpg'), - ('055314796X', 'Stalking The Perfect Tan', 'https://images.isbndb.com/covers/79/64/9780553147964.jpg'), - ('0553268120', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/81/26/9780553268126.jpg'), - ('0345448820', 'The Nine Emotional Lives Of Cats: A Journey Into The Feline Heart', 'https://images.isbndb.com/covers/88/28/9780345448828.jpg'), - ('0449237850', 'I Lost Everything In The Post-Natal Depression', 'https://images.isbndb.com/covers/78/54/9780449237854.jpg'), - ('0899197213', 'The Wednesday Surprise', 'https://images.isbndb.com/covers/72/10/9780899197210.jpg'), - ('0440486599', 'Then Again, Maybe I Won''t', 'https://images.isbndb.com/covers/65/96/9780440486596.jpg'), - ('0440495717', 'Winnie The Pooh', 'https://images.isbndb.com/covers/57/10/9780440495710.jpg'), - ('0380705672', 'A Dark Traveling', 'https://images.isbndb.com/covers/56/72/9780380705672.jpg'), - ('0446400408', 'Icy Clutches', 'https://images.isbndb.com/covers/04/04/9780446400404.jpg'), - ('0671455281', 'Murder Make The Wheels Go ''Round', 'https://images.isbndb.com/covers/52/86/9780671455286.jpg'), - ('0553157345', 'Encyclopedia Brown Saves The Day', 'https://images.isbndb.com/covers/73/45/9780553157345.jpg'), - ('1860421016', 'More Cats In The Belfry', 'https://images.isbndb.com/covers/10/13/9781860421013.jpg'), - ('0590431390', 'Twisted (Point)', 'https://images.isbndb.com/covers/13/92/9780590431392.jpg'), - ('0671738666', 'The Best Friend (Fear Street, No. 17)', 'https://images.isbndb.com/covers/86/62/9780671738662.jpg'), - ('0451110641', 'The Second Lady (Signet)', 'https://images.isbndb.com/covers/06/40/9780451110640.jpg'), - ('0374253536', 'The Saints'' Guide To Happiness', 'https://images.isbndb.com/covers/35/30/9780374253530.jpg'), - ('0006386369', 'Flowers On My Grave: How An Ojibwa Boy''s Death Helped Break The Silence On Child Abuse', 'https://images.isbndb.com/covers/63/60/9780006386360.jpg'), - ('0671456865', 'A Quiver Full Of Arrows', 'https://images.isbndb.com/covers/68/63/9780671456863.jpg'), - ('0836228995', 'Casual Day Has Gone Too Far', 'https://images.isbndb.com/covers/89/91/9780836228991.jpg'), - ('0345275306', 'Special People', 'https://images.isbndb.com/covers/53/01/9780345275301.jpg'), - ('0393025616', 'Widower''s House: A Study In Bereavement, Or How Margot And Mella Forced Me To Flee My Home', 'https://images.isbndb.com/covers/56/13/9780393025613.jpg'), - ('0849942195', 'The Island Of Heavenly Daze (Heavenly Daze Series #1)', 'https://images.isbndb.com/covers/21/98/9780849942198.jpg'), - ('0583300650', 'Fifth Formers Of St. Clare''s', 'https://images.isbndb.com/covers/06/50/9780583300650.jpg'), - ('0583300588', 'Claudine At St. Clare''s - Fifth Book In The St. Clare''s School Series', 'https://images.isbndb.com/covers/05/82/9780583300582.jpg'), - ('0583300359', 'Second Form ST Clares', 'https://images.isbndb.com/covers/03/53/9780583300353.jpg'), - ('0583300340', 'Summer Term At ST Clares', 'https://images.isbndb.com/covers/03/46/9780583300346.jpg'), - ('0583300332', 'The O"Sullivan Twins', 'https://images.isbndb.com/covers/03/39/9780583300339.jpg'), - ('0583300324', 'Twins At ST Clares', 'https://images.isbndb.com/covers/03/22/9780583300322.jpg'), - ('1573225312', 'Native Speaker', 'https://images.isbndb.com/covers/53/11/9781573225311.jpg'), - ('0671620193', 'The Murder Of Roger Ackroyd', 'https://images.isbndb.com/covers/01/96/9780671620196.jpg'), - ('0449219461', 'H Is For Homicide', 'https://images.isbndb.com/covers/94/61/9780449219461.jpg'), - ('0929638298', 'Working Woman''s Art Of War: Winning Without Confrontation', 'https://images.isbndb.com/covers/82/94/9780929638294.jpg'), - ('0440405157', 'Two Weirdos And A Ghost', 'https://images.isbndb.com/covers/51/53/9780440405153.jpg'), - ('0440441099', 'I, Trissy', 'https://images.isbndb.com/covers/10/90/9780440441090.jpg'), - ('0440154138', 'Don''t Say Yes When You Want To Say No: Making Life Right When It Feels All Wrong', 'https://images.isbndb.com/covers/41/36/9780440154136.jpg'), - ('0441006361', 'The Spell-Bound Scholar (Heirs To The Warlock)', 'https://images.isbndb.com/covers/63/66/9780441006366.jpg'), - ('0440420326', 'All-of-a-Kind Family Downtown', 'https://images.isbndb.com/covers/03/23/9780440420323.jpg'), - ('0451523555', 'The Adventures Of Tom Sawyer (Signet Classics)', 'https://images.isbndb.com/covers/35/56/9780451523556.jpg'), - ('0449217949', 'Miss Melville''s Revenge', 'https://images.isbndb.com/covers/79/48/9780449217948.jpg'), - ('0449007138', 'Till Death', 'https://images.isbndb.com/covers/71/36/9780449007136.jpg'), - ('0440237041', 'Died To Match (Carnegie Kincaid, Book 2)', 'https://images.isbndb.com/covers/70/44/9780440237044.jpg'), - ('0449907155', 'Lady''s Maid', 'https://images.isbndb.com/covers/71/53/9780449907153.jpg'), - ('0679741666', 'A Lesson Before Dying (Vintage Contemporaries)', 'https://images.isbndb.com/covers/16/64/9780679741664.jpg'), - ('0575400048', 'Hons And Rebels: The Classic Memoir Of One Of Last Century''s Most Extraordinary Families', 'https://images.isbndb.com/covers/00/47/9780575400047.jpg'), - ('0836236688', 'Seven Years Of Highly Defective People: Scott Adams'' Guided Tour Of The Evolution Of Dilbert', 'https://images.isbndb.com/covers/66/82/9780836236682.jpg'), - ('0836210263', 'Still Pumped From Using The Mouse', 'https://images.isbndb.com/covers/02/62/9780836210262.jpg'), - ('0809233479', 'Teachers! Teachers! Teachers!', 'https://images.isbndb.com/covers/34/72/9780809233472.jpg'), - ('1580170951', 'Herbal Remedy Gardens: 38 Plans For Your Health & Well-Being', 'https://images.isbndb.com/covers/09/56/9781580170956.jpg'), - ('0345431057', 'Slaves In The Family', 'https://images.isbndb.com/covers/10/59/9780345431059.jpg'), - ('0345458303', 'Beginner''s Luck: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/83/08/9780345458308.jpg'), - ('0929523288', 'How To Fight Back And Win: The Joy Of Self-Defense', 'https://images.isbndb.com/covers/32/86/9780929523286.jpg'), - ('0879850213', 'How To Make Good Pictures', 'https://images.isbndb.com/covers/02/10/9780879850210.jpg'), - ('0394725808', 'Parallel Lives: Five Victorian Marriages', 'https://images.isbndb.com/covers/58/02/9780394725802.jpg'), - ('0848714385', 'Southern Living Our Best One-Dish Meals', 'https://images.isbndb.com/covers/43/83/9780848714383.jpg'), - ('0670031054', 'Miss Julia Throws A Wedding', 'https://images.isbndb.com/covers/10/54/9780670031054.jpg'), - ('0670032077', 'Miss Julia Hits The Road (Southern Comedy Of Manners)', 'https://images.isbndb.com/covers/20/75/9780670032075.jpg'), - ('1575667347', 'Wedding Day Murder (Lucy Stone Mysteries, No. 8)', 'https://images.isbndb.com/covers/73/48/9781575667348.jpg'), - ('1575666855', 'Turkey Day Murder (Lucy Stone Mysteries, No. 7)', 'https://images.isbndb.com/covers/68/53/9781575666853.jpg'), - ('0449200817', 'Touch Not The Cat', 'https://images.isbndb.com/covers/08/10/9780449200810.jpg'), - ('0671443356', 'MURDER COMES FIRST (A Mr. & Mrs. North Mystery)', 'https://images.isbndb.com/covers/33/51/9780671443351.jpg'), - ('0590494457', 'The Ghost Next Door (Goosebumps)', 'https://images.isbndb.com/covers/44/58/9780590494458.jpg'), - ('0590294040', 'The Case Of The Missing Mummy (Adventures Of Mary-Kate And Ashley)', 'https://images.isbndb.com/covers/40/41/9780590294041.jpg'), - ('076241085X', 'Nancy Drew''s Guide To Life', 'https://images.isbndb.com/covers/08/59/9780762410859.jpg'), - ('0312911912', 'Man Of The House', 'https://images.isbndb.com/covers/19/11/9780312911911.jpg'), - ('0671438190', 'Going For Gold', 'https://images.isbndb.com/covers/81/97/9780671438197.jpg'), - ('0553247824', 'Paul Harvey''s Rest Of The Story', 'https://images.isbndb.com/covers/78/24/9780553247824.jpg'), - ('0553251961', 'When I Say No, I Feel Guilty', 'https://images.isbndb.com/covers/19/68/9780553251968.jpg'), - ('055325362X', 'Miss Silver Comes To Stay', 'https://images.isbndb.com/covers/36/27/9780553253627.jpg'), - ('0743200322', 'The Boilerplate Rhino: Nature In The Eye Of The Beholder', 'https://images.isbndb.com/covers/03/25/9780743200325.jpg'), - ('0590537733', 'Teach Us, Amelia Bedelia', 'https://images.isbndb.com/covers/77/35/9780590537735.jpg'), - ('0679883614', 'Babe: The Gallant Pig', 'https://images.isbndb.com/covers/36/16/9780679883616.jpg'), - ('0440475333', 'Rebecca Of Sunnybrook Farm (A Dell Yearling Classic)', 'https://images.isbndb.com/covers/53/30/9780440475330.jpg'), - ('0689831404', 'The Wind In The Willows (Aladdin Classics)', 'https://images.isbndb.com/covers/14/09/9780689831409.jpg'), - ('0064431789', 'Where The Wild Things Are', 'https://images.isbndb.com/covers/17/81/9780064431781.jpg'), - ('0486247791', 'Ozma Of Oz (Dover Children''s Classics)', 'https://images.isbndb.com/covers/77/93/9780486247793.jpg'), - ('0590316575', 'Changing Times (Treasured Horses)', 'https://images.isbndb.com/covers/65/76/9780590316576.jpg'), - ('0590484451', 'The Next Karate Kid', 'https://images.isbndb.com/covers/44/59/9780590484459.jpg'), - ('0590447432', 'Four Against The Odds: The Struggle To Save Our Environment (Scholastic Biography)', 'https://images.isbndb.com/covers/74/30/9780590447430.jpg'), - ('0195003640', 'The Republic Of Plato', 'https://images.isbndb.com/covers/36/42/9780195003642.jpg'), - ('0316784974', 'The Adams Chronicles: Four Generations Of Greatness', 'https://images.isbndb.com/covers/49/79/9780316784979.jpg'), - ('0449221776', 'Seven For A Secret', 'https://images.isbndb.com/covers/17/78/9780449221778.jpg'), - ('0449242625', 'Think About It Tomorrow, Snoopy', 'https://images.isbndb.com/covers/26/29/9780449242629.jpg'), - ('0553096036', 'Pay Dirt', 'https://images.isbndb.com/covers/60/33/9780553096033.jpg'), - ('0553288474', 'Deadly Valentine (Death On Demand Mysteries, No. 6)', 'https://images.isbndb.com/covers/84/76/9780553288476.jpg'), - ('0140340246', 'An Episode Of Sparrows', 'https://images.isbndb.com/covers/02/42/9780140340242.jpg'), - ('0812504488', 'Strange Case Of Doctor Jekyll And Mr. Hyde (Tor Classics)', 'https://images.isbndb.com/covers/44/84/9780812504484.jpg'), - ('0840741391', 'God''s Promises For The Graduate', 'https://images.isbndb.com/covers/13/94/9780840741394.jpg'), - ('0842346112', 'Mountains Of Spices', 'https://images.isbndb.com/covers/61/15/9780842346115.jpg'), - ('0380717832', 'Talking From 9 To 5: Women And Men At Work', 'https://images.isbndb.com/covers/78/35/9780380717835.jpg'), - ('0061093653', 'Twelve Red Herrings', 'https://images.isbndb.com/covers/36/54/9780061093654.jpg'), - ('0425104060', 'The Sittaford Mystery', 'https://images.isbndb.com/covers/40/64/9780425104064.jpg'), - ('0679761802', 'The Fran Lebowitz Reader', 'https://images.isbndb.com/covers/18/08/9780679761808.jpg'), - ('0590454412', 'Robin Hood Of Sherwood Forest (R)', 'https://images.isbndb.com/covers/44/14/9780590454414.jpg'), - ('0064401510', 'Mrs. Piggle-Wiggle''s Magic', 'https://images.isbndb.com/covers/15/17/9780064401517.jpg'), - ('0345255585', 'A Man Called Intrepid', 'https://images.isbndb.com/covers/55/87/9780345255587.jpg'), - ('0140280464', 'My Year Of Meats', 'https://images.isbndb.com/covers/04/63/9780140280463.jpg'), - ('0671722751', 'Macbeth (The New Folger Library)', 'https://images.isbndb.com/covers/27/53/9780671722753.jpg'), - ('0449146863', 'Wicked Slice', 'https://images.isbndb.com/covers/68/66/9780449146866.jpg'), - ('0061054003', 'Searoad: Chronicles Of Klatsand', 'https://images.isbndb.com/covers/40/06/9780061054006.jpg'), - ('0802730949', 'Murder Pluperfect', 'https://images.isbndb.com/covers/09/47/9780802730947.jpg'), - ('0446404039', 'The Dark Place', 'https://images.isbndb.com/covers/40/37/9780446404037.jpg'), - ('0380709473', 'Crows Can''t Count', 'https://images.isbndb.com/covers/94/72/9780380709472.jpg'), - ('0449214567', 'Across China', 'https://images.isbndb.com/covers/45/65/9780449214565.jpg'), - ('0345358031', 'Shining Through', 'https://images.isbndb.com/covers/80/35/9780345358035.jpg'), - ('0449213358', 'Hawaii', 'https://images.isbndb.com/covers/33/53/9780449213353.jpg'), - ('0553225650', 'Laurel''s Kitchen: A Handbook For Vegetarian Cookery And Nutrition', 'https://images.isbndb.com/covers/56/55/9780553225655.jpg'), - ('0553111507', 'The People''s Almanac Presents The Book Of Lists', 'https://images.isbndb.com/covers/15/07/9780553111507.jpg'), - ('0879237848', 'A Little Princess', 'https://images.isbndb.com/covers/78/44/9780879237844.jpg'), - ('0553213202', 'The House Of Mirth (Bantam Classics)', 'https://images.isbndb.com/covers/32/01/9780553213201.jpg'), - ('0385474903', 'Dead Men Do Tell Tales: The Strange And Fascinating Cases Of A Forensic Anthropologist', 'https://images.isbndb.com/covers/49/00/9780385474900.jpg'), - ('0770420842', 'And No Birds Sang', 'https://images.isbndb.com/covers/08/40/9780770420840.jpg'), - ('0553282166', 'Press On!: Further Adventures In The Good Life', 'https://images.isbndb.com/covers/21/60/9780553282160.jpg'), - ('0553154400', 'SHER/BONE MYSTERY 3 (Sherluck Bones Mystery)', 'https://images.isbndb.com/covers/44/05/9780553154405.jpg'), - ('0380001411', 'Christy', 'https://images.isbndb.com/covers/14/15/9780380001415.jpg'), - ('0679766766', 'Jane Austen: A Life', 'https://images.isbndb.com/covers/67/66/9780679766766.jpg'), - ('0310218039', 'Eli', 'https://images.isbndb.com/covers/80/36/9780310218036.jpg'), - ('0452283736', 'Legally Blonde', 'https://images.isbndb.com/covers/37/32/9780452283732.jpg'), - ('0385506686', 'Utopia: A Thriller', 'https://images.isbndb.com/covers/66/87/9780385506687.jpg'), - ('0821744526', 'The Murder Game', 'https://images.isbndb.com/covers/45/29/9780821744529.jpg'), - ('0553569368', 'BLEEDING HEARTS (The Gregor Demarkian Holiday Series)', 'https://images.isbndb.com/covers/93/60/9780553569360.jpg'), - ('0688179444', 'Ballerina!', 'https://images.isbndb.com/covers/94/41/9780688179441.jpg'), - ('0380006286', '101 Dalmatians', 'https://images.isbndb.com/covers/62/81/9780380006281.jpg'), - ('0440447682', 'Little Women', 'https://images.isbndb.com/covers/76/89/9780440447689.jpg'), - ('0671727184', 'The Life Of King Henry The Fifth', 'https://images.isbndb.com/covers/71/85/9780671727185.jpg'), - ('0440760755', 'Mouse And The Motorcycle, The', 'https://images.isbndb.com/covers/07/57/9780440760757.jpg'), - ('0451141083', 'Mindbend', 'https://images.isbndb.com/covers/10/88/9780451141088.jpg'), - ('0307215873', 'Trixie Belden And The Mystery Of The Blinking Eye', 'https://images.isbndb.com/covers/58/71/9780307215871.jpg'), - ('0671415085', 'If There Be Thorns (Dollanganger Series, Bk. 3)', 'https://images.isbndb.com/covers/50/82/9780671415082.jpg'), - ('0553282980', 'Dead Poets Society', 'https://images.isbndb.com/covers/29/86/9780553282986.jpg'), - ('0440383145', 'The Storytelling Stone (Laurel Original)', 'https://images.isbndb.com/covers/31/47/9780440383147.jpg'), - ('0060912596', 'A Hog On Ice (Harper Colophon Books)', 'https://images.isbndb.com/covers/25/98/9780060912598.jpg'), - ('0385315546', 'Drinking: A Love Story', 'https://images.isbndb.com/covers/55/48/9780385315548.jpg'), - ('0373833865', 'Gem Of A Girl', 'https://images.isbndb.com/covers/38/63/9780373833863.jpg'), - ('0345356535', 'Sick Of Shadows', 'https://images.isbndb.com/covers/65/36/9780345356536.jpg'), - ('0380731630', 'Skeleton Dance (Gideon Oliver Mysteries)', 'https://images.isbndb.com/covers/16/33/9780380731633.jpg'), - ('0590944738', 'The Berenstain Bear Scouts And The Sinister Smoke Ring (Berenstain Bear Scouts)', 'https://images.isbndb.com/covers/47/31/9780590944731.jpg'), - ('089577481X', 'How Many Animals Down Ladybug Lane (A Little Look Around Book)', 'https://images.isbndb.com/covers/48/11/9780895774811.jpg'), - ('0590426915', 'The Adventures Of Milo And Otis', 'https://images.isbndb.com/covers/69/16/9780590426916.jpg'), - ('0060507772', 'The Last Hero: A Discworld Fable', 'https://images.isbndb.com/covers/77/70/9780060507770.jpg'), - ('0842335935', 'SoulShaping', 'https://images.isbndb.com/covers/59/35/9780842335935.jpg'), - ('0449149986', 'If I''d Killed Him When I Met Him (Elizabeth MacPherson, Bk 8)', 'https://images.isbndb.com/covers/99/80/9780449149980.jpg'), - ('0449223450', 'Recessional', 'https://images.isbndb.com/covers/34/51/9780449223451.jpg'), - ('0449238601', 'Fires Of Spring -3', 'https://images.isbndb.com/covers/86/08/9780449238608.jpg'), - ('0316364517', 'Buzz Beamer''s Out Of This World Series', 'https://images.isbndb.com/covers/45/15/9780316364515.jpg'), - ('0828891591', 'Gigi (French Language Edition)', 'https://images.isbndb.com/covers/15/92/9780828891592.jpg'), - ('0451518519', 'A Midsummer Night''s Dream (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/85/14/9780451518514.jpg'), - ('0515121746', 'Christmas Spirits', 'https://images.isbndb.com/covers/17/42/9780515121742.jpg'), - ('0345326210', 'Cooking School Murders', 'https://images.isbndb.com/covers/62/18/9780345326218.jpg'), - ('0345428307', 'Trust Fund', 'https://images.isbndb.com/covers/83/01/9780345428301.jpg'), - ('0345307593', 'Dr. Zhivago', 'https://images.isbndb.com/covers/75/90/9780345307590.jpg'), - ('0449238040', 'IBERIA -3', 'https://images.isbndb.com/covers/80/42/9780449238042.jpg'), - ('0449238520', 'TALES OF S PACIFIC-3', 'https://images.isbndb.com/covers/85/23/9780449238523.jpg'), - ('0553212982', 'Macbeth (Bantam Classic)', 'https://images.isbndb.com/covers/29/83/9780553212983.jpg'), - ('0312421036', 'Eva Moves The Furniture: A Novel', 'https://images.isbndb.com/covers/10/38/9780312421038.jpg'), - ('0446363278', 'Beaches II: I''ll Be There', 'https://images.isbndb.com/covers/32/73/9780446363273.jpg'), - ('157566108X', 'Underdog: A Melanie Travis Mystery', 'https://images.isbndb.com/covers/10/87/9781575661087.jpg'), - ('1575663562', 'Hair Of The Dog: A Melanie Travis Mystery', 'https://images.isbndb.com/covers/35/62/9781575663562.jpg'), - ('0375712992', 'The Best American Crime Writing: 2002 Edition: The Year''s Best True Crime Reporting', 'https://images.isbndb.com/covers/29/99/9780375712999.jpg'), - ('1575664992', 'Valentine Murder (Lucy Stone Mysteries, No. 6)', 'https://images.isbndb.com/covers/49/96/9781575664996.jpg'), - ('039331393X', 'No Ordinary Genius: The Illustrated Richard Feynman', 'https://images.isbndb.com/covers/39/32/9780393313932.jpg'), - ('0345336003', 'Split Infinity (Apprentice Adept, No. 1)', 'https://images.isbndb.com/covers/60/02/9780345336002.jpg'), - ('0345282280', 'The Emerald City Of Oz', 'https://images.isbndb.com/covers/22/86/9780345282286.jpg'), - ('0312963963', 'Death Of An Angel: A Sister Mary Helen Mystery (Sister Mary Helen Mysteries)', 'https://images.isbndb.com/covers/39/65/9780312963965.jpg'), - ('0380709244', 'The Mouse And The Motorcycle', 'https://images.isbndb.com/covers/92/43/9780380709243.jpg'), - ('0671897861', 'A Dragon In The Family', 'https://images.isbndb.com/covers/78/64/9780671897864.jpg'), - ('0064400468', 'Freaky Friday', 'https://images.isbndb.com/covers/04/66/9780064400466.jpg'), - ('0312978650', 'Skeleton Key: A Gregor Demarkian Novel (Gregor Demarkian Novels)', 'https://images.isbndb.com/covers/86/55/9780312978655.jpg'), - ('0312925581', 'James Herriot''s Dog Stories: Warm And Wonderful Stories About The Animals Herriot Loves Best', 'https://images.isbndb.com/covers/55/81/9780312925581.jpg'), - ('0380603926', 'When Bad Things Happen To Good People', 'https://images.isbndb.com/covers/39/23/9780380603923.jpg'), - ('0425152898', 'Mind Prey', 'https://images.isbndb.com/covers/28/98/9780425152898.jpg'), - ('067172942X', 'Garden Of Shadows (Dollanganger Series)', 'https://images.isbndb.com/covers/94/24/9780671729424.jpg'), - ('0316850950', 'How To Prepare For Your High School Reunion And Other Midlife Musings', 'https://images.isbndb.com/covers/09/57/9780316850957.jpg'), - ('0451521269', 'The Taming Of The Shrew (Signet Classic, Shakespeare)', 'https://images.isbndb.com/covers/12/62/9780451521262.jpg'), - ('0446352470', 'Three Days For Emeralds', 'https://images.isbndb.com/covers/24/75/9780446352475.jpg'), - ('0061030597', 'Moment Of Truth', 'https://images.isbndb.com/covers/05/98/9780061030598.jpg'), - ('039458872X', 'Secrets Of The Flesh: A Life Of Colette', 'https://images.isbndb.com/covers/87/28/9780394588728.jpg'), - ('0761109196', 'Children Learn What They Live', 'https://images.isbndb.com/covers/91/98/9780761109198.jpg'), - ('0449235637', 'The Elusive Mrs. Pollifax', 'https://images.isbndb.com/covers/56/38/9780449235638.jpg'), - ('0671497596', 'Daughter Of Time', 'https://images.isbndb.com/covers/75/90/9780671497590.jpg'), - ('0140432787', 'Discourses (Penguin Classics)', 'https://images.isbndb.com/covers/27/87/9780140432787.jpg'), - ('1575663708', 'Mistletoe Murder (Lucy Stone Mysteries, No. 1)', 'https://images.isbndb.com/covers/37/08/9781575663708.jpg'), - ('0394717740', 'The Thin Man V774', 'https://images.isbndb.com/covers/77/46/9780394717746.jpg'), - ('0345314484', 'Dragonquest', 'https://images.isbndb.com/covers/44/82/9780345314482.jpg'), - ('0553234595', 'Dragonsinger', 'https://images.isbndb.com/covers/45/96/9780553234596.jpg'), - ('0440986311', 'There''s A Bat In Bunk Five', 'https://images.isbndb.com/covers/63/17/9780440986317.jpg'), - ('0345331907', 'Deadline For A Critic', 'https://images.isbndb.com/covers/19/08/9780345331908.jpg'), - ('0553275224', 'Red Dragon', 'https://images.isbndb.com/covers/52/23/9780553275223.jpg'), - ('0380423901', 'A Woman Of Independent Means', 'https://images.isbndb.com/covers/39/03/9780380423903.jpg'), - ('0881843903', 'Highland Fling', 'https://images.isbndb.com/covers/39/03/9780881843903.jpg'), - ('0671534645', 'Apollo 13: Lost Moon', 'https://images.isbndb.com/covers/46/46/9780671534646.jpg'), - ('0060974443', 'Vanishing Point: A Miss Silver Mystery', 'https://images.isbndb.com/covers/44/42/9780060974442.jpg'), - ('0060974435', 'Miss Silver Deals With Death: A Miss Silver Mystery', 'https://images.isbndb.com/covers/44/35/9780060974435.jpg'), - ('0345341678', 'The White Dragon (Dragonriders Of Pern Vol 3)', 'https://images.isbndb.com/covers/16/79/9780345341679.jpg'), - ('0553211285', 'The Adventures Of Tom Sawyer (Bantam Classics)', 'https://images.isbndb.com/covers/12/83/9780553211283.jpg'), - ('0553242954', 'ANNE OF GREEN GABLES (Bantam Starfire Book)', 'https://images.isbndb.com/covers/29/59/9780553242959.jpg'), - ('0688040330', 'Millie''s Book: As Dictated To Barbara Bush', 'https://images.isbndb.com/covers/03/38/9780688040338.jpg'), - ('078688505X', 'Pure Drivel', 'https://images.isbndb.com/covers/50/53/9780786885053.jpg'), - ('0449149587', 'Shore To Die', 'https://images.isbndb.com/covers/95/84/9780449149584.jpg'), - ('044040407X', 'One Of The Third Grade Thonkers', 'https://images.isbndb.com/covers/40/71/9780440404071.jpg'), - ('044042299X', 'Ellen Tebbits', 'https://images.isbndb.com/covers/29/90/9780440422990.jpg'), - ('0440432952', 'Henry And Beezus (Henry Huggins)', 'https://images.isbndb.com/covers/29/51/9780440432951.jpg'), - ('0307215598', 'Trixie Belden The Mystery Of The Antique Doll', 'https://images.isbndb.com/covers/55/98/9780307215598.jpg'), - ('0440201322', 'Spycatcher', 'https://images.isbndb.com/covers/13/28/9780440201328.jpg'), - ('0451186796', 'The Crime Lover''s Casebook', 'https://images.isbndb.com/covers/67/99/9780451186799.jpg'), - ('0440772109', 'RAMONA FOREVER', 'https://images.isbndb.com/covers/21/01/9780440772101.jpg'), - ('0440472415', 'Ramona And Her Father (Ramona Quimby (Paperback))', 'https://images.isbndb.com/covers/24/14/9780440472414.jpg'), - ('044040665X', 'Beezus And Ramona', 'https://images.isbndb.com/covers/66/55/9780440406655.jpg'), - ('044096895X', 'The Pistachio Prescription', 'https://images.isbndb.com/covers/89/55/9780440968955.jpg'), - ('0590433563', 'Family Picture', 'https://images.isbndb.com/covers/35/63/9780590433563.jpg'), - ('0380978954', 'The Truth: A Novel Of Discworld', 'https://images.isbndb.com/covers/89/53/9780380978953.jpg'), - ('0140568123', 'Miss Fannie''s Hat (Picture Puffins)', 'https://images.isbndb.com/covers/81/27/9780140568127.jpg'), - ('0380706490', 'I, Houdini: The Amazing Story Of An Escape-Artist Hamster', 'https://images.isbndb.com/covers/64/95/9780380706495.jpg'), - ('0837885043', 'The Night Before Christmas', 'https://images.isbndb.com/covers/50/49/9780837885049.jpg'), - ('0380759489', 'Question Quest (Xanth, No. 14)', 'https://images.isbndb.com/covers/94/84/9780380759484.jpg'), - ('0380793253', 'White Elephant Dead (Death On Demand Mysteries, No. 11)', 'https://images.isbndb.com/covers/32/59/9780380793259.jpg'), - ('0399139141', 'Night Prey', 'https://images.isbndb.com/covers/91/47/9780399139147.jpg'), - ('0345337484', 'Castle Roogna', 'https://images.isbndb.com/covers/74/81/9780345337481.jpg'), - ('0898657512', 'The People Of Pern', 'https://images.isbndb.com/covers/75/17/9780898657517.jpg'), - ('0393001660', 'Pamela', 'https://images.isbndb.com/covers/16/62/9780393001662.jpg'), - ('0345318862', 'Golem In The Gears (The Magic Of Xanth, Book 9)', 'https://images.isbndb.com/covers/88/62/9780345318862.jpg'), - ('0345311078', 'Dragon On A Pedestal (The Magic Of Xanth, No. 7)', 'https://images.isbndb.com/covers/10/78/9780345311078.jpg'), - ('0345313216', 'The Source Of Magic (The Magic Of Xanth, No. 2)', 'https://images.isbndb.com/covers/32/18/9780345313218.jpg'), - ('0345317718', 'A Spell For Chameleon', 'https://images.isbndb.com/covers/77/11/9780345317711.jpg'), - ('0345327861', 'Crystal Singer', 'https://images.isbndb.com/covers/78/64/9780345327864.jpg'), - ('0553250671', 'Poison In The Pen', 'https://images.isbndb.com/covers/06/71/9780553250671.jpg'), - ('0553252542', 'The Final Deduction', 'https://images.isbndb.com/covers/25/45/9780553252545.jpg'), - ('0812510992', 'The Girl Who Heard Dragons', 'https://images.isbndb.com/covers/09/97/9780812510997.jpg'), - ('0671540882', 'CORONER', 'https://images.isbndb.com/covers/08/83/9780671540883.jpg'), - ('044900161X', 'Ruff Way To Go (Allie Finkle''s Rules For Girls)', 'https://images.isbndb.com/covers/16/15/9780449001615.jpg'), - ('0553294229', 'Untimely Guest', 'https://images.isbndb.com/covers/42/24/9780553294224.jpg'), - ('0425101088', 'Good Girl Syndrome', 'https://images.isbndb.com/covers/10/87/9780425101087.jpg'), - ('034530456X', 'Night Mare (The Magic Of Xanth, No. 6)', 'https://images.isbndb.com/covers/45/68/9780345304568.jpg'), - ('0345335090', 'Ogre, Ogre', 'https://images.isbndb.com/covers/50/98/9780345335098.jpg'), - ('0802725228', 'God At Eventide', 'https://images.isbndb.com/covers/52/26/9780802725226.jpg'), - ('0671473204', 'Wired: The Short Life And Fast Times Of John Belushi', 'https://images.isbndb.com/covers/32/04/9780671473204.jpg'), - ('089081015X', 'Living Without Losing: A Practical Guide To Successful Living', 'https://images.isbndb.com/covers/01/56/9780890810156.jpg'), - ('0446370126', 'Sidetracked Sisters Happiness File', 'https://images.isbndb.com/covers/01/27/9780446370127.jpg'), - ('055322509X', 'The Book Of Five Rings (Gorin No Sho): The Real Art Of Japanese Management', 'https://images.isbndb.com/covers/50/99/9780553225099.jpg'), - ('089622662X', 'The Soul Of Celtic Spirituality: In The Lives Of Its Saints', 'https://images.isbndb.com/covers/66/23/9780896226623.jpg'), - ('0961551445', 'Blue Eyeshadow Should Still Be Illegal: The World After Retin-A: What Do You Do Now?', 'https://images.isbndb.com/covers/14/45/9780961551445.jpg'), - ('0425114511', 'We Don''t Die: George Anderson''s Conversations With The Other Side', 'https://images.isbndb.com/covers/45/13/9780425114513.jpg'), - ('0446360082', 'A Fool For Murder: A Mystery', 'https://images.isbndb.com/covers/00/81/9780446360081.jpg'), - ('0307122239', 'Freckles (A Golden Illustrated Classic)', 'https://images.isbndb.com/covers/22/30/9780307122230.jpg'), - ('0879058161', 'The Peregrine Reader', 'https://images.isbndb.com/covers/81/66/9780879058166.jpg'), - ('0671038869', 'The Long Program: Skating Toward Life''s Victories', 'https://images.isbndb.com/covers/88/61/9780671038861.jpg'), - ('0609601008', 'Another City, Not My Own: A Novel In The Form Of A Memoir', 'https://images.isbndb.com/covers/10/06/9780609601006.jpg'), - ('0805058664', 'The Last Resort: A Novel', 'https://images.isbndb.com/covers/86/66/9780805058666.jpg'), - ('0399143939', 'Trick Of Light', 'https://images.isbndb.com/covers/39/39/9780399143939.jpg'), - ('0553094653', 'Scandal In Fair Haven', 'https://images.isbndb.com/covers/46/57/9780553094657.jpg'), - ('0517588455', 'Babywatching', 'https://images.isbndb.com/covers/84/51/9780517588451.jpg'), - ('0345354648', 'Five Patients', 'https://images.isbndb.com/covers/46/48/9780345354648.jpg'), - ('0312107935', 'Pemberley: Or Pride And Prejudice Continued', 'https://images.isbndb.com/covers/79/32/9780312107932.jpg'), - ('0553294636', 'The Pill Book', 'https://images.isbndb.com/covers/46/37/9780553294637.jpg'), - ('0449213439', 'Pretty Polly', 'https://images.isbndb.com/covers/34/38/9780449213438.jpg'), - ('042513265X', 'Miss Seeton By Moonlight', 'https://images.isbndb.com/covers/26/54/9780425132654.jpg'), - ('0061020648', 'Guards! Guards!', 'https://images.isbndb.com/covers/06/43/9780061020643.jpg'), - ('088138013X', 'Mr. Death And The Redheaded Woman (A Star & Elephant Book)', 'https://images.isbndb.com/covers/01/32/9780881380132.jpg'), - ('0553228412', 'Dare To Discipline', 'https://images.isbndb.com/covers/84/10/9780553228410.jpg'), - ('0804111146', 'From Beginning To End', 'https://images.isbndb.com/covers/11/40/9780804111140.jpg'), - ('0060675187', 'Rescuing The Bible From Fundamentalism: A Bishop Rethinks The Meaning Of Scripture', 'https://images.isbndb.com/covers/51/89/9780060675189.jpg'), - ('0061056014', 'Cat Under Fire: A Joe Grey Mystery', 'https://images.isbndb.com/covers/60/17/9780061056017.jpg'), - ('0060183136', 'Wouldn''t It Be Nice: My Own Story', 'https://images.isbndb.com/covers/31/34/9780060183134.jpg'), - ('0712674527', 'Simple Path', 'https://images.isbndb.com/covers/45/22/9780712674522.jpg'), - ('0394846664', 'Alfred Hitchcock And The Three Investigators In The Mystery Of The Coughing Dragon', 'https://images.isbndb.com/covers/66/68/9780394846668.jpg'), - ('0380792036', 'Deadly Shaker Spring (Sister Rose Callahan Mystery)', 'https://images.isbndb.com/covers/20/30/9780380792030.jpg'), - ('0609608533', 'Piranha To Scurfy: And Other Stories', 'https://images.isbndb.com/covers/85/31/9780609608531.jpg'), - ('0316678104', 'Fortune''s Rocks: A Novel', 'https://images.isbndb.com/covers/81/00/9780316678100.jpg'), - ('0448060191', 'Little Women (Illustrated Junior Library)', 'https://images.isbndb.com/covers/01/94/9780448060194.jpg'), - ('0449200558', 'The Judas Kiss', 'https://images.isbndb.com/covers/05/51/9780449200551.jpg'), - ('0380636778', 'Eighth Moon: The True Story Of A Young Girl''s Life In Communist China', 'https://images.isbndb.com/covers/67/78/9780380636778.jpg'), - ('0764150987', 'The Book Of Spells: Over 40 Secret Recipes To Get Your Own Way In Love, Work, And Play', 'https://images.isbndb.com/covers/09/82/9780764150982.jpg'), - ('0060514698', 'XXX', 'https://images.isbndb.com/covers/46/93/9780060514693.jpg'), - ('1578591147', 'The Witch Book: The Encyclopedia Of Witchcraft, Wicca, And Neo-paganism', 'https://images.isbndb.com/covers/11/45/9781578591145.jpg'), - ('0812882776', 'The Girl Who Passed For Normal', 'https://images.isbndb.com/covers/27/73/9780812882773.jpg'), - ('0671416367', 'Spellbinder', 'https://images.isbndb.com/covers/63/62/9780671416362.jpg'), - ('1578564271', 'Beneath A Southern Sky (Beneath A Southern Sky Series #1)', 'https://images.isbndb.com/covers/42/79/9781578564279.jpg'), - ('0812516389', 'Influence', 'https://images.isbndb.com/covers/63/88/9780812516388.jpg'), - ('0590466771', 'Driver''s Dead', 'https://images.isbndb.com/covers/67/76/9780590466776.jpg'), - ('034537536X', 'Show Of Evil', 'https://images.isbndb.com/covers/53/60/9780345375360.jpg'), - ('089296426X', 'The Blue Sense: Psychic Detectives And Crime', 'https://images.isbndb.com/covers/42/60/9780892964260.jpg'), - ('0812932064', 'Dead Run: The Untold Story Of Dennis Stockton And America''s Only Mass Escape From Death Row', 'https://images.isbndb.com/covers/20/65/9780812932065.jpg'), - ('0140020845', 'A Zoo In My Luggage', 'https://images.isbndb.com/covers/08/47/9780140020847.jpg'), - ('0919345174', 'What Witches Do', 'https://images.isbndb.com/covers/51/71/9780919345171.jpg'), - ('1567184006', 'Tarot Plain And Simple', 'https://images.isbndb.com/covers/40/06/9781567184006.jpg'), - ('0671741195', 'The Cradle Will Fall', 'https://images.isbndb.com/covers/11/98/9780671741198.jpg'), - ('0345386132', 'Eyes Of A Child', 'https://images.isbndb.com/covers/61/37/9780345386137.jpg'), - ('0201489376', 'Dreams Of Trespass: Tales Of A Harem Girlhood', 'https://images.isbndb.com/covers/93/78/9780201489378.jpg'), - ('1566890861', 'The Old Ballerina: Novel', 'https://images.isbndb.com/covers/08/61/9781566890861.jpg'), - ('0373441533', 'Meant For Trent / Leigh''s For Me) (Harlequin Duets, No. 87)', 'https://images.isbndb.com/covers/15/32/9780373441532.jpg'), - ('0961696702', 'Scandinavian Humor And Other Myths', 'https://images.isbndb.com/covers/67/02/9780961696702.jpg'), - ('1566260272', '52 Wisconsin Weekends', 'https://images.isbndb.com/covers/02/75/9781566260275.jpg'), - ('1576734161', 'Pursuit And Persuasion (Ben Reese Mystery)', 'https://images.isbndb.com/covers/41/62/9781576734162.jpg'), - ('0312871880', 'Irish Stew!', 'https://images.isbndb.com/covers/18/88/9780312871888.jpg'), - ('0595096751', 'Doin'' Jimmy', 'https://images.isbndb.com/covers/67/56/9780595096756.jpg'), - ('0805237739', 'When Bad Things Happen To Good People', 'https://images.isbndb.com/covers/77/33/9780805237733.jpg'), - ('087875539X', 'The Paper Chase', 'https://images.isbndb.com/covers/53/94/9780878755394.jpg'), - ('039332298X', 'Socrates Cafe: A Fresh Taste Of Philosophy', 'https://images.isbndb.com/covers/29/89/9780393322989.jpg'), - ('185715133X', 'Lolita (Everyman''s Library Classics)', 'https://images.isbndb.com/covers/13/36/9781857151336.jpg'), - ('0395083567', 'My Antonia', 'https://images.isbndb.com/covers/35/67/9780395083567.jpg'), - ('0425157180', 'The Choir', 'https://images.isbndb.com/covers/71/83/9780425157183.jpg'), - ('0553578375', 'Jane And The Stillroom Maid: Being The Fifth Jane Austen Mystery (Being A Jane Austen Mystery)', 'https://images.isbndb.com/covers/83/79/9780553578379.jpg'), - ('0684179962', 'A Moveable Feast', 'https://images.isbndb.com/covers/99/64/9780684179964.jpg'), - ('0425171094', 'A Village Affair', 'https://images.isbndb.com/covers/10/97/9780425171097.jpg'), - ('0449214427', 'Cardington Crescent', 'https://images.isbndb.com/covers/44/28/9780449214428.jpg'), - ('0345333756', 'Staggerford: A Novel', 'https://images.isbndb.com/covers/37/59/9780345333759.jpg'), - ('0345350162', 'Grand Opening', 'https://images.isbndb.com/covers/01/69/9780345350169.jpg'), - ('038072362X', 'A Superior Death', 'https://images.isbndb.com/covers/36/21/9780380723621.jpg'), - ('1400031028', 'Paris In Mind', 'https://images.isbndb.com/covers/10/23/9781400031023.jpg'), - ('0345333721', 'A Green Journey', 'https://images.isbndb.com/covers/37/28/9780345333728.jpg'), - ('0670910279', 'The Magic Of Ordinary Days', 'https://images.isbndb.com/covers/02/74/9780670910274.jpg'), - ('0310978912', 'Promises For You From The New International Version', 'https://images.isbndb.com/covers/89/16/9780310978916.jpg'), - ('067167739X', 'The Empty Nest Symphony', 'https://images.isbndb.com/covers/73/98/9780671677398.jpg'), - ('0931674042', 'Classic Minnesota Fishing Stories: A Rare Collection Of First-Hand Accounts, Anecdotes, And Reports', 'https://images.isbndb.com/covers/40/44/9780931674044.jpg'), - ('1887166491', 'Red Hot Mamas Do Menopause With Style', 'https://images.isbndb.com/covers/64/92/9781887166492.jpg'), - ('0688065317', 'Father Melancholy''s Daughter', 'https://images.isbndb.com/covers/53/17/9780688065317.jpg'), - ('0345433262', 'Slaves Of Obsession (William Monk Novels)', 'https://images.isbndb.com/covers/32/68/9780345433268.jpg'), - ('0866835024', 'The Promise Of A New Day (Hazelden Meditations)', 'https://images.isbndb.com/covers/50/22/9780866835022.jpg'), - ('0807119563', 'Last Of The Southern Girls (Voices Of The South)', 'https://images.isbndb.com/covers/95/63/9780807119563.jpg'), - ('0064640353', 'Of Irish Ways', 'https://images.isbndb.com/covers/03/50/9780064640350.jpg'), - ('0446603651', 'Where The Heart Is', 'https://images.isbndb.com/covers/36/52/9780446603652.jpg'), - ('0156004070', 'Tennis And The Meaning Of Life: A Literary Anthology Of The Game', 'https://images.isbndb.com/covers/40/77/9780156004077.jpg'), - ('0486275639', 'Civil Disobedience And Other Essays (Dover Thrift Editions)', 'https://images.isbndb.com/covers/56/35/9780486275635.jpg'), - ('0688032079', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/20/74/9780688032074.jpg'), - ('0446674931', 'Four Letters Of Love', 'https://images.isbndb.com/covers/49/35/9780446674935.jpg'), - ('081120099X', 'New Seeds Of Contemplation', 'https://images.isbndb.com/covers/09/98/9780811200998.jpg'), - ('1577485033', 'A Gentle Spirit: Devotional Selections For Today''s Christian Woman (Inspirational Library)', 'https://images.isbndb.com/covers/50/32/9781577485032.jpg'), - ('0451176820', 'Saint Mudd: A Novel Of Gangsters And Saints', 'https://images.isbndb.com/covers/68/20/9780451176820.jpg'), - ('0140092846', 'How To Talk Minnesotan: A Visitor''s Guide', 'https://images.isbndb.com/covers/28/44/9780140092844.jpg'), - ('088029700X', 'True Irish Ghost Stories', 'https://images.isbndb.com/covers/70/04/9780880297004.jpg'), - ('0865476004', 'Paris Trance: A Romance', 'https://images.isbndb.com/covers/60/04/9780865476004.jpg'), - ('1573241482', 'The Community Of Kindness', 'https://images.isbndb.com/covers/14/89/9781573241489.jpg'), - ('0866835040', 'Today''s Gift', 'https://images.isbndb.com/covers/50/46/9780866835046.jpg'), - ('0451200861', 'I Ain''t Got Time To Bleed: Reworking The Body Politic From The Bottom Up', 'https://images.isbndb.com/covers/08/60/9780451200860.jpg'), - ('0446387878', 'A Yellow Raft In Blue Water', 'https://images.isbndb.com/covers/78/73/9780446387873.jpg'), - ('0385301499', 'Circle Of Friends', 'https://images.isbndb.com/covers/14/97/9780385301497.jpg'), - ('0385336764', 'The Fiery Cross (Outlander)', 'https://images.isbndb.com/covers/67/65/9780385336765.jpg'), - ('0060956445', 'The Monkey Wrench Gang (Perennial Classics)', 'https://images.isbndb.com/covers/64/48/9780060956448.jpg'), - ('0062502239', '365 Tao: Daily Meditations', 'https://images.isbndb.com/covers/22/30/9780062502230.jpg'), - ('096612880X', 'Walking On The Edge: A Journey Through The Psychic Pain Of Mental Illness : Poems', 'https://images.isbndb.com/covers/88/02/9780966128802.jpg'), - ('0806982276', 'Lateral Thinking Puzzlers', 'https://images.isbndb.com/covers/22/74/9780806982274.jpg'), - ('0060185147', 'Courting Trouble', 'https://images.isbndb.com/covers/51/45/9780060185145.jpg'), - ('0805010270', 'Fatal Flowers: On Sin, Sex And Suicide In The Deep South', 'https://images.isbndb.com/covers/02/75/9780805010275.jpg'), - ('0425184307', 'Murder On Washington Square (Gaslight Mystery)', 'https://images.isbndb.com/covers/43/01/9780425184301.jpg'), - ('0345409043', 'Errands', 'https://images.isbndb.com/covers/90/41/9780345409041.jpg'), - ('0440110653', 'A Cry In The Night', 'https://images.isbndb.com/covers/06/51/9780440110651.jpg'), - ('0553574701', 'A Song For The Asking', 'https://images.isbndb.com/covers/47/08/9780553574708.jpg'), - ('0380732084', 'The Devil Riding', 'https://images.isbndb.com/covers/20/81/9780380732081.jpg'), - ('0385335121', 'Tara Road: Oprah Selection #26', 'https://images.isbndb.com/covers/51/26/9780385335126.jpg'), - ('0671016970', 'Iron Lake (Cork O''Connor)', 'https://images.isbndb.com/covers/69/75/9780671016975.jpg'), - ('0449225666', 'Pentecost Alley (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/56/60/9780449225660.jpg'), - ('0373263937', 'Milwaukee Summers Can Be Deadly (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/39/36/9780373263936.jpg'), - ('0312093616', 'Paid And Loving Eyes', 'https://images.isbndb.com/covers/36/17/9780312093617.jpg'), - ('1586602950', 'City Dreams: Beneath Heaven''s Curtain/A World Of Difference/In The Heart Of The Storm/The Arrow Of God (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/29/56/9781586602956.jpg'), - ('0764563556', 'Frommer''s Scandinavia', 'https://images.isbndb.com/covers/35/53/9780764563553.jpg'), - ('1573229601', 'God''s Mountain', 'https://images.isbndb.com/covers/96/09/9781573229609.jpg'), - ('0590452991', 'Ghost Eye', 'https://images.isbndb.com/covers/29/91/9780590452991.jpg'), - ('0860209261', 'The Usborne Book Of Car Travel Games: Puzzles, Games And Things To Do On A Journey-Or At Home (The Usborne Book Of Series)', 'https://images.isbndb.com/covers/92/63/9780860209263.jpg'), - ('0452264510', 'The Prime Of Miss Jean Brodie (Plume)', 'https://images.isbndb.com/covers/45/19/9780452264519.jpg'), - ('0786869445', 'Hope Through Heartsongs', 'https://images.isbndb.com/covers/94/42/9780786869442.jpg'), - ('0380819597', 'The Last Convertible', 'https://images.isbndb.com/covers/95/91/9780380819591.jpg'), - ('1575667614', 'Kentucky Rich', 'https://images.isbndb.com/covers/76/14/9781575667614.jpg'), - ('0877935637', 'All Will Be Well: Based On The Classic Spirituality Of Julian Of Norwich (30 Days With A Great Spiritual Teacher)', 'https://images.isbndb.com/covers/56/36/9780877935636.jpg'), - ('0684856077', 'Tales Of Passion, Tales Of Woe', 'https://images.isbndb.com/covers/60/70/9780684856070.jpg'), - ('0517597977', 'Beaming Sonny Home', 'https://images.isbndb.com/covers/79/72/9780517597972.jpg'), - ('0671567713', 'White Crosses', 'https://images.isbndb.com/covers/77/12/9780671567712.jpg'), - ('0671537512', 'Sabrina', 'https://images.isbndb.com/covers/75/17/9780671537517.jpg'), - ('0718143515', 'Field Of 13', 'https://images.isbndb.com/covers/35/10/9780718143510.jpg'), - ('0373441517', 'A Royal Mess / Her Knight To Remember (Harlequin Duets: Red-Hot Royals)', 'https://images.isbndb.com/covers/15/18/9780373441518.jpg'), - ('1551666219', 'Savage Desire (Mira)', 'https://images.isbndb.com/covers/62/11/9781551666211.jpg'), - ('0380710854', 'Caesar: Let The Dice Fly (Masters Of Rome, Book 5)', 'https://images.isbndb.com/covers/08/50/9780380710850.jpg'), - ('0140012664', 'The Bafut Beagles', 'https://images.isbndb.com/covers/26/68/9780140012668.jpg'), - ('0773752102', 'Five Minute Mysteries', 'https://images.isbndb.com/covers/21/08/9780773752108.jpg'), - ('0441731546', 'Robot Dreams (Remembering Tomorrow)', 'https://images.isbndb.com/covers/15/41/9780441731541.jpg'), - ('0553204343', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/43/46/9780553204346.jpg'), - ('0201112159', 'Problem Solving Pascal', 'https://images.isbndb.com/covers/21/53/9780201112153.jpg'), - ('0782122221', 'MCSE: NT Server 4 Study Guide, 2nd Ed.', 'https://images.isbndb.com/covers/22/20/9780782122220.jpg'), - ('078212223X', 'McSe: Nt Workstation 4 Study Guide', 'https://images.isbndb.com/covers/22/37/9780782122237.jpg'), - ('0782122213', 'McSe: Nt Server 4 In The Enterprise Study Guide', 'https://images.isbndb.com/covers/22/13/9780782122213.jpg'), - ('0345316576', 'Who Needs Enemies?', 'https://images.isbndb.com/covers/65/78/9780345316578.jpg'), - ('0770109047', 'Jade And Fire', 'https://images.isbndb.com/covers/90/42/9780770109042.jpg'), - ('0060139145', 'The Gulag Archipelago, 1918-1956: An Experiment In Literary Investigation', 'https://images.isbndb.com/covers/91/48/9780060139148.jpg'), - ('0345372328', 'Into The Dark Lands (The Sundered, Book 1)', 'https://images.isbndb.com/covers/23/21/9780345372321.jpg'), - ('0671769057', 'Voyage Of The Storm', 'https://images.isbndb.com/covers/90/55/9780671769055.jpg'), - ('0670220264', 'Christine', 'https://images.isbndb.com/covers/02/67/9780670220267.jpg'), - ('0517422840', 'Three Complete Novels', 'https://images.isbndb.com/covers/28/47/9780517422847.jpg'), - ('0671229427', 'The Second Ring Of Power', 'https://images.isbndb.com/covers/94/29/9780671229429.jpg'), - ('0671230875', 'The Eagle''s Gift', 'https://images.isbndb.com/covers/08/76/9780671230876.jpg'), - ('0671673238', 'The Power Of Silence', 'https://images.isbndb.com/covers/32/39/9780671673239.jpg'), - ('0671492055', 'Fire From Within', 'https://images.isbndb.com/covers/20/52/9780671492052.jpg'), - ('0671218581', 'Tales Of Power', 'https://images.isbndb.com/covers/85/84/9780671218584.jpg'), - ('0671502549', 'Hotel New Hampshire', 'https://images.isbndb.com/covers/25/46/9780671502546.jpg'), - ('0380379783', 'Fletch''s Fortune', 'https://images.isbndb.com/covers/97/81/9780380379781.jpg'), - ('0553566032', 'The Scorpio Illusion', 'https://images.isbndb.com/covers/60/31/9780553566031.jpg'), - ('042507272X', 'God Emperor Dune (Dune Chronicles, Book 4)', 'https://images.isbndb.com/covers/27/21/9780425072721.jpg'), - ('042507160X', 'Dune', 'https://images.isbndb.com/covers/16/01/9780425071601.jpg'), - ('051770689X', 'Gifts From Nature: Ideas & Projects For Every Season', 'https://images.isbndb.com/covers/68/93/9780517706893.jpg'), - ('0440107016', 'Beggarman Thief', 'https://images.isbndb.com/covers/70/19/9780440107019.jpg'), - ('081253073X', 'Tales Of The Flying Mountains', 'https://images.isbndb.com/covers/07/35/9780812530735.jpg'), - ('0671655892', 'Revolt In 2100', 'https://images.isbndb.com/covers/58/91/9780671655891.jpg'), - ('0451452739', '2001: A Space Odyssey', 'https://images.isbndb.com/covers/27/33/9780451452733.jpg'), - ('0553569570', 'The Apocalypse Watch', 'https://images.isbndb.com/covers/95/75/9780553569575.jpg'), - ('0671877410', 'Tran', 'https://images.isbndb.com/covers/74/15/9780671877415.jpg'), - ('0553281798', 'Trevayne', 'https://images.isbndb.com/covers/17/98/9780553281798.jpg'), - ('0156729156', 'The Ponder Heart', 'https://images.isbndb.com/covers/91/54/9780156729154.jpg'), - ('0440500303', 'The Splendid Outcast: Beryl Markham''s African Stories', 'https://images.isbndb.com/covers/03/08/9780440500308.jpg'), - ('1400031257', 'Longitudes And Attitudes: The World In The Age Of Terrorism', 'https://images.isbndb.com/covers/12/52/9781400031252.jpg'), - ('0860917886', 'I, Rigoberta Menchu: An Indian Woman In Guatemala', 'https://images.isbndb.com/covers/78/85/9780860917885.jpg'), - ('0805210474', 'Anti-Semite And Jew: An Exploration Of The Etiology Of Hate', 'https://images.isbndb.com/covers/04/77/9780805210477.jpg'), - ('1931561168', 'Clara Mondschein''s Melancholia', 'https://images.isbndb.com/covers/11/67/9781931561167.jpg'), - ('1573229539', 'Picasso, My Grandfather', 'https://images.isbndb.com/covers/95/31/9781573229531.jpg'), - ('1578194547', 'Happiness', 'https://images.isbndb.com/covers/45/44/9781578194544.jpg'), - ('0684869497', 'The Gardens Of Kyoto: A Novel', 'https://images.isbndb.com/covers/94/90/9780684869490.jpg'), - ('0060937556', 'The Sweetest Dream: A Novel', 'https://images.isbndb.com/covers/75/53/9780060937553.jpg'), - ('0805072772', 'A Death In Texas: A Story Of Race, Murder, And A Small Town''s Struggle For Redemption', 'https://images.isbndb.com/covers/27/78/9780805072778.jpg'), - ('0671224387', 'Blind Ambition: The White House Years', 'https://images.isbndb.com/covers/43/87/9780671224387.jpg'), - ('0805207457', 'On Being A Jewish Feminist', 'https://images.isbndb.com/covers/74/53/9780805207453.jpg'), - ('0767904605', 'Going On Being: Buddhism And The Way Of Change', 'https://images.isbndb.com/covers/46/05/9780767904605.jpg'), - ('1560254505', 'Nothing Sacred: Women Respond To Religious Fundamentalism And Terror (Nation Books)', 'https://images.isbndb.com/covers/45/08/9781560254508.jpg'), - ('081293217X', 'Finding Your Own North Star: Claiming The Life You Were Meant To Live', 'https://images.isbndb.com/covers/21/71/9780812932171.jpg'), - ('0141802812', 'In The Heart Of The Sea', 'https://images.isbndb.com/covers/28/17/9780141802817.jpg'), - ('0679732233', 'The Red Badge Of Courage (Library Of America)', 'https://images.isbndb.com/covers/22/35/9780679732235.jpg'), - ('0375417206', 'Corelli''s Mandolin', 'https://images.isbndb.com/covers/72/07/9780375417207.jpg'), - ('0192815539', 'The Picture Of Dorian Gray (World''s Classics)', 'https://images.isbndb.com/covers/55/38/9780192815538.jpg'), - ('0679735011', 'THE ADVENTURES OF TOM SAWYER', 'https://images.isbndb.com/covers/50/14/9780679735014.jpg'), - ('0875425925', 'Kundalini & The Chakras: Evolution In This Lifetime (Llewellyn''s New Age Series)', 'https://images.isbndb.com/covers/59/24/9780875425924.jpg'), - ('0393087913', 'China Revisited, After Forty-Two Years', 'https://images.isbndb.com/covers/79/18/9780393087918.jpg'), - ('0252062825', 'Studs Lonigan (Prairie State Books)', 'https://images.isbndb.com/covers/28/27/9780252062827.jpg'), - ('0375420762', 'Bayou Farewell: The Rich Life And Tragic Death Of Louisiana''s Cajun Coast', 'https://images.isbndb.com/covers/07/64/9780375420764.jpg'), - ('0877957215', 'Washington Wives', 'https://images.isbndb.com/covers/72/18/9780877957218.jpg'), - ('0802139914', 'Goodbye Tsugumi', 'https://images.isbndb.com/covers/99/17/9780802139917.jpg'), - ('0738205702', 'Ever Is A Long Time: A Journey Into Mississippi''s Dark Past A Memoir', 'https://images.isbndb.com/covers/57/00/9780738205700.jpg'), - ('0743222245', 'Living History', 'https://images.isbndb.com/covers/22/42/9780743222242.jpg'), - ('0971156905', 'The Secret Of The Yamas: A Spiritual Guide To Yoga', 'https://images.isbndb.com/covers/69/06/9780971156906.jpg'), - ('0804106436', 'Oldest Living Confederate Widow Tells All', 'https://images.isbndb.com/covers/64/36/9780804106436.jpg'), - ('0395519462', 'BODY & SOUL', 'https://images.isbndb.com/covers/94/62/9780395519462.jpg'), - ('0452270251', 'The Lost Beatles Interviews', 'https://images.isbndb.com/covers/02/51/9780452270251.jpg'), - ('0449219402', 'Murder At The Pentagon (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/94/09/9780449219409.jpg'), - ('0934211477', 'Tales Of Two Cities: A Persian Memoir', 'https://images.isbndb.com/covers/14/75/9780934211475.jpg'), - ('0385491239', 'Only Twice I''ve Wished For Heaven', 'https://images.isbndb.com/covers/12/35/9780385491235.jpg'), - ('0156027453', 'Sunday Jews', 'https://images.isbndb.com/covers/74/58/9780156027458.jpg'), - ('069452350X', 'Blue Latitudes', 'https://images.isbndb.com/covers/35/04/9780694523504.jpg'), - ('0446691798', 'Nights In Rodanthe', 'https://images.isbndb.com/covers/17/96/9780446691796.jpg'), - ('1883642434', 'My Home Is Far Away: An Autobiographical Novel', 'https://images.isbndb.com/covers/24/33/9781883642433.jpg'), - ('0140086412', 'Later The Same Day (Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/64/16/9780140086416.jpg'), - ('0961035269', 'A Walking Tour Of The Shambles', 'https://images.isbndb.com/covers/52/66/9780961035266.jpg'), - ('0452283906', 'Snow Island', 'https://images.isbndb.com/covers/39/09/9780452283909.jpg'), - ('0060952652', 'Lighten Up!: Free Yourself From Clutter', 'https://images.isbndb.com/covers/26/55/9780060952655.jpg'), - ('0449006581', 'Brothel: Mustang Ranch And Its Women', 'https://images.isbndb.com/covers/65/80/9780449006580.jpg'), - ('185799597X', 'A Guide To Happiness (Phoenix 60p Paperbacks)', 'https://images.isbndb.com/covers/59/78/9781857995978.jpg'), - ('1585670227', 'The Last Kabbalist Of Lisbon', 'https://images.isbndb.com/covers/02/22/9781585670222.jpg'), - ('0743206371', 'Soul Stories', 'https://images.isbndb.com/covers/63/72/9780743206372.jpg'), - ('0814402860', 'SuperMotivation: A Blueprint For Energizing Your Organization From Top To Bottom', 'https://images.isbndb.com/covers/28/63/9780814402863.jpg'), - ('0671526065', 'Forrest Gump', 'https://images.isbndb.com/covers/60/61/9780671526061.jpg'), - ('0446671304', 'Deadline Poet: My Life As A Doggerelist', 'https://images.isbndb.com/covers/13/09/9780446671309.jpg'), - ('038547167X', 'Minding The Body: Women Writers On Body And Soul', 'https://images.isbndb.com/covers/16/71/9780385471671.jpg'), - ('0060913983', 'Proud Shoes: The Story Of An American Family', 'https://images.isbndb.com/covers/39/84/9780060913984.jpg'), - ('0874411033', 'As A Driven Leaf', 'https://images.isbndb.com/covers/10/34/9780874411034.jpg'), - ('0345434471', 'L.A. Requiem (Elvis Cole Novels)', 'https://images.isbndb.com/covers/44/70/9780345434470.jpg'), - ('044661078X', 'Passing Through Paradise', 'https://images.isbndb.com/covers/07/80/9780446610780.jpg'), - ('1575667266', 'Sour Grapes: A Savannah Reid Mystery (Savannah Reid Mysteries)', 'https://images.isbndb.com/covers/72/63/9781575667263.jpg'), - ('1551669412', 'Hot Shot (Stp - Mira)', 'https://images.isbndb.com/covers/94/10/9781551669410.jpg'), - ('1400047943', 'The 5 Patterns Of Extraordinary Careers: The Guide For Achieving Success And Satisfaction (Crown Business Briefings)', 'https://images.isbndb.com/covers/79/49/9781400047949.jpg'), - ('0451205448', 'Bubbles Unbound', 'https://images.isbndb.com/covers/54/45/9780451205445.jpg'), - ('0877142912', 'Ellie''s Choice', 'https://images.isbndb.com/covers/29/11/9780877142911.jpg'), - ('0452284295', 'Cheet (Plume Books)', 'https://images.isbndb.com/covers/42/96/9780452284296.jpg'), - ('0425190749', 'Keepsake Crimes (A Scrapbooking Mystery)', 'https://images.isbndb.com/covers/07/46/9780425190746.jpg'), - ('0060517212', 'If The Slipper Fits', 'https://images.isbndb.com/covers/72/12/9780060517212.jpg'), - ('0060548215', 'If Cooks Could Kil (Angie Amalfi Mysteries)', 'https://images.isbndb.com/covers/82/16/9780060548216.jpg'), - ('0451197550', 'The Hand That Rocks The Ladle (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/75/59/9780451197559.jpg'), - ('159184021X', 'Purple Cow: Transform Your Business By Being Remarkable', 'https://images.isbndb.com/covers/02/13/9781591840213.jpg'), - ('0743442652', 'The Pink Magnolia Club', 'https://images.isbndb.com/covers/26/57/9780743442657.jpg'), - ('0345434137', 'Chicks Rule: The Story Of The Dixie Chicks', 'https://images.isbndb.com/covers/41/35/9780345434135.jpg'), - ('082176845X', 'On Thin Ice', 'https://images.isbndb.com/covers/84/57/9780821768457.jpg'), - ('1575664798', 'Cooked Goose: A Savanna Reid Mystery (Savannah Reid Mysteries)', 'https://images.isbndb.com/covers/47/98/9781575664798.jpg'), - ('0312970757', 'Death In Texas: A True Story Of Marriage, Money, And Murder (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/07/58/9780312970758.jpg'), - ('1575667223', 'Blueberry Muffin Murder (Hannah Swensen Mysteries)', 'https://images.isbndb.com/covers/72/25/9781575667225.jpg'), - ('1575667215', 'Strawberry Shortcake Murder (Hannah Swensen Mysteries)', 'https://images.isbndb.com/covers/72/18/9781575667218.jpg'), - ('0739302213', 'The King Of Torts', 'https://images.isbndb.com/covers/22/17/9780739302217.jpg'), - ('038081918X', 'Getting Lucky (Marine, Book 2)', 'https://images.isbndb.com/covers/91/88/9780380819188.jpg'), - ('037370920X', 'And Baby Makes Six: 9 Months Later (Harlequin Superromance No. 920)', 'https://images.isbndb.com/covers/92/05/9780373709205.jpg'), - ('0373243146', 'Good Morning Stranger (Special Edition, 1314)', 'https://images.isbndb.com/covers/31/43/9780373243143.jpg'), - ('0380816830', 'Something Wild', 'https://images.isbndb.com/covers/68/35/9780380816835.jpg'), - ('0373708513', 'Jessie''s Father (Harlequin Superromance No. 851)', 'https://images.isbndb.com/covers/85/12/9780373708512.jpg'), - ('0425184315', 'Just Desserts', 'https://images.isbndb.com/covers/43/18/9780425184318.jpg'), - ('0380814390', 'Lola Carlyle Reveals All', 'https://images.isbndb.com/covers/43/98/9780380814398.jpg'), - ('0312978723', 'Falling For You', 'https://images.isbndb.com/covers/87/23/9780312978723.jpg'), - ('0380793806', 'Funeral Food (Tory Bauer Mystery)', 'https://images.isbndb.com/covers/38/08/9780380793808.jpg'), - ('1551666189', 'Manhunting (Mira Romance)', 'https://images.isbndb.com/covers/61/81/9781551666181.jpg'), - ('0743219333', 'Baby Catcher: Chronicles Of A Modern Midwife', 'https://images.isbndb.com/covers/93/34/9780743219334.jpg'), - ('0373708661', 'A Message For Abby: Patton''s Daughters (Harlequin Superromance No. 866)', 'https://images.isbndb.com/covers/86/66/9780373708666.jpg'), - ('0373708408', 'If He Could See Me Now (Harlequin Superromance No. 840)', 'https://images.isbndb.com/covers/84/06/9780373708406.jpg'), - ('0671786601', 'To Trust A Stranger', 'https://images.isbndb.com/covers/66/01/9780671786601.jpg'), - ('0446609188', 'Then Comes Marriage', 'https://images.isbndb.com/covers/91/80/9780446609180.jpg'), - ('037344155X', 'Cindy And The Fella / Calling All Glass Slippers', 'https://images.isbndb.com/covers/15/56/9780373441556.jpg'), - ('0505524228', 'Stuck With You (Time Of Your Life)', 'https://images.isbndb.com/covers/42/25/9780505524225.jpg'), - ('0747266395', 'Jinnie', 'https://images.isbndb.com/covers/63/96/9780747266396.jpg'), - ('0553578758', 'A Ghost For Maggie', 'https://images.isbndb.com/covers/87/51/9780553578751.jpg'), - ('0380782340', 'Nobody''s Baby But Mine', 'https://images.isbndb.com/covers/23/45/9780380782345.jpg'), - ('0373166125', 'Wanted: Christmas Mommy Christmas Is For Kids', 'https://images.isbndb.com/covers/61/21/9780373166121.jpg'), - ('0373195419', 'This Kiss (Destiny, Texas) (Harlequin Romance)', 'https://images.isbndb.com/covers/54/11/9780373195411.jpg'), - ('0373291027', 'A Bride For McCain (Harlequin Historicals)', 'https://images.isbndb.com/covers/10/21/9780373291021.jpg'), - ('0849935369', 'The Exchange Student''s Secret (Heather Reed Mystery Series Book 6)', 'https://images.isbndb.com/covers/53/67/9780849935367.jpg'), - ('0373169043', 'Cinderella''s Shoe Size (Harlequin American Romance)', 'https://images.isbndb.com/covers/90/47/9780373169047.jpg'), - ('0373441568', 'Hitched For The Holidays / A Groom In Her Stocking (Harlequin Duets, No. 90)', 'https://images.isbndb.com/covers/15/63/9780373441563.jpg'), - ('0373825412', 'Bride For Daddy (Weddings By Dewilde)', 'https://images.isbndb.com/covers/54/17/9780373825417.jpg'), - ('0671039350', 'Sunflower', 'https://images.isbndb.com/covers/93/56/9780671039356.jpg'), - ('1890768030', 'Secret''s Shadow: The First Cassidy McCabe Mystery', 'https://images.isbndb.com/covers/80/34/9781890768034.jpg'), - ('0312966369', 'Death At Every Stop (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/63/62/9780312966362.jpg'), - ('0312956436', 'Like Mother, Like Son', 'https://images.isbndb.com/covers/64/31/9780312956431.jpg'), - ('0671526677', 'All She Wanted', 'https://images.isbndb.com/covers/66/72/9780671526672.jpg'), - ('0671731866', 'Unfinished Murder: The Capture Of A Serial Rapist', 'https://images.isbndb.com/covers/18/61/9780671731861.jpg'), - ('0821771175', 'Be My Baby Tonight (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/74/9780821771174.jpg'), - ('037316680X', 'Daddy Factor (Harlequin American Romance)', 'https://images.isbndb.com/covers/68/00/9780373166800.jpg'), - ('0373707053', 'The Trouble With Texans: Family Man (Harlequin Superromance No. 705)', 'https://images.isbndb.com/covers/70/58/9780373707058.jpg'), - ('0312971370', 'Soap Opera', 'https://images.isbndb.com/covers/13/73/9780312971373.jpg'), - ('0505524279', 'Baby, Oh Baby! (Time Of Your Life)', 'https://images.isbndb.com/covers/42/70/9780505524270.jpg'), - ('050552497X', 'The Last Male Virgin', 'https://images.isbndb.com/covers/49/73/9780505524973.jpg'), - ('0312981848', 'Record Time', 'https://images.isbndb.com/covers/18/46/9780312981846.jpg'), - ('0373272006', 'The Princess And The Mercenary (Romancing The Crown) (Harlequin Romantic Suspense)', 'https://images.isbndb.com/covers/20/06/9780373272006.jpg'), - ('0373226586', 'Scarlet Vows (Moriah''s Landing, Book 3) (Harlequin Intrigue Series #658)', 'https://images.isbndb.com/covers/65/80/9780373226580.jpg'), - ('0515133868', 'Once Upon A Kiss', 'https://images.isbndb.com/covers/38/68/9780515133868.jpg'), - ('0373217218', 'Mom''s Main Man: Some Kind Of Hero/Cowboy''s Kiss (Harlequin Romance 2-in-1)', 'https://images.isbndb.com/covers/72/12/9780373217212.jpg'), - ('0373710763', 'Child Of Her Dreams (Harlequin Superromance No. 1076)', 'https://images.isbndb.com/covers/07/68/9780373710768.jpg'), - ('1551668270', 'Cold Tea On A Hot Day', 'https://images.isbndb.com/covers/82/77/9781551668277.jpg'), - ('0804119686', 'I Got You, Babe', 'https://images.isbndb.com/covers/96/89/9780804119689.jpg'), - ('037322608X', 'To Protect Their Child (Harlequin Intrigue 608)', 'https://images.isbndb.com/covers/60/85/9780373226085.jpg'), - ('0373226055', 'The Hunt For Hawke''s Daughter (Top Secret Babies, Book 3) (Harlequin Intrigue Series #605)', 'https://images.isbndb.com/covers/60/54/9780373226054.jpg'), - ('0373259786', 'Her Perfect Stranger (The Wrong Bed) (Harlequin Temptation)', 'https://images.isbndb.com/covers/97/86/9780373259786.jpg'), - ('0373790554', 'Take Me (Harlequin Blaze)', 'https://images.isbndb.com/covers/05/55/9780373790555.jpg'), - ('0373226470', 'Accessory To Marriage (Harlequin Intrigue)', 'https://images.isbndb.com/covers/64/74/9780373226474.jpg'), - ('0821773402', 'Reconsidering Riley', 'https://images.isbndb.com/covers/34/06/9780821773406.jpg'), - ('0373834853', 'Meant To Be', 'https://images.isbndb.com/covers/48/53/9780373834853.jpg'), - ('037371047X', 'Babes In Arms: Four Seasons In Firefly Glen (Harlequin Superromance No. 1047)', 'https://images.isbndb.com/covers/04/78/9780373710478.jpg'), - ('0821765221', 'Can''t Take My Eyes Off Of You (Zebra Book)', 'https://images.isbndb.com/covers/52/27/9780821765227.jpg'), - ('0553575066', 'The Scotsman Wore Spurs', 'https://images.isbndb.com/covers/50/64/9780553575064.jpg'), - ('0446403830', 'Wolf In The Shadows (A Sharon Mccone Mystery)', 'https://images.isbndb.com/covers/38/32/9780446403832.jpg'), - ('074342347X', 'The Wildflowers (omnibus): Misty--Star--Jade--Cat', 'https://images.isbndb.com/covers/34/72/9780743423472.jpg'), - ('0312955421', 'Whatever Mother Says...: A True Story Of A Mother, Madness And Murder (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/54/27/9780312955427.jpg'), - ('0373037147', 'The Pregnancy Plan (Maybe Baby)', 'https://images.isbndb.com/covers/71/48/9780373037148.jpg'), - ('0446609005', 'Word', 'https://images.isbndb.com/covers/90/05/9780446609005.jpg'), - ('0671729454', 'If There Be Thorns (Dollanganger Series)', 'https://images.isbndb.com/covers/94/55/9780671729455.jpg'), - ('0671007718', 'Into The Garden (Wildflowers)', 'https://images.isbndb.com/covers/77/13/9780671007713.jpg'), - ('0804117438', 'Fatal Reaction', 'https://images.isbndb.com/covers/74/32/9780804117432.jpg'), - ('1551665506', 'Escape From Cabriz', 'https://images.isbndb.com/covers/55/04/9781551665504.jpg'), - ('0446364819', 'The Stork Club', 'https://images.isbndb.com/covers/48/12/9780446364812.jpg'), - ('0373226780', 'Prince Under Cover (Chicago Confidential #3; Harlequin Intrigue #678)', 'https://images.isbndb.com/covers/67/88/9780373226788.jpg'), - ('0373194870', 'Hunter''S Vow (Harlequin Romance)', 'https://images.isbndb.com/covers/48/72/9780373194872.jpg'), - ('0373226802', 'The Night In Question (Harlequin Intrigue)', 'https://images.isbndb.com/covers/68/01/9780373226801.jpg'), - ('0373441436', 'Anything You Can Do...! / Anchor That Man! (Duets, 77)', 'https://images.isbndb.com/covers/14/33/9780373441433.jpg'), - ('0373441452', 'Duets 2 - In - 1 #79 (Sexy, Single And Searching / Eager, Eligible & Alaskan) (Harlequin Duets)', 'https://images.isbndb.com/covers/14/57/9780373441457.jpg'), - ('0380781565', 'Home Again, Home Again (E. J. Pugh Mysteries)', 'https://images.isbndb.com/covers/15/60/9780380781560.jpg'), - ('9871106181', 'El Club Dumas (Punto De Lectura) (Spanish Edition)', 'https://images.isbndb.com/covers/61/89/9789871106189.jpg'), - ('9507682074', 'El Retrato De Dorian Gray / The Picture Of Dorian Gray (Spanish Edition)', 'https://images.isbndb.com/covers/20/70/9789507682070.jpg'), - ('0451528522', 'The Invisible Man (Signet Classics)', 'https://images.isbndb.com/covers/85/20/9780451528520.jpg'), - ('0803728719', 'Get On Out Of Here, Philip Hall', 'https://images.isbndb.com/covers/87/14/9780803728714.jpg'), - ('0803760965', 'Philip Hall Likes Me, I Reckon Maybe', 'https://images.isbndb.com/covers/09/67/9780803760967.jpg'), - ('0553482939', 'RUMORS AT THE RINK (Silver Blades)', 'https://images.isbndb.com/covers/29/35/9780553482935.jpg'), - ('0553483579', 'A New Move (Silver Blades)', 'https://images.isbndb.com/covers/35/74/9780553483574.jpg'), - ('0553482890', 'The Ice Princess (Silver Blades)', 'https://images.isbndb.com/covers/28/98/9780553482898.jpg'), - ('0061062081', 'Graduation Day (Beverly Hills, 90210)', 'https://images.isbndb.com/covers/20/87/9780061062087.jpg'), - ('0061067865', 'Beverly Hills 90210: ''Tis The Season', 'https://images.isbndb.com/covers/78/60/9780061067860.jpg'), - ('0061061441', 'Beverly Hills 90210: Two Hearts', 'https://images.isbndb.com/covers/14/48/9780061061448.jpg'), - ('006106727X', 'Beverly Hills 90210: Fantasies', 'https://images.isbndb.com/covers/72/73/9780061067273.jpg'), - ('0440943930', 'The Kestrel', 'https://images.isbndb.com/covers/39/38/9780440943938.jpg'), - ('0440997313', 'Westmark (The Westmark Trilogy)', 'https://images.isbndb.com/covers/73/13/9780440997313.jpg'), - ('0553264753', 'Shadow Of A Unicorn', 'https://images.isbndb.com/covers/47/53/9780553264753.jpg'), - ('0393311465', 'Voyage In The Dark (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/14/64/9780393311464.jpg'), - ('0140183078', 'The Go-Between (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/30/78/9780140183078.jpg'), - ('0192815555', 'Robinson Crusoe (World''s Classics)', 'https://images.isbndb.com/covers/55/52/9780192815552.jpg'), - ('0449208648', 'A Palm For Mrs. Pollifax', 'https://images.isbndb.com/covers/86/49/9780449208649.jpg'), - ('0449214281', 'Ragtime', 'https://images.isbndb.com/covers/42/82/9780449214282.jpg'), - ('044918336X', 'Mrs. Pollifax, Innocent Tourist (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/33/66/9780449183366.jpg'), - ('0449150046', 'Mrs. Pollifax And The Lion Killer (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/00/47/9780449150047.jpg'), - ('0140104771', 'The Suspect (Crime, Penguin)', 'https://images.isbndb.com/covers/47/76/9780140104776.jpg'), - ('0671827774', 'Happy All The Time', 'https://images.isbndb.com/covers/77/79/9780671827779.jpg'), - ('0393000567', 'Wide Sargasso Sea: A Novel', 'https://images.isbndb.com/covers/05/66/9780393000566.jpg'), - ('0030074312', 'The Prydain Chronicles', 'https://images.isbndb.com/covers/43/18/9780030074318.jpg'), - ('0553211668', 'Candide (Bantam Classics)', 'https://images.isbndb.com/covers/16/65/9780553211665.jpg'), - ('0394550846', 'Perfume: The Story Of A Murderer', 'https://images.isbndb.com/covers/08/48/9780394550848.jpg'), - ('0679737383', 'Anywhere But Here', 'https://images.isbndb.com/covers/73/84/9780679737384.jpg'), - ('1878424084', 'The 12 Stages Of Healing: A Network Approach To Wholeness', 'https://images.isbndb.com/covers/40/82/9781878424082.jpg'), - ('0140430032', 'Great Expectations', 'https://images.isbndb.com/covers/00/35/9780140430035.jpg'), - ('0670032670', 'The Forest Lover', 'https://images.isbndb.com/covers/26/79/9780670032679.jpg'), - ('0060929952', 'Five Fortunes', 'https://images.isbndb.com/covers/99/54/9780060929954.jpg'), - ('0141001682', 'Life Is So Good: One Man''s Extraordinary Journey Through The 20th Century And How He Learned To Read At Age 98', 'https://images.isbndb.com/covers/16/85/9780141001685.jpg'), - ('0060937742', 'In The Country Of The Young', 'https://images.isbndb.com/covers/77/44/9780060937744.jpg'), - ('0060913568', 'The Dance Of Anger: A Woman''s Guide To Changing The Patterns Of Intimate Relationships', 'https://images.isbndb.com/covers/35/64/9780060913564.jpg'), - ('0345439163', 'How Much Joy Can You Stand : A Creative Guide To Facing Your Fears And Making Your Dreams Come True (Revised, Updated, And With New Chapters)', 'https://images.isbndb.com/covers/91/61/9780345439161.jpg'), - ('0972100539', 'The Miracle Of Death', 'https://images.isbndb.com/covers/05/33/9780972100533.jpg'), - ('1580632068', 'Be Loved For Who You Really Are: How The Differences Between Men And Women Can Be Turned Into The Source Of The Very Best Romance You''ll Ever Know', 'https://images.isbndb.com/covers/20/65/9781580632065.jpg'), - ('0425140040', 'For My Ladys Heart', 'https://images.isbndb.com/covers/00/48/9780425140048.jpg'), - ('0062701649', 'Never Call Your Broker On Monday', 'https://images.isbndb.com/covers/16/40/9780062701640.jpg'), - ('0553277944', 'The Widow''s Club', 'https://images.isbndb.com/covers/79/44/9780553277944.jpg'), - ('1591251478', 'Empire: A Tale Of Obsession, Betrayal, And The Battle For An American Icon (Wiley Audio)', 'https://images.isbndb.com/covers/14/77/9781591251477.jpg'), - ('0887307876', 'The Dilbert Principle: A Cubicle''s-Eye View Of Bosses, Meetings, Management Fads & Other Workplace Afflictions', 'https://images.isbndb.com/covers/78/74/9780887307874.jpg'), - ('1556521952', 'The Book Group Book: A Thoughtful Guide To Forming And Enjoying A Stimulating Book Discussion Group', 'https://images.isbndb.com/covers/19/59/9781556521959.jpg'), - ('1582700230', 'The Holistic Animal Handbook: A Guidebook To Nutrition, Health, And Communication', 'https://images.isbndb.com/covers/02/36/9781582700236.jpg'), - ('1567403263', 'Cloud Nine', 'https://images.isbndb.com/covers/32/68/9781567403268.jpg'), - ('0449002268', 'News Of The Spirit (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/22/61/9780449002261.jpg'), - ('0205187382', 'Guide To Rapid Revision', 'https://images.isbndb.com/covers/73/86/9780205187386.jpg'), - ('0553345834', 'What They Don''t Teach You At Harvard Business School: Notes From A Street-Smart Executive', 'https://images.isbndb.com/covers/58/34/9780553345834.jpg'), - ('0970866402', 'The Cancer Breakthrough You''ve Never Heard Of', 'https://images.isbndb.com/covers/64/00/9780970866400.jpg'), - ('039592684X', 'The Best American Short Stories 1999', 'https://images.isbndb.com/covers/68/40/9780395926840.jpg'), - ('159129021X', 'Triangular Reflections', 'https://images.isbndb.com/covers/02/16/9781591290216.jpg'), - ('0805058001', 'Aveda Rituals : A Daily Guide To Natural Health And Beauty', 'https://images.isbndb.com/covers/80/00/9780805058000.jpg'), - ('0684848376', 'FOOD AND WHINE: Confessions Of A New Millennium Mom', 'https://images.isbndb.com/covers/83/72/9780684848372.jpg'), - ('0761119396', 'Three Black Skirts : All You Need To Survive', 'https://images.isbndb.com/covers/93/95/9780761119395.jpg'), - ('0836279077', 'The Best Of Dear Abby', 'https://images.isbndb.com/covers/90/78/9780836279078.jpg'), - ('0938756605', 'The Disobedience Of The Daughter Of The Sun: Ecstasy And Time', 'https://images.isbndb.com/covers/66/06/9780938756606.jpg'), - ('0452282691', 'Motiba''s Tattoos', 'https://images.isbndb.com/covers/26/98/9780452282698.jpg'), - ('0679752927', 'My Own Country: A Doctor''s Story', 'https://images.isbndb.com/covers/29/29/9780679752929.jpg'), - ('1580631797', 'Linda McCartney: A Portrait', 'https://images.isbndb.com/covers/17/92/9781580631792.jpg'), - ('006091646X', 'The Dance Of Intimacy', 'https://images.isbndb.com/covers/64/66/9780060916466.jpg'), - ('0883964368', 'Light A Candle: A Whimsical & Uplifting Look At Life From The Pen & Brush Of Kristin', 'https://images.isbndb.com/covers/43/61/9780883964361.jpg'), - ('0970351704', 'Making Scenes', 'https://images.isbndb.com/covers/17/08/9780970351708.jpg'), - ('031220387X', 'The Third Heiress', 'https://images.isbndb.com/covers/38/70/9780312203870.jpg'), - ('0452281636', 'Ralph''s Party: A Novel', 'https://images.isbndb.com/covers/16/39/9780452281639.jpg'), - ('0425111911', 'Billion Dollar Sure', 'https://images.isbndb.com/covers/19/18/9780425111918.jpg'), - ('080410946X', 'Object Lessons', 'https://images.isbndb.com/covers/94/68/9780804109468.jpg'), - ('0312289189', 'Queenmaker: A Novel Of King David''s Queen', 'https://images.isbndb.com/covers/91/88/9780312289188.jpg'), - ('0743422449', 'Mercy', 'https://images.isbndb.com/covers/24/44/9780743422444.jpg'), - ('0425176339', 'The Brass Dolphin', 'https://images.isbndb.com/covers/63/37/9780425176337.jpg'), - ('0446359203', 'Carrion Comfort', 'https://images.isbndb.com/covers/92/07/9780446359207.jpg'), - ('1893705153', 'Ordering From The Cosmic Kitchen: The Essential Guide To Powerful, Nourishing Affirmations', 'https://images.isbndb.com/covers/51/59/9781893705159.jpg'), - ('0440206529', 'Blessings', 'https://images.isbndb.com/covers/65/21/9780440206521.jpg'), - ('0312962258', 'Red Leaves', 'https://images.isbndb.com/covers/22/58/9780312962258.jpg'), - ('0972051007', 'And Howls For Us To Follow: A Book Of Poems', 'https://images.isbndb.com/covers/10/02/9780972051002.jpg'), - ('0970997582', 'The Other Side Of The Moon', 'https://images.isbndb.com/covers/75/86/9780970997586.jpg'), - ('0525933654', 'Franklin''s Crossing: 2', 'https://images.isbndb.com/covers/36/56/9780525933656.jpg'), - ('0030554381', 'Things Fall Apart: With Connections', 'https://images.isbndb.com/covers/43/84/9780030554384.jpg'), - ('0741408155', 'Curtain Call', 'https://images.isbndb.com/covers/81/50/9780741408150.jpg'), - ('0811813401', 'Beauty', 'https://images.isbndb.com/covers/34/02/9780811813402.jpg'), - ('0452279593', 'The Magician''s Wife (A William Abrahams Book)', 'https://images.isbndb.com/covers/95/99/9780452279599.jpg'), - ('096146206X', 'Luna Yoga : Vital Fertility And Sexuality', 'https://images.isbndb.com/covers/20/62/9780961462062.jpg'), - ('0671795694', 'Indecent Proposal: Indecent Proposal', 'https://images.isbndb.com/covers/56/96/9780671795696.jpg'), - ('1552790401', 'The Total Man: A Complete Guide To Marital Bliss', 'https://images.isbndb.com/covers/04/03/9781552790403.jpg'), - ('0800757769', 'Whirlpool (Julesburg Mystery Series #1)', 'https://images.isbndb.com/covers/77/62/9780800757762.jpg'), - ('0312978383', 'Winter Solstice', 'https://images.isbndb.com/covers/83/89/9780312978389.jpg'), - ('051511779X', 'Born In Shame (Born In Trilogy, Book 3)', 'https://images.isbndb.com/covers/77/90/9780515117790.jpg'), - ('055358264X', 'Dream Country', 'https://images.isbndb.com/covers/26/42/9780553582642.jpg'), - ('0380978091', 'The House Of Gentle Men', 'https://images.isbndb.com/covers/80/90/9780380978090.jpg'), - ('0452271657', 'Singing Songs: A Novel', 'https://images.isbndb.com/covers/16/54/9780452271654.jpg'), - ('0451175123', 'The Fountainhead: 50th Anniversary Edition', 'https://images.isbndb.com/covers/51/20/9780451175120.jpg'), - ('0380756250', 'Once A Princess', 'https://images.isbndb.com/covers/62/54/9780380756254.jpg'), - ('0312420323', 'A Good House: A Novel', 'https://images.isbndb.com/covers/03/21/9780312420321.jpg'), - ('0972386602', 'Divinely Inspired: Spiritual Awakening Of A Soul.', 'https://images.isbndb.com/covers/66/09/9780972386609.jpg'), - ('0060924802', 'Tales Of The City (Tales Of The City Series)', 'https://images.isbndb.com/covers/48/05/9780060924805.jpg'), - ('037570910X', 'The Feast Of Love: A Novel', 'https://images.isbndb.com/covers/91/04/9780375709104.jpg'), - ('0142003514', 'Coffee, Tea Or Me? The Uninhibited Memoirs Of Two Airline Stewardesses', 'https://images.isbndb.com/covers/35/10/9780142003510.jpg'), - ('0394561120', 'Sleeping Arrangements', 'https://images.isbndb.com/covers/11/27/9780394561127.jpg'), - ('1574900684', 'A Cottage In Portugal', 'https://images.isbndb.com/covers/06/82/9781574900682.jpg'), - ('0312186924', 'The Jade Peony', 'https://images.isbndb.com/covers/69/20/9780312186920.jpg'), - ('0440123747', 'The Exiles (The Australians, Vol. 1)', 'https://images.isbndb.com/covers/37/43/9780440123743.jpg'), - ('0688158129', 'The Pact: A Love Story', 'https://images.isbndb.com/covers/81/25/9780688158125.jpg'), - ('0312119305', 'The Palace Thief', 'https://images.isbndb.com/covers/93/00/9780312119300.jpg'), - ('087905283X', 'Wearing Dad''s Head', 'https://images.isbndb.com/covers/28/36/9780879052836.jpg'), - ('0316895245', 'In The Hand Of Dante: A Novel', 'https://images.isbndb.com/covers/52/48/9780316895248.jpg'), - ('0393308499', 'The Miracle Game', 'https://images.isbndb.com/covers/84/95/9780393308495.jpg'), - ('0312270933', 'Shame: A Novel', 'https://images.isbndb.com/covers/09/33/9780312270933.jpg'), - ('0679744665', 'The Moor''s Last Sigh', 'https://images.isbndb.com/covers/46/65/9780679744665.jpg'), - ('0452269865', 'Black Water (Contemporary Fiction, Plume)', 'https://images.isbndb.com/covers/98/66/9780452269866.jpg'), - ('0385264666', 'Palace Walk: The Cairo Trilogy, Volume 1', 'https://images.isbndb.com/covers/46/62/9780385264662.jpg'), - ('0060927569', 'High Tide In Tucson: Essays From Now Or Never', 'https://images.isbndb.com/covers/75/61/9780060927561.jpg'), - ('0140424385', 'The Canterbury Tales (Penguin Classics)', 'https://images.isbndb.com/covers/43/86/9780140424386.jpg'), - ('0679457852', 'Visitors: A Novel', 'https://images.isbndb.com/covers/78/55/9780679457855.jpg'), - ('0440167361', 'The Other', 'https://images.isbndb.com/covers/73/65/9780440167365.jpg'), - ('0140157379', 'Haroun And The Sea Of Stories', 'https://images.isbndb.com/covers/73/76/9780140157376.jpg'), - ('0140442618', 'Timaeus And Critias (Penguin Classics)', 'https://images.isbndb.com/covers/26/18/9780140442618.jpg'), - ('0884191338', 'Bruchko', 'https://images.isbndb.com/covers/13/39/9780884191339.jpg'), - ('0340165634', 'Nethergate', 'https://images.isbndb.com/covers/56/38/9780340165638.jpg'), - ('0891902309', 'The Town House', 'https://images.isbndb.com/covers/23/00/9780891902300.jpg'), - ('0449237923', 'The House At Old Vine', 'https://images.isbndb.com/covers/79/22/9780449237922.jpg'), - ('0064473511', 'A Tale Of Time City', 'https://images.isbndb.com/covers/35/14/9780064473514.jpg'), - ('0786704799', 'Oscar Wilde : Including My Memories Of Oscar Wilde By George Bernard Shaw', 'https://images.isbndb.com/covers/47/98/9780786704798.jpg'), - ('0385721765', 'Swimming Toward The Ocean: A Novel', 'https://images.isbndb.com/covers/17/69/9780385721769.jpg'), - ('0394736656', 'Herland: A Lost Feminist Utopian Novel', 'https://images.isbndb.com/covers/66/55/9780394736655.jpg'), - ('0316196614', 'This Body: A Novel Of Reincarnation', 'https://images.isbndb.com/covers/66/11/9780316196611.jpg'), - ('0451526562', 'A Tale Of Two Cities (Signet Classics)', 'https://images.isbndb.com/covers/65/64/9780451526564.jpg'), - ('0553210165', 'Hard Times (Bantam Classics)', 'https://images.isbndb.com/covers/01/63/9780553210163.jpg'), - ('0787119784', 'Alice In Wonderland: Including Alice''s Adventures In Wonderland And Through The Looking-glass', 'https://images.isbndb.com/covers/97/82/9780787119782.jpg'), - ('0060912529', 'Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/25/29/9780060912529.jpg'), - ('0393314073', 'The Eleven Million Mile High Dancer (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/40/76/9780393314076.jpg'), - ('0672520885', 'Sanya: My Life With Aleksandr Solzhenitsyn', 'https://images.isbndb.com/covers/08/84/9780672520884.jpg'), - ('1577656954', 'Moby Dick (Great Illustrated Classics (Abdo))', 'https://images.isbndb.com/covers/69/51/9781577656951.jpg'), - ('0451521897', 'Treasure Island (Signet Classics)', 'https://images.isbndb.com/covers/18/97/9780451521897.jpg'), - ('0553273221', 'April Morning', 'https://images.isbndb.com/covers/32/29/9780553273229.jpg'), - ('0590422677', 'Avalanche', 'https://images.isbndb.com/covers/26/73/9780590422673.jpg'), - ('0671646990', 'High Marks For Malice (Nancy Drew Files, Case 32)', 'https://images.isbndb.com/covers/69/98/9780671646998.jpg'), - ('0679445102', 'A Long Fatal Love Chase', 'https://images.isbndb.com/covers/51/04/9780679445104.jpg'), - ('0440156998', 'Mazes & Monsters', 'https://images.isbndb.com/covers/69/94/9780440156994.jpg'), - ('0425158632', 'Executive Orders (Jack Ryan)', 'https://images.isbndb.com/covers/86/30/9780425158630.jpg'), - ('0449237575', 'Menfreya In Morning', 'https://images.isbndb.com/covers/75/71/9780449237571.jpg'), - ('0140444270', 'On War (Penguin Classics)', 'https://images.isbndb.com/covers/42/78/9780140444278.jpg'), - ('0742628191', 'The Phantom ''Rickshaw And Other Tales (Collected Works Of Rudyard Kipling)', 'https://images.isbndb.com/covers/81/99/9780742628199.jpg'), - ('0812963741', 'Troublemaker:: One Man''s Crusade Against China''s Cruelty', 'https://images.isbndb.com/covers/37/48/9780812963748.jpg'), - ('0192825232', 'The Mysteries Of Udolpho (Oxford World''s Classics)', 'https://images.isbndb.com/covers/52/30/9780192825230.jpg'), - ('042511306X', 'The Sea King''s Daughter', 'https://images.isbndb.com/covers/30/66/9780425113066.jpg'), - ('2830202813', 'Bride Of Pendorric', 'https://images.isbndb.com/covers/28/16/9782830202816.jpg'), - ('0030119502', 'Castle Of Otranto', 'https://images.isbndb.com/covers/95/07/9780030119507.jpg'), - ('0380017997', 'Lady Oracle', 'https://images.isbndb.com/covers/79/97/9780380017997.jpg'), - ('0449207439', 'Dream Of Orchids', 'https://images.isbndb.com/covers/74/37/9780449207437.jpg'), - ('0671755064', 'Shampoo Planet', 'https://images.isbndb.com/covers/50/65/9780671755065.jpg'), - ('0590424564', 'Trick Or Treat', 'https://images.isbndb.com/covers/45/61/9780590424561.jpg'), - ('0380775506', 'Promise Me Heaven', 'https://images.isbndb.com/covers/55/07/9780380775507.jpg'), - ('0515116386', 'Texas Kiss (Wildflower)', 'https://images.isbndb.com/covers/63/80/9780515116380.jpg'), - ('0380754029', 'Renegade Love', 'https://images.isbndb.com/covers/40/21/9780380754021.jpg'), - ('1557739404', 'Heaven On Earth (Diamond)', 'https://images.isbndb.com/covers/94/07/9781557739407.jpg'), - ('0843941790', 'Golden Derams', 'https://images.isbndb.com/covers/17/91/9780843941791.jpg'), - ('0440206499', 'All My Heart Can Hold', 'https://images.isbndb.com/covers/64/91/9780440206491.jpg'), - ('0843935391', 'Treasures Of The Heart', 'https://images.isbndb.com/covers/53/94/9780843935394.jpg'), - ('0821754084', 'Endless Night', 'https://images.isbndb.com/covers/40/85/9780821754085.jpg'), - ('0843935405', 'Reluctant Lovers', 'https://images.isbndb.com/covers/54/00/9780843935400.jpg'), - ('0380778335', 'Promise Me', 'https://images.isbndb.com/covers/83/31/9780380778331.jpg'), - ('0821746545', 'Tender Heart (Zebra Lovegram Historical Romance)', 'https://images.isbndb.com/covers/65/47/9780821746547.jpg'), - ('0446365262', 'The Searching Hearts', 'https://images.isbndb.com/covers/52/60/9780446365260.jpg'), - ('0821766430', 'My Angel', 'https://images.isbndb.com/covers/64/39/9780821766439.jpg'), - ('0380775794', 'Wildfire', 'https://images.isbndb.com/covers/57/98/9780380775798.jpg'), - ('0380898802', 'Reckless Yearning', 'https://images.isbndb.com/covers/88/00/9780380898800.jpg'), - ('0425132048', 'Eyes Of Prey', 'https://images.isbndb.com/covers/20/43/9780425132043.jpg'), - ('0061083259', 'Dreamcatcher', 'https://images.isbndb.com/covers/32/59/9780061083259.jpg'), - ('0446613665', 'License To Thrill', 'https://images.isbndb.com/covers/36/68/9780446613668.jpg'), - ('0671786466', 'Paradise County', 'https://images.isbndb.com/covers/64/65/9780671786465.jpg'), - ('0446606189', 'Cat & Mouse (Alex Cross)', 'https://images.isbndb.com/covers/61/89/9780446606189.jpg'), - ('0743456181', 'Almost Like Being In Love (Lost Texas Hearts, Book 2)', 'https://images.isbndb.com/covers/61/80/9780743456180.jpg'), - ('0380819201', 'Shadow Dance', 'https://images.isbndb.com/covers/92/01/9780380819201.jpg'), - ('0821769332', 'In Too Deep (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/93/31/9780821769331.jpg'), - ('1551665042', 'More Than You Know', 'https://images.isbndb.com/covers/50/47/9781551665047.jpg'), - ('0515127108', 'Sweet Hearts', 'https://images.isbndb.com/covers/71/02/9780515127102.jpg'), - ('0440215994', 'The Senator''s Wife', 'https://images.isbndb.com/covers/59/98/9780440215998.jpg'), - ('0440235782', 'My Spy', 'https://images.isbndb.com/covers/57/81/9780440235781.jpg'), - ('0449146448', 'Picture Postcard', 'https://images.isbndb.com/covers/64/46/9780449146446.jpg'), - ('0440237602', 'Code Name: Nanny', 'https://images.isbndb.com/covers/76/00/9780440237600.jpg'), - ('0425196852', 'Dangerous Curves (Berkley Sensation)', 'https://images.isbndb.com/covers/68/54/9780425196854.jpg'), - ('0373218095', 'Two By Twilight (2 Novels In 1)', 'https://images.isbndb.com/covers/80/97/9780373218097.jpg'), - ('0446612944', 'Tall Dark And Cajun', 'https://images.isbndb.com/covers/29/44/9780446612944.jpg'), - ('0445206578', 'Gift Of Fire', 'https://images.isbndb.com/covers/65/71/9780445206571.jpg'), - ('0786889691', 'The Blue Hour', 'https://images.isbndb.com/covers/96/93/9780786889693.jpg'), - ('0380780038', 'Taken By Storm', 'https://images.isbndb.com/covers/00/37/9780380780037.jpg'), - ('0380793393', 'The Mackenzies: Jake (Mackenzies, #6)', 'https://images.isbndb.com/covers/33/96/9780380793396.jpg'), - ('155166951X', 'What The Lady Wants', 'https://images.isbndb.com/covers/95/19/9781551669519.jpg'), - ('0786016418', 'Kiss Her Goodbye', 'https://images.isbndb.com/covers/64/19/9780786016419.jpg'), - ('0804119503', 'The Trouble With Mary', 'https://images.isbndb.com/covers/95/04/9780804119504.jpg'), - ('0380711532', 'Don''t Cry Now', 'https://images.isbndb.com/covers/15/36/9780380711536.jpg'), - ('0440222877', 'Missing Pieces', 'https://images.isbndb.com/covers/28/73/9780440222873.jpg'), - ('0821772228', 'Green Calder Grass (Calder Family Saga)', 'https://images.isbndb.com/covers/22/25/9780821772225.jpg'), - ('0061044407', 'Liar: An Irene Kelly Mystery', 'https://images.isbndb.com/covers/44/03/9780061044403.jpg'), - ('0821746170', 'Illusions', 'https://images.isbndb.com/covers/61/72/9780821746172.jpg'), - ('0445409169', 'The Shape Of Dread', 'https://images.isbndb.com/covers/91/63/9780445409163.jpg'), - ('0380792206', 'Night Kills', 'https://images.isbndb.com/covers/22/07/9780380792207.jpg'), - ('0590673203', 'Beware Of The Purple Peanut Butter (Give Yourself Goosebumps, No 6)', 'https://images.isbndb.com/covers/32/04/9780590673204.jpg'), - ('059067319X', 'Night In Werewolf Woods (Give Yourself Goosebumps)', 'https://images.isbndb.com/covers/31/98/9780590673198.jpg'), - ('0446612812', 'Have You Seen Her?', 'https://images.isbndb.com/covers/28/14/9780446612814.jpg'), - ('0821770802', 'Can''t Stop Loving You (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/08/01/9780821770801.jpg'), - ('0821772139', 'Lady Killer', 'https://images.isbndb.com/covers/21/33/9780821772133.jpg'), - ('1551666960', 'The Delaney Woman', 'https://images.isbndb.com/covers/69/69/9781551666969.jpg'), - ('0743477294', 'French Twist', 'https://images.isbndb.com/covers/72/91/9780743477291.jpg'), - ('1551664267', 'Eleventh Hour', 'https://images.isbndb.com/covers/42/62/9781551664262.jpg'), - ('0553803409', 'Firestorm', 'https://images.isbndb.com/covers/34/02/9780553803402.jpg'), - ('074320607X', 'Nighttime Is My Time', 'https://images.isbndb.com/covers/60/75/9780743206075.jpg'), - ('0060514930', 'Dead Ringer', 'https://images.isbndb.com/covers/49/38/9780060514938.jpg'), - ('0446612510', 'The Fourth Perimeter', 'https://images.isbndb.com/covers/25/17/9780446612517.jpg'), - ('1551669455', 'Deadly Grace', 'https://images.isbndb.com/covers/94/58/9781551669458.jpg'), - ('0553581023', 'Follow The Stars Home', 'https://images.isbndb.com/covers/10/27/9780553581027.jpg'), - ('0425192784', 'Witching Moon (The Moon Series, Book 3)', 'https://images.isbndb.com/covers/27/88/9780425192788.jpg'), - ('0345319281', 'Garfield Makes It Big (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/92/89/9780345319289.jpg'), - ('0345318056', 'Garfield Loses His Feet (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/80/53/9780345318053.jpg'), - ('0345312716', 'Garfield Tips The Scales (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/27/16/9780345312716.jpg'), - ('0345312260', 'Garfield Sits Around The House', 'https://images.isbndb.com/covers/22/66/9780345312266.jpg'), - ('034530912X', 'Garfield Eats His Heart Out', 'https://images.isbndb.com/covers/91/29/9780345309129.jpg'), - ('0345307127', 'Garfield Takes The Cake', 'https://images.isbndb.com/covers/71/25/9780345307125.jpg'), - ('0345302621', 'Garfield Weighs In: His Fourth Book', 'https://images.isbndb.com/covers/26/25/9780345302625.jpg'), - ('0345287797', 'Garfield At Large', 'https://images.isbndb.com/covers/77/93/9780345287793.jpg'), - ('0440225043', 'The Midnight Hour', 'https://images.isbndb.com/covers/50/41/9780440225041.jpg'), - ('0373255632', 'Manhunting (Harlequin Temptation)', 'https://images.isbndb.com/covers/56/34/9780373255634.jpg'), - ('1551661535', 'Midnight Rainbow', 'https://images.isbndb.com/covers/15/37/9781551661537.jpg'), - ('0671000527', 'The Secret Of Candlelight Inn (Nancy Drew Mystery #139)', 'https://images.isbndb.com/covers/05/23/9780671000523.jpg'), - ('0553802542', 'Thursday''s Child', 'https://images.isbndb.com/covers/25/42/9780553802542.jpg'), - ('0671786539', 'To Trust A Stranger', 'https://images.isbndb.com/covers/65/33/9780671786533.jpg'), - ('0671034421', 'Open Season', 'https://images.isbndb.com/covers/44/29/9780671034429.jpg'), - ('0802775829', 'Nothing But The Night', 'https://images.isbndb.com/covers/58/25/9780802775825.jpg'), - ('0380807122', 'Baby, Don''t Go', 'https://images.isbndb.com/covers/71/23/9780380807123.jpg'), - ('1551665867', 'Sacred Trust', 'https://images.isbndb.com/covers/58/63/9781551665863.jpg'), - ('0380807149', 'All Shook Up', 'https://images.isbndb.com/covers/71/47/9780380807147.jpg'), - ('0821771450', 'Night Moves (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/14/57/9780821771457.jpg'), - ('0380795116', 'Baby, I''m Yours', 'https://images.isbndb.com/covers/51/16/9780380795116.jpg'), - ('0380795124', 'Be My Baby', 'https://images.isbndb.com/covers/51/23/9780380795123.jpg'), - ('0060539836', 'Kill The Competition', 'https://images.isbndb.com/covers/98/32/9780060539832.jpg'), - ('0671567705', 'White Hot (Pocket Books Romance)', 'https://images.isbndb.com/covers/77/05/9780671567705.jpg'), - ('0590448862', 'Fabulous Facts About The 50 States', 'https://images.isbndb.com/covers/88/64/9780590448864.jpg'), - ('0671019295', 'The Nancy Drew Files: The Wrong Chemistry / Out Of Bounds / Flirting With Danger', 'https://images.isbndb.com/covers/92/97/9780671019297.jpg'), - ('0380800381', 'Sleepless In Montana', 'https://images.isbndb.com/covers/03/84/9780380800384.jpg'), - ('0373072937', 'Borrowed Angel (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/29/34/9780373072934.jpg'), - ('1551665360', 'Trust No One', 'https://images.isbndb.com/covers/53/68/9781551665368.jpg'), - ('0553237667', 'Member Of The Wedding', 'https://images.isbndb.com/covers/76/65/9780553237665.jpg'), - ('1879960109', 'Making Face, Making Soul/Haciendo Caras: Creative And Critical Perspectives By Feminists Of Color', 'https://images.isbndb.com/covers/01/07/9781879960107.jpg'), - ('0684865114', 'The Restraint Of Beasts', 'https://images.isbndb.com/covers/51/19/9780684865119.jpg'), - ('0465015328', 'The Custody Wars: Why Children Are Losing The Legal Battle--and What We Can Do About It', 'https://images.isbndb.com/covers/53/20/9780465015320.jpg'), - ('0553272470', 'Summer Of My German Soldier', 'https://images.isbndb.com/covers/24/75/9780553272475.jpg'), - ('0316955256', 'The Glory: A Novel', 'https://images.isbndb.com/covers/52/56/9780316955256.jpg'), - ('0446603392', 'Strange Highways', 'https://images.isbndb.com/covers/33/93/9780446603393.jpg'), - ('055321490X', 'Jacob''s Room', 'https://images.isbndb.com/covers/49/01/9780553214901.jpg'), - ('0064407713', 'Buried Onions', 'https://images.isbndb.com/covers/77/17/9780064407717.jpg'), - ('0374525080', 'Messages From My Father: A Memoir', 'https://images.isbndb.com/covers/50/88/9780374525088.jpg'), - ('0399139540', 'Debt Of Honor', 'https://images.isbndb.com/covers/95/43/9780399139543.jpg'), - ('0385315236', 'The Horse Whisperer', 'https://images.isbndb.com/covers/52/34/9780385315234.jpg'), - ('0446520950', 'Total Control', 'https://images.isbndb.com/covers/09/59/9780446520959.jpg'), - ('014005829X', 'East Of Eden', 'https://images.isbndb.com/covers/82/91/9780140058291.jpg'), - ('0312186142', 'Death In Cyprus', 'https://images.isbndb.com/covers/61/42/9780312186142.jpg'), - ('0446523437', 'Any Given Day: The Life And Times Of Jessie Lee Brown Foveaux', 'https://images.isbndb.com/covers/34/31/9780446523431.jpg'), - ('0064471861', 'Parrot In The Oven: Mi Vida', 'https://images.isbndb.com/covers/18/62/9780064471862.jpg'), - ('006095129X', 'De Amor Y De Sombra', 'https://images.isbndb.com/covers/12/90/9780060951290.jpg'), - ('0553256130', 'Goodbye, Mr. Chips', 'https://images.isbndb.com/covers/61/30/9780553256130.jpg'), - ('059042792X', 'My Brother Sam Is Dead (A Newberry Honor Book)', 'https://images.isbndb.com/covers/79/20/9780590427920.jpg'), - ('060980149X', 'La Ley Del Amor', 'https://images.isbndb.com/covers/14/99/9780609801499.jpg'), - ('0671502336', 'Catch-22', 'https://images.isbndb.com/covers/23/31/9780671502331.jpg'), - ('0671504371', 'The Good Earth', 'https://images.isbndb.com/covers/43/73/9780671504373.jpg'), - ('0449911446', 'Before Women Had Wings (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/14/40/9780449911440.jpg'), - ('0451527550', 'The Sport Of The Gods (Signet Classics)', 'https://images.isbndb.com/covers/75/54/9780451527554.jpg'), - ('074343756X', 'Electric God', 'https://images.isbndb.com/covers/75/61/9780743437561.jpg'), - ('0743222628', 'The Best American Erotica 2004', 'https://images.isbndb.com/covers/26/24/9780743222624.jpg'), - ('0141439513', 'Pride And Prejudice (Penguin Classics)', 'https://images.isbndb.com/covers/95/18/9780141439518.jpg'), - ('0743225422', 'The Shipping News : A Novel', 'https://images.isbndb.com/covers/54/27/9780743225427.jpg'), - ('0374278784', 'Travels With A Medieval Queen', 'https://images.isbndb.com/covers/87/86/9780374278786.jpg'), - ('159308059X', 'The Importance Of Being Earnest And Four Other Plays (Barnes & Noble Classics)', 'https://images.isbndb.com/covers/05/94/9781593080594.jpg'), - ('0060558121', 'American Gods: A Novel', 'https://images.isbndb.com/covers/81/23/9780060558123.jpg'), - ('1573221767', 'Sister India', 'https://images.isbndb.com/covers/17/64/9781573221764.jpg'), - ('0374199698', 'Middlesex: A Novel', 'https://images.isbndb.com/covers/96/92/9780374199692.jpg'), - ('0373250460', 'You Have To Kiss A Lot Of Frogs', 'https://images.isbndb.com/covers/04/62/9780373250462.jpg'), - ('0375828192', 'Lyra''s Oxford (Paperback)', 'https://images.isbndb.com/covers/81/95/9780375828195.jpg'), - ('0399132821', 'Illumination Night', 'https://images.isbndb.com/covers/28/27/9780399132827.jpg'), - ('1573220876', 'About A Boy', 'https://images.isbndb.com/covers/08/73/9781573220873.jpg'), - ('044041833X', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/83/37/9780440418337.jpg'), - ('0374516812', 'The Lottery And Other Stories', 'https://images.isbndb.com/covers/68/19/9780374516819.jpg'), - ('0156027399', 'The Woman Who Gave Birth To Rabbits: Stories', 'https://images.isbndb.com/covers/73/97/9780156027397.jpg'), - ('0380793334', 'Joining', 'https://images.isbndb.com/covers/33/34/9780380793334.jpg'), - ('0553284169', 'Rightfully Mine', 'https://images.isbndb.com/covers/41/64/9780553284164.jpg'), - ('0399146695', 'Lost And Found', 'https://images.isbndb.com/covers/66/95/9780399146695.jpg'), - ('0425047075', 'Whispers', 'https://images.isbndb.com/covers/70/71/9780425047071.jpg'), - ('0345384377', 'Sole Survivor', 'https://images.isbndb.com/covers/43/79/9780345384379.jpg'), - ('1558740872', 'Learning To Say No: Establishing Healthy Boundaries', 'https://images.isbndb.com/covers/08/77/9781558740877.jpg'), - ('0425097773', 'The Mask', 'https://images.isbndb.com/covers/77/79/9780425097779.jpg'), - ('0312119070', 'To Play The Fool', 'https://images.isbndb.com/covers/90/72/9780312119072.jpg'), - ('0553580884', 'The Undertaker''s Widow', 'https://images.isbndb.com/covers/08/84/9780553580884.jpg'), - ('0553574957', 'The Burning Man', 'https://images.isbndb.com/covers/49/51/9780553574951.jpg'), - ('0671891685', 'Zeke And Ned', 'https://images.isbndb.com/covers/16/88/9780671891688.jpg'), - ('0399146229', 'The Mineral Palace', 'https://images.isbndb.com/covers/62/20/9780399146220.jpg'), - ('0553299468', 'Midnight Warrior', 'https://images.isbndb.com/covers/94/65/9780553299465.jpg'), - ('0449221229', 'Mystical Paths', 'https://images.isbndb.com/covers/12/28/9780449221228.jpg'), - ('0449214362', 'Glittering Images', 'https://images.isbndb.com/covers/43/67/9780449214367.jpg'), - ('0679428887', 'Archangel: A Novel', 'https://images.isbndb.com/covers/88/86/9780679428886.jpg'), - ('0399145885', 'Atlantis Found (Dirk Pitt Novel)', 'https://images.isbndb.com/covers/58/89/9780399145889.jpg'), - ('0446602620', 'Blood Work', 'https://images.isbndb.com/covers/26/24/9780446602624.jpg'), - ('0553271989', 'The Odessa File', 'https://images.isbndb.com/covers/19/80/9780553271980.jpg'), - ('0375753834', 'Georgiana: Duchess Of Devonshire', 'https://images.isbndb.com/covers/38/31/9780375753831.jpg'), - ('0446522996', 'The Letter Of The Law', 'https://images.isbndb.com/covers/29/91/9780446522991.jpg'), - ('0671546031', 'Lace II', 'https://images.isbndb.com/covers/60/38/9780671546038.jpg'), - ('0517701766', 'A Place Called Freedom', 'https://images.isbndb.com/covers/17/68/9780517701768.jpg'), - ('087795223X', 'Triple', 'https://images.isbndb.com/covers/22/37/9780877952237.jpg'), - ('1853260851', 'Les Miserables Volume One (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/08/58/9781853260858.jpg'), - ('1853260509', 'Les Miserables Volume Two (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/05/06/9781853260506.jpg'), - ('0451202732', 'The Second Silence', 'https://images.isbndb.com/covers/27/34/9780451202734.jpg'), - ('0553266306', 'The Day Of The Jackal', 'https://images.isbndb.com/covers/63/06/9780553266306.jpg'), - ('3829028784', 'De Ribera (Masters Of Spanish Art)', 'https://images.isbndb.com/covers/87/83/9783829028783.jpg'), - ('0439286239', 'Harry Potter And The Sorcerer''s Stone Movie Poster Book', 'https://images.isbndb.com/covers/62/37/9780439286237.jpg'), - ('0140180206', 'The Plague', 'https://images.isbndb.com/covers/02/06/9780140180206.jpg'), - ('2040160434', 'Contes : Scènes De La Vie De Province', 'https://images.isbndb.com/covers/04/32/9782040160432.jpg'), - ('225303987X', 'Lorenzaccio', 'https://images.isbndb.com/covers/98/77/9782253039877.jpg'), - ('2253006203', 'Le Rouge Et Le Noir', 'https://images.isbndb.com/covers/62/06/9782253006206.jpg'), - ('2843370744', 'Manuel Du Guerrier De La Lumière', 'https://images.isbndb.com/covers/07/48/9782843370748.jpg'), - ('1853260908', 'Around The World In Eighty Days: 5 Weeks In A Balloon (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/09/02/9781853260902.jpg'), - ('2080706195', 'Armance Ou "Quelques Scènes D''un Salon De Paris En 1827"', 'https://images.isbndb.com/covers/61/95/9782080706195.jpg'), - ('0595014283', 'A Study In Scarlet (New Millennium Library)', 'https://images.isbndb.com/covers/42/86/9780595014286.jpg'), - ('2246567629', '14.99 Euro', 'https://images.isbndb.com/covers/76/22/9782246567622.jpg'), - ('2080701819', 'Les Confessions, Tome 1', 'https://images.isbndb.com/covers/18/17/9782080701817.jpg'), - ('0439284031', 'Harry Potter Schoolbooks: Quidditch Through The Ages And Fantastic Beasts And Where To Find Them', 'https://images.isbndb.com/covers/40/35/9780439284035.jpg'), - ('2266127756', 'Fables', 'https://images.isbndb.com/covers/77/52/9782266127752.jpg'), - ('9504910017', 'La Cancion De Dorotea (Spanish Edition)', 'https://images.isbndb.com/covers/00/15/9789504910015.jpg'), - ('2070383652', 'La Peau D''un Lion', 'https://images.isbndb.com/covers/36/58/9782070383658.jpg'), - ('0192838679', 'Les Liaisons Dangereuses (Oxford World''s Classics)', 'https://images.isbndb.com/covers/86/74/9780192838674.jpg'), - ('2070368165', 'Rhinocéros', 'https://images.isbndb.com/covers/81/67/9782070368167.jpg'), - ('2070363619', 'Le Roi Se Meurt', 'https://images.isbndb.com/covers/36/12/9782070363612.jpg'), - ('0375700528', 'The Lover', 'https://images.isbndb.com/covers/05/21/9780375700521.jpg'), - ('0393323668', 'The Animal-Lover''s Book Of Beastly Murder', 'https://images.isbndb.com/covers/36/65/9780393323665.jpg'), - ('0786930705', 'Dragons Of Spring Dawning (Dragonlance Chronicles, Vol. 3)', 'https://images.isbndb.com/covers/07/08/9780786930708.jpg'), - ('0880386525', 'The Dragonlance Chronicles/Dragons Of Autumn Twilight/Dragons Of Winter Night/Dragons Of Spring Dawning (Collectors Edition)', 'https://images.isbndb.com/covers/65/24/9780880386524.jpg'), - ('1843500728', 'Carmilla', 'https://images.isbndb.com/covers/07/28/9781843500728.jpg'), - ('1843430215', 'Lizard Tails', 'https://images.isbndb.com/covers/02/16/9781843430216.jpg'), - ('0330305735', 'Bonfire Of The Vanities (Picador Books)', 'https://images.isbndb.com/covers/57/30/9780330305730.jpg'), - ('157270120X', 'Nemesis (Cover To Cover Classics)', 'https://images.isbndb.com/covers/12/05/9781572701205.jpg'), - ('207036240X', 'Le Hussard Sur Le Toit', 'https://images.isbndb.com/covers/24/00/9782070362400.jpg'), - ('2702408648', 'Cartes Sur Table', 'https://images.isbndb.com/covers/86/43/9782702408643.jpg'), - ('0425093255', 'Five Little Pigs (Also Published As Murder In Retrospect)', 'https://images.isbndb.com/covers/32/52/9780425093252.jpg'), - ('2702426328', 'Le Vallon', 'https://images.isbndb.com/covers/63/26/9782702426326.jpg'), - ('2702413722', 'La Maison Biscornue', 'https://images.isbndb.com/covers/37/22/9782702413722.jpg'), - ('2253009199', 'Le Crime Du Golf', 'https://images.isbndb.com/covers/91/91/9782253009191.jpg'), - ('225302001X', 'L''Affaire Protheroe', 'https://images.isbndb.com/covers/00/11/9782253020011.jpg'), - ('2841110664', 'Le Moine Et Le Philosophe', 'https://images.isbndb.com/covers/06/67/9782841110667.jpg'), - ('186046310X', 'Silk', 'https://images.isbndb.com/covers/31/05/9781860463105.jpg'), - ('2070516504', 'Livres A Ecouter: Le Lion', 'https://images.isbndb.com/covers/65/06/9782070516506.jpg'), - ('2895400644', 'J''étais Si Timide Que J''ai Mordu La Maîtresse', 'https://images.isbndb.com/covers/06/46/9782895400646.jpg'), - ('0340551194', 'Time To Dance', 'https://images.isbndb.com/covers/11/96/9780340551196.jpg'), - ('0440505941', 'The Weekend Novelist', 'https://images.isbndb.com/covers/59/45/9780440505945.jpg'), - ('188491036X', 'Writing Life Stories', 'https://images.isbndb.com/covers/03/64/9781884910364.jpg'), - ('0374119163', 'Letters To A Young Novelist', 'https://images.isbndb.com/covers/91/64/9780374119164.jpg'), - ('0312242727', 'A Writer''s Workbook: Daily Exercises For The Writing Life', 'https://images.isbndb.com/covers/27/25/9780312242725.jpg'), - ('1884910394', 'Fiction Writer''s Workshop', 'https://images.isbndb.com/covers/03/95/9781884910395.jpg'), - ('0062734725', 'A Writer''s Companion : A Handy Compendium Of Useful But Hard-To-Find Information On History, Literature, Art, Science, Travel, Philosophy And Much More', 'https://images.isbndb.com/covers/47/23/9780062734723.jpg'), - ('0811814815', 'The Observation Deck: A Tool Kit For Writers (Past & Present)', 'https://images.isbndb.com/covers/48/12/9780811814812.jpg'), - ('0393320030', 'On Becoming A Novelist', 'https://images.isbndb.com/covers/00/39/9780393320039.jpg'), - ('0673181731', 'The Writer''s Craft: A Process Reader', 'https://images.isbndb.com/covers/17/32/9780673181732.jpg'), - ('0192813897', 'Oxford Fowler''s Modern English Usage Dictionary', 'https://images.isbndb.com/covers/38/93/9780192813893.jpg'), - ('0312010443', 'How To Write A Damn Good Novel: A Step-by-Step No Nonsense Guide To Dramatic Storytelling', 'https://images.isbndb.com/covers/04/47/9780312010447.jpg'), - ('0767903080', 'Sin And Syntax: How To Craft Wickedly Effective Prose', 'https://images.isbndb.com/covers/30/80/9780767903080.jpg'), - ('0874778867', 'The Artist''s Way Morning Pages Journal', 'https://images.isbndb.com/covers/88/61/9780874778861.jpg'), - ('1884910408', 'Creating Fiction: Instructions And Insights From Teachers Of The Associated Writing Programs', 'https://images.isbndb.com/covers/04/01/9781884910401.jpg'), - ('0226103897', 'The Chicago Manual Of Style: The Essential Guide For Writers, Editors, And Publishers (14th Edition)', 'https://images.isbndb.com/covers/38/91/9780226103891.jpg'), - ('1884910459', 'The Art & Craft Of The Short Story', 'https://images.isbndb.com/covers/04/56/9781884910456.jpg'), - ('1582970599', 'The Marshall Plan Workbook : Writing Your Novel From Start To Finish', 'https://images.isbndb.com/covers/05/92/9781582970592.jpg'), - ('1582970033', 'Get Organized, Get Published!: 225 Ways To Make Time For Success', 'https://images.isbndb.com/covers/00/35/9781582970035.jpg'), - ('1582970688', 'Keeping A Journal You Love', 'https://images.isbndb.com/covers/06/84/9781582970684.jpg'), - ('0385499191', 'Beyond The Writers'' Workshop: New Ways To Write Creative Nonfiction', 'https://images.isbndb.com/covers/91/94/9780385499194.jpg'), - ('0312166907', 'Handbook Of Technical Writing', 'https://images.isbndb.com/covers/69/08/9780312166908.jpg'), - ('0898796334', 'The Art And Craft Of Poetry', 'https://images.isbndb.com/covers/63/39/9780898796339.jpg'), - ('0395489326', 'The Lord Of The Rings', 'https://images.isbndb.com/covers/93/21/9780395489321.jpg'), - ('0802132758', 'Rosencrantz And Guildenstern Are Dead', 'https://images.isbndb.com/covers/27/58/9780802132758.jpg'), - ('0312421303', 'In Praise Of The Stepmother: A Novel', 'https://images.isbndb.com/covers/13/04/9780312421304.jpg'), - ('1932360239', 'The Pornographer''s Poem: A Novel', 'https://images.isbndb.com/covers/02/33/9781932360233.jpg'), - ('0517064596', 'Anne Tyler: A New Collection:Three Complete Novels: The Accidental Tourist; Breathing Lessons; Searching For Caleb', 'https://images.isbndb.com/covers/45/97/9780517064597.jpg'), - ('0312420285', 'The Storyteller: A Novel', 'https://images.isbndb.com/covers/02/84/9780312420284.jpg'), - ('0375404538', 'Jimmy Corrigan: The Smartest Kid On Earth', 'https://images.isbndb.com/covers/45/35/9780375404535.jpg'), - ('037540600X', 'Horse Heaven', 'https://images.isbndb.com/covers/60/03/9780375406003.jpg'), - ('0679451501', 'The Sparrow: A Novel', 'https://images.isbndb.com/covers/15/01/9780679451501.jpg'), - ('0198117477', 'William Shakespeare: The Complete Works (The Oxford Shakespeare)', 'https://images.isbndb.com/covers/74/76/9780198117476.jpg'), - ('0786706562', 'A House In Sicily', 'https://images.isbndb.com/covers/65/63/9780786706563.jpg'), - ('014027281X', 'In The Memory Of The Forest', 'https://images.isbndb.com/covers/28/19/9780140272819.jpg'), - ('080231323X', 'Last Love In Constantinople: A Tarot Novel For Divination', 'https://images.isbndb.com/covers/32/32/9780802313232.jpg'), - ('0679420851', 'The Inner Side Of The Wind, Or The Novel Of Hero And Leander', 'https://images.isbndb.com/covers/08/59/9780679420859.jpg'), - ('0151002835', 'The Seville Communion', 'https://images.isbndb.com/covers/28/32/9780151002832.jpg'), - ('0151001812', 'The Fencing Master', 'https://images.isbndb.com/covers/18/11/9780151001811.jpg'), - ('0521576229', 'Under This Blazing Light (Canto Original Series)', 'https://images.isbndb.com/covers/62/22/9780521576222.jpg'), - ('0156001438', 'Fima', 'https://images.isbndb.com/covers/14/34/9780156001434.jpg'), - ('0688145744', 'The Body In The Fjord', 'https://images.isbndb.com/covers/57/43/9780688145743.jpg'), - ('0312205503', 'Hemingway''s Chair', 'https://images.isbndb.com/covers/55/08/9780312205508.jpg'), - ('0374280355', 'The Unburied', 'https://images.isbndb.com/covers/03/52/9780374280352.jpg'), - ('0345404351', 'Betrayals', 'https://images.isbndb.com/covers/43/50/9780345404350.jpg'), - ('0140275673', 'A Book Of Memories', 'https://images.isbndb.com/covers/56/74/9780140275674.jpg'), - ('0395544181', 'Pablo Neruda: Selected Poems (Edición Bilingüe)', 'https://images.isbndb.com/covers/41/81/9780395544181.jpg'), - ('0385491832', 'Motherless Brooklyn', 'https://images.isbndb.com/covers/18/39/9780385491839.jpg'), - ('0805052054', 'A Change Of Climate: A Novel', 'https://images.isbndb.com/covers/20/53/9780805052053.jpg'), - ('080505202X', 'An Experiment In Love: A Novel', 'https://images.isbndb.com/covers/20/22/9780805052022.jpg'), - ('1568655800', 'Bimbos & Zombies : Bimbos Of The Death Sun / Zombies Of The Gene Pool', 'https://images.isbndb.com/covers/58/02/9781568655802.jpg'), - ('0060652861', 'A Live Coal In The Sea', 'https://images.isbndb.com/covers/28/69/9780060652869.jpg'), - ('0670896764', 'A Day Late And A Dollar Short', 'https://images.isbndb.com/covers/67/69/9780670896769.jpg'), - ('0140239375', 'The Discovery Of Heaven', 'https://images.isbndb.com/covers/93/79/9780140239379.jpg'), - ('0394744209', 'The Assault', 'https://images.isbndb.com/covers/42/09/9780394744209.jpg'), - ('0140156011', 'Last Call', 'https://images.isbndb.com/covers/60/10/9780140156010.jpg'), - ('067972723X', 'The Eye', 'https://images.isbndb.com/covers/72/31/9780679727231.jpg'), - ('0679727264', 'The Real Life Of Sebastian Knight', 'https://images.isbndb.com/covers/72/62/9780679727262.jpg'), - ('0679723439', 'Despair', 'https://images.isbndb.com/covers/34/31/9780679723431.jpg'), - ('0679726209', 'Mary', 'https://images.isbndb.com/covers/62/03/9780679726203.jpg'), - ('0679727221', 'The Luzhin Defense', 'https://images.isbndb.com/covers/72/24/9780679727224.jpg'), - ('0679726098', 'Strong Opinions', 'https://images.isbndb.com/covers/60/98/9780679726098.jpg'), - ('0679723390', 'Speak, Memory: An Autobiography Revisited', 'https://images.isbndb.com/covers/33/94/9780679723394.jpg'), - ('0679727280', 'Look At The Harlequins!', 'https://images.isbndb.com/covers/72/86/9780679727286.jpg'), - ('0679728864', 'The Enchanter', 'https://images.isbndb.com/covers/88/63/9780679728863.jpg'), - ('0679725415', 'Transparent Things', 'https://images.isbndb.com/covers/54/11/9780679725411.jpg'), - ('0679410775', 'Pale Fire (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/07/75/9780679410775.jpg'), - ('0253212340', 'Riddley Walker, Expanded Edition', 'https://images.isbndb.com/covers/23/44/9780253212344.jpg'), - ('0374292035', 'The Woman And The Ape', 'https://images.isbndb.com/covers/20/34/9780374292034.jpg'), - ('1559704012', 'The File On H.: A Novel', 'https://images.isbndb.com/covers/40/14/9781559704014.jpg'), - ('1559704160', 'The Palace Of Dreams', 'https://images.isbndb.com/covers/41/68/9781559704168.jpg'), - ('0060926597', 'The Complete Fiction: The Bean Trees, Homeland, Animal Dreams, Pigs In Heaven', 'https://images.isbndb.com/covers/65/95/9780060926595.jpg'), - ('081011514X', 'Encyclopedia Of The Dead (European Classics)', 'https://images.isbndb.com/covers/51/49/9780810115149.jpg'), - ('0375500804', 'Chaos Theory: A Novel', 'https://images.isbndb.com/covers/08/00/9780375500800.jpg'), - ('0877798079', 'Merriam-Webster''s Collegiate Dictionary (Laminated Cover)', 'https://images.isbndb.com/covers/80/71/9780877798071.jpg'), - ('089879658X', 'Roget''s Super Thesaurus', 'https://images.isbndb.com/covers/65/82/9780898796582.jpg'), - ('1582972540', 'Roget’s Super Thesaurus (Rogets)', 'https://images.isbndb.com/covers/25/41/9781582972541.jpg'), - ('156389629X', 'The Sandman: The Dream Hunters', 'https://images.isbndb.com/covers/62/93/9781563896293.jpg'), - ('1563890119', 'The Sandman Vol. 1: Preludes And Nocturnes', 'https://images.isbndb.com/covers/01/16/9781563890116.jpg'), - ('0930289595', 'The Sandman Vol. 2: The Doll''s House', 'https://images.isbndb.com/covers/95/91/9780930289591.jpg'), - ('156389016X', 'The Sandman Library, Volume 3: Dream Country', 'https://images.isbndb.com/covers/01/61/9781563890161.jpg'), - ('1563890410', 'The Sandman, Season Of Mists, Volume Four', 'https://images.isbndb.com/covers/04/13/9781563890413.jpg'), - ('0006511767', 'Virgin Earth', 'https://images.isbndb.com/covers/17/62/9780006511762.jpg'), - ('0440204399', 'Catch-22', 'https://images.isbndb.com/covers/43/98/9780440204398.jpg'), - ('0385485247', 'A Toast Before Dying: A Mali Anderson Mystery', 'https://images.isbndb.com/covers/52/41/9780385485241.jpg'), - ('006019197X', 'Pilgrim', 'https://images.isbndb.com/covers/19/79/9780060191979.jpg'), - ('0963094432', 'Angels And Visitations: A Miscellany', 'https://images.isbndb.com/covers/44/38/9780963094438.jpg'), - ('0375700137', 'The War Of Don Emmanuel''s Nether Parts', 'https://images.isbndb.com/covers/01/32/9780375700132.jpg'), - ('081956298X', 'Trouble On Triton: An Ambiguous Heterotopia', 'https://images.isbndb.com/covers/29/82/9780819562982.jpg'), - ('0517707861', 'Death Is Now My Neighbor', 'https://images.isbndb.com/covers/78/69/9780517707869.jpg'), - ('0517799928', 'Morse''s Greatest Mystery', 'https://images.isbndb.com/covers/99/25/9780517799925.jpg'), - ('0679738290', 'The Virgin In The Garden', 'https://images.isbndb.com/covers/82/99/9780679738299.jpg'), - ('0312871937', 'The Marriage Of Sticks', 'https://images.isbndb.com/covers/19/32/9780312871932.jpg'), - ('0312202318', 'A Home At The End Of The World: A Novel', 'https://images.isbndb.com/covers/23/16/9780312202316.jpg'), - ('0312119240', 'Gospel: A Novel', 'https://images.isbndb.com/covers/92/49/9780312119249.jpg'), - ('006028644X', 'Wasteland', 'https://images.isbndb.com/covers/64/46/9780060286446.jpg'), - ('0553377892', 'Bodily Harm', 'https://images.isbndb.com/covers/78/97/9780553377897.jpg'), - ('0553377922', 'The Edible Woman', 'https://images.isbndb.com/covers/79/27/9780553377927.jpg'), - ('0679737995', 'Doctor Copernicus', 'https://images.isbndb.com/covers/79/95/9780679737995.jpg'), - ('0679447954', 'Hometown Brew', 'https://images.isbndb.com/covers/79/55/9780679447955.jpg'), - ('0811819167', 'The Flower In The Skull: A Novel', 'https://images.isbndb.com/covers/91/69/9780811819169.jpg'), - ('0312203241', 'Emotionally Weird', 'https://images.isbndb.com/covers/32/45/9780312203245.jpg'), - ('0312186886', 'Human Croquet: A Novel', 'https://images.isbndb.com/covers/68/83/9780312186883.jpg'), - ('0802139558', 'The Return Of The Caravels (Antunes, Antonio Lobo)', 'https://images.isbndb.com/covers/95/59/9780802139559.jpg'), - ('0449911535', 'Handmaid''s Tale', 'https://images.isbndb.com/covers/15/32/9780449911532.jpg'), - ('1563050757', 'The Boomer Bible', 'https://images.isbndb.com/covers/07/56/9781563050756.jpg'), - ('0670693812', 'Cut Stones And Crossroads: A Journey In The Two Worlds Of Peru', 'https://images.isbndb.com/covers/38/18/9780670693818.jpg'), - ('055310943X', 'Kissed A Sad Goodbye (Duncan Kincaid/Gemma James Novels)', 'https://images.isbndb.com/covers/94/36/9780553109436.jpg'), - ('0684801418', 'Dreaming Of The Bones', 'https://images.isbndb.com/covers/14/14/9780684801414.jpg'), - ('0449001180', 'The Chymical Wedding', 'https://images.isbndb.com/covers/11/89/9780449001189.jpg'), - ('1594200092', 'Alexander Hamilton', 'https://images.isbndb.com/covers/00/90/9781594200090.jpg'), - ('0195170342', 'Washington''s Crossing (Pivotal Moments In American History)', 'https://images.isbndb.com/covers/03/44/9780195170344.jpg'), - ('0156007533', 'The Riddle Of The Compass: The Invention That Changed The World', 'https://images.isbndb.com/covers/75/35/9780156007535.jpg'), - ('1565926161', 'Database Programming With JDBC And Java', 'https://images.isbndb.com/covers/61/65/9781565926165.jpg'), - ('0471213020', 'Mastering Jakarta Struts', 'https://images.isbndb.com/covers/30/24/9780471213024.jpg'), - ('0596003846', 'Java Enterprise Best Practices', 'https://images.isbndb.com/covers/38/45/9780596003845.jpg'), - ('0596005229', 'Java Database Best Practices', 'https://images.isbndb.com/covers/52/21/9780596005221.jpg'), - ('0618138927', 'The Secrets Of Baking: Simple Techniques For Sophisticated Desserts', 'https://images.isbndb.com/covers/89/20/9780618138920.jpg'), - ('0375727612', 'True Notebooks: A Writer''s Year At Juvenile Hall', 'https://images.isbndb.com/covers/76/10/9780375727610.jpg'), - ('0375506160', 'Mountains Beyond Mountains: Healing The World: The Quest Of Dr. Paul Farmer', 'https://images.isbndb.com/covers/61/61/9780375506161.jpg'), - ('1583913580', 'ADD-Friendly Ways To Organize Your Life', 'https://images.isbndb.com/covers/35/81/9781583913581.jpg'), - ('1886941343', 'What Does Everybody Else Know That I Don''t?: Social Skills Help For Adults With Attention Deficit/Hyperactivity Disorder', 'https://images.isbndb.com/covers/13/42/9781886941342.jpg'), - ('0195160770', 'Seven Myths Of The Spanish Conquest', 'https://images.isbndb.com/covers/07/72/9780195160772.jpg'), - ('068482390X', 'REPORT FROM IRON MOUNTAIN: On The Possibility And Desirability Of Peace', 'https://images.isbndb.com/covers/39/04/9780684823904.jpg'), - ('014019469X', 'Zen And The Art Of Making A Living: A Practical Guide To Creative Career Design', 'https://images.isbndb.com/covers/46/92/9780140194692.jpg'), - ('0965731286', '1421 THE YEAR CHINA DISCOVERED AMERICA', 'https://images.isbndb.com/covers/12/87/9780965731287.jpg'), - ('0060569662', 'Autobiography Of A Face', 'https://images.isbndb.com/covers/96/62/9780060569662.jpg'), - ('076113185X', 'Celebrate!', 'https://images.isbndb.com/covers/18/54/9780761131854.jpg'), - ('0452285658', 'Thieves In High Places: They''ve Stolen Our Country And It''s Time To Take It Back', 'https://images.isbndb.com/covers/56/51/9780452285651.jpg'), - ('0060006765', 'Dresden: Tuesday, February 13, 1945', 'https://images.isbndb.com/covers/67/61/9780060006761.jpg'), - ('074323572X', 'Operatives, Spies, And Saboteurs: The Unknown Story Of The Men And Women Of World War II''s OSS', 'https://images.isbndb.com/covers/57/23/9780743235723.jpg'), - ('1585673552', 'The White Rock: An Exploration Of The Inca Heartland', 'https://images.isbndb.com/covers/35/51/9781585673551.jpg'), - ('0716732106', 'Why Zebras Don''t Get Ulcers: An Updated Guide To Stress, Stress Related Diseases, And Coping (2nd Edition)', 'https://images.isbndb.com/covers/21/05/9780716732105.jpg'), - ('0375703160', 'Beyond Belief: The Secret Gospel Of Thomas', 'https://images.isbndb.com/covers/31/64/9780375703164.jpg'), - ('0684802031', 'First Things First', 'https://images.isbndb.com/covers/20/39/9780684802039.jpg'), - ('0812911016', 'The Transitive Vampire', 'https://images.isbndb.com/covers/10/15/9780812911015.jpg'), - ('0670877638', 'On Borrowed Words: A Memoir Of Language', 'https://images.isbndb.com/covers/76/38/9780670877638.jpg'), - ('0425062430', 'The Shroud', 'https://images.isbndb.com/covers/24/32/9780425062432.jpg'), - ('0441366104', 'Isles Of The Blest', 'https://images.isbndb.com/covers/61/01/9780441366101.jpg'), - ('0671705245', 'The State Of The Earth Atlas', 'https://images.isbndb.com/covers/52/44/9780671705244.jpg'), - ('0553349481', 'Another Roadside Attraction', 'https://images.isbndb.com/covers/94/81/9780553349481.jpg'), - ('0375700943', 'The Three-Arched Bridge', 'https://images.isbndb.com/covers/09/41/9780375700941.jpg'), - ('0156005573', 'Don''t Call It Night (Harvest In Translation)', 'https://images.isbndb.com/covers/55/79/9780156005579.jpg'), - ('0425183270', 'Healing ADD: The Breakthrough Program That Allows You To See And Heal The 6 Types Of ADD', 'https://images.isbndb.com/covers/32/74/9780425183274.jpg'), - ('055337821X', 'Answers To Distraction', 'https://images.isbndb.com/covers/82/14/9780553378214.jpg'), - ('0684801280', 'Driven To Distraction : Recognizing And Coping With Attention Deficit Disorder From Childhood Through Adulthood', 'https://images.isbndb.com/covers/12/85/9780684801285.jpg'), - ('087833209X', 'A.D.D. & Romance: Finding Fulfillment In Love, Sex, & Relationships', 'https://images.isbndb.com/covers/20/90/9780878332090.jpg'), - ('1887424377', 'Healing ADD : Simple Exercises That Will Change Your Daily Life', 'https://images.isbndb.com/covers/43/70/9781887424370.jpg'), - ('1887424032', 'ADD Success Stories: A Guide To Fulfillment For Families With Attention Deficit Disorder', 'https://images.isbndb.com/covers/40/35/9781887424035.jpg'), - ('0684815311', 'You Mean I''m Not Lazy, Stupid Or Crazy?! A Self-Help Book For Adults With Attention Deficit Disorder', 'https://images.isbndb.com/covers/53/12/9780684815312.jpg'), - ('0452279631', 'Scattered: How Attention Deficit Disorder Originates And What You Can Do About It', 'https://images.isbndb.com/covers/96/36/9780452279636.jpg'), - ('0876308000', 'Adventures In Fast Forward: Life, Love, And Work For The ADD Adult', 'https://images.isbndb.com/covers/80/04/9780876308004.jpg'), - ('0375701079', 'A User''s Guide To The Brain: Perception, Attention, And The Four Theaters Of The Brain', 'https://images.isbndb.com/covers/10/78/9780375701078.jpg'), - ('0878339604', 'A.D.D. And Creativity: Tapping Your Inner Muse', 'https://images.isbndb.com/covers/96/00/9780878339600.jpg'), - ('080186822X', 'ADHD In Adulthood: A Guide To Current Theory, Diagnosis, And Treatment', 'https://images.isbndb.com/covers/82/21/9780801868221.jpg'), - ('0878339175', 'A.D.D. On The Job: Making Your A.D.D. Work For You', 'https://images.isbndb.com/covers/91/74/9780878339174.jpg'), - ('0878339795', 'Attention Deficit Disorder In Adults: Practical Help And Understanding', 'https://images.isbndb.com/covers/97/92/9780878339792.jpg'), - ('0802713769', 'Journeys Through ADDulthood', 'https://images.isbndb.com/covers/37/66/9780802713766.jpg'), - ('1887424059', 'Women With Attention Deficit Disorder: Embracing Disorganization At Home And In The Workplace', 'https://images.isbndb.com/covers/40/59/9781887424059.jpg'), - ('0785812814', 'Edgar Allen Poe Poems (American Poetry)', 'https://images.isbndb.com/covers/28/14/9780785812814.jpg'), - ('1887424520', 'Thom Hartmann''s Complete Guide To ADHD: Help For Your Family At Home, School And Work', 'https://images.isbndb.com/covers/45/23/9781887424523.jpg'), - ('0140262156', 'Death In The Andes', 'https://images.isbndb.com/covers/21/55/9780140262155.jpg'), - ('0140283595', 'The Notebooks Of Don Rigoberto', 'https://images.isbndb.com/covers/35/94/9780140283594.jpg'), - ('0879518340', 'Last Kabbalist Of Lisbon', 'https://images.isbndb.com/covers/83/49/9780879518349.jpg'), - ('0375407561', 'Embers', 'https://images.isbndb.com/covers/75/67/9780375407567.jpg'), - ('0451208188', 'The English Assassin', 'https://images.isbndb.com/covers/81/87/9780451208187.jpg'), - ('044900371X', 'The Orchid Thief: A True Story Of Beauty And Obsession (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/37/18/9780449003718.jpg'), - ('081664179X', 'The Conscience Of A Liberal: Reclaiming The Compassionate Agenda', 'https://images.isbndb.com/covers/17/96/9780816641796.jpg'), - ('0451211103', 'Sunlight And Shadow', 'https://images.isbndb.com/covers/11/01/9780451211101.jpg'), - ('1568581491', 'Evolution''s Darling', 'https://images.isbndb.com/covers/14/91/9781568581491.jpg'), - ('0743422082', 'The Immaculate Deception', 'https://images.isbndb.com/covers/20/86/9780743422086.jpg'), - ('0425177424', 'Death And Restoration (Art History Mystery)', 'https://images.isbndb.com/covers/74/26/9780425177426.jpg'), - ('0425173585', 'Giotto''s Hand (Art History Mystery)', 'https://images.isbndb.com/covers/35/89/9780425173589.jpg'), - ('0425168956', 'The Titian Committee (Art History Mystery)', 'https://images.isbndb.com/covers/89/50/9780425168950.jpg'), - ('0385491026', 'Cat''s Eye', 'https://images.isbndb.com/covers/10/20/9780385491020.jpg'), - ('0140441131', 'Dead Souls (Penguin Classics)', 'https://images.isbndb.com/covers/11/30/9780140441130.jpg'), - ('0451523881', 'The Brothers Karamazov (Signet Classics)', 'https://images.isbndb.com/covers/38/84/9780451523884.jpg'), - ('0451513355', 'Hard Times', 'https://images.isbndb.com/covers/33/59/9780451513359.jpg'), - ('0449208109', 'Things Fall Apart', 'https://images.isbndb.com/covers/81/06/9780449208106.jpg'), - ('014044470X', 'The Fiancee And Other Stories (Penguin Classics)', 'https://images.isbndb.com/covers/47/04/9780140444704.jpg'), - ('093831713X', 'The Famous Thing About Death: And Other Stories', 'https://images.isbndb.com/covers/71/35/9780938317135.jpg'), - ('0918273420', 'American Earthquakes', 'https://images.isbndb.com/covers/34/20/9780918273420.jpg'), - ('0767901592', 'Eat Me', 'https://images.isbndb.com/covers/15/98/9780767901598.jpg'), - ('0440211697', 'Phantom', 'https://images.isbndb.com/covers/16/93/9780440211693.jpg'), - ('0679727248', 'Glory', 'https://images.isbndb.com/covers/72/48/9780679727248.jpg'), - ('0679724508', 'Laughter In The Dark', 'https://images.isbndb.com/covers/45/06/9780679724506.jpg'), - ('0151002584', 'Ingenious Pain', 'https://images.isbndb.com/covers/25/80/9780151002580.jpg'), - ('0451407229', 'In The Cut', 'https://images.isbndb.com/covers/72/21/9780451407221.jpg'), - ('0030037166', 'The Breast', 'https://images.isbndb.com/covers/71/60/9780030037160.jpg'), - ('0671567659', 'The Moon And The Sun', 'https://images.isbndb.com/covers/76/51/9780671567651.jpg'), - ('055356921X', 'The Strange Files Of Fremont Jones: A Fremont Jones Mystery (Fremont Jones Mysteries)', 'https://images.isbndb.com/covers/92/16/9780553569216.jpg'), - ('0802134580', 'The Last World', 'https://images.isbndb.com/covers/45/85/9780802134585.jpg'), - ('0140143491', 'The Storyteller', 'https://images.isbndb.com/covers/34/92/9780140143492.jpg'), - ('0345423607', 'The Silver Wolf', 'https://images.isbndb.com/covers/36/03/9780345423603.jpg'), - ('0380715430', 'The Mother Tongue', 'https://images.isbndb.com/covers/54/35/9780380715435.jpg'), - ('0553253905', 'Pritikin/weight Loss', 'https://images.isbndb.com/covers/39/00/9780553253900.jpg'), - ('0140106464', 'MOON SPENDER', 'https://images.isbndb.com/covers/64/66/9780140106466.jpg'), - ('0840790813', 'Why Suicide?', 'https://images.isbndb.com/covers/08/11/9780840790811.jpg'), - ('0060191015', 'Lipshtick', 'https://images.isbndb.com/covers/10/16/9780060191016.jpg'), - ('1877741094', 'Zen In The Art Of Writing: Essays On Creativity', 'https://images.isbndb.com/covers/10/98/9781877741098.jpg'), - ('0030419964', 'Pathway To Ecstasy: The Way Of The Dream Mandala', 'https://images.isbndb.com/covers/99/66/9780030419966.jpg'), - ('0399150749', 'The Opposite Of Fate', 'https://images.isbndb.com/covers/07/46/9780399150746.jpg'), - ('0380804883', 'I Wish I Had A Red Dress', 'https://images.isbndb.com/covers/48/87/9780380804887.jpg'), - ('0449219232', 'Jasmine', 'https://images.isbndb.com/covers/92/32/9780449219232.jpg'), - ('0898152399', 'P.M.S. Attacks And Other Inconveniences Of Life', 'https://images.isbndb.com/covers/23/95/9780898152395.jpg'), - ('1877988235', 'Don''t Go To The Cosmetics Counter Without Me: An Eye-Opening Guide To Brand-Name Cosmetics (Don''t Go To The Cosmetic Counter Without Me)', 'https://images.isbndb.com/covers/82/33/9781877988233.jpg'), - ('0553227750', 'Clan Of The Cave Bear', 'https://images.isbndb.com/covers/77/58/9780553227758.jpg'), - ('0525946896', 'Hornet Flight', 'https://images.isbndb.com/covers/68/92/9780525946892.jpg'), - ('0671023411', 'CRASH (Cyberseries)', 'https://images.isbndb.com/covers/34/16/9780671023416.jpg'), - ('0671023403', 'CONNECT (Griffin & Sabine For The ''90s)', 'https://images.isbndb.com/covers/34/09/9780671023409.jpg'), - ('067102339X', 'Chat (Griffin & Sabine For The ''90s)', 'https://images.isbndb.com/covers/33/93/9780671023393.jpg'), - ('039913929X', 'Brothers And Sisters', 'https://images.isbndb.com/covers/92/91/9780399139291.jpg'), - ('156138450X', 'Sisters', 'https://images.isbndb.com/covers/45/01/9781561384501.jpg'), - ('0312997108', 'Planet Of The Umps: A Baseball Life From Behind The Plate', 'https://images.isbndb.com/covers/71/06/9780312997106.jpg'), - ('0764534238', 'Teach Yourself Visually HTML', 'https://images.isbndb.com/covers/42/32/9780764534232.jpg'), - ('0380732130', 'Aaron, Approximately', 'https://images.isbndb.com/covers/21/35/9780380732135.jpg'), - ('1879682737', 'Uncle John''s Absolutely Absorbing Bathroom Reader (Uncle John''s Bathroom Reader #12)', 'https://images.isbndb.com/covers/27/33/9781879682733.jpg'), - ('1879682699', 'Uncle John''s Great Big Bathroom Reader', 'https://images.isbndb.com/covers/26/96/9781879682696.jpg'), - ('1879682656', 'Uncle John''s Ultimate Bathroom Reader (Uncle John''s Bathroom Reader #8)', 'https://images.isbndb.com/covers/26/58/9781879682658.jpg'), - ('0809225050', 'And Then The Shark Told Justin . . . : A Collection Of The Greatest True Golf Stories Ever Told', 'https://images.isbndb.com/covers/50/57/9780809225057.jpg'), - ('0786888911', 'The Don''t Sweat Guide To Holidays: Enjoying The Festivities And Letting Go Of The Tension (Don''t Sweat Guides)', 'https://images.isbndb.com/covers/89/17/9780786888917.jpg'), - ('0425180034', 'Dead Water', 'https://images.isbndb.com/covers/00/37/9780425180037.jpg'), - ('0446364495', 'The Bridges Of Madison County', 'https://images.isbndb.com/covers/44/92/9780446364492.jpg'), - ('0811831310', 'The Worst Case Scenario Survival Handbook: Travel', 'https://images.isbndb.com/covers/13/14/9780811831314.jpg'), - ('006109286X', 'The Pardon (Jack Swyteck)', 'https://images.isbndb.com/covers/28/62/9780061092862.jpg'), - ('0806972742', 'Best Of Gravestone Humor', 'https://images.isbndb.com/covers/27/49/9780806972749.jpg'), - ('0836218426', 'Wildlife Preserves', 'https://images.isbndb.com/covers/84/28/9780836218428.jpg'), - ('0679311149', 'Walter Gretzky: On Family, Hockey And Healing', 'https://images.isbndb.com/covers/11/40/9780679311140.jpg'), - ('0061030848', 'Bell, Cook, And Candle: An Angie Amalfi Mystery', 'https://images.isbndb.com/covers/08/40/9780061030840.jpg'), - ('1575001438', 'Survivor : The Ultimate Game', 'https://images.isbndb.com/covers/14/32/9781575001432.jpg'), - ('0553150510', 'The Wonderful Story Of Henry Sugar And Six More', 'https://images.isbndb.com/covers/05/13/9780553150513.jpg'), - ('0590907239', 'Memories Of Anne Frank: Reflections Of A Childhood Friend', 'https://images.isbndb.com/covers/72/31/9780590907231.jpg'), - ('157145697X', 'Uncle John''s Bathroom Reader: Plunges Into History', 'https://images.isbndb.com/covers/69/77/9781571456977.jpg'), - ('1571454942', 'Uncle John''s All-Purpose Extra-Strength Bathroom Reader (Uncle John''s Bathroom Reader #13)', 'https://images.isbndb.com/covers/49/42/9781571454942.jpg'), - ('1571456988', 'Uncle John''s Supremely Satisfying Bathroom Reader', 'https://images.isbndb.com/covers/69/84/9781571456984.jpg'), - ('1551053020', 'Canadian Ghost Stories', 'https://images.isbndb.com/covers/30/28/9781551053028.jpg'), - ('0919433820', 'Birds Of Calgary (Canadian City Bird Guides)', 'https://images.isbndb.com/covers/38/23/9780919433823.jpg'), - ('1551051737', 'Birds Of Alberta (Lone Pine Field Guides)', 'https://images.isbndb.com/covers/17/34/9781551051734.jpg'), - ('0451457994', '2001: A Space Odyssey', 'https://images.isbndb.com/covers/79/98/9780451457998.jpg'), - ('0740713930', 'Motherhood Is Not For Wimps', 'https://images.isbndb.com/covers/39/34/9780740713934.jpg'), - ('0375756663', 'The Travel Detective: How To Get The Best Service And The Best Deals From Airlines, Hotels, Cruise Ships, And Car Rental Agencies', 'https://images.isbndb.com/covers/66/65/9780375756665.jpg'), - ('0793559847', 'The Rock And Roll Collection: Easy Guitar (Paperback Songs)', 'https://images.isbndb.com/covers/98/48/9780793559848.jpg'), - ('1858283329', 'Numbering The People', 'https://images.isbndb.com/covers/33/26/9781858283326.jpg'), - ('0743403541', 'The Narrowback', 'https://images.isbndb.com/covers/35/42/9780743403542.jpg'), - ('0312978588', 'The Carrier', 'https://images.isbndb.com/covers/85/87/9780312978587.jpg'), - ('0380788438', 'Safe Harbor', 'https://images.isbndb.com/covers/84/39/9780380788439.jpg'), - ('0740726765', 'Sherman''s Lagoon 1991 To 2001: Greatest Hits And Near Misses', 'https://images.isbndb.com/covers/67/67/9780740726767.jpg'), - ('006052510X', 'Happiness: A Novel', 'https://images.isbndb.com/covers/51/01/9780060525101.jpg'), - ('0451409361', 'The Lamorna Wink', 'https://images.isbndb.com/covers/93/62/9780451409362.jpg'), - ('0941263177', 'If You Didn''t Want Grits, How Come You Ordered Breakfast? (The Best Of That''s Jake)', 'https://images.isbndb.com/covers/31/77/9780941263177.jpg'), - ('078689007X', 'Hard Fall', 'https://images.isbndb.com/covers/00/71/9780786890071.jpg'), - ('0356105180', 'Food Repair Handbook', 'https://images.isbndb.com/covers/51/85/9780356105185.jpg'), - ('0740704540', 'Think Ifruity: A Foxtrot Collection', 'https://images.isbndb.com/covers/45/43/9780740704543.jpg'), - ('002862615X', 'The Unofficial Guide To Disneyland 1999 (Serial)', 'https://images.isbndb.com/covers/61/54/9780028626154.jpg'), - ('0670886610', 'Rumours Of A Hurricane', 'https://images.isbndb.com/covers/66/16/9780670886616.jpg'), - ('0785340467', 'How To Be A TV Quiz Show Millionaire', 'https://images.isbndb.com/covers/04/61/9780785340461.jpg'), - ('185326119X', 'The Jungle Book & Second Jungle Book (Wordsworth Childern''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/11/90/9781853261190.jpg'), - ('0233997660', 'What Do You Call A Gorilla With A Banana', 'https://images.isbndb.com/covers/76/67/9780233997667.jpg'), - ('0451528654', 'Black Beauty', 'https://images.isbndb.com/covers/86/50/9780451528650.jpg'), - ('0333493400', 'The Church Cat Abroad (Picturemac)', 'https://images.isbndb.com/covers/34/03/9780333493403.jpg'), - ('0064400034', 'Farmer Boy (Little House)', 'https://images.isbndb.com/covers/00/39/9780064400039.jpg'), - ('089009683X', 'The River Bank - Tales From The Wind In The Willows', 'https://images.isbndb.com/covers/68/33/9780890096833.jpg'), - ('0333493427', 'The Church Mice At Bay', 'https://images.isbndb.com/covers/34/27/9780333493427.jpg'), - ('0333493389', 'THE CHURCH MICE AND THE MOON', 'https://images.isbndb.com/covers/33/80/9780333493380.jpg'), - ('0753451131', 'Cats (Single Subject References)', 'https://images.isbndb.com/covers/11/37/9780753451137.jpg'), - ('1577490185', 'Itty Bitty Kitty Makes A Big Splash', 'https://images.isbndb.com/covers/01/80/9781577490180.jpg'), - ('1577490177', 'Itty Bitty Kitty (The Adventures Of Itty Bitty Kitty)', 'https://images.isbndb.com/covers/01/73/9781577490173.jpg'), - ('0753452243', 'In The Light Of The Moon And Other Bedtime Stories', 'https://images.isbndb.com/covers/22/40/9780753452240.jpg'), - ('1552633845', 'The Cat And The Wizard', 'https://images.isbndb.com/covers/38/47/9781552633847.jpg'), - ('1550372289', 'Hide And Sneak', 'https://images.isbndb.com/covers/22/81/9781550372281.jpg'), - ('1550372556', 'Purple, Green And Yellow (Classic Munsch)', 'https://images.isbndb.com/covers/25/57/9781550372557.jpg'), - ('0786822864', 'William Wegman''s Farm Days', 'https://images.isbndb.com/covers/28/67/9780786822867.jpg'), - ('0786804106', 'My Town', 'https://images.isbndb.com/covers/41/08/9780786804108.jpg'), - ('0679864415', 'Cat Traps (Step-Into-Reading, Step 1)', 'https://images.isbndb.com/covers/44/17/9780679864417.jpg'), - ('086611873X', 'Alice In Wonderland Great Illustrated CL', 'https://images.isbndb.com/covers/87/36/9780866118736.jpg'), - ('0394800168', 'Green Eggs And Ham (I Can Read It All By Myself Beginner Books)', 'https://images.isbndb.com/covers/01/65/9780394800165.jpg'), - ('0064441555', 'Amelia Bedelia (I Can Read Book Level 2)', 'https://images.isbndb.com/covers/15/51/9780064441551.jpg'), - ('0316813079', 'Look-Alikes Jr. : Find More Than 700 Hidden Everyday Objects', 'https://images.isbndb.com/covers/30/75/9780316813075.jpg'), - ('0679892478', 'Ten Apples Up On Top! (Bright & Early Board Books(TM))', 'https://images.isbndb.com/covers/24/72/9780679892472.jpg'), - ('0694003611', 'Goodnight Moon', 'https://images.isbndb.com/covers/36/17/9780694003617.jpg'), - ('0525444440', 'The House At Pooh Corner (Pooh Original Edition)', 'https://images.isbndb.com/covers/44/42/9780525444442.jpg'), - ('014036739X', 'The Phoenix And The Carpet (Puffin Classics)', 'https://images.isbndb.com/covers/73/93/9780140367393.jpg'), - ('1853261246', 'Five Children And It (Wordsworth Children''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/12/44/9781853261244.jpg'), - ('0394829131', 'Great Day For Up (Bright & Early Books(R))', 'https://images.isbndb.com/covers/91/35/9780394829135.jpg'), - ('0920236936', 'Millicent And The Wind (Classic Munsch)', 'https://images.isbndb.com/covers/69/32/9780920236932.jpg'), - ('0525444459', 'When We Were Very Young (Pooh Original Edition)', 'https://images.isbndb.com/covers/44/59/9780525444459.jpg'), - ('0525444467', 'Now We Are Six (Pooh Original Edition)', 'https://images.isbndb.com/covers/44/66/9780525444466.jpg'), - ('2070728951', 'Le Secret', 'https://images.isbndb.com/covers/89/54/9782070728954.jpg'), - ('2012002439', 'Mini Se Déguise', 'https://images.isbndb.com/covers/24/32/9782012002432.jpg'), - ('2070357023', 'La Pomme', 'https://images.isbndb.com/covers/70/24/9782070357024.jpg'), - ('2253076252', 'Le Tableau Du Maître Flamand', 'https://images.isbndb.com/covers/62/54/9782253076254.jpg'), - ('2253006181', 'Pavillon De Femmes', 'https://images.isbndb.com/covers/61/83/9782253006183.jpg'), - ('2908957515', 'Un Thé Bien Fort Et Trois Tasses', 'https://images.isbndb.com/covers/75/18/9782908957518.jpg'), - ('2070412741', 'La Cliente', 'https://images.isbndb.com/covers/27/47/9782070412747.jpg'), - ('2266070592', 'Le Seigneur Des Anneaux, Tome 3 : Le Retour Du Roi', 'https://images.isbndb.com/covers/05/91/9782266070591.jpg'), - ('2266070606', 'Le Seigneur Des Anneaux, Tome 2 : Les Deux Tours', 'https://images.isbndb.com/covers/06/07/9782266070607.jpg'), - ('207042314X', 'L''Homme à L''affût', 'https://images.isbndb.com/covers/31/49/9782070423149.jpg'), - ('2070422070', 'Makhno Et Sa Juive', 'https://images.isbndb.com/covers/20/74/9782070422074.jpg'), - ('2070422097', 'Psychopolis Et Autres Nouvelles', 'https://images.isbndb.com/covers/20/98/9782070422098.jpg'), - ('2070425533', 'Gibiers D''élevage', 'https://images.isbndb.com/covers/55/32/9782070425532.jpg'), - ('2070422089', 'Histoire De Ma Vie', 'https://images.isbndb.com/covers/20/81/9782070422081.jpg'), - ('2070425509', 'Une Page D''histoire Et Autres Nouvelles', 'https://images.isbndb.com/covers/55/01/9782070425501.jpg'), - ('2070408019', 'Mygale', 'https://images.isbndb.com/covers/80/16/9782070408016.jpg'), - ('2856164129', 'Hurlevent', 'https://images.isbndb.com/covers/41/29/9782856164129.jpg'), - ('2226001344', 'Moi Un Comédien', 'https://images.isbndb.com/covers/13/44/9782226001344.jpg'), - ('2070369390', 'Elise Ou La Vraie Vie', 'https://images.isbndb.com/covers/93/93/9782070369393.jpg'), - ('2742718737', 'Café Nostalgia', 'https://images.isbndb.com/covers/87/33/9782742718733.jpg'), - ('2879293073', 'Ianto L''enragé', 'https://images.isbndb.com/covers/30/73/9782879293073.jpg'), - ('2253005266', 'La Chartreuse De Parme', 'https://images.isbndb.com/covers/52/61/9782253005261.jpg'), - ('2253028274', 'Le Jardin D''Acclimatation', 'https://images.isbndb.com/covers/82/77/9782253028277.jpg'), - ('2253046701', 'Lettres D''amour D''un Soldat De Vingt Ans', 'https://images.isbndb.com/covers/67/07/9782253046707.jpg'), - ('2253002933', 'Le Loup Des Steppes', 'https://images.isbndb.com/covers/29/32/9782253002932.jpg'), - ('2290303097', 'Treize Minutes', 'https://images.isbndb.com/covers/30/92/9782290303092.jpg'), - ('2253002887', 'Le Portrait De Dorian Gray', 'https://images.isbndb.com/covers/28/88/9782253002888.jpg'), - ('2020349140', 'Les Chroniques De L''oiseau à Ressort', 'https://images.isbndb.com/covers/91/47/9782020349147.jpg'), - ('2258047803', 'Calvin Et Hobbes, Tome 20 : Il Y A Des Trésors Partout !', 'https://images.isbndb.com/covers/78/08/9782258047808.jpg'), - ('222889401X', 'L''usage Du Monde', 'https://images.isbndb.com/covers/40/12/9782228894012.jpg'), - ('207070906X', 'Rive Gauche', 'https://images.isbndb.com/covers/90/69/9782070709069.jpg'), - ('2070386902', 'La Transparence Des Choses', 'https://images.isbndb.com/covers/69/01/9782070386901.jpg'), - ('2264027312', 'Roman Avec Cocaine', 'https://images.isbndb.com/covers/73/13/9782264027313.jpg'), - ('2070370003', 'Les Fleurs Bleues', 'https://images.isbndb.com/covers/00/09/9782070370009.jpg'), - ('057120631X', 'Requiem For A Dream (Screenplay)', 'https://images.isbndb.com/covers/63/15/9780571206315.jpg'), - ('2070425479', 'Les Exploits D''un Jeune Don Juan', 'https://images.isbndb.com/covers/54/71/9782070425471.jpg'), - ('2869596103', 'La Mouette Juive', 'https://images.isbndb.com/covers/61/08/9782869596108.jpg'), - ('2253010693', 'L''éducation Sentimentale', 'https://images.isbndb.com/covers/06/92/9782253010692.jpg'), - ('2910686078', 'L''occupation Et Autres Textes', 'https://images.isbndb.com/covers/60/79/9782910686079.jpg'), - ('2258047811', 'Calvin Et Hobbes, Tome 21 : Je Suis Trop Génial', 'https://images.isbndb.com/covers/78/15/9782258047815.jpg'), - ('2070377199', 'L''oeuvre De Chair', 'https://images.isbndb.com/covers/71/90/9782070377190.jpg'), - ('2253056383', 'Hotel Styx', 'https://images.isbndb.com/covers/63/86/9782253056386.jpg'), - ('2253047848', 'Fête Des Mères', 'https://images.isbndb.com/covers/78/41/9782253047841.jpg'), - ('2253040940', 'Cinna', 'https://images.isbndb.com/covers/09/41/9782253040941.jpg'), - ('2846710457', 'Les Grands Philosophes Et Leur Philosophie : Une Histoire Mouvementée Et Belliqueuse', 'https://images.isbndb.com/covers/04/59/9782846710459.jpg'), - ('2738112420', 'Pourquoi Le Monde Est-il Mathématique ?', 'https://images.isbndb.com/covers/24/22/9782738112422.jpg'), - ('273810858X', 'L''estime De Soi : S''aimer Pour Mieux Vivre Avec Les Autres', 'https://images.isbndb.com/covers/85/86/9782738108586.jpg'), - ('2843040612', 'Corps De Femme', 'https://images.isbndb.com/covers/06/10/9782843040610.jpg'), - ('2070764702', 'Ben Laden Secret De Famille De L''Amérique', 'https://images.isbndb.com/covers/47/09/9782070764709.jpg'), - ('2746500582', 'En Amour, Sommes-nous Des Bêtes ?', 'https://images.isbndb.com/covers/05/87/9782746500587.jpg'), - ('2264035951', 'Le Tueur Aveugle', 'https://images.isbndb.com/covers/59/50/9782264035950.jpg'), - ('2020301016', 'Hier', 'https://images.isbndb.com/covers/10/15/9782020301015.jpg'), - ('2020259109', 'Pourquoi Lire Les Classiques', 'https://images.isbndb.com/covers/91/01/9782020259101.jpg'), - ('2070373630', 'Exercices De Style', 'https://images.isbndb.com/covers/36/35/9782070373635.jpg'), - ('2264027789', 'Les Oiseaux De Fra Angelico', 'https://images.isbndb.com/covers/77/88/9782264027788.jpg'), - ('2020479915', 'La Taupe', 'https://images.isbndb.com/covers/99/12/9782020479912.jpg'), - ('2070422135', 'Leurre De Vérité Et Autres Nouvelles', 'https://images.isbndb.com/covers/21/35/9782070422135.jpg'), - ('2070423530', 'Le Capitaine Fracasse', 'https://images.isbndb.com/covers/35/38/9782070423538.jpg'), - ('2253004014', 'Les Liaisons Dangereuses', 'https://images.isbndb.com/covers/40/11/9782253004011.jpg'), - ('2070400557', 'L''Ecriture Ou La Vie', 'https://images.isbndb.com/covers/05/53/9782070400553.jpg'), - ('2253051209', 'Samarcande', 'https://images.isbndb.com/covers/12/06/9782253051206.jpg'), - ('2869309651', 'Correspondance', 'https://images.isbndb.com/covers/96/54/9782869309654.jpg'), - ('2253043982', 'L''un Est L''autre : Des Relations Entre Hommes Et Femmes', 'https://images.isbndb.com/covers/39/80/9782253043980.jpg'), - ('2020309610', 'De Si Jolis Chevaux', 'https://images.isbndb.com/covers/96/15/9782020309615.jpg'), - ('2264034769', 'Marcovaldo', 'https://images.isbndb.com/covers/47/62/9782264034762.jpg'), - ('2867447763', 'Dans Ces Bras-là - Prix Renaudot Des Lycéens 2000', 'https://images.isbndb.com/covers/77/61/9782867447761.jpg'), - ('2070371700', 'Mangeclous', 'https://images.isbndb.com/covers/17/09/9782070371709.jpg'), - ('2742740945', 'Préméditation', 'https://images.isbndb.com/covers/09/49/9782742740949.jpg'), - ('2742706372', 'La Grosse Femme D''à Côté Est Enceinte', 'https://images.isbndb.com/covers/63/72/9782742706372.jpg'), - ('2020067447', 'Les Fous De Bassan', 'https://images.isbndb.com/covers/74/47/9782020067447.jpg'), - ('2070376702', 'Désert', 'https://images.isbndb.com/covers/67/04/9782070376704.jpg'), - ('2070368726', 'Le Chant Du Monde', 'https://images.isbndb.com/covers/87/23/9782070368723.jpg'), - ('2070322793', 'Manifestes Du Surréalisme', 'https://images.isbndb.com/covers/27/94/9782070322794.jpg'), - ('2070324303', 'Par-delà Bien Et Mal', 'https://images.isbndb.com/covers/43/09/9782070324309.jpg'), - ('2070362841', 'Le Château', 'https://images.isbndb.com/covers/28/44/9782070362844.jpg'), - ('2070372162', 'MOBY DICK T 1', 'https://images.isbndb.com/covers/21/64/9782070372164.jpg'), - ('2020126540', 'Je Suis Né', 'https://images.isbndb.com/covers/65/40/9782020126540.jpg'), - ('270731028X', 'La Salle De Bain', 'https://images.isbndb.com/covers/02/86/9782707310286.jpg'), - ('2213006180', 'Le Kôan Zen : Essai Sur Le Bouddhisme Zen', 'https://images.isbndb.com/covers/61/85/9782213006185.jpg'), - ('2707301108', 'Le Mythe De L''intériorité', 'https://images.isbndb.com/covers/11/09/9782707301109.jpg'), - ('202005924X', 'Patience Dans L''azur', 'https://images.isbndb.com/covers/92/44/9782020059244.jpg'), - ('2707126934', 'L''Intelligence Collective : Pour Une Anthropologie Du Cyberspace', 'https://images.isbndb.com/covers/69/31/9782707126931.jpg'), - ('2707126926', 'Nous N''Avons Jamais Ete Modernes', 'https://images.isbndb.com/covers/69/24/9782707126924.jpg'), - ('2020088959', 'L''Univers Ambidextre : Les Miroirs De L''espace-temps', 'https://images.isbndb.com/covers/89/54/9782020088954.jpg'), - ('2020325276', 'Trois Défis Pour Un Droit Mondial', 'https://images.isbndb.com/covers/52/71/9782020325271.jpg'), - ('273810228X', 'Les Nouveaux Visages De La Folie', 'https://images.isbndb.com/covers/22/87/9782738102287.jpg'), - ('2738104134', 'Comment Gérer Les Personnalités Difficiles', 'https://images.isbndb.com/covers/41/37/9782738104137.jpg'), - ('2738102158', 'Les Nourritures Affectives', 'https://images.isbndb.com/covers/21/57/9782738102157.jpg'), - ('286930756X', 'Introduction à L''oeuvre De Freud, Ferenczi...', 'https://images.isbndb.com/covers/75/68/9782869307568.jpg'), - ('0684803534', 'Life On The Screen', 'https://images.isbndb.com/covers/35/31/9780684803531.jpg'), - ('2904299106', 'Aie, Mes Aieux! Liens Transgenerationnels, Sectrets De Familie, Syndrome D Anniversaire Transmission Des Traumatismes Et Pratique Du Genosociogramme.', 'https://images.isbndb.com/covers/91/00/9782904299100.jpg'), - ('2253150371', 'Sac D''os', 'https://images.isbndb.com/covers/03/74/9782253150374.jpg'), - ('207071781X', 'Papiers Collés', 'https://images.isbndb.com/covers/78/11/9782070717811.jpg'), - ('225306386X', 'Le Gai Savoir', 'https://images.isbndb.com/covers/38/65/9782253063865.jpg'), - ('284205007X', 'Mon Enfance', 'https://images.isbndb.com/covers/00/78/9782842050078.jpg'), - ('274272494X', 'Nord Perdu, Suivi De Douze France', 'https://images.isbndb.com/covers/49/49/9782742724949.jpg'), - ('2742730486', 'Limbes - Limbo : Un Hommage à Samuel Beckett', 'https://images.isbndb.com/covers/04/83/9782742730483.jpg'), - ('2715219512', 'Ceci N''est Pas Un Conte', 'https://images.isbndb.com/covers/95/19/9782715219519.jpg'), - ('2070378411', 'L''Enchanteur', 'https://images.isbndb.com/covers/84/18/9782070378418.jpg'), - ('2290303054', 'Les Particules élémentaires', 'https://images.isbndb.com/covers/30/54/9782290303054.jpg'), - ('2070388638', 'La Mécanique Des Femmes', 'https://images.isbndb.com/covers/86/39/9782070388639.jpg'), - ('2070409848', 'Naissance Des Fantômes', 'https://images.isbndb.com/covers/98/46/9782070409846.jpg'), - ('2020309629', 'Suttree', 'https://images.isbndb.com/covers/96/22/9782020309622.jpg'), - ('2070385698', 'Portrait De L''artiste En Jeune Homme', 'https://images.isbndb.com/covers/56/90/9782070385690.jpg'), - ('2020374277', 'Nu Couché', 'https://images.isbndb.com/covers/42/79/9782020374279.jpg'), - ('2020403412', 'La Conférence De Cintegabelle', 'https://images.isbndb.com/covers/34/12/9782020403412.jpg'), - ('2020352850', 'La Compagnie Des Spectres', 'https://images.isbndb.com/covers/28/57/9782020352857.jpg'), - ('229030879X', 'Baise-moi', 'https://images.isbndb.com/covers/87/90/9782290308790.jpg'), - ('2020551306', 'La Vie Sexuelle De Catherine M., Précédé De "Pourquoi Et Comment"', 'https://images.isbndb.com/covers/13/04/9782020551304.jpg'), - ('207037467X', 'Les Cerfs-volants', 'https://images.isbndb.com/covers/46/70/9782070374670.jpg'), - ('2070362426', 'Les Racines Du Ciel', 'https://images.isbndb.com/covers/24/24/9782070362424.jpg'), - ('2867446821', 'L''Adversaire', 'https://images.isbndb.com/covers/68/25/9782867446825.jpg'), - ('2264024976', 'Désobéir', 'https://images.isbndb.com/covers/49/78/9782264024978.jpg'), - ('2221078306', 'LA MORT INTIME. : Ceux Qui Vont Mourir Nous Apprennent à Vivre', 'https://images.isbndb.com/covers/83/03/9782221078303.jpg'), - ('2842050525', 'Le Surmâle', 'https://images.isbndb.com/covers/05/28/9782842050528.jpg'), - ('2266064975', 'Nuits D''encre', 'https://images.isbndb.com/covers/49/72/9782266064972.jpg'), - ('207038781X', 'The Dunwich Horror - L''Horreur De Dunwich', 'https://images.isbndb.com/covers/78/16/9782070387816.jpg'), - ('2746500655', 'L''Incandescent', 'https://images.isbndb.com/covers/06/55/9782746500655.jpg'), - ('2070400867', 'Lambeaux', 'https://images.isbndb.com/covers/08/67/9782070400867.jpg'), - ('2844120644', 'Effroyables Jardins', 'https://images.isbndb.com/covers/06/49/9782844120649.jpg'), - ('2020395886', 'La Culture Expliquée à Ma Fille', 'https://images.isbndb.com/covers/58/85/9782020395885.jpg'), - ('2253012556', 'Mémoires D''outre-tombe, Tome 1', 'https://images.isbndb.com/covers/25/59/9782253012559.jpg'), - ('2020068079', 'Traite Du Zen Et De L''Entretie', 'https://images.isbndb.com/covers/80/79/9782020068079.jpg'), - ('2260012078', 'Atlas', 'https://images.isbndb.com/covers/20/78/9782260012078.jpg'), - ('2876860791', 'Letiers-instruit', 'https://images.isbndb.com/covers/07/97/9782876860797.jpg'), - ('2876860414', 'Le Contrat Naturel', 'https://images.isbndb.com/covers/04/14/9782876860414.jpg'), - ('2876860783', 'Eclaircissements', 'https://images.isbndb.com/covers/07/80/9782876860780.jpg'), - ('2876860031', 'Statues : Le Second Livre Des Fondations', 'https://images.isbndb.com/covers/00/32/9782876860032.jpg'), - ('2082115178', 'Détachement', 'https://images.isbndb.com/covers/51/79/9782082115179.jpg'), - ('208211533X', 'L''hermaphrodite', 'https://images.isbndb.com/covers/53/39/9782082115339.jpg'), - ('2246275512', 'Genèse', 'https://images.isbndb.com/covers/55/10/9782246275510.jpg'), - ('2246334314', 'Les Cinq Sens', 'https://images.isbndb.com/covers/43/16/9782246334316.jpg'), - ('2707303208', 'Hermès V : Le Passage Du Nord-Ouest', 'https://images.isbndb.com/covers/32/02/9782707303202.jpg'), - ('2020385856', 'Bouquiner : Autobiobibliographie', 'https://images.isbndb.com/covers/58/55/9782020385855.jpg'), - ('2869304870', 'Changement De Décor', 'https://images.isbndb.com/covers/48/71/9782869304871.jpg'), - ('2070372391', 'Berlin, Alexanderplatz', 'https://images.isbndb.com/covers/23/93/9782070372393.jpg'), - ('2070374556', 'Confession D''un Masque', 'https://images.isbndb.com/covers/45/57/9782070374557.jpg'), - ('2070377865', 'Portrait Du Joueur', 'https://images.isbndb.com/covers/78/62/9782070377862.jpg'), - ('2070363511', 'Au-dessous Du Volcan', 'https://images.isbndb.com/covers/35/13/9782070363513.jpg'), - ('2070386023', 'Le Lièvre De Vatanen', 'https://images.isbndb.com/covers/60/24/9782070386024.jpg'), - ('224648751X', 'Le Désir D''être Un Volcan', 'https://images.isbndb.com/covers/75/17/9782246487517.jpg'), - ('2742720073', 'Triste Vie', 'https://images.isbndb.com/covers/00/71/9782742720071.jpg'), - ('2070360784', 'L''Exil Et Le Royaume', 'https://images.isbndb.com/covers/07/89/9782070360789.jpg'), - ('2070419584', 'Océan Mer', 'https://images.isbndb.com/covers/95/86/9782070419586.jpg'), - ('2070378233', 'La Guerre De La Fin Du Monde', 'https://images.isbndb.com/covers/82/34/9782070378234.jpg'), - ('2742714448', 'De Beaux Lendemains', 'https://images.isbndb.com/covers/44/45/9782742714445.jpg'), - ('2743608846', 'Les Quatre Verites', 'https://images.isbndb.com/covers/88/42/9782743608842.jpg'), - ('2246616115', 'La Joueuse De Go - Prix Goncourt Des Lycéens 2001', 'https://images.isbndb.com/covers/61/15/9782246616115.jpg'), - ('2070393453', 'Le Choix De Sophie', 'https://images.isbndb.com/covers/34/59/9782070393459.jpg'), - ('2290053945', 'Lettres Parisiennes : Histoires D''exil', 'https://images.isbndb.com/covers/39/42/9782290053942.jpg'), - ('2742718877', 'Histoire D''Omaya', 'https://images.isbndb.com/covers/88/70/9782742718870.jpg'), - ('2742722688', 'Prodige', 'https://images.isbndb.com/covers/26/86/9782742722686.jpg'), - ('2844121152', 'Aimer à Peine', 'https://images.isbndb.com/covers/11/58/9782844121158.jpg'), - ('2742713352', 'Grâce Et Dénuement', 'https://images.isbndb.com/covers/33/56/9782742713356.jpg'), - ('2912517168', 'Jeune Fille à La Perle', 'https://images.isbndb.com/covers/71/66/9782912517166.jpg'), - ('2070767000', 'La Petite Chartreuse : Prix Du Livre Inter 2003', 'https://images.isbndb.com/covers/70/07/9782070767007.jpg'), - ('2070757811', 'La Nouvelle Pornographie', 'https://images.isbndb.com/covers/78/17/9782070757817.jpg'), - ('2210422701', 'Petite Fabrique De Littérature', 'https://images.isbndb.com/covers/27/04/9782210422704.jpg'), - ('2742727329', 'La Sacoche', 'https://images.isbndb.com/covers/73/22/9782742727322.jpg'), - ('2743608765', 'Pensées Secrètes', 'https://images.isbndb.com/covers/87/67/9782743608767.jpg'), - ('220725092X', 'La Douce Empoisonneuse', 'https://images.isbndb.com/covers/09/21/9782207250921.jpg'), - ('2867449375', 'L''Amour, Roman', 'https://images.isbndb.com/covers/93/76/9782867449376.jpg'), - ('2226116745', 'L''Evangile Selon Pilate', 'https://images.isbndb.com/covers/67/41/9782226116741.jpg'), - ('2226116494', 'Le Concile De Pierre', 'https://images.isbndb.com/covers/64/99/9782226116499.jpg'), - ('2867447143', 'Berg Et Beck', 'https://images.isbndb.com/covers/71/43/9782867447143.jpg'), - ('2842630254', 'Je Voudrais Que Quelqu''un M''attende Quelque Part', 'https://images.isbndb.com/covers/02/56/9782842630256.jpg'), - ('2742722629', 'Tombouctou', 'https://images.isbndb.com/covers/26/24/9782742722624.jpg'), - ('2742701729', 'Mr Vertigo', 'https://images.isbndb.com/covers/17/28/9782742701728.jpg'), - ('2868699529', 'L''attachée', 'https://images.isbndb.com/covers/95/27/9782868699527.jpg'), - ('2742700064', 'La Véritable Histoire Du Dernier Roi Socialiste', 'https://images.isbndb.com/covers/00/66/9782742700066.jpg'), - ('2742728759', 'La Conversation Amoureuse', 'https://images.isbndb.com/covers/87/56/9782742728756.jpg'), - ('2742734929', 'Le Monde Du Livre En Question :Au Commencement était La Lettre...', 'https://images.isbndb.com/covers/49/24/9782742734924.jpg'), - ('2070417611', 'Romain Gary', 'https://images.isbndb.com/covers/76/12/9782070417612.jpg'), - ('2070408957', 'L''Avenir', 'https://images.isbndb.com/covers/89/55/9782070408955.jpg'), - ('2070408582', 'Mille Six Cents Ventres - Prix Goncourt Des Lycéens 1998', 'https://images.isbndb.com/covers/85/80/9782070408580.jpg'), - ('2266062344', 'Fortitude', 'https://images.isbndb.com/covers/23/43/9782266062343.jpg'), - ('2020385805', 'Neige', 'https://images.isbndb.com/covers/58/00/9782020385800.jpg'), - ('2070714489', 'Lettres à Son Frère Théo', 'https://images.isbndb.com/covers/44/83/9782070714483.jpg'), - ('2020257785', 'L''épopée Du Buveur D''eau', 'https://images.isbndb.com/covers/77/87/9782020257787.jpg'), - ('2020062143', 'La Barbare', 'https://images.isbndb.com/covers/21/45/9782020062145.jpg'), - ('2868698921', 'Moon Palace', 'https://images.isbndb.com/covers/89/26/9782868698926.jpg'), - ('222613624X', 'L''Empire Des Loups', 'https://images.isbndb.com/covers/62/44/9782226136244.jpg'), - ('2020375060', 'Tigre En Papier', 'https://images.isbndb.com/covers/50/61/9782020375061.jpg'), - ('2020490668', 'Une Rivière Verte Et Silencieuse', 'https://images.isbndb.com/covers/06/65/9782020490665.jpg'), - ('2070301028', 'Quelqu''un D''autre', 'https://images.isbndb.com/covers/10/27/9782070301027.jpg'), - ('2070259811', 'La Guerre De La Fin Du Monde', 'https://images.isbndb.com/covers/98/16/9782070259816.jpg'), - ('2228128007', 'Dire Et Interdire : Eléments De Jurologie', 'https://images.isbndb.com/covers/80/01/9782228128001.jpg'), - ('2869305583', 'Un Tout Petit Monde', 'https://images.isbndb.com/covers/55/88/9782869305588.jpg'), - ('2869304560', 'Jeu De Société', 'https://images.isbndb.com/covers/45/67/9782869304567.jpg'), - ('2869302940', 'Le Dictionnaire Du Diable', 'https://images.isbndb.com/covers/29/45/9782869302945.jpg'), - ('2743603291', 'Thérapie', 'https://images.isbndb.com/covers/32/98/9782743603298.jpg'), - ('2253151017', 'Le Dit De Tianyi - Prix Femina 1998', 'https://images.isbndb.com/covers/10/12/9782253151012.jpg'), - ('2742723951', 'TROIS FOIS SEPTEMBRE', 'https://images.isbndb.com/covers/39/59/9782742723959.jpg'), - ('2742708715', 'Instruments Des Ténèbres', 'https://images.isbndb.com/covers/87/10/9782742708710.jpg'), - ('2742701826', 'Les Variations Goldberg', 'https://images.isbndb.com/covers/18/27/9782742701827.jpg'), - ('2742717730', 'L''Empreinte De L''ange', 'https://images.isbndb.com/covers/77/36/9782742717736.jpg'), - ('2742743510', 'Une Adoration', 'https://images.isbndb.com/covers/35/13/9782742743513.jpg'), - ('2070757625', 'Balzac Et La Petite Tailleuse Chinoise', 'https://images.isbndb.com/covers/76/26/9782070757626.jpg'), - ('2070422437', 'Trois Chevaux', 'https://images.isbndb.com/covers/24/32/9782070422432.jpg'), - ('2070414167', 'Naissances', 'https://images.isbndb.com/covers/41/61/9782070414161.jpg'), - ('0812590465', 'Ariadne''s Web ( Book Of The Gods, Vol. II )', 'https://images.isbndb.com/covers/04/63/9780812590463.jpg'), - ('0807511455', 'The Chocolate Sundae Mystery (The Boxcar Children Mysteries #46)', 'https://images.isbndb.com/covers/14/59/9780807511459.jpg'), - ('080751604X', 'The Dinosaur Mystery (The Boxcar Children Mysteries #44)', 'https://images.isbndb.com/covers/60/41/9780807516041.jpg'), - ('0807554065', 'The Mystery Of The Missing Cat (The Boxcar Children Mysteries #42)', 'https://images.isbndb.com/covers/40/67/9780807554067.jpg'), - ('0807528552', 'The Ghost Ship Mystery (The Boxcar Children Mysteries #39)', 'https://images.isbndb.com/covers/85/56/9780807528556.jpg'), - ('0807510793', 'The Castle Mystery (The Boxcar Children Mysteries #36)', 'https://images.isbndb.com/covers/07/97/9780807510797.jpg'), - ('0807553980', 'The Mystery Of The Singing Ghost (Boxcar Children #31)', 'https://images.isbndb.com/covers/39/85/9780807553985.jpg'), - ('0807553689', 'The Mystery Cruise (The Boxcar Children Mysteries #29)', 'https://images.isbndb.com/covers/36/88/9780807553688.jpg'), - ('0807553859', 'The Mystery Of The Mixed-up Zoo (The Boxcar Children, No. 26)', 'https://images.isbndb.com/covers/38/55/9780807553855.jpg'), - ('0807531782', 'The Haunted Cabin Mystery (The Boxcar Children Mysteries #20)', 'https://images.isbndb.com/covers/17/85/9780807531785.jpg'), - ('0807553670', 'Mystery Behind The Wall (The Boxcar Children Mysteries #17)', 'https://images.isbndb.com/covers/36/71/9780807553671.jpg'), - ('0807507091', 'Bicycle Mystery (The Boxcar Children Mysteries #15)', 'https://images.isbndb.com/covers/70/94/9780807507094.jpg'), - ('0807507946', 'Blue Bay Mystery (The Boxcar Children Mysteries #6)', 'https://images.isbndb.com/covers/79/40/9780807507940.jpg'), - ('0807551414', 'Mike''s Mystery (The Boxcar Children Mysteries #5)', 'https://images.isbndb.com/covers/14/17/9780807551417.jpg'), - ('0807576743', 'Surprise Island (The Boxcar Children Mysteries #2)', 'https://images.isbndb.com/covers/67/48/9780807576748.jpg'), - ('0807576239', 'The Mystery Of The Stolen Sword (The Boxcar Children Mysteries #67)', 'https://images.isbndb.com/covers/62/36/9780807576236.jpg'), - ('0807554189', 'The Mystery On Stage (Boxcar Children Mysteries #43)', 'https://images.isbndb.com/covers/41/80/9780807554180.jpg'), - ('0807554014', 'The Mystery Of The Lost Village (The Boxcar Children Mysteries #37)', 'https://images.isbndb.com/covers/40/12/9780807554012.jpg'), - ('0807553948', 'The Mystery At The Dog Show (The Boxcar Children Mysteries #35)', 'https://images.isbndb.com/covers/39/47/9780807553947.jpg'), - ('0807553395', 'The Mystery Horse (The Boxcar Children Mysteries #34)', 'https://images.isbndb.com/covers/33/98/9780807553398.jpg'), - ('0807565350', 'The Pizza Mystery (The Boxcar Children Mysteries #33)', 'https://images.isbndb.com/covers/53/53/9780807565353.jpg'), - ('0807503193', 'The Amusement Park Mystery (The Boxcar Children Mysteries #25)', 'https://images.isbndb.com/covers/31/95/9780807503195.jpg'), - ('0807553794', 'The Mystery Of The Hidden Painting (The Boxcar Children Mysteries #24)', 'https://images.isbndb.com/covers/37/94/9780807553794.jpg'), - ('0807503673', 'The Animal Shelter Mystery (The Boxcar Children Mysteries #22)', 'https://images.isbndb.com/covers/36/76/9780807503676.jpg'), - ('0807515604', 'The Deserted Library Mystery (The Boxcar Children Mysteries #21)', 'https://images.isbndb.com/covers/56/00/9780807515600.jpg'), - ('0807509760', 'The Bus Station Mystery (The Boxcar Children Mysteries #18)', 'https://images.isbndb.com/covers/97/60/9780807509760.jpg'), - ('0807553727', 'Mystery In The Sand (The Boxcar Children Mysteries #16)', 'https://images.isbndb.com/covers/37/25/9780807553725.jpg'), - ('0807580872', 'Tree House Mystery (The Boxcar Children Mysteries #14)', 'https://images.isbndb.com/covers/08/75/9780807580875.jpg'), - ('080757516X', 'Snowbound Mystery (The Boxcar Children Mysteries #13)', 'https://images.isbndb.com/covers/51/61/9780807575161.jpg'), - ('0807572632', 'Schoolhouse Mystery (The Boxcar Children Mysteries #10)', 'https://images.isbndb.com/covers/26/34/9780807572634.jpg'), - ('0807534137', 'Houseboat Mystery (The Boxcar Children Mysteries #12)', 'https://images.isbndb.com/covers/41/37/9780807534137.jpg'), - ('0590494465', 'The Haunted Mask (Goosebumps)', 'https://images.isbndb.com/covers/44/65/9780590494465.jpg'), - ('0590568930', 'The Curse Of Camp Cold Lake (Goosebumps)', 'https://images.isbndb.com/covers/89/37/9780590568937.jpg'), - ('0590047116', 'Hangin'' With The Backstreet Boys: An Unauthorized Biography', 'https://images.isbndb.com/covers/71/11/9780590047111.jpg'), - ('1561441279', 'Modern Publishing''s Unauthorized Biography Of Jason Priestley', 'https://images.isbndb.com/covers/12/73/9781561441273.jpg'), - ('0590479083', 'The Case Of The Stolen Jewel (Clue Jr. #2)', 'https://images.isbndb.com/covers/90/80/9780590479080.jpg'), - ('0590479075', 'The Case Of The Secret Message (Clue Jr. #1)', 'https://images.isbndb.com/covers/90/73/9780590479073.jpg'), - ('0061067563', 'Beverly Hills 90210: Summer Love', 'https://images.isbndb.com/covers/75/63/9780061067563.jpg'), - ('0061061468', 'More Than Words (Beverly Hills, 90210)', 'https://images.isbndb.com/covers/14/62/9780061061462.jpg'), - ('0205086802', 'The Pageant Of World History', 'https://images.isbndb.com/covers/68/01/9780205086801.jpg'), - ('039489118X', 'The Landmark History Of The American People:Vol. 1', 'https://images.isbndb.com/covers/11/87/9780394891187.jpg'), - ('0385174837', 'English Made Simple, Revised Edition: A Complete, Step-by-Step Guide To Better Language Skills (Made Simple (Broadway Books))', 'https://images.isbndb.com/covers/48/31/9780385174831.jpg'), - ('0441007740', 'Blood To Blood: The Dracula Story Continues', 'https://images.isbndb.com/covers/77/45/9780441007745.jpg'), - ('0965072444', 'The Tao Of Birth Days: Using The I-Ching To Become Who You Were Born To Be', 'https://images.isbndb.com/covers/24/41/9780965072441.jpg'), - ('0451404432', 'Touch Of Night (Dreamspun)', 'https://images.isbndb.com/covers/44/35/9780451404435.jpg'), - ('0553282123', 'The Oat And Wheat Bran Health Plan: The Delicious Way To Lower Cholesterol...', 'https://images.isbndb.com/covers/21/22/9780553282122.jpg'), - ('0842317112', 'In Touch (Deluxe Gift Edition)', 'https://images.isbndb.com/covers/71/15/9780842317115.jpg'), - ('0380762609', 'All I Need Is You', 'https://images.isbndb.com/covers/26/06/9780380762606.jpg'), - ('0440237009', 'The House On Hope Street', 'https://images.isbndb.com/covers/70/06/9780440237006.jpg'), - ('0310214599', 'Think Big: Unleashing Your Potential For Excellence', 'https://images.isbndb.com/covers/45/95/9780310214595.jpg'), - ('0671749412', 'Going Home', 'https://images.isbndb.com/covers/94/15/9780671749415.jpg'), - ('0440186560', 'To Love Again', 'https://images.isbndb.com/covers/65/64/9780440186564.jpg'), - ('0440184053', 'Summer''s End', 'https://images.isbndb.com/covers/40/58/9780440184058.jpg'), - ('0440185327', 'Thurston House', 'https://images.isbndb.com/covers/53/21/9780440185321.jpg'), - ('0440217547', 'Accident', 'https://images.isbndb.com/covers/75/41/9780440217541.jpg'), - ('0515115630', 'Family Blessings', 'https://images.isbndb.com/covers/56/35/9780515115635.jpg'), - ('0671667653', 'The Gathering Storm (Men At Arms, Book 1)', 'https://images.isbndb.com/covers/76/58/9780671667658.jpg'), - ('0449132307', 'Come Sunrise', 'https://images.isbndb.com/covers/23/02/9780449132302.jpg'), - ('055357602X', 'In A Class By Itself', 'https://images.isbndb.com/covers/60/23/9780553576023.jpg'), - ('0451196716', 'The Long Walk', 'https://images.isbndb.com/covers/67/12/9780451196712.jpg'), - ('0671533983', 'Diana: Her New Life', 'https://images.isbndb.com/covers/39/84/9780671533984.jpg'), - ('0312963173', 'Here, Kitty, Kitty', 'https://images.isbndb.com/covers/31/70/9780312963170.jpg'), - ('1551662779', 'The Best Of Enemies: Who Would You Trust With Your Life? Think Again.', 'https://images.isbndb.com/covers/27/70/9781551662770.jpg'), - ('1551668181', 'Innocents Club', 'https://images.isbndb.com/covers/81/85/9781551668185.jpg'), - ('1551660482', 'Guilt By Silence', 'https://images.isbndb.com/covers/04/86/9781551660486.jpg'), - ('1551661551', 'Common Passions', 'https://images.isbndb.com/covers/15/51/9781551661551.jpg'), - ('0451201744', 'The Walking', 'https://images.isbndb.com/covers/17/44/9780451201744.jpg'), - ('0515090166', 'The Cat Who Saw Red', 'https://images.isbndb.com/covers/01/61/9780515090161.jpg'), - ('0515087947', 'The Cat Who Turned On And Off', 'https://images.isbndb.com/covers/79/49/9780515087949.jpg'), - ('0453004687', 'Thinner', 'https://images.isbndb.com/covers/46/88/9780453004688.jpg'), - ('067103975X', 'Salem''s Lot', 'https://images.isbndb.com/covers/97/52/9780671039752.jpg'), - ('0670868361', 'Desperation', 'https://images.isbndb.com/covers/83/60/9780670868360.jpg'), - ('0452262143', 'The Drawing Of The Three (The Dark Tower II) ISBN 0452262143', 'https://images.isbndb.com/covers/21/40/9780452262140.jpg'), - ('0451167805', 'Firestarter', 'https://images.isbndb.com/covers/78/04/9780451167804.jpg'), - ('0451132378', 'Pet Sematary', 'https://images.isbndb.com/covers/23/76/9780451132376.jpg'), - ('0451190564', 'The Night Journey (The Green Mile, Part 5)', 'https://images.isbndb.com/covers/05/67/9780451190567.jpg'), - ('0451190556', 'Green Mile Book 4: The Bad Death Of Eduard Delacroix: The Green Mile, Part 4', 'https://images.isbndb.com/covers/05/50/9780451190550.jpg'), - ('0140258574', 'Green Mile Pb Vol 2', 'https://images.isbndb.com/covers/85/78/9780140258578.jpg'), - ('055357227X', 'The Web', 'https://images.isbndb.com/covers/22/78/9780553572278.jpg'), - ('055329170X', 'Time Bomb (Alex Delaware Novels)', 'https://images.isbndb.com/covers/17/04/9780553291704.jpg'), - ('0425174271', 'Certain Prey', 'https://images.isbndb.com/covers/42/72/9780425174272.jpg'), - ('039914613X', 'Easy Prey', 'https://images.isbndb.com/covers/61/38/9780399146138.jpg'), - ('0399143823', 'Secret Prey', 'https://images.isbndb.com/covers/38/23/9780399143823.jpg'), - ('0849936373', 'Rebel Glory (Lightning On Ice)', 'https://images.isbndb.com/covers/63/71/9780849936371.jpg'), - ('0679873066', 'In Leo''s Lair (Zodiac Chillers)', 'https://images.isbndb.com/covers/30/68/9780679873068.jpg'), - ('0425126064', 'Shadow Prey', 'https://images.isbndb.com/covers/60/66/9780425126066.jpg'), - ('0765191121', 'Postmortem / Body Of Evidence / All That Remains (Kay Scarpetta)', 'https://images.isbndb.com/covers/11/20/9780765191120.jpg'), - ('0446328413', 'The Goonies', 'https://images.isbndb.com/covers/84/18/9780446328418.jpg'), - ('0440986524', 'That Was Then, This Is Now', 'https://images.isbndb.com/covers/65/22/9780440986522.jpg'), - ('0590440012', 'The Call Of The Wild (Apple Classics)', 'https://images.isbndb.com/covers/00/11/9780590440011.jpg'), - ('1551664313', 'Random Acts: Does It Take A Killer To Catch A Killer?', 'https://images.isbndb.com/covers/43/16/9781551664316.jpg'), - ('0590443305', 'The Accident', 'https://images.isbndb.com/covers/33/02/9780590443302.jpg'), - ('0671002937', 'Daughters Of Silence (Fear Street, No. 6)', 'https://images.isbndb.com/covers/29/30/9780671002930.jpg'), - ('0061061573', 'The Attic (Nightmare Inn)', 'https://images.isbndb.com/covers/15/78/9780061061578.jpg'), - ('0743475488', 'Kill And Tell: A Novel', 'https://images.isbndb.com/covers/54/88/9780743475488.jpg'), - ('0061042935', 'Everywhere That Mary Went', 'https://images.isbndb.com/covers/29/35/9780061042935.jpg'), - ('0778320057', 'Scent Of A Killer (Mira)', 'https://images.isbndb.com/covers/00/50/9780778320050.jpg'), - ('0425189864', 'Mortal Prey (Lucas Davenport, No. 13)', 'https://images.isbndb.com/covers/98/63/9780425189863.jpg'), - ('0451202287', 'Tracking Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/22/84/9780451202284.jpg'), - ('0821766775', 'Present Danger', 'https://images.isbndb.com/covers/67/74/9780821766774.jpg'), - ('0451168623', 'When The Bough Breaks', 'https://images.isbndb.com/covers/86/27/9780451168627.jpg'), - ('0451176898', 'More Mystery Cats (Signet)', 'https://images.isbndb.com/covers/68/99/9780451176899.jpg'), - ('0595129838', 'Rules For Roommates: The Ultimate Guide To Reclaiming Your Space And Your Sanity', 'https://images.isbndb.com/covers/98/36/9780595129836.jpg'), - ('0965735974', 'Some Things You Should Know (A Collection Of Stories)', 'https://images.isbndb.com/covers/59/71/9780965735971.jpg'), - ('0151002908', 'Cruel Banquet: The Life And Loves Of Frida Strindberg', 'https://images.isbndb.com/covers/29/00/9780151002900.jpg'), - ('1564145549', 'Hollywood Urban Legends: The Truth Behind All Those Delightfully Persistent Myths Of Film Television, And Music', 'https://images.isbndb.com/covers/55/43/9781564145543.jpg'), - ('0375703845', 'Glamorama (Vintage Contemporaries)', 'https://images.isbndb.com/covers/38/43/9780375703843.jpg'), - ('3821834250', 'How To Use Dirty Words', 'https://images.isbndb.com/covers/42/52/9783821834252.jpg'), - ('3499105810', 'Der Ekel', 'https://images.isbndb.com/covers/58/14/9783499105814.jpg'), - ('3499133164', 'Gesammelte Werke In Einzelausgaben. Philosophische Schriften Band 3: Das Sein Und Das Nichts. Versuch Einer Phänomenologischen Ontologie', 'https://images.isbndb.com/covers/31/69/9783499133169.jpg'), - ('3404241185', 'Das Neue Buch Hiob', 'https://images.isbndb.com/covers/11/87/9783404241187.jpg'), - ('3404232011', 'Tunnel Zu Den Sternen.', 'https://images.isbndb.com/covers/20/17/9783404232017.jpg'), - ('0300084730', 'The Computer And The Brain: Second Edition (Mrs. Hepsa Ely Silliman Memorial Lectures)', 'https://images.isbndb.com/covers/47/33/9780300084733.jpg'), - ('3596124433', 'Der Proceß. Roman In Der Fassung Der Handschrift: Der Proze?', 'https://images.isbndb.com/covers/44/35/9783596124435.jpg'), - ('3499193140', 'Die Logik Des Mißlingens Strategisches Denken In Komplexen Situationen', 'https://images.isbndb.com/covers/31/49/9783499193149.jpg'), - ('3548346839', 'Mein Weltbild', 'https://images.isbndb.com/covers/68/30/9783548346830.jpg'), - ('0140231943', 'The Edge Of Infinity: Beyond The Black Hole (Penguin Science)', 'https://images.isbndb.com/covers/19/46/9780140231946.jpg'), - ('346202731X', 'Im Westen Nichts Neues', 'https://images.isbndb.com/covers/73/10/9783462027310.jpg'), - ('3518115243', 'Finnegans Wake: Gesammelte Annäherungen (edition Suhrkamp)', 'https://images.isbndb.com/covers/52/44/9783518115244.jpg'), - ('3453099826', 'Der Tiefere Sinn Des Labenz', 'https://images.isbndb.com/covers/98/21/9783453099821.jpg'), - ('3404242866', 'Farmer Im All', 'https://images.isbndb.com/covers/28/63/9783404242863.jpg'), - ('1857984986', 'The Stainless Steel Rat', 'https://images.isbndb.com/covers/49/89/9781857984989.jpg'), - ('3423123877', 'Faktotum: Roman', 'https://images.isbndb.com/covers/38/77/9783423123877.jpg'), - ('3423002565', 'Der Untertan.', 'https://images.isbndb.com/covers/25/61/9783423002561.jpg'), - ('3492224431', 'Denkste!: Trugschlüsse Aus Der Welt Des Zufalls Und Der Zahlen: Trugschlüsse Aus Der Welt Der Zahlen Und Des Zufalls', 'https://images.isbndb.com/covers/44/37/9783492224437.jpg'), - ('0380708213', 'The Forever War', 'https://images.isbndb.com/covers/82/15/9780380708215.jpg'), - ('006080985X', 'Island', 'https://images.isbndb.com/covers/98/50/9780060809850.jpg'), - ('3453173309', 'Die Gelehrten Der Scheibenwelt', 'https://images.isbndb.com/covers/33/09/9783453173309.jpg'), - ('3423124288', 'Das Kristall-Ei', 'https://images.isbndb.com/covers/42/87/9783423124287.jpg'), - ('3404242386', 'Ringwelt: Der Ringwelt-Zyklus, Bd. 1', 'https://images.isbndb.com/covers/23/82/9783404242382.jpg'), - ('3404231910', 'Von Stern Zu Stern', 'https://images.isbndb.com/covers/19/11/9783404231911.jpg'), - ('3453164105', 'Die Neuromancer-Trilogie. Drei Romane: Neuromancer / Biochips / Mona Lisa Overdrive', 'https://images.isbndb.com/covers/41/09/9783453164109.jpg'), - ('3453164156', 'Die Linke Hand Der Dunkelheit.', 'https://images.isbndb.com/covers/41/54/9783453164154.jpg'), - ('3453164121', 'Fahrenheit 451', 'https://images.isbndb.com/covers/41/23/9783453164123.jpg'), - ('3453164180', 'Der Brennende Mann', 'https://images.isbndb.com/covers/41/85/9783453164185.jpg'), - ('3404232208', 'Weltraumkadetten', 'https://images.isbndb.com/covers/22/08/9783404232208.jpg'), - ('345316413X', 'Clockwork Orange: Roman', 'https://images.isbndb.com/covers/41/30/9783453164130.jpg'), - ('349922271X', 'Illuminatus 01. Das Auge In Der Pyramide.', 'https://images.isbndb.com/covers/27/19/9783499222719.jpg'), - ('3499122146', 'Der Archipel GULAG.', 'https://images.isbndb.com/covers/21/49/9783499122149.jpg'), - ('3453164164', 'Sternenflut.', 'https://images.isbndb.com/covers/41/61/9783453164161.jpg'), - ('3817132336', 'Philosophischer Versuch über Die Wahrscheinlichkeit', 'https://images.isbndb.com/covers/23/31/9783817132331.jpg'), - ('3453164199', 'Lobgesang Auf Leibowitz', 'https://images.isbndb.com/covers/41/92/9783453164192.jpg'), - ('3453164113', 'Das Orakel Vom Berge', 'https://images.isbndb.com/covers/41/16/9783453164116.jpg'), - ('3404242750', 'Freitag', 'https://images.isbndb.com/covers/27/57/9783404242757.jpg'), - ('3423301244', 'Nietzsche Für Anfänger: Also Sprach Zarathustra: Eine Lese-Einführung', 'https://images.isbndb.com/covers/12/44/9783423301244.jpg'), - ('3499110008', 'Die Wörter. Autobiographische Schriften.', 'https://images.isbndb.com/covers/00/09/9783499110009.jpg'), - ('0861300238', 'The Gas', 'https://images.isbndb.com/covers/02/35/9780861300235.jpg'), - ('3518102079', 'Probleme Der Philosophie (edition Suhrkamp)', 'https://images.isbndb.com/covers/20/77/9783518102077.jpg'), - ('3499142813', 'Wer Die Nachtigall Stört...', 'https://images.isbndb.com/covers/28/19/9783499142819.jpg'), - ('3423300205', 'Die Philosophische Hintertreppe: Die Großen Philosophen In Alltag Und Denken', 'https://images.isbndb.com/covers/02/09/9783423300209.jpg'), - ('0898705525', 'Orthodoxy', 'https://images.isbndb.com/covers/55/22/9780898705522.jpg'), - ('3492200133', 'Einführung In Die Philosophie. Zwölf Radiovorträge', 'https://images.isbndb.com/covers/01/34/9783492200134.jpg'), - ('3506500104', 'Bibelausgaben, Das Neue Testament', 'https://images.isbndb.com/covers/01/06/9783506500106.jpg'), - ('0062732765', 'Flatland/Sphereland (Everyday Handbook)', 'https://images.isbndb.com/covers/27/67/9780062732767.jpg'), - ('3817132352', 'Die Elemente, Buch 1-13', 'https://images.isbndb.com/covers/23/55/9783817132355.jpg'), - ('3150090342', 'American Short Stories Of The 19th Century. (Lernmaterialien)', 'https://images.isbndb.com/covers/03/43/9783150090343.jpg'), - ('3453092414', 'Und Immer Wieder Die Zeit. Einstein''s Dreams.', 'https://images.isbndb.com/covers/24/19/9783453092419.jpg'), - ('0253306752', 'On Aging: Revolt And Resignation', 'https://images.isbndb.com/covers/67/53/9780253306753.jpg'), - ('0691024170', 'QED: The Strange Theory Of Light And Matter', 'https://images.isbndb.com/covers/41/72/9780691024172.jpg'), - ('0140261494', 'The Penguin Book Of Curious And Interesting Numbers: Revised Edition (Penguin Press Science)', 'https://images.isbndb.com/covers/14/93/9780140261493.jpg'), - ('0140296085', 'Blackadder: The Whole Damn Dynasty, 1485-1917', 'https://images.isbndb.com/covers/60/82/9780140296082.jpg'), - ('0094660409', 'Mensa: The Society For The Highly Intelligent', 'https://images.isbndb.com/covers/04/03/9780094660403.jpg'), - ('3518392573', 'In Der Gruft Und Andere Makabre Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/25/77/9783518392577.jpg'), - ('3492221661', 'Kümmert Sie, Was Andere Leute Denken?: Neue Abenteuer Eines Neugierigen Physikers', 'https://images.isbndb.com/covers/16/65/9783492221665.jpg'), - ('3492200540', 'Serie Piper, Bd.54, Kleine Schule Des Philosophischen Denkens', 'https://images.isbndb.com/covers/05/47/9783492200547.jpg'), - ('3492221009', 'Anleitung Zum Unglücklichsein', 'https://images.isbndb.com/covers/10/09/9783492221009.jpg'), - ('3880598800', 'Die Sprachen Der Welt. Geschichte - Grammatik - Wortschatz In Vergleichender Darstellung.', 'https://images.isbndb.com/covers/88/05/9783880598805.jpg'), - ('3423202068', 'Das Ultimative Handbuch Des Nutzlosen Wissens.', 'https://images.isbndb.com/covers/20/60/9783423202060.jpg'), - ('0262560038', 'The Character Of Physical Law (Messenger Lectures, 1964)', 'https://images.isbndb.com/covers/00/30/9780262560030.jpg'), - ('0521777526', 'Calendrical Calculations Millennium Edition', 'https://images.isbndb.com/covers/75/20/9780521777520.jpg'), - ('0471404217', 'Marking Time: The Epic Quest To Invent The Perfect Calendar', 'https://images.isbndb.com/covers/42/17/9780471404217.jpg'), - ('3518276255', 'Die Struktur Wissenschaftlicher Revolutionen (suhrkamp Taschenbuch Wissenschaft)', 'https://images.isbndb.com/covers/62/59/9783518276259.jpg'), - ('0060901918', 'The Perennial Philosophy', 'https://images.isbndb.com/covers/19/12/9780060901912.jpg'), - ('0375706348', 'The F-Word: Second Edition', 'https://images.isbndb.com/covers/63/49/9780375706349.jpg'), - ('3379015776', 'Ein Paar Leute Suchen Das Glück Und Lachen Sich Tot.', 'https://images.isbndb.com/covers/57/76/9783379015776.jpg'), - ('3458329072', 'Der Fürst.', 'https://images.isbndb.com/covers/90/77/9783458329077.jpg'), - ('3423120398', 'Wie Man Mit Einem Lachs Verreist Und Andere Nützliche Ratschläge', 'https://images.isbndb.com/covers/03/95/9783423120395.jpg'), - ('345504431X', 'Zeit Für Die Sterne', 'https://images.isbndb.com/covers/43/17/9783455044317.jpg'), - ('3821839171', 'Doktorspiele. Geständnisse Eines Hochstaplers', 'https://images.isbndb.com/covers/91/72/9783821839172.jpg'), - ('382183594X', 'Darum Nerven Japaner!: Der Ungeschminkte Wahnsinn Des Japanischen Alltags', 'https://images.isbndb.com/covers/59/45/9783821835945.jpg'), - ('0201150255', 'Six Not-so-easy Pieces: Lectures On Symmetry, Relativity, And Space-time (Helix Books)', 'https://images.isbndb.com/covers/02/54/9780201150254.jpg'), - ('342330426X', 'Metamagicum', 'https://images.isbndb.com/covers/42/69/9783423304269.jpg'), - ('3608917586', 'Die FARGonauten: Über Analogie Und Kreativität', 'https://images.isbndb.com/covers/75/81/9783608917581.jpg'), - ('3776621923', 'Lexikon Des Überlebens. Das Survival- Handbuch Für Krisenzeiten.', 'https://images.isbndb.com/covers/19/21/9783776621921.jpg'), - ('0674637526', 'On The Origin Of Species: A Facsimile Of The First Edition (Harvard Paperbacks)', 'https://images.isbndb.com/covers/75/28/9780674637528.jpg'), - ('3520377020', 'Discorsi. Gedanken über Politik Und Staatsführung', 'https://images.isbndb.com/covers/70/29/9783520377029.jpg'), - ('3257700474', 'Brief An Den Vater', 'https://images.isbndb.com/covers/04/73/9783257700473.jpg'), - ('0965139808', 'Bad Words Dictionary : And Even Worse Expressions', 'https://images.isbndb.com/covers/98/09/9780965139809.jpg'), - ('0394733525', 'Dot And The Line: Romance In Lower Mathematics', 'https://images.isbndb.com/covers/35/24/9780394733524.jpg'), - ('3426774291', 'Houdini, Moretti & Co.', 'https://images.isbndb.com/covers/42/98/9783426774298.jpg'), - ('3817134010', 'Die Hilbertschen Probleme: Vortrag ''Mathematische Probleme'' - Gehalten Auf Dem 2. Internationalen Mathematikerkongress Paris 1900', 'https://images.isbndb.com/covers/40/14/9783817134014.jpg'), - ('3596259347', 'Professor Unrat Oder Das Ende Eines Tyrannen. Roman. (Studienausgabe In Einzelbänden).', 'https://images.isbndb.com/covers/93/42/9783596259342.jpg'), - ('3379001252', 'LTI ( Lingua Tertii Imperii). Notizbuch Eines Philologen', 'https://images.isbndb.com/covers/12/50/9783379001250.jpg'), - ('351818802X', 'Siddhartha: Eine Indische Dichtung (Suhrkamp BasisBibliothek)', 'https://images.isbndb.com/covers/80/26/9783518188026.jpg'), - ('3150096561', 'Gespräche (Lun-yu)', 'https://images.isbndb.com/covers/65/67/9783150096567.jpg'), - ('351838922X', 'Die Literatur Der Angst: Zur Geschichte Der Phantastik (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/92/25/9783518389225.jpg'), - ('3518371703', 'Picknick Am Wegesrand: Utopische Erzählung (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/17/01/9783518371701.jpg'), - ('3518384465', 'Die Bewohnte Insel: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/44/66/9783518384466.jpg'), - ('3518389521', 'Montag Beginnt Am Samstag', 'https://images.isbndb.com/covers/95/22/9783518389522.jpg'), - ('0553293354', 'Foundation (Foundation Novels)', 'https://images.isbndb.com/covers/33/57/9780553293357.jpg'), - ('3404230663', 'Wenn Der Wind Sich Dreht: Roman', 'https://images.isbndb.com/covers/06/62/9783404230662.jpg'), - ('3404241134', 'Best Of Asimov', 'https://images.isbndb.com/covers/11/32/9783404241132.jpg'), - ('3453025652', '2061 Odyssee III', 'https://images.isbndb.com/covers/56/53/9783453025653.jpg'), - ('351838645X', 'Der Mensch Vom Mars: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/64/53/9783518386453.jpg'), - ('3518377663', 'Also Sprach GOLEM (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/76/66/9783518377666.jpg'), - ('3518396749', 'Fiasko: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/67/42/9783518396742.jpg'), - ('3518372297', 'Mondnacht: Hör- Und Fernsehspiele (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/22/96/9783518372296.jpg'), - ('3518386999', 'Vom Nutzen Des Drachen: Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/69/96/9783518386996.jpg'), - ('3518383906', 'Irrläufer: Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/39/02/9783518383902.jpg'), - ('3518370707', 'Der Schnupfen: Kriminalroman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/07/04/9783518370704.jpg'), - ('3518372408', 'Terminus Und Andere Geschichten Vom Piloten Pirx.', 'https://images.isbndb.com/covers/24/01/9783518372401.jpg'), - ('351839293X', 'Das Hospital Der Verklärung: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/29/35/9783518392935.jpg'), - ('3518368567', 'Nacht Und Schimmel: Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/85/65/9783518368565.jpg'), - ('3518380745', 'Frieden Auf Erden: Roman: Science-fiction-Roman. (Phantastische Bibliothek, 220) (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/07/41/9783518380741.jpg'), - ('3518374559', 'Eine Minute Der Menschheit: Eine Momentaufnahme: Eine Momentaufnahme. Aus Lems Bibliothek Des 21. Jahrhunderts (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/45/59/9783518374559.jpg'), - ('3492213472', ''' Sie Belieben Wohl Zu Scherzen, Mr. Feynman!''. Abenteuer Eines Neugierigen Physikers.', 'https://images.isbndb.com/covers/34/79/9783492213479.jpg'), - ('3492226221', 'Die Kunst Zu überleben, Survival', 'https://images.isbndb.com/covers/62/26/9783492226226.jpg'), - ('3492227171', 'Medizin Survival: Überleben Ohne Arzt', 'https://images.isbndb.com/covers/71/79/9783492227179.jpg'), - ('0672604043', 'Dialogues Concerning Natural Religion', 'https://images.isbndb.com/covers/40/41/9780672604041.jpg'), - ('3787311556', 'Philosophische Bibliothek, Bd.35, Eine Untersuchung über Den Menschlichen Verstand: Mit Deutsch-englischem Und Englisch-deutschem Begriffsregister', 'https://images.isbndb.com/covers/15/52/9783787311552.jpg'), - ('3423122870', 'Im Wald Der Fiktionen: Sechs Streifzüge Durch Die Literatur', 'https://images.isbndb.com/covers/28/70/9783423122870.jpg'), - ('3499196654', 'Der Fremdling Im Glas Und Weitere Anlässe Zur Skepsis, Entdeckt Im "Skeptical Inquirer".', 'https://images.isbndb.com/covers/66/52/9783499196652.jpg'), - ('3446163670', 'Zeit Und Wissen', 'https://images.isbndb.com/covers/36/76/9783446163676.jpg'), - ('3492230555', 'Survival-Lexikon', 'https://images.isbndb.com/covers/05/51/9783492230551.jpg'), - ('3746655153', 'Und So Ist Alles Schwankend. Tagebücher Juni Bis Dezember 1945.', 'https://images.isbndb.com/covers/51/54/9783746655154.jpg'), - ('3499195356', 'Mein Paranormales Fahrrad', 'https://images.isbndb.com/covers/53/58/9783499195358.jpg'), - ('3442115361', 'Deutsch Für Profis. Wege Zu Gutem Stil. ( Stern- Bücher).', 'https://images.isbndb.com/covers/53/65/9783442115365.jpg'), - ('080213422X', 'The Painted Bird', 'https://images.isbndb.com/covers/42/26/9780802134226.jpg'), - ('0738203491', 'The Pleasure Of Finding Things Out: The Best Short Works Of Richard P. Feynman', 'https://images.isbndb.com/covers/34/92/9780738203492.jpg'), - ('0060900075', 'The Doors Of Perception And Heaven And Hell', 'https://images.isbndb.com/covers/00/76/9780060900076.jpg'), - ('3499609339', 'Stimmt''s? Noch Mehr Moderne Legenden Im Test: Moderne Legenden Im Test - Folge 2', 'https://images.isbndb.com/covers/93/36/9783499609336.jpg'), - ('349960728X', 'Stimmt''s?: Moderne Legenden Im Test', 'https://images.isbndb.com/covers/72/88/9783499607288.jpg'), - ('344275500X', 'Hitlers Willige Vollstrecker. Ganz Gewöhnliche Deutsche Und Der Holocaust', 'https://images.isbndb.com/covers/50/04/9783442755004.jpg'), - ('3426606488', 'Die Satanischen Verse', 'https://images.isbndb.com/covers/64/83/9783426606483.jpg'), - ('3492049885', 'Gebrauchsanweisung Für Amerika', 'https://images.isbndb.com/covers/98/87/9783492049887.jpg'), - ('0345430727', 'Tales From The White Hart', 'https://images.isbndb.com/covers/07/24/9780345430724.jpg'), - ('0376011831', 'Furniture Upholstery (Sunset Books)', 'https://images.isbndb.com/covers/18/31/9780376011831.jpg'), - ('0553375334', 'Gardening For The Future Of The Earth', 'https://images.isbndb.com/covers/53/36/9780553375336.jpg'), - ('1879159376', 'Grace Unfolding: The Art Of Living A Surrendered Life', 'https://images.isbndb.com/covers/93/72/9781879159372.jpg'), - ('1880281139', 'Growing Herbs (Step-By-Step Visual Guide)', 'https://images.isbndb.com/covers/11/30/9781880281130.jpg'), - ('0943574447', 'Happy Endings : Finishing The Edges Of Your Quilt', 'https://images.isbndb.com/covers/44/48/9780943574448.jpg'), - ('0764551418', 'Household Hints For Dummies', 'https://images.isbndb.com/covers/14/13/9780764551413.jpg'), - ('086573190X', 'How To Paint: A Complete Guide To Painting Your Home (House Beautiful)', 'https://images.isbndb.com/covers/19/05/9780865731905.jpg'), - ('0764506765', 'Internet All In One Desk Reference For Dummies: 9 Books In 1. (with CD-ROM)', 'https://images.isbndb.com/covers/67/65/9780764506765.jpg'), - ('1893361764', 'Journeys Of Simplicity: Traveling Light With Thomas Merton, Basho, Edward Abbey, Annie Dillard & Others', 'https://images.isbndb.com/covers/17/68/9781893361768.jpg'), - ('0762100699', 'Just Junk New Looks For Old Furniture', 'https://images.isbndb.com/covers/06/99/9780762100699.jpg'), - ('0875968864', 'Lasagna Gardening For Small Spaces: A Layering System For Big Results In Small Gardens And Containers (Rodale Organic Gardening Book)', 'https://images.isbndb.com/covers/88/65/9780875968865.jpg'), - ('0811827151', 'Learn To Remember', 'https://images.isbndb.com/covers/71/57/9780811827157.jpg'), - ('0937750239', 'Lose 200 Lbs This Weekend: It''s Time To Declutter Your Life', 'https://images.isbndb.com/covers/02/30/9780937750230.jpg'), - ('1569473307', 'Maisie Dobbs', 'https://images.isbndb.com/covers/33/06/9781569473306.jpg'), - ('0877735506', 'Meditation In Action (Shambhala Pocket Classics)', 'https://images.isbndb.com/covers/55/02/9780877735502.jpg'), - ('0385335210', 'Moon Women', 'https://images.isbndb.com/covers/52/18/9780385335218.jpg'), - ('0062505157', 'Ocean Of Wisdom: Guidelines For Living', 'https://images.isbndb.com/covers/51/56/9780062505156.jpg'), - ('1585420859', 'Point Zero: Creativity Without Limits', 'https://images.isbndb.com/covers/08/58/9781585420858.jpg'), - ('0861711459', 'Polishing The Diamond, Enlightening The Mind: Reflections Of A Korean Buddhist Master', 'https://images.isbndb.com/covers/14/51/9780861711451.jpg'), - ('0312973055', 'Robert Ludlum''s The Hades Factor', 'https://images.isbndb.com/covers/30/56/9780312973056.jpg'), - ('0696211785', 'Roses (Better Homes & Gardens)', 'https://images.isbndb.com/covers/17/82/9780696211782.jpg'), - ('140004684X', 'See No Evil: The True Story Of A Ground Soldier In The CIA''s War On Terrorism', 'https://images.isbndb.com/covers/68/43/9781400046843.jpg'), - ('0801986311', 'Slipcover Magic', 'https://images.isbndb.com/covers/63/14/9780801986314.jpg'), - ('0922705380', 'Quilt In A Day Sunbonnet Sue Visits Quilt In A Day', 'https://images.isbndb.com/covers/53/82/9780922705382.jpg'), - ('0440235014', 'The Cleaning Encyclopedia', 'https://images.isbndb.com/covers/50/19/9780440235019.jpg'), - ('0801980801', 'The Complete Step-By-Step Guide To Home Sewing', 'https://images.isbndb.com/covers/08/00/9780801980800.jpg'), - ('0679725997', 'The Complete Upholsterer', 'https://images.isbndb.com/covers/59/92/9780679725992.jpg'), - ('1567998712', 'The Country Cupboard: Herbs : Imaginative Tips & Sensible Advice For Cooking, Growing, And Enjoying', 'https://images.isbndb.com/covers/87/19/9781567998719.jpg'), - ('1573227358', 'The Dark Side Of The Light Chasers: Reclaiming Your Power, Creativity, Brilliance, And Dreams', 'https://images.isbndb.com/covers/73/53/9781573227353.jpg'), - ('0806958235', 'The Filet Crochet Book: More Than 100 Elegant But Simple Country Lace Projects', 'https://images.isbndb.com/covers/82/31/9780806958231.jpg'), - ('0722539320', 'The Heart Of The Buddha''s Path', 'https://images.isbndb.com/covers/93/23/9780722539323.jpg'), - ('089721255X', 'The Ortho Home Gardener''s Problem Solver', 'https://images.isbndb.com/covers/25/57/9780897212557.jpg'), - ('0877739706', 'The Path Is The Goal (Dharma Ocean Series)', 'https://images.isbndb.com/covers/97/08/9780877739708.jpg'), - ('0786862270', 'The Path: Creating Your Mission Statement For Work And For Life', 'https://images.isbndb.com/covers/22/76/9780786862276.jpg'), - ('0961475455', 'The Perils And Pitfalls Of Practice: Responses To Questions About Meditation', 'https://images.isbndb.com/covers/54/51/9780961475451.jpg'), - ('0765760355', 'The Place Where You Are Standing Is Holy: A Jewish Theology On Human Relationships', 'https://images.isbndb.com/covers/03/57/9780765760357.jpg'), - ('0935278184', 'The Serger Idea Book: A Collection Of Inspiring Ideas From Palmer/Pletsch', 'https://images.isbndb.com/covers/81/87/9780935278187.jpg'), - ('0674007913', 'To Be The Poet (William E. Massey Sr. Lectures In The History Of American Civilization)', 'https://images.isbndb.com/covers/79/18/9780674007918.jpg'), - ('0840752873', 'Tough Times Never Last, But Tough People Do', 'https://images.isbndb.com/covers/28/71/9780840752871.jpg'), - ('0722540302', 'Transforming The Mind', 'https://images.isbndb.com/covers/03/05/9780722540305.jpg'), - ('1567994288', 'Uncluttered: Storage Room By Room', 'https://images.isbndb.com/covers/42/85/9781567994285.jpg'), - ('0897210875', 'Upholstering And Recovering', 'https://images.isbndb.com/covers/08/74/9780897210874.jpg'), - ('0688144713', 'Victoria: At Home With White: Celebrating The Intimate Home', 'https://images.isbndb.com/covers/47/15/9780688144715.jpg'), - ('0688097391', 'Victoria: Intimate Home: Creating A Private World', 'https://images.isbndb.com/covers/73/94/9780688097394.jpg'), - ('1573225754', 'Wake Up And Cook: Kitchen Buddhism In Words And Recipes', 'https://images.isbndb.com/covers/57/55/9781573225755.jpg'), - ('0802130313', 'What The Buddha Taught: Revised And Expanded Edition With Texts From Suttas And Dhammapada', 'https://images.isbndb.com/covers/03/10/9780802130310.jpg'), - ('0814623581', 'A Life-Giving Way: A Commentary On The Rule Of St. Benedict', 'https://images.isbndb.com/covers/35/89/9780814623589.jpg'), - ('038549436X', 'Beyond The Walls: Monastic Wisdom For Everyday Life', 'https://images.isbndb.com/covers/43/66/9780385494366.jpg'), - ('0743226208', 'Energy Breakthrough : Jump-start Your Weight Loss And Feel Great', 'https://images.isbndb.com/covers/62/02/9780743226202.jpg'), - ('0553382179', 'Sink Reflections', 'https://images.isbndb.com/covers/21/74/9780553382174.jpg'), - ('0743418301', 'Talking Dirty With The Queen Of Clean', 'https://images.isbndb.com/covers/83/00/9780743418300.jpg'), - ('006064589X', 'The Dance Of The Dissident Daughter: A Woman''s Journey From Christian Tradition To The Sacred Feminine', 'https://images.isbndb.com/covers/58/92/9780060645892.jpg'), - ('0385497903', 'The Diamond Cutter: The Buddha On Strategies For Managing Your Business And Your Life', 'https://images.isbndb.com/covers/79/09/9780385497909.jpg'), - ('0767902998', 'The Direct Path: Creating A Journey To The Divine Using The World''s Mystical Traditions', 'https://images.isbndb.com/covers/29/91/9780767902991.jpg'), - ('0738204102', 'The Way Of Transition: Embracing Life''s Most Difficult Moments', 'https://images.isbndb.com/covers/41/09/9780738204109.jpg'), - ('1567997686', 'Potting Places', 'https://images.isbndb.com/covers/76/82/9781567997682.jpg'), - ('0765307154', 'The Last Jihad (Political Thrillers Series #1)', 'https://images.isbndb.com/covers/71/56/9780765307156.jpg'), - ('0060502304', 'The Great Train Robbery', 'https://images.isbndb.com/covers/23/00/9780060502300.jpg'), - ('0345456343', 'The Vampire Chronicles Collection, Volume 1', 'https://images.isbndb.com/covers/63/42/9780345456342.jpg'), - ('1576104192', 'Linux System Administration Black Book: The Definitive Guide To Deploying And Configuring The Leading Open Source Operating System', 'https://images.isbndb.com/covers/41/94/9781576104194.jpg'), - ('0752221892', 'Station X: The Codebreakers Of Bletchley Park', 'https://images.isbndb.com/covers/18/92/9780752221892.jpg'), - ('0446518549', 'Encounter With Tiber', 'https://images.isbndb.com/covers/85/43/9780446518543.jpg'), - ('1565924878', 'Java In A Nutshell : A Desktop Quick Reference (Java Series) (3rd Edition)', 'https://images.isbndb.com/covers/48/71/9781565924871.jpg'), - ('1565922204', 'Advanced Perl Programming', 'https://images.isbndb.com/covers/22/04/9781565922204.jpg'), - ('0072129409', 'Linux: The Complete Reference', 'https://images.isbndb.com/covers/94/03/9780072129403.jpg'), - ('0130843709', 'Data & Computer Communications (6th Edition)', 'https://images.isbndb.com/covers/37/08/9780130843708.jpg'), - ('0782126472', 'CCNA Cisco Certified Network Associate : Study Guide (with CD-ROM)', 'https://images.isbndb.com/covers/64/71/9780782126471.jpg'), - ('0130173231', 'Information Security: Protecting The Global Enterprise', 'https://images.isbndb.com/covers/32/32/9780130173232.jpg'), - ('0451457595', 'The River''s Gift', 'https://images.isbndb.com/covers/75/92/9780451457592.jpg'), - ('0786881887', 'The Book Of Atrus (Myst, Book 1)', 'https://images.isbndb.com/covers/18/88/9780786881888.jpg'), - ('0786889209', 'The Book Of Ti''Ana (Myst, Book 2)', 'https://images.isbndb.com/covers/92/04/9780786889204.jpg'), - ('055357681X', 'The Seeds Of Time (Bantam Spectra Book--T.P. Verso)', 'https://images.isbndb.com/covers/68/18/9780553576818.jpg'), - ('0448407264', 'The Flintstones: The Novelization', 'https://images.isbndb.com/covers/72/65/9780448407265.jpg'), - ('051511054X', 'Bygones', 'https://images.isbndb.com/covers/05/48/9780515110548.jpg'), - ('0156030209', 'Life Of Pi', 'https://images.isbndb.com/covers/02/05/9780156030205.jpg'), - ('0140275428', 'The Other Side Of The Dale', 'https://images.isbndb.com/covers/54/21/9780140275421.jpg'), - ('0553813714', 'Life Makeovers', 'https://images.isbndb.com/covers/37/15/9780553813715.jpg'), - ('0752837613', 'Lost Boy', 'https://images.isbndb.com/covers/76/11/9780752837611.jpg'), - ('0684803852', 'Brat Farrar', 'https://images.isbndb.com/covers/38/52/9780684803852.jpg'), - ('067164193X', 'Secrets Can Kill (The Nancy Drew Files, No. 1)', 'https://images.isbndb.com/covers/19/31/9780671641931.jpg'), - ('0517320908', '6200 Wisecracks, Witty Remarks & Epigrams For All Occasions', 'https://images.isbndb.com/covers/09/07/9780517320907.jpg'), - ('0774712619', 'Julius Caesar (Nouveau Siecle)', 'https://images.isbndb.com/covers/26/13/9780774712613.jpg'), - ('0553089226', 'The Clinic', 'https://images.isbndb.com/covers/92/26/9780553089226.jpg'), - ('0670829390', 'Dear Dad: Letters From An Adult Child', 'https://images.isbndb.com/covers/93/92/9780670829392.jpg'), - ('0786000848', 'David Letterman: On Stage&off', 'https://images.isbndb.com/covers/08/45/9780786000845.jpg'), - ('0671578820', 'Simply Human', 'https://images.isbndb.com/covers/88/24/9780671578824.jpg'), - ('0446364789', 'The Snake, The Crocodile & The Dog (Amelia Peabody Mysteries)', 'https://images.isbndb.com/covers/47/82/9780446364782.jpg'), - ('0812514432', 'After The King: Stories In Honor Of J.R.R. Tolkien', 'https://images.isbndb.com/covers/44/38/9780812514438.jpg'), - ('0451151224', 'The Running Man', 'https://images.isbndb.com/covers/12/23/9780451151223.jpg'), - ('0425054535', 'E.T. The Extra-Terrestrial', 'https://images.isbndb.com/covers/45/36/9780425054536.jpg'), - ('044021498X', 'Strange Angels', 'https://images.isbndb.com/covers/49/84/9780440214984.jpg'), - ('0821724045', 'Devil''s Moon', 'https://images.isbndb.com/covers/40/40/9780821724040.jpg'), - ('042512245X', 'Last Rampage: The Shocking, True Story Of An Escaped Convict', 'https://images.isbndb.com/covers/24/57/9780425122457.jpg'), - ('0451080157', 'Twins', 'https://images.isbndb.com/covers/01/58/9780451080158.jpg'), - ('0312928408', 'The Jeffrey Dahmer Story: An American Nightmare (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/84/07/9780312928407.jpg'), - ('0812551664', 'Wes Craven''s New Nightmare: A Novel', 'https://images.isbndb.com/covers/16/62/9780812551662.jpg'), - ('0425109720', 'Patriot Games (Jack Ryan)', 'https://images.isbndb.com/covers/97/24/9780425109724.jpg'), - ('0671670646', 'GATES OF PARADISE', 'https://images.isbndb.com/covers/06/41/9780671670641.jpg'), - ('0345425596', 'The Spice Girls: The Uncensored Story Behind Pop''s Biggest Phenomenon', 'https://images.isbndb.com/covers/55/91/9780345425591.jpg'), - ('0671028006', 'Misty (Wildflowers, Bk. 1)', 'https://images.isbndb.com/covers/80/08/9780671028008.jpg'), - ('0590412264', 'Spaceballs: The Book', 'https://images.isbndb.com/covers/22/61/9780590412261.jpg'), - ('0886771722', 'Sword Of Chaos (Darkover)', 'https://images.isbndb.com/covers/17/20/9780886771720.jpg'), - ('0345309197', 'The Ladies Of Mandrigyn (Sun Wolf And Starhawk, No. 1)', 'https://images.isbndb.com/covers/91/98/9780345309198.jpg'), - ('0886772249', 'Fever Season (Merovingen Nights)', 'https://images.isbndb.com/covers/22/46/9780886772246.jpg'), - ('0380818418', 'Year''s Best Fantasy 2', 'https://images.isbndb.com/covers/84/19/9780380818419.jpg'), - ('0345300777', 'Magician''s Gambit (Eddings, David; The Belgariad, Bk. 3.)', 'https://images.isbndb.com/covers/07/75/9780345300775.jpg'), - ('0345309979', 'PAWN OF PROPHECY (The Belgariad)', 'https://images.isbndb.com/covers/99/76/9780345309976.jpg'), - ('0345335708', 'Castle Of Wizardry (The Belgariad, Book 4)', 'https://images.isbndb.com/covers/57/08/9780345335708.jpg'), - ('0886774691', 'Renunciates Of Darkover', 'https://images.isbndb.com/covers/46/91/9780886774691.jpg'), - ('0786901136', 'F.R.E.E.Lancers (Tsr Books, Special F/Sf)', 'https://images.isbndb.com/covers/11/35/9780786901135.jpg'), - ('0425173089', 'The Moche Warrior (Archaeological Mysteries, No. 3)', 'https://images.isbndb.com/covers/30/84/9780425173084.jpg'), - ('0440237343', 'High Wire', 'https://images.isbndb.com/covers/73/41/9780440237341.jpg'), - ('0786890053', 'Pearl Harbor (Movie Tie-In)', 'https://images.isbndb.com/covers/00/57/9780786890057.jpg'), - ('0140053166', 'Shadow Of The Moon', 'https://images.isbndb.com/covers/31/66/9780140053166.jpg'), - ('0425142868', 'McNally''s Risk (Archy McNally Novels)', 'https://images.isbndb.com/covers/28/68/9780425142868.jpg'), - ('0425137457', 'McNally''s Luck (Archy McNally)', 'https://images.isbndb.com/covers/74/51/9780425137451.jpg'), - ('042514755X', 'McNally''s Trial (Archy McNally Novels)', 'https://images.isbndb.com/covers/75/59/9780425147559.jpg'), - ('0886772346', 'Darkover Landfall', 'https://images.isbndb.com/covers/23/45/9780886772345.jpg'), - ('0425103633', 'Murder In Mesopotamia (Hercule Poirot)', 'https://images.isbndb.com/covers/36/30/9780425103630.jpg'), - ('0812570936', 'Colors Of Chaos (Saga Of Recluce)', 'https://images.isbndb.com/covers/09/39/9780812570939.jpg'), - ('0671759345', 'Ruby (Landry Series)', 'https://images.isbndb.com/covers/93/46/9780671759346.jpg'), - ('0440475821', 'Ralph S. Mouse', 'https://images.isbndb.com/covers/58/28/9780440475828.jpg'), - ('0671670662', 'Web Of Dreams (Casteel Saga)', 'https://images.isbndb.com/covers/06/65/9780671670665.jpg'), - ('0312962177', 'Long Shadows In Victory (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/21/73/9780312962173.jpg'), - ('0446344281', 'Angels Of September', 'https://images.isbndb.com/covers/42/89/9780446344289.jpg'), - ('0446601829', 'Black Phoenix', 'https://images.isbndb.com/covers/18/25/9780446601825.jpg'), - ('0944276040', 'Royale', 'https://images.isbndb.com/covers/60/44/9780944276044.jpg'), - ('042511872X', 'Stolen Blessings', 'https://images.isbndb.com/covers/87/26/9780425118726.jpg'), - ('0688037852', 'Ramona Forever (Ramona Series)', 'https://images.isbndb.com/covers/78/57/9780688037857.jpg'), - ('0425116417', 'Timothy''s Game', 'https://images.isbndb.com/covers/64/18/9780425116418.jpg'), - ('0446602175', 'Batman Forever: The Novelization', 'https://images.isbndb.com/covers/21/74/9780446602174.jpg'), - ('0451402707', 'Never Too Rich (Onyx)', 'https://images.isbndb.com/covers/27/07/9780451402707.jpg'), - ('1558175555', 'Sex, Money, And Murder In Daytona Beach', 'https://images.isbndb.com/covers/55/56/9781558175556.jpg'), - ('0312927789', 'Adams V. Texas', 'https://images.isbndb.com/covers/77/83/9780312927783.jpg'), - ('0312927614', 'Deadly Lessons (True Crime Library)', 'https://images.isbndb.com/covers/76/15/9780312927615.jpg'), - ('0451171640', 'Buried Secrets: A True Story Of Serial Murder', 'https://images.isbndb.com/covers/16/41/9780451171641.jpg'), - ('0451402847', 'Too Good To Be True: The Story Of Denise Redlick''s Murder (Onyx)', 'https://images.isbndb.com/covers/28/44/9780451402844.jpg'), - ('0380722526', 'Molly Donnelly', 'https://images.isbndb.com/covers/25/25/9780380722525.jpg'), - ('0451117905', 'Ziggy Faces Life Again (Signet)', 'https://images.isbndb.com/covers/79/08/9780451117908.jpg'), - ('0821717448', 'Jade', 'https://images.isbndb.com/covers/74/48/9780821717448.jpg'), - ('0440203856', 'Zoya', 'https://images.isbndb.com/covers/38/58/9780440203858.jpg'), - ('0440146844', 'Loving', 'https://images.isbndb.com/covers/68/41/9780440146841.jpg'), - ('0440126894', 'Full Circle', 'https://images.isbndb.com/covers/68/98/9780440126898.jpg'), - ('0553264079', 'I''ll Take Manhattan', 'https://images.isbndb.com/covers/40/74/9780553264074.jpg'), - ('0451403053', 'Buried Mistakes (Onyx)', 'https://images.isbndb.com/covers/30/56/9780451403056.jpg'), - ('0553256211', 'HOLD THE DREAM', 'https://images.isbndb.com/covers/62/15/9780553256215.jpg'), - ('0451153952', 'White Slave (Signet)', 'https://images.isbndb.com/covers/39/51/9780451153951.jpg'), - ('0425130894', 'Robin Hood', 'https://images.isbndb.com/covers/08/96/9780425130896.jpg'), - ('088038672X', 'Streams Of Silver (Forgotten Realms: The Icewind Dale Trilogy, Book 2)', 'https://images.isbndb.com/covers/67/22/9780880386722.jpg'), - ('0843938269', 'Thirst', 'https://images.isbndb.com/covers/82/65/9780843938265.jpg'), - ('0385279140', 'Alfred Hitchcock''s Fatal Attractions', 'https://images.isbndb.com/covers/91/47/9780385279147.jpg'), - ('0394859111', 'Witch''s Brew-Hitchcock', 'https://images.isbndb.com/covers/91/18/9780394859118.jpg'), - ('0553271091', 'The Road To Gandolfo', 'https://images.isbndb.com/covers/10/96/9780553271096.jpg'), - ('1572972912', 'Smoke And Mirrors', 'https://images.isbndb.com/covers/29/19/9781572972919.jpg'), - ('0451159896', 'Dead Ringers (Signet)', 'https://images.isbndb.com/covers/98/92/9780451159892.jpg'), - ('3426015463', 'Der Rabbi. Roman.', 'https://images.isbndb.com/covers/54/69/9783426015469.jpg'), - ('3442750547', 'Leuchttürme, Landeinwärts', 'https://images.isbndb.com/covers/05/42/9783442750542.jpg'), - ('3423085304', 'Gefährliche Praxis', 'https://images.isbndb.com/covers/53/04/9783423085304.jpg'), - ('3455024947', 'Die Kammer', 'https://images.isbndb.com/covers/49/44/9783455024944.jpg'), - ('345387319X', 'Naked.', 'https://images.isbndb.com/covers/31/93/9783453873193.jpg'), - ('3499146983', 'Tod Im Weißen Häubchen.', 'https://images.isbndb.com/covers/69/85/9783499146985.jpg'), - ('3426013347', 'Ihres Vaters Haus. Roman.', 'https://images.isbndb.com/covers/33/42/9783426013342.jpg'), - ('3596151945', 'Gefährliche Träume', 'https://images.isbndb.com/covers/19/43/9783596151943.jpg'), - ('0060080841', 'The Stepford Wives', 'https://images.isbndb.com/covers/08/46/9780060080846.jpg'), - ('0679816607', 'The Great Atlas Of Discovery', 'https://images.isbndb.com/covers/66/07/9780679816607.jpg'), - ('0441005241', 'Burnt Offerings (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/52/46/9780441005246.jpg'), - ('0441004520', 'The Killing Dance (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/45/22/9780441004522.jpg'), - ('0441003745', 'Bloody Bones (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/37/47/9780441003747.jpg'), - ('0553577255', 'Traitor''s Moon (Nightrunner, Vol. 3)', 'https://images.isbndb.com/covers/72/59/9780553577259.jpg'), - ('0553575430', 'Stalking Darkness (Nightrunner, Vol. 2)', 'https://images.isbndb.com/covers/54/39/9780553575439.jpg'), - ('0884481492', 'In The Palm Of Your Hand: The Poet''s Portable Workshop', 'https://images.isbndb.com/covers/14/92/9780884481492.jpg'), - ('0553575422', 'Luck In The Shadows (Nightrunner, Vol. 1)', 'https://images.isbndb.com/covers/54/22/9780553575422.jpg'), - ('0843949945', 'Dark Guardian', 'https://images.isbndb.com/covers/99/40/9780843949940.jpg'), - ('0486292886', 'The Archaeology Of Weapons: Arms And Armour From Prehistory To The Age Of Chivalry', 'https://images.isbndb.com/covers/28/85/9780486292885.jpg'), - ('006090674X', 'Life In A Medieval Castle', 'https://images.isbndb.com/covers/67/40/9780060906740.jpg'), - ('0871968789', 'Counterattack : The West''s Battle Against The Terrorists', 'https://images.isbndb.com/covers/87/84/9780871968784.jpg'), - ('0912608951', 'Phantom Of The Pines: More Tales Of The Jersey Devil', 'https://images.isbndb.com/covers/89/52/9780912608952.jpg'), - ('0912608110', 'The Jersey Devil', 'https://images.isbndb.com/covers/81/12/9780912608112.jpg'), - ('0373076312', 'Return Of Rafe Mackade (Heartbreakers) (The Mackade Brothers)', 'https://images.isbndb.com/covers/63/14/9780373076314.jpg'), - ('0743403495', 'The Place Of Truth (The Stone Of Light, Vol. 4)', 'https://images.isbndb.com/covers/34/98/9780743403498.jpg'), - ('0743403487', 'Paneb The Ardent (The Stone Of Light, Volume III)', 'https://images.isbndb.com/covers/34/81/9780743403481.jpg'), - ('0743403479', 'The Wise Woman (The Stone Of Light, Vol. 2)', 'https://images.isbndb.com/covers/34/74/9780743403474.jpg'), - ('0743403460', 'Nefer The Silent (The Stone Of Light, Vol. 1)', 'https://images.isbndb.com/covers/34/67/9780743403467.jpg'), - ('0812517164', 'The Forever King (Arthur Legend 1)', 'https://images.isbndb.com/covers/71/63/9780812517163.jpg'), - ('1575667274', 'Peaches And Screams: A Savannah Reid Mystery (Savannah Reid Mysteries)', 'https://images.isbndb.com/covers/72/70/9781575667270.jpg'), - ('0385306040', 'Malice', 'https://images.isbndb.com/covers/60/41/9780385306041.jpg'), - ('0385316879', 'Journey', 'https://images.isbndb.com/covers/68/73/9780385316873.jpg'), - ('0942237285', 'Christmas Cheer: Recipes And Party Ideas (Memories In The Making Series)', 'https://images.isbndb.com/covers/72/83/9780942237283.jpg'), - ('0743457269', 'A Knight In Shining Armor', 'https://images.isbndb.com/covers/72/62/9780743457262.jpg'), - ('0330334026', 'Mad Cows', 'https://images.isbndb.com/covers/40/20/9780330334020.jpg'), - ('0446527041', 'The Crush', 'https://images.isbndb.com/covers/70/40/9780446527040.jpg'), - ('0471528889', 'Straight Talk For Monday Morning: Creating Values, Vision, And Vitality At Work', 'https://images.isbndb.com/covers/88/83/9780471528883.jpg'), - ('0836217578', 'Build A Better Life By Stealing Office Supplies, Dogbert''s Big Book Of Business', 'https://images.isbndb.com/covers/75/75/9780836217575.jpg'), - ('0385334710', 'Looking Back : A Novel', 'https://images.isbndb.com/covers/47/16/9780385334716.jpg'), - ('1575665727', 'Listen To Your Heart', 'https://images.isbndb.com/covers/57/26/9781575665726.jpg'), - ('0399146741', 'Summer Of Storms', 'https://images.isbndb.com/covers/67/49/9780399146749.jpg'), - ('078710339X', 'Nicole Brown Simpson: The Private Diary Of A Life Interrupted', 'https://images.isbndb.com/covers/33/92/9780787103392.jpg'), - ('0312179405', 'Tell Me Lies', 'https://images.isbndb.com/covers/94/03/9780312179403.jpg'), - ('0440211891', 'Heartbeat', 'https://images.isbndb.com/covers/18/91/9780440211891.jpg'), - ('0821737902', 'Small Town Girls', 'https://images.isbndb.com/covers/79/03/9780821737903.jpg'), - ('0451204956', 'Bad Boy', 'https://images.isbndb.com/covers/49/50/9780451204950.jpg'), - ('0373255241', 'Taylor Made (Harlequin Temptation)', 'https://images.isbndb.com/covers/52/45/9780373255245.jpg'), - ('0373241755', 'The Paternity Question (Double Wedding) (Silhouette Special Edition #1175)', 'https://images.isbndb.com/covers/17/50/9780373241750.jpg'), - ('037322513X', 'The Stranger She Knew (Men Of Mystery) (Harlequin Intrigue #513)', 'https://images.isbndb.com/covers/51/32/9780373225132.jpg'), - ('0373079281', 'Tough Guy And The Toddler (Men In Blue) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/92/85/9780373079285.jpg'), - ('0515124214', 'Inner Harbor (The Chesapeake Bay Saga, Book 3)', 'https://images.isbndb.com/covers/42/17/9780515124217.jpg'), - ('0380820889', 'Blindsighted (Grant County)', 'https://images.isbndb.com/covers/08/87/9780380820887.jpg'), - ('0061053716', 'Imajica', 'https://images.isbndb.com/covers/37/19/9780061053719.jpg'), - ('0440213282', 'No Greater Love', 'https://images.isbndb.com/covers/32/84/9780440213284.jpg'), - ('0451407431', 'Matinee', 'https://images.isbndb.com/covers/74/36/9780451407436.jpg'), - ('0316313203', 'The Anna Papers: A Novel', 'https://images.isbndb.com/covers/32/09/9780316313209.jpg'), - ('0452277809', 'One Deadly Summer', 'https://images.isbndb.com/covers/78/09/9780452277809.jpg'), - ('0030149061', 'The Doonesbury Chronicles / G. B. Trudeau ; With An Introduction By Garry Wills', 'https://images.isbndb.com/covers/90/61/9780030149061.jpg'), - ('0312942192', 'Huysman''s Pets', 'https://images.isbndb.com/covers/21/99/9780312942199.jpg'), - ('0879830689', 'The Healing Benefits Of Acupressure: Acupuncture Without Needles', 'https://images.isbndb.com/covers/06/87/9780879830687.jpg'), - ('0671027972', 'Single & Single', 'https://images.isbndb.com/covers/79/71/9780671027971.jpg'), - ('0312970307', 'Burned Alive: A Shocking True Story Of Betrayal, Kidnapping, And Murder (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/03/07/9780312970307.jpg'), - ('0380802252', 'Baroque And Desperate (A Den Of Antiquity Mystery)', 'https://images.isbndb.com/covers/22/58/9780380802258.jpg'), - ('0553574795', 'Dangerous To Hold', 'https://images.isbndb.com/covers/47/91/9780553574791.jpg'), - ('0385260075', 'Cat''s Eye', 'https://images.isbndb.com/covers/00/77/9780385260077.jpg'), - ('0895770695', 'Animals Can Be Almost Human', 'https://images.isbndb.com/covers/06/91/9780895770691.jpg'), - ('0517554399', 'So Long, And Thanks For All The Fish', 'https://images.isbndb.com/covers/43/95/9780517554395.jpg'), - ('0736421300', 'Finding Nemo Junior Novelization', 'https://images.isbndb.com/covers/13/00/9780736421300.jpg'), - ('0451457528', 'Flesh And Silver', 'https://images.isbndb.com/covers/75/23/9780451457523.jpg'), - ('0385425074', 'Backlash: The Undeclared War Against American Women', 'https://images.isbndb.com/covers/50/70/9780385425070.jpg'), - ('0689704208', 'The Dark Is Rising', 'https://images.isbndb.com/covers/42/08/9780689704208.jpg'), - ('0689704488', 'The Grey King (Dark Is Rising Sequence)', 'https://images.isbndb.com/covers/44/82/9780689704482.jpg'), - ('0689704674', 'Silver On The Tree (The Dark Is Rising, Bk 5)', 'https://images.isbndb.com/covers/46/73/9780689704673.jpg'), - ('1551665816', 'Expose (Mira)', 'https://images.isbndb.com/covers/58/18/9781551665818.jpg'), - ('0394828054', 'The Chocolate War', 'https://images.isbndb.com/covers/80/53/9780394828053.jpg'), - ('0590431242', 'A Band Of Angels', 'https://images.isbndb.com/covers/12/48/9780590431248.jpg'), - ('0373482345', 'Silhouette Christmas Stories 1991', 'https://images.isbndb.com/covers/23/44/9780373482344.jpg'), - ('0373196660', 'Pregnant By The Boss!', 'https://images.isbndb.com/covers/66/61/9780373196661.jpg'), - ('0517554550', 'Martha Stewart''s Hors D''Oeuvres', 'https://images.isbndb.com/covers/45/55/9780517554555.jpg'), - ('0440116139', 'The Complete Handbook Of Nutrition', 'https://images.isbndb.com/covers/61/34/9780440116134.jpg'), - ('0671872680', 'Red Dice (The Last Vampire 3)', 'https://images.isbndb.com/covers/26/87/9780671872687.jpg'), - ('0812536169', 'Bridgehead', 'https://images.isbndb.com/covers/61/64/9780812536164.jpg'), - ('0800786866', 'In His Steps', 'https://images.isbndb.com/covers/68/61/9780800786861.jpg'), - ('0671724169', 'ENTROPY EFFECT (CLASSIC STAR TREK 2)', 'https://images.isbndb.com/covers/41/60/9780671724160.jpg'), - ('0373290136', 'The Wilder Wedding (Historical , No 413)', 'https://images.isbndb.com/covers/01/30/9780373290130.jpg'), - ('0380753022', 'Gentle Rogue (Malory Novels)', 'https://images.isbndb.com/covers/30/24/9780380753024.jpg'), - ('0373289510', 'Wyoming Renegade (Harlequin Historical)', 'https://images.isbndb.com/covers/95/16/9780373289516.jpg'), - ('0679853065', 'A Day No Pigs Would Die', 'https://images.isbndb.com/covers/30/60/9780679853060.jpg'), - ('1558171118', 'Warbots', 'https://images.isbndb.com/covers/11/14/9781558171114.jpg'), - ('0020412401', 'Little Women', 'https://images.isbndb.com/covers/24/03/9780020412403.jpg'), - ('067152609X', 'The Return (Star Trek)', 'https://images.isbndb.com/covers/60/92/9780671526092.jpg'), - ('0767913701', 'The Thoroughly Modern Married Girl: Staying Sensational After Saying "I Do"', 'https://images.isbndb.com/covers/37/06/9780767913706.jpg'), - ('0671674358', 'The Prometheus Design (Star Trek, No 5)', 'https://images.isbndb.com/covers/43/59/9780671674359.jpg'), - ('0671658662', 'My Enemy, My Ally (Star Trek: The Original Series, No. 18)', 'https://images.isbndb.com/covers/86/63/9780671658663.jpg'), - ('0451159233', 'Mort (Discworld)', 'https://images.isbndb.com/covers/92/36/9780451159236.jpg'), - ('1572242132', 'Conscious Bride (Women Talk About)', 'https://images.isbndb.com/covers/21/35/9781572242135.jpg'), - ('0618055819', 'Gathering Blue', 'https://images.isbndb.com/covers/58/14/9780618055814.jpg'), - ('078688262X', 'What No One Tells The Bride: Surviving The Wedding, Sex After The Honeymoon, Second Thoughts, Wedding Cake Freezer Burn, Becoming Your Mother, Screaming About Money, Screaming About In-Laws, Etc.', 'https://images.isbndb.com/covers/26/25/9780786882625.jpg'), - ('0192827618', 'Sense And Sensibility (World''s Classics)', 'https://images.isbndb.com/covers/76/16/9780192827616.jpg'), - ('0671502239', 'E Pluribus Unicorn', 'https://images.isbndb.com/covers/22/32/9780671502232.jpg'), - ('1853260630', 'Candide (Wordsworth Classics)', 'https://images.isbndb.com/covers/06/36/9781853260636.jpg'), - ('0002550563', 'Black & White Cats', 'https://images.isbndb.com/covers/05/67/9780002550567.jpg'), - ('0451524551', 'Moby Dick (Signet Classics)', 'https://images.isbndb.com/covers/45/53/9780451524553.jpg'), - ('1889392022', 'Bridal Bargains: Secrets To Throwing A Fantastic Wedding On A Realistic Budget', 'https://images.isbndb.com/covers/20/28/9781889392028.jpg'), - ('1889392030', 'Bridal Gown Guide 1999', 'https://images.isbndb.com/covers/20/35/9781889392035.jpg'), - ('0060171626', 'What Your Mother Couldn''t Tell You And Your Father Didn''t Know: Advanced Relationship Skills For Better Communication And Lasting Intimacy', 'https://images.isbndb.com/covers/16/29/9780060171629.jpg'), - ('0441518095', 'The Man In The High Castle', 'https://images.isbndb.com/covers/80/98/9780441518098.jpg'), - ('082175565X', 'Warrior''s Prize', 'https://images.isbndb.com/covers/56/55/9780821755655.jpg'), - ('1551662671', 'Too Hot To Handle', 'https://images.isbndb.com/covers/26/71/9781551662671.jpg'), - ('0380802309', 'Someone To Watch Over Me (Bow Street, Book 1)', 'https://images.isbndb.com/covers/23/02/9780380802302.jpg'), - ('037348383X', 'Conard County: Boots & Badges', 'https://images.isbndb.com/covers/38/39/9780373483839.jpg'), - ('0671569031', 'Amaryllis', 'https://images.isbndb.com/covers/90/37/9780671569037.jpg'), - ('0140621792', 'Madame Bovary (Penguin Popular Classics)', 'https://images.isbndb.com/covers/17/92/9780140621792.jpg'), - ('0061092177', 'Small Gods', 'https://images.isbndb.com/covers/21/76/9780061092176.jpg'), - ('0843941219', 'An Old-Fashioned Southern Christmas', 'https://images.isbndb.com/covers/12/10/9780843941210.jpg'), - ('0373224729', 'Runaway Heart (Harlequin Intrigue, No. 472)', 'https://images.isbndb.com/covers/47/22/9780373224722.jpg'), - ('0373118864', 'An Incovenient Husband (Harlequin Presents, No 1886)', 'https://images.isbndb.com/covers/88/61/9780373118861.jpg'), - ('0671868322', 'The Secret (Fear Street Saga Trilogy, No. 2)', 'https://images.isbndb.com/covers/83/21/9780671868321.jpg'), - ('0440983568', 'Stranger With My Face', 'https://images.isbndb.com/covers/35/69/9780440983569.jpg'), - ('0671868330', 'The Burning (The Fear Street Saga #3)', 'https://images.isbndb.com/covers/83/38/9780671868338.jpg'), - ('0671738232', 'The Goodnight Kiss (Fear Street Super Chillers, No. 3)', 'https://images.isbndb.com/covers/82/35/9780671738235.jpg'), - ('067189434X', 'The Dark Secret (Fear Street: Cataluna Chronicles, No. 2)', 'https://images.isbndb.com/covers/43/44/9780671894344.jpg'), - ('0671745115', 'The Wicked Heart', 'https://images.isbndb.com/covers/51/10/9780671745110.jpg'), - ('0671690590', 'Master Of Murder', 'https://images.isbndb.com/covers/05/95/9780671690595.jpg'), - ('0671724851', 'The Prom Queen (Fear Street, No. 15)', 'https://images.isbndb.com/covers/48/56/9780671724856.jpg'), - ('0590430149', 'Slumber Party (Point Paperback)', 'https://images.isbndb.com/covers/01/42/9780590430142.jpg'), - ('0671724819', 'The Fire Game (Fear Street, No. 11)', 'https://images.isbndb.com/covers/48/18/9780671724818.jpg'), - ('0590403214', 'Aliens In The Family', 'https://images.isbndb.com/covers/32/14/9780590403214.jpg'), - ('0671745107', 'The Immortal', 'https://images.isbndb.com/covers/51/03/9780671745103.jpg'), - ('0671894331', 'The Evil Moon (Fear Street: Cataluna Chronicles, No. 1)', 'https://images.isbndb.com/covers/43/37/9780671894337.jpg'), - ('0671702432', 'Halloween Party (Fear Street, No. 8)', 'https://images.isbndb.com/covers/24/34/9780671702434.jpg'), - ('0671550551', 'Execution Of Innocence Paperback', 'https://images.isbndb.com/covers/05/54/9780671550554.jpg'), - ('0671726498', 'A Gift Of Magic', 'https://images.isbndb.com/covers/64/92/9780671726492.jpg'), - ('0440918642', 'Daughters Of Eve', 'https://images.isbndb.com/covers/86/46/9780440918646.jpg'), - ('0345274539', 'She', 'https://images.isbndb.com/covers/45/33/9780345274533.jpg'), - ('0671676563', 'Scavenger Hunt', 'https://images.isbndb.com/covers/65/68/9780671676568.jpg'), - ('0590433105', 'Christmas Killer (Point)', 'https://images.isbndb.com/covers/31/05/9780590433105.jpg'), - ('0441515339', 'Magicats 2', 'https://images.isbndb.com/covers/53/32/9780441515332.jpg'), - ('0689829833', 'The Dark Is Rising (The Dark Is Rising Sequence)', 'https://images.isbndb.com/covers/98/33/9780689829833.jpg'), - ('0441515304', 'Magicats!', 'https://images.isbndb.com/covers/53/01/9780441515301.jpg'), - ('078600312X', 'Prey', 'https://images.isbndb.com/covers/31/29/9780786003129.jpg'), - ('0883632012', 'The Jungle Books', 'https://images.isbndb.com/covers/20/17/9780883632017.jpg'), - ('0786889063', 'The Codicil: A Novel', 'https://images.isbndb.com/covers/90/68/9780786889068.jpg'), - ('0316290238', 'The Collector (Back Bay Books)', 'https://images.isbndb.com/covers/02/34/9780316290234.jpg'), - ('0374386137', 'A Wrinkle In Time (Madeleine L''Engle''s Time Quintet)', 'https://images.isbndb.com/covers/61/39/9780374386139.jpg'), - ('0425065553', 'The White Plague', 'https://images.isbndb.com/covers/55/56/9780425065556.jpg'), - ('0192834347', 'Little Women (Oxford World''s Classics)', 'https://images.isbndb.com/covers/43/48/9780192834348.jpg'), - ('0373226691', 'Familiar Mirage (Fear Familiar #14) (Harlequin Intrigue #669)', 'https://images.isbndb.com/covers/66/96/9780373226696.jpg'), - ('050552385X', 'Sixpence Bride (Timeswept)', 'https://images.isbndb.com/covers/38/53/9780505523853.jpg'), - ('0553801619', 'Whisker Of Evil: A Mrs. Murphy Mystery', 'https://images.isbndb.com/covers/16/13/9780553801613.jpg'), - ('0060004703', 'Engaged To Die (Death On Demand Mysteries, No. 14)', 'https://images.isbndb.com/covers/47/05/9780060004705.jpg'), - ('0553582852', 'The Tail Of The Tip-Off (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/28/57/9780553582857.jpg'), - ('0743482247', 'Arson And Old Lace (Far Wychwood Mysteries, No. 1)', 'https://images.isbndb.com/covers/22/40/9780743482240.jpg'), - ('0451211715', 'Dying To Retire (Murder She Wrote, No. 21)', 'https://images.isbndb.com/covers/17/12/9780451211712.jpg'), - ('0821769286', 'Knight Triumphant (Zebra Historical Romance)', 'https://images.isbndb.com/covers/92/87/9780821769287.jpg'), - ('0843937335', 'Sweet Chance', 'https://images.isbndb.com/covers/73/36/9780843937336.jpg'), - ('0380753014', 'Warrior''s Woman (Avon)', 'https://images.isbndb.com/covers/30/17/9780380753017.jpg'), - ('0505525313', 'The Selkie', 'https://images.isbndb.com/covers/53/14/9780505525314.jpg'), - ('0821772279', 'Realm Of Shadows', 'https://images.isbndb.com/covers/22/70/9780821772270.jpg'), - ('0380767597', 'Forget Me Not', 'https://images.isbndb.com/covers/75/95/9780380767595.jpg'), - ('0380897393', 'When Love Awaits', 'https://images.isbndb.com/covers/73/91/9780380897391.jpg'), - ('0553561537', 'Desire', 'https://images.isbndb.com/covers/15/31/9780553561531.jpg'), - ('0380811987', 'Rules Of Engagement (Governess Brides, Book 2)', 'https://images.isbndb.com/covers/19/84/9780380811984.jpg'), - ('0312987846', 'The Spy (Liars Club, Book 3)', 'https://images.isbndb.com/covers/78/48/9780312987848.jpg'), - ('0380761483', 'So Worthy My Love', 'https://images.isbndb.com/covers/14/87/9780380761487.jpg'), - ('0743460537', 'Beauty', 'https://images.isbndb.com/covers/05/38/9780743460538.jpg'), - ('0451208072', 'St. Raven', 'https://images.isbndb.com/covers/80/71/9780451208071.jpg'), - ('0553574108', 'I Thee Wed', 'https://images.isbndb.com/covers/41/04/9780553574104.jpg'), - ('0671689738', 'Sweet Liar', 'https://images.isbndb.com/covers/97/35/9780671689735.jpg'), - ('0743478967', 'Holly (Deveraux, Jude)', 'https://images.isbndb.com/covers/89/60/9780743478960.jpg'), - ('1568655878', 'Petals On The River', 'https://images.isbndb.com/covers/58/71/9781568655871.jpg'), - ('0743467221', 'Legends Lake', 'https://images.isbndb.com/covers/72/23/9780743467223.jpg'), - ('0373286716', 'Sun Woman (Harlequin Historical, No. 71)', 'https://images.isbndb.com/covers/67/13/9780373286713.jpg'), - ('0061031534', 'The Reluctant Suitor', 'https://images.isbndb.com/covers/15/33/9780061031533.jpg'), - ('0451205804', 'Hazard', 'https://images.isbndb.com/covers/58/03/9780451205803.jpg'), - ('0821774166', 'All I Ever Needed (Zebra Historical Romance)', 'https://images.isbndb.com/covers/41/68/9780821774168.jpg'), - ('0553580280', 'Catch As Cat Can (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/02/80/9780553580280.jpg'), - ('1565073193', 'Emilie''s Creative Home Organizer', 'https://images.isbndb.com/covers/31/97/9781565073197.jpg'), - ('050552516X', 'Ravyn''s Flight (Jarved 9, Book 1)', 'https://images.isbndb.com/covers/51/61/9780505525161.jpg'), - ('0451623142', 'With Malice Toward None (Mentor Series)', 'https://images.isbndb.com/covers/31/40/9780451623140.jpg'), - ('0451523024', 'Uncle Tom''s Cabin', 'https://images.isbndb.com/covers/30/20/9780451523020.jpg'), - ('0399151079', 'The Cat Who Talked Turkey', 'https://images.isbndb.com/covers/10/71/9780399151071.jpg'), - ('0553442856', 'LORD OF THE ISLAND (Loveswept)', 'https://images.isbndb.com/covers/28/54/9780553442854.jpg'), - ('0373241062', 'Cowboy''S Lady (Silhouette Special Edition)', 'https://images.isbndb.com/covers/10/64/9780373241064.jpg'), - ('0671644483', 'Wishes', 'https://images.isbndb.com/covers/44/82/9780671644482.jpg'), - ('0671446886', 'The Endearment', 'https://images.isbndb.com/covers/68/88/9780671446888.jpg'), - ('0373153309', 'Circle Of Gold (SR)', 'https://images.isbndb.com/covers/33/05/9780373153305.jpg'), - ('0373701217', 'Winter Roses (Harlequin Superromance No. 121)', 'https://images.isbndb.com/covers/12/16/9780373701216.jpg'), - ('0373098596', 'Hardhearted (That Special Woman!) (Silhouette Special Edition #859)', 'https://images.isbndb.com/covers/85/90/9780373098590.jpg'), - ('0373097360', 'Liberation Of Layla (Silhouette Special Edition)', 'https://images.isbndb.com/covers/73/64/9780373097364.jpg'), - ('084232920X', 'Assassins (Left Behind, Book 6)', 'https://images.isbndb.com/covers/92/00/9780842329200.jpg'), - ('0373706766', 'The Texas Way: Home On The Ranch #1 (Harlequin Superromance, No 676)', 'https://images.isbndb.com/covers/67/61/9780373706761.jpg'), - ('0373707657', 'One More Rodeo (Harlequin Superromance No. 765)', 'https://images.isbndb.com/covers/76/52/9780373707652.jpg'), - ('0553266926', 'The Rapture', 'https://images.isbndb.com/covers/69/24/9780553266924.jpg'), - ('0880705760', 'No Wonder They Call Him Savior: Chronicles Of The Cross', 'https://images.isbndb.com/covers/57/69/9780880705769.jpg'), - ('0380806290', 'The Wedding Bargain', 'https://images.isbndb.com/covers/62/94/9780380806294.jpg'), - ('0451408772', 'Calypso Magic (Magic Trilogy)', 'https://images.isbndb.com/covers/87/78/9780451408778.jpg'), - ('0842329161', 'Apollyon: The Destroyer Is Unleashed (Left Behind #5)', 'https://images.isbndb.com/covers/91/63/9780842329163.jpg'), - ('038075911X', 'The Black Lyon: The Magnificent Love Story Of A Fearless Lord And The Woman Who Tamed Him', 'https://images.isbndb.com/covers/91/18/9780380759118.jpg'), - ('0060675233', 'Born Of A Woman: A Bishop Rethinks The Virgin Birth And The Treatment Of Women By A Male-Dominated Church', 'https://images.isbndb.com/covers/52/33/9780060675233.jpg'), - ('0380897342', 'Ambrosia', 'https://images.isbndb.com/covers/73/46/9780380897346.jpg'), - ('0373119194', 'Untouched (Harlequin Presents)', 'https://images.isbndb.com/covers/91/96/9780373119196.jpg'), - ('0060185708', 'The Reluctant Suitor', 'https://images.isbndb.com/covers/57/01/9780060185701.jpg'), - ('0842329285', 'The Indwelling: The Beast Takes Possession (Left Behind #7)', 'https://images.isbndb.com/covers/92/86/9780842329286.jpg'), - ('0892749482', 'Enjoying Where You Are On The Way To Where You Are Going', 'https://images.isbndb.com/covers/94/85/9780892749485.jpg'), - ('1586608010', 'Texas Belles: One More Chance/Courtin'' Patience/Susannah''s Secret/The Sheriff And The Outlaw (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/80/19/9781586608019.jpg'), - ('0345275128', 'Touch The Sun', 'https://images.isbndb.com/covers/51/27/9780345275127.jpg'), - ('0060571454', 'The Princess Masquerade', 'https://images.isbndb.com/covers/14/50/9780060571450.jpg'), - ('0373291515', 'Highland Wife (Harlequin Historical)', 'https://images.isbndb.com/covers/15/19/9780373291519.jpg'), - ('0380777312', 'Mischief', 'https://images.isbndb.com/covers/73/10/9780380777310.jpg'), - ('0380811979', 'Rules Of Surrender (Governess Brides, Book 1)', 'https://images.isbndb.com/covers/19/77/9780380811977.jpg'), - ('0553567772', 'Prince Of Shadows', 'https://images.isbndb.com/covers/77/79/9780553567779.jpg'), - ('0380385880', 'Shanna', 'https://images.isbndb.com/covers/58/81/9780380385881.jpg'), - ('0060560789', 'Your Wicked Ways', 'https://images.isbndb.com/covers/07/82/9780060560782.jpg'), - ('0821775472', 'When We Touch (Zebra Historical Romance)', 'https://images.isbndb.com/covers/54/79/9780821775479.jpg'), - ('0312982305', 'The Wedding Night', 'https://images.isbndb.com/covers/23/00/9780312982300.jpg'), - ('0505524945', 'A Love To Cherish', 'https://images.isbndb.com/covers/49/42/9780505524942.jpg'), - ('0553565044', 'False Dawn', 'https://images.isbndb.com/covers/50/41/9780553565041.jpg'), - ('0425194833', 'Miss Wonderful (Carsington Family Series)', 'https://images.isbndb.com/covers/48/36/9780425194836.jpg'), - ('0425194868', 'The Seduction (Berkley Sensation)', 'https://images.isbndb.com/covers/48/67/9780425194867.jpg'), - ('0743470036', 'A Deal With The Devil', 'https://images.isbndb.com/covers/00/32/9780743470032.jpg'), - ('067100333X', 'Come The Spring', 'https://images.isbndb.com/covers/33/33/9780671003333.jpg'), - ('071671017X', 'Aha! Insight', 'https://images.isbndb.com/covers/01/72/9780716710172.jpg'), - ('0736907734', 'Speak To My Heart, God: For Every Need, For Every Moment. . .', 'https://images.isbndb.com/covers/77/36/9780736907736.jpg'), - ('0451409094', 'The Dragon Hour', 'https://images.isbndb.com/covers/90/96/9780451409096.jpg'), - ('0515127213', 'The Courtship', 'https://images.isbndb.com/covers/72/18/9780515127218.jpg'), - ('0553212281', 'The Tell-Tale Heart (Bantam Classics)', 'https://images.isbndb.com/covers/22/80/9780553212280.jpg'), - ('0553379623', 'Caring For Your Baby And Young Child: Birth To Age 5', 'https://images.isbndb.com/covers/96/24/9780553379624.jpg'), - ('1575665646', 'Dating Bootcamp: Conquering The Dating Obstacle Course', 'https://images.isbndb.com/covers/56/41/9781575665641.jpg'), - ('1576739627', 'The Prayer Of Jabez For Women', 'https://images.isbndb.com/covers/96/24/9781576739624.jpg'), - ('068985482X', 'A Day At The Beach', 'https://images.isbndb.com/covers/48/28/9780689854828.jpg'), - ('0786004509', 'All Fall Down', 'https://images.isbndb.com/covers/45/08/9780786004508.jpg'), - ('0786006285', 'Quicksand', 'https://images.isbndb.com/covers/62/81/9780786006281.jpg'), - ('0553584901', 'Shady Lady', 'https://images.isbndb.com/covers/49/05/9780553584905.jpg'), - ('0821758942', 'Exquisite', 'https://images.isbndb.com/covers/89/46/9780821758946.jpg'), - ('0743465067', 'Highlander Unbound', 'https://images.isbndb.com/covers/50/69/9780743465069.jpg'), - ('0440225884', 'The Damsel: The Bride Quest #2', 'https://images.isbndb.com/covers/58/81/9780440225881.jpg'), - ('0061059471', 'Cat In The Dark: A Joe Grey Mystery (Joe Grey Mysteries)', 'https://images.isbndb.com/covers/94/76/9780061059476.jpg'), - ('0425191230', 'Material Girl (Berkley Sensation)', 'https://images.isbndb.com/covers/12/31/9780425191231.jpg'), - ('0553268481', 'New Moon Rising', 'https://images.isbndb.com/covers/84/85/9780553268485.jpg'), - ('0394551540', 'Alaska', 'https://images.isbndb.com/covers/15/48/9780394551548.jpg'), - ('0688065716', 'The Sands Of Time', 'https://images.isbndb.com/covers/57/13/9780688065713.jpg'), - ('0449221873', 'Mexico', 'https://images.isbndb.com/covers/18/77/9780449221877.jpg'), - ('0515061786', 'Grave Mistake', 'https://images.isbndb.com/covers/17/89/9780515061789.jpg'), - ('0515070742', 'Final Curtain', 'https://images.isbndb.com/covers/07/43/9780515070743.jpg'), - ('0515075051', 'Photo Finish', 'https://images.isbndb.com/covers/50/52/9780515075052.jpg'), - ('0688066631', 'Whirlwind', 'https://images.isbndb.com/covers/66/35/9780688066635.jpg'), - ('034525385X', 'Sybil Leek''s Book Of The Curious And The Occult', 'https://images.isbndb.com/covers/38/59/9780345253859.jpg'), - ('0891098623', 'The Message Of Hope', 'https://images.isbndb.com/covers/86/21/9780891098621.jpg'), - ('014004891X', 'Of Mice And Men / Cannery Row (2 Books In 1)', 'https://images.isbndb.com/covers/89/19/9780140048919.jpg'), - ('0449219569', 'Comeback', 'https://images.isbndb.com/covers/95/60/9780449219560.jpg'), - ('0449206521', 'Tales Of The South Pacific', 'https://images.isbndb.com/covers/65/22/9780449206522.jpg'), - ('0446404462', 'Something In The Water (Peter Shandy Mysteries)', 'https://images.isbndb.com/covers/44/64/9780446404464.jpg'), - ('0449206394', 'A Death At St. Anselm''s', 'https://images.isbndb.com/covers/63/93/9780449206393.jpg'), - ('0553564994', 'Homeland: The Crown Family Saga, 1890-1900', 'https://images.isbndb.com/covers/49/90/9780553564990.jpg'), - ('0821767089', 'If She Only Knew', 'https://images.isbndb.com/covers/70/85/9780821767085.jpg'), - ('0804112258', 'Cat Crimes 3', 'https://images.isbndb.com/covers/22/53/9780804112253.jpg'), - ('0515075035', 'Death Of A Fool', 'https://images.isbndb.com/covers/50/38/9780515075038.jpg'), - ('0515077356', 'Singing In The Shrouds', 'https://images.isbndb.com/covers/73/53/9780515077353.jpg'), - ('0684832291', 'My Gal Sunday', 'https://images.isbndb.com/covers/22/96/9780684832296.jpg'), - ('0515061662', 'Death In Ecstasy', 'https://images.isbndb.com/covers/16/66/9780515061666.jpg'), - ('0445407808', 'Vane Pursuit (A Peter Shandy Mystery)', 'https://images.isbndb.com/covers/78/00/9780445407800.jpg'), - ('0515120278', 'The Cat Who Said Cheese', 'https://images.isbndb.com/covers/02/71/9780515120271.jpg'), - ('0449904962', 'Indian Givers: How The Indians Of The Americas Transformed The World', 'https://images.isbndb.com/covers/49/61/9780449904961.jpg'), - ('0028604202', 'Politically Correct Holiday Stories: For An Enlightened Yuletide Season', 'https://images.isbndb.com/covers/42/06/9780028604206.jpg'), - ('0020199082', 'The Shepherd', 'https://images.isbndb.com/covers/90/83/9780020199083.jpg'), - ('0553240951', 'Out On A Limb', 'https://images.isbndb.com/covers/09/55/9780553240955.jpg'), - ('0515074438', 'Tied Up In Tinsel', 'https://images.isbndb.com/covers/44/37/9780515074437.jpg'), - ('051507506X', 'Died In The Wool', 'https://images.isbndb.com/covers/50/69/9780515075069.jpg'), - ('0515071056', 'Clutch Of Constables', 'https://images.isbndb.com/covers/10/54/9780515071054.jpg'), - ('0451197690', 'A Cat Of One''s Own (Alice Nestleton Mysteries)', 'https://images.isbndb.com/covers/76/96/9780451197696.jpg'), - ('0451204344', 'Murder, She Wrote: Murder In A Minor Key', 'https://images.isbndb.com/covers/43/49/9780451204349.jpg'), - ('0201517205', 'Iron John: A Book About Men', 'https://images.isbndb.com/covers/72/00/9780201517200.jpg'), - ('0333517628', 'My First Look At Summer', 'https://images.isbndb.com/covers/76/28/9780333517628.jpg'), - ('0746012721', 'The New Baby (Usborne First Experiences)', 'https://images.isbndb.com/covers/27/27/9780746012727.jpg'), - ('0192752685', 'Match Of Death', 'https://images.isbndb.com/covers/26/80/9780192752680.jpg'), - ('0517147270', 'Victorian Cat', 'https://images.isbndb.com/covers/72/76/9780517147276.jpg'), - ('0330288393', 'Flying Visits (Picador Books)', 'https://images.isbndb.com/covers/83/92/9780330288392.jpg'), - ('0671029088', 'Improvising Carla', 'https://images.isbndb.com/covers/90/81/9780671029081.jpg'), - ('2253076287', 'L''Homme De Saint-Pétersbourg', 'https://images.isbndb.com/covers/62/85/9782253076285.jpg'), - ('0140621296', 'Lorna Doone Pb (Penguin Popular Classics)', 'https://images.isbndb.com/covers/12/97/9780140621297.jpg'), - ('0216927781', 'The Teddy Bear Anthology', 'https://images.isbndb.com/covers/77/80/9780216927780.jpg'), - ('1853045586', 'The Xenophobe''s Guide To The French', 'https://images.isbndb.com/covers/55/85/9781853045585.jpg'), - ('0751511919', 'Small Hours Of The Morning', 'https://images.isbndb.com/covers/19/18/9780751511918.jpg'), - ('0312966776', 'Black And Blue: An Inspector Rebus Mystery (Black & Blue)', 'https://images.isbndb.com/covers/67/75/9780312966775.jpg'), - ('0747258090', 'Take These Broken Wings', 'https://images.isbndb.com/covers/80/94/9780747258094.jpg'), - ('0749732687', 'Coram Boy (Contents)', 'https://images.isbndb.com/covers/26/84/9780749732684.jpg'), - ('0600400409', 'Chess Move By Move', 'https://images.isbndb.com/covers/04/00/9780600400400.jpg'), - ('0746000561', 'German For Beginners (Language Guides)', 'https://images.isbndb.com/covers/05/64/9780746000564.jpg'), - ('0140511849', 'Dictionary Of Sociology, The Penguin: Second Edition (Reference)', 'https://images.isbndb.com/covers/18/40/9780140511840.jpg'), - ('0563371110', '"Have I Got News For You?": The Shameless Cash-in Book', 'https://images.isbndb.com/covers/11/13/9780563371113.jpg'), - ('0316734500', 'The Bookseller Of Kabul', 'https://images.isbndb.com/covers/45/09/9780316734509.jpg'), - ('0752848151', 'Stovold''s Mornington Crescent Almanac 2002', 'https://images.isbndb.com/covers/81/50/9780752848150.jpg'), - ('1854790420', 'Old Man And Mr. Smith', 'https://images.isbndb.com/covers/04/22/9781854790422.jpg'), - ('0723216371', 'The Observer''s Book Of Kitchen Antiques (Observer''s Pocket)', 'https://images.isbndb.com/covers/63/77/9780723216377.jpg'), - ('1860192599', 'How To Book Of Fitness And Exercise', 'https://images.isbndb.com/covers/25/93/9781860192593.jpg'), - ('0140059776', 'The Penguin Complete Father Brown (Father Brown Mystery)', 'https://images.isbndb.com/covers/97/79/9780140059779.jpg'), - ('1853043427', 'Fishing Mania (The Mania Series)', 'https://images.isbndb.com/covers/34/20/9781853043420.jpg'), - ('1850510881', 'Microwave Cooking', 'https://images.isbndb.com/covers/08/88/9781850510888.jpg'), - ('0704339986', 'Busy About The Tree Of Life: Collected Stories', 'https://images.isbndb.com/covers/99/89/9780704339989.jpg'), - ('1887166734', 'The Quotable Cat: A Collection Of Quotes, Facts, And Lore For Feline Fanciers', 'https://images.isbndb.com/covers/67/37/9781887166737.jpg'), - ('0439010705', 'Flying Blind (Point Crime)', 'https://images.isbndb.com/covers/07/02/9780439010702.jpg'), - ('1870451090', 'Mission Earth 3: The Enemy Within', 'https://images.isbndb.com/covers/10/93/9781870451093.jpg'), - ('0805004610', '"G" Is For Gumshoe (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/46/18/9780805004618.jpg'), - ('0671874594', 'Test Your I.Q. (Arco Test-Prep Your IQ)', 'https://images.isbndb.com/covers/45/99/9780671874599.jpg'), - ('1563898810', '9-11: Artists Respond, Volume 1', 'https://images.isbndb.com/covers/88/15/9781563898815.jpg'), - ('1563898780', '9-11: September 11, 2001 (Stories To Remember, Volume 2)', 'https://images.isbndb.com/covers/87/85/9781563898785.jpg'), - ('080502669X', 'The Old Man And The Boy', 'https://images.isbndb.com/covers/66/96/9780805026696.jpg'), - ('0553100637', 'Antarctica', 'https://images.isbndb.com/covers/06/31/9780553100631.jpg'), - ('0385415109', 'Raising The Stones', 'https://images.isbndb.com/covers/51/01/9780385415101.jpg'), - ('1878734601', 'Problem-oriented Policing: Crime-specific Problems, Critical Issues, And Making POP Work', 'https://images.isbndb.com/covers/46/00/9781878734600.jpg'), - ('157965116X', 'Values Of The Game', 'https://images.isbndb.com/covers/11/69/9781579651169.jpg'), - ('0374514852', 'A Sense Of Where You Are: Bill Bradley At Princeton', 'https://images.isbndb.com/covers/48/53/9780374514853.jpg'), - ('0312890222', 'The Awakeners: Northshore & Southshore', 'https://images.isbndb.com/covers/02/23/9780312890223.jpg'), - ('0380821001', 'The Visitor', 'https://images.isbndb.com/covers/10/06/9780380821006.jpg'), - ('038078405X', 'TOGETHER', 'https://images.isbndb.com/covers/40/59/9780380784059.jpg'), - ('0452281229', 'The Chisellers', 'https://images.isbndb.com/covers/12/26/9780452281226.jpg'), - ('0452281849', 'The Granny', 'https://images.isbndb.com/covers/18/44/9780452281844.jpg'), - ('0684824175', 'Dogspeak: How To Learn It, Speak It, And Use It To Have A Happy, Healthy, Well-Behaved Dog', 'https://images.isbndb.com/covers/41/78/9780684824178.jpg'), - ('0743411366', 'Say When : A Novel', 'https://images.isbndb.com/covers/13/63/9780743411363.jpg'), - ('0786890371', 'Cranberry Queen', 'https://images.isbndb.com/covers/03/78/9780786890378.jpg'), - ('1551665999', 'Driving Lessons (Mira)', 'https://images.isbndb.com/covers/59/93/9781551665993.jpg'), - ('0670032069', 'Revenge Of The Middle-Aged Woman', 'https://images.isbndb.com/covers/20/68/9780670032068.jpg'), - ('0525943064', 'Nothing But The Rent', 'https://images.isbndb.com/covers/30/68/9780525943068.jpg'), - ('0385491808', 'Crooked Little Heart: A Novel', 'https://images.isbndb.com/covers/18/08/9780385491808.jpg'), - ('052594558X', 'Bad Boy', 'https://images.isbndb.com/covers/55/81/9780525945581.jpg'), - ('1573229350', 'Best Friends', 'https://images.isbndb.com/covers/93/57/9781573229357.jpg'), - ('0446607177', 'Riptide', 'https://images.isbndb.com/covers/71/79/9780446607179.jpg'), - ('0553575465', 'Positive Match', 'https://images.isbndb.com/covers/54/60/9780553575460.jpg'), - ('0553573926', 'Vertical Run', 'https://images.isbndb.com/covers/39/23/9780553573923.jpg'), - ('0061097624', 'Found Money', 'https://images.isbndb.com/covers/76/21/9780061097621.jpg'), - ('0553576089', 'In The Presence Of The Enemy', 'https://images.isbndb.com/covers/60/85/9780553576085.jpg'), - ('0061097306', 'Act Of Revenge', 'https://images.isbndb.com/covers/73/00/9780061097300.jpg'), - ('0515124060', 'The Investigators (Badge Of Honor No. 7)', 'https://images.isbndb.com/covers/40/64/9780515124064.jpg'), - ('0451185498', 'Against The Law', 'https://images.isbndb.com/covers/54/95/9780451185495.jpg'), - ('0451192222', 'Witness For The Defense', 'https://images.isbndb.com/covers/22/26/9780451192226.jpg'), - ('0446609617', 'Standoff', 'https://images.isbndb.com/covers/96/16/9780446609616.jpg'), - ('0446608033', 'The Color Of Night', 'https://images.isbndb.com/covers/80/39/9780446608039.jpg'), - ('1575663643', 'Final Seconds', 'https://images.isbndb.com/covers/36/47/9781575663647.jpg'), - ('0307128199', 'Walt Disney''s 101 Dalmatians (Look-Look)', 'https://images.isbndb.com/covers/81/95/9780307128195.jpg'), - ('044022571X', 'Legal Briefs', 'https://images.isbndb.com/covers/57/13/9780440225713.jpg'), - ('0448117487', 'Welcome Is A Wonderful Word', 'https://images.isbndb.com/covers/74/85/9780448117485.jpg'), - ('0843108118', 'Mr. Silly (Mr. Men Books)', 'https://images.isbndb.com/covers/81/18/9780843108118.jpg'), - ('0446608912', 'Heart Breaker', 'https://images.isbndb.com/covers/89/16/9780446608916.jpg'), - ('0446608319', 'The Visionary', 'https://images.isbndb.com/covers/83/12/9780446608312.jpg'), - ('0345427696', 'Of Time And Memory: My Parents'' Love Story', 'https://images.isbndb.com/covers/76/94/9780345427694.jpg'), - ('0375500723', 'The Heart Of A Woman (Oprah''s Book Club)', 'https://images.isbndb.com/covers/07/25/9780375500725.jpg'), - ('0316803480', 'The Cliff Walk: A Memoir Of A Job Lost And A Life Found', 'https://images.isbndb.com/covers/34/89/9780316803489.jpg'), - ('0312278306', 'Half A Heart', 'https://images.isbndb.com/covers/83/04/9780312278304.jpg'), - ('0345428080', 'Crisis Four', 'https://images.isbndb.com/covers/80/80/9780345428080.jpg'), - ('0140264795', 'Rosie', 'https://images.isbndb.com/covers/47/91/9780140264791.jpg'), - ('0060974621', 'Someday: The Story Of A Mother And Her Son', 'https://images.isbndb.com/covers/46/26/9780060974626.jpg'), - ('0312970897', 'On The Edge', 'https://images.isbndb.com/covers/08/95/9780312970895.jpg'), - ('0452282535', 'Katie.com: My Story', 'https://images.isbndb.com/covers/25/37/9780452282537.jpg'), - ('0913780146', 'In Her Day', 'https://images.isbndb.com/covers/01/45/9780913780145.jpg'), - ('0670857661', 'Queer And Loathing: Rants And Raves Of A Raging AIDS Clone', 'https://images.isbndb.com/covers/76/61/9780670857661.jpg'), - ('1567314295', 'Love And Fate', 'https://images.isbndb.com/covers/42/98/9781567314298.jpg'), - ('0670899836', 'Married For Better, Not Worse: The Fourteen Secrets To A Happy Marriage', 'https://images.isbndb.com/covers/98/38/9780670899838.jpg'), - ('0330331698', 'All The Pretty Horses (UK Edition)', 'https://images.isbndb.com/covers/16/92/9780330331692.jpg'), - ('0737000465', 'Letters To Harry: A True Story Of A Daughter''s Love And A Mother''s Final Journey', 'https://images.isbndb.com/covers/04/67/9780737000467.jpg'), - ('0374248613', 'The Rehearsal', 'https://images.isbndb.com/covers/86/11/9780374248611.jpg'), - ('0807072125', 'All Souls: A Family Story From Southie', 'https://images.isbndb.com/covers/21/27/9780807072127.jpg'), - ('1931514933', 'GTO: Great Teacher Onizuka, Vol. 1', 'https://images.isbndb.com/covers/49/34/9781931514934.jpg'), - ('1591823692', 'Vampire Game, Vol. 1', 'https://images.isbndb.com/covers/36/98/9781591823698.jpg'), - ('1892213087', 'Magic Knight Rayearth, Book 2', 'https://images.isbndb.com/covers/30/82/9781892213082.jpg'), - ('1892213001', 'Magic Knight Rayearth 1', 'https://images.isbndb.com/covers/30/06/9781892213006.jpg'), - ('1586648756', 'Record Of Lodoss War Deedlit''s Tale Volume 2: Forest Of No Return', 'https://images.isbndb.com/covers/87/56/9781586648756.jpg'), - ('1586648969', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 6', 'https://images.isbndb.com/covers/89/61/9781586648961.jpg'), - ('1586648950', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 5 (Record Of Lodoss War (Graphic Novels))', 'https://images.isbndb.com/covers/89/54/9781586648954.jpg'), - ('1586648624', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 4', 'https://images.isbndb.com/covers/86/26/9781586648626.jpg'), - ('1586648616', 'Record Of Lodoss War (Chronicles Of The Heroic Knight, Book 3)', 'https://images.isbndb.com/covers/86/19/9781586648619.jpg'), - ('1586648500', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 2', 'https://images.isbndb.com/covers/85/03/9781586648503.jpg'), - ('1562199455', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 1', 'https://images.isbndb.com/covers/94/56/9781562199456.jpg'), - ('0385477155', 'The Singular Mark Twain: A Biography', 'https://images.isbndb.com/covers/71/54/9780385477154.jpg'), - ('0385730918', 'Left For Dead: A Young Man''s Search For Justice For The USS Indianapolis', 'https://images.isbndb.com/covers/09/14/9780385730914.jpg'), - ('0739408461', 'Unexplained Mysteries Of World War II', 'https://images.isbndb.com/covers/84/69/9780739408469.jpg'), - ('0486212688', 'The History Of The Lewis And Clark Expedition, Vol. 1', 'https://images.isbndb.com/covers/26/85/9780486212685.jpg'), - ('0451210875', 'Wizard And Glass (The Dark Tower, Book 4)', 'https://images.isbndb.com/covers/08/76/9780451210876.jpg'), - ('0451210867', 'The Waste Lands (The Dark Tower, Book 3)', 'https://images.isbndb.com/covers/08/69/9780451210869.jpg'), - ('0451210859', 'The Drawing Of The Three (The Dark Tower, Book 2)', 'https://images.isbndb.com/covers/08/52/9780451210852.jpg'), - ('1591822092', 'Ragnarok, Book 10', 'https://images.isbndb.com/covers/20/97/9781591822097.jpg'), - ('1591822084', 'Ragnarok #9', 'https://images.isbndb.com/covers/20/80/9781591822080.jpg'), - ('1591822076', 'Ragnarok #8', 'https://images.isbndb.com/covers/20/73/9781591822073.jpg'), - ('1591822068', 'Ragnarok, Vol. 7', 'https://images.isbndb.com/covers/20/66/9781591822066.jpg'), - ('193151478X', 'Midnight''s Masters (Ragnarok 6)', 'https://images.isbndb.com/covers/47/81/9781931514781.jpg'), - ('1931514771', 'Twilight Of Terror (Ragnarok, Vol. 5)', 'https://images.isbndb.com/covers/47/74/9781931514774.jpg'), - ('1931514763', 'Dawn Of Destruction (Ragnarok, Book 4)', 'https://images.isbndb.com/covers/47/67/9781931514767.jpg'), - ('1931514755', 'Ragnarok: Night Of Blood, Vol. 3', 'https://images.isbndb.com/covers/47/50/9781931514750.jpg'), - ('1931514747', 'Ragnarok # 2', 'https://images.isbndb.com/covers/47/43/9781931514743.jpg'), - ('1931514739', 'RAGNAROK #1', 'https://images.isbndb.com/covers/47/36/9781931514736.jpg'), - ('159182107X', 'Samurai Girl: Real Bout High School, Book 5', 'https://images.isbndb.com/covers/10/76/9781591821076.jpg'), - ('1591820219', 'Real Bout High School, Book 4', 'https://images.isbndb.com/covers/02/15/9781591820215.jpg'), - ('1591820200', 'Samurai Girl: Real Bout High School, Book 3', 'https://images.isbndb.com/covers/02/08/9781591820208.jpg'), - ('1931514461', 'Samurai Girl: Real Bout High School #2', 'https://images.isbndb.com/covers/44/60/9781931514460.jpg'), - ('193151495X', 'Real Bout High School #1', 'https://images.isbndb.com/covers/49/58/9781931514958.jpg'), - ('1591820146', 'Love Hina, Vol. 3', 'https://images.isbndb.com/covers/01/47/9781591820147.jpg'), - ('1931514976', 'Love Hina, Volume 2', 'https://images.isbndb.com/covers/49/72/9781931514972.jpg'), - ('1931514941', 'Love Hina, Vol. 1', 'https://images.isbndb.com/covers/49/41/9781931514941.jpg'), - ('1591161932', 'Flame Of Recca, Vol. 5', 'https://images.isbndb.com/covers/19/36/9781591161936.jpg'), - ('1591161258', 'Flame Of Recca, Vol. 4', 'https://images.isbndb.com/covers/12/57/9781591161257.jpg'), - ('1591160944', 'Flame Of Recca, Vol. 3', 'https://images.isbndb.com/covers/09/46/9781591160946.jpg'), - ('1591160677', 'Flame Of Recca, Vol. 2', 'https://images.isbndb.com/covers/06/70/9781591160670.jpg'), - ('1591160669', 'Flame Of Recca, Vol. 1', 'https://images.isbndb.com/covers/06/63/9781591160663.jpg'), - ('1591823978', 'FLCL, Vol. 2', 'https://images.isbndb.com/covers/39/71/9781591823971.jpg'), - ('159182396X', 'FLCL, Vol. 1', 'https://images.isbndb.com/covers/39/64/9781591823964.jpg'), - ('0060177241', 'The Thief Of Always: A Fable', 'https://images.isbndb.com/covers/72/49/9780060177249.jpg'), - ('0141308109', 'The Boxes', 'https://images.isbndb.com/covers/81/04/9780141308104.jpg'), - ('0345450051', 'Spider-Man', 'https://images.isbndb.com/covers/00/50/9780345450050.jpg'), - ('0441002846', 'The Engines Of God', 'https://images.isbndb.com/covers/28/49/9780441002849.jpg'), - ('0880382791', 'Artifact Of Evil (Greyhawk Adventures Novels, Book 2)', 'https://images.isbndb.com/covers/27/93/9780880382793.jpg'), - ('0966961706', 'Game Over Press Start To Continue', 'https://images.isbndb.com/covers/17/06/9780966961706.jpg'), - ('0451160959', 'The Stand (Signet)', 'https://images.isbndb.com/covers/09/59/9780451160959.jpg'), - ('156931778X', 'Battle Royale', 'https://images.isbndb.com/covers/77/85/9781569317785.jpg'), - ('0671700294', 'NANCY DREW FILES #52:DANGER FOR HIRE', 'https://images.isbndb.com/covers/02/94/9780671700294.jpg'), - ('0060924640', 'Hank & Chloe', 'https://images.isbndb.com/covers/46/45/9780060924645.jpg'), - ('0385497954', 'The Tale Of Murasaki: A Novel', 'https://images.isbndb.com/covers/79/54/9780385497954.jpg'), - ('080411188X', 'Defend And Betray (William Monk Novels)', 'https://images.isbndb.com/covers/18/81/9780804111881.jpg'), - ('0505525224', 'Whispers In The Stars', 'https://images.isbndb.com/covers/52/22/9780505525222.jpg'), - ('0062513095', 'Fairy Tales: Traditional Stories Retold For Gay Men', 'https://images.isbndb.com/covers/30/90/9780062513090.jpg'), - ('1556611102', 'Song Of The Silent Harp (An Emerald Ballad #1)', 'https://images.isbndb.com/covers/11/00/9781556611100.jpg'), - ('0446305693', 'Odd Woman', 'https://images.isbndb.com/covers/56/93/9780446305693.jpg'), - ('0380624060', 'Dream Children', 'https://images.isbndb.com/covers/40/65/9780380624065.jpg'), - ('0938410563', 'Requiem For A Dream: A Novel (Classic Reprint Series)', 'https://images.isbndb.com/covers/05/60/9780938410560.jpg'), - ('0345354575', 'Homeplace', 'https://images.isbndb.com/covers/45/70/9780345354570.jpg'), - ('0312152949', 'We Are Gathered Here: A Novel', 'https://images.isbndb.com/covers/29/49/9780312152949.jpg'), - ('044630798X', 'And More By Andy Rooney', 'https://images.isbndb.com/covers/79/87/9780446307987.jpg'), - ('0553212230', 'Bleak House (Bantam Classics)', 'https://images.isbndb.com/covers/22/35/9780553212235.jpg'), - ('0201489392', 'A Year In The Maine Woods', 'https://images.isbndb.com/covers/93/92/9780201489392.jpg'), - ('068485970X', 'An OCEAN IN IOWA: A NOVEL', 'https://images.isbndb.com/covers/97/05/9780684859705.jpg'), - ('0873513193', 'Emigrants: The Emigrant Novels Book 1 (The Emigrant Novels / Vilhelm Moberg, Book 1)', 'https://images.isbndb.com/covers/31/97/9780873513197.jpg'), - ('0679762892', 'The Catcher Was A Spy: The Mysterious Life Of Moe Berg', 'https://images.isbndb.com/covers/28/98/9780679762898.jpg'), - ('0449904067', 'Dave Barry''s Greatest Hits', 'https://images.isbndb.com/covers/40/60/9780449904060.jpg'), - ('0679415610', 'The Children', 'https://images.isbndb.com/covers/56/19/9780679415619.jpg'), - ('0152012702', 'Heart And Soul', 'https://images.isbndb.com/covers/27/00/9780152012700.jpg'), - ('1568360096', 'Tracing It Home: A Chinese Journey (Kodansha Globe Series)', 'https://images.isbndb.com/covers/00/96/9781568360096.jpg'), - ('0380698692', 'The Finishing School', 'https://images.isbndb.com/covers/86/91/9780380698691.jpg'), - ('0380703149', 'Father Melancholy''s Daughter', 'https://images.isbndb.com/covers/31/42/9780380703142.jpg'), - ('0380703130', 'A Southern Family', 'https://images.isbndb.com/covers/31/35/9780380703135.jpg'), - ('0380615983', 'A Mother And Two Daughters', 'https://images.isbndb.com/covers/59/88/9780380615988.jpg'), - ('0375401946', 'MotherKind', 'https://images.isbndb.com/covers/19/47/9780375401947.jpg'), - ('0061059900', 'Sailing To Sarantium (Sarantine Mosaic, Book 1)', 'https://images.isbndb.com/covers/99/02/9780061059902.jpg'), - ('0380792990', 'The Invisible Country', 'https://images.isbndb.com/covers/29/93/9780380792993.jpg'), - ('0385272170', 'The Semi-Attached Couple & The Semi-Detached House (Virago Modern Classics)', 'https://images.isbndb.com/covers/21/79/9780385272179.jpg'), - ('0140139419', 'Joe Hill', 'https://images.isbndb.com/covers/94/19/9780140139419.jpg'), - ('0060171324', 'The Blue Jay''s Dance: A Birth Year', 'https://images.isbndb.com/covers/13/22/9780060171322.jpg'), - ('1555612423', 'Dads Toddlers & Chicken Dance', 'https://images.isbndb.com/covers/24/29/9781555612429.jpg'), - ('0452277698', 'Picturing The Wreck', 'https://images.isbndb.com/covers/76/94/9780452277694.jpg'), - ('0452279097', 'Teaching Montessori In The Home: Pre-School Years: The Pre-School Years', 'https://images.isbndb.com/covers/90/94/9780452279094.jpg'), - ('0440213355', 'A Woman''s Eye', 'https://images.isbndb.com/covers/33/52/9780440213352.jpg'), - ('0553569376', 'The Courtship Of Princess Leia (Star Wars)', 'https://images.isbndb.com/covers/93/77/9780553569377.jpg'), - ('0804108854', 'The Clock Winder', 'https://images.isbndb.com/covers/88/50/9780804108850.jpg'), - ('0385319444', 'Lost In Translation', 'https://images.isbndb.com/covers/94/47/9780385319447.jpg'), - ('0316418927', 'Home Fires Burning', 'https://images.isbndb.com/covers/89/28/9780316418928.jpg'), - ('038547721X', 'The Other Side Of The River: A Story Of Two Towns, A Death, And America''s Dilemma', 'https://images.isbndb.com/covers/72/15/9780385477215.jpg'), - ('0446607401', 'At All Costs', 'https://images.isbndb.com/covers/74/07/9780446607407.jpg'), - ('0385336489', 'Niagara Falls All Over Again', 'https://images.isbndb.com/covers/64/82/9780385336482.jpg'), - ('0934601941', 'In-Laws, Outlaws And Other Theories Of Relativity', 'https://images.isbndb.com/covers/19/48/9780934601948.jpg'), - ('0963355554', 'Among Friends', 'https://images.isbndb.com/covers/55/53/9780963355553.jpg'), - ('0931948932', 'Oh, Lord, I Sound Just Like Mama', 'https://images.isbndb.com/covers/89/30/9780931948930.jpg'), - ('0375709215', 'The Mark Of The Angel: A Novel', 'https://images.isbndb.com/covers/92/10/9780375709210.jpg'), - ('0805060367', 'The White Bone: A Novel', 'https://images.isbndb.com/covers/03/62/9780805060362.jpg'), - ('0816148708', 'We Are Still Married: Stories And Letters', 'https://images.isbndb.com/covers/87/07/9780816148707.jpg'), - ('0399141200', 'That Camden Summer', 'https://images.isbndb.com/covers/12/01/9780399141201.jpg'), - ('0688166083', '101 Uses For A Bridesmaid Dress', 'https://images.isbndb.com/covers/60/83/9780688166083.jpg'), - ('0440212235', 'Hardware: A Carlotta Carlyle Mystery', 'https://images.isbndb.com/covers/22/32/9780440212232.jpg'), - ('0395633206', 'Dakota - A Spiritual Geography', 'https://images.isbndb.com/covers/32/05/9780395633205.jpg'), - ('0345273494', 'Treasures Of Tutankhamun', 'https://images.isbndb.com/covers/34/99/9780345273499.jpg'), - ('0312309635', 'The Waiting Child: How The Faith And Love Of One Orphan Saved The Life Of Another', 'https://images.isbndb.com/covers/96/33/9780312309633.jpg'), - ('0809321297', 'Chicago: With The Chicago Tribune Articles That Inspired It', 'https://images.isbndb.com/covers/12/92/9780809321292.jpg'), - ('0690048246', 'The Egyptian Cinderella (Trophy Picture Books)', 'https://images.isbndb.com/covers/82/47/9780690048247.jpg'), - ('0345456688', 'Tatooine Ghost (Star Wars)', 'https://images.isbndb.com/covers/66/87/9780345456687.jpg'), - ('1880823233', 'Dear Cara : Letters From Otto Frank; Anne''s Father Shares His Wisdom', 'https://images.isbndb.com/covers/32/31/9781880823231.jpg'), - ('055306102X', 'Biografía De Ana Frank', 'https://images.isbndb.com/covers/10/24/9780553061024.jpg'), - ('0609609459', 'Queen Bees And Wannabes: Helping Your Daughter Survive Cliques, Gossip, Boyfriends, And Other Realities Of Adolescence', 'https://images.isbndb.com/covers/94/53/9780609609453.jpg'), - ('0767913019', 'Veiled Courage: Inside The Afghan Women''s Resistance', 'https://images.isbndb.com/covers/30/10/9780767913010.jpg'), - ('0345435400', 'Star Wars: Rogue Planet', 'https://images.isbndb.com/covers/54/08/9780345435408.jpg'), - ('0684834308', 'Michael And Natasha: The Life And Love Of Michael Ll The Last Of The Romanov Tsars', 'https://images.isbndb.com/covers/43/06/9780684834306.jpg'), - ('038549727X', 'The Unknown Errors Of Our Lives', 'https://images.isbndb.com/covers/72/75/9780385497275.jpg'), - ('0385497296', 'The Vine Of Desire: A Novel', 'https://images.isbndb.com/covers/72/99/9780385497299.jpg'), - ('0345428609', 'Agents Of Chaos I: Hero''s Trial (Star Wars: The New Jedi Order, Book 4)', 'https://images.isbndb.com/covers/86/08/9780345428608.jpg'), - ('0140187642', 'My Antonia (Penguin Classics)', 'https://images.isbndb.com/covers/76/49/9780140187649.jpg'), - ('0345428560', 'Dark Tide II: Ruin (Star Wars: The New Jedi Order, Book 3)', 'https://images.isbndb.com/covers/85/61/9780345428561.jpg'), - ('0425149625', 'The Grass Dancer', 'https://images.isbndb.com/covers/96/21/9780425149621.jpg'), - ('0446530255', 'Pharaoh (Kleopatra, Volume II)', 'https://images.isbndb.com/covers/02/55/9780446530255.jpg'), - ('0446679178', 'Kleopatra', 'https://images.isbndb.com/covers/91/76/9780446679176.jpg'), - ('0345443004', 'The Approaching Storm (Star Wars)', 'https://images.isbndb.com/covers/30/07/9780345443007.jpg'), - ('0345442989', 'Star Wars: Cloak Of Deception', 'https://images.isbndb.com/covers/29/87/9780345442987.jpg'), - ('0670030651', 'Testimony Of An Irish Slave Girl', 'https://images.isbndb.com/covers/06/51/9780670030651.jpg'), - ('037542055X', 'They Went Whistling : Women Wayfarers, Warriors, Runaways, And Renegades', 'https://images.isbndb.com/covers/05/59/9780375420559.jpg'), - ('038550098X', 'Last Of The Amazons: A Novel', 'https://images.isbndb.com/covers/09/82/9780385500982.jpg'), - ('1875989048', 'The Oz Files : The Australian UFO Story : Government Files Reveal The Inside Story Of Australian UFO Sightings', 'https://images.isbndb.com/covers/90/41/9781875989041.jpg'), - ('1590250001', 'It Had To Be Us', 'https://images.isbndb.com/covers/00/06/9781590250006.jpg'), - ('0061081558', 'Chance McCall (Harper Monograms)', 'https://images.isbndb.com/covers/15/52/9780061081552.jpg'), - ('0671028014', 'Star (Wildflowers)', 'https://images.isbndb.com/covers/80/15/9780671028015.jpg'), - ('0553563084', 'College Girls (Sweet Valley University(R))', 'https://images.isbndb.com/covers/30/85/9780553563085.jpg'), - ('0553570560', 'The Boys Of Summer (Sweet Valley University(R))', 'https://images.isbndb.com/covers/05/64/9780553570564.jpg'), - ('0553570587', 'Spy Girl (Sweet Valley University) (Book 34)', 'https://images.isbndb.com/covers/05/88/9780553570588.jpg'), - ('0671694979', 'Phone Calls: Phone Calls', 'https://images.isbndb.com/covers/49/75/9780671694975.jpg'), - ('1591132207', 'Chance Place', 'https://images.isbndb.com/covers/22/02/9781591132202.jpg'), - ('0446400173', 'Rainbow''s End (An Inspector George Felse Mystery)', 'https://images.isbndb.com/covers/01/76/9780446400176.jpg'), - ('0684813580', 'The Homo Handbook: Getting In Touch With Your Inner Homo: A Survival Guide For Lesbians And Gay Men (1996 Lambda Literary Award Best Humor Book)', 'https://images.isbndb.com/covers/35/85/9780684813585.jpg'), - ('094148307X', 'The Other Side Of Venus', 'https://images.isbndb.com/covers/30/70/9780941483070.jpg'), - ('0939416611', 'Queer And Pleasant Danger: Writing Out My Life', 'https://images.isbndb.com/covers/66/15/9780939416615.jpg'), - ('0385480377', 'The History Of Lesbian Hair', 'https://images.isbndb.com/covers/03/76/9780385480376.jpg'), - ('0446400696', 'Nice Derangement Of Epitaphs (Inspector George Felse Mystery)', 'https://images.isbndb.com/covers/06/95/9780446400695.jpg'), - ('0425129608', 'Evil Under The Sun (Hercule Poirot)', 'https://images.isbndb.com/covers/96/09/9780425129609.jpg'), - ('0425099148', 'Death In The Clouds/Death In The Air (Hercule Poirot)', 'https://images.isbndb.com/covers/91/48/9780425099148.jpg'), - ('0813190355', 'Yates Paul, His Grand Flights, His Tootings', 'https://images.isbndb.com/covers/03/58/9780813190358.jpg'), - ('0743464273', 'The Lamplighter', 'https://images.isbndb.com/covers/42/77/9780743464277.jpg'), - ('0312979738', 'The Witness For The Prosecution (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/97/37/9780312979737.jpg'), - ('0451201132', 'N Or M? (Tommy And Tuppence)', 'https://images.isbndb.com/covers/11/33/9780451201133.jpg'), - ('0425129632', 'Hallowe''en Party (Hercule Poirot)', 'https://images.isbndb.com/covers/96/30/9780425129630.jpg'), - ('0425173917', 'The Clocks (Hercule Poirot)', 'https://images.isbndb.com/covers/39/16/9780425173916.jpg'), - ('0451199898', 'The Mirror Crack''d (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/98/98/9780451199898.jpg'), - ('0451201191', 'A Murder Is Announced (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/11/95/9780451201195.jpg'), - ('0312981600', 'The Mysterious Mr. Quin', 'https://images.isbndb.com/covers/16/00/9780312981600.jpg'), - ('0451200187', 'Nemesis (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/01/81/9780451200181.jpg'), - ('0060926945', 'Masters Of Deception: The Gang That Ruled Cyberspace', 'https://images.isbndb.com/covers/69/46/9780060926946.jpg'), - ('0393093883', 'Leaves Of Grass: Authoritative Texts, Prefaces, Whitman On His Art, Criticism (Norton Critical Edition)', 'https://images.isbndb.com/covers/38/89/9780393093889.jpg'), - ('0486290735', 'The Autobiography Of Benjamin Franklin (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/37/9780486290737.jpg'), - ('0060929804', 'Native Son', 'https://images.isbndb.com/covers/98/00/9780060929800.jpg'), - ('0812504321', 'The Call Of The Wild', 'https://images.isbndb.com/covers/43/23/9780812504323.jpg'), - ('0812504380', 'Captains Courageous (Tor Classics)', 'https://images.isbndb.com/covers/43/85/9780812504385.jpg'), - ('0142437174', 'The Adventures Of Huckleberry Finn (Penguin Classics)', 'https://images.isbndb.com/covers/71/79/9780142437179.jpg'), - ('1561481858', '20 Most Asked Questions About The Amish & Mennonites (People''s Place Book, No 1)', 'https://images.isbndb.com/covers/18/59/9781561481859.jpg'), - ('0312979819', 'The Sittaford Mystery (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/98/12/9780312979812.jpg'), - ('0671685112', 'Zero At The Bone', 'https://images.isbndb.com/covers/51/19/9780671685119.jpg'), - ('0394721039', 'Money Game', 'https://images.isbndb.com/covers/10/33/9780394721033.jpg'), - ('0380729865', 'Father Melancholy''s Daughter', 'https://images.isbndb.com/covers/98/69/9780380729869.jpg'), - ('044020495X', 'A Dinner To Die For (Jill Smith Mystery)', 'https://images.isbndb.com/covers/49/54/9780440204954.jpg'), - ('0425175456', 'Mrs. McGinty''s Dead: A Hercule Poirot Novel (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/54/53/9780425175453.jpg'), - ('0312981651', 'Parker Pyne Investigates', 'https://images.isbndb.com/covers/16/55/9780312981655.jpg'), - ('042506803X', 'Taken At The Flood (aka There Is A Tide...)', 'https://images.isbndb.com/covers/80/38/9780425068038.jpg'), - ('0425091805', 'Three Act Tragedy (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/18/07/9780425091807.jpg'), - ('0425098540', 'Dumb Witness (Hercule Poirot)', 'https://images.isbndb.com/covers/85/47/9780425098547.jpg'), - ('0312981686', 'Destination Unknown (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/16/86/9780312981686.jpg'), - ('0425173909', 'After The Funeral (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/39/09/9780425173909.jpg'), - ('0451200535', 'Postern Of Fate', 'https://images.isbndb.com/covers/05/32/9780451200532.jpg'), - ('042509961X', 'Lord Edgware Dies', 'https://images.isbndb.com/covers/96/12/9780425099612.jpg'), - ('0440159229', 'Murder After Hours', 'https://images.isbndb.com/covers/92/23/9780440159223.jpg'), - ('0441240984', 'The Floating Admiral', 'https://images.isbndb.com/covers/09/82/9780441240982.jpg'), - ('0941483428', 'Chris', 'https://images.isbndb.com/covers/34/21/9780941483421.jpg'), - ('1573441252', 'Beebo Brinker', 'https://images.isbndb.com/covers/12/54/9781573441254.jpg'), - ('0786886099', 'A Field Guide To The Yettie: America''s Young, Entreprenurial Technocrats', 'https://images.isbndb.com/covers/60/98/9780786886098.jpg'), - ('0345351959', 'Willow: A Novel', 'https://images.isbndb.com/covers/19/51/9780345351951.jpg'), - ('0446400157', 'A Morbid Taste For Bones: The First Chronicle Of Brother Cadfael', 'https://images.isbndb.com/covers/01/52/9780446400152.jpg'), - ('0451199863', 'A Pocket Full Of Rye (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/98/67/9780451199867.jpg'), - ('0312330731', 'Howard Dean In His Own Words', 'https://images.isbndb.com/covers/07/36/9780312330736.jpg'), - ('034541215X', 'Bimbos Of The Death Sun', 'https://images.isbndb.com/covers/21/57/9780345412157.jpg'), - ('0061099481', 'Magic Hour', 'https://images.isbndb.com/covers/94/89/9780061099489.jpg'), - ('0743234901', 'Out Of The Silent Planet (Space Trilogy, Book One)', 'https://images.isbndb.com/covers/49/00/9780743234900.jpg'), - ('0671724738', 'Postcards From The Edge', 'https://images.isbndb.com/covers/47/33/9780671724733.jpg'), - ('0451201205', 'The Secret Adversary', 'https://images.isbndb.com/covers/12/01/9780451201201.jpg'), - ('0440152305', 'Man In The Brown Suit', 'https://images.isbndb.com/covers/23/09/9780440152309.jpg'), - ('0399146601', 'Shattered', 'https://images.isbndb.com/covers/66/02/9780399146602.jpg'), - ('0671542125', 'Third Girl', 'https://images.isbndb.com/covers/21/22/9780671542122.jpg'), - ('0451521595', 'Much Ado About Nothing (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/15/90/9780451521590.jpg'), - ('0713994606', 'Anna Karenina (Penguin Classics)', 'https://images.isbndb.com/covers/46/05/9780713994605.jpg'), - ('0812503058', 'The Woman Who Loved Reindeer', 'https://images.isbndb.com/covers/30/50/9780812503050.jpg'), - ('0380705486', 'The Forge In The Forest (Winter Of The World, Vol 2)', 'https://images.isbndb.com/covers/54/81/9780380705481.jpg'), - ('0316702757', 'Keeping You A Secret', 'https://images.isbndb.com/covers/27/51/9780316702751.jpg'), - ('0425130258', 'Peril At End House (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/02/54/9780425130254.jpg'), - ('0374517835', 'A Severed Wasp: A Novel', 'https://images.isbndb.com/covers/78/30/9780374517830.jpg'), - ('0425169251', 'One, Two, Buckle My Shoe', 'https://images.isbndb.com/covers/92/54/9780425169254.jpg'), - ('0449210006', 'Sunday The Rabbi Stayed Home', 'https://images.isbndb.com/covers/00/00/9780449210000.jpg'), - ('0345253736', 'The White Dragon', 'https://images.isbndb.com/covers/37/36/9780345253736.jpg'), - ('0345362861', 'Dragonsdawn (Dragonriders Of Pern Series)', 'https://images.isbndb.com/covers/28/65/9780345362865.jpg'), - ('0020868804', 'Out Of The Silent Planet', 'https://images.isbndb.com/covers/88/04/9780020868804.jpg'), - ('9960340112', 'English Translation Of The Meanings Of The Holy Quran', 'https://images.isbndb.com/covers/01/11/9789960340111.jpg'), - ('0060935405', 'Source: Poems', 'https://images.isbndb.com/covers/54/05/9780060935405.jpg'), - ('0374522812', 'John Berryman: Collected Poems 1937-1971', 'https://images.isbndb.com/covers/28/10/9780374522810.jpg'), - ('1557282048', 'JOINER (University Of Arkansas Press Reprint Series)', 'https://images.isbndb.com/covers/20/40/9781557282040.jpg'), - ('0060956739', 'Continental Drift (Perennial Classics)', 'https://images.isbndb.com/covers/67/38/9780060956738.jpg'), - ('0553293362', 'Second Foundation (Foundation Novels)', 'https://images.isbndb.com/covers/33/64/9780553293364.jpg'), - ('0441089348', 'Burning Chrome', 'https://images.isbndb.com/covers/93/45/9780441089345.jpg'), - ('0446519766', 'Mirage', 'https://images.isbndb.com/covers/97/62/9780446519762.jpg'), - ('0743457633', 'Slave Trade', 'https://images.isbndb.com/covers/76/37/9780743457637.jpg'), - ('0345407601', 'The Quotable Star Wars', 'https://images.isbndb.com/covers/76/03/9780345407603.jpg'), - ('0743509447', 'Star Trek Gateways : What Lay Beyond', 'https://images.isbndb.com/covers/94/42/9780743509442.jpg'), - ('0836250877', 'Little Sip Of Chicken Soup For The Soul: Inspiring Stories Of Self-Affirmation', 'https://images.isbndb.com/covers/08/79/9780836250879.jpg'), - ('0440425360', 'The Foundling', 'https://images.isbndb.com/covers/53/66/9780440425366.jpg'), - ('0440435749', 'The High King (Prydain Chronicles)', 'https://images.isbndb.com/covers/57/47/9780440435747.jpg'), - ('0440484839', 'Taran Wanderer (Prydain Chronicles)', 'https://images.isbndb.com/covers/48/37/9780440484837.jpg'), - ('0440411254', 'The Castle Of Llyr (Pyrdain Chronicles)', 'https://images.isbndb.com/covers/12/53/9780440411253.jpg'), - ('0440406498', 'The Black Cauldron (Prydain Chronicles)', 'https://images.isbndb.com/covers/64/95/9780440406495.jpg'), - ('0440407028', 'The Book Of Three (Prydain Chronicles)', 'https://images.isbndb.com/covers/70/27/9780440407027.jpg'), - ('0440381142', 'Solo: Women On Woman Alone', 'https://images.isbndb.com/covers/11/43/9780440381143.jpg'), - ('0553261258', 'High Hearts', 'https://images.isbndb.com/covers/12/57/9780553261257.jpg'), - ('0553149075', 'Take Back The Night', 'https://images.isbndb.com/covers/90/74/9780553149074.jpg'), - ('0425080005', 'The Golden Ball And Other Stories', 'https://images.isbndb.com/covers/00/09/9780425080009.jpg'), - ('0425103528', 'Partners In Crime (Agatha Christie Mysteries Collection)', 'https://images.isbndb.com/covers/35/24/9780425103524.jpg'), - ('0440192285', 'The Under Dog And Other Stories', 'https://images.isbndb.com/covers/22/82/9780440192282.jpg'), - ('0425100413', 'The Regatta Mystery And Other Stories (Hercule Poirot)', 'https://images.isbndb.com/covers/04/17/9780425100417.jpg'), - ('0451199928', 'A Caribbean Mystery (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/99/28/9780451199928.jpg'), - ('0425177416', 'Hercule Poirot''s Christmas', 'https://images.isbndb.com/covers/74/19/9780425177419.jpg'), - ('0061003786', 'Passenger To Frankfurt', 'https://images.isbndb.com/covers/37/83/9780061003783.jpg'), - ('0061003689', 'Death Comes As The End', 'https://images.isbndb.com/covers/36/84/9780061003684.jpg'), - ('0425174735', 'Dead Man''s Folly (Hercule Poirot)', 'https://images.isbndb.com/covers/47/39/9780425174739.jpg'), - ('0743423763', 'Bill The Galactic Hero', 'https://images.isbndb.com/covers/37/62/9780743423762.jpg'), - ('067163822X', 'The SECRET OF THE OLD LACE NANCY DREW #59', 'https://images.isbndb.com/covers/82/21/9780671638221.jpg'), - ('1400060265', 'Honku: The Zen Antidote To Road Rage', 'https://images.isbndb.com/covers/02/69/9781400060269.jpg'), - ('0061052043', 'Caliban''s Hour', 'https://images.isbndb.com/covers/20/40/9780061052040.jpg'), - ('0380781042', 'Grail (The Pendragon Cycle, Book 5)', 'https://images.isbndb.com/covers/10/41/9780380781041.jpg'), - ('067142095X', 'Pale Horse', 'https://images.isbndb.com/covers/09/56/9780671420956.jpg'), - ('0393322963', 'The Bush Dyslexicon: Observations On A National Disorder', 'https://images.isbndb.com/covers/29/65/9780393322965.jpg'), - ('0375411119', 'The PowerBook', 'https://images.isbndb.com/covers/11/13/9780375411113.jpg'), - ('0345365399', 'Wolfwalker', 'https://images.isbndb.com/covers/53/92/9780345365392.jpg'), - ('0671701592', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/15/98/9780671701598.jpg'), - ('0140361227', 'The House At Pooh Corner (Pooh Original Edition)', 'https://images.isbndb.com/covers/12/23/9780140361223.jpg'), - ('0140231595', 'Serving In Silence', 'https://images.isbndb.com/covers/15/95/9780140231595.jpg'), - ('1853260282', 'Emma (Wadsworth Collection)', 'https://images.isbndb.com/covers/02/85/9781853260285.jpg'), - ('0396073735', 'Sleeping Murder', 'https://images.isbndb.com/covers/37/34/9780396073734.jpg'), - ('0671552228', 'Ten Little Indians', 'https://images.isbndb.com/covers/22/20/9780671552220.jpg'), - ('0440957761', 'The Moon By Night (Austin Family, Book 2)', 'https://images.isbndb.com/covers/77/68/9780440957768.jpg'), - ('0451515048', 'The Jungle', 'https://images.isbndb.com/covers/50/49/9780451515049.jpg'), - ('0451527097', 'One Day In The Life Of Ivan Denisovitch (Signet Classics)', 'https://images.isbndb.com/covers/70/97/9780451527097.jpg'), - ('0451181441', 'Heir Condition', 'https://images.isbndb.com/covers/14/42/9780451181442.jpg'), - ('0425159612', 'The Ghost Walker (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/96/13/9780425159613.jpg'), - ('0425154637', 'The Eagle Catcher (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/46/32/9780425154632.jpg'), - ('0441008631', 'The Telling', 'https://images.isbndb.com/covers/86/36/9780441008636.jpg'), - ('0553269291', 'Rubyfruit Jungle', 'https://images.isbndb.com/covers/92/91/9780553269291.jpg'), - ('0743427947', 'Progenitor (Star Trek: Stargazer, Book 2)', 'https://images.isbndb.com/covers/79/44/9780743427944.jpg'), - ('068482504X', 'Joshua And The Shepherd', 'https://images.isbndb.com/covers/50/45/9780684825045.jpg'), - ('1565071875', 'To My Dear Slimeball', 'https://images.isbndb.com/covers/18/72/9781565071872.jpg'), - ('0671019163', 'Planet X (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/91/67/9780671019167.jpg'), - ('0671464965', 'The Body In The Library (A Jane Marple Murder Mystery)', 'https://images.isbndb.com/covers/49/67/9780671464967.jpg'), - ('0425163830', 'Murder To Music', 'https://images.isbndb.com/covers/38/32/9780425163832.jpg'), - ('0812518055', 'Lovelock (Mayflower Trilogy)', 'https://images.isbndb.com/covers/80/54/9780812518054.jpg'), - ('0671701622', 'Shadows On The Mirror', 'https://images.isbndb.com/covers/16/28/9780671701628.jpg'), - ('0440917190', 'Dragons In The Waters (Laurel-Leaf Mystery)', 'https://images.isbndb.com/covers/71/99/9780440917199.jpg'), - ('0441783295', 'Starbridge', 'https://images.isbndb.com/covers/32/98/9780441783298.jpg'), - ('042507255X', 'Last Starfighter', 'https://images.isbndb.com/covers/25/54/9780425072554.jpg'), - ('0440906490', 'The Black Cauldron (The Chronicles Of Prydain)', 'https://images.isbndb.com/covers/64/90/9780440906490.jpg'), - ('0373261896', 'Death Prone', 'https://images.isbndb.com/covers/18/95/9780373261895.jpg'), - ('0441001467', 'Earth 2', 'https://images.isbndb.com/covers/14/60/9780441001460.jpg'), - ('0671823337', 'Towards Zero', 'https://images.isbndb.com/covers/33/37/9780671823337.jpg'), - ('0671437968', 'I Hate Preppies Handbook', 'https://images.isbndb.com/covers/79/61/9780671437961.jpg'), - ('0140064826', 'Happy To Be Here', 'https://images.isbndb.com/covers/48/27/9780140064827.jpg'), - ('0671568310', 'Infiltrator (Star Trek: The Next Generation, Book 42)', 'https://images.isbndb.com/covers/83/13/9780671568313.jpg'), - ('0425108589', 'Appointment With Death (A Hercule Poirot Mystery)', 'https://images.isbndb.com/covers/85/81/9780425108581.jpg'), - ('0553276514', 'Exiled To Earth (Choose Your Own Adventure, No 87)', 'https://images.isbndb.com/covers/65/10/9780553276510.jpg'), - ('0886773865', 'Gate Of Darkness, Circle Of Light', 'https://images.isbndb.com/covers/38/61/9780886773861.jpg'), - ('0380011077', 'Clouds Of Witness', 'https://images.isbndb.com/covers/10/70/9780380011070.jpg'), - ('0449207021', 'One Corpse Too Many', 'https://images.isbndb.com/covers/70/24/9780449207024.jpg'), - ('0590416243', 'The Captive (Apple Paperbacks)', 'https://images.isbndb.com/covers/62/45/9780590416245.jpg'), - ('0679890998', 'Robin''s Country', 'https://images.isbndb.com/covers/09/97/9780679890997.jpg'), - ('0446403180', 'Fallen Into The Pit (An Inspector George Felse Mystery)', 'https://images.isbndb.com/covers/31/84/9780446403184.jpg'), - ('0060244755', 'Deliver Us From Evie', 'https://images.isbndb.com/covers/47/50/9780060244750.jpg'), - ('0812579410', 'Jupiter: A Novel (Grand Tour)', 'https://images.isbndb.com/covers/94/13/9780812579413.jpg'), - ('0812540379', 'Maximum Light', 'https://images.isbndb.com/covers/03/76/9780812540376.jpg'), - ('0451185129', 'Martinis & Mayhem: A Murder, She Wrote Mystery', 'https://images.isbndb.com/covers/51/29/9780451185129.jpg'), - ('1573182036', 'L. Ron Hubbard Presents Writers Of The Future Vol. 16', 'https://images.isbndb.com/covers/20/34/9781573182034.jpg'), - ('0807846465', 'Lift Up Your Voice Like A Trumpet: White Clergy And The Civil Rights And Antiwar Movements, 1954-1973', 'https://images.isbndb.com/covers/64/69/9780807846469.jpg'), - ('093871628X', 'Reject Me - I Love It!: 21 Secrets For Turning Rejection Into Direction (Personal Development Series)', 'https://images.isbndb.com/covers/62/80/9780938716280.jpg'), - ('0762702265', 'Hiking Virginia''s National Forests: Hikes Along The Big Blue Trail, Laurel Fork Trail, Shenandoah Mountain Trail, Appalacian Trail, And Many Others', 'https://images.isbndb.com/covers/22/68/9780762702268.jpg'), - ('0743427920', 'Gauntlet (Star Trek: Stargazer, Book 1)', 'https://images.isbndb.com/covers/79/20/9780743427920.jpg'), - ('0836283430', 'Strip Search: Revealing Today''s Best College Cartoonists', 'https://images.isbndb.com/covers/34/33/9780836283433.jpg'), - ('0449214958', 'Rose Rent', 'https://images.isbndb.com/covers/49/54/9780449214954.jpg'), - ('0671738623', 'Delusions Of Grandma', 'https://images.isbndb.com/covers/86/24/9780671738624.jpg'), - ('084237356X', '5-Minute New Testament NLT', 'https://images.isbndb.com/covers/35/62/9780842373562.jpg'), - ('1576739759', 'Secrets Of The Vine: Breaking Through To Abundance', 'https://images.isbndb.com/covers/97/54/9781576739754.jpg'), - ('039303853X', 'Ship Fever And Other Stories', 'https://images.isbndb.com/covers/85/38/9780393038538.jpg'), - ('0312927746', 'Flowers In The Rain: & Other Stories', 'https://images.isbndb.com/covers/77/45/9780312927745.jpg'), - ('068484897X', 'Chocolate For A Woman''s Spirit: 77 Stories Of Inspiration To Life Your Heart And Sooth Your Soul', 'https://images.isbndb.com/covers/89/76/9780684848976.jpg'), - ('0679449434', 'Joy School', 'https://images.isbndb.com/covers/94/30/9780679449430.jpg'), - ('0842371893', 'The Sister Circle (The Sister Circle Series #1)', 'https://images.isbndb.com/covers/18/96/9780842371896.jpg'), - ('1551664992', 'Lost Highways', 'https://images.isbndb.com/covers/49/96/9781551664996.jpg'), - ('067147071X', 'Mr. Clemens And Mark Twain: A Biography', 'https://images.isbndb.com/covers/07/15/9780671470715.jpg'), - ('0375405356', 'The Best Of Jackson Payne', 'https://images.isbndb.com/covers/53/58/9780375405358.jpg'), - ('0399142983', 'Singing In The Comeback Choir', 'https://images.isbndb.com/covers/29/87/9780399142987.jpg'), - ('0385485212', 'Missing Pieces', 'https://images.isbndb.com/covers/52/10/9780385485210.jpg'), - ('0684845261', 'A DARKER SHADE OF CRIMSON (Ivy League Mysteries)', 'https://images.isbndb.com/covers/52/65/9780684845265.jpg'), - ('0440210178', 'Trial', 'https://images.isbndb.com/covers/01/77/9780440210177.jpg'), - ('055334501X', 'DANCING GIRLS AND OTHER STORIES', 'https://images.isbndb.com/covers/50/18/9780553345018.jpg'), - ('039450965X', 'Robert Lowell: A Biography', 'https://images.isbndb.com/covers/96/55/9780394509655.jpg'), - ('0877900507', 'How To Keep The Heart And Cardio-Vascular Healthy And Fit', 'https://images.isbndb.com/covers/05/04/9780877900504.jpg'), - ('0486411915', 'Modern Artists On Art: Second Enlarged Edition', 'https://images.isbndb.com/covers/19/10/9780486411910.jpg'), - ('0738204048', 'Dark Remedy: The Impact Of Thalidomide And Its Revival As A Vital Medicine', 'https://images.isbndb.com/covers/40/48/9780738204048.jpg'), - ('0425110427', 'Team Yankee', 'https://images.isbndb.com/covers/04/23/9780425110423.jpg'), - ('0060639059', 'Retreat: Time Apart For Silence And Solitude', 'https://images.isbndb.com/covers/90/51/9780060639051.jpg'), - ('0553257439', 'If You Meet The Buddha On The Road, Kill Him!', 'https://images.isbndb.com/covers/74/34/9780553257434.jpg'), - ('0892131187', 'Chant And Be Happy: The Power Of Mantra Meditation (Contemporary Vedic Library Series)', 'https://images.isbndb.com/covers/11/81/9780892131181.jpg'), - ('089256265X', 'Know Your Own Mind', 'https://images.isbndb.com/covers/26/57/9780892562657.jpg'), - ('0671463195', 'The Winds Of War', 'https://images.isbndb.com/covers/31/99/9780671463199.jpg'), - ('0670383295', 'How To Draw The Human Figure: An Anatomical Approach (A Studio Book)', 'https://images.isbndb.com/covers/32/90/9780670383290.jpg'), - ('014046560X', 'How To Draw The Human Head: Techniques And Anatomy', 'https://images.isbndb.com/covers/56/00/9780140465600.jpg'), - ('0823030970', 'Modeling The Figure In Clay: A Sculptor''s Guide To Anatomy', 'https://images.isbndb.com/covers/09/72/9780823030972.jpg'), - ('0425075826', 'Pieces Of Dreams', 'https://images.isbndb.com/covers/58/21/9780425075821.jpg'), - ('0451136039', 'Switch', 'https://images.isbndb.com/covers/60/39/9780451136039.jpg'), - ('0140272801', 'Live-away Dads: Staying A Part Of Your Children''s Lives When They Aren''t A Part Of Your Home', 'https://images.isbndb.com/covers/28/02/9780140272802.jpg'), - ('0425137465', 'The Businessman: A Tale Of Terror', 'https://images.isbndb.com/covers/74/68/9780425137468.jpg'), - ('0425092038', 'To See Your Face Again', 'https://images.isbndb.com/covers/20/33/9780425092033.jpg'), - ('0373484836', 'Cordina''s Royal Family', 'https://images.isbndb.com/covers/48/36/9780373484836.jpg'), - ('0373244487', 'Cordina''s Crown Jewel (Silhouette Special Edition No. 1448)', 'https://images.isbndb.com/covers/44/85/9780373244485.jpg'), - ('0140277293', 'The Inheritance', 'https://images.isbndb.com/covers/72/96/9780140277296.jpg'), - ('0380007002', 'George Sand: A Biography', 'https://images.isbndb.com/covers/70/04/9780380007004.jpg'), - ('0380700999', 'A Woman Of Means (Southern Writers Series)', 'https://images.isbndb.com/covers/09/98/9780380700998.jpg'), - ('0375507477', 'A Song Flung Up To Heaven', 'https://images.isbndb.com/covers/74/72/9780375507472.jpg'), - ('1558701311', 'The First Whole Rehab Catalog: A Comprehensive Guide To Products And Services For The Physically Disadvantaged', 'https://images.isbndb.com/covers/13/11/9781558701311.jpg'), - ('1887911510', 'Z Is For Zorglub (Spirou And Fantasio)', 'https://images.isbndb.com/covers/15/11/9781887911511.jpg'), - ('0670878812', 'Riven Rock', 'https://images.isbndb.com/covers/88/19/9780670878819.jpg'), - ('1564651622', 'A Fishkeeper''s Guide To Fancy Goldfishes', 'https://images.isbndb.com/covers/16/24/9781564651624.jpg'), - ('0553203630', 'The Big Sky', 'https://images.isbndb.com/covers/36/39/9780553203639.jpg'), - ('0394564324', 'Legacy', 'https://images.isbndb.com/covers/43/26/9780394564326.jpg'), - ('0345362500', 'They Went That-A-Way: How The Famous, The Infamous, And The Great Died', 'https://images.isbndb.com/covers/25/06/9780345362506.jpg'), - ('0940159147', 'In Search Of Ghosts: Haunted Places In The Delaware Valley', 'https://images.isbndb.com/covers/91/43/9780940159143.jpg'), - ('0399145427', 'See You On The Radio', 'https://images.isbndb.com/covers/54/21/9780399145421.jpg'), - ('0523421214', 'Torn Lace Curtain', 'https://images.isbndb.com/covers/12/16/9780523421216.jpg'), - ('0609800906', 'Time Management For The Creative Person: Right-Brain Strategies For Stopping Procrastination, Getting Control Of The Clock And Calendar, And Freeing Up Your Time And Your Life', 'https://images.isbndb.com/covers/09/04/9780609800904.jpg'), - ('0515120871', 'Finding The Dream: The Dream Trilogy #3', 'https://images.isbndb.com/covers/08/75/9780515120875.jpg'), - ('0966443004', 'Drug Lord: The Life & Death Of A Mexican Kingpin-A True Story', 'https://images.isbndb.com/covers/30/04/9780966443004.jpg'), - ('0743410602', 'Irresistible (Banning Sisters Trilogy)', 'https://images.isbndb.com/covers/06/01/9780743410601.jpg'), - ('158234096X', 'Five Mile House', 'https://images.isbndb.com/covers/09/68/9781582340968.jpg'), - ('1587210975', 'Loyalty', 'https://images.isbndb.com/covers/09/76/9781587210976.jpg'), - ('0135814219', 'Microeconomics: A Programmed Book', 'https://images.isbndb.com/covers/42/15/9780135814215.jpg'), - ('0140068929', 'One Fell Soup: Or I''m Just A Bug On The Windshield Of Life', 'https://images.isbndb.com/covers/89/24/9780140068924.jpg'), - ('0312045239', 'Anything Can Happen', 'https://images.isbndb.com/covers/52/34/9780312045234.jpg'), - ('0394724372', 'Murder Gone Mad', 'https://images.isbndb.com/covers/43/79/9780394724379.jpg'), - ('0517704803', 'Simisola Autographed Edition', 'https://images.isbndb.com/covers/48/06/9780517704806.jpg'), - ('0689813279', 'Yolonda''s Genius', 'https://images.isbndb.com/covers/32/76/9780689813276.jpg'), - ('1574882295', 'Baseball''s Most Wanted(TM): The Top 10 Book Of The National Pastime''s Outrageous Offenders, Lucky Bounces, And Other Oddities', 'https://images.isbndb.com/covers/22/92/9781574882292.jpg'), - ('0064401758', 'In The Year Of The Boar And Jackie Robinson', 'https://images.isbndb.com/covers/17/53/9780064401753.jpg'), - ('0141310871', 'Rundown', 'https://images.isbndb.com/covers/08/79/9780141310879.jpg'), - ('0156011549', 'Home Run (Harvest Original)', 'https://images.isbndb.com/covers/15/49/9780156011549.jpg'), - ('0879612312', 'Ishi''s Journey: From The Center To The Edge Of The World', 'https://images.isbndb.com/covers/23/13/9780879612313.jpg'), - ('1558176756', 'The Copeland Killings/the Bizarre True Account Of Ray And Faye Copeland,the Oldest Couple Ever Sentenced To Death In America!', 'https://images.isbndb.com/covers/67/51/9781558176751.jpg'), - ('038072099X', 'The Immortals', 'https://images.isbndb.com/covers/09/96/9780380720996.jpg'), - ('0821771167', 'When I Think Of You (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/67/9780821771167.jpg'), - ('0689863632', 'Fuzzy Fuzzy Fuzzy!: A Touch, Skritch, & Tickle Book (Boynton Board Books)', 'https://images.isbndb.com/covers/36/39/9780689863639.jpg'), - ('0761319417', 'The Hidden Alphabet (Ala Notable Children''s Books. Younger Readers (Awards))', 'https://images.isbndb.com/covers/94/12/9780761319412.jpg'), - ('0449218201', 'A Perfect Match', 'https://images.isbndb.com/covers/82/04/9780449218204.jpg'), - ('0345417739', 'Passing Remarks', 'https://images.isbndb.com/covers/77/32/9780345417732.jpg'), - ('0671025864', 'Was It Something I Said', 'https://images.isbndb.com/covers/58/61/9780671025861.jpg'), - ('1883523133', 'Silent Words', 'https://images.isbndb.com/covers/31/38/9781883523138.jpg'), - ('0385495056', 'Any Way The Wind Blows', 'https://images.isbndb.com/covers/50/59/9780385495059.jpg'), - ('1556591241', 'Beautiful Signor', 'https://images.isbndb.com/covers/12/42/9781556591242.jpg'), - ('0140057935', 'World''s End And Other Stories', 'https://images.isbndb.com/covers/79/35/9780140057935.jpg'), - ('0515131733', 'The Winston Brothers', 'https://images.isbndb.com/covers/17/34/9780515131734.jpg'), - ('0751531294', 'The Moon''s Our Nearest Neighbour', 'https://images.isbndb.com/covers/12/99/9780751531299.jpg'), - ('0821769391', 'Baby, Baby', 'https://images.isbndb.com/covers/93/93/9780821769393.jpg'), - ('0140093281', 'Not Exactly What I Had In Mind', 'https://images.isbndb.com/covers/32/85/9780140093285.jpg'), - ('0440191238', 'Unforgiven, The', 'https://images.isbndb.com/covers/12/30/9780440191230.jpg'), - ('014007600X', 'Face (Contemporary American Fiction)', 'https://images.isbndb.com/covers/60/04/9780140076004.jpg'), - ('0553578294', 'Smoker', 'https://images.isbndb.com/covers/82/94/9780553578294.jpg'), - ('0669217360', 'Can Mom Live Alone?: Practical Advice On Helping Aging Parents Stay In Their Own Home', 'https://images.isbndb.com/covers/73/60/9780669217360.jpg'), - ('0912238259', 'Manna: Foods Of The Frontier', 'https://images.isbndb.com/covers/82/58/9780912238258.jpg'), - ('0743457463', 'Irish Girls About Town: An Anthology Of Short Stories', 'https://images.isbndb.com/covers/74/60/9780743457460.jpg'), - ('0684844958', 'Necessary Losses: The Loves, Illusions, Dependencies, And Impossible Expectations That All Of Us Have To Give Up In Order To Grow', 'https://images.isbndb.com/covers/49/54/9780684844954.jpg'), - ('0449200981', 'Demon Lover', 'https://images.isbndb.com/covers/09/88/9780449200988.jpg'), - ('0449200361', 'Bear Island', 'https://images.isbndb.com/covers/03/60/9780449200360.jpg'), - ('1902881842', 'The Clowns Of God', 'https://images.isbndb.com/covers/18/43/9781902881843.jpg'), - ('0395281601', 'The Establishment', 'https://images.isbndb.com/covers/16/04/9780395281604.jpg'), - ('0884111431', 'Answer As A Man', 'https://images.isbndb.com/covers/14/36/9780884111436.jpg'), - ('0671203576', 'MURDER TO GO M (An Inner Sanctum Mystery)', 'https://images.isbndb.com/covers/35/73/9780671203573.jpg'), - ('0451163516', 'The Man From St. Petersburg (Signet)', 'https://images.isbndb.com/covers/35/16/9780451163516.jpg'), - ('0075536226', 'Social Policy And Social Services', 'https://images.isbndb.com/covers/62/22/9780075536222.jpg'), - ('044991089X', 'Greenlanders', 'https://images.isbndb.com/covers/08/94/9780449910894.jpg'), - ('0553226347', 'The Amityville Horror: A True Story', 'https://images.isbndb.com/covers/63/48/9780553226348.jpg'), - ('0440121418', 'The English Heiress (The Heiress Series: Book One)', 'https://images.isbndb.com/covers/14/11/9780440121411.jpg'), - ('0831754087', 'LA Cucina: The Complete Book Of Italian Cooking', 'https://images.isbndb.com/covers/40/82/9780831754082.jpg'), - ('0871137771', 'Self-Help Nation: The Long Overdue, Entirely Justified, Delightfully Hostile Guide To The Snake-Oil Peddlers Who Are Sapping Our Nation''s Soul', 'https://images.isbndb.com/covers/77/77/9780871137777.jpg'), - ('038531700X', 'The Loop', 'https://images.isbndb.com/covers/70/09/9780385317009.jpg'), - ('0805055452', 'I Wouldn''t Thank You For A Valentine: Poems For Young Feminists', 'https://images.isbndb.com/covers/54/50/9780805055450.jpg'), - ('0590433644', 'Agnes The Sheep', 'https://images.isbndb.com/covers/36/48/9780590433648.jpg'), - ('1582343497', 'Schott''s Original Miscellany', 'https://images.isbndb.com/covers/34/95/9781582343495.jpg'), - ('1562472305', 'Help!: An Absolutely Indispensable Guide To Life For Girls (American Girl Library)', 'https://images.isbndb.com/covers/23/06/9781562472306.jpg'), - ('0789432331', 'Spanish Phrase Book (Eyewitness Travel Guides)', 'https://images.isbndb.com/covers/23/39/9780789432339.jpg'), - ('1572972939', 'Penn & Teller''s How To Play In Traffic', 'https://images.isbndb.com/covers/29/33/9781572972933.jpg'), - ('0688048315', 'The Web She Weaves', 'https://images.isbndb.com/covers/83/10/9780688048310.jpg'), - ('0449910261', 'Dave Barry''s Complete Guide To Guys', 'https://images.isbndb.com/covers/02/69/9780449910269.jpg'), - ('0394555287', 'Trump : The Art Of The Deal', 'https://images.isbndb.com/covers/52/87/9780394555287.jpg'), - ('0816038465', 'The Encyclopedia Of TV Game Shows', 'https://images.isbndb.com/covers/84/66/9780816038466.jpg'), - ('0002179687', 'Christmas In America: Images Of The Holiday Season By 100 Of America''s Leading Photographers', 'https://images.isbndb.com/covers/96/83/9780002179683.jpg'), - ('0446519782', 'Exclusive', 'https://images.isbndb.com/covers/97/86/9780446519786.jpg'), - ('0449208184', 'Ladies', 'https://images.isbndb.com/covers/81/82/9780449208182.jpg'), - ('0140150447', 'The Portable Milton (Portable Library)', 'https://images.isbndb.com/covers/04/45/9780140150445.jpg'), - ('0064401871', 'A Little Princess', 'https://images.isbndb.com/covers/18/76/9780064401876.jpg'), - ('1579620604', 'Bloodlines', 'https://images.isbndb.com/covers/06/08/9781579620608.jpg'), - ('039914630X', 'Saving Elijah', 'https://images.isbndb.com/covers/63/05/9780399146305.jpg'), - ('0972022104', 'The Official Hottie Hunting Field Guide', 'https://images.isbndb.com/covers/21/01/9780972022101.jpg'), - ('0826321143', 'CrashBoomLove: A Novel In Verse (Mary Burritt Christiansen Poetry)', 'https://images.isbndb.com/covers/11/45/9780826321145.jpg'), - ('1931243328', 'Book Of Reincarnation (Green Integer)', 'https://images.isbndb.com/covers/33/22/9781931243322.jpg'), - ('0380759500', 'Firefly', 'https://images.isbndb.com/covers/95/07/9780380759507.jpg'), - ('0671722778', 'Merchant Of Venice (Folger Shakespeare Library)', 'https://images.isbndb.com/covers/27/77/9780671722777.jpg'), - ('0671722646', 'Henry IV Part 2', 'https://images.isbndb.com/covers/26/47/9780671722647.jpg'), - ('0970310501', 'On Hardened Ground', 'https://images.isbndb.com/covers/05/07/9780970310507.jpg'), - ('0060910496', 'The Castle Story (Harper Colophon Books)', 'https://images.isbndb.com/covers/04/95/9780060910495.jpg'), - ('0312929277', 'Life''s Little Destruction Book: Everyday Rescue For Beauty, Fashion, Relationships, And Life', 'https://images.isbndb.com/covers/92/75/9780312929275.jpg'), - ('0809434903', 'Cleaning', 'https://images.isbndb.com/covers/49/09/9780809434909.jpg'), - ('006091601X', 'Dateline Soweto: Travels With Black South African Reporters', 'https://images.isbndb.com/covers/60/15/9780060916015.jpg'), - ('0314040536', 'Mediation: Principles And Practice', 'https://images.isbndb.com/covers/05/34/9780314040534.jpg'), - ('0314260439', 'Constitutional Law In A Nutshell (Hornbooks)', 'https://images.isbndb.com/covers/04/37/9780314260437.jpg'), - ('0393000699', 'The House By The Sea', 'https://images.isbndb.com/covers/06/96/9780393000696.jpg'), - ('1851680659', 'On Being A Teacher', 'https://images.isbndb.com/covers/06/58/9781851680658.jpg'), - ('0316547336', 'Merry Christmas, Baby: Holiday Music From Bing To Sting', 'https://images.isbndb.com/covers/73/38/9780316547338.jpg'), - ('0415908078', 'Teaching To Transgress', 'https://images.isbndb.com/covers/80/78/9780415908078.jpg'), - ('0395674379', 'Gathering Of Pearls', 'https://images.isbndb.com/covers/43/76/9780395674376.jpg'), - ('0446394572', 'Hug Dancing', 'https://images.isbndb.com/covers/45/74/9780446394574.jpg'), - ('0020518706', 'The Sun Also Rises (Scribner Classics)', 'https://images.isbndb.com/covers/87/09/9780020518709.jpg'), - ('0446513644', 'Great American Cakes', 'https://images.isbndb.com/covers/36/47/9780446513647.jpg'), - ('1562477587', 'Hoofbeats Of Danger (American Girl History Mysteries)', 'https://images.isbndb.com/covers/75/85/9781562477585.jpg'), - ('039300158X', 'Letters To A Young Poet', 'https://images.isbndb.com/covers/15/87/9780393001587.jpg'), - ('0802773877', 'Chucaro: Wild Pony Of The Pampa (The Newbery Honor Roll)', 'https://images.isbndb.com/covers/38/76/9780802773876.jpg'), - ('0805006923', 'Fort Bragg And Other Points South: Poems', 'https://images.isbndb.com/covers/69/26/9780805006926.jpg'), - ('0385192401', 'Growing Up Catholic: An Infinitely Funny Guide For The Faithful, The Fallen, And Everyone In-Between', 'https://images.isbndb.com/covers/24/08/9780385192408.jpg'), - ('0767903595', 'Clear Your Clutter With Feng Shui', 'https://images.isbndb.com/covers/35/92/9780767903592.jpg'), - ('0140119698', 'A Theft', 'https://images.isbndb.com/covers/96/95/9780140119695.jpg'), - ('0894803220', 'Golfing', 'https://images.isbndb.com/covers/32/22/9780894803222.jpg'), - ('0962341053', 'Transformed By Love', 'https://images.isbndb.com/covers/10/52/9780962341052.jpg'), - ('0891093699', 'Caring Without Wearing', 'https://images.isbndb.com/covers/36/95/9780891093695.jpg'), - ('0941483096', 'Last September', 'https://images.isbndb.com/covers/30/94/9780941483094.jpg'), - ('0886875269', 'True And Tacky: Weird Stories From The Worlds Newswires', 'https://images.isbndb.com/covers/52/68/9780886875268.jpg'), - ('0963557572', 'How To Hire A Nanny: A Complete Step By Step Guide For Parents', 'https://images.isbndb.com/covers/75/75/9780963557575.jpg'), - ('0876091729', 'Minority Rights In Europe (Chatham House Papers)', 'https://images.isbndb.com/covers/17/22/9780876091722.jpg'), - ('0439135230', 'Samir And Yonatan', 'https://images.isbndb.com/covers/52/38/9780439135238.jpg'), - ('0446671223', 'The Celestine Prophecy: An Experiential Guide', 'https://images.isbndb.com/covers/12/24/9780446671224.jpg'), - ('0937295132', 'Samantha Learns A Lesson (American Girl)', 'https://images.isbndb.com/covers/51/37/9780937295137.jpg'), - ('0345349040', 'Ballad Of The False Messiah', 'https://images.isbndb.com/covers/90/40/9780345349040.jpg'), - ('0060972947', 'Waiting For Prime Time: The Women Of Television News', 'https://images.isbndb.com/covers/29/43/9780060972943.jpg'), - ('0446611751', 'The Nine Month Plan', 'https://images.isbndb.com/covers/17/56/9780446611756.jpg'), - ('0486277852', 'O Pioneers! (Dover Thrift Editions)', 'https://images.isbndb.com/covers/78/51/9780486277851.jpg'), - ('1561384798', 'Philadelphia Magazine''s Best Of Philly: The Ultimate Guide : Where To Find The Best Food, Shopping, Culture, And Fun In The Delaware Valley', 'https://images.isbndb.com/covers/47/92/9781561384792.jpg'), - ('1566395305', 'Hikes Around Philadelphia', 'https://images.isbndb.com/covers/53/04/9781566395304.jpg'), - ('0895297310', 'Chromium Picolinate', 'https://images.isbndb.com/covers/73/10/9780895297310.jpg'), - ('0934878420', 'The Book Of Kisses', 'https://images.isbndb.com/covers/84/25/9780934878425.jpg'), - ('1592799175', 'Agents And Adepts', 'https://images.isbndb.com/covers/91/76/9781592799176.jpg'), - ('0486240304', 'Small Patchwork Projects With Step-by-Step Instructions And Full-Size Templates', 'https://images.isbndb.com/covers/03/05/9780486240305.jpg'), - ('1573221252', 'The Courage To Be Rich: Creating A Life Of Material And Spiritual Abundance', 'https://images.isbndb.com/covers/12/52/9781573221252.jpg'), - ('0066211484', 'Another Planet: A Year In The Life Of A Suburban High School', 'https://images.isbndb.com/covers/14/80/9780066211480.jpg'), - ('1575842793', 'New Baby''S Prayers (First Bible Collection)', 'https://images.isbndb.com/covers/27/90/9781575842790.jpg'), - ('094463432X', 'The Journey Of Becoming A Mother: Tools For A New Mother''s Emotional Growth & Development', 'https://images.isbndb.com/covers/43/25/9780944634325.jpg'), - ('1576730409', 'When Mothers Pray: Bringing God''s Power And Blessing To Your Children''s Lives', 'https://images.isbndb.com/covers/04/09/9781576730409.jpg'), - ('0812921828', 'Catching My Breath: An Asthmatic Explores His Illness', 'https://images.isbndb.com/covers/18/23/9780812921823.jpg'), - ('0714827363', 'A History Of The Theater (Performing Arts)', 'https://images.isbndb.com/covers/73/60/9780714827360.jpg'), - ('1576732533', 'The Church: What We Are Meant To Be', 'https://images.isbndb.com/covers/25/33/9781576732533.jpg'), - ('0830724923', 'Sisters & Brothers Forever', 'https://images.isbndb.com/covers/49/25/9780830724925.jpg'), - ('037602478X', 'Low-Fat Mexican Cook Book: Recipes For Healthy Eating (Low Fat Ways To Cook)', 'https://images.isbndb.com/covers/47/87/9780376024787.jpg'), - ('0805065989', 'The Friends Of Eddie Coyle: A Novel (John MacRae Books)', 'https://images.isbndb.com/covers/59/85/9780805065985.jpg'), - ('0743218035', 'The Keepers Of Truth: A Novel', 'https://images.isbndb.com/covers/80/30/9780743218030.jpg'), - ('0874173515', 'Ostrich', 'https://images.isbndb.com/covers/35/12/9780874173512.jpg'), - ('1558502874', 'Knock ''em Dead: The Ultimate Job Seeker''s Handbook', 'https://images.isbndb.com/covers/28/71/9781558502871.jpg'), - ('1558500502', 'Cover Letters That Knock ''Em Dead', 'https://images.isbndb.com/covers/05/01/9781558500501.jpg'), - ('0135085322', 'Mid-Career Job Hunting: Official Handbook Of The Forty Plus Club', 'https://images.isbndb.com/covers/53/25/9780135085325.jpg'), - ('0312265611', 'Bloodroot: A Novel', 'https://images.isbndb.com/covers/56/18/9780312265618.jpg'), - ('0395979366', 'Night Hoops', 'https://images.isbndb.com/covers/93/65/9780395979365.jpg'), - ('0312268033', 'Mr. Mee', 'https://images.isbndb.com/covers/80/39/9780312268039.jpg'), - ('0684850796', 'Inspired Sleep: A Novel', 'https://images.isbndb.com/covers/07/95/9780684850795.jpg'), - ('088162280X', 'Teddy Bear Knits', 'https://images.isbndb.com/covers/28/05/9780881622805.jpg'), - ('0688165273', 'Wild Horses: A Novel', 'https://images.isbndb.com/covers/52/77/9780688165277.jpg'), - ('0380975440', 'Mosaic', 'https://images.isbndb.com/covers/54/40/9780380975440.jpg'), - ('0395430976', 'The Fourth Codex', 'https://images.isbndb.com/covers/09/72/9780395430972.jpg'), - ('0785272399', 'A Woman''s Journey To The Heart Of God', 'https://images.isbndb.com/covers/23/97/9780785272397.jpg'), - ('1841950955', 'Misadventures', 'https://images.isbndb.com/covers/09/52/9781841950952.jpg'), - ('0385141041', 'A Voice From The Living', 'https://images.isbndb.com/covers/10/48/9780385141048.jpg'), - ('0967370167', 'Ella Minnow Pea: A Progressively Lipogrammatic Epistolary Fable', 'https://images.isbndb.com/covers/01/63/9780967370163.jpg'), - ('0785268766', 'Rise Above: God Can Set You Free From Your Weight Problems Forever', 'https://images.isbndb.com/covers/87/65/9780785268765.jpg'), - ('0312263015', 'Capital Queers: An Alex Reynolds Mystery (Alex Reynolds Mysteries)', 'https://images.isbndb.com/covers/30/10/9780312263010.jpg'), - ('0805056211', 'Biting The Moon', 'https://images.isbndb.com/covers/62/11/9780805056211.jpg'), - ('0380975920', 'VIOLET HOUR H', 'https://images.isbndb.com/covers/59/21/9780380975921.jpg'), - ('0446524484', 'A Little Love', 'https://images.isbndb.com/covers/44/83/9780446524483.jpg'), - ('0446519901', 'The Last Best Hope (Matthew Hope Mysteries)', 'https://images.isbndb.com/covers/99/08/9780446519908.jpg'), - ('0451168364', 'Nectar In A Sieve (Signet)', 'https://images.isbndb.com/covers/83/68/9780451168368.jpg'), - ('0877735441', 'Seven Taoist Masters: A Folk Novel Of China', 'https://images.isbndb.com/covers/54/41/9780877735441.jpg'), - ('0961475439', 'The Depression Book: Depression As An Opportunity For Spiritual Practice', 'https://images.isbndb.com/covers/54/37/9780961475437.jpg'), - ('0963625543', 'The Key: And The Name Of The Key Is Willingness', 'https://images.isbndb.com/covers/55/40/9780963625540.jpg'), - ('1559722754', 'The Sewing Circle: Hollywood''s Greatest Secret: Female Stars Who Loved Other Women', 'https://images.isbndb.com/covers/27/59/9781559722759.jpg'), - ('0807009539', 'Courage To Hope: From Black Suffering To Human Redemption', 'https://images.isbndb.com/covers/95/36/9780807009536.jpg'), - ('0451526708', 'Uncle Tom''s Cabin: Or, Life Among The Lowly (Signet Classics)', 'https://images.isbndb.com/covers/67/00/9780451526700.jpg'), - ('0310217067', 'Do Not Lose Heart: Meditations Of Encouragement And Comfort', 'https://images.isbndb.com/covers/70/60/9780310217060.jpg'), - ('0875964818', 'Food Smart: Savory Strategies To Defy Disease (Women''s Edge Health Enhancement Guides)', 'https://images.isbndb.com/covers/48/12/9780875964812.jpg'), - ('047116917X', 'Health Psychology: Biopsychosocial Interactions (3rd Edition)', 'https://images.isbndb.com/covers/91/78/9780471169178.jpg'), - ('0786866764', 'The Temple Of Optimism', 'https://images.isbndb.com/covers/67/62/9780786866762.jpg'), - ('0060805420', 'Murder At The Flea Club', 'https://images.isbndb.com/covers/54/25/9780060805425.jpg'), - ('0156027860', 'The Company She Keeps', 'https://images.isbndb.com/covers/78/61/9780156027861.jpg'), - ('0689856741', 'The Call Of The Wild (Aladdin Classics)', 'https://images.isbndb.com/covers/67/47/9780689856747.jpg'), - ('0671677217', 'The Way Of The Sword: Musashi Book 3', 'https://images.isbndb.com/covers/72/13/9780671677213.jpg'), - ('0671677209', 'The Art Of War: Musashi Book 2', 'https://images.isbndb.com/covers/72/06/9780671677206.jpg'), - ('0802754309', 'Suicide Most Foul', 'https://images.isbndb.com/covers/43/01/9780802754301.jpg'), - ('0385311044', 'Daybreak', 'https://images.isbndb.com/covers/10/45/9780385311045.jpg'), - ('0472060953', 'The March Up Country: A Translation Of Xenophon''s Anabasis (Ann Arbor Paperbacks)', 'https://images.isbndb.com/covers/09/55/9780472060955.jpg'), - ('0743205626', 'Maestro : Greenspan''s Fed And The American Boom', 'https://images.isbndb.com/covers/56/27/9780743205627.jpg'), - ('0671524097', 'SHARP EDGES', 'https://images.isbndb.com/covers/40/98/9780671524098.jpg'), - ('0393009165', 'I Knew A Phoenix: Sketches For An Autobiography', 'https://images.isbndb.com/covers/91/63/9780393009163.jpg'), - ('0471496421', 'ECFO: Sustaining Value In The New Corporation', 'https://images.isbndb.com/covers/64/27/9780471496427.jpg'), - ('0044409001', 'Women, Sex And Rock ''n'' Roll: In Their Own Words (A Pandora Book)', 'https://images.isbndb.com/covers/90/07/9780044409007.jpg'), - ('0553578251', 'Night Work (Kate Martinelli Mysteries)', 'https://images.isbndb.com/covers/82/56/9780553578256.jpg'), - ('0679741917', 'The Immoralist', 'https://images.isbndb.com/covers/19/16/9780679741916.jpg'), - ('0312253419', 'America: A Jake Grafton Novel', 'https://images.isbndb.com/covers/34/17/9780312253417.jpg'), - ('006019832X', 'Hope To Die (Matthew Scudder Mysteries)', 'https://images.isbndb.com/covers/83/29/9780060198329.jpg'), - ('089480619X', 'The Book Of Questions: Love & Sex', 'https://images.isbndb.com/covers/61/93/9780894806193.jpg'), - ('0679764399', 'Winchell: Gossip, Power, And The Culture Of Celebrity', 'https://images.isbndb.com/covers/43/97/9780679764397.jpg'), - ('0520088794', 'The Women''s Companion To International Film', 'https://images.isbndb.com/covers/87/95/9780520088795.jpg'), - ('0060932139', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/21/38/9780060932138.jpg'), - ('0449912337', 'I''ll Always Have Paris', 'https://images.isbndb.com/covers/23/31/9780449912331.jpg'), - ('0671734598', 'The King Is Dead', 'https://images.isbndb.com/covers/45/96/9780671734596.jpg'), - ('031286129X', 'Eden''s Gate', 'https://images.isbndb.com/covers/12/92/9780312861292.jpg'), - ('0962295701', 'Beyond IBM: Leadership Marketing And Finance For The 1990s', 'https://images.isbndb.com/covers/57/06/9780962295706.jpg'), - ('158234311X', 'Ghosty Men: The Strange But True Story Of The Collyer Brothers And My Uncle Arthur, New York''s Greatest Hoarders (An Urban Historical)', 'https://images.isbndb.com/covers/31/12/9781582343112.jpg'), - ('0679870423', 'Jacob Two-Two & The Dinosaur', 'https://images.isbndb.com/covers/04/25/9780679870425.jpg'), - ('0553279114', 'Waiting For The Rain', 'https://images.isbndb.com/covers/91/15/9780553279115.jpg'), - ('0345345053', 'A Sand County Almanac (Outdoor Essays & Reflections)', 'https://images.isbndb.com/covers/50/59/9780345345059.jpg'), - ('0671028294', 'Miami Twilight', 'https://images.isbndb.com/covers/82/99/9780671028299.jpg'), - ('0961000805', 'Ghost Stories Of Berks County (Ghost Stories Of Berks County (Pennsylvania))', 'https://images.isbndb.com/covers/08/06/9780961000806.jpg'), - ('0316105163', 'Vic Braden''s Mental Tennis: How To Psych Yourself To A Winning Game', 'https://images.isbndb.com/covers/51/63/9780316105163.jpg'), - ('0376024852', 'Low Fat Italian Cookbook: Recipes For Healthy Eating (Low Fat Ways To Cook)', 'https://images.isbndb.com/covers/48/55/9780376024855.jpg'), - ('0376024763', 'Low-Fat Stir Fry Cookbook: Recipes For Healthy Eating (Low Fat Ways To Cook)', 'https://images.isbndb.com/covers/47/63/9780376024763.jpg'), - ('0425064506', 'Summer', 'https://images.isbndb.com/covers/45/04/9780425064504.jpg'), - ('1929156006', 'Rebel Without Applause : Tales From The Castro Renaissance', 'https://images.isbndb.com/covers/60/09/9781929156009.jpg'), - ('0553268724', 'Strange Toys', 'https://images.isbndb.com/covers/87/20/9780553268720.jpg'), - ('1582431264', 'Breakfast With Scot', 'https://images.isbndb.com/covers/12/60/9781582431260.jpg'), - ('1883642442', 'Hero', 'https://images.isbndb.com/covers/24/40/9781883642440.jpg'), - ('1573221686', 'Laura Blundy', 'https://images.isbndb.com/covers/16/89/9781573221689.jpg'), - ('0395984165', 'The Fall Of The Year (.)', 'https://images.isbndb.com/covers/41/61/9780395984161.jpg'), - ('0805066667', 'Afterimage', 'https://images.isbndb.com/covers/66/61/9780805066661.jpg'), - ('0590465880', 'Daniel''s Story', 'https://images.isbndb.com/covers/58/85/9780590465885.jpg'), - ('039594113X', 'Hunts In Dreams', 'https://images.isbndb.com/covers/11/33/9780395941133.jpg'), - ('0060282320', 'The Color Of My Words', 'https://images.isbndb.com/covers/23/25/9780060282325.jpg'), - ('0312876610', 'Vivienne', 'https://images.isbndb.com/covers/66/16/9780312876616.jpg'), - ('0060194170', 'About The Author', 'https://images.isbndb.com/covers/41/78/9780060194178.jpg'), - ('0385492979', 'In The Presence Of Horses', 'https://images.isbndb.com/covers/29/73/9780385492973.jpg'), - ('0395945151', 'Like Normal People', 'https://images.isbndb.com/covers/51/55/9780395945155.jpg'), - ('0375402721', 'Original Bliss', 'https://images.isbndb.com/covers/27/22/9780375402722.jpg'), - ('0316472409', 'Sonny Liston Was A Friend Of Mine: Stories', 'https://images.isbndb.com/covers/24/01/9780316472401.jpg'), - ('0944072917', 'Soon: Tales From Hospice', 'https://images.isbndb.com/covers/29/12/9780944072912.jpg'), - ('1582430225', 'First Snow On Fuji', 'https://images.isbndb.com/covers/02/25/9781582430225.jpg'), - ('0385478194', 'Glass, Paper, Beans: Revelations On The Nature And Value Of Ordinary Things', 'https://images.isbndb.com/covers/81/99/9780385478199.jpg'), - ('0060926066', 'Animal Happiness', 'https://images.isbndb.com/covers/60/69/9780060926069.jpg'), - ('0865342695', 'Beyond The Brooklyn Bridge', 'https://images.isbndb.com/covers/26/99/9780865342699.jpg'), - ('0380762951', 'Just Desserts (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/29/58/9780380762958.jpg'), - ('0505525054', 'Lord Of The Dark Sun', 'https://images.isbndb.com/covers/50/55/9780505525055.jpg'), - ('0044409575', 'No Angels: Women Who Commit Violence', 'https://images.isbndb.com/covers/95/71/9780044409571.jpg'), - ('1559360739', 'Angels In America, Part Two: Perestroika', 'https://images.isbndb.com/covers/07/39/9781559360739.jpg'), - ('1559360615', 'Angels In America, Part One: Millennium Approaches', 'https://images.isbndb.com/covers/06/16/9781559360616.jpg'), - ('0679722068', 'Death In Venice: And Seven Other Stories', 'https://images.isbndb.com/covers/20/69/9780679722069.jpg'), - ('038070336X', 'Terrible Tide', 'https://images.isbndb.com/covers/33/64/9780380703364.jpg'), - ('0810980991', 'Maasai', 'https://images.isbndb.com/covers/09/90/9780810980990.jpg'), - ('0448192187', 'Animals And Where They Live (Windows On The World)', 'https://images.isbndb.com/covers/21/85/9780448192185.jpg'), - ('0141312181', 'A Face In Every Window', 'https://images.isbndb.com/covers/21/87/9780141312187.jpg'), - ('0706431642', 'Bio Of A Space Tyrant', 'https://images.isbndb.com/covers/16/43/9780706431643.jpg'), - ('0671019961', 'Public Enemies: The Host Of America''s Most Wanted Targets The Nation''s Most Notorious Criminals', 'https://images.isbndb.com/covers/99/69/9780671019969.jpg'), - ('0449217493', 'Caribbean', 'https://images.isbndb.com/covers/74/98/9780449217498.jpg'), - ('0449214192', 'Centennial', 'https://images.isbndb.com/covers/41/90/9780449214190.jpg'), - ('1878580450', 'The Gothic Twilight: Stories', 'https://images.isbndb.com/covers/04/50/9781878580450.jpg'), - ('0679437037', 'Education On The Edge Of Possibility', 'https://images.isbndb.com/covers/70/31/9780679437031.jpg'), - ('0375707409', 'A Boy''s Own Story', 'https://images.isbndb.com/covers/74/07/9780375707407.jpg'), - ('0471155454', 'Bloomberg By Bloomberg', 'https://images.isbndb.com/covers/54/54/9780471155454.jpg'), - ('0446605964', 'Never Street (The Amos Walker Series #12)', 'https://images.isbndb.com/covers/59/60/9780446605960.jpg'), - ('0374309302', 'The Boy In The Burning House', 'https://images.isbndb.com/covers/93/05/9780374309305.jpg'), - ('0449206513', 'The Bridges At Toko-Ri', 'https://images.isbndb.com/covers/65/15/9780449206515.jpg'), - ('037581177X', 'Anne Frank In The World', 'https://images.isbndb.com/covers/17/77/9780375811777.jpg'), - ('0385480334', 'The Diary Of A Young Girl', 'https://images.isbndb.com/covers/03/38/9780385480338.jpg'), - ('0061092614', 'Finding Moon', 'https://images.isbndb.com/covers/26/19/9780061092619.jpg'), - ('0451133129', 'Growing Up (Signet)', 'https://images.isbndb.com/covers/31/20/9780451133120.jpg'), - ('0684858266', 'Black Cabs', 'https://images.isbndb.com/covers/82/65/9780684858265.jpg'), - ('0449244741', 'The Covenant', 'https://images.isbndb.com/covers/47/46/9780449244746.jpg'), - ('0449238598', 'Source', 'https://images.isbndb.com/covers/85/92/9780449238592.jpg'), - ('0140093451', 'Natural Enemy (Penguin Crime Fiction)', 'https://images.isbndb.com/covers/34/52/9780140093452.jpg'), - ('0317532901', 'Machine Dreams', 'https://images.isbndb.com/covers/29/06/9780317532906.jpg'), - ('0380755408', 'The Grub-And-Stakers Spin A Yarn', 'https://images.isbndb.com/covers/54/00/9780380755400.jpg'), - ('067168079X', 'Smokescreen', 'https://images.isbndb.com/covers/07/94/9780671680794.jpg'), - ('0449147452', 'All Hallows'' Evil (A Susan Henshaw Mystery #4)', 'https://images.isbndb.com/covers/74/50/9780449147450.jpg'), - ('0380704056', 'Murder At The Palace', 'https://images.isbndb.com/covers/40/57/9780380704057.jpg'), - ('038070529X', 'Murder In The Rose Garden', 'https://images.isbndb.com/covers/52/90/9780380705290.jpg'), - ('0879052686', 'Walks In Gertrude Stein''s Paris', 'https://images.isbndb.com/covers/26/83/9780879052683.jpg'), - ('0449234940', 'Centennial', 'https://images.isbndb.com/covers/49/45/9780449234945.jpg'), - ('0671680765', 'Bone-Crack', 'https://images.isbndb.com/covers/07/63/9780671680763.jpg'), - ('042518904X', 'Widow''s Walk (Spenser)', 'https://images.isbndb.com/covers/90/47/9780425189047.jpg'), - ('0553284134', 'Journey Into Madness', 'https://images.isbndb.com/covers/41/33/9780553284133.jpg'), - ('0451166876', 'Lust Killer: Updated Edition (Signet True Crime)', 'https://images.isbndb.com/covers/68/76/9780451166876.jpg'), - ('0446670332', 'Touched By Angels', 'https://images.isbndb.com/covers/03/33/9780446670333.jpg'), - ('0812527259', 'Black Wind', 'https://images.isbndb.com/covers/72/54/9780812527254.jpg'), - ('0440212049', 'Threat Case', 'https://images.isbndb.com/covers/20/41/9780440212041.jpg'), - ('0553199552', 'Trevayne', 'https://images.isbndb.com/covers/95/50/9780553199550.jpg'), - ('0449220923', 'Creatures Of The Kingdom', 'https://images.isbndb.com/covers/09/24/9780449220924.jpg'), - ('0375758771', 'The Glass Palace: A Novel', 'https://images.isbndb.com/covers/87/75/9780375758775.jpg'), - ('0899669611', 'The Green Hat', 'https://images.isbndb.com/covers/96/18/9780899669618.jpg'), - ('0060924799', 'More Tales Of The City (Tales Of The City, Volume Two)', 'https://images.isbndb.com/covers/47/99/9780060924799.jpg'), - ('0399122702', 'Born With The Century', 'https://images.isbndb.com/covers/27/05/9780399122705.jpg'), - ('0449210928', 'Texas', 'https://images.isbndb.com/covers/09/25/9780449210925.jpg'), - ('0812534379', 'My Lost Mexico', 'https://images.isbndb.com/covers/43/75/9780812534375.jpg'), - ('0449239594', 'Caravans 1', 'https://images.isbndb.com/covers/95/99/9780449239599.jpg'), - ('0140036636', 'The Open House', 'https://images.isbndb.com/covers/66/33/9780140036633.jpg'), - ('0553272934', 'Hunger Of Memory : The Education Of Richard Rodriguez', 'https://images.isbndb.com/covers/29/32/9780553272932.jpg'), - ('0451409655', 'Mob Over Miami', 'https://images.isbndb.com/covers/96/52/9780451409652.jpg'), - ('1555972403', 'Otherwise: New And Selected Poems', 'https://images.isbndb.com/covers/24/00/9781555972400.jpg'), - ('0521425042', 'The Merchant Of Venice (Cambridge School Shakespeare)', 'https://images.isbndb.com/covers/50/49/9780521425049.jpg'), - ('0345343727', 'Familiar Spirits (Elizabethan Mystery)', 'https://images.isbndb.com/covers/37/27/9780345343727.jpg'), - ('0804113645', 'The Daughters Of Cain', 'https://images.isbndb.com/covers/36/49/9780804113649.jpg'), - ('0671664824', 'Bethany''s Sin', 'https://images.isbndb.com/covers/48/24/9780671664824.jpg'), - ('038072121X', 'In The Electric Mist With Confederate Dead', 'https://images.isbndb.com/covers/12/14/9780380721214.jpg'), - ('067172018X', 'Falkenberg''s Legion', 'https://images.isbndb.com/covers/01/86/9780671720186.jpg'), - ('0345388747', 'Stricken Field (A Handful Of Men, Part 3)', 'https://images.isbndb.com/covers/87/42/9780345388742.jpg'), - ('055329010X', 'UNDER THE EYE OF GOD', 'https://images.isbndb.com/covers/01/03/9780553290103.jpg'), - ('0553262815', 'River Of Time, The', 'https://images.isbndb.com/covers/28/10/9780553262810.jpg'), - ('0812502701', 'The Boat Of A Million Years', 'https://images.isbndb.com/covers/27/01/9780812502701.jpg'), - ('0786705337', 'The Mammoth Book Of Comic Fantasy', 'https://images.isbndb.com/covers/53/37/9780786705337.jpg'), - ('0812532236', 'Privateers', 'https://images.isbndb.com/covers/22/34/9780812532234.jpg'), - ('0425086577', 'Exiles Trilogy', 'https://images.isbndb.com/covers/65/75/9780425086575.jpg'), - ('0812532082', 'Test Of Fire', 'https://images.isbndb.com/covers/20/81/9780812532081.jpg'), - ('0812532368', 'Voyagers III: Star Brothers (Voyagers (Tor))', 'https://images.isbndb.com/covers/23/64/9780812532364.jpg'), - ('0812500768', 'Voyagers', 'https://images.isbndb.com/covers/07/69/9780812500769.jpg'), - ('0553249355', 'West Of Eden (Eden, No. 1)', 'https://images.isbndb.com/covers/93/54/9780553249354.jpg'), - ('0553277006', 'Return To Eden', 'https://images.isbndb.com/covers/70/05/9780553277005.jpg'), - ('0441007910', 'Phule Me Twice (Phule''s Company)', 'https://images.isbndb.com/covers/79/12/9780441007912.jpg'), - ('0441132456', 'Cyber Way', 'https://images.isbndb.com/covers/24/54/9780441132454.jpg'), - ('0446341819', 'Spellsinger #02: The Hour Of The Gate', 'https://images.isbndb.com/covers/18/13/9780446341813.jpg'), - ('0671746340', 'The Activist''s Almanac: The Concerned Citizen''s Guide To The Leading Advocacy Organizations In America', 'https://images.isbndb.com/covers/63/46/9780671746346.jpg'), - ('0671899007', 'Warriors Don''t Cry', 'https://images.isbndb.com/covers/90/04/9780671899004.jpg'), - ('1878067265', 'In Love And In Danger: A Teen''s Guide To Breaking Free Of Abusive Relationships', 'https://images.isbndb.com/covers/72/65/9781878067265.jpg'), - ('0553266640', 'Across The Sea Of Suns', 'https://images.isbndb.com/covers/66/41/9780553266641.jpg'), - ('0553290053', 'Against Infinity', 'https://images.isbndb.com/covers/00/59/9780553290059.jpg'), - ('0380790521', 'Cosm', 'https://images.isbndb.com/covers/05/24/9780380790524.jpg'), - ('0553573322', 'Sailing Bright Eternity', 'https://images.isbndb.com/covers/33/29/9780553573329.jpg'), - ('0345326008', 'The Wounded Land', 'https://images.isbndb.com/covers/60/03/9780345326003.jpg'), - ('0273637371', 'High Finance In The Euro-Zone: Competing In The New European Capital Market', 'https://images.isbndb.com/covers/73/70/9780273637370.jpg'), - ('087584877X', 'Blown To Bits: How The New Economics Of Information Transforms Strategy', 'https://images.isbndb.com/covers/87/78/9780875848778.jpg'), - ('0553298178', 'The Garden Of Rama', 'https://images.isbndb.com/covers/81/78/9780553298178.jpg'), - ('0812520629', 'The Last Aerie (Vampire World)', 'https://images.isbndb.com/covers/06/20/9780812520620.jpg'), - ('0446350982', 'Presumed Innocent', 'https://images.isbndb.com/covers/09/83/9780446350983.jpg'), - ('0590419668', 'Othello (Point Signature Editions)', 'https://images.isbndb.com/covers/96/66/9780590419666.jpg'), - ('0886774926', 'Relic Of Empire (Forbidden Borders #2)', 'https://images.isbndb.com/covers/49/29/9780886774929.jpg'), - ('039472366X', 'WHITE MISCHIEF', 'https://images.isbndb.com/covers/36/62/9780394723662.jpg'), - ('0671720791', 'Man-Kzin Wars IV', 'https://images.isbndb.com/covers/07/97/9780671720797.jpg'), - ('0449206505', 'Return To Paradise', 'https://images.isbndb.com/covers/65/08/9780449206508.jpg'), - ('0449214206', 'The Covenant', 'https://images.isbndb.com/covers/42/06/9780449214206.jpg'), - ('0812513010', 'The Eagle And The Raven', 'https://images.isbndb.com/covers/30/11/9780812513011.jpg'), - ('0684859017', 'South Mountain Road: A Daughter''s Journey Of Discovery', 'https://images.isbndb.com/covers/90/19/9780684859019.jpg'), - ('0671654047', 'Ardneh''s World (Empire Of The East, Vol 3)', 'https://images.isbndb.com/covers/40/47/9780671654047.jpg'), - ('0394450779', 'The Voice Of Asia', 'https://images.isbndb.com/covers/07/73/9780394450773.jpg'), - ('0743434870', 'Friday The Rabbi Slept Late (Rabbi Small Mystery)', 'https://images.isbndb.com/covers/48/74/9780743434874.jpg'), - ('1850180490', 'The Eastenders, The: Good Intentions Bk. 3', 'https://images.isbndb.com/covers/04/94/9781850180494.jpg'), - ('0425187403', 'Body Of Intuition', 'https://images.isbndb.com/covers/74/01/9780425187401.jpg'), - ('0449232042', 'SPORTS IN AMERICA', 'https://images.isbndb.com/covers/20/40/9780449232040.jpg'), - ('0679781420', 'Down These Mean Streets', 'https://images.isbndb.com/covers/14/24/9780679781424.jpg'), - ('0684864185', 'Manchild In The Promised Land', 'https://images.isbndb.com/covers/41/81/9780684864181.jpg'), - ('034535933X', 'The Saracen: The Holy War', 'https://images.isbndb.com/covers/93/39/9780345359339.jpg'), - ('0345373480', 'Warrior', 'https://images.isbndb.com/covers/34/89/9780345373489.jpg'), - ('0671809385', 'Plague Ship', 'https://images.isbndb.com/covers/93/86/9780671809386.jpg'), - ('0312924291', 'The Westies: Inside New York''s Irish Mob', 'https://images.isbndb.com/covers/42/94/9780312924294.jpg'), - ('1565846567', 'Hard Times: An Oral History Of The Great Depression', 'https://images.isbndb.com/covers/65/62/9781565846562.jpg'), - ('0061003425', 'The Call Of The Canyon', 'https://images.isbndb.com/covers/34/24/9780061003424.jpg'), - ('0451174186', 'A Cast Of Killers (Signet)', 'https://images.isbndb.com/covers/41/85/9780451174185.jpg'), - ('0140171673', 'The Snapper', 'https://images.isbndb.com/covers/16/79/9780140171679.jpg'), - ('0804103712', 'The Body In The Volvo', 'https://images.isbndb.com/covers/37/18/9780804103718.jpg'), - ('0380722607', 'Contents Under Pressure (Avon Twilight Mystery) (1st In Britt Montero Mystery Series)', 'https://images.isbndb.com/covers/26/00/9780380722600.jpg'), - ('1558173331', 'Scorpion''s Dance', 'https://images.isbndb.com/covers/33/30/9781558173330.jpg'), - ('044921849X', 'French Kiss', 'https://images.isbndb.com/covers/84/95/9780449218495.jpg'), - ('0345343263', 'THE STONE ARROW (Pagans Trilogy, Book 1)', 'https://images.isbndb.com/covers/32/60/9780345343260.jpg'), - ('0671559044', 'The Golden People', 'https://images.isbndb.com/covers/90/45/9780671559045.jpg'), - ('0345312015', 'Hooligans', 'https://images.isbndb.com/covers/20/13/9780345312013.jpg'), - ('0375757643', 'The Last Of The Mohicans (Modern Library Classics)', 'https://images.isbndb.com/covers/76/48/9780375757648.jpg'), - ('0449205983', 'Shan', 'https://images.isbndb.com/covers/59/83/9780449205983.jpg'), - ('0451158717', 'Who''s Afraid Of Virginia Woolf?', 'https://images.isbndb.com/covers/87/10/9780451158710.jpg'), - ('0671677225', 'Musashi No. 4 : Bushido Code', 'https://images.isbndb.com/covers/72/20/9780671677220.jpg'), - ('0821738976', 'Kisaeng', 'https://images.isbndb.com/covers/89/79/9780821738979.jpg'), - ('0836218981', 'The Indispensable Calvin And Hobbes (Calvin & Hobbes)', 'https://images.isbndb.com/covers/89/85/9780836218985.jpg'), - ('0810913038', 'Maasai', 'https://images.isbndb.com/covers/30/35/9780810913035.jpg'), - ('006028739X', 'Boston Jane Series: An Adventure', 'https://images.isbndb.com/covers/73/99/9780060287399.jpg'), - ('0375761225', 'Washington Square (Modern Library Classics)', 'https://images.isbndb.com/covers/12/25/9780375761225.jpg'), - ('0066211697', 'Bonjour Tristesse', 'https://images.isbndb.com/covers/16/95/9780066211695.jpg'), - ('080500503X', 'Curious Affair Of The Third Dog: An Inspector Henry Tibbett Mystery', 'https://images.isbndb.com/covers/50/35/9780805005035.jpg'), - ('0345340418', 'Death In A Tenured Position (Kate Fansler Novels)', 'https://images.isbndb.com/covers/04/12/9780345340412.jpg'), - ('0671455257', 'Murder Against The Grain', 'https://images.isbndb.com/covers/52/55/9780671455255.jpg'), - ('0802138039', 'Priority', 'https://images.isbndb.com/covers/80/33/9780802138033.jpg'), - ('0060907967', 'Lowell Offering: Writings By New England Mill Women, 1840-1845', 'https://images.isbndb.com/covers/79/69/9780060907969.jpg'), - ('0449211479', 'SOURCE', 'https://images.isbndb.com/covers/14/72/9780449211472.jpg'), - ('0449134040', 'The Dreadful Lemon Sky', 'https://images.isbndb.com/covers/40/47/9780449134047.jpg'), - ('1569800677', 'Hollywood Lesbians', 'https://images.isbndb.com/covers/06/76/9781569800676.jpg'), - ('0345330145', 'Puppet Masters', 'https://images.isbndb.com/covers/01/47/9780345330147.jpg'), - ('0671720082', 'Man Kzin Wars III', 'https://images.isbndb.com/covers/00/87/9780671720087.jpg'), - ('0449237613', 'Hawaii', 'https://images.isbndb.com/covers/76/18/9780449237618.jpg'), - ('0345332857', 'Bloodhype', 'https://images.isbndb.com/covers/28/51/9780345332851.jpg'), - ('0671698516', 'The Lizard War', 'https://images.isbndb.com/covers/85/15/9780671698515.jpg'), - ('0812536460', 'King And Emperor (Hammer And The Cross)', 'https://images.isbndb.com/covers/64/61/9780812536461.jpg'), - ('0385333781', 'Player Piano: A Novel', 'https://images.isbndb.com/covers/37/88/9780385333788.jpg'), - ('0380720884', 'Rage Of A Demon King: Book Three Of The Serpentwar Saga (Serpentwar Saga , Vol 3)', 'https://images.isbndb.com/covers/08/80/9780380720880.jpg'), - ('0671644211', 'Way Of The Samurai (Musashi, Book 1)', 'https://images.isbndb.com/covers/42/15/9780671644215.jpg'), - ('0553158899', 'Zorba The Hutt''s Revenge (Star Wars)', 'https://images.isbndb.com/covers/88/92/9780553158892.jpg'), - ('0441908721', 'The Woods Out Back (The Spearwielder''s Tale)', 'https://images.isbndb.com/covers/87/21/9780441908721.jpg'), - ('0515126985', 'In Danger''s Path (The Corps, Book 8)', 'https://images.isbndb.com/covers/69/83/9780515126983.jpg'), - ('0671578553', 'Worlds Of Honor (Honorverse)', 'https://images.isbndb.com/covers/85/58/9780671578558.jpg'), - ('0345371976', 'The World At The End Of Time', 'https://images.isbndb.com/covers/19/73/9780345371973.jpg'), - ('0886775647', 'Countermeasures (Forbidden Borders #3)', 'https://images.isbndb.com/covers/56/43/9780886775643.jpg'), - ('0802313167', 'The Great Irish Famine (Thomas Davis Lecture Series)', 'https://images.isbndb.com/covers/31/64/9780802313164.jpg'), - ('0312088353', 'Latin Moon In Manhattan: A Novel (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/83/54/9780312088354.jpg'), - ('0553232894', 'Bodily Harm', 'https://images.isbndb.com/covers/28/99/9780553232899.jpg'), - ('0060932902', 'Genome: The Autobiography Of A Species In 23 Chapters', 'https://images.isbndb.com/covers/29/09/9780060932909.jpg'), - ('0609606077', 'Life And Def : Sex, Drugs, Money, And God', 'https://images.isbndb.com/covers/60/70/9780609606070.jpg'), - ('0306804751', 'Murder, Inc.: The Story Of The Syndicate', 'https://images.isbndb.com/covers/47/55/9780306804755.jpg'), - ('0394505050', 'The Covenant: A Novel', 'https://images.isbndb.com/covers/50/53/9780394505053.jpg'), - ('0878579109', 'Pilgrimage: A Memoir Of Poland And Rome', 'https://images.isbndb.com/covers/91/05/9780878579105.jpg'), - ('0743205677', 'The Heart Of The Soul : Emotional Awareness', 'https://images.isbndb.com/covers/56/72/9780743205672.jpg'), - ('0805047360', 'Go The Way Your Blood Beats: An Anthology Of Lesbian And Gay Fiction By African-American Writers', 'https://images.isbndb.com/covers/73/63/9780805047363.jpg'), - ('0743222946', 'At Swim, Two Boys', 'https://images.isbndb.com/covers/29/45/9780743222945.jpg'), - ('0439376068', 'The Adventures Of Super Diaper Baby', 'https://images.isbndb.com/covers/60/68/9780439376068.jpg'), - ('0525457453', 'Dogs Have The Strangest Friends: & Other True Stories Of Animal Feelings', 'https://images.isbndb.com/covers/74/59/9780525457459.jpg'), - ('0060960809', 'The Movie Lover''s Guide To New York: The Ultimate Guide To Movie New York- An Inside Look At Over 25 Attractions From Motion Picture Past And Present', 'https://images.isbndb.com/covers/08/03/9780060960803.jpg'), - ('0375801766', 'I Was A Rat!', 'https://images.isbndb.com/covers/17/61/9780375801761.jpg'), - ('0805054537', 'This Side Of Brightness: A Novel', 'https://images.isbndb.com/covers/45/38/9780805054538.jpg'), - ('0312110529', 'Sacred Lips Of The Bronx', 'https://images.isbndb.com/covers/05/29/9780312110529.jpg'), - ('0525093303', 'The Dione Lucas Book Of Natural French Cooking', 'https://images.isbndb.com/covers/33/05/9780525093305.jpg'), - ('0671633635', 'Early Summer Garden (Burpee''s American Harvest Cookbooks)', 'https://images.isbndb.com/covers/36/39/9780671633639.jpg'), - ('0671678051', 'Kathy Cooks: Vegetarian, Low Cholesterol (Art Of Dieting Without Dieting)', 'https://images.isbndb.com/covers/80/50/9780671678050.jpg'), - ('0452262704', 'Sports Illustrated Backpacking: A Complete Guide (Sports Illustrated Winner''s Circle Books)', 'https://images.isbndb.com/covers/27/06/9780452262706.jpg'), - ('0688155162', 'Taming It Down: A Novel', 'https://images.isbndb.com/covers/51/62/9780688155162.jpg'), - ('0060959622', 'You Just Don''t Understand: Women And Men In Conversation', 'https://images.isbndb.com/covers/96/23/9780060959623.jpg'), - ('0385266367', 'A Fire In The Mind: The Life Of Joseph Campbell', 'https://images.isbndb.com/covers/63/69/9780385266369.jpg'), - ('0140178724', 'Was', 'https://images.isbndb.com/covers/87/22/9780140178722.jpg'), - ('0195030680', 'Abroad: British Literary Traveling Between The Wars', 'https://images.isbndb.com/covers/06/86/9780195030686.jpg'), - ('0670882070', 'Blood Acre', 'https://images.isbndb.com/covers/20/76/9780670882076.jpg'), - ('0395957826', 'The Long Falling', 'https://images.isbndb.com/covers/78/20/9780395957820.jpg'), - ('0156505150', 'Let The Dead Bury Their Dead (Harvest American Writing Series)', 'https://images.isbndb.com/covers/51/54/9780156505154.jpg'), - ('0854491872', 'The Colonist', 'https://images.isbndb.com/covers/18/72/9780854491872.jpg'), - ('0451623797', 'From Bonsai To Levis: When West Meets East (Mentor)', 'https://images.isbndb.com/covers/37/99/9780451623799.jpg'), - ('1568362641', 'Good Morning, Miffy', 'https://images.isbndb.com/covers/26/49/9781568362649.jpg'), - ('0393039870', 'How To Care For Your Parents: A Practical Guide To Eldercare', 'https://images.isbndb.com/covers/98/70/9780393039870.jpg'), - ('0140077715', 'Emily Dickinson Is Dead: A Homer Kelly Mystery', 'https://images.isbndb.com/covers/77/11/9780140077711.jpg'), - ('0425153797', 'Men In Black', 'https://images.isbndb.com/covers/37/96/9780425153796.jpg'), - ('0671740504', 'DEVIL IN A BLUE DRESS: An Easy Rawlins Mystery', 'https://images.isbndb.com/covers/05/04/9780671740504.jpg'), - ('0553293915', 'Kat''s Cradle (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/39/13/9780553293913.jpg'), - ('0671016717', 'Blue Blood (Ivy League Mysteries)', 'https://images.isbndb.com/covers/67/15/9780671016715.jpg'), - ('0394710932', 'Kind And Usual Punishment', 'https://images.isbndb.com/covers/09/38/9780394710938.jpg'), - ('0449203158', 'Chesapeake', 'https://images.isbndb.com/covers/31/56/9780449203156.jpg'), - ('0156806754', 'E.E.Cummings: A Selection Of Poems', 'https://images.isbndb.com/covers/67/56/9780156806756.jpg'), - ('0671746480', 'Power Hungry (Star Trek The Next Generation, No 6)', 'https://images.isbndb.com/covers/64/83/9780671746483.jpg'), - ('0671743880', 'Encounter At Farpoint (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/38/88/9780671743888.jpg'), - ('0671739182', 'A Flag Full Of Stars (Star Trek, Book 54)', 'https://images.isbndb.com/covers/91/88/9780671739188.jpg'), - ('067152044X', 'Ragnarok (Star Trek Voyager, No 3)', 'https://images.isbndb.com/covers/04/41/9780671520441.jpg'), - ('0553241745', 'World Without End', 'https://images.isbndb.com/covers/17/47/9780553241747.jpg'), - ('0671880306', 'The Big Game (Star Trek Deep Space Nine, No 4)', 'https://images.isbndb.com/covers/03/09/9780671880309.jpg'), - ('0553121111', 'Star Trek 9', 'https://images.isbndb.com/covers/11/17/9780553121117.jpg'), - ('0671709704', 'Boogeymen (Star Trek: The Next Generation, No. 17)', 'https://images.isbndb.com/covers/97/09/9780671709709.jpg'), - ('0671520466', 'Violations (Star Trek Voyager, No 4)', 'https://images.isbndb.com/covers/04/65/9780671520465.jpg'), - ('0671506048', 'The Search (Star Trek Deep Space Nine)', 'https://images.isbndb.com/covers/60/49/9780671506049.jpg'), - ('0451129474', 'The Best Of Trek, No. 5 (Star Trek)', 'https://images.isbndb.com/covers/94/75/9780451129475.jpg'), - ('0671882678', 'Descent (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/26/79/9780671882679.jpg'), - ('0671520962', 'The Escape (Star Trek Voyager, No 2)', 'https://images.isbndb.com/covers/09/60/9780671520960.jpg'), - ('0671520482', 'Incident At Arbuk (Star Trek Voyager, No 5)', 'https://images.isbndb.com/covers/04/89/9780671520489.jpg'), - ('0671797042', 'Sins Of Commission (Star Trek The Next Generation, No 29)', 'https://images.isbndb.com/covers/70/41/9780671797041.jpg'), - ('0671453580', 'The Klingon Gambit (Star Trek, No 3)', 'https://images.isbndb.com/covers/35/89/9780671453589.jpg'), - ('0671537830', 'The Murdered Sun (Star Trek Voyager, No 6)', 'https://images.isbndb.com/covers/78/38/9780671537838.jpg'), - ('0671881167', 'Warchild (Star Trek Deep Space Nine, No 7)', 'https://images.isbndb.com/covers/11/60/9780671881160.jpg'), - ('0671872753', 'Bloodletter (Star Trek Deep Space Nine, No 3)', 'https://images.isbndb.com/covers/27/55/9780671872755.jpg'), - ('0671568116', 'Objective: Bajor (Star Trek: Deep Space Nine)', 'https://images.isbndb.com/covers/81/15/9780671568115.jpg'), - ('0671549170', 'Rogue Saucer (Star Trek The Next Generation, No. 39)', 'https://images.isbndb.com/covers/91/76/9780671549176.jpg'), - ('0671520474', 'The Captain''s Daughter (Star Trek, Book 76)', 'https://images.isbndb.com/covers/04/72/9780671520472.jpg'), - ('0671658158', 'The Pandora Principle (Star Trek, Book 49)', 'https://images.isbndb.com/covers/81/51/9780671658151.jpg'), - ('0671741403', 'The Captain''s Honor (Star Trek The Next Generation, No 8)', 'https://images.isbndb.com/covers/14/02/9780671741402.jpg'), - ('067151914X', 'Caretaker (Star Trek Voyager, No 1)', 'https://images.isbndb.com/covers/91/48/9780671519148.jpg'), - ('0553241702', 'The Galactic Whirlpool (Star Trek)', 'https://images.isbndb.com/covers/17/09/9780553241709.jpg'), - ('067179065X', 'Probe (Star Trek)', 'https://images.isbndb.com/covers/06/53/9780671790653.jpg'), - ('0345272129', 'Star Trek Log Ten / 10', 'https://images.isbndb.com/covers/21/26/9780345272126.jpg'), - ('0671705601', 'Exiles (Star Trek The Next Generation, No 14)', 'https://images.isbndb.com/covers/56/02/9780671705602.jpg'), - ('0671501054', 'The Last Stand (Star Trek: The Next Generation, No. 37)', 'https://images.isbndb.com/covers/10/51/9780671501051.jpg'), - ('0671746472', 'Strike Zone (Star Trek The Next Generation, No 5)', 'https://images.isbndb.com/covers/64/76/9780671746476.jpg'), - ('0671524887', 'Killing Time (Star Trek, No 24)', 'https://images.isbndb.com/covers/48/83/9780671524883.jpg'), - ('0671798588', 'Emissary (Star Trek Deep Space Nine, No 1)', 'https://images.isbndb.com/covers/85/81/9780671798581.jpg'), - ('0671879979', 'The Romulan Stratagem (Star Trek The Next Generation, No 35)', 'https://images.isbndb.com/covers/99/76/9780671879976.jpg'), - ('0060916095', 'Think On These Things', 'https://images.isbndb.com/covers/60/91/9780060916091.jpg'), - ('0449005127', 'Eyes', 'https://images.isbndb.com/covers/51/25/9780449005125.jpg'), - ('0374520763', 'A Meeting By The River', 'https://images.isbndb.com/covers/07/62/9780374520762.jpg'), - ('0671741438', 'Gulliver''s Fugitives (Star Trek: The Next Generation, No. 11)', 'https://images.isbndb.com/covers/14/33/9780671741433.jpg'), - ('0671666622', 'Home Is The Hunter (Star Trek, No 52)', 'https://images.isbndb.com/covers/66/20/9780671666620.jpg'), - ('0671465430', 'The Trellisane Confrontation (Star Trek, No 14)', 'https://images.isbndb.com/covers/54/38/9780671465438.jpg'), - ('1884907873', 'A Heritage Of Passion', 'https://images.isbndb.com/covers/78/76/9781884907876.jpg'), - ('0449221202', 'Aftershock', 'https://images.isbndb.com/covers/12/04/9780449221204.jpg'), - ('034536998X', 'The Players Come Again (Kate Fansler Novels)', 'https://images.isbndb.com/covers/99/87/9780345369987.jpg'), - ('0671864165', 'Acts Of Faith: Daily Meditations For People Of Color', 'https://images.isbndb.com/covers/41/63/9780671864163.jpg'), - ('158613101X', 'Zhuan Falun (Revolving The Law Wheel)', 'https://images.isbndb.com/covers/10/12/9781586131012.jpg'), - ('0767905040', 'The Case Against Lawyers', 'https://images.isbndb.com/covers/50/46/9780767905046.jpg'), - ('0802131379', 'Last Exit To Brooklyn (An Evergreen Book)', 'https://images.isbndb.com/covers/13/79/9780802131379.jpg'), - ('0380788756', 'Baltimore Blues (Tess Monaghan Mysteries)', 'https://images.isbndb.com/covers/87/50/9780380788750.jpg'), - ('0553560727', 'Brilliant Madness: Living With Manic Depressive Illness', 'https://images.isbndb.com/covers/07/25/9780553560725.jpg'), - ('0515113522', 'Backstage Passes', 'https://images.isbndb.com/covers/35/25/9780515113525.jpg'), - ('0451452356', 'A Sword For A Dragon (Bazil Broketail)', 'https://images.isbndb.com/covers/23/51/9780451452351.jpg'), - ('0689835558', 'Nell Dunne: Ellis Island, 1904', 'https://images.isbndb.com/covers/55/51/9780689835551.jpg'), - ('0752843753', 'Making The Cut (Carl McCadden Mysteries)', 'https://images.isbndb.com/covers/37/59/9780752843759.jpg'), - ('0874777992', 'Caring For Your Aging Parents', 'https://images.isbndb.com/covers/79/94/9780874777994.jpg'), - ('0061007072', 'Sotah', 'https://images.isbndb.com/covers/70/71/9780061007071.jpg'), - ('0811205967', 'Sweet Bird Of Youth', 'https://images.isbndb.com/covers/59/62/9780811205962.jpg'), - ('0679750304', 'The Culture Of Desire: Paradox And Perversity In Gay Lives Today', 'https://images.isbndb.com/covers/03/07/9780679750307.jpg'), - ('0921912951', 'Going To Town: Architectural Walking Tours In Southern Ontario', 'https://images.isbndb.com/covers/29/58/9780921912958.jpg'), - ('0486287599', 'A Modest Proposal And Other Satirical Works (Dover Thrift Editions)', 'https://images.isbndb.com/covers/75/91/9780486287591.jpg'), - ('0312963157', 'The Last Girl', 'https://images.isbndb.com/covers/31/56/9780312963156.jpg'), - ('0691003122', 'Painting In Florence And Siena After The Black Death', 'https://images.isbndb.com/covers/31/22/9780691003122.jpg'), - ('067088460X', 'Bemelmans: The Life And Art Of Madeline''s Creator', 'https://images.isbndb.com/covers/46/05/9780670884605.jpg'), - ('0887307361', 'The Reengineering Revolution: A Handbook', 'https://images.isbndb.com/covers/73/62/9780887307362.jpg'), - ('0688089054', 'One Page Management: Success Through Access! How To Get The Key Facts You Need To Get The Job Done', 'https://images.isbndb.com/covers/90/54/9780688089054.jpg'), - ('0399522662', 'Buy Book, Get Guy', 'https://images.isbndb.com/covers/26/66/9780399522666.jpg'), - ('0062548662', 'Meditations For Women Who Do Too Much', 'https://images.isbndb.com/covers/86/65/9780062548665.jpg'), - ('0804112657', 'How To Handle Trouble', 'https://images.isbndb.com/covers/26/59/9780804112659.jpg'), - ('1561704059', 'Being: How To Increase Your Awareness Of Oneness', 'https://images.isbndb.com/covers/40/57/9781561704057.jpg'), - ('0446525685', 'Business @ The Speed Of Thought : Using A Digital Nervous System', 'https://images.isbndb.com/covers/56/88/9780446525688.jpg'), - ('0061011886', 'Enter Whining', 'https://images.isbndb.com/covers/18/87/9780061011887.jpg'), - ('034536225X', 'I''ll Take It', 'https://images.isbndb.com/covers/22/54/9780345362254.jpg'), - ('0380728753', 'The Escape From Home (Beyond The Western Sea, Book 1)', 'https://images.isbndb.com/covers/87/56/9780380728756.jpg'), - ('0740729497', '1,003 Great Things About America', 'https://images.isbndb.com/covers/94/92/9780740729492.jpg'), - ('0140046941', 'Black Odyssey: The Case Of The Slave Ship `Amistad''', 'https://images.isbndb.com/covers/69/46/9780140046946.jpg'), - ('0684837455', 'Black-Eyed Peas For The Soul: Tales To Strengthen The African American Spirit And Encourage The Heart', 'https://images.isbndb.com/covers/74/51/9780684837451.jpg'), - ('0312022808', 'Sherlock Holmes And The Mysterious Friend Of Oscar Wilde', 'https://images.isbndb.com/covers/28/08/9780312022808.jpg'), - ('0828869782', 'Pour Toi (French Edition Of "For You With Love."', 'https://images.isbndb.com/covers/97/82/9780828869782.jpg'), - ('055321392X', 'Of Human Bondage (Bantam Classics)', 'https://images.isbndb.com/covers/39/28/9780553213928.jpg'), - ('0881844632', 'High Rising', 'https://images.isbndb.com/covers/46/34/9780881844634.jpg'), - ('2710300257', 'Antigone', 'https://images.isbndb.com/covers/02/50/9782710300250.jpg'), - ('0375507914', 'Invisible Man: A Novel', 'https://images.isbndb.com/covers/79/15/9780375507915.jpg'), - ('0486220370', 'Indian Boyhood', 'https://images.isbndb.com/covers/03/76/9780486220376.jpg'), - ('0839828500', 'High, Wide And Lonesome: Growing Up On The Colorado Frontier', 'https://images.isbndb.com/covers/85/01/9780839828501.jpg'), - ('0394408853', 'A Very Young Dancer', 'https://images.isbndb.com/covers/88/59/9780394408859.jpg'), - ('0310219345', 'Following Christ', 'https://images.isbndb.com/covers/93/47/9780310219347.jpg'), - ('0394565614', 'Caribbean', 'https://images.isbndb.com/covers/56/13/9780394565613.jpg'), - ('0192834320', 'Barchester Towers (Oxford World''s Classics)', 'https://images.isbndb.com/covers/43/24/9780192834324.jpg'), - ('0684839571', 'The Girls Next Door', 'https://images.isbndb.com/covers/95/78/9780684839578.jpg'), - ('156476768X', 'A Woman''s Journey Through 1 Peter: 8 Lessons On Confidence Exclusively For Women', 'https://images.isbndb.com/covers/76/84/9781564767684.jpg'), - ('0440123925', 'Exit To Eden', 'https://images.isbndb.com/covers/39/27/9780440123927.jpg'), - ('0385264860', 'Raging Hormones', 'https://images.isbndb.com/covers/48/60/9780385264860.jpg'), - ('006109921X', 'Up Island', 'https://images.isbndb.com/covers/92/12/9780061099212.jpg'), - ('0870119206', 'Salad Anniversary', 'https://images.isbndb.com/covers/92/00/9780870119200.jpg'), - ('0394741722', 'American Fried V172', 'https://images.isbndb.com/covers/17/27/9780394741727.jpg'), - ('0140437908', 'Major Barbara (Penguin Classics)', 'https://images.isbndb.com/covers/79/04/9780140437904.jpg'), - ('0060975466', 'The Measure Of Our Success: A Letter To My Children And Yours', 'https://images.isbndb.com/covers/54/63/9780060975463.jpg'), - ('0671578588', 'Hokas Pokas!', 'https://images.isbndb.com/covers/85/89/9780671578589.jpg'), - ('0671653989', 'Falling Free', 'https://images.isbndb.com/covers/39/89/9780671653989.jpg'), - ('0886777119', 'Catfantastic 4', 'https://images.isbndb.com/covers/71/11/9780886777111.jpg'), - ('0886777410', 'Sword And Sorceress XIV', 'https://images.isbndb.com/covers/74/18/9780886777418.jpg'), - ('0671577743', 'Hoka! Hoka! Hoka!', 'https://images.isbndb.com/covers/77/42/9780671577742.jpg'), - ('067087485X', 'Out To Canaan (The Mitford Years, Book 4)', 'https://images.isbndb.com/covers/48/59/9780670874859.jpg'), - ('0553349155', '184 Businesses Anyone Can Start', 'https://images.isbndb.com/covers/91/53/9780553349153.jpg'), - ('0156227258', 'The Crafts Business Encyclopedia: Marketing, Management, And Money (A Harvest/HBJ Book)', 'https://images.isbndb.com/covers/72/54/9780156227254.jpg'), - ('1578511933', 'Digital Capital: Harnessing The Power Of Business Webs', 'https://images.isbndb.com/covers/19/38/9781578511938.jpg'), - ('0684815753', 'Follow The Wind', 'https://images.isbndb.com/covers/57/56/9780684815756.jpg'), - ('039952276X', 'Extraordinary Golf: The Art Of The Possible (Perigee)', 'https://images.isbndb.com/covers/27/65/9780399522765.jpg'), - ('0385475985', 'Leslie Nielson''s Stupid Little Golf Book', 'https://images.isbndb.com/covers/59/83/9780385475983.jpg'), - ('1561382477', 'Constellations: Glimpses Of Infinity In Fact, Myth, And Legend (Miniature Editions)', 'https://images.isbndb.com/covers/24/77/9781561382477.jpg'), - ('1567312950', 'Spiritual Notes To Myself: Essential Wisdom For The 21st Century', 'https://images.isbndb.com/covers/29/59/9781567312959.jpg'), - ('0382091175', 'In Search Of Ancient Crete (In Search Of Series)', 'https://images.isbndb.com/covers/11/79/9780382091179.jpg'), - ('0553560204', 'The Lesson Of Her Death', 'https://images.isbndb.com/covers/02/06/9780553560206.jpg'), - ('0345332784', 'Bt-Sweater Connection', 'https://images.isbndb.com/covers/27/83/9780345332783.jpg'), - ('0824910591', 'Valentine Ideals', 'https://images.isbndb.com/covers/05/94/9780824910594.jpg'), - ('0670838101', 'Christmas Tales', 'https://images.isbndb.com/covers/81/03/9780670838103.jpg'), - ('0689812744', 'Reptar To The Rescue! (Rugrats (Simon & Schuster Paperback))', 'https://images.isbndb.com/covers/27/43/9780689812743.jpg'), - ('0140542388', 'Trigwater Did It (Picture Puffins)', 'https://images.isbndb.com/covers/23/87/9780140542387.jpg'), - ('0394530195', 'Chief Joseph Of The Nez Perce', 'https://images.isbndb.com/covers/01/92/9780394530192.jpg'), - ('1556113307', 'Inadmissible Evidence', 'https://images.isbndb.com/covers/33/07/9781556113307.jpg'), - ('0156093103', 'AT THE CHELSEA.', 'https://images.isbndb.com/covers/31/01/9780156093101.jpg'), - ('0395486173', 'Extraordinary Lives: The Art And Craft Of American Biography (The Writer''s Craft)', 'https://images.isbndb.com/covers/61/77/9780395486177.jpg'), - ('0064407470', 'Dave At Night', 'https://images.isbndb.com/covers/74/72/9780064407472.jpg'), - ('0060952423', 'The Mother-Daughter Book Club: How Ten Busy Mothers And Daughters Came Together To Talk, Laugh And Learn Through Their Love Of Reading', 'https://images.isbndb.com/covers/24/26/9780060952426.jpg'), - ('0060957182', '100 Books For Girls To Grow On', 'https://images.isbndb.com/covers/71/86/9780060957186.jpg'), - ('0870540947', 'Wind From A Burning Woman', 'https://images.isbndb.com/covers/09/43/9780870540943.jpg'), - ('0743452631', 'Strength Of Stones', 'https://images.isbndb.com/covers/26/32/9780743452632.jpg'), - ('0380812002', 'A Graveyard For Lunatics: Another Tale Of Two Cities', 'https://images.isbndb.com/covers/20/04/9780380812004.jpg'), - ('0553293877', 'Ghost From The Grand Banks, The', 'https://images.isbndb.com/covers/38/76/9780553293876.jpg'), - ('0553573330', 'Richter 10', 'https://images.isbndb.com/covers/33/36/9780553573336.jpg'), - ('0670030031', 'Lake Wobegon Summer 1956', 'https://images.isbndb.com/covers/00/33/9780670030033.jpg'), - ('002963900X', 'Dutch For Travellers', 'https://images.isbndb.com/covers/90/09/9780029639009.jpg'), - ('0679430679', 'Diary Of A Lost Boy: A Novel', 'https://images.isbndb.com/covers/06/74/9780679430674.jpg'), - ('0525943625', 'The Rules For Cats: 4,000 Year-Old Secrets For Controlling Your Owner: An Unauthorized Parody', 'https://images.isbndb.com/covers/36/24/9780525943624.jpg'), - ('0060985011', 'Black Feathers: Erotic Dreams', 'https://images.isbndb.com/covers/50/11/9780060985011.jpg'), - ('0399512330', 'Break The Dealer: Winning Strategies For Today''s Blackjack', 'https://images.isbndb.com/covers/23/39/9780399512339.jpg'), - ('1555253903', 'Hidden Agendas', 'https://images.isbndb.com/covers/39/05/9781555253905.jpg'), - ('0440415942', 'The Swiss Family Robinson', 'https://images.isbndb.com/covers/59/47/9780440415947.jpg'), - ('0671892258', 'Food', 'https://images.isbndb.com/covers/22/58/9780671892258.jpg'), - ('0316693715', 'Jack & Jill (Alex Cross)', 'https://images.isbndb.com/covers/37/14/9780316693714.jpg'), - ('0440203244', 'Daughters', 'https://images.isbndb.com/covers/32/47/9780440203247.jpg'), - ('0440505984', 'Living With Loss (Days Of Healing, Days Of Change)', 'https://images.isbndb.com/covers/59/83/9780440505983.jpg'), - ('0688118852', 'Rainbow Rising From A Stream: The Natural Way To Well-being', 'https://images.isbndb.com/covers/88/53/9780688118853.jpg'), - ('0395470439', 'Smart Exercise: Burning Fat, Getting Fit', 'https://images.isbndb.com/covers/04/35/9780395470435.jpg'), - ('0374184232', 'The Laws Of Our Fathers', 'https://images.isbndb.com/covers/42/30/9780374184230.jpg'), - ('0671541390', 'The Book Of Massage: The Complete Step-by-Step Guide To Eastern And Western Techniques', 'https://images.isbndb.com/covers/13/92/9780671541392.jpg'), - ('1852307927', 'The Complete Book Of Tai Chi Chuan: A Comprehensive Guide To The Principles And Practice', 'https://images.isbndb.com/covers/79/29/9781852307929.jpg'), - ('0451406273', 'Gal: A True Life', 'https://images.isbndb.com/covers/62/79/9780451406279.jpg'), - ('0060192240', 'The Collected Short Stories: Jeffrey Archer''s Previously Published Stories, Compiled For The First Time In One Definitive Volume', 'https://images.isbndb.com/covers/22/42/9780060192242.jpg'), - ('0312146310', 'James H Fav Dog Stories', 'https://images.isbndb.com/covers/63/13/9780312146313.jpg'), - ('0393087972', 'The Finest Kind: The Fishermen Of Gloucester', 'https://images.isbndb.com/covers/79/70/9780393087970.jpg'), - ('0679456821', 'American Tragedy: The Uncensored Story Of The Simpson Defense', 'https://images.isbndb.com/covers/68/27/9780679456827.jpg'), - ('0679454799', 'Into The West: The Story Of Its People', 'https://images.isbndb.com/covers/47/93/9780679454793.jpg'), - ('1575661381', 'Vegas Heat', 'https://images.isbndb.com/covers/13/84/9781575661384.jpg'), - ('0380802112', 'Zoey Fools Around (Making Out, Book 1)', 'https://images.isbndb.com/covers/21/11/9780380802111.jpg'), - ('055308576X', 'Dying For Chocolate', 'https://images.isbndb.com/covers/57/61/9780553085761.jpg'), - ('0679456317', 'Slow Motion: A True Story', 'https://images.isbndb.com/covers/63/15/9780679456315.jpg'), - ('0553095870', 'Last Suppers, The', 'https://images.isbndb.com/covers/58/76/9780553095876.jpg'), - ('0679738142', 'Providence', 'https://images.isbndb.com/covers/81/45/9780679738145.jpg'), - ('0876857446', 'Emerald Ice: Selected Poems 1962-1987', 'https://images.isbndb.com/covers/74/41/9780876857441.jpg'), - ('037601556X', 'Sunset Ideas For Storage', 'https://images.isbndb.com/covers/55/63/9780376015563.jpg'), - ('0376011998', 'Garage, Attic & Basement Storage', 'https://images.isbndb.com/covers/19/92/9780376011992.jpg'), - ('0553581929', 'Special Circumstances (Mike Daley, Book 1)', 'https://images.isbndb.com/covers/19/28/9780553581928.jpg'), - ('0451200284', 'Scavenger', 'https://images.isbndb.com/covers/02/80/9780451200280.jpg'), - ('0425183025', 'A Murder Of Honor', 'https://images.isbndb.com/covers/30/21/9780425183021.jpg'), - ('1551668599', 'Trust Me Once', 'https://images.isbndb.com/covers/85/98/9781551668598.jpg'), - ('0671036564', 'Run For Your Life', 'https://images.isbndb.com/covers/65/60/9780671036560.jpg'), - ('0449224260', 'A Certain Smile', 'https://images.isbndb.com/covers/42/67/9780449224267.jpg'), - ('0449149900', 'Mr. X', 'https://images.isbndb.com/covers/99/04/9780449149904.jpg'), - ('0395765285', 'The Latino Reader: An American Literary Tradition From 1542 To The Present', 'https://images.isbndb.com/covers/52/89/9780395765289.jpg'), - ('0380975343', 'All I Need Is You', 'https://images.isbndb.com/covers/53/41/9780380975341.jpg'), - ('0916180018', 'Labor''s Untold Story: The Adventure Story Of The Battles, Betrayals And Victories Of American Working Men And Women', 'https://images.isbndb.com/covers/00/10/9780916180010.jpg'), - ('0679768149', 'Santa Evita', 'https://images.isbndb.com/covers/81/42/9780679768142.jpg'), - ('0316812404', 'Readings In Child Behavior And Development', 'https://images.isbndb.com/covers/24/05/9780316812405.jpg'), - ('0684834723', 'The Letter (The Christmas Box Trilogy)', 'https://images.isbndb.com/covers/47/26/9780684834726.jpg'), - ('1556155689', 'The Way Computers And M. S.-DOS Work: The Ultimate All-Color Beginners'' Guide (WYSIWYG)', 'https://images.isbndb.com/covers/56/80/9781556155680.jpg'), - ('0553581937', 'Incriminating Evidence (Mike Daley, Book 2)', 'https://images.isbndb.com/covers/19/35/9780553581935.jpg'), - ('0451202317', 'Beyond Eden (Contemporary Romantic Thriller)', 'https://images.isbndb.com/covers/23/14/9780451202314.jpg'), - ('0465019803', 'Spoiled (HEALTH, FOOD)', 'https://images.isbndb.com/covers/98/09/9780465019809.jpg'), - ('0671661353', 'Home Movie', 'https://images.isbndb.com/covers/13/59/9780671661359.jpg'), - ('0534178081', 'Environmental Science: Sustaining The Earth (Wadsworth Biology Series)', 'https://images.isbndb.com/covers/80/86/9780534178086.jpg'), - ('1551669153', 'Split Second (Maggie O''Dell Novels)', 'https://images.isbndb.com/covers/91/51/9781551669151.jpg'), - ('0140250948', 'In The Lake Of The Woods', 'https://images.isbndb.com/covers/09/47/9780140250947.jpg'), - ('0393960129', 'Wide Sargasso Sea (Norton Critical Editions)', 'https://images.isbndb.com/covers/01/29/9780393960129.jpg'), - ('0312155476', 'House Arrest', 'https://images.isbndb.com/covers/54/76/9780312155476.jpg'), - ('0393950344', 'Tristram Shandy (Norton Critical Editions)', 'https://images.isbndb.com/covers/03/42/9780393950342.jpg'), - ('039309412X', 'Moll Flanders (Norton Critical Editions Series)', 'https://images.isbndb.com/covers/41/21/9780393094121.jpg'), - ('0821766570', 'The Guest List', 'https://images.isbndb.com/covers/65/76/9780821766576.jpg'), - ('0451180755', 'The Burglar Who Liked To Quote Kipling (Bernie Rhodenbarr Mystery)', 'https://images.isbndb.com/covers/07/59/9780451180759.jpg'), - ('0312974507', 'China Sea (Dan Lenson Novels)', 'https://images.isbndb.com/covers/45/03/9780312974503.jpg'), - ('0316115924', 'Why I Write: Thoughts On The Craft Of Fiction (A Back Bay Book)', 'https://images.isbndb.com/covers/59/26/9780316115926.jpg'), - ('0449202917', 'Portnoy''s Complaint', 'https://images.isbndb.com/covers/29/13/9780449202913.jpg'), - ('0393959031', 'Tess Of The D''Urbervilles (Norton Critical Editions)', 'https://images.isbndb.com/covers/90/31/9780393959031.jpg'), - ('0821223496', 'The Art Of Fine Cigars', 'https://images.isbndb.com/covers/34/99/9780821223499.jpg'), - ('0312979398', 'The Eye Of The Tiger', 'https://images.isbndb.com/covers/93/93/9780312979393.jpg'), - ('0812590252', 'A Midwinter''s Tale (O''Malley Novels)', 'https://images.isbndb.com/covers/02/58/9780812590258.jpg'), - ('0786889608', 'Middle Of Nowhere', 'https://images.isbndb.com/covers/96/00/9780786889600.jpg'), - ('0471985813', 'The Intelligent Guide To Stock Market Investment', 'https://images.isbndb.com/covers/58/15/9780471985815.jpg'), - ('0822953560', 'The Spencers Of Amberson Ave: A Turn-of-the-Century Memoir', 'https://images.isbndb.com/covers/35/62/9780822953562.jpg'), - ('0671553038', 'Life Support', 'https://images.isbndb.com/covers/30/36/9780671553036.jpg'), - ('0060175184', 'The Fourth Estate', 'https://images.isbndb.com/covers/51/84/9780060175184.jpg'), - ('0786889756', 'Red Light', 'https://images.isbndb.com/covers/97/54/9780786889754.jpg'), - ('0446605050', 'The Intruder', 'https://images.isbndb.com/covers/50/52/9780446605052.jpg'), - ('0345428285', 'The Insider', 'https://images.isbndb.com/covers/82/88/9780345428288.jpg'), - ('0140155058', 'Dubliners (Viking Critical Library)', 'https://images.isbndb.com/covers/50/51/9780140155051.jpg'), - ('0553571834', 'Haunting Rachel', 'https://images.isbndb.com/covers/18/37/9780553571837.jpg'), - ('0440235219', 'Swept Away', 'https://images.isbndb.com/covers/52/17/9780440235217.jpg'), - ('042517140X', 'Loyalty In Death', 'https://images.isbndb.com/covers/14/00/9780425171400.jpg'), - ('0425184242', 'Uncommon Justice', 'https://images.isbndb.com/covers/42/40/9780425184240.jpg'), - ('1551668246', 'A Perfect Evil (Maggie O''Dell Novels)', 'https://images.isbndb.com/covers/82/46/9781551668246.jpg'), - ('0671523090', 'Flash', 'https://images.isbndb.com/covers/30/91/9780671523091.jpg'), - ('0425160394', 'Vengeance In Death', 'https://images.isbndb.com/covers/03/98/9780425160398.jpg'), - ('0812928342', 'Cyber Rights : Defending Free Speech In The Digital Age', 'https://images.isbndb.com/covers/83/41/9780812928341.jpg'), - ('0385471289', 'Sister To Sister: Women Write About The Unbreakable Bond', 'https://images.isbndb.com/covers/12/82/9780385471282.jpg'), - ('0451205413', 'L.A. Justice', 'https://images.isbndb.com/covers/54/14/9780451205414.jpg'), - ('0440235812', 'A Criminal Appeal', 'https://images.isbndb.com/covers/58/11/9780440235811.jpg'), - ('0515126519', 'Blood Sport', 'https://images.isbndb.com/covers/65/18/9780515126518.jpg'), - ('0380818655', 'Another Summer', 'https://images.isbndb.com/covers/86/55/9780380818655.jpg'), - ('0743430999', 'The Looking Glass', 'https://images.isbndb.com/covers/09/99/9780743430999.jpg'), - ('0671019554', 'Cold Hit (Alexandra Cooper Mysteries)', 'https://images.isbndb.com/covers/95/56/9780671019556.jpg'), - ('0312112874', 'If You Ask Me', 'https://images.isbndb.com/covers/28/75/9780312112875.jpg'), - ('0679760660', 'Down In The Zero', 'https://images.isbndb.com/covers/06/65/9780679760665.jpg'), - ('0140094601', 'Eleanor Roosevelt, Vol. 1: 1884-1933', 'https://images.isbndb.com/covers/46/02/9780140094602.jpg'), - ('0385494246', 'Amsterdam: A Novel', 'https://images.isbndb.com/covers/42/43/9780385494243.jpg'), - ('0451519485', 'The Signet Classic Book Of British Short Stories (Signet Classics)', 'https://images.isbndb.com/covers/94/81/9780451519481.jpg'), - ('0812576403', 'The Light Of Other Days', 'https://images.isbndb.com/covers/64/05/9780812576405.jpg'), - ('0375706690', 'Babel-17/Empire Star', 'https://images.isbndb.com/covers/66/91/9780375706691.jpg'), - ('0452011876', 'Atlas Shrugged', 'https://images.isbndb.com/covers/18/78/9780452011878.jpg'), - ('0553109588', 'More Letters From A Nut', 'https://images.isbndb.com/covers/95/80/9780553109580.jpg'), - ('0964411911', 'Dr. Koop''s Self-Care Advisor: The Essential Home Health Guide For You And Your Family', 'https://images.isbndb.com/covers/19/13/9780964411913.jpg'), - ('087243169X', 'Henri Nouwen (The Modern Spirituality Series)', 'https://images.isbndb.com/covers/16/90/9780872431690.jpg'), - ('0785264280', 'The Traveler''s Gift: Seven Decisions That Determine Personal Success', 'https://images.isbndb.com/covers/42/86/9780785264286.jpg'), - ('1881471322', 'Mouths Of Shadows: Hamlet''s Ghosts Perform Hamlet & Sunspots', 'https://images.isbndb.com/covers/13/25/9781881471325.jpg'), - ('0573690219', 'Social Security', 'https://images.isbndb.com/covers/02/11/9780573690211.jpg'), - ('0374102058', 'Afterburn: A Novel', 'https://images.isbndb.com/covers/20/50/9780374102050.jpg'), - ('0060950773', 'Shopping For Health: A Nutritionist''s Aisle-By-Aisle Guide To Smart, Low-Fat Choices At The Supermarket', 'https://images.isbndb.com/covers/07/74/9780060950774.jpg'), - ('0819143847', 'Dilemma And Destiny: The Democratic Party In America', 'https://images.isbndb.com/covers/38/46/9780819143846.jpg'), - ('1885492200', 'The New York Book Of Coffee And Cake', 'https://images.isbndb.com/covers/22/03/9781885492203.jpg'), - ('067152836X', 'Nixon, Vol. 1: The Education Of A Politician 1913-1962', 'https://images.isbndb.com/covers/83/62/9780671528362.jpg'), - ('0679720219', 'The Plague', 'https://images.isbndb.com/covers/02/18/9780679720218.jpg'), - ('0446670197', 'Working Men', 'https://images.isbndb.com/covers/01/97/9780446670197.jpg'), - ('0786885882', 'Birthday Girl: A Screenplay', 'https://images.isbndb.com/covers/58/86/9780786885886.jpg'), - ('0747259526', 'Squire Throwleigh''s Heir (Knights Templar)', 'https://images.isbndb.com/covers/95/27/9780747259527.jpg'), - ('0886779774', 'Sea Of Silver Light (Otherland #4)', 'https://images.isbndb.com/covers/97/71/9780886779771.jpg'), - ('0804115729', 'Death Is Now My Neighbor (Inspector Morse)', 'https://images.isbndb.com/covers/57/28/9780804115728.jpg'), - ('0520209109', 'Loose Change: Three Women Of The Sixties', 'https://images.isbndb.com/covers/91/07/9780520209107.jpg'), - ('0812568680', 'Shooting Chant: A Ella Clah Novel (Ella Clah Novels)', 'https://images.isbndb.com/covers/86/84/9780812568684.jpg'), - ('0425164357', 'Death At Bishop''s Keep (Robin Paige Victorian Mysteries, No. 1)', 'https://images.isbndb.com/covers/43/58/9780425164358.jpg'), - ('0804114897', 'The Secret Of Annexe 3 (Inspector Morse Mysteries)', 'https://images.isbndb.com/covers/48/99/9780804114899.jpg'), - ('0449221113', 'Smokescreen', 'https://images.isbndb.com/covers/11/12/9780449221112.jpg'), - ('0380774992', 'Death At Gallows Green', 'https://images.isbndb.com/covers/49/99/9780380774999.jpg'), - ('1551664305', 'High Stakes', 'https://images.isbndb.com/covers/43/09/9781551664309.jpg'), - ('0345397819', 'Lasher (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/78/12/9780345397812.jpg'), - ('0871132095', 'The Two Faces Of January (Highsmith, Patricia)', 'https://images.isbndb.com/covers/20/93/9780871132093.jpg'), - ('0451406893', 'Rebel (Florida Civil War)', 'https://images.isbndb.com/covers/68/97/9780451406897.jpg'), - ('0553576232', 'Shadows And Lace', 'https://images.isbndb.com/covers/62/38/9780553576238.jpg'), - ('0425181979', 'My Heart Stood Still', 'https://images.isbndb.com/covers/19/73/9780425181973.jpg'), - ('0553294083', 'Whisper Of Roses', 'https://images.isbndb.com/covers/40/88/9780553294088.jpg'), - ('0312966210', 'The Rival', 'https://images.isbndb.com/covers/62/18/9780312966218.jpg'), - ('0821742841', 'Lady Of The Forest', 'https://images.isbndb.com/covers/28/46/9780821742846.jpg'), - ('0312152841', 'The Arthritis Cure', 'https://images.isbndb.com/covers/28/40/9780312152840.jpg'), - ('0671624830', 'Heartburn', 'https://images.isbndb.com/covers/48/35/9780671624835.jpg'), - ('1564265536', 'Vegetarian Gourmet Cookery (101 Productions Series)', 'https://images.isbndb.com/covers/55/31/9781564265531.jpg'), - ('0380781484', 'Captive', 'https://images.isbndb.com/covers/14/85/9780380781485.jpg'), - ('0812544161', 'The Saxon Shore (The Camulod Chronicles, Book 4)', 'https://images.isbndb.com/covers/41/69/9780812544169.jpg'), - ('1559724307', 'The Rise And Rise Of David Geffen', 'https://images.isbndb.com/covers/43/02/9781559724302.jpg'), - ('0140062785', 'Waldo Emerson', 'https://images.isbndb.com/covers/27/86/9780140062786.jpg'), - ('0553573705', 'Almost Innocent', 'https://images.isbndb.com/covers/37/01/9780553573701.jpg'), - ('006107361X', 'Jerry Springer''s Wildest Shows Ever!: The Official Jerry Springer Show Companion', 'https://images.isbndb.com/covers/36/18/9780061073618.jpg'), - ('0671413678', 'The Commanders', 'https://images.isbndb.com/covers/36/75/9780671413675.jpg'), - ('006096510X', 'The Power Of Judyism', 'https://images.isbndb.com/covers/51/05/9780060965105.jpg'), - ('0385248253', 'Lose Weight Through Great Sex With Celebrities: The Elvis Way', 'https://images.isbndb.com/covers/82/59/9780385248259.jpg'), - ('0394754271', 'The Stars At Noon', 'https://images.isbndb.com/covers/42/77/9780394754277.jpg'), - ('1885492030', 'The New York Cat Owner''s Guide: Everything You And Your Cat Need To Know About Life In The City', 'https://images.isbndb.com/covers/20/36/9781885492036.jpg'), - ('0917657462', 'The Last Nazi: The Life And Times Of Dr. Joseph Mengele', 'https://images.isbndb.com/covers/74/67/9780917657467.jpg'), - ('0385503636', 'At The Altar Of Speed: The Fast Life And Tragic Death Of Dale Earnhardt', 'https://images.isbndb.com/covers/36/31/9780385503631.jpg'), - ('1558211853', 'Nop''s Trials', 'https://images.isbndb.com/covers/18/58/9781558211858.jpg'), - ('0671755056', 'Shampoo Planet', 'https://images.isbndb.com/covers/50/58/9780671755058.jpg'), - ('0812929136', 'Between Hope And History', 'https://images.isbndb.com/covers/91/33/9780812929133.jpg'), - ('0679735186', 'Independence Day: Bascombe Trilogy (2)', 'https://images.isbndb.com/covers/51/82/9780679735182.jpg'), - ('0449906566', 'Wonders Of The West', 'https://images.isbndb.com/covers/65/69/9780449906569.jpg'), - ('0060170808', 'The Bingo Palace', 'https://images.isbndb.com/covers/08/06/9780060170806.jpg'), - ('055324518X', 'Love Is Letting Go Of Fear', 'https://images.isbndb.com/covers/51/89/9780553245189.jpg'), - ('0452268737', 'Ready To Catch Him Should He Fall: A Novel (Plume)', 'https://images.isbndb.com/covers/87/39/9780452268739.jpg'), - ('0896223337', 'Healing Wounded Emotions: Overcoming Life''s Hurts (Inspirational Reading For Every Catholic)', 'https://images.isbndb.com/covers/33/32/9780896223332.jpg'), - ('0451185145', 'Murder Can Stunt Your Growth (Desiree Shapiro Mystery #3)', 'https://images.isbndb.com/covers/51/43/9780451185143.jpg'), - ('0385494335', 'The Innocent: A Novel', 'https://images.isbndb.com/covers/43/35/9780385494335.jpg'), - ('0070371628', 'Miriam In Her Forties', 'https://images.isbndb.com/covers/16/20/9780070371620.jpg'), - ('0394559584', 'Remember', 'https://images.isbndb.com/covers/95/82/9780394559582.jpg'), - ('0385245793', 'To Be The Best', 'https://images.isbndb.com/covers/57/91/9780385245791.jpg'), - ('0380973170', 'Amber Beach', 'https://images.isbndb.com/covers/31/70/9780380973170.jpg'), - ('0192816861', 'The Shadow-Line: A Confession: Worthy Of My Undying Regard (World''s Classics)', 'https://images.isbndb.com/covers/68/63/9780192816863.jpg'), - ('0440226406', 'Legacy Of Silence', 'https://images.isbndb.com/covers/64/06/9780440226406.jpg'), - ('0060924675', 'How To Live Between Office Visits: A Guide To Life, Love And Health', 'https://images.isbndb.com/covers/46/76/9780060924676.jpg'), - ('0892966882', 'A Walk Through The Fire', 'https://images.isbndb.com/covers/68/82/9780892966882.jpg'), - ('0679721746', 'The Commitments', 'https://images.isbndb.com/covers/17/41/9780679721741.jpg'), - ('0684815095', 'The Last Shot: City Streets, Basketball Dreams', 'https://images.isbndb.com/covers/50/91/9780684815091.jpg'), - ('0156153955', 'Captain''s Death Bed & Other Essays: And Other Essays', 'https://images.isbndb.com/covers/39/59/9780156153959.jpg'), - ('0451180224', 'Criminal Seduction', 'https://images.isbndb.com/covers/02/23/9780451180223.jpg'), - ('0553572512', 'Playing For The Ashes', 'https://images.isbndb.com/covers/25/13/9780553572513.jpg'), - ('0449912639', 'Girls: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/26/38/9780449912638.jpg'), - ('0804107513', 'Blossom', 'https://images.isbndb.com/covers/75/18/9780804107518.jpg'), - ('0837820464', 'Becoming: Touchstones For A Growing Person', 'https://images.isbndb.com/covers/04/60/9780837820460.jpg'), - ('0486415848', 'Poems Of Solace And Remembrance (Dover Thrift Editions)', 'https://images.isbndb.com/covers/58/40/9780486415840.jpg'), - ('1575252929', 'Scenes I''Ve Seen...: A Casting Director''s Original Scenes And Interpretive Notes (Monologue And Scene Series)', 'https://images.isbndb.com/covers/29/26/9781575252926.jpg'), - ('1561893978', 'Cat Characters - A To Z', 'https://images.isbndb.com/covers/39/73/9781561893973.jpg'), - ('1557043035', 'Fly Away Home: The Novelization And Story Behind The Film', 'https://images.isbndb.com/covers/30/30/9781557043030.jpg'), - ('1562823485', 'Cinderella (Fay''s Fairy Tales)', 'https://images.isbndb.com/covers/34/81/9781562823481.jpg'), - ('0684854759', 'Floating In My Mother''s Palm', 'https://images.isbndb.com/covers/47/55/9780684854755.jpg'), - ('0684824892', 'Wait Till Next Year: A Memoir', 'https://images.isbndb.com/covers/48/95/9780684824895.jpg'), - ('0664501168', 'Presbyterians: A Spiritual Journey', 'https://images.isbndb.com/covers/11/67/9780664501167.jpg'), - ('0811823601', 'Shaving Lessons: A Memoir Of Father And Son', 'https://images.isbndb.com/covers/36/09/9780811823609.jpg'), - ('0449901556', 'Toddler Taming: A Survival Guide For Parents', 'https://images.isbndb.com/covers/15/57/9780449901557.jpg'), - ('0060933151', 'Everville', 'https://images.isbndb.com/covers/31/59/9780060933159.jpg'), - ('0679766669', 'The Final Judgment: A Novel (Random House Large Print)', 'https://images.isbndb.com/covers/66/67/9780679766667.jpg'), - ('0684847957', 'WAIT TILL NEXT YEAR: A MEMOIR', 'https://images.isbndb.com/covers/79/55/9780684847955.jpg'), - ('0345386817', 'Days Of Grace', 'https://images.isbndb.com/covers/68/16/9780345386816.jpg'), - ('0590453874', 'The Dead Girlfriend (Point Horror Series)', 'https://images.isbndb.com/covers/38/75/9780590453875.jpg'), - ('0875346197', 'Valyra And The Dragons And Other Fanciful Adventure Stories', 'https://images.isbndb.com/covers/61/99/9780875346199.jpg'), - ('0939680491', 'Midnight Song: Quest For The Vanished Ones', 'https://images.isbndb.com/covers/04/98/9780939680498.jpg'), - ('0812550978', 'Echoes Of Issel', 'https://images.isbndb.com/covers/09/79/9780812550979.jpg'), - ('0345395107', 'Perseus Spur (Rampart Worlds Series Volume 1)', 'https://images.isbndb.com/covers/51/08/9780345395108.jpg'), - ('0684169401', 'The Nick Adams Stories', 'https://images.isbndb.com/covers/94/08/9780684169408.jpg'), - ('0440219248', 'Whatever Happened To Janie?', 'https://images.isbndb.com/covers/92/48/9780440219248.jpg'), - ('0451524705', 'Idylls Of The King And A Selection Of Poems (Signet Classics)', 'https://images.isbndb.com/covers/47/06/9780451524706.jpg'), - ('091651532X', 'Poor Dear Charlotte', 'https://images.isbndb.com/covers/53/24/9780916515324.jpg'), - ('0609602489', 'Beyond Obedience: Training With Awareness For You And Your Dog', 'https://images.isbndb.com/covers/24/85/9780609602485.jpg'), - ('0451402537', 'Mischief In Maggody (Arly Hanks Mystery)', 'https://images.isbndb.com/covers/25/30/9780451402530.jpg'), - ('0345370570', 'Deadly Safari', 'https://images.isbndb.com/covers/05/70/9780345370570.jpg'), - ('0671770438', 'DEVIL''S HEAVEN (Neil Hockaday Mystery)', 'https://images.isbndb.com/covers/04/33/9780671770433.jpg'), - ('0395442567', 'Best American Short Stories, 1988', 'https://images.isbndb.com/covers/25/62/9780395442562.jpg'), - ('0446313033', 'Shroud For A Nightingale (Adam Dalgliesh Mystery Series #4)', 'https://images.isbndb.com/covers/30/32/9780446313032.jpg'), - ('0553291203', 'The Wench Is Dead', 'https://images.isbndb.com/covers/12/09/9780553291209.jpg'), - ('0786707550', 'The Fear Sign (Allingham, Margery)', 'https://images.isbndb.com/covers/75/53/9780786707553.jpg'), - ('0380813734', 'A Dance At The Slaughterhouse: A Matthew Scudder Crime Novel', 'https://images.isbndb.com/covers/37/35/9780380813735.jpg'), - ('0425148211', 'Murder On The Cliff (Charlotte Graham Mystery Series)', 'https://images.isbndb.com/covers/82/11/9780425148211.jpg'), - ('0345346866', 'The James Joyce Murder (A Kate Fansler Mystery)', 'https://images.isbndb.com/covers/68/65/9780345346865.jpg'), - ('0345352548', 'Sweet Death, Kind Death (A Kate Fansler Novel)', 'https://images.isbndb.com/covers/25/45/9780345352545.jpg'), - ('0671455265', 'A Stitch In Time', 'https://images.isbndb.com/covers/52/62/9780671455262.jpg'), - ('067168356X', 'Something In The Air', 'https://images.isbndb.com/covers/35/66/9780671683566.jpg'), - ('0425169669', 'Steak In Murder (Hemlock Falls Mysteries)', 'https://images.isbndb.com/covers/96/67/9780425169667.jpg'), - ('0425146383', 'A Dash Of Death', 'https://images.isbndb.com/covers/63/85/9780425146385.jpg'), - ('0425163970', 'A Touch Of The Grape (Hemlock Falls Mysteries)', 'https://images.isbndb.com/covers/39/79/9780425163979.jpg'), - ('0425153363', 'Murder Well-Done (Hemlock Falls Mysteries)', 'https://images.isbndb.com/covers/33/69/9780425153369.jpg'), - ('0345371267', 'A Radical Departure', 'https://images.isbndb.com/covers/12/63/9780345371263.jpg'), - ('0804102813', 'Cable Car Murder', 'https://images.isbndb.com/covers/28/10/9780804102810.jpg'), - ('038077030X', 'Miss Zukas And The Library Murders (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/03/04/9780380770304.jpg'), - ('0449007111', 'In The Last Analysis (Kate Fansler Novels)', 'https://images.isbndb.com/covers/71/12/9780449007112.jpg'), - ('0345354893', 'The Question Of Max (Kate Fansler Novels)', 'https://images.isbndb.com/covers/48/91/9780345354891.jpg'), - ('0449007065', 'The Theban Mysteries (Kate Fansler Novels)', 'https://images.isbndb.com/covers/70/68/9780449007068.jpg'), - ('0553286161', 'The Last Coincidence (Rex Stout''s Nero Wolfe)', 'https://images.isbndb.com/covers/61/68/9780553286168.jpg'), - ('0312141890', 'The It-Doesn''t-Matter Suit', 'https://images.isbndb.com/covers/18/99/9780312141899.jpg'), - ('0553272373', 'The Dead Of Jericho', 'https://images.isbndb.com/covers/23/76/9780553272376.jpg'), - ('0671678949', 'The Crosskiller', 'https://images.isbndb.com/covers/89/44/9780671678944.jpg'), - ('038075908X', 'Werewolf Come Home (Fifth Grade Monsters)', 'https://images.isbndb.com/covers/90/88/9780380759088.jpg'), - ('0671870890', 'There''s A Snake In The Toilet: There''s A Snake In The Toilet', 'https://images.isbndb.com/covers/08/98/9780671870898.jpg'), - ('0140340203', 'The Witches', 'https://images.isbndb.com/covers/02/04/9780140340204.jpg'), - ('0553481800', 'The Dollhouse', 'https://images.isbndb.com/covers/18/08/9780553481808.jpg'), - ('0964102404', 'Pregnant Fathers: Entering Parenthood Together', 'https://images.isbndb.com/covers/24/08/9780964102408.jpg'), - ('0385292090', 'Infants And Mothers: Differences In Development', 'https://images.isbndb.com/covers/20/92/9780385292092.jpg'), - ('1558320547', 'You And Your Newborn Baby: A Guide To The First Months After Birth (Non)', 'https://images.isbndb.com/covers/05/43/9781558320543.jpg'), - ('0394553756', 'The First Six Months', 'https://images.isbndb.com/covers/37/57/9780394553757.jpg'), - ('0890875197', 'You Are Your Child''s First Teacher', 'https://images.isbndb.com/covers/51/93/9780890875193.jpg'), - ('0440506344', 'Great Beginnings', 'https://images.isbndb.com/covers/63/48/9780440506348.jpg'), - ('0689823908', 'Camp Out (Rug Rats Ready-to-Read, Level 1)', 'https://images.isbndb.com/covers/39/09/9780689823909.jpg'), - ('0671747827', 'Jeremy Thatcher, Dragon Hatcher', 'https://images.isbndb.com/covers/78/24/9780671747824.jpg'), - ('0553542311', 'April Ghouls'' Day', 'https://images.isbndb.com/covers/23/18/9780553542318.jpg'), - ('0440418283', 'Dr. Dolittle 2 Novelization', 'https://images.isbndb.com/covers/82/83/9780440418283.jpg'), - ('0684803860', 'The Daughter Of Time', 'https://images.isbndb.com/covers/38/69/9780684803869.jpg'), - ('0671826786', 'Glendower Legacy', 'https://images.isbndb.com/covers/67/89/9780671826789.jpg'), - ('0671464809', 'Murder Makes The Wheels Go Round', 'https://images.isbndb.com/covers/48/06/9780671464806.jpg'), - ('0671455303', 'Banking On Death', 'https://images.isbndb.com/covers/53/09/9780671455309.jpg'), - ('0671455273', 'Sweet And Low', 'https://images.isbndb.com/covers/52/79/9780671455279.jpg'), - ('0671464140', 'Accounting For Murder', 'https://images.isbndb.com/covers/41/41/9780671464141.jpg'), - ('0671456393', 'Pick Up Sticks', 'https://images.isbndb.com/covers/63/99/9780671456399.jpg'), - ('067145529X', 'Murder To Go', 'https://images.isbndb.com/covers/52/93/9780671455293.jpg'), - ('0671464817', 'By Hook Or By Crook', 'https://images.isbndb.com/covers/48/13/9780671464813.jpg'), - ('0451156234', 'The Midwife (Signet)', 'https://images.isbndb.com/covers/62/35/9780451156235.jpg'), - ('0140108718', 'Being Invisible (Contemporary American Fiction)', 'https://images.isbndb.com/covers/87/12/9780140108712.jpg'), - ('034537682X', 'Everything You Have Is Mine', 'https://images.isbndb.com/covers/68/24/9780345376824.jpg'), - ('0345382692', 'I''ll Be Leaving You Always', 'https://images.isbndb.com/covers/26/96/9780345382696.jpg'), - ('0440414555', 'Moving Mama To Town', 'https://images.isbndb.com/covers/45/51/9780440414551.jpg'), - ('0783890036', 'Henrietta Who (Thorndike British Favorites)', 'https://images.isbndb.com/covers/00/36/9780783890036.jpg'), - ('1572701625', 'The Stately Home Murder (An Inspector C. D. Sloan Mystery)', 'https://images.isbndb.com/covers/16/25/9781572701625.jpg'), - ('0440160162', 'Murder In The Title', 'https://images.isbndb.com/covers/01/68/9780440160168.jpg'), - ('0002215810', 'Lord Of The Far Island', 'https://images.isbndb.com/covers/58/17/9780002215817.jpg'), - ('0440207452', 'The Sirens Sang Of Murder', 'https://images.isbndb.com/covers/74/50/9780440207450.jpg'), - ('0425084736', 'The Loves Of Harry Dancer', 'https://images.isbndb.com/covers/47/31/9780425084731.jpg'), - ('042510429X', 'The Third Deadly Sin (The Deadly Sins Novels)', 'https://images.isbndb.com/covers/42/93/9780425104293.jpg'), - ('0425079600', 'The Passion Of Molly T.', 'https://images.isbndb.com/covers/96/07/9780425079607.jpg'), - ('0425094731', 'The Dream Lover', 'https://images.isbndb.com/covers/47/30/9780425094730.jpg'), - ('0425104303', 'The Sixth Commandment', 'https://images.isbndb.com/covers/43/09/9780425104309.jpg'), - ('0380751453', 'Tales Of The Wolf', 'https://images.isbndb.com/covers/14/57/9780380751457.jpg'), - ('0425100057', 'The Eighth Commandment', 'https://images.isbndb.com/covers/00/59/9780425100059.jpg'), - ('0679861807', 'ONE SLIMY SUMMER (Shadow Zone)', 'https://images.isbndb.com/covers/18/05/9780679861805.jpg'), - ('0440402263', 'The Pee Wee Jubilee (Pee Wee Scouts)', 'https://images.isbndb.com/covers/22/68/9780440402268.jpg'), - ('0440400104', 'Pee Wee Scouts: Cookies And Crutches (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/01/03/9780440400103.jpg'), - ('0440400635', 'Lucky Dog Days (Pee Wee Scouts)', 'https://images.isbndb.com/covers/06/39/9780440400639.jpg'), - ('0590226363', 'Zombies Don''t Play Soccer (The Adventures Of The Bailey School Kids, #15)', 'https://images.isbndb.com/covers/63/63/9780590226363.jpg'), - ('006440840X', 'The Imp That Ate My Homework', 'https://images.isbndb.com/covers/84/00/9780064408400.jpg'), - ('1561560936', 'Moby Dick', 'https://images.isbndb.com/covers/09/36/9781561560936.jpg'), - ('0802115330', 'Editors On Editing: What Writers Need To Know About What Editors Do', 'https://images.isbndb.com/covers/53/31/9780802115331.jpg'), - ('0345443802', 'Murder On Capitol Hill (Capital Crimes)', 'https://images.isbndb.com/covers/38/09/9780345443809.jpg'), - ('0393317013', 'Lamb (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/70/15/9780393317015.jpg'), - ('0140177361', 'The Red Pony (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/73/67/9780140177367.jpg'), - ('1886746370', 'Harry S. Truman And The Modern American Presidency (Library Of American Biography)', 'https://images.isbndb.com/covers/63/74/9781886746374.jpg'), - ('0449148718', 'The Christening Day Murder (Christine Bennett Mysteries)', 'https://images.isbndb.com/covers/87/16/9780449148716.jpg'), - ('0671206710', 'Backward Shadow', 'https://images.isbndb.com/covers/67/10/9780671206710.jpg'), - ('0679807748', 'Sesame Street Book Of Poetry', 'https://images.isbndb.com/covers/77/42/9780679807742.jpg'), - ('0689821514', 'Blue''s Big Birthday (Blue''s Clues (Simon & Schuster Hardcover))', 'https://images.isbndb.com/covers/15/16/9780689821516.jpg'), - ('0399207589', 'Where''s Spot?', 'https://images.isbndb.com/covers/75/87/9780399207587.jpg'), - ('0525447091', 'Eeyore Has A Birthday', 'https://images.isbndb.com/covers/70/92/9780525447092.jpg'), - ('0886778441', 'River Of Blue Fire (Otherland, Volume 2)', 'https://images.isbndb.com/covers/84/46/9780886778446.jpg'), - ('0883623382', 'Pocket Pal: A Graphic Arts Production Handbook', 'https://images.isbndb.com/covers/33/81/9780883623381.jpg'), - ('0517541998', 'Curators Choice Midwestern', 'https://images.isbndb.com/covers/19/99/9780517541999.jpg'), - ('0916103544', 'Food & Wine Magazine''s Official Wine Guide 2000', 'https://images.isbndb.com/covers/35/45/9780916103545.jpg'), - ('0684837927', 'Angels From Hell: Almost Totally True Tales Of Infernal, And Otherwise Inexplicable, Intervention', 'https://images.isbndb.com/covers/79/25/9780684837925.jpg'), - ('0393301583', 'Civilization And Its Discontents', 'https://images.isbndb.com/covers/15/88/9780393301588.jpg'), - ('0671447610', 'A Certain People: American Jews And Their Lives Today', 'https://images.isbndb.com/covers/76/18/9780671447618.jpg'), - ('0812882962', 'The Word Of A Gentleman', 'https://images.isbndb.com/covers/29/64/9780812882964.jpg'), - ('0374319693', 'The Education Of Robert Nifkin', 'https://images.isbndb.com/covers/96/94/9780374319694.jpg'), - ('087596480X', 'Fight Fat: Secrets To Successful Weight Loss (Women''s Edge Health Enhancement Guides)', 'https://images.isbndb.com/covers/48/05/9780875964805.jpg'), - ('1579545637', 'Growing Younger: Breakthrough Age-Defying Secrets', 'https://images.isbndb.com/covers/56/35/9781579545635.jpg'), - ('0449909549', 'Mrs. Pollifax Pursued', 'https://images.isbndb.com/covers/95/46/9780449909546.jpg'), - ('0345309049', 'Making Peace With Your Parents', 'https://images.isbndb.com/covers/90/44/9780345309044.jpg'), - ('0451197011', 'American Dreams', 'https://images.isbndb.com/covers/70/16/9780451197016.jpg'), - ('0805779612', 'The Red Badge Of Courage: Redefining The Hero (Twayne''s Masterwork Studies)', 'https://images.isbndb.com/covers/96/15/9780805779615.jpg'), - ('0802130798', 'Four Plays: The Bald Soprano; The Lesson; Jack, Or The Submission; The Chairs', 'https://images.isbndb.com/covers/07/92/9780802130792.jpg'), - ('0316769576', 'Raise High The Roof Beam, Carpenters And Seymour: An Introduction', 'https://images.isbndb.com/covers/95/70/9780316769570.jpg'), - ('0316769029', 'Franny And Zooey', 'https://images.isbndb.com/covers/90/20/9780316769020.jpg'), - ('0785728473', 'Hawaii Hawaii', 'https://images.isbndb.com/covers/84/74/9780785728474.jpg'), - ('0802730191', 'Suicide Most Foul', 'https://images.isbndb.com/covers/01/90/9780802730190.jpg'), - ('0452272580', 'A Not Entirely Benign Procedure: Four Years As A Medical Student', 'https://images.isbndb.com/covers/25/83/9780452272583.jpg'), - ('0192833588', 'Sense And Sensibility (World''s Classics)', 'https://images.isbndb.com/covers/35/87/9780192833587.jpg'), - ('0449909174', 'Conduct Unbecoming', 'https://images.isbndb.com/covers/91/71/9780449909171.jpg'), - ('0684802678', 'How To Avoid Housework: Tips, Hints, And Secrets On How To Have A Spotless Home', 'https://images.isbndb.com/covers/26/71/9780684802671.jpg'), - ('0671007858', 'Poetry Of John Keats (Monarch Notes)', 'https://images.isbndb.com/covers/78/50/9780671007850.jpg'), - ('067100610X', 'Charles Dicken''s Great Expectations (Monarch Notes)', 'https://images.isbndb.com/covers/61/05/9780671006105.jpg'), - ('0671005022', 'Homer''s Odyssey (Monarch Notes)', 'https://images.isbndb.com/covers/50/23/9780671005023.jpg'), - ('0671007238', 'Man And Superman (Monarch Notes)', 'https://images.isbndb.com/covers/72/32/9780671007232.jpg'), - ('0822010933', 'Machiavelli''s The Prince (Cliffs Notes)', 'https://images.isbndb.com/covers/09/37/9780822010937.jpg'), - ('0822007088', 'Oedipus The King, Oedipus At Colonus, And Antigone (Cliffs Notes)', 'https://images.isbndb.com/covers/70/81/9780822007081.jpg'), - ('0452256178', 'Deliciously Low: Low-Sodium, Low-Fat, Low Cholesterol, Low-Sugar Cooking (Plume)', 'https://images.isbndb.com/covers/61/70/9780452256170.jpg'), - ('0399510737', 'Hold The Fat, Sugar And Salt', 'https://images.isbndb.com/covers/07/31/9780399510731.jpg'), - ('0802135501', 'Meeting The Master: Stories About Mastery, Slavery And The Darker Side Of Desire', 'https://images.isbndb.com/covers/55/06/9780802135506.jpg'), - ('1556708556', 'Portraits Of Hope: Conquering Breast Cancer : 52 Inspirational Stories Of Strength', 'https://images.isbndb.com/covers/85/58/9781556708558.jpg'), - ('0140251383', 'Murder In A Hot Flash: A Charlie Greene Mystery', 'https://images.isbndb.com/covers/13/88/9780140251388.jpg'), - ('0688155502', 'Cromartie V. The God Shiva: Acting Through The Government Of India', 'https://images.isbndb.com/covers/55/06/9780688155506.jpg'), - ('1860462588', 'Silk', 'https://images.isbndb.com/covers/25/80/9781860462580.jpg'), - ('0440226937', 'For Mike', 'https://images.isbndb.com/covers/69/32/9780440226932.jpg'), - ('0312155638', 'The Lady Who Liked Clean Restrooms: The Chronicle Of One Of The Strangest Stories Ever To Be Rumoured About Around New York', 'https://images.isbndb.com/covers/56/36/9780312155636.jpg'), - ('0446525596', 'Let''s Go To The Videotape: All The Plays And Replays From My Life In Sports', 'https://images.isbndb.com/covers/55/96/9780446525596.jpg'), - ('089281781X', 'Gesundheit!: Bringing Good Health To You, The Medical System, And Society Through Physician Service, Complementary Therapies, Humor, And Joy', 'https://images.isbndb.com/covers/78/18/9780892817818.jpg'), - ('0140246142', 'Snapshots', 'https://images.isbndb.com/covers/61/48/9780140246148.jpg'), - ('0394726421', 'The Bushwhacked Piano', 'https://images.isbndb.com/covers/64/27/9780394726427.jpg'), - ('0312968892', 'Evil Twins: Chilling True Stories Of Twins, Killing And Insanity (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/88/92/9780312968892.jpg'), - ('0671010123', 'Final Jeopardy (Alexandra Cooper Mysteries)', 'https://images.isbndb.com/covers/01/26/9780671010126.jpg'), - ('0425143570', 'Thunder Point (Sean Dillon)', 'https://images.isbndb.com/covers/35/75/9780425143575.jpg'), - ('0517524171', 'Cut: The Unseen Cinema', 'https://images.isbndb.com/covers/41/76/9780517524176.jpg'), - ('0553351370', 'Fire In The Belly: On Being A Man', 'https://images.isbndb.com/covers/13/78/9780553351378.jpg'), - ('0345381645', 'The Vanished Child', 'https://images.isbndb.com/covers/16/44/9780345381644.jpg'), - ('0789200015', 'Men Without Ties', 'https://images.isbndb.com/covers/00/13/9780789200013.jpg'), - ('1582431108', 'Here But Not Here: My Life With William Shawn And The New Yorker', 'https://images.isbndb.com/covers/11/09/9781582431109.jpg'), - ('0061011843', 'Driving Under The Affluence', 'https://images.isbndb.com/covers/18/49/9780061011849.jpg'), - ('0786011386', 'Help Wanted/Aviso Oportuno (Encanto)', 'https://images.isbndb.com/covers/13/84/9780786011384.jpg'), - ('0786010576', 'Faith In You/Tengo Fe En Ti (Encanto (English))', 'https://images.isbndb.com/covers/05/78/9780786010578.jpg'), - ('970690042X', 'Diario De Tlauhquechol: La Magia De La Vida En Tenochtitlan En Voz De Una Joven Mexica (Diarios Mexicanos) (Spanish Edition)', 'https://images.isbndb.com/covers/04/25/9789706900425.jpg'), - ('0812928423', 'The Secret Language Of Eating Disorders: How You Can Understand And Work To Cure Anorexia And Bulimia', 'https://images.isbndb.com/covers/84/26/9780812928426.jpg'), - ('0609801880', 'The Politically Correct Guide To American History', 'https://images.isbndb.com/covers/18/88/9780609801888.jpg'), - ('0679725768', 'The Mezzanine', 'https://images.isbndb.com/covers/57/63/9780679725763.jpg'), - ('0140366679', 'White Fang (Puffin Classics)', 'https://images.isbndb.com/covers/66/79/9780140366679.jpg'), - ('031211933X', 'Zombification: Stories From National Public Radio', 'https://images.isbndb.com/covers/93/31/9780312119331.jpg'), - ('0671686216', 'Spellbound: Growing Up In God''s Country', 'https://images.isbndb.com/covers/62/15/9780671686215.jpg'), - ('0553282611', 'The Girl In The Box', 'https://images.isbndb.com/covers/26/10/9780553282610.jpg'), - ('0809254999', 'Bodybuilding For Beginners', 'https://images.isbndb.com/covers/49/96/9780809254996.jpg'), - ('0140243917', 'Whores Of Lost Atlantis: A Novel', 'https://images.isbndb.com/covers/39/18/9780140243918.jpg'), - ('0385315147', 'Smilla''s Sense Of Snow', 'https://images.isbndb.com/covers/51/42/9780385315142.jpg'), - ('0373832877', 'Lone Wolf (Stolen Moments)', 'https://images.isbndb.com/covers/28/73/9780373832873.jpg'), - ('0684832860', 'SANCTUARY: A Tale Of Life In The Woods', 'https://images.isbndb.com/covers/28/69/9780684832869.jpg'), - ('067176960X', 'The Commanders', 'https://images.isbndb.com/covers/96/04/9780671769604.jpg'), - ('0030195160', 'A Plan For Writing', 'https://images.isbndb.com/covers/51/67/9780030195167.jpg'), - ('0553212257', 'The Sea Wolf', 'https://images.isbndb.com/covers/22/59/9780553212259.jpg'), - ('0070439915', 'The Short Prose Reader', 'https://images.isbndb.com/covers/99/17/9780070439917.jpg'), - ('0393091198', 'The Norton Introduction To Literature', 'https://images.isbndb.com/covers/11/99/9780393091199.jpg'), - ('0449219615', 'Farriers'' Lane', 'https://images.isbndb.com/covers/96/14/9780449219614.jpg'), - ('0139705821', 'Writing Themes About Literature', 'https://images.isbndb.com/covers/58/23/9780139705823.jpg'), - ('0688052398', 'A Rhetoric And Composition Handbook: (original Title, A Rhetoric And Handbook)', 'https://images.isbndb.com/covers/23/93/9780688052393.jpg'), - ('0140131558', 'The New York Trilogy: City Of Glass; Ghosts; The Locked Room (Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/15/50/9780140131550.jpg'), - ('066991066X', 'The Shape Of Fiction', 'https://images.isbndb.com/covers/06/67/9780669910667.jpg'), - ('0393090477', 'Basic College Writing', 'https://images.isbndb.com/covers/04/75/9780393090475.jpg'), - ('0380811995', 'Rules Of Attraction (Governess Brides, Book 3)', 'https://images.isbndb.com/covers/19/91/9780380811991.jpg'), - ('0449003884', 'The Bride Finder', 'https://images.isbndb.com/covers/38/86/9780449003886.jpg'), - ('0380794802', 'One True Love', 'https://images.isbndb.com/covers/48/05/9780380794805.jpg'), - ('0449222802', 'Ask Me No Questions', 'https://images.isbndb.com/covers/28/05/9780449222805.jpg'), - ('0515105910', 'Jade', 'https://images.isbndb.com/covers/59/19/9780515105919.jpg'), - ('0875427391', 'The Crafted Cup: Ritual Mysteries Of The Goddess And The Grail', 'https://images.isbndb.com/covers/73/93/9780875427393.jpg'), - ('0446360945', 'Cardinal Virtues', 'https://images.isbndb.com/covers/09/44/9780446360944.jpg'), - ('0553581856', 'A Kiss To Remember', 'https://images.isbndb.com/covers/18/50/9780553581850.jpg'), - ('038082079X', 'An Affair To Remember (Talisman Ring)', 'https://images.isbndb.com/covers/07/95/9780380820795.jpg'), - ('0671873164', 'Pirates', 'https://images.isbndb.com/covers/31/65/9780671873165.jpg'), - ('0515129747', 'Prince Of Charming (Magical Love)', 'https://images.isbndb.com/covers/97/48/9780515129748.jpg'), - ('0380809273', 'The Dangerous Lord (Lord Trilogy, Book 3)', 'https://images.isbndb.com/covers/92/71/9780380809271.jpg'), - ('0380809281', 'A Dangerous Love (Swanlea Spinsters, Book 1)', 'https://images.isbndb.com/covers/92/88/9780380809288.jpg'), - ('0380818043', 'After The Abduction (Swanlea Spinsters, Book 3)', 'https://images.isbndb.com/covers/80/44/9780380818044.jpg'), - ('0380818035', 'A Notorious Love (Swanlea Spinsters, Book 2)', 'https://images.isbndb.com/covers/80/37/9780380818037.jpg'), - ('0380797488', 'The Forbidden Lord (Lord Trilogy, Book 2)', 'https://images.isbndb.com/covers/74/86/9780380797486.jpg'), - ('0060514051', 'How To Treat A Lady (Talisman Ring)', 'https://images.isbndb.com/covers/40/51/9780060514051.jpg'), - ('0380820803', 'Confessions Of A Scoundrel', 'https://images.isbndb.com/covers/08/01/9780380820801.jpg'), - ('0380815265', 'The Seduction Of Sara', 'https://images.isbndb.com/covers/52/65/9780380815265.jpg'), - ('0380798867', 'Taming Rafe', 'https://images.isbndb.com/covers/88/65/9780380798865.jpg'), - ('0380810719', 'The Abduction Of Julia', 'https://images.isbndb.com/covers/07/10/9780380810710.jpg'), - ('0515133620', 'Tapestry', 'https://images.isbndb.com/covers/36/22/9780515133622.jpg'), - ('0821765744', 'Like No Other (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/57/46/9780821765746.jpg'), - ('0380820838', 'London''s Perfect Scoundrel (Lessons In Love, Book 2)', 'https://images.isbndb.com/covers/08/32/9780380820832.jpg'), - ('0380809168', 'Reforming A Rake (With This Ring, Book 1)', 'https://images.isbndb.com/covers/91/65/9780380809165.jpg'), - ('0380818507', 'A Matter Of Scandal (With This Ring, Book 3) (Vol 3)', 'https://images.isbndb.com/covers/85/01/9780380818501.jpg'), - ('038082082X', 'The Rake (Lessons In Love, Book 1)', 'https://images.isbndb.com/covers/08/25/9780380820825.jpg'), - ('0394571819', 'Don''t Bend Over In The Garden, Granny, You Know Them Taters Got Eyes', 'https://images.isbndb.com/covers/18/12/9780394571812.jpg'), - ('0380802902', 'Never Kiss A Duke', 'https://images.isbndb.com/covers/29/06/9780380802906.jpg'), - ('0441153135', 'Door In The Hedge', 'https://images.isbndb.com/covers/31/38/9780441153138.jpg'), - ('0451166027', 'The Rogue And The Runaway (Signet Regency Romance)', 'https://images.isbndb.com/covers/60/29/9780451166029.jpg'), - ('0380767848', 'Lord Of My Heart', 'https://images.isbndb.com/covers/78/47/9780380767847.jpg'), - ('0590402803', 'Birth Of The Firebringer', 'https://images.isbndb.com/covers/28/04/9780590402804.jpg'), - ('006050353X', 'Her Scandalous Intentions', 'https://images.isbndb.com/covers/35/36/9780060503536.jpg'), - ('0671744216', 'The Secret', 'https://images.isbndb.com/covers/42/12/9780671744212.jpg'), - ('0445209402', 'Firedrake: The Dragonrealm', 'https://images.isbndb.com/covers/94/04/9780445209404.jpg'), - ('0380789337', 'Everything And The Moon', 'https://images.isbndb.com/covers/93/37/9780380789337.jpg'), - ('0312998368', 'Night Pleasures (Dark-Hunter, Book 2)', 'https://images.isbndb.com/covers/83/63/9780312998363.jpg'), - ('0553252836', 'Summer Of Unicorn', 'https://images.isbndb.com/covers/28/35/9780553252835.jpg'), - ('0345353676', 'Last Unicorn', 'https://images.isbndb.com/covers/36/72/9780345353672.jpg'), - ('0449210235', 'Property Of', 'https://images.isbndb.com/covers/02/39/9780449210239.jpg'), - ('0802135412', 'Briar Rose (Coover, Robert)', 'https://images.isbndb.com/covers/54/14/9780802135414.jpg'), - ('0393323145', 'The Seven Daughters Of Eve: The Science That Reveals Our Genetic Ancestry', 'https://images.isbndb.com/covers/31/46/9780393323146.jpg'), - ('0670892475', 'Treasure At The Heart Of The Tanglewood (Action Packs)', 'https://images.isbndb.com/covers/24/71/9780670892471.jpg'), - ('0425118312', 'Witch', 'https://images.isbndb.com/covers/83/13/9780425118313.jpg'), - ('0441006256', 'Freedom''s Challenge', 'https://images.isbndb.com/covers/62/50/9780441006250.jpg'), - ('0439062810', 'Sunchaser''s Quest (Unicorns Of Balinor)', 'https://images.isbndb.com/covers/28/17/9780439062817.jpg'), - ('0812558251', 'Snow White And Rose Red (The Fairy Tale Series)', 'https://images.isbndb.com/covers/82/58/9780812558258.jpg'), - ('0812564170', 'Encyclopedia Of Xanth (A Crossroads Adventure In The World Of Piers Anthony''s Xanth)', 'https://images.isbndb.com/covers/41/74/9780812564174.jpg'), - ('0449149579', 'Kiss Of The Vampire', 'https://images.isbndb.com/covers/95/77/9780449149577.jpg'), - ('0345379845', 'Crystal Line (Crystal, Vol. 3)', 'https://images.isbndb.com/covers/98/49/9780345379849.jpg'), - ('0684811138', 'Good Cats, Bad Habits: The Complete A To Z Guide For When Your Cat Misbehaves', 'https://images.isbndb.com/covers/11/30/9780684811130.jpg'), - ('0441005837', 'Rose Daughter', 'https://images.isbndb.com/covers/58/33/9780441005833.jpg'), - ('0671753673', 'Hottest Blood', 'https://images.isbndb.com/covers/36/72/9780671753672.jpg'), - ('0380702878', 'Unicorn Variations', 'https://images.isbndb.com/covers/28/79/9780380702879.jpg'), - ('0152008691', 'The Forgotten Beasts Of Eld', 'https://images.isbndb.com/covers/86/97/9780152008697.jpg'), - ('0879516976', 'The Book Of The Damned (Secret Books Of Paradys)', 'https://images.isbndb.com/covers/69/70/9780879516970.jpg'), - ('0879516984', 'The Book Of The Beast', 'https://images.isbndb.com/covers/69/87/9780879516987.jpg'), - ('0843947470', 'High Intensity', 'https://images.isbndb.com/covers/74/72/9780843947472.jpg'), - ('0505525526', 'Single White Vampire (Argeneau Vampires, Book 3)', 'https://images.isbndb.com/covers/55/29/9780505525529.jpg'), - ('0380776170', 'The Last Hellion', 'https://images.isbndb.com/covers/61/77/9780380776177.jpg'), - ('0440236746', 'Bridal Favors', 'https://images.isbndb.com/covers/67/40/9780440236740.jpg'), - ('0536597073', 'The Masai: A Proud People', 'https://images.isbndb.com/covers/70/76/9780536597076.jpg'), - ('0030226864', 'The Cheyennes: Indians Of The Great Plains (Case Studies In Cultural Anthropology)', 'https://images.isbndb.com/covers/68/61/9780030226861.jpg'), - ('0155053272', 'Yanomamo - Yanomamö (Case Studies In Cultural Anthropology)', 'https://images.isbndb.com/covers/32/74/9780155053274.jpg'), - ('0875650546', 'The Day The Cowboys Quit (Texas Tradition Series)', 'https://images.isbndb.com/covers/05/48/9780875650548.jpg'), - ('0321090934', 'Charles A. Lindbergh: Lone Eagle (2nd Edition)', 'https://images.isbndb.com/covers/09/35/9780321090935.jpg'), - ('0072822805', 'Taking Sides: Clashing Views On Controversial Political Issues', 'https://images.isbndb.com/covers/28/09/9780072822809.jpg'), - ('0843948167', 'Lady Pirate', 'https://images.isbndb.com/covers/81/65/9780843948165.jpg'), - ('0671865846', 'Perfect Soldier', 'https://images.isbndb.com/covers/58/49/9780671865849.jpg'), - ('0886779227', 'Single White Vampire Seeks Same', 'https://images.isbndb.com/covers/92/21/9780886779221.jpg'), - ('0060098538', 'Black Silk', 'https://images.isbndb.com/covers/85/37/9780060098537.jpg'), - ('038081806X', 'Someone Irresistible (Avon Romantic Treasure)', 'https://images.isbndb.com/covers/80/68/9780380818068.jpg'), - ('044900516X', 'Silver Lining', 'https://images.isbndb.com/covers/51/63/9780449005163.jpg'), - ('0671664247', 'Hot Blood: Tales Of Provocative Horror', 'https://images.isbndb.com/covers/42/44/9780671664244.jpg'), - ('0375806776', 'The Castle In The Attic', 'https://images.isbndb.com/covers/67/73/9780375806773.jpg'), - ('0345328396', 'Red Fox', 'https://images.isbndb.com/covers/83/97/9780345328397.jpg'), - ('0451407105', 'The Angel''s Crime', 'https://images.isbndb.com/covers/71/08/9780451407108.jpg'), - ('0505522551', 'The Last Viking', 'https://images.isbndb.com/covers/25/59/9780505522559.jpg'), - ('0380761505', 'Only In Your Arms', 'https://images.isbndb.com/covers/15/00/9780380761500.jpg'), - ('038077013X', 'Then Came You', 'https://images.isbndb.com/covers/01/37/9780380770137.jpg'), - ('0451149203', 'Point Blank (Signet)', 'https://images.isbndb.com/covers/92/06/9780451149206.jpg'), - ('0425140946', 'Terminal', 'https://images.isbndb.com/covers/09/49/9780425140949.jpg'), - ('0425093891', 'The Sentinel (Masterworks Of Science Fiction And Fantasy)', 'https://images.isbndb.com/covers/38/94/9780425093894.jpg'), - ('0451149378', 'The Other Side Of The Sky', 'https://images.isbndb.com/covers/93/74/9780451149374.jpg'), - ('0671793896', 'Rules Of Evidence', 'https://images.isbndb.com/covers/38/90/9780671793890.jpg'), - ('0385469608', 'Earth Song, Sky Spirit', 'https://images.isbndb.com/covers/96/09/9780385469609.jpg'), - ('0919891276', 'Book Of Alternative Services Of The Anglican Church Of Canada', 'https://images.isbndb.com/covers/12/72/9780919891272.jpg'), - ('0138876541', 'Nature''s Prozac', 'https://images.isbndb.com/covers/65/48/9780138876548.jpg'), - ('0853980055', 'Christ And Baha''u''llah', 'https://images.isbndb.com/covers/00/56/9780853980056.jpg'), - ('0316507415', 'How Good Do We Have To Be?: A New Understanding Of Guilt And Forgiveness', 'https://images.isbndb.com/covers/74/17/9780316507417.jpg'), - ('0307136566', 'Guide To Field Identification Of The Birds Of North America', 'https://images.isbndb.com/covers/65/65/9780307136565.jpg'), - ('0451163095', 'Hoyle''s Rules Of Games: Second Revised Edition (Signet)', 'https://images.isbndb.com/covers/30/97/9780451163097.jpg'), - ('0394504321', 'National Audubon Society Field Guide To North American Wildflowers (Eastern Region)', 'https://images.isbndb.com/covers/43/22/9780394504322.jpg'), - ('0060972920', 'Getting The Love You Want: A Guide For Couples', 'https://images.isbndb.com/covers/29/29/9780060972929.jpg'), - ('0394800869', 'Thidwick The Big-Hearted Moose (Classic Seuss)', 'https://images.isbndb.com/covers/08/68/9780394800868.jpg'), - ('0553353896', 'Homecoming: Reclaiming And Championing Your Inner Child', 'https://images.isbndb.com/covers/38/91/9780553353891.jpg'), - ('068483720X', 'Your Mental Health: A Layman''s Guide To The Psychiatrist''s Bible', 'https://images.isbndb.com/covers/72/08/9780684837208.jpg'), - ('1889461024', 'The Last Word: Tombstone Wit And Wisdom', 'https://images.isbndb.com/covers/10/21/9781889461021.jpg'), - ('0306802538', 'The 900 Days: The Siege Of Leningrad (A Da Capo Paperback)', 'https://images.isbndb.com/covers/25/39/9780306802539.jpg'), - ('0898621283', 'Mind Over Mood: Change How You Feel By Changing The Way You Think', 'https://images.isbndb.com/covers/12/80/9780898621280.jpg'), - ('0771033737', 'I Am A Sensation', 'https://images.isbndb.com/covers/37/35/9780771033735.jpg'), - ('0062701908', 'The Highly Selective Dictionary For The Extraordinarily Literate', 'https://images.isbndb.com/covers/19/09/9780062701909.jpg'), - ('0062700162', 'The Highly Selective Thesaurus For The Extraordinarily Literate', 'https://images.isbndb.com/covers/01/62/9780062700162.jpg'), - ('0345339428', 'I Never Know What To Say: How To Help Your Family And Friends Cope With Tragedy', 'https://images.isbndb.com/covers/94/23/9780345339423.jpg'), - ('0394700058', 'The Sound And The Fury', 'https://images.isbndb.com/covers/00/52/9780394700052.jpg'), - ('0316507350', 'To Life!: A Celebration Of Jewish Being And Thinking', 'https://images.isbndb.com/covers/73/56/9780316507356.jpg'), - ('0425132110', 'Conquering Bad Dreams & Nightmares : A Guide To Understanding, Interpretation & Cure', 'https://images.isbndb.com/covers/21/11/9780425132111.jpg'), - ('0671680277', 'Who Needs God', 'https://images.isbndb.com/covers/02/75/9780671680275.jpg'), - ('1572231408', 'Garish Gardens Outlandish Lawns', 'https://images.isbndb.com/covers/14/05/9781572231405.jpg'), - ('0375500316', 'Even The Stars Look Lonesome', 'https://images.isbndb.com/covers/03/12/9780375500312.jpg'), - ('059084475X', 'We Are Witnesses: Five Diaries Of Teenagers Who Died In The Holocaust', 'https://images.isbndb.com/covers/47/58/9780590844758.jpg'), - ('0553374524', 'The Intelligence Of Dogs: A Guide To The Thoughts, Emotions, And Inner Lives Of Our Canine Companions', 'https://images.isbndb.com/covers/45/20/9780553374520.jpg'), - ('0394712390', 'Flags In The Dust: The Complete Text Of Faulkner''s Third Novel, Which Appeared In A Cut Version As Sartoris', 'https://images.isbndb.com/covers/23/90/9780394712390.jpg'), - ('3548254152', 'Duddits: Dreamcatcher', 'https://images.isbndb.com/covers/41/59/9783548254159.jpg'), - ('3203751046', 'Das Schicksal Der Pamir', 'https://images.isbndb.com/covers/10/47/9783203751047.jpg'), - ('0140154078', 'The Music Of Chance', 'https://images.isbndb.com/covers/40/78/9780140154078.jpg'), - ('3596147239', 'Daheim Unterwegs', 'https://images.isbndb.com/covers/72/36/9783596147236.jpg'), - ('3499131706', 'Sieben Sekunden', 'https://images.isbndb.com/covers/17/07/9783499131707.jpg'), - ('3499136899', 'Die Namen', 'https://images.isbndb.com/covers/68/94/9783499136894.jpg'), - ('3466343755', 'Die Kunst Der Ayurvedischen Massage: Vitalität Und Entspannung Für Körper Und Seele', 'https://images.isbndb.com/covers/37/51/9783466343751.jpg'), - ('3442723302', 'Die Rote Couch', 'https://images.isbndb.com/covers/33/00/9783442723300.jpg'), - ('3442446783', 'Das Lazaruskind.', 'https://images.isbndb.com/covers/67/80/9783442446780.jpg'), - ('3596121477', 'Die Sieben Dämonen', 'https://images.isbndb.com/covers/14/72/9783596121472.jpg'), - ('325721605X', 'Eine Mittelgewichts - Ehe', 'https://images.isbndb.com/covers/60/59/9783257216059.jpg'), - ('0671853414', 'Trauma Pb', 'https://images.isbndb.com/covers/34/19/9780671853419.jpg'), - ('0446341754', 'Other Side Of Midnight', 'https://images.isbndb.com/covers/17/52/9780446341752.jpg'), - ('0446341851', 'Master Of The Game', 'https://images.isbndb.com/covers/18/51/9780446341851.jpg'), - ('0553249169', 'The Sound Of Thunder', 'https://images.isbndb.com/covers/91/63/9780553249163.jpg'), - ('0671464043', 'Whip Hand', 'https://images.isbndb.com/covers/40/42/9780671464042.jpg'), - ('067150732X', 'TRIAL RUN', 'https://images.isbndb.com/covers/73/29/9780671507329.jpg'), - ('0439354951', 'Scooby-Doo The Movie!', 'https://images.isbndb.com/covers/49/50/9780439354950.jpg'), - ('0553487728', 'Wings Of War (Justice League)', 'https://images.isbndb.com/covers/77/25/9780553487725.jpg'), - ('0515115649', 'The Cat Who Came To Breakfast', 'https://images.isbndb.com/covers/56/42/9780515115642.jpg'), - ('0812564596', 'The Enemy Way: An Ella Clah Novel (Ella Clah Novels)', 'https://images.isbndb.com/covers/45/94/9780812564594.jpg'), - ('0451192303', 'Between A Wok And A Hard Place (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/23/01/9780451192301.jpg'), - ('0425185788', 'The Thunder Keeper (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/57/80/9780425185780.jpg'), - ('0446405264', 'Twenty Blue Devils (Gideon Oliver Mysteries)', 'https://images.isbndb.com/covers/52/63/9780446405263.jpg'), - ('0380792540', 'So Faux, So Good (A Den Of Antiquity Mystery)', 'https://images.isbndb.com/covers/25/42/9780380792542.jpg'), - ('0671222473', 'Simon & Schuster''s Guide To Plants And Flowers', 'https://images.isbndb.com/covers/24/75/9780671222475.jpg'), - ('0812585658', 'The Year Of The Lucy', 'https://images.isbndb.com/covers/56/50/9780812585650.jpg'), - ('0671674269', 'Star Trek II: Wrath Of Khan', 'https://images.isbndb.com/covers/42/67/9780671674267.jpg'), - ('0553285084', 'The T-Factor Diet', 'https://images.isbndb.com/covers/50/86/9780553285086.jpg'), - ('0590030205', 'Great Unsolved Crimes', 'https://images.isbndb.com/covers/02/05/9780590030205.jpg'), - ('0425155501', 'Murder In Grub Street (Sir John Fielding)', 'https://images.isbndb.com/covers/55/09/9780425155509.jpg'), - ('0445408642', 'Curses!', 'https://images.isbndb.com/covers/86/47/9780445408647.jpg'), - ('0449149005', 'Deceptive Clarity', 'https://images.isbndb.com/covers/90/03/9780449149003.jpg'), - ('0425191273', 'The Shadow Dancer (A Wind River Reservation Mystery)', 'https://images.isbndb.com/covers/12/79/9780425191279.jpg'), - ('0517146789', 'Barbara Cartland: Three Complete Novels: Marquises & Their Ladies', 'https://images.isbndb.com/covers/67/81/9780517146781.jpg'), - ('0156006510', 'Killing The Dream: James Earl Ray And The Assassination Of Martin Luther King, Jr.', 'https://images.isbndb.com/covers/65/14/9780156006514.jpg'), - ('0449148297', 'A Glancing Light (Chris Norgren Mysteries)', 'https://images.isbndb.com/covers/82/97/9780449148297.jpg'), - ('067152819X', 'Look Away', 'https://images.isbndb.com/covers/81/95/9780671528195.jpg'), - ('0743417038', 'The Wonder Of Girls : Understanding The Hidden Nature Of Our Daughters', 'https://images.isbndb.com/covers/70/37/9780743417037.jpg'), - ('0684838923', 'Dog Eat Dog: A Very Human Book About Dogs And Dog Shows', 'https://images.isbndb.com/covers/89/22/9780684838922.jpg'), - ('1582341338', 'Typhoid Mary: An Urban Historical', 'https://images.isbndb.com/covers/13/30/9781582341330.jpg'), - ('0806943424', 'The Encyclopedia Of Two-Hour Craft Projects', 'https://images.isbndb.com/covers/34/28/9780806943428.jpg'), - ('1414051999', 'The Sea Shack', 'https://images.isbndb.com/covers/19/94/9781414051994.jpg'), - ('0525946535', 'One-Hit Wonder', 'https://images.isbndb.com/covers/65/33/9780525946533.jpg'), - ('1565845609', 'A Transatlantic Love Affair: Letters To Nelson Algren', 'https://images.isbndb.com/covers/56/02/9781565845602.jpg'), - ('1567315267', 'Brush Up Your Poetry!: A Many-Splendoured Tour Of The World''s Best-Loved Verse', 'https://images.isbndb.com/covers/52/64/9781567315264.jpg'), - ('0446530190', 'Cancer Schmancer', 'https://images.isbndb.com/covers/01/94/9780446530194.jpg'), - ('087351288X', 'The Spirit Of St. Louis', 'https://images.isbndb.com/covers/28/86/9780873512886.jpg'), - ('1556610351', 'Love Takes Wing (Love Comes Softly)', 'https://images.isbndb.com/covers/03/56/9781556610356.jpg'), - ('0517575019', 'Dazzle', 'https://images.isbndb.com/covers/50/17/9780517575017.jpg'), - ('0385417926', 'Lady''s Maid', 'https://images.isbndb.com/covers/79/21/9780385417921.jpg'), - ('0671437933', 'What Do Women Want?', 'https://images.isbndb.com/covers/79/30/9780671437930.jpg'), - ('067122591X', 'Attachments', 'https://images.isbndb.com/covers/59/19/9780671225919.jpg'), - ('0312373082', 'The Hills Are Eternal', 'https://images.isbndb.com/covers/30/85/9780312373085.jpg'), - ('0679415793', 'Virgins Of Paradise', 'https://images.isbndb.com/covers/57/94/9780679415794.jpg'), - ('0060153016', 'Brave Brush-Tail Possum (Weekly Reader Children''s Book Club Presents)', 'https://images.isbndb.com/covers/30/14/9780060153014.jpg'), - ('0395339707', 'August', 'https://images.isbndb.com/covers/97/01/9780395339701.jpg'), - ('0446512362', 'The Cardinal Sins', 'https://images.isbndb.com/covers/23/67/9780446512367.jpg'), - ('0800714113', 'Before You Call, I Will Answer', 'https://images.isbndb.com/covers/41/16/9780800714116.jpg'), - ('1557482101', 'For Each New Day', 'https://images.isbndb.com/covers/21/05/9781557482105.jpg'), - ('0890814449', 'The Longing To Be Free', 'https://images.isbndb.com/covers/44/44/9780890814444.jpg'), - ('0840756178', 'Creative Counterpart', 'https://images.isbndb.com/covers/61/76/9780840756176.jpg'), - ('0835806219', 'Living The Psalms: A Confidence For All Seasons', 'https://images.isbndb.com/covers/62/13/9780835806213.jpg'), - ('1561790613', 'Prodigals And Those Who Love Them: Study Guide', 'https://images.isbndb.com/covers/06/16/9781561790616.jpg'), - ('0310372712', 'Lord, I Can Resist Anything But Temptation', 'https://images.isbndb.com/covers/27/14/9780310372714.jpg'), - ('0890815038', 'Out On A Broken Limb', 'https://images.isbndb.com/covers/50/38/9780890815038.jpg'), - ('0892837101', 'The Nazarene: Intimate Insights Into The Savior''s Life', 'https://images.isbndb.com/covers/71/06/9780892837106.jpg'), - ('0890817715', 'Heavenly Fun', 'https://images.isbndb.com/covers/77/11/9780890817711.jpg'), - ('0800751248', 'Christ, The Healer', 'https://images.isbndb.com/covers/12/41/9780800751241.jpg'), - ('0912106344', 'The Holy Spirit And You : A Study-Guide To The Spirit-Filled Life', 'https://images.isbndb.com/covers/63/42/9780912106342.jpg'), - ('0917726405', 'How To Heal The Sick', 'https://images.isbndb.com/covers/64/08/9780917726408.jpg'), - ('0890814317', 'A Forgiving God In An Unforgiving World', 'https://images.isbndb.com/covers/43/14/9780890814314.jpg'), - ('1555131085', 'You Gotta Keep Dancin''', 'https://images.isbndb.com/covers/10/81/9781555131081.jpg'), - ('0891094202', 'Her Name Is Woman, Book 1: 24 Women Of The Bible', 'https://images.isbndb.com/covers/42/03/9780891094203.jpg'), - ('0892744421', 'Unique Woman', 'https://images.isbndb.com/covers/44/28/9780892744428.jpg'), - ('0882077112', 'You Can Be The Wife Of A Happy Husband (An Input Book)', 'https://images.isbndb.com/covers/71/16/9780882077116.jpg'), - ('0912376376', 'My Friend, The Bible', 'https://images.isbndb.com/covers/63/70/9780912376370.jpg'), - ('1576736512', 'Lifestyle Evangelism: Learning To Open Your Life To Those Around You', 'https://images.isbndb.com/covers/65/17/9781576736517.jpg'), - ('0883680912', 'Abide In Christ', 'https://images.isbndb.com/covers/09/19/9780883680919.jpg'), - ('0840732422', 'Good Morning, Holy Spirit', 'https://images.isbndb.com/covers/24/22/9780840732422.jpg'), - ('080246808X', 'Prayer Power Unlimited', 'https://images.isbndb.com/covers/80/86/9780802468086.jpg'), - ('0802403336', 'Overcoming The Adversary: Warfare Praying Against Demon Activity', 'https://images.isbndb.com/covers/33/39/9780802403339.jpg'), - ('0449236129', 'You Can If You Think You Can', 'https://images.isbndb.com/covers/61/23/9780449236123.jpg'), - ('0840734581', 'I Can''T, God Can I Think I''ll Let Him: Daily Devotions For Girls (Serenity Meditation Series For Teens)', 'https://images.isbndb.com/covers/45/87/9780840734587.jpg'), - ('0896938174', 'Spice Up Your Life With Joy', 'https://images.isbndb.com/covers/81/75/9780896938175.jpg'), - ('0310313414', 'Share My Pleasant Stones', 'https://images.isbndb.com/covers/34/10/9780310313410.jpg'), - ('0802413978', 'Christ''s Call To Discipleship', 'https://images.isbndb.com/covers/39/70/9780802413970.jpg'), - ('0896935477', 'Be Victorious (Revelation): In Christ You Are An Overcomer (The BE Series Commentary)', 'https://images.isbndb.com/covers/54/71/9780896935471.jpg'), - ('0307120007', 'Pat The Bunny (Touch And Feel Book)', 'https://images.isbndb.com/covers/00/07/9780307120007.jpg'), - ('0840753608', 'The New Strong''s Exhaustive Concordance Of The Bible: With Main Concordance, Appendix To The Main Concordance, Key Verse Comparison Chart, Dictionary ... Bible, Dictionary Of The Greek Testament', 'https://images.isbndb.com/covers/36/01/9780840753601.jpg'), - ('068481465X', 'Home Comforts: The Art And Science Of Keeping House', 'https://images.isbndb.com/covers/46/50/9780684814650.jpg'), - ('0895775506', 'Reader''s Digest Legal Problem Solver: A Quick-and-Easy Action Guide To The Law', 'https://images.isbndb.com/covers/55/04/9780895775504.jpg'), - ('0877795096', 'Webster''s Ninth New Collegiate Dictionary', 'https://images.isbndb.com/covers/50/94/9780877795094.jpg'), - ('0062700782', 'Emily Post''s Etiquette (16th Edition)', 'https://images.isbndb.com/covers/07/80/9780062700780.jpg'), - ('0800700899', 'An Expository Dictionary Of New Testament Words: With Their Precise Meanings For English Readers,', 'https://images.isbndb.com/covers/08/98/9780800700898.jpg'), - ('0028702506', 'Schirmer Pronouncing Pocket Manual Of Musical Terms', 'https://images.isbndb.com/covers/25/06/9780028702506.jpg'), - ('0801010705', 'Family Celebrations For Christmas', 'https://images.isbndb.com/covers/07/05/9780801010705.jpg'), - ('0840775776', 'From Ashes To Glory: Conflicts And Victories On And Beyond The Football Field', 'https://images.isbndb.com/covers/57/71/9780840775771.jpg'), - ('1551563452', 'Handstiched Book Of Kells Lined Quoniam', 'https://images.isbndb.com/covers/34/59/9781551563459.jpg'), - ('0618446885', 'The Book Of Salt: A Novel', 'https://images.isbndb.com/covers/68/89/9780618446889.jpg'), - ('0373218575', 'Rafe And Jared: The MacKade Brothers', 'https://images.isbndb.com/covers/85/78/9780373218578.jpg'), - ('0373218850', 'The MacKade Brothers: Devin And Shane: The Heart Of Devin MacKade\The Fall Of Shane MacKade', 'https://images.isbndb.com/covers/88/51/9780373218851.jpg'), - ('0064400972', 'Betsy-Tacy And Tib (Betsy-Tacy Books)', 'https://images.isbndb.com/covers/09/78/9780064400978.jpg'), - ('0064400964', 'Betsy-Tacy (Betsy-Tacy Books)', 'https://images.isbndb.com/covers/09/61/9780064400961.jpg'), - ('0800711807', 'Norman Vincent Peale''s Treasury Of Joy And Enthusiasm', 'https://images.isbndb.com/covers/18/01/9780800711801.jpg'), - ('0891094229', 'Meditation: The Bible Tells You How', 'https://images.isbndb.com/covers/42/27/9780891094227.jpg'), - ('0877844860', 'Cost Of Commitment', 'https://images.isbndb.com/covers/48/60/9780877844860.jpg'), - ('080241544X', 'The Church In Gods Program (Handbook Of Bible Doctrine)', 'https://images.isbndb.com/covers/54/48/9780802415448.jpg'), - ('089109072X', 'Philippians (LifeChange Series)', 'https://images.isbndb.com/covers/07/24/9780891090724.jpg'), - ('0871235625', 'Telling Yourself The Truth', 'https://images.isbndb.com/covers/56/26/9780871235626.jpg'), - ('066908669X', 'The Heath Handbook (College)', 'https://images.isbndb.com/covers/66/90/9780669086690.jpg'), - ('0805453318', 'Only The Beginning', 'https://images.isbndb.com/covers/33/17/9780805453317.jpg'), - ('0896933024', 'Husbands And Wives', 'https://images.isbndb.com/covers/30/26/9780896933026.jpg'), - ('0070615373', 'Bridges Not Walls: A Book About Interpersonal Communication', 'https://images.isbndb.com/covers/53/73/9780070615373.jpg'), - ('0840790694', 'Restoring Your Spiritual Passion', 'https://images.isbndb.com/covers/06/99/9780840790699.jpg'), - ('0310269512', 'Dynamics Of Personal Follow Up', 'https://images.isbndb.com/covers/95/19/9780310269519.jpg'), - ('031037281X', 'The Lost Art Of Disciple Making', 'https://images.isbndb.com/covers/28/13/9780310372813.jpg'), - ('0842350233', 'The Prisoner In The Third Cell (Inspirational)', 'https://images.isbndb.com/covers/02/35/9780842350235.jpg'), - ('084740739X', 'Principles Of Spiritual Growth', 'https://images.isbndb.com/covers/73/92/9780847407392.jpg'), - ('1555136591', 'Should My Child Listen To Rock Music? (Helping Families Grow)', 'https://images.isbndb.com/covers/65/98/9781555136598.jpg'), - ('080245982X', 'Now That I Believe', 'https://images.isbndb.com/covers/98/24/9780802459824.jpg'), - ('0802487874', 'Toward A Growing Marriage: Building The Love Relationship Of Your Dreams', 'https://images.isbndb.com/covers/78/72/9780802487872.jpg'), - ('0801082447', 'Men Made New: An Exposition Of Romans 5-8', 'https://images.isbndb.com/covers/24/43/9780801082443.jpg'), - ('0310347017', 'Bible And Future Events, The', 'https://images.isbndb.com/covers/70/19/9780310347019.jpg'), - ('0891911375', 'When I Relax I Feel Guilty', 'https://images.isbndb.com/covers/13/71/9780891911371.jpg'), - ('0891091432', 'First Love', 'https://images.isbndb.com/covers/14/31/9780891091431.jpg'), - ('0802473695', 'The Role Relationship Of Men And Women: New Testament Teaching', 'https://images.isbndb.com/covers/36/91/9780802473691.jpg'), - ('0842315071', 'How Come It''s Taking Me So Long To Get Better?', 'https://images.isbndb.com/covers/50/74/9780842315074.jpg'), - ('0802489710', 'Answering The Tough Ones', 'https://images.isbndb.com/covers/97/15/9780802489715.jpg'), - ('0310459311', 'From Jerusalem To Irian Jaya', 'https://images.isbndb.com/covers/93/16/9780310459316.jpg'), - ('0891091815', 'Wealth And Wisdom', 'https://images.isbndb.com/covers/18/13/9780891091813.jpg'), - ('0830703454', 'Let Justice Roll Down', 'https://images.isbndb.com/covers/34/56/9780830703456.jpg'), - ('0310225795', 'Chonda Pierce On Her Soapbox', 'https://images.isbndb.com/covers/57/99/9780310225799.jpg'), - ('0893756113', 'Pride And Prejudice', 'https://images.isbndb.com/covers/61/16/9780893756116.jpg'), - ('1576731863', 'Redeeming Love', 'https://images.isbndb.com/covers/18/64/9781576731864.jpg'), - ('0345452690', 'Aunties: Thirty-Five Writers Celebrate Their Other Mother', 'https://images.isbndb.com/covers/26/96/9780345452696.jpg'), - ('0771020139', 'The New Modern: In Today''s Decorating The Magic Is In The Mix (Chatelaine Home Decor)', 'https://images.isbndb.com/covers/01/31/9780771020131.jpg'), - ('0384242146', 'Sometimes God Has A Kid''s Face', 'https://images.isbndb.com/covers/21/42/9780384242142.jpg'), - ('0754091392', 'Extra Virgin: Amongst The Olive Groves Of Liguria (Paragon Softcover Large Print Books)', 'https://images.isbndb.com/covers/13/94/9780754091394.jpg'), - ('0451626109', 'The Screwtape Letters (Mentor Series)', 'https://images.isbndb.com/covers/61/03/9780451626103.jpg'), - ('1556610343', 'The Key To Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/03/49/9781556610349.jpg'), - ('0871239906', 'A Light In Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/99/07/9780871239907.jpg'), - ('0871239396', 'The Return To Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/93/96/9780871239396.jpg'), - ('087123940X', 'A Daughter Of Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/94/02/9780871239402.jpg'), - ('0871238705', 'Gates Of Zion (Zion Chronicles, Bk. 1.)', 'https://images.isbndb.com/covers/87/02/9780871238702.jpg'), - ('0064430170', 'Goodnight Moon', 'https://images.isbndb.com/covers/01/73/9780064430173.jpg'), - ('0570060192', 'House On The Rock', 'https://images.isbndb.com/covers/01/92/9780570060192.jpg'), - ('0570060753', 'The Queen Who Saved Her People', 'https://images.isbndb.com/covers/07/58/9780570060758.jpg'), - ('0570060850', 'Clem, The Clumsy Camel: Matthew 2:1-12 For Children (Arch Book)', 'https://images.isbndb.com/covers/08/57/9780570060857.jpg'), - ('0020868901', 'The Great Divorce', 'https://images.isbndb.com/covers/89/03/9780020868903.jpg'), - ('0020442300', 'The Magician''s Nephew', 'https://images.isbndb.com/covers/23/01/9780020442301.jpg'), - ('0688121160', 'The Good Housekeeping Illustrated Guide To Women''s Health', 'https://images.isbndb.com/covers/11/67/9780688121167.jpg'), - ('0890438439', 'How To Clean Practically Anything', 'https://images.isbndb.com/covers/84/35/9780890438435.jpg'), - ('0743246128', 'What I Know Now : Simple Lessons Learned The Hard Way', 'https://images.isbndb.com/covers/61/25/9780743246125.jpg'), - ('0460875965', 'Jane Eyre (The Everyman Library)', 'https://images.isbndb.com/covers/59/67/9780460875967.jpg'), - ('0960394621', 'Creme De Colorado Cookbook', 'https://images.isbndb.com/covers/46/23/9780960394623.jpg'), - ('0960394648', 'Colorado Collage', 'https://images.isbndb.com/covers/46/47/9780960394647.jpg'), - ('0679893342', 'Berenstain Baby Bears My Trusty Car Seat', 'https://images.isbndb.com/covers/33/49/9780679893349.jpg'), - ('0883965054', 'The Language Of Marriage: A Blue Mountain Arts Collection (Language Of-- Series)', 'https://images.isbndb.com/covers/50/54/9780883965054.jpg'), - ('0805047905', 'Brown Bear, Brown Bear, What Do You See?', 'https://images.isbndb.com/covers/79/05/9780805047905.jpg'), - ('0399501517', 'Man Who Was Thursday', 'https://images.isbndb.com/covers/15/17/9780399501517.jpg'), - ('0849914965', 'Deeper Than Tears: Promises Of Comfort And Hope', 'https://images.isbndb.com/covers/49/66/9780849914966.jpg'), - ('0842335994', 'Unafraid: Mary (The Lineage Of Grace Series #5)', 'https://images.isbndb.com/covers/59/97/9780842335997.jpg'), - ('0842335978', 'Unshaken: Ruth (The Lineage Of Grace Series #3)', 'https://images.isbndb.com/covers/59/73/9780842335973.jpg'), - ('084233596X', 'Unashamed: Rahab (The Lineage Of Grace Series #2)', 'https://images.isbndb.com/covers/59/66/9780842335966.jpg'), - ('0842335986', 'Unspoken: Bathsheba (The Lineage Of Grace Series #4)', 'https://images.isbndb.com/covers/59/80/9780842335980.jpg'), - ('0886873428', 'Rose Is Rose: It Takes Two To Tickle', 'https://images.isbndb.com/covers/34/24/9780886873424.jpg'), - ('1850155011', 'To My Daughter, With Love (Suedels)', 'https://images.isbndb.com/covers/50/10/9781850155010.jpg'), - ('0397300069', 'The Story Of Little Black Sambo', 'https://images.isbndb.com/covers/00/68/9780397300068.jpg'), - ('0830729135', 'The Unquenchable Worshipper: Coming Back To The Heart Of Worship (Worship Series)', 'https://images.isbndb.com/covers/91/35/9780830729135.jpg'), - ('0871238829', 'When Breaks The Dawn (Canadian West)', 'https://images.isbndb.com/covers/88/25/9780871238825.jpg'), - ('0871236117', 'When Calls The Heart (Canadian West #1)', 'https://images.isbndb.com/covers/61/11/9780871236111.jpg'), - ('1556610866', 'Love Finds A Home (Love Comes Softly Series #8)', 'https://images.isbndb.com/covers/08/68/9781556610868.jpg'), - ('0871239795', 'Love''s Unfolding Dream (Love Comes Softly Series #6)', 'https://images.isbndb.com/covers/97/92/9780871239792.jpg'), - ('0871236168', 'Love''s Unending Legacy (Love Comes Softly Series #5)', 'https://images.isbndb.com/covers/61/66/9780871236166.jpg'), - ('0871234017', 'Love''s Abiding Joy (Love Comes Softly Series #4)', 'https://images.isbndb.com/covers/40/18/9780871234018.jpg'), - ('0871233150', 'Love''s Long Journey (Love Comes Softly Series #3)', 'https://images.isbndb.com/covers/31/58/9780871233158.jpg'), - ('0871233452', 'Love''s Enduring Promise (Love Comes Softly Series #2)', 'https://images.isbndb.com/covers/34/55/9780871233455.jpg'), - ('0871233428', 'Love Comes Softly, Book 1', 'https://images.isbndb.com/covers/34/24/9780871233424.jpg'), - ('1556610599', 'Spring''s Gentle Promise (Seasons Of The Heart #4)', 'https://images.isbndb.com/covers/05/92/9781556610592.jpg'), - ('1556610025', 'Winter Is Not Forever (Seasons Of The Heart #3)', 'https://images.isbndb.com/covers/00/28/9781556610028.jpg'), - ('0871239469', 'The Winds Of Autumn (Seasons Of The Heart)', 'https://images.isbndb.com/covers/94/64/9780871239464.jpg'), - ('0871234130', 'Once Upon A Summer (Seasons Of The Heart #1)', 'https://images.isbndb.com/covers/41/31/9780871234131.jpg'), - ('1578563933', 'Bad Girls Of The Bible: And What We Can Learn From Them', 'https://images.isbndb.com/covers/39/37/9781578563937.jpg'), - ('1561794600', 'It Takes Two To Tango', 'https://images.isbndb.com/covers/46/07/9781561794607.jpg'), - ('0310202302', 'A Grace Disguised: How The Soul Grows Through Loss', 'https://images.isbndb.com/covers/23/01/9780310202301.jpg'), - ('0395911680', 'Toestomper And The Caterpillars', 'https://images.isbndb.com/covers/16/86/9780395911686.jpg'), - ('1558531211', 'Life''s Little Instruction Book: 511 Suggestions, Observations, And Reminders On How To Live A Happy And Rewarding Life (Life''s Little Instruction Books)', 'https://images.isbndb.com/covers/12/15/9781558531215.jpg'), - ('0786882417', 'The Path: Creating Your Mission Statement For Work And For Life', 'https://images.isbndb.com/covers/24/10/9780786882410.jpg'), - ('0898401003', 'I Just Saw Jesus', 'https://images.isbndb.com/covers/10/04/9780898401004.jpg'), - ('0930014898', 'Wide My World, Narrow My Bed: Living And Loving The Single Life', 'https://images.isbndb.com/covers/48/96/9780930014896.jpg'), - ('0805461957', 'The Meaning Of A Man: Discovering Your Destiny As A Spiritual Champion', 'https://images.isbndb.com/covers/19/54/9780805461954.jpg'), - ('0195061551', 'Reason And Religious Belief: An Introduction To The Philosophy Of Religion', 'https://images.isbndb.com/covers/15/50/9780195061550.jpg'), - ('0801062500', 'Leadership In Christian Ministry', 'https://images.isbndb.com/covers/25/06/9780801062506.jpg'), - ('0802404529', 'Balancing The Christian Life', 'https://images.isbndb.com/covers/45/27/9780802404527.jpg'), - ('0064471063', 'The Horse And His Boy', 'https://images.isbndb.com/covers/10/60/9780064471060.jpg'), - ('0064409422', 'The Lion, The Witch And The Wardrobe (Full-Color Collector''s Edition)', 'https://images.isbndb.com/covers/94/21/9780064409421.jpg'), - ('0064471055', 'Prince Caspian (Narnia)', 'https://images.isbndb.com/covers/10/53/9780064471053.jpg'), - ('0064471071', 'The Voyage Of The "Dawn Treader"(The Chronicls Of Narnia, Book 5)', 'https://images.isbndb.com/covers/10/77/9780064471077.jpg'), - ('0818402539', 'Where Did I Come From?', 'https://images.isbndb.com/covers/25/31/9780818402531.jpg'), - ('0802490549', 'More Than Conquerors: Portraits Of Believers From All Walks Of Life', 'https://images.isbndb.com/covers/05/44/9780802490544.jpg'), - ('0800758382', 'The Calling: A Challenge To Walk The Narrow Road', 'https://images.isbndb.com/covers/83/87/9780800758387.jpg'), - ('0310209161', 'Breakfast For The Heart', 'https://images.isbndb.com/covers/91/64/9780310209164.jpg'), - ('0449238946', 'If Life Is A Bowl Of Cherries-What Am I Doing In The Pits?', 'https://images.isbndb.com/covers/89/43/9780449238943.jpg'), - ('0449237869', 'Just Wait Till You Have Children Of Your Own', 'https://images.isbndb.com/covers/78/61/9780449237861.jpg'), - ('0891092897', 'The Wounded Heart: Hope For Adult Victims Of Childhood Sexual Abuse', 'https://images.isbndb.com/covers/28/96/9780891092896.jpg'), - ('089107919X', 'This Present Darkness (10th Anniversary Limited Edition)', 'https://images.isbndb.com/covers/91/94/9780891079194.jpg'), - ('1561793620', 'The Triumphant Marriage', 'https://images.isbndb.com/covers/36/24/9781561793624.jpg'), - ('1400040930', 'Of Paradise And Power: America And Europe In The New World Order', 'https://images.isbndb.com/covers/09/33/9781400040933.jpg'), - ('0842319476', 'Unveiled: Tamar (The Lineage Of Grace Series #1) (No 1)', 'https://images.isbndb.com/covers/94/78/9780842319478.jpg'), - ('0824519671', 'Here And Now: Living In The Spirit', 'https://images.isbndb.com/covers/96/74/9780824519674.jpg'), - ('084230052X', 'The Atonement Child', 'https://images.isbndb.com/covers/05/20/9780842300520.jpg'), - ('0310212146', 'The Life You''ve Always Wanted: Spiritual Disciplines For Ordinary People', 'https://images.isbndb.com/covers/21/40/9780310212140.jpg'), - ('0684842874', 'I Know Just What You Mean: The Power Of Friendship In Women''s Lives', 'https://images.isbndb.com/covers/28/75/9780684842875.jpg'), - ('1576832961', 'Renovation Of The Heart: Putting On The Character Of Christ', 'https://images.isbndb.com/covers/29/67/9781576832967.jpg'), - ('1561790206', 'The Language Of Love: With Study Guide', 'https://images.isbndb.com/covers/02/03/9781561790203.jpg'), - ('0800792149', 'He''s My Brother: Former Racial Foes Offer Strategy For Reconciliation', 'https://images.isbndb.com/covers/21/45/9780800792145.jpg'), - ('0842377506', 'A Voice In The Wind (Mark Of The Lion #1)', 'https://images.isbndb.com/covers/75/08/9780842377508.jpg'), - ('0842313079', 'An Echo In The Darkness (Mark Of The Lion #2)', 'https://images.isbndb.com/covers/30/70/9780842313070.jpg'), - ('0842339760', 'As Sure As The Dawn (Mark Of The Lion #3)', 'https://images.isbndb.com/covers/97/66/9780842339766.jpg'), - ('1578561493', 'Intimate Issues: 21 Questions Christian Women Ask About Sex', 'https://images.isbndb.com/covers/14/90/9781578561490.jpg'), - ('1556613369', 'Majestic Is Your Name: A 40-Day Journey In The Company Of Theresa Of Avila: Devotional Readings (Rekindling The Inner Fire)', 'https://images.isbndb.com/covers/33/64/9781556613364.jpg'), - ('076240759X', 'Girlfriends', 'https://images.isbndb.com/covers/75/90/9780762407590.jpg'), - ('0452283396', 'Grace', 'https://images.isbndb.com/covers/33/98/9780452283398.jpg'), - ('0842335722', 'Leota''s Garden', 'https://images.isbndb.com/covers/57/20/9780842335720.jpg'), - ('9999364497', 'The Middle Button', 'https://images.isbndb.com/covers/44/92/9789999364492.jpg'), - ('1576736563', 'Three Weddings And A Giggle', 'https://images.isbndb.com/covers/65/62/9781576736562.jpg'), - ('0802438059', 'Not My Will', 'https://images.isbndb.com/covers/80/58/9780802438058.jpg'), - ('0553243470', 'Papa''s Wife', 'https://images.isbndb.com/covers/34/75/9780553243475.jpg'), - ('0891096078', 'The Personal Touch: Encouraging Others Through Hospitality', 'https://images.isbndb.com/covers/60/78/9780891096078.jpg'), - ('0670894877', 'Jerusalem''s Heart (Zion Legacy)', 'https://images.isbndb.com/covers/48/71/9780670894871.jpg'), - ('084231802X', 'Intimate Allies', 'https://images.isbndb.com/covers/80/20/9780842318020.jpg'), - ('0310521807', 'Honest To God? Becoming An Authentic Christian', 'https://images.isbndb.com/covers/18/08/9780310521808.jpg'), - ('0881843059', 'Viper''s Tangle', 'https://images.isbndb.com/covers/30/57/9780881843057.jpg'), - ('0849905273', 'You Bring The Confetti', 'https://images.isbndb.com/covers/52/78/9780849905278.jpg'), - ('0879056096', 'Lake Powell: A Different Light', 'https://images.isbndb.com/covers/60/94/9780879056094.jpg'), - ('0310224713', 'The Heart Of The Artist', 'https://images.isbndb.com/covers/47/16/9780310224716.jpg'), - ('0842321349', 'Letters To A Young Bride', 'https://images.isbndb.com/covers/13/41/9780842321341.jpg'), - ('0880701749', 'Love For A Lifetime: Building A Marriage That Will Go The Distance', 'https://images.isbndb.com/covers/17/47/9780880701747.jpg'), - ('1567314619', 'It''s A Chick Thing', 'https://images.isbndb.com/covers/46/18/9781567314618.jpg'), - ('0785280669', 'Shiloh Autumn: A Novel', 'https://images.isbndb.com/covers/06/68/9780785280668.jpg'), - ('0785280693', 'Ashes Of Remembrance (Galway Chronicles, Book 3)', 'https://images.isbndb.com/covers/06/99/9780785280699.jpg'), - ('0785280766', 'All Rivers To The Sea (Galway Chronicles, Book 4)', 'https://images.isbndb.com/covers/07/67/9780785280767.jpg'), - ('0785280677', 'Only The River Runs Free (Galway Chronicles, Book 1)', 'https://images.isbndb.com/covers/06/75/9780785280675.jpg'), - ('0842375066', 'First Light (A. D. Chronicles, Book 1)', 'https://images.isbndb.com/covers/50/61/9780842375061.jpg'), - ('0785280685', 'Of Men And Of Angels (Galway Chronicles, Book 2)', 'https://images.isbndb.com/covers/06/82/9780785280682.jpg'), - ('0785281967', 'The Twilight Of Courage: A Novel', 'https://images.isbndb.com/covers/19/62/9780785281962.jpg'), - ('0670030120', 'The Jerusalem Scrolls (The Zion Legacy, Book 4)', 'https://images.isbndb.com/covers/01/25/9780670030125.jpg'), - ('0670030848', 'Jerusalem''s Hope (Zion Legacy)', 'https://images.isbndb.com/covers/08/42/9780670030842.jpg'), - ('0684718669', 'Too Late The Phalarope', 'https://images.isbndb.com/covers/86/68/9780684718668.jpg'), - ('0688151981', 'We Are Our Mothers'' Daughters', 'https://images.isbndb.com/covers/19/80/9780688151980.jpg'), - ('1573226254', 'Woe Is I: The Grammarphobe''s Guide To Better English In Plain English', 'https://images.isbndb.com/covers/62/57/9781573226257.jpg'), - ('0517585073', 'Bridal Bouquet: Penhaligon''s Scented Treasury Of Verse And Prose', 'https://images.isbndb.com/covers/50/78/9780517585078.jpg'), - ('019505928X', 'A Sand County Almanac: And Sketches Here And There (Outdoor Essays & Reflections)', 'https://images.isbndb.com/covers/92/81/9780195059281.jpg'), - ('0395071763', 'I Like You', 'https://images.isbndb.com/covers/17/62/9780395071762.jpg'), - ('0944641393', 'A View Of Wall Street From The Seventh Floor', 'https://images.isbndb.com/covers/13/92/9780944641392.jpg'), - ('1572430753', 'Thoughts On Success: Thoughts And Reflections From History''s Great Thinkers (Forbes Leadership Library)', 'https://images.isbndb.com/covers/07/54/9781572430754.jpg'), - ('0964920107', 'Wall Street Wit & Wisdom', 'https://images.isbndb.com/covers/01/01/9780964920101.jpg'), - ('0787902691', 'The Leadership Challenge: How To Keep Getting Extraordinary Things Done In Organizations', 'https://images.isbndb.com/covers/26/98/9780787902698.jpg'), - ('1561794058', 'After The Boxes Are Unpacked (Renewing The Heart)', 'https://images.isbndb.com/covers/40/58/9781561794058.jpg'), - ('0943703034', 'Secrets Of Effective Leadership', 'https://images.isbndb.com/covers/30/39/9780943703039.jpg'), - ('0918684544', 'Above Las Vegas: Its Canyons And Mountains', 'https://images.isbndb.com/covers/45/47/9780918684547.jpg'), - ('0064400808', 'On The Way Home: The Diary Of A Trip From South Dakota To Mansfield, Missouri, In 1894', 'https://images.isbndb.com/covers/08/00/9780064400800.jpg'), - ('0064400816', 'West From Home: Letters Of Laura Ingalls Wilder, San Francisco, 1915', 'https://images.isbndb.com/covers/08/17/9780064400817.jpg'), - ('0064400085', 'These Happy Golden Years (Little House)', 'https://images.isbndb.com/covers/00/84/9780064400084.jpg'), - ('0064400077', 'Little Town On The Prairie', 'https://images.isbndb.com/covers/00/77/9780064400077.jpg'), - ('0064400069', 'The Long Winter (Little House)', 'https://images.isbndb.com/covers/00/60/9780064400060.jpg'), - ('0064400050', 'By The Shores Of Silver Lake (Little House)', 'https://images.isbndb.com/covers/00/53/9780064400053.jpg'), - ('0064400042', 'On The Banks Of Plum Creek (Little House, No 3)', 'https://images.isbndb.com/covers/00/46/9780064400046.jpg'), - ('1576737799', 'The Mystery Of Marriage: Meditations On The Miracle', 'https://images.isbndb.com/covers/77/98/9781576737798.jpg'), - ('0842307303', 'The Ethics Of Smuggling', 'https://images.isbndb.com/covers/73/07/9780842307307.jpg'), - ('0814402178', 'Voices Of Diversity: Real People Talk About Problems And Solutions In A Workplace Where Everyone Is Not Alike', 'https://images.isbndb.com/covers/21/77/9780814402177.jpg'), - ('0684868113', 'Mary Farrell''s Beyond The Basics: How To Invest Your Money, Now That You Know A Thing Or Two', 'https://images.isbndb.com/covers/81/10/9780684868110.jpg'), - ('0308800583', 'The Christmas Cupboard', 'https://images.isbndb.com/covers/05/88/9780308800588.jpg'), - ('0802787673', 'Mud Pies And Other Recipes: A Cookbook For Dolls', 'https://images.isbndb.com/covers/76/75/9780802787675.jpg'), - ('0849913241', 'The Applause Of Heaven', 'https://images.isbndb.com/covers/32/42/9780849913242.jpg'), - ('1564772241', 'Stamp With Style: More Than 50 Creative Cards And Projects', 'https://images.isbndb.com/covers/22/44/9781564772244.jpg'), - ('0696000121', 'Better Homes And Gardens New Cook Book (Five -5- Ring Binder, 10th Edition)', 'https://images.isbndb.com/covers/01/26/9780696000126.jpg'), - ('0028630092', 'Betty Crocker''s New Cookbook', 'https://images.isbndb.com/covers/00/90/9780028630090.jpg'), - ('0452279232', 'The Joy Of Cooking Comb-Bound Edition: Revised And Expanded', 'https://images.isbndb.com/covers/92/30/9780452279230.jpg'), - ('1561796344', 'Great Stories Remembered II', 'https://images.isbndb.com/covers/63/42/9781561796342.jpg'), - ('0060669667', 'Devotional Classics: Selected Readings For Individuals And Groups', 'https://images.isbndb.com/covers/96/69/9780060669669.jpg'), - ('1569550913', 'Marriage Moments', 'https://images.isbndb.com/covers/09/15/9781569550915.jpg'), - ('0025196359', 'Barbara Bush: A Memoir', 'https://images.isbndb.com/covers/63/53/9780025196353.jpg'), - ('0842301801', 'The Bride''s Book Of Ideas', 'https://images.isbndb.com/covers/18/00/9780842301800.jpg'), - ('1580081916', 'Chevys Fresh Mex Cookbook', 'https://images.isbndb.com/covers/19/17/9781580081917.jpg'), - ('1561790419', 'Once-A-Month Cooking: A Time-Saving, Budget-Stretching Plan To Prepare Delicious Meals', 'https://images.isbndb.com/covers/04/18/9781561790418.jpg'), - ('0802445241', 'Katie', 'https://images.isbndb.com/covers/52/47/9780802445247.jpg'), - ('1558672540', 'Fondue And Hot Dips (Nitty Gritty Cookbooks)', 'https://images.isbndb.com/covers/25/43/9781558672543.jpg'), - ('0440566142', 'The Original Preppy Cookbook', 'https://images.isbndb.com/covers/61/44/9780440566144.jpg'), - ('1561381527', 'Tea Time: Tradition, Presentation, And Recipes (Running Press Miniature Editions)', 'https://images.isbndb.com/covers/15/24/9781561381524.jpg'), - ('0891095365', 'Beside Still Waters', 'https://images.isbndb.com/covers/53/61/9780891095361.jpg'), - ('0613377095', 'Little Men (Turtleback School & Library Binding Edition) (Puffin Classics)', 'https://images.isbndb.com/covers/70/96/9780613377096.jpg'), - ('0385054483', '100 Great Operas And Their Stories: Act-By-Act Synopses', 'https://images.isbndb.com/covers/44/85/9780385054485.jpg'), - ('0028634691', 'Betty Crocker''s Slow Cooker Cookbook', 'https://images.isbndb.com/covers/46/92/9780028634692.jpg'), - ('0028630238', 'Betty Crocker''s Best Bread Machine Cookbook: The Goodness Of Homemade Bread The Easy Way', 'https://images.isbndb.com/covers/02/36/9780028630236.jpg'), - ('0070479321', 'The Norman Rockwell Illustrated Cookbook: Classic American Recipes', 'https://images.isbndb.com/covers/93/26/9780070479326.jpg'), - ('037602237X', 'Easy Basics For Good Cooking', 'https://images.isbndb.com/covers/23/70/9780376022370.jpg'), - ('0060169613', '365 Ways To Cook Chinese', 'https://images.isbndb.com/covers/96/19/9780060169619.jpg'), - ('0962478407', 'Delitefully Healthmark... Cooking For The Health Of It!', 'https://images.isbndb.com/covers/84/06/9780962478406.jpg'), - ('0962478415', 'Cooking For A Healthier Ever After', 'https://images.isbndb.com/covers/84/13/9780962478413.jpg'), - ('0802413587', 'Amazing Faith: Stories Of Christians In Defining Moments', 'https://images.isbndb.com/covers/35/81/9780802413581.jpg'), - ('0849916747', 'Strong Women, Soft Hearts', 'https://images.isbndb.com/covers/67/48/9780849916748.jpg'), - ('0842335706', 'The Last Sin Eater', 'https://images.isbndb.com/covers/57/06/9780842335706.jpg'), - ('0871236109', 'The Wedding Dress (The Wedding Album Series #1)', 'https://images.isbndb.com/covers/61/04/9780871236104.jpg'), - ('087123615X', 'With This Ring (The Wedding Album Series #2)', 'https://images.isbndb.com/covers/61/59/9780871236159.jpg'), - ('0842378480', 'We''re Finally Alone—Now What Do We Do?: More Than 500 Thought-Provoking Questions To Energize Your Marriage', 'https://images.isbndb.com/covers/84/82/9780842378482.jpg'), - ('0842342710', 'The Scarlet Thread', 'https://images.isbndb.com/covers/27/11/9780842342711.jpg'), - ('0525946756', 'Skipping Towards Gomorrah: The Seven Deadly Sins And The Pursuit Of Happiness In America', 'https://images.isbndb.com/covers/67/55/9780525946755.jpg'), - ('0960394672', 'Colorado Colore: A Palate Of Tastes (Celebrating Twenty Five Years Of Culinary Artistry)', 'https://images.isbndb.com/covers/46/78/9780960394678.jpg'), - ('0064610446', 'Errors In English And Ways To Correct Them: Fourth Edition', 'https://images.isbndb.com/covers/04/45/9780064610445.jpg'), - ('0805208690', 'A SCRAP OF TIME (Schocken Classics)', 'https://images.isbndb.com/covers/86/96/9780805208696.jpg'), - ('0671021354', 'Child Of The Hunt (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/13/51/9780671021351.jpg'), - ('1556611536', 'The Calling Of Emily Evans', 'https://images.isbndb.com/covers/15/37/9781556611537.jpg'), - ('1556612257', 'A Woman Named Damaris (Women Of The West (Paperback Bethany House))', 'https://images.isbndb.com/covers/22/51/9781556612251.jpg'), - ('155661683X', 'A Gown Of Spanish Lace (Women Of The West #11)', 'https://images.isbndb.com/covers/68/39/9781556616839.jpg'), - ('0061043850', 'Freedom Of Simplicity', 'https://images.isbndb.com/covers/38/57/9780061043857.jpg'), - ('089480751X', 'Dairy Hollow House Soup & Bread Cookbook', 'https://images.isbndb.com/covers/75/10/9780894807510.jpg'), - ('0146000501', 'His Mouth Will Taste Of Wormwood (Penguin 60s)', 'https://images.isbndb.com/covers/05/08/9780146000508.jpg'), - ('0670894885', 'Jane Austen (Penguin Lives)', 'https://images.isbndb.com/covers/48/88/9780670894888.jpg'), - ('0441822134', 'Traveller In Time', 'https://images.isbndb.com/covers/21/33/9780441822133.jpg'), - ('0195101405', 'Adventures Of Huckleberry Finn (1885) (Oxford Mark Twain)', 'https://images.isbndb.com/covers/14/09/9780195101409.jpg'), - ('0679755179', 'Photocopies: Encounters', 'https://images.isbndb.com/covers/51/73/9780679755173.jpg'), - ('0394569393', 'Lilac And Flag: An Old Wives'' Tale Of A City', 'https://images.isbndb.com/covers/93/90/9780394569390.jpg'), - ('0851191894', 'Summer Bird Cage', 'https://images.isbndb.com/covers/18/98/9780851191898.jpg'), - ('080410364X', 'The Needle''s Eye', 'https://images.isbndb.com/covers/36/40/9780804103640.jpg'), - ('0452262828', 'The Garrick Year', 'https://images.isbndb.com/covers/28/29/9780452262829.jpg'), - ('0553262106', 'The Golden Notebook', 'https://images.isbndb.com/covers/21/00/9780553262100.jpg'), - ('0631189246', 'Why War: Psychoanalysis, Politics And The Return To Melanie Klein (Bucknell Lectures In Literary Theory)', 'https://images.isbndb.com/covers/92/44/9780631189244.jpg'), - ('0671668781', 'Color Purple', 'https://images.isbndb.com/covers/87/85/9780671668785.jpg'), - ('0151731527', 'Possessing The Secret Of Joy', 'https://images.isbndb.com/covers/15/27/9780151731527.jpg'), - ('0671201565', 'The Evolution Of Physics', 'https://images.isbndb.com/covers/15/62/9780671201562.jpg'), - ('039454272X', 'Flaubert''s Parrot', 'https://images.isbndb.com/covers/27/20/9780394542720.jpg'), - ('0553208187', 'Where The Jackals Howl And Other Stories', 'https://images.isbndb.com/covers/81/84/9780553208184.jpg'), - ('0156907720', 'Touch The Water, Touch The Wind', 'https://images.isbndb.com/covers/77/29/9780156907729.jpg'), - ('0151001529', 'Don''t Call It Night', 'https://images.isbndb.com/covers/15/21/9780151001521.jpg'), - ('1840680113', 'Dead Brides : Vampire Tales', 'https://images.isbndb.com/covers/01/19/9781840680119.jpg'), - ('0749399554', 'The Trial', 'https://images.isbndb.com/covers/95/59/9780749399559.jpg'), - ('0385240899', 'The Floating Opera And The End Of The Road', 'https://images.isbndb.com/covers/08/95/9780385240895.jpg'), - ('0786881488', 'Love: Ten Poems', 'https://images.isbndb.com/covers/14/82/9780786881482.jpg'), - ('015626028X', 'The Diary Of Anais Nin, Vol. 4: 1944-1947', 'https://images.isbndb.com/covers/02/82/9780156260282.jpg'), - ('0679761276', 'Representations Of The Intellectual: The 1993 Reith Lectures', 'https://images.isbndb.com/covers/12/73/9780679761273.jpg'), - ('0571105653', 'Selected Prose', 'https://images.isbndb.com/covers/56/56/9780571105656.jpg'), - ('0816621144', 'Manna: For The Mandelstams For The Mandelas (Exxon Lecture Series)', 'https://images.isbndb.com/covers/11/49/9780816621149.jpg'), - ('0802135269', 'Steps', 'https://images.isbndb.com/covers/52/61/9780802135261.jpg'), - ('0613073304', 'Being There', 'https://images.isbndb.com/covers/33/01/9780613073301.jpg'), - ('0803263430', 'The Book Of Promethea (European Women Writers)', 'https://images.isbndb.com/covers/34/37/9780803263437.jpg'), - ('9029532068', 'De Visualisering Van De Pijn Heelt De Wond (Dutch Edition)', 'https://images.isbndb.com/covers/20/68/9789029532068.jpg'), - ('067182306X', 'UNSPEAK PRACTICES', 'https://images.isbndb.com/covers/30/61/9780671823061.jpg'), - ('0316082511', 'The Last Voyage Of Somebody The Sailor', 'https://images.isbndb.com/covers/25/18/9780316082518.jpg'), - ('0415049296', 'The Hélène Cixous Reader', 'https://images.isbndb.com/covers/92/90/9780415049290.jpg'), - ('0892813695', 'The Pagan Book Of Days: A Guide To The Festivals, Traditions, And Sacred Days Of The Year', 'https://images.isbndb.com/covers/36/98/9780892813698.jpg'), - ('0936703008', 'Gemstones And Color (and A Whole Lot More): For Better Health Healing Happiness', 'https://images.isbndb.com/covers/30/08/9780936703008.jpg'), - ('0590409662', 'Rent A Third Grader (Little Apple)', 'https://images.isbndb.com/covers/96/67/9780590409667.jpg'), - ('0440800544', 'A Wrinkle In Time', 'https://images.isbndb.com/covers/05/45/9780440800545.jpg'), - ('0590624008', 'Santa Paws (#1)', 'https://images.isbndb.com/covers/40/08/9780590624008.jpg'), - ('0688136230', 'The Deer Stand', 'https://images.isbndb.com/covers/62/39/9780688136239.jpg'), - ('0836204158', 'It''s Obvious You Won''t Survive By Your Wits Alone', 'https://images.isbndb.com/covers/41/55/9780836204155.jpg'), - ('0345359313', 'Winter: A Novel Of A Berlin Family', 'https://images.isbndb.com/covers/93/15/9780345359315.jpg'), - ('1560545151', 'The Carnaby Curse', 'https://images.isbndb.com/covers/51/56/9781560545156.jpg'), - ('0449240193', 'Strangers In Company', 'https://images.isbndb.com/covers/01/99/9780449240199.jpg'), - ('0449241491', 'Bright Flows The River', 'https://images.isbndb.com/covers/14/93/9780449241493.jpg'), - ('0380641623', 'Acceptable Losses', 'https://images.isbndb.com/covers/16/28/9780380641628.jpg'), - ('0449231984', 'The Pride Of The Peacock', 'https://images.isbndb.com/covers/19/82/9780449231982.jpg'), - ('0449214214', 'House Of A Thousand Lanterns', 'https://images.isbndb.com/covers/42/13/9780449214213.jpg'), - ('0451402472', 'Flowers Of Betrayal (Onyx)', 'https://images.isbndb.com/covers/24/79/9780451402479.jpg'), - ('0451177010', 'Shaman (Signet)', 'https://images.isbndb.com/covers/70/18/9780451177018.jpg'), - ('0373160623', 'Verdict Of Love', 'https://images.isbndb.com/covers/06/24/9780373160624.jpg'), - ('0451114523', 'The Hillside Strangler', 'https://images.isbndb.com/covers/45/25/9780451114525.jpg'), - ('0345343387', 'Noninterference', 'https://images.isbndb.com/covers/33/83/9780345343383.jpg'), - ('0380716453', 'A Dedicated Man (Inspector Banks Mysteries)', 'https://images.isbndb.com/covers/64/56/9780380716456.jpg'), - ('0373074794', 'Fundamental Things Apply (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/47/92/9780373074792.jpg'), - ('0553225774', 'Empire', 'https://images.isbndb.com/covers/57/78/9780553225778.jpg'), - ('0449244172', 'SINS OF THE FATHERS-5', 'https://images.isbndb.com/covers/41/73/9780449244173.jpg'), - ('0671742906', 'Survivors (Star Trek The Next Generation, No 4)', 'https://images.isbndb.com/covers/29/04/9780671742904.jpg'), - ('0345296591', 'Splinter Of Mind''s Eye', 'https://images.isbndb.com/covers/65/97/9780345296597.jpg'), - ('0451130987', 'Fatal Vision (Signet)', 'https://images.isbndb.com/covers/09/83/9780451130983.jpg'), - ('0380822970', 'While Passion Sleeps', 'https://images.isbndb.com/covers/29/73/9780380822973.jpg'), - ('0446906492', 'The Stinsons', 'https://images.isbndb.com/covers/64/94/9780446906494.jpg'), - ('044920703X', 'One More Sunday', 'https://images.isbndb.com/covers/70/31/9780449207031.jpg'), - ('0553269321', 'Echoes In The Darkness', 'https://images.isbndb.com/covers/93/21/9780553269321.jpg'), - ('1557732108', 'Nobody Lives Forever', 'https://images.isbndb.com/covers/21/01/9781557732101.jpg'), - ('0671708368', 'Fortune''s Light (Star Trek The Next Generation, No 15)', 'https://images.isbndb.com/covers/83/68/9780671708368.jpg'), - ('0812522729', 'Children Of The Night: A Diana Tregarde Investigation', 'https://images.isbndb.com/covers/27/23/9780812522723.jpg'), - ('0380769514', 'Hall Pass (An Avon Flare Book)', 'https://images.isbndb.com/covers/95/13/9780380769513.jpg'), - ('0553100777', 'Trinity', 'https://images.isbndb.com/covers/07/78/9780553100778.jpg'), - ('006080713X', 'Some Tame Gazelle', 'https://images.isbndb.com/covers/71/39/9780060807139.jpg'), - ('0226706702', 'The Little Community And Peasant Society And Culture (Midway Reprint)', 'https://images.isbndb.com/covers/67/02/9780226706702.jpg'), - ('0449239977', 'Shosha', 'https://images.isbndb.com/covers/99/71/9780449239971.jpg'), - ('0345355245', 'Metaconcert (Intervention) (Vol 2)', 'https://images.isbndb.com/covers/52/49/9780345355249.jpg'), - ('0881845434', 'The Demoniacs', 'https://images.isbndb.com/covers/54/33/9780881845433.jpg'), - ('0345314867', 'The Summer Of Katya', 'https://images.isbndb.com/covers/48/64/9780345314864.jpg'), - ('0425101797', 'Dreams Are Not Enough', 'https://images.isbndb.com/covers/17/97/9780425101797.jpg'), - ('0671430653', 'NOCTURNAL', 'https://images.isbndb.com/covers/06/58/9780671430658.jpg'), - ('0553268074', 'The Beet Queen', 'https://images.isbndb.com/covers/80/72/9780553268072.jpg'), - ('0380761963', 'Ufo Crash At Roswell', 'https://images.isbndb.com/covers/19/68/9780380761968.jpg'), - ('0671431412', 'Merv, An Autobiography', 'https://images.isbndb.com/covers/14/19/9780671431419.jpg'), - ('0590965379', '101 Back To School Jokes (rev)', 'https://images.isbndb.com/covers/53/78/9780590965378.jpg'), - ('038045534X', 'Mozart', 'https://images.isbndb.com/covers/53/48/9780380455348.jpg'), - ('0891291512', 'Beyond The Cross And The Switchblade', 'https://images.isbndb.com/covers/15/10/9780891291510.jpg'), - ('0440156637', 'My Mother My Self: The Daughter''s Search For Identity', 'https://images.isbndb.com/covers/66/35/9780440156635.jpg'), - ('0446814377', 'The Forest And The Fort: The City In The Dawn', 'https://images.isbndb.com/covers/43/79/9780446814379.jpg'), - ('0812557042', 'The Glass Warrior (Demon Crown Trilogy, Book 1)', 'https://images.isbndb.com/covers/70/46/9780812557046.jpg'), - ('0451453492', 'Warriors For The Working Day (Starcruiser Shenandoah)', 'https://images.isbndb.com/covers/34/95/9780451453495.jpg'), - ('0765342308', 'Briar Rose', 'https://images.isbndb.com/covers/23/00/9780765342300.jpg'), - ('0671827847', 'Eyes Of Darkness', 'https://images.isbndb.com/covers/78/47/9780671827847.jpg'), - ('0671499335', 'Cold Mind', 'https://images.isbndb.com/covers/93/34/9780671499334.jpg'), - ('0345248686', 'The Long Arm Of Gil Hamilton', 'https://images.isbndb.com/covers/86/88/9780345248688.jpg'), - ('0553261797', 'California Thriller', 'https://images.isbndb.com/covers/17/90/9780553261790.jpg'), - ('0441240879', 'Counter Attack (The Fleet, Book 2)', 'https://images.isbndb.com/covers/08/76/9780441240876.jpg'), - ('0553225227', 'Voyagers', 'https://images.isbndb.com/covers/52/28/9780553225228.jpg'), - ('0345346505', 'Woman''s Place', 'https://images.isbndb.com/covers/65/06/9780345346506.jpg'), - ('0345349474', 'Sideswipe', 'https://images.isbndb.com/covers/94/77/9780345349477.jpg'), - ('0440161061', 'Max', 'https://images.isbndb.com/covers/10/66/9780440161066.jpg'), - ('0671818856', 'Betsy', 'https://images.isbndb.com/covers/88/52/9780671818852.jpg'), - ('0451172272', 'Pomp And Circumstance (Signet)', 'https://images.isbndb.com/covers/22/73/9780451172273.jpg'), - ('0671648144', 'If There Be Thorns (Dollanger Saga)', 'https://images.isbndb.com/covers/81/45/9780671648145.jpg'), - ('0451165896', 'Growing Up (Signet)', 'https://images.isbndb.com/covers/58/93/9780451165893.jpg'), - ('0553116606', 'The Amityville Horror', 'https://images.isbndb.com/covers/66/01/9780553116601.jpg'), - ('0804112592', 'Season Of The Monsoon', 'https://images.isbndb.com/covers/25/98/9780804112598.jpg'), - ('0553122061', 'Holcroft Covenant', 'https://images.isbndb.com/covers/20/60/9780553122060.jpg'), - ('0553235478', 'Topaz', 'https://images.isbndb.com/covers/54/70/9780553235470.jpg'), - ('0671834096', 'The Electric Horseman', 'https://images.isbndb.com/covers/40/98/9780671834098.jpg'), - ('0874313759', 'Hells Feast', 'https://images.isbndb.com/covers/37/58/9780874313758.jpg'), - ('0449232859', 'North From Rome', 'https://images.isbndb.com/covers/28/59/9780449232859.jpg'), - ('0385007728', 'Broken Image', 'https://images.isbndb.com/covers/77/26/9780385007726.jpg'), - ('0505516101', 'Wicked Widow', 'https://images.isbndb.com/covers/61/07/9780505516107.jpg'), - ('0523009933', 'Forests Of Gleor: Richard Blade Series No 22', 'https://images.isbndb.com/covers/99/33/9780523009933.jpg'), - ('0886770041', 'The Vizier''s Second Daughter', 'https://images.isbndb.com/covers/00/44/9780886770044.jpg'), - ('0020436904', 'The Valley Of The Fox (Collier Spymasters Series)', 'https://images.isbndb.com/covers/69/04/9780020436904.jpg'), - ('0425129004', 'Looking Deep', 'https://images.isbndb.com/covers/90/05/9780425129005.jpg'), - ('0345286480', 'Deathwind', 'https://images.isbndb.com/covers/64/82/9780345286482.jpg'), - ('0446824631', 'Other Side Of The Mountain, The - Part 2', 'https://images.isbndb.com/covers/46/37/9780446824637.jpg'), - ('0553256025', 'The Proud Tower: A Portrait Of The World Before The War: 1890-1914', 'https://images.isbndb.com/covers/60/24/9780553256024.jpg'), - ('0425050017', 'Tenth Commandment', 'https://images.isbndb.com/covers/00/19/9780425050019.jpg'), - ('0881840653', 'Fog Of Doubt', 'https://images.isbndb.com/covers/06/50/9780881840650.jpg'), - ('0440191831', 'Twelve Deaths Of Christmas', 'https://images.isbndb.com/covers/18/34/9780440191834.jpg'), - ('055325846X', 'Trinity', 'https://images.isbndb.com/covers/84/62/9780553258462.jpg'), - ('0449242390', 'STORRINGTON PAPERS', 'https://images.isbndb.com/covers/23/91/9780449242391.jpg'), - ('0452252733', 'Fanny (Plume)', 'https://images.isbndb.com/covers/27/38/9780452252738.jpg'), - ('0345319540', 'DEADLOCK', 'https://images.isbndb.com/covers/95/48/9780345319548.jpg'), - ('0393311198', 'The Seven-Per-Cent Solution: Being A Reprint From The Reminiscences Of John H. Watson, M.D. (Norton Paperback)', 'https://images.isbndb.com/covers/11/98/9780393311198.jpg'), - ('0515040460', 'The Titans (The American Bicentennial Series, Vol. 5)', 'https://images.isbndb.com/covers/04/63/9780515040463.jpg'), - ('0061090417', 'City Of Gold', 'https://images.isbndb.com/covers/04/17/9780061090417.jpg'), - ('0440178924', 'Second Generation', 'https://images.isbndb.com/covers/89/27/9780440178927.jpg'), - ('0553251139', 'The Fourth Protocol', 'https://images.isbndb.com/covers/11/35/9780553251135.jpg'), - ('0373160674', 'Public Affair', 'https://images.isbndb.com/covers/06/79/9780373160679.jpg'), - ('0671451979', 'The Second Coming', 'https://images.isbndb.com/covers/19/74/9780671451974.jpg'), - ('0380010038', 'The Cay', 'https://images.isbndb.com/covers/00/35/9780380010035.jpg'), - ('0553245015', 'Emergence', 'https://images.isbndb.com/covers/50/11/9780553245011.jpg'), - ('0451147715', 'Victims', 'https://images.isbndb.com/covers/77/14/9780451147714.jpg'), - ('067100252X', 'Tularosa', 'https://images.isbndb.com/covers/25/27/9780671002527.jpg'), - ('0770104835', 'Spotted Hemlock', 'https://images.isbndb.com/covers/48/32/9780770104832.jpg'), - ('0380712113', 'Drover And The Zebras', 'https://images.isbndb.com/covers/21/13/9780380712113.jpg'), - ('0449125092', 'The Lonely Silver Rain', 'https://images.isbndb.com/covers/50/90/9780449125090.jpg'), - ('0373071647', 'Reason To Believe (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/16/47/9780373071647.jpg'), - ('0449209709', 'San Andreas', 'https://images.isbndb.com/covers/97/07/9780449209707.jpg'), - ('0872169324', 'Damocles Sword', 'https://images.isbndb.com/covers/93/26/9780872169326.jpg'), - ('0446300292', 'Amityville Horror 2', 'https://images.isbndb.com/covers/02/92/9780446300292.jpg'), - ('0505515253', 'Flower Of Love', 'https://images.isbndb.com/covers/52/54/9780505515254.jpg'), - ('0340337923', 'Gathering Wolves (Coronet Books)', 'https://images.isbndb.com/covers/79/29/9780340337929.jpg'), - ('0553255509', 'The Rubber Band', 'https://images.isbndb.com/covers/55/08/9780553255508.jpg'), - ('0449212785', 'Silversword', 'https://images.isbndb.com/covers/27/83/9780449212783.jpg'), - ('0515086703', 'My Lady Rogue', 'https://images.isbndb.com/covers/67/06/9780515086706.jpg'), - ('0882077449', 'Building Up One Another', 'https://images.isbndb.com/covers/74/44/9780882077444.jpg'), - ('0843176989', 'Shrek Mad Libs', 'https://images.isbndb.com/covers/69/88/9780843176988.jpg'), - ('0449205037', 'Plague Dogs', 'https://images.isbndb.com/covers/50/37/9780449205037.jpg'), - ('0553562940', 'Uncharted Territory', 'https://images.isbndb.com/covers/29/41/9780553562941.jpg'), - ('0553230360', 'Beasts', 'https://images.isbndb.com/covers/03/69/9780553230369.jpg'), - ('0345423631', 'Night Of The Wolf (Legends Of The Wolves, Book 2)', 'https://images.isbndb.com/covers/36/34/9780345423634.jpg'), - ('0812549872', 'Human Error', 'https://images.isbndb.com/covers/98/74/9780812549874.jpg'), - ('0743488318', 'Darkness And Dawn', 'https://images.isbndb.com/covers/83/10/9780743488310.jpg'), - ('0441525628', 'Mercycle', 'https://images.isbndb.com/covers/56/21/9780441525621.jpg'), - ('0451159098', 'Prime Evil: New Stories By The Masters Of Modern Horror', 'https://images.isbndb.com/covers/90/90/9780451159090.jpg'), - ('0671439960', 'The World According To Garp', 'https://images.isbndb.com/covers/99/65/9780671439965.jpg'), - ('0345422589', 'Running With The Demon (The Word And The Void Trilogy, Book 1)', 'https://images.isbndb.com/covers/25/83/9780345422583.jpg'), - ('0689869886', 'Firewing (Aladdin Fantasy)', 'https://images.isbndb.com/covers/98/84/9780689869884.jpg'), - ('0793823218', 'Pharaoh Hounds (Kw Series)', 'https://images.isbndb.com/covers/32/15/9780793823215.jpg'), - ('0399236015', 'Castaways Of The Flying Dutchman', 'https://images.isbndb.com/covers/60/13/9780399236013.jpg'), - ('0553133136', 'Miami Millions', 'https://images.isbndb.com/covers/31/34/9780553133134.jpg'), - ('0345300912', 'Intrepid''s Last Case', 'https://images.isbndb.com/covers/09/11/9780345300911.jpg'), - ('0440106079', 'The Blue Knight', 'https://images.isbndb.com/covers/60/74/9780440106074.jpg'), - ('0385288581', 'Rich Man, Poor Man', 'https://images.isbndb.com/covers/85/83/9780385288583.jpg'), - ('0515039276', 'The Furies (Kent Family Chronicles)', 'https://images.isbndb.com/covers/92/76/9780515039276.jpg'), - ('0515087254', 'Brotherhood Of War 04: The Colonels', 'https://images.isbndb.com/covers/72/53/9780515087253.jpg'), - ('0515095125', 'Hazard Of Hearts (Cartland Classic)', 'https://images.isbndb.com/covers/51/28/9780515095128.jpg'), - ('0553278819', 'Sitka', 'https://images.isbndb.com/covers/88/11/9780553278811.jpg'), - ('0449232212', 'Judas Flowering', 'https://images.isbndb.com/covers/22/17/9780449232217.jpg'), - ('044164449X', 'Outlaw''s Embrace', 'https://images.isbndb.com/covers/44/90/9780441644490.jpg'), - ('0671469622', 'Reasonable Doubts', 'https://images.isbndb.com/covers/96/27/9780671469627.jpg'), - ('0828009775', 'Thirteen Life-changing Secrets', 'https://images.isbndb.com/covers/97/75/9780828009775.jpg'), - ('0886772214', 'Trekmaster', 'https://images.isbndb.com/covers/22/15/9780886772215.jpg'), - ('038076413X', 'Killing In The Family: A True Story Of Love, Lies And Murder', 'https://images.isbndb.com/covers/41/36/9780380764136.jpg'), - ('0671729918', 'BUSHIDO CODE (MUSASHI 4) (Musashi Book IV)', 'https://images.isbndb.com/covers/99/12/9780671729912.jpg'), - ('0060804955', 'The Sad Variety', 'https://images.isbndb.com/covers/49/54/9780060804954.jpg'), - ('1558172831', 'Lethal Vintage/A', 'https://images.isbndb.com/covers/28/38/9781558172838.jpg'), - ('0445407018', 'For The Good Of The State', 'https://images.isbndb.com/covers/70/15/9780445407015.jpg'), - ('0440119502', 'Dreaming Pool', 'https://images.isbndb.com/covers/95/00/9780440119500.jpg'), - ('0671502689', 'SMART WOMEN: A Story Of Hope', 'https://images.isbndb.com/covers/26/83/9780671502683.jpg'), - ('055325698X', 'The Proteus Operation', 'https://images.isbndb.com/covers/69/87/9780553256987.jpg'), - ('0345293711', 'Cerberus: Wolf In Fold', 'https://images.isbndb.com/covers/37/18/9780345293718.jpg'), - ('0815604599', 'The Grandees: The Story Of America''s Sephardic Elite', 'https://images.isbndb.com/covers/45/94/9780815604594.jpg'), - ('0552121401', 'No Comebacks', 'https://images.isbndb.com/covers/14/08/9780552121408.jpg'), - ('1588810070', 'Orphans Of The Sky', 'https://images.isbndb.com/covers/00/76/9781588810076.jpg'), - ('0671746693', 'The Eagle Has Flown', 'https://images.isbndb.com/covers/66/98/9780671746698.jpg'), - ('051509157X', 'The Furies', 'https://images.isbndb.com/covers/15/71/9780515091571.jpg'), - ('0515087335', 'The Touch', 'https://images.isbndb.com/covers/73/38/9780515087338.jpg'), - ('044104915X', 'Bard III: The Wild Sea', 'https://images.isbndb.com/covers/91/58/9780441049158.jpg'), - ('1561291935', 'The Rape Of Kuwait: The True Story Of Iraqi Atrocities Against A Civilian Population', 'https://images.isbndb.com/covers/19/39/9781561291939.jpg'), - ('0679748261', 'Goodbye, Columbus : And Five Short Stories (Vintage International)', 'https://images.isbndb.com/covers/82/67/9780679748267.jpg'), - ('0451148207', 'The Heir Apparent (Guardians Of The Flame, Book 4)', 'https://images.isbndb.com/covers/82/09/9780451148209.jpg'), - ('0440215285', 'Killing Orders', 'https://images.isbndb.com/covers/52/88/9780440215288.jpg'), - ('0451528913', 'McTeague: A Story Of San Francisco (Signet Classics)', 'https://images.isbndb.com/covers/89/19/9780451528919.jpg'), - ('074344485X', 'Battlestar Galactica Classic', 'https://images.isbndb.com/covers/48/59/9780743444859.jpg'), - ('0451144848', 'Informed Consent (Signet)', 'https://images.isbndb.com/covers/48/43/9780451144843.jpg'), - ('0449245276', 'Conversations With Rabbi Small', 'https://images.isbndb.com/covers/52/79/9780449245279.jpg'), - ('1852426411', 'Diary Of A Mad Housewife', 'https://images.isbndb.com/covers/64/15/9781852426415.jpg'), - ('0312966040', 'Died In The Wool (Inspector Roderick Alleyn Mysteries)', 'https://images.isbndb.com/covers/60/41/9780312966041.jpg'), - ('0451138945', 'Other Women (Signet)', 'https://images.isbndb.com/covers/89/41/9780451138941.jpg'), - ('1558535527', 'Alex: The Life Of A Child', 'https://images.isbndb.com/covers/55/27/9781558535527.jpg'), - ('055329573X', 'Schwarzkopf', 'https://images.isbndb.com/covers/57/33/9780553295733.jpg'), - ('0440613965', 'The Black Marble', 'https://images.isbndb.com/covers/39/61/9780440613961.jpg'), - ('0449204200', 'Stone Bull', 'https://images.isbndb.com/covers/42/07/9780449204207.jpg'), - ('0523424515', 'The Bay Psalm Book Murder', 'https://images.isbndb.com/covers/45/14/9780523424514.jpg'), - ('0553262564', 'The Aquitaine Progression', 'https://images.isbndb.com/covers/25/68/9780553262568.jpg'), - ('0449148246', 'Day Of Atonement', 'https://images.isbndb.com/covers/82/42/9780449148242.jpg'), - ('1558021256', 'The Black Moon', 'https://images.isbndb.com/covers/12/59/9781558021259.jpg'), - ('0451081641', 'Damien: Omen II', 'https://images.isbndb.com/covers/16/43/9780451081643.jpg'), - ('006080694X', 'Queen Lucia Part I', 'https://images.isbndb.com/covers/69/41/9780060806941.jpg'), - ('0671451820', 'Long Odds (Zeke Masters Western, #23)', 'https://images.isbndb.com/covers/18/20/9780671451820.jpg'), - ('0373160925', 'In Passion''S Defense', 'https://images.isbndb.com/covers/09/21/9780373160921.jpg'), - ('0821722999', 'Heart Of The Country', 'https://images.isbndb.com/covers/29/92/9780821722992.jpg'), - ('0061080535', 'The Court Of Three Sisters (Harper Monogram)', 'https://images.isbndb.com/covers/05/31/9780061080531.jpg'), - ('0451182677', 'Gone Quiet', 'https://images.isbndb.com/covers/26/78/9780451182678.jpg'), - ('0345275748', 'Dog Soldiers', 'https://images.isbndb.com/covers/57/45/9780345275745.jpg'), - ('0553133179', 'Hammerstrike', 'https://images.isbndb.com/covers/31/72/9780553133172.jpg'), - ('0821731130', 'The Woodchipper Murder', 'https://images.isbndb.com/covers/11/30/9780821731130.jpg'), - ('0345386302', 'Shadow Man', 'https://images.isbndb.com/covers/63/04/9780345386304.jpg'), - ('094323509X', 'Travesty (A True Crime Story--The Du Pont Kidnap Case And The La Rouche Railroad)', 'https://images.isbndb.com/covers/50/97/9780943235097.jpg'), - ('0312974167', 'To Die For: The Shocking True Story Of Serial Killer Dana Sue Gray', 'https://images.isbndb.com/covers/41/69/9780312974169.jpg'), - ('0451141482', 'Minding The Store', 'https://images.isbndb.com/covers/14/84/9780451141484.jpg'), - ('0553293850', 'Ritual Murder', 'https://images.isbndb.com/covers/38/52/9780553293852.jpg'), - ('0449146138', 'Rivals', 'https://images.isbndb.com/covers/61/32/9780449146132.jpg'), - ('0671824813', 'Goodbye Janette', 'https://images.isbndb.com/covers/48/15/9780671824815.jpg'), - ('187765213X', 'AIDS: The End Of Civilization', 'https://images.isbndb.com/covers/21/34/9781877652134.jpg'), - ('0425059995', 'The Dinner At Homesick Restaurant', 'https://images.isbndb.com/covers/99/99/9780425059999.jpg'), - ('0060809469', 'The Fires Of Fu Manchu', 'https://images.isbndb.com/covers/94/61/9780060809461.jpg'), - ('055320338X', 'Against Our Will', 'https://images.isbndb.com/covers/33/87/9780553203387.jpg'), - ('0440224489', 'The Real Rules: How To Find The Right Man For The Real You', 'https://images.isbndb.com/covers/44/88/9780440224488.jpg'), - ('1557730121', 'Dreamers And Dealers (Charter)', 'https://images.isbndb.com/covers/01/21/9781557730121.jpg'), - ('0345281527', 'The Zimmerman Telegram', 'https://images.isbndb.com/covers/15/24/9780345281524.jpg'), - ('0590333062', 'The Karate Kid', 'https://images.isbndb.com/covers/30/61/9780590333061.jpg'), - ('0553113313', 'The Haigerloch Project', 'https://images.isbndb.com/covers/33/10/9780553113310.jpg'), - ('0553201344', 'The Pritikin Program For Diet & Exercise', 'https://images.isbndb.com/covers/13/45/9780553201345.jpg'), - ('0380558890', 'Aztec', 'https://images.isbndb.com/covers/88/96/9780380558896.jpg'), - ('155817060X', 'MONEY TO BURN', 'https://images.isbndb.com/covers/06/05/9781558170605.jpg'), - ('0380701766', 'House', 'https://images.isbndb.com/covers/17/66/9780380701766.jpg'), - ('0439474299', 'Midnight For Charlie Bone (The Children Of The Red King, Book 1)', 'https://images.isbndb.com/covers/42/90/9780439474290.jpg'), - ('073880701X', 'Statesman', 'https://images.isbndb.com/covers/70/10/9780738807010.jpg'), - ('0441358489', 'Idylls Of The Queen', 'https://images.isbndb.com/covers/84/89/9780441358489.jpg'), - ('055322588X', 'The Suicide Plague', 'https://images.isbndb.com/covers/58/84/9780553225884.jpg'), - ('1558176535', 'Future Eden', 'https://images.isbndb.com/covers/65/39/9781558176539.jpg'), - ('0345314891', 'The Black Ship', 'https://images.isbndb.com/covers/48/95/9780345314895.jpg'), - ('0373071248', 'Islands In Turquoise (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/12/41/9780373071241.jpg'), - ('0446896268', 'Secrets Of The Bermuda Triangle', 'https://images.isbndb.com/covers/62/69/9780446896269.jpg'), - ('0446300675', 'Born To Love', 'https://images.isbndb.com/covers/06/74/9780446300674.jpg'), - ('0553292587', 'Dark Matter', 'https://images.isbndb.com/covers/25/89/9780553292589.jpg'), - ('0671507915', 'World Is Full Of Married Men, The', 'https://images.isbndb.com/covers/79/16/9780671507916.jpg'), - ('1577487869', 'Frieda''s Song (Heartsong Presents #375)', 'https://images.isbndb.com/covers/78/69/9781577487869.jpg'), - ('0140298452', 'Staring At The Light', 'https://images.isbndb.com/covers/84/51/9780140298451.jpg'), - ('0671741039', 'Swan Song', 'https://images.isbndb.com/covers/10/37/9780671741037.jpg'), - ('0425064638', 'Cashmere', 'https://images.isbndb.com/covers/46/34/9780425064634.jpg'), - ('0821721054', 'Shameless Desire', 'https://images.isbndb.com/covers/10/56/9780821721056.jpg'), - ('0451120531', 'Fallback', 'https://images.isbndb.com/covers/05/33/9780451120533.jpg'), - ('0446322490', 'Chances', 'https://images.isbndb.com/covers/24/92/9780446322492.jpg'), - ('0553246178', 'Death Cap', 'https://images.isbndb.com/covers/61/79/9780553246179.jpg'), - ('0373166907', 'Touch Me Not (More Than Men) (Harlequin American Romance)', 'https://images.isbndb.com/covers/69/09/9780373166909.jpg'), - ('0312954425', 'Berserk!: Motiveless Random Massacres', 'https://images.isbndb.com/covers/44/20/9780312954420.jpg'), - ('0517118424', 'How To Live With A Neurotic Dog', 'https://images.isbndb.com/covers/84/29/9780517118429.jpg'), - ('034538332X', 'Garfield Hits The Big Time (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/33/27/9780345383327.jpg'), - ('067975377X', 'Asa, As I Knew Him', 'https://images.isbndb.com/covers/37/73/9780679753773.jpg'), - ('067143487X', 'A Man', 'https://images.isbndb.com/covers/48/78/9780671434878.jpg'), - ('0553087258', 'Scenes From A Marriage', 'https://images.isbndb.com/covers/72/53/9780553087253.jpg'), - ('0451187415', 'Trials', 'https://images.isbndb.com/covers/74/13/9780451187413.jpg'), - ('0373630336', 'Dividend On Death', 'https://images.isbndb.com/covers/03/32/9780373630332.jpg'), - ('0553262041', 'City In The Mist (America 2040, Book 3)', 'https://images.isbndb.com/covers/20/49/9780553262049.jpg'), - ('0451113357', 'The Delta Decision (Signet)', 'https://images.isbndb.com/covers/33/51/9780451113351.jpg'), - ('0060805463', 'Swift To Its Close', 'https://images.isbndb.com/covers/54/63/9780060805463.jpg'), - ('0449132757', 'Slam The Big Door', 'https://images.isbndb.com/covers/27/53/9780449132753.jpg'), - ('0380705753', 'The Black Dudley Murder', 'https://images.isbndb.com/covers/57/57/9780380705757.jpg'), - ('067156787X', 'A Time Of War: A Time Of War', 'https://images.isbndb.com/covers/78/73/9780671567873.jpg'), - ('0441240941', 'Flood', 'https://images.isbndb.com/covers/09/44/9780441240944.jpg'), - ('0440104327', 'Baby', 'https://images.isbndb.com/covers/43/22/9780440104322.jpg'), - ('0449203433', 'Floodgate', 'https://images.isbndb.com/covers/34/39/9780449203439.jpg'), - ('0345334973', 'The Flying Sorcerers', 'https://images.isbndb.com/covers/49/78/9780345334978.jpg'), - ('0839825943', 'Scarlet Plume (The Gregg Press Western Fiction Series)', 'https://images.isbndb.com/covers/59/44/9780839825944.jpg'), - ('037327033X', 'Portal (Silhouette Shadows)', 'https://images.isbndb.com/covers/03/30/9780373270330.jpg'), - ('0373074646', 'Castle Of Dreams (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/46/48/9780373074648.jpg'), - ('0285620878', 'Gold Of The Gods', 'https://images.isbndb.com/covers/08/72/9780285620872.jpg'), - ('0440217113', 'Hit On The House', 'https://images.isbndb.com/covers/71/14/9780440217114.jpg'), - ('0523009151', 'Blind Journey', 'https://images.isbndb.com/covers/91/55/9780523009155.jpg'), - ('0446360074', 'Rage Of Angels', 'https://images.isbndb.com/covers/00/74/9780446360074.jpg'), - ('0373612443', 'Night Heat (Able Team)', 'https://images.isbndb.com/covers/24/44/9780373612444.jpg'), - ('0440123070', 'Errol Flynn: The Untold Story', 'https://images.isbndb.com/covers/30/71/9780440123071.jpg'), - ('0446914770', 'Steppenwolf', 'https://images.isbndb.com/covers/47/72/9780446914772.jpg'), - ('0373706413', 'Forbidden (Women Who Dare, Book 15) (Harlequin Superromance, No 641)', 'https://images.isbndb.com/covers/64/19/9780373706419.jpg'), - ('0425071197', 'The Grunts', 'https://images.isbndb.com/covers/11/99/9780425071199.jpg'), - ('0440008379', 'Broken Promises', 'https://images.isbndb.com/covers/83/78/9780440008378.jpg'), - ('0451162188', 'Blind Faith (Signet)', 'https://images.isbndb.com/covers/21/82/9780451162182.jpg'), - ('059030061X', 'Unidentified Flying Oddball', 'https://images.isbndb.com/covers/06/12/9780590300612.jpg'), - ('0449134369', 'Heiress', 'https://images.isbndb.com/covers/43/68/9780449134368.jpg'), - ('0312914873', 'The Golden Calves', 'https://images.isbndb.com/covers/48/75/9780312914875.jpg'), - ('0345341228', 'Sins Of The Flesh: A Novel', 'https://images.isbndb.com/covers/12/28/9780345341228.jpg'), - ('0684871254', 'The Honorary Consul: A Novel (Simon & Schuster Classics)', 'https://images.isbndb.com/covers/12/57/9780684871257.jpg'), - ('0345319087', 'Dr. Miriam Stoppard''s Pregnancy And Birth Book', 'https://images.isbndb.com/covers/90/81/9780345319081.jpg'), - ('0915473135', 'ACOG Guide To Planning For Pregnancy, Birth, And Beyond', 'https://images.isbndb.com/covers/31/37/9780915473137.jpg'), - ('0849930715', 'Key To Your Child''s Heart', 'https://images.isbndb.com/covers/07/13/9780849930713.jpg'), - ('0696017288', 'Your Baby: Healthy Eating', 'https://images.isbndb.com/covers/72/85/9780696017285.jpg'), - ('0883441047', 'Christ In A Poncho: Testimonials Of The Nonviolent Struggles In Latin America', 'https://images.isbndb.com/covers/10/46/9780883441046.jpg'), - ('0806625783', '"Toward Full Communion" And "Concordat Of Agreement": Lutheran-Episcopal Dialogue, Series III', 'https://images.isbndb.com/covers/57/82/9780806625782.jpg'), - ('0830709967', 'Emotions: Can You Trust Them?', 'https://images.isbndb.com/covers/99/60/9780830709960.jpg'), - ('0883638886', '54 Ways You Can Help The Homeless', 'https://images.isbndb.com/covers/88/80/9780883638880.jpg'), - ('0671620991', 'Solve Your Child''s Sleep Problems', 'https://images.isbndb.com/covers/09/98/9780671620998.jpg'), - ('0671499505', 'Kon-Tiki', 'https://images.isbndb.com/covers/95/01/9780671499501.jpg'), - ('0877843309', 'Stress Myth: Why The Pressures Of Life Don''t Have To Get You Down', 'https://images.isbndb.com/covers/33/06/9780877843306.jpg'), - ('0800750268', 'Spirit-Controlled Family Living', 'https://images.isbndb.com/covers/02/68/9780800750268.jpg'), - ('0688111505', 'Head To Head: The Coming Economic Battle Among Japan, Europe, And America', 'https://images.isbndb.com/covers/15/02/9780688111502.jpg'), - ('0880704756', 'And The Word Came With Power: How God Met And Changed A People Forever', 'https://images.isbndb.com/covers/47/55/9780880704755.jpg'), - ('0934134464', 'Prayers', 'https://images.isbndb.com/covers/44/60/9780934134460.jpg'), - ('0891095578', 'Among Friends: You Can Help Make Your Church A Warmer Place', 'https://images.isbndb.com/covers/55/76/9780891095576.jpg'), - ('0671709003', 'Wasted', 'https://images.isbndb.com/covers/90/06/9780671709006.jpg'), - ('0523008473', 'Sinatra', 'https://images.isbndb.com/covers/84/79/9780523008479.jpg'), - ('0671693786', 'Night Of The Fox (Tie-in)', 'https://images.isbndb.com/covers/37/87/9780671693787.jpg'), - ('0881840238', 'Prometheus: The Life Of Balzac', 'https://images.isbndb.com/covers/02/30/9780881840230.jpg'), - ('0843931248', 'Madman Run (Endworld)', 'https://images.isbndb.com/covers/12/42/9780843931242.jpg'), - ('0553259571', 'QB VII', 'https://images.isbndb.com/covers/95/75/9780553259575.jpg'), - ('0830813233', 'Romancing The Globe: The Call Of The Wild On Generation X', 'https://images.isbndb.com/covers/32/30/9780830813230.jpg'), - ('0394718526', 'The Man Who Walked Through Time', 'https://images.isbndb.com/covers/85/21/9780394718521.jpg'), - ('0451155009', 'Outrageous Acts And Everyday Rebellions (Signet)', 'https://images.isbndb.com/covers/50/09/9780451155009.jpg'), - ('0451164555', 'Final Harvest (Signet)', 'https://images.isbndb.com/covers/45/51/9780451164551.jpg'), - ('0312960875', 'Secrets Of Serotonin: The Natural Hormone That Curbs Food And Alcohol Cravings, Elevates Your Mood, Reduces Pain, And Boosts Energy', 'https://images.isbndb.com/covers/08/72/9780312960872.jpg'), - ('0393073610', 'Eleanor: The Years Alone', 'https://images.isbndb.com/covers/36/14/9780393073614.jpg'), - ('1562921495', 'Christmas Treasures Of The Heart', 'https://images.isbndb.com/covers/14/91/9781562921491.jpg'), - ('0312926146', 'By Way Of Deception: The Making And Unmaking Of A Mossad Officer', 'https://images.isbndb.com/covers/61/44/9780312926144.jpg'), - ('0385270399', 'Ed Faulkner''s Tennis: How To Play It, How To Teach It', 'https://images.isbndb.com/covers/03/97/9780385270397.jpg'), - ('0882077120', 'How To Succeed In Business Without Being A Pagan (An Input Book)', 'https://images.isbndb.com/covers/71/23/9780882077123.jpg'), - ('0553253514', 'Rusty''s Story', 'https://images.isbndb.com/covers/35/11/9780553253511.jpg'), - ('0553147021', 'A Whale For The Killing', 'https://images.isbndb.com/covers/70/25/9780553147025.jpg'), - ('0670808652', 'Seven Days To Petrograd', 'https://images.isbndb.com/covers/86/56/9780670808656.jpg'), - ('0553246402', 'Holcroft Covenant', 'https://images.isbndb.com/covers/64/07/9780553246407.jpg'), - ('0449205975', 'Jian', 'https://images.isbndb.com/covers/59/76/9780449205976.jpg'), - ('0449228878', 'Thine Is The Glory', 'https://images.isbndb.com/covers/88/76/9780449228876.jpg'), - ('0449147371', 'Siren Song', 'https://images.isbndb.com/covers/73/75/9780449147375.jpg'), - ('0061320684', 'The Cunning Of History', 'https://images.isbndb.com/covers/06/82/9780061320682.jpg'), - ('0553133969', 'The Island', 'https://images.isbndb.com/covers/39/67/9780553133967.jpg'), - ('0312905823', 'A Habit Of The Blood', 'https://images.isbndb.com/covers/58/28/9780312905828.jpg'), - ('0553253638', 'Plot It Yourself', 'https://images.isbndb.com/covers/36/34/9780553253634.jpg'), - ('0380709937', 'Out On The Cutting Edge: A Matthew Scudder Crime Novel', 'https://images.isbndb.com/covers/99/39/9780380709939.jpg'), - ('0553258990', 'The Matarese Circle', 'https://images.isbndb.com/covers/89/98/9780553258998.jpg'), - ('067153291X', 'Shell Game', 'https://images.isbndb.com/covers/29/18/9780671532918.jpg'), - ('0553271598', 'Corridor Of Storms (First Americans, Book II)', 'https://images.isbndb.com/covers/15/91/9780553271591.jpg'), - ('094202401X', 'The Hundredth Monkey', 'https://images.isbndb.com/covers/40/12/9780942024012.jpg'), - ('0345361628', 'Prisoner Of Dreams', 'https://images.isbndb.com/covers/16/22/9780345361622.jpg'), - ('0812559894', 'Conquest At Quendor (Zork #4)', 'https://images.isbndb.com/covers/98/97/9780812559897.jpg'), - ('0380773988', 'Sweet Fancy', 'https://images.isbndb.com/covers/39/85/9780380773985.jpg'), - ('0553029754', 'The Shepherd', 'https://images.isbndb.com/covers/97/58/9780553029758.jpg'), - ('0312912951', 'The Man From Lake Wobegon', 'https://images.isbndb.com/covers/29/56/9780312912956.jpg'), - ('0446300853', 'Hard Money', 'https://images.isbndb.com/covers/08/58/9780446300858.jpg'), - ('0316952664', 'The Winds Of War', 'https://images.isbndb.com/covers/26/68/9780316952668.jpg'), - ('0446302686', 'Chances', 'https://images.isbndb.com/covers/26/85/9780446302685.jpg'), - ('0373071957', 'Genuine Article (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/19/51/9780373071951.jpg'), - ('0805003819', 'Renifleur''s Daughter', 'https://images.isbndb.com/covers/38/19/9780805003819.jpg'), - ('0517536242', 'The Spike', 'https://images.isbndb.com/covers/62/47/9780517536247.jpg'), - ('0375409270', 'The Book Of Revelation', 'https://images.isbndb.com/covers/92/71/9780375409271.jpg'), - ('0515084557', 'The Generals (Brotherhood Of War, Book 6)', 'https://images.isbndb.com/covers/45/59/9780515084559.jpg'), - ('0553264907', 'The Devil''s Alternative', 'https://images.isbndb.com/covers/49/06/9780553264906.jpg'), - ('0373706677', 'Fathers And Other Strangers (Family Man #12; Harlequin SuperRomance #667)', 'https://images.isbndb.com/covers/66/79/9780373706679.jpg'), - ('0440111935', 'CHIEF INSP DAUGHTER', 'https://images.isbndb.com/covers/19/31/9780440111931.jpg'), - ('0553373846', 'Pictures At Eleven', 'https://images.isbndb.com/covers/38/44/9780553373844.jpg'), - ('1884739091', 'Ash Wednesday ''45', 'https://images.isbndb.com/covers/90/95/9781884739095.jpg'), - ('0812558138', 'Free Live Free', 'https://images.isbndb.com/covers/81/35/9780812558135.jpg'), - ('0671509756', 'Any Minute I Can Split', 'https://images.isbndb.com/covers/97/50/9780671509750.jpg'), - ('0385096313', 'One To Ride The River With', 'https://images.isbndb.com/covers/63/17/9780385096317.jpg'), - ('0373030940', 'Duel Of Passion (Harlequin Romance)', 'https://images.isbndb.com/covers/09/41/9780373030941.jpg'), - ('0340268778', 'Noble House (Coronet Books)', 'https://images.isbndb.com/covers/87/73/9780340268773.jpg'), - ('0877931267', 'Not Without Parables: Stories Of Yesterday, Today, And Eternity', 'https://images.isbndb.com/covers/12/63/9780877931263.jpg'), - ('0553246763', 'Trek To Madworld: A Star Trek Novel', 'https://images.isbndb.com/covers/67/66/9780553246766.jpg'), - ('0671648705', 'Timetrap (Star Trek, No 40)', 'https://images.isbndb.com/covers/87/01/9780671648701.jpg'), - ('038059949X', 'Somebody Else''s Kids', 'https://images.isbndb.com/covers/94/93/9780380599493.jpg'), - ('0140069704', 'The Sleepers Of Erin', 'https://images.isbndb.com/covers/97/09/9780140069709.jpg'), - ('0345255216', 'The Russians', 'https://images.isbndb.com/covers/52/11/9780345255211.jpg'), - ('038070935X', 'Loitering With Intent', 'https://images.isbndb.com/covers/93/59/9780380709359.jpg'), - ('0140130209', 'The Whiteness Of Bones (Contemporary American Fiction)', 'https://images.isbndb.com/covers/02/01/9780140130201.jpg'), - ('0440135842', 'Help The Poor Struggler', 'https://images.isbndb.com/covers/58/45/9780440135845.jpg'), - ('0446605158', 'The Reality Dysfunction Part I: Emergence', 'https://images.isbndb.com/covers/51/51/9780446605151.jpg'), - ('0451115473', 'Double Cross', 'https://images.isbndb.com/covers/54/78/9780451115478.jpg'), - ('0440125820', 'The Foxbat Spiral', 'https://images.isbndb.com/covers/58/22/9780440125822.jpg'), - ('0425058603', 'For Special Services', 'https://images.isbndb.com/covers/86/02/9780425058602.jpg'), - ('0445209348', 'Laying The Music To Rest (Questar Science Fiction)', 'https://images.isbndb.com/covers/93/43/9780445209343.jpg'), - ('0553574043', 'Species: A Novel', 'https://images.isbndb.com/covers/40/43/9780553574043.jpg'), - ('0449235254', 'Condominium', 'https://images.isbndb.com/covers/52/56/9780449235256.jpg'), - ('0882704214', 'How To Live In High Victory,', 'https://images.isbndb.com/covers/42/10/9780882704210.jpg'), - ('0671871218', 'See, I Told You So', 'https://images.isbndb.com/covers/12/15/9780671871215.jpg'), - ('0380705729', 'The Gyrth Chalice Mystery', 'https://images.isbndb.com/covers/57/26/9780380705726.jpg'), - ('0060807393', 'A Funeral In Eden', 'https://images.isbndb.com/covers/73/99/9780060807399.jpg'), - ('0373264348', 'Death Of The Last Villista (Texana Jones Mysteries)', 'https://images.isbndb.com/covers/43/46/9780373264346.jpg'), - ('0446314668', 'Lonesome Road (A Miss Silver Mystery)', 'https://images.isbndb.com/covers/46/64/9780446314664.jpg'), - ('039474098X', 'The Man Who Stole The Mona Lisa', 'https://images.isbndb.com/covers/09/80/9780394740980.jpg'), - ('0881842214', 'The Prisoner In The Opal', 'https://images.isbndb.com/covers/22/10/9780881842210.jpg'), - ('0821719882', 'The Dollkeeper', 'https://images.isbndb.com/covers/98/86/9780821719886.jpg'), - ('0553248642', 'The Haj', 'https://images.isbndb.com/covers/86/47/9780553248647.jpg'), - ('0345368711', 'Early From The Dance', 'https://images.isbndb.com/covers/87/13/9780345368713.jpg'), - ('0704326485', 'Little Learning', 'https://images.isbndb.com/covers/64/84/9780704326484.jpg'), - ('0394723929', 'The Woman Warrior: Memoirs Of A Girlhood Among Ghosts', 'https://images.isbndb.com/covers/39/21/9780394723921.jpg'), - ('0446327786', 'Surprise Party', 'https://images.isbndb.com/covers/77/87/9780446327787.jpg'), - ('0884041557', 'Battlefield Earth : A Saga Of The Year 3000', 'https://images.isbndb.com/covers/15/59/9780884041559.jpg'), - ('0671600729', 'Silver Wings Santiago Blue', 'https://images.isbndb.com/covers/07/23/9780671600723.jpg'), - ('0380802562', 'Bruce Coville''s Strange Worlds (Avon Camelot Books)', 'https://images.isbndb.com/covers/25/62/9780380802562.jpg'), - ('0939286017', '"I Can Handle It"', 'https://images.isbndb.com/covers/60/10/9780939286010.jpg'), - ('0393301087', 'Plant Dreaming Deep', 'https://images.isbndb.com/covers/10/83/9780393301083.jpg'), - ('0515056561', 'Georgiana', 'https://images.isbndb.com/covers/65/63/9780515056563.jpg'), - ('1551660989', 'Daring Moves', 'https://images.isbndb.com/covers/09/81/9781551660981.jpg'), - ('0425070085', 'Golden Hill', 'https://images.isbndb.com/covers/00/86/9780425070086.jpg'), - ('0380851180', 'Heart Of Thunder', 'https://images.isbndb.com/covers/11/88/9780380851188.jpg'), - ('0246134933', 'The Romantic Challenge (The Mariner''s Library)', 'https://images.isbndb.com/covers/49/36/9780246134936.jpg'), - ('0671430742', 'Interested Parties', 'https://images.isbndb.com/covers/07/40/9780671430740.jpg'), - ('0373085567', 'Never Love A Cowboy', 'https://images.isbndb.com/covers/55/69/9780373085569.jpg'), - ('0373031084', 'Thai Silk (Harlequin Romance)', 'https://images.isbndb.com/covers/10/85/9780373031085.jpg'), - ('0440179297', 'The Settlers (The Australians, Vol. 2)', 'https://images.isbndb.com/covers/92/90/9780440179290.jpg'), - ('0373160739', 'Winter''s Bounty (Harlequin American Romance No. 73)', 'https://images.isbndb.com/covers/07/30/9780373160730.jpg'), - ('0821747169', 'Viking Tempest (Zebra Lovegram Historical Romance)', 'https://images.isbndb.com/covers/71/62/9780821747162.jpg'), - ('0743431685', 'A Murder Of Quality', 'https://images.isbndb.com/covers/16/82/9780743431682.jpg'), - ('0873513223', 'Last Letter Home: The Emigrant Novels Book 4', 'https://images.isbndb.com/covers/32/27/9780873513227.jpg'), - ('0613071832', 'That Hideous Strength (Space Trilogy)', 'https://images.isbndb.com/covers/18/33/9780613071833.jpg'), - ('0671504681', 'First Among Equals', 'https://images.isbndb.com/covers/46/87/9780671504687.jpg'), - ('0030577861', 'The Haunting Of Suzanna Blackwell', 'https://images.isbndb.com/covers/78/64/9780030577864.jpg'), - ('0671431056', 'King David''s Spaceship', 'https://images.isbndb.com/covers/10/51/9780671431051.jpg'), - ('0380791137', 'Blood Run', 'https://images.isbndb.com/covers/11/32/9780380791132.jpg'), - ('0439130263', 'Come What May (Heartland #5)', 'https://images.isbndb.com/covers/02/64/9780439130264.jpg'), - ('0141306971', 'Chessmen Of Doom (Johnny Dixon)', 'https://images.isbndb.com/covers/69/71/9780141306971.jpg'), - ('0670260770', 'The Dead Zone', 'https://images.isbndb.com/covers/07/75/9780670260775.jpg'), - ('0425161021', 'East Of Desolation', 'https://images.isbndb.com/covers/10/29/9780425161029.jpg'), - ('0833510266', 'The Eyes Of The Dragon (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/02/66/9780833510266.jpg'), - ('0793800722', 'Just Say Good Dog', 'https://images.isbndb.com/covers/07/28/9780793800728.jpg'), - ('0553580752', 'The Guinness Book Of World Records 1999 (Guinness World Records)', 'https://images.isbndb.com/covers/07/54/9780553580754.jpg'), - ('0743244281', 'Barry Trotter And The Unauthorized Parody', 'https://images.isbndb.com/covers/42/82/9780743244282.jpg'), - ('0060008873', 'Do No Harm', 'https://images.isbndb.com/covers/88/71/9780060008871.jpg'), - ('0553264613', 'Hot Ice', 'https://images.isbndb.com/covers/46/16/9780553264616.jpg'), - ('0590877437', 'Search For Senna (Everworld #1)', 'https://images.isbndb.com/covers/74/35/9780590877435.jpg'), - ('0446678651', 'Fun With Phone Solicitors: 50 Ways To Get Even', 'https://images.isbndb.com/covers/86/50/9780446678650.jpg'), - ('0441205666', 'Empire Of The East', 'https://images.isbndb.com/covers/56/60/9780441205660.jpg'), - ('0898156270', 'How To Shit In The Woods, Second Edition: An Environmentally Sound Approach To A Lost Art', 'https://images.isbndb.com/covers/62/70/9780898156270.jpg'), - ('0793818524', 'Guide To Own Labrador Retrievr (Re Dog)', 'https://images.isbndb.com/covers/85/25/9780793818525.jpg'), - ('042508437X', 'Fire On The Water (Lone Wolf, No. 2)', 'https://images.isbndb.com/covers/43/73/9780425084373.jpg'), - ('0671541811', 'The Final Fury (Star Trek: Voyager, No 9: Invasion Book No 4)', 'https://images.isbndb.com/covers/18/11/9780671541811.jpg'), - ('0505515563', 'The Silverleaf Syndrome', 'https://images.isbndb.com/covers/55/68/9780505515568.jpg'), - ('0553293397', 'The Naked Sun', 'https://images.isbndb.com/covers/33/95/9780553293395.jpg'), - ('0783890656', 'The Planet Savers: Also Including The Waterfall', 'https://images.isbndb.com/covers/06/54/9780783890654.jpg'), - ('0345444051', 'Childhood''s End (Del Rey Impact)', 'https://images.isbndb.com/covers/40/59/9780345444059.jpg'), - ('0517542099', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/20/95/9780517542095.jpg'), - ('0609605453', 'The Frog Prince: A Fairy Tale For Consenting Adults', 'https://images.isbndb.com/covers/54/55/9780609605455.jpg'), - ('086622064X', 'Your First Puppy (Your First Series)', 'https://images.isbndb.com/covers/06/44/9780866220644.jpg'), - ('0962448206', 'One Hundred One Things To Do With Lutefisk', 'https://images.isbndb.com/covers/82/01/9780962448201.jpg'), - ('0757300006', 'Chicken Soup For The Soul: A Christmas Treasury', 'https://images.isbndb.com/covers/00/04/9780757300004.jpg'), - ('0425095908', 'Grey Star The Wizard (The World Of Lone Wolf Book 1)', 'https://images.isbndb.com/covers/59/04/9780425095904.jpg'), - ('0806961007', 'The Little Giant Book Of Riddles', 'https://images.isbndb.com/covers/10/02/9780806961002.jpg'), - ('0590877542', 'Enter The Enchanted (Everworld #3)', 'https://images.isbndb.com/covers/75/41/9780590877541.jpg'), - ('0590877623', 'Discover The Destroyer (Everworld #5)', 'https://images.isbndb.com/covers/76/26/9780590877626.jpg'), - ('059087764X', 'Fear The Fantastic (Everworld #6)', 'https://images.isbndb.com/covers/76/40/9780590877640.jpg'), - ('0590877666', 'Gateway To The Gods (Everworld #7)', 'https://images.isbndb.com/covers/76/64/9780590877664.jpg'), - ('0590878549', 'Brave The Betrayal (Everworld #8)', 'https://images.isbndb.com/covers/85/48/9780590878548.jpg'), - ('0425104842', 'The Jungle Of Horrors (Lone Wolf, Book 8)', 'https://images.isbndb.com/covers/48/42/9780425104842.jpg'), - ('0671541501', 'Time''s Enemy (Star Trek Deep Space Nine: Invasion, Book 3)', 'https://images.isbndb.com/covers/15/07/9780671541507.jpg'), - ('0061054240', 'Arena (Magic - The Gathering, No. 1)', 'https://images.isbndb.com/covers/42/42/9780061054242.jpg'), - ('074344261X', 'Tickled Pink: A Comic Novel', 'https://images.isbndb.com/covers/26/19/9780743442619.jpg'), - ('0671652273', 'Uhura''s Song (Star Trek, No 21)', 'https://images.isbndb.com/covers/22/72/9780671652272.jpg'), - ('0671735551', 'The Children Of Hamlin (Star Trek The Next Generation, No 3)', 'https://images.isbndb.com/covers/55/55/9780671735555.jpg'), - ('0060911980', 'Harper''s Illustrated Handbook Of Dogs', 'https://images.isbndb.com/covers/19/80/9780060911980.jpg'), - ('0879737964', 'Love, Lollipops And Laundry', 'https://images.isbndb.com/covers/79/62/9780879737962.jpg'), - ('0671042718', 'Gemworld Book Two Of Two (Star Trek The Next Generation, No 59)', 'https://images.isbndb.com/covers/27/14/9780671042714.jpg'), - ('0671794388', 'Dark Mirror (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/43/85/9780671794385.jpg'), - ('0671009257', 'Ship Of The Line (Star Trek Next Generation (Unnumbered))', 'https://images.isbndb.com/covers/92/50/9780671009250.jpg'), - ('0671019155', 'The Q Continuum: Q-Space (Star Trek The Next Generation, Book 47)', 'https://images.isbndb.com/covers/91/50/9780671019150.jpg'), - ('067104270X', 'Gemworld Book One Of Two (Star Trek The Next Generation, No 58)', 'https://images.isbndb.com/covers/27/07/9780671042707.jpg'), - ('006254506X', 'The Summer Of The Great-Grandmother (Crosswicks Journal, Book 2)', 'https://images.isbndb.com/covers/50/60/9780062545060.jpg'), - ('0671032577', 'Red Sector (Star Trek The Next Generation: Double Helix, Book 3)', 'https://images.isbndb.com/covers/25/79/9780671032579.jpg'), - ('067174142X', 'A Rock And A Hard Place (Star Trek The Next Generation, No 10)', 'https://images.isbndb.com/covers/14/26/9780671741426.jpg'), - ('0671032550', 'Infection (Star Trek The Next Generation: Double Helix, Book 1)', 'https://images.isbndb.com/covers/25/55/9780671032555.jpg'), - ('0671741454', 'Vendetta: The Giant Novel (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/14/57/9780671741457.jpg'), - ('0671775715', 'Imbalance (Star Trek The Next Generation, No 22)', 'https://images.isbndb.com/covers/57/11/9780671775711.jpg'), - ('0451207637', 'The Fallen', 'https://images.isbndb.com/covers/76/30/9780451207630.jpg'), - ('1551668130', 'The Widow', 'https://images.isbndb.com/covers/81/30/9781551668130.jpg'), - ('0380776839', 'It Had To Be You', 'https://images.isbndb.com/covers/68/32/9780380776832.jpg'), - ('0515129496', 'Resurrection Day', 'https://images.isbndb.com/covers/94/96/9780515129496.jpg'), - ('0804101396', 'Your Incredible Cat: Understanding The Secret Powers Of Your Pet', 'https://images.isbndb.com/covers/13/94/9780804101394.jpg'), - ('0743411544', 'Two Brothers: The Lawman / The Gunslinger (2 Books In 1)', 'https://images.isbndb.com/covers/15/47/9780743411547.jpg'), - ('0553573225', 'Home Fires', 'https://images.isbndb.com/covers/32/20/9780553573220.jpg'), - ('0380808080', 'This Heart Of Mine', 'https://images.isbndb.com/covers/80/83/9780380808083.jpg'), - ('0671039199', 'Deep Water (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/91/96/9780671039196.jpg'), - ('0486261794', 'Self-Working Coin Magic: 92 Foolproof Tricks (Cards, Coins, And Other Magic)', 'https://images.isbndb.com/covers/17/99/9780486261799.jpg'), - ('0912692561', 'Never Miss A Sunset', 'https://images.isbndb.com/covers/25/62/9780912692562.jpg'), - ('0812555120', 'Zombie Lover (Xanth, No. 22)', 'https://images.isbndb.com/covers/51/27/9780812555127.jpg'), - ('0064405737', 'Julie', 'https://images.isbndb.com/covers/57/37/9780064405737.jpg'), - ('0394868811', 'The Berenstain Bears And Mama''s New Job', 'https://images.isbndb.com/covers/88/13/9780394868813.jpg'), - ('0812534018', 'Nemesis: Indigo Book One', 'https://images.isbndb.com/covers/40/16/9780812534016.jpg'), - ('1572700408', 'The Secret Garden (unabridged)', 'https://images.isbndb.com/covers/04/06/9781572700406.jpg'), - ('0836218914', 'Suburban Cowgirls', 'https://images.isbndb.com/covers/89/16/9780836218916.jpg'), - ('0836220668', 'Bride Of The Far Side ®', 'https://images.isbndb.com/covers/06/67/9780836220667.jpg'), - ('0812574710', 'Muse Of Art (Geodyssey, Saga 4)', 'https://images.isbndb.com/covers/47/15/9780812574715.jpg'), - ('0451192028', 'Light A Penny Candle', 'https://images.isbndb.com/covers/20/28/9780451192028.jpg'), - ('0345387791', 'Powers That Be (Petaybee, Book 1)', 'https://images.isbndb.com/covers/77/90/9780345387790.jpg'), - ('0836217403', 'Shave The Whales', 'https://images.isbndb.com/covers/74/07/9780836217407.jpg'), - ('0373802021', 'The Fairy Godmother (Tales Of The Five Hundred Kingdoms, Book 1)', 'https://images.isbndb.com/covers/20/29/9780373802029.jpg'), - ('0440119766', 'The Key-Lock Man', 'https://images.isbndb.com/covers/97/60/9780440119760.jpg'), - ('0394714202', 'Cuban Passage', 'https://images.isbndb.com/covers/42/02/9780394714202.jpg'), - ('0385312202', 'Leaving Cold Sassy', 'https://images.isbndb.com/covers/22/02/9780385312202.jpg'), - ('0736625828', 'The Landower Legacy', 'https://images.isbndb.com/covers/58/21/9780736625821.jpg'), - ('0394500792', 'Chesapeake', 'https://images.isbndb.com/covers/07/99/9780394500799.jpg'), - ('0736605029', 'Hell Is Too Crowded', 'https://images.isbndb.com/covers/50/21/9780736605021.jpg'), - ('0451087488', 'Fury''s Sun, Passion''s Moon', 'https://images.isbndb.com/covers/74/85/9780451087485.jpg'), - ('1585671827', 'Shardik', 'https://images.isbndb.com/covers/18/23/9781585671823.jpg'), - ('0345324455', 'Midnight At The Well Of Souls', 'https://images.isbndb.com/covers/44/50/9780345324450.jpg'), - ('0449911764', 'The Last Enchantment (Arthurian Saga)', 'https://images.isbndb.com/covers/17/61/9780449911761.jpg'), - ('0805013342', '"A" Is For Alibi: A Kinsey Millhone Mystery', 'https://images.isbndb.com/covers/33/44/9780805013344.jpg'), - ('0345300610', 'The Vagabond', 'https://images.isbndb.com/covers/06/14/9780345300614.jpg'), - ('0803705832', 'The Tale Of The Unicorn', 'https://images.isbndb.com/covers/58/38/9780803705838.jpg'), - ('0688159079', 'The Book Of Classic Insults', 'https://images.isbndb.com/covers/90/78/9780688159078.jpg'), - ('0060929510', 'Modoc: The True Story Of The Greatest Elephant That Ever Lived', 'https://images.isbndb.com/covers/95/10/9780060929510.jpg'), - ('0060277475', 'I Was A Teenage Fairy', 'https://images.isbndb.com/covers/74/75/9780060277475.jpg'), - ('0743434897', 'Jokers Wild (Wild Cards, Book 3)', 'https://images.isbndb.com/covers/48/98/9780743434898.jpg'), - ('0743423917', 'Aces High (Wild Cards, Volume 2)', 'https://images.isbndb.com/covers/39/15/9780743423915.jpg'), - ('0812566785', 'Rainbow Mars', 'https://images.isbndb.com/covers/67/89/9780812566789.jpg'), - ('0515134406', 'Fire And Flesh', 'https://images.isbndb.com/covers/44/07/9780515134407.jpg'), - ('0884042855', 'An Alien Affair (Mission Earth, Vol 4)', 'https://images.isbndb.com/covers/28/53/9780884042853.jpg'), - ('0060096209', 'A Little Help From Above', 'https://images.isbndb.com/covers/62/05/9780060096205.jpg'), - ('0345350502', 'The Dragon And The George', 'https://images.isbndb.com/covers/05/03/9780345350503.jpg'), - ('0671667033', 'The Firebrand', 'https://images.isbndb.com/covers/70/30/9780671667030.jpg'), - ('0812534867', 'Roc And A Hard Place (Xanth, No. 19)', 'https://images.isbndb.com/covers/48/63/9780812534863.jpg'), - ('0553263218', 'The Pigman', 'https://images.isbndb.com/covers/32/13/9780553263213.jpg'), - ('0891904891', 'Purple Pirates', 'https://images.isbndb.com/covers/48/92/9780891904892.jpg'), - ('0671737120', 'Sword Point', 'https://images.isbndb.com/covers/71/22/9780671737122.jpg'), - ('0821735985', 'Baby Dolly', 'https://images.isbndb.com/covers/59/85/9780821735985.jpg'), - ('0345334841', 'Surrender The Stars', 'https://images.isbndb.com/covers/48/48/9780345334848.jpg'), - ('0842339558', 'The Man Of The Desert (Grace Livingston Hill #63)', 'https://images.isbndb.com/covers/95/51/9780842339551.jpg'), - ('0025182005', 'Edward, Edward: A Part Of His Story And Of History 1795-1816 Set Out In Three Parts In This Form Of A New-Old Picaresque Romance That Is Also A Stud', 'https://images.isbndb.com/covers/20/04/9780025182004.jpg'), - ('0595144470', 'Kataki: A Novel Of Revenge', 'https://images.isbndb.com/covers/44/71/9780595144471.jpg'), - ('1572701285', 'The Danger', 'https://images.isbndb.com/covers/12/81/9781572701281.jpg'), - ('0451110293', 'Ruff Justice 02: Night', 'https://images.isbndb.com/covers/02/99/9780451110299.jpg'), - ('0446365696', 'Prince Of The City', 'https://images.isbndb.com/covers/56/97/9780446365697.jpg'), - ('0671724517', 'Hollywood Husbands', 'https://images.isbndb.com/covers/45/11/9780671724511.jpg'), - ('0671874950', 'Spellbinder', 'https://images.isbndb.com/covers/49/57/9780671874957.jpg'), - ('0553171712', 'Brainchild', 'https://images.isbndb.com/covers/17/16/9780553171716.jpg'), - ('0736603964', 'Snare Of The Hunter', 'https://images.isbndb.com/covers/39/66/9780736603966.jpg'), - ('0440126185', 'Floodtide', 'https://images.isbndb.com/covers/61/88/9780440126188.jpg'), - ('0446364703', 'Decked (Regan Reilly Mysteries, No. 1)', 'https://images.isbndb.com/covers/47/06/9780446364706.jpg'), - ('1903436087', 'The Tempest (Arden Shakespeare)', 'https://images.isbndb.com/covers/60/80/9781903436080.jpg'), - ('067154313X', 'Fifteen American One Act Plays (Anta Series Of Distinguished Plays)', 'https://images.isbndb.com/covers/31/36/9780671543136.jpg'), - ('0140302069', 'A Dog So Small', 'https://images.isbndb.com/covers/20/66/9780140302066.jpg'), - ('1401088945', 'Ground Zero And Beyond', 'https://images.isbndb.com/covers/89/41/9781401088941.jpg'), - ('0812511182', 'The Sixth Book Of Lost Swords: Mindsword''s Story', 'https://images.isbndb.com/covers/11/85/9780812511185.jpg'), - ('0446392340', 'Save The Animals: 101 Easy Things You Can Do', 'https://images.isbndb.com/covers/23/41/9780446392341.jpg'), - ('0345277996', 'Icerigger', 'https://images.isbndb.com/covers/79/92/9780345277992.jpg'), - ('0061054275', 'Eternity Road', 'https://images.isbndb.com/covers/42/73/9780061054273.jpg'), - ('0441110444', 'Clarke County, Space', 'https://images.isbndb.com/covers/04/45/9780441110445.jpg'), - ('1582340544', 'I & Claudius: Travels With My Cat', 'https://images.isbndb.com/covers/05/48/9781582340548.jpg'), - ('0061054747', 'Daughter Of The Shaman', 'https://images.isbndb.com/covers/47/47/9780061054747.jpg'), - ('0679768645', 'The Galton Case (Vintage Crime/Black Lizard)', 'https://images.isbndb.com/covers/86/47/9780679768647.jpg'), - ('0698107047', 'This Is The House', 'https://images.isbndb.com/covers/70/45/9780698107045.jpg'), - ('0333185153', 'Drink For The Bridge', 'https://images.isbndb.com/covers/51/55/9780333185155.jpg'), - ('0671776096', 'Whitney, My Love', 'https://images.isbndb.com/covers/60/91/9780671776091.jpg'), - ('0440384974', 'Thy Neighbor''s Wife', 'https://images.isbndb.com/covers/49/77/9780440384977.jpg'), - ('0380391236', 'Tara''s Song', 'https://images.isbndb.com/covers/12/33/9780380391233.jpg'), - ('0380699710', 'The Rich And The Mighty', 'https://images.isbndb.com/covers/97/11/9780380699711.jpg'), - ('0671690140', 'Trapped In Death Cave', 'https://images.isbndb.com/covers/01/44/9780671690144.jpg'), - ('0881844314', 'The Fallen Sparrow', 'https://images.isbndb.com/covers/43/13/9780881844313.jpg'), - ('0671221396', 'Auctioneer', 'https://images.isbndb.com/covers/13/93/9780671221393.jpg'), - ('0671732498', 'Separate Reality', 'https://images.isbndb.com/covers/24/93/9780671732493.jpg'), - ('0747548218', 'French Connection (Bloomsbury Film Classics)', 'https://images.isbndb.com/covers/82/18/9780747548218.jpg'), - ('0553121456', 'Independence', 'https://images.isbndb.com/covers/14/52/9780553121452.jpg'), - ('0892440384', 'Cash McCall', 'https://images.isbndb.com/covers/03/82/9780892440382.jpg'), - ('1842326481', 'Death Is No Sportsman (Inspector Mallett Mystery S.)', 'https://images.isbndb.com/covers/64/80/9781842326480.jpg'), - ('0380811901', 'Love Play', 'https://images.isbndb.com/covers/19/08/9780380811908.jpg'), - ('0345339215', 'Burr', 'https://images.isbndb.com/covers/92/18/9780345339218.jpg'), - ('0671874861', 'The Dream Merchants', 'https://images.isbndb.com/covers/48/65/9780671874865.jpg'), - ('9997405307', 'Marooned A Novel', 'https://images.isbndb.com/covers/53/02/9789997405302.jpg'), - ('0064470148', 'The Silent Treatment', 'https://images.isbndb.com/covers/01/48/9780064470148.jpg'), - ('0312857322', 'Lovelock (Mayflower)', 'https://images.isbndb.com/covers/73/25/9780312857325.jpg'), - ('0310275121', 'A Father, A Son, And A Three-Mile Run', 'https://images.isbndb.com/covers/51/21/9780310275121.jpg'), - ('0553284657', 'Scruples', 'https://images.isbndb.com/covers/46/52/9780553284652.jpg'), - ('0786704845', 'The Siege Of Krishnapur', 'https://images.isbndb.com/covers/48/42/9780786704842.jpg'), - ('0671832611', 'Zero Factor', 'https://images.isbndb.com/covers/26/12/9780671832612.jpg'), - ('0553290045', 'Boys From Brazil, The', 'https://images.isbndb.com/covers/00/42/9780553290042.jpg'), - ('0505512386', 'Long Wire', 'https://images.isbndb.com/covers/23/83/9780505512383.jpg'), - ('0505516292', 'Bullwhacker', 'https://images.isbndb.com/covers/62/99/9780505516299.jpg'), - ('0140071229', 'August 1914 (The Red Wheel, Vol. 1)', 'https://images.isbndb.com/covers/12/21/9780140071221.jpg'), - ('0441783058', 'Starrigger', 'https://images.isbndb.com/covers/30/52/9780441783052.jpg'), - ('0449213617', 'The Shivering Sands', 'https://images.isbndb.com/covers/36/12/9780449213612.jpg'), - ('039455695X', 'Chesapeake', 'https://images.isbndb.com/covers/69/56/9780394556956.jpg'), - ('0345282892', 'Double, Double (Queen)', 'https://images.isbndb.com/covers/28/97/9780345282897.jpg'), - ('0060179716', 'Deadly Perfume: An International Thriller', 'https://images.isbndb.com/covers/97/17/9780060179717.jpg'), - ('0440213991', 'Guardian Angel', 'https://images.isbndb.com/covers/39/94/9780440213994.jpg'), - ('0373610734', 'Appointment In Kabul (Mack Bolan)', 'https://images.isbndb.com/covers/07/30/9780373610730.jpg'), - ('0451136497', 'Doyle''s Disciples', 'https://images.isbndb.com/covers/64/97/9780451136497.jpg'), - ('0671532278', 'Oath Of Fealty', 'https://images.isbndb.com/covers/22/77/9780671532277.jpg'), - ('0440193281', 'Wilderness', 'https://images.isbndb.com/covers/32/89/9780440193289.jpg'), - ('0515091332', 'The Americans', 'https://images.isbndb.com/covers/13/35/9780515091335.jpg'), - ('0340020326', 'Sleep In The Woods (Coronet Books)', 'https://images.isbndb.com/covers/03/26/9780340020326.jpg'), - ('0425175413', 'The White House Connection (Sean Dillon)', 'https://images.isbndb.com/covers/54/15/9780425175415.jpg'), - ('0821719246', 'RICH IS BEST', 'https://images.isbndb.com/covers/92/44/9780821719244.jpg'), - ('0671737783', 'Mediterranean Caper', 'https://images.isbndb.com/covers/77/88/9780671737788.jpg'), - ('0396065023', 'The Hindenburg', 'https://images.isbndb.com/covers/50/29/9780396065029.jpg'), - ('0446603058', 'Goldilocks', 'https://images.isbndb.com/covers/30/58/9780446603058.jpg'), - ('0380707063', 'An Alien Light', 'https://images.isbndb.com/covers/70/65/9780380707065.jpg'), - ('1551667169', 'Surrender To Love', 'https://images.isbndb.com/covers/71/64/9781551667164.jpg'), - ('0345383850', 'Garfield Fat Cat 3- Pack', 'https://images.isbndb.com/covers/38/53/9780345383853.jpg'), - ('044098761X', 'A Wind In The Door (The Time Quartet)', 'https://images.isbndb.com/covers/76/11/9780440987611.jpg'), - ('0451208641', 'Black Like Me', 'https://images.isbndb.com/covers/86/44/9780451208644.jpg'), - ('0345325885', 'Star Man''s Son', 'https://images.isbndb.com/covers/58/84/9780345325884.jpg'), - ('0879972734', 'Walkers On The Sky', 'https://images.isbndb.com/covers/27/38/9780879972738.jpg'), - ('0345318315', 'The Gods Themselves', 'https://images.isbndb.com/covers/83/12/9780345318312.jpg'), - ('0525169954', 'Oklahoma Crude', 'https://images.isbndb.com/covers/99/56/9780525169956.jpg'), - ('0553257048', 'The Postman', 'https://images.isbndb.com/covers/70/45/9780553257045.jpg'), - ('0843938366', 'The Californian', 'https://images.isbndb.com/covers/83/64/9780843938364.jpg'), - ('0671526812', 'HIGH STAKES HR PRE (Harold Robbins Presents Series)', 'https://images.isbndb.com/covers/68/18/9780671526818.jpg'), - ('0345439724', 'Marathon Man', 'https://images.isbndb.com/covers/97/27/9780345439727.jpg'), - ('0396088678', 'Murder With Mirrors (Winterbrook Edition)', 'https://images.isbndb.com/covers/86/77/9780396088677.jpg'), - ('0440226279', 'McClairen''s Isle: The Reckless One', 'https://images.isbndb.com/covers/62/77/9780440226277.jpg'), - ('044017399X', 'Ride Out The Storm', 'https://images.isbndb.com/covers/39/91/9780440173991.jpg'), - ('0446305618', 'Daughters Of The South Wind', 'https://images.isbndb.com/covers/56/17/9780446305617.jpg'), - ('0441585558', 'Nobody Lives Forever', 'https://images.isbndb.com/covers/55/57/9780441585557.jpg'), - ('0449204960', 'Men Of Men', 'https://images.isbndb.com/covers/49/62/9780449204962.jpg'), - ('0451400216', 'The Endless Game (Onyx)', 'https://images.isbndb.com/covers/02/15/9780451400215.jpg'), - ('0446342122', 'Bold Breathless Love', 'https://images.isbndb.com/covers/21/24/9780446342124.jpg'), - ('044022795X', 'Leonardo - A Scrapbook In Words And Pictures', 'https://images.isbndb.com/covers/79/53/9780440227953.jpg'), - ('0449209741', 'Santorini', 'https://images.isbndb.com/covers/97/45/9780449209745.jpg'), - ('1558174516', 'Target: Intruder', 'https://images.isbndb.com/covers/45/11/9781558174511.jpg'), - ('044022327X', 'The Cowboy Rides Away', 'https://images.isbndb.com/covers/32/76/9780440223276.jpg'), - ('0553130986', 'The Matarese Circle', 'https://images.isbndb.com/covers/09/80/9780553130980.jpg'), - ('0451162897', 'Firebird (Signet)', 'https://images.isbndb.com/covers/28/92/9780451162892.jpg'), - ('0553148915', 'The Old Neighborhood', 'https://images.isbndb.com/covers/89/16/9780553148916.jpg'), - ('1558021833', 'The Gold Train (Faraday, No 3)', 'https://images.isbndb.com/covers/18/39/9781558021839.jpg'), - ('0345343581', 'Kate Vaiden', 'https://images.isbndb.com/covers/35/81/9780345343581.jpg'), - ('0441122892', 'Crossing In Berlin', 'https://images.isbndb.com/covers/28/99/9780441122899.jpg'), - ('0821716700', 'Lovefire', 'https://images.isbndb.com/covers/67/00/9780821716700.jpg'), - ('0380899825', 'Hearts Aflame', 'https://images.isbndb.com/covers/98/21/9780380899821.jpg'), - ('0380751712', 'Pride''s Passion', 'https://images.isbndb.com/covers/17/16/9780380751716.jpg'), - ('0671640127', 'Flight Of The Intruder', 'https://images.isbndb.com/covers/01/25/9780671640125.jpg'), - ('0445203684', 'Wind Of Promise', 'https://images.isbndb.com/covers/36/86/9780445203686.jpg'), - ('0812555112', 'Faun & Games (Xanth, No. 21)', 'https://images.isbndb.com/covers/51/10/9780812555110.jpg'), - ('0380772973', 'Taking Liberty', 'https://images.isbndb.com/covers/29/71/9780380772971.jpg'), - ('034529601X', 'The Stunt Man', 'https://images.isbndb.com/covers/60/16/9780345296016.jpg'), - ('0553272659', 'The Bad Lands (Legends West)', 'https://images.isbndb.com/covers/26/59/9780553272659.jpg'), - ('0843946539', 'The Gates Of The Mountains', 'https://images.isbndb.com/covers/65/36/9780843946536.jpg'), - ('0151569401', 'The Man Who Loved Cat Dancing', 'https://images.isbndb.com/covers/94/03/9780151569403.jpg'), - ('0449203948', 'The Satan Bug', 'https://images.isbndb.com/covers/39/41/9780449203941.jpg'), - ('0590312642', 'Star Streak : Stories Of Space', 'https://images.isbndb.com/covers/26/46/9780590312646.jpg'), - ('0380008424', 'The Auctioneer', 'https://images.isbndb.com/covers/84/21/9780380008421.jpg'), - ('0553282204', 'Bingo', 'https://images.isbndb.com/covers/22/07/9780553282207.jpg'), - ('0394756886', 'Bright Lights, Big City', 'https://images.isbndb.com/covers/68/82/9780394756882.jpg'), - ('037382503X', 'Wisconsin Wedding (Welcome To Tyler, No. 3)', 'https://images.isbndb.com/covers/50/35/9780373825035.jpg'), - ('0345256557', 'Apple Tree Lean Down', 'https://images.isbndb.com/covers/65/53/9780345256553.jpg'), - ('0446323802', 'Desire In Disguise', 'https://images.isbndb.com/covers/38/02/9780446323802.jpg'), - ('0874068541', 'Real-Life Scary Kids', 'https://images.isbndb.com/covers/85/42/9780874068542.jpg'), - ('0761115366', 'Hold Your Horses: Nuggets Of Truth For People Who Love Horses...No Matter What', 'https://images.isbndb.com/covers/53/66/9780761115366.jpg'), - ('1564310310', 'Tangent Objective', 'https://images.isbndb.com/covers/03/16/9781564310316.jpg'), - ('0380703696', 'Long Time No See (An 87th Precinct Novel)', 'https://images.isbndb.com/covers/36/92/9780380703692.jpg'), - ('0689806590', 'Bunnicula: A Rabbit-Tale Of Mystery', 'https://images.isbndb.com/covers/65/99/9780689806599.jpg'), - ('0140097309', 'Hiroshima Joe', 'https://images.isbndb.com/covers/73/06/9780140097306.jpg'), - ('0440146291', 'Love And Glory', 'https://images.isbndb.com/covers/62/92/9780440146292.jpg'), - ('0449200582', 'River Of Death', 'https://images.isbndb.com/covers/05/82/9780449200582.jpg'), - ('0156551381', 'Maigret And The Black Sheep', 'https://images.isbndb.com/covers/13/80/9780156551380.jpg'), - ('0373705166', 'Whispers Of The Heart (Harlequin Superromance No. 516)', 'https://images.isbndb.com/covers/51/60/9780373705160.jpg'), - ('0884113795', 'Solitary Horseman', 'https://images.isbndb.com/covers/37/99/9780884113799.jpg'), - ('0380012278', 'Goldengrove', 'https://images.isbndb.com/covers/22/75/9780380012275.jpg'), - ('0380607077', 'Reverend Randollph And The Holy Terror', 'https://images.isbndb.com/covers/70/75/9780380607075.jpg'), - ('0380018446', 'Oliver''s Story', 'https://images.isbndb.com/covers/84/44/9780380018444.jpg'), - ('0449202712', 'Flight Of The Falcon', 'https://images.isbndb.com/covers/27/15/9780449202715.jpg'), - ('1557508275', 'The Raft', 'https://images.isbndb.com/covers/82/70/9781557508270.jpg'), - ('0515090220', 'The Colonels (Brotherhood Of War, Book 4)', 'https://images.isbndb.com/covers/02/22/9780515090222.jpg'), - ('0425122611', 'Win, Lose Or Die', 'https://images.isbndb.com/covers/26/17/9780425122617.jpg'), - ('0425120430', 'Day Of The Cheetah', 'https://images.isbndb.com/covers/04/39/9780425120439.jpg'), - ('0425052478', 'License Renewed', 'https://images.isbndb.com/covers/24/71/9780425052471.jpg'), - ('044912505X', 'Cinnamon Skin (A Travis McGee Novel)', 'https://images.isbndb.com/covers/50/52/9780449125052.jpg'), - ('0425188221', 'Shadowland', 'https://images.isbndb.com/covers/82/24/9780425188224.jpg'), - ('0091059801', 'The Quiet Sound Of Fear', 'https://images.isbndb.com/covers/98/04/9780091059804.jpg'), - ('0671007947', 'False Conception (John Marshall Tanner Mysteries)', 'https://images.isbndb.com/covers/79/42/9780671007942.jpg'), - ('0449207269', 'Ride A Pale Horse', 'https://images.isbndb.com/covers/72/60/9780449207260.jpg'), - ('0449207307', 'Caravan To Vaccares', 'https://images.isbndb.com/covers/73/07/9780449207307.jpg'), - ('0671555022', 'The Man Who Killed The Deer', 'https://images.isbndb.com/covers/50/23/9780671555023.jpg'), - ('0451400372', 'Her Father''s Daughter (Onyx)', 'https://images.isbndb.com/covers/03/76/9780451400376.jpg'), - ('0523417489', 'Windhaven''s Crisis', 'https://images.isbndb.com/covers/74/86/9780523417486.jpg'), - ('0380003120', 'Fire In The Embers', 'https://images.isbndb.com/covers/31/29/9780380003129.jpg'), - ('0380733358', 'Eye Of The Needle', 'https://images.isbndb.com/covers/33/54/9780380733354.jpg'), - ('0345273559', 'Captive Innocence', 'https://images.isbndb.com/covers/35/50/9780345273550.jpg'), - ('0345347897', 'Sisters', 'https://images.isbndb.com/covers/78/93/9780345347893.jpg'), - ('1557481733', 'Young Readers Christian Library: Ruth', 'https://images.isbndb.com/covers/17/33/9781557481733.jpg'), - ('0671633457', 'Amerika', 'https://images.isbndb.com/covers/34/55/9780671633455.jpg'), - ('0380703122', 'Whirlwind', 'https://images.isbndb.com/covers/31/28/9780380703128.jpg'), - ('0373638388', 'Talon And Fang (Outlanders #25)', 'https://images.isbndb.com/covers/83/83/9780373638383.jpg'), - ('0886774039', 'Sunrunner''s Fire (Dragon Prince, Book 3)', 'https://images.isbndb.com/covers/40/35/9780886774035.jpg'), - ('0312854285', 'Lord Of Chaos (The Wheel Of Time, Book 6)', 'https://images.isbndb.com/covers/42/87/9780312854287.jpg'), - ('0312930372', 'The Call Of Earth (Homecoming)', 'https://images.isbndb.com/covers/03/70/9780312930370.jpg'), - ('0385261853', 'Black Trillium', 'https://images.isbndb.com/covers/18/52/9780385261852.jpg'), - ('0312890524', 'Blood Of The Fold (Sword Of Truth, Book 3)', 'https://images.isbndb.com/covers/05/20/9780312890520.jpg'), - ('031287054X', 'The Miocene Arrow', 'https://images.isbndb.com/covers/05/46/9780312870546.jpg'), - ('0812545591', 'The Soprano Sorceress: The First Book Of The Spellsong Cycle', 'https://images.isbndb.com/covers/55/93/9780812545593.jpg'), - ('0152015981', 'Sophie (Books For Young Readers)', 'https://images.isbndb.com/covers/59/85/9780152015985.jpg'), - ('0399218777', 'Draw Me A Star', 'https://images.isbndb.com/covers/87/74/9780399218774.jpg'), - ('0345377591', 'The Seeress Of Kell (The Malloreon, Book 5)', 'https://images.isbndb.com/covers/75/93/9780345377593.jpg'), - ('0812095367', 'The Fascinating World Of Wolves', 'https://images.isbndb.com/covers/53/64/9780812095364.jpg'), - ('0446602930', 'Fool''s War', 'https://images.isbndb.com/covers/29/38/9780446602938.jpg'), - ('0816724350', 'A Picture Book Of Swamp And Marsh Animals', 'https://images.isbndb.com/covers/43/52/9780816724352.jpg'), - ('0816724334', 'A Picture Book Of Night-Time Animals', 'https://images.isbndb.com/covers/43/38/9780816724338.jpg'), - ('0688124097', 'Rise Of A Merchant Prince (The Serpentwar Saga)', 'https://images.isbndb.com/covers/40/90/9780688124090.jpg'), - ('0786916575', 'Servant Of The Shard (Forgotten Realms: Paths Of Darkness, Book 3)', 'https://images.isbndb.com/covers/65/73/9780786916573.jpg'), - ('031294165X', 'Firechild', 'https://images.isbndb.com/covers/16/59/9780312941659.jpg'), - ('0061052663', 'Black Light', 'https://images.isbndb.com/covers/26/68/9780061052668.jpg'), - ('0446324388', 'The Magic Cup An Irish Legend', 'https://images.isbndb.com/covers/43/80/9780446324380.jpg'), - ('0679433074', 'As Max Saw It', 'https://images.isbndb.com/covers/30/71/9780679433071.jpg'), - ('0807204684', 'Where The Red Fern Grows', 'https://images.isbndb.com/covers/46/89/9780807204689.jpg'), - ('0671624121', 'Stinger', 'https://images.isbndb.com/covers/41/25/9780671624125.jpg'), - ('0380731614', 'Link', 'https://images.isbndb.com/covers/16/19/9780380731619.jpg'), - ('0345301706', 'Disturb Not The Dream', 'https://images.isbndb.com/covers/17/03/9780345301703.jpg'), - ('0671648772', 'Empire Of The Sun', 'https://images.isbndb.com/covers/87/70/9780671648770.jpg'), - ('0345369114', 'North Of Hope', 'https://images.isbndb.com/covers/91/16/9780345369116.jpg'), - ('0451110951', 'The French Lieutenant''s Woman (Signet)', 'https://images.isbndb.com/covers/09/54/9780451110954.jpg'), - ('0816750343', 'How To Draw Endangered Animals - Pb (Bc) (How To Draw (Troll))', 'https://images.isbndb.com/covers/03/44/9780816750344.jpg'), - ('0874068118', 'You Can Draw Kittens And Cats', 'https://images.isbndb.com/covers/81/15/9780874068115.jpg'), - ('093527829X', 'My First Sewing Book: Hand Sewing', 'https://images.isbndb.com/covers/82/93/9780935278293.jpg'), - ('0451185978', 'The Langoliers: Tie-In Edition (Novella From Four Past Midnight)', 'https://images.isbndb.com/covers/59/76/9780451185976.jpg'), - ('0312971842', 'An Ocean Apart: A Novel', 'https://images.isbndb.com/covers/18/47/9780312971847.jpg'), - ('0821764039', 'Exposure', 'https://images.isbndb.com/covers/40/39/9780821764039.jpg'), - ('1564581772', 'DK Handbooks: Horses', 'https://images.isbndb.com/covers/17/78/9781564581778.jpg'), - ('067980353X', 'The Look-It-Up Book Of Presidents', 'https://images.isbndb.com/covers/35/39/9780679803539.jpg'), - ('0915793806', 'Fighting Invisible Tigers: A Stress Management Guide For Teens', 'https://images.isbndb.com/covers/38/08/9780915793808.jpg'), - ('1558533729', 'America''s Dumbest Criminals: Wild And Weird Stories Of Fumbling Felons, Clumsy Crooks, And Ridiculous Robbers', 'https://images.isbndb.com/covers/37/21/9781558533721.jpg'), - ('0801487722', 'Fish Behavior In The Aquarium And In The Wild (Comstock Books)', 'https://images.isbndb.com/covers/77/29/9780801487729.jpg'), - ('0812574982', 'Heaven Cent (Xanth)', 'https://images.isbndb.com/covers/49/82/9780812574982.jpg'), - ('0786819146', 'The Eternity Code (Artemis Fowl, Book 3)', 'https://images.isbndb.com/covers/91/40/9780786819140.jpg'), - ('0312216130', 'The Dog Crisis', 'https://images.isbndb.com/covers/61/39/9780312216139.jpg'), - ('0446610968', 'Dark Inheritance', 'https://images.isbndb.com/covers/09/64/9780446610964.jpg'), - ('0688139582', 'Protecting Marie', 'https://images.isbndb.com/covers/95/82/9780688139582.jpg'), - ('0786808551', 'The Arctic Incident (Artemis Fowl, Book 2)', 'https://images.isbndb.com/covers/85/57/9780786808557.jpg'), - ('1885173997', 'Realty Check', 'https://images.isbndb.com/covers/39/97/9781885173997.jpg'), - ('0441005659', 'The Crimson Claw (LucasFilm''s Alien Chronicles, Book 2)', 'https://images.isbndb.com/covers/56/59/9780441005659.jpg'), - ('0441006353', 'The Crystal Eye (LucasFilm''s Alien Chronicles, Book 3)', 'https://images.isbndb.com/covers/63/59/9780441006359.jpg'), - ('0812584236', 'The Farseekers: The Obernewtyn Chronicles - Book Two (The Obernewtyn Chronicles, Book 2)', 'https://images.isbndb.com/covers/42/33/9780812584233.jpg'), - ('0451182987', 'The Year The Horses Came', 'https://images.isbndb.com/covers/29/82/9780451182982.jpg'), - ('0805462996', 'Letters To Baby: A Keepsake Of Blessings And Wisdom For New Babies', 'https://images.isbndb.com/covers/29/99/9780805462999.jpg'), - ('0671524208', 'Deep Waters', 'https://images.isbndb.com/covers/42/03/9780671524203.jpg'), - ('0891073000', 'Journey To Aldairoon (A Crossway Youth Book)', 'https://images.isbndb.com/covers/30/00/9780891073000.jpg'), - ('0440437423', 'House With The Clock In Its Walls, The', 'https://images.isbndb.com/covers/74/20/9780440437420.jpg'), - ('0821746200', 'Out Of The Darkness: A Liz Connors Mystery', 'https://images.isbndb.com/covers/62/02/9780821746202.jpg'), - ('0679892648', 'Sammy Keyes And The Hotel Thief', 'https://images.isbndb.com/covers/26/49/9780679892649.jpg'), - ('0671001841', 'Night Of The Werecat (R.L. Stine''s Ghosts Of Fear Street, No 12)', 'https://images.isbndb.com/covers/18/41/9780671001841.jpg'), - ('0671001876', 'Fright Christmas RL Stine''s Ghosts Of Fear Street 15 (Ghosts Of Fear Street)', 'https://images.isbndb.com/covers/18/72/9780671001872.jpg'), - ('0439108403', 'Word Puzzles For Kids (Mensa (Scholastic))', 'https://images.isbndb.com/covers/84/09/9780439108409.jpg'), - ('0679856927', 'A HORSE FOR MARY BETH (Riding Academy)', 'https://images.isbndb.com/covers/69/24/9780679856924.jpg'), - ('0553280708', 'OXFORD BLOOD', 'https://images.isbndb.com/covers/07/08/9780553280708.jpg'), - ('0812507452', 'People Of The Sea (The First North Americans Series, Book 5)', 'https://images.isbndb.com/covers/74/54/9780812507454.jpg'), - ('067187599X', 'The City Who Fought (Brainship)', 'https://images.isbndb.com/covers/59/92/9780671875992.jpg'), - ('0553572393', 'Green Mars (Mars Trilogy, Book 2)', 'https://images.isbndb.com/covers/23/91/9780553572391.jpg'), - ('0671877135', 'In Celebration Of Lammas Night', 'https://images.isbndb.com/covers/71/32/9780671877132.jpg'), - ('0553562622', 'Please Don''t Die (One Last Wish)', 'https://images.isbndb.com/covers/26/20/9780553562620.jpg'), - ('0836228804', 'Poodles: A Book Of Postcards', 'https://images.isbndb.com/covers/88/09/9780836228809.jpg'), - ('0812029763', 'Ferrets: Everything About Purchase, Care, Nutrition, Diseases, Behavior, And Breeding (Pet Care Series)', 'https://images.isbndb.com/covers/97/65/9780812029765.jpg'), - ('084993897X', 'Together At Home', 'https://images.isbndb.com/covers/89/79/9780849938979.jpg'), - ('0380709902', 'Foreign Affairs', 'https://images.isbndb.com/covers/99/08/9780380709908.jpg'), - ('0964561131', 'When The World Was Steady', 'https://images.isbndb.com/covers/11/37/9780964561137.jpg'), - ('1878605003', 'War On Debt: Breaking The Power Of Debt (Financial Freedom Series, V. 1)', 'https://images.isbndb.com/covers/50/09/9781878605009.jpg'), - ('0590338684', 'Kid Power', 'https://images.isbndb.com/covers/86/84/9780590338684.jpg'), - ('0590411837', 'Secret Missions: Four True Life Stories (Scholastic Biography)', 'https://images.isbndb.com/covers/18/37/9780590411837.jpg'), - ('1555135269', 'The Mystery Of The Second Map (Ten Commandments Mysteries)', 'https://images.isbndb.com/covers/52/63/9781555135263.jpg'), - ('0880709723', 'Disaster In The Yukon (Global Air Troubleshooters)', 'https://images.isbndb.com/covers/97/29/9780880709729.jpg'), - ('0440472105', 'RAMONA FOREVER (Ramona Quimby (Paperback))', 'https://images.isbndb.com/covers/21/00/9780440472100.jpg'), - ('0590401939', 'You Be The Jury', 'https://images.isbndb.com/covers/19/37/9780590401937.jpg'), - ('0590456903', 'You Be The Detective II', 'https://images.isbndb.com/covers/69/06/9780590456906.jpg'), - ('051508994X', 'Vision', 'https://images.isbndb.com/covers/99/43/9780515089943.jpg'), - ('1555137377', 'Awesome Real-Life Bible Devotions For Kids', 'https://images.isbndb.com/covers/73/73/9781555137373.jpg'), - ('0800753569', 'Joan ''N'' The Whale : Fresh And Funny Parables To Make You Think About Your Faith', 'https://images.isbndb.com/covers/35/66/9780800753566.jpg'), - ('0840792549', 'The Legend Of The Great Grizzly (High Sierra Adventure Series)', 'https://images.isbndb.com/covers/25/49/9780840792549.jpg'), - ('0874064163', 'Girl With Green Hair', 'https://images.isbndb.com/covers/41/62/9780874064162.jpg'), - ('0380761122', 'Mom, There''s A Pig In My Bed!', 'https://images.isbndb.com/covers/11/28/9780380761128.jpg'), - ('039475591X', 'Clea And Zeus Divorce', 'https://images.isbndb.com/covers/59/15/9780394755915.jpg'), - ('0671747134', 'The Lives Of The Dead', 'https://images.isbndb.com/covers/71/38/9780671747138.jpg'), - ('0671656767', 'Into Love And Out Again: Stories', 'https://images.isbndb.com/covers/67/68/9780671656768.jpg'), - ('0671645870', 'The Man Who Owned Vermont', 'https://images.isbndb.com/covers/58/78/9780671645878.jpg'), - ('0373834152', 'Soldier And The Rebel (By Request 2s)', 'https://images.isbndb.com/covers/41/50/9780373834150.jpg'), - ('055327953X', 'To Be The Best', 'https://images.isbndb.com/covers/95/35/9780553279535.jpg'), - ('0373244770', 'The Royal Macallister (The Baby Bet: Macallister''s Gifts) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/47/75/9780373244775.jpg'), - ('0373271808', 'Right Side Of The Law (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/18/01/9780373271801.jpg'), - ('0671533789', 'Bittersweet Sixteen (First Love From Silhouette #78)', 'https://images.isbndb.com/covers/37/86/9780671533786.jpg'), - ('078681358X', 'Morning Girl', 'https://images.isbndb.com/covers/35/82/9780786813582.jpg'), - ('0486291707', 'The Adventures Of Prickly Porky (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/17/03/9780486291703.jpg'), - ('0064405788', 'Wringer (Trophy Newbery)', 'https://images.isbndb.com/covers/57/82/9780064405782.jpg'), - ('1856979660', 'Horse Stories (A Thoroughbred Collection)', 'https://images.isbndb.com/covers/96/65/9781856979665.jpg'), - ('0140363912', 'Letters From Rifka', 'https://images.isbndb.com/covers/39/13/9780140363913.jpg'), - ('0064405753', 'On The Other Side Of The Hill (Little House)', 'https://images.isbndb.com/covers/57/51/9780064405751.jpg'), - ('0684191202', 'The Snowbird', 'https://images.isbndb.com/covers/12/01/9780684191201.jpg'), - ('0312113420', 'James Herriot''s Cat Stories', 'https://images.isbndb.com/covers/34/21/9780312113421.jpg'), - ('0060274069', 'Julie''s Wolf Pack (Julie Of The Wolves)', 'https://images.isbndb.com/covers/40/61/9780060274061.jpg'), - ('0440220246', 'Johnny Tremain', 'https://images.isbndb.com/covers/02/44/9780440220244.jpg'), - ('0679767819', 'The Demolished Man', 'https://images.isbndb.com/covers/78/17/9780679767817.jpg'), - ('0590623761', 'Revenge Of The Mummy (Clue Series, Book 13)', 'https://images.isbndb.com/covers/37/66/9780590623766.jpg'), - ('0915560186', 'Willy And Wanda Adventures: Merry Musketeers (# 18)', 'https://images.isbndb.com/covers/01/89/9780915560189.jpg'), - ('0395957524', 'Three Stories You Can Read To Your Cat', 'https://images.isbndb.com/covers/75/23/9780395957523.jpg'), - ('0590252194', 'Winter Days In The Big Woods (My First Little House Books)', 'https://images.isbndb.com/covers/21/95/9780590252195.jpg'), - ('0307119408', 'Just Go To Bed (Little Critter) (Pictureback(R))', 'https://images.isbndb.com/covers/94/07/9780307119407.jpg'), - ('0425138232', 'Eye Of The Storm (Sean Dillon)', 'https://images.isbndb.com/covers/82/36/9780425138236.jpg'), - ('0307117138', 'Just A Nap (Look-Look)', 'https://images.isbndb.com/covers/71/37/9780307117137.jpg'), - ('0307126854', 'What A Bad Dream (A Golden Look-Look Book)', 'https://images.isbndb.com/covers/68/56/9780307126856.jpg'), - ('030711936X', 'Just Grandpa And Me (Little Critter) (Look-Look)', 'https://images.isbndb.com/covers/93/60/9780307119360.jpg'), - ('0394825691', 'Winnie The Pooh And Tigger Too (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/56/94/9780394825694.jpg'), - ('0394926250', 'Snow White & The Seven Dwarfs (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/62/54/9780394926254.jpg'), - ('0440411483', 'So What?', 'https://images.isbndb.com/covers/14/82/9780440411482.jpg'), - ('0689803931', 'Misty''s Twilight', 'https://images.isbndb.com/covers/39/32/9780689803932.jpg'), - ('006106632X', 'The Lost Foal (Ashleigh, No. 8)', 'https://images.isbndb.com/covers/63/20/9780061066320.jpg'), - ('044040942X', 'The Battle For The Castle', 'https://images.isbndb.com/covers/94/27/9780440409427.jpg'), - ('0689807791', 'Brown Sunshine Of Sawdust Valley', 'https://images.isbndb.com/covers/77/94/9780689807794.jpg'), - ('0934998191', 'Prodigal Cat (Classic Children''s Story)', 'https://images.isbndb.com/covers/81/92/9780934998192.jpg'), - ('0441005993', 'The Long Patrol (Redwall, Book 10)', 'https://images.isbndb.com/covers/59/94/9780441005994.jpg'), - ('0553572644', 'The Red Wyvern (Dragon Mage, Book 1)', 'https://images.isbndb.com/covers/26/43/9780553572643.jpg'), - ('0689318332', 'Wolf-Speaker', 'https://images.isbndb.com/covers/83/37/9780689318337.jpg'), - ('0440425050', 'Five Little Peppers And How They Grew (Dell Yearling Classic)', 'https://images.isbndb.com/covers/50/52/9780440425052.jpg'), - ('156282144X', 'The Sorcerer''s Apprentice: Storybook And Magic Tricks', 'https://images.isbndb.com/covers/14/49/9781562821449.jpg'), - ('0679805273', 'Oh, The Places You''ll Go!', 'https://images.isbndb.com/covers/52/74/9780679805274.jpg'), - ('0440411459', 'Baby', 'https://images.isbndb.com/covers/14/51/9780440411451.jpg'), - ('0020442106', 'The Last Battle', 'https://images.isbndb.com/covers/21/03/9780020442103.jpg'), - ('0064404781', 'Little House On Rocky Ridge', 'https://images.isbndb.com/covers/47/85/9780064404785.jpg'), - ('0590411365', 'Eight Tales Of Terror', 'https://images.isbndb.com/covers/13/63/9780590411363.jpg'), - ('0140364749', 'Lad: A Dog', 'https://images.isbndb.com/covers/47/43/9780140364743.jpg'), - ('0689714920', 'Misty Of Chincoteague', 'https://images.isbndb.com/covers/49/24/9780689714924.jpg'), - ('0821770829', 'Finding Ian (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/08/25/9780821770825.jpg'), - ('044100315X', 'The Bellmaker (Redwall, Book 7)', 'https://images.isbndb.com/covers/31/50/9780441003150.jpg'), - ('0064405745', 'In The Land Of The Big Red Apple (Little House)', 'https://images.isbndb.com/covers/57/44/9780064405744.jpg'), - ('0397318731', 'Sarah''s Unicorn', 'https://images.isbndb.com/covers/87/35/9780397318735.jpg'), - ('0397320043', 'Mighty Mizzling Mouse', 'https://images.isbndb.com/covers/00/42/9780397320042.jpg'), - ('0440472431', 'Ramona And Her Mother (Ramona Quimby)', 'https://images.isbndb.com/covers/24/38/9780440472438.jpg'), - ('0394935942', 'The Enormous Crocodile', 'https://images.isbndb.com/covers/59/42/9780394935942.jpg'), - ('0961866349', 'Backyard Scientist Series 4: A Series Of Hands-On Science Experiments And Projects To Thrill, Delight', 'https://images.isbndb.com/covers/63/41/9780961866341.jpg'), - ('0781409756', 'Story Of Jesus', 'https://images.isbndb.com/covers/97/59/9780781409759.jpg'), - ('0856487643', 'The Story Of The Sower (Lion Story Bible)', 'https://images.isbndb.com/covers/76/44/9780856487644.jpg'), - ('0307132048', 'The Mouse Family''s New Home (A Little Golden Sniff It Book)', 'https://images.isbndb.com/covers/20/48/9780307132048.jpg'), - ('1555781020', 'The Girl With The Pop-Up Garden (Land Of Pleasant Dreams)', 'https://images.isbndb.com/covers/10/26/9781555781026.jpg'), - ('0517560232', 'Grandma & The Pirate', 'https://images.isbndb.com/covers/02/35/9780517560235.jpg'), - ('0525259600', 'As I Was Crossing Boston Common: 2', 'https://images.isbndb.com/covers/96/02/9780525259602.jpg'), - ('0061059846', 'Acorna''s World', 'https://images.isbndb.com/covers/98/41/9780061059841.jpg'), - ('0345336038', 'To Ride Pegasus', 'https://images.isbndb.com/covers/60/33/9780345336033.jpg'), - ('0441007287', 'Circle At Center (Seven Circles Trilogy, Book 1)', 'https://images.isbndb.com/covers/72/88/9780441007288.jpg'), - ('0064461629', 'Indian Captive: The Story Of Mary Jemison', 'https://images.isbndb.com/covers/16/27/9780064461627.jpg'), - ('044022036X', 'The WITCH Of BLACKBIRD POND', 'https://images.isbndb.com/covers/03/67/9780440220367.jpg'), - ('0874063353', 'A Home For Jessie', 'https://images.isbndb.com/covers/33/56/9780874063356.jpg'), - ('0590319043', 'Tread Softly', 'https://images.isbndb.com/covers/90/41/9780590319041.jpg'), - ('0441008550', 'World Fall (Seven Circles Trilogy, Book 2)', 'https://images.isbndb.com/covers/85/51/9780441008551.jpg'), - ('0570049628', 'Confirmed In Christ', 'https://images.isbndb.com/covers/96/23/9780570049623.jpg'), - ('0553154680', 'Stormy', 'https://images.isbndb.com/covers/46/89/9780553154689.jpg'), - ('0440900107', 'Jim Ugly', 'https://images.isbndb.com/covers/01/08/9780440900108.jpg'), - ('0140360352', 'Gentle Ben', 'https://images.isbndb.com/covers/03/56/9780140360356.jpg'), - ('0440220289', 'The Black Pearl', 'https://images.isbndb.com/covers/02/82/9780440220282.jpg'), - ('084233226X', 'Desecration: Antichrist Takes The Throne (Left Behind No. 9)', 'https://images.isbndb.com/covers/22/62/9780842332262.jpg'), - ('0441003494', 'A Breach In The Watershed (Watershed Trilogy, Book 1)', 'https://images.isbndb.com/covers/34/95/9780441003495.jpg'), - ('0886775795', 'Mindspeaker''s Call (Ghatti''s Tale)', 'https://images.isbndb.com/covers/57/97/9780886775797.jpg'), - ('157145165X', 'Encyclopedia Of The Horse', 'https://images.isbndb.com/covers/16/51/9781571451651.jpg'), - ('0886775507', 'Finders Seekers (Ghatti''s Tale)', 'https://images.isbndb.com/covers/55/06/9780886775506.jpg'), - ('0451194764', 'Murder, She Wrote: Murder At The Powderhorn Ranch', 'https://images.isbndb.com/covers/47/63/9780451194763.jpg'), - ('155874715X', 'Chicken Soup For The Christian Family Soul: Stories To Open The Heart And Rekindle The Spirit (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/71/59/9781558747159.jpg'), - ('0440412579', 'Gib Rides Home', 'https://images.isbndb.com/covers/25/71/9780440412571.jpg'), - ('0027701301', 'Hatchet', 'https://images.isbndb.com/covers/13/02/9780027701302.jpg'), - ('0439078415', 'Chicken Soup For The Teenage Soul', 'https://images.isbndb.com/covers/84/12/9780439078412.jpg'), - ('0140384235', 'Kavik The Wolf Dog', 'https://images.isbndb.com/covers/42/39/9780140384239.jpg'), - ('0553155601', 'Snow Dog (Bantam Skylark Book)', 'https://images.isbndb.com/covers/56/00/9780553155600.jpg'), - ('0671721836', 'The Robin And The Kestrel: Bardic Voices II', 'https://images.isbndb.com/covers/18/31/9780671721831.jpg'), - ('0671878530', 'Four And Twenty Blackbirds A Bardic Voices Novel', 'https://images.isbndb.com/covers/85/35/9780671878535.jpg'), - ('0671876368', 'The Eagle & The Nightingales: Bardic Voices, Book III', 'https://images.isbndb.com/covers/63/64/9780671876364.jpg'), - ('0590442953', 'Clifford''s Pals (Clifford 8x8)', 'https://images.isbndb.com/covers/29/54/9780590442954.jpg'), - ('0385489005', 'Ruth, A Portrait: The Story Of Ruth Bell Graham', 'https://images.isbndb.com/covers/90/03/9780385489003.jpg'), - ('0811643085', 'A Tooth For The Tooth Fairy (For Real Book)', 'https://images.isbndb.com/covers/30/85/9780811643085.jpg'), - ('0380800500', 'Can Of Worms (An Avon Camelot Book)', 'https://images.isbndb.com/covers/05/06/9780380800506.jpg'), - ('0689808518', 'The Switching Hour (Real Monsters)', 'https://images.isbndb.com/covers/85/17/9780689808517.jpg'), - ('0671026518', 'The Attack Of The Two-Inch Teacher (I Was A Sixth Grade Alien)', 'https://images.isbndb.com/covers/65/16/9780671026516.jpg'), - ('0762409053', 'Digital Detectives #1: Case Of The Killer Bugs', 'https://images.isbndb.com/covers/90/51/9780762409051.jpg'), - ('0312922884', 'Shadow Dancers', 'https://images.isbndb.com/covers/28/87/9780312922887.jpg'), - ('0684856093', 'The 7 Habits Of Highly Effective Teens', 'https://images.isbndb.com/covers/60/94/9780684856094.jpg'), - ('0312269242', 'The Honey Trap', 'https://images.isbndb.com/covers/92/41/9780312269241.jpg'), - ('044145125X', 'The Knight And Knave Of Swords (Saga Of Fafhrd And The Gray Mouser, Bk. 7)', 'https://images.isbndb.com/covers/12/58/9780441451258.jpg'), - ('0380645432', 'Howliday Inn (Bunnicula)', 'https://images.isbndb.com/covers/54/35/9780380645435.jpg'), - ('087406841X', 'A Horse For Mandy', 'https://images.isbndb.com/covers/84/12/9780874068412.jpg'), - ('044022022X', 'The Cricket In Times Square', 'https://images.isbndb.com/covers/02/20/9780440220220.jpg'), - ('0440407079', 'Blubber', 'https://images.isbndb.com/covers/70/72/9780440407072.jpg'), - ('0440219914', 'Shiloh', 'https://images.isbndb.com/covers/99/10/9780440219910.jpg'), - ('068801075X', 'A Chance Wild Apple', 'https://images.isbndb.com/covers/07/51/9780688010751.jpg'), - ('0486252086', 'The Road To Oz (Dover Children''s Classics)', 'https://images.isbndb.com/covers/20/87/9780486252087.jpg'), - ('0140328742', 'The Wonderful Story Of Henry Sugar: And Six More', 'https://images.isbndb.com/covers/87/45/9780140328745.jpg'), - ('0380709570', 'Ralph S. Mouse', 'https://images.isbndb.com/covers/95/71/9780380709571.jpg'), - ('0590629816', 'The Predator (Animorphs, No. 5)', 'https://images.isbndb.com/covers/98/12/9780590629812.jpg'), - ('0590494368', 'The Underground (Animorphs #17)', 'https://images.isbndb.com/covers/43/66/9780590494366.jpg'), - ('0394825993', 'The Shadow In The North (Sally Lockhart Trilogy, Book 2)', 'https://images.isbndb.com/covers/59/91/9780394825991.jpg'), - ('0590435418', 'Onion John', 'https://images.isbndb.com/covers/54/13/9780590435413.jpg'), - ('0590424602', 'To Be A Slave', 'https://images.isbndb.com/covers/46/08/9780590424608.jpg'), - ('0141301163', 'Zel', 'https://images.isbndb.com/covers/11/67/9780141301167.jpg'), - ('0590383892', 'Sirena', 'https://images.isbndb.com/covers/38/99/9780590383899.jpg'), - ('0425042502', 'Soul Catcher', 'https://images.isbndb.com/covers/25/02/9780425042502.jpg'), - ('3492101658', 'Geistes Gegenwart. Die Wiederkehr Des Heiligen Geistes.', 'https://images.isbndb.com/covers/16/53/9783492101653.jpg'), - ('0439286069', 'Freak The Mighty', 'https://images.isbndb.com/covers/60/60/9780439286060.jpg'), - ('0140190430', 'On Having No Head: Zen And The Rediscovery Of The Obvious (Arkana)', 'https://images.isbndb.com/covers/04/34/9780140190434.jpg'), - ('3811820966', 'Kosmos-Chroniken, Bd.1, Reginald Bull', 'https://images.isbndb.com/covers/09/68/9783811820968.jpg'), - ('3404243013', 'Lord Gamma.', 'https://images.isbndb.com/covers/30/13/9783404243013.jpg'), - ('3150089573', 'El Greco Malt Den Grossinquisitor', 'https://images.isbndb.com/covers/95/76/9783150089576.jpg'), - ('0380755351', 'The Hollow Earth: The Narrative Of Mason Algiers Reynolds Of Virginia', 'https://images.isbndb.com/covers/53/56/9780380755356.jpg'), - ('0440188601', 'Time Out Of Joint', 'https://images.isbndb.com/covers/86/05/9780440188605.jpg'), - ('0553561227', 'The Ugly Little Boy', 'https://images.isbndb.com/covers/12/27/9780553561227.jpg'), - ('1857231791', 'Against A Dark Background', 'https://images.isbndb.com/covers/17/93/9781857231793.jpg'), - ('0385327943', 'Midnight Predator', 'https://images.isbndb.com/covers/79/47/9780385327947.jpg'), - ('1591820634', 'Planet Ladder, Vol. 4', 'https://images.isbndb.com/covers/06/35/9781591820635.jpg'), - ('193151464X', 'Planet Ladder, Vol. 3', 'https://images.isbndb.com/covers/46/44/9781931514644.jpg'), - ('1569716692', 'Oh My Goddess! Vol. 1: Wrong Number', 'https://images.isbndb.com/covers/66/94/9781569716694.jpg'), - ('1591820014', 'Invu Vol. 1', 'https://images.isbndb.com/covers/00/17/9781591820017.jpg'), - ('1591822424', 'Paradise Kiss, Vol. 5', 'https://images.isbndb.com/covers/24/24/9781591822424.jpg'), - ('1892213753', 'Cardcaptor Sakura: Master Of The Clow, Book 1', 'https://images.isbndb.com/covers/37/54/9781892213754.jpg'), - ('1892213761', 'Cardcaptor Sakura: Master Of The Clow, Book 2', 'https://images.isbndb.com/covers/37/61/9781892213761.jpg'), - ('189221377X', 'Cardcaptor Sakura: Master Of The Clow, Book 3', 'https://images.isbndb.com/covers/37/78/9781892213778.jpg'), - ('1892213788', 'Cardcaptor Sakura: Master Of The Clow, Book 4', 'https://images.isbndb.com/covers/37/85/9781892213785.jpg'), - ('1892213796', 'Cardcaptor Sakura: Master Of The Clow, Book 5', 'https://images.isbndb.com/covers/37/92/9781892213792.jpg'), - ('156931957X', 'Fushigi Yugi: The Mysterious Play, Vol. 1: Priestess', 'https://images.isbndb.com/covers/95/74/9781569319574.jpg'), - ('1591160774', 'Wedding Peach, Vol. 2 (Wedding Peach Series)', 'https://images.isbndb.com/covers/07/79/9781591160779.jpg'), - ('1591162149', 'Hot Gimmick, Vol. 1', 'https://images.isbndb.com/covers/21/48/9781591162148.jpg'), - ('1591160766', 'Wedding Peach, Vol. 1', 'https://images.isbndb.com/covers/07/62/9781591160762.jpg'), - ('1591820642', 'Rave Master, Vol. 1', 'https://images.isbndb.com/covers/06/42/9781591820642.jpg'), - ('1569319502', 'X/1999, Vol. 2: Overture', 'https://images.isbndb.com/covers/95/05/9781569319505.jpg'), - ('1591823544', 'The Kindaichi Case Files: The Opera House Murders', 'https://images.isbndb.com/covers/35/44/9781591823544.jpg'), - ('1569714215', 'Oh My Goddess! Adventures Of The Mini-Goddesses', 'https://images.isbndb.com/covers/42/18/9781569714218.jpg'), - ('0671024337', 'The Watcher''s Guide, Volume 1 (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/43/38/9780671024338.jpg'), - ('1563897490', 'Gon: Introducing The Dinosaur That Time Will Never Forget! (Paradox Fiction)', 'https://images.isbndb.com/covers/74/98/9781563897498.jpg'), - ('1931514542', 'Marmalade Boy, Vol. 1', 'https://images.isbndb.com/covers/45/45/9781931514545.jpg'), - ('1931514550', 'Marmalade Boy, Vol. 2', 'https://images.isbndb.com/covers/45/52/9781931514552.jpg'), - ('1931514569', 'Marmalade Boy, Vol. 3', 'https://images.isbndb.com/covers/45/69/9781931514569.jpg'), - ('1931514577', 'Marmalade Boy, Vol. 4', 'https://images.isbndb.com/covers/45/76/9781931514576.jpg'), - ('1591820022', 'I.N.V.U., Book 2', 'https://images.isbndb.com/covers/00/24/9781591820024.jpg'), - ('1591823803', 'X-Day, Book 2', 'https://images.isbndb.com/covers/38/03/9781591823803.jpg'), - ('1591823277', 'Fake Vol. 2', 'https://images.isbndb.com/covers/32/78/9781591823278.jpg'), - ('1591826969', 'Girl Got Game, Book 1', 'https://images.isbndb.com/covers/69/65/9781591826965.jpg'), - ('1892213591', 'Cardcaptor Sakura #3', 'https://images.isbndb.com/covers/35/94/9781892213594.jpg'), - ('097250379X', 'Slam Dunk, Vol. 1', 'https://images.isbndb.com/covers/37/92/9780972503792.jpg'), - ('1591821088', 'Paradise Kiss, Book 4', 'https://images.isbndb.com/covers/10/83/9781591821083.jpg'), - ('1569319499', 'X/1999, Vol. 1, Prelude', 'https://images.isbndb.com/covers/94/99/9781569319499.jpg'), - ('4889960473', 'How To Draw Manga Special: Colored Original Drawing', 'https://images.isbndb.com/covers/04/71/9784889960471.jpg'), - ('1591821541', 'Demon Diary, Book 1', 'https://images.isbndb.com/covers/15/40/9781591821540.jpg'), - ('1591823781', 'Brigadoon, Vol. 2', 'https://images.isbndb.com/covers/37/80/9781591823780.jpg'), - ('0525946845', 'Dream Weaver', 'https://images.isbndb.com/covers/68/47/9780525946847.jpg'), - ('0786015012', 'The Invoker (Lawson Vampire Novels)', 'https://images.isbndb.com/covers/50/16/9780786015016.jpg'), - ('1591820340', 'Wish #1', 'https://images.isbndb.com/covers/03/45/9781591820345.jpg'), - ('1591823668', 'The Vision Of Escaflowne, Book 1', 'https://images.isbndb.com/covers/36/67/9781591823667.jpg'), - ('1591822416', 'Under The Glass Moon, Vol. 2', 'https://images.isbndb.com/covers/24/17/9781591822417.jpg'), - ('1591822408', 'Under The Glass Moon, Vol. 1', 'https://images.isbndb.com/covers/24/00/9781591822400.jpg'), - ('0375507779', 'The Talisman', 'https://images.isbndb.com/covers/77/79/9780375507779.jpg'), - ('159182379X', 'X-Day, Book 1', 'https://images.isbndb.com/covers/37/97/9781591823797.jpg'), - ('1591823773', 'Brigadoon, Vol. 1', 'https://images.isbndb.com/covers/37/73/9781591823773.jpg'), - ('1588991962', 'Onegai Teacher Book 1', 'https://images.isbndb.com/covers/19/66/9781588991966.jpg'), - ('1588992942', 'Onegai Teacher Volume 2', 'https://images.isbndb.com/covers/29/49/9781588992949.jpg'), - ('0590411829', '101 School Jokes', 'https://images.isbndb.com/covers/18/20/9780590411820.jpg'), - ('0880387548', 'KENDERMORE (Dragonlance: Preludes)', 'https://images.isbndb.com/covers/75/45/9780880387545.jpg'), - ('0880382678', 'Dragon Lance: Legends Vol. 3: Test Of The Twins', 'https://images.isbndb.com/covers/26/70/9780880382670.jpg'), - ('0394825713', '101 DALMATIANS (Disney''s Wonderful World Of Reading, No. 23)', 'https://images.isbndb.com/covers/57/17/9780394825717.jpg'), - ('1568304706', 'Adobe(R) Illustrator(R) 8.0 Classroom In A Book', 'https://images.isbndb.com/covers/47/00/9781568304700.jpg'), - ('0380821036', 'Risky Business', 'https://images.isbndb.com/covers/10/37/9780380821037.jpg'), - ('0670835382', 'Four Past Midnight', 'https://images.isbndb.com/covers/53/86/9780670835386.jpg'), - ('0881622400', 'Love Potions A Book Of Charms And Omens', 'https://images.isbndb.com/covers/24/09/9780881622409.jpg'), - ('1568849079', 'Multimedia & CD-ROMs For Dummies', 'https://images.isbndb.com/covers/90/72/9781568849072.jpg'), - ('1569314284', 'Night Warriors: Darkstalkers'' Revenge', 'https://images.isbndb.com/covers/42/89/9781569314289.jpg'), - ('1569318697', 'Junko Mizuno''S Hansel And Gretel (Viz Graphic Novel)', 'https://images.isbndb.com/covers/86/90/9781569318690.jpg'), - ('0451523199', 'Anne''s House Of Dreams (Anne Of Green Gables)', 'https://images.isbndb.com/covers/31/98/9780451523198.jpg'), - ('0883650215', 'The Key To Chinese Cooking', 'https://images.isbndb.com/covers/02/19/9780883650219.jpg'), - ('0312879016', 'More Than Mortal', 'https://images.isbndb.com/covers/90/13/9780312879013.jpg'), - ('1591822157', 'Boredom Blasters Halloween Edition (Lithgow Palooza Kits)', 'https://images.isbndb.com/covers/21/58/9781591822158.jpg'), - ('1591822149', 'Reality Check, Book 1', 'https://images.isbndb.com/covers/21/41/9781591822141.jpg'), - ('1561633291', 'House Of Java Volume 2', 'https://images.isbndb.com/covers/32/96/9781561633296.jpg'), - ('1569319014', 'One Piece, Vol. 1', 'https://images.isbndb.com/covers/90/17/9781569319017.jpg'), - ('1591821878', 'King Of Hell, Book 1', 'https://images.isbndb.com/covers/18/78/9781591821878.jpg'), - ('1892213362', 'Cardcaptor Sakura 1', 'https://images.isbndb.com/covers/33/65/9781892213365.jpg'), - ('1569311803', 'No Need For Tenchi! (Book 1)', 'https://images.isbndb.com/covers/18/06/9781569311806.jpg'), - ('1580084648', 'Frightful Fairy Tales', 'https://images.isbndb.com/covers/46/42/9781580084642.jpg'), - ('0517703238', 'Blood Lines: Long And Short Stories', 'https://images.isbndb.com/covers/32/36/9780517703236.jpg'), - ('0060174110', 'The Woman Who Lives In The Earth', 'https://images.isbndb.com/covers/41/18/9780060174118.jpg'), - ('0881037214', 'The Dead Zone (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/72/10/9780881037210.jpg'), - ('0061054151', 'Whirlwind (The X-Files)', 'https://images.isbndb.com/covers/41/50/9780061054150.jpg'), - ('0451157753', 'Pet Sematary (Signet)', 'https://images.isbndb.com/covers/77/51/9780451157751.jpg'), - ('0451150708', 'Night Shift (Signet)', 'https://images.isbndb.com/covers/07/07/9780451150707.jpg'), - ('0671758721', 'Terms Of Endearment', 'https://images.isbndb.com/covers/87/21/9780671758721.jpg'), - ('1931514917', 'Cowboy Bebop # 1', 'https://images.isbndb.com/covers/49/10/9781931514910.jpg'), - ('0875965598', 'Rodale''s Successful Organic Gardening: Perennials', 'https://images.isbndb.com/covers/55/98/9780875965598.jpg'), - ('0823039919', 'Pencil Drawing Techniques', 'https://images.isbndb.com/covers/99/13/9780823039913.jpg'), - ('0140350489', 'Dracula (Puffin Classics)', 'https://images.isbndb.com/covers/04/87/9780140350487.jpg'), - ('0679438335', 'Servant Of The Bones: A Novel', 'https://images.isbndb.com/covers/83/35/9780679438335.jpg'), - ('0375416218', 'Merrick (Anne Rice)', 'https://images.isbndb.com/covers/62/17/9780375416217.jpg'), - ('1892213664', 'Clover 1', 'https://images.isbndb.com/covers/36/62/9781892213662.jpg'), - ('1591823269', 'Fake (Fake), Vol. 1', 'https://images.isbndb.com/covers/32/61/9781591823261.jpg'), - ('0671727672', 'Merchant Of Venice', 'https://images.isbndb.com/covers/76/73/9780671727673.jpg'), - ('0440471869', 'Prince And The Pauper, The', 'https://images.isbndb.com/covers/18/68/9780440471868.jpg'), - ('0451092163', 'The Shining (Signet Book)', 'https://images.isbndb.com/covers/21/68/9780451092168.jpg'), - ('0020442009', 'The Horse And His Boy (The Chronicles Of Narnia, No.5)', 'https://images.isbndb.com/covers/20/04/9780020442004.jpg'), - ('0671017136', 'Halloween Rain (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/71/32/9780671017132.jpg'), - ('0671017128', 'The Harvest (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/71/25/9780671017125.jpg'), - ('0967063108', 'Castle Of Wisdom', 'https://images.isbndb.com/covers/31/02/9780967063102.jpg'), - ('0449005747', 'Final Vinyl Days (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/57/43/9780449005743.jpg'), - ('0312288840', 'Achilles: A Novel', 'https://images.isbndb.com/covers/88/46/9780312288846.jpg'), - ('0446676098', 'The Notebook', 'https://images.isbndb.com/covers/60/90/9780446676090.jpg'), - ('0739411543', 'Vampire Sextette', 'https://images.isbndb.com/covers/15/44/9780739411544.jpg'), - ('0451169514', 'It', 'https://images.isbndb.com/covers/95/18/9780451169518.jpg'), - ('1931514623', 'Planet Ladder (Volume 1)', 'https://images.isbndb.com/covers/46/20/9781931514620.jpg'), - ('0064405036', 'The Last Battle (Narnia)', 'https://images.isbndb.com/covers/50/34/9780064405034.jpg'), - ('0064405044', 'The Silver Chair (The Chronicles Of Narnia, Book 6)', 'https://images.isbndb.com/covers/50/41/9780064405041.jpg'), - ('0064405028', 'The Voyage Of The ''Dawn Treader'' (The Chronicles Of Narnia, Book 5)', 'https://images.isbndb.com/covers/50/27/9780064405027.jpg'), - ('0064405001', 'Prince Caspian: The Return To Narnia (The Chronicles Of Narnia, Book 4)', 'https://images.isbndb.com/covers/50/03/9780064405003.jpg'), - ('006440501X', 'The Horse And His Boy (The Chronicles Of Narnia, Book 3)', 'https://images.isbndb.com/covers/50/10/9780064405010.jpg'), - ('0064404994', 'The Lion, The Witch And The Wardrobe (The Chronicles Of Narnia, Book 2)', 'https://images.isbndb.com/covers/49/90/9780064404990.jpg'), - ('067103264X', 'Storm Of The Century: An Original Screenplay', 'https://images.isbndb.com/covers/26/47/9780671032647.jpg'), - ('3442054672', 'In Aller Stille', 'https://images.isbndb.com/covers/46/71/9783442054671.jpg'), - ('3257225792', 'Unschuldige: Eine Berliner Liebesgeschichte', 'https://images.isbndb.com/covers/57/92/9783257225792.jpg'), - ('3257230982', 'Der Spion Und Der Dichter', 'https://images.isbndb.com/covers/09/87/9783257230987.jpg'), - ('3442350603', 'Die Liebe Einer Unbekannten.', 'https://images.isbndb.com/covers/06/05/9783442350605.jpg'), - ('3499121352', 'Menschenrechte Mißhandelt Und Mißbraucht. ( Rororo Aktuell).', 'https://images.isbndb.com/covers/13/57/9783499121357.jpg'), - ('3886800849', 'Die Deutsche Geschichte Geht Weiter', 'https://images.isbndb.com/covers/08/41/9783886800841.jpg'), - ('3492256856', 'Eine Für Alle', 'https://images.isbndb.com/covers/68/58/9783492256858.jpg'), - ('3423119152', 'Erzähler Der Nacht', 'https://images.isbndb.com/covers/91/53/9783423119153.jpg'), - ('3596214572', 'Die Lehren Des Don Juan. Ein Yaqui-Weg Des Wissens', 'https://images.isbndb.com/covers/45/70/9783596214570.jpg'), - ('3423110066', 'Fabian. Die Geschichte Eines Moralisten', 'https://images.isbndb.com/covers/00/68/9783423110068.jpg'), - ('3423011505', 'Die Verlorene Ehre Der Katharina Blum: Oder: Wie Gewalt Entstehen Und Wohin Sie Führen Kann Erzählung', 'https://images.isbndb.com/covers/15/01/9783423011501.jpg'), - ('3821806354', 'Der Weiße Chauffeur', 'https://images.isbndb.com/covers/63/58/9783821806358.jpg'), - ('3518389009', 'Liebesgeschichten (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/90/03/9783518389003.jpg'), - ('3596259924', 'Die Unerträgliche Leichtigkeit Des Seins. Roman.', 'https://images.isbndb.com/covers/99/22/9783596259922.jpg'), - ('019283374X', 'Alice''s Adventures In Wonderland And Through The Looking-Glass: And What Alice Found There (Oxford World''s Classics)', 'https://images.isbndb.com/covers/37/47/9780192833747.jpg'), - ('3492233740', 'Der Ehrenwerte Mörder', 'https://images.isbndb.com/covers/37/43/9783492233743.jpg'), - ('3492233708', 'Coq Rouge: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/37/05/9783492233705.jpg'), - ('3492233716', 'Der Demokratische Terrorist: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/37/12/9783492233712.jpg'), - ('337901592X', 'Frösche Und Prinzen', 'https://images.isbndb.com/covers/59/29/9783379015929.jpg'), - ('3442726689', 'Mister Aufziehvogel: Roman', 'https://images.isbndb.com/covers/66/84/9783442726684.jpg'), - ('3442720303', 'Traumjäger.', 'https://images.isbndb.com/covers/03/09/9783442720309.jpg'), - ('3458324232', 'Deutschland. Ein Wintermärchen (insel Taschenbuch)', 'https://images.isbndb.com/covers/42/32/9783458324232.jpg'), - ('3257226039', 'Ripley Under Water', 'https://images.isbndb.com/covers/60/34/9783257226034.jpg'), - ('3612276204', 'Der Putzteufel Geht Um.', 'https://images.isbndb.com/covers/62/09/9783612276209.jpg'), - ('3512003931', 'Deutschland Deine Zukunft', 'https://images.isbndb.com/covers/39/36/9783512003936.jpg'), - ('3499100355', 'Professor Unrat', 'https://images.isbndb.com/covers/03/52/9783499100352.jpg'), - ('3423241187', 'Beste Freundin, Beste Feindin', 'https://images.isbndb.com/covers/11/82/9783423241182.jpg'), - ('3873290812', 'Kuttel Daddeldu', 'https://images.isbndb.com/covers/08/15/9783873290815.jpg'), - ('3257227000', 'Kitchen', 'https://images.isbndb.com/covers/70/00/9783257227000.jpg'), - ('3257218370', 'Gottes Werk Und Teufels Beitrag', 'https://images.isbndb.com/covers/83/74/9783257218374.jpg'), - ('3596282225', 'Die Nebel Von Avalon', 'https://images.isbndb.com/covers/22/27/9783596282227.jpg'), - ('3442448263', 'Das Schwarze Manifest.', 'https://images.isbndb.com/covers/82/65/9783442448265.jpg'), - ('3257233000', 'Witwe Für Ein Jahr', 'https://images.isbndb.com/covers/30/01/9783257233001.jpg'), - ('3423122595', 'Der Meister Und Margarita. Roman', 'https://images.isbndb.com/covers/25/97/9783423122597.jpg'), - ('0140621687', 'Little Lord Fauntleroy (Penguin Popular Classics)', 'https://images.isbndb.com/covers/16/86/9780140621686.jpg'), - ('3492233724', 'Im Interesse Der Nation: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/37/29/9783492233729.jpg'), - ('3442416108', 'Eine Verhängnisvolle Wahrheit.', 'https://images.isbndb.com/covers/61/03/9783442416103.jpg'), - ('3442726328', 'Die Geisha', 'https://images.isbndb.com/covers/63/25/9783442726325.jpg'), - ('3257061455', 'Sämtliche Gedichte', 'https://images.isbndb.com/covers/14/51/9783257061451.jpg'), - ('3596148030', 'Hallo, Mister Gott, Hier Spricht Anna', 'https://images.isbndb.com/covers/80/35/9783596148035.jpg'), - ('3442446015', 'Die Landkarte Der Liebe', 'https://images.isbndb.com/covers/60/18/9783442446018.jpg'), - ('3442439027', 'Der Keim Des Verderbens: Ein Kay-Scarpetta-Roman', 'https://images.isbndb.com/covers/90/27/9783442439027.jpg'), - ('3442729688', 'Die Architekten: Roman', 'https://images.isbndb.com/covers/96/85/9783442729685.jpg'), - ('3442447666', 'Phantom In Rot, Sonderausgabe', 'https://images.isbndb.com/covers/76/64/9783442447664.jpg'), - ('3426001454', 'Liebe Ist Nur Ein Wort. Roman', 'https://images.isbndb.com/covers/14/55/9783426001455.jpg'), - ('344221548X', 'Die Sehnsucht Unserer Seele: Die Lust, Den Eigenen Weg Zu Finden', 'https://images.isbndb.com/covers/54/85/9783442215485.jpg'), - ('3630611087', 'Das Siebte Kreuz (7438 001). Roman.', 'https://images.isbndb.com/covers/10/82/9783630611082.jpg'), - ('3518368001', 'Die Neuen Leiden Des Jungen W (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/80/08/9783518368008.jpg'), - ('3518374508', 'Das Drama Des Begabten Kindes Und Die Suche Nach Dem Wahren Selbst (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/45/04/9783518374504.jpg'), - ('3257229356', ''' Small G''. Eine Sommeridylle.', 'https://images.isbndb.com/covers/93/56/9783257229356.jpg'), - ('340648879X', 'Die Menschenretter Von Cap Anamur', 'https://images.isbndb.com/covers/87/95/9783406488795.jpg'), - ('3608930663', 'Das Klingsor-Paradox', 'https://images.isbndb.com/covers/06/65/9783608930665.jpg'), - ('3453210832', 'Lost In Music. Eine Pop-Odyssee.', 'https://images.isbndb.com/covers/08/37/9783453210837.jpg'), - ('3453150228', 'Das Zimthaus', 'https://images.isbndb.com/covers/02/25/9783453150225.jpg'), - ('3498029711', 'Was Ich Liebte', 'https://images.isbndb.com/covers/97/15/9783498029715.jpg'), - ('3499110660', 'Memoiren Einer Tochter Aus Gutem Hause', 'https://images.isbndb.com/covers/06/65/9783499110665.jpg'), - ('325721796X', 'Liebe, Schmerz Und Das Ganze Verdammte Zeug: Vier Geschichten', 'https://images.isbndb.com/covers/79/64/9783257217964.jpg'), - ('340412264X', 'Das Pharao- Komplott / Sixtinische Verschwörung.', 'https://images.isbndb.com/covers/26/46/9783404122646.jpg'), - ('3499157470', 'Die Zeremonie Des Abschieds Und Gespräche Mit Jean-Paul Sartre: August - September 1974', 'https://images.isbndb.com/covers/74/79/9783499157479.jpg'), - ('3498046268', 'Wenn Frauen Zu Sehr Lieben', 'https://images.isbndb.com/covers/62/62/9783498046262.jpg'), - ('359629259X', 'Die Terroristin. Roman.', 'https://images.isbndb.com/covers/25/92/9783596292592.jpg'), - ('3499147556', 'Marcelle, Chantal, Lisa . . .', 'https://images.isbndb.com/covers/75/55/9783499147555.jpg'), - ('3499122065', 'Amerika Tag Und Nacht: Reisetagebuch 1947', 'https://images.isbndb.com/covers/20/64/9783499122064.jpg'), - ('3518366122', 'Hiroshima Mon Amour: Filmnovelle (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/61/27/9783518366127.jpg'), - ('3442438918', 'Dschingis Khans Tochter', 'https://images.isbndb.com/covers/89/14/9783442438914.jpg'), - ('3492230849', 'Der Maler', 'https://images.isbndb.com/covers/08/41/9783492230841.jpg'), - ('0684843137', 'Angela''s Ashes', 'https://images.isbndb.com/covers/31/31/9780684843131.jpg'), - ('3423113707', 'Der Andere', 'https://images.isbndb.com/covers/37/00/9783423113700.jpg'), - ('3442455707', 'Militärmusik: Roman', 'https://images.isbndb.com/covers/57/06/9783442455706.jpg'), - ('3518388762', 'Besessen.', 'https://images.isbndb.com/covers/87/61/9783518388761.jpg'), - ('3423362111', 'EQ²: Der Erfolgsquotient', 'https://images.isbndb.com/covers/21/15/9783423362115.jpg'), - ('354860062X', 'Früh Am Morgen Beginnt Die Nacht', 'https://images.isbndb.com/covers/06/28/9783548600628.jpg'), - ('3548250173', 'Der Augenblick Der Wahrheit', 'https://images.isbndb.com/covers/01/75/9783548250175.jpg'), - ('0312975856', 'The Phantom Of Manhattan', 'https://images.isbndb.com/covers/58/52/9780312975852.jpg'), - ('3442439043', 'Blinder Passagier: Ein Kay-Scarpetta-Roman', 'https://images.isbndb.com/covers/90/41/9783442439041.jpg'), - ('3492038549', 'Die Frau Mit Den Lilienknochen: Roman', 'https://images.isbndb.com/covers/85/46/9783492038546.jpg'), - ('3453198875', 'Im Zeichen Des Drachen: Roman', 'https://images.isbndb.com/covers/88/76/9783453198876.jpg'), - ('3426624028', 'Tod An Heiliger Stätte', 'https://images.isbndb.com/covers/40/29/9783426624029.jpg'), - ('3442443784', 'Gesang Vom Großen Feuer.', 'https://images.isbndb.com/covers/37/89/9783442443789.jpg'), - ('3442096480', 'Töchter Des Himmels: Roman', 'https://images.isbndb.com/covers/64/80/9783442096480.jpg'), - ('3442448395', 'Die Pflicht Zu Schweigen', 'https://images.isbndb.com/covers/83/95/9783442448395.jpg'), - ('3499228637', 'Ticket Nach Tokio', 'https://images.isbndb.com/covers/86/36/9783499228636.jpg'), - ('034082428X', 'Let''s Get Physical', 'https://images.isbndb.com/covers/42/83/9780340824283.jpg'), - ('0192804472', 'The Oxford Book Of Victorian Ghost Stories', 'https://images.isbndb.com/covers/44/71/9780192804471.jpg'), - ('0679734465', 'Valis', 'https://images.isbndb.com/covers/44/68/9780679734468.jpg'), - ('0151910790', 'Travels In Hyperreality: Essays', 'https://images.isbndb.com/covers/07/93/9780151910793.jpg'), - ('0571145906', 'The Singing Detective', 'https://images.isbndb.com/covers/59/04/9780571145904.jpg'), - ('0140252258', 'Strip The Willow', 'https://images.isbndb.com/covers/22/55/9780140252255.jpg'), - ('0743219627', 'Death Of An Expert Witness (Adam Dalgliesh)', 'https://images.isbndb.com/covers/96/24/9780743219624.jpg'), - ('0140284095', 'Right Ho, Jeeves', 'https://images.isbndb.com/covers/40/96/9780140284096.jpg'), - ('0505524406', 'Across A Starlit Sea (Candleglow)', 'https://images.isbndb.com/covers/44/09/9780505524409.jpg'), - ('9681906004', 'Nuestra Senora De La Soledad (Spanish Edition)', 'https://images.isbndb.com/covers/60/09/9789681906009.jpg'), - ('9681905628', 'La Amigdalistis De Tarzan (Spanish Edition)', 'https://images.isbndb.com/covers/56/20/9789681905620.jpg'), - ('0486406482', 'Emma (Dover Thrift Editions)', 'https://images.isbndb.com/covers/64/80/9780486406480.jpg'), - ('1551666170', 'Lord Of The Desert (Mira Romance)', 'https://images.isbndb.com/covers/61/74/9781551666174.jpg'), - ('074347418X', 'Ransom', 'https://images.isbndb.com/covers/41/84/9780743474184.jpg'), - ('0816143358', 'Dreams Are Not Enough (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/33/51/9780816143351.jpg'), - ('1551664836', 'Thrill Of Victory', 'https://images.isbndb.com/covers/48/35/9781551664835.jpg'), - ('1892603004', 'El Bandido (Listen To Them) (Spanish Edition)', 'https://images.isbndb.com/covers/30/05/9781892603005.jpg'), - ('0449150534', 'For All The Right Reasons', 'https://images.isbndb.com/covers/05/35/9780449150535.jpg'), - ('1400034671', 'El Amor En Los Tiempos Del Colera', 'https://images.isbndb.com/covers/46/73/9781400034673.jpg'), - ('0140053204', 'Travels With Charley In Search Of America', 'https://images.isbndb.com/covers/32/03/9780140053203.jpg'), - ('0449150542', 'Somewhere Along The Way: A Classic Novel In The Beloved Mackinnon Series', 'https://images.isbndb.com/covers/05/42/9780449150542.jpg'), - ('0671011340', 'Highland Velvet', 'https://images.isbndb.com/covers/13/45/9780671011345.jpg'), - ('0671739735', 'Velvet Angel', 'https://images.isbndb.com/covers/97/37/9780671739737.jpg'), - ('0671702505', 'The Gift', 'https://images.isbndb.com/covers/25/02/9780671702502.jpg'), - ('9501513394', 'Los Ricos Son Diferentes (Spanish Edition)', 'https://images.isbndb.com/covers/33/94/9789501513394.jpg'), - ('0373073739', 'Night Shadow (Silhouette Intimate Moments No 373)', 'https://images.isbndb.com/covers/37/33/9780373073733.jpg'), - ('0671739786', 'River Lady', 'https://images.isbndb.com/covers/97/82/9780671739782.jpg'), - ('0553561359', 'Lovers', 'https://images.isbndb.com/covers/13/57/9780553561357.jpg'), - ('0452255953', 'Under The Volcano', 'https://images.isbndb.com/covers/59/51/9780452255951.jpg'), - ('0312288271', 'Lords Of The White Castle', 'https://images.isbndb.com/covers/82/73/9780312288273.jpg'), - ('039475218X', 'From Heaven Lake: Travels Through Sinkiang And Tibet', 'https://images.isbndb.com/covers/21/81/9780394752181.jpg'), - ('0805041397', 'Beyond The Pyramids: Travels In Egypt', 'https://images.isbndb.com/covers/13/92/9780805041392.jpg'), - ('0452272785', 'In The Name Of The Father: The Story Of Gerry Conlon Of The Guildford Four: Tie-In', 'https://images.isbndb.com/covers/27/81/9780452272781.jpg'), - ('0785789073', 'Alice''s Adventures In Wonderland (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/90/79/9780785789079.jpg'), - ('0884360555', 'Requiem Por UN Campesino (Emc Easy Readers, Series C) (Spanish Edition)', 'https://images.isbndb.com/covers/05/51/9780884360551.jpg'), - ('9681908716', 'Ensayo Sobre La Ceguera (Biblioteca) (Spanish Edition)', 'https://images.isbndb.com/covers/87/13/9789681908713.jpg'), - ('0375704132', 'Welcome To The World, Baby Girl!: A Novel (Random House Large Print)', 'https://images.isbndb.com/covers/41/30/9780375704130.jpg'), - ('0140284125', 'The Inimitable Jeeves', 'https://images.isbndb.com/covers/41/26/9780140284126.jpg'), - ('0816139709', 'Queenie (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/97/05/9780816139705.jpg'), - ('006109174X', 'Redemption', 'https://images.isbndb.com/covers/17/42/9780061091742.jpg'), - ('0553241605', 'Mila 18', 'https://images.isbndb.com/covers/16/00/9780553241600.jpg'), - ('0446360015', 'On Leaving Charleston', 'https://images.isbndb.com/covers/00/12/9780446360012.jpg'), - ('0374115370', 'The Bonfire Of The Vanities: A Novel', 'https://images.isbndb.com/covers/53/71/9780374115371.jpg'), - ('0449214745', 'Devil On Horseback', 'https://images.isbndb.com/covers/47/49/9780449214749.jpg'), - ('0679774386', 'Doctor Zhivago', 'https://images.isbndb.com/covers/43/89/9780679774389.jpg'), - ('968131574X', 'Cien Años De Soledad', 'https://images.isbndb.com/covers/57/40/9789681315740.jpg'), - ('0312195265', 'The Silence Of The Lambs (Hannibal Lecter)', 'https://images.isbndb.com/covers/52/67/9780312195267.jpg'), - ('0060927968', 'Love, Again', 'https://images.isbndb.com/covers/79/67/9780060927967.jpg'), - ('0451133935', 'Ellis Island: Tie-in Edition (Signet)', 'https://images.isbndb.com/covers/39/39/9780451133939.jpg'), - ('0671662414', 'O Jerusalem', 'https://images.isbndb.com/covers/24/17/9780671662417.jpg'), - ('0449214540', 'Rabbi', 'https://images.isbndb.com/covers/45/41/9780449214541.jpg'), - ('2020239213', 'L''exposition Coloniale', 'https://images.isbndb.com/covers/92/19/9782020239219.jpg'), - ('9700509125', 'Fortuna Peligrosa', 'https://images.isbndb.com/covers/91/29/9789700509129.jpg'), - ('0486298035', 'The Age Of Innocence (Dover Thrift Editions)', 'https://images.isbndb.com/covers/80/30/9780486298030.jpg'), - ('0670364991', 'Heavy Sand', 'https://images.isbndb.com/covers/49/92/9780670364992.jpg'), - ('0449147614', 'A Time To Die', 'https://images.isbndb.com/covers/76/10/9780449147610.jpg'), - ('067972902X', 'Running The Amazon', 'https://images.isbndb.com/covers/90/20/9780679729020.jpg'), - ('9509779032', 'El Libro De Los Amores Ridiculos (Spanish Edition)', 'https://images.isbndb.com/covers/90/37/9789509779037.jpg'), - ('1585860972', 'Fierce Eden', 'https://images.isbndb.com/covers/09/75/9781585860975.jpg'), - ('1585861677', 'Surrender In Moonlight', 'https://images.isbndb.com/covers/16/75/9781585861675.jpg'), - ('0821747940', 'Lie Down In Roses', 'https://images.isbndb.com/covers/79/40/9780821747940.jpg'), - ('0749316411', 'Family Man', 'https://images.isbndb.com/covers/64/19/9780749316419.jpg'), - ('0811213196', 'Pereira Declares: A Testimony', 'https://images.isbndb.com/covers/31/96/9780811213196.jpg'), - ('1400034965', 'El General En Su Laberinto (Spanish Edition)', 'https://images.isbndb.com/covers/49/63/9781400034963.jpg'), - ('1400001617', 'Las Cadenas De Sultana (Spanish Edition)', 'https://images.isbndb.com/covers/16/13/9781400001613.jpg'), - ('0553293257', 'Rendezvous', 'https://images.isbndb.com/covers/32/58/9780553293258.jpg'), - ('0553571907', 'Mischief', 'https://images.isbndb.com/covers/19/05/9780553571905.jpg'), - ('0553283545', 'Seduction', 'https://images.isbndb.com/covers/35/49/9780553283549.jpg'), - ('0553289322', 'Scandal', 'https://images.isbndb.com/covers/93/29/9780553289329.jpg'), - ('0553293168', 'Ravished', 'https://images.isbndb.com/covers/31/66/9780553293166.jpg'), - ('0380762560', 'Surrender My Love', 'https://images.isbndb.com/covers/25/69/9780380762569.jpg'), - ('0380752999', 'Defy Not The Heart', 'https://images.isbndb.com/covers/29/97/9780380752997.jpg'), - ('0380756277', 'Prisoner Of My Desire', 'https://images.isbndb.com/covers/62/78/9780380756278.jpg'), - ('0380871556', 'A Gentle Feuding', 'https://images.isbndb.com/covers/15/51/9780380871551.jpg'), - ('0380750872', 'Secret Fire', 'https://images.isbndb.com/covers/08/70/9780380750870.jpg'), - ('0380756293', 'The Magic Of You (Malory Novels)', 'https://images.isbndb.com/covers/62/92/9780380756292.jpg'), - ('0380750864', 'Tender Rebel', 'https://images.isbndb.com/covers/08/63/9780380750863.jpg'), - ('0380814714', 'So Speaks The Heart', 'https://images.isbndb.com/covers/47/18/9780380814718.jpg'), - ('0380756269', 'Man Of My Dreams', 'https://images.isbndb.com/covers/62/61/9780380756261.jpg'), - ('0380752948', 'Silver Angel', 'https://images.isbndb.com/covers/29/42/9780380752942.jpg'), - ('9502801954', 'Llamada Del Destino, La (Spanish Edition)', 'https://images.isbndb.com/covers/19/57/9789502801957.jpg'), - ('0671880608', 'Until You', 'https://images.isbndb.com/covers/06/06/9780671880606.jpg'), - ('0553060635', 'El Sastre De Panamá', 'https://images.isbndb.com/covers/06/38/9780553060638.jpg'), - ('0684853299', 'Morgan''s Run', 'https://images.isbndb.com/covers/32/91/9780684853291.jpg'), - ('0060085894', 'Frida: A Biography Of Frida Kahlo', 'https://images.isbndb.com/covers/58/96/9780060085896.jpg'), - ('0871133792', 'Journey To The Alcarria: Travels Through The Spanish Countryside (Traveler)', 'https://images.isbndb.com/covers/37/93/9780871133793.jpg'), - ('0811212777', 'Mazurka For Two Dead Men', 'https://images.isbndb.com/covers/27/79/9780811212779.jpg'), - ('0679431136', 'Congo', 'https://images.isbndb.com/covers/11/38/9780679431138.jpg'), - ('0380725703', 'Love Me Forever', 'https://images.isbndb.com/covers/57/00/9780380725700.jpg'), - ('0816152284', 'Gentle Rogue (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/22/85/9780816152285.jpg'), - ('0802776159', 'The Forging Of A Rebel', 'https://images.isbndb.com/covers/61/50/9780802776150.jpg'), - ('0393320359', 'Hitler: 1889-1936 Hubris', 'https://images.isbndb.com/covers/03/50/9780393320350.jpg'), - ('0714529850', 'The Stars Of The South', 'https://images.isbndb.com/covers/98/51/9780714529851.jpg'), - ('2266061283', 'Bonjour Tristesse', 'https://images.isbndb.com/covers/12/85/9782266061285.jpg'), - ('0826452310', 'Kazuo Ishiguro''s The Remains Of The Day: A Reader''s Guide (Continuum Contemporaries)', 'https://images.isbndb.com/covers/23/13/9780826452313.jpg'), - ('0671748157', 'The Master Stroke', 'https://images.isbndb.com/covers/81/59/9780671748159.jpg'), - ('0380727366', 'A Soldier Of The Great War', 'https://images.isbndb.com/covers/73/60/9780380727360.jpg'), - ('1586633503', 'The Scarlet Letter (SparkNotes)', 'https://images.isbndb.com/covers/35/09/9781586633509.jpg'), - ('0385721234', 'Como Agua Para Chocolate (Vintage Espanol) (Spanish Edition)', 'https://images.isbndb.com/covers/12/33/9780385721233.jpg'), - ('9504901816', 'Pequeas Infamias (Spanish Edition)', 'https://images.isbndb.com/covers/18/15/9789504901815.jpg'), - ('0375707166', 'A House For Mr. Biswas', 'https://images.isbndb.com/covers/71/62/9780375707162.jpg'), - ('9584204106', 'El Huerto De Mi Amada / My Lover''s Garden (Autores Espanoles E Iberoamericanos) (Spanish Edition)', 'https://images.isbndb.com/covers/41/03/9789584204103.jpg'), - ('0679755454', 'El Beso De La Mujer Araña', 'https://images.isbndb.com/covers/54/56/9780679755456.jpg'), - ('1852427000', 'Southern Seas (A Five Star Title)', 'https://images.isbndb.com/covers/70/09/9781852427009.jpg'), - ('0802130305', 'Ficciones (English Translation)', 'https://images.isbndb.com/covers/03/03/9780802130303.jpg'), - ('1400034957', 'Cronica De Una Muerte Anunciada (Spanish Edition)', 'https://images.isbndb.com/covers/49/56/9781400034956.jpg'), - ('9504906915', 'Mientras Vivimos (Spanish Edition)', 'https://images.isbndb.com/covers/69/19/9789504906919.jpg'), - ('0192838865', 'The Flight To Italy: Diary And Selected Letters (Oxford World''s Classics)', 'https://images.isbndb.com/covers/88/65/9780192838865.jpg'), - ('0864424663', 'Lonely Planet Philippines (6th Ed)', 'https://images.isbndb.com/covers/46/62/9780864424662.jpg'), - ('1740590392', 'Lonely Planet Sri Lanka (Sri Lanka, 8th Ed)', 'https://images.isbndb.com/covers/03/96/9781740590396.jpg'), - ('0380899531', 'Love Only Once: A Malory Novel', 'https://images.isbndb.com/covers/95/31/9780380899531.jpg'), - ('0460874772', 'The Heart Of Darkness (Everyman''s Library (Paper))', 'https://images.isbndb.com/covers/47/79/9780460874779.jpg'), - ('055329315X', 'Reckless', 'https://images.isbndb.com/covers/31/59/9780553293159.jpg'), - ('006018888X', 'The Promise In A Kiss: A Cynster Christmas Novel', 'https://images.isbndb.com/covers/88/87/9780060188887.jpg'), - ('1400034531', 'Vivir Para Contarla (Spanish Edition)', 'https://images.isbndb.com/covers/45/36/9781400034536.jpg'), - ('0142000809', 'Ex-Libris', 'https://images.isbndb.com/covers/08/09/9780142000809.jpg'), - ('0743449193', 'Heaven''s Prisoners (Dave Robicheaux Mysteries)', 'https://images.isbndb.com/covers/91/99/9780743449199.jpg'), - ('0785787828', 'Contact', 'https://images.isbndb.com/covers/78/22/9780785787822.jpg'), - ('0821769839', 'Night, Sea And Stars', 'https://images.isbndb.com/covers/98/36/9780821769836.jpg'), - ('0553569406', 'Mistress', 'https://images.isbndb.com/covers/94/07/9780553569407.jpg'), - ('078600021X', 'Tomorrow The Glory (Pinnacle Historical Romances)', 'https://images.isbndb.com/covers/02/10/9780786000210.jpg'), - ('0425155188', 'Rapture In Death', 'https://images.isbndb.com/covers/51/89/9780425155189.jpg'), - ('0873325079', 'Traditional Chinese Folktl', 'https://images.isbndb.com/covers/50/73/9780873325073.jpg'), - ('0786901349', 'Maquesta Kar-Thon: The Warriors, Volume II', 'https://images.isbndb.com/covers/13/40/9780786901340.jpg'), - ('0451195167', 'Amistad: A Novel Based On The Screenplay', 'https://images.isbndb.com/covers/51/66/9780451195166.jpg'), - ('9500286335', 'El Sabueso De Los Baskerville (Spanish Edition)', 'https://images.isbndb.com/covers/63/36/9789500286336.jpg'), - ('0812543122', 'Sense And Sensibility (Tor Classic)', 'https://images.isbndb.com/covers/31/24/9780812543124.jpg'), - ('048621866X', 'The Egyptian Book Of The Dead: The Papyrus Of Ani In The British Museum', 'https://images.isbndb.com/covers/86/63/9780486218663.jpg'), - ('0192839829', 'Kamasutra (Oxford World''s Classics)', 'https://images.isbndb.com/covers/98/24/9780192839824.jpg'), - ('0783887841', 'Stargate', 'https://images.isbndb.com/covers/78/45/9780783887845.jpg'), - ('9879317114', 'Historia Del Tiempo / A Brief History Of Time: Del Big Bang A Los Agujeros Negros / From The Big Bang To Black Holes (Spanish Edition)', 'https://images.isbndb.com/covers/71/12/9789879317112.jpg'), - ('0330344773', 'Virgin Territory: A Roman Mystery', 'https://images.isbndb.com/covers/47/77/9780330344777.jpg'), - ('0727849190', 'The Jericho Trumpet', 'https://images.isbndb.com/covers/91/99/9780727849199.jpg'), - ('0708992897', 'Winds Of Fortune (Charnwood Library)', 'https://images.isbndb.com/covers/28/90/9780708992890.jpg'), - ('2253149624', 'La Passion Turque', 'https://images.isbndb.com/covers/96/20/9782253149620.jpg'), - ('0505522993', 'More Than Magic (The Djinn Series, Book 2)', 'https://images.isbndb.com/covers/29/93/9780505522993.jpg'), - ('0312875673', 'I Am Of Irelaunde: A Novel Of Patrick And Osian', 'https://images.isbndb.com/covers/56/71/9780312875671.jpg'), - ('1565048423', 'The Unbeholden (Masquerade Of The Red Death, Vol 3)', 'https://images.isbndb.com/covers/84/23/9781565048423.jpg'), - ('1565048415', 'Unholy Allies (Masquerade Of The Red Death Trilogy, Vol 2)', 'https://images.isbndb.com/covers/84/16/9781565048416.jpg'), - ('1565048407', 'Blood War (Masquerade Of The Red Death #1)', 'https://images.isbndb.com/covers/84/09/9781565048409.jpg'), - ('0425157466', 'McNally''s Puzzle (Archy McNally)', 'https://images.isbndb.com/covers/74/66/9780425157466.jpg'), - ('2871292086', 'Détective Conan, Tome 14', 'https://images.isbndb.com/covers/20/81/9782871292081.jpg'), - ('2744403709', 'Le Juge D''Egypte, Tome 3 : La Justice Du Vizir', 'https://images.isbndb.com/covers/37/05/9782744403705.jpg'), - ('2744403695', 'Le Juge D''Egypte, Tome 2 : La Loi Du Désert', 'https://images.isbndb.com/covers/36/99/9782744403699.jpg'), - ('2744403687', 'Le Juge D''Egypte, Tome 1 : La Pyramide Assassinée', 'https://images.isbndb.com/covers/36/82/9782744403682.jpg'), - ('0439568366', 'How To Kill A Monster (Goosebumps Series)', 'https://images.isbndb.com/covers/83/64/9780439568364.jpg'), - ('9505111215', 'Pequeo Vampiro, El (Spanish Edition)', 'https://images.isbndb.com/covers/12/13/9789505111213.jpg'), - ('0886773083', 'The Shattered Chain (Darkover)', 'https://images.isbndb.com/covers/30/83/9780886773083.jpg'), - ('0749711841', 'Fifteen Minute Tales', 'https://images.isbndb.com/covers/18/49/9780749711849.jpg'), - ('0727855468', 'Defy Not The Heart', 'https://images.isbndb.com/covers/54/66/9780727855466.jpg'), - ('0380753006', 'Savage Thunder', 'https://images.isbndb.com/covers/30/00/9780380753000.jpg'), - ('0140621164', 'Selected Tales (Penguin Popular Classics)', 'https://images.isbndb.com/covers/11/67/9780140621167.jpg'), - ('0634032984', 'Luis Miguel - Selections From Romance, Segundo Romance, And Romances', 'https://images.isbndb.com/covers/29/81/9780634032981.jpg'), - ('067187036X', 'Fahrenheit 451: A Novel', 'https://images.isbndb.com/covers/03/62/9780671870362.jpg'), - ('034537472X', 'The Sapphire Rose', 'https://images.isbndb.com/covers/47/21/9780345374721.jpg'), - ('0812521374', 'Necroscope', 'https://images.isbndb.com/covers/13/75/9780812521375.jpg'), - ('0679745688', 'Ripley''s Game', 'https://images.isbndb.com/covers/56/86/9780679745686.jpg'), - ('1860219470', 'Name Of The Rose (Reed Audio, 136)', 'https://images.isbndb.com/covers/94/74/9781860219474.jpg'), - ('0671626299', 'Crucifax', 'https://images.isbndb.com/covers/62/97/9780671626297.jpg'), - ('096664431X', 'Study In Scarlet', 'https://images.isbndb.com/covers/43/19/9780966644319.jpg'), - ('042517350X', 'The World Is Not Enough', 'https://images.isbndb.com/covers/35/03/9780425173503.jpg'), - ('0140434062', 'Dracula (Penguin Classics)', 'https://images.isbndb.com/covers/40/64/9780140434064.jpg'), - ('0441006612', 'Isaac Asimov''s Werewo', 'https://images.isbndb.com/covers/66/18/9780441006618.jpg'), - ('0061020680', 'Mort', 'https://images.isbndb.com/covers/06/81/9780061020681.jpg'), - ('0773670696', 'The Kissing Man', 'https://images.isbndb.com/covers/06/93/9780773670693.jpg'), - ('1568651295', 'The Hiding Place', 'https://images.isbndb.com/covers/12/93/9781568651293.jpg'), - ('067089205X', 'Bridesmaid Revisited (Ellie Haskell Mysteries)', 'https://images.isbndb.com/covers/20/51/9780670892051.jpg'), - ('067003200X', 'Aunt Dimity Takes A Holiday', 'https://images.isbndb.com/covers/20/06/9780670032006.jpg'), - ('0394547942', 'Teresa Of Avila: The Progress Of A Soul', 'https://images.isbndb.com/covers/79/47/9780394547947.jpg'), - ('0345436520', 'Mrs. Pollifax Unveiled', 'https://images.isbndb.com/covers/65/28/9780345436528.jpg'), - ('0670030600', 'The Importance Of Being Ernestine: An Ellie Haskell Mystery', 'https://images.isbndb.com/covers/06/06/9780670030606.jpg'), - ('0375401768', 'Time Lord : Sir Sandford Fleming And The Creation Of Standard Time', 'https://images.isbndb.com/covers/17/63/9780375401763.jpg'), - ('0818501332', 'The Skilled Helper: A Problem Management And Opportunity Development Approach To Helping', 'https://images.isbndb.com/covers/13/33/9780818501333.jpg'), - ('0967673739', 'Ester''s Child', 'https://images.isbndb.com/covers/37/38/9780967673738.jpg'), - ('0375714553', 'The Victorian Fairy Tale Book (Pantheon Fairy Tale & Folklore Library)', 'https://images.isbndb.com/covers/45/59/9780375714559.jpg'), - ('0743222199', 'Rites Of Autumn: The Story Of College Football', 'https://images.isbndb.com/covers/21/98/9780743222198.jpg'), - ('0006278841', 'The Diary Of A Country Priest (Fount Classics)', 'https://images.isbndb.com/covers/88/49/9780006278849.jpg'), - ('0452270839', 'Feeding The Hungry Heart: The Experience Of Compulsive Eating', 'https://images.isbndb.com/covers/08/31/9780452270831.jpg'), - ('0451183959', 'Mrs. Malory''s Shortest Journey', 'https://images.isbndb.com/covers/39/58/9780451183958.jpg'), - ('0395944171', 'Snobbery: The American Version', 'https://images.isbndb.com/covers/41/72/9780395944172.jpg'), - ('0743457951', 'No Place Like Home (Holiday Classics)', 'https://images.isbndb.com/covers/79/58/9780743457958.jpg'), - ('0934395942', 'Redneckin'' Made Easy', 'https://images.isbndb.com/covers/59/46/9780934395946.jpg'), - ('0684815907', 'CHRISTMAS BOX', 'https://images.isbndb.com/covers/59/09/9780684815909.jpg'), - ('0743224914', 'Christmas In Plains : Memories', 'https://images.isbndb.com/covers/49/18/9780743224918.jpg'), - ('0395585643', 'The New Fit Or Fat', 'https://images.isbndb.com/covers/56/41/9780395585641.jpg'), - ('0800718372', 'Flabbergasted', 'https://images.isbndb.com/covers/83/74/9780800718374.jpg'), - ('0060081651', 'The Second Coming Of Lucy Hatch: A Novel', 'https://images.isbndb.com/covers/16/52/9780060081652.jpg'), - ('0151009376', 'The Woman Who Gave Birth To Rabbits: Stories', 'https://images.isbndb.com/covers/93/74/9780151009374.jpg'); - -INSERT INTO AUTHORS (Name) - VALUES - ('Mark P. O. Morford'), - ('Robert J. Lenardon'), - ('Richard Bruce Wright'), - ('Carlo D''Este'), - ('Gina Kolata'), - ('Elizabeth Wayland Barber'), - ('E. J. W. Barber'), - ('Amy Tan'), - ('Robert Cowley'), - ('Scott Turow'), - ('Stacy Keach'), - ('David Cordingly'), - ('Ann Beattie'), - ('David Adams Richards'), - ('Kensington'), - ('Sheila Heti'), - ('J. R. Kaiser'), - ('Jack Canfield'), - ('Mark Victor Hansen'), - ('Jennifer Read Haw'), - ('Loren D. Estleman'), - ('John Kenneth'), - ('Robert Hendrickson'), - ('Julia Oliver'), - ('John Grisham'), - ('Toni Morrison'), - ('The Onion'), - ('Scott Dikkers'), - ('Mike Loew'), - ('Celia Brooks Brown'), - ('Jane Noraika'), - ('Philip Webb'), - ('J. R. Parrish'), - ('Mary-kate & Ashley Olsen'), - ('Robynn Clairday'), - ('Kathleen Duey'), - ('Karen A. Bale'), - ('Bill Dodge'), - ('Rich Shapero'), - ('Michael Crichton'), - ('C.S. Lewis'), - ('Arthur Phillips'), - ('Stephen Jaramillo'), - ('Mordecai Richler'), - ('Michael Panofsky'), - ('Anette Grube'), - ('Eleanor Cooney'), - ('Daniel Altieri'), - ('Charlotte Link'), - ('Richard North Patterson'), - ('Kristian Lutze'), - ('Mark Salzman'), - ('Harper Lee'), - ('Laura Hillenbrand'), - ('Barbara Kingsolver'), - ('Jo Dereske'), - ('Jane Austen'), - ('Dolores Krieger'), - ('Anne Rivers Siddons'), - ('Dean Koontz'), - ('Mary Higgins Clark'), - ('Patricia Cornwell'), - ('J.D. Robb'), - ('Maeve Binchy'), - ('Laura J. Mixon'), - ('Tim LaHaye'), - ('Jerry B. Jenkins'), - ('Bernie S. Siegel M.D.'), - ('Robert Penn Warren'), - ('Hans Johannes Hoefer'), - ('Mark Helprin'), - ('O. Carl Simonton M.D.'), - ('James Creighton Ph.D.'), - ('Stepha'), - ('Chuck Hill'), - ('David Iglehart'), - ('Larry McMurtry'), - ('Suzanne Fisher Staples'), - ('Michel Tournier'), - ('Carl Sagan'), - ('Aleksandr Zinoviev'), - ('Anne Tyler'), - ('Joseph Conrad'), - ('Deepak Chopra'), - ('Martin Greenberg'), - ('Thomas Hardy'), - ('Charles Noland'), - ('Sherri Baker'), - ('Valerie Frankel'), - ('Benjamin Hoff'), - ('Niccolo Machiavelli'), - ('H. Jackson Brown Jr.'), - ('Robert A. Heinlein'), - ('Philip Pullman'), - (''), - ('Michael Ondaatje'), - ('Sandra Levy Ceren'), - ('P. J. O''Rourke'), - ('Mike Gayle'), - ('Stel Pavlou'), - ('Sarah Payne Stuart'), - ('Dan Quayle'), - ('Donald F. Kettl'), - ('Donald Kettl'), - ('David Frum'), - ('Louis L''Amour'), - ('J.D. Salinger'), - ('John Berendt'), - ('Jennifer Crusie'), - ('Jane Heller'), - ('Michael Rips'), - ('Simon Mawer'), - ('William Abrahams'), - ('Robert T. Kiyosaki'), - ('Sharon L. Lechter'), - ('Ken Follett'), - ('John F. Love'), - ('Robert G. Allen'), - ('Louis De Bernieres'), - ('Pam Proctor'), - ('Allen M. Schoen'), - ('Mitch Albom'), - ('Michael Jan Friedman'), - ('Ronald D. Moore'), - ('Glendon Swarthout'), - ('Neal Barrett Jr.'), - ('J. Michael Straczynski'), - ('David Morrell'), - ('Sandra Brown'), - ('James Patterson'), - ('Peter De Jonge'), - ('Stuart Woods'), - ('Iris Johansen'), - ('Dan Brown'), - ('Joe Hutsko'), - ('Anita Shreve'), - ('Ann Rule'), - ('Lewis Grizzard'), - ('Paul Theroux'), - ('Charles Hickey'), - ('Todd Lighty'), - ('John O''Brien'), - ('Stephen King'), - ('Ben Mezrich'), - ('Bill Hand'), - ('Tom Clancy'), - ('Dana Reeve'), - ('Roy'), - ('Barbara Metzger'), - ('Gabriel Garcia Marquez'), - ('Rebecca Wells'), - ('Tony Hillerman'), - ('Robert James Waller'), - ('Rachel Harris'), - ('Ian McEwan'), - ('Michael Lewis'), - ('Richard Zimler'), - ('Norman Jetmundsen'), - ('Lorenzo Carcaterra'), - ('Anne Frasier'), - ('Kay Hooper'), - ('Daphne Du Maurier'), - ('Nathaniel Hawthorne'), - ('Leo Marx'), - ('Nick Page'), - ('Laura Wolf'), - ('Lois Duncan'), - ('Susan Grant'), - ('Barbara Vine'), - ('Shirley Rousseau Murphy'), - ('Jane Lindskold'), - ('Betty Smith'), - ('Cybill Shepherd'), - ('Aimee Lee Ball'), - ('Stewart O''Nan'), - ('David Baldacci'), - ('Douglas Adams'), - ('Mary Lawson'), - ('Willa Cather'), - ('Olivia Goldsmith'), - ('Helen Fielding'), - ('Dover Thrift Editions'), - ('Franklin W. Dixon'), - ('Lilian Jackson Braun'), - ('Holly Virden'), - ('Michelle McKinney Hammond'), - ('H. Norman Wright'), - ('Piers Anthony'), - ('Ray Bradbury'), - ('Friedrich Schiller'), - ('Walter Schafarschik'), - ('Peter Naujack'), - ('Raymond Chandler'), - ('Hans Wollschläger'), - ('Thomas Schlück'), - ('Norbert Wölfl'), - ('Alexander Schmitz'), - ('Jürgen Bauer'), - ('Alastair Ker'), - ('Paulo Coelho'), - ('Maralde Meyer-Minnemann'), - ('Gabriel García Márquez'), - ('Fay Weldon'), - ('Arabella Weir'), - ('Kiana Davenport'), - ('Margarete Längsfeld'), - ('Sue Townsend'), - ('Renan Demirkan'), - ('Michael Moore'), - ('Helmut Dierlamm'), - ('Heike Schlatterer'), - ('Jonathan Franzen'), - ('Bettina Abarbanell'), - ('J. D. Salinger'), - ('Annemarie Böll'), - ('Heinrich Böll'), - ('Elisab'), - ('James Joyce'), - ('Joanna Trollope'), - ('Antoinette Gittinger'), - ('Milan Kundera'), - ('Arundhati Roy'), - ('Robert S. Levinson'), - ('Lorna Landvik'), - ('Arthur Golden'), - ('Kent Haruf'), - ('Patricia D Cornwell'), - ('Patricia D. Cornwell'), - ('Carol J. Farley'), - ('Tom Newsom'), - ('Kathleen E. Woodiwiss'), - ('Belva Plain'), - ('Mark Haddon'), - ('Ann Brashares'), - ('Erich Segal'), - ('Elizabeth Adler'), - ('Nicholas Sparks'), - ('John Saul'), - ('Steve Thayer'), - ('Tracy Chevalier'), - ('Judith Kelman'), - ('Michael Palmer'), - ('Francine Hughes'), - ('Norman Bridwell'), - ('Frank McCourt'), - ('Malachy Mccourt'), - ('Mari Sandoz'), - ('Anne Perry'), - ('Alexander Mccall Smith'), - ('Barbara Bergman'), - ('Gregory Maguire'), - ('Yann Martel'), - ('Ruth Rendell'), - ('Al Franken'), - ('Donna Tartt'), - ('John Milne'), - ('Terry Pratchett'), - ('E. B. White'), - ('Garth Williams'), - ('J. M. Barrie'), - ('Mary O''Hara'), - ('Paul Kidby'), - ('Louise Rennison'), - ('JANE AUSTEN'), - ('Kenneth Grahame'), - ('Bernard Cornwell'), - ('Charles De Lint'), - ('Lord Dunsany'), - ('Neil Gaiman'), - ('Georgette Heyer'), - ('Oscar Wilde'), - ('Jeffrey Eugenides'), - ('Ted Hughes'), - ('Andrew Davidson'), - ('Roald Dahl'), - ('Quentin Blake'), - ('Donna Jo Napoli'), - ('A.S. Byatt'), - ('Tanuja Desai Hidier'), - ('Sophie Kinsella'), - ('Isabel Wolff'), - ('Louisa May Alcott'), - ('Margaret Drabble'), - ('George Orwell'), - ('Charles Dickens'), - ('Isabel Allende'), - ('Ellen Datlow'), - ('Terri Windling'), - ('Charles Vess'), - ('Neil Gaim'), - ('Joseph Heller'), - ('John Galsworthy'), - ('Enid Blyton'), - ('Alan Moore'), - ('Kevin O''Neill'), - ('Ben Dimagmaliw'), - ('Sam Kieth'), - ('Mike Dringenberg'), - ('Malcolm Jon'), - ('John Bolton'), - ('Trudy Suggs'), - ('Tom Wolfe'), - ('Brady Udall'), - ('Homer Hickam'), - ('Pearl Abraham'), - ('Sebastian Junger'), - ('Karen Armstrong'), - ('Mary Barnard'), - ('Dudley Fitts'), - ('David Brin'), - ('T. C. Boyle'), - ('T. Coraghessan Boyle'), - ('Plato'), - ('Alexander Nehamas'), - ('Paul Woodruff'), - ('Lynda Madaras'), - ('Dane Saavedra'), - ('Jackie Aher'), - ('Stephen Mccauley'), - ('Isabelle Holland'), - ('Pam Conrad'), - ('Lurlene Mcdaniel'), - ('Brian Kaufman'), - ('John Darnton'), - ('Martin Schenk'), - ('David Eddings'), - ('Leigh Eddings'), - ('Paul Reiser'), - ('David G. Hartwell'), - ('Kathryn Cramer'), - ('Dave Barry'), - ('John R. Holt'), - ('Theodore Beale'), - ('Frank M. Robinson'), - ('Mary Jane Clark'), - ('Mary Shelley'), - ('Robert Westall'), - ('Robert B. Parker'), - ('Rita Chapman Works'), - ('Mark Carwardine'), - ('A. Manette Ansay'), - ('Sarah Waters'), - ('Anne Frank'), - ('Barry Lopez'), - ('Greg Palast'), - ('Andrea Kane'), - ('Nevada Barr'), - ('Margaret Maron'), - ('Edna Barker'), - ('Shelagh Rogers'), - ('Muriel Whitaker'), - ('John Irving'), - ('William Golding'), - ('Hermann Stiehl'), - ('HarperReference'), - ('LTD'), - ('Ann Patchett'), - ('Lane Smith'), - ('Sue Monk; Sue Monk Kidd Kidd'), - ('Roseanne J. Serra (Co'), - ('Bob Thiele'), - ('Bob Golden'), - ('Steve Allen'), - ('Colleen Mccullough'), - ('Joanne Harris'), - ('Thomas Cahill'), - ('Michael Hudson'), - ('Jane Smiley'), - ('Dick Francis'), - ('Nora Roberts'), - ('Jean Marzollo'), - ('Walter Wick'), - ('Carol Devine Carson'), - ('Barbara Delinsky'), - ('P. D. James'), - ('Arthur W. Upfield'), - ('Christopher Rice'), - ('Rex Stout'), - ('Joan Anderson'), - ('Vance Havner'), - ('Warren W. Wiersbe'), - ('Max Lucado'), - ('Larry Crabb'), - ('Barry Neil Kaufman'), - ('Bob Sjogren'), - ('Frederick J. Moody'), - ('Neal Pirolo'), - ('William Sleator'), - ('Antoine De Saint-Exupery'), - ('Richard Bach'), - ('Kevin Sullivan'), - ('Michele Morgan'), - ('Scott Cunningham'), - ('David Allen Hulse'), - ('Richard Webster'), - ('Bernard King'), - ('Pat Hutchins'), - ('William Shakespeare'), - ('Roma Gill'), - ('Melissa McClone'), - ('Cheryl St. John'), - ('Lewis Carroll'), - ('Martin Gardner'), - ('Mark Twain'), - ('Mary Crow Dog'), - ('Richard Erdoes'), - ('Linda Gordon'), - ('Florence King'), - ('Alice Sebold'), - ('Spalding Gray'), - ('Thomas Harris'), - ('Edward Rutherfurd'), - ('Margaret Atwood'), - ('Dorothy Allison'), - ('Maya Angelou'), - ('Edith Wharton'), - ('Mary Brave Bird'), - ('John G. Neihardt'), - ('Vine Deloria Jr.'), - ('Roland Warren'), - ('Johnny Molloy'), - ('James McCourt'), - ('Wayne Koestenbaum'), - ('Elizabeth Wurtzel'), - ('Bill Bradley'), - ('Don Miguel Ruiz'), - ('Paul Lester'), - ('Leo Tolstoy'), - ('Simon Nye'), - ('Robert A Johnson'), - ('Marc Gascoigne'), - ('Stephanie Maze'), - ('Sandra Dallas'), - ('Anne McCaffrey'), - ('David Gemmell'), - ('Laura Zigman'), - ('Margaret Truman'), - ('Mark C. Young'), - ('Paula Danziger'), - ('Tony Ross'), - ('Richard A. Lupoff'), - ('Bruce Coville'), - ('Carrie A. Bebris'), - ('Ellen Carol Dubois'), - ('Candice F. Ransom'), - ('Sam Bobrick'), - ('Julie Stein'), - ('Price Stern Sloan'), - ('Anna'), - (' And Vogel'), - (' Malvina (Editor) Sewell'), - ('Marian Leighton'), - ('Donna K. Grosvenor'), - ('James L. Stanfield'), - ('Mary Wollstonecraft Shelley'), - ('D. J. Arneson'), - ('Eva Clif'), - ('Valerie Block'), - ('Luanne Rice'), - ('Ellen Gilchrist'), - ('Tim Gautreaux'), - ('Richard Russo'), - ('Jostein Gaarder'), - ('Anna Quindlen'), - ('Diane Johnson'), - ('Wally Lamb'), - ('Adeline Yen Mah'), - ('Barbara Ehrenreich'), - ('Dorothy Dunnett'), - ('John LeCarre'), - ('Singer Media Corporation'), - ('Emily Dickinson'), - ('Hazel Harrison'), - ('Joseph Girzone'), - ('Joseph F. Girzone'), - ('Lorraine Anderson'), - ('Ad Hudler'), - ('Josephine Carlton'), - ('Ted L. Nancy'), - ('Jerry Seinfeld'), - ('Francis Wheen'), - ('Ellen Rimbauer'), - ('Joyce Reardon'), - ('Steven Rimbauer'), - ('Sidney Sheldon'), - ('Christopher Moore'), - ('Pamela Johnson'), - ('Robert Lacey'), - ('Tim Dorsey'), - ('Jodi Compton'), - ('Elmore Leonard'), - ('Lynn Coady'), - ('John Lawton'), - ('Eileen Yin-Fei Lo'), - ('Tilden Edwards'), - ('Vikram Seth'), - ('Elizabeth Gaskell'), - ('Elizabeth Porges Watson'), - ('Anita Diamant'), - ('Lauren Haney'), - ('Gerald Stern'), - ('Martha Grimes'), - ('Henry James'), - ('Sarah Orne Jewett'), - ('William Carlos Williams'), - ('Rh Value Publishing'), - ('Harry Kemelman'), - ('Mil Millington'), - ('Suzanne G. Farnham'), - ('Joseph P. Gill'), - ('R. Taylor McLean'), - ('Czeslaw Milosz'), - ('Margaret Guenther'), - ('Roberto Juarroz'), - ('Mary Crow'), - ('Hans Kmoch'), - ('Barnie F. Winkelman'), - ('Emma Mclaughlin'), - ('Nicola Kraus'), - ('Paul Jennings'), - ('Mark E. Neely Jr.'), - ('Stephen J. Weininger'), - ('Frank R. Stermitz'), - ('Larry Katzenstein'), - ('David Steinman'), - ('Alfie Kohn'), - ('Paula Polk Lillard'), - ('David Lewis'), - ('Billie Livingston'), - ('Adele Lang'), - ('Jen Banbury'), - ('Patricia Daniels Cornwell'), - ('Catherine Coulter'), - ('Dominick Dunne'), - ('Clive Cussler'), - ('John Pascal'), - ('Carl Hiaasen'), - ('Diane Stevenson'), - ('Jonathan Safran Foer'), - ('Francesca Marciano'), - ('Julia Glass'), - ('Tawni O''Dell'), - ('Jennifer Weiner'), - ('Danielle Steel'), - ('Leon Hale'), - ('Russell Banks'), - ('Samuel Taylor Coleridge'), - ('BRADLEY P WARSHAUER'), - ('Bradley P. Warshauer'), - ('Bobbie Ann Mason'), - ('Karen Robards'), - ('Emma Lathen'), - ('Faye Kellerman'), - ('Jacquelyn Mitchard'), - ('Diane Mott Davidson'), - ('Candace Bushnell'), - ('Kristin Hannah'), - ('Michael Marshall'), - ('Allen Widome'), - ('Wilbur Smith'), - ('Mike Thaler'), - ('Jared Lee'), - ('Michael Slade'), - ('John Sandford'), - ('John Camp'), - ('Tami Hoag'), - ('Ted Dekker'), - ('Angela Hunt'), - ('C. S. Lewis'), - ('C. S Lewis'), - ('Will Eisner'), - ('Robin Cook'), - ('E. Lynn Harris'), - ('Linda Goodman'), - ('Anne Rice'), - ('Judith Rossner'), - ('Marilyn French'), - ('Wayne W. Dyer'), - ('Armistead Maupin'), - ('Julie Morgenstern'), - ('Peter Straub'), - ('James Maybrick'), - ('Shirley Harrison'), - ('Barbara Taylor Bradford'), - ('Lisa Jackson'), - ('Sharyn McCrumb'), - ('Cokie Roberts'), - ('Shana Corey'), - ('Mark Teague'), - ('Jesse S. Ostrow'), - ('Charles Shaw'), - ('Justine Korman'), - ('Bill Langley'), - ('Ron Dias'), - ('Walt Disney P'), - ('Patricia Reilly Giff'), - ('Beverly Cleary'), - ('K.A. Applegate'), - ('Jane Yolen'), - ('Golden Books'), - ('Marvin Miller'), - ('Craig Boldman'), - ('H. G. Wells'), - ('Raymond James'), - ('Jim Deal'), - ('Bobbie Kalman'), - ('Mercedes Lackey'), - ('Dorothy Gilman'), - ('MoveOn.org'), - ('Christopher Finch'), - ('Charles Frazier'), - ('Julia Spencer-Fleming'), - ('Fannie Flagg'), - ('Laura Ingall Wilder'), - ('Brooke Zimmer'), - ('John Fontana'), - ('Lisa Gardner'), - ('Tracy Dockray'), - ('Gertrude Chandler Warner'), - ('Lynn S. Hightower'), - ('Eric Schlosser'), - ('Suzanne Brockmann'), - ('Gail Carson Levine'), - ('Frances Kuffel'), - ('Susan Conant'), - ('David Schickler'), - ('Judith McNaught'), - ('JANET EVANOVICH'), - ('Sylvia Plath'), - ('Ilona Koidahl'), - ('Fern Michaels'), - ('Betsy Byars'), - ('Bruce Sterling'), - ('Sarah Ban Breathnach'), - ('Alice Hoffman'), - ('Lisa Scottoline'), - ('Spencer Johnson'), - ('Kenneth Blanchard'), - ('David Feldman'), - ('Kas Schwan'), - ('Richard Bausch'), - ('Katie Fforde'), - ('James Burke'), - ('Bliss Broyard'), - ('Sara Paretsky'), - ('Charles Webb'), - ('Elizabeth Benedict'), - ('Stanley Morison; Brooke Crutchley (editor); Mike P'), - ('Henry Miller'), - ('David Whyte'), - ('Thomas Cummings'), - ('Warren Bennis'), - ('Gretchen M. Spreitze'), - ('Martha Beck'), - ('Desmond Tutu'), - ('Clayborne Carson'), - ('Kris Shepard'), - ('Andrew Young'), - ('Jack Kerouac'), - ('Ann Charters'), - ('Martin Buber'), - ('Walter Kaufmann'), - ('Niccolò Machiavelli'), - ('N. H. Thompson'), - ('Paul Monette'), - ('Ernest Hemingway'), - ('Melody Carlson'), - ('Alisa Kwitney'), - ('Billie Letts'), - ('Melissa Bank'), - ('Rena Kornreich Gelissen'), - ('Heather Dune Macadam'), - ('Moon Unit Zappa'), - ('Ted Mooney'), - ('Susan Wiggs'), - ('Gwyn Hyman Rubio'), - ('Elisabeth Robinson'), - ('Audrey Niffenegger'), - ('Tim Farrington'), - ('Chaim Potok'), - ('Scott Spencer'), - ('V. S. Naipaul'), - ('Jean Giono'), - ('Anne-Marie Marina-Médiavilla'), - ('Alain-Fournier'), - ('Daniel Leuwers'), - ('Erich Maria Remarque'), - ('Alzir Hella'), - ('Olivier Bournac'), - ('Roy Lewis'), - ('René Barjavel'), - ('Alexandra David-Néel'), - ('Charles Baudelaire'), - ('Marie-Jeanne Durry'), - ('Yves Florenn'), - ('Jacques Chambon'), - ('Henri Robillot'), - ('Radiguet'), - ('Emile Zola'), - ('Henri Mitterand'), - ('Willi Glasauer'), - ('Louis Pergaud'), - ('Collectif'), - ('Robert A. (Anson) Heinlein'), - ('Sten Nadolny'), - ('Cheryl Benard'), - ('Edit Schlaffer'), - ('Christa Wichterich'), - ('John Blofeld'), - ('Christine Obbo'), - ('Peter B Heim'), - ('Hera Lind'), - ('Jane Hamilton'), - ('Jack Higgins'), - ('Max Allan Collins'), - ('David Guterson'), - ('Bernhard Schlink'), - ('Carol Brown Janeway'), - ('Eric Jerome Dickey'), - ('Patricia Gaffney'), - ('Richard Paul Evans'), - ('Marc Levy'), - ('Laney Katz Becker'), - ('Vladimir Nabokov'), - ('Jennifer Lauck'), - ('Joe Keenan'), - ('Jeanne Ray'), - ('Tony Parsons'), - ('Jane McCafferty'), - ('Laura Esquivel'), - ('Cathleen Toelke'), - ('Carol & Thomas'), - ('J.R.R. Tolkien'), - ('Venise Berry'), - ('Jan Karon'), - ('Cormac McCarthy'), - ('Carol Higgins Clark'), - ('Andrew Gross'), - ('Travis Thrasher'), - ('John McEnroe'), - ('John Kaplan'), - ('Sally Mandel'), - ('Linda Lay Shuler'), - ('Janet Dailey'), - ('Claude Lanzmann'), - ('Simone De Beauvoir'), - ('Lemony Snicket'), - ('Brett Helquist'), - ('Matthew Thomas'), - ('Boris Vian'), - ('Noël Arnaud'), - ('Claude Couffon'), - ('Luis Sepulveda'), - ('Hubert Selby'), - ('Jacob Weisberg'), - ('David Lodge'), - ('Lily Seafield'), - ('Philip Ardagh'), - ('Iain Banks'), - ('David Crombie'), - ('John Steinbeck'), - ('Michael O''Mara'), - ('Richard Brassey'), - ('William Vance'), - ('Jean Van Hamme'), - ('R. W. Holder'), - ('From The Editors Of Southwater'), - ('Bernard Werber'), - ('Andy Sloss'), - ('Allan Zola Kronzek'), - ('Elizabeth Kronzek'), - ('Charles L Squire'), - ('Gordon Jarvie'), - ('Alan Spence'), - ('Helene Siegel'), - ('Karen Gillingham'), - ('A A Milne'), - ('A. A. Milne'), - ('Eric Thompson'), - ('Elizabeth Strout'), - ('David Sedaris'), - ('Leslie Feinberg'), - ('Chris Anne Wolfe'), - ('Lauren Sanders'), - ('Gael Baudino'), - ('Lauren Maddison'), - ('Carol Anshaw'), - ('Jean Stewart'), - ('Emma Donoghue'), - ('Deborah E. McDowell'), - ('Karen X. Tulchinsky'), - ('Jill Thompson'), - ('Jody Seay'), - ('Manda Scott'), - ('Jeff Foxworthy'), - ('Terry Brooks'), - ('A.C. Crispin'), - ('Madelyn Arnold'), - ('Tamora Pierce'), - ('Carolyn Chute'), - ('Sara Orwig'), - ('Melisa Michaels'), - ('Isobel Bird'), - ('Frederik Pohl'), - ('C. M. Kornbluth'), - ('Vonda McIntyre'), - ('John Varley'), - ('Nancy Garden'), - ('Nicola Griffith'), - ('Julie Campbell'), - ('Lee Smith'), - ('Jacqueline Woodson'), - ('Pat Summitt'), - ('Richard Belzer'), - ('Nick Hornby'), - ('Colleen McCullough'), - ('Andrew L Johnson'), - ('Marian Babson'), - ('Kathleen O''Neal Gear'), - ('W. Michael Gear'), - ('Paul Phifer'), - ('Peter Hoeg'), - ('Erma Bombeck'), - ('John Mortimer'), - ('E.L. Doctorow'), - ('Simon Schama'), - ('Frank Waters'), - ('Karen Hesse'), - ('Kenneth Oppel'), - ('S.D. Schindler'), - ('Carol Ryrie Brink'), - ('Richard Mantel'), - ('K. A. Applegate'), - ('Pauline Baynes'), - ('Shelly Roberts'), - ('Diane Duane'), - ('Carolee Brockman'), - ('Rachel Roberts'), - ('Shelley Roberts'), - ('Lensey Namioka'), - ('Jackie Eileen Behrend'), - ('Andrew Clements'), - ('Brian Selznick'), - ('Lois Lowry'), - ('Brother Yun'), - ('Paul Hattaway'), - ('Katherine Khodorowsky'), - ('Milena Moser'), - ('Patricia Highsmith'), - ('Gabriele Conrad'), - ('Lore Straßl'), - ('Jürgen Speh'), - ('Till R. Lohmeyer'), - ('Gabriele'), - ('Stephen R. Donaldson'), - ('Todd Herzog'), - ('Sander Gilman'), - ('John Borneman'), - ('Robert S. McElvaine'), - ('Bram Stoker'), - ('Michael A. Stackpole'), - ('Langston Hughes'), - ('Carol Matthews'), - ('Carole Matthews'), - ('Jacqueline L. Tobin'), - ('Raymond G. Dobard'), - ('Maude S. Wah'), - ('Marion Zimmer Bradley'), - ('Andrei Codrescu'), - ('Carolyne Aarsen'), - ('Jack Chapman'), - ('Anthony J Alessandra'), - ('Charles R Swindoll'), - ('Orson Scott Card'), - ('V. A. Howard'), - ('J. H. Barton'), - ('Steve Pieczenik'), - ('Walter P. Wilson'), - ('Bruce Fries'), - ('Marty Fries'), - ('Rush Limbaugh'), - ('Anne Dingus'), - ('Kate Chopin'), - ('Kirk Kazanjian'), - ('Donald Merriam Allen'), - ('William R. Maples'), - ('Michael Browning'), - ('Carl Hausman'), - ('Richard Peck'), - ('Michael Connelly'), - ('John Lescroart'), - ('John Jakes'), - ('Alice McDermott'), - ('Hilary Bailey'), - ('Howard Fast'), - ('Jessica Fletcher'), - ('Donald Bain'), - ('Eileen Goudge'), - ('Arnette Lamb'), - ('Piers A. Jacob'), - ('Michael Schulte'), - ('Walter Cronkite'), - ('Tom Mula'), - ('Lois Faye Dyer'), - ('Sharon Lamb'), - ('Sir Arthur Conan Doyle'), - ('Agatha Christie'), - ('Mark Cohen'), - ('Sherry Shahan'), - ('Betsy Haynes'), - ('Helen R. Myers'), - ('Della Rowland'), - ('Irving Adler'), - ('Elizabeth Peters'), - ('Shirlee Busbee'), - ('Emily Brontë'), - ('Frank Peretti'), - ('John A. Keel'), - ('Jan Gabriel'), - ('Rebecca Winters'), - ('Meg Cabot'), - ('Tanith Lee'), - ('Cathy Thacker'), - ('Richard Burton'), - ('Beverly Hastings'), - ('Savinien Cyrano De Bergerac'), - ('G. Strachan'), - ('James C. Robertson'), - ('Teresa Southwick'), - ('Barbara H. Solomon'), - ('Judith Guest'), - ('Sandra Field'), - ('Helen Brooks'), - ('Blanche Fisher Wright'), - ('Blanche Fish Wright'), - ('George Gately'), - ('Dean R. Koontz'), - ('James Lee Burke'), - ('Michael Chabon'), - ('Barbara Michaels'), - ('Norton Juster'), - ('Jules Feiffer'), - ('Michael Blake'), - ('John Bellairs'), - ('Carole Nelson Douglas'), - ('William Goldman'), - ('Marc Reisner'), - ('Mark Bowden'), - ('Jonathan Pearce'), - ('Emily Bronte'), - ('Alain De Botton'), - ('Chuck Palahniuk'), - ('E. Annie Proulx'), - ('Adam Davies'), - ('Harry M. Walker'), - ('Nicholas Evans'), - ('L.M. Montgomery'), - ('Hermann Vinke'), - ('David Mitchell'), - ('Charles Bukowski'), - ('Haruki Murakami'), - ('Jay Rubin'), - ('Frances Hodgson Burnett'), - ('Gabriela Dellosso'), - ('Patricia C. Wrede'), - ('Jack London'), - ('Alex Kershaw'), - ('Bruce Wilkinson'), - ('David Kopp'), - ('Malcolm Goodway'), - ('Ann-Marie MacDonald'), - ('Linda Howard'), - ('Sue Miller'), - ('Sheri S. Tepper'), - ('Dr. Seuss'), - ('Theodor Seuss Geisel'), - ('Tobias Wolff'), - ('Isaac Bashevis Singer'), - ('Maurice Sendak'), - ('Gary Zukav'), - ('Alfred H. Kelly'), - ('Herman Belz'), - ('Winifred A. Harbison'), - ('John M. Cooper'), - ('D. S. Hutchinson'), - ('John M. Coop'), - ('B Kliban'), - ('Judy Blunt'), - ('William Trevor'), - ('Alice Walker'), - ('Stephen Gazi'), - ('Wallace Stegner'), - ('Don DeLillo'), - ('Ralph Ellison'), - ('Shel Silverstein'), - ('Jhumpa Lahiri'), - ('Liz Trigg'), - ('Tessa Evelegh'), - ('Stewart Walton'), - ('Sally Walto'), - ('Charles Sullivan'), - ('Tom Robbins'), - ('Ursula Hegi'), - ('Samuel Richardson'), - ('George Sherburn'), - ('Valerie Martin'), - ('Gill Farrer-Halls'), - ('John Mordock'), - ('Myron Korach'), - ('Susan Bowes'), - ('Diana Gabaldon'), - ('Zadie Smith'), - ('Natalie Goldberg'), - ('Sue Grafton'), - ('William J. Kennedy'), - ('Bob Shacochis'), - ('Randy Alcorn'), - ('Nancy Cobb'), - ('Connie Grigsby'), - ('Margriet De Moor'), - ('Helga Van Beuningen'), - ('Dale Carnegie'), - ('Clifford Stoll'), - ('Sandra Cisneros'), - ('Gary Paulsen'), - ('Marguerite Henry'), - ('Wesley Dennis'), - ('Sherry Garland'), - ('Ann Druyan'), - ('Kimberly Kirberger'), - ('Ariella Papa'), - ('Michael J. Rosen'), - ('Dawn Chipman'), - ('Pamela Nelson'), - ('Mari Florence'), - ('Naomi Wax'), - ('Shannon Olson'), - ('Naylor'), - ('Karen Stolz'), - ('Clare Naylor'), - ('Stephen Chbosky'), - ('Margaret Weis'), - ('Tracy Hickman'), - ('Ivan Doig'), - ('Margaret Sayers Peden'), - ('Sylvia Nasar'), - ('Ha Jin'), - ('Elizabeth Laird'), - ('Harlan Ellison'), - ('Margaret Sayers Peden From The Span'), - ('David M. Gitlitz'), - ('Dr. Linda Kay Davidson'), - ('Wolfgang Hohlbein'), - ('Christoph Hein'), - ('Gaby Hauptmann'), - ('Carolyn See'), - ('Christa Wolf'), - ('Thomas Brussig'), - ('Piers Vitebsky'), - ('Christopher A. Weidner'), - ('Robert Silverberg'), - ('Gabriele Haefs'), - ('Christopher Tolkien'), - ('H.P. Lovecraft'), - ('Pamela Grim'), - ('Arthur C. Clarke'), - ('Jay Bennett'), - ('J. Applegate'), - ('Michael J. Straczynski'), - ('John Myers Myers'), - ('Reay Tannahill'), - ('Jack Whyte'), - ('STEPHEN R. DONALDSON'), - ('Peter Matthiessen'), - ('Paul Kent'), - ('Robin McKinley'), - ('Patricia McKillip'), - ('Joan Vinge'), - ('James'), - ('Hank Whittemore'), - ('Caroline Hebard'), - ('Ellyn Satter'), - ('Bill Brittain'), - ('August Wilson'), - ('Marilynne Robinson'), - ('Sigrid Nunez'), - ('Paul Auster'), - ('Amanda Scott'), - ('John Fowles'), - ('Fodor''s'), - ('A''Lelia Bundles'), - ('Dorothy L. Sayers'), - ('Jude Deveraux'), - ('Anne Morrow Lindbergh'), - ('Laurie R. King'), - ('Jeanne DuPrau'), - ('Louise Erdrich'), - ('Melinda Haynes'), - ('Belle Yang'), - ('Carol Shields'), - ('Tim Powers'), - ('Jean Lorrah'), - ('John Beer'), - ('Cordula Swoboda Herzog'), - ('Barbara Erskine'), - ('Annegrit Arens'), - ('Susanne Höbel'), - ('Hans J. Alpers'), - ('Jerome D. Salinger'), - ('Hermann Hesse'), - ('Claudia Von Zglinicki'), - ('Thorsten Futh'), - ('Linda Lael Miller'), - ('Anna Jennet'), - ('Elaine Crawford'), - ('Dian'), - ('Jane Feather'), - ('William R. Forstchen'), - ('Spider Robinson'), - ('Dennis L. McKiernan'), - ('Rush'), - ('Lionel Fenn'), - ('Carole Halston'), - ('Christine Rimmer'), - ('BJ James'), - ('Truman Capote'), - ('Beth Nimmo'), - ('Darrell Scott'), - ('Steve Rabey'), - ('Johann Wolfgang Von Goethe'), - ('Michael Hulse'), - ('Michael H'), - ('Thomas Elsaesser'), - ('Adrian Plass'), - ('Bridget Plass'), - ('Frank Mccourt'), - ('Stephen Quirke'), - ('James Herbert'), - ('William Sutcliffe'), - ('JANOSCH'), - ('Jean De Brunhoff'), - ('Jean DeBrunhoff'), - ('Philippe Fix'), - ('Claudia Keller'), - ('F. Paul Wilson'), - ('Wulf Bergner'), - ('Arnold A. Lazarus'), - ('Clifford N. Lazarus'), - ('Christoph Tr'), - ('Clarissa Pinkola Estés'), - ('Mascha Rabben'), - ('Virginia Allen Jensen'), - ('Dorcas Woodbury Haller'), - ('Janosch'), - ('John Paul Allen'), - ('Alan M. Clark'), - ('Hubert Jr Selby'), - ('G. B. Trudeau'), - ('Gary Larson'), - ('Garrison Keillor'), - ('Berke Breathed'), - ('Barbara Ann Kipfer'), - ('Stephen Fried'), - ('George Stephanopoulos'), - ('Rita Mae Brown'), - ('Elaine Showalter'), - ('Elaine Showalte'), - ('Cornelia Funke'), - ('Oliver Latsch'), - ('Stan Lee'), - ('J Kirby'), - ('Camille Paglia'), - ('James Kahn'), - ('Devra Newberger Speregen'), - ('Richard'), - ('James McBride'), - ('Louis Sachar'), - ('Adam Mccauley'), - ('ANNE MCCAFFREY'), - ('Eric Van Lustbader'), - ('Robert Asprin'), - ('B.M. Mooyaart'), - ('Eleanor Roosevelt'), - ('Marshall Govindan'), - ('Nomi Eve'), - ('Bruce Catton'), - ('William Gibson'), - ('Clement Eaton'), - ('H.G. Wells'), - ('Darrell K. Sweet'), - ('Judy Collins'), - ('Oliver Sacks'), - ('Annette Broadrick'), - ('Rachel Cohn'), - ('Carolyn Keene'), - ('Rachel Naomi Remen'), - ('Jayne Ann Krentz'), - ('Joan Smith'), - ('Kaye Gibbons'), - ('Bryn C. Collins'), - ('Peter Jennings'), - ('Todd Brewster'), - ('Eliza Osborne'), - ('Howard Norman'), - ('John Griesemer'), - ('Marly A. Swick'), - ('John L''Heureux'), - ('Molly Ivins'), - ('Forrest Carter'), - ('Umberto Eco'), - ('Greg Bear'), - ('Kathy Reichs'), - ('Jeffrey Deaver'), - ('Martin Cruz Smith'), - ('V.C. Andrews'), - ('Stephen Hill'), - ('E.W. Heine'), - ('Donna Fletcher'), - ('Jeanne Larsen'), - ('Bari Wood'), - ('James Gould Cozzens'), - ('Reidar Jonsson'), - ('Marianne Ruuth'), - ('June Vendall Clark'), - ('Robert Reilly'), - ('Kem Nunn'), - ('Larry King'), - ('Ernest J. Gaines'), - ('Anne Lamott'), - ('Bret Lott'), - ('Zora Neale Hurston'), - ('Jude Fisher'), - ('Salman Rushdie'), - ('G. P. Taylor'), - ('Bill Bryson'), - ('Ron Walotsky'), - ('Judy Astley'), - ('Roger E. Allen'), - ('Margaret Tempest'), - ('Maureen Bradley'), - ('James Barclay'), - ('Kahlil Gibran'), - ('LIBBY PURVES'), - ('Jane Kirkpatrick'), - ('Tess Gerritsen'), - ('Olive Ann Burns'), - ('Michael Ende'), - ('Ralph Manheim'), - ('Annie Proulx'), - ('Corrie Ten Boom'), - ('John Sherrill'), - ('Elizabeth Sherrill'), - ('Bodie Thoene'), - ('Brock Thoene'), - ('Marlo Schalesky'), - ('Alexander McCall Smith'), - ('Michael Paterniti'), - ('Dorothy R. Miller'), - ('Steve Martin'), - ('Banana Yoshimoto'), - ('Ann Rae Jonas'), - ('Reader''s Digest'), - ('Joseph Campbell'), - ('Bill Moyers'), - ('Dyanne Gibson'), - ('Isaac Asimov'), - ('Edwidge Danticat'), - ('JOE R LANSDALE'), - ('Arturo Perez-Reverte'), - ('Margaret Jull Costa'), - ('Sheila O''Connor'), - ('Erik Larson'), - ('Saul Bellow'), - ('Dan Millman'), - ('Ned Vizzini'), - ('Laurie Halse Anderson'), - ('Chris Wooding'), - ('Mary McGarry Morris'), - ('Brian O''Leary'), - ('Meredith Miller'), - ('David Peat'), - ('L. Ron Hubbard'), - ('Jeffery Deaver'), - ('Stephen Coonts'), - ('John Whitman'), - ('Peter Kummer'), - ('Sven Regener'), - ('Wendy Leigh'), - ('Dorothy Sterling'), - ('B. K. S. Iyengar'), - ('Yehudi Menuhin'), - ('Kate Atkinson'), - ('Susan M. McIntosh'), - ('Thomas Nelson'), - ('Diane Muldrow'), - ('Robert Bloch'), - ('Mollie Molay'), - ('Grace Collins'), - ('Judy Blume'), - ('Jonathan Rabb'), - ('Patrick Robinson'), - ('Robert T. Bakker'), - ('Fred Saberhagen'), - ('Richard Moran'), - ('Michael DiMercurio'), - ('Wilkie Collins'), - ('Randall Wallace'), - ('Rhoda Huffey'), - ('Calvin Trillin'), - ('Rachel Simon'), - ('Nick Earls'), - ('Carol Emshwiller'), - ('Edith Konecky'), - ('E. A. J. Honigmann'), - ('Jonathan Harr'), - ('Ayn Rand'), - ('Leonard Peikoff'), - ('Graham Hough'), - ('Alexandre Dumas'), - ('Dorothy Garlock'), - ('Whitney Otto'), - ('Virginia Barber'), - ('Edith Grossman'), - ('Michael Cunningham'), - ('Diane Ackerman'), - ('Susan Isaacs'), - ('Douglas Preston'), - ('Lincoln Child'), - ('Kim Stanley Robinson'), - ('William Safire'), - ('Vincent Torre'), - ('Leslie Glass'), - ('Cathy Cash Spellman'), - ('Grace Slick'), - ('Andrea Cagan'), - ('Jerry Bledsoe'), - ('Jane Sigaloff'), - ('Marian Keyes'), - ('Melissa Rossi'), - ('Jackie Collins'), - ('Drew Barrymore'), - ('Carrie Alexander'), - ('Lori Handeland'), - ('Debra Salonen'), - ('Deborah Laake'), - ('Margaret Way'), - ('Marisa Carroll'), - ('Eduardo Duran'), - ('Bonnie Duran'), - ('Dave Eggers'), - ('Hernando De Soto'), - ('Julie Miller'), - ('Jasper Fforde'), - ('Wendy Holden'), - ('Sebastian Faulks'), - ('Sue Margolis'), - ('Dora Levy Mossanen'), - ('Sheri Holman'), - ('Jacqueline Susann'), - ('Stephanie Laurens'), - ('Jane Mendelsohn'), - ('Madge Swindells'), - ('Richard Adams'), - ('John Colapinto'), - ('Ildikó Von Kürthy'), - ('John McPhee'), - ('Kurt Vonnegut'), - ('Veronique Vienne'), - ('Erica Lennard'), - ('Sándor Márai'), - ('Heiner Friedlich'), - ('Mark A. S. McMenamin'), - ('Nancy K Robinson'), - ('Jillian Lund'), - ('Ann Rinaldi'), - ('Scott O''Dell'), - ('Thomas Rockwell'), - ('Louise Plummer'), - ('David J. Duncan'), - ('Richard Awlinson'), - ('Jeff Easley'), - ('John Sandford'), - ('Patricia Kennealy-Morrison'), - ('Julie E. Czerneda'), - ('Eva Heller'), - ('Jan McDaniel'), - ('Genell Dellin'), - ('Betty Neels'), - ('Carole Mortimer'), - ('Barbara Dolan'), - ('Viveca Carlysle'), - ('Judy Jackson'), - ('Lewis Orde'), - ('Anonymous Teenager'), - ('Beatrice Sparks'), - ('Peter Mayle'), - ('Philip K. Dick'), - ('Roger Zelazny'), - ('Douglas Kennedy'), - ('Robert Louit'), - ('Bruno Martin'), - ('Aldous Huxley'), - ('Edgar Allen Poe'), - ('Mark Z. Danielewski'), - ('Claro'), - ('Makyo'), - ('Vicomte'), - ('Adams Douglas'), - ('Jean Bonnefoy'), - ('Albert Camus'), - ('Stan Berenstain'), - ('Jan Berenstain'), - ('A.J. Wood'), - ('Sunny Griffin'), - ('Richard Kolding'), - ('Disney Staff; Pixar Animation Studios Staff'), - ('Disney'), - ('Maida Silverman'), - ('Jean Giraudoux'), - ('Antony Mason'), - ('Andrew S. Hughes'), - ('Jen Green'), - ('Lynne Reid Banks'), - ('Brock Cole'), - ('John Calvin Batchelor'), - ('Carolyn Wheat'), - ('Dan Simmons'), - ('Ros Stanley'), - ('R. L. Stine'), - ('Steve Skidmore'), - ('Steve Barlow'), - ('Matt Christopher'), - ('Janet Evanovich'), - ('Lorelei King'), - ('Marilyn Penovich Friend'), - ('William D. Bursuck'), - ('Brian Herbert'), - ('Kevin J Anderson'), - ('C. A. Stephens'), - ('Stephens'), - ('Larry Glatz'), - ('Kevin J. Anderson'), - ('Stephen Youll'), - ('Mary Evans O''Keefe Gravalos'), - ('Carol Pulin'), - ('Randall Rothenberg'), - ('Enos A. Mills'), - ('John D. Fitzgerald'), - ('Sebastiano Vassalli'), - ('Emma Rose'), - ('Patrick McGrath'), - ('William Kotzwinkle'), - ('Vincent Bugliosi'), - ('Bruce B. Henderson'), - ('Mark Richard'), - ('Ben Elton'), - ('Ltd Publication International'), - ('Mary Doria Russell'), - ('MacDonald Harris'), - ('Lawrence Goldstone'), - ('Nancy Goldstone'), - ('Leslie Land'), - ('Roger Phillips'), - ('Rikki Ducornet'), - ('Victor Hugo'), - ('Charles E. Wilbour'), - ('James K. Robinson'), - ('Jennifer Egan'), - ('Dodie Smith'), - ('Doug Lowe'), - ('Arlene Eisenberg'), - ('Heidi Murkoff'), - ('Sandee Hathaway'), - ('Jane Green'), - ('Gary Ezzo'), - ('Robert Bucknam'), - ('Dennis Rainey'), - ('Barbara Rainey'), - ('David Gardner'), - ('Tom Gardner'), - ('Sandee Hathaway B.S'), - ('R. A. Macavoy'), - ('Brooke Stevens'), - ('Ann B. Ross'), - ('Adriana Trigiani'), - ('Bebe Moore Campbell'), - ('Barbara Corcoran'), - ('Bruce Littlefield'), - ('Amy Hassinger'), - ('Mia Barron'), - ('Erica Jong'), - ('Diana Palmer'), - ('Rebecca Godfrey'), - ('Lois Battle'), - ('Allen Ginsberg'), - ('Johanna M. Smith'), - ('Ann Major'), - ('Dallas Schulze'), - ('Andrew M. Greeley'), - ('Rick Davis'), - ('Catholic Church'), - ('Alfred McBride'), - ('O. Praem'), - ('Albert J. McBride'), - ('Russell L. Ford'), - ('Robertson Davies'), - ('Judith Skelton Grant'), - ('Bill Watterson'), - ('Jacqueline Kasun'), - ('Leslie Meier'), - ('Corinne T. Netzer'), - ('Alice Adams'), - ('Buechner'), - ('Max Frisch'), - ('Thomas Pynchon'), - ('Veronika Martenova Charles'), - ('Veronika Martenova Char'), - ('Doris Pilkington'), - ('Stephen Gallagher'), - ('Robert Louis Stevenson'), - ('Emma Letley'), - ('Edwina Currie'), - ('Donald A. Mackenzie'), - ('Jules Verne'), - ('Laurie Lee'), - ('John Ward'), - ('Sam Siciliano'), - ('Joe Haldeman'), - ('Leon Uris'), - ('Anatoli Boukreev'), - ('G. Weston DeWalt'), - ('Steve J. Lewis'), - ('Len Deighton'), - ('Dale L. Anderson'), - ('Arden Moore'), - ('E. L. Epstein'), - ('William J. Mann'), - ('Laurell K. Hamilton'), - ('James Reese'), - ('J. R. R. Tolkien'), - ('Judge Judy Sheindlin'), - ('Bob Tore'), - ('Manil Suri'), - ('Victoria Sullivan'), - ('James Hatch'), - ('Kingsley Amis'), - ('Mark Frost'), - ('Scott Walker'), - ('Catherine Clement'), - ('Tobias Scheffel'), - ('Uli Aumüller'), - ('Colm Toibin'), - ('Joe Weber'), - ('Caleb Carr'), - ('Stephen Baxter'), - ('Augusten Burroughs'), - ('Mark Dunn'), - ('William Carpenter'), - ('John Case'), - ('Donna Woolfolk Cross'), - ('Jon Krakauer'), - ('Michael Ryan'), - ('Robert K. Tanenbaum'), - ('Judi Lawson Wallace'), - ('Ken'), - (' Jr. Putnam'), - ('Drew McCarthy'), - ('H. J. C. Grierson'), - ('Peter J. D''Adamo'), - ('Catherine Whitney'), - ('Helene Wiggin'), - ('Ira Levin'), - ('Norman Lindsay'), - ('Christina Lamb'), - ('Nancy Creagh Phelan'), - ('Chris Bohjalian'), - ('M. Scott Peck'), - ('M. M. Kaye'), - ('Sharon Creech'), - ('Christian Jacq'), - ('Dean Devlin'), - ('Roland Emmerich'), - ('Steve Molstad'), - ('Dean Marney'), - ('Michael Rosen'), - ('Justine Ettler'), - ('Margaret Wise Brown'), - ('Cyndy Szekeres'), - ('Sheldon Arensen'), - ('Amanda McKay'), - ('Carl Djerassi'), - ('Nuala O''Faolain'), - ('Lee Strobel'), - ('Sally And Rob Rains'), - ('Alice Gray'), - ('Osuntoki'), - ('G. Weston Dewalt'), - ('Anonymous'), - ('Burton Raffel'), - ('Neil D. Isaacs'), - ('Terry McMillan'), - ('Don Lasseter'), - ('Jimmy Stewart'), - ('Cheryl Gross'), - ('Ken Wilber'), - ('Bill Cosby'), - ('Ruth Gordon'), - ('Flannery O''Connor'), - ('Sally Fitzgerald'), - ('Adrian Mitchell'), - ('Donald A. Davis'), - ('Leslie Marmon Silko'), - ('Robert S. Root-Bernstein'), - ('Michele M. Root-Bernstein'), - ('Joe Marcus'), - ('Dorothea Benton Frank'), - ('Anita Brookner'), - ('Beverly Jenkins'), - ('Geri Guillaume'), - ('Francis Ray'), - ('Monica'), - ('Daniel Hecht'), - ('Anita Daher'), - ('Steve Lawhead'), - ('Robin White'), - ('Stephen White'), - ('Jeffrey Archer'), - ('Guy De Maupassant'), - ('Jonathan Kellerman'), - ('Robert Charles Wilson'), - ('Gilles Deleuze'), - ('Felix Guattari'), - ('Brian Massumi'), - ('Peter Weber'), - ('Thomas Gifford'), - ('Oscar Hijuelos'), - ('Taiping Shangdi'), - ('Harald Schmidt'), - ('Arman Dansh'), - ('Emma Callery'), - ('Donald Beman'), - ('Managing Editor Nic Kynaston'), - ('Adam Brate'), - ('Bob Levis'), - ('Laurence Marks'), - ('Maurice Gran'), - ('Jeff Smith'), - ('J Smith'), - ('Cherie Carter-Scott'), - ('Raymond Aaron'), - ('Kimberly Kirberge'), - ('Lennart Nilsson'), - ('Courtland L. Bovee'), - ('John V. Thill'), - ('David Freemantle'), - ('Sandra Waddock'), - ('V.K. Narayanan'), - ('Michael A. Mische'), - ('Ann Douglas'), - ('John R. Sussman'), - ('Fergus Kelly'), - ('Pat Fairon'), - ('Mary Dowling Daley'), - ('Norman Mailer'), - ('Geoff Ryman'), - ('Graham Greene'), - ('Gaston Leroux'), - ('Max Byrd'), - ('Karlfried G. Durckheim'), - ('Stephanie Coontz'), - ('Laure Redmond'), - ('Lynda Barry'), - ('Jr. H. Jackson Brown'), - ('Laurent Jouvet'), - ('Francesca Lia Block'), - ('Andrew Pyper'), - ('Dr. Robert C. Atkins M.D.'), - ('Wendy Orr'), - ('Amy Ephron'), - ('Susan Vreeland'), - ('Alan Cumming'), - ('Christopher Russo'), - ('Allen St. John'), - ('Andrea Di Robilant'), - ('Alan Epstein'), - ('Federico Andahazi'), - ('Salley Vickers'), - ('Russell Martin'), - ('Roger D. Masters'), - ('Andy Meisler'), - ('Ross King'), - ('Marc Brown'), - ('Writers Digest'), - ('Elaine Weinmann'), - ('Peter Lourekas'), - ('Charles Sheffield'), - ('Lois McMaster Bujold'), - ('Iain Pears'), - ('John Barnes'), - ('Jean M. Auel'), - ('Joan Cleveland'), - ('Simmons Wilson'), - ('Sherwood Kiraly'), - ('Frank DeCaro'), - ('Robert Ludlum'), - ('Oliver W. Sacks'), - ('Virginia Woolf'), - ('Akihito Toda'), - ('Kagemaru Himeno'), - ('Diane Wolkstein'), - ('Samuel Noah Kramer'), - ('Alice Garrard'), - ('Dan Levine'), - ('Herbert Bailey Livesey'), - ('Ni'), - ('Janet Fitch'), - ('Pat Rodegast'), - ('Judith Stanton'), - ('Richard Dalby'), - ('William Hoffman'), - ('David Foster Wallace'), - ('Dav Pilkey'), - ('Clive James'), - ('Chuck Logan'), - ('Patrick Süskind'), - ('James Rollins'), - ('Minette Walters'), - ('William Faulkner'), - ('Paul Joseph Lederer'), - ('Joan Wolf'), - ('Dana Stabenow'), - ('R. D. Lawrence'), - ('John Updike'), - ('Christie'), - ('Tiffanie DeBartolo'), - ('Ryszard Kapuscinski'), - ('Martin Pollack'), - ('Kent Anderson'), - ('T. Lobsang Rampa'), - ('William Bernhardt'), - ('Ben Bova'), - ('Naomi Shihab Nye'), - ('Daniel Quinn'), - ('David Tacey'), - ('William Weaver'), - ('Todd James Pierce'), - ('Kathleen Ann Goonan'), - ('Jeanette Winterson'), - ('Valerie Tripp'), - ('Nick Backes'), - ('Christoph Lees'), - ('Grainne McCartan'), - ('Karina Reynolds'), - ('Val McDermid'), - ('Julie Garwood'), - ('Madeleine L''Engle'), - ('Jody A. Lee'), - ('Ann Packer'), - ('Gregory Frost'), - ('Larry Millett'), - ('Vilhelm Moberg'), - ('Gail Diven'), - ('Cindy Kitchel'), - ('Maureen Howard'), - ('Stephen Alter'), - ('Michael Moorcock'), - ('Vikram Chandra'), - ('Chitra Banerjee Divakaruni'), - ('Anna Sewell'), - ('Bill Slavicsek'), - ('Richard L. Anderson'), - ('Jean-Paul Sartre'), - ('Sara Pritchard'), - ('Ursula K. Le Guin'), - ('Margaret Chodos-Irvine'), - ('Basil Creighton'), - ('Neal Stephenson'), - ('Martin Green'), - ('Joseph Mileck'), - ('Amit Chaudhuri'), - ('Rosalind Miles'), - ('Stanley Gordon West'), - ('Sarah Caudwell'), - ('Irvine Welsh'), - ('Nelson DeMille'), - ('Phyllis Gotlieb'), - ('Diana L. Paxson'), - ('Gail Godwin'), - ('Wynema McGowan'), - ('Richard Wagamese'), - ('Robert Haas'), - ('Wilma Yeo'), - ('Cherie Carter-Smith'), - ('Jayne Castle'), - ('Deric Longden'), - ('Susan Krinard'), - ('Maggie'), - ('Katy Munger'), - ('Alex Dingwall-Main'), - ('Tony Buzan'), - ('Barry Buzan'), - ('Octavia E. Butler'), - ('Erich Fromm'), - ('Gloria Naylor'), - ('Mary Pipher'), - ('John O''Donohue'), - ('Jonathan D. Spence'), - ('Janet Kessel Fletcher'), - ('Chuck Williams'), - ('Richard Eskit'), - ('Joseph O''Connor'), - ('Rita Golden Gelman'), - ('Elroy Freem'), - ('Taoist Master Alfred Huang'), - ('Holly Black'), - ('Christopher Golden'), - ('Nancy Holder'), - ('Charles Dickenson'), - ('Fay Robinson'), - ('Roberts'), - ('Lee Magner'), - ('Marie Ferrarella'), - ('Pamela Bauer'), - ('Kim Mckade'), - ('J.K. Rowling'), - ('Mary GrandPré'), - ('Katherine Garbera'), - ('Donna Kauffman'), - ('Judith Bowen'), - ('Heather Graham Pozzessere'), - ('Ron Burke'), - ('Susan Burke'), - ('Amanda Stevens'), - ('Rebecca York'), - ('Nancy Warren'), - ('Rebecca Flanders'), - ('Jamie Denton'), - ('Curtiss Ann Matlock'), - ('Suzanne Simmons'), - ('Diane Farr'), - ('Robyn Carr'), - ('Margot Dalton'), - ('Janis Flores'), - ('Kate Welsh'), - ('Robin A. White'), - ('Richard Parry'), - ('P. Richard Henrick'), - ('H. Jay Riker'), - ('Jean Heller'), - ('George C. Wilson'), - ('L. HEATH'), - ('Craig Thomas'), - ('Harry Homewood'), - ('Jean Craighead George'), - ('June Stepansky'), - ('Charles Mignon'), - ('Kari A. Ronning'), - ('Laura Lippman'), - ('Philip Roth'), - ('William Styron'), - ('Malcolm Hillier'), - ('Judith Clancy'), - ('Pierre Sansot'), - ('Otto H. Frank'), - ('Philippe Noble'), - ('Isabelle R'), - ('Cristina Garcia'), - ('Naomi Ragen'), - ('Janet Wallach'), - ('David Birney'), - ('Scott Brick'), - ('Carolyn Hart'), - ('Michael Collier'), - ('Barbara Pronin'), - ('Heather Arnel Paulsen'), - ('Stephen R. Covey'), - ('Elizabeth George'), - ('Anne Burton'), - ('Frances Fyfield'), - ('Dorothy Simpson'), - ('Connie May Fowler'), - ('Tunku Halim'), - ('Charles Schwab'), - ('Barbara Parker'), - ('Jerome Preisler'), - ('Martin Greenburg'), - ('Arto Paasilinna'), - ('Alessandro Baricco'), - ('Françoise Brun'), - ('Richard Dawkins'), - ('Kevin Anderson'), - ('Frank Herbert'), - ('Peter Maas'), - ('American Psychiatric Association'), - ('Michael Shaara'), - ('Donna-Marie Pye'), - ('James W. Loewen'), - ('Ernest H. Shepard'), - ('Robert Jordan'), - ('Sigmund Freud'), - ('James Strachey'), - ('Eugen Herrigel'), - ('St. Augustine'), - ('John K. Ryan'), - ('Stanley Milgram'), - ('John Sabini'), - ('Maury Silver'), - ('Sun Tzu'), - ('Miyamoto Musashi'), - ('Ray Axford'), - ('Kenneth Kushner'), - ('Jackson Morisawa'), - ('Daisetz T. Suzuki'), - ('Elliott Hester'), - ('Libby Hathorn'), - ('Paul Temple'), - ('Ralph Levinson'), - ('David Mostyn'), - ('James Moloney'), - ('Dan Parkinson'), - ('Sophie Schallingher'), - ('Mechtild Sandberg-Ciletti'), - ('Josephine Fairley'), - ('Sarah Stacey'), - ('R. T. Burns'), - ('Charles & Martin H. Greenberg (eds.); Poul And'), - ('Buzz Aldrin'), - ('Gene Light'), - ('Beth Saulnier'), - ('Ted Conover'), - ('Mary Tatem'), - ('Tom Connor'), - ('George Carlin'), - ('Sarah Delany'), - ('Annie Elizabeth Delany'), - ('Amy Hill Heart'), - ('Melody Beattie'), - ('Harlan Coben'), - ('Richard Marcinko'), - ('Andrew Klavan'), - ('Brooke Siler'), - ('Patrick Fanning'), - ('Carole Honeychurch'), - ('Catharine Sutke'), - ('Laurence Roy Stains'), - ('Stefan Bechtel'), - ('David Hopkins'), - ('Mihaly Csikszentmihalyi'), - ('Lynne Truss'), - ('Paul Wilson'), - ('Joachim Appel'), - ('Aurthur Van Essen'), - ('Whoopi Goldberg'), - ('Drew Carey'), - ('Jon Winokur'), - ('Warren Buckland'), - ('Sherry Diestler'), - ('Paul Sloane'), - ('Des MacHale'), - ('William Strunk Jr.'), - ('Roger Angell'), - ('Rosalie Maggio'), - ('M. Neil Browne'), - ('Stuart M. Keeley'), - ('David M. Buss'), - ('Various'), - ('David D. Burns'), - ('Leil Lowndes'), - ('Roberta Allen'), - ('Esme Raji Codell'), - ('Jim Trelease'), - ('Harold R. McAlindon'), - ('Michael Michalko'), - ('Richard O''Connor'), - ('Melissa L. Rossi'), - ('John T. Walbaum'), - ('Nina Wise'), - ('Hans Christian Andersen'), - ('Claire Maria Ford'), - ('Claire Ford'), - ('Warren Farrell Ph.D.'), - ('Daniel Keyes'), - ('Tom Holt'), - ('Barbara W. Tuchman'), - ('Frank Moorhouse'), - ('Robert Hughes'), - ('Daniel Yergin'), - ('Walter Mosley'), - ('Pamela Ribon'), - ('Rodman Philbrick'), - ('GLOBE'), - ('Jeannette Batz'), - ('Linda Goodnight'), - ('Madelyn K. Anderson'), - ('Gary Devon'), - ('John Beasant'), - ('Frank E. Peretti'), - ('Brad Meltzer'), - ('John Le Carre'), - ('Christopher Isherwood'), - ('Viktor E. Frankl'), - ('Cheryl Gochnauer'), - ('Dennis Lehane'), - ('Z. Barnes'), - ('Robert H. Boyer'), - ('Kenneth J. Zahorski'), - ('Johanna Lindsey'), - ('James Redfield'), - ('Carol Adrienne'), - ('Colette Whitaker'), - ('Vincent Lardo'), - ('Lawrence Sanders'), - ('Karl Edward Wagner'), - ('Catherine Hyde'), - ('Lady Gregory'), - ('William Butler Yeats'), - ('Proinsias Mac Cana'), - ('P W Joyce'), - ('Caitlin Matthews'), - ('John Matthews'), - ('Michael J. Caduto'), - ('Joseph Bruchac'), - ('Mike Corbishley'), - ('Courtney Davis'), - ('Sir George Trevelyan'), - ('Blanche Cirker'), - ('James Finn Garner'), - ('Mark Baker'), - ('Greg Iles'), - ('Scott Adams'), - ('Jon Franklin'), - ('Alan Doelp'), - ('Roxana Ferllini'), - ('Cyril Wecht'), - ('Dr. Cyril Wecht'), - ('Ridley Pearson'), - ('Thomas William Simpson'), - ('Michael Baden'), - ('Marion Roach'), - ('Douglas J. Preston'), - ('MIKE GAYLE'), - ('Lee Child'), - ('W. R. Mitchell'), - ('Dale Brown'), - ('Jim Defelice'), - ('Carol O''Connell'), - ('Richard Flanagan'), - ('Bradley Smith'), - ('Wallace Hamilton'), - ('Larry Wolff'), - ('Richard D. Mohr'), - ('Len Richmond'), - ('Michael Bronski'), - ('John Boswell'), - ('Herbert Hendin'), - ('Eric Marcus'), - ('Martha Gever'), - ('Pratibha Parmar'), - ('John Greyson'), - ('Laurence Goldstein'), - ('Patrick Higgins'), - ('Marshall Kirk'), - ('Hunter Madsen'), - ('Gary Schmidgall'), - ('Robert Chesley'), - ('Harvey Fierstein'), - ('William M. Hoffman'), - ('Robert H. Hopcke'), - ('Colin Spencer'), - ('Trevor Jacques'), - ('Michael Hamilton'), - ('Dr. Dale'), - ('Lucy R. Lippard'), - ('David Gottlieb'), - ('Mike Hippler'), - ('Randy Shilts'), - ('Eric E. Rofes'), - ('Jamie Sams'), - ('John McCollister'), - ('Sylvia Browne'), - ('Antoinette May'), - ('Lindsay Harrison'), - ('Shirley MacLaine'), - ('Shirley Maclaine'), - ('Shakti Gawain'), - ('Gabrielle Roth'), - ('John Loudon'), - ('Angeles Arrien'), - ('Oriah Mountain Dreamer'), - ('David Buerge'), - ('Hal Zina Bennett'), - ('Geoffrey Cornelius'), - ('Louis Chunovic'), - ('Ellis Weiner'), - ('Rob Morrow'), - ('Jon Scieszka'), - ('Ansel Adams'), - ('Mel Curtis'), - ('Jana Stone'), - ('Bonnie Sharpe'), - ('A. C. Bhaktivedanta Swami Prabhupada'), - ('A. C. Bhaktivedanta Swami Prabhupâda'), - ('Joyce Wilson'), - ('Walt Whitman'), - ('Francis Murphen'), - ('Jalal Al-Din Rumi'), - ('Coleman Barks'), - ('John Moyne'), - ('James Hillman'), - ('Lynn V. Andrews'), - ('Douglas A. Skoog'), - ('F. James Holler'), - ('Timothy A. Nieman'), - ('John McMurry'), - ('Robert C. Fay'), - ('P. W. Atkins'), - ('Susannah Leigh'), - ('S. Leigh'), - ('Tim Allen'), - ('Staff Of The Wall St Journal'), - ('Bruce Lansky'), - ('Patricia Curtis'), - ('Carol Himsel Daly'), - ('Cynthia L. Copeland'), - ('Cyndy Salzmann'), - ('Ellen Raskin'), - ('James Herriot'), - ('Marye Anne Fox'), - ('James K. Whitesell'), - ('D.F. Shriver'), - ('P.W. Atkins'), - ('Cooper Haroldold Langford'), - ('Jacqueline Carey'), - ('Debra K. Shatoff'), - ('Christopher J. Cramer'), - ('Quentin Bell'), - ('Raymond D Keene'), - ('Kon Grivainis'), - ('John Elburg'), - ('R. N. Coles'), - ('Raymond Keene'), - ('Bernard Levin'), - ('Nancy Farmer'), - ('Susanna Moore'), - ('Stephen J. Dubner'), - ('Sark'), - ('Marianne Williamson'), - ('Katie Roiphe'), - ('Nikos Kazantzakis'), - ('P. A. Bien'), - ('Bret Easton Ellis'), - ('Patricia Smith'), - ('Charles Johnson'), - ('WGBH Series Researc'), - ('Mark Mathabane'), - ('Gail Mathabane'), - ('Mark'), - ('Jay McInerney'), - ('James L. Halperin'), - ('Greg Egan'), - ('George Ancona'), - ('Susan Meier'), - ('Anna Clarke'), - ('Diana Hamilton'), - ('Lucy Monroe'), - ('Lindsay Armstrong'), - ('Emma Darcy'), - ('John Seelye'), - ('Mary Jo Putney'), - ('Jo Beverley'), - ('Barbara Samuel'), - ('Karen Ha'), - ('Chris Sorensen'), - ('Erika Pluhar'), - ('Ursule Molinaro'), - ('Colin Stinton (Narrator)'), - ('Burkhart Kroeber'), - ('Eugene Savaiano'), - ('Lynn W. Winget'), - ('Peter Lerangis'), - ('Isabel Miller'), - ('LaVyrle Spencer'), - ('Brian Jacques'), - ('Susan Seddon Boulet'), - ('Alice Leccese Powers'), - ('Arthur Hailey'), - ('Jack Mcdevitt'), - ('Terry C. Johnston'), - ('Frederick Forsyth'), - ('PIERS ANTHONY'), - ('Ruth Prawer Jhabvala'), - ('Chris Maynard'), - ('Bill Scheller'), - ('Ted Anton'), - ('Peter Nelson'), - ('David Larkin'), - ('Peter N. Nelson'), - ('Gerry Hadden'), - ('Per Olov Enquist'), - ('Tiina Nunnally'), - ('Emma Bull'), - ('David Weber'), - ('Maj Sjowall'), - ('Per Wahloo'), - ('Weber'), - ('Leo Marks'), - ('Kenneth M. Pollack'), - ('Azar Nafisi'), - ('Tony Horwitz'), - ('Leif Enger'), - ('Betty J. Eadie'), - ('Curtis Taylor'), - ('Randi Reisfeld'), - ('H. B. Gilmour'), - ('Robert Baldick'), - ('Elizabeth Moran'), - ('Katherine A Applegate'), - ('Lynn Beach'), - ('Adele Faber'), - ('Elaine Mazlish'), - ('Kimberly Ann Coe'), - ('Burstein'), - ('David Stick'), - ('Brian Daley'), - ('Alan Dean Foster'), - ('Donald F. Glut'), - ('Peter Jenkins'), - ('Earthworks Group'), - ('Cindy Ross'), - ('Todd Gladfelter'), - ('Gretchen McHugh'), - ('Sharon A. Feaster'), - ('Nina Kiriki Hoffman'), - ('R.L. Stine'), - ('Anne Edwards'), - ('Leonard Nimoy'), - ('Marilyn Kaye'), - ('Katherine A. Applegate'), - ('Gordon Korman'), - ('Ann M. Martin'), - ('Susan Tang'), - ('Ann Matthews Martin'), - ('Carolyn G. Hart'), - ('Khristine Page'), - ('Elaine Coffman'), - ('Gaelen Foley'), - ('Claire Delacroix'), - ('Rachel Gibson'), - ('Elizabeth Bevarly'), - ('Rosemary Rogers'), - ('Maureen Child'), - ('Cassie Edwards'), - ('Leigh Greenwood'), - ('Marsha Canham'), - ('Victoria Alexander'), - ('Connie Mason'), - ('Nan Ryan'), - ('Rebecca Brandewyne'), - ('Susan Elizabeth Phillips'), - ('Brenda Joyce'), - ('Pamela Britton'), - ('Sandra Hill'), - ('Judith Ivory'), - ('Candice Proctor'), - ('Madeline Hunter'), - ('Linda Francis Lee'), - ('Madeline Baker'), - ('Josie Litton'), - ('Judith Stacy'), - ('Sue Civil-brown'), - ('JoAnn Ross'), - ('Heather Graham'), - ('Patricia Rice'), - ('Melanie George'), - ('Olivia Drake'), - ('Connie Lane'), - ('Lisa Kleypas'), - ('Karen Rauch Carter'), - ('Emeril Lagasse'), - ('Chin-Ning Chu'), - ('W. Stone'), - ('Thomas A. Stewart'), - ('Pablo Neruda'), - ('Marie Simmons'), - ('BettyClare Moffatt'), - ('Bob Frissell'), - ('Julie Smith'), - ('Ellis Peters'), - ('John Bayley'), - ('Stephen J. Small'), - ('Marco Palmieri'), - ('Wladyslaw Szpilman'), - ('Carmen Carter'), - ('Alan Paton'), - ('Anthony Walker'), - ('John G. Gunderson'), - ('Tony DiTerlizzi'), - ('Fred Willard'), - ('Moliere'), - ('Richard Wilbur'), - ('Martin Suter'), - ('Catherine Ryan Hyde'), - ('Rainer Schmidt'), - ('Chris Carter'), - ('Wen Spencer'), - ('John S. Schuchman'), - ('Morgan Llywelyn'), - ('Elizabeth Moon'), - ('Roy K. Holcomb'), - ('Samuel K. Holcomb'), - ('Thomas K. Holcomb'), - ('Lou Ann Walker'), - ('C.S. Friedman'), - ('Starhawk'), - ('Matthew S. Moore'), - ('Robert F. Panara'), - ('Bonnie Tucker'), - ('Lillian M. Hines'), - ('Robert E. Weinberg'), - ('Llywelyn & Scott'), - ('Ernst Friedrich'), - ('Bruce K. Grant'), - ('Sherman Wilcox'), - ('Walter Evans-Wentz'), - ('Fiona Horne'), - ('Michael Scott'), - ('Tanya Huff'), - ('Douglas Monroe'), - ('Mary Coddington'), - ('Draja Mickaharic'), - ('Teresa Edgerton'), - ('Gustave Flaubert'), - ('Philip Gourevitch'), - ('Nancy Huston'), - ('P.D. (Phyllis Dorothy) James'), - ('Myla Goldberg'), - ('Mary Karr'), - ('Steve Alten'), - ('Smithmark Publishing'), - ('Nalo Hopkinson'), - ('Cynthia Voigt'), - ('Barbara Gowdy'), - ('Alice Munro'), - ('Catherine Gildiner'), - ('Peter Ackroyd'), - ('W. Wilkie Collins'), - ('Virginia Blain'), - ('Sharlee Dieguez'), - ('Stella Gibbons'), - ('Maurice A. Williams'), - ('Fred Uhlman'), - ('Arthur Koestler'), - ('Léo Lack'), - ('Matthew Pearl'), - ('Arno Gruen'), - ('Noah BenShea'), - ('Elliot Snow'), - ('Judith Michael'), - ('Patricia Sprinkle'), - ('Carolyn Parkhurst'), - ('Anthony Bourdain'), - ('Lyn Hamilton'), - ('David Chase'), - ('Frederick Perls'), - ('Elula Perrin'), - ('R. A. Salvatore'), - ('Jessica Salmonson'), - ('Jessica Amanda Salmonson'), - ('Diane Carey'), - ('Geraldine Thorsten'), - ('Jurt W. Donsbach'), - ('Kristine Kathryn Rusch'), - ('Dean Wesley Smith'), - ('L. A. Graf'), - ('Martina Navratilova'), - ('Peter Lear'), - ('Marta Randall'), - ('Michael Reaves'), - ('Jo Clayton'), - ('Ken W. Kelly'), - ('H. Beam Piper'), - ('Michael Kurland'), - ('Jack Williamson'), - ('Nick Pollotta'), - ('Phil Foglio'), - ('Michael Peak'), - ('James Tiptree Jr.'), - ('Michael Herring'), - ('Robert Silverber'), - ('Melita Denning'), - ('Osborne Phillips'), - ('Craig Junjulas'), - ('Jan Woudhuysen'), - ('Tad Williams'), - ('Stephen Smoke'), - ('Dale Banks'), - ('Raymond Feist'), - ('Ron Hansen'), - ('Stephen R. Lawhead'), - ('Phil Rickman'), - ('Jill Stengl'), - ('Tracey V. Bateman'), - ('Pamela Griffin'), - ('Tamel'), - ('Gilbert Morris'), - ('Leisha Kelly'), - ('Denise Hunter'), - ('Jennifer Donnelly'), - ('Susan Kearney'), - ('B. J. Daniels'), - ('Virginia Kelly'), - ('Karen Whiddon'), - ('Alice Gaines'), - ('Bonnie Hamre'), - ('Ivy Landon'), - ('Jeanie Legend'), - ('Jenna Mills'), - ('Maggie Shayne'), - ('Pearl S. Buck'), - ('Kevin Ryan'), - ('Elizabeth Doyle'), - ('Linda Herring'), - ('Theresa Michaels'), - ('Simon Winchester'), - ('Brad Thor'), - ('Jamil I. Toubbeh'), - ('M.J. Rose'), - ('Douglas Hofstadter'), - ('Cosima Wagner'), - ('Geoffrey Skelton'), - ('Mark Merlis'), - ('Camara Laye'), - ('James Kirkup'), - ('Ernest Jones'), - ('Philippe Tho'), - ('William K. Powers'), - ('Mary Baker Eddy'), - ('Karen McCarthy Brown'), - ('John Okada'), - ('Milton Murayama'), - ('Andrew Sean Greer'), - ('Robert T. Trotter II'), - ('Juan Antonio Chavira'), - ('Luis D.'), - ('Ron Suskind'), - ('Anna Deavere Smith'), - ('Genny Lim'), - ('Wakako Yamauchi'), - ('Momoko Iko'), - ('Velina Hasu H'), - ('Luis Valdez'), - ('Laurel Thatcher Ulrich'), - ('K. Ryan'), - ('Miguel De Cervantes Saavedra'), - ('Raymond Carver'), - ('Edmond Rostand'), - ('Brian Hooker'), - ('Naomi Epel'), - ('Fyodor Dostoyevsky'), - ('Richard Pevear'), - ('Larissa Volokhon'), - ('ORSON SCOTT CARD'), - ('George Galdorisi Captain'), - ('George Galdorisi'), - ('David McCallum'), - ('Patrick A. Davis'), - ('Eca De Queiros'), - ('Charles Kuralt'), - ('Cleveland Amory'), - ('Lisa Adams'), - ('Susan Fox Rogers'), - ('Lawrence Durrell'), - ('Vicki Hearne'), - ('Andrea Mohin'), - ('Anthony M. Fauglid'), - ('Victoria Christopher Murray'), - ('Jonathan Linton'), - ('Aiden W. Tozer'), - ('Peter Conn'), - ('Hannah Hurnard'), - ('TD Jakes'), - ('Howard Kaminsky'), - ('Caren Lissner'), - ('Paul Vincent'), - ('Tanja Kinkel'), - ('Helga Hegewisch'), - ('Klaus Reichert'), - ('Donna Leon'), - ('Ariane Böckler'), - ('Kjell Johansson'), - ('Susanne Dahmann'), - ('Ahne'), - ('Henning Mankell'), - ('Wolfgang Butt'), - ('Judy Mercer'), - ('Richard Carlson'), - ('Patrick Morley'), - ('Lael Littke'), - ('Michael Kupperman'), - ('Arthur Byron Cover'), - ('Richard Brightfield'), - ('Edward Packard'), - ('David Perry'), - ('Jody Lynn Nye'), - ('Larry Niven'), - ('Donato Giancola'), - ('John Dechancie'), - ('Don H. Debrandt'), - ('Norma Kassirer'), - ('Greenwald'), - ('Norma Tadlock Johnson'), - ('M. L. Kenyon'), - ('Susan Shwartz'), - ('Martin H. Greenberg'), - ('Laurel Trivelpiece'), - ('Vonda N. McIntyre'), - ('David Bischoff'), - ('Steve Perry'), - ('Robert N. Charrette'), - ('Nyx Smith'), - ('Carl Sargent'), - ('Nigel D. Findley'), - ('Stephen Kenson'), - ('Lisa Smedman'), - ('Tom Dowd'), - ('Mel Odom'), - ('Jordan K. Weisman'), - ('Caroline Spector'), - ('W.E.B. Griffin'), - ('Gardner Dozois'), - ('Robert Doherty'), - ('Vince Flynn'), - ('Margret Rey'), - ('H. A. Rey'), - ('Alan J. Shalleck'), - ('Susanna Kaysen'), - ('Rebecca Reisert'), - ('Jean Dominiqu Bauby'), - ('David L. Lindsey'), - ('Elke Vom Scheidt'), - ('Binnie Kirshenbaum'), - ('David Anson Russo'), - ('William Shatner'), - ('Earl Emerson'), - ('Mary Brown'), - ('Dickens'), - ('Mary Roberts Rinehart'), - ('Sapphire'), - ('Misty Bernall'), - ('Shannon Holmes'), - ('Franziska Stalmann'), - ('Colin Dexter'), - ('Karin Polz'), - ('Pieke Biermann'), - ('Claudio Paglieri'), - ('Verena Von Koskull'), - ('Susanna Tamaro'), - ('Sigrid Heuck'), - ('Joseph O`Connor'), - ('Ian Rankin'), - ('Ellen Schlootz'), - ('Bruce Alexander'), - ('Dr. Andreas Jäger'), - ('Friedrich Ani'), - ('Birgit Vanderbeke'), - ('Samuel J. Butcher'), - ('H. Williams'), - ('C. B. Andersen'), - ('Megan Stine'), - ('Susan Meyers'), - ('Peter Clover'), - ('Alan Garner'), - ('Arthur Miller'), - ('Volker Schlöndorff'), - ('Florian Hopf'), - ('Simon Brett'), - ('John Katzenbach'), - ('Lynn Kurland'), - ('Chip Kidd'), - ('Philip Gabriel'), - ('Neal Pollack'), - ('Kenzaburo Oe'), - ('John Nathan'), - ('Nicci French'), - ('Walter Moers'), - ('Robert J. Sawyer'), - ('Connie Willis'), - ('William Martin'), - ('Michael Romkey'), - ('Susan R. Sloan'), - ('Evan Hunter'), - ('Lynn Austin'), - ('Dava Sobel'), - ('J.A. Jance'), - ('Aidan Meehan'), - ('Anthony Trollope'), - ('Angela Huth'), - ('Sherrie Weaver'), - ('P.G. Wodehouse'), - ('Stephen Crane'), - ('Alfred Kazin'), - ('Regina Domeraski'), - ('Martin Walser'), - ('Eoin Colfer'), - ('Claudia Feldmann'), - ('Sempé'), - ('Bernard Lortholary'), - ('Eduardo Mendoza'), - ('Robert McLiam Wilson'), - ('Brice Matthieussent'), - ('Roddy Doyle'), - ('Anne Uhde'), - ('Florian Illies'), - ('Michael Schulman'), - ('Sheila Moore'), - ('JAMES ALEXANDER Thom'), - ('Katharine Graham'), - ('Martha Cooley'), - ('Dave Pelzer'), - ('James C. Dobson'), - ('Nown Graham'), - ('Ruth Chew'), - ('Julian Gough'), - ('Laura Rader'), - ('Amanda Cross'), - ('Alan Jacobson'), - ('Gayle Lynds'), - ('Julie Parsons'), - ('Brian Moore'), - ('Jil Karoly'), - ('Maarten''t Hart'), - ('Marianne Holberg'), - ('Timothy Leary'), - ('Ingrid Newkirk'), - ('Deborah Curtis'), - ('Gary S. Kadet'), - ('John G Kemeny'), - ('Hilda Rosner'), - ('John Schoenherr'), - ('Hanif. Kureishi'), - ('Gene Prater'), - ('Andy Rooney'), - ('Toby Young'), - ('Joshua Levine'), - ('Rufina Philby'), - ('Mikhail Lyubimov'), - ('Hayden Peake'), - ('Ellen Pollock'), - ('L. B. Cowman'), - ('Paul Bagdon'), - ('Elmer Kelton'), - ('Jerry B Jenkins Tim Lahaye'), - ('Larry Madaras'), - ('James M. Sorelle'), - ('Victoria Holt'), - ('John Ramsey Miller'), - ('James A. Michener'), - ('Christina Skye'), - ('Stephen E. Ambrose'), - ('James Stevenson'), - ('Roger A. Caras'), - ('Judith Tarr'), - ('George Baxt'), - ('Kathy Hepinstall'), - ('Meredith Webber'), - ('Leonid Gore'), - ('Bill Montalbano'), - ('William J. Coughlin'), - ('Ana Castillo'), - ('George Bernard Shaw'), - ('Ursula Michels-Wenz'), - ('Annemarie'), - ('Hella S. Haasse'), - ('Arnulf Zitelmann'), - ('Doro Göbel'), - ('Karen Cushman'), - ('Peter Robert'), - ('Peter Høeg'), - ('Angelika Gundlach'), - ('Lillian Too'), - ('Charlotte Bronte'), - ('Julian May'), - ('R.A. Macavoy'), - ('Edward Hubler'), - ('R. L. Fisher'), - ('Slavenka Drakulic'), - ('Penelope Fitzgerald'), - ('Thomas M. Disch'), - ('T. S. Eliot'), - ('Sharon Kay Penman'), - ('William S. Burroughs'), - ('T. H. White'), - ('Sylvan Barnet'), - ('Helene Hanff'), - ('Clive Barker'), - ('Lawrence Block'), - ('Ray Brad'), - ('Newman K.'), - ('Barbara L. Heller M.S.W.'), - ('Chad Walsh'), - ('Roland Evans'), - ('Kathleen A. Brehony'), - ('Robert Drewe'), - ('Carlos Fuentes'), - ('Alfred MacAdam'), - ('Peter Kelder'), - ('Dalai Lama'), - ('Howard C. Cutler'), - ('Jürgen Manshardt'), - ('Kathr'), - ('Wladimir Kaminer'), - ('Paul Berf'), - ('Barbara Sirges'), - ('Francine Pascal'), - ('Marie T. Morreale'), - ('Brooks Whitney'), - ('Tracy McGuinness'), - ('Barbara Park'), - ('Denise Brunkus'), - ('Katy Hall'), - ('Lisa Eisenberg'), - ('John Devore'), - ('Roy Doty'), - ('Liz Curtis Higgs'), - ('Astrid Lindgren'), - ('Louis S. Glanzman'), - ('Florence Lamborn'), - ('Diana G. Gallagher'), - ('Cathy West'), - ('Patricia Barnes-Svarney'), - ('Stefanie Scott'), - ('Tamara England'), - ('Walter Rane'), - ('Connie Porter'), - ('Dahl Taylor'), - ('Dan Andreasen'), - ('Peg Ross'), - ('Jean Paul Tibbles'), - ('Patricia MacLachlan'), - ('Daniel Pink'), - ('John R. Erickson'), - ('E. L. Konigsburg'), - ('John Le Carré'), - ('David Hajdu'), - ('Janet Lunn'), - ('N. R. Jackson'), - ('ZZ Packer'), - ('Betina Krahn'), - ('Mario Puzo'), - ('Kinky Friedman'), - ('Jolan Chang'), - ('Dossie Easton'), - ('Catherine A. Liszt'), - ('David Macaulay'), - ('Todd Lammle'), - ('James Chellis'), - ('Don Porter'), - ('Terah Kathryn Collins'), - ('Juan Villoro'), - ('Victoria Thompson'), - ('Joy Williams'), - ('John Train'), - ('Pierre Le-Tan'), - ('Carlos Valles'), - ('J. Patrick'), - (' Ph.D. Gannon'), - ('Philip Goldberg'), - ('Odell Shepard'), - ('Nancy Pickard'), - ('Ethan Black'), - ('J. K. Rowling'), - ('Bailey White'), - ('Mario De Carvalho'), - ('Editors Of Phaidon Press'), - ('John Robbins'), - ('Dean Ornish'), - ('Bonnie Bryant'), - ('Alison Wearing'), - ('James Thurber'), - ('Michael Baigent'), - ('Richard Leigh'), - ('Lewin'), - ('Susan Orlean'), - ('Crabbe Evers'), - ('Nancy Wright'), - ('Lisa Heron'), - ('Brian Heron'), - ('Carlos Ruiz Zafon'), - ('Lucia Graves'), - ('Peter Cashwell'), - ('Carson McCullers'), - ('Bob Woodward'), - ('Gabriel Zaid'), - ('Natasha Wimmer'), - ('Khaled Hosseini'), - ('Frances Tenenbaum'), - ('S. Williams'), - ('Tom Hazuka'), - ('Denise Thomas'), - ('James Thomas'), - ('Nikolai Gogol'), - ('Andrew R. MacAndrew'), - ('Leon Stilman'), - ('Charles Lewis'), - ('Floyd Skloot'), - ('Douglas Coupland'), - ('Tom Stoppard'), - ('Cornel West'), - ('Elie Wiesel'), - ('David McDuff'), - ('Nathan Englander'), - ('Louise Cooper'), - ('Marie'), - ('Hugo Marsan'), - ('Frédéric Beigbeder'), - ('Percy Kemp'), - ('Honoré De Balzac'), - ('Jeannine Guichrdet'), - ('Jorge Amado'), - ('Vincent Ravalec'), - ('Antonio Tabucchi'), - ('Lise Chapuis'), - ('Robert Vavra'), - ('Christina Dodd'), - ('Virginia Henley'), - ('John Dunning'), - ('Gina Berriault'), - ('Antonya Nelson'), - ('Richard Vetere'), - ('Ann Thornhill'), - ('Sarah Wells'), - ('Erik Quisling'), - ('Dianna Booher'), - ('Grant Naylor'), - ('Margaret Eleanor Atwood'), - ('Graham Masterton'), - ('Dai Sijie'), - ('Ina Rilke'), - ('Louise Bagshawe'), - ('Richard Bolles'), - ('Jenny Newman'), - ('Charles W. Sweeney'), - ('James A. Antonucci'), - ('Marion K. An'), - ('Conrad Allen'), - ('Marie Arana'), - ('Arthur V. Sellwood'), - ('A. V. Sellwood'), - ('James Lucas'), - ('William Zimmer'), - ('Roberta Miller'), - ('George Wilson'), - ('Donald R. Burgett'), - ('Bonnie Angelo'), - ('Lawrence Otis Graham'), - ('Raymond Strait'), - ('Hampton Sides'), - ('William W. Putney'), - ('Wolfgang W. E. Samuel'), - ('Ron Naveen'), - ('Sean Flannery'), - ('William Sarabande'), - ('Dorothy Glenn'), - ('Joan Hohl'), - ('Dixie Browning'), - ('Allan W Eckert'), - ('James Kelman'), - ('Kitty Kelley'), - ('Pamela Kaufman'), - ('Michael Levey'), - ('Joanna Richardson'), - ('Miriam Gurko'), - ('Monica Ferris'), - ('Sheila L. Skemp'), - ('Katie Hickman'), - ('Maria Perry'), - ('Brian Dolan'), - ('Bertram Fields'), - ('Frances Hill'), - ('Jane Newdick'), - ('Andrew Morton'), - ('Iyanla Vanzant'), - ('Ellen Michaud'), - ('Russell Wild'), - ('Ekaterina Gordeeva'), - ('E. M. Swift'), - ('The Staff Of Research & Education Association'), - ('Camilla T. Crespi'), - ('Peter McWilliams'), - ('Harold H. Bloomfield'), - ('Melba Colgro'), - ('Michael Broder'), - ('Janet Luhrs'), - ('Barbara De Angelis'), - ('Blu Greenberg'), - ('Mary Ann Mitchell'), - ('Patrick Wood'), - ('Jari Tervo'), - ('Primo Levi'), - ('Stuart Woolf'), - ('Paul Bailey'), - ('Jacques Prévert'), - ('Nick Bantock'), - ('Mary Maruca'), - ('Hanif Kureishi'), - ('Thomas Block'), - ('Nelson Demille'), - ('Suzette Haden Elgin'), - ('M. J. Ryan'), - ('Miguel Ruiz'), - ('Cornwell Patricia'), - ('J. M. Coetzee'), - ('Alex Garland'), - ('Joy Fielding'), - ('Nathaniel Philbrick'), - ('Bernhard Robben'), - ('Jude Watson'), - ('George Weinberg'), - ('Bstan-Dzin-Rgya-Mtsho'), - ('Donald S. Lopez'), - ('E. Donnall Thomas Jr.'), - ('Shena Mackay'), - ('J.M. O''Neill'), - ('Terry Carr'), - ('Penina Keen Spinka'), - ('Mary Renault'), - ('Christian Bobin'), - ('Jean-Dominique Bauby'), - ('Daniel Pennac'), - ('Amin Maalouf'), - ('T. A. Barron'), - ('Isak Dinesen'), - ('Janet Ahlberg'), - ('Allan Ahlberg'), - ('Joseph Finder'), - ('Daniel McNeill'), - ('Master Lam Kam-Chuen'), - ('George Eliot'), - ('Erica Spindler'), - ('Phoebe Gloeckner'), - ('Stephen Dobyns'), - ('Anne Bishop'), - ('Kazuo Ishiguro'), - ('Lalita Tademy'), - ('R. Forster'), - ('Aimee Liu'), - ('Cathy Maxwell'), - ('Harvey Karp'), - ('Barbara Bretton'), - ('Mike Ashley'), - ('Victor Gischler'), - ('Loren Estleman'), - ('Ben Rehder'), - ('Ellen F. Fitzpatrick'), - ('Carl Jensen'), - ('Project Censored'), - ('Tom Tomorrow'), - ('Mitchell Stephens'), - ('Pete Hamill'), - ('Dan Rather'), - ('Matt Drudge'), - ('Crosland Brown'), - ('Phillip M. Margolin'), - ('Marcia Muller'), - ('Kasey Michaels'), - ('Bruce Robinson'), - ('Craig Spector'), - ('James Cameron'), - ('Robert Fulghum'), - ('Susan H Okeefe'), - ('Joe Orton'), - ('Uta Hagen'), - ('Haskel Frankel'), - ('Stella Rodway'), - ('Francois Mauriac'), - ('Josephine Carr'), - ('Alistair MacLean'), - ('Peter Benchley'), - ('J. D. Robb'), - ('Bob Uecker'), - ('James Blish'), - ('Diana Wynne Jones'), - ('John (Fire) Lame Deer'), - ('Jim Butcher'), - ('Lowell Bair'), - ('Ian Fleming'), - ('Curt Gentry'), - ('Anne Mccaffrey'), - ('E. L. Swann'), - ('Mark Shepherd'), - ('Gentry Lee'), - ('John Vornholt'), - ('Zelazny'), - ('Robert Daley'), - ('Catherine Jones'), - ('Running Press'), - ('Jared M. Diamond'), - ('Ian Frazier'), - ('Edain McCoy'), - ('John Dufresne'), - ('Fayrene Preston'), - ('Rand Miller'), - ('David Wingrove'), - ('Pamela Norris'), - ('Jelloun'), - ('Caela Farren'), - ('William E. Blundell'), - ('Andrew Delbanco'), - ('Marguerite Duras'), - ('Par Lagerkvist'), - ('Alexandra Dick'), - ('Alice Kaplan'), - ('Jo Ann Beard'), - ('Dorothea Brande'), - ('Alexandre Dumas PÃ..re'), - ('Maxine Trottier'), - ('Mark Bricklin'), - ('Derek Wilson'), - ('Iris Gadd'), - ('Roger Gadd'), - ('Dana Fuller Ross'), - ('Kirsten Boie'), - ('Gillian Butler'), - ('Tony Hope'), - ('Marjorie L. Lloyd'), - ('David Fontana'), - ('Mary Norton'), - ('Beth Krush'), - ('Joe Krush'), - ('Yahiya Emerick'), - ('Michael Gannon'), - ('Brindley Louise'), - ('Robin Dalton'), - ('Kate DiCamillo'), - ('Felix Salten'), - ('R. J. Pineiro'), - ('Colin Forbes'), - ('Patricia Shaw'), - ('Anna Maria Ortese'), - ('Sigrid Vagt'), - ('Andreas Brandhorst'), - ('Italo Calvino'), - ('Oswalt Von Nostitz'), - ('Paul C. Doherty'), - ('Frauke Biehl'), - ('Sevim Kabak'), - ('Amélie Nothomb'), - ('Wolfgang Kriege'), - ('Alastair MacNeill'), - ('Alastair McNeill'), - ('Alistair MacLea'), - ('Alison Lurie'), - ('Otto Bayer'), - ('Glenn Meade'), - ('Wolfgang Thon'), - ('Allan Folsom'), - ('Dorit Zinn'), - ('Petra Durst-Benning'), - ('Eva Maaser'), - ('Jaime Bayly'), - ('Lindy Arriaga Diaz'), - ('Laurens Van Der Post'), - ('Barbara Mertz'), - ('Clara Pierre'), - ('Gabriele Weber-Jaric'), - ('Frederik Berger'), - ('Ruth Berger'), - ('Peter Berling'), - ('R. Conrad Stein'), - ('Susan R. Matthews'), - ('Kathy Tyers'), - ('Jerry Pournelle'), - ('John F. Carr'), - ('Roland Green'), - ('James P. Hogan'), - ('Don Wismer'), - ('C. J. Cherryh'), - ('Eric Flint'), - ('David Drake'), - ('Phillip Margolin'), - ('Leonard Goldberg'), - ('Willie Morris'), - ('Piers Dudgeon'), - ('Marion Crawford'), - ('Josephine Cox'), - ('Faith Addis'), - ('F. Scott Fitzgerald'), - ('Sara Backer'), - ('Newt Scamander'), - ('Charles Vess (illustrator)'), - ('Garth Nix'), - ('Betty Lumsden Milne'), - ('Philip Plisson'), - ('Jan Siegel'), - ('Washington Irving'), - ('Cathy Guisewite'), - ('Charles M. Schulz'), - ('Susan Cooper'), - ('Alan Cober'), - ('Deanne Stillman'), - ('Laura Levine'), - ('Graham C. Barrett'), - ('Rudyard Kipling'), - ('Don Daily'), - ('Jim Razzi'), - ('Chris Schnabel'), - ('Louisa M. Atcott'), - ('Gavin Rowe'), - ('Gina Ingoglia'), - ('Francese Mateu'), - ('Carlos Collodi'), - ('Greg Hildebrandt'), - ('P. L. Whitney'), - ('Carolyn Mackler'), - ('Robin Jones Gunn'), - ('Debbie Macomber'), - ('Steve Friedman'), - ('Jane Hissey'), - ('Masterson Elementary Students'), - ('First Grade Students'), - ('Margaret Landon'), - ('Julianna Baggott'), - ('Alex Boese'), - ('Webb Garrison'), - ('Megan McCafferty'), - ('Jill A. Davis'), - ('Charles Purdy'), - ('Greg Johnson'), - ('Jonathan Snow'), - ('Sylvia Thompson'), - ('Brooke Scudder'), - ('Aileen Paterson'), - ('Molly Rice'), - ('David Ignatius'), - ('Allison Pearson'), - ('Jonathan Tropper'), - ('Jenny Colgan'), - ('Cathy Hopkins'), - ('Melissa Miller'), - ('Katherine B. Chauncey'), - ('George Foreman'), - ('Betty Crocker Editors'), - ('Grange Books Ed'), - ('Robert Bly'), - ('Robert Strandquist'), - ('Victoria Moran'), - ('SARK'), - ('Debrena Jackson Gandy'), - ('Sally Warner'), - ('Daniel Jones'), - ('Kate Freiman'), - ('Eric Carle'), - ('Marty Becker'), - ('Caro'), - ('Malachy McCourt'), - ('Stan Redding'), - ('Frank W. Abagnale'), - ('Glenna McReynolds'), - ('Maeve. Binchy'), - ('Elizabeth Lowell'), - ('Ben Cohen'), - ('Jerry Greenfield'), - ('Nancy Stevens'), - ('Delinsky'), - ('Teresa Medeiros'), - ('Daphne Rose Kingma'), - ('Johanna Spyri'), - ('Shari Lewis'), - ('Frances Mayes'), - ('Robert Crais'), - ('Susan Ludington-Hoe'), - ('Susan K. Golant'), - ('John D. MacDonald'), - ('Landrum B. Shettles'), - ('David M. Rorvik'), - ('Shelley Austin Kastner'), - ('Frances H. Burnett'), - ('Robin Wells'), - ('Lynn Erickson'), - ('John E. Sarno'), - ('Trudi Pacter'), - ('Quinn T. Evans'), - ('Janelle Taylor'), - ('Robert Tallant'), - ('Juan Kattan-Ibarra'), - ('Shirley Hazzard'), - ('Felicity Trotman'), - ('Falcon Travis'), - ('Chip Lovitt'), - ('Harriet Grey'), - ('Bud Gardner'), - ('Robert A. Wilson'), - ('Stanley Marcus'), - ('Owen Parry'), - ('Michael Perry'), - ('Chelsea Quinn Yarbro'), - ('Freeman Patterson'), - ('Malcolm Gladwell'), - ('Jiddu Krishnamurti'), - ('William Dalrymple'), - ('Paul Hoffman'), - ('Duncan J. Watts'), - ('Sarina Singh'), - ('Michelle Coxall'), - ('Royina Grewal'), - ('Inez McAlister Faber'), - ('Dottie McDowell'), - ('Josh McDowell'), - ('David N. Weiss'), - ('Sally Beauman'), - ('Paul Solotaroff'), - ('Peter Singer'), - ('W. Y. Evans-Wentz'), - ('Lama Anagarika Govinda'), - ('Sir John'), - ('Frank Godwin'), - ('Henrik Ibsen'), - ('James McFarlane'), - ('Jens'), - ('Margo Culley'), - ('D. C. R. A. Goonetilleke'), - ('E.M. Forster'), - ('John F. McGrady'), - ('Pat Conroy'), - ('Norah Lofts'), - ('Suzanne Strempek Shea'), - ('Robb Forman Dew'), - ('Eric Nylund'), - ('Michael D. Warden'), - ('Thomas J. Stanley'), - ('William D. Danko'), - ('Rosellen Brown'), - ('R. K. Narayan'), - ('George Mackay Brown'), - ('Spike Milligan'), - ('Thomas Paine'), - ('Henry Collins'), - ('John N. Davie'), - ('David Skilton'), - ('A. Alvarez'), - ('A. J. Hill'), - ('Sharon Sala'), - ('Peggy Moreland'), - ('Paula Detmer Riggs'), - ('Guideposts Magazine'), - ('Marie Watts'), - ('Joy Darien'), - ('Bill Richardson'), - ('Jill Conner Browne'), - ('Katherine O''Neal'), - ('Sherwood Anderson'), - ('Amy Paulsen'), - ('(None)'), - ('Julia Alvarez'), - ('Christopher Reich'), - ('Mary Cantwell'), - ('Stefan Fatsis'), - ('Michael Kinsley'), - ('Hentoff'), - ('Debbie Dadey'), - ('Marcia T. Jones'), - ('Dr. Charles F. Stanley'), - ('Rick Carson'), - ('Eth Clifford'), - ('Caroline B. Cooney'), - ('Niccolo Ammaniti'), - ('Jonathan Hunt'), - ('Walter Dean Myers'), - ('Chris Fabry'), - ('Susan Richards Shreve'), - ('James Marshall'), - ('Edith Nesbit'), - ('Robert L. Veninga'), - ('Janis Arnold'), - ('Cindy Bonner'), - ('Hannah Crafts'), - ('Henry Louis Gates Jr.'), - ('Jim Grimsley'), - ('Robert Siegel'), - ('Onion Staff'), - ('Richard Scarry'), - ('Mickey Spillane'), - ('John Knowles'), - ('David Halberstam'), - ('Will Ferguson'), - ('Ian Ferguson'), - ('Carol Off'), - ('George Gibian'), - ('Louise Maude'), - ('Aylmer Maud'), - ('Anthony Lane'), - ('John Kennedy Toole'), - ('Walker Percy'), - ('Richard Blow'), - ('Lisa Beamer'), - ('Ken Abraham'), - ('David Suzuki'), - ('John Connelly'), - ('J.M. Morris'), - ('Sara Lewis'), - ('Donada Peters'), - ('Renee'), - ('Mickey Zucker Reichert'), - ('Lee Hogan'), - ('Judith Miller'), - ('Stephen Engelberg'), - ('William Broad'), - ('T. R. Pearson'), - ('Bill Schultheis'), - ('Christa Worthington'), - ('Richard Bachman'), - ('Wilbur Witt'), - ('Iain Lawrence'), - ('Peter Wright'), - ('Mary Stewart'), - ('Gore Vidal'), - ('Molly Cochran'), - ('Warren Murphy'), - ('Jim Collins'), - ('Robert Pirsig'), - ('Troon McAllister'), - ('China Mieville'), - ('Chang-rae Lee'), - ('Tom Bradby'), - ('Jimmy Breslin'), - ('Adam Haslett'), - ('Victoria Price'), - ('Lloyd Alexander'), - ('Annelie Ortmanns'), - ('D. E. Rogers'), - ('Douglas Robinson'), - ('Millenia Black'), - ('Laurie Fox'), - ('Wendy Northcutt'), - ('Martin Mull'), - ('Allen Rucker'), - ('Rubin Carter'), - ('Peter Carey'), - ('Cinammon Burke'), - ('Phoebe Conn'), - ('Rosalind Laker'), - ('Mary McMullen'), - ('Anne L. Squire-Buresh'), - ('Merrill Miller'), - ('Nancy Thayer'), - ('Hunter S. Thompson'), - ('Karen Scalf Linamen'), - ('Camille Cauti'), - ('Luther Blissett'), - ('Helga Schneider'), - ('Shaun Whiteside'), - ('Richard Craze'), - ('Javier Cercas'), - ('Elisabeth Beyer'), - ('Aleksandar Grujicic'), - ('Charlotte A. Alexander'), - ('Delta Burke'), - ('Alexis Lipsitz'), - ('Michael Johnston'), - ('Christopher Pike'), - ('Robert Simpson'), - ('Michael A. Martin'), - ('Andy Mangels'), - ('Heather Jarman'), - ('David R. George III'), - ('Gabrielle De Cuir'), - ('Ray Garton'), - ('Judith Reeves-Stevens'), - ('Garfield Ree'), - ('Judith Reeves-Steven'), - ('Garfield Reev'), - ('Francis Scott Fitzgerald'), - ('Jacques Tournier'), - ('Kate McMullan'), - ('Jan Burke'), - ('Ed Laing'), - ('Michael A. Kahn'), - ('Christine Green'), - ('Lewis Nordan'), - ('William Diehl'), - ('Julia Fenton'), - ('Vicki A. Brady'), - ('Linda Dobson'), - ('Bob Barnes'), - ('Marvin Allen'), - ('Douglas Hobbie'), - ('Gower'), - ('Antony Sher'), - ('Monika Elwenspoek'), - ('Juan Ramon Jimenez'), - ('Jack Welch'), - ('John A. Byrne'), - ('Conari Press'), - ('Dawna Markova'), - ('Andre Dubus III'), - ('Ria Fehlau'), - ('New Line Productions'), - ('Tom Shales'), - ('James Andrew Miller'), - ('Charlotte Hughes'), - ('Robert Goldsborough'), - ('Jennifer Blake'), - ('ANNA PAVORD'), - ('Robin Mckinley'), - ('S.D. Perry'), - ('Adam McCauley'), - ('John Straley'), - ('Jeff Rovin'), - ('Julia Bell'), - ('Paul Magrs'), - ('Andrew Motion'), - ('E. A. Ellis'), - ('NICK HORNBY'), - ('Robert Munsch'), - ('Sheila McGraw'), - ('Robin Quivers'), - ('Norman Maclean'), - ('S. E. Hinton'), - ('John Gunther'), - ('Richard Preston'), - ('Lenny Flank'), - ('Joy Adamson'), - ('George Page'), - ('Naguib Mahfouz'), - ('Tagreid Abu-Hassabo'), - ('Wei Hui'), - ('Catherine Landis'), - ('Amanda Eyre Ward'), - ('Rachel Carson'), - ('Linda Lear'), - ('Tony Hawks'), - ('Lindsay Clarke'), - ('Karin McQuillan'), - ('Amy Thomson'), - ('Laura Joh Rowland'), - ('Marjorie B. Kellogg'), - ('Marjorie Bradley Kellogg'), - ('Jody Lee'), - ('Kage Baker'), - ('David Clement-Davies'), - ('Rachel Pollack'), - ('Emily Jenkins'), - ('Mirika Mayo Cornelius'), - ('Victor H. Krulak'), - ('Charles Tomlinson'), - ('Mary Ann Lamanna'), - ('Agnes Riedmann'), - ('Michael Drosnin'), - ('John Searles'), - ('Carol Grace'), - ('Tom Stone'), - ('Sheri Reynolds'), - ('Bonnie Bluh'), - ('Gloria Murphy'), - ('Pat Shipman'), - ('Donald Serrell Thomas'), - ('Benedict Freedman'), - ('Nancy Freedman'), - ('Elizabeth Berg'), - ('Roxana Robinson'), - ('Willard Scott'), - ('Bill Crider'), - ('Laurie Graham'), - ('Anne D. LeClaire'), - ('Parnell Hall'), - ('Catherine Anderson'), - ('Nikki Rivers'), - ('Kathleen O''Reilly'), - ('Judy Christenberry'), - ('Muriel Jensen'), - ('Tina Leonard'), - ('Emma Craig'), - ('Nancy Pearl'), - ('Tim Winton'), - ('Jim Fergus'), - ('Randall Robinson'), - ('Jim Marrs'), - ('Edwin A. Abbott'), - ('William Sydney Porter'), - ('Shane Weller'), - ('Michael Henry Heim'), - ('Wayne Weible'), - ('T.C. Boyle'), - ('Camilo Jose Cela'), - ('Anthony Kerrigan'), - ('Jeremy Harwood'), - ('Simon Fielding'), - ('Gillian Emerson-Robe'), - ('Jim Underwood'), - ('Pearl Cleage'), - ('Marlo Morgan'), - ('Gary Meier'), - ('Gloria Meier'), - ('Ernest Hillen'), - ('Deirdre Madden'), - ('Roger Hargreaves'), - ('Stella Braam'), - ('Hartmut Bieg'), - ('Barbara Pierce'), - ('Dinah Mccall'), - ('Bertrice Small'), - ('Kathy Love'), - ('Lisa Plumley'), - ('Cait London'), - ('Lauren Baratz-Logsted'), - ('Annie Gottlieb'), - ('Slobodan D. Pesic'), - ('Vicki Lewis Thompson'), - ('Tony Johnston'), - ('Rene Barjavel'), - ('Ken Munro'), - ('Liz Smith Parkhurst'), - ('Rod Lorenz'), - ('Thomas King'), - ('Hansjörg Schneider'), - ('Botho Strauß'), - ('Erika Burkart'), - ('Freya Von Moltke'), - ('Reinhard Delau'), - ('Hans-Ludwig Böhme'), - ('Christina Viragh'), - ('Jacques Wirz'), - ('Michael Bayer'), - ('Norber'), - ('Linda Brower Meeks'), - ('Philip Heit'), - ('Randy M. Page'), - ('Paul Lukas'), - ('Fritjof Capra'), - ('Suanne Kelman'), - ('John Seabrook'), - ('Lionel Tiger'), - ('Hal Niedzviecki'), - ('Ernest Becker'), - ('Stig Bjorkman'), - ('Tim Burton'), - ('Steve Moss'), - ('Tim Lott'), - ('James M. Cain'), - ('Dashiell Hammett'), - ('Benjamin Anastas'), - ('Jose Saramago'), - ('Giovanni Pontiero'), - ('Jacob Grimm'), - ('Wilhelm Grimm'), - ('Jack Zipes'), - ('Arthur Nersesian'), - ('Walter Kirn'), - ('Roxanne Henke'), - ('Wendy Corsi Staub'), - ('Joshua Piven'), - ('Hugh Ross Williamson'), - ('Cindy Ribarich'), - ('Suzanne Delzio'), - ('Bill Lessard'), - ('Steve Baldwin'), - ('Harold Schechter'), - ('Lesley Adkins'), - ('Roy Adkins'), - ('Ian Gibson'), - ('Jan Bondeson'), - ('Richard M. Stallman'), - ('Lawrence Lessig'), - ('Joshua Gay'), - ('Lau'), - ('Vaughn Bullard'), - ('Kevin T. Smith'), - ('Michael C. Daconta'), - ('Mary Gentle'), - ('Philip Hazel'), - ('Richard Bird'), - ('Tim O''Brien'), - ('Stephen Williams'), - ('Noel Perrin'), - ('Marjory Wunsch'), - ('Natalie Angier'), - ('Tim Folger'), - ('Anthony Everitt'), - ('Chris Kreski'), - ('Michael J. Nelson'), - ('Stephen Kendrick'), - ('Dave Mckean'), - ('Randall Kennedy'), - ('Rochelle Morton'), - ('Jeff Kelly'), - ('Thomas Lynch'), - ('Larry L. King'), - ('Ben Macintyre'), - ('David M. Friedman'), - ('Cheryl Rilly'), - ('David Hagberg'), - ('Eugenia Price'), - ('Edward McNall Burns'), - ('Standish Meacham'), - ('Robert E. Ler'), - ('Steven Alter'), - ('Xavier Patier'), - ('Jacques Serguine'), - ('Helge Schneider'), - ('Don Roberts'), - ('Michael Mojher'), - ('Anita Desai'), - ('Gladys Taylor'), - ('Jeff Burgess'), - ('W. P. Kinsella'), - ('Tor Seidler'), - ('Vivian Vande Velde'), - ('Gail Bowen'), - ('Franz Kafka'), - ('Sir Richard Francis Burton'), - ('George R.R. Martin'), - ('Kathe Koja'), - ('Doug Lansky'), - ('Caroline Rivolier'), - ('S. White'), - ('Judith Krantz'), - ('Richard P. Henrick'), - ('Johanna Kingsley'), - ('Laurie Notaro'), - ('Taylor Caldwell'), - ('Julia Cameron'), - ('Mark Griffin'), - ('Theron Walker'), - ('Elizabeth Powers'), - ('Amy Mandelker'), - ('Louise Perrotta'), - ('Gina Fontana'), - ('Ferdinand G. Mahfood'), - ('Sue Ellen Cooper'), - ('Andrea Reekstin'), - ('Richard Rohr'), - ('Joseph Martos'), - ('Jamaica Kincaid'), - ('Paul Fleischman'), - ('Kathryn Jacobi'), - ('Margot Livesey'), - ('Cathi Hanauer'), - ('Margaret Moorman'), - ('Monica Ali'), - ('Karen Joy Fowler'), - ('Micah Sparks'), - ('Lolly Winston'), - ('Susan Minot'), - ('Charlotte Vale Allen'), - ('Cathy Kelly'), - ('Eduardo Galeano'), - ('Janice Law'), - ('Judith Hawkes'), - ('James Jennings'), - ('Jean Baudrillard'), - ('Julia Witwer'), - ('Alvin Schwartz'), - ('Stephen Gammell'), - ('Melvin Burgess'), - ('Neale Donald Walsch'), - ('Janet Peery'), - ('Robert Alexander'), - ('Antwone Q. Fisher'), - ('Mim E. Rivas'), - ('Fred Chappell'), - ('Frances Park'), - ('Caroline Gordon'), - ('Timothy Zahn'), - ('O''Cork'), - ('Larry Kirk'), - ('Gerald Scarfe'), - ('Steve Bell'), - ('Mark Bryant'), - ('Toni Goffe'), - ('Henrietta Stickland'), - ('Milan Rai'), - ('Mandy Wagstaff'), - ('Jean Liedloff'), - ('Will Self'), - ('John Lanchester'), - ('Morihei Ueshiba'), - ('John Stevens'), - ('Steven Pressfield'), - ('B.B. Hiller'), - ('Lorrie Moore'), - ('Ken Follett'), - ('Bruce H. Wilkinson'), - ('Marele Day'), - ('Robin Klein'), - ('David Finn'), - ('Cafi Cohen'), - ('Dorothy Moore'), - ('Raymond Moore'), - ('Lucy Jo Palladino'), - ('Daniel Silva'), - ('Robert Adams'), - ('Ken Kelly'), - ('Harry Turtledove'), - ('Robert Harris'), - ('Walter Tevis'), - ('Walter Wangerin Jr.'), - ('Nevil Shute'), - ('Conrad Black'), - ('Brian Aldiss'), - ('Jennifer Niven'), - ('Stephen Hawking'), - ('Brian MacArthur'), - ('Richard A. Knaak'), - ('Joseph Stanislaw'), - ('Herman Wouk'), - ('Daniel Hood'), - ('Gunter Böhmer'), - ('Britta Herz'), - ('Thomas Finn'), - ('Karl-Heinz Witzko'), - ('Peter F. Hamilton'), - ('Irene M. Pascoe'), - ('Amy Goldman Koss'), - ('Stephanie Barron'), - ('William W. Hewitt'), - ('Mircea Eliade'), - ('John Wyndham'), - ('William Boyd'), - ('John M. Cohen'), - ('Mark J. Cohen'), - ('D. G. A. Whitten'), - ('W.G.'), - (' W.G. Moore Moore'), - ('Friedrich Nietzsche'), - ('R. J. Hollingdale'), - ('A.R.R.R. Roberts'), - ('H Leighton Steward'), - ('Michael J.H. Taylor'), - ('David Mondey'), - ('Monique Roffey'), - ('Peter Bleksley'), - ('S.Anderson Black'), - ('Parragon'), - ('Better Homes & Gardens'), - ('Joan Lewis'), - ('Lynette Chil'), - ('Brian Cole'), - ('D. Griffith'), - ('Tom Holland'), - ('Bea Reiter'), - ('Albert Bichler'), - ('Horst Herzig'), - ('Tina Herzig'), - ('Jill Remains'), - ('Natalie Zemon Davis'), - ('Nora Ephron'), - ('Illiad'), - ('Bob Herbstman'), - ('Illiad" Frazer J.D.'), - ('Nancy Friday'), - ('Amanda Quick'), - ('Gloria Steinem'), - ('Lisa Carey'), - ('Joanne Rock'), - ('Andy Rathbone'), - ('William J. Bennett'), - ('Richard Parrish'), - ('Trevanian'), - ('Alan Bullock'), - ('Mewa Ramgobin'), - ('Lou Dubose'), - ('Legs McNeil'), - ('Gillian McCain'), - ('Stephen Baker'), - ('Jackie Geyer'), - ('Lynne Withey'), - ('Flavius Josephus'), - ('Betty Radice'), - ('Julian Barnes'), - ('Kurt Wagenseil'), - ('Thucydides'), - ('Steven Lattimore'), - ('Joe Klein'), - ('Joan Didion'), - ('Todd Gitlin'), - ('Steven Fraser'), - ('Neil Postman'), - ('Pat Robertson'), - ('Firoozeh Dumas'), - ('Rosamunde Pilcher'), - ('Cathleen Schine'), - ('Francine Prose'), - ('William Dietrich'), - ('Ruby Jean Jensen'), - ('John Derbyshire'), - ('Thich Nhat Hanh'), - ('Peter Levitt'), - ('Jerry Spinelli'), - ('Jeffrey Hudson'), - ('Barbara Seranella'), - ('Alice Blanchard'), - ('Tracey West'), - ('Margaret George'), - ('Louis Begley'), - ('Elizabeth Von Arnim'), - ('Marilyn Wallace'), - ('Cameron Tuttle'), - ('Susannah Bettag'), - ('T. Jefferson Parker'), - ('Robert Morgan'), - ('Paul Kemprecos'), - ('Janet Groene'), - ('Gordon Groene'), - ('Eric Garcia'), - ('Stuart Pawson'), - ('Robert J. Ringer'), - ('Gary Braver'), - ('Stephen C. George'), - ('Kenneth Winston Caine'), - ('Men''s Heal'), - ('Steve Ettlinger'), - ('James S Thayer'), - ('Kristiana Gregory'), - ('Abraham Verghese'), - ('Robin Jarvis'), - ('Colin Dann'), - ('Ursula Moray Williams'), - ('Sarah Mlynowski'), - ('Michael Bergin'), - ('Karen Templeton'), - ('Linda Lenhoff'), - ('Claire Cook'), - ('Lauren Weisberger'), - ('John Gray'), - ('Silvana Klein'), - ('Dirk Van Gunsteren'), - ('Susan Sontag'), - ('Reinhard Kaiser'), - ('Peter K. Wehrli'), - ('Fritz Krenn'), - ('Tom Shachtman'), - ('Waris Dirie'), - ('Cathleen Miller'), - ('Antoine Bello'), - ('Claudia Kalscheuer'), - ('Werner Burckhardt'), - ('Verena Koch'), - ('Heike Geißler'), - ('Klaas Huizing'), - ('Ingrid Noll'), - ('Jürgen Abel'), - ('Daniela Huzly'), - ('Gregor Gysi'), - ('Celia Fremlin'), - ('Marcus Geiss And Henning Stegelmann'), - ('Risa Mickenberg'), - ('Joanne Dugan'), - ('Brian'), - ('Paul Zindel'), - ('Alice Miller'), - ('Philip Zaleski'), - ('Paul Kaufman'), - ('Dennis Covington'), - ('Guido Eckert'), - ('Siri Hustvedt'), - ('Georges Montforez'), - ('Antoine De Saint-Exupéry'), - ('Higgins Clark'), - ('Christopher Wallace'), - ('Kunstmuseum Basel'), - ('Rolf Fjelde'), - ('Jerri Corgiat'), - ('John Dalton'), - ('Richard Matheson'), - ('Marjorie Hudson'), - ('M. Nelson Chunder'), - ('Karanjit Siyan'), - ('Chris Hare'), - ('Wendell Odom'), - ('Frommer'), - ('Mike Lupica'), - ('Ilya Ilf'), - ('Eugene Petrov'), - ('Evgenii Petrov'), - ('Edward Bunker'), - ('Yaakov Shabtai'), - ('Ricarda Junge'), - ('Bo Hampton'), - ('Mark Kneece'), - ('Andrew H. Vachss'), - ('Catherine Millet'), - ('Adriana Hunter'), - ('Albert Schwarzenbach'), - ('Anne Fadiman'), - ('Christopher Frayling'), - ('Edgar Allan Poe'), - ('Groff Conklin'), - ('Irv Docktor'), - ('Calvin Tomkins'), - ('Betty Edwards'), - ('Bernard P. Chamberlain'), - ('Lola Lemire Tostevin'), - ('Nigel Tranter'), - ('Gordon R. Dickson'), - ('Joy Wilt Berry'), - ('Laurence Shames'), - ('Michele Dunaway'), - ('Merline Lovelace'), - ('Heather Macallister'), - ('Debra Dixon'), - ('Debra Carroll'), - ('Mary Kirk'), - ('Joey Light'), - ('Kylie Brant'), - ('Laura Gordon'), - ('Emma Goldrick'), - ('Goldrick'), - ('Tracy Hughes'), - ('Laurel Collins'), - ('Diana Hall'), - ('Kara Lennox'), - ('Rita Herron'), - ('Steve Martini'), - ('Nina Beaumont'), - ('Lisa Bingham'), - ('Eve Gladstone'), - ('Barbara Boswell'), - ('Coughlin'), - ('Kathleen Eagle'), - ('Andrea Edwards'), - ('Mindy Neff'), - ('Rita Clay Estrada'), - ('Brashear'), - ('Dawson'), - ('Joyce Carol Oates'), - ('Darin Strauss'), - ('Richard Bernstein'), - ('Thomas Hine'), - ('Jessica Hagedorn'), - ('Philip K. Dike'), - ('Gwen Lee'), - ('Doris Elaine Sauter'), - ('Tim Po'), - ('Bernard E. Rollin'), - ('Helen Stauffer Winter'), - ('Maeve Brennan'), - ('Mary D. Robertson'), - ('Cherrie Moraga'), - ('Andrea Carlisle'), - ('Mary Narkiewicz'), - ('Madonna Kolbenschlag'), - ('Mimi Luebbermann'), - ('Arlene S. Skolnick'), - ('Jerome H. Skolnick'), - ('Bella Abzug'), - ('Susan Brownmiller'), - ('Anne Wilson Schaef'), - ('Charles M. Tatum'), - ('Nicole Blackman'), - ('Robin Bernstien'), - ('Seth Clark Silberman'), - ('Ruth Baetz'), - ('Amanda Davis'), - ('Jyl Lynn Felman'), - ('Cynthia Kadohata'), - ('Michael E. Gerber'), - ('John Eldredge'), - ('Padriac Colum'), - ('Eileen Campbell'), - ('Thomas R. P. Mielke'), - ('Luciano De Crescenzo'), - ('Linde Birk'), - ('Morton Rhue'), - ('A. A. Attanasio'), - ('Patricia Hedges'), - ('Patricia H. Hedges'), - ('John Andrew Storey'), - ('William Barrett'), - ('Amber K'), - ('Mary Daheim'), - ('Holly-Jane Rahlens'), - ('Michael Dibdin'), - ('Anthony Burgess'), - ('Fyodor Dostoevsky'), - ('Constance Garnett'), - ('Joseph Frank'), - ('James Ryan'), - ('Chico Buarque'), - ('Alison Entrekin'), - ('Gregory Rabassa'), - ('Elizabeth Fishel'), - ('Janette Turner Hospital'), - ('Miguel Hernandez'), - ('Jody Shields'), - ('Alex Capus'), - ('Stephen M. Wylen'), - ('Bernhard W. Anderson'), - ('Katheryn Pfisterer Darr'), - ('Shmuley Boteach'), - ('Herman Melville'), - ('Tom Quirk'), - ('James Preston Girard'), - ('Michael Horowitz'), - ('Vicki Marshall'), - ('Sydne Heather Schinkel'), - ('Thomas Charles Schinkel'), - ('Melanie Rawn'), - ('Jennifer Roberson'), - ('Kate Elliott'), - ('Orhan Pamuk'), - ('Erdag Goknar'), - ('Goldberry Long'), - ('Kathleen Norris'), - ('Ashley Warlick'), - ('Gordon S. Haight'), - ('Dinah Birch'), - ('Kitty Ray'), - ('Geraldine Brooks'), - ('P. C. Cast'), - ('KARLA /LANSDOWNE/SAVE HOCKER'), - ('Judith A. Lansdowne'), - ('H'), - ('Sarah Gallick'), - ('Maggie Haberman'), - ('Jeane MacIntosh'), - ('P. B. Ryan'), - ('Maddy Hunter'), - ('Sherrilyn Kenyon'), - ('Jill Churchill'), - ('Jenna McKnight'), - ('Katie MacAlister'), - ('Evelyn Vaughn'), - ('T.R. Reid'), - ('Kinley MacGregor'), - ('Julia Quinn'), - ('Stephen A. Bly'), - ('Warren Dunford'), - ('Albert Murray'), - ('Elizabeth McCracken'), - ('Nadine Gordimer'), - ('E. M. Forster'), - ('John Hersey'), - ('Kate Flint'), - ('Charlotte Brontë'), - ('Michael Mason'), - ('Thomas L. Long'), - ('Theresa Nelson'), - ('William Taylor'), - ('Krandall Kraus'), - ('Barrett Tillman'), - ('Joyce M. Roche'), - ('Marie Rodriguez'), - ('Phyllis Schneider'), - ('Rita Ciresi'), - ('Leonard B. Scott'), - ('Patricia Nell Warren'), - ('Anthony Bonner'), - ('Jess Stearn'), - ('Jean-Christophe Rufin'), - ('Torey Hayden'), - ('Arthur Conan Doyle'), - ('Samuel R. Delany'), - ('Stephen D. Allen'), - ('Bob Davis'), - ('Shirley'), - ('Alesia Holliday'), - ('Beatles'), - ('Richard N. Patterson'), - ('Richard L. Polese'), - ('Peace Pilgrim'), - ('Barbara Savage'), - ('Loren Eiseley'), - ('Gale E. Christianson'), - ('James Bannon'), - ('James O''Reilly'), - ('Tara Austen Weaver'), - ('Anne Calcagno'), - ('Lesley Downer'), - ('David Gates'), - ('Thomas Scoville'), - ('W. Somerset Maugham'), - ('Somerset Maugham'), - ('T.Coraghessan Boyle'), - ('Nancy Alberts'), - ('Karen Jerome'), - ('Valerie Carnes'), - ('Bruno Maddox'), - ('Sandra Magsamen'), - ('Robert Claiborne'), - ('Hugh Prather'), - ('Gerald Jampolsky'), - ('Alice Randall'), - ('Thomas Tryon'), - ('L.P. Hartley'), - ('Peter Quennell'), - ('Gertrud Muel Nelson'), - ('Michael Kunze'), - ('John G. Fuller'), - ('Charles Barry Townsend'), - ('Barbara Hoberman Levine'), - ('Jim Dreaver'), - ('Barbara Graham'), - ('Victoria Roberts'), - ('Kevin Leman'), - ('Lydia Adamson'), - ('Margot Adler'), - ('Terence Hanbury White'), - ('Katherine Mosby'), - ('Philippe Djian'), - ('Kara Dalkey'), - ('Kirsty Gunn'), - ('Edward Gorey'), - ('Mick Middles'), - ('Melvyn Bragg'), - ('Thomas Mann'), - ('John E. Woods'), - ('Michael Frayn'), - ('Steve Jackson'), - ('Ian Livingstone'), - ('Will Randall'), - ('James Hawes'), - ('William Makepeace Thackeray'), - ('Thomas De Quincey'), - ('Alan Russell'), - ('Douglas Lindsay'), - ('Kathryn Wesley'), - ('Richard L. Zettler'), - ('Lee Horne'), - ('Alexandra Fuller'), - ('Bill Cleaver'), - ('Vera Cleaver'), - ('Christopher Wright'), - ('Linda Bolton'), - ('Dana Facaros'), - ('Thomas Parsons'), - ('Lily Tuck'), - ('Harold Tarrant'), - ('Hugh Tredennic'), - ('Frans Haacken'), - ('Eliyahu M. Goldratt'), - ('Jeff Cox'), - ('Bettine Von Arnim'), - ('Till Raether'), - ('Erich Kästner'), - ('Jay Parini'), - ('Alix Kates Shulman'), - ('Emily Carmichael'), - ('Phyllis A. Whitney'), - ('Michael Wallner'), - ('Corina Tettinger'), - ('David Congalton'), - ('Mary Alice Monroe'), - ('Donald E. Knuth'), - ('Graham Salisbury'), - ('Martine Bates'), - ('Sarah Masters Buckey'), - ('Robert M. Pirsig'), - ('Jack Henry Abbott'), - ('Michio Kaku'), - ('Robert O''Keefe'), - ('Zolar'), - ('Elizabeth Clare Prophet'), - ('Patricia R. Spadaro'), - ('Lewis Richmond'), - ('Eckhart Tolle'), - ('Erich Von Daniken'), - ('Genevieve L. Paulson'), - ('Jane Hope'), - ('Borin Van Loon'), - ('Rev Ray T. Malbrough'), - ('Israel Regardie'), - ('Melvin Morse'), - ('Father Oscar Lukefahr CM'), - ('R. J. Stewart'), - ('Brother Lawrence'), - ('Phyllis Galde'), - ('Jan Fries'), - ('Denise Linn'), - ('Jack Hamm'), - ('Kate Horsley'), - ('Gary Quinn'), - ('Jonathan Dee'), - ('Marian Green'), - ('Horik Svensson'), - ('Llewellyn'), - ('Donald Michael Kraig'), - ('Andrew McGahan'), - ('Kay Redfield Jamison'), - ('Guy Damian-Knight'), - ('Edward Shorter'), - ('Elliot Perlman'), - ('Jim Schutze'), - ('Michael Dobbs'), - ('Geoffrey Chaucer - Edited By A. C. Cawley'), - ('Minfong Ho'), - ('Nancy Madore'), - ('Ursula K Le Guin'), - ('Virgil'), - ('David West'), - ('Jean Rhys'), - ('Whitley Strieber'), - ('Karen Harper'), - ('Amy R. Kaplan'), - ('Michael Keller'), - ('Jimmy Thapa'), - ('Raymond Buckland'), - ('Anna Maxted'), - ('Jon Hassler'), - ('Shannon Drake'), - ('Robert Kornwise'), - ('Linda Greenlaw'), - ('Sheldon Vanauken'), - ('Susan Polis Schutz'), - ('Stephen Schutz'), - ('Braun Lilian Jackson'), - ('Alison Fraser'), - ('Robyn Donald'), - ('N. Richard Nash'), - ('Wayne W Dyer'), - ('Ford Madox Ford'), - ('Brandon'), - ('Jay Brandon'), - ('Will Hobbs'), - ('Witi Tame Ihimaera'), - ('Luis Sepúlveda'), - ('François Maspéro'), - ('Landoll Inc.'), - ('Alexandra Stoddard'), - ('Marc Romano'), - ('Margot Anand'), - ('Scholastic Books'), - ('Ellen Miles'), - ('Ben M. Baglio'), - ('Melinda Blanchard'), - ('Robert Blanchard'), - ('Anthony Gottlieb'), - ('Richard Littlejohn'), - ('Kimeron N. Hardin'), - ('Marc-Edouard Nabe'), - ('John Lantigua'), - ('Ralph Waldo Emerson'), - ('Robert Slater'), - ('John Gardner'), - ('Fred Vargas'), - ('Irene B. Brand'), - ('Stanley Appelbaum'), - ('Adam Barrow'), - ('Andrews'), - ('Andrew Calcutt'), - ('Alex Flinn'), - ('Ian Small'), - ('Michael Bernstein'), - ('Scott Robertson'), - ('Nick Danziger'), - ('Mary Kay Ash'), - ('Marguerite Kelly'), - ('Elia Parsons'), - ('Rebecca Hirsh'), - ('Judith Zimmer'), - ('Durell Godfrey'), - ('Patricia A. McKillip'), - ('Heinrich Boll'), - ('Christel Rost'), - ('Damien Simonis'), - ('Daniel Robinson'), - ('Tony Wheeler'), - ('Cyril Collard'), - ('Brigitte Chabrol'), - ('Valérie Malfoy'), - ('Jean-Noël Schifano'), - ('Magnan'), - ('Eudora Welty'), - ('Vladimir Radunsky'), - ('Bagram Ibatoulline'), - ('Shelley Moore Thomas'), - ('Jennifer Plecas'), - ('Chris Hedges'), - ('Julien Gracq'), - ('Jerome Klapka Jerome'), - ('Fédor Dostoïevski'), - ('Alain Besançon'), - ('Albert Mousset'), - ('Montherlant'), - ('Pam Frankau'), - ('Richard Firstman'), - ('Jamie Talan'), - ('Harold Robbins'), - ('Sam A. Donaldson Jr.'), - ('Christine McGuire'), - ('Carla Norton'), - ('Allan Eckert'), - ('Jack Womack'), - ('Pierre Pelot'), - ('Anne Damour'), - ('Stéfan Zweig'), - ('Dominique Autrand'), - ('Clifford D. Simak'), - ('Jerome K. Jerome'), - ('Georges Simenon'), - ('Rose-Marie Makino-Fayolle'), - ('L. Sprague De Camp'), - ('Lin Carter'), - ('August William Derleth'), - ('Sr. Mary Jean Dorcy'), - ('J.N. Williamson'), - ('Gary Null'), - ('Sharan Newman'), - ('A E Van Vogt'), - ('Brady'), - ('Earl B. McElfresh'), - ('Adam Braver'), - ('Piers Paul Read'), - ('Sydney Omarr'), - ('Carl Payne Tobey'), - ('Leonard Barden'), - ('Charles H. Goren'), - ('Carole Bellacera'), - ('Philipp Vandenberg'), - ('Jeffery Hudson'), - ('Birgit Schönberger'), - ('Zoë Jenny'), - ('A. L. Haskett'), - ('Mary Jane Maffini'), - ('Judith Arnold'), - ('Barbara Keiler'), - ('Christopher Paul Curtis'), - ('Karin Fossum'), - ('Joseph Garcia'), - ('Burton White'), - ('Yitta Halberstam'), - ('Judith Leventhal'), - ('Bernie S. Siegel'), - ('Matt Ridley'), - ('Thomas K. Landauer'), - ('Syed Hussein Alatas'), - ('Jennifer Worick'), - ('Kerry Colburn'), - ('Anne Higgins'), - ('Millie Stamm'), - ('Susan Ostrov Weisser'), - ('Millie Criswell'), - ('Heather McNamara'), - ('Lois Keith'), - ('E.D. Hirsch Jr.'), - ('Mark Fuhrman'), - ('N Collins'), - ('Alan Titchmarsh'), - ('Milligan'), - ('Stephen Fry'), - ('Jonathan Miller'), - ('Dawna Walter'), - ('Mark Franks'), - ('Betty Bethards'), - ('Jaclyn Grace'), - ('James V. Hart'), - ('Alan Aldrich'), - ('D H Lawrence'), - ('Fiona Walker'), - ('Lance Armstrong'), - ('Sally Jenkins'), - ('Pam Young'), - ('Peggy Jones'), - ('Sena Jeter Naslund'), - ('Roy Blount Jr.'), - ('Edward Abbey'), - ('Redmond O''Hanlon'), - ('Evan Harris'), - ('Shang Chun Shu Cun'), - ('Matthew Bunson'), - ('Page Bryant'), - ('Dennis Wholey'), - ('Jerome Charyn'), - ('Barry Sears'), - ('Bill Lawren'), - ('Christian De La Huerta'), - ('Matthew Fox'), - ('Jim Morrison'), - ('Christine Wiltz'), - ('Michael Thomas Ford'), - ('Tommy Tune'), - ('Stuart Smalley'), - ('Martin'), - ('Ken Sprague'), - ('Elan Golomb'), - ('Alice A. Bailey'), - ('Susan Forward'), - ('Jim Davis'), - ('Anne Fine'), - ('Jean Booker'), - ('Alice Mary Connally Fisk'), - ('Michael Pollan'), - ('Phyllis Richman'), - ('Valerie Wolzien'), - ('Bobbie Hinman'), - ('Millie Snyder'), - ('Beverly West'), - ('Nancy Peske'), - ('Jean Ure'), - ('Karin Yapalater'), - ('Nancy Star'), - ('JoAnna Carl'), - ('Laura Van Wormer'), - ('Ginna Gray'), - ('Helen R Myers'), - ('Maira Kalman'), - ('Tibor Kalman'), - ('Steven Heller'), - ('Frank O. Braynard'), - ('Todd Strasser'), - ('Pamela E. Apkarian-Russell'), - ('Michael Wallis'), - ('Suzanne Wallis'), - ('Alex Kotlowitz'), - ('Michael Savage'), - ('Candice Bergen'), - ('George Mair'), - ('G. Garfield Crimmins'), - ('Ann Linnea'), - ('Barbara Sher'), - ('Barbara Smith'), - ('Fritz Eichenberg'), - ('Phoebe McPhee'), - ('Stephen Fuentes'), - ('Melanie Munnell'), - ('Wilson Rawls'), - ('Margaret Peterson Haddix'), - ('Willo Davis Roberts'), - ('Barry Denenberg'), - ('Gary A. Lippincott'), - ('Tom Brokaw'), - ('J. Lawler'), - ('Fred Mustard Stewart'), - ('Phil McGraw'), - ('C. M. Woodhouse'), - ('Rudolfo Anaya'), - ('Anne Barone'), - ('V. C. Andrews'), - ('John Forbes'), - ('Kay Allenbaugh'), - ('Sonja Massie'), - ('Susan Campbell Bartoletti'), - ('Jeffrey D. Greene'), - ('Stuart Friedman'), - ('Joe Kraynak'), - ('Cassandra King'), - ('Jodi Picoult'), - ('Stephen L. Carter'), - ('Anchee Min'), - ('Jillian Medoff'), - ('Lisa Gornick'), - ('Betsy Carter'), - ('Kyle Mills'), - ('Martin J. Smith'), - ('Thomas French'), - ('Nancy Taylor Rosenberg'), - ('Shelby Yastrow'), - ('Stanley Pottinger'), - ('Amanda Ashley'), - ('David Wiltse'), - ('Sonia Icilyn'), - ('McCoy Judi'), - ('Charlaine Harris'), - ('Suzanne Forster'), - ('Alton Gansky'), - ('Philip Kerr'), - ('Stef Ann Holm'), - ('Julian Symons'), - ('Better Homes And Gardens Books'), - ('Linda Hallam'), - ('Swami Prabhavananda'), - ('Frederick Manchester'), - ('G & R Publishing'), - ('Claire Folkard'), - ('Abby Kanter'), - ('Raymond Pierson'), - ('Phil Gross'), - ('Mike Gross'), - ('Nilo Cruz'), - ('Reed Arvin'), - ('David Rosenfelt'), - ('Giles Blunt'), - ('Stephen Frey'), - ('Austin Clarke'), - ('Sue Henry'), - ('James W. Hall'), - ('Virginia Lanier'), - ('James Grippando'), - ('Stephen J. Cannell'), - ('Stephen Cannell'), - ('Robin Cook'), - ('Shane And Sheridan'), - (' Jim. Screenplay Based On The B'), - ('Hugh Cook'), - ('Alien Stevens'), - ('Jim DeFelice'), - ('John J. Nance'), - ('Matthew Reilly'), - ('William Kent Krueger'), - ('Michael Macdonald Mooney'), - ('Allen Drury'), - ('Michael Darkow'), - ('Maria Elena Morgan'), - ('Murray Bail'), - ('Jim Karas'), - ('Gay Hendricks'), - ('Marilyn Vos Savant'), - ('Curl'), - ('Martin V. Riccardo'), - ('Jana Marcus'), - ('Katherine Ramsland'), - ('Ruth Maran'), - ('Gail Tsukiyama'), - ('Jeanne Kalogridis'), - ('Andrew X. Pham'), - ('Catharina Day'), - ('Malika Oufkir'), - ('Michele Fitoussi'), - ('Ros Schwartz'), - ('Mckay Jenkins'), - ('Patricia Wynn'), - ('William Cohen'), - ('Theresa Foy DiGeronimo'), - ('Michael Alexander'), - ('Kjersti Hoff Baez'), - ('Ray Grigg'), - ('Peter Albano'), - ('Rod R. Butterworth'), - ('Mickey Flodin'), - ('Andrea Boeshaar'), - ('Jane Orcutt'), - ('Ashley McConnell'), - ('Margaret; Williams'), - (' Michael; Hickman'), - (' Tracy; Copyr'), - ('R.A. Salvatore'), - ('Lucretius'), - ('Ronald E. Latham'), - ('John Godwin'), - ('Horace'), - ('W. G. Shepherd'), - ('Peter Mansfield'), - ('Paul Halpern'), - ('James Lowder'), - ('John Keegan'), - ('G. Lee Bowie'), - ('Robert C. Solomon'), - ('Meredith W. Michael'), - ('Bill Pogue'), - ('Rachel Bell'), - ('Howard Peiper'), - ('David Norbrook'), - ('H. R. Woudhuysen'), - ('Alice Notley'), - ('L. E. Modesitt Jr.'), - ('Rosemary Edmonds'), - ('Gerard Del Re'), - ('Patricia Del Re'), - ('Taisha Abelar'), - ('Carlos Casteneda'), - ('Michele Jamal'), - ('Duong Thu Huong'), - ('Phan Huy Duong'), - ('Nina McPherson'), - ('Emrys Jones'), - ('Michael Tanner'), - ('John T. Lawrence'), - ('Frederick Busch'), - ('Ian Kellam'), - ('Nien Cheng'), - ('Annie Dillard'), - ('Ann Hood'), - ('P J O''Rourke'), - ('Antonio Skarmeta'), - ('Katherine Silver'), - ('ERNEST HEMINGWAY'), - ('Pat Barker'), - ('Martina Devlin'), - ('Sandra Felton'), - ('Rose Marie Nichols McGee'), - ('Maggie Stuckey'), - ('Linda Yang'), - ('Alice Borchardt'), - ('Marcelle Karp'), - ('Debbie Stoller'), - ('Inga Muscio'), - ('Caroline G. Mercer'), - ('Kylie Adams'), - ('Sherryl Woods'), - ('Christie Ridgway'), - ('Patricia Cabot'), - ('Donna Gillespie'), - ('Beverly Brandt'), - ('Lori Schiller'), - ('Amanda Bennett'), - ('John Milton'), - ('Christopher Ricks'), - ('Upton Sinclair'), - ('Morris Dickstein'), - ('Matthew J. Bruccoli'), - ('Edmund Wilson'), - ('Harold M. Silverman'), - ('Henry Blackaby'), - ('Richard Blackaby'), - ('Silver RavenWolf'), - ('Merlin Stone'), - ('Matthew Ward'), - ('Christopher Hammond'), - ('John Hawkes'), - ('Lindsay Faith Rech'), - ('Steffie Hall'), - ('Elizabeth Young'), - ('Paul Rogat Loeb'), - ('Alex Kava'), - ('Alan Lightman'), - ('Josephine Tey'), - ('Todd Komarnicki'), - ('Tina Wainscott'), - ('Stephen Wright'), - ('Joanne M. Dochterman PhD RN FAAN'), - ('Gloria M. Bulec'), - ('Elizabeth Jolley'), - ('D. C. Brod'), - ('John R. Riggs'), - ('Gerald Petievich'), - ('Charlotte MacLeod'), - ('Jonathan Havard'), - ('Neil Shulman'), - ('Nei Shulman'), - ('Peter Bebrandt'), - ('Joseph Wambaugh'), - ('Ed Greenwood'), - ('Ursula LeGuin'), - ('Richard Hescox'), - ('Kirk Douglas'), - ('Glenn Dakin'), - ('Jeffrey Robinson'), - ('Pierre Barbéris'), - ('Richard Bohringer'), - ('Andreï Kourkov'), - ('Nathalie Amargier'), - ('Christine Angot'), - ('Zoé Valdés'), - ('Djian'), - ('W & M Hoffer'), - ('Vitaliano Brancati'), - ('Patrick Creagh'), - ('Patrick Suskind'), - ('Susan Hubbard'), - ('Thomas Noguchi'), - ('A. Lyons'), - ('Andrea Camilleri'), - ('Stephen Sartarelli'), - ('Patrick Mccabe'), - ('J.P. Carasso'), - ('Alan Vanneman'), - ('Jean Hager'), - ('Odo Hirsch'), - ('Glen Cook'), - ('Jonathan Barry'), - ('Jim Silke'), - ('Rebecca Bradley'), - ('Terry McGarry'), - ('Mindy L. Klasky'), - ('Nancy McKenzie'), - ('Karin Lowachee'), - ('K.W. Jeter'), - ('Vivian Schilling'), - ('W. Steven Brown'), - ('Sharon Schulze'), - ('Stanley Smith'), - ('Tom Bullimore'), - ('Derrick Niederman'), - ('Hy C'), - ('Elizabeth McGregor'), - ('Ron Koertge'), - ('Miguelanxo Prado'), - ('Margaret Sayers Pe'), - ('David Calder'), - ('Stieg Retlin'), - ('Pam Munoz Ryan'), - ('Gerald L. Holmes'), - ('Tasha Tudor'), - ('Dean Hughes'), - ('Janet Quin-Harkin'), - ('Jane Harrington'), - ('Joan Aiken'), - ('Pat Marriott'), - ('Robert C. O''Brien'), - ('Zena Bernstein'), - ('Nick West'), - ('Colleen O''Shaughnessy McKenna'), - ('Katherine Coville'), - ('James Fenimore Cooper'), - ('Irene Hunt'), - ('Felice Holman'), - ('Paul O. Zelinsky'), - ('Lisa Norby'), - ('Fernado Fernandez'), - ('Rick North'), - ('Mildred D. Taylor'), - ('Robin Lawrie'), - ('Leo And Diane Dillon'), - ('Katherine Neville'), - ('Monica Hughes'), - ('Cameron Dokey'), - ('Ellen Reymes'), - ('Deborah Gregory'), - ('Eliza Willard'), - ('Dave McKean'), - ('Andrew Matthews'), - ('Girling'), - ('Otto M. Frank'), - ('Mirjam Pressler'), - ('Susan Mas'), - ('Stedman Graham'), - ('Michel Houellebecq'), - ('Frank Wynne'), - ('Deborah Morgan'), - ('Daniel W. Patterson'), - ('Jean Ritchie'), - ('Matt Groening'), - ('Josie Lloyd'), - ('Emlyn Rees'), - ('Germaine Greer'), - ('Henry Root'), - ('Paul M. Angle'), - ('Florence Scovel-Shinn'), - ('Terry Alford'), - ('Diana Culbertson'), - ('Tim Wynne-Jones'), - ('Brian Doyle'), - ('Karleen Bradford'), - ('Martha Brooks'), - ('Diane Schoemperlen'), - ('Christina Schwarz'), - ('Molly Jong-Fast'), - ('Shirley Jackson'), - ('Rosemary Sutcliff'), - ('Julie Reece Deaver'), - ('Marilyn Butler'), - ('Andre Norton'), - ('Jacqueline Park'), - ('Lindsey Davis'), - ('Peter Tremayne'), - ('Anne Eliot Crompton'), - ('Marcus Stone'), - ('John Bowen'), - ('Jules Watson'), - ('Harris'), - ('Angela Doherty'), - ('Nicholas Guild'), - ('Kim Lewis'), - ('Frank McDonald'), - ('Dell Shannon'), - ('Rachel Billington'), - ('Iain Finlay'), - ('B. Wilson'), - ('Ashland Price'), - ('Rosemary Edghill'), - ('Emma Blair'), - ('Matthew Kneale'), - ('Marian Thurm'), - ('John Peterman'), - ('Cynthia Borris'), - ('Martin Waddell'), - ('Patrick Benson'), - ('Ole Risom'), - ('Sandra Boynton'), - ('P.D. Eastman'), - ('David Icke'), - ('Rex Gibson'), - ('N. Kantaris'), - ('P.R.M. Oliver'), - ('Dave Stern'), - ('Marge Piercy'), - ('Craig Nova'), - ('Mark Le Fanu'), - ('Ulrich Holbein'), - ('Mark Childress'), - ('Rudolf Hermstein'), - ('Gemma Alexander'), - ('Patricia Lewin'), - ('Marti Leimbach'), - ('Romain Gary (Émile Ajar)'), - ('Donald J. Sobol'), - ('Ted Enik'), - ('Sushil Jajodia'), - ('V. S. Subrahmanian'), - ('Steve Cunningham'), - ('Judson Rosebush'), - ('Donnie O''Quinn'), - ('Stephen Cosgrove'), - ('Jesse Liberty'), - ('Mark Cashman'), - ('Christa Krüger'), - ('Doris Dörrie'), - ('Fanny Morweiser'), - ('Colum McCann'), - ('Donna W. Cross'), - ('Wolfgang Neuhaus'), - ('Jan Mehlum'), - ('Jessica Andersen'), - ('Leonard Wolf'), - ('A. N. Roquelaure'), - ('Barbara Hambly'), - ('Prosper Mérimée'), - ('Dietrich Schwanitz'), - ('Cora Stephan'), - ('Gregor Sander'), - ('André Gide'), - ('Raimund Theis'), - ('Christine Stemmermann'), - ('Pierre Joffroy'), - ('Ulrich Kunzmann'), - ('Stefan Zweig'), - ('Friederike Mayröcker'), - ('Alejo Carpentier'), - ('Anneliese Botond'), - ('Willy Breinholst'), - ('Alan Durband'), - ('Jean-Jacques Sempe'), - ('Deborah Moggach'), - ('Shulamit Lapid'), - ('Christopher Dolley'), - ('Elinor Lipman'), - ('Lucius Shepard'), - ('J. K. Potter'), - ('Robert Kelley'), - ('Walter Pruncel'), - ('Klaus Müller'), - ('Roberto Calasso'), - ('Peter Fitzsimons'), - ('Zecharia Sitchin'), - ('Penthouse International'), - ('Margaret Weis And Tracy Hickman'), - ('Louise Voss'), - ('Meredith Ann Pierce'), - ('Kathryn M. Drennan'), - ('W.S. Merwin'), - ('Phil Hirsch'), - ('Brian Buniak'), - ('Deborah Scott'), - ('David Poyer'), - ('Barbara Seuling'), - ('Rebecca O''Connell'), - ('Hilary Jenkins'), - ('Glen Grant'), - ('Harry Crews'), - ('Mike Miller'), - ('Jan Brett'), - ('Jerry W. Ward'), - ('Tenaya Darlington'), - ('Douglas Pagels'), - ('Patricia Wayant'), - ('Gary D. Chapman'), - ('Larry Burkett'), - ('The Editors Of People Magazine'), - ('The Editors Of Peop'), - ('The Editors Of Entertainment Weekly'), - ('The Editors Of'), - ('Joe Stahlkuppe'), - ('Stormie Omartian'), - ('Rita Dove'), - ('Jewel'), - ('Nikki Giovanni'), - ('Tony Medina'), - ('Louis Reyes Rivera'), - ('Sonia Sanchez'), - ('David Lehman'), - ('Diana Barron'), - ('Kirby Record'), - ('Steven Ferry'), - ('Tanya Petrovna'), - ('Jean Krueger'), - ('Joel Brouwer'), - ('Donald W. Hayward'), - ('Jeannette Eyerly'), - ('Bill Buchanan'), - ('Kandy Radzinski'), - ('Jim Shepard'), - ('George C. Williams'), - ('William Shakespeare'), - ('A. R. Braunmuller'), - ('Stephen Or'), - ('Joel Spring'), - ('Rene Chartrand'), - ('Patrice Courcelle'), - ('Bill Younghusband'), - ('Philip Haythornthwaite'), - ('Bryan Fosten'), - ('Richard Holmes'), - ('George Guidall'), - ('Dave Marinaccio'), - ('Ralph Steadman'), - ('Allison Pollack Alexander'), - ('Jill Henry'), - ('Nancy Block'), - ('Janet Leigh'), - ('Rachelle Nelson'), - ('Charles R. Swindoll'), - ('Steve Shagan'), - ('Alex Beam'), - ('Chris Kenry'), - ('G.G. Marquez'), - ('Charlotte Bingham'), - ('Don Peppers'), - ('Martha Rogers'), - ('Michael Beres'), - ('Kay'), - ('Mary Kay Simmons'), - ('Kathryn Lynn Davis'), - ('P D James'), - ('Marsha Boulton'), - ('Bill H. Gates'), - ('Bryan Cholfin'), - ('Edith Pargeter'), - ('Katharine Kerr'), - ('Hugh Sebag-Montefiore'), - ('Michael Lee West'), - ('Lurlene McDaniel'), - ('Richard Evans'), - ('Rosie Rushton'), - ('Dermot Bolger'), - ('Pamela Stephenson'), - ('Ingrid Weaver'), - ('Richard N. Bolles'), - ('Gwen Gotsch'), - ('Judy Torgus'), - ('William Sears'), - ('Martha Sears'), - ('Vicki Iovine'), - ('T. Berry Brazelton'), - ('American College Of Obstetricians And Gynecologist'), - ('Marvin S. Eiger'), - ('Sally Wendkos Olds'), - ('Wendy Wray'), - ('Roe'), - ('Leslie Dunkling'), - ('Robin Norwood'), - ('Christina Baker Kline'), - ('Gale Pryor'), - ('Kate White'), - ('Jan Guillou'), - ('Lieselotte Kolanoske'), - ('Michel Faber'), - ('Shelomoh Di-Nur'), - ('Philip Simpson'), - ('Tony Earley'), - ('J. P. Donleavy'), - ('James Patrick Donleavy'), - ('Elliot Banfi'), - ('Stuart David'), - ('Gay Courter'), - ('James R. Kincaid'), - ('Beryl Bainbridge'), - ('Kirsten Bakis'), - ('Bellow'), - ('David Almond'), - ('Chinua Achebe'), - ('Cheryl Ann Costa'), - ('Sage'), - ('Manjusha Pawagi'), - ('Leanne Franson'), - ('Thomas E. O''Hara'), - ('Stephen Sondheim'), - ('James Lapine'), - ('Jim Currie'), - ('Lauren Slater'), - ('John M. Gottman'), - ('Joan DeClaire'), - ('Frederick Lenz'), - ('Scott S. Smith'), - ('Erika Lopez'), - ('Cynthia MacGregor'), - ('Gary Mechler'), - ('Steven P. Shelov M.D.'), - ('Vicki Lansky'), - ('Jack Lindstrom'), - ('Barry Reed'), - ('Thomas Swan'), - ('Martin Clark'), - ('P. J. Tracy'), - ('Tim Dolin'), - ('Harley Hahn'), - ('Cindy West'), - ('Mateu'), - ('Justine Fontes'), - ('Omar Rayyan'), - ('Alice Alfonsi'), - ('Bill Wallace'), - ('Carol Wallace'), - ('Jean Van Leeuwen'), - ('Adam Rapp'), - ('Nicole Luiken'), - ('Nancy Munger'), - ('William Heffernan'), - ('Norman Kelley'), - ('Ruth Birmingham'), - ('Paullina Simons'), - ('Miriam Therese Winter'), - ('Sid Kirchheimer'), - ('Tom Magliozzi'), - ('Greg Proops'), - ('Richard Lederer'), - ('Richard Howard'), - ('Henry W. Stine'), - ('B. B. Jordan'), - ('Leora Krygier'), - ('David Thompson'), - ('Diane Hoh'), - ('Hayden Mead'), - ('Kevin Jackson'), - ('Tim Lebbon'), - ('Steven Feinberg'), - ('Garfield Reeves-Stevens'), - ('Richard L. McGuire'), - ('Robert Poe'), - ('Charles Lamb'), - ('Paul B. Thompson'), - ('Tonya R. Carter'), - ('Robert S. Kane'), - ('Helen Keller'), - ('D. H. Lawrence'), - ('Elise Juska'), - ('MaranGraphics'), - ('G. K. Chesterton'), - ('Michael Foreman'), - ('Robert Van De Castle'), - ('Alan M. Dershowitz'), - ('Mikal Gilmore'), - ('Thomas Moore'), - ('Kathy Cronkite'), - ('Gertrude Stein'), - ('M. C. Hargreaves'), - ('Eric Hansen'), - ('Harpo Marx'), - ('Rowland Barber'), - ('Simon Louvish'), - ('Arturo Pérez-Reverte'), - ('Sonia Soto'), - ('Margaret Costa'), - ('Aylmer Maude'), - ('E.B. Greenwo'), - ('Miriam Toews'), - ('Patrick Taylor'), - ('Fred Stenson'), - ('Irene Gut Opdyke'), - ('Jennifer Armstrong'), - ('Ahdaf Soueif'), - ('Aleksandr Solzhenitsyn'), - ('Catherine Simmons Niven'), - ('Shyam Selvadurai'), - ('John McGahern'), - ('D. M. Thomas'), - ('Clyde Edgerton'), - ('Grace MacCarone'), - ('Kris Lowe'), - ('Grace Catalano'), - ('Jan Berenson'), - ('Rosalind Noonan'), - ('Suzy Becker'), - ('Gertrude Warner'), - ('Jimmy Buffett'), - ('Ellie Kay'), - ('Maud Hart Lovelace'), - ('Lois Lenski'), - ('Jaime O''neill'), - ('Rick Carroll'), - ('Robert L. Clifton'), - ('Alan M. Dahms'), - ('Alan Furst'), - ('Johnny Cash'), - ('Jonny Cash'), - ('Patrick Carr'), - ('Nicholas Gage'), - ('Bette Bao Lord'), - ('Blue Balliett'), - ('Tom Raabe'), - ('Jack Schaefer'), - ('Donna Kae Nelson'), - ('Debra Kang Dean'), - ('Colette Inez'), - ('Ross Talarico'), - ('Merle Kessler'), - ('William Molnar'), - ('June Callwood'), - ('Daniel Wallace'), - ('Robert Bonazzi'), - ('John Howard Griffin'), - ('John Howard Gri'), - ('Terri Blackstock'), - ('Beverly Lewis'), - ('Pauline Nestor'), - ('Alma Bond'), - ('Alma H. Bond'), - ('Jose Eugenio Soares'), - ('Maud Ellmann'), - ('Scott Gardiner'), - ('John Harvey'), - ('Rochelle Majer Krich'), - ('Alma Marceau'), - ('Heinz Zwack'), - ('Larry Berger'), - ('Dahlia Lithwick'), - ('Indu Sundaresan'), - ('E. L. Doctorow'), - ('Donald E. Westlake'), - ('Chet Williamson'), - ('Peter Robinson'), - ('Robert W. Walker'), - ('Earlene Fowler'), - ('Karen Kijewski'), - ('Lynda La Plante'), - ('Mark T. Sullivan'), - ('Susan Wittig Albert'), - ('Stuart M. Kaminsky'), - ('Linda Davies'), - ('Sandra West Prowell'), - ('Deborah Crombie'), - ('Marianne Wesson'), - ('Jeremiah Healy'), - ('J. F. Freedman'), - ('Kate Wilhelm'), - ('Wolf Haas'), - ('Walter'), - (' Sr. Scott'), - ('Anne Newlands'), - ('Dave Allan'), - ('Matt Kingdon'), - ('Kris Murrin'), - ('Daz Rudkin'), - ('David Hussey'), - ('D E Hussey'), - ('Eddie Obeng'), - ('Storm Constantine'), - ('Sue Bishop'), - ('Ali Smith'), - ('Margaret Burt'), - ('Muriel Spark'), - ('Marcia Willett'), - ('Susan Dunlap'), - ('Cathie Pelletier'), - ('Joan Johnston'), - ('Amos Oz'), - ('Nicholas De Lange'), - ('Nancy Geary'), - ('Jacqueline Navin'), - ('Robert Half'), - ('Anne Ursu'), - ('Constance Allen'), - ('Pat Relf'), - ('Nancy Stevenson'), - ('Mary Pope Osborne'), - ('Sal Murdocca'), - ('Delores Fossen'), - ('Gail Gaymer Martin'), - ('Charlotte Douglas'), - ('Harry H. Harrison Jr.'), - ('J.M. Dillard'), - ('David Loughery'), - ('Keith Sharee'), - ('Sharon Green'), - ('A. C. Crispin'), - ('Joss Whedon'), - ('Mary E. Hunt'), - ('Anais Nin'), - ('Wendy Pini'), - ('Richard Pini'), - ('Paul Cowan'), - ('Rachel Cowan'), - ('Charles Grant'), - ('Elizabeth Levy'), - ('Bill Basso'), - ('Gary Hogg'), - ('Agnes Von Kurowsky'), - ('Henry Serrano Villard'), - ('Ernest He'), - ('Katherine Dunn'), - ('Brigitte Aubert'), - ('Susanne Staatsmann'), - ('Irvin D. Yalom'), - ('Uda Strätling'), - ('Richard Laliberte'), - ('Napoleon Hill'), - ('James Bovard'), - ('Harry Browne'), - ('William E. Simon'), - ('Linus Torvalds'), - ('David Diamond'), - ('Ann Durell'), - ('Marilyn Sachs'), - ('Carl Norac'), - ('Claude K. Dubois'), - ('Gustav Meyrink'), - ('Sam McBratney'), - ('Mikhail Bulgakov'), - ('Mirra Ginsburg'), - ('Sean Russell'), - ('John Nichols'), - ('Chuck Barris'), - ('Barbara Haveland'), - ('Louise Gherasim'), - ('McBain'), - ('Holly Halverson'), - ('Dave Davidson'), - ('Beryl Peters'), - ('Frankie'), - ('Isaak Babel'), - ('Corneille'), - ('Tim Guenard'), - ('Patrick Besnier'), - ('Hakan Nesser'), - ('Christel Hildebrandt'), - ('Ruth Warrick'), - ('Don Preston'), - ('Shannon Waverly'), - ('K. N. Casper'), - ('Mackie Shilstone'), - ('Susan Floyd'), - ('Tom Wilson'), - ('Ann Evans'), - ('Darlene Graham'), - ('Lynnette Kent'), - ('Peggy Nicholson'), - ('Tara Taylor Quinn'), - ('Jennifer Greene'), - ('Jackie Merritt'), - ('Claire Foshee'), - ('Alisa M. Hoffman'), - ('Arnold Robbins'), - ('Bill Phillips'), - ('Michael D''Orso'), - ('Lass Small'), - ('Kathryn Shay'), - ('Stella Bagwell'), - ('Lindsay McKenna'), - ('Brenda Novak'), - ('Jack L. Chalker'), - ('Georges Passelecq'), - ('Bernard Suchecky'), - ('Linda Nevins'), - ('Jonathan Swift'), - ('Sasha Miller'), - ('Julie Brady'), - ('Stewart Lee Allen'), - ('Roger Housden'), - ('Pierre Desproges'), - ('Jonathan Ames'), - ('Peter C. Newman'), - ('Lien Chao'), - ('Jim Wong-Chu'), - ('T S Eliot'), - ('Rae Lawrence'), - ('Mladen Sutej'), - ('Catherine George'), - ('Marion Lennox'), - ('Carol North'), - ('Anne Lindsay'), - ('Ian S. Graham'), - ('Edmund H. Volkart'), - ('Satya Das'), - ('Jennifer Chiaverini'), - ('Arthur C. Clarke (Introduction)'), - ('Weigle'), - ('Joyce Milton'), - ('Larry Schwinger'), - ('Sarah Vowell'), - ('Deborah Simmons'), - ('Rafik Schami'), - ('Hans Hermann'), - ('Nikolaus Hansen'), - ('Carlos Castillo'), - ('Martin Scott'), - ('Jenny Randles'), - ('Will Gatti'), - ('Hal B. Pickle'), - ('Royce L. Abrahamson'), - ('Alice Steinbach'), - ('Douglas Clegg'), - ('Patrick Chabris Christopher;Wolff'), - ('Mike Baker'), - ('Walter M. Miller Jr.'), - ('H. P. Lovecraft'), - ('John Jude Palencar'), - ('DEAN KOONTZ'), - ('U.S. Senate Committee On Commerce'), - ('Ricia Mainhardt'), - ('Keith R.A. DeCandido'), - ('Louise Rafkin'), - ('Randolph Hogan'), - ('Norman Manea'), - ('Henry Roth'), - ('Edith T. Mirante'), - ('Katherine Stone'), - ('Abraham. VERGHESE'), - ('Edward DeAngelo'), - ('Diana Ossana'), - ('Janice Gray Kolb'), - ('Bella Bathurst'), - ('Aimee Bender'), - ('Sara Davidson'), - ('Kristin Hunter Lattany'), - ('People For The Ethical Treatment Of Anim'), - ('Dennis Cooper'), - ('MARLIS WEBER'), - ('Donald Harstad'), - ('Rosalyn McMillan'), - ('Carol Smith'), - ('Cecil Foster'), - ('Susan S. Kelly'), - ('David Storey'), - ('Janice Graham'), - ('Carolly Erickson'), - ('Terence M. Green'), - ('Robert Olen Butler'), - ('Lam Kam Chuen'), - ('Stanley Wynett'), - ('Lucy Mead'), - ('Dawn Miller'), - ('Jay Mohr'), - ('Katrina Kenison'), - ('L B Greenwood'), - ('Jeff Selis'), - ('Patrick McDonnell'), - ('Mark Beckloff'), - ('Dan Dye'), - ('Hollis Gillespie'), - ('Charles'), - ('Gina B. Nahai'), - ('Ngaio Marsh'), - ('Judy Alsager'), - ('Silas House'), - ('Anne Vipond'), - ('Alan Nakano'), - ('William Kelly'), - ('mic Defreita'), - ('Paige Davis'), - ('Loren Lester'), - ('Sheryl Bernstein'), - ('Marti'), - ('Nick. Hornby'), - ('Robert Kirschner'), - ('Peter (Narrator) MacNichol'), - ('Tim Curry'), - ('Jill Tanner'), - ('Alexandra Ripley'), - ('Dixie Carter'), - ('James P. Womack'), - ('Daniel T. Jones'), - ('Helen Fielding'), - ('Susan Donovan'), - ('Patricia Heaton'), - ('James Wasserman'), - ('Joao Aguiar'), - ('Peter S. Beagle'), - ('Rand Flem Ath'), - ('Daniel Easterman'), - ('Alex Kerr'), - ('アン 松本・スチュワート'), - ('Anne Matsumoto Stewart'), - ('Joseph MacAnthony'), - ('S. N. Lewitt'), - ('Caiseal Mor'), - ('Jill Gregory'), - ('Doris Elaine Fell'), - ('Joe Coomer'), - ('Joan Elliott Pickart'), - ('Kristen Heitzmann'), - ('Jeff Gomez'), - ('Lois Henderson'), - ('Lawrence Naumoff'), - ('Sigmund Brouwer'), - ('Sherrie Lord'), - ('Kathleen Morgan'), - ('Lois Erickson'), - ('John Brady'), - ('Thomas O''Hara'), - ('Kenneth S. Janke Sr.'), - ('Glen David Gold'), - ('Paul Meier'), - ('Pamela Browning'), - ('Tova Mirvis'), - ('Rochelle Krich'), - ('Jane Shapiro'), - ('Bruce Chatwin'), - ('Barry Clifford'), - ('Phil Georgeff'), - ('Jason Wilson'), - ('Joe Queenan'), - ('Quintin Jardine'), - ('Kit Castle'), - ('Cara Saylor Polk'), - ('August Strindberg'), - ('Michael Robinson'), - ('Persia Woolley'), - ('Aidan Chambers'), - ('Shelley Smith'), - ('John Buxton Hilton'), - ('Brenda Maddox'), - ('Bartholomew Gill'), - ('Sang Hun Lee'), - ('Giles Gordon'), - ('Dr. Paul Carus'), - ('Henry Lincoln'), - ('Leonard Foley'), - ('Jovian Weigel'), - ('Patti Normile'), - ('Dr. Frances Cress Welsing'), - ('Aleister Crowley'), - ('Roger Sherman Loomis'), - ('Jeanne Avery'), - ('Lama Surya Das'), - ('Breena Clarke'), - ('Javier Marías'), - ('Alfred Bester'), - ('Richard Laymon'), - ('Avi'), - ('Ulli Günther'), - ('Herbert Günther'), - ('Conor Cruise O''Brien'), - ('Ursula K. LeGuin'), - ('Jim Hightower'), - ('Cheryl Landon'), - ('Alexa Hennig Von Lange'), - ('Dennis Danvers'), - ('Stanley Bing'), - ('Carlene Thompson'), - ('Krentz'), - ('Raymond E. Feist'), - ('Danelle Harmon'), - ('Debbie Travis'), - ('Rebecca Lickiss'), - ('Claire Berlinski'), - ('Karyn Monk'), - ('Casey Claybourne'), - ('Kim Barnes'), - ('Stephen Hunter'), - ('Roisin McAuley'), - ('Jean Hanff Korelitz'), - ('Janet Laurel'), - ('Hilary Hemingway'), - ('Jeffrey P. Lindsay'), - ('Craig Holden'), - ('Iris Murdoch'), - ('Vincent Van Gogh'), - ('Ronald De Leeuw'), - ('Arnold J. Pomeran'), - ('Philip Smith'), - ('Nahum N. Glatzer'), - ('Dante Alighieri'), - ('John Ciardi'), - ('Zilpha Keatley Snyder'), - ('Steven Spielberg'), - ('Elizabeth Hand'), - ('Tracie Peterson'), - ('Judith McCoy Miller'), - ('Paula Volsky'), - ('Erich Loest'), - ('Sir Francis Chichester'), - ('Jonathan Raban'), - ('Scott B. Smith'), - ('Shirley Temple Black'), - ('Daniel Clowes'), - ('Walter James Miller'), - ('Mark Morris'), - ('William Wordsworth'), - ('Don Kurtz'), - ('George C. Andrews'), - ('Safian'), - ('Victoria Looseleaf'), - ('Eugene Stiles'), - ('George Sand'), - ('Rosemary Lloyd'), - ('Richard Wrigley'), - ('Jay Leno'), - ('A.L. Alexander'), - ('Daniel Defoe'), - ('Mort Gale'), - ('Mary Sanford Laurence'), - ('C.G. Jung'), - ('W. S. Dell'), - ('Cary F. Baynes'), - ('Gail Harvey'), - ('Rebecca Shannonhouse'), - ('Rizzoli'), - ('Magnus Magnusson'), - ('Hermann Palsson'), - ('Paul Edwards'), - ('Doug Peacock'), - ('Miles Harvey'), - ('Gay Talese'), - ('Carl Stiner'), - ('Deborah E. Crombie'), - ('Ph.d.'), - (' Phillip C. Mcgraw'), - ('David Martin'), - ('Elizabeth Marshall Thomas'), - ('Greta K. Nagel'), - ('Rick Mofina'), - ('Marilu Henner'), - ('Laura Morton'), - ('Anthony Robbins'), - ('Tom Clancy'), - ('A. Roger Merrill'), - ('Rebecca R. Merri'), - ('Anne McGee-Cooper'), - ('Jane B Burka'), - ('Joan Brady'), - ('Perri O''Shaughnessy'), - ('Carola Salisbury'), - ('Katherine Paterson'), - ('Mary Lewis'), - ('Hickm'), - ('James Hadley Chase'), - ('Anne Rampling'), - ('Bonnie Gabriel'), - ('Eileen Dreyer'), - ('Laura Childs'), - ('Stephen W. Frey'), - ('Henry Petroski'), - ('Margaret Mitchell'), - ('M.C. Beaton'), - ('Peter Kline'), - ('Thornton Wilder'), - ('Carol Kruckeberg'), - ('John Connolly'), - ('John Steven Gurney'), - ('John Steven '), - ('Lee Davis Willoughby'), - ('George Cable'), - ('Laura McNeal'), - ('Nathaniel Benchley'), - ('Arnold Lobel'), - ('Steve Vance'), - ('Lori Aurelia Williams'), - ('Donald R. Gallo'), - ('D M Thomas'), - ('Angela Malone'), - ('Tessa De Loo'), - ('Ruth Levitt'), - ('Julian Rathbone'), - ('Guy Gavriel Kay'), - ('Babette Cole'), - ('Brian Hollingsworth'), - ('Arthur Cook'), - ('Jennie Hanks'), - ('Bill Peet'), - ('Monty Roberts'), - ('Poul Anderson'), - ('Edith Layton'), - ('Elizabeth A. Scarborough'), - ('Elizabeth'), - ('Christine Feehan'), - ('Elsie Clews Parsons'), - ('Barbara Ardinger'), - ('Brian Sibley'), - ('Joseph Flynn'), - ('Stuart Palmer'), - ('J. Orde'), - ('Linda Barnes'), - ('North American Bear Co.'), - ('Nicolas Fargues'), - ('Edith Hamilton'), - ('Edwin Abbott'), - ('Jacob And Wilhelm Grimm'), - ('Children''s Dover Thrift'), - ('Miranda Lundy'), - ('Carol Highsmith'), - ('Ted Landphair'), - ('Linda Jennings'), - ('Winston Groom'), - ('Todd Cramer'), - ('Doug Munson'), - ('Michael C. Eberhardt'), - ('Thomas Keneally'), - ('Susan Collin Marks'), - ('Martin Lings'), - ('Laura Siegel Gilberg'), - ('O Park'), - ('Donald D. Walsh'), - ('Galway Kinnell'), - ('William Bolitho'), - ('David Bevington'), - ('David Scott Ka'), - ('Anatolian Treasures'), - ('Rita Murphy'), - ('Tony Tanner'), - ('Edward Ziegler'), - ('Ken Warren'), - ('L. Neil Smith'), - ('Simon R. Green'), - ('Jemiah Jefferson'), - ('Peggy Payne'), - ('Robert R. McCammon'), - ('Paul Harding'), - ('Tom Shroder'), - ('Michael Dorris'), - ('Penelope Smith'), - ('Henry Rollins'), - ('Charles G. Waugh'), - ('Boston Teran'), - ('Janette Oke'), - ('Glenn Dabbs'), - ('Laura Shaine Cunningham'), - ('Meagan McKinney'), - ('Beverly Bird'), - ('Robert Kroetsch'), - ('Caroline Roe'), - ('Susan Crosby'), - ('Wendy Markham'), - ('Barbara Holland'), - ('D. W. Harding'), - ('Edward Stewart'), - ('Francis Roe'), - ('Slavomir Rawicz'), - ('Deborah Howe'), - ('James Howe'), - ('Alan Daniel'), - ('John Peterson'), - ('Roberta Carter Clark'), - ('Lori Wick'), - ('Judith Pella'), - ('Lauraine Snelling'), - ('Penelope J. Stokes'), - ('Wendy Etherington'), - ('Velma Wallis'), - ('Jahnna N Malcolm'), - ('Paul Howard'), - ('Amy Keating Rogers'), - ('E.S. Mooney'), - ('Hom And Hom '), - ('John Maddox'), - ('Stephen Jay Gould'), - ('Jane Goodall'), - ('Phillip Berman'), - ('Pauline Reage'), - ('Molly Giles'), - ('Dan H. Laurence'), - ('Feliks Topolsk'), - ('Christopher Bigsby'), - ('Webster''s Editors'), - ('Desmond Morton'), - ('William Blake'), - ('Russell Baker'), - ('T. Davis Bunn'), - ('George Macdonald'), - ('Helen Stratton'), - ('Arthur Hughes'), - ('Jack David'), - ('Robert Lecker'), - ('John Harvey Jones'), - ('Jeremy Dronfield'), - ('Clare Boylan'), - ('JOHN LE CARRE'), - ('DBC Pierre'), - ('Linda Rosenkrantz'), - ('Pamela Redmond Satran'), - ('David Milstead'), - ('Mindy Pennybacker'), - ('Aisha Ikramuddin'), - ('New Woman'), - ('Hubert Selby Jr.'), - ('Joan Jacobs Brumberg'), - ('Rebecca Wood'), - ('Harry Gersteneker'), - ('Joanna Stratton'), - ('Arthur M Schlesinger'), - ('Stephanie Doyle'), - ('Tanya Michaels'), - ('Gary Provost'), - ('Emma McLaughlin'), - ('Bunkie Lynn'), - ('Rick Baldwin'), - ('Brian Stewart'), - ('Kathleen Tessaro'), - ('Amy Blackmarr'), - ('Mark Donnelly'), - ('Chr'), - ('Jennifer Finney Boylan'), - ('Liane Moriarty'), - ('Brian Masters'), - ('Maggie Gibson'), - ('William Storandt'), - ('Parker C. Hinter'), - ('Diamond Studio'), - ('Kim Ostrow'), - ('Kirsten Larsen'), - ('Peggy Parish'), - ('Wallace Tripp'), - ('Barbara Siebel Thomas'), - ('Lynn Sweat'), - ('Gertrude Cha Warner'), - ('Dirk Gringhuis'), - ('Gertrude C. Warner'), - ('Dick Gringhuis'), - ('Alan Tiegreen'), - ('Jan Naimo Jones'), - ('Paul Casale'), - ('Paul Witcover'), - ('Sparkle Hayter'), - ('Martin Amis'), - ('Robert Barnard'), - ('Robert Clark'), - ('Celeste Bradley'), - ('B. M. Gill'), - ('Lisa Jewell'), - ('Robert C. Atkins'), - ('Geri Larkin'), - ('Geraldine A. Larkin'), - ('Kim Wilkins'), - ('Benjamin DeMott'), - ('Herberth E. Herlitschka'), - ('Peter Handke'), - ('Walter Kappacher'), - ('Daniel Glattauer'), - ('Edward Lee'), - ('Aljean Harmetz'), - ('Marianne Fredriksson'), - ('Marlisa Szwillus Dr'), - ('Kirk Martin'), - ('Nicole Thomas'), - ('P. D. Cacek'), - ('Karen Rose'), - ('Perri Klass'), - ('Laura Moriarty'), - ('Erik Wilson'), - ('Steve Gerlach'), - ('Simon Clark'), - ('Jack Ketchum'), - ('Jose Vasconcelos'), - ('Julio Cortazar'), - ('Federico Garcia Lorca'), - ('John L'' Heureux'), - ('Judith Minthorn Stacy'), - ('Monica Wood'), - ('J Lisle'), - ('Frank D''Arcy'), - ('George Edward Stanley'), - ('Linda Graves'), - ('Nancy Moser'), - ('Eleanor Estes'), - ('Barbara Mujica'), - ('Freda Warrington'), - ('Stanley Corngold'), - ('James Welch'), - ('Mia Yun'), - ('Martin Hallett'), - ('Jerry Wasserman'), - ('James Curtis'), - ('Clarke'), - ('Linda Singer'), - ('Dimitrios Roussopoulos'), - ('Nancy Waxler-Morrison'), - ('Joan M. Anderson'), - ('Elizabeth R'), - ('George Woodcock'), - ('Harry H. Hiller'), - ('H Krahn'), - ('James Kinsley'), - ('M. K. Jo'), - ('Valerie Solanas'), - ('Katharine Burdekin'), - ('Daphne Patai'), - ('Kate Millett'), - ('M Gilliland'), - ('Jean Stead'), - ('Brian Fawcett'), - ('Joy Kogawa'), - ('Irving Wallace'), - ('Marion Elliot'), - ('Masahiro Chatani'), - ('Geoffrey Butcher'), - ('Diana Bryan'), - ('Jonathan Kozol'), - ('Maria Grazia Swan'), - ('Craig Joseph Danner'), - ('Kathryn Harrison'), - ('Jamie Suzanne'), - ('Richard David Carson'), - ('Novle Rogers'), - ('Nell Nichols'), - ('Kathryn Larson'), - ('Stearn Robinson'), - ('Tom Corbett'), - ('Laurence J. Lafleur'), - ('Teddy Lenderman'), - ('Janet Lynnford'), - ('Melanie Walz'), - ('Anthony B Herbert'), - ('Nero Blanc'), - ('Arthur Ransome'), - ('Lian Hearn'), - ('Eric Idle'), - ('James Dickey'), - ('Siegfried Lenz'), - ('Paule Marshall'), - ('Noah Gordon'), - ('Philippa Gregory'), - ('Max Barry'), - ('Edgar Rice Burroughs'), - ('Garry D. Kilworth'), - ('Iain Johnstone'), - ('John Cleese'), - ('Janet Berliner'), - ('George Guthridge'), - ('Mervyn Peake'), - ('Quentin Crisp'), - ('Walter J. Lord'), - ('Walter Lord'), - ('Dietrich Von Hildebrand'), - ('John Long'), - ('John'), - (' Long'), - ('University Of Navarre'), - ('John R. Lee'), - ('Virginia Hopkins'), - ('Munro Leaf'), - ('Robert Lawson'), - ('William Armstrong'), - ('Eleanor Coerr'), - ('Mark Shulman'), - ('Dandi Daley Mackall'), - ('Andy And Illustrated By Andy Stiles Rector'), - ('Bill Lorencz'), - ('Marcia Thornton Jones'), - ('Suzy Kline'), - ('Beve'), - ('Barb Schwarz'), - ('R.l. Stine'), - ('Catherine Clark'), - ('Paul McCusker'), - ('R.A. Montgomery'), - ('Zander Hollander'), - ('David Schulz'), - ('Allen Edgar'), - ('Bill Myers'), - ('Joseph Layden'), - ('Joe Layden'), - ('Jean Estoril'), - ('Vivien Alcock'), - ('Mark R. Littleton'), - ('Miriam A.'), - (' Etal. Lademan'), - ('Ingri D''Aulaire'), - ('Edgar Parin D''Aulaire'), - ('John Grisewood'), - ('Kathy M. Douglas'), - ('Ivan Aralica'), - ('Ann Moura'), - ('S. J. Gaither'), - ('Micheal Canada'), - ('Kala Pajeon'), - ('Ketz Pajeon'), - ('Marion Dane Bauer'), - ('Beck Underwood'), - ('Joe Buff'), - ('Michael Bishop'), - ('Denise Hamilton'), - ('Lance Morrow'), - ('Boris Starling'), - ('Junius Podrug'), - ('Sean Stewart'), - ('Steven Spruill'), - ('Patricia Tichenor Westfall'), - ('Nicolas Freeling'), - ('Joan D. Vinge'), - ('Kathryn Marie Cocquyt'), - ('Thomas Fensch'), - ('Naomi Nash'), - ('Dr Joyce Brothers'), - ('Patrick O''Brian'), - ('William H. Keith'), - ('Walter Farley'), - ('Theresa Monsour'), - ('Victor Kelleher'), - ('Richard Sherbaniuk'), - ('Pam Houston'), - ('Karin Cook'), - ('Eileen Christelow'), - ('James Cross Giblin'), - ('Laura Dower'), - ('Jim Steck'), - ('Daniel Goleman'), - ('Ken Kesey'), - ('Harry Harrison'), - ('Elizabeth Ann Scarborough'), - ('Gwendolyn Mitchell Diaz'), - ('Jane Haddam'), - ('David Spencer'), - ('Frances A. Miller'), - ('Christopher Stasheff'), - ('R. A. Montgomery'), - ('Paul Granger'), - ('Charles Osborne'), - ('Valerie Harper'), - ('Janet E. Lapp'), - ('Will Steger'), - ('Carrie Fisher'), - ('Alicia Mundy'), - ('Douglas H. Ubelaker'), - ('Henry Scammell'), - ('John H. Davis'), - ('May Sarton'), - ('Claudia O''Keefe'), - ('Patricia Deane Wigington'), - ('Stephen Manes'), - ('David Quammen'), - ('Dick Drew'), - ('Michael Whelan'), - ('Sharon Shinn'), - ('Michelle Roehm'), - ('Cees Nooteboom'), - ('Page Smith'), - ('Marilyn Diamond'), - ('G. Cabrera Infante'), - ('Guillermo Cabrena Infante'), - ('Brian L. Weiss'), - ('Truddi Chase'), - ('Josh Koppel'), - ('Frank Conroy'), - ('Thomas Mohr'), - ('Andreas Eschbach'), - ('Liaty Pisani'), - ('Jim Crace'), - ('Walter Ahlers'), - ('Robert Hültner'), - ('Barbara Wood'), - ('Verena C. Harksen'), - ('Jack Finney'), - ('Federica De Cesco'), - ('Federica DeCes'), - ('Uwe Anton'), - ('Judith Hermann'), - ('Svenja Becker'), - ('Kate Douglas'), - ('Robin Raab'), - ('Douglas Niles'), - ('Bett Williams'), - ('Patricia Frances Rowell'), - ('Catherine Spencer'), - ('Gordon W. Prange'), - ('Donald M. Goldstein'), - ('Katherine V.'), - ('Richard Kauffmann'), - ('Field'), - ('Courtlandt Dixon Barnes Bryan'), - ('Edith M. Pavese'), - ('Evan S. Connell'), - ('Ethan Coen'), - ('Jill Robinson'), - ('L. Lee Wilson'), - ('Tom Snyder'), - ('Mike Wilkins'), - ('Ken Smith'), - ('Doug Kirby'), - ('Sandra Gurvis'), - ('Jane Stern'), - ('Michael Stern'), - ('Michael Stern Rn'), - ('Jane Browne'), - ('Stephen Jones'), - ('William Lewis Herndon'), - ('Gary Kinder'), - ('Charles Baxter'), - ('Johanna Roebas'), - ('Cynthia Heimel'), - ('Rob Payne'), - ('Emily Barr'), - ('Debra Kent'), - ('Andrew Mark'), - ('Ambrose Bierce'), - ('John B Jr Cobb'), - ('Oliver L. North'), - ('Joe Musser'), - ('David Delman'), - ('Robert Rankin'), - ('Sharon Kahn'), - ('Joanne Pence'), - ('Annie Griffin'), - ('(none)'), - ('Dolores Johnson'), - ('Alex Pate'), - ('Hanna De Heus'), - ('Helen Bianchin'), - ('Stephen Goldin'), - ('Rona Jaffe'), - ('Lauren F. Winner'), - ('Robert K. Johnston'), - ('Susan Newman Ph.D'), - ('Tony McGowan'), - ('Christopher Awdry'), - ('S. Hughes'), - ('Linda Crew'), - ('Frank Lauria'), - ('Louisa Luna'), - ('Charlotte Breuer'), - ('Margaret Forster'), - ('Roseli Bontjes Van Beek'), - ('Saskia Bo'), - ('Ilona Maria Hilliges'), - ('Peter Hilliges'), - ('Ulrike Schweikert'), - ('Stan Nicholls'), - ('Emily Brontï¿1/2'), - ('Patsy Stoneman'), - ('Lonely Planet'), - ('Lisa Johnson'), - ('Gail Anderson-Dargatz'), - ('Lacretelle'), - ('Martin Luther King'), - ('Deborah Spungen'), - ('Steve Bobrowski'), - ('Kjartan Flogstad'), - ('Kjartan Flgstad'), - ('Nadia M. Christen'), - ('Paul Bowles'), - ('Lewis Perdue'), - ('Susan Howatch'), - ('Michael Azerrad'), - ('Robert Quackenbush'), - ('James Guimo'), - ('Joanna Elm'), - ('Paula Sheridan'), - ('Noel Hynd'), - ('Nora Lam'), - ('Helen Van Slyke'), - ('Aola Vandergriff'), - ('Pete Earley'), - ('Chris Rock'), - ('Oscar Williams'), - ('Henry David Thoreau'), - ('Pat McGrath Avery'), - ('Lisa Brez'), - ('Archer'), - ('L. Robert Kohls'), - ('DR. MIRIAM STOPPARD'), - ('Haven Kimmel'), - ('Harry Stein'), - ('Teri Seidman'), - ('Sherry Suib Cohen'), - ('Mario Buatta'), - ('Francine Rivers'), - ('Diane Noble'), - ('Elizabeth Cox'), - ('Carly Phillips'), - ('Joseph Bedier'), - ('Hilaire Belloc'), - ('Ebury Press'), - ('Laurice Elehwany'), - ('Patricia Hermes'), - ('Caroline B Cooney'), - ('Florence Temko'), - ('Martha Williamson'), - ('Jerome Lawrence'), - ('Robert E. Lee'), - ('Edgar Lee Masters'), - ('Marlene Rimler'), - ('Douglas Scott'), - ('Barbara Robinette Moss'), - ('Barclay Shaw'), - ('Claudia Dain'), - ('Mallory Kane'), - ('Gwen Hunter'), - ('John Sparks'), - ('Carol K. Mack'), - ('Dinah Mack'), - ('James Carroll'), - ('Robert M. Thomas'), - ('John R. Levine'), - ('Margaret'), - (' Levine Young'), - ('Margaret Lev'), - ('Marcy Blum'), - ('Laura Fisher Kaiser'), - ('Publishing Lyrick'), - ('Dick Sutphen'), - ('Lorraine Hansberry'), - ('Frederick Douglass'), - ('Peter J. Gomes'), - ('Sharon O''Brien'), - ('Jeffery Deaver'), - ('Pauline Tai'), - ('Michael Fredrickson'), - ('Goddard'), - ('Marty Becker D.V'), - ('Chris Rowthorn'), - ('Alex Landragin'), - ('Kate Daly'), - ('Jeff Woodman'), - ('Alexander Marshall'), - ('Tonke Dragt'), - ('Liesel Linn'), - ('Hector Malot'), - ('Richard Alewyn'), - ('Johannes Piron'), - ('Hanjo Lehmann'), - ('Alexandre Jardin'), - ('Alex Haley'), - ('Ruth Adam'), - ('Susan Trott'), - ('Mary Keil'), - ('Mineko Iwasaki'), - ('Nina Killham'), - ('Jane Holtz Kay'), - ('James Goldman'), - ('The Editors Of Consumer Reports'), - ('E.L. Konigsburg'), - ('Douglas Hill'), - ('Louise Bergmann DuMont'), - ('Rita Konig'), - ('David Lowenherz'), - ('Corinna Belz'), - ('Regina Schilling'), - ('Edward Koren'), - ('Charlotte Kasl'), - ('Stephen McCauley'), - ('James Long'), - ('Margery Allingham'), - ('Alexandra Baumrucker'), - ('Mandalyn Kaye'), - ('Maxine Hong Kingston'), - ('Bryce Courtenay'), - ('Frank Viviano'), - ('Archer Mayor'), - ('Lisa Tawn Bergren'), - ('B. J. Hoff'), - ('Yvonne Navarro'), - ('Nicholas Van Pelt'), - ('Russell Lee'), - ('Jean-Christophe Grangé'), - ('Ronald Sanders'), - ('Daniel C. Dennett'), - ('F. David Peat'), - ('Robert H. March'), - ('Lydia Alix Fillingham'), - ('Moshe Susser'), - ('Terence McKenna'), - ('Michael Ventura'), - ('Bonnie Klomp Stevens'), - ('Stevens'), - ('Fred Hiatt'), - ('Peter Hart'), - ('Fairness And Accuracy In Reporting'), - ('Robe'), - ('Dennis Miller'), - ('Amy Sonnie'), - ('Norence A. Nelson'), - ('Marion Luna Brem'), - ('Rosie O''Donnell'), - ('Apolo Anton Ohno'), - ('Nancy Ann Richardson'), - ('O''Lanso Gab'), - ('Jean Genet'), - ('Rolf Potts'), - ('Leigh Riker'), - ('Sylvie Kurtz'), - ('Joanna Wayne'), - ('Susan Gable'), - ('Kay David'), - ('Janice Macdonald'), - ('Margaret Watson'), - ('Darlene Scalera'), - ('Carrie Weaver'), - ('Lo Scarabeo'), - ('Antonella Platano'), - ('Laura Tuan'), - ('Suzanne Fields'), - ('Alex Trebek'), - ('Peter Barsocchini'), - ('Merv Griffin'), - ('Anne Moyer Halpin'), - ('Drake Douglas'), - ('Jane Lyle'), - ('Carol Bowman'), - ('David Harrington'), - ('Nancy Garen'), - ('Donald R. Harvey'), - ('Gary Smalley'), - ('Greg Smalley'), - ('Ken Greenhall'), - ('Walter Sorrells'), - ('John Le Breton'), - ('Monte Farber'), - ('Elke Heidenreich'), - ('Maryanne Stahl'), - ('Lily Burana'), - ('Paula Fox'), - ('James Clavell'), - ('Werner Peterich'), - ('Johann David Wyss'), - ('Nicholson Baker'), - ('Carol Gardner'), - ('Anouchka Grose Forrester'), - ('Edna Ferber'), - ('M. A. Harper'), - ('Tamar Myers'), - ('Judith Duncan'), - ('Lisa Legarde'), - ('Laurie Lisle'), - ('Barrie Dolnick'), - ('Michael Leahy'), - ('William Kritlow'), - ('Dara Joy'), - ('Nelle McFather'), - ('Lind'), - ('Karen Hawkins'), - ('George Bowering'), - ('Angela Bowering'), - ('Michael Matthews'), - ('Mary Wesley'), - ('Tel Franklin'), - ('Elsa Walsh'), - ('Robert Amoroso'), - ('Wendell Berry'), - ('Parker J. Palmer'), - ('Gordon W Green'), - ('Jerry Scott'), - ('Rick Kirkman'), - ('Colette Dowling'), - ('Richard Green'), - ('Sherab Chodin Kohn'), - ('Geoffrey Wall'), - ('Geoff'), - ('Naomi Wolf'), - ('Nino Ricci'), - ('Meera Nair'), - ('Phillip Keller'), - ('J. I. M. Stewart'), - ('David E Fear'), - ('Allan Sutton'), - ('Andre Gayot'), - ('Vernor Vinge'), - ('Iain M. Banks'), - ('Laura Anne Gilman'), - ('Jennifer Heddler'), - ('Kathryn Harvey'), - ('William L. Deandrea'), - ('Matthew Deandrea'), - ('James Preller'), - ('Jamie Smith'), - ('Betty MacDonald'), - ('Susan Napier'), - ('Gloria Whelan'), - ('Linda Spalding'), - ('Eileen Wilks'), - ('Amy J. Fetzer'), - ('David William Ross'), - ('Cindy Gerard'), - ('Bel Kaufman'), - ('Jill Rubalcaba'), - ('Pierre Berton'), - ('Lars Klander'), - ('Mary Pyefinch'), - ('Gary Blackwood'), - ('Stephen Alcorn'), - ('Kristin Aileen Motlagh'), - ('Thor Heyerdahl'), - ('L.E. Blair'), - ('Rohinton Mistry'), - ('Kay-Marie James'), - ('Stuart Dybek'), - ('Charles Dickinson'), - ('Caeia March'), - ('Eric Hoffer'), - ('Donna Masini'), - ('OG MANDINO'), - ('Robert Angell'), - ('Walter Macken'), - ('Rhonda Findling'), - ('Norman Vincent Peale'), - ('Ellen Blake Dr.'), - ('Annelie Ortmanns-Suzuki'), - ('Jürgen Sta'), - ('Ron Rash'), - ('Robert Inman'), - ('Michael Morris'), - ('Hozy Rossi'), - ('Pearl Baker'), - ('Floyd A. O''Neil'), - ('Elizabeth Inness-Brown'), - ('Thomas H. Johnson'), - ('David Petersen'), - ('Ann Zwinger'), - ('Edith H. Beer'), - ('Susan Dworkin'), - ('David Liss'), - ('Sarah Stone'), - ('Steven Emerson'), - ('Rosamund Stone Zander'), - ('Benjamin Zander'), - ('Terrence Mann'), - ('Paula Huntley'), - ('Annabel Laity'), - ('Anhua Gao'), - ('Sandra Day O''Connor'), - ('Steven Bochco'), - ('Dennis Franz'), - ('Bill Lee'), - ('Mike Romano'), - ('Gail Twersky Reimer'), - ('Judith A. Kates'), - ('Xinran Xinran'), - ('Rosamond Halsey Carr'), - ('Ann Howard Halsey'), - ('Gioconda Belli'), - ('Kristina Cordero'), - ('Amanda Stern'), - ('Mary Craig'), - ('Diane DiPrima'), - ('Michael Hogan'), - ('A. Scott Berg'), - ('Deborah Davis'), - ('Paolo Maurensig'), - ('Howard Zinn'), - ('Anthony Arnove'), - ('Marie Vassiltchikov'), - ('Richard Lindberg'), - ('Elizabeth Ammons'), - ('Janice Hudson'), - ('Melissa Senate'), - ('Anna Salter'), - ('Cheryl Peck'), - ('Danzy Senna'), - ('Pat White'), - ('Seth Godin'), - ('Sue Welfare'), - ('Lynn Morris'), - ('Natasha Usher'), - ('Julie Ortolon'), - ('Patricia Volk'), - ('Lynn Emery'), - ('Kris Kumar'), - ('Africa Fine'), - ('Joanne Fluke'), - ('Malinda Terreri'), - ('Jane Isenberg'), - ('Shirley Rou'), - ('Donna Hill'), - ('Rochelle Alers'), - ('Brenda Jackson'), - ('Francis R'), - ('Donald Spoto'), - ('Mark Spragg'), - ('Margaret Cole'), - ('Mignon Eberhart'), - ('Cornell Woolrich'), - ('Mar'), - ('Stephen Leacock'), - ('Jack Hodgins'), - ('Edited By E. F. Watling'), - ('Anthony Weston'), - ('Joyce Meyer'), - ('William G Dyer'), - ('Steve Bennett'), - ('Ruth Bennett'), - ('Gerald N. Lund'), - ('Dorothy Parker'), - ('Colleen Bresse'), - ('Regina Barreca'), - ('Atul Gawande'), - ('Harriet Doerr'), - ('Jo-Ann Mapson'), - ('Tracy Quan'), - ('Donna Morrissey'), - ('N. Scott Momaday'), - ('Walter D. Edmonds'), - ('Palden Jenkins'), - ('Alan Kaufman'), - ('Ceil Cleveland'), - ('Charles H. Buck'), - ('Edward Gorman'), - ('April Christofferson'), - ('Lynn Armistead McKee'), - ('Winnie Smith'), - ('Loraine Despres'), - ('Paula Huston'), - ('Brett Simon'), - ('Joel Myerson'), - ('Daniel Shealy'), - ('Doris Lessing'), - ('Jane Langton'), - ('Bette Greene'), - ('Benedict Cosgrove'), - ('Paul Scott'), - ('Elizabeth Villars'), - ('Doris May Lessing'), - ('James Lees-Milne'), - ('Barbara Pym'), - ('S. Morgenstern'), - ('John Howlett'), - ('Helen Ashfield'), - ('S. A. Kramer'), - ('Alexander Lenard'), - ('Noel Streatfeild'), - ('Irene N. Watts'), - ('Lawrence Weschler'), - ('Laurel Ames'), - ('Nancy Martin'), - ('Pat Warren'), - ('Elizabeth Manz'), - ('William X. Kienzle'), - ('Marc Fisher'), - ('Mike Lynch'), - ('Barbara Watson'), - ('Sheila Stern'), - ('Pegi Handley'), - ('Tim Green'), - ('Eileen Curristine'), - ('Ellen Byerrum'), - ('Michael Jahn'), - ('Vallee'), - ('DK Publishing'), - ('Josephine Evetts-Secker'), - ('Helen Cann'), - ('Judith Reichman'), - ('Phyllis Stanley'), - ('Miltinnie Yih'), - ('Zondervan'), - ('Susan J. Samtur'), - ('Cynthia Rowland McClure'), - ('Cynthia Heald'), - ('Richard Anthony D''Ambrosio'), - ('Ben Hamper'), - ('Roger Von Oech'), - ('Merrill Markoe'), - ('Billy Wade Roebuck'), - ('William D. Hardy'), - ('Kim Johnson Gross'), - ('Jeff Stone'), - ('Sidney W. Mintz'), - ('Warren J. Ludlow'), - ('Nancy Landrum'), - ('Peter Van Der Veer'), - ('Carole Berry'), - ('Harold R. Lacy'), - ('Larry Bond'), - ('Harold Coyle'), - ('Nancy Appleton'), - ('Mary Gordon'), - ('David Leavitt'), - ('Mark Mitchell'), - ('Bill Zehme'), - ('Barbara M. Morris'), - ('Ann K. Fisher'), - ('Brian Hall'), - ('William A. Fletcher'), - ('Richard S. Wheeler'), - ('Vallie Flet'), - ('John S. Littell'), - ('Mary W. Littell'), - ('Clive Powell-Williams'), - ('Scott Alexander'), - ('Larry Karaszewski'), - ('John Edward'), - ('Martin Harry Greenberg'), - ('Larry Segriff'), - ('Kevin Murphy'), - ('Lee Martin'), - ('Virginia Cary Hudson'), - ('Ken Grimwood'), - ('Ltd. Icon Group'), - ('Fiona Buckley'), - ('Charlotte Perkins Gilman'), - ('Elaine R. Hedges'), - ('Alison Habens'), - ('James Trefil'), - ('Elaine Hedges'), - ('Michael Malone'), - ('Michel Foucault'), - ('Robert Hurley'), - ('Susan Dunn'), - ('Joan Mathews Larson'), - ('Julia Ross'), - ('Sarah Dunant'), - ('Laura Schlessinger'), - ('Deborah Larsen'), - ('Homer'), - ('Richmond Lattimore'), - ('Judy Sheindlin'), - ('Jay Bakker'), - ('Sue Monk Kidd'), - ('Dan Mahoney'), - ('Suskind'), - ('Eric Newby'), - ('Francis'), - ('Karen Rose Smith'), - ('Molly O''Keefe'), - ('Melanie Jackson'), - ('Dennis William Hauck'), - ('Ken Beck'), - ('Jim Clark'), - ('Julia M. Pitkin'), - ('Shannon McKenna'), - ('Cynthia Wright'), - ('Martha Hix'), - ('Gail Link'), - ('E. Merritt'), - ('Jessica Wulf'), - ('Carolyn Davidson'), - ('Susan Kay Law'), - ('Lauren Wilde'), - ('Joanne Redd'), - ('Deborah Martin'), - ('Nicole Jordan'), - ('Deloras Scott'), - ('Deborah Camp'), - ('J. S. Borthwick'), - ('Bill Buford'), - ('Ron Powers'), - ('Siegfried Engelmann'), - ('Phyllis Haddox'), - ('Elaine Bruner'), - ('Michele Jaffe'), - ('Kenison'), - ('Margery Williams'), - ('Neil Waldman'), - ('Carl G. Jung'), - ('R. F. C. Hull'), - ('Gregory Mcdonald'), - ('Pope John Paul II'), - ('Margaret Bunson'), - ('Yves Savourel'), - ('Chet Ensign'), - ('Howard Richler'), - ('C. S. Forester'), - ('John Waller'), - ('Theoni Pappas'), - ('Andrew Vachss'), - ('Ann Coulter'), - ('Howard Roughan'), - ('Jr. Walter M. Miller'), - ('Ann Marie Winstom'), - ('Jean Brashear'), - ('Janice Kay Johnson'), - ('Janice Johnson'), - ('Ann Lawrence'), - ('BELINDA BARNES'), - ('Lisa Childs'), - ('Frances Housden'), - ('Valerie Parv'), - ('Anne West'), - ('Nina George'), - ('Ute Ehrhardt'), - ('Sneaky Pie Brown'), - ('Stanislaw Lem'), - ('Klaus Staemmler'), - ('Walter Tiel'), - ('Allan & Barbara Pease'), - ('Bernard Malamud'), - ('Hall'), - ('M. M. Ragz'), - ('Sarah Louise Delany'), - ('Amy Hill Hearth'), - ('Annie Elizabet'), - ('Colette'), - ('Antonia White'), - ('Steve Kluger'), - ('Betty Miller'), - ('Charles Osgood'), - ('Graciela Ascarrunz Gilman'), - ('Marian Zwerling Sugano'), - ('Graciela Ascarrunz De Gilman'), - ('Marian Zwerling Sugan'), - ('Arturo Cuyas'), - ('Sheila Ballantyne'), - ('Arthur Zeiger'), - ('Walter Krämer'), - ('Götz Trenkler'), - ('James Alan Gardner'), - ('Lisa Tuttle'), - ('Carlton Smith'), - ('Thomas Guillen'), - ('Béatrice Durand'), - ('Olga Nolla'), - ('Robert Holdstock'), - ('Antoine Chalvin'), - ('François Rouiller'), - ('Arthur Rimbaud'), - ('Carlos Castaneda'), - ('Augusto Monterroso'), - ('Julia Reed'), - ('Michael Pye'), - ('Alice Elliott Dark'), - ('Debi Gliori'), - ('Peter Kussi'), - ('Rose G. Mandelsberg'), - ('Katie Maxwell'), - ('John O''Hara'), - ('Stewart Home'), - ('J. T. LeRoy'), - ('Edward Carey'), - ('Beth Gutcheon'), - ('Gabrielle Williams'), - ('Kate Dicamillo'), - ('Timothy B. Ering'), - ('Kelly Link'), - ('Maryanne Raphael'), - ('Kevin Hart'), - ('D. C. R. A.'), - ('Norbert Puszkar'), - ('Sigurd Engel'), - ('Dorothy Cannell'), - ('Thomas Feibel'), - ('Robert Gentile'), - ('Anne L. McKinnon'), - ('James Taylor'), - ('Stuart/Jacobson.'), - ('Jane R. Hirschmann'), - ('Carol H. Munter'), - ('Doris Mortman'), - ('Terrence Higgins Trust'), - ('Lyndall Stein'), - ('Stephen Mayes'), - ('Karen Haber'), - ('William Cutrer'), - ('Sandra Glahn'), - ('Daniel Hart'), - ('Gemma O''Connor'), - ('Inge Leipold'), - ('Jean-Pierre Lefebvre'), - ('Walter Robinson'), - ('Mat Gleason'), - ('Tom Patenett'), - ('Bert Archer'), - ('Tonino Benacquista'), - ('Caroline Graham'), - ('Hugh Miller'), - ('Kieran Prendiville'), - ('D. A. Benton'), - ('Mark Melnicove'), - ('Marguerite Yourcenar'), - ('Grace Frick'), - ('Textes Et Litterature'), - ('Pierre Salomon'), - ('N.c. Wyeth'), - ('James W. Brown'), - ('Lawrence D. Stokes'), - ('Cyril Connelly'), - ('Jean Racine'), - ('Theodore Taylor'), - ('Gwenda Kaczor'), - ('Gerhard Roth'), - ('Ed Regis'), - ('James M. Powell'), - ('Larry J. Hughes'), - ('Stephen J. Bigelow'), - ('Blockson'), - ('Terese Ramin'), - ('Bronwyn Jameson'), - ('Katharine Hepburn'), - ('Day'), - ('Paul Rabinow'), - ('Hugh Campbell'), - ('John Dolan'), - ('Robin Law'), - ('Alec Fisher'), - ('Nicholas Everitt'), - ('Norman Solomon'), - ('Walter Hamilton'), - ('Ethan Hawke'), - ('Joseph Francis Fletcher'), - ('Ginu Kamani'), - ('Pema Chodron'), - ('The Dalai Lama'), - ('Jeffrey Hopkins'), - ('Alex Kennedy'), - ('Philippe Ames'), - ('Nguyen Thi Hop'), - ('Nguye'), - ('Dinty W. Moore'), - ('Ve N. Thubten Chodron'), - ('Kirill Bulychev'), - ('Theodore Sturgeon'), - ('Mikhail Emtsev'), - ('Eremei Parnov'), - ('A.W. Bouis'), - ('Biederman'), - ('Virginia Rich'), - ('Dorothy Leigh Sayers'), - ('Jonathan Gash'), - ('Heller'), - ('Mei Ng'), - ('Sarah Shankman'), - ('Swami Rudrananda'), - ('Karma Lekshe Tsomo'), - ('Rachel Timms'), - ('Michael Capuzzo'), - ('Madeleine Albright'), - ('Marina Warner'), - ('Jean-Bernard Pouy'), - ('Lawrence Schiller'), - ('Michael F. Roizen M.D.'), - ('B. Dobbins'), - ('T. Cole-Whittaker'), - ('William Greider'), - ('Richard; Atwater'), - (' Florence Atwater'), - ('Robert Lawrence'), - ('Khalil Gibran'), - ('Halil Cibran'), - ('E T A Hoffmann'), - ('Ludwig Wittgenstein'), - ('Thomas Bernhard'), - ('C.David Heymann'), - ('Malte Krutzsch'), - ('Charles Kingsley'), - ('Sujata Massey'), - ('Sonja Hauser'), - ('Pablo Tusset'), - ('Susanna Mende'), - ('Wallace Hildick'), - ('L. M. Montgomery'), - ('Bebe Faas Rice'), - ('Stella Cameron'), - ('David Dalton'), - ('Janwillem Van De Wetering'), - ('Aaron Copland'), - ('Alan Rich'), - ('Betty Ren Wright'), - ('TA Barron'), - ('Wendy Anderson Schulz'), - ('Judy Shasek'), - ('David J. Pelzer'), - ('Mildred Marmur'), - ('Mary McCarthy'), - ('Jerome F. Smith'), - ('Delano Ames'), - ('John M. Del Vecchio'), - ('Joan M. Hummel'), - ('Desiderius Erasmus'), - ('Martin Luther'), - ('Eve Ensler'), - ('Witold Rybczynski'), - ('Lynn M. Constantine'), - ('Suzanne Scott'), - ('Samuel B. Griffith'), - ('B. H. Liddell Hart'), - ('Plato (translated & With An Introduction By Hu'), - ('Rosemary Sassoon'), - ('G. Se Briem'), - ('Ainslie T. Embree'), - ('William Theodore De Bary'), - ('Jean-Jacques Rousseau'), - ('Maurice Cranston'), - ('Cory Doctorow'), - ('Oxford'), - ('Tessa Krailing'), - ('Barrons Educational Series'), - ('Barron''s'), - ('The New York Public Library'), - ('John Ayto'), - ('Charles Harrington Elster'), - ('William Zinsser'), - ('Sue Young'), - ('Peter Mark Roget'), - ('Merriam-Webster'), - ('Stephen Elliott'), - ('Leslie T. Sharpe'), - ('Irene Gunther'), - ('Richard Marek'), - ('Arthur Plotnik'), - ('Margaret Shertzer'), - ('Jr. William Strunk'), - ('Brenda Spatt'), - ('Janet Sternberg'), - ('Janet Sternburg'), - ('Joseph M. Williams'), - ('Jean M. Fredette'), - ('William Knowlton Zinsser'), - ('Thuan L. Thai'), - ('Hoang Lam'), - ('Mario Vargas Llosa'), - ('Milorad Pavic'), - ('Microsoft Corporation'), - ('Alfred Appel Jr.'), - ('Gourmet Magazine Editors'), - ('Leanne Ely'), - ('Jonathan Lethem'), - ('Jack Heffron'), - ('John M. Lannon'), - ('Richard Dowis'), - ('Jim McLean'), - ('Patricia T. O''Conner'), - ('Ann Marston'), - ('Aaron Allston'), - ('K.D. Wentworth'), - ('James Baen'), - ('Linda Moore'), - ('Gerald A. Browne'), - ('Judy Cornwell'), - ('Duane Newcomb'), - ('Ortho'), - ('Helga Olkowski'), - ('Paul Grimes'), - ('Michael Kerr'), - ('Amelie Thoma'), - ('Mario Claudio'), - ('Heike Hohlbein'), - ('Meg Pei'), - ('Tucker Malarkey'), - ('Chris Adrian'), - ('Claudia Holzförster'), - ('Kathleen Ragan'), - ('Matt Beaumont'), - ('Cathy Song'), - ('Rick Simonson'), - ('Paula G Allen'), - ('Wendell B'), - ('Christiane Northrup M.D.'), - ('Nellie Wong'), - ('Judith Orloff'), - ('Tim Bascom'), - ('Charles L. Whitfield M.D.'), - ('Denise Caignon'), - ('Gail Grove'), - ('Norman Denny'), - ('Lucie Cheng'), - ('Suellen Cheng'), - ('Judy Chu'), - ('Feelie Lee'), - ('Majo'), - ('Jade Snow Wong'), - ('Kathryn Uhl'), - ('C. F. MacIntyre'), - ('Erving Polster'), - ('Shari Benstock'), - ('Sarah L. Delany'), - ('A. Elizabeth Delany'), - ('A.S. Byatt'), - ('Rennie Airth'), - ('Amer Psychological Association'), - ('Anne Heche'), - ('Gunther Stuhlmann'), - ('Hisaye Yamamoto'), - ('King-Kok Cheung'), - ('Darcey Steinke'), - ('And Lamb'), - ('Leo F. Buscaglia'), - ('Nicola Tauraso'), - ('Asian Women United Of California'), - ('Fretta Reitzes'), - ('Beth Teitelman'), - ('Lois Alter Mark'), - ('Natalie Buske Thomas'), - ('Kate Adie'), - ('Cole Perriman'), - ('Deborah Christian'), - ('John E. Douglas'), - ('Mark Olshaker'), - ('Liz Carpenter'), - ('Sondra Williamson Runnells'), - ('Patrick Samway'), - ('Yogi Berra'), - ('Tom Horton'), - ('James Wright'), - ('Howell Raines'), - ('Hans-Georg Noack'), - ('Fran Wenograd Golden'), - ('Frank B. Gilbreth'), - ('Ernestine Gilbreth Carey'), - ('Mick Fleetwood'), - ('Karen Young'), - ('Kathy Goldring'), - ('Daniel Klein'), - ('Peter David'), - ('Jim Bouton'), - ('Eliot Asinof'), - ('Patricia A. Potter'), - ('Anne Griffin Perry'), - ('Marc Burckhardt'), - ('Kaplan'), - ('Idries Shah'), - ('Hugh Collins'), - ('T. C. Campbell'), - ('Patrick Dunne'), - ('Anna Malyschewa'), - ('Olaf Terpitz'), - ('Anita Mills'), - ('Rosanne Bittner'), - ('Cara Black'), - ('Matt Thorne'), - ('James Pope'), - ('Peter Hedges'), - ('Lana Citron'), - ('Stewart Lee'), - ('Simon French'), - ('Tilman Röhrig'), - ('Alfred Komarek'), - ('Clarissa Ross'), - ('Linda Aber'), - ('Penelope Lively'), - ('Laurent De Brunhoff'), - ('JoEllen Bogart'), - ('National Geographic Society'), - ('Robert Allen'), - ('Michael Morpurgo'), - ('Marianne Macdonald'), - ('Jean Little'), - ('Leoung O''Young'), - ('Zondra Lewis Knapp'), - ('Neal Yamamoto'), - ('Judy Hindley'), - ('Donald Rumbelow'), - ('Colin King'), - ('Eve Bunting'), - ('Ronald Himler'), - ('Neil Dawe'), - ('Karen Dawe'), - ('Margaret Wild'), - ('Anne Spudvilas'), - ('Theodore Geisel'), - ('Millicent Ellis Selsam'), - ('Joyce Hunt'), - ('Harriett Springe'), - ('Deborah Hautzig'), - ('Carolyn Ewing'), - ('Crockett Johnson'), - ('Paulita Sedgwick'), - ('Ludwig Bemelmans'), - ('Frank Muir'), - ('Frank Muir'), - ('Mario Mariotti'), - ('Roberto Marchiori'), - ('Irene Testot-Ferry'), - ('Seymour Reit'), - ('Robert N. Munsch'), - ('Michael Martchenko'), - ('Peter Levi'), - ('M. E. Kerr'), - ('Martha Stewart'), - ('Courtney Cooke'), - ('Judy Press'), - ('Susan Williamson'), - ('Evan Forbes'), - ('Janet Hale'), - ('Cindy Christianson'), - ('Loralyn Radcliffe'), - ('Susie Alexander'), - ('U.S. Catholic Church'), - ('Robin Dellabough'), - ('Beardstown Ladies Investment Club'), - ('Mary Lynn Baxter'), - ('Sara Pitzer'), - ('Ann Benson'), - ('Betty Friedan'), - ('Aram Saroyan'), - ('ï¿1/2mile Zola'), - ('Roger Pearson'), - ('Thomas Walton'), - ('Yankee Magazine'), - ('Jay Heinrichs'), - ('Alice Mattison'), - ('John Fitzgerald'), - ('Donald Sassoon'), - ('Karen Gedig Burnett'), - ('Laurie Barrows'), - ('Doreen Cronin'), - ('Betsy Lewin'), - ('John Lukacs'), - ('Robert Forrest Burgess'), - ('Owen Brookes'), - ('Benjamin Spock M.D.'), - ('Michael B. Rothenberg M.D.'), - ('Maria J. Andrade'), - ('Hebert'), - ('Ferdinando Camon'), - ('Yves Hersant'), - ('Agnes Desarthe'), - ('Jacques Meunier'), - ('Frederic Prokosch'), - ('Hubert Nyssen'), - ('Marcelle Sibon'), - ('Jean-Michel Besnier'), - ('Besnier J.-M.'), - ('Robert Simon'), - ('Sallenav'), - ('Didier Daeninckx'), - ('Raymond Queneau'), - ('Jacques Réda'), - ('Irène Frain'), - ('Jean-Paul Dubois'), - ('René Girard'), - ('Chiflet'), - ('Marina Yaguello'), - ('Georges Perec'), - ('Patrick Chamoiseau'), - ('Rose-Myriam Rejouis'), - ('Val Vinokur'), - ('Jean Ollivier'), - ('Michel De Montaigne'), - ('Andre West'), - ('Ursula Kösters-Roth'), - ('Anne Sexton'), - ('Silvia Morawetz'), - ('José L. Sampedro'), - ('Terry Tillman'), - ('Petra Oelker'), - ('Ina May Gaskin'), - ('Mira Kirshenbaum'), - ('Shari L. Thurer'), - ('Edward C. Whitmont'), - ('Pat Caplan'), - ('Birnbach'), - ('Adam Lee'), - ('Devra Speregen'), - ('Anne M. Raso'), - ('Samuel C. Brownstein'), - ('Mitchel Weiner'), - ('Catherine Mann'), - ('Victoria Bylin'), - ('Elaine Knighton'), - ('Ed Gorman'), - ('Ellen Degeneres'), - ('Robert Kraus'), - ('Paul Galdone'), - ('Jane B. Mason'), - ('Erik Doescher'), - ('Keith R. A. DeCandido'), - ('Charles Tang'), - ('POCKET BOOKS'), - ('Dorien Ross'), - ('Doris Roberts'), - ('Danelle Morton'), - ('Violet Jessop'), - ('John Maxtone-Graham'), - ('Nancy Milford'), - ('Susan J. Douglas'), - ('Charles Reichblum'), - ('Angus J. Kennedy'), - ('Harold Kushner'), - ('Michael Shermer'), - ('Terry Goodkind'), - ('Joe R. Lansdale'), - ('Garthia Anderson'), - ('Robin Hobb'), - ('John Howe'), - ('E.O. Parrott'), - ('Brian Keene'), - ('William F. Nolan'), - ('Jan Dodd'), - ('Simon Richmond'), - ('Tada Taku'), - ('David Waddell'), - ('Andrew Bender'), - ('John Ashburne'), - ('Sara Be'), - ('Dionys Burger'), - ('Caroline Liou'), - ('Marie Cambon'), - ('Alexander English'), - ('Thoma'), - ('Leo N. Tolstoi'), - ('Arthur Luther'), - ('Erich Müller'), - ('August S'), - ('Sibylle Berg'), - ('Colin Wilson'), - ('Edward Guiliano'), - ('John Tenniel'), - ('Giovanni Di Boccaccio'), - ('Albert Wesselski'), - ('R. D. Laing'), - ('Jesse Coulson'), - ('Lord George Gordon Byron'), - ('George Gordon'), - ('T. G. Steff'), - ('Steve Hodel'), - ('Annette Meyer-Prien'), - ('Mia Couto'), - ('Manuel Jorge Marmelo'), - ('Lidia Jorge'), - ('Tess Fries'), - ('Danny Brooks Dalby'), - ('Jerzy Kosinski'), - ('Kim Newman'), - ('Julian Murphet'), - ('Dalton Trumbo'), - ('J.J. Dewey'), - ('Ulrich Wickert'), - ('The Editors Of Rolling Stone'), - ('of Rolling Stone'), - ('Pete'), - ('Bonnie Napoli'), - ('Gary Hamel'), - ('Donald J. Wheeler'), - ('Esther Forbes'), - ('Lynd Ward'), - ('Laurence Yep'), - ('Hergé'), - ('Doug Richardson'), - ('Arthur Slade'), - ('Steven Barnes'), - ('Lawrence J. Magid'), - ('Adam Gopnik'), - ('Joan Hess'), - ('Beatrice Gormley'), - ('John Marsden'), - ('Trudy Krisher'), - ('James Beard'), - ('Arlie Russell Hochschild'), - ('Robert G. Waldron'), - ('Patrick Hart'), - ('Noam Chomsky'), - ('Paul Wilkes'), - ('Marty Minchin'), - ('Joseph Rutt'), - ('Eric Tyson'), - ('Nancy Harmon Jenkins'), - ('Julian Cassell'), - ('Peter Parham'), - ('Dr. Phil McGraw'), - ('Kathryn L. Robyn'), - ('Philip Shelby'), - ('Lou Marinoff'), - ('Janice Novak'), - ('Sogyal Rinpoche'), - ('Patrick Gaffney'), - ('Andrew Harvey'), - ('Gail Sher'), - ('Mary Irish'), - ('Jerry Lynch'), - ('Chungliang Al Huang'), - ('Bell Hooks'), - ('Sunset Pub Staff'), - ('Lynne Gilberg'), - ('Sunset Books'), - ('Kim McMillen'), - ('Alison McMillen'), - ('Wade Rowland'), - ('Nancy Zieman'), - ('Steve Chandler'), - ('Joan Borysenko'), - ('Mary Carroll Nelson'), - ('don Miguel Ruiz'), - ('Ken Milburn'), - ('Don Aslett'), - ('Brian Tracy'), - ('Jaouen'), - ('Jean-Jacques Sempé'), - ('René Goscinny'), - ('Dr. Arnold Arem M.D.'), - ('John Gribbin'), - ('Roland Fleissner'), - ('Linda Buckle'), - ('Paul Kelley'), - ('Susanne Gretter'), - ('Harvey Diamond'), - ('Kay S. Lawerence'), - ('Suzanne Enoch'), - ('Mia Ryan'), - ('Timothy Findley'), - ('John Luther Novak'), - ('Christopher Priest'), - ('Natalia Ilyin'), - ('William L. Shirer'), - ('Winn Schwartau'), - ('John S. Burnett'), - ('David McCullough'), - ('Ovid Demaris'), - ('Robert Douglas Mead'), - ('Jennet Conant'), - ('Iain Gately'), - ('Neil Baldwin'), - ('L. T. C. Rolt'), - ('Lisa Jardine'), - ('Po Bronson'), - ('Robert Buderi'), - ('Robert Reid'), - ('John Gove'), - ('David Carpenter'), - ('Sylvie Matton'), - ('Richard Rayner'), - ('Charles Higson'), - ('Andy McNab'), - ('Winston Graham'), - ('Dan Burstein'), - ('Elizabeth M. Norman'), - ('George R. Stewart'), - ('CLAMP'), - ('Gabrielle Donnelly'), - ('Bjorn Larsson'), - ('Tom Geddes'), - ('Clamp'), - ('Robert L. Forward'), - ('Larissa Lai'), - ('Patricia D. Benke'), - ('Esther Friesner'), - ('Karen Hancock'), - ('Melvin Jules Bukiet'), - ('Else Holmelund Minarik'), - ('Roswitha Quadf'), - ('Tibor Fischer'), - ('Richard Woodman'), - ('Rupert Thomson'), - ('Adam Bagdasariam'), - ('Brad Newsham'), - ('Simon Jenkins'), - ('Peter Bradshaw'), - ('Víctor E. Villaseñor'), - ('Mickey Mantle'), - ('H. Gluck'), - ('John M. Daniel'), - ('Eric Sanvoisin'), - ('Georges Moroz'), - ('Martin Matje'), - ('Robin A. McKenzie'), - ('Pamela Burford'), - ('Harriet Castor'), - ('H. Castor'), - ('Cathy Gillen Thacker'), - ('Howard Weinstein'), - ('Bill McCay'), - ('Eloise Flood'), - ('W. R. Thompson'), - ('Melissa Scott'), - ('Ruth Westheimer'), - ('Barry Strauss'), - ('L. Kate Deal'), - ('John Steven Gur'), - ('V.E. Mitchell'), - ('Ricardo Semler'), - ('Margaret Moore'), - ('Tanya Anne Crosb'), - ('Kat Martin'), - ('Jacquie D''Alessandro'), - ('Jessica R. Feldman'), - ('Chris Economos'), - ('Steve McInturff'), - ('John De Graaf'), - ('David Wann'), - ('Thomas H. Naylor'), - ('Amitav Ghosh'), - ('Sabine Maier-Längsfeld'), - ('Dieter Wellershoff'), - ('Wolf J. Siedler'), - ('Marek Krajewski'), - ('Doreen Daume'), - ('Birgit H. Hölscher'), - ('Maeve Haran'), - ('Irene Nießen'), - ('Lucy Grealy'), - ('Bette Hagman'), - ('Jeffrey Lent'), - ('Joseph A. Citro'), - ('Dr. Jerri Nielsen'), - ('Maryanne Vollers'), - ('A. Walton Litz'), - ('Haywood Smith'), - ('Omar Khayyam'), - ('Alexei Sayle'), - ('P. G. Wodehouse'), - ('Jane Barry'), - ('Kathy Lette'), - ('Jules Hardy'), - ('Mark Reynolds'), - ('Bill Cullen'), - ('Marsha Sinetar'), - ('David Jenkins'), - ('Kenny Dalglish'), - ('Kim Woodburn'), - ('Aggie MacKenzie'), - ('Jan Molby'), - ('Grahame Lloyd'), - ('Simon Kuper'), - ('Magnus Mills'), - ('Margaret Frazer'), - ('Sebastian Stuart'), - ('Stephen Gill'), - ('Rich Hall'), - ('Greg Dinallo'), - ('Cameron Abbott'), - ('Gerri Hill'), - ('Janice Dickinson'), - ('Fiona Kelly'), - ('Mirabel Osler'), - ('H. J. Oliver'), - ('Tania Kindersley'), - ('Griff Rhys Jones'), - ('Robert Leckie'), - ('Tom Sharpe'), - ('Jay Anson'), - ('Melinda Metz'), - ('Roderick Anscombe'), - ('Leon Whiteson'), - ('Judith Merril'), - ('Nancy Kilpatrick'), - ('Don Bassingthwaite'), - ('Robert McCammon'), - ('Dixon'), - ('James M. Henslin'), - ('Gavin De Becker'), - ('Sara Shandler'), - ('Melodie M. Davis'), - ('Patricia Telesco'), - ('Whitecap Books'), - ('Linda Fraser'), - ('Richard Olney'), - ('Denise Lardner Carmody'), - ('John Carmody'), - ('Eric F Goldman'), - ('Lawrence E. Cahoone'), - ('Valerie Ann Worwood'), - ('Paul Davies'), - ('J. C. Polkinghorne'), - ('Theodore J. Nottingham'), - ('Simeon Margolis MD Phd'), - ('Charles Berlitz'), - ('Albert Einstein'), - ('Michael Talbot'), - ('Hildegard Of Bingen'), - ('Bruce W. Hozeski'), - ('Julia Conaway Bondanella'), - ('Mark Musa'), - ('Richard S. Broughton Ph.D.'), - ('Marcus Aurelius Antonius'), - ('the Late A. S. L. Farquha'), - ('Robin Waterfield'), - ('Koren Trygg'), - ('Lucy Poshek'), - ('David Ferry'), - ('Percy Bysshe Shelley'), - ('Isabel Quigly'), - ('A. D. Hunt'), - ('Mary K Pershall'), - ('Melina Marchetta'), - ('Lois Ruby'), - ('Annie Hawes'), - ('Connie Fletcher'), - ('Thomas D. Zweifel'), - ('Karen Ritchie'), - ('James D. Berkley'), - ('Phillip C. McGraw'), - ('Elizabeth Bonner'), - ('Doug Stanton'), - ('Michael Kevin Naselli'), - ('Ray Gordon'), - ('Geoff Garvey'), - ('Mark Ellingham'), - ('Lou Coffey-Lewis'), - ('Nancy Krulik'), - ('Eugene Bradley Coco'), - ('Hardie Gramatky'), - ('Joanne Ryder'), - ('Larry Ross'), - ('Suzanne Lord'), - ('Tracy Kidder'), - ('Barbara Freese'), - ('Lorraine Dopson'), - ('Lisa St. Aubin De Teran'), - ('Miles Morland'), - ('William Least Heat Moon'), - ('Jimmy Burns'), - ('Sue Gee'), - ('Stefanie Kuhn-Werner'), - ('Jan Böthern'), - ('Stefanie Zweig'), - ('Judith Lennox'), - ('Mechtild Sandberg'), - ('Anne Holt'), - ('Susanne Aeckerle'), - ('Cay Rademacher'), - ('Juilene Osborne-McKnight'), - ('Senta Kapoun'), - ('Susan Sloan'), - ('Sibylle Schmidt'), - ('Joseph Kiermeier-Debre'), - ('James Ellroy'), - ('Molly Katz'), - ('Anna Kuhlig-Wilkinson'), - ('Georg Brun'), - ('Erik Gloßmann'), - ('Gloria Ernst'), - ('Charles J. Sykes'), - ('Laverne Harrell Clark'), - ('Keri Hulme'), - ('Jung Chang'), - ('Martha C. Lawrence'), - ('April Henry'), - ('Miss Read'), - ('J.S. Goodall'), - ('Louise Doughty'), - ('Lois Ruskai Melina'), - ('Sheldon Siegel'), - ('Moyra Caldecott'), - ('Julio Cortázar'), - ('Paul Blackburn'), - ('William Monahan'), - ('Robert Girardi'), - ('Allen Morgan'), - ('Brenda Clark'), - ('Stephen R. Bissette'), - ('Thomas E. S'), - ('Todd A. McIntosh'), - ('Laura J. Burns'), - ('Melind'), - ('Christie Golden'), - ('Mel Od'), - ('David Nevin'), - ('C.J. Carella'), - ('James Marsters'), - ('Ryan Sook'), - ('Eric P'), - ('Maura Seger'), - ('Tracy Sin'), - ('Arthur Bloch'), - ('Elizabeth Ayres'), - ('Tom Folley'), - ('Iain Zaczek'), - ('Deirdre O''Day'), - ('Christos Kondeatis'), - ('Sara Maitland'), - ('Gerry Thompson'), - ('Bernard Evslin'), - ('Lyle Stuart'), - ('Theodore Menten'), - ('Tim Evans'), - ('Larry Gonick'), - ('Alice Outwater'), - ('T.G. Henry James'), - ('T.G.H James'), - ('Jeff Barson'), - ('Kr'), - ('Jimmy Carter'), - ('Rick Barba'), - ('David Chong'), - ('Regina Oehler Fultz'), - ('Ellen Weiss'), - ('Bob Krogle'), - ('Michelle Lovric'), - ('Patti Kim'), - ('Marybeth Sparrow'), - ('Denys Cazet'), - ('Susan Hill'), - ('Doug Hart'), - ('Walt Disney Company'), - ('Joanna Weaver'), - ('Mercer Mayer'), - ('Anthony Tallarico'), - ('Roz Denny Fox'), - ('DOLORES /LEE FRENCH'), - ('Dolores French'), - ('Linda Lee'), - ('Teresa Norman'), - ('James C. Hefley'), - ('Marti Hefley'), - ('Rachael F. Heller'), - ('Richard F. Heller'), - ('Rosie Daley'), - ('Michael MacCaskey'), - ('Reed Irvine'), - ('Clara Drechsler'), - ('David Budbill'), - ('Duane P. Schultz'), - ('Schultz'), - ('Tom Lambert'), - ('Wayne Allred'), - ('David Mecham'), - ('Les Roberts'), - ('Stephen Nasser'), - ('Sherry Rosenthal'), - ('Kate Walker'), - ('Jane M. Lindskold'), - ('Otto Penzler'), - ('John Lutz'), - ('Fowler'), - ('George Spelvin'), - ('Chris Van Allsburg'), - ('Elke Pohl'), - ('Thomas R. Schmidt'), - ('Elvira Woodruff'), - ('Nina Kidd'), - ('Catherine Kidwell'), - ('Barney Leason'), - ('Martin H. Greenberg'), - ('Steve Salerno'), - ('William Kennedy'), - ('John Kern'), - ('Richard Doyle'), - ('Timothy B. Benford'), - ('Lucy Maud Montgomery'), - ('Roy W. Poe'), - ('Woman''s Day Editors'), - ('Paul Krassner'), - ('David Bergantino'), - ('Lucasta Miller'), - ('Sue-Ellen Welfonder'), - ('Jeremy Black'), - ('Nancy Atherton'), - ('Ann Goethe'), - ('Holt Mcdougal'), - ('Geoffrey Chaucer'), - ('Nevill Coghill'), - ('Tom Gilling'), - ('Elizabeth Dybell'), - ('Christopher Reeve'), - ('Elizabeth Buchan'), - ('Boris Cyrulnik'), - ('Mireille Cardot'), - ('Nicole-Lise Berheim'), - ('Sirrus Poe'), - ('Sandra Canfield'), - ('Joseph Mugnaini'), - ('Overbeck'), - ('Rita Rudner'), - ('Robert Howard'), - ('Frank Frazetta'), - ('Eden Gray'), - ('Jerry Oltion'), - ('Caroline Sutton'), - ('Bob Greene'), - ('Oprah Winfrey'), - ('Joseph Vargo'), - ('Christine Filipak'), - ('Richard Stark'), - ('Stephen Birmingham'), - ('William J. Palmer'), - ('Patrick Larkin'), - ('Wes Craven'), - ('Darby Conley'), - ('Tracy Chutorian Semler'), - ('Deborah Axe'), - ('Rebecca Smith'), - ('Maggie Gee'), - ('The Editors Of Creative Publishing International'), - ('C'), - ('Ed McBain'), - ('Margaret Coel'), - ('Akif Pirinçci'), - ('Elizabeth Graver'), - ('Julia London'), - ('Kathryn Smith'), - ('Cleo Coyle'), - ('Hannah March'), - ('Anna Maclean'), - ('Elizabeth Mayne'), - ('Orr'), - ('Hannah Howell'), - ('Karen Marie Moning'), - ('Pamela Toth'), - ('Gayle Wilson'), - ('Aimee Thurlo'), - ('Caroline Burnes'), - ('Adrianne Lee'), - ('Annie Kimberlin'), - ('Kathleen Nance'), - ('Tamara Leigh'), - ('Joseph Olshan'), - ('William Congreve'), - ('Jenelle Feyh'), - ('Joseph Maynard Eastman'), - ('EJ Thornton'), - ('Larry Dossey'), - ('Angelica Rose'), - ('Gina Davidson'), - ('Roger Senhouse'), - ('Herma Briffault'), - ('Richard Seaver'), - ('Robert Coover'), - ('Manuel Puig'), - ('Joseph Kanon'), - ('Colman'), - ('Bill Goldberg'), - ('Steve Goldberg'), - ('Carl Von Clausewitz'), - ('Greg Manning'), - ('William Wells Brown'), - ('William Edward Farrison'), - ('Lee J. Painter'), - ('Norman Vincen Peale'), - ('Editors Of Reader''s Digest'), - ('Charles Higham'), - ('Eric Bowman'), - ('Arlene James'), - ('Janice Pennington'), - ('Carlos De Abreu'), - ('Savage'), - ('Mary McBride'), - ('Lizzie Simon'), - ('Lian Frost'), - ('Hans Wilhelm'), - ('CHRISTOPHER FOWLER'), - ('Antonia Fraser'), - ('Garry B. Trudeau'), - ('Rebecca West'), - ('Lisa Grunwald'), - ('Katie Hafner'), - ('John Markoff'), - ('Ph.D. Howard M. Halpern'), - ('Terry Ryan'), - ('Suze Orman'), - ('Thomas A. Critchley'), - ('Deborah Tannen'), - ('Robert J. Wicks'), - ('Lucille Kallen'), - ('Catherine Aird'), - ('Boo King'), - ('A. J. Holt'), - ('Dave Galanter'), - ('Greg Brodeur'), - ('Adib Khan'), - ('R.A. Deckert'), - ('Alma Alexander Hromic'), - ('Angela Henry'), - ('Eleanor H. Porter'), - ('Clive Egleton'), - ('Tim Jeal'), - ('Jasmine Cresswell'), - ('Stephen Cartwright'), - ('Laura Lee Hope'), - ('Gloria Singer'), - ('Rumer Godden'), - ('John Gordon'), - ('Robert Leeson'), - ('Giles'), - ('Beatrix Potter'), - ('Mandy Stanley'), - ('J. McNally'), - ('Roger Knights'), - ('John Cunliffe'), - ('Fiona Pragoff'), - ('A First Book'), - ('DAVID BENNET'), - ('Moira Kemp Mathew Price'), - ('Ladybird Books'), - ('Peter Longden'), - ('Heinz Tophinke'), - ('William Gaddis'), - ('Marcus Ingendaay'), - ('Jan Brogan'), - ('Frank MacCourt'), - ('B. Delores Max'), - ('Joe Weisberg'), - ('J. Baxter Newgate'), - ('Mark Sparky Stensaas'), - ('Rick Kollath'), - ('Trudi Strain Trueit'), - ('Paulette Bourgeois'), - ('Sharon Jennings'), - ('Brenda Clark (I'), - ('D.J. MacHale'), - ('Donna Diamond'), - ('Emily Rodda'), - ('Marc McBride'), - ('Luann Udell'), - ('Randy Hall'), - ('Erik Sherman'), - ('Douglas Stone'), - ('Bruce Patton'), - ('Sheila Heen'), - ('Roger Fishe'), - ('Thom Hartmann'), - ('Edward M. Hallowell (Introduction)'), - ('M'), - ('Janis Abrahms Spring'), - ('Michael Spring'), - ('Elizabeth A. Lynn'), - ('Shawn MacManus'), - ('Collee'), - ('Janet Mills'), - ('Vicki Croke'), - ('Evelyn McFarlane'), - ('James Saywell'), - ('Helen Exley'), - ('Yuzan Daidoji'), - ('Oscar Ratti'), - ('Thomas Cleary'), - ('Meow Tzu'), - ('Michael Kent'), - ('Sarah Flannery'), - ('David Flannery'), - ('Björn Kjellström'), - ('Bob Burns'), - ('Mike Burns'), - ('Michael J. Hunt'), - ('Virginia Beard Morton'), - ('Paul Ware'), - ('Raymond Regh'), - ('Jack Countryman'), - ('Terri Gibbs'), - ('Lesléa Newman'), - ('Trevor Blount'), - ('Bo Fowler'), - ('Justine Davis'), - ('Sophy Burnham'), - ('Grant Taylor'), - ('Diana Abu-Jaber'), - ('Thomas More'), - ('Paul Turner'), - ('Michael Leunig'), - ('Shusha Guppy'), - ('George Negus'), - ('Clare Maxwell-Hudson'), - ('John Campbell'), - ('Melinda Coss'), - ('Stephen Gresham'), - ('Charles Frederick Main'), - ('Mo Hayder'), - ('Richard Yates'), - ('Russ McDonald'), - ('Alexander C. Rae'), - ('Charlotte Russell Johnson'), - ('Suzan-Lori Parks'), - ('Margaret Ball'), - ('John Ennis'), - ('Glen Duncan'), - ('Alfred Lansing'), - ('Barry Unsworth'), - ('Gao Xingjian'), - ('Mabel Lee'), - ('James Morrow'), - ('Sharon E. Heisel'), - ('James J. Fahey'), - ('J. Robert Lennon'), - ('Majgull Axelsson'), - ('Roger Tennant'), - ('Graham Swift'), - ('Judith R. Hendricks'), - ('Jane Juska'), - ('Alison Smith'), - ('Diane Jessup'), - ('Valerie Taylor'), - ('Tania Modleski'), - ('Rick Bragg'), - ('Joelle Fraser'), - ('Kathy Dobie'), - ('Gail Sheehy'), - ('Jennifer L. Leo'), - ('Jessica Maxwell'), - ('Lauralee Summer'), - ('Jeff O''Leary'), - ('Candace Gingrich'), - ('Chris Bull'), - ('Hilda Stahl'), - ('Paul Geiger'), - ('Roger Lea MacBride'), - ('David Gilleece'), - ('Frances Temple'), - ('Ed Little'), - ('Laura Ingalls Wilder'), - ('Jessica Shaver'), - ('Joseph Warren Yoder'), - ('Robbie Branscum'), - ('Julie Brincklo'), - ('Nancy McArthur'), - ('Irene Trivas'), - ('Mary Pope/ Murdo Osborne'), - ('Anthony Chandor'), - ('Al Berto'), - ('Cindy Engel'), - ('Steve Grenard'), - ('J. P. Gosse'), - ('David Attenborough'), - ('Marcia Foy'), - ('Anna Katherine Nicholas'), - ('Desmond Morris'), - ('Barbara Woodhouse'), - ('Dorothy Quelch'), - ('Phyllis Wise'), - ('A. B. C. Whipple'), - ('John T. Burgoyne'), - ('Jeffrey Moussaieff Masson'), - ('Susan McCarthy'), - ('Morgan LLywelyn'), - ('Natalie Babbitt'), - ('Kathryn Lasky'), - ('Sid Fleischman'), - ('Patricia Leitch'), - ('Fred Grove'), - ('Troy Howell'), - ('Marian F. Novak'), - ('Mary Gehr'), - ('Joan Lowery Nixon'), - ('Candy Dawson Boyd'), - ('Xavier Einstein'), - ('Bertrand R. Brinley'), - ('Kathleen Hersom'), - ('Cicely Mary Barker'), - ('Lynn Harnett'), - ('Norma Fox Mazer'), - ('Lillian O''Donnell'), - ('Marilyn D. Anderson'), - ('Mary Stolz'), - ('Leonard Shortall'), - ('Bruce Brooks'), - ('Stephanie Calmenson'), - ('Don Orehek'), - ('Judith Bauer Stamper'), - ('Incorporated Al-Anon Family Group Headquarters'), - ('Tohru Fujisawa'), - ('Ulli Olvedi'), - ('Stephanie Bond'), - ('John E. Hankins'), - ('Patrick Lynch'), - ('Rafael Chirbes'), - ('Dagmar Ploetz'), - ('Anne Cameron'), - ('Nicholas Christopher'), - ('Sailor Jim Johnston'), - ('Andrew J. Robinson'), - ('Irmela Arnsberger'), - ('J. N. M. Wijngaards'), - ('Susan Jeffers'), - ('Patty Aubery'), - ('Nanc'), - ('Gavin Edwards'), - ('Chris Kalb'), - ('Beverley Harper'), - ('Dan Kurzman'), - ('Geoffrey Wolff'), - ('Peter Gethers'), - ('Gary A. Birken'), - ('Dave Hoekstra'), - ('Allegra Goodman'), - ('Carol Muske-Dukes'), - ('Jennifer Belle'), - ('Caryl Phillips'), - ('Emma Donog'), - ('Katherine Russell Rich'), - ('Charlene Sands'), - ('Gervase Phinn'), - ('Leslie A. Fiedler'), - ('Renate Dorrestein'), - ('Andreas Schlüter'), - ('Karoline Kehr'), - ('Fred Hunter'), - ('Carla Damron'), - ('Camille Minichino'), - ('Bob Larson'), - ('T. D. Jakes'), - ('Emilie Barnes'), - ('Jane Rogers'), - ('Barbara Fitzgerald'), - ('Jessica Anderson'), - ('Marjory Davidson'), - ('Beverly S. Martin'), - ('Jill Ba'), - ('Anne Stuart'), - ('Jule McBride'), - ('Emma Richmond'), - ('Elizabeth Bailey'), - ('Greg Cox'), - ('Emily Grayson'), - ('Karen Hughes'), - ('Sandra Steffen'), - ('Monika Curths'), - ('E. A. Proulx'), - ('Jean Chandler'), - ('THOMAS HETTCHE'), - ('Lauren M. Henderson'), - ('Cameron West'), - ('Petra Hammesfahr'), - ('Christian Spiel'), - ('Katja Rohde'), - ('Antoine De Saint- Exupéry'), - ('Elke Wehr'), - ('Johanna Sinisalo'), - ('S.L. Viehl'), - ('Lucile Morrison'), - ('Franz Geritz'), - ('Marisol'), - ('Amulya Malladi'), - ('Margaret Schmidt Hacker'), - ('John Clarke'), - ('Michael Larvey'), - ('Kavita Daswani'), - ('Chitra Divakaruni'), - ('Diane Glancy'), - ('Robert Gerzon'), - ('Klaus Berr'), - ('Christoph Hahn'), - ('Gaby Wurster'), - ('Werner Schmitz'), - ('Angelika Bardeleben'), - ('Sr Pugalenthi'), - ('Michael S Lief'), - ('Ben Bycel'), - ('H. Mitchell Caldwell'), - ('Catherine Lim'), - ('Andrea Chesman'), - ('Daniela E. Schreier'), - ('Arthur Conan'), - ('Sir Doyle'), - ('Nina Berberova'), - ('Tennessee Williams'), - ('Julia Hammond'), - ('Yolanda Joe'), - ('Emily Hendrickson'), - ('Kathy Disanto'), - ('Lynne Perrie'), - ('Ellen Sussman'), - ('Anne Marie Winston'), - ('Bette Ford'), - ('Niall Williams'), - ('Jeanne D''haem'), - ('Wendy Loggia'), - ('Dianne Day'), - ('George Lucas'), - ('Malle Vallik'), - ('Diane Haeger'), - ('Roger Lancelyn Green'), - ('Lotte Reiniger'), - ('Lori Bryant-woolridge'), - ('Craig Hillman'), - ('Kieran Scott'), - ('Elizabeth Skurnick'), - ('Jordan Paul'), - ('Chris Spink'), - ('Earl Proulx'), - ('Isadora Tattlin'), - ('Robin Maxwell'), - ('Jacqueline Harpman'), - ('Carla Cook'), - ('Robyn Sisman'), - ('Miriam E. Nelson'), - ('Judy Knipe'), - ('Katie Schneider'), - ('Anne-Cécile Padoux'), - ('Anna Gavalda'), - ('Franck'), - ('Vautrin'), - ('Wayson Choy'), - ('Miguel Angel Asturias'), - ('Frances Partridge'), - ('Miguel De Cervantes'), - ('Tobias Smollett'), - ('Paul Arden'), - ('Tom Savage'), - ('George V. Higgins'), - ('Helen Colijn'), - ('Pierre Loti'), - ('Hella S. Haasse HAASSE'), - ('Paul Golding'), - ('Franco Ferrucci'), - ('Raymond Rosenthal'), - ('Janet Frame'), - ('Khyentse Rinpoche'), - ('Matthieu Ricard'), - ('Alice Vaara'), - ('Bettie B. Youngs'), - ('Jennifer Youngs'), - ('Philip Rieff'), - ('Karina Moore'), - ('Ian Buruma'), - ('Patricia Matthews'), - ('Clayton Matthews'), - ('Bette Lord'), - ('Charlotte Sanford'), - ('Henry Porter'), - ('Diana Silber'), - ('Robert Ballard'), - ('Leilia Kelly'), - ('Thomas Keech'), - ('Ross Kasminoff'), - ('Ron Handberg'), - ('Jeanne M. Dams'), - ('George Dawes Green'), - ('Dale Furutani'), - ('Victoria Gotti'), - ('Shirley Kennett'), - ('Elizabeth North'), - ('Lisa Vice'), - ('Frank Drake'), - ('Ralph M. McInerny'), - ('Edna O''Brien'), - ('Herbert Gold'), - ('Adèle Geras'), - ('Stewart And Sally Walton'), - ('Mary Sheedy Kurcinka'), - ('Meg O''Brien'), - ('John Simpson'), - ('Ward Just'), - ('Tim Page'), - ('Hans Christian. Anderson'), - ('Marion Philadelphia'), - ('Janine Boissard'), - ('Yossi K. Halevi'), - ('Beatrice Bruteau'), - ('Milton Viorst'), - ('Karla Jay'), - ('Corliss Lamont'), - ('Kate Bornstein'), - ('Betty White'), - ('John A. Buehrens'), - ('Unitarian Universalist Associatio'), - ('Richard T. Kaser'), - ('Lauraine Leblanc'), - ('Mary Kingsley'), - ('Elspeth Huxley'), - ('Peter F. Stevens'), - ('Howard Blum'), - ('Suelette Dreyfuss'), - ('Bernard Lewis'), - ('Peter Shaffer'), - ('Detlev Ullrich'), - ('Joseph Mitchell'), - ('Eike Schönfeld'), - ('Les Martin'), - ('Jane Urquhart'), - ('Benjamin Von Stuckrad-Barre'), - ('Benjamin Von Stuckrad-'), - ('Paul Doherty'), - ('Stephen J. Rivele'), - ('Andy Straka'), - ('Philip R. Craig'), - ('Robert J. Randisi'), - ('H. F. Saint'), - ('Nancy M. Neuman'), - ('Alison Webster'), - ('Deborah Cartmell'), - ('I.Q. Hunter'), - ('Heidi Kaye'), - ('Imelda Whe'), - ('Jane Rule'), - ('Lynne Griffin'), - ('Kelly McCann'), - ('William Robertson'), - ('David Wilkerson '), - ('Albert Gilman'), - ('John Russell Brown'), - ('Russell Fraser'), - ('William H. Matchett'), - ('S. Schoenb'), - ('Reuben Brower'), - ('S. Nagarajan'), - ('Daniel Seltzer'), - ('Barbara Everett'), - ('P. H. Davison'), - ('T. J. B. Spencer'), - ('Walter Brueggemann'), - ('Martha J. Beckman'), - ('John McPherson'), - ('Wendy Wasserstein'), - ('Rachel Chandler'), - ('Kate Clinton'), - ('Chastity Bono'), - ('Billie Fitzpatrick'), - ('Rebecca Ore'), - ('Julie Andrews Edwards'), - ('Sarah Gilbert'), - ('Emmanuèle Bernheim'), - ('Ted Chiang'), - ('Patrick Nielsen Hayden'), - ('Karen Michalson'), - ('Peter Watts'), - ('Peter Taylor'), - ('Susan Fromberg Schaeffer'), - ('Katharine Murray'), - ('Donald S Olson'), - ('Günter W. Kienitz'), - ('Denis Hamill'), - ('Dao Strom'), - ('Gina Mayer'), - ('Jonathan Rice'), - ('Tim Rice'), - ('Paul Gambaccini'), - ('Paul & Tim Rice. Et Al. Gambaccini'), - ('Roger Osborne'), - ('ADRIANA TRIGIANI'), - ('David Hockney'), - ('Nikos Stangos'), - ('Colin Larkin'), - ('Alex Ogg'), - ('Johnny Rogan'), - ('Miranda Sawyer'), - ('Terry Kay'), - ('Sandra Markle'), - ('Mark Robert Rank'), - ('Kenneth Gatland'), - ('Victoria Chancellor'), - ('Roberta'), - ('Robert M Pirsig'), - ('Zlata Filipovic'), - ('William W. Johnstone'), - ('Nava Renek'), - ('Dee Brestin'), - ('Kathy Troccoli'), - ('Marjorie Winn'), - ('Abbot George Burke'), - ('Covert Bailey'), - ('Lewis Gannett'), - ('Alan Brennert'), - ('Kuki Gallmann'), - ('Tom Defalco'), - ('Richard Mason'), - ('Roberto G. Fernandez'), - ('Tadahiko Nagao'), - ('Isamu Saito'), - ('Gustavo Perez-Firmat'), - ('Joanne McClellan Egnor'), - ('Dr. Wayne W. Dyer'), - ('John Norman'), - ('Michele Slung'), - ('Albert Uderzo'), - ('Emma Forrest'), - ('Bill Murphy'), - ('Peter Wood'), - ('G. Eason'), - ('William Least Heat-Moon'), - ('Christobel Kent'), - ('Rosie Thomas'), - ('Maggie O''Farrell'), - ('Sharon Butala'), - ('Paddy Ryan'), - ('Paul Erdman'), - ('Katja M. Werker'), - ('Maryse Wolinski'), - ('Linda Fairstein'), - ('Terry Tempest Williams'), - ('Let''s Go Inc.'), - ('Helga Tiscenko'), - ('Robert Bosnak'), - ('Robert Dessaix'), - ('Susan M. Lark'), - ('Elizabeth Somer'), - ('Robert Stone'), - ('Stanley Karnow'), - ('Gail Evans'), - ('Vickie L. Bane'), - ('Lina Visconti'), - ('Donna May Gibbs Carpenter'), - ('Frank'), - ('Manuel Vázquez Montalbán'), - ('Manuel Vazquez Montalban'), - ('India Knight'), - ('George Hughes'), - ('Steven Levy'), - ('Margaret Lawrence'), - ('Paula Weideger'), - ('Gordon Honeycombe'), - ('Colin Turnbull'), - ('Colson Whitehead'), - ('Harald Gerlach'), - ('Market House Books Ltd.'), - ('Rosalind Fergusson'), - ('Michael D. Hutt'), - ('Thomas W. Speh'), - ('Steven V. Roberts'), - ('Dan Zevin'), - ('Glenn Frankel'), - ('Gilda Radner'), - ('Anne Michaels'), - ('Quint Buchholz'), - ('John Maddox Roberts'), - ('A Oswald'), - ('Juliet Schor'), - ('Betsy Taylor'), - ('Ed Glinert'), - ('Atima Srivastava'), - ('Giò Waeckerlin Induni'), - ('Lisa Scott'), - ('Dagmar Roth'), - ('Sharon Maas'), - ('Amelie Fried'), - ('Sneaky P. Brown'), - ('Carina Klein'), - ('Susan Carroll'), - ('Marcel Bieger'), - ('Eveline Passet'), - ('James Ellison'), - ('Dian Fossey'), - ('Wolfgang Büscher'), - ('Robert Merle'), - ('Christel Gersch'), - ('Gerda Bean'), - ('N.H. Kleinbaum'), - ('Luigi Guicciardi'), - ('Katharina Schmidt'), - ('McDowell Bryson'), - ('Adele Ziminski'), - ('Shifra Horn'), - ('Dalya Bilu'), - ('J. M. Synge'), - ('Tim Robinson'), - ('Lynne S. Schwartz'), - ('Tommy Hays'), - ('Loretta Lynn'), - ('Patsi Bale Cox'), - ('Sidney Poitier'), - ('Gordon MacKenzie'), - ('Paul Grescoe'), - ('Annette DeLore'), - ('John Hughes'), - ('Deirdre Corey'), - ('Lisa Birnbach'), - ('Patricia Marx'), - ('Linda Tschirhart Sanford'), - ('Mary Ellen Donovan'), - ('Charles L. Calia'), - ('Arianna Huffington'), - ('Bill Maher'), - ('Denis Waitley'), - ('Elle Eggels'), - ('Margaret Lee Braun'), - ('Theo Colborn'), - ('Nancy M. Stuart'), - ('Joanne K. Rowling'), - ('Jean-Claude Gotting'), - ('Jean-Françoi'), - ('Emilie Richards'), - ('Miriam Ali'), - ('Outside Magazine Editors'), - ('Nick Thorpe'), - ('Bentley Little'), - ('John Skipp And Craig Spector'), - ('Shaun Hutson'), - ('Jesse Hunter'), - ('Jr.'), - (' Richard Henry Dana'), - ('Thomas Philbrick'), - ('Raisa Gorbachev'), - ('David Floyd'), - ('Helen Hunt Jackson'), - ('J. B. Calchman'), - ('Thalassa Ali'), - ('Stephen Glass'), - ('Pat Mulcahy'), - ('Dorothy Bryant'), - ('Edidt Geever'), - ('Angus Calder'), - ('Marion A. Kaplan'), - ('Nella Larsen'), - ('Thadious M. Davis'), - ('Charles Portis'), - ('Witi Ihimaera'), - ('Jann Mitchell'), - ('Connie Lightner'), - ('Terri Crisp'), - ('Samantha Glen'), - ('Joey Green'), - ('Rod McQueen'), - ('Michael J. Fox'), - ('Margaret Laurence'), - ('B. Alison Weir'), - ('Alison Weir'), - ('Peter Gzowski'), - ('Alvin F. Poussaint'), - ('William K. Hartmann'), - ('Garrett Sutton'), - ('Jonas Ridderstrale'), - ('Kjell Nordström'), - ('Kjell Nordstrom'), - ('Howard Dean'), - ('Dennis Kucinich'), - ('Studs Terkel'), - ('Reverend Al Sharpton'), - ('Karen Hunter'), - ('James Hynes'), - ('Erik S. Rosenaa'), - ('Ted Michener'), - ('Mark Jacobson'), - ('Sarah Zettel'), - ('David Layton'), - ('K. C. Cole'), - ('Daniel Halpern'), - ('Hyemeyohsts Storm'), - ('Edward Blishen'), - ('Brian Wildsmith'), - ('Tessa Bielecki'), - ('Regina Sara Ryan'), - ('Masters'), - ('Russell Grant'), - ('Vicky Emptage'), - ('Gabriel Horn'), - ('White Deer Of Autumn'), - ('Nader E Khalili'), - ('Jalaloddin Rumi'), - ('George Burns'), - ('Jack Gregory'), - ('Carol Drinkwater'), - ('D. H. LAWRENCE'), - ('Mark Schorer'), - ('Celia Barker Lottridge'), - ('Peter Ralph'), - ('Judy Delton'), - ('Blanche Sims'), - ('Tony Goldwyn'), - ('Kate Burton'), - ('Ania Szado'), - ('A. L. Kennedy'), - ('Mary MacCarthy'), - ('Alayne Main'), - ('Alec Ross'), - ('Tabitha King'), - ('Laura Fraser'), - ('David Daiches'), - ('Element Books Ltd.'), - ('Peg Kehret'), - ('Carla Neggers'), - ('Benjamin Zephaniah'), - ('Mary Ann Hoberman'), - ('Deborah Savage'), - ('Lisa Falkenstern'), - ('Cliff Nielsen'), - ('Andrew Eames'), - ('Wendy Boorer'), - ('Andrew A. Rooney'), - ('John Lawrence'), - ('Peter Haining'), - ('David Edmonds'), - ('John Eidinow'), - ('Glenn Yeffeth'), - ('David Gerrold'), - ('Robert Aunger'), - ('Steven Pinker'), - ('John Grafton'), - ('Mort Rosenblum'), - ('Peter Spiegelman'), - ('Allan W. Eckert'), - ('Andrea Barrett'), - ('Elizabeth Sachs'), - ('Barthe Declements'), - ('Christopher Greimes'), - ('Ruth White'), - ('Katherine Ayres'), - ('Sook Nyul Choi'), - ('Fred Graver'), - ('Peggy Woodford'), - ('John Gollings'), - ('Madeleine Bourdouxhe'), - ('Jennifer Bassett'), - ('Andrew Parkin'), - ('P.D. James'), - ('Gaetan Soucy'), - ('David Levien'), - ('Regina McBride'), - ('Abbie Zabar'), - ('Larry Watson'), - ('Paula L. Woods'), - ('Tom Alibrandi'), - ('Bill Wassmuth'), - ('Brenda Peterson'), - ('Steven Owen Godersky'), - ('B. Traven'), - ('Jean P. Sasson'), - ('Suzy Spencer'), - ('Rita Moonsammy'), - ('Yatri'), - ('Lisle'), - (' Robert H Waterman'), - ('Thomas J Peters'), - ('Tom Peters'), - ('Lyndell'), - ('Sir Richard Branson'), - ('R.A. MacAvoy'), - ('J.-P. Mayer'), - ('Ann Martin'), - ('Cameron Judd'), - ('Berniece Rabe'), - ('Harvey Kidder'), - ('Joan Rawlins Biggar'), - ('Kay Salem'), - ('Ken Leebow'), - ('Paul Joffe'), - ('Marty Bucella'), - ('Betty Baker'), - ('Thom Jones'), - ('Dudley Randall'), - ('Floyd'), - ('Wallace Fowlie'), - ('Pearson Education'), - ('Susan Feuer'), - ('Bernadine Healy'), - ('Peter Mcdonough'), - ('Alex Chadwick/ NPR'), - ('Judith Ivey'), - ('Debra Monk'), - ('Dale Hull'), - ('Dave Longaberger'), - ('Tami Longaberger'), - ('Ellis Vidler'), - ('Violet Winspear'), - ('Darryl London'), - ('Joyce Landorf Heatherley'), - ('Richard Dean Rosen'), - ('Peter Abrahams'), - ('Colin Harrison'), - ('Maria Shriver'), - ('Oriah'), - ('Richie Tankersley Cusick'), - ('Nicholas Adams'), - ('Keith Parkinson'), - ('Sarton May'), - ('Lori Foster'), - ('Janelle Dennison'), - ('Jill Jones'), - ('Shana Abe'), - ('Emma Holly'), - ('Gary Brandner'), - ('Linda Ladd'), - ('Jack L. CHALKER'), - ('Patricia Phillips'), - ('Julie Beard'), - ('Laurie McBain'), - ('Andrea Parnell'), - ('Catherine Lanigan'), - ('Jill Barnett'), - ('Stephen Bury'), - ('Marlena De Blasi'), - ('Aliza Sherman'), - ('Gregg Olsen'), - ('Daphne Gottlieb'), - ('Daniel Drennan'), - ('Peg Kerr'), - ('John F. Kennedy'), - ('Gordan Korman'), - ('Rosalind Greenberg'), - ('Elaine St. James'), - ('Laurie Abkemeier'), - ('Richard Eyre'), - ('Linda Eyre'), - ('Jonathan Berent'), - ('Ken Merrell'), - ('Phyllis Gates'), - ('Patricia Briggs'), - ('Holly Lisle'), - ('L.J. Smith'), - ('L. J. Smith'), - ('Larry Dixon'), - ('Larry Elmore'), - ('Ru Emerson'), - ('Ellen Guon'), - ('David Trotter'), - ('Charlotte Mitchell'), - ('Debra Ginsberg'), - ('Josepha Sherman'), - ('Ian J. Burton'), - ('Purple Ronnie'), - ('Teresa Crane'), - ('François Ricard'), - ('François Kérel'), - ('Jack Clifford Smith'), - ('Douglas R. Hofstadter'), - ('Nick Meglin'), - ('Diane Meglin'), - ('Lauren Jarrett'), - ('Lisa Lenard'), - ('Nan Phifer'), - ('Cathy Ann Johnson'), - ('BERNARD POULIN'), - ('Lin Wellford'), - ('Michael Meyer'), - ('Alwyn Crawshaw'), - ('Juliet Bawden'), - ('James Van Praagh'), - ('Maurizio Bongianni'), - ('Stevie Daniels'), - ('D.G. Hessayon'), - ('D.G.'), - (' Dr. Hessayon'), - ('Lois Hole'), - ('Derek Fell'), - ('Debbie Patterson'), - ('Andy Baggott'), - ('Adrian Forsyth'), - ('Laurel Aziz'), - ('Barbara Ganim'), - ('Susan Fox'), - ('Judy Jones'), - ('William Wilson'), - ('Terence Dickinson'), - ('C. W. Metcalf'), - ('Roma Felible'), - ('W. L. Wilmshurst'), - ('Derek Nelson'), - ('Alec Waugh'), - ('Gertrud Wittich'), - ('Friedrich Dürrenmatt'), - ('Björn Larsson'), - ('Jörg Scherzer'), - ('Urs Widmer'), - ('Joan Druett'), - ('Joyce Johnson'), - ('Thomas Nils Lindquist'), - ('Tommy Simpson'), - ('Lisa Hammel'), - ('William Bennett Seitz'), - ('Mary Francis Shura'), - ('Harry Mazer'), - ('Pike'), - ('Ellen Conford'), - ('Cherie Bennett'), - ('Janet Kovalcik'), - ('Carol Keeffe'), - ('Ellen Gunderson Traylor'), - ('John F. Walvoord'), - ('Alpha Staff'), - ('Shelley O''Hara'), - ('James P. Caher'), - ('John M. Caher'), - ('Patricia Waynant'), - ('David Galloway'), - ('Kurt Cobain'), - ('William H. Armstrong'), - ('James Barkley'), - ('Edward P. Jones'), - ('Edmund White'), - ('Deborah Ford'), - ('Olivia Judson'), - ('Catherine Clinton'), - ('Cortney Davis'), - ('Howard Stern'), - ('Kirk Mitchell'), - ('John Stossel'), - ('Starbuck O''Dwyer'), - ('Lori Alvord'), - ('Elizabeth Cohen Van Pelt'), - ('Terry Jones'), - ('Sanyika Shakur'), - ('Monster Kody Scott'), - ('A. J. Orde'), - ('Sheri S Tepper'), - ('Aaron Elkins'), - ('Aaron J. Elkins'), - ('Andrew Tobias'), - ('Jane Bicks'), - ('Milli Nickell'), - ('Gary Land'), - ('Montague Summers'), - ('Kelsey Grammer'), - ('Rose Block'), - ('Delilah Ahrendt'), - ('Michael Kerrigan'), - ('Matt Cohen'), - ('Patricia Jeffery'), - ('Jeff Davidson Jeffrey P.; Davidson'), - ('Margaret Wander Bonanno'), - ('Elena Poniatowska'), - ('Walter Jon Williams'), - ('John Peel'), - ('David R. Olson'), - ('John McCormick'), - ('Bronwyn Williams'), - ('Dominique Lapierre'), - ('Sara Dowse'), - ('Beth Yahp'), - ('Douglas Rushkoff'), - ('Arturo Perez- Reverte'), - ('David Wharry'), - ('Lyndon Baines Johnson'), - ('Michael Jordan'), - ('Susan Beth Pfeffer'), - ('Lynn Gamwell'), - ('Nancy Tomes'), - ('Marie B. Salazar'), - ('Brenda Wilkinson'), - ('Pauline Brown'), - ('Lee Stringer'), - ('J. Dennis Deitz'), - ('Richard Grimes'), - ('Susan Quinn'), - ('Leo Pennanen'), - ('Eric Knight'), - ('Josefa Heifetz'), - ('Torey L. Hayden'), - ('Robin Williams'), - ('Karen A. Signell'), - ('Keith Laumer'), - ('Austin Tappan Wright'), - ('Sherman Alexie'), - ('Flavia'), - ('Colin Higgins'), - ('Erik Weihenmayer'), - ('Tyrone T. Thomas'), - ('Karle Dickerson'), - ('Susan Kenney'), - ('Annette Lévy-Willard'), - ('Georgeson V'), - ('Ursula Markham'), - ('Chogyam Trungpa'), - ('Gene Wolfe'), - ('Robert Llewellyn'), - ('Jacques Lacarrière'), - ('Jack Jones'), - ('Rachel Kaberry'), - ('Amy K. Brown'), - ('David Farland'), - ('Kevin Brooks'), - ('Deborah McDowell'), - ('Roderick MacLeish'), - ('Rainer Maria Rilke'), - ('M.D. Herter Norton'), - ('Daniel Handler'), - ('Lance Gould'), - ('H Roberts Design'), - ('Catullus'), - ('David Mulroy'), - ('Pat Croce'), - ('Bill Lyon'), - ('Richard Price'), - ('Tony Britton'), - ('Ann Powers'), - ('Gwynedd M. Hudson'), - ('David Ambrose'), - ('Edward Hoagland'), - ('Phil Parks'), - ('Phyllis Raybin Emert'), - ('Jael'), - ('Ursula Burkowski'), - ('Christopher Davis'), - ('Ron Nyswaner'), - ('Annie Smith'), - ('Ann Ripley'), - ('Avery Thorne'), - ('Meek'), - ('Sydney Biddle Barrows'), - ('William Novak'), - ('Holger Freese'), - ('Helga Krüger'), - ('Brigitte Wolters'), - ('Mary Mapes Dodge'), - ('Children''s Classics'), - ('Jeannie Sakol'), - ('Rexanne Becnel'), - ('Colleen L. Reece'), - ('Elizabeth Coatsworth'), - ('Michael Viner'), - ('Stefan Rudnicki'), - ('Roger Rees'), - ('Laurie Gwen Shapiro'), - ('Vera Neville'), - ('Marina Zwetajewa'), - ('Heinz G. Konsalik'), - ('Eva-Christiane Wetterer'), - ('Joanne Horniman'), - ('Sa Shan'), - ('Werner Richter'), - ('Betsy Schmitt'), - ('Aeron Clement'), - ('Fabienne Marsh'), - ('Donna Huston Murray'), - ('Johanna Hurwitz'), - ('Terri Fields'), - ('Steinunn Sigurdardóttir'), - ('Coletta Bürling'), - ('Noëlle Châtelet'), - ('Daniel Mason'), - ('Bertolt Brecht'), - ('Harry Mulisch'), - ('Maria Csollány'), - ('Sophokles'), - ('Russell Munson'), - ('Jeannie Ebner'), - ('Robert Schneider'), - ('R. Spill'), - ('Janice Carlisle'), - ('Raymond R. MacCurdy'), - ('Elia Kazan'), - ('Brian Johnston'), - ('Margaret Craven'), - ('Sinclair Lewis'), - ('Frank Kermode'), - ('Deborah Levy'), - ('D.H. Lawrence'), - ('Robin Morgan'), - ('Edmund Rostand'), - ('Mary Clearman Blew'), - ('Pauline Rosenau'), - ('Carolyn McVickar Edwards'), - ('Jonn Mumford'), - ('Thomas Erskine'), - ('Jennifer Lash'), - ('Mel Blanc'), - ('Philip Bashe'), - ('George Dangerfield'), - ('Sam Shepard'), - ('Ludwig Thoma'), - ('Ursula Segebrecht'), - ('Dave Bowler'), - ('Bryan Dray'), - ('Giovanni Bandini'), - ('Verity Campbell'), - ('Virginia Trioli'), - ('Phil Kuntz'), - ('Nancy Snow'), - ('Simon Colvey'), - ('Robert M. Eversz'), - ('Marianne Wood'), - ('Ken Catran'), - ('Helen Hodgman'), - ('Rene Delorm'), - ('Janice Harrell'), - ('Joan Elizabeth Lloyd'), - ('Susan M. Love'), - ('Susan M. Love M.D.'), - ('Karen Lindsey'), - ('Ann Copeland'), - ('Evelyn Rogers'), - ('Sonya Birmingham'), - ('Katherine Sutcliffe'), - ('Kathryn Atwood'), - ('Laura Kinsale'), - ('Yuri Rubinsky'), - ('Ian Wiseman'), - ('Marci Shimoff'), - ('Car'), - ('Mj Rose'), - ('Josephine Hart'), - ('Elizabeth Dewberry Vaughn'), - ('Laura Reese'), - ('Barry Gifford'), - ('Peter Lawrence'), - ('Richard Rosen'), - ('Betty Mahmoody'), - ('Arnold D. Dunchock'), - ('Hans Pfitzinger'), - ('Petra Hrabak'), - ('Rita Seuß'), - ('Grace Gershuny'), - ('Deborah L. Martin'), - ('Diana Wells'), - ('Jacob Ludwig Carl Grimm'), - ('Jacob W. Grimm'), - ('Wilhelm Gri'), - ('Candace Bahouth'), - ('Clay Perry'), - ('Ippy Patterson'), - ('Sara B. Stein'), - ('Andrew Stoker'), - ('Sasha Williamson'), - ('William Warriner'), - ('Maryjo Koch'), - ('Rene Bergh'), - ('Mary Kidd'), - ('Alan Watts'), - ('Nancy Toder'), - ('Sylvia Brownrigg'), - ('Charlotte J. Beck'), - ('Steve Smith'), - ('Alan W. Watts'), - ('John Goldstein'), - ('Manuela Soares'), - ('Celina Spiegel'), - ('Christina Buchmann'), - ('Monica Furlong'), - ('Mark Garland'), - ('Elizabeth Lesser'), - ('Anya Weinstein'), - ('Michael Newton'), - ('Jeremy Tambling'), - ('Hablot K. Browne'), - ('Han Nolan'), - ('Michael Kilian'), - ('Judith Viorst'), - ('Lynn Solotaroff'), - ('Ronald Blythe'), - ('Harold N.'), - (' M.D. Levinson'), - ('Martha Manning'), - ('Ian Irvine'), - ('Leon Garfield'), - ('Baz Luhrmann'), - ('Craig Pearce'), - ('William Sh'), - ('Joanna Russ'), - ('Dwight Yoakam'), - ('Harold Bloomfield M.D.'), - ('Sharon Janis'), - ('Joy Sikorski'), - ('Wu Wei'), - ('Ram Dass'), - ('Karen Casey'), - ('Harpersanfrancisco'), - ('Dave Marsh'), - ('Steve Hagen'), - ('John Bradshaw'), - ('Stephen Fender'), - ('Gail McMeekin'), - ('Marc Gafni'), - ('Jon Kabat-Zinn'), - ('Michael Toms'), - ('Keith Jarrett'), - ('Julia'), - ('Jeffrey E. Young'), - ('Janet S. Klosko'), - ('Aaron T. Beck'), - ('John Chaffee'), - ('Thomas Ayres'), - ('Patricia Lynn Reilly'), - ('Mark Nepo'), - ('John A. Tracy CPA'), - ('Christine Westermann'), - ('Petru Popescu'), - ('Crawford Kilian'), - ('Jack Gaver'), - ('David Copperfield'), - ('William M Thackeray'), - ('Harald Hellmann'), - ('Norman F. Cantor'), - ('Peter Israel'), - ('Lesley Hazleton'), - ('Keith Haviland'), - ('Dina Gray'), - ('Ben Salama'), - ('Jennifer Niederst'), - ('Phillip Giroux'), - ('Bob Beckstrom'), - ('Lance Walheim'), - ('The Edi'), - ('Roland E. Larson'), - ('Bruce H. Edwards'), - ('Robert P. Hostet'), - ('Berlitz Guides'), - ('Isaac Adamson'), - ('Helen Prejean'), - ('L.M. Boyd'), - ('Brian Freemantle'), - ('Mark Arax'), - ('Rick Wartzman'), - ('Armin A. Brott'), - ('Jennifer Ash'), - ('Mick Jackson'), - ('Pierre Boulle'), - ('Timothy Egan'), - ('Julie Hecht'), - ('John Feinstein'), - ('Walter Mercado'), - ('PAUL (ED) ATTERBURY'), - ('Herman J. Viola'), - ('Jan S. Danis'), - ('Carolyn J. Margolis'), - ('Kenneth Copeland'), - ('Gloria Copeland'), - ('James F. Dunnigan'), - ('Clay Reynolds'), - ('Heather MacDonald'), - ('Lauren Steinhauer'), - ('Laura Miller'), - ('Adam Begley'), - ('Daniel J. Boorstin'), - ('James C. Collins'), - ('Jerry I. Porras'), - ('Shunryu Suzuki'), - ('Trudy Dixon'), - ('Richard Baker'), - ('Huston Sm'), - ('Alice Joyce Davidson'), - ('Victoria Marshall'), - ('John Weisman'), - ('Bill Barnes'), - ('Clair Alan Brown'), - ('Eric A. Kimmel'), - ('Jon Goodell'), - ('Kristoffer J. Buquet'), - ('Dorit Bader Whiteman'), - ('Corey Sandler'), - ('Richard Ellis'), - ('Jane Fonda'), - ('Louise Bates Ames'), - ('Frances L. Ilg'), - ('Charlotte Brontï¿1/2'), - ('Margaret Smith'), - ('Moya Costello'), - ('Ellen Kushner'), - ('Faith Conlon'), - ('Ingrid Emerick'), - ('Christina Henry De Tes'), - ('Darryl Reanney'), - ('Louise Fitzhugh'), - ('Richard Shenkman'), - ('Dion Fortune'), - ('Kenneth W. Royce'), - ('Boston T. Party'), - ('Robert Shea'), - ('Robert Anton Wilson'), - ('Monica McInerney'), - ('Ben Jeapes'), - ('Hana Wirth-Nesher'), - ('Clifford A. Pickover'), - ('Joann Morse'), - ('Kerstin Ekman'), - ('Marilyn Pappano'), - ('Mary Balogh'), - ('Hailey North'), - ('Karen Anders'), - ('Kristin Hardy'), - ('Karen Ranney'), - ('Candace Camp'), - ('Michele Albert'), - ('John Roger'), - ('PC LEARNING LAB'), - ('Kristen Britain'), - ('Charles J. Keating'), - ('Jane Resh Thomas'), - ('Lauren Brooke'), - ('Judy Tatchell'), - ('L. Moeri'), - ('Nicholas Edwards'), - ('Janni Lee Simner'), - ('Mike Jahn'), - ('Gorman'), - ('Claire Rudolf Murphy'), - ('Mary Jane Auch'), - ('Judy Richter'), - ('Pam Ryan'), - ('Mary Stanton'), - ('D. Craig'), - ('David Burn'), - ('Cecilia Fitzsimons'), - ('Judy Alter'), - ('Lange Lewis'), - ('Alistair Maclean'), - ('Francesca Stanfill'), - ('Joyce E. Strom-Paikin RN'), - ('H. E. Bates'), - ('William McGivern'), - ('Robert Goddard'), - ('Bruce Nicolaysen'), - ('C. Peterson'), - ('Pricilla Hamilton'), - ('Sanders'), - ('James Martin'), - ('Louis W. Storms IV'), - ('Scott J. Peterson (MCSD MCT)'), - ('Gary J. Nutt'), - ('Wout J Hofman'), - ('Janell Cannon'), - ('Patricia Polacco'), - ('Renee Graef'), - ('David Kirk'), - ('Robert Nisbet'), - ('Sarah Dessen'), - ('Brian Gallagher'), - ('Thomas H. Cook'), - ('Algernon B. Mitford'), - ('Linda Piazza'), - ('Cynthia Blair'), - ('Nicholas Pine'), - ('Robert Browning'), - ('Rick Beech'), - ('Rui Nunes'), - ('Rhidian Brook'), - ('Steven Millhauser'), - ('Eca De Quieros'), - ('Lucy Ellmann'), - ('Jeremy Narby'), - ('Doris R. Meredith'), - ('Jay Winik'), - ('Johanna Ellsworth'), - ('Caroline MacDonald'), - ('Tristine Rainer'), - ('Anaïs Nin'), - ('Darien Cooper'), - ('Ken J. Roberts'), - ('Joyce Rupp'), - ('Jane Pitz'), - ('Mark E. Thibodeaux'), - ('Claire Cloninger'), - ('Evelyn Christenson'), - ('Loretta LaRoche'), - ('Lyn Holley Doucet'), - ('Macrina Wiederkehr'), - ('Paula D''Arcy'), - ('Brian Harper'), - ('Steve Pieczenik'), - ('Charles Mackay'), - ('Janine M. Benyus'), - ('Cindy Stone'), - ('Frances Moore Lappe'), - ('Anna Lappé'), - ('Eva Hoffman'), - ('Declan Kiberd'), - ('Desmond Bagley'), - ('Lynsay Sands'), - ('Robert Kaplow'), - ('Kaori Yuki'), - ('Nina Olligschläger'), - ('Kazushi Hagiwara'), - ('Robert Gernhardt'), - ('Philipp Rippel'), - ('Fatima Igramhan-Parsons'), - ('Jacques Vallee'), - ('Kristen Stagg'), - ('Jesse Lee Kercheval'), - ('Ruth Brown'), - ('Peter Barrett'), - ('Christina Hoff-Sommers'), - ('Cal Thomas'), - ('Laura C. Schlessinger'), - ('Ted Andrews'), - ('Bevarly'), - ('Suzi Golden'), - ('Liz Fielding'), - ('Amy Wallace'), - ('Laura Scribner Kastner'), - ('Jennifer F. Wyatt'), - ('Isabel Stanley'), - ('James Duncan'), - ('Frank McSherry'), - ('Charles Waugh'), - ('Mart'), - ('Michael Levin'), - ('Rosemary Wells'), - ('Joe Dominguez'), - ('Vicki Robin'), - ('Elizabeth Pope'), - ('John Gilstrap'), - ('Stephen Horn'), - ('Jack Olsen'), - ('Joel Porte'), - ('William Poundstone'), - ('Sara Donati'), - ('Laraine T. Zappert'), - ('Christopher M. Byron'), - ('Christopher Down'), - ('Li'), - ('Booth Tarkington'), - ('Tim Sandlin'), - ('Joseph D. Pistone'), - ('Jonathan Baird'), - ('Carol M. Allen'), - ('Tony Strong'), - ('Alistair MacLeod'), - ('John Colby'), - ('Inigo Surguy'), - ('Rudiger Voigt'), - ('Jeffrey Haas'), - ('R. D. Ginn'), - ('Rick Fields'), - ('Peggy Taylor'), - ('Rex Weyler'), - ('Rick Ingrasci'), - ('David Breashears'), - ('Walter Satterthwait'), - ('William Mize'), - ('C. J. Box'), - ('Peter Moore Smith'), - ('Denise Mina'), - ('Ron Franscell'), - ('Amanda Foreman'), - ('David Starkey'), - ('Elizabeth Jane Howard'), - ('Charles Spencer'), - (' Earl Spencer'), - ('Nancy Mitford'), - ('Nancy Singer'), - ('Austin S. Camacho'), - ('Gregg Hurwitz'), - ('Colin Bateman'), - ('Gil Brewer'), - ('E. V. Cunningham'), - ('Gillian Roberts'), - ('Edward Lear'), - ('Stuart R. Kaplan'), - ('Mike Myers'), - ('Sarah Lyddon Morrison'), - ('Joshua Halberstam'), - ('Bruce Porter'), - ('Mark Christensen'), - ('MATSURI AKINO'), - ('Mari Akino'), - ('Kanan'), - ('Sakurako Gokurakuin'), - ('Ken Akamatsu'), - ('Yukito Kishiro'), - ('Byron Preiss'), - ('Masami Tsuda'), - ('Rachel Hawthorne'), - ('Mark Kalesniko'), - ('Reiko Momochi'), - ('Tokyopop'), - ('Rei Idumi'), - ('Tatsuya Hamazaki'), - ('Miwa Ueda'), - ('Dan Papia'), - ('Beverley Birch'), - ('Tony Kerins'), - ('Christopher Hart'), - ('Hinako Ashihara'), - ('Tomoko Taniguchi'), - ('John Burningham'), - ('Barrett'), - ('Storytime Collection Childrens'), - ('Terry Deary'), - ('Barbara Allen'), - ('Philip Reeve'), - ('Dreamworks'), - ('Angela Sommer-Bodenburg'), - ('Amelie Glienke'), - ('Kjartan Poskitt'), - ('Chris Fisher'), - ('Phil Roxbee-Cox'), - ('Sue Hellard'), - ('Alan Gibbons'), - ('Apsley Cherry Garrard'), - ('Anna Wimschneider'), - ('Brigitte Walitzek'), - ('John S Mill'), - ('Michael Sontheimer'), - ('Heinrich Von Kleist'), - ('Helmut Sembdner'), - ('Phyllis D. James'), - ('Marcel Reich-Ranicki'), - ('Richard Zoozmann'), - ('Irma Kurtz'), - ('Craig Smith'), - ('Knut Krüger'), - ('Troy Denning'), - ('Philip; Slattery'), - (' Joan (editor) Pullman'), - ('Joris-Karl Huysmans'), - ('Simon Callow'), - ('George Chapman'), - ('Isabel Alcántara'), - ('Sandra Egnolff'), - ('Catherine Crowe'), - ('Gina Wisker'), - ('Deborah Grandinetti'), - ('David Colbert'), - ('Jarrold Publishing'), - ('Alexander Trocchi'), - ('Judith Herrin'), - ('Roger Highfield'), - ('Carlo Fruttero'), - ('Franco Lucentini'), - ('Richard Taylor'), - ('W. E. B. Griffin'), - ('Rudolf Steiner'), - ('D. Osmond'), - ('J. Collis'), - ('Carlo A. Michelini'), - ('Cate Tiernan'), - ('Matilde Olivella Castells'), - ('Elizabeth Guzmán'), - ('Paloma'), - ('Christopher Kendris'), - ('And The Language Experts At Berlitz'), - ('David A. Van Meter'), - ('Kathy Herman'), - ('Al Roker'), - ('D. J. Donaldson'), - ('Michael H. Brown'), - (' Sir Doyle'), - ('Jeff Coghill'), - ('Eugene C. Kennedy'), - ('Patricia Sargent'), - ('Garson Kanin'), - ('Twain'), - ('Nathan Pritikin'), - ('Al Gore'), - ('Lois And Louis Darling'), - ('Kay Mills'), - ('Susan Sheehan'), - ('Edith Deen'), - ('Ian St.James'), - ('John Buchan'), - ('Roz Levine'), - ('Enid C. King'), - ('Brian Price T'), - ('Harper Collins Publishers'), - ('R. K. Gordon'), - ('Charles S. Carver'), - ('Michael F. Scheier'), - ('Calvin S. Hall'), - ('Vernon J. Nordby'), - ('Michael Kanaly'), - ('Richard H. Green'), - ('Louise Hay'), - ('Janet Kagan'), - ('Colonel David H. Hackworth'), - ('Julie Sherman'), - ('Robert Bramson'), - ('Michele Hall'), - ('Robert Graves'), - ('O. Henry'), - ('Holly Thompson'), - ('Kathleen Givens'), - ('Jim Harrison'), - ('Aramis Thorn'), - ('Nancy Springer'), - ('Gilles Perrault'), - ('Stephen Knight'), - ('Morris L. West'), - ('Jean Plaidy'), - ('Ethel Barrett'), - ('Tracy West'), - ('Keith Batcheller'), - ('Judith Gould'), - ('BH&G Editors'), - ('Simone Simmons'), - ('Peter J. Heck'), - ('Richard Ellmann'), - ('T Cooper'), - ('Wolfgang Schüssel'), - ('Ilon Wikland'), - ('Sheri McGregor'), - ('Jurek Becker'), - ('James Cowan'), - ('Maisie Mosco'), - ('Stan Rapp'), - ('Tom Collins'), - ('Hal Rosenbluth'), - ('David H. Maister'), - ('Eric A. Knudsen'), - ('A. Grove Day'), - ('Robert B. Miller'), - ('Stephen E. Heiman'), - ('Tad Tuleja'), - ('Michael LeBoeuf'), - ('Shiva Naipaul'), - ('James B. South'), - ('William Irwin'), - ('Rob Macgregor'), - ('Gregory Benford'), - ('Elizabeth Castro'), - ('Doris Egan'), - ('Martha Wells'), - ('Pagan Kennedy'), - ('Sherwood Smith'), - ('Leonard Maltin'), - ('Tomie De Paola'), - ('Rising Moon Editors'), - ('Don Hewitt'), - ('Jill Marie Landis'), - ('Hampton Howard'), - ('Velda Johnston'), - ('Howard Cosell'), - ('Peter Bonventre'), - ('Sol Stein'), - ('Regina Kehn'), - ('Heike Schwarzbauer'), - ('Rick T'), - ('Joe Benitez'), - ('Marcia Chen'), - ('David'), - ('Christopher Roden'), - ('Michael Hayden'), - ('Rachael Leigh Cook'), - ('Giovanni Boccaccio'), - ('G. H. McWilliam'), - ('Emilio Salgari'), - ('Alma Maritano'), - ('Luigi Ricci'), - ('Christian Gauss'), - ('Jack Kornfield'), - ('Carr Clifton'), - ('Patricia Wentworth'), - ('Jack Du Brul'), - ('Richard Steinberg'), - ('Rick Bundschuh'), - ('Penny Jordan'), - ('Linda Turner'), - ('James P. McGettigan'), - ('Jan Rogozinski'), - ('Mandy Andress'), - ('Jon Ronson'), - ('Ron Pretty'), - ('W.Gordon Smith'), - ('Alethea Hayter'), - ('Yukio Mishima'), - ('Kathleen Sky'), - ('Sondra Marshak'), - ('Myrna Culbreath'), - ('Kij Johnson'), - ('Kelly Freas'), - ('Tom Kidd'), - ('Karen Rispin'), - ('Eric W. Weisstein'), - ('Albert Ellis'), - ('Robert A. Harper'), - ('Melvin Powers'), - ('Edgar Evans Cayce'), - ('Henry Reed'), - ('Herbert B. Puryear'), - ('Richard I. Abrams'), - ('S'), - ('L. Perry Wilbur'), - ('Webster Kuswa'), - ('Jerry O''Brien'), - ('Jane Roberts'), - ('Donald Thompson'), - ('Phil Donahue & Co.'), - ('Dr. Gene Brewer'), - ('John Schilb'), - ('Elizabeth A. Flynn'), - ('John Clifford'), - ('Jeff Reid'), - ('Lawrence M. Krauss'), - ('Pierre Gripari'), - ('Chris Kitch'), - ('Caroline Myss'), - ('Pociao'), - ('Udo Breger'), - ('B. Kliban'), - ('Aritha Van Herk'), - ('Frances Itani'), - ('Karen Dudley'), - ('Jamie Bastedo'), - ('Alfonso Ortiz'), - ('Alfons'), - ('John R. Dann'), - ('Martin Edic'), - ('Modris Eksteins'), - ('Linnea Due'), - ('Charlene Spretnak'), - ('Michel Tremblay'), - ('John Van Burek'), - ('Bill Glassco'), - ('David Fennario'), - ('Holley Rubinsky'), - ('Barbara Robinson'), - ('Robert Hass'), - ('Edward Bellamy'), - ('Gregory Howard Williams'), - ('Elaine Camp'), - ('Naomi Horton'), - ('Browning'), - ('Edith St. George'), - ('Gousha'), - ('Carol Norris'), - ('Dorothy Ann Bernard'), - ('Elizabeth August'), - ('Tim F. LaHaye'), - ('Dorothy Sayer'), - ('Terris McMahan Grimes'), - ('Katherine Kurtz'), - ('Richard Miniter'), - ('John Cheever'), - ('Catherine Cookson'), - ('Pamela Morsi'), - ('E. Fuller Torrey'), - ('Imraan Coovadia'), - ('Paul Preuss'), - ('Marlo Thomas'), - ('Friends'), - ('Richard Lischer'), - ('Robert Hellenga'), - ('Campbell Soup Company'), - ('Nancy Bell'), - ('Liz Neporent'), - ('Suzanne Schlosberg'), - ('Doug Lipman'), - ('Jack Prelutsky'), - ('Marilyn Hafner'), - ('Ed Rose'), - ('Harlynne Geisler'), - ('Jennifer Justice'), - ('Susan Wilson'), - ('Valerie Marsh'), - ('Patrick K. Luzadder'), - ('Margaret Read MacDonald'), - ('Paul Aurandt'), - ('Pleasant DeSpain'), - ('David Heflick'), - ('Patrick Fraley'), - ('Michael Harrison'), - ('Christopher Stuart-Clark'), - ('Loung Ung'), - ('Nellie Bly'), - ('A.J. Jacobs'), - ('Thomas Norton'), - ('Stephen C. Lundin'), - ('Harry Paul'), - ('John Christensen'), - ('Lynn Abbey'), - ('Dave Duncan'), - ('Murry'), - ('Michael Jensen'), - ('Charles Causely'), - ('M. E. Bradford'), - ('Russell Kirk'), - ('Allen Klein'), - ('Robert H. Bork'), - ('Thomas L. Friedman'), - ('Molière'), - ('Jean Sasson'), - ('Andrew Sanders'), - ('Patricia Crick'), - ('Geoffrey Moore'), - ('Mrs. Mary Rowlandson'), - ('Mary Rowlandson'), - ('Jon Katz'), - ('Brigitta Restorff'), - ('Effie Leland Wilder'), - ('Laurie Allen Klein'), - ('Shauna Singh Baldwin'), - ('Venerable Henepola Gunaratana'), - ('Barbara Quick'), - ('Lori Reid'), - ('Bee Willey'), - ('Irene Radford'), - ('Brian Froud'), - ('Jessica Macbeth'), - ('Naomi Kritzer'), - ('Karleen Koen'), - ('Ann Chamberlin'), - ('Patrick Dunleavy'), - ('Randy Moravec'), - ('Kate Thompson'), - ('Rosalind M. Greenberg'), - ('John Nunneley'), - ('Arnold Stadler'), - ('Angelika Fel A'), - ('Joe Harnell'), - ('Ira Skutch'), - ('T.J. MacGregor'), - ('Joanna Campbell'), - ('Editor And Introduction Burton Raffel'), - ('Ann Bell'), - ('Michelle Caruso'), - ('Nicholas W. Maier'), - ('Rick Ridgway'), - ('Michelle Stacey'), - ('James Bradley'), - ('Kees Van Kooten'), - ('Graham Thomas'), - ('Kim Antieau'), - ('Brian Lumley'), - ('Bud MacFarlane Jr.'), - ('Ray Shannon'), - ('Lee Hoffman'), - ('Lyle Brandt'), - ('L. A. Banks'), - ('Elaine Moore'), - ('Dawn Stewardson'), - ('Michael Mogadam'), - ('Ulrich Bitz'), - ('JILL MANSELL'), - ('William Jeremiah Coughlin'), - ('William Coughlin'), - ('D. W. Buffa'), - ('D.W. Buffa'), - ('Eric Berne'), - ('Tananarive Due'), - ('Alice Koller'), - ('Erin Pizzey'), - ('Emma Gold'), - ('Lawrence'), - ('Sarah Bird'), - ('Jacqueline DeMontravel'), - ('Deborah Smith'), - ('Sandra Chastain'), - ('John Glenn'), - ('Nick Taylor'), - ('Gladys Knight'), - ('Fred J.'), - (' M.D. Epstein'), - ('Elaine Fantle Smimberg'), - ('Asha Bandele'), - ('Genia Wennerstrom'), - ('Robert Frost'), - ('David Bradley'), - ('Dewitt Jones'), - ('Renée Zucker'), - ('Rumiko Takahashi'), - ('Naoko Takeuchi'), - ('Chikako Noma'), - ('Naako Takeuchi'), - ('Sherri Mandell'), - ('Michael Pearce'), - ('Judith Swaddling'), - ('Nancy Kerrigan'), - ('Steve Woodward'), - ('Andrews McMeel Publishing'), - ('Glenn Stout'), - ('The #1 Sports Writer'), - ('Andrew Donkin'), - ('Betty; Salter'), - (' Owen (editor) Cuthbert'), - ('Gillian Chapman'), - ('H. J. Rose'), - ('W. H. D. Rouse'), - ('Ernest Shackleton'), - ('Carl'), - (' Hiaasen'), - ('Moses Hadas'), - ('G. M. A. Grube'), - ('S. Peters'), - ('Karen Meyer'), - ('Spain'), - ('J. Robert King'), - ('K. B. Bogen'), - ('Janny Wurts'), - ('C. Dean Andersson'), - ('Mitchell Graham'), - ('John Helfers'), - ('Elaine Cunningham'), - ('Keith Robar'), - ('Simone Sassen'), - ('Berlin'), - ('Stan Cutler'), - ('Delia Ephron'), - ('Will Lawson'), - ('James Morgan'), - ('Sidney Abbott'), - ('Barbara Love'), - ('Leah Rabin'), - ('Helen Epstein'), - ('Victor Klemperer'), - ('Stephen Graham Jones'), - ('Leila Vennewitz'), - ('P.J. Gearing'), - ('E.V. Brunson'), - ('Thomas Clark'), - ('Bruce Woods'), - ('Peter Blocksom'), - ('Angela Ter'), - ('New York Public Library'), - ('William Noble'), - ('Rick Buda'), - ('Jan Harold Brunvand'), - ('Nevins'), - ('Robert K. Ressler'), - ('Margaret Visser'), - ('Oswald Wynd'), - ('Steven Brust'), - ('Cynthia Rutledge'), - ('Ellen Bass'), - ('Joan Barzilay Freund'), - ('Leigh Keno'), - ('Leslie Keno'), - ('Georges Pérec'), - ('Kenneth Uptegrove'), - ('American College Of Sports Medicine'), - ('ACSM'), - ('David Watmough'), - ('David Magarshack'), - ('David Magarsha'), - ('Jane Hitchcock'), - ('George Konrad'), - ('Phil Farrand'), - ('Joe'), - ('Daniel B. Baker'), - ('Sean O''Brien Strub'), - ('Bill Henning'), - ('Bi'), - ('Isabel Anders'), - ('Sherryl Jordan'), - ('Kelvin Christopher James'), - ('Ann Granger'), - ('Axel Merz'), - ('Michael Stewart'), - ('R. Karl Largent'), - ('Muriel Gray'), - ('Helias'), - ('Salvatore R.a.'), - ('Denise Bombardier'), - ('Dani Sinclair'), - ('Suzanne Ellison'), - ('Robert H. Eisenman'), - ('Katherine Anne Porter'), - ('Harriet Beecher Stowe'), - ('Ruth Hayes'), - ('Wolf Von Lojewski'), - ('William Norris'), - ('Hansjörg Martin'), - ('Margaret Millar'), - ('Bill Hybels'), - ('Lynne Hybels'), - ('Luigi Pirandello'), - ('Sophocles'), - ('Aristophanes'), - ('India Edghill'), - ('Bernhard Straub'), - ('Eric Ambler'), - ('Bruce McCall'), - ('Hanns Peter Karr'), - ('Walter Wehner'), - ('Jane Simmons'), - ('Jürgen Ebertowski'), - ('No Author'), - ('Wolfram Fleischhauer'), - ('Denis Pethebridge'), - ('Dewey Gram'), - ('Earma Brown'), - ('Alzir He'), - ('Richard D. Kellough'), - ('Noreen G. Kellough'), - ('Jane E. Aaron'), - ('Totline'), - ('Susan B. Neuman'), - ('Carol Copple'), - ('Sue Bredekamp'), - ('Nationa'), - ('Lois McCue'), - ('Jula Libonn'), - ('Shirley Raines'), - ('Robert J. Canady'), - ('Judith Schickendanz'), - ('Linda Acredolo'), - ('Susan Goodwyn'), - ('Daniel Avram Richman'), - ('L. Curtis'), - ('Rosalind Charlesworth'), - ('Helen Bee'), - ('Helen Harrison'), - ('Ann Kositsky'), - ('Joan Beck'), - ('Dr. Robert Bucknam'), - ('Barbara Rowley'), - ('B. Blake Levitt'), - ('Benjamin Spock'), - ('Pierre Le Rouzic'), - ('Dell Publishing'), - ('Julie Hagstrom+joan Morri'), - ('Sandi Kahn Shelton'), - ('Princeton Language Institute'), - ('Jay Sylvan Cohen'), - ('Robert Berkow'), - ('Edie Jarolim'), - ('Moira Duggan'), - ('Jeff Perk'), - ('Earl Steinbicker'), - ('Tracey Menges'), - ('Stephen Colwell'), - ('Ann Shulman'), - ('Sheryl Lindsell-Roberts'), - ('William H. Hylton'), - ('David Lambert'), - ('Peter Ward'), - ('Christopher McGowan'), - ('Tom Brown'), - ('Phillip E. Pack'), - ('Jerry Bobrow'), - ('Herbert S. Zim'), - ('Chandler S. Robbins'), - ('Bertel Bruun'), - ('Ar'), - ('Jonathan A. Michaels'), - ('William Pollack'), - ('Cynthia Griffin Wolff'), - ('Michael Murphy'), - ('Akif Pirincci'), - ('A. Mousnier-Lompré'), - ('Howard P. Lovecraft'), - ('H. P. (Howard Philips) Lovecraft'), - ('Jacques Papy'), - ('Simone Lamblin'), - ('Yves Ri'), - ('Eric-Emmanuel Schmitt'), - ('Jim Hougan'), - ('Werner Sikorski'), - ('Rainer Laabs'), - ('Rudy Rucker'), - ('Antoine Volodine'), - ('Raphael Aloysius Lafferty'), - ('Emmanuel Jouanne'), - ('Jacques Barbéri'), - ('Somtow Sucharitkul'), - ('Elisabeth Vonarburg'), - ('Jean-Pierre Harrison'), - ('Arnauld Pontier'), - ('Monika Blaich'), - ('James Houston'), - ('Dutch Sheets'), - ('J. T. L James'), - ('Larry K. Brendtro'), - ('Martin Brokenleg'), - ('Steve Van Bocke'), - ('Greg Giangrande'), - ('Stephanie Clement'), - ('Richard Morris'), - ('John Muir'), - ('Anne Delbee'), - ('Helmut Kossodo'), - ('ARNOLD P. ABBOTT'), - ('Malcolm Lowry'), - ('Marcus J. Borg'), - ('Ian Carr'), - ('Digby Fairweather'), - ('Brian Priestly'), - ('Bryan Appleyard'), - ('Margaret MacMillan'), - ('Richard Holbrooke'), - ('Casey Hampton'), - ('Sarah Turnbull'), - ('Charles Todd'), - ('Echo Heron'), - ('Donea L. Shane'), - ('Lisa Goldstein'), - ('John Edgar Wideman'), - ('P. W. Storm'), - ('Cynthia D. Grant'), - ('Ronald Tierney'), - ('James W. Huston'), - ('Ward Carroll'), - ('Richard Herman'), - ('Brian Haig'), - ('Michael Ridpath'), - ('Avodah K. Offit'), - ('Allan Topol'), - ('Don Passman'), - ('Susan Feldman'), - ('John Krist'), - ('Jon Stewart'), - ('James D. Watson'), - ('Edward De Bono'), - ('P S Rushforth'), - ('Carole Klein'), - ('Brian Lee'), - ('Lisa Alther'), - ('W. Somerset Maugham'), - ('Max Beerbohm'), - ('Erin Hart'), - ('Susan Hillmore'), - ('Gemma Grott'), - ('Robin Pilcher'), - ('Kimberly Willis Holt'), - ('David Rakoff'), - ('Tony Vigorito'), - ('William Harvey'), - ('N. J. Dawood'), - ('Jonathon Lazear'), - ('Wendy Lazear'), - ('David Borgenicht'), - ('Sarah Jordan'), - ('Afi-Odelia E. Scruggs'), - ('Mary Ann McDonald'), - ('Amy Sylvester Katoh'), - ('Shin Kimura'), - ('Yutaka Satoh'), - ('ALEJANDRO DUMAS'), - ('GUILLERMO PIEDRAHITA'), - ('Alejandro Dumas'), - ('N.C. Wyeth '), - ('Ric Edelman'), - ('James M. McPherson'), - ('Richard M. Ketchum'), - ('Allan Haley'), - ('Jeff Carlson'), - ('Glenn Fleishman'), - ('Toby Malina'), - ('Lynn Haller'), - ('Diana Martin'), - ('John Tollett'), - ('Diane Martin'), - ('Mitzi Szereto'), - ('Michael Farquhar'), - ('Roni Jay'), - ('Daniella Chace'), - ('Maureen B. Keane'), - ('David Smith'), - ('Kevin Neary'), - ('Carole Bloom'), - ('Marion Meade'), - ('Michelle Magorian'), - ('Kate Grenville'), - ('Henri Troyat'), - ('Robin; Van Der Vat'), - (' Dan Gardiner'), - ('Gary Jennings'), - ('Howard Shaw'), - ('C.J. McKnight'), - ('Ross Petras'), - ('Kathryn Petras'), - ('Bill Shoemaker'), - ('Leo Giroux Jr.'), - ('Dik Browne'), - ('Nancy K. Robinson'), - ('Monique Bonnet'), - ('Jeffrey Marks'), - ('Jeremy Leven'), - ('Arthur N Schwartz'), - ('Francis Steegmuller'), - ('Joan Stoliar'), - ('Patricia Veryan'), - ('Tanya Anne Crosby'), - ('George Alec Effinger'), - ('Joy Grdnic'), - ('Celeste De Blasis'), - ('Elliot S. Maggin'), - ('Helen Hooven Santmyer'), - ('Stephen Greenleaf'), - ('David Ackroyd'), - ('David Robbins'), - ('Mark Yarnell'), - ('Rene Reid Yarnell'), - ('Richard Poe'), - ('John Milton Fogg'), - ('Christopher Maurer'), - ('Richard Leakey'), - ('Jeffrey Meyers'), - ('Steven Saylor'), - ('Riane Eisler'), - ('Kim Carlson'), - ('Carrie Floyd'), - ('Beppe Severgnini'), - ('Giles Watson'), - ('Christopher G. Moore'), - ('Peter Friedrich'), - ('Arthur L. Burton III (Alb3)'), - ('Lauren Ruth Wiener'), - ('Wiener'), - ('Christin Lore Weber'), - ('Regena Thomashauer'), - ('Stephanie James'), - ('Grace Livingston Hill Library'), - ('Isabella MacDonald A'), - ('Kinley Macgregor'), - ('N. Curtis'), - ('Bradley Trevor Greive'), - ('Patricia A Mckillip'), - ('Perrault'), - ('Virginie Despentes'), - ('Bernard Gagnebin'), - ('Marcel Raym'), - ('Mike Resnick'), - ('Pierre-Paul Durastanti'), - ('Brite'), - ('Michael Resnick'), - ('William Desmond'), - ('Paul Klee'), - ('Thierry Soufflard'), - ('Robert Musil'), - ('Philippe Jaccottet'), - ('Lester Bangs'), - ('John Robert Colombo'), - ('April Wilson'), - ('Dana Reed'), - ('David Wiesner'), - ('Lee Gruenfeld'), - ('Conrad Richter'), - ('James Gurney'), - ('Lisa Potts'), - ('Kate Christensen'), - ('Lewis Burke Frumkes'), - ('Paula Begoun'), - ('Deborah Eisenberg'), - ('Ruth Moose'), - ('Mary Tannen'), - ('Casey Makela'), - ('Kathy Lamancusa'), - ('David Lavender'), - ('David James Duncan'), - ('Patricia Arrigoni'), - ('Nicholas Negroponte'), - ('Roger Fisher'), - ('William L. Ury'), - ('Richard P. Feynman'), - ('A. J McClane'), - ('Richard Berman'), - ('Ella E. Clark'), - ('Ernest H Rosenbaum'), - ('John Donoghue'), - ('James Swain'), - ('Erle Stanley Gardner'), - ('Ben Rice'), - ('Lucretia Walsh Grindle'), - ('Andrea Juno'), - ('V. Vale'), - ('Ralph Leighton'), - ('Edward Hutchings'), - ('John Logue'), - ('Klaus Lambrecht'), - ('Dinka Mrkowatschki'), - ('Leonard Cohen'), - ('Vaclav Havel'), - ('Werner Gross'), - ('Rosa Luxemburg'), - ('Annelies Laschitza'), - ('Georg Adler'), - ('Gerhard Prause'), - ('Tratschke'), - ('Robert Nozick'), - ('Dan Cavicchio'), - ('M. Therese Young'), - ('Miranda Gray'), - ('Ken Carey'), - ('Judith Stamper'), - ('Genevi Stamper'), - ('David Daniel'), - ('Reginald Hill'), - ('Hilary Walden'), - ('William F.'), - (' Jr. Buckley'), - ('Alexandria Ripley'), - ('Rebecca Harding Davis'), - ('Tillie Olsen'), - ('Peggy Rambach'), - ('Le Carre'), - ('R. David Thomas'), - ('Ron Beyma'), - ('Walter Anderson'), - ('Kate Saunders'), - ('Mark Mittelberg'), - ('Margaret M. Kimmel'), - ('Mark Juergensmeyer'), - ('David Wong Louie'), - ('John Ashbery'), - ('James Schuyler'), - ('Bob Schieffer'), - ('Roy Parvin'), - ('Gloria Gaither'), - ('Shirley Dobson'), - ('Russ Flint'), - ('Martha Saxton'), - ('Hysteria Magazine'), - ('Deborah Werksman'), - ('Jill Ker Conway'), - ('Ms. Nancy L. Mace MA'), - ('Dr. Peter V. Rabins MD MPH'), - ('Dr'), - ('Patricia L. Wrede'), - ('Lipman'), - ('Ginny Elkin'), - ('Deborah Coates'), - ('Mary Tyler Moore'), - ('Jim Lehrer'), - ('Karen Duffy'), - ('Jane Pettigrew'), - ('Tamara Traeder'), - ('Carmen Renee Berry'), - ('Carmen Renee Ber'), - ('Stephen Booth'), - ('June Rose'), - ('Terry Southern'), - ('Su Tong'), - ('John Harding'), - ('Nick Redfern'), - ('Andy Roberts'), - ('Nigel Williams'), - ('M. J. Hyland'), - ('Jeremy Poolman'), - ('Daniel Menaker'), - ('Tom McNab'), - ('Diane Mckinney-whetstone'), - ('Nicholas Blincoe'), - ('Ron Liebman'), - ('Dave Davies'), - ('Charles Barkley'), - ('Roy S. Johnson'), - ('Paul Feig'), - ('George B. Addison'), - ('Jack M. Bickham'), - ('Peter Moore'), - ('P. Anthony'), - ('Deborah DEUTSCHMAN'), - ('Walter Velez'), - ('W.S. Milner'), - ('Ray Kurzweil'), - ('Lavyrle Spencer'), - ('Susan Johnson'), - ('R. T. Stevens'), - ('Celia Rees'), - ('Joanna Hershon'), - ('Clarissa Pinkola Estes'), - ('Deborah Copaken Kogan'), - ('Jeannine Kadow'), - ('Christel Wiemken'), - ('Bruce Patterson'), - ('Paul Denham'), - ('Edward E. Kramer & Peter Crowther'), - ('Forrest J. A'), - ('Hilary Masters'), - ('Peter Blauner'), - ('Robert Jastrow'), - ('Gonzalo Lira'), - ('Terry Farish'), - ('Joe McGinniss'), - ('Avery Corman'), - ('Dan G. Stone'), - ('Kenneth J. Harvey'), - ('Colum Mccann'), - ('Anna Murdoch'), - ('Stephen Dixon'), - ('Marci McDonald'), - ('Penny Dale'), - ('Anabel Kindersley'), - ('Barnabas Kindersley'), - ('UNICEF'), - ('Wayne G. Hammond'), - ('Christina Scull'), - ('Leo Lionni'), - ('R. H. W. Dillard'), - ('Betty Mindlin'), - ('Donald Slatoff'), - ('J R R Tolkien'), - ('Andrew Boyd'), - ('Brian Bond'), - ('Owen Beattie'), - ('John Geiger'), - ('Kelley Armstrong'), - ('Time-Life Books'), - ('Time Life Books'), - ('George Perry'), - ('Clive Barda'), - ('David Marples'), - ('David Wright'), - ('Claudia L. Johnson'), - ('Mark Waid'), - ('Carolina Maria De Jesus'), - ('The Main Street Press'), - ('Wilhelm K. Grimm'), - ('Lore S'), - ('Aine O''Connor'), - ('Voltaire - Translated By John Butt'), - ('Cooper'), - ('J.F.'), - ('Christoph Göhler'), - ('Laura Wilson'), - ('Caroline Einhäupl'), - ('Paule Constant'), - ('Helene Karmasin'), - ('Harro Christensen'), - ('Walter Allen'), - ('Ziauddin Sardar'), - ('Bruce Pandolfini'), - ('Josephine Saxton'), - ('Suzanne Weyn'), - ('Allan Zullo'), - ('Roy MacGregor'), - ('Åke Edwardson'), - ('Angelika Kutsch'), - ('Amy Hempel'), - ('J.D. McClatchy'), - ('Jed Gillen'), - ('S. Robinson'), - ('Richard Harrington'), - ('Jack Vance'), - ('Marcus Cunliffe'), - ('William J. Caunitz'), - ('Eric Lustbader'), - ('Tom McGregor'), - ('Donald Hall'), - ('Fitzgerald'), - ('Edward Bloor'), - ('Roy Blount'), - ('Peter De Seve'), - ('Peter De Sève'), - ('Michael Curtis Ford'), - ('Siegfried Berger'), - ('Barbara Freethy'), - ('Diana Diamond'), - ('Chuck Smith'), - ('Chuck'), - (' Jr. Smith'), - ('Eva Ibbotson'), - ('Liselotte Julius'), - ('Angelika Naujokat'), - ('Kai Meyer'), - ('Kensington Ladies'' Erotica'), - ('Roger Shattuck'), - ('Douglas Keith Candland'), - ('Mountaineers'), - ('Peggy Ferber'), - ('Mel Levine'), - ('Meir H. Degani'), - ('Marty Crisp'), - ('David Lubar'), - ('Catherine Daly-Weir'), - ('Dan Greenburg'), - ('Philip K. Howard'), - ('Joseph Barbera'), - ('Dorit Rabinyan'), - ('Daniel Pinkwater'), - ('Charles Williams'), - ('Lynn Freed'), - ('Christopher De Vinck'), - ('Jenny Lee'), - ('Ruth Nanda Ashen'), - ('Ruth N. Anshen'), - ('Jim Kokoris'), - ('Celia Rivenbark'), - ('Connie Briscoe'), - ('R. O. Blechman'), - ('Abba Eban'), - ('Hélène Narbonne'), - ('Jacques Martinache'), - ('Jesse Duplantis'), - ('Mark Chadbourn'), - ('Mary Logue'), - ('George S. Clason'), - ('Michael Laimo'), - ('Al Kelly'), - ('Tamilee Webb'), - ('Lori Seeger'), - ('Stephanie Seymour'), - ('Larry Waschka'), - ('Cynthia Richmond'), - ('Robert Parry'), - ('Laura Wickenden'), - ('Carole Lewis'), - ('Mark L. Prophet'), - ('Emmet Fox'), - ('Stuart Gordon'), - ('Cecelia Ahern'), - ('Elaine Viets'), - ('Peggy Noonan'), - ('Matthew Lesko'), - ('Mary Ann Martello'), - ('C.J. Beck'), - ('Thomas Kinkade'), - ('Katherine Spencer'), - ('Lewis Thomas'), - ('Tom Brannon'), - ('Barbara Gibson'), - ('Lynne Ewing'), - ('Patricia Moyes'), - ('Diana L.'), - ('Alexandra Sellers'), - ('Caroline Cross'), - ('Stephen R. George'), - ('Esther Freisner'), - ('Charles L. Grant'), - ('Simon & Schuster'), - ('Paul Lopez'), - ('Fritz Siebel'), - ('Elizabeth Winthrop'), - ('Stoddard'), - ('Trina Schart Hyman'), - ('Bernard Lorthol'), - ('Roswitha Quadflieg'), - ('Yoshitaka Amano'), - ('Kelley Jones'), - ('Carly Bishop'), - ('Lindsay Mckenna'), - ('Sheila Simonson'), - ('Margaret St.George'), - ('Jill Bennett'), - ('Catherine Gaskin'), - ('Susan Mallery'), - ('Lord Sudley'), - ('Patricia Gardner Evans'), - ('K.C. McKinnon'), - ('Beverly Barton'), - ('Karen Kendall'), - ('Donna Simpson'), - ('David Pickering'), - ('Gwyneth Jones'), - ('Eric H. Warmington'), - ('Philip G. Rouse'), - ('W. H. D.'), - ('Christine Flynn'), - ('Connie Flynn'), - ('Johanna Reiss'), - ('Bill Thomas'), - ('Poppy Z. Brite'), - ('Joan Walsh Anglund'), - ('Assata Shakur'), - ('Angela Davis'), - ('Philip Norman'), - ('James Tate'), - ('Caitlin R. Kiernan'), - ('Theresa Medeiros'), - ('Peter Washington'), - ('Michael Heatley'), - ('The Beatles'), - ('Annie Leibovitz'), - ('Elaine Fox'), - ('Graham Joyce'), - ('Julie Kistler'), - ('Metsy Hingle'), - ('Jo Ann Vest'), - ('Gwynne Forster'), - ('Kathleen Korbel'), - ('Kim Cates'), - ('Kimberly Cates'), - ('Duke'), - ('Elizabeth Duke'), - ('Jessica Steele'), - ('Alan Cackett'), - ('George Saunders'), - ('Eve Gaddy'), - ('Patricia Hagan'), - ('Michael Heslop'), - ('Ron Picarski'), - ('Wayne L. Westcott'), - ('Mark Williams'), - ('Thomas R. Baechle'), - ('Richard A. Clarke'), - ('Zenna Henderson'), - ('Mark Olson'), - ('Priscilla Olson'), - ('Elizabe'), - ('Mariah Stewart'), - ('Susan Alcorn'), - ('Leonard Sanders'), - ('Lois Ehlert'), - ('Virginia Euwer Wolff'), - ('Andrew Weil M.D.'), - ('Jack C. Harris'), - ('Gene Biggs'), - ('Margo Lundell'), - ('Jose Cardona'), - ('Walt Disney Productions'), - ('Melissa Getzoff'), - ('Julie Durrell'), - ('Janet Adele Bloss'), - ('Henry Fielding'), - ('R. P. C. Mutter'), - ('Piero Ferrucci'), - ('Sascha Dönges'), - ('Linda Adams'), - ('Elinor Lenz'), - ('Peter Irons'), - ('Ethan Canin'), - ('Pierre Laurendeau'), - ('Jean-Joseph Julaud'), - ('Hervé Bazin'), - ('Gilbert Pestureau'), - ('Jean-Pierre Renard'), - ('H. G. (Herbert George) Wells'), - ('Herbert George Wells'), - ('Armand Pierhal'), - ('Hugo'), - ('Francis Ledoux'), - ('Herve Bazin'), - ('Beaumarchais'), - ('Pierre Augustin Caron De Beaumarchais'), - ('Jean Markale'), - ('Sara Craven'), - ('Leigh Michaels'), - ('Darcy'), - ('Raye Morgan'), - ('Grace Green'), - ('Jerry Murray'), - ('Jacqueline Diamond'), - ('Lucy Gordon'), - ('Magda Bogin'), - ('Virginia Hamilton'), - ('Eros Keith'), - ('Franz Rottensteiner'), - ('Editor-Peace Corps'), - ('M. I. Finley'), - ('Rex Warner'), - ('David Helvarg'), - ('Tessa Duder'), - ('Erika Friedl'), - ('Andrew Louth'), - ('Maxwell Staniforth'), - ('Elizabeth L. Post'), - ('Michele B. Slung'), - ('Patrick Galvin'), - ('Paul Bacon'), - ('Cheryle B. Torsney'), - ('Eilis Dillon'), - ('Gelsey Kirkland'), - ('Fred Rogers'), - ('Nina Bawden'), - ('Johanna Westerman'), - ('James D. Houston'), - ('Jeanne Wakatsuki'), - ('Hans Urs Von Balthasar'), - ('Graham Harrison'), - ('Eugene H. Peterson'), - ('Ed Kramer'), - ('Steve Brust'), - ('Clive'), - ('Martin Seymour-Smith'), - ('Martin Seymour-'), - ('Marvel Books'), - ('Chris Claremont'), - ('Jean M Auel'), - ('James M. Wall'), - ('Charles E. Rosenberg'), - ('Daniella Gioseffi'), - ('Kathe Kollwitz'), - ('Robert Waterman'), - ('Amy MacDonald'), - ('Sarah Fox-davies'), - ('Jeanne Willis'), - ('Mary Rees'), - ('Heather Amery'), - ('Diana Hendry'), - ('Jane Chapman'), - ('Inga Moore'), - ('Rev. W. Awdry'), - ('Libby Butterworth'), - ('Siobhan Dodds'), - ('Jan Mark'), - ('Helen Oxenbury'), - ('Emma Chichester Clark'), - ('Sally Hunter'), - ('Maggie Kneen'), - ('Eric Hill'), - ('Jean Cocteau'), - ('Jonathan Coe'), - ('Len Wein'), - ('Bruce Jones'), - ('Eugène Ionesco'), - ('Loana Petrucciani'), - ('Rachel Seiffert'), - ('Laurent Vicomte'), - ('Pierre Makyo'), - ('Marie-Raymond Farré'), - ('Michael Bond'), - ('Maurice Hindle'), - ('Christop'), - ('Eiji Yoshikawa'), - ('Emmanuel Carrère'), - ('Pierre Bayard'), - ('Riyoko Ikeda'), - ('D.H. LAWRENCE'), - ('Gabrielle Chamarat'), - ('François Lelord'), - ('Alain Domérieux'), - ('M. Stephen Lukac'), - ('Swami Prabhavanada'), - ('Shaun Gayle'), - ('Élisabeth Gille'), - ('Elizabeth Knox'), - ('Blanche D''alpuget'), - ('Steven Pacey'), - ('Gordon Hutner'), - ('John Banville'), - ('Gillian Rubinstein'), - ('Lee Striker'), - ('Bob Smith'), - ('Mccullough Colleen'), - ('Peter James'), - ('Stuart Atkinson'), - ('Gary Bines'), - ('Ian Jackson'), - ('Anita Roddick'), - ('Blake Morrison'), - ('Frances Coady'), - ('Takashi Matsuoka'), - ('David Zindell'), - ('M. Oliver'), - ('Caroline Hamilton'), - ('Stephen Lawhead'), - ('James McKean'), - ('J. G. Ballard'), - ('Clea Koff'), - ('Maggie Alderson'), - ('Pat Cadigan'), - ('Christy Campbell'), - ('James Runcie'), - ('Mark Burnell'), - ('Patrick White'), - ('Liza Dalby'), - ('Ruth Park'), - ('David Reynolds'), - ('Philip Casey'), - ('Luiz Alfredo Garcia-Roza'), - ('Liu Hong'), - ('Nicole Mones'), - ('Thomas Merton'), - ('Peter Hill'), - ('Adrienne Jansen'), - ('Joe Simpson'), - ('Rande Brown'), - ('Marcos McPeek Villatoro'), - ('Katherine Hall Page'), - ('Tom Park'), - ('James Gleick'), - ('Michael McCall'), - ('Ellen Ullman'), - ('Joann Scheck'), - ('Michael Nouri'), - ('Jordan S.; Gordon'), - (' Gary Rubin'), - ('Nancy Reagan'), - ('Ronald Reagan'), - ('Philip J. Davis'), - ('Shelly Christiansen'), - ('Robin Heath'), - ('Alisa; Harrar'), - (' Sari Bauman'), - ('Claude McKay'), - ('Ararat Iyob'), - ('Judith W. Steinbergh'), - ('Cary Wolinsky'), - ('Christmas Humphreys'), - ('Carroll O''connor'), - ('Marjorie Holmes'), - ('Doris Pozzi'), - ('Jeff Friedman'), - ('Helen Steiner Rice'), - ('Carol Guess'), - ('Annie Ernaux'), - ('Robert Fitzgerald'), - ('Irving Stone'), - ('Nicole Burnham'), - ('Loree Lough'), - ('Crystal Green'), - ('Ellen James'), - ('Julie Leto'), - ('Joleen Daniels'), - ('Jeane Renick'), - ('Peg Sutherland'), - ('Jeff Mariotte'), - ('Pam Binder'), - ('Anne Kelleher'), - ('Elizabeth Massie'), - ('Elizabeth Thornton'), - ('Christina Kingston'), - ('Cindy Harris'), - ('Harbison'), - ('Kenneth C. Flint'), - ('Jan McKee'), - ('Catherine Hart'), - ('Diane Tidd'), - ('Peggy Bechko'), - ('Jessica Hall'), - ('Joanne Bremer'), - ('Lindsay Longford'), - ('Patti Berg'), - ('Harrison Evans Salisbury'), - ('Judy Gill'), - ('Carolyn Greene'), - ('Anne Mather'), - ('Neesa Hart'), - ('Kay Thorpe'), - ('Kimberly Raye'), - ('June Strong'), - ('Selma Eichler'), - ('Debra Webb'), - ('Joy Reed'), - ('Shirl Henke'), - ('Harper Allen'), - ('Charlotte Maclay'), - ('Bruce D. Arthurs'), - ('Donna Schaff'), - ('Karl Marx'), - ('Friedrich Engels'), - ('ダン・デプロスペロ'), - ('ジャッキー・デプロスペロ'), - ('Griffin Publishing'), - ('Klutz Press'), - ('John Taylor Gatto'), - ('Melissa Müller'), - ('Melissa Muller'), - ('Robert Kimber'), - ('Rita K'), - ('Jea Yu'), - ('Professor Peter Singer'), - ('David Ogilvy'), - ('Joy Behar'), - ('Lydia Davis'), - ('Mark C. Baker'), - ('Paul Fussell'), - ('Steven B. Sample'), - ('John Bruer'), - ('Geoffrey Nunberg'), - ('George L. Grice'), - ('John F. Skinner'), - ('Judith S. Wallerstein'), - ('Sandra Blakeslee'), - ('Christopher Bates'), - ('Kenneth Koch'), - ('Kate Farrell'), - ('Robert Bolton'), - ('Siobhan Adcock'), - ('Robert Storey'), - ('Herb Goldberg'), - ('Tuiavii'), - ('Peter C. Cavelti'), - ('Erich Scheurmann'), - ('Roger Love'), - ('Donna Frazier'), - ('Lars-Gunnar Andersson'), - ('Peter Trudgill'), - ('Laurie Bauer'), - ('Nigel Warburton'), - ('Jason Wood'), - ('S. Cannavo'), - ('Jonathan Glover'), - ('Kenneth Wilkinson'), - ('Richard Ford'), - ('Kenneth Cushner'), - ('Richard W. Brislin'), - ('Marti Olsen Laney Psy.D.'), - ('Aaron Asher'), - ('Daniel L. Schacter'), - ('Jean Aitchison'), - ('John Berger'), - ('Robert B. Heilman'), - ('Jean Kilbourne'), - ('Louise DeSalvo'), - ('Ed Zotti'), - ('Eric Maisel'), - ('Charles Wheelan'), - ('Robert Wright'), - ('Ken Foster'), - ('Herbert R. Kohl'), - ('Erving Goffman'), - ('John Caples'), - ('Fred E. Hahn'), - ('Richard Appignanesi'), - ('Ralph Edney'), - ('Jimmie Hill'), - ('Gary A Davis'), - ('Robert Fisher'), - ('Richard W. Paul'), - ('Linda Elder'), - ('Richard Baudians'), - ('Kathlyn Gay'), - ('Cecil Adams'), - ('Michael Swan'), - ('Catherine Walter'), - ('Carl R. Rogers'), - ('H. Jerome Freiberg'), - ('Jon Chandler'), - ('Stuart Timmons'), - ('Sherrie Krantz'), - ('Matt Briggs'), - ('Jack Handey'), - ('Robert Schnelle'), - ('Sappho'), - ('Paul Roche'), - ('David Schiller'), - ('Eric Schiller'), - ('G. K Kasparov'), - ('Luke David'), - ('John Kurtz'), - ('Sandrina Kurtz'), - ('David Milgrim'), - ('Lisa McCourt'), - ('Cyd Moore'), - ('Nina Barbaresi'), - ('Darren McGavin'), - ('Lee Madigan'), - ('Nancy C. Gamble'), - ('Leslie Colvin'), - ('Emma Speare'), - ('American Heart Association'), - ('Pam England'), - ('Rob Horowitz'), - ('Becky A. Bailey'), - ('Richard H. Pitcairn D.V.M.'), - ('Susan Hubble Pitcairn'), - ('Marshall H. Klaus'), - ('Elaine Martin'), - ('Randall Neustaedter'), - ('Deborah Taylor-Hough'), - ('Susan Osborn'), - ('Alison Mack'), - ('Diana West'), - ('Tracy Fitzsimmons'), - ('Pamela Liflander'), - ('James Eade'), - ('David Hooper'), - ('Kenneth Whyld'), - ('Mary Theola'), - ('Mary'), - ('J. Verleye'), - ('Christina M. Anello'), - ('J. E. Lohr'), - ('Ray Hansen'), - ('Jack Moore'), - ('Penny Gentieu'), - ('Norma J. Bumgarner'), - ('Diane Bengson'), - ('Antonia Barber'), - ('P.J. Lynch'), - ('Toni Weschler'), - ('Janet Zand'), - ('Rachel Walton'), - ('Mayo Clinic'), - ('Peggy O''Mara'), - ('Jacqueline Roge'), - ('Jim Talbot'), - ('Bill Adler Jr.'), - ('Peni R. Griffin'), - ('Lucasfilm Ltd.'), - ('Full Cast'), - ('Brett Butler'), - ('Michael P. Kube-Mcdowell'), - ('Mike Mcquay'), - ('Annette Funicello'), - ('Patricia Romanowski'), - ('Tui Sutherland'), - ('Nancy Harrison'), - ('John Tobler'), - ('Jimmy Guterman'), - ('Owen O''Donnell'), - ('John Madden'), - ('Albert Goldman'), - ('Bob Nelson'), - ('Peter Economy'), - ('James Axler'), - ('L. Frank Baum'), - ('Robert Arthur'), - ('Don Pendelton'), - ('Don Pendleton'), - ('Richard Sapir'), - ('Robert Cormier'), - ('Philip Wylie'), - ('Edwin Balmer'), - ('Peter McCabe'), - ('Kin Platt'), - ('Michael Hoeye'), - ('Michelle Groce'), - ('Laura Duis'), - ('Debbi Rawlins'), - ('Harold G. Moore'), - ('Gabriel King'), - ('Mary Frampton'), - ('Dave Anderson'), - ('Laura Malone Elliott'), - ('Terry Lindvall'), - ('Liz Carlyle'), - ('Keyton Weissinger'), - ('Ryan Russell'), - ('Ido Dubrawsky'), - ('FX'), - ('Joe Grand'), - ('Tim Mullen'), - ('Malaclypse The Younger'), - ('Omar Khayyam Ravenhurst'), - ('Elliotte Rusty Harold'), - ('W. Scott Means'), - ('Matt Childs'), - ('Paul Lomax'), - ('Ron Petrusha'), - ('Tim Bunce'), - ('Alligator Descartes'), - ('William Olaf Stapledon'), - ('Olaf Stapledon'), - ('Brad Steiger'), - ('Serge Kahili King'), - ('Eric A. Meyer'), - ('Robert C. Wilson'), - ('Patricia Wrede'), - ('Pamela Sargent'), - ('Jeri Taylor'), - ('Weinhaus Evonne'), - ('Fernando'), - ('Alexei Panshin'), - ('Dave Smeds'), - ('Hilary Ba'), - ('Silverberg'), - ('Susan Schwartz'), - ('Woody Allen'), - ('Will Shetterly'), - ('Ken Keyes Jr.'), - ('Geoffrey Of Monmouth'), - ('A.C. Bhaktivedanta'), - ('Robert E. Vardeman'), - ('Gar Reeves-Stevens'), - ('Patricia Floss'), - ('Linda Frankel'), - ('Victoria Poyser'), - ('Evangeline Walton'), - ('Eugene T. Gendlin'), - ('Sydney J. Van Scyoc'), - ('Lee Correy'), - ('Sonni Cooper'), - ('Lowell Cauffiel'), - ('Alan H. Cohen'), - ('James H. Schmitz'), - ('Daniel Oran'), - ('Neil Mcmahon'), - ('Robert W. Finkel'), - ('Carol Cirulli Lanham'), - ('Richard Platt'), - ('Ashley Montagu'), - ('Marilyn Levy'), - ('Baine Kerr'), - ('Ann Louise Gittleman'), - ('Christina Scott-Moncrieff'), - ('Suzanne Somers'), - ('Cynthia Holzapfel'), - ('Cynthia Nofziger'), - ('Zhi Gang Sha'), - ('Debbie Ford'), - ('Edita M. Kaye'), - ('Gary David Bouton'), - ('Barbara Mancuso Bouton'), - ('Fritz Leiber'), - ('Judy Mazel'), - ('Rob Byrnes'), - ('Victor Jones'), - ('Marc Edmund Jones'), - ('Richard Hughes'), - ('Chretien (translated By W. W.Comfort) DeTroyes'), - ('Gillian E. Hanscombe'), - ('Jackie Forster'), - ('Ruth Falk'), - ('Kathleen Barry'), - ('Susan Powter'), - ('Merrill F. Elias'), - ('etc.'), - ('Russell Allen. Stultz'), - ('Lee Salk'), - ('Bill Mauldin'), - ('June Sochen'), - ('Nancy Wainer Cohen'), - ('Lois J. Estner'), - ('Mcgoldrick Et Al.'), - ('Monica McGoldrick; Joe Giordano;'), - ('William B. Sanders'), - ('Shelley Singer'), - ('Lynn Witt'), - ('Sherry Thomas'), - ('Daniel Harris'), - ('Richard Kot'), - ('Tad Richards'), - ('Neale S. Godfrey'), - ('James W. Green'), - ('Sonia Johnson'), - ('Nikolai Tolstoy'), - ('Vincent Murano'), - ('Robert A. Goldberg'), - ('Adrianne Blue'), - ('Paul Reidinger'), - ('Boris Vallejo'), - ('Estaban Maroto'), - ('Parke Godwin'), - ('William W.crain'), - ('Edwards'), - ('Stanley Cohen'), - ('Penny Armstrong'), - ('Steve Fabian'), - ('Mikael Nordfors'), - ('Peter McWilli'), - ('Roger Elwood'), - ('Sally Miller Gearhart'), - ('Anne. McCaffrey'), - ('M.S. Murdock'), - ('Richard Monaco'), - ('Harve Bennett'), - ('Rowena Morrill'), - ('Vonda N. McIntryre'), - ('Phyllis Ann Karr'), - ('Patricia Campbell Hearst'), - ('Mary Glatzle'), - ('Don W. Weber'), - ('Charles Bosworth Jr.'), - ('Richard Shears'), - ('Carol Gino'), - ('Elizabeth Morgan'), - ('Kevin McCarthy'), - ('David Silva'), - ('Pamela Townley'), - ('Richard Bowker'), - ('Robert S. Blum'), - ('L. L. Greene'), - ('Andrew M Greeley'), - ('Janet Morris'), - ('Eileen Lottman'), - ('Thomas F. Monteleone'), - ('Russ Martin'), - ('Donald E. McQuinn'), - ('Tanith Lee (inner)'), - ('Michael Whelan (cove'), - ('David SHOBIN'), - ('M Piercy'), - ('Evan H. Rhodes'), - ('Bob Randall'), - ('Emma Tennant'), - ('Random House'), - ('Leo Calvin Rosten'), - ('Madeena S. Nolan'), - ('Andrew Neiderman'), - ('Kenneth Klein'), - ('Pocket'), - ('Rosemary Kirstein'), - ('Glen A. Larson'), - ('Robert Thurston'), - ('Deborah Turner Harris'), - ('Roderick; Roderick MacLeish MacLeish'), - ('David Shobin'), - ('Rosamond Smith'), - ('Francine P. Pascal'), - ('Meaney Dee Morrison'), - ('Joan Wilder'), - ('Shannon Lewis'), - ('Robert Littell'), - ('G. William Domhoff'), - ('Florence Haseltine'), - ('Edward O. Wilson'), - ('David Payne'), - ('Flora Rheta Schreiber'), - ('Joyce Armor'), - ('Gerald Seymour'), - ('Glade Curtis'), - ('Katie Tamony'), - ('Barbara Canida MD'), - ('Anna Lee Waldo'), - ('Gene Weingarten'), - ('Marc Ian Barasch'), - ('Caryle Hirshberg'), - ('M.D. Larry Dosse'), - ('Nicholas Meyer'), - ('Joshua Quittner'), - ('Michelle Slatalla'), - ('Michael Prescott'), - ('David Lindsey'), - ('Seth Mcevoy'), - ('Ian Caldwell'), - ('Dustin Thomason'), - ('Meynell'), - ('L.A. Graf'), - ('Jack Hopkins'), - ('Eric Lloyd Wright'), - ('Harvey R. Greenberg'), - ('Kathleen Tynan'), - ('Joanne Greenberg'), - ('Eric Frank Russell'), - ('Maxine Rose Schur'), - ('Nancy Niles'), - ('Robert Grace'), - ('Polly Athan'), - ('Jodi Evert'), - ('Jeanne Thieme'), - ('Carolyn Meyer'), - ('Janie Jasin'), - ('Pam Kurtz'), - ('Checkerboard Press'), - ('Patricia Lee Gauch'), - ('Elise Primavera'), - ('Anne Mortimer'), - ('Susan Meddaugh'), - ('Vance H. Trimble'), - ('David Gaadt'), - ('C. F. Payne'), - ('Susan Adler'), - ('HAL CLEMENT'), - ('Neal Shusterman'), - ('Jamie Simons'), - ('Robert Rooney'), - ('Mortimer J. Adler'), - ('Christopher Omartian'), - ('Amanda Omart'), - ('Gary Jacobsen'), - ('Marilyn Brown Oden'), - ('Marvin Minsky'), - ('Suzanne Jones'), - ('Jacki Lyden'), - ('Martha Sacks'), - ('Jack E. Davis'), - ('James Bryan Smith'), - ('David Mullins'), - ('Brennan Manning'), - ('Mark H. Osmun'), - ('David Paige'), - ('Joe L. Wheeler'), - ('B. B. King'), - ('David Ritz'), - ('Billy Sprague'), - ('Marjorie Garber'), - ('Ken Stanton'), - ('Charles A. Lindbergh'), - ('Keith Kay'), - ('Donna Erickson'), - ('David LaRochelle'), - ('J.F. Federspiel'), - ('Karen Hull'), - ('Charles M. Sheldon'), - ('Patsy Clairmont'), - ('Gwen Ellis'), - ('Pat Widmer'), - ('Twila Paris'), - ('Starla Paris Novak'), - ('Jim Cymbala'), - ('Dean Merrill'), - ('Philip Gonzalez'), - ('Leonore Fleischer'), - ('Cindy Holby'), - ('Adele Griffin'), - ('Peter V Orullian'), - ('Jim Conway'), - ('John Reynolds Gardiner'), - ('Greg Hargreaves'), - ('Carla Dijs'), - ('Jerry Smath'), - ('Q. D. Leavis'), - ('Charles Swindall'), - ('Erich Karkoschka'), - ('Paul Robert Walker'), - ('Billy Graham'), - ('Virginia J. Ruehlmann'), - ('Jack Brou'), - ('Marti Watson Garlett'), - ('Anne Christian Buchanan'), - ('Steve McCurry'), - ('Jenny Davidson'), - ('Diana Shaw'), - ('Earl Mac Rauch'), - ('Thomas Lewis'), - ('Richard Lannon'), - ('Fari Amini'), - ('Saul; Saul Bellow Bellow'), - ('Rick Foster'), - ('Sefra Kobrin Pitzele'), - ('Julia Whitty'), - ('Robert W. McChesney'), - ('Richard Emil Braun'), - ('Charles D. Hayes'), - ('Robert Langbaum'), - ('Alvin Kernan'), - ('F. James Davis'), - ('Lillian B. Rubin'), - ('Ruby Cohn'), - ('Bapsi Sidhwa'), - ('R. W. Scholes'), - ('Shashi Tharoor'), - ('Edward Kasner'), - ('James Roy Newman'), - ('Murasaki Shikibu'), - ('Kencho Suematsu'), - ('Lyanda Lynn Haupt'), - ('Alice S. Rossi'), - ('John Suiter'), - ('Leslie Alan Horvitz'), - ('Seppo Ed Farrey'), - ('Nancy O''Hara'), - ('Sandra Haldeman Martz'), - ('Jenny Joseph'), - ('Unspecified'), - ('Deborah Gray White'), - ('David Hunt'), - ('Robie Macauley'), - ('George Lanning'), - ('James Robert Milam'), - ('Katherine Ketcham'), - ('Rebecca Woolis'), - ('Rod Colvin'), - ('Vernon E. Johnson'), - ('Pierre Laszlo'), - ('Mary Beth Mader'), - ('Don Marquis'), - ('Mary A. McDougall'), - ('John A.'), - (' M.D. McDougall'), - ('Stephanie Vaughn'), - ('Thrity Umrigar'), - ('U.S. Department Of Labor'), - ('Jennifer Louden'), - ('Cynthia Alvarez'), - ('Fran Gare'), - ('William Wright'), - ('Alvin Moscow'), - ('Dershowitz'), - ('Jose Maria Parramon'), - ('Liz Doyle'), - ('The Spice Girls'), - ('Mary Casanova'), - ('Jean-Paul Tibbles'), - ('Jon Bellini'), - ('William Stadiem'), - ('Noel Behn'), - ('Anna Akhmatova'), - ('Max Hayward'), - ('Stanley Kunitz'), - ('René Milot'), - ('Diane Zak'), - ('Jean Wells'), - ('Thomas McNally'), - ('Marilyn Yalom'), - ('G. S Graber'), - ('Susan Faludi'), - ('Victoria Griffin'), - ('Langenscheidt Publishers'), - ('Jane Addams'), - ('Victoria Bissell Brown'), - ('M. H. Abrams'), - ('Carol Hymowitz'), - ('Robert Burns'), - ('Mark Antonacci'), - ('Ian Jack'), - ('Craig Buck'), - ('Max I. Dimont'), - ('Robin Hemley'), - ('Joyce Egginton'), - ('Barracl'), - ('Geoffrey Barraclough'), - ('Times Books'), - ('Edgar Johnson'), - ('Gerrald M. Knox'), - ('The Vanessa-Ann Collection'), - ('Joyce Aiken'), - ('Heini Gruffudd'), - ('Miles Hewstone'), - ('Wayne A. Lesko'), - ('Wayne Lesko'), - ('Edmund J. Bourne'), - ('Kyoko Mori'), - ('Scott McNeely'), - ('Marcia Yudkin'), - ('K. Jerben'), - ('O.E. Rolvaag'), - ('Lincoln Colcord'), - ('Brian Greene'), - ('Michael D''Antonio'), - ('Bittinger'), - ('Beecher'), - ('William H. Chafe'), - ('A Redemptorist Pastoral Publication'), - ('Charlene Altem'), - ('Andrew O''Hagan'), - ('Alexander Solzhenitsyn'), - ('Michael Glenny'), - ('Lila Abu-Lughod'), - ('Raisa Orlova'), - ('Samuel Cioran'), - ('George Bull'), - ('Pierre Wolff'), - ('Ignatius'), - ('William'), - (' S.J. Reiser'), - ('Michael Grant'), - ('Bruce Grant'), - ('Clark Walter Van Tilburg'), - ('Francis Fernandez'), - ('Hans Peter Richter'), - ('Stanley Thornes'), - ('Edward A. Baldwin'), - ('Stevie Baldwin'), - ('William G. Hynes'), - ('John Webster'), - ('Fred B. Millett'), - ('Sigrid Undset'), - ('Charles Archer'), - ('Richard P. McBrien'), - ('John Davies'), - ('Ivan Morris'), - ('Karen V. Kukil'), - ('J. V. Beckett'), - ('Ross Terrill'), - ('Han Suyin'), - ('Gordon A. Craig'), - ('James S. Olson'), - ('Robert D. Marcus'), - ('David Burner'), - ('David Loades'), - ('Fatima Mernissi'), - ('Thomas'), - (' Sir'), - (' Saint More'), - ('Gerard Wegemer'), - ('Clarence H.'), - ('Stephanie Nelson'), - ('Vasant Joshi'), - ('J. P Kenyon'), - ('J. J. Scarisbrick'), - ('Katherine Wei'), - ('Terry Quinn'), - ('Diana Souhami'), - ('Barbara Olson'), - ('Velma Barfield'), - ('Beck Weathers'), - ('Shusaku Endo'), - ('William Johnston'), - ('Anna Gekoski'), - ('Richard Wright'), - ('Hannah Arendt'), - ('Katherine Sturtevant'), - ('Richard Hofstadter'), - ('S. P. Somtow'), - ('Antony Beevor'), - ('Lillian Hellman'), - ('Hsi-Sheng Chi'), - ('Hsi-Sheng Ch''I'), - ('Tim Cockey'), - ('Allen D. Bragdon'), - ('David Gamon'), - ('B. Ransom'), - ('Patrick Quillin'), - ('Hillary Rodham Clinton'), - ('Alejandro Jodorowsky'), - ('Jason Starr'), - ('Jean Rouaud'), - ('Carina Von Enzenberg'), - ('Hartmut Zahn'), - ('Stuart Harrison'), - ('Teja Schwaner'), - ('Lion Feuchtwanger'), - ('Robert Carter'), - ('Andrei Makine'), - ('Holger Fock'), - ('Sabine Müller'), - ('Dagoberto Gilb'), - ('Diana Norman'), - ('Gregor Seferens'), - ('Irene Dische'), - ('Angela Praesent'), - ('Susanna Rademacher'), - ('Helen Humphreys'), - ('Stephanie Schaffer-de Vries'), - ('Philip Jose Farmer'), - ('N. Gaiman'), - ('Mike Peters'), - ('Deborah Chester'), - ('Yuu Watase'), - ('Carol Sonenklar'), - ('Jane Sughrue Giberga'), - ('H. S. Bennett'), - ('Rebecca Bloom'), - ('Meggin Cabot'), - ('Leslie Lehr Spirson'), - ('Jim Heynen'), - ('Kathy Warriner'), - ('Marian Morash'), - ('Kit Pearson'), - ('John Skoyles'), - ('Jennifer Haigh'), - ('Jane Gardam'), - ('Wendell Minor'), - ('Jack Gantos'), - ('Daniel Cohen'), - ('Lorri Hewett'), - ('Audrey Couloumbis'), - ('Allan Gurganus'), - ('Augusta Trobaugh'), - ('Lewis Libby'), - ('Molly Moynahan'), - ('Linda Conway'), - ('Marion Cunningham'), - ('Donnie Cameron'), - ('Jean Ferris'), - ('Alexandra Parsons'), - ('Evie Safarewicz'), - ('Marjorie Leet Ford'), - ('Melissa Pritchard'), - ('Karen Brichoux'), - ('Lynn Messina'), - ('Bernard Glassman'), - ('Monique Mandali'), - ('Michael Covino'), - ('Liezel Norval-Kruger'), - ('Tina Marie Malherbe'), - ('Richard Lagravenese'), - ('Elizabeth Chan'), - ('Symeon Shimin'), - ('Donna Pacinelli'), - ('Edite Kroll'), - ('Stacy Cretzmeyer'), - ('Beate Klarsfeld'), - ('Michael Leapman'), - ('David A. Adler'), - ('Amer Assoc Of Colleges Of'), - ('Patrick Jennings'), - ('Clare Bell'), - ('Hannah McCouch'), - ('Sally Prue'), - ('Theodore J Miller'), - ('Timothy J. Penny'), - ('Major Garrett'), - ('Lynda Curnyn'), - ('Dia Calhoun'), - ('Letty Cottin Pogrebin'), - ('Hillary Frank'), - ('Florence Graham'), - ('Maryln Schwartz'), - ('Anna Leonowens'), - ('Nora Raleigh Baskin'), - ('Helen Lester'), - ('Lynn Munsinger'), - ('Christine Herman Merrill'), - ('George E. Stanley'), - ('Salvatore Murdocca'), - ('Stephen Cumbaa'), - ('Kim La Fave'), - ('Merebeth Switzer'), - ('Landoll'), - ('Marjorie Weinman Sharmat'), - ('Marc Simont'), - ('Jean Davis Callaghan'), - ('Florie Freshman (Illustrator)'), - ('Julie Brinckloe'), - ('Daniel J. Hochstatter'), - ('Christina Bartolomeo'), - ('Emanuela Stucchi Prinetti'), - ('Chuck Wil'), - ('Alonzo Kimball'), - ('Husain Haddawy'), - ('Muhsin Mahdi'), - ('Jacky Robinson'), - ('Paul Milliner'), - ('Ann Howard White'), - ('Janice Kaiser'), - ('Anne Marie Duquette'), - ('Vella Munn'), - ('Elizabeth Craig'), - ('Ann Landers'), - ('Carolyn Hougan'), - ('Arlene Monk'), - ('Charlotte Agell'), - ('Peter Dickinson'), - ('Angela Johnson'), - ('Kamil Vojnar'), - ('Carol Goodman'), - ('Erica Orloff'), - ('Helen Ellis'), - ('David Huddle'), - ('Mavis Kaye'), - ('Marc Aronson'), - ('Alice Turner Curtis'), - ('Alice Curtis'), - ('Betty Groff'), - ('Jane Moore'), - ('Bill Grossman'), - ('Ruth Heller'), - ('Sandra Marton'), - ('Carey'), - ('Jennifer Taylor'), - ('Lydia Burke'), - ('Jenna Ryan'), - ('Norman Kolpas'), - ('Allan'), - ('Betsy Howie'), - ('David Cunningham'), - ('Lisa Cach'), - ('Diane Milliken'), - ('Alan Brown'), - ('Cathy Yardley'), - ('James Carville'), - ('Eleanor Berman'), - ('Carolyn Coman'), - ('David Amsden'), - ('Suzanne Finnamore'), - ('Erin Gobragh'), - ('Catharine O''Neill'), - ('William F. Weld'), - ('L. F. Hoffman'), - ('Yu Lu'), - ('Lu Yü'), - ('Demi Hitz'), - ('Francis Ross Carpenter'), - ('Consumer Guide Editors'), - ('Joan Abelove'), - ('Michael Cadnum'), - ('Jane Goldman'), - ('Cynthia Hartwick'), - ('Sarah-Kate Lynch'), - ('Abigail Stone'), - ('Vicki Leon'), - ('Cecily Von Ziegesar'), - ('Kristin McCloy'), - ('Maxine Combs'), - ('Andes Hruby'), - ('Janelle Denison'), - ('Ruth L. Ozeki'), - ('Ed.by Christina Kline'), - ('Dyan Sheldon'), - ('Lee Iacocca'), - ('Marcia Chellis'), - ('Lynne Hinton'), - ('Jane Bryant Quinn'), - ('Marcia Stubbs'), - ('Diane Wood Middlebrook'), - ('Elizabeth Kuster'), - ('Kate Bernheimer'), - ('Paula Boock'), - ('Melissa De La Cruz'), - ('Kim DeMarco'), - ('Jonathan Hull'), - ('Patricia Hausman'), - ('Judith Benn Hurley'), - ('Rebbecca Ray'), - ('Vera B. Williams'), - ('Laura Caldwell'), - ('Don Williams'), - ('Charles Dickens'), - ('James Wolcott'), - ('David Herbert Donald'), - ('Caroline Hwang'), - ('Barbara Chepaitis'), - ('Chris Goodrich'), - ('Morrie Schwartz'), - ('Rachel Cusk'), - ('Gordon Carruth'), - ('Kelly Cherry'), - ('John Dorfman'), - ('Consumer Reports Books'), - ('Tim Paulson'), - ('Knute Larson'), - ('Bruce Narramore'), - ('Vern C. Lewis'), - ('Geoffrey Caine'), - ('Renate N. Caine'), - ('Fritz Ridenour'), - ('Margaret Parker'), - ('Peggy Schmidt'), - ('Edward Dayton'), - ('V. Stanford Hampson'), - ('Lois T. Henderson'), - ('Marian L. Salzman'), - ('Teresa Reisgies'), - ('Jerry Schmidt'), - ('Raymond Brock'), - ('Mameve Medwed'), - ('Sam Huff'), - ('Leonard Shapiro'), - ('Robert E. Kowalski'), - ('Kowalski'), - ('Jack Sternlieb'), - ('Michael Goddart'), - ('Angela Kay Kepler'), - ('Carl Bernstein'), - ('The Duchess Of York Sarah'), - ('Jeff Coplon'), - ('Patricia Henley'), - ('Etienne Van Heerden'), - ('Catherine Knox'), - ('Linn Ullmann'), - ('Raj Kamal Jha'), - ('Barbara Cohen'), - ('John Steptoe'), - ('Dee Brown'), - ('Thomas Wolfe'), - ('Michael Korda'), - ('Mary-Lou Weisman'), - ('Libby Schmais'), - ('Dwight Allen'), - ('The Editors Of Conari Press'), - ('Hope S. Warshaw'), - ('Doris Cross'), - ('Alice Williams'), - ('James Agee'), - ('Viqui Litman'), - ('Richard S. Beaser'), - ('Mary Joan Oexmann'), - ('Ina Garten'), - ('Nina Grunfeld'), - ('Linda Coffee'), - ('Emily Cale'), - ('Boom Corrie Ten'), - ('Carole C. Carlson'), - ('Angela Carter'), - ('Hazel M. Denning'), - ('Patty Hansen'), - ('Iren'), - ('Alexandra Styron'), - ('W. Edwards Deming'), - ('Harriet Segal'), - ('Alan Trustman'), - ('Patty Mitchell'), - ('Na'), - ('Patty Aubrey'), - ('Ravi Zacharias'), - ('Ron Camacho'), - ('Steve Scott'), - ('Rebecca Campbell'), - ('Robert J. Harris'), - ('Mary Ann Taylor-Hall'), - ('John Brookes'), - ('C. Kalia Westerman'), - ('Carol Umberger'), - ('Rupert Everett'), - ('Phyllis Reynolds Naylor'), - ('Arthur Frommer'), - ('Kevin Crossley-Holland'), - ('Beth Wilson Saavedra'), - ('Ivana Trump'), - ('Chris Anderson'), - ('Sharon McGehee'), - ('Rachael Ray'), - ('Dorothy Samuels'), - ('Anne George'), - ('Lydia Y Minatoya'), - ('Janet Tashjian'), - ('Kate Cann'), - ('Cynthia Grant'), - ('Joan M. Drury'), - ('Diana Von Welanet'), - ('Bonnie Altenhein'), - ('Bill McKibben'), - ('Kristine Carlson'), - ('William R. Dantz'), - ('Ernest Angley'), - ('Brad Densmore'), - ('Robert Mattox'), - ('Julie Eisenhower'), - ('Yvonne Lehman'), - ('Les Parrott'), - ('Leslie Parrott'), - ('John Wallner'), - ('Robin Sheets'), - ('Mathew Tekulsky'), - ('Nancy Larrick'), - ('Eric Beddows'), - ('Alix Berenzy'), - ('Jim Hohnberger'), - ('Dave Ramsey'), - ('Kathleen Yapp'), - ('Dina Leonhardt Koehly'), - ('Sally Laity'), - ('Veda Boyd Jones'), - ('Mary Louise Colln'), - ('Helen Spears'), - ('Han'), - ('Robert Coles'), - ('Dorothy Day'), - ('Angela Elwell Hunt'), - ('Michael Kenyon'), - ('Catherine Marshall'), - ('Elisabeth Elliot'), - ('Lois Dick'), - ('Duncan Heaster'), - ('Robert Jewett'), - ('Carroll Ferguson Hunt'), - ('Lorraine Peterson'), - ('Cole'), - ('Kevin Zraly'), - ('Jack Maguire'), - ('Bentley Little'), - ('Bill Quinn'), - ('Jay Schulberg'), - ('Arlene Mosel'), - ('Blair Lent'), - ('Connie Neal'), - ('Kay Coles James'), - ('Ben Young'), - ('Dr. Samuel Adams'), - ('Joshua Harris'), - ('Rebecca St. James'), - ('Laurie Beth Jones'), - ('David Shibley'), - ('Naomi Shibley'), - ('Joanna Cole'), - ('John Speirs'), - ('Bruce Degan'), - ('Antonia Felix'), - ('Beth Henderson'), - ('Karen Kingsbury'), - ('Jane Peart'), - ('Cheryl Forbes'), - ('Kitty Maynard'), - ('Lucian Maynard'), - ('Stuart J. Murphy'), - ('Lynne Cravath'), - ('Roberta Edwards'), - ('Sylvie Wickstrom'), - ('Gary Soto'), - ('Susan Guevara'), - ('Aliki'), - ('William Miller'), - ('Cornelius Van Wright'), - ('Ying-Hwa Hu'), - ('Audrey Wood'), - ('David Shannon'), - ('Natalie Savage Carlson'), - ('Carla Stevens'), - ('Deborah Kogan Ray'), - ('Michael Hague'), - ('Mary Jane Begin'), - ('Mary Downing Hahn'), - ('Laurie Lawlor'), - ('Jeanne Betancourt'), - ('Sylvia Schur'), - ('Vivian Schulte'), - ('R.D.'), - (' Ph.D. Vivian Sch'), - ('Kathryn Winter'), - ('Jeff Aubery'), - ('Criswell Freeman'), - ('Now Magazine'), - ('Steven Davey'), - ('Phil Lee'), - ('Helen Lovekin'), - ('H. Jackson Brown'), - ('Robert T. Hohler'), - ('Janet Taylor Lisle'), - ('Satomi Ichikawa'), - ('Barthe DeClements'), - ('Dorothy Abbott'), - ('Susan Koppelman'), - ('Stacey Schuett'), - ('Janet Lee Carey'), - ('Emma Kallok'), - ('Sharon M. Draper'), - ('Chris Lynch'), - ('Glencoe/ McGraw-Hill - Jamestown Education'), - ('Christin Rickley'), - ('Athol Fugard'), - ('Vivian Gussin Paley'), - ('Carolyn Wyman'), - ('Chassie West'), - ('Tanya A. Crosby'), - ('Jillian Hart'), - ('Marjabelle Young Stewart'), - ('Connie Bennett'), - ('Anne Styles'), - ('Heron'), - ('Aaron Karo'), - ('Inc. Let''s Go'), - ('Tom Maremaa'), - ('Margaret St George'), - ('David Glusker'), - ('Maude Casey'), - ('Jack Kersh'), - ('Arthur J. Roth'), - ('Elizabeth Bolton'), - ('S. D. Schindler'), - ('Jean Feiwel'), - ('Bethany Buck'), - ('David Slonim'), - ('Mike Berenstain'), - ('Dan Peters'), - ('Beth Scott'), - ('Michael Norman'), - ('Lester Sumrall'), - ('Helen Chappell'), - ('Yu Huan Zhang'), - ('Ken Rose'), - ('Zhang Yu Huan'), - ('Lao Tzu'), - ('Victor H. Mair'), - ('Jose Luis Sampedro'), - ('Emma Thompson'), - ('Clive Coote'), - ('Lindsay Doran'), - ('Daniel James'), - ('Josi Guadalupe Pos'), - ('Christoper Plummer'), - ('Klaus Werner'), - ('Hans Weiss'), - ('E.A. Lowe'), - ('Nicolas Maquiavelo'), - ('Norma Khouri'), - ('Le Ly Hayslip'), - ('John Tyerman Williams'), - ('Bernard Peterson'), - ('Katie Waitman'), - ('Pamela Dean'), - ('more'), - ('Catherine Wells'), - ('Alexandra Lapierre'), - ('Liz Heron'), - ('Denise Austin'), - ('M. D. M. Scott Peck'), - ('Neil Henry'), - ('Arielle Ford'), - ('Toru Takemitsu'), - ('Yoshiko Kakudo'), - ('Glenn Glasow'), - ('Seiji O'), - ('Sherwin B. Nuland'), - ('Kate Phillips'), - ('Edith Forbes'), - ('Tom Philpott'), - ('Senator John McCain'), - ('J. T. Leroy'), - ('Sullivan'), - ('Stephen Mitchell'), - ('James Wilcox'), - ('Clara Claiborne Park'), - ('James Ruddick'), - ('Stacey D''Erasmo'), - ('E M Cioran'), - ('Christian Bauman'), - ('Margarite F. Olmos'), - ('Lizabeth P. Gebert'), - ('Reynolds Price'), - ('Alexa Albert'), - ('Seymour Gross'), - ('Sculley Bradley'), - ('Rosina Lippi'), - ('Pia Pera'), - ('Pam Durban'), - ('Latifa'), - ('Shay Youngblood'), - ('Stuart Brent'), - ('Gina Bria'), - ('Dan Bruce'), - ('Dan ''Wingfoot'' Bruce'), - ('Ed Garvey'), - ('Charles H. Patterson'), - ('Desmond Lee'), - ('William J. Lederer'), - ('Alice Thomas Ellis'), - ('James Lovegrove'), - ('Irene Northan'), - ('Josh Kirby'), - ('John Boyne'), - ('Deirdre Purcell'), - ('Malcolm Pasley'), - ('Charlotte'), - (' Etc. Bronte'), - ('Brian Vallee'), - ('Jewel Kilcher'), - ('John E. Walvoord'), - ('Wole Soyinka'), - ('John Wideman'), - ('Malcolm Cowley'), - ('Robert Walser'), - ('Scott Rice'), - ('Jan Coffey'), - ('Paul Simon'), - ('P.J. O''Rourke'), - ('Samir Al-Khalil'), - ('Hannah Whitall Smith'), - ('Henri J. M. Nouwen'), - ('Frank C. Craighead Jr.'), - ('Nathan Miller'), - ('Gita Mehta'), - ('Justine Dare'), - ('Kenneth T. Brown'), - ('Emily Dalton'), - ('Elaine Barbieri'), - ('Gordon'), - ('Celeste Hamilton'), - ('Adele Ashworth'), - ('Hammond'), - ('Anne Hampson'), - ('Linda /Bennett Shaw'), - ('Jennifer Mikels'), - ('Delacroix'), - ('Elizabeth Boyle'), - ('Paula Hamilton'), - ('Halston'), - ('Steven Piziks'), - ('Trisha Alexander'), - ('Patricia Kay'), - ('Katherine Compton'), - ('Shawna Delacorte'), - ('Sally Garrett'), - ('Donald'), - ('Laura Marie Altom'), - ('Leigh'), - ('Muriel Bradley'), - ('Linda Randall Wisdom'), - ('Craig Shaw Gardner'), - ('Alyssa Dean'), - ('Stephanie Howard'), - ('Mary Balogh'), - ('Sandra Heath'), - ('Laura Matthe'), - ('Dianne Castell'), - ('Krista Janssen'), - ('Suzanne Barclay'), - ('Phyllis Houseman'), - ('Bright'), - ('Elizabeth Mansfield'), - ('Shari Anton'), - ('Beverly Engel'), - ('Barclay'), - ('Ruth Jean Dale'), - ('Mary Lyons'), - ('Leah Vale'), - ('Karen Toller Whittenburg'), - ('Cindy Holbrook'), - ('Debbie Raleigh'), - ('Nicola West'), - ('D. Chiel'), - ('Jonathan Hensleigh'), - ('Bobby Hutchinson'), - ('Suzannah Davis'), - ('Meagan Mckinney'), - ('Bay Matthews'), - ('Janice Bennett'), - ('Susanne McCarthy'), - ('Christa Merlin'), - ('Rachel Lee'), - ('Brian M. Thomsen'), - ('Rebecca Stratton'), - ('Gail Douglas'), - ('Hart'), - ('Mary Mcbride'), - ('Sabina Grant'), - ('Linz'), - ('Laurey Bright'), - ('Grant'), - ('Amanda Lee'), - ('Debra Lee Brown'), - ('Roberta Leigh'), - ('Dana Ransom'), - ('Ana Seymour'), - ('Parris Afton Bonds'), - ('Maclay'), - ('Leandra Logan'), - ('Teresa Howard'), - ('Mary Mayer Holmes'), - ('Catherine Mills'), - ('Belmont'), - ('Marton'), - ('Miles'), - ('Catherine Archer'), - ('Saranne Dawson'), - ('Janet & Richards'), - (' Emilie Dailey'), - ('Donna Kimel Vitek'), - ('Margaret Dobson'), - ('Jessica Marchant'), - ('Patt Bucheister'), - ('Leslie Davis'), - ('Madeline George'), - ('Nikki Benjamin'), - ('Linda Cajio'), - ('Jo Leigh'), - ('Denton'), - ('Carroll'), - ('Lyn McConchie'), - ('Patricia Lake'), - ('Arlene Holiday'), - ('Jennifer Horsman'), - ('Susannah Kells'), - ('Sue Ellen Cole'), - ('Daphne Woodward'), - ('C. J. Carmichael'), - ('Margaret Pargeter'), - ('Angel Milan'), - ('Eric L. Harry'), - ('R. M. Meluch'), - ('Arlene Holliday'), - ('Deborah Bedford'), - ('Lyndon Hardy'), - ('Pat Wallace'), - ('Ruth Alana Smith'), - ('Raymond Giles'), - ('Billie Green'), - ('Logan'), - ('Amarillas'), - ('Judith E. French'), - ('Taylor Ryan'), - ('Robin Gideon'), - ('Kathryn Fox'), - ('E. A. Mares'), - ('Greg Keyes'), - ('Kenneth C. Davis'), - ('George Demko'), - ('Jerome Agel'), - ('Eugene Boe'), - ('Isabelle Eberhardt'), - ('Michael Burgan'), - ('Gail Herman'), - ('The Master Therion'), - ('Frieda Harris'), - ('Antero Alli'), - ('Yvonne Rees'), - ('Peter May'), - ('David Conway'), - ('Gillian Kemp'), - ('Maxwell Maltz'), - ('Linda Barker'), - ('John M. Ford'), - ('John Toland'), - ('Mitsuo Fuchida'), - ('Walter F Murphy'), - ('Marion D. March'), - ('Joan McEvers'), - ('Sucharitkul'), - ('Fred Reinfeld'), - ('WARREN /SAPIR MURPHY'), - ('Warre Murphy'), - ('Anna Riva'), - ('Y.L. Harris'), - ('Christopher O''Brien'), - ('William C. Westmoreland'), - ('Kaoru Iwamoto'), - ('James E. Kloetzel'), - ('Salomone'), - ('Freddie NORTH'), - ('S. Jason Black'), - ('Christopher S. Hyatt'), - ('Doris Piserchia'), - ('Kelly Freas - Cover'), - ('C. Berlitz'), - ('Stephen M. Rainey'), - ('Lara Parker'), - ('Bill Drummond'), - ('Mark Manning'), - ('Alexander Games'), - ('Eddie Izzard'), - ('Alicia Appleman-Jurman'), - ('Edward Bond'), - ('Patricia Hern'), - ('Ardal O''Hanlon'), - ('Umberto Bellini'), - ('Josef Haslinger'), - ('Werner Lansburgh'), - ('John Toohey'), - ('Gloria D. Miklowitz'), - ('John Christopher'), - ('Peter Bruck'), - ('Samuel Beckett'), - ('Elmar Tophoven'), - ('Allen Carr'), - ('Petra Wackerle'), - ('Dieter Markert'), - ('Theodor Fontane'), - ('Philippa Carr'), - ('Erika Remberg'), - ('Benoîte Groult'), - ('Batya Gur'), - ('Eva Malsch'), - ('C.J. Anders'), - ('Ardella Garland'), - ('Edward Eager'), - ('N. M. Bodecker (Illustrator)'), - ('Jason Little'), - ('Kevin Freiberg'), - ('Jackie Freiberg'), - ('Laura Moore'), - ('Janet Gleeson'), - ('William Hill Brown'), - ('Hannah Webster Foster'), - ('Elizabeth Barrett Browning'), - ('John Robert Glorney Bol'), - ('Gregg Easterbrook'), - ('John Bunyan'), - ('W. R. Owens'), - ('Arthur Jacobs'), - ('Bartolome De Las Casas'), - ('Nigel Griffin'), - ('Anthony Pagde'), - ('Martin Palmer'), - ('Elizabeth Breuilly'), - ('John Leguizamo'), - ('Sonia Moore'), - ('John Gielgud'), - ('Joshua Logan'), - ('Marianne Moore'), - ('Carri Garrison'), - ('Steve'), - (' Rev.'), - (' And Tada'), - (' Joni Eareckson Estes'), - ('Voronica Whitney-Robinson'), - ('H. M. Parshley'), - ('Steven Levenkron'), - ('Otto F. Wahl'), - ('Amy Bloom'), - ('Greg Philo'), - ('Glasgow Media Group'), - ('Glasgow University'), - ('Mary Ellen Copeland'), - ('Gregory Stock Ph.D.'), - ('Leo; Leo Buscaglia Buscaglia'), - ('Jennifer James'), - ('Barbara Stanny'), - ('John Killick'), - ('Myra Schneider'), - ('Leah Furman'), - ('Elina Furman'), - ('Maureen Tan'), - ('Donna Boyd'), - ('Woollcott Smith'), - ('L. E. Modesitt'), - ('L.E Modesitt Jr.'), - ('Karin Goodwin'), - ('Anthony L Abraham'), - ('MJ Ryan'), - ('Judi McCoy'), - ('Suzann Ledbetter'), - ('Linda French'), - ('Wilton Barnhardt'), - ('Liz Ireland'), - ('Harry Kressing'), - ('Simon Maginn'), - ('Penelope Dellaporta'), - ('Bill Ransom'), - ('Gayle Greeno'), - ('Marilyn Bowering'), - ('James Humphreys'), - ('Günter De Bruyn'), - ('Stephanie Gertler'), - ('Nicholas Rinaldi'), - ('Matt Witten'), - ('Nava Atlas'), - ('Lillian Kayte'), - ('Susan Bixler'), - ('Karl Albrecht'), - ('Ron Zemke'), - ('Philip B. Crosby'), - ('Hilary Mantel'), - ('J.D. Landis'), - ('Ruth Picardie'), - ('Matt Seaton'), - ('Justine Picardie'), - ('Brian Vesey-Fitzgerald'), - ('S R Badmin'), - ('Patricia Wendorf'), - ('Ruth Reichl'), - ('David Pesci'), - ('Andrew Miller'), - ('Nega Mezlekia'), - ('Stuart Mclean'), - ('Robin McGrath'), - ('William Maxwell'), - ('Diane Mason'), - ('Bruce Kirkby'), - ('Eric Kraft'), - ('James Jones'), - ('Dakota Hamilton'), - ('Don Hannah'), - ('Kenn Harper'), - ('Hiromi Goto'), - ('Sara George'), - ('George'), - ('Helen Fremont'), - ('Cynthia Flood'), - ('Marina Endicott'), - ('Alan Cumyn'), - ('Beatrice Culleton Mosionier'), - ('Michael Collins'), - ('Kevin Chong'), - ('Grant Buday'), - ('Sandra Birdsell'), - ('Joan Barfoot'), - ('M. E. Hirsh'), - ('Ethan Mordden'), - ('Terri Windling & Ellen Datlow'), - ('Thomas Canty'), - ('Nin'), - ('Ji-li Jiang'), - ('Fawn M. Brodie'), - ('Mutual Publishing'), - ('Mary Kawena Pukui'), - ('William J Bennett'), - ('William H. Whyte'), - ('Stephen J. Adler'), - ('Adele Parks'), - ('Cyrano De Words-U-Lac'), - ('Barbara Johnson'), - ('MaryJanice Davidson'), - ('Lani Nedbalek'), - ('Frank Caplan'), - ('Theresa Caplan'), - ('Ingrid Tomey'), - ('Calvin Miller'), - ('Lyrick Publishing'), - ('Marion Chesney'), - ('Bonnie Macdougal'), - ('Richard Grant'), - ('Richard Hoyt'), - ('Margaret Allan'), - ('Miriam Grace Monfredo'), - ('Lowell Cunningham'), - ('Ed Solomon'), - ('Olga Masters'), - ('Tove Jansson'), - ('Thomas Warburton'), - ('Peter King'), - ('Lillian Herlands Hornstein'), - ('G. D. Percy'), - ('Calvin S. B'), - ('Denise Swanson'), - ('Sam Walton'), - ('John Huey'), - ('Robert Crossley'), - ('Susan Dawn'), - ('Stuart Holmes Coleman'), - ('Mark Helprin'), - ('Chris Van Allsburg'), - ('Colin Eisler'), - ('Lesley Anne Ivory'), - ('May Elizabeth Schlayer'), - ('Dave Thompson'), - ('Eleanor Wachtel'), - ('Lilian Lee'), - ('Andrea Lingenfelter'), - ('Stephen Karcher'), - ('Rudolph Ritesema'), - ('Trina Paulus'), - ('Richard Llewellyn'), - ('Harriette Arnow'), - ('Ed Stivender'), - ('Jayne An'), - ('William Jay Smith'), - ('Jeff Shaara'), - ('Rahna Reiko Rizzuto'), - ('Beth Kephart'), - ('Howe Stidger'), - ('Mike Doogan'), - ('Dee Boyles'), - ('Bertice Berry'), - ('Tim Mikkelsen'), - ('Phyllis Wright-Herman'), - ('MikWright Ltd.'), - ('Jean Shepherd'), - ('Howard Schultz'), - ('Dori Jones Yang'), - ('Barbara Neely'), - ('Marc Summers'), - ('Armand Eisen'), - ('Ben Edlund'), - ('Richard Goldstein'), - ('Maurice Horn'), - ('Paul Dickson'), - ('Rick Meyerowitz'), - ('Paul Dixon'), - ('Carol McD. Wallace'), - ('Barry Sinrod'), - ('Angus Oblong'), - ('Angela Shelf Medearis'), - ('Nancy Birnes'), - ('Patti Shosteck'), - ('Lee Wade'), - ('Joan Rutt'), - ('Sandra Mattielli'), - ('Mark Bittman'), - ('Steven Raichlen'), - ('Sheila Lukins'), - ('Julee Rosso'), - ('Arthur Schwartz'), - ('Beatrice A. Ojakangas'), - ('Mable Hoffman'), - ('Shirley Gill'), - ('Jill Dupleix'), - ('Geoff Lung'), - ('Judith Choate'), - ('Bill Milne'), - ('Viana LA Place'), - ('Judy Rosenberg'), - ('Judy Wicks'), - ('Kevin Von Klause'), - ('Elizabeth Fitzgerald'), - ('Michael McLaughlin'), - ('Irma S. Rombauer'), - ('Marion Rombauer Becker'), - ('Ethan Beck'), - ('Alan Witschonke'), - ('Beverly Mills'), - ('Alicia Ross'), - ('Anya Von Bremzen'), - ('John Welchman'), - ('Grace Shugart'), - ('Mary Molt'), - ('Ernest M. Mickler'), - ('Richard Sullivan'), - ('Betsy Wyckoff'), - ('Pat LaFontaine'), - ('Larry Weisman'), - ('Chas Griffin'), - ('Cynthia Tobias'), - ('Jill Bloom'), - ('Will Weaver'), - ('Ryan White'), - ('Ann Marie Cunningham'), - ('Bill O''Reilly'), - ('Dreikurs'), - ('Claudia Jones'), - ('Greg Nagan'), - ('Donald Goines'), - ('Floyd C. Watkins'), - ('William B. Dillingham'), - ('John T. Hie'), - ('Stirling Silliphant'), - ('H. King'), - ('Robert A Seiple'), - ('Inge Sargent'), - ('Honolulu Theatre For Youth'), - ('Meri Ishikawa'), - ('Erika Oller'), - ('Rhys Bowen'), - ('Charles Knief'), - ('David Galef'), - ('Jun Hashimoto'), - ('Susan Stamberg'), - ('Wu Ningkun'), - ('Elizabeth Portch'), - ('Molly Brown'), - ('Nancy E. Turner'), - ('Ann Sherif'), - ('Louie Anderson'), - ('RH Disney'), - ('Lois-ann Yamanaka'), - ('Mariama B'), - ('Noelle Howey'), - ('Aaron McGruder'), - ('James Madison'), - ('Billy Bob Thornton'), - ('Rollins'), - ('Irene Diamond'), - ('Gloria Orenstein'), - ('Mary Daly'), - ('Diane Bell'), - ('Thomas Berger'), - ('Patricia Kennealy'), - ('Alice Bach'), - ('Steven Kellogg'), - ('Hugh Lofting'), - ('Iona Opie'), - ('Peter Opie'), - ('James Pruitt'), - ('Lorraine Johnson-Coleman'), - ('Cary O. Yager'), - ('E.B. White'), - ('Gail Owens'), - ('John Travolta'), - ('Rachel Simmons'), - ('Raul Correa'), - ('M. T. Anderson'), - ('Ysaye M. Barnwell'), - ('Synthia Saint James'), - ('Marcia Williams'), - ('Janet Schulman'), - ('Martine Gourbault'), - ('Caroline Schrodes'), - ('Deborah Chase'), - ('Kevin Baker'), - ('Illona Linthwaite'), - ('Gertrude Crampton'), - ('Tibor Gergely'), - ('Edith Fisher Hunter'), - ('Neil Simon'), - ('Bil Keane'), - ('Gary A. Dias'), - ('Robbie Dingeman'), - ('Ross Yamanaka'), - ('David Rees'), - ('Jean Craighead GEORGE'), - ('Sheila Burnford'), - ('Sydney B. Metrick'), - ('Taro Gomi'), - ('Christopher Paolini'), - ('Mariane Pearl'), - ('Sarah Crichton'), - ('Marie Hara'), - ('Nora Okja Keller'), - ('Jerdine Nolen'), - ('Steven Lindblom'), - ('True Kelley'), - ('Stephen Laws'), - ('Ronald Gottesman'), - ('Graham Lord'), - ('David Brooks'), - ('David Homel'), - ('Gail Scott'), - ('Nelson Mandela'), - ('Bernice Johnson Reagon'), - ('Sting'), - ('Anne Garrels'), - ('Dayna Curry'), - ('Heather Mercer'), - ('Stacy Mattingly'), - ('Herman Miller'), - ('Debra Doyle'), - ('H. Miller'), - ('Ezra Whiteman'), - ('Norman Node'), - ('Evelyn Goodman'), - ('Karen Karbiener'), - ('Harriet Beecher Sto'), - ('Caroline Knapp'), - ('John White'), - ('Dorothy West'), - ('Isabel Fonseca'), - ('Beverley Naidoo'), - ('Eric Velasquez'), - ('Mike Lester'), - ('Jr Bill Martin'), - ('John Archambault'), - ('Nina Bernstein'), - ('Chip Silverman'), - ('Walt Disney'), - ('J. D. Bisignani'), - ('Robert Nilsen'), - ('Margaret Miner'), - ('Hugh Rawson'), - ('Marianne Larned'), - ('Colin Powell'), - ('Maria'), - ('Stuart Miller'), - ('Geoffrey Moss'), - ('Patricia Meyer Spacks'), - ('Alfred Birnbaum'), - ('Jamie Stamper'), - ('Robert Byrne'), - ('Teressa Skelton'), - ('Jon Spoelstra'), - ('Robert Smith'), - ('Jean Hortense Seligmann'), - ('Paul S. Newman'), - ('Annie Guenther'), - ('J.M. Barrie'), - ('Mabel Watts'), - ('Joe Ewers'), - ('Western Publishing'), - ('Al Andersen'), - ('Don Ferguson'), - ('Peter Emslie'), - ('Susan Hightower'), - ('Matt Novak'), - ('Teddy Margulies'), - ('Studio Orlando'), - ('Craig McCracken'), - ('Lauren Faust'), - ('Rick Detorie'), - ('Teddy Slater'), - ('Tom LaPadula'), - ('Margaret A. Hartelius'), - ('Harry McNaught'), - ('Steve Metzger'), - ('Steven Kroll'), - ('Jeni Bassett'), - ('Freya Littledale'), - ('Freya L'), - ('B.G. Ford'), - ('Leone Castell Anderson'), - ('Eugenie (Illustrator)'), - ('Ann Braybrooks'), - ('Arkadia'), - ('David Korr'), - ('Joe Mathieu'), - ('Chari Sue'), - ('Richard Courtney'), - ('Trish Courtney'), - ('A. Delaney'), - ('Jon Stone'), - ('Michael Smollin'), - ('Edens'), - ('Various Authors'), - ('Tori Amos'), - ('Martin Scot Kosins'), - ('Sydney Taylor'), - ('Helen John'), - ('Marcie Carroll'), - ('Frederick Crews'), - ('Andy Warhol'), - ('Edith Thacher Hurd'), - ('Tibor Gerge'), - ('George Booth'), - ('Sachi Fukuda'), - ('Greg Critser'), - ('Mark D. Sanders'), - ('Tia Sillers'), - ('Marian Engel'), - ('Susan Schade'), - ('Charlotte Zolotow'), - ('William Pene Du Bois'), - ('Graham Oakley'), - ('Joan Clarke'), - ('Andrew Matzner'), - ('Oliver Stone'), - ('Samuel H. Elbert'), - ('Margaret Cho'), - ('Ntozake Shange'), - ('Ron Clark'), - ('Ted Rall'), - ('Greg Hyland'), - ('David Simon'), - ('Edward Burns'), - ('Adrian Nicole LeBlanc'), - ('Michael Fry'), - ('Gregory White Smith'), - ('Steven W. Naifeh'), - ('Daniel Baxter'), - ('Ruth Harris'), - ('Carellin Brooks'), - ('Tim Cahill'), - ('Tom Bodett'), - ('Peter N. Forman'), - ('Sharon Linnea'), - ('Rob'), - ('George P. Pelecanos'), - ('George Pelecanos'), - ('James H. English'), - ('Maryann Cusimano'), - ('Jodi Endicott'), - ('Hans Loffel'), - ('Doug Peebles'), - ('Curt Sanburn'), - ('Eileen Curran'), - ('G. Brian Karas'), - ('J. D. Christilian'), - ('Thomas Szollosi'), - ('Karen Moline'), - ('James G. Nourse'), - ('Edna Buchanan'), - ('Mitchell Smith'), - ('Christopher Hyde'), - ('Margaret Yorke'), - ('William Lashner'), - ('Barbara Fister'), - ('Kyle Spencer'), - ('Evan I. Schwartz'), - ('Tony Dunbar'), - ('Eleanor Taylor Bland'), - ('Jim Knipfel'), - ('Lowen Clausen'), - ('Betty Macdonald'), - ('Louise A. DeSalvo'), - ('Sam Chaiton'), - ('Terry Swinton'), - ('Cynthia Harrod-Eagles'), - ('John Miller'), - ('Marianne Wiggins'), - ('Stephen Miller'), - ('R.D. Wingfield'), - ('Bonnie K. Winn'), - ('Suzanne Carey'), - ('S. Andrew Swann'), - ('Andrew Bergman'), - ('Charles Ingrid'), - ('Libby Hall'), - ('Kia Meaux'), - ('Jim Borgman'), - ('Bunty Howearth'), - ('C.K. Stead'), - ('Sky Lee'), - ('Tong Su'), - ('William Caunitz'), - ('Robin Burcell'), - ('James Tertius DeKay; James Tertius De Kay'), - ('Bill Fitzhugh'), - ('Jeanne Braselton'), - ('Larry Keenan'), - ('Stephanie Johnson'), - ('Julie Cannon'), - ('D. B. C. Pierre'), - ('Alisa Valdes-Rodriguez'), - ('Patricia Grace'), - ('Julie Otsuka'), - ('Marilyn Duckworth'), - ('Georgia Byng'), - ('Pat Ross'), - ('Philip Sugden'), - ('Huston Curtiss'), - ('Michael Cart'), - ('Leslea Newman'), - ('M. Hardwick'), - ('Owen Chase'), - ('Iola Haverstick'), - ('Betty Shepard'), - ('Katharine Weber'), - ('I.J. Parker'), - ('Brad Gooch'), - ('Dann Hazel'), - ('Elizabeth Gilbert'), - ('Amy Borkowsky'), - ('Anna L. Waldo'), - ('Emine Sevgi Ozdamar'), - ('Donna Andrews'), - ('Holly Payne'), - ('John Marino'), - ('Tina Cohen'), - ('C. K. Stead'), - ('Stevan Eldred-Grigg'), - ('John Welter'), - ('Jose Raul Bernardo'), - ('Irene Allen'), - ('Douglas Wynn'), - ('Lilian Nattel'), - ('Alfred Noyes'), - ('Charles Mikolaycak'), - ('Nick Smith'), - ('Yxta Maya Murray'), - ('Denise Giardina'), - ('Harold Pinter'), - ('P. G Wodehouse'), - ('Simon Doonan'), - ('Holly Hobbie'), - ('Abby Bardi'), - ('Judith Henry'), - ('Graham Caveney'), - ('Elizabeth Hess'), - ('Terrence Cheng'), - ('Art Spiegelman'), - ('David Davidar'), - ('Jewell Parker Rhodes'), - ('Edward G. Seidensticker'), - ('Sela Ward'), - ('Anita Rau Badami'), - ('Gary Ogden Harper'), - ('Wayne Johnston'), - ('Michael Augustyn'), - ('Kurt Diemberger'), - ('Philippe Garner'), - ('Tom Corcoran'), - ('Brad Dimock'), - ('Paulette Jiles'), - ('Frank Monaco'), - ('Richard L. Miller'), - ('David Letterman'), - ('Lisa Huang Fleischman'), - ('Akimitsu Takagi'), - ('Dan Hurley'), - ('H.B. Gilmour'), - ('Sherry Sontag'), - ('Christopher Drew'), - ('Annette Lawrence Dr'), - ('Camille Geraldi'), - ('Carol Burris'), - ('Earl Murray'), - ('Dr. Pedro Jose Greer Jr.'), - ('Liz Balmaceda'), - ('Debbie Morris'), - ('Gregg Lewis'), - ('Nik C. Colyer'), - ('Mark Payne'), - ('Cara Wilson'), - ('Otto Frank'), - ('Debby Jones'), - ('Jackie Kendall'), - ('Pete Dexter'), - ('Miriam Sokol'), - ('Hanoch McCarty'), - ('Me'), - ('Rick Pitino'), - ('Mary Kay McComas'), - ('Iris R. Dart'), - ('Elisabeth Eaves'), - ('ISAAC ASIMOV'), - ('Octave Mirbeau'), - ('Douglas Jarman'), - ('Allen Weinstein'), - ('Alexander Vassiliev'), - ('S.A.R.K.'), - ('O. E. Rolvaag'), - ('Einar Haugen'), - ('Gudrun Hovde Gvale'), - ('John F. Bayer'), - ('Shirley Worrall'), - ('James Scott Bell'), - ('Mary Engelbreit'), - ('Robert Eisenberg'), - ('J. Gregory Keyes'), - ('Gareth Davies-Morris'), - ('John Reed'), - ('George Harrar'), - ('Pamela Rafael Berkman'), - ('Thomas Sanchez'), - ('John Burgoyne'), - ('Paul Levinson'), - ('Martha Powers'), - ('Sembene Ousmane'), - ('Margot Patterson Doss'), - ('Rafael Courtoisie'), - ('Mr. Al Biondi'), - ('Al Biondi'), - ('Ana?s. Nin'), - ('Cherry Adair'), - ('Lars Eighner'), - ('Geraldine Kudaka'), - ('Jim Curtin'), - ('James J. Curtin'), - ('Renata Ginter'), - ('Nick Tosches'), - ('Daniel Akst'), - ('Cristopher Stasheff'), - ('Tara K. Harper'), - ('Joseph Bryant'), - ('Sandra Bernhard'), - ('Louise Redd'), - ('Carol Ann Lee'), - ('Linda Wolfe'), - ('Guy Vanderhaeghe'), - ('Mary Ladd Gavell'), - ('Jerry Hopkins'), - ('Robert Shapard'), - ('Hulton Getty'), - ('Josephine Gattuso Hendin'), - ('Mary Jo Bona'), - ('Rebecca Stowe'), - ('Arlene J. Chai'), - ('Mikhail Lermontov'), - ('Paul Foote'), - ('Gloria Mallette'), - ('Jeff Leeland'), - ('April Sinclair'), - ('Professor John Barth'), - ('Michael Grant Jaffe'), - ('William Joyce'), - ('Ben Bradlee'), - ('Scott R. Russell'), - ('Joe Conason'), - ('Uwe Timm'), - ('Peter Tegel'), - ('John Lennon'), - ('I. M. Peeved'), - ('Ed Strnad'), - ('David Malouf'), - ('David Chilton'), - ('元阳'), - ('Eric Shiraev'), - ('Gerald L. Boyd'), - ('Gerald Lee Boyd'), - ('Jaimy Gordon'), - ('Dan Franck'), - ('Susan Cheever'), - ('Claudia Shear'), - ('Gene Hackman'), - ('Daniel Lenihan'), - ('John Dowdee'), - ('Marcia Kamien'), - ('Seamus Deane'), - ('Culinary Institute Of America'), - ('Donald Antrim'), - ('Robert Lopshire'), - ('Stephanie True Peters'), - ('Reg Sandland'), - ('Bill Dahl'), - ('Weldon A. McDougal III'), - ('Lora Brody'), - ('Lois Ellen Frank'), - ('Earl W. Emerson'), - ('Andrew S. Grove'), - ('Mark Kurlansky'), - ('Bob Eggleton'), - ('Nigel Suckling'), - ('Ruthanne Lum McCunn'), - ('Jean Pare'), - ('Elliott Roosevelt'), - ('Myrna Oakley'), - ('Stanley Kaplan'), - ('Geneen Roth'), - ('Martin Dunford'), - ('Jack Holland'), - ('Stacey Richter'), - ('Roland Gary Jones'), - ('Arl Modica Matthews'), - ('Linnea Lundgren'), - ('Laura Kraemer'), - ('Ellen Slezak'), - ('Elizabeth Pomada'), - ('Michael Larsen'), - ('Douglas Keister'), - ('Marion Owen'), - ('Cindy'), - ('Kakuzo Okakura'), - ('Robert W. Snyder'), - ('Wendy Hornsby'), - ('Paula Marantz Cohen'), - ('Susan Shaughnessy'), - ('Meridel Le Sueur'), - ('Ian C. Ellis'), - ('A.M. Homes'), - ('Tess Gallagher'), - ('Helen Dunmore'), - ('Robert Ellis Gordon'), - ('Michael Stearns'), - ('Adela Vengana'), - ('Gil Reavill'), - ('Michael Yamashita'), - ('Rainer Eisenschmid'), - ('Karl Baedeker'), - ('Jamie S. Rich'), - ('Andi Watson'), - ('Scott Morse'), - ('Judd Winick'), - ('Laura Day'), - ('Hari Kunzru'), - ('Robin Goldstein'), - ('Dr. James Dobson'), - ('Julie Taylor'), - ('Nikolaj Frobenius'), - ('Tom Glazer'), - ('Lendon Smith M.D.'), - ('Kay Baxter'), - ('Lucy Bauer Footlik'), - ('Heidi-Marie Blackwel'), - ('John Kulka'), - ('Natalie Danford'), - ('John Powell'), - ('Nancy Richler'), - ('Sandra Benitez'), - ('Allen DeHart'), - ('Bruce Sundquist'), - ('Ben Jonson'), - ('Roger Holdsworth'), - ('Alan V. Hewat'), - ('Angela Nissel'), - ('Art Lee'), - ('Claire Davis'), - ('Helen Banes'), - ('Diane Fitzgerald'), - ('Julia Wilkinson'), - ('John King'), - ('Nuruddin Farah'), - ('Joyce Goldstein'), - ('Halldor Laxness'), - ('Carol Frieberg'), - ('Margaret B. Blackman'), - ('Florence E. Davidson'), - ('Laurie Foos'), - ('John B. Keane'), - ('Chuck Shepherd'), - ('Elizabeth Nixon Weaver'), - ('Sol Gordon'), - ('Alexander Lockhart'), - ('Kurban Said'), - ('Jenia Graman'), - ('Ben Sherwood'), - ('Joan'), - ('Craig Claiborne'), - ('Marc Mappen'), - ('Jill McCorkle'), - ('Lawrence Norfolk'), - ('Tom Henry'), - ('Greta Guzek'), - ('Paco Underhill'), - ('Kathleen Alcala'), - ('Faith Sullivan'), - ('Maria Flook'), - ('Roger Rapoport'), - ('Marguerita Castanera'), - ('Mary Morris'), - ('Ja'), - ('Tama Janowitz'), - ('Marty Westerman'), - ('Anton Chekhov'), - ('Ann Dunnigan'), - ('Ernest J. Simmons'), - ('M. F. K. Fisher'), - ('Nino Lo Bello'), - ('Christopher Morley'), - ('Ionicus - Joshua Armitage;'), - ('Marlys Millhiser'), - ('Jeanne K. Hanson'), - ('Barbara Myerhoff'), - ('Amber Coverdale Sumrall'), - ('Patricia Vecchione'), - ('Dee Wells'), - ('Peter Canby'), - ('Jerry Biederman'), - ('Lorin Michelle Biederman'), - ('Gregory Gibson'), - ('Sally Morningstar'), - ('Martha Ostenso'), - ('David Arnason'), - ('Marly Swick'), - ('Sandi Toksvig'), - ('JANE GARDAM'), - ('Jill Paton Walsh'), - ('Eliyahu Goldratt'), - ('Rani Manicka'), - ('Saxton Judith'), - ('Marcus Sieff'), - ('Ronnie Barker'), - ('Colin White'), - ('Laurie Boucke'), - ('David Hampshire'), - ('Carl Lombard'), - ('Dipika Mukherjee'), - ('Kirpal Singh'), - ('M A Quayam'), - ('Dayna Dunbar'), - ('Acton Figueroa'), - ('Diane Hammond'), - ('Thomas Adcock'), - ('Margaret Snyder'), - ('Karin Slaughter'), - ('Amanda Brownfield'), - ('Rose Connors'), - ('Pat Booth'), - ('Matthew Rettenmund'), - ('Nigel Cawthorne'), - ('Leslie Gould'), - ('Kim Wong Keltner'), - ('Kathy Peel'), - ('Beth Hilgartner'), - ('Claudia Pattison'), - ('Teresa McClain Watson'), - ('Jean Thompson'), - ('Brian Kilcommons'), - ('Sarah Wilson'), - ('Richard T. Pienciak'), - ('George Anastasia'), - ('Lagoon Books'), - ('Peter Burton'), - ('Mary-Kate Olsen'), - ('Carol Thompson'), - ('Annie Auerbach'), - ('Mark O''Hare'), - ('Steven Banks'), - ('Clint Bond'), - ('Patricia MacDonald'), - ('Patrick Lestewka'), - ('R.J. Rosenblum'), - ('Tanya Maria Barrientos'), - ('Ramsey Campbell'), - ('Caroline Leavitt'), - ('Lauren Kelly'), - ('James A. Moore'), - ('Jilliane Hoffman'), - ('Christina Fitzpatrick'), - ('Jessica Barksdale Inclan'), - ('Linda Nichols'), - ('Wrath James White'), - ('Mark Billingham'), - ('Mark Nykanen'), - ('Matthew Stokoe'), - ('Blake Crouch'), - ('Anne Leclaire'), - ('James Kidman'), - ('Donna VanLiere'), - ('Gary A. Braunbeck'), - ('Sephera Giron'), - ('Barbara Bell'), - ('Kevin Yarbrough'), - ('Lucy Taylor'), - ('Judy Duarte'), - ('Monica J. O''Rourke'), - ('Neal McPheeters'), - ('Elizabeth Steffen'), - ('Paul Burrell'), - ('Patrick Demarchelier'), - ('Hannah Alexander'), - ('Shirley Palmer'), - ('Victoria Pade'), - ('Laura Kasischke'), - ('Robert Boswell'), - ('Judith H. McQuown'), - ('Andrew Harper'), - ('Joshua Gilder'), - ('Kate Morgenroth'), - ('Taylor Kincaid'), - ('Anitra Sheen'), - ('Keith Ablow'), - ('Charles King'), - ('Zelda Lockhart'), - ('Peggy Vincent'), - ('Jeffrey Konvitz'), - ('Joseph Garber'), - ('Scott Smith'), - ('Randall Adams'), - ('William Hoffer'), - ('Marilyn Mona Hoffer'), - ('Glen Hirshberg'), - ('Jennifer L. Holm'), - ('Jere Longman'), - ('John Skipp'), - ('Elwood Reid'), - ('Manuela Dunn-Mascetti'), - ('Sayed A. A. Razwy'), - ('Abdullah Yusuf Ali'), - ('Anne Hruska'), - ('Malcolm X'), - ('Attallah Shabazz'), - ('Marie-Luise Kreuter'), - ('Marc Behm'), - ('John Steakley'), - ('Rob Kean'), - ('Mark Kistler'), - ('Donald Senior'), - ('Mary Packard'), - ('James McIlrath'), - ('Sarah Josepha Hale'), - ('Bruce McMillan'), - ('John Follain'), - ('Rita Cristofari'), - ('Michael Cader'), - ('Kim Bellefontaine'), - ('PerHenrik Gurth'), - ('Will Osborne'), - ('Dianne Snyder'), - ('Allen Say'), - ('Heidi E. Y. Stemple'), - ('Roger Roth'), - ('Linda Ashman'), - ('Regan Dunnick'), - ('Ellen Schecter'), - ('Malcolm Yorke'), - ('Lee Davis'), - ('Ira Wolfman'), - ('Paul Meisel'), - ('Ellen Levine'), - ('Richard Williams'), - ('Edward Frascino'), - ('Elizabeth G. Hainstock'), - ('Ken Weber'), - ('Roger Priddy'), - ('Robert Levine'), - ('Robert T. Levine'), - ('Meredith Hamilton'), - ('Patricia Beatty'), - ('Ji-Li Jiang'), - ('Andrea Immer'), - ('Butch Guice'), - ('Ruth Beechick'), - ('Tomie DePaola'), - ('Nancy Bond'), - ('Bill Nye'), - ('Ian G. Saunders'), - ('Beth Peck'), - ('Natalie Carabetta'), - ('Erik C. Haugaard'), - ('Donna M. Jackson'), - ('Augustine'), - ('Dr. William Bonadio'), - ('Avery Hart'), - ('Paul Mantell'), - ('Alexandra M. Terzian'), - ('Jim Jordan'), - ('Karen Andreola'), - ('Naomi Black'), - ('Nancy Kalish'), - ('Loretta Mowat'), - ('Leisure Arts'), - ('Eds. Leisure Arts'), - ('Mr. Jim Weidmann'), - ('Mr. Kurt Bruner'), - ('Mr. Ron Wilson'), - ('C. Akiyama'), - ('N. Akiyama'), - ('Fujihiko Kaneda'), - ('Rita Lampkin'), - ('Carol Akiyama'), - ('Nobuo Akiyama'), - ('Hiroko Storm'), - ('Robert Tallon'), - ('Ian Sheldon'), - ('Bruce Campbell'), - ('Esmé Raji Codell'), - ('Penny Simkin'), - ('Bridgette Server'), - ('Bishop Fulton Sheen'), - ('John Beevers'), - ('Lee Fahnestock'), - ('Norman MacAfee'), - ('E. Nesbitt'), - ('Henry Graham'), - ('Gennady Spirin'), - ('Giuliana Pelucchi'), - ('Giuliana Peluchi'), - ('Antoinette Bosc'), - ('Benedict J. Groeschel'), - ('James W. Demers'), - ('Michael D. O''Brien'), - ('Angela C. Santomero'), - ('Jenine Pontillo'), - ('David Isaacs'), - ('Laura Berquist'), - ('Susan Wise Bauer'), - ('Patty Martirosian'), - ('Jay Wise'), - ('Sharon'), - ('Mel Gibson'), - ('Ken Duncan'), - ('Tom Allen'), - ('Marcellino D''Ambrosio'), - ('Matthew Pinto'), - ('Jonathan Stroud'), - ('Joan Younger Meek'), - ('Hertha Pauli'), - ('Lenn Redman'), - ('Philip Wilkinson'), - ('Susan Striker'), - ('Edward Kimmel'), - ('Elizabeth Hallam'), - ('Kimberly Hahn'), - ('Scott Hahn'), - ('Sara Wood'), - ('Christine O'' Keeffe Lafser'), - ('Phyllis Tickle'), - ('David Currie'), - ('C. Bernard Ruffin'), - ('Mitch Pacwa'), - ('Ronda Chervin'), - ('Patrick Madrid'), - ('Patrick Madrid (editor)'), - ('Foreword By Scott Hahn'), - ('Geoff Benge'), - ('Janet Benge'), - ('Ann Mcgovern'), - ('Tracy Sugarman'), - ('Leslie Rule'), - ('H. Rider Haggard'), - ('Paul Hogarth'), - ('Jack Hitt'), - ('Tony Hille'), - ('Euripides'), - ('John McLean'), - ('T.E. Lawrence'), - ('Charles P. Curtis Jr.'), - ('Ferris Greenslet'), - ('Maria Beesing'), - ('Robert J. Nogosek'), - ('Patrick H. O''Leary'), - ('Pierre-Ambrois-Francois Choderlos De Laclos'), - ('Richar'), - ('Michael Allen Dymmoch'), - ('Louise Taylor'), - ('Barbara E. Cohen'), - ('Patricia Ingham'), - ('Mandelbaum'), - ('Robert M. Quackenbush'), - ('Sarah Graves'), - ('A.A. Milne'), - ('Andrew Glass'), - ('Janet Frank'), - ('Jeff Abbott'), - ('George Downing'), - ('Kathleen Keating'), - ('Mimi Noland'), - ('Evelyn E. Smith'), - ('James Fox'), - ('Jan Lynette Dargatz'), - ('Raymond Lamont-Brown'), - ('Connie Fedderson'), - ('Ross Thomas'), - ('Shelley Freydont'), - ('Lesilie Meier'), - ('Howard Pyle'), - ('Adapted Version By Alexa Villanueva'), - ('Harriet Lerner'), - ('Suzette Tyler'), - ('Stephen Hickman'), - ('Fran Lebowitz'), - ('Leo Buscaglia'), - ('Kate Klise'), - ('M. Sarah Klise'), - ('Emily Brightwell'), - ('Christine Breen'), - ('Louis B. Wright'), - ('Virginia A. La'), - ('Woodward'), - ('Aline Romanos'), - ('Ronni Eisenberg'), - ('Kate Kelly'), - ('Carol Gilligan'), - ('Peter Russell'), - ('Bob Rosner'), - ('Les Rhodes'), - ('Jeremy Leggatt'), - ('Dorothy L Sayers'), - ('Terry Cole-Whittaker'), - ('Jessica Mitford'), - ('Baroness Orczy'), - ('Deborah Adams'), - ('Michelle Kwan'), - ('Laura M. James'), - ('Jacqueline Girdner'), - ('Ellen Fein'), - ('Sherrie Schneider'), - ('Lou Jane Temple'), - ('John Hockenberry'), - ('Sheldon Rubin'), - ('Laurien Berenson'), - ('Arlene Matthews'), - ('Nadine Mockler'), - ('Frances Gray Patton'), - ('Emmuska Orczy'), - (' Baroness Orczy'), - ('Mildred A. Wirt'), - ('Russell H. Tandy'), - ('Allen Mandelbaum'), - ('Diane M Stortz'), - ('Nancy Lee Teaff M.D.'), - ('Kim Wright Wiley'), - ('Downing'), - ('Chuck Slack'), - ('Carla Jablonski'), - ('Donald M. Silver'), - ('Patricia J. Wynne'), - ('Patricia J. Wyn'), - ('Ludwig Bemelmans'), - ('Jesse Younger'), - ('Aurelius Battaglia'), - ('Jennifer Dewey'), - ('Read'), - ('Vincent Andriani'), - ('Henrik Drescher'), - ('Robert Loren Fleming'), - ('Ken Kimmelman'), - ('Elspeth Murphy'), - ('Jane E. Nelson'), - ('John Walsh'), - ('Jonathan Frakes'), - ('Nancy L. Mace'), - ('Peter V. Rabins'), - ('Terence; Crider'), - (' Bill; Lee'), - (' Wendi; Schumacher'), - (' Ail'), - ('Lazaris'), - ('Gregory McDonald'), - ('John Hollander'), - ('Nancy Fairbanks'), - ('Andrew Carroll'), - ('Robert Kimmel Smith'), - ('George Sullivan'), - ('Emma Gelders Sterne'), - ('Alton Raible'), - ('Richard Skinner'), - ('Jason Moss'), - ('Jeffrey Kottler'), - ('Anton Chaitkin'), - ('E .M. Delafield'), - ('E. M. Delafield'), - ('Arthur Watts'), - ('Mary Borden'), - ('Sharyn Mccrumb'), - ('Elizabeth Foxwell'), - ('Hamilton Crane'), - ('Lee Charles Kelley'), - ('Frank Ferrell'), - ('Janet Ferrell'), - ('Edward Wakin'), - ('Joan Embery'), - ('Steven H Silver'), - ('Gene Stratton Porter'), - ('Lori Marie Carlson'), - ('M. C. Beaton'), - ('Carol Anne O''Marie'), - ('Gary Trudeau'), - ('Donald Carrick'), - ('Lebbeus Woods'), - ('Doreen Tovey'), - ('Jaqueline King'), - ('Robert Ellsberg'), - ('Ruth Teichroeb'), - ('Julie Nixon Eisenhower'), - ('Lori Copeland'), - ('Patricia Windsor'), - ('Norma Mazer'), - ('Herbert Fensterheim Ph.D.'), - ('Jean Baer'), - ('Deborah Donnelly'), - ('S. Gross'), - ('Dorie Byers'), - ('Edward Ball'), - ('Laura Pedersen'), - ('Judith Fein'), - ('Eastman Kodak Company'), - ('Phyllis Rose'), - ('Jean Wickstrom Liles'), - ('Lisa A. Hooper'), - ('Richard Lockridge'), - ('Frances Lockridge'), - ('Francess Lin Lantz'), - ('Tip O''Neill'), - ('Manuel J. Smith'), - ('Dick King-Smith'), - ('Kate Douglas Wiggin'), - ('Deborah G. Felder'), - ('B. B. Hiller'), - ('Stephen Krensky'), - ('F. M. Cornford'), - ('Jack Shepherd'), - ('Thomas Nelson Publishers'), - ('Ann McGovern'), - ('Hilary Knight'), - ('William Stevenson'), - ('Charlotte Elkins'), - ('Kenneth Giles'), - ('A. A. Fair'), - ('Laurel Robertson'), - ('David Wallechinsky'), - ('Frances Burnett'), - ('Julie Harris'), - ('Farley Mowat'), - ('Chuck Yeager'), - ('Charles Leerhsen'), - ('Claire Tomalin'), - ('Amanda Brown'), - ('Peter Sis'), - ('Kathryn Kenny'), - ('Susan Feldmann'), - ('Charles E. Funk'), - ('Stewart Cowley'), - ('Susi Adams'), - ('Mark Saltzman'), - ('Douglas J. Rumford'), - ('Bill Hinds'), - ('Sidonie­Gabrielle Colette'), - ('Je'), - ('Boris Pasternak'), - ('Iris Rainer Dart'), - ('Christopher Sykes'), - ('John R. Neill'), - ('Sister Carol Anne O''Marie'), - ('Jackie French Koller'), - ('Judith Mitchell'), - ('Mary Rodgers'), - ('Harold S. Kushner'), - ('Susan Allen Toth'), - ('Mignon Good Eberhart'), - ('Judith Thurman'), - ('Dorothy Law Nolte Ph.D.'), - ('Rachel Harris L.C.S.W. Ph'), - ('JosephineTey'), - ('Joshua Reynolds'), - ('Pat Rogers'), - ('Elizabeth Forsythe Hailey'), - ('Jim Lovell'), - ('Barbara Bush'), - ('Paul Greengrass'), - ('Clement C. Moore'), - ('Robin (& Anne McCaffrey) Wood'), - ('William Sale Jr'), - ('Thomas T. Noguchi'), - ('Joseph DiMona'), - ('Leslie O''Kane'), - ('W. Fezler'), - ('A. J. Russell'), - ('Don H Polston'), - ('Michael Mitton'), - ('Joel Martin'), - ('Michael Lowerbein'), - ('Mikel Vause'), - ('Peggy Fleming'), - ('Bert Stern'), - ('Helen Eustis'), - ('John Shelby Spong'), - ('Brian Wilson'), - ('Todd Gold'), - ('Mother Teresa'), - ('Deborah Woodworth'), - ('Louis Jambor'), - ('Sansan'), - ('Nicola De Pulford'), - ('Hugh Fleetwood'), - ('Deborah Raney'), - ('Arthur Lyons'), - ('Marcello Truzzi'), - ('Joe Jackson'), - ('William Burke Jr.'), - ('Gerald Durrell'), - ('Ralph Thompson'), - ('Stewart Farrar'), - ('Anthony Louis'), - ('Ruth V. Ward'), - ('Ellen Cooney'), - ('Liz Jarrett'), - ('John Louis Anderson'), - ('Bob Puhala'), - ('Sally S. Wright'), - ('W. Allen Werneken'), - ('Harold S Kushner'), - ('John Jay Osborn Jr'), - ('Christopher Phillips'), - ('Willa Sibert Cather'), - ('Jennifer Lee'), - ('Ann Howard Creel'), - ('Christopher D. Hudson'), - ('Veronica McBride'), - ('Christine Tripp'), - ('Joe Fellegy'), - ('Marie Evans'), - ('Ann Shakeshaft'), - ('Martha Vanceburg'), - ('Mary Murray DeLaney'), - ('Jay Jennings'), - ('Ashleigh Bryce Clayton'), - ('Howard Mohr'), - ('John D. Seymour'), - ('Geoff Dyer'), - ('Hazelden Publishing'), - ('Jesse Ventura'), - ('Douglas Brinkley'), - ('Ming-Dao Deng'), - ('Ben Starnes'), - ('Myron Miller'), - ('Rosemary Daniell'), - ('Steve Gannon'), - ('Valerie W. Wesley'), - ('Kathleen Barret'), - ('Tamela Hancock Murray'), - ('Linda Lyle'), - ('Christine Lynxwil'), - ('Darwin Porter'), - ('Danforth Prince'), - ('Erri De Luca'), - ('Tony Potter'), - ('Mattie J. T. Stepanek'), - ('Anton Myrer'), - ('Richard W. Chilson'), - ('Julian'), - ('Sandra Gulland'), - ('Deborah Chiel'), - ('Jill Shalvis'), - ('Gerald Malcolm Durrell'), - ('Carter'), - ('Matthew Strebe'), - ('Charles Perkins'), - ('Lisa Donald'), - ('Raymond Barnett'), - ('Aleksandr Isaevich Solzhenitsyn'), - ('Thomas P. Whitney'), - ('Michelle M. Sagara'), - ('Bart Davis'), - ('Irving'), - ('Matthew Mead'), - ('Irwin Shaw'), - ('Robert Heinlein'), - ('Stanley Kubrick'), - ('Beryl Markham'), - ('Mary S. Lovell'), - ('Rigoberta Menchú'), - ('Elisabeth Burgos-Debray'), - ('Ann Wrigh'), - ('Anne Raeff'), - ('Marina Picasso'), - ('Zelig Pliskin'), - ('Kate Walbert'), - ('Dina Temple-Raston'), - ('John Dean'), - ('Susannah Heschel'), - ('Mark Epstein'), - ('Betsy Reed'), - ('Katha Pollitt'), - ('Nathaniel Philbrick'), - ('Louis De Bernières'), - ('Stephen Lang'), - ('Isobel Murray'), - ('Library Of America'), - ('Chiang Yee'), - ('James T. Farrell'), - ('Mike Tidwell'), - ('Maureen Dean'), - ('Michael Emmerich'), - ('W. Ralph Eubanks'), - ('John McAfee'), - ('Geoffrey Giuliano'), - ('Brenda Giuliano'), - ('Abbas Milani'), - ('Dawn Turner Trice'), - ('Hortense Calisher'), - ('Daniel Gerroll'), - ('Dawn Powell'), - ('Grace Paley'), - ('Katherine Towler'), - ('Michelle Passoff'), - ('Epicurus'), - ('Dean R. Spitzer Ph.D.'), - ('Patricia Foster'), - ('Pauli Murray'), - ('Milton Steinberg'), - ('G. A. McKevett'), - ('James M. Citrin'), - ('Richard Smith'), - ('Sarah Strohmeyer'), - ('T. L. Gray'), - ('Anna Davis'), - ('Geralyn Dawson'), - ('Scott Gray'), - ('Susan Andersen'), - ('Dennis Boutsikaris'), - ('Linda Markowiak'), - ('Campbell'), - ('Claudia Bishop'), - ('Kathleen Taylor'), - ('Trish Jensen'), - ('Mary Burton'), - ('Rebecca Price Janney'), - ('Kathleen Webb'), - ('Jennifer Drew'), - ('Barbara Dunlop'), - ('Alex Matthews'), - ('Wensley Clarkson'), - ('William Flanagan'), - ('Aphrodite Jones'), - ('James Neff'), - ('Winn'), - ('Maggie Simpson'), - ('Eileen Fulton'), - ('Katherine Deauxville'), - ('Ruth Ryan Langan'), - ('Mariann'), - ('Sandy Steen'), - ('Joan Kilby'), - ('Jane Graves'), - ('Sheryl Lynn'), - ('Jean Barrett'), - ('Ann Voss Peterson'), - ('Kathleen O''Brien'), - ('Patricia Potter'), - ('Coerte V. W. Felske'), - ('Gini Hartzmark'), - ('Iris Ranier Dart'), - ('Darlene Gardner'), - ('Dawn Atkins'), - ('Lori Wilde'), - ('Susan Rogers Cooper'), - ('W. Warren Wagar'), - ('Charles Lilly'), - ('Melissa Lowell'), - ('Mel Gilden'), - ('Darren Star'), - ('K. T. Smith'), - ('Norma Johnston'), - ('L. P. Hartley'), - ('J. Donald Crowley'), - ('L. R. Wright'), - ('Laurie Colwin'), - ('Margot Zemach'), - ('Voltaire'), - ('Mona Simpson'), - ('Donald M. Epstein'), - ('Nathaniel Altman'), - ('George Dawson'), - ('Richard Glaubman'), - ('Suzanne Falter-Barns'), - ('Betty J. Kovacs'), - ('Sifu Judith Sherven'), - ('Jim Sniechowski'), - ('Nancy Dunnan'), - ('Mitchell Pacelle'), - ('Dan Cashman'), - ('Donald E. DeKieffer'), - ('Kate Solisti-Mattelon'), - ('Patrice Mattelon'), - ('Sandra Burr'), - ('Daniel D. Pearlman'), - ('Paula R. Pearlman'), - ('Mark H. McCormack'), - ('Richard A.'), - (' M.D. Evans'), - ('Richard A. Evans M.D.'), - ('Paul E. Morin'), - ('Horst Rechelbacher'), - ('Jennifer Moses'), - ('Anna Johnson'), - ('Abigail Van Buren'), - ('Martin Prechtel'), - ('Mira Kamdar'), - ('Danny Fields'), - ('Kristin Sheldon'), - ('Adrienne Eisen'), - ('Caroline Harvey'), - ('Patricia J. Crane; Ph.D.'), - ('Kenny Rose Butts'), - ('Vladimir Chernozemsky'), - ('Carolyn Porter'), - ('Patti G. Fields'), - ('Adelheid Ohlig'), - ('Engelhard'), - ('D. J. Brown'), - ('Lorena McCourtney'), - ('Meg Tilly'), - ('Bonnie Burnard'), - ('Jerry J. Pollock'), - ('Trudy Baker'), - ('Rachel Jones'), - ('Laura Cunningham'), - ('Richard Hewitt'), - ('Barbara Finn Hewitt'), - ('William Stuart Long'), - ('Barry Yourgrau'), - ('Josef Skvorecky'), - ('Bruce R. Olson'), - ('Norah Robinson Lofts'), - ('Carole L. Glickfeld'), - ('Laurel Doud'), - ('Robert Donald Spector'), - ('Carol Hill'), - ('Natalya Reshetovskaya'), - ('G. S. Fraser'), - ('Arthur Roth'), - ('J. J. Graham'), - ('Anatol Rapoport'), - ('Harry Wu'), - ('George Vecsey'), - ('Ann Radcliffe'), - ('Bonamy Dobrï¿1/2e'), - ('Terry Castle'), - ('Horace Walpole'), - ('Connie Brockway'), - ('Alexandra Blackstone'), - ('Michelle Brandon'), - ('Anna DeForest'), - ('Jessica Douglass'), - ('Patricia Pellicane'), - ('Elizabeth Chadwick'), - ('Kathleen Harrington'), - ('Gwen Cleary'), - ('Donna Stephens'), - ('Dinah McCall'), - ('Jodi Thomas'), - ('Kathleen Kane'), - ('Frederick D. Huebner'), - ('Jacey Ford'), - ('Ana Leigh'), - ('Meryl Sawyer'), - ('Jeanette Baker'), - ('Roxanne St. Claire'), - ('Erickson'), - ('Taylor Smith'), - ('JIM DAVIS'), - ('Bill Pronzini'), - ('Obrien'), - ('Taylor Janelle'), - ('Wilma S. Ross'), - ('S. Black'), - ('Christiane Heggan'), - ('Carson Mccullers'), - ('Gloria Anzaldua'), - ('Mary Ann Mason'), - ('Jessie Lee Brown Foveaux'), - ('Victor Martinez'), - ('James Hilton'), - ('James And Chris Collier'), - ('Paul Laurence Dunbar'), - ('Susie Bright'), - ('Mary Taylor Simeti'), - ('Kenneth Krauss'), - ('Laurie Graff'), - ('Carla Wills-Brandon'), - ('Heidi Julavits'), - ('Shirley Conran'), - ('Michael Scholz-Hansel'), - ('Denise-P Cogny'), - ('Alfred De Musset'), - ('Anne Ubersfeld'), - ('Daniel Mesguich'), - ('Stendhal'), - ('Michel Crouzet'), - ('Jean De La Fontaine'), - ('Rosa Regas'), - ('Pierre Choderlos De Laclos'), - ('Douglas Parmée'), - ('David Co'), - ('Joseph Sheridan Le Fanu'), - ('Juan Marse'), - ('Nick Caistor'), - ('Joan Hickson'), - ('Jean-François Revel'), - ('Guido Waldman'), - ('KESSEL'), - ('Minne'), - ('Claude Croisetière'), - ('France Leduc'), - ('Robert J. Ray'), - ('Bill Roorbach'), - ('Natasha Wimm'), - ('Caroline Sharp'), - ('Josip Novakovich'), - ('Louis D. Rubin'), - ('Sheena Gillespie'), - ('Robert Singleton'), - ('Robert Becker'), - ('H. W. Fowler'), - ('Sir Ernest Gowers'), - ('James N. Frey'), - ('Constance Hale'), - ('Julie Checkoway'), - ('Chicago Editorial Staff'), - ('Rick DeMarinis'), - ('Evan Marshall'), - ('Carol Cartaino'), - ('Sheila Bender'), - ('Carol Bly'), - ('Charles T. Brusaw'), - ('Michael Bugeja'), - ('Alan Lee'), - ('Helen Lane'), - ('Michael Turner'), - ('Chris Ware'), - ('Stanley Wells'), - ('Ga'), - ('Daphne Phelps'), - ('Denis Mack Smith'), - ('Charles Powers'), - ('Christina Pribicevic-Zoric'), - ('Michael Palin'), - ('Charles Palliser'), - ('Peter Nadas'), - ('Adrienne Dixon'), - ('Russell Hoban'), - ('Ismail Kadare'), - ('Danilo Kis'), - ('Gary Krist'), - ('Marc McCutcheon'), - ('Neil; Carlson'), - (' K. C. (editor) - Intro By Clive Bar'), - ('Colleen Dora'), - ('Malcolm'), - ('Grace F. Edwards'), - ('Kathy Acker'), - ('Jonathan Carroll'), - ('Ellen Akins'), - ('Kathleen Alcal'), - ('Antonio Lobo Antunes'), - ('R. F. Laird'), - ('Ronald Wright'), - ('Ron Chernow'), - ('David Hackett Fischer'), - ('Amir D. Aczel'), - ('George Reese'), - ('James Goodwill'), - ('Robert Eckstein'), - ('J. Steven Perry'), - ('O''Reilly Authors'), - ('Sherry Yard'), - ('Judith Kolberg'), - ('Kathleen Nadeau'), - ('Michele Novotni PhD'), - ('Randy Petersen'), - ('Matthew Restall'), - ('Leonard C. Lewin'), - ('Victor Navasky'), - ('Laurence G. Boldt'), - ('Gavin Menzies'), - ('Frederick Taylor'), - ('Patrick K. O''Donnell'), - ('Hugh Thomson'), - ('Robert M. Sapolsky'), - ('Elaine Pagels'), - ('Karen Elizabeth Gordon'), - ('Ilan Stavans'), - ('John Coyne'), - ('Joni Seager'), - ('Daniel G. Amen'), - ('Edward M. Hallowell'), - ('John J. Ratey'), - ('Jonathan Halverstadt'), - ('Daniel Amen'), - ('Richard Bandler'), - ('Peggy Ramundo'), - ('Gabor Mate'), - ('Kathleen G. Nadeu'), - ('Lynn Weiss'), - ('Margaret Weiss'), - ('Lily Trokenberg Hechtman'), - ('Gabrielle'), - ('Sari Solden'), - ('Lisa Lipkin'), - ('Peter Jaksa'), - ('Senator Paul Wellstone'), - ('Sue Boggio'), - ('Mare Pearl'), - ('Scott Westerfeld'), - ('Manuel Komrof'), - ('Ronald Wilks'), - ('Lisa Sandlin'), - ('Constance Urdang'), - ('Linda Jaivin'), - ('Susan Kay'), - ('Christoph Ransmayr'), - ('Jerry Johnston'), - ('Gwen Macsai'), - ('Patricia L Garfield'), - ('Bharati Mukherjee'), - ('Steven Phillips'), - ('Jean Auel'), - ('Nan Mccarthy'), - ('Carol Saline'), - ('Sharon J. Wohlmuth'), - ('Ken Kaiser'), - ('David Fisher'), - ('Zachary Lazar'), - ('Bathroom Readers'' Institute'), - ('Don Wade'), - ('Nancy Lopez'), - ('Editors Of Don''t Sweat Press'), - ('Victoria Houston'), - ('Brenda Brown'), - ('Louis S. Schafer'), - ('Elise Chanowitz'), - ('Walter Gretzky'), - ('Mark Burnett'), - ('Martin Dugard'), - ('Alison Gold'), - ('The Bathroom Readers'' Hysterical Society'), - ('Arlana Anderson-Hale'), - ('Robin Bovey'), - ('Ewa Pluciennik'), - ('Chris C. Fisher'), - ('John Acorn'), - ('Gary Ross'), - ('Peter Greenberg'), - ('Hal Leonard Corp.'), - ('D. V. Glass'), - ('Michael Ledwidge'), - ('Holden Scott'), - ('Eugene Izzi'), - ('Jim Toomey'), - ('Jake Vest'), - ('Michelle Berriedale-Johnson'), - ('Bill Amend'), - ('Keith Faulkner'), - ('Amanda O''Neill'), - ('Bob Keeshan'), - ('Dennis Lee'), - ('Michael Kusugak'), - ('Vladyana Krykorka'), - ('Helene Desputeaux'), - ('William Wegman'), - ('Molly Coxe'), - ('Joan Steiner'), - ('Clement Hurd'), - ('E. Nesbit'), - ('H. R. Millar'), - ('Suzanne Duranceau'), - ('Philippe Sollers'), - ('Christine Nöstlinger'), - ('Claire Le Grand'), - ('Pascale De Bourgoing'), - ('Pearl Buck'), - ('Lygia Fagundes Telles'), - ('Pierre Assouline'), - ('Laure Guille-Bataillon'), - ('Joseph Kessel'), - ('Ian MacEwan'), - ('Kenzaburo Oé'), - ('Marc Mécréant'), - ('She Lao'), - ('Romain Gary'), - ('Jonquet'), - ('Champion/Jeanne'), - ('Jacques Charon'), - ('Claire Etcherelli'), - ('Niall Griffiths'), - ('Alain Defossé'), - ('Victor Del Litto'), - ('Navarre'), - ('Jacques Higelin'), - ('Alexandra Cade'), - ('Nicolas Rey'), - ('Nicolas Bouvier'), - ('Vladimir Vladimirovich Nabokov'), - ('Donald Harper'), - ('Jean-'), - ('Agueev M'), - ('Darren Aronofsky'), - ('Guillaume Apollinaire'), - ('Danièle Roth'), - ('Perros Georges'), - ('Henri Vincenot'), - ('Pierre Corneille'), - ('Alain Couprie'), - ('François Dagognet'), - ('John D. Barow'), - ('Christophe André'), - ('Alina Reyes'), - ('Michel Serres'), - ('Michèle Albaret-Maatsch'), - ('Agota Kristof'), - ('Théophile Gautier'), - ('Choderlos De Laclos'), - ('Jorge Semprun'), - ('Hans-Ulrich Lindken'), - ('Elisabeth Badinter'), - ('Camille Laurens'), - ('Albert Cohen'), - ('Chi Li'), - ('Angel Pino'), - ('Shao Baoqing'), - ('Jean-Marie Gustave Le Clézio'), - ('Breton'), - ('Giorgio Colli'), - ('Mazzino Montinar'), - ('Jean-Philippe Toussaint'), - ('Toshihiko Izutsu'), - ('Jacques Bouveresse'), - ('Reeves Hubert'), - ('Pierre Levy'), - ('Bruno Latour'), - ('Delmas-Marty Mireill'), - ('Jean-Pierre Olié'), - ('J.-D. Nasio'), - ('Sherry Turkle'), - ('Anne Ancelin Schützenberger'), - ('Georges Perros'), - ('Marc Sautet'), - ('Lys Flowerday'), - ('Denis Diderot'), - ('Louis Calaferte'), - ('Marie Darrieussecq'), - ('Jacques Aubert'), - ('Ludmila'), - ('Franck Dan'), - ('Lydie Salvayre'), - ('Michel Granger'), - ('Sophie Rochefor'), - ('Marie De Hennezel'), - ('Alfred Jarry'), - ('Françoise Rey'), - ('Lovecraft'), - ('Charles Juliet'), - ('Michel Quint'), - ('Clement'), - ('François-René De Chateaubriand'), - ('Pirsig'), - ('Annie François'), - ('Alfred Döblin'), - ('Pierre Mac Orlan'), - ('Renée Villoteau (traduit De L''anglai'), - ('Anne Colin Du Terrail'), - ('Michel Onfray'), - ('Lodge'), - ('Shan Sa'), - ('Maurice Rambaud'), - ('Leïla Sebbar'), - ('Alice Ferney'), - ('T Chevalier'), - ('Pierre Péju'), - ('Marie Nimier'), - ('Alain Duchesne'), - ('Thierry Leguay'), - ('Bahiyyih Nakhjavani'), - ('Bober R'), - ('Christine Le Boeuf'), - ('Raymond Jean'), - ('Jean-Pierre Gérault'), - ('Alain Pierrot'), - ('Dominique Bona'), - ('Luc Lang'), - ('Larry Collins'), - ('Maxence Fermine'), - ('Pascal Bonafoux'), - ('Pancol'), - ('Olivier Rolin'), - ('Hubert Mingarelli'), - ('Tonino Bénacquista'), - ('François Cheng'), - ('Danièle Valin'), - ('P. Peju'), - ('Michael-Anne Johns'), - ('Donna; Donna Unangst Unangst'), - ('Bob Feldgus (Design)'), - ('Michael S. Teitelbaum'), - ('Gerald Leinwand'), - ('Ruth F. Boorstin'), - ('Arthur Waldhorn'), - ('Elaine Bergstrom'), - ('Denny Sargent'), - ('Carin Rafferty'), - ('Dina R. Jewell'), - ('Edythe Draper'), - ('Ben Carson M.D.'), - ('Sellers'), - ('Beverly Byrne'), - ('Winifred Elze'), - ('Phil Hale'), - ('Carol Ellis'), - ('S.E. Hinton'), - ('T. S. Rue'), - ('Mary Lou Podlasiak'), - ('Monica Strauss'), - ('Richard Roeper'), - ('Friedrich Kur'), - ('Traugott König'), - ('John Von Neumann'), - ('Dietrich Dörner'), - ('Carl Seelig'), - ('Fritz Se'), - ('John Lloyd'), - ('Sven Böttcher'), - ('Carl Weissner'), - ('Heinrich Mann'), - ('Ian Stewart'), - ('Jack Cohen'), - ('Herbert G. Wells'), - ('Brian W. Aldiss'), - ('Alexander Solschenizyn'), - ('Anna Peturnig'), - ('Ernst Walter'), - ('Pierre S. De Laplace'), - ('R. Von Mises'), - ('Walter M. Miller'), - ('Carl Amery'), - ('Jürgen Saupe'), - ('Rüdiger Schmidt'), - ('Hans Mayer'), - ('Charles Platt'), - ('Bertrand Russell'), - ('Eberhard Bubser'), - ('Claire Malignon'), - ('Wilhelm Weischedel'), - ('Karl Jaspers'), - ('Konstantin Rösch'), - ('J. Kapistram Bott'), - ('Herbert Geisen'), - ('Jean Amery'), - ('David Wells'), - ('Richard Curtis'), - ('Rowan Atkinson'), - ('Victor Serebriakoff'), - ('Michael Walter'), - ('Paul Watzlawick'), - ('Frederick Bodmer'), - ('Hanswilhelm Haefs'), - ('Richard Feynman'), - ('Edward M. Reingold'), - ('Nachum Dershowitz'), - ('Duncan Steel'), - ('Thomas S. Kuhn'), - ('Kurt Simon'), - ('Hermann Vetter'), - ('Jesse Sheidlower'), - ('Friedrich Von Oppeln-Bronikows'), - ('Friedrich Griese'), - ('Gert Postel'), - ('Christoph Neumann'), - ('The Fluid Research Group'), - ('Ulr'), - ('Karl Leopold Von Lichtenfels'), - ('Charles Darwin'), - ('Rudolf Zorn'), - ('Voy Sobon'), - ('Robert Rau'), - ('David Hilbert'), - ('Konfuzius'), - ('R Moritz'), - ('Michael Koseler'), - ('Arkadi Strugatzki'), - ('Boris Strugatzki'), - ('Aljonna Möckel'), - ('Erika Pietraß'), - ('Hermann Buchner'), - ('Barbara Heidkamp'), - ('Hanna Rottensteiner'), - ('Hubert Schumann'), - ('Charlotte Eckert'), - ('Jutta Janke'), - ('Klaus S'), - ('Caesar Rymarowicz'), - ('Irmtraud Zimmermann-Göllheim'), - ('Edda Werfel'), - ('Rüdiger Nehberg'), - ('Mechthild Horn'), - ('David Hume'), - ('Norman Kemp Smith'), - ('Jens Kulenkampff'), - ('Gero Von Randow'), - ('Carl Friedrich Von Weizsäcker'), - ('Günter. Jäckel'), - ('Wolf Schneider'), - ('Luis Murschetz'), - ('Christoph Drösser'), - ('Daniel Jonah Goldhagen'), - ('Klaus Kochmann'), - ('Sunset Publishing Staff'), - ('Howard-Yana Shapiro Ph.D.'), - ('John Harrisson'), - ('Paul Ferrini'), - ('Nk Lawn And Garden'), - ('Mimi Dietrich'), - ('Janet Sobesky'), - ('Creative Publishing International'), - ('Hearst Corp Hous'), - ('Arnold Reinhold'), - ('Margaret Levine You'), - ('Philip Harnden'), - ('Patricia Lanza'), - ('Dominic O''Brien'), - ('Dominic O''Brian'), - ('Craig Lagory'), - ('Jacqueline Winspear'), - ('Pamela Duncan'), - ('Dalai Lama XIV'), - ('Marcia Keegan'), - ('Michele Cassou'), - ('Master Jae Woong Kim'), - ('His Holiness The Dalai Lama'), - ('Cathy Barash'), - ('Robert Baer'), - ('Dorothea Hall'), - ('Ron Caralissen'), - ('Ron Carolissen'), - ('Eleanor Burns'), - ('Jeanne Argent'), - ('Carole Thomerson'), - ('Carolyn Bucha'), - ('Chris Rankin'), - ('Cheryl Smith'), - ('Cheri Huber'), - ('June Shiver'), - ('Gershon Winkler'), - ('Lakme Batya Elior'), - ('Palmer-Pletsch Associates'), - ('Pati Palmer'), - ('Ann Price'), - ('Robert Harold Schuller'), - ('Candace Ord Manroe'), - ('Ortho Books'), - ('Janette Hall'), - ('Carol Henderson'), - ('Karin Sha'), - ('Victoria Magazine'), - ('Jeanine Larmoth'), - ('Tricycle Magazine'), - ('Walpola Rahula'), - ('Esther De Waal'), - ('Sarah Duchess Of York'), - ('Weight Watchers'), - ('Marla Cilley'), - ('Linda Cobb'), - ('Geshe Michael Roach'), - ('William Bridges'), - ('Teri Dunn'), - ('Joel C. Rosenberg'), - ('Dee-Ann LeBlanc'), - ('Michael Smith'), - ('David Flanagan'), - ('Sriram Srinivasan'), - ('Richard Petersen'), - ('William Stallings'), - ('Donald L. Pipkin'), - ('Robyn Miller'), - ('Kay Kenyon'), - ('Cheryl Richardson'), - ('Mund Fuller'), - ('Patenaud'), - ('Rosemarie Lennon'), - ('L. Warren Douglas'), - ('Eli'), - ('Melissa Mathison'), - ('William M. Carney'), - ('James W. Clarke'), - ('Jack Geasland'), - ('Anna Louise Golden'), - ('Jovial Bob Stine'), - ('Mel Brooks'), - ('Thomas Meehan'), - ('Ronny Gr'), - ('Robh Ruppel'), - ('Kam Majd'), - ('M M Kaye'), - ('George O. Barr'), - ('Gregory Bean'), - ('George Bernau'), - ('Dona Vaughn'), - ('Janet Scott Batchler'), - ('Lee Batchler'), - ('Bob'), - ('L. Butcher'), - ('Ken Englade'), - ('Edward Humes'), - ('Janet Parker Beck'), - ('Jean Thesman'), - ('N. Maccullough Weir'), - ('Michael Kaplan'), - ('Richard Owen'), - ('Pyotyr Kurtinski'), - ('Elana Lore'), - ('Alfred Hitchcock'), - ('Eluki Bes Shahar'), - ('Roger Cruz'), - ('Judith Katzir'), - ('Barbara Linner'), - ('Carolyn G. Heilbrun'), - ('Harry Rowohlt'), - ('Maria Benedickt'), - ('Neil Grant'), - ('Lynn Flewelling'), - ('Gary Ruddell'), - ('Steve Kowit'), - ('R. Ewart Oakeshott'), - ('Joseph Gies'), - ('Frances Gies'), - ('Christopher; Payne'), - (' Ronald Dobson'), - ('James F. McCloy'), - ('Ray'), - (' Jr. Miller'), - ('Ray Miller'), - ('Ann Van Wagner Childs'), - ('Allan Cox'), - ('Faye D. Resnick'), - ('Mike Walker'), - ('Pamela Wallace'), - ('Elise Title'), - ('Diane Pershing'), - ('Sally Kemp'), - ('Sebastien Japrisot'), - ('Alan Sheridan'), - ('G. B. (1948- ) Trudeau'), - ('F.M. Houston'), - ('Kieran Crowley'), - ('Alma E. Guinness'), - ('Stephen L. Burns'), - ('Julian F. Thompson'), - ('Phyllis Halldorson'), - ('Peggy Webb'), - ('Heather'), - ('Steve Null'), - ('Lyn Stone'), - ('Robert Newton Peck'), - ('G. H. Stine'), - ('Sara Bliss'), - ('Sheryl Paul'), - ('Marg Stark'), - ('Margaret Anne Doody'), - ('Sturgeon'), - ('J. C. Suares'), - ('Jean-Claude Suares'), - ('Denham Sutcliffe'), - ('Denise Fields'), - ('Alan Fields'), - ('Georgina Gentry'), - ('Susan'), - ('Karen Van Der Zee'), - ('Margaret Mahy'), - ('Jack Dann'), - ('Tom Topor'), - ('Valerie Alderson'), - ('Virginia Farmer'), - ('Patricia Harwin'), - ('Carole Howey'), - ('Deveraux'), - ('Jo Goodman'), - ('Patti O''Shea'), - ('Stephen B. Oates'), - ('John William Ward'), - ('Kimberly Wagner'), - ('Danielle Trent'), - ('Sarah Temple'), - ('Jan Freed'), - ('Hal Lindsey'), - ('Rosanne Kohake'), - ('Kimberley Comeaux'), - ('Lois Greiman'), - ('Eloisa James'), - ('Paul Levine'), - ('Loretta Chase'), - ('Kay Arthur'), - ('Steven P. Shelov'), - ('Robert E. Hannemann'), - ('Lisa Altalida'), - ('Darlene Marie Wilkinson'), - ('Darlene Wilkinson'), - ('Lauryn Silverhardt'), - ('Jason Fruchter'), - ('Zachary Alan Fox'), - ('William P. Wood'), - ('Joan Overfield'), - ('Sybil Leek'), - ('Dan Peterson'), - ('Jack Weatherford'), - ('Lydia Van Andel'), - ('Ineke Van Sijl'), - ('Cherouke Ronkes Age'), - ('Anne Civardi'), - ('James Riordan'), - ('Sted Mays'), - ('Joanna Hines'), - ('Yvonne Baudry'), - ('R D Blackmore'), - ('Prue Theobalds'), - ('Nick Yapp'), - ('Michel Syrett'), - ('Lyn Andrews'), - ('Jamila Gavin'), - ('Paul Langfield'), - ('Angela Wilkes'), - ('Professor Nicholas Abercrombie'), - ('Bryan'), - ('Jimmy Mulville'), - ('Harry Thompson'), - ('Colin Swash'), - ('Asne Seierstad'), - ('Graeme Garden'), - ('Ken Livingstone'), - ('Peter Ustinov'), - ('John Woodforde'), - ('Illustrated By Trevor Aldous'), - ('V. Thomas'), - ('Nigel Foster'), - ('Charles Hemming'), - ('Beverley Piper'), - ('Pamela Zoline'), - ('C.E. Crimmins'), - ('Malcolm Rose'), - ('Alfred W. Munzert'), - ('P. Craig Russell'), - ('John McCrae'), - ('Eric Powe'), - ('Kieron Dwyer'), - ('St'), - ('Robert Ruark'), - ('Phil Jackson'), - ('LINDA LAEL MILLER'), - ('Brendan O''Carroll'), - ('Bash Dibra'), - ('Mary Ann Crenshaw'), - ('Kathleen De Marco'), - ('Sharon Mitchell'), - ('Martha Moody'), - ('Tony Chiu'), - ('David August'), - ('Mary J. Fulton'), - ('Gyo Fujikawa'), - ('Robert Ferrigno'), - ('Don J. Snyder'), - ('Andrew H. Malcolm'), - ('C. E. Poverman'), - ('C. E. Pouerman'), - ('Katherine Tarbox'), - ('David B. Feinberg'), - ('Vissell'), - ('Gary Lundberg'), - ('Joy Lundberg'), - ('Cormac Mccarthy'), - ('Janet Farrington Graham'), - ('Sarah Willis'), - ('Michael Macdonald'), - ('Judal'), - ('Ryo Mizuno'), - ('Setsuko Yoneyama'), - ('Masato Natsumoto'), - ('Fred Kaplan'), - ('Pete Nelson'), - ('Hunter Scott'), - ('William B. Breuer'), - ('Lewis & Clark'), - ('Elliott Coues'), - ('Myung Jin Lee'), - ('Myung-Jin Lee'), - ('Reiji Saiga'), - ('Sora Inoue'), - ('Reiji Saiga Tokyo'), - ('Nobuyuki Anzai'), - ('Gainax'), - ('Ueda Hajime'), - ('Stephanie Sheh'), - ('Jack McDevitt'), - ('E. Gary Gygax'), - ('David Sheff'), - ('Koushun Takami'), - ('Patricia Waddell'), - ('Peter Cashorali'), - ('G Godwin'), - ('Micah Perks'), - ('Bernd Heinrich'), - ('Nicholas Dawidoff'), - ('Liz Rosenberg'), - ('Lynn Pan'), - ('Jayne Anne Phillips'), - ('Paul J. Mcauley'), - ('Emily Eden'), - ('Peter Downey'), - ('Nik Scott'), - ('Dani Shapiro'), - ('Lee Havis'), - ('Dave Wolverton'), - ('Lynne Alpern'), - ('Esther Blumenfeld'), - ('Roxie Kelley'), - ('Shelly Reeves Smith'), - ('Paulette Livers Lam'), - ('Cindy Walker'), - ('Iorwerth Eiddon Stephen Edwards'), - ('Cindy Champnella'), - ('Maurine Watkins'), - ('Thomas H. Pauly'), - ('Shirley Climo'), - ('Rosalind Wiseman'), - ('Donald Crawford'), - ('Rosemary Crawford'), - ('James Luceno'), - ('W. T. Benda'), - ('Ph.D.'), - (' D.D.'), - (' Joseph Murph'), - ('Susan Power'), - ('Karen Essex'), - ('Kate McCafferty'), - ('Bill Chalker'), - ('Elizabeth Lawrence'), - ('Harry Lawrence'), - ('Frankie Schelly'), - ('Judy Carter'), - ('Shirley Verel'), - ('Mary Dugger'), - ('James Baker Hall'), - ('Anthony O''Neill'), - ('Michele Slatalla'), - ('Harold W. Blodgett'), - ('E. Sculley Bradley'), - ('Benjamin Franklin'), - ('Richard A. Wright'), - ('Guy Cardwell'), - ('Merle Good'), - ('Bryce Marshall And Paul Williams'), - ('Adam Smith'), - ('Detection Club'), - ('Randy Salem'), - ('Ann Bannon'), - ('Sam Sifton'), - ('Wayland Drew (Adapter)'), - ('Bob Dolman'), - ('Lisa Rogak'), - ('Michael Scott Rohan'), - ('Julie Anne Peters'), - ('C S Lewis'), - ('The Message International'), - ('Mark Doty'), - ('John Berryman'), - ('Charles Thornbury'), - ('JAMES WHITEHEAD'), - ('Matthew J. Costello'), - ('Susan Wright'), - ('Stephen J. Sansweet'), - ('Jack; Hansen'), - (' Mark Victor Canfield'), - ('Linda Hamalian'), - ('Leo Hamalian'), - ('Laura Lederer'), - ('Aaron Naparstek'), - ('Mark Crispin Miller'), - ('Adams'), - ('Margarethe Cammermeyer'), - ('Yevgeny Yevtushenko'), - ('Tierney McClellan'), - ('Rich Miller'), - ('Cynthia Manson'), - ('Kathleen Halligan'), - ('Kathryn H. Kidd'), - ('Clare Curzon'), - ('Melissa Crandall'), - ('Ralph Schoenstein'), - ('W.R. Thompson'), - ('Joyce Hansen'), - ('Nancy Kress'), - ('Algis Budrys'), - ('Michael B. Friedland'), - ('John Fuhrman'), - ('Karin Wuertz-Schaefer'), - ('Stephanie Bennett'), - ('Follett College Stores'), - ('Stephen Arterburn'), - ('Vonette Bright'), - ('Justin Kaplan'), - ('Jack Fuller'), - ('Pamela Thomas-Graham'), - ('Clifford Irving'), - ('Ian Hamilton'), - ('Paul C. Bragg'), - ('Robert L. Herbert'), - ('Trent Stephens'), - ('Rock Brynner'), - ('Sheldon Kopp'), - ('James Greene'), - ('Louise Gordon'), - ('Louise Gordon'), - ('Margit Malmstrom'), - ('Bruno Lucchesi'), - ('William Bayer'), - ('William C. Klatte'), - ('Curtis Cate'), - ('Auguste Charpentier'), - ('Peter Hillsman Taylor'), - ('A. Jay Abrams'), - ('Margaret Ann Abrams'), - ('Andre Franquin'), - ('Greg'), - ('Jidéhem'), - ('Kim Thompson'), - ('Dr. Chris Andrews'), - ('A. B. Guthrie Jr.'), - ('Michener James'), - ('Malcolm Forbes'), - ('Elizabeth P. Hoffman'), - (' With James Southwood Saunders'), - ('Lee Silber'), - ('Terrence E. Poppa'), - ('Karen Novak'), - ('John A. Curry'), - ('Keith Lumsden'), - ('George Papashvily'), - ('Philip Macdonald'), - ('Carol Fenner'), - ('Floyd Conner'), - ('George Plimpton'), - ('James A. Freeman'), - ('Keven Brown'), - ('Ron Ellison'), - ('T. Miller'), - ('Laura Vaccaro Seeger'), - ('Jill McGown'), - ('Cyrus Cassells'), - ('Ghillie Basan'), - ('Cecile Pineda'), - ('Greg Rucka'), - ('Vivian F. Carlin'), - ('Gertrude Harris'), - ('Heidi Palmer'), - ('Howard M. Fast'), - ('Mary J Latsis/m Henissart'), - ('Alfred J. Kahn'), - ('Roberta Gellis'), - ('Myra Street'), - ('Tom Tiede'), - ('Carol Ann Duffy'), - ('Trisha Rafferty'), - ('Ben Schott'), - ('Nancy Holyoke'), - ('Scott Nash'), - ('DK'), - ('Penn Jillette'), - ('Teller'), - ('Donald J. Trump'), - ('Tony Schwartz'), - ('David Schwartz'), - ('Fred Wostbrock'), - ('Steve Ryan'), - ('David Cohen'), - ('Doris Grumbach'), - ('Douglas Bush'), - ('Bruce Ducker'), - ('Fran Dorf'), - ('Molly Gilford'), - ('Juan Felipe Herrera'), - ('Hsu Hui-chih'), - ('Chang Sheng-Tai'), - ('REMee'), - ('Sheila Sancha'), - ('Charles S. Dane'), - ('William Finnegan'), - ('Kimberlee K. Kovach'), - ('Jerome A Barron'), - ('Steve Propes'), - ('Shelby Hearon'), - ('Lorraine Bodger'), - ('Holly Hughes'), - ('Francis Kalnay'), - ('Julian De Miskey'), - ('Mary Jane Frances Cavolina'), - ('Maureen Anne Teresa Kel'), - ('Karen Kingston'), - ('Henry Beard'), - ('Roy McKie'), - ('Margaret Magdelen'), - ('Carol Travilla'), - ('Helen Hull'), - ('Monica Hoose'), - ('Caroline Naifeh'), - ('Elaine S. Pelletier'), - ('Hugh Miall'), - ('Daniella Carmi'), - ('Moacyr Scliar'), - ('Marlene Sanders'), - ('Marcia Rock'), - ('Janet Bukovinsky Teacher'), - ('Boyd Newman'), - ('Gary Evans'), - ('Danny Biederman'), - ('Kathryn Sullivan'), - ('Barbara Brondolo'), - ('Elinor Burkett'), - ('Pd'), - ('Laurie A. Kanyer'), - ('Cheri Fuller'), - ('Tim Brookes'), - ('Glynne Wickham'), - ('Ken Hutcherson'), - ('Michael A. Thomas'), - ('Martin John Yate'), - ('Martin Yate'), - ('E. Patricia Birsner'), - ('Aaron Roy Even'), - ('Carl Deuker'), - ('Andrew Crumey'), - ('Robert Cohen'), - ('Mo Smith'), - ('Brian Hodge'), - ('John R. Maxim'), - ('Robert Houston'), - ('Sylvia Smith'), - ('Marc Lovell'), - ('Gwen Shamblin'), - ('R. Montanari'), - ('C. C. Medina'), - ('Kamala Markandaya'), - ('Eva Wong'), - ('Axel Madsen'), - ('Quinton Hosford Dixie'), - ('Darryl Pinckney'), - ('Dave Dravecky'), - ('Jan Dravecky'), - ('Steve Halliday'), - ('Thomas K'), - ('Susan G. Berg'), - ('Editors Of Prevention Health Books'), - ('Edward P. Sarafino'), - ('James Fleming'), - ('Matthew Head'), - ('Yoshikawa'), - ('J. G Jeffreys'), - ('Xenophon'), - ('W.H.D. Rouse'), - ('Cedric Read'), - ('Jacky Ross'), - ('John R. Dunleavy'), - ('Donniel S.'), - ('Liz Evans'), - ('Gregory Stock'), - ('Neal Gabler'), - ('Annette Kuhn'), - ('Susannah Radstone'), - ('Art Buchwald'), - ('Lou Mobley'), - ('Franz Lidz'), - ('Sheila Gordon'), - ('Aldo Leopold'), - ('Tom Coffey'), - ('Charles J.'), - ('III Adams'), - ('Vic Braden'), - ('Robert Wool'), - ('C. Whitefeather Daniels'), - ('Patricia Geary'), - ('Michael Downing'), - ('Frederick G. Dillen'), - ('Julie Myerson'), - ('Howard Frank Mosher'), - ('Carol Matas'), - ('Tom Drury'), - ('Lynn Joseph'), - ('Barbara Dimmick'), - ('Karen Bender'), - ('A.G. Mojtabai'), - ('Yasunari Kawabata'), - ('Leah Hager Cohen'), - ('Bernice Carton'), - ('Stobie Piel'), - ('Alice Myers'), - ('Sarah Wight'), - ('Tony Kushner'), - ('H.T. Lowe-Porter'), - ('Alisa Craig'), - ('Tepilit Ole Saitoti'), - ('Carol Beckwith'), - ('John Feltwell'), - ('Philip Lerman'), - ('Stephen-Paul Martin'), - ('Michael R. Bloomberg'), - ('Matthew Winkler'), - ('Anne Frank House'), - ('John Mclaren'), - ('Lois Lowenstein'), - ('Jean Paul Trembl'), - ('Mary Ellen Haight'), - ('Gordon Thomas'), - ('Andy Stack'), - ('Eileen Elias Freeman'), - ('J.C. Pollock'), - ('Michael Arlen'), - ('William Kinsolving'), - ('Michael Innes'), - ('Richard Rodriguez'), - ('Michele R. McPhee'), - ('Jane Kenyon'), - ('Jonathan Morris'), - ('Leonard Tourney'), - ('Bill Sanderson'), - ('David S. Walls'), - ('Melba Pattillo Beals'), - ('Barrie Levy'), - ('Ingo Walter'), - ('Roy Smith'), - ('Philip Evans'), - ('Thomas S. Wurster'), - ('Julius Lester'), - ('Larry With Kingsbury'), - (' Donald; Bear'), - (' Greg; Stirling'), - ('Hesper Anderson'), - ('Claire Daniels'), - ('Piri Thomas'), - ('Claude Brown'), - ('Frank G. Slaughter'), - ('T. J. English'), - ('Zane Grey'), - ('Sidney D. Kirkpatrick'), - ('K.K. Beck'), - ('Eric V Lustbader'), - ('Richard Herley'), - ('Leslie Fiedler'), - ('Edward Albee'), - ('Marc Olden'), - ('Cynthia Ozick'), - ('Francoise Sagan'), - ('Iselin C. Hermann'), - ('G. Forester'), - ('Benita Eisler'), - ('JAMES A. MICHENER'), - ('Boze Hadleigh'), - ('John Dalmas'), - ('Paul Davids'), - ('Hollace Davids'), - ('Fredrik Pohl'), - ('Cathal Poirteir'), - ('Jaime Manrique'), - ('Russell Simmons'), - ('Burton B. Turkus'), - ('Sid Feder'), - ('Lech Walesa'), - ('Linda Francis'), - ('Shawn Stewart Ruff'), - ('Jamie O''Neill'), - ('George Beard'), - ('Harold Hutchins'), - ('Shirley Felts'), - ('Richard Alleman'), - ('Douglas Sadownick'), - ('Marion Gorman'), - ('Perla Meyers'), - ('Kathy Hoshijo'), - ('Jack McDowell'), - ('Kim Mclarin'), - ('Stephen Larsen'), - ('Peter Landesman'), - ('Keith Ridgway'), - ('Randall Kenan'), - ('Michael Schmidt'), - ('George Fields'), - ('Dick Bruna'), - ('Nora Levin'), - ('E. E. Cummings'), - ('D.C. Fontana'), - ('Gene Roddenberry'), - ('Brad Ferguson'), - ('Nathan Archer'), - ('Sandy Schofield'), - ('Kristine Kathryn'), - ('Ira S. Behr'), - ('Robert H. Wolfe'), - ('Ronald D.'), - ('Walter Irwin'), - ('G. B. Love'), - ('Jerri Taylor'), - ('Rene E''ch'), - ('John Gregory Betancourt'), - ('Robert E Vardeman'), - ('Carolyn Clowes'), - ('David Dvorkin'), - ('Daniel Dvorkin'), - ('Michael Piller'), - ('Rick Berman'), - ('Margeret Wander Bonanno'), - ('Stanislaw Fernandes'), - ('Della Van Hise'), - ('Robert Greenberger'), - ('Joseph Glass'), - ('Dana Kramer-Rolls'), - ('Elizabeth Bright'), - ('Chuck Scarborough'), - ('Hongzhi Li'), - ('Catherine Crier'), - ('Hubert Selby Jr.'), - ('Patty Duke'), - ('Gloria Hochman'), - ('Angela Bowie'), - ('Christopher Rowley'), - ('Jim Lusby'), - ('Donna Cohen'), - ('Frank Browning'), - ('Katherine Ashenburg'), - ('Penelope Evans'), - ('Millard Meiss'), - ('John Bemelmans Marciano'), - ('Michael Hammer'), - ('PhD. Riaz Khadem'), - ('PhD. Robert Lorber'), - ('Paul Millman'), - ('Lee Coit'), - ('Bill Gates'), - ('Fran Drescher'), - ('Paul Rudnick'), - ('Ann Hodgman'), - ('Mary Cable'), - ('Donna Marie Williams'), - ('Russell A. Brown'), - ('Louis Untermeyer'), - ('Angela Mackail Thirkell'), - ('Jean Anouilh'), - ('Charles A. Eastman'), - ('E. L. Blumenschein'), - ('Hal Borland'), - ('Jill Krementz'), - ('Joseph M. Stowell'), - ('Michael Sadleir'), - ('Frederick Page'), - ('Ed'), - ('Lindsy Van Gelder'), - ('Pamela Robin Brandt'), - ('Machi Tawara'), - ('Juliet Winters Carpenter'), - ('Margery Morgan'), - ('Marian Wright Edelman'), - ('Gordon Dickson'), - ('Entrepreneur Magazine'), - ('Don Tapscott'), - ('Alex Lowy'), - ('David Ticoll'), - ('Bo Links'), - ('Fred Shoemaker'), - ('Pete Shoemaker'), - ('Leslie Nielson'), - ('Larry Sessions'), - ('Piero Ventura'), - ('Gian Paolo Ceserani'), - ('Michele Maks'), - ('Ideals Publications Inc'), - ('Steve Lovi'), - ('Stephanie St. Pierre'), - ('George Ulrich'), - ('Lissa Rovetch'), - ('Philip Friedman'), - ('Florence: Turner'), - ('Shireen Dodson'), - ('Mike McQuay'), - ('Editions Berlitz S.A'), - ('Harry Kondoleon'), - ('Bradford Telford'), - ('Cecilia Tan'), - ('Jerry L. Patterson'), - ('Marlin S. Potash'), - ('Johann Wyss'), - ('Consuelo Saah Baehr'), - ('Ellen Sue Stern'), - ('David K Reynolds'), - ('Lucinda Lidell'), - ('Kiew Kit Wong'), - ('Ruthie Bolton'), - ('Josephine Humphreys'), - ('Alf Wight Writing As "James Herriott"'), - ('Lesley Holme'), - ('Kim Bartlett'), - ('James Willwerth'), - ('Walter Nugent'), - ('Katherine Applegate'), - ('Diane Wakoski'), - ('Sunset'), - ('Sunset Magazine'), - ('Susan Warton'), - ('Robert Andrews'), - ('Harold Augenbraum'), - ('Margarite Fernandez Olmos'), - ('Richard O. Boyer'), - ('Herbert M. Morais'), - ('Tomas Eloy Martinez'), - ('Celia Stendler Lavatelli'), - ('S.M.H. Collin'), - ('Nicols Fox'), - ('George Tyler Miller'), - ('Judith L. Raiskin'), - ('Laurence Sterne'), - ('Howard Anderson'), - ('Will Blythe'), - ('Scott Elledge'), - ('John-Manuel Andriote'), - ('Andrew E. Falk'), - ('B. Henry Perez'), - ('Ridley PEARSON'), - ('Kevin Keasey'), - ('Robert Hudson'), - ('Kevin Littler'), - ('Ethel Spencer'), - ('Terry Devane'), - ('Mike Godwin'), - ('Christopher Darden'), - ('Dick Lochte'), - ('D.R. Schanker'), - ('Georgia Bockoven'), - ('Libby Gelman-Waxner'), - ('Blanche Wiesen Cook'), - ('Frederick R. Karl'), - ('Time Life Ed'), - ('Andy Andrews'), - ('Charles Borkhuis'), - ('Suzanne Havala'), - ('Suzanne Havala Hobbs'), - ('Ralph Goldman'), - ('Bo Niles'), - ('Veronica McNiff'), - ('Stuart Gilbert'), - ('Jez Butterworth'), - ('Tom Butterworth'), - ('Michael Jecks'), - ('David Thurlo'), - ('Robin Paige'), - ('Jason Theodosakis'), - ('Barry Fox'), - ('Brenda D. Adderly'), - ('M.S.'), - ('Alan Hooker'), - ('Stephen Singular'), - ('Gay Wilson Allen'), - ('Richard Dominick'), - ('Jerry Springer'), - ('Judy Tenuta'), - ('Colin McEnroe'), - ('Denis Johnson'), - ('Bill Dworkin'), - ('Carole Wilbourn'), - ('Gerald Astor'), - ('Leigh Montville'), - ('Donald McCaig'), - ('William Jefferson Clinton'), - ('Kate Braverman'), - ('Neil Bartlett'), - ('Martin H. Padovani'), - ('Alan Lelchuk'), - ('Jeremy Hawthorn'), - ('Darcy Frey'), - ('Darian North'), - ('Paul Negri'), - ('Dorian Dunas'), - ('Tracey E. Dils'), - ('Mimi Van Olsen'), - ('Vince McKewin'), - ('Robert Rodat'), - ('Doris Kearns Goodwin'), - ('Dirk Wierenga'), - ('Kurt Chandler'), - ('Dr. Christopher Green'), - ('Arthur Ashe'), - ('Arnold Rampersad'), - ('Christine Kump-Tibbits'), - ('Victor Caccamise'), - ('Douglas Bo'), - ('Diann Thornley'), - ('Alfred Lord Tennyson'), - ('George Barker'), - ('Anabel Donald'), - ('April Frost'), - ('Adcock'), - ('Stefanie Matteson'), - ('Lia Matera'), - ('Elizabeth Atwood Taylor'), - ('Rotraut Susanne Berner'), - ('Marcel Montecino'), - ('John Pierard'), - ('Gisela Sherman'), - ('Jack'), - (' Ph.D. Heinowitz'), - ('Linda Todd'), - ('Penelope Leach'), - ('Rahima Baldwin Dancy'), - ('Antonia Van Der Meer'), - ('Becky Gold'), - ('Sergio Cuan'), - ('Tom B. Stone'), - ('Lara Bergen'), - ('Mary J. Latis'), - ('M. Henissart'), - ('Sandra Scoppettone'), - ('Ronder Thomas Young'), - ('Robin Bailey'), - ('J.R. Black'), - ('Benrei Huang'), - ('Donna Carlson'), - ('Gerald Gross'), - ('Bernard MacLaverty'), - ('Robert H. Ferrell'), - ('Oscar Handlin'), - ('Lee Harris'), - ('Jeff Moss'), - ('Traci Paige Johnson'), - ('Soo Kyung'), - ('Michael H. Bruno'), - ('Steven Miller'), - ('Jan Werner'), - ('Peter Gay'), - ('Charles E. Silberman'), - ('Peter Niesewand'), - ('Daniel Manus Pinkwater'), - ('Alisa Bauman'), - ('Bridget Doherty'), - ('Julia VanTine'), - ('Prevention Health Bo'), - ('Donald B. Gibson'), - ('Eugene Ionesco'), - ('Donald M. Allen'), - ('J. G. Jeffreys'), - ('Clai'), - ('Paula Jhung'), - ('Elliot Gilbert'), - ('Leonard Jenkin'), - ('Bernard Shaw'), - ('Luisa Vergani'), - ('Robert J. Milch'), - ('Harriet Roth'), - ('J. G. Williams'), - ('Elissa Wald'), - ('Marcia Stevens Sherrill'), - ('Shelley Sykes'), - ('Elliott Banfield'), - ('Warner Wolf'), - ('Patch Adams M.D.'), - ('Maureen Mylander'), - ('Shobha De'), - ('Thomas Mc Guane'), - ('John Glatt'), - ('Baxter Phillips'), - ('Sam Keen'), - ('Sarah Smith'), - ('Barry Hannah'), - ('Gianni Versace'), - ('Lillian Ross'), - ('Julia Phillips'), - ('Norma Barrera'), - ('Peggy Claude-Pierre'), - ('Edward P. Moser'), - ('Annabel Large'), - ('David McKain'), - ('Ouida Sebestyen'), - ('Bill Reynolds'), - ('Charles Busch'), - ('Ellen Rogers'), - ('Vivienne Flesher'), - ('John C Brereton'), - ('Gilbert H. Muller'), - ('Carl E Bain'), - ('Edgar V Roberts'), - ('Richard M Weaver'), - ('Alan Casty'), - ('Laurie G. Kirszner'), - ('Stephen R. Mandell'), - ('Shadwynn'), - ('Karen Fox'), - ('Sabrina Jeffries'), - ('Kare'), - ('Eileen Putman'), - ('Sari Robins'), - ('Bryan Sykes'), - ('Terry Windling'), - ('Nancy Baker'), - ('Alice Rhea'), - ('Jeff & Garrett'), - (' Michael Gelb'), - ('Loretta Lynda Chase'), - ('Adrian Ann Rapp'), - ('E. Adamson Hoebel'), - ('Napoleon A. Chagnon'), - ('James Ward Lee'), - ('Walter L. Hixson'), - ('George McKenna'), - ('Stanley Feingold'), - ('Ralph Peters'), - ('Brittiany A. Koren'), - ('Maggie Osborne'), - ('Jeff Gelb'), - ('Lonn Friend'), - ('Anthony Hyde'), - ('Preston A. Pairo'), - ('Don L. Wulffson'), - ('Clifford E. Trafzer'), - ('Office Book'), - ('Judith Sachs'), - ('George Townshend'), - ('Chandler S Robbins'), - ('Herbert S Zim'), - ('Arth'), - ('Albert H. Morehead'), - ('Geoffrey Mott-Smith'), - ('William A. Niering'), - ('Nancy C. Olmstead'), - ('Susan Rayfiel'), - ('Harville Hendrix'), - ('Allen Frances M.D.'), - ('Dr. Michael B. First'), - ('Nicola Gillies'), - ('Harrison E. Salisbury'), - ('Dennis Greenberger'), - ('Christine Padesky'), - ('Gerry Goldberg'), - ('Eugene Ehrlich'), - ('Nina Hermann Donnelley'), - ('Barry Krakow'), - ('Joseph Neidhart'), - ('Ronald C. Modra'), - ('M. B. Roberts'), - ('Jacob Boas'), - ('Stanley Coren'), - ('Jochen Schwarzer'), - ('Jens Jensen'), - ('Ika Hügel-Marshall'), - ('Don De Lillo'), - ('Uschi Brunner'), - ('Heike Wicklein'), - ('Michaela Link'), - ('Robert Mawson'), - ('Ken McClure'), - ('James Gunn'), - ('Frances Perry'), - ('McIntyre'), - ('Ph.D. Martin Katahn'), - ('Louis Solomon'), - ('Barbara Cartland'), - ('Gerald Posner'), - ('Michael Gurian'), - ('Leslie Allen'), - ('Mark McNulty'), - ('Nelson Algren'), - ('Sylvie Le Bon De'), - ('Michael Macrone'), - ('Reeve Lindbergh'), - ('Sara Hylton'), - ('Diane Redfield Massie'), - ('David A. Redding'), - ('Grace Livingston Hill'), - ('Lloyd John Ogilvie'), - ('Linda Dillow'), - ('Maxie D Dunnam'), - ('Stephen Griffith'), - ('Bill Deckard'), - ('Harold L Bussell'), - ('F Lagard Smith'), - ('Jamie Buckingham'), - ('Bob Phillips'), - ('F. F. Bosworth'), - ('Dennis J. Bennett'), - ('Rita Bennett'), - ('Charles Hunter'), - ('Frances Hunter'), - ('Ron Lee Davis'), - ('Bruce Larson'), - ('James D. Denny'), - ('Tim Hansel'), - ('Gien Karssen'), - ('Edwin Cole'), - ('Darien B. Cooper'), - ('John L Sherrill'), - ('Dr. Joe Aldrich'), - ('Andrew Murray'), - ('Benny Hinn'), - ('J. Oswald Sanders'), - ('Mark Bubeck'), - ('Sheri Curry'), - ('Ann C. Buchanan'), - ('Jane Cairo'), - ('Sandy Petro'), - ('James Montgomery Boice'), - ('Warren Wiersbe'), - ('Dorothy Kunhardt'), - ('James Strong LL.D. S.T.D.'), - ('Cheryl Mendelson'), - ('Harry Bates'), - ('Fiona; Fiona Gilsenan (Editor) Gilsenan'), - ('Websters Merriam'), - ('Peggy Post'), - ('W. E Vine'), - ('Theodore Baker'), - ('Nickolas Slonimsky'), - ('Ann Hibbard'), - ('Bill McCartney'), - ('David L. Diles'), - ('Blank Journal'), - ('Paperblank Book Company'), - ('Monique Truong'), - ('Jim Downing'), - ('Robert L. Saucy'), - ('Nav Press'), - ('William Backus'), - ('Marie Chapian'), - ('Langdon Elsbree'), - ('Gerald P. Mulderig'), - ('Nelson J. Price'), - ('Howard Hendricks'), - ('Jeanne Hendricks'), - ('John Stewart'), - ('Gordon MacDonald'), - ('Gary W. Kuhne'), - ('LeRoy Eims'), - ('Gene Edwards'), - ('Miles J. Stanford'), - ('Al Menconi'), - ('R. Cook'), - ('John R. W. Stott'), - ('Leon J. Wood'), - ('Ronald F. Bridges'), - ('George W Knight'), - ('Lane Adams'), - ('David A DeWitt'), - ('Ruth Tucker'), - ('Jake Barnett'), - ('John M. Perkins'), - ('Chonda Pierce'), - ('Ingrid Sturgis'), - ('Chatelaine'), - ('Joan Mackie'), - ('Bruce Ritter'), - ('Jane Latourette'), - ('Mathews'), - ('Carol Greene'), - ('Virginia Mueller'), - ('Betty Wind'), - ('Good Housekeeping Institute'), - ('Sarah Ferguson Duchess Of York'), - ('Junior League Of Denver'), - ('Blue Mountain Arts'), - ('Bill Martin Jr.'), - ('Pat Brady'), - ('Sharron Bassin'), - ('Helen Bannerman'), - ('Matt Redman'), - ('Norma Smalley'), - ('Gerald Lawson Sittser'), - ('Sharleen Collicott'), - ('Paul Eshleman'), - ('Luci Swindoll'), - ('Ronnie W. Floyd'), - ('Michael Peterson'), - ('William Hasker'), - ('Bruce Reichenbach'), - ('James E. Means'), - ('Charles Caldwell Ryrie'), - ('Arthur Robins'), - ('John D. Woodbridge'), - ('Brother Andrew'), - ('Andrew'), - ('Verne Becker'), - ('Diane M Komp'), - ('Dan B. Allender'), - ('Neil Clark Warren'), - ('Robert Kagan'), - ('John Ortberg'), - ('Ellen Goodman'), - ('Patricia O''Brien'), - ('Dallas Willard'), - ('John Trent'), - ('John Perkins'), - ('Thomas A. Tarrants'), - ('David Wimbish'), - ('Lorraine Pintus'), - ('David Hazard'), - ('Teresa'), - ('Jayne Wexler'), - ('Jane Roberts Wood'), - ('Kathryn Worth'), - ('Dorothy Bayley'), - ('Carolyn Zane'), - ('Karen Ball'), - ('Francena H. Arnold'), - ('Thyra Ferre Bjorn'), - ('Rachael Crabb'), - ('Raeann Hart'), - ('Tremper Longman'), - ('William Smart'), - ('John Telford'), - ('Rory Noland'), - ('Ruth Harms Calkin'), - ('James Dobson'), - ('Ame Mahler Beanland Terry'), - ('Alan PATON'), - ('Sheila Pickles'), - ('Charles W. Schwartz'), - ('Robert Finch'), - ('Sandol Stoddard Warburg'), - ('Jacqueline Chwast'), - ('Arthur D Cashin'), - ('Forbes Magazine'), - ('Robert H. Thomas'), - ('Robert Kimmerle'), - ('James M. Kouzes'), - ('Barry Z. Posner'), - ('Susan Miller'), - ('Fred A.'), - (' Jr. Manske'), - ('Jack Sheehan'), - ('Robert Cameron'), - ('Mike Mason'), - ('Renee Blank'), - ('Sandra Slipp'), - ('Mary Farrell'), - ('Margo Hoff'), - ('Marjorie Winslow'), - ('Erik Blegvad'), - ('Kathryn Perkins'), - ('Gerald M. Knox'), - ('Richard J. Foster'), - ('Mr. David Arp'), - ('Claudia Arp'), - ('Marjorie Palmer'), - ('Chevys Inc Staff'), - ('Mimi Wilson'), - ('Mary Beth Lagerborg'), - ('Clara B. Miller'), - ('Joanna White'), - ('M. Dalton King'), - ('Henry W. Simon'), - ('Betty Crocker'), - ('Norman Rockwell'), - ('Rosa Ross'), - ('Susan Stevens'), - ('Dwight Clough'), - ('Thomas Shaw'), - ('Paula Rinehart'), - ('Marian Wells'), - ('Mr. Greg Johnson'), - ('Dan Savage'), - ('Harry Shaw'), - ('Ida Fink'), - ('Dan Thornberg'), - ('Crescent Dragonwagon'), - ('Allison Uttley'), - ('Shelley Fisher Fishkin'), - ('Vi'), - ('Jacqueline Rose'), - ('Leopold Infeld'), - ('John Barth'), - ('Edward W. Said'), - ('Helene Cixous'), - ('Jerzy N. Kosinski'), - ('Betsy Wing'), - ('Marion Bloem'), - ('Donald Barthelme'), - ('Susan Sellers'), - ('Nigel Pennick'), - ('Marie Williams Cornelio'), - ('Marjorie Buckley Turcotte'), - ('Meredith Johnson'), - ('A. M. Monson'), - ('Daoma Winston'), - ('Jane Aiken Hodge'), - ('June Triglia'), - ('Author Unknown'), - ('Ted Schwarz'), - ('Marilyn Tracy'), - ('Frances Kerns'), - ('Robert Hawks'), - ('Robert Redfield'), - ('John Dickson Carr'), - ('Jacqueline Briskin'), - ('Ken Eulo'), - ('Kevin D. Randle'), - ('Donald R. Schmitt'), - ('Kate McMullen'), - ('Marcia Davenport'), - ('David R. Wilkerson'), - ('Elizabeth Sherril'), - ('Hervey Allen'), - ('Roland J. Green'), - ('Leigh Nichols'), - ('Bill Fawcett'), - ('Marita Golden'), - ('Charles Willeford'), - ('Paul Mann'), - ('Robert Garland'), - ('Shelly Burton'), - ('Greg Farshtey'), - ('Helen Macinnes'), - ('Floyd W. Matson'), - ('Carter Brown'), - ('Jeffrey Lord'), - ('Robert F. Young'), - ('Joseph Hone'), - ('Terry Bradshaw'), - ('Buddy Martin'), - ('James Powell'), - ('G. VALENS'), - ('Christianna Brand'), - ('Dorothy Eden'), - ('Sarah James'), - ('David R. Palmer'), - ('Dorothy Uhnak'), - ('Michael McGarrity'), - ('Gladys Mitchell'), - ('Bill Granger'), - ('Beverly Sommers'), - ('Elleston Trevor'), - ('John G Jones'), - ('Rachel North'), - ('Elizabeth Darrell'), - ('Gene A. Getz'), - ('Roger Price'), - ('Leonard Stern'), - ('John Crowley'), - ('Douglas E. Winter'), - ('Gerald Brom'), - ('Sue M. Sefscik'), - ('Ian Schoenherr'), - ('John Maccabee'), - ('Richard Rohmer'), - ('Brooke Hastings'), - ('Mark Finley'), - ('James B. Johnson'), - ('Tim Hill'), - ('Danielle Hill'), - ('Nicholas Blake'), - ('Martin Sylvester'), - ('Anthony Price'), - ('Paula Christopher'), - ('Blume'), - ('Keith Taylor'), - ('Joel Rosenberg'), - ('Frank Norris'), - ('Eric Solomon'), - ('Harold L. Klawans'), - ('Sue Kaufman'), - ('Robert D. Parrish'), - ('Will Harriss'), - ('W. R. Philbrick'), - ('L. J. Washburn'), - ('E'), - ('Harvey Bernhard'), - ('Joseph Howard'), - ('E. F. Benson'), - ('Zeke Masters'), - ('Rebecca Bond'), - ('Greg Matthews'), - ('Marianne Willman'), - ('Walter Winward'), - ('Arthur Herzog'), - ('Executive Intelligence Review'), - ('Kathy Braidhill'), - ('S.T. Haymon'), - ('William Campbell Douglass'), - ('Cay Van Ash'), - ('Burt Hirschfeld'), - ('Ib Melchior'), - ('Patrick M. McGrady'), - ('Michael Mewshaw'), - ('Jenny Nimmo'), - ('Ed Naha'), - ('J. M. Morgan'), - ('Christopher B. Rowley'), - ('Barbara Faith'), - ('Alan Landsburg'), - ('Valerie Sherwood'), - ('Kathleen Scarth'), - ('Nicola Thorne'), - ('Thea Devine'), - ('June Thomson'), - ('Graham Chester'), - ('Oriana Fallaci'), - ('Ingmar; Blair'), - (' Alan (translator) Bergman'), - ('Anne Tolstoi Wallach'), - ('Brett Halliday'), - ('Evan Innes'), - ('Simon Troy'), - ('Peterson'), - ('Martin R. Stern'), - ('Robert Lieberman'), - ('Frederick Feikema Manfred'), - ('Sharon Pape'), - ('Jon Jackson'), - ('Bruce Lancaster'), - ('Stivers'), - ('Charles R. Anderson'), - ('Vic Crume'), - ('Louis Auchincloss'), - ('Dr. Miriam Stoppard'), - ('Harrison And Rebecca Rinehart (eds) Visscher'), - ('Joyce Trollope'), - ('Adolfo Perez Esquivel'), - ('William A. Norgren'), - ('William G. Rusch'), - ('Charles A. Kroloff'), - ('Richard Ferber'), - ('Richard E. Ecker'), - ('Tim LaHaye; Beverly LaHaye'), - ('Lester C. Thurow'), - ('Joanne Shetler'), - ('Patricia Purvis'), - ('Michel Quoist'), - ('James Hinkle'), - ('Timothy Woodroof'), - ('Tony Sciacca'), - ('Higgins'), - ('Andre Maurois'), - ('Dan Harrison'), - ('Gordon Aeschliman'), - ('Colin Fletcher'), - ('Carol Hart'), - ('Joseph P. Lash'), - ('Franklin D. Roosevelt'), - ('Victor Ostrovsky'), - ('Claire Hoy'), - ('Ed Faulkner'), - ('Glen Hale Bump'), - ('Tom Hyman'), - ('Jr Samuel A. Schreiner'), - ('Richard L. Rubenstein'), - ('Douglas Terman'), - ('Karen Ripley'), - ('Eric Meretzky'), - ('S. Eric Meretzky'), - ('Sally Martin'), - ('Michael Fedo'), - ('Michael M. Thomas'), - ('Katheryn Brett'), - ('Candida Fraze'), - ('Arnaud De Borchgrave'), - ('Robert Moss'), - ('Evelyn A. Crowe'), - ('Sheila Radley'), - ('Norman Spinrad'), - ('Frank R. Westie'), - ('Michael Hammonds'), - ('Madeleine Ker'), - ('Catherine De Hueck Doherty'), - ('Hedrick Smith'), - ('Michael Barak'), - ('Mal Karman'), - ('Dennis Feldman'), - ('John D. Macdonald'), - ('Harold Hill'), - ('Paul McGuire'), - ('Allana Martin'), - ('Patricia; Patricia Wentworth Wentworth'), - ('Martin Page'), - ('A.E.W. Mason'), - ('J. Scaparro'), - ('Barbara Deighton'), - ('William Katz'), - ('Steven Roman'), - ('Ernie Colon'), - ('Dee Stringfellow'), - ('Marian Pope Rettke'), - ('Shirley Lord'), - ('Rita Rainville'), - ('Anne Weale'), - ('Gustaf Lannestock'), - ('Jeffery Archer'), - ('Richard Setlowe'), - ('Leah R. Robinson'), - ('Leah Ruth Robinson'), - ('Marlene Trunnell'), - ('Michael Gerber'), - ('Kathleen Meyer'), - ('Richard T. Burrows'), - ('Joe Dever'), - ('Gary Chalk'), - ('Dafydd Ab Hugh'), - ('Eleanor Robinson'), - ('Marcel Carpentier'), - ('Edward Fischer'), - ('Matthew E. Adams'), - ('Ian Page'), - ('Joseph Rosenbloom'), - ('Sanford Hoffman'), - ('Kris D. Stubna'), - ('Madeleine L''engle'), - ('Dale Bailey'), - ('Brendan DuBois'), - ('David Greene'), - ('Karl Fulves'), - ('Jeanette Gilge'), - ('Wanda McCaddon'), - ('Janet Alfieri'), - ('Ed Colley'), - ('Norman Lewis'), - ('Larry McKeever'), - ('Gimone Hall'), - ('Otfried Preussler'), - ('Tom Steele'), - ('Ralph Helfer'), - ('George Martin'), - ('Evan Kingsbury'), - ('Saralee Rosenberg'), - ('Talbot Mundy'), - ('R. J. Jensen'), - ('Lolah Burford'), - ('Hank Searls'), - ('Warren T. Longtree'), - ('Rudolph Giuliani'), - ('Robbins'), - ('Helen MacInnes'), - ('Frank Yerby'), - ('Virginia Mason Vaughan'), - ('Alden T'), - ('Paul Kozelka'), - ('Philippa Pearce'), - ('J. P. McCarthy'), - ('Jp McCarthy'), - ('Allen Steele'), - ('Clare De Vries'), - ('Elyse Guttenberg'), - ('Ross Macdonald'), - ('Deborah Hill'), - ('Alanna Knight'), - ('Barbara Ferry Johnson'), - ('Vera Cowie'), - ('Dorothy B. Hughes'), - ('Joan Samson'), - ('Robin Moore'), - ('Cameron Hawley'), - ('Cyril Hare'), - ('Martin Caidin'), - ('David Carkeet'), - ('Keith J. Leenhouts'), - ('J. G. Farrell'), - ('William Oscar Johnson'), - ('Barry Cord'), - ('James D. Nichols'), - ('H. T. Willetts'), - ('John De Chancie'), - ('Ellery Queen'), - ('Bob Leuci'), - ('Julie Ellis'), - ('David J. Lake'), - ('Marc Norman'), - ('Todhunter Ballard'), - ('Aleen Malcolm'), - ('Bryan Forbes'), - ('M. Tanner'), - ('Betsy Thornton'), - ('William Grant'), - ('Fletcher Knebel'), - ('Deana James'), - ('Linda Sandifer'), - ('Lawrence Dunning'), - ('Paul Brodeur'), - ('Oakley Hall'), - ('Will Henry'), - ('Marilyn Durham'), - ('Owen'), - ('Mary Pearce'), - ('Bill Schmidt'), - ('Bob Carter'), - ('Bonnie Timmons'), - ('Martin Booth'), - ('Megan Brownley'), - ('Emilie Baker Loring'), - ('Charles Merrill Smith'), - ('Robert Trumbull'), - ('John M. Waters'), - ('Lois Paxton'), - ('Marie De Jourlet'), - ('Hirschfield'), - ('Kjersti H. Baez'), - ('Brauna E. Pouns'), - ('Marion Bradley'), - ('Sean Mcmullen'), - ('Mem Fox'), - ('Aminah Brenda Lynn Robinson'), - ('Maria Angels Julivert'), - ('Angels Julivert'), - ('Marcel Socia'), - ('Theresa Grace'), - ('Grace Mabie'), - ('Janice Kinnealy'), - ('Anthony Heald'), - ('Robert P. McCammon'), - ('Walt W. Becker'), - ('Paula Trachtman'), - ('Kieran Walsh'), - ('Debby Henwood'), - ('Estella Lee Hickman'), - ('Winky Cherry'), - ('Elwyn Hartley Edwards'), - ('Wyatt Blassingame'), - ('Earl Hipp'), - ('Daniel Butler'), - ('Leland Gregory'), - ('Alan Ray'), - ('Stephan Reebs'), - ('Iris Nowell'), - ('Kevin Henkes'), - ('Isobelle Carmody'), - ('Mary Mackey'), - ('Chaz Corzine'), - ('Douglas Livingston'), - ('Susan Kelly'), - ('Wendelin Van Draanen'), - ('Alice Hart'), - ('S.M. Stirling Anne McCaffrey'), - ('Chuck Morton'), - ('Fox Morton'), - ('Claire Messud'), - ('John Avanzini'), - ('Elspeth Campbell Murphy'), - ('Chris Wold Dyrud'), - ('Bob Roper'), - ('David Wilkerson'), - ('Jeannie. Harmon'), - ('John Duckworth'), - ('Dan Pegoda'), - ('Jeffrey Asher Nesbit'), - ('Emily Prager'), - ('Charlie Smith'), - ('Joan Elliot Pickart'), - ('Wendy Rosnau'), - ('Thornton W. Burgess'), - ('Harrison Cady'), - ('Christine Pullein-Thompson'), - ('Roger Lea Macbride'), - ('Patricia Calvert'), - ('Lesley Holmes'), - ('Marie Jacks'), - ('A. E. Parker'), - ('Willy Vandersteen'), - ('Sara Swan Miller'), - ('Disney Book Club'), - ('Miriam Cohen'), - ('Bonnie Shields'), - ('Brenda Mann'), - ('Margaret Sidney'), - ('Roger Hayne'), - ('Albert Payson Terhune'), - ('Sam Savitt'), - ('Friso Henstra'), - ('Jane Hoffman'), - ('Eira Reeves'), - ('Penny Frank'), - ('Barrie Thorpe'), - ('Edith Kunhardt'), - ('Norma Farber'), - ('Elizabeth George Speare'), - ('Doug Henry'), - ('Corinne Gerson'), - ('Roy G. Gesch'), - ('Jim Kjelgaard'), - ('Walt Morey'), - ('Elizabeth Peplow'), - ('Lackey'), - ('Louise Gunther'), - ('James Cummins'), - ('Kathy Mackel'), - ('Joanne Barkan'), - ('Tony Sansevero'), - ('Jay R. Montavon'), - ('Herbert H. Lieberman'), - ('Sean Covey'), - ('Fritz Lieber'), - ('Bill Robison'), - ('George Selden'), - ('Marian Potter'), - ('Northam Anderson'), - ('Joseph Krumgold'), - ('Heinz Zahrnt'), - ('D. E. Harding'), - ('Gene R. Thursby'), - ('Huston Smith'), - ('Perry Rhodan'), - ('Hubert Haensel'), - ('Michael Marrak'), - ('Stefan Andres'), - ('Wilhelm Grosse'), - ('Amelia Atwater-Rhodes'), - ('Yuri Narushima'), - ('Kosuke Fujishima'), - ('Kim Kang Won'), - ('Ai Yazawa'), - ('Sukehiro Tomita'), - ('Nao Yazawa'), - ('Miki Aihara'), - ('Hiro Mashima'), - ('MashimaHiro'), - ('Yozaburo Kanari'), - ('Fumiya Sato'), - ('Masashi Tanaka'), - ('Wataru Yoshizumi'), - ('Kim Kang WAN'), - ('Kan-Won Kim'), - ('Setona Mizushiro'), - ('Sanami Matoh'), - ('Shizuru Seino'), - ('Takehiko Inoue'), - ('Inoue Takehito'), - ('Society For The Study Of Manga Techniques'), - ('Kara Lim'), - ('Lee Chi Hyong'), - ('Nozomi Watase'), - ('JON MERZ'), - ('Aki Katsu'), - ('Ya-Seong Ko'), - ('Shizuru Hayashiya'), - ('Yosuke Kuroda'), - ('Mary Kirchoff'), - ('Adobe Systems Inc'), - ('Adobe Creative Team'), - ('Suzanne Macpherson'), - ('Josephine Addison'), - ('Diana Winkfield'), - ('Run Ishida'), - ('Junko Mizuno'), - ('Isabelle Chin Chang'), - ('Mick Farren'), - ('John Lithgow'), - ('Tavisha Wolfgarth-Simons'), - ('Tavisha Wolfgarth'), - ('Rikki S'), - ('Mark Murphy'), - ('Eiichiro Oda'), - ('In-Soo Ra'), - ('Hitoshi Okuda'), - ('Dame Darcy'), - ('Swain Wolfe'), - ('Hajime Yadate'), - ('Yutaka Nanten'), - ('Susan McClure'), - ('C. Colston Burrell'), - ('Derek Jacobi'), - ('Rhett Ellis'), - ('Elizabeth Cook'), - ('Marvin Kaye'), - ('Birgit Herrmann'), - ('Ulrich Hartmann'), - ('Uta Hege'), - ('Willy Brandt'), - ('Richard Von Weizsäcker'), - ('Celine Bastian'), - ('Heiner Bastian'), - ('Urs Richle'), - ('Volker Michels'), - ('Hans-Joachim Maass'), - ('Andrea Brown'), - ('Heinrich Heine'), - ('Franz Josef Strauß'), - ('Sabine Werz'), - ('Joachim Ringelnatz'), - ('Karl Arnold'), - ('Giorgio Amitrano'), - ('Wolfgang E. Schl'), - ('Irene Rumler'), - ('Michail Bulgakow'), - ('Ralf Schröder'), - ('Thomas Reschke'), - ('Gisela Stege'), - ('Fynn'), - ('Helga Heller-Neumann'), - ('Tina Hohl'), - ('Stefan Heym'), - ('Johannes Mario Simmel'), - ('Sabrina Fox'), - ('Anna Seghers'), - ('Ulrich Plenzdorf'), - ('Rupert Neudeck'), - ('Jorge Volpi'), - ('Susanne Lange'), - ('Giles Smith'), - ('Bjarne Reuter'), - ('Erica Fischer'), - ('Grete Ost'), - ('Eva Rechel-Mertens'), - ('Eva Moldenhauer'), - ('Heinrich Wallfisch'), - ('Walter Maria Guggenheimer'), - ('Doris Gercke'), - ('Joyce C. Oates'), - ('Antonia S. Byatt'), - ('Friedrich Griese (Übers.)'), - ('Thorsten'), - ('Leif Davidsen'), - ('Peter Urban-Halle'), - ('Dr. Christa Seibicke'), - ('Klaus Modick'), - ('Sabine Lohmann'), - ('Hubert Deymann'), - ('Sherry Ashworth'), - ('Michael Cox'), - ('R. A. Gilbert'), - ('Dennis Potter'), - ('Sybil Marshall'), - ('Marcela Serrano'), - ('Alfredo Bryce Echenique'), - ('Dominique Dunne'), - ('Stephen Spender'), - ('Gerry Conlon'), - ('Sender'), - ('Basillo Losada'), - ('Erik Orsenna'), - ('Ken Follet'), - ('Anatoly Rybakov'), - ('Joe Kane'), - ('Fernando De Valenzuela'), - ('Cynthia Freeman'), - ('Hayden Herrera'), - ('Patricia Haugaard'), - ('Arturo Barea'), - ('Ian Kershaw'), - ('Julian Green'), - ('Françoise Sagan'), - ('Adam Parkes'), - ('Elizabeth Gage'), - ('SparkNotes Editors'), - ('Carmen Posadas'), - ('V.S. Naipaul'), - ('Patrick Camiller'), - ('Jorge Luis Borges'), - ('Maruja Torres'), - ('Johan Wolfgang Goethe'), - ('T. J. Reed'), - ('Jens Peters'), - ('Christine Niven'), - ('Garcia Marquez'), - ('Yin-Lien C. Chin'), - ('Yetta S. Center'), - ('Tina Daniell'), - ('Alexs Pate'), - ('E. A. Wallis Budge'), - ('Mallanaga Vatsyayana'), - ('Wendy Doniger'), - ('Sudhir Kakar'), - ('Stephen W. Hawking'), - ('Marilyn Todd'), - ('Olive Etchells'), - ('E. V. Thompson'), - ('Antonio Gala'), - ('Robert Weinberg'), - ('Gosho Aoyama'), - ('Luis Miguel'), - ('Garton'), - ('Jim Loftus'), - ('James Stenstrum'), - ('Raymond Benson'), - ('Gardner R. Dozois'), - ('Sheila Williams'), - ('George Elliott'), - ('Elizabeth; Sherrill'), - (' J Corrie; Sherrill'), - ('Cathleen Medwick'), - ('Clark Blaise'), - ('Gerard Egan'), - ('Michael Patrick Hearn'), - ('Richard Whittingham'), - ('Roger Staubach'), - ('Georges Bernanos'), - ('Pamela Morris'), - ('Hazel Holt'), - ('Joseph Epstein'), - ('Bo Whaley'), - ('Amy Carter'), - ('Ellen R. Sasahara'), - ('Ray Blackston'), - ('Marsha Moyer'); - -INSERT INTO BOOK_AUTHORS (Author_id, Isbn) - VALUES - (1, '0195153448'), - (2, '0195153448'), - (3, '0002005018'), - (4, '0060973129'), - (5, '0374157065'), - (6, '0393045218'), - (7, '0393045218'), - (8, '0399135782'), - (9, '0425176428'), - (10, '0671870432'), - (11, '0671870432'), - (12, '0679425608'), - (13, '074322678X'), - (14, '0771074670'), - (15, '080652121X'), - (16, '0887841740'), - (17, '1552041778'), - (18, '1558746218'), - (19, '1558746218'), - (20, '1558746218'), - (21, '1567407781'), - (22, '1567407781'), - (23, '1575663937'), - (24, '1881320189'), - (25, '0440234743'), - (26, '0452264464'), - (27, '0609804618'), - (28, '0609804618'), - (29, '0609804618'), - (30, '1841721522'), - (31, '1841721522'), - (32, '1841721522'), - (33, '1879384493'), - (34, '0061076031'), - (35, '0439095026'), - (36, '0689821166'), - (37, '0689821166'), - (38, '0689821166'), - (39, '0971880107'), - (40, '0345402871'), - (39, '0345417623'), - (41, '0684823802'), - (42, '0375759778'), - (43, '0425163091'), - (44, '3404921038'), - (45, '3404921038'), - (46, '3404921038'), - (47, '3442353866'), - (48, '3442353866'), - (49, '3442410665'), - (50, '3442446937'), - (51, '3442446937'), - (52, '0375406328'), - (53, '0446310786'), - (54, '0449005615'), - (55, '0060168013'), - (56, '038078243X'), - (57, '055321215X'), - (58, '067176537X'), - (59, '0061099686'), - (60, '0553582909'), - (61, '0671888587'), - (59, '0553582747'), - (62, '0425182908'), - (63, '042518630X'), - (64, '0440223571'), - (65, '0812523873'), - (66, '0842342702'), - (67, '0842342702'), - (24, '0440225701'), - (68, '0060914068'), - (69, '0156047624'), - (70, '0245542957'), - (71, '0380715899'), - (72, '0553280333'), - (73, '0553280333'), - (74, '0553280333'), - (75, '0961769947'), - (76, '0964778319'), - (77, '0671623249'), - (78, '0679810307'), - (77, '0679865691'), - (79, '2070423204'), - (80, '0345260317'), - (81, '0394743741'), - (82, '042511774X'), - (7, '0804106304'), - (83, '1853262404'), - (84, '0312970242'), - (85, '0312970242'), - (86, '1853260053'), - (87, '1414035004'), - (88, '1414035004'), - (89, '0060938412'), - (90, '0140067477'), - (53, '0345465083'), - (91, '0451625889'), - (92, '1558531025'), - (93, '0441783589'), - (94, '0394895894'), - (95, '1569871213'), - (96, '0375410538'), - (97, '0966986105'), - (98, '087113375X'), - (99, '0340767936'), - (100, '0743403843'), - (101, '0060930365'), - (102, '0060177586'), - (103, '0071416331'), - (104, '0071416331'), - (105, '0375509038'), - (106, '0553062042'), - (107, '0316769487'), - (108, '0679429220'), - (60, '0671867156'), - (109, '0312252617'), - (110, '0312261594'), - (111, '0316748641'), - (112, '0316973742'), - (113, '0385235941'), - (114, '0446677450'), - (115, '0446677450'), - (116, '0451166892'), - (117, '0553347594'), - (118, '0671621009'), - (119, '067976397X'), - (120, '0684822733'), - (121, '0684822733'), - (122, '0786868716'), - (123, '0671864769'), - (124, '0671864769'), - (125, '0671521519'), - (126, '0440222303'), - (127, '0440222303'), - (128, '0312953453'), - (129, '0446608653'), - (130, '0446612545'), - (131, '0446612545'), - (128, '0446612618'), - (132, '0451208080'), - (133, '0553584383'), - (134, '0671027360'), - (135, '0812575954'), - (136, '0316735736'), - (137, '0743439740'), - (138, '0345372700'), - (139, '0380619458'), - (137, '0446325805'), - (140, '0451406923'), - (141, '0451406923'), - (142, '0451406923'), - (143, '0671042858'), - (144, '0743249992'), - (145, '0840734530'), - (146, '0425184226'), - (147, '0375500766'), - (148, '9724119378'), - (149, '0451205197'), - (150, '0060929790'), - (151, '0060976845'), - (152, '0061099325'), - (60, '0671004573'), - (153, '0446601640'), - (154, '0330484516'), - (155, '038572179X'), - (156, '0393020371'), - (157, '1900850303'), - (158, '1903019699'), - (159, '0345425294'), - (160, '0451410319'), - (161, '0553583468'), - (162, '0380778556'), - (163, '0451525221'), - (164, '0451525221'), - (165, '0002740230'), - (166, '0385336772'), - (167, '0440949424'), - (168, '0505524996'), - (169, '0140252800'), - (170, '0451452755'), - (171, '0812575482'), - (152, '044651747X'), - (172, '0060801263'), - (173, '0061030147'), - (174, '0061030147'), - (175, '0140250964'), - (176, '0446527165'), - (177, '0671461494'), - (178, '0385337639'), - (179, '039575514X'), - (180, '0451206673'), - (181, '0330332775'), - (56, '0486284735'), - (182, '0486284735'), - (183, '0671021745'), - (182, '0671047612'), - (182, '0671504282'), - (184, '0399138684'), - (185, '0785263292'), - (186, '0785263292'), - (187, '0830714014'), - (188, '0345354931'), - (189, '0553278223'), - (190, '3150000335'), - (191, '3150000335'), - (188, '3257203659'), - (192, '3257203659'), - (193, '3257207522'), - (194, '3257207522'), - (188, '3257208626'), - (188, '3257208634'), - (195, '3257208634'), - (188, '3257208669'), - (196, '3257208669'), - (188, '3257210450'), - (197, '3257210450'), - (188, '3257212054'), - (188, '3257212429'), - (188, '3257214154'), - (198, '3257214154'), - (199, '3257214154'), - (188, '3257216416'), - (200, '3257233051'), - (201, '3257233051'), - (202, '342311360X'), - (203, '3423116714'), - (204, '3423241489'), - (205, '3426605686'), - (206, '3426605686'), - (207, '3453212150'), - (208, '3462021095'), - (209, '3492045642'), - (210, '3492045642'), - (211, '3492045642'), - (212, '3498020862'), - (213, '3498020862'), - (214, '3499110695'), - (215, '3499110695'), - (216, '3499110695'), - (217, '3499110695'), - (213, '3499151502'), - (214, '3499151502'), - (215, '3499151502'), - (218, '3518111000'), - (193, '3518111000'), - (219, '3548254268'), - (206, '3570300099'), - (220, '3570300099'), - (221, '3596292646'), - (222, '0060977493'), - (223, '0312872682'), - (129, '0316602906'), - (129, '0316693006'), - (49, '0345311396'), - (39, '0345378490'), - (49, '0345404793'), - (224, '0345433173'), - (225, '0375400117'), - (226, '0375705856'), - (227, '0380717018'), - (228, '0380718332'), - (229, '0380754509'), - (230, '0380754509'), - (231, '038076654X'), - (230, '0380807866'), - (232, '0385316895'), - (24, '0385497466'), - (24, '0385508042'), - (233, '0385509456'), - (24, '0385511612'), - (234, '0385730586'), - (235, '0425164403'), - (236, '0440234964'), - (129, '0446605484'), - (237, '0446610399'), - (238, '0449006522'), - (223, '0449911004'), - (142, '0451162072'), - (239, '0451186648'), - (240, '0452282152'), - (241, '051513290X'), - (242, '0553580388'), - (243, '0590598848'), - (244, '0590629719'), - (61, '0671023616'), - (133, '0671027387'), - (245, '0684848783'), - (133, '0743486226'), - (246, '0786863986'), - (247, '0803251718'), - (248, '0804117934'), - (249, '140003180X'), - (17, '155874262X'), - (18, '155874262X'), - (250, '155874262X'), - (251, '0060987103'), - (252, '0151008116'), - (253, '0375704965'), - (254, '0525947647'), - (255, '0804111359'), - (17, '1558744150'), - (18, '1558744150'), - (19, '1558744150'), - (256, '0435272683'), - (135, '0316782505'), - (257, '006102063X'), - (256, '0060013117'), - (256, '0060199563'), - (258, '006052779X'), - (259, '006052779X'), - (260, '0060563079'), - (261, '0060809027'), - (256, '0061040967'), - (262, '0061040967'), - (256, '0061050474'), - (256, '0061052515'), - (256, '0061052523'), - (263, '0064472264'), - (264, '0140620664'), - (265, '0312148267'), - (266, '0312156960'), - (267, '0312890044'), - (268, '034543191X'), - (269, '034543191X'), - (270, '0373836023'), - (271, '0375751513'), - (272, '0375751513'), - (273, '0375801677'), - (274, '0375801677'), - (275, '0375814248'), - (276, '0375814248'), - (93, '0375823352'), - (93, '037582345X'), - (93, '0375823468'), - (206, '0380730448'), - (188, '0380973839'), - (277, '0385327773'), - (278, '0394586239'), - (279, '0439510112'), - (280, '0440241413'), - (281, '0451409256'), - (282, '0451523415'), - (56, '0451526279'), - (283, '0451526279'), - (284, '0451526341'), - (285, '0486415864'), - (286, '0553280589'), - (54, '0571197639'), - (287, '0670035262'), - (288, '0670035262'), - (289, '0670035262'), - (290, '0670035262'), - (284, '0679423079'), - (277, '0679751343'), - (291, '0684833395'), - (292, '0743245024'), - (293, '0749748001'), - (292, '0749748028'), - (268, '0963094424'), - (294, '1401201172'), - (295, '1401201172'), - (296, '1401201172'), - (268, '1563892278'), - (297, '1563892278'), - (298, '1563892278'), - (299, '1563892278'), - (293, '1563898586'), - (268, '156971620X'), - (300, '156971620X'), - (301, '1592571301'), - (302, '0374270325'), - (303, '0375719180'), - (304, '0440235502'), - (24, '044023722X'), - (305, '1573225487'), - (85, '1853260673'), - (306, '0060977477'), - (307, '0345391691'), - (308, '0520011171'), - (309, '0520011171'), - (310, '0553278746'), - (311, '0670856045'), - (312, '0670856045'), - (313, '0872200760'), - (314, '0872200760'), - (315, '0872200760'), - (316, '0937858994'), - (317, '0937858994'), - (318, '0937858994'), - (319, '0671649949'), - (320, '0590431110'), - (321, '0064470113'), - (322, '0553571486'), - (323, '0972044205'), - (324, '0312963009'), - (325, '0345430476'), - (326, '0345435869'), - (327, '0345435869'), - (328, '0380728729'), - (329, '038081840X'), - (330, '038081840X'), - (331, '0449912302'), - (332, '055329198X'), - (333, '0671018930'), - (334, '0812541642'), - (335, '0312988699'), - (336, '0486282112'), - (181, '0486282112'), - (337, '0670815373'), - (338, '0385313748'), - (339, '1575843366'), - (61, '0684193957'), - (176, '0345371984'), - (340, '0345371984'), - (341, '0380730138'), - (342, '1573228737'), - (343, '9681500555'), - (344, '0380711109'), - (345, '0452283914'), - (145, '0425120279'), - (346, '067153484X'), - (347, '0380728273'), - (348, '0446606197'), - (349, '0771076002'), - (350, '0771076002'), - (351, '0771088191'), - (352, '1559703237'), - (353, '3596214629'), - (354, '3596214629'), - (355, '0062770500'), - (356, '0671847546'), - (357, '0060188731'), - (274, '0140374248'), - (358, '0140374248'), - (359, '0142001740'), - (360, '0142001740'), - (361, '0195086295'), - (362, '0195086295'), - (363, '0195086295'), - (133, '0312995423'), - (364, '0380704587'), - (365, '0380815923'), - (24, '0385416342'), - (366, '0385418493'), - (24, '038542471X'), - (367, '0425098109'), - (368, '0449005410'), - (369, '0449202631'), - (368, '0449207544'), - (370, '0515128554'), - (176, '0517577402'), - (371, '0590450875'), - (372, '0590450875'), - (373, '0590450875'), - (370, '0590481371'), - (371, '0590481371'), - (374, '067103619X'), - (375, '0684177730'), - (376, '0684180200'), - (373, '0743411269'), - (377, '0743470389'), - (378, '076218857X'), - (379, '0767905938'), - (380, '0800706544'), - (381, '0801096677'), - (382, '0849953014'), - (383, '0891091963'), - (384, '0915811537'), - (385, '0927545373'), - (386, '1575024179'), - (387, '1880185008'), - (388, '0140345809'), - (389, '0156528207'), - (390, '0380012863'), - (391, '0451154916'), - (392, '0785815147'), - (393, '0875421288'), - (394, '1567184294'), - (395, '156718796X'), - (396, '1862047626'), - (397, '0020437501'), - (396, '0020437501'), - (398, '0198320264'), - (399, '0198320264'), - (400, '0373196989'), - (401, '0373245580'), - (402, '0451527747'), - (403, '0451527747'), - (60, '0671867113'), - (404, '0812504208'), - (150, '0060173289'), - (405, '0060973897'), - (406, '0060973897'), - (305, '006101351X'), - (407, '0140104682'), - (408, '0312143370'), - (409, '0316666343'), - (410, '039456894X'), - (411, '0440224675'), - (412, '0449002632'), - (413, '0449213773'), - (414, '0452279690'), - (412, '0553569058'), - (415, '0679427430'), - (416, '0679725393'), - (417, '0802114369'), - (418, '0803233019'), - (419, '0803233019'), - (420, '0819154946'), - (421, '0897322339'), - (422, '0940322978'), - (423, '0940322978'), - (424, '1573225126'), - (425, '1579651658'), - (426, '1878424319'), - (427, '0600586898'), - (428, '1853260622'), - (429, '1857938011'), - (430, '0060804157'), - (431, '0140382658'), - (432, '0152012966'), - (433, '0312283784'), - (187, '0345297709'), - (187, '0345313097'), - (434, '0345335465'), - (435, '0345416848'), - (436, '0385333404'), - (24, '044021145X'), - (437, '0449212084'), - (438, '0553582682'), - (439, '0590947257'), - (440, '0590947257'), - (441, '074345829X'), - (442, '074345829X'), - (443, '0786913878'), - (444, '0801491827'), - (445, '0816729913'), - (446, '0843136685'), - (447, '0843136685'), - (448, '0843136685'), - (449, '0866119531'), - (450, '0866119531'), - (451, '0866119531'), - (284, '0866119566'), - (452, '0866119566'), - (453, '0870441663'), - (454, '0870441663'), - (455, '1561561428'), - (456, '1561561428'), - (457, '1561561428'), - (162, '0553210092'), - (433, '0553258524'), - (336, '0688163726'), - (458, '1569471096'), - (459, '055358099X'), - (408, '0316168815'), - (311, '014023828X'), - (460, '0316314927'), - (351, '0345424719'), - (461, '0375414746'), - (462, '0375726403'), - (412, '0385503857'), - (463, '0425156842'), - (464, '0440226104'), - (465, '0452277337'), - (59, '0553802488'), - (466, '0671021001'), - (467, '0767903579'), - (468, '0805063897'), - (469, '0679777431'), - (470, '0553285343'), - (471, '0486285529'), - (179, '0671002481'), - (472, '0812523385'), - (473, '0895774666'), - (474, '0020199090'), - (475, '0385495145'), - (476, '0679733825'), - (65, '0842329129'), - (66, '0842329129'), - (477, '0345451260'), - (478, '0740700235'), - (479, '0380973545'), - (480, '0380973545'), - (481, '0393321576'), - (142, '0743424425'), - (482, '0786868015'), - (483, '0786868015'), - (484, '0786868015'), - (485, '0446610178'), - (486, '0684854953'), - (487, '0684854953'), - (60, '0743229878'), - (488, '0380617625'), - (489, '0380732335'), - (490, '0385337132'), - (491, '0440235057'), - (490, '0445402040'), - (492, '0618119760'), - (493, '0871138646'), - (494, '0026329859'), - (495, '0060621257'), - (54, '0060915544'), - (54, '0060917016'), - (496, '0060925000'), - (285, '0060932759'), - (151, '0061000280'), - (497, '0192815318'), - (498, '0192815318'), - (499, '0312195516'), - (500, '0380792664'), - (501, '0393048977'), - (183, '0399137807'), - (61, '039914739X'), - (63, '0451203046'), - (502, '0451410556'), - (503, '0451523318'), - (504, '0486281965'), - (505, '0486292940'), - (506, '051762639X'), - (415, '0684824442'), - (507, '0743458303'), - (508, '081296666X'), - (509, '0819215635'), - (510, '0819215635'), - (511, '0819215635'), - (512, '0880011025'), - (513, '1561011525'), - (514, '1877727083'), - (515, '1877727083'), - (516, '0486206173'), - (517, '0486206173'), - (518, '0312278586'), - (519, '0312278586'), - (520, '0140370900'), - (521, '0674511255'), - (522, '0030096189'), - (523, '0030096189'), - (524, '0312965745'), - (525, '0345374657'), - (526, '0395710901'), - (527, '080521061X'), - (528, '0823032612'), - (529, '0679310002'), - (530, '0312288115'), - (531, '0316171107'), - (532, '0380710218'), - (533, '0515118656'), - (534, '0553289063'), - (535, '0671000306'), - (60, '0671673688'), - (536, '1561672033'), - (537, '0425178242'), - (538, '0425178242'), - (539, '0618173870'), - (251, '0156027321'), - (540, '0375403582'), - (541, '0385721420'), - (542, '0451202341'), - (543, '0743418190'), - (544, '0385335407'), - (545, '0965746828'), - (546, '0060923245'), - (547, '0486272664'), - (548, '0786015276'), - (549, '0786015276'), - (550, '0060913509'), - (369, '0553272837'), - (551, '0440225078'), - (552, '0312145543'), - (59, '0425181111'), - (553, '0380732688'), - (554, '0140286276'), - (369, '0373484100'), - (367, '0449907481'), - (555, '0553107305'), - (556, '080213825X'), - (369, '0515127833'), - (557, '0345441133'), - (558, '0515134279'), - (559, '0945586051'), - (24, '0385490992'), - (24, '0385424728'), - (560, '0312980388'), - (561, '0590419625'), - (562, '0590419625'), - (24, '0385472951'), - (563, '0451195663'), - (564, '0425182878'), - (565, '0425182878'), - (566, '0553564528'), - (565, '055356451X'), - (60, '0743412621'), - (567, '0849943728'), - (568, '0849943450'), - (566, '084994371X'), - (569, '0590406019'), - (570, '0020442408'), - (571, '0553225987'), - (572, '042517736X'), - (136, '0671868713'), - (573, '038549825X'), - (574, '0553202294'), - (575, '0345313860'), - (574, '0345369947'), - (576, '067170124X'), - (577, '0345353625'), - (578, '0308102282'), - (579, '006017143X'), - (580, '0805056491'), - (581, '0679401377'), - (582, '1562827049'), - (583, '1562827049'), - (543, '0385306032'), - (584, '0816152446'), - (585, '0821772953'), - (586, '0345379454'), - (160, '0553576925'), - (60, '0743206053'), - (587, '0688169678'), - (588, '0439319552'), - (589, '0439319552'), - (590, '0590870157'), - (591, '0590870157'), - (592, '0307001164'), - (593, '0307001164'), - (594, '0307001164'), - (595, '0307001164'), - (596, '0440441501'), - (597, '0590687301'), - (598, '0439061644'), - (599, '0439569842'), - (588, '0439569842'), - (600, '0307118703'), - (601, '0590418858'), - (602, '030720152X'), - (603, '0816728739'), - (604, '0816728739'), - (605, '0816728739'), - (606, '0865050880'), - (607, '0812519655'), - (606, '0812524853'), - (608, '0449211770'), - (609, '193072229X'), - (606, '0812521129'), - (610, '0345251733'), - (611, '1400077826'), - (612, '0312995431'), - (611, '0312312628'), - (613, '0446394521'), - (614, '0590021117'), - (244, '068484267X'), - (615, '068484267X'), - (616, '068484267X'), - (617, '0553578693'), - (596, '0380709260'), - (618, '0380709260'), - (619, '0807565288'), - (611, '0312986769'), - (93, '0345413377'), - (93, '0345413369'), - (93, '0679893105'), - (620, '0061096091'), - (585, '0345369068'), - (585, '0451184718'), - (607, '0449209121'), - (621, '0060938455'), - (622, '080411952X'), - (623, '0060575808'), - (622, '0060558865'), - (624, '0767912918'), - (625, '0553298860'), - (626, '0385335679'), - (63, '0440122090'), - (627, '0671525832'), - (188, '0553279572'), - (628, '0061009059'), - (629, '0060930187'), - (630, '0516076272'), - (49, '0679450432'), - (631, '0821775863'), - (630, '0821770209'), - (632, '0670855758'), - (633, '0553562819'), - (129, '0446364193'), - (634, '0446519138'), - (635, '0425179672'), - (636, '0061042943'), - (637, '0399144463'), - (638, '0399144463'), - (154, '0965404560'), - (639, '006015781X'), - (640, '006015781X'), - (641, '0060930705'), - (642, '0312206763'), - (643, '0316116025'), - (644, '0156013967'), - (645, '0385314019'), - (646, '0743444167'), - (647, '0618231617'), - (648, '1567920047'), - (649, '0811203220'), - (650, '1573229148'), - (651, '0787955671'), - (652, '0787955671'), - (653, '0787955671'), - (654, '0425174484'), - (655, '0385496907'), - (656, '0446523992'), - (657, '0446523992'), - (658, '0446523992'), - (659, '0140185216'), - (660, '0140185216'), - (661, '0684717255'), - (662, '0684717255'), - (663, '0486272745'), - (664, '0486272745'), - (665, '0062507249'), - (666, '0684801221'), - (667, '1576737357'), - (668, '0060083298'), - (669, '0446672211'), - (670, '0140293248'), - (671, '0807070718'), - (672, '0807070718'), - (673, '0743213831'), - (674, '0345305477'), - (675, '0061080519'), - (676, '0142000205'), - (677, '0316735027'), - (678, '193156146X'), - (135, '015600710X'), - (679, '0062517856'), - (51, '0679767789'), - (680, '0449911683'), - (681, '0425169626'), - (679, '0449207757'), - (679, '0449245691'), - (682, '0140029400'), - (681, '0140021566'), - (683, '2253004022'), - (684, '2253004022'), - (685, '2253005274'), - (686, '2253005274'), - (687, '225300670X'), - (688, '225300670X'), - (689, '225300670X'), - (690, '2266084372'), - (691, '2070362388'), - (692, '2266029460'), - (691, '2266029460'), - (693, '2253007102'), - (694, '2253007102'), - (695, '2253007102'), - (188, '2070417743'), - (696, '2070417743'), - (697, '2070417743'), - (698, '2266033689'), - (699, '2070384349'), - (700, '2070384349'), - (682, '207053880X'), - (701, '207053880X'), - (702, '2070334368'), - (703, '2290314951'), - (704, '229000510X'), - (705, '3492207006'), - (706, '3499177757'), - (707, '3499177757'), - (708, '3889774016'), - (709, '3502670005'), - (710, '0905762487'), - (707, '3499222604'), - (711, '3746670055'), - (56, '0140620427'), - (712, '3596144434'), - (221, '3442724686'), - (45, '3442724686'), - (133, '0385504209'), - (236, '0446525502'), - (713, '0385500769'), - (714, '0399147012'), - (180, '0670892963'), - (340, '0688180639'), - (135, '0316789089'), - (715, '0451197275'), - (330, '0425184129'), - (716, '0151001006'), - (24, '0385505833'), - (717, '0679442790'), - (718, '0679442790'), - (719, '0525943862'), - (556, '0609605925'), - (720, '0060191929'), - (60, '0743206045'), - (373, '0684864843'), - (721, '0684867818'), - (722, '0743406176'), - (723, '0380978539'), - (351, '0679603352'), - (724, '0679410430'), - (236, '0446523569'), - (725, '0671042556'), - (49, '0679450440'), - (726, '0140107649'), - (727, '0609606727'), - (236, '0446527793'), - (236, '0446531332'), - (728, '1570717257'), - (729, '0060192631'), - (730, '0385420161'), - (731, '0385420161'), - (732, '0385420161'), - (733, '0345339711'), - (734, '052594463X'), - (305, '039304016X'), - (369, '0399147128'), - (735, '0670031046'), - (736, '0394574745'), - (129, '0316969443'), - (60, '0743230051'), - (737, '0743230051'), - (129, '0316693200'), - (738, '0316693200'), - (720, '0684868911'), - (739, '0842336214'), - (740, '0399148582'), - (741, '0399148582'), - (373, '0684864320'), - (718, '0525944834'), - (742, '0345428900'), - (743, '0451176812'), - (138, '0671525794'), - (368, '0718144538'), - (744, '0446602086'), - (745, '0394551427'), - (746, '0394551427'), - (747, '0064407667'), - (748, '0064407667'), - (749, '0007100221'), - (750, '2253148539'), - (751, '2253148539'), - (149, '2253043974'), - (752, '2253043974'), - (753, '2020315491'), - (754, '0747549923'), - (755, '0743462335'), - (756, '0140253580'), - (757, '0947782141'), - (758, '057120354X'), - (759, '0349101779'), - (754, '0743222229'), - (760, '185479549X'), - (761, '0140292918'), - (762, '1854795554'), - (763, '1858813093'), - (764, '2871290911'), - (765, '2871290911'), - (766, '0198604025'), - (767, '1842151053'), - (768, '2253063339'), - (769, '1860198597'), - (770, '0767908473'), - (771, '0767908473'), - (772, '1842040154'), - (773, '0140622063'), - (757, '0571209521'), - (749, '2264009306'), - (774, '1841952931'), - (775, '0890877564'), - (776, '0890877564'), - (777, '1405200677'), - (778, '0416196772'), - (779, '0747538069'), - (780, '0375501347'), - (545, '0060927240'), - (781, '0316776963'), - (782, '156341029X'), - (268, '0060934719'), - (783, '1886383421'), - (784, '1888451084'), - (785, '0451450256'), - (786, '1555835953'), - (787, '0395877563'), - (788, '0962893862'), - (789, '1555834531'), - (790, '0393318435'), - (791, '0889740828'), - (413, '1563410443'), - (792, '1563899388'), - (793, '1563411148'), - (794, '0553579681'), - (793, '0553579673'), - (59, '0451181379'), - (795, '0786889160'), - (796, '0345370740'), - (797, '0553574175'), - (796, '0553574167'), - (796, '0553574159'), - (798, '0312287240'), - (799, '0679801146'), - (800, '0446300101'), - (801, '0821750410'), - (59, '0425142485'), - (802, '0451456548'), - (803, '0060006048'), - (804, '0312906552'), - (805, '0312906552'), - (806, '0440117291'), - (807, '0425049981'), - (808, '0374386676'), - (376, '0786886463'), - (809, '0345395379'), - (170, '0380788497'), - (810, '0307215342'), - (807, '0374343381'), - (811, '0345403339'), - (812, '0440226694'), - (811, '0440219604'), - (813, '0767903285'), - (814, '0345429176'), - (410, '038529929X'), - (815, '1573229571'), - (176, '0345418778'), - (816, '0517201658'), - (142, '0743211383'), - (337, '039914370X'), - (817, '1884777805'), - (818, '0312977905'), - (819, '0812521331'), - (820, '0812521331'), - (59, '0451205421'), - (821, '0894342789'), - (822, '0440218535'), - (823, '0449207595'), - (824, '0670844594'), - (825, '039457513X'), - (826, '0394559487'), - (827, '0804001944'), - (828, '0590897985'), - (829, '0689832877'), - (830, '0689832877'), - (831, '0689829698'), - (832, '0689829698'), - (833, '0439042917'), - (568, '0064409457'), - (834, '0064409457'), - (568, '0064405052'), - (833, '0064405052'), - (835, '043922165X'), - (836, '0152162445'), - (835, '0152162577'), - (835, '015216250X'), - (837, '1562477528'), - (838, '0439221676'), - (839, '0439221684'), - (837, '0439221684'), - (837, '0439221714'), - (837, '0439221706'), - (837, '0439221730'), - (840, '0440415993'), - (841, '0895872102'), - (842, '068983585X'), - (843, '068983585X'), - (176, '0345391802'), - (844, '0440219078'), - (845, '185424597X'), - (846, '185424597X'), - (847, '2080105434'), - (848, '349913358X'), - (849, '3257201761'), - (115, '3404121686'), - (850, '3404121686'), - (851, '3404121686'), - (115, '3404118960'), - (852, '3404118960'), - (853, '3404118960'), - (854, '3404118960'), - (855, '0345356578'), - (854, '0345346971'), - (716, '0753804700'), - (142, '0451155750'), - (481, '0786890436'), - (482, '0786890436'), - (142, '0786890436'), - (856, '0415928087'), - (857, '0415928087'), - (858, '0521427150'), - (859, '0812923278'), - (860, '0884111342'), - (861, '0345428544'), - (176, '0671694049'), - (862, '080901582X'), - (247, '0449006557'), - (863, '0373250339'), - (864, '0380820447'), - (865, '0385497679'), - (866, '0385497679'), - (867, '0385497679'), - (868, '0451454243'), - (869, '0941423042'), - (870, '0373871562'), - (105, '0553101439'), - (871, '0898151910'), - (872, '0835949362'), - (873, '0880701102'), - (145, '039914563X'), - (874, '0312853238'), - (875, '0688048730'), - (876, '0688048730'), - (145, '0425161722'), - (877, '0425161722'), - (24, '0385493800'), - (878, '0849916399'), - (879, '1928791107'), - (880, '1928791107'), - (881, '067175145X'), - (24, '0440211727'), - (882, '0877192820'), - (883, '0380002450'), - (884, '0793133955'), - (883, '0793133955'), - (885, '0394178017'), - (145, '0425134350'), - (886, '0385479689'), - (887, '0385479689'), - (888, '0380754851'), - (889, '0380538504'), - (890, '044661162X'), - (626, '0671742566'), - (183, '0515122408'), - (891, '0440222818'), - (892, '0451204050'), - (893, '038533334X'), - (894, '0449131548'), - (895, '0440120470'), - (896, '0451188209'), - (897, '0451188209'), - (231, '0440130913'), - (436, '0449001954'), - (49, '0345404777'), - (898, '0451185277'), - (543, '0440224829'), - (899, '0671779338'), - (532, '0515134368'), - (187, '0380759497'), - (900, '0380759497'), - (574, '3442098424'), - (901, '3442098424'), - (902, '0394578791'), - (903, '1558505377'), - (904, '0373245696'), - (905, '0743201078'), - (906, '068983571X'), - (907, '0553256785'), - (908, '0892967994'), - (909, '0061064505'), - (910, '0061064505'), - (911, '1551668785'), - (912, '0836230868'), - (913, '0381999866'), - (914, '0380817144'), - (915, '0380752115'), - (916, '0553212583'), - (484, '0446364762'), - (571, '0425166619'), - (917, '061312975X'), - (918, '0765341972'), - (919, '0590514776'), - (920, '0373037430'), - (921, '0064472779'), - (922, '0553581279'), - (923, '0373750013'), - (924, '0393030342'), - (565, '0553561618'), - (271, '0312422156'), - (925, '0425139069'), - (926, '0450029956'), - (927, '0450029956'), - (928, '0130139165'), - (929, '0373196741'), - (882, '0451524489'), - (930, '0451524489'), - (931, '0140065172'), - (24, '044022165X'), - (932, '0373123485'), - (933, '0373123108'), - (934, '0590225170'), - (935, '0590225170'), - (571, '0399143165'), - (936, '044132231X'), - (937, '0425124347'), - (938, '0786889705'), - (939, '0312282990'), - (940, '0425137945'), - (939, '042512892X'), - (939, '0425113892'), - (941, '0394820371'), - (942, '0394820371'), - (943, '0449134482'), - (944, '014036336X'), - (536, '0375821813'), - (945, '0812516826'), - (946, '0345348036'), - (947, '0679420118'), - (948, '0871137380'), - (949, '0741409690'), - (948, '0741407213'), - (948, '0759612277'), - (948, '0741402858'), - (948, '1585007366'), - (948, '074141127X'), - (948, '0741403471'), - (948, '0741403781'), - (948, '0741403056'), - (948, '0741405784'), - (948, '0741402912'), - (241, '0553568760'), - (49, '034538184X'), - (950, '0140620125'), - (56, '0140620109'), - (951, '0375420827'), - (176, '0671745530'), - (952, '0805062971'), - (949, '0553211412'), - (953, '0671510053'), - (954, '1573229385'), - (955, '0945397410'), - (956, '0385334036'), - (220, '0060914653'), - (187, '0345347536'), - (957, '055321313X'), - (958, '3473540420'), - (959, '0375507256'), - (538, '0060529709'), - (960, '0876850867'), - (658, '0140274154'), - (961, '0679743464'), - (960, '0375704027'), - (962, '0375704027'), - (963, '0874067391'), - (964, '0874067391'), - (965, '0590484753'), - (966, '0451527038'), - (967, '0451527038'), - (968, '1590520777'), - (969, '1590520777'), - (964, '0590484672'), - (970, '0975311255'), - (971, '0743237188'), - (132, '0553586122'), - (616, '0553584510'), - (630, '0345341201'), - (972, '1551662744'), - (231, '0440175623'), - (231, '0440216842'), - (973, '0345443284'), - (974, '0553285653'), - (975, '0394800133'), - (976, '0394800133'), - (977, '0060972777'), - (978, '0064401472'), - (979, '0064401472'), - (70, '0156001942'), - (980, '055326382X'), - (351, '0345418018'), - (665, '0684801469'), - (981, '0393961192'), - (982, '0393961192'), - (983, '0393961192'), - (698, '9997522052'), - (312, '0872203492'), - (984, '0872203492'), - (985, '0872203492'), - (986, '0872203492'), - (211, '0312420145'), - (987, '0911104542'), - (988, '0375401318'), - (989, '0140253602'), - (990, '0671789422'), - (991, '1566193966'), - (992, '014016930X'), - (993, '0140077022'), - (994, '0679732764'), - (285, '0553273604'), - (285, '0553273914'), - (995, '0060256672'), - (994, '0060256672'), - (996, '039592720X'), - (997, '1859671500'), - (998, '1859671500'), - (999, '1859671500'), - (1000, '1859671500'), - (1001, '0810935627'), - (150, '0060928336'), - (465, '0671003755'), - (1002, '0553268449'), - (1003, '0684844729'), - (1004, '0395051649'), - (1005, '0395051649'), - (1006, '0375705228'), - (149, '038001503X'), - (1007, '0835607860'), - (1008, '158574218X'), - (1009, '158574218X'), - (1010, '0806996021'), - (1011, '0440215625'), - (780, '0316777730'), - (1012, '0375501851'), - (1013, '0877733759'), - (1014, '0805019367'), - (1015, '0140070206'), - (1016, '0140236589'), - (760, '0140042393'), - (1017, '1590520653'), - (1018, '1590521994'), - (1019, '1590521994'), - (1020, '3446202218'), - (1021, '3446202218'), - (578, '3499134446'), - (1022, '067142517X'), - (1023, '0671726889'), - (129, '0446601241'), - (142, '0451124340'), - (574, '0345384466'), - (129, '0446604801'), - (574, '0345422392'), - (1024, '0679734775'), - (1025, '0440414717'), - (1026, '0689715625'), - (1027, '0689715625'), - (921, '0812539389'), - (1028, '0152013369'), - (939, '0425124819'), - (79, '0345409469'), - (1029, '0345409469'), - (1030, '1558747346'), - (1031, '0373250177'), - (1032, '0763615382'), - (1033, '0965975401'), - (1034, '0965975401'), - (1035, '0965975401'), - (1036, '0965975401'), - (1037, '0141001771'), - (1038, '068930935X'), - (454, '0451523369'), - (1039, '0786884622'), - (1040, '0449005569'), - (1041, '0671027344'), - (1042, '0786927089'), - (1043, '0786927089'), - (1044, '0684831058'), - (285, '006019491X'), - (1045, '006019491X'), - (1046, '0684819066'), - (1047, '0375420673'), - (1048, '0140368558'), - (1049, '0395353416'), - (285, '0066211611'), - (1050, '0066211611'), - (1051, '0312254164'), - (1052, '0312254164'), - (1053, '3453147243'), - (1054, '3746611229'), - (1055, '3492229336'), - (1056, '3453177800'), - (1057, '3423009152'), - (1058, '3596133319'), - (1059, '3822813397'), - (1060, '3426871874'), - (1061, '3453171977'), - (462, '3423620005'), - (1062, '3423620005'), - (732, '034537522X'), - (732, '0345375211'), - (1063, '0345375211'), - (1064, '034545829X'), - (658, '0140042520'), - (268, '0380789035'), - (1065, '0446677574'), - (1066, '0345358791'), - (578, '0060964049'), - (1067, '0380558483'), - (1068, '1558171398'), - (1069, '0425121046'), - (1070, '0441317502'), - (1071, '0804102279'), - (1072, '0812551389'), - (1073, '0345298985'), - (854, '0345316991'), - (854, '034531042X'), - (854, '0345310306'), - (854, '0345310292'), - (854, '034531011X'), - (1074, '0679734058'), - (713, '0451130448'), - (1075, '0553266500'), - (410, '0440206154'), - (39, '0345370775'), - (1076, '0441366945'), - (1077, '0441366945'), - (1078, '0441366945'), - (1079, '0441366945'), - (1080, '0553574833'), - (1081, '0553574833'), - (1082, '0915950839'), - (1083, '0060242388'), - (1084, '0452265347'), - (630, '0743457943'), - (369, '0373484224'), - (1085, '0553205757'), - (1086, '0060171510'), - (1087, '0312421001'), - (1088, '0786000988'), - (268, '0380789019'), - (1089, '0451135989'), - (815, '0380018179'), - (1090, '0679004785'), - (1091, '0684825821'), - (1092, '0517395754'), - (1093, '067101420X'), - (221, '0679457313'), - (1094, '0394557433'), - (1095, '0553571656'), - (498, '0312169787'), - (1096, '0942257324'), - (1097, '0805008950'), - (1098, '0786866276'), - (1099, '0151000638'), - (7, '0151000638'), - (1100, '0140266771'), - (989, '015644450X'), - (723, '0679723420'), - (1101, '0441004016'), - (1102, '0671500546'), - (270, '0140620338'), - (546, '0460878263'), - (1103, '0460878263'), - (199, '3257061269'), - (1104, '3257061269'), - (1105, '3453210999'), - (1106, '3404126661'), - (236, '3453177622'), - (1107, '3453177622'), - (1108, '3453863593'), - (1109, '3499108518'), - (1110, '3518367064'), - (1040, '3453199766'), - (1111, '3746670144'), - (1112, '3746670144'), - (1052, '3453088433'), - (1113, '0425137015'), - (1114, '0425137015'), - (1115, '0425137015'), - (1116, '0425137015'), - (1117, '0553572490'), - (105, '0553576976'), - (1118, '0451450604'), - (1119, '0441001335'), - (1120, '0451454677'), - (1121, '0373257074'), - (1122, '0441435351'), - (1123, '0373092237'), - (1124, '0373057296'), - (1125, '0373058446'), - (758, '0349103232'), - (220, '0571197779'), - (1126, '0679745653'), - (495, '0571200389'), - (1127, '0785268480'), - (1128, '0785268480'), - (1129, '0785268480'), - (1130, '014044503X'), - (1131, '014044503X'), - (1132, '014044503X'), - (1133, '0851707777'), - (1134, '0006276199'), - (1133, '0551031123'), - (1133, '0551030682'), - (1133, '0551032510'), - (1135, '0551032510'), - (1136, '000649840X'), - (85, '0140431268'), - (224, '0099771519'), - (1137, '0486265862'), - (136, '067102535X'), - (959, '0876855575'), - (1138, '0330376136'), - (1139, '0140272658'), - (1140, '3407780028'), - (1139, '3407780028'), - (1139, '3407780117'), - (1141, '3257250398'), - (1142, '3257250398'), - (1140, '3257250053'), - (1141, '3257250053'), - (1143, '3257250460'), - (1144, '3442435951'), - (1145, '3442435838'), - (1146, '3442435838'), - (1147, '3608919724'), - (1148, '3608919724'), - (1149, '3608919724'), - (1150, '3453132262'), - (1151, '3453132262'), - (1152, '379411664X'), - (1153, '379411664X'), - (1139, '340780573X'), - (1154, '3407805853'), - (951, '0385720920'), - (951, '0385498721'), - (1155, '0972948503'), - (1156, '0972948503'), - (485, '0380813815'), - (78, '2070372294'), - (1157, '2264030542'), - (1158, '0030615321'), - (1159, '0836217632'), - (1160, '0140099832'), - (253, '0385314744'), - (1161, '0316107417'), - (1162, '0894803700'), - (368, '0449221164'), - (1163, '0553801031'), - (964, '0590457225'), - (1164, '0316929190'), - (1165, '0553052845'), - (281, '0140390693'), - (1166, '0140390693'), - (1167, '0140390693'), - (1168, '0439404371'), - (1169, '0439404371'), - (1170, '0939766027'), - (1171, '0939766027'), - (1172, '0679741011'), - (1173, '0345307674'), - (92, '0425071421'), - (433, '0345297687'), - (281, '0766607119'), - (1174, '0766607119'), - (1175, '0766607119'), - (1176, '1573225789'), - (1177, '0380754843'), - (1178, '0380754843'), - (433, '0345368940'), - (1179, '0345331605'), - (1180, '0425050807'), - (1181, '044100962X'), - (342, '0553296981'), - (1182, '0553296981'), - (1183, '0553296981'), - (1184, '1895383129'), - (1185, '0375724575'), - (1186, '067163884X'), - (1187, '0553140434'), - (1188, '0029087104'), - (1189, '0425050750'), - (795, '0345285549'), - (1190, '0345285549'), - (795, '0345290240'), - (187, '0345301870'), - (142, '0451169530'), - (76, '067168390X'), - (279, '0385335881'), - (279, '0385335482'), - (351, '0553258001'), - (1191, '0671679627'), - (1192, '0375704043'), - (869, '0373871279'), - (1193, '0373484070'), - (467, '0805063889'), - (1194, '068986020X'), - (1195, '0671568809'), - (1196, '1573228567'), - (458, '0553582658'), - (1197, '051513399X'), - (369, '0373218400'), - (1198, '0449217868'), - (1199, '0671573020'), - (1198, '0671573020'), - (1200, '0517006456'), - (1201, '0786867086'), - (1202, '0786867086'), - (1203, '1569471800'), - (1204, '0374216495'), - (1205, '0312274572'), - (1206, '0316825336'), - (1207, '0871137631'), - (1208, '0679419152'), - (151, '0060192895'), - (1209, '0826308791'), - (1210, '0140259198'), - (1211, '0345435249'), - (268, '0441003257'), - (256, '0441003257'), - (585, '0451202503'), - (236, '0446606812'), - (1212, '0671028375'), - (1213, '0451181468'), - (346, '0399149759'), - (1214, '0345384733'), - (1215, '0671759361'), - (1216, '0830724982'), - (571, '0399146008'), - (1217, '3442720001'), - (1218, '0515132632'), - (1219, '044990671X'), - (1220, '0688124402'), - (1221, '0929587081'), - (1222, '155970117X'), - (1223, '155970117X'), - (1224, '0688105408'), - (1225, '0871130297'), - (1226, '0440500095'), - (1227, '1570362084'), - (54, '0060930535'), - (1228, '0375702709'), - (1229, '044990928X'), - (1230, '0671038184'), - (1231, '0060916508'), - (1232, '0756401453'), - (1233, '0963270702'), - (1234, '0399242562'), - (1235, '0552996009'), - (433, '0708881297'), - (1236, '0708881297'), - (760, '0142000663'), - (93, '0590542443'), - (93, '0590112899'), - (93, '0590660543'), - (351, '0345361792'), - (1237, '0552999512'), - (1238, '041619513X'), - (1239, '0855030224'), - (1238, '0855030224'), - (292, '0861638522'), - (1240, '0861638522'), - (1241, '0575073314'), - (1240, '0575073004'), - (1242, '0394404289'), - (1243, '000636988X'), - (1244, '1578562333'), - (1245, '0345458915'), - (1246, '038531258X'), - (171, '006092988X'), - (1247, '0140317937'), - (1248, '0140317937'), - (1249, '0743225406'), - (1250, '0553256696'), - (1251, '0553256696'), - (1252, '0553256696'), - (1253, '0785263780'), - (1254, '0785263780'), - (1255, '0802433243'), - (51, '0375413081'), - (1256, '1400034779'), - (1257, '038533303X'), - (1088, '0451163753'), - (1258, '0440414520'), - (1259, '0786885688'), - (1260, '0671880187'), - (1261, '1558506454'), - (1262, '0895773538'), - (1263, '0385247745'), - (1264, '0385247745'), - (231, '0385293542'), - (1265, '0802069347'), - (1266, '0671721038'), - (441, '0671311891'), - (795, '0345387007'), - (1267, '037570504X'), - (1234, '0767902521'), - (1268, '0892967048'), - (1269, '0553377868'), - (1270, '0553377868'), - (1271, '0472113658'), - (1272, '0609608444'), - (1273, '0670032425'), - (1274, '0915811332'), - (17, '1558744606'), - (18, '1558744606'), - (19, '1558744606'), - (7, '080410753X'), - (403, '0451526503'), - (732, '0345325818'), - (1275, '044023767X'), - (1276, '014131088X'), - (1277, '043909013X'), - (1278, '0140244824'), - (1279, '155643068X'), - (1278, '096478260X'), - (1280, '096478260X'), - (1278, '155643152X'), - (1281, '0553346768'), - (1282, '0884043142'), - (1283, '0743221990'), - (1284, '0312983212'), - (1285, '0553486411'), - (1286, '3478088534'), - (1287, '3821807059'), - (1288, '0865532168'), - (1289, '059040640X'), - (962, '1566197155'), - (1290, '0805210318'), - (1291, '0805210318'), - (1292, '031227999X'), - (24, '0385508417'), - (24, '0385510438'), - (1293, '0848705459'), - (346, '0380723638'), - (1294, '0718001044'), - (1295, '0307132668'), - (1296, '0812515722'), - (1297, '0373169876'), - (1298, '0890842795'), - (1299, '0385324057'), - (188, '9505470010'), - (1300, '0609602535'), - (534, '0425185710'), - (1301, '0061030651'), - (713, '0425178773'), - (1302, '0553575619'), - (1303, '0671578391'), - (1304, '0425095584'), - (1305, '0451409086'), - (1283, '031298250X'), - (1300, '006109594X'), - (176, '0671527215'), - (1306, '0486203077'), - (1307, '0671522817'), - (1308, '0618074716'), - (1309, '1400062888'), - (1310, '0618045996'), - (1311, '0312303033'), - (1312, '1931520038'), - (1118, '0671318314'), - (1001, '0553377876'), - (1313, '1558612815'), - (734, '014025448X'), - (356, '0060934417'), - (60, '0671793489'), - (397, '0174434642'), - (1314, '0174434642'), - (1315, '0679772677'), - (108, '0312983824'), - (556, '0449149676'), - (556, '0449006344'), - (458, '0553568183'), - (1316, '0451191153'), - (1317, '0451191153'), - (955, '0440224624'), - (56, '0451523067'), - (1318, '0451523067'), - (1317, '0451523067'), - (542, '0743418174'), - (56, '0451526295'), - (282, '0451526295'), - (490, '0440214424'), - (56, '0451187903'), - (282, '0451187903'), - (412, '0385491050'), - (373, '0671036505'), - (1319, '0553213504'), - (1320, '0446605891'), - (192, '0394758285'), - (60, '0671004565'), - (1321, '0345370805'), - (1198, '0375703055'), - (135, '0156006529'), - (1322, '0156006529'), - (555, '0446673544'), - (149, '0140256369'), - (1323, '0140256369'), - (1324, '0312243022'), - (135, '0316789844'), - (1325, '0679761837'), - (412, '0385490445'), - (161, '0380725398'), - (1326, '0345316770'), - (610, '0375700757'), - (612, '0070212570'), - (1228, '0385480016'), - (719, '0061098361'), - (1325, '0061093092'), - (109, '0821758950'), - (274, '0679729917'), - (501, '0451411013'), - (1327, '0446611239'), - (1328, '0446611239'), - (1329, '0553580078'), - (713, '0425189414'), - (1330, '0812909372'), - (1331, '0812909372'), - (1332, '0451410912'), - (135, '0316781266'), - (403, '0486280616'), - (1333, '0743405978'), - (142, '0671032658'), - (1334, '0446607835'), - (1335, '0446607835'), - (1336, '0451402103'), - (1337, '0373250223'), - (1338, '0380817683'), - (1162, '0671701053'), - (1339, '0671000381'), - (1340, '006101253X'), - (1341, '0671689231'), - (920, '0380814021'), - (1342, '0373711026'), - (1343, '0373710992'), - (1344, '0373711107'), - (1345, '0440217806'), - (919, '0373711123'), - (1346, '0373711115'), - (1347, '0373711131'), - (151, '0061098795'), - (1348, '0791423549'), - (1349, '0791423549'), - (1350, '0375725784'), - (1351, '0465016146'), - (1350, '0465016103'), - (1352, '0373226519'), - (270, '0380012774'), - (767, '225313922X'), - (1353, '0142004030'), - (1354, '0452281784'), - (1355, '0375704558'), - (1356, '038533656X'), - (1357, '0743230213'), - (1358, '0345436911'), - (464, '0452284481'), - (1359, '0802135196'), - (644, '0440217520'), - (1360, '0373834985'), - (1361, '0679450548'), - (1362, '0451135555'), - (732, '0345339703'), - (1363, '038039586X'), - (1352, '0670030643'), - (1364, '0060929596'), - (1365, '3499232871'), - (1366, '0374516901'), - (1367, '0440131480'), - (1368, '0609600745'), - (1369, '0609600745'), - (1370, '0375707425'), - (717, '0375707425'), - (145, '3453151933'), - (84, '3453151933'), - (1371, '3453151933'), - (1372, '0231105592'), - (1373, '0590317822'), - (1374, '014056232X'), - (1375, '0590447319'), - (1376, '0440940001'), - (1377, '0440401119'), - (1378, '0440203155'), - (873, '0812565959'), - (1379, '034536628X'), - (1380, '0880387483'), - (1379, '0880387300'), - (1381, '0880387300'), - (1382, '0425163385'), - (714, '0743444051'), - (1383, '0061056103'), - (1282, '0671042262'), - (563, '0425157539'), - (160, '0553585681'), - (160, '0553585118'), - (1384, '0886777690'), - (60, '0743212002'), - (736, '0743212002'), - (1385, '3426650754'), - (1386, '1854877178'), - (1387, '0380803526'), - (1388, '0373152655'), - (1389, '0373152655'), - (919, '0373152655'), - (1390, '0451404033'), - (1391, '1583140352'), - (1392, '1854879073'), - (1393, '0821728326'), - (369, '037348397X'), - (1394, '0380773155'), - (1395, '0380773155'), - (115, '3404100263'), - (1396, '0679731148'), - (1397, '2070417700'), - (1398, '2070417700'), - (665, '2070360075'), - (1399, '0786889373'), - (1396, '2207245810'), - (1396, '2207250474'), - (1400, '2207250474'), - (1396, '2290331406'), - (1401, '2290331406'), - (1396, '2070426815'), - (1396, '2290305251'), - (760, '2070364283'), - (1402, '2266128566'), - (1403, '2070363104'), - (199, '2253152277'), - (1404, '2207252000'), - (1405, '2207252000'), - (571, '2253170453'), - (1406, '2723409821'), - (1407, '2723409821'), - (1408, '2070415686'), - (1409, '2070415686'), - (1396, '2258036992'), - (1396, '2207251756'), - (690, '2266000489'), - (1410, '2070360423'), - (1411, '0394822862'), - (1412, '0394822862'), - (1413, '0874493803'), - (1414, '1569870942'), - (1415, '1569870942'), - (1416, '1579730272'), - (1417, '1579730272'), - (1418, '0307177092'), - (1419, '2253004898'), - (1420, '0812094271'), - (1421, '0812094271'), - (1422, '0812094271'), - (1423, '0380600129'), - (1424, '0380600129'), - (1188, '0451522389'), - (1425, '0451522389'), - (1426, '0425169324'), - (630, '082176828X'), - (129, '0316693324'), - (1427, '0553283685'), - (1428, '1841215457'), - (1429, '0064410358'), - (1430, '0007108648'), - (1431, '0007108648'), - (802, '0064472930'), - (597, '0590629824'), - (142, '0743412273'), - (823, '0140089586'), - (1432, '0316140651'), - (1433, '1559277785'), - (1434, '1559277785'), - (574, '0345367898'), - (1435, '0205280854'), - (1436, '0205280854'), - (1437, '0553110721'), - (1438, '0553110721'), - (1439, '1558534245'), - (1440, '1558534245'), - (1441, '1558534245'), - (1436, '0553580272'), - (1442, '0553580272'), - (1443, '0553580272'), - (1444, '1560980087'), - (1445, '1560980087'), - (1446, '0679412271'), - (1447, '0803281730'), - (795, '0345396529'), - (1448, '0440455332'), - (1449, '1860462995'), - (1450, '1860462995'), - (1451, '0679452281'), - (1452, '0811807150'), - (1453, '0393029190'), - (1454, '0393029190'), - (1455, '0385425686'), - (1456, '0312169655'), - (1457, '0785324712'), - (1458, '0449912558'), - (1457, '0449912558'), - (1459, '0934257345'), - (1460, '0312205872'), - (1461, '0312205872'), - (1462, '0670867144'), - (1463, '0670867144'), - (1464, '0805051732'), - (1465, '0449300021'), - (1466, '0449300021'), - (1467, '0449300021'), - (60, '0684835983'), - (1298, '0440226430'), - (1468, '0385721358'), - (1469, '031231616X'), - (1470, '0764504509'), - (1471, '089480829X'), - (1472, '089480829X'), - (1473, '089480829X'), - (1474, '0767912233'), - (1475, '0971453217'), - (1476, '0971453217'), - (1474, '0971453209'), - (1475, '0971453209'), - (1477, '0785268030'), - (1478, '0785268030'), - (1479, '0743201736'), - (1480, '0743201736'), - (1470, '0894805770'), - (1471, '0894805770'), - (1481, '0894805770'), - (1077, '0440177499'), - (1482, '0553232053'), - (1483, '0312269102'), - (199, '0062502174'), - (1484, '0688177751'), - (1485, '0345438329'), - (1486, '0345401123'), - (1487, '1593160151'), - (1488, '1593160151'), - (1489, '1593160127'), - (1490, '1593160127'), - (1491, '0451209435'), - (1490, '0451209435'), - (1492, '1551669501'), - (716, '0375707972'), - (717, '0375707972'), - (732, '0618126988'), - (1062, '0618126988'), - (1493, '0060094850'), - (577, '0060192305'), - (1494, '0142000361'), - (1495, '0872860175'), - (335, '031219126X'), - (1496, '031219126X'), - (665, '0020518609'), - (81, '0345446860'), - (52, '0446310492'), - (369, '037348285X'), - (1497, '037348285X'), - (1498, '037348285X'), - (183, '0515090506'), - (61, '0399145087'), - (1499, '0812590244'), - (1500, '0963641328'), - (1501, '1574551108'), - (1502, '0879739304'), - (1503, '0879739304'), - (1504, '0879739304'), - (1505, '0965712516'), - (1506, '0670829943'), - (1507, '0670829943'), - (1363, '0060192119'), - (1508, '0836218256'), - (1509, '0898707129'), - (568, '0805420460'), - (1232, '0140140352'), - (1510, '1575666529'), - (1432, '0312990456'), - (1511, '0440221102'), - (129, '0316969680'), - (130, '0316969680'), - (1512, '0449207463'), - (1513, '0689109865'), - (1514, '3518368540'), - (1515, '0312423209'), - (1514, '0141180633'), - (1514, '0140283382'), - (1086, '0786248688'), - (1516, '0773762078'), - (1517, '0773762078'), - (1281, '0884041093'), - (1281, '0884040801'), - (1518, '0786887842'), - (1519, '0450542912'), - (1520, '0192817264'), - (1521, '0192817264'), - (1522, '0751522732'), - (1523, '0091850401'), - (1524, '1853260312'), - (1525, '0140016821'), - (1526, '0140016821'), - (93, '0440418569'), - (1527, '0786014210'), - (1528, '0441005667'), - (1529, '0553259830'), - (1530, '0312965338'), - (1531, '0312965338'), - (1532, '1888740051'), - (1533, '0061008028'), - (1534, '1931646384'), - (1535, '1931646384'), - (352, '0399501487'), - (1536, '0399501487'), - (1537, '157566559X'), - (462, '3423125551'), - (1061, '3423125551'), - (635, '0060514949'), - (1538, '0425188361'), - (1539, '0066210151'), - (1540, '0395177111'), - (574, '0375411992'), - (1541, '0060287802'), - (1542, '0060287802'), - (1543, '3442730066'), - (45, '3442730066'), - (1544, '0394718968'), - (1545, '0394718968'), - (1546, '0192820753'), - (1547, '0671744003'), - (711, '3596129389'), - (1548, '0915308789'), - (1549, '3423620196'), - (1550, '3423620196'), - (1551, '3423620196'), - (1552, '0743203313'), - (534, '0425177173'), - (1553, '0425172554'), - (24, '0440224764'), - (1554, '0553572997'), - (1555, '034543076X'), - (1234, '0380727501'), - (1556, '0312423799'), - (1557, '0743249887'), - (1558, '0316089745'), - (1255, '037542217X'), - (325, '0345440773'), - (326, '0345440773'), - (231, '0440208912'), - (1325, '0061093106'), - (369, '0373218192'), - (369, '0515120006'), - (183, '0515127396'), - (1559, '0345433084'), - (1560, '0345416260'), - (1561, '0385494785'), - (1560, '0385486804'), - (232, '0385512104'), - (1562, '1555973981'), - (1563, '0451180208'), - (1564, '089587198X'), - (1565, '089587198X'), - (1566, '089587198X'), - (1567, '089587198X'), - (1568, '0198811020'), - (351, '0525237704'), - (1569, '039914255X'), - (1570, '039914255X'), - (1571, '0340649763'), - (24, '0440236673'), - (1572, '0553295071'), - (1088, '0316291161'), - (822, '0449208397'), - (1573, '1590171012'), - (93, '1590171012'), - (1574, '0060505273'), - (39, '0752999958'), - (1575, '0702229962'), - (1576, '0679771476'), - (1577, '0684848597'), - (1578, '031215125X'), - (1579, '0064405176'), - (1580, '0684821192'), - (1581, '0061056871'), - (1582, '0061056871'), - (1583, '0061056871'), - (1584, '0590988301'), - (1585, '0883659654'), - (1031, '0883659654'), - (955, '0440235162'), - (1234, '076790382X'), - (1586, '0330357808'), - (61, '0425158616'), - (1587, '0307001385'), - (1588, '0307001385'), - (1589, '0595157939'), - (1590, '0702231088'), - (1591, '0140143599'), - (199, '0062502182'), - (54, '0060175400'), - (1592, '1573221775'), - (1593, '0913367044'), - (1594, '1888698357'), - (1595, '0913367176'), - (1596, '0933121245'), - (1529, '0312168144'), - (1597, '0312168144'), - (1598, '0451528182'), - (1599, '0451528182'), - (1600, '0451528182'), - (1601, '0671537458'), - (1602, '0786014741'), - (1603, '0517573822'), - (1604, '0517573822'), - (1605, '0877732906'), - (1282, '0743437810'), - (1606, '0385240406'), - (1607, '0060116188'), - (1608, '0394742591'), - (1609, '0394742591'), - (176, '0517149257'), - (977, '0374517886'), - (1610, '0850315336'), - (1611, '0312964854'), - (1282, '0743222008'), - (1612, '0684863324'), - (1613, '0618127453'), - (1614, '0618127453'), - (1615, '0884053660'), - (1498, '0812590236'), - (1616, '0515127221'), - (571, '0425161242'), - (906, '0451200993'), - (1617, '0679765123'), - (1618, '0312982194'), - (1619, '0312982194'), - (1620, '0312982194'), - (1621, '0312982194'), - (1622, '0451195922'), - (61, '0425169863'), - (531, '0425169863'), - (39, '0345380371'), - (129, '0446609323'), - (129, '0316690619'), - (129, '0446610038'), - (1623, '155143234X'), - (1624, '0891074759'), - (247, '0449222276'), - (1625, '0440224608'), - (1626, '0451201558'), - (1627, '0061032077'), - (1628, '2253004243'), - (1629, '0679459626'), - (1630, '0812566629'), - (1631, '0816614024'), - (1632, '0816614024'), - (1633, '0816614024'), - (1634, '3518390473'), - (1635, '340414578X'), - (1636, '3596113350'), - (1637, '3453189442'), - (1638, '3462031252'), - (1092, '0671001701'), - (1639, '0782125557'), - (1640, '1555217532'), - (1641, '0843943769'), - (1116, '0553583085'), - (1642, '1892051001'), - (1013, '0805019375'), - (1643, '1587991039'), - (1644, '1587214768'), - (658, '0802130496'), - (1645, '1857931467'), - (1646, '1857931467'), - (1647, '0380717085'), - (1646, '0380712172'), - (1648, '0380706725'), - (1646, '0380706725'), - (1649, '0767904281'), - (18, '1558747478'), - (1650, '1558747478'), - (1651, '1558747478'), - (1652, '0440512158'), - (1653, '0130179620'), - (1654, '0130179620'), - (1655, '0273649949'), - (1656, '0072453907'), - (1657, '0130305065'), - (1658, '0130219193'), - (1659, '0028626958'), - (1660, '0028626958'), - (1661, '1884822738'), - (1662, '1884822738'), - (1663, '1884822738'), - (1524, '0140272941'), - (1525, '0140272941'), - (1664, '0375700382'), - (1665, '0006550789'), - (1666, '0140004424'), - (944, '0812517032'), - (1560, '0385492081'), - (1667, '0451524829'), - (1668, '0451524829'), - (1669, '0877287384'), - (1670, '0465090974'), - (1671, '1931412677'), - (254, '0670848549'), - (1672, '0684829746'), - (1366, '0425130215'), - (151, '0061000175'), - (109, '0312971362'), - (179, '0061097659'), - (58, '006017935X'), - (715, '067976402X'), - (1673, '1558532161'), - (1674, '3125918103'), - (1675, '0064408329'), - (142, '0743457358'), - (736, '0743456866'), - (60, '0743456866'), - (1676, '0440235464'), - (1677, '0312251890'), - (1678, '0440227739'), - (1679, '0345425707'), - (873, '0765342294'), - (1159, '0451821971'), - (1680, '0670894494'), - (1681, '0060394447'), - (1682, '0385508980'), - (1683, '0385508980'), - (1684, '037541181X'), - (1685, '006093395X'), - (1686, '0385491328'), - (433, '0345434692'), - (433, '0553131893'), - (1687, '0374177023'), - (1688, '076790351X'), - (1689, '0452280907'), - (634, '0425167313'), - (459, '0316314641'), - (39, '034540288X'), - (1690, '0061073091'), - (938, '0786808772'), - (433, '0553234609'), - (433, '0553258540'), - (1691, '0802713661'), - (843, '0440237688'), - (1692, '0679884394'), - (1693, '1582970262'), - (1694, '1566091446'), - (1695, '1566091446'), - (1696, '0553577395'), - (1697, '0671698419'), - (1698, '0425167720'), - (1699, '006105660X'), - (1700, '0609610597'), - (175, '0446519960'), - (9, '0374281602'), - (1701, '0140251839'), - (1702, '0399519831'), - (1703, '0425159795'), - (1704, '0140255370'), - (1705, '0394543971'), - (1706, '0060970790'), - (1707, '0156787334'), - (1194, '0448095300'), - (1708, '1569314195'), - (1709, '1569314195'), - (1710, '0060908548'), - (1711, '0060908548'), - (1712, '0028606353'), - (1713, '0028606353'), - (1714, '0028606353'), - (1715, '0028606353'), - (1716, '0316182540'), - (1717, '0553343874'), - (1718, '0553343874'), - (1719, '0881845906'), - (1319, '0446355224'), - (1720, '0061030953'), - (1721, '0316919896'), - (1628, '0553299506'), - (889, '0446611611'), - (536, '0446604658'), - (412, '0553282476'), - (412, '0449212602'), - (142, '0684867621'), - (1628, '0451147375'), - (1628, '0345413903'), - (1628, '0451178033'), - (1722, '0590634275'), - (1723, '0330294377'), - (1724, '0061031569'), - (1725, '3257228007'), - (132, '0553582143'), - (136, '0743202961'), - (1726, '0060002492'), - (1727, '0399148620'), - (376, '0786866462'), - (612, '0679426159'), - (1214, '0671020315'), - (1715, '0316569321'), - (136, '067169071X'), - (1728, '0679732241'), - (1729, '0451117670'), - (1730, '0451402251'), - (1731, '042513301X'), - (1732, '1558175326'), - (1733, '0449214982'), - (183, '0515090174'), - (183, '0515095826'), - (183, '0515111279'), - (1734, '0671555235'), - (1735, '1570719586'), - (1736, '3492232981'), - (1737, '3492232981'), - (1738, '0553580876'), - (412, '0385475713'), - (1739, '0345290232'), - (1740, '0345441753'), - (1741, '0425045250'), - (1742, '0689825234'), - (1743, '0553375407'), - (1744, '1863714081'), - (1209, '0151006903'), - (1745, '0151006903'), - (1746, '1931561281'), - (1747, '038080350X'), - (1748, '0679744479'), - (1749, '1562477676'), - (1750, '1562477676'), - (1751, '0789414708'), - (1752, '0789414708'), - (1753, '0789414708'), - (59, '0425115801'), - (237, '0345454073'), - (1754, '0312983654'), - (142, '0671024248'), - (59, '0553582933'), - (1755, '0671034022'), - (1756, '0440208149'), - (1757, '0440208149'), - (142, '0451151259'), - (1758, '0375727132'), - (175, '0446607711'), - (1759, '0765301954'), - (1760, '014029645X'), - (1761, '0445085614'), - (873, '0345416880'), - (266, '0312874006'), - (1762, '0028621239'), - (1763, '0028621239'), - (415, '1593080743'), - (1764, '1593080743'), - (286, '0380771292'), - (287, '0380771292'), - (1765, '0805051589'), - (286, '0312314256'), - (287, '0312314256'), - (1766, '0445202718'), - (1767, '0316136778'), - (1768, '0385483503'), - (1769, '0590486101'), - (1096, '0060187271'), - (1767, '0385497288'), - (1767, '038548951X'), - (1770, '0345386256'), - (921, '0879517980'), - (1771, '0131554255'), - (1772, '0679725164'), - (1773, '061830245X'), - (1774, '006015456X'), - (1775, '006015456X'), - (1109, '0312278675'), - (1776, '0312278675'), - (1777, '0060512806'), - (1401, '0060901012'), - (1778, '0060901012'), - (1096, '0060930071'), - (1096, '0060972459'), - (1109, '0805012478'), - (1779, '0805012478'), - (1096, '0060975547'), - (1780, '0375704000'), - (1781, '0609806505'), - (1782, '0965624773'), - (1096, '0060977507'), - (343, '055326396X'), - (949, '0812505166'), - (1783, '0440234824'), - (1784, '0393312801'), - (175, '0446525804'), - (1785, '0446516570'), - (1786, '0312868308'), - (1787, '0380752298'), - (1788, '0345434773'), - (1789, '0786005998'), - (1790, '0385254520'), - (1791, '0060170441'), - (1792, '0590431536'), - (1793, '0712646221'), - (373, '0749318368'), - (532, '0515122491'), - (1794, '051512902X'), - (939, '0812530314'), - (1795, '0552138223'), - (62, '0515131091'), - (1537, '0515131091'), - (1796, '0515131091'), - (1797, '0515131091'), - (1798, '0380791382'), - (1799, '0091880955'), - (1800, '0563537329'), - (1801, '0563537329'), - (734, '0140265686'), - (734, '0140257934'), - (734, '0140254544'), - (1802, '0446603708'), - (1801, '0446606723'), - (283, '0451524934'), - (1803, '0451524934'), - (1804, '0679721819'), - (1805, '0345392825'), - (1806, '0060182792'), - (1807, '0393038440'), - (1808, '0737020121'), - (1809, '0737020121'), - (1810, '0737020121'), - (1125, '0679745645'), - (206, '1569470901'), - (60, '0671027123'), - (1811, '0375412972'), - (115, '0449225151'), - (1812, '0590449737'), - (1813, '0590449737'), - (1814, '0892816562'), - (873, '0765342405'), - (867, '0345350499'), - (1815, '0689837070'), - (1816, '0671041177'), - (1817, '0671041177'), - (1432, '0312976275'), - (1473, '0767905180'), - (971, '0743482891'), - (94, '037383232X'), - (971, '1551666200'), - (369, '0373242328'), - (1343, '0373709102'), - (128, '0517077744'), - (1818, '0449210197'), - (1819, '0373709617'), - (1820, '0373510225'), - (1821, '0373301529'), - (1822, '0373273193'), - (1823, '0373301626'), - (1824, '0373271867'), - (369, '0373240228'), - (1825, '059035342X'), - (1826, '059035342X'), - (1827, '0373764146'), - (1828, '037325928X'), - (128, '0446529788'), - (128, '044652767X'), - (60, '0743246918'), - (1192, '0373301847'), - (1829, '0373708351'), - (1830, '1551664690'), - (1831, '0789491869'), - (1832, '0789491869'), - (1196, '0373835426'), - (1833, '0373835426'), - (1834, '0373835426'), - (1835, '0373691157'), - (1836, '0373301537'), - (1837, '0373258674'), - (1838, '037330174X'), - (1839, '0312968256'), - (1840, '0451205650'), - (135, '0316089699'), - (1841, '1551669404'), - (1842, '0373708319'), - (1843, '0373706545'), - (1844, '0373871945'), - (534, '0671671138'), - (1845, '0449287092'), - (1846, '0671700081'), - (1847, '0821724231'), - (1848, '0380804670'), - (1849, '0812516192'), - (1850, '0425109267'), - (1851, '0380710005'), - (1852, '0553126911'), - (1853, '055320923X'), - (1854, '0140348107'), - (1855, '0884092097'), - (1854, '0884092119'), - (178, '0803263724'), - (1856, '0803263724'), - (1857, '0803263724'), - (1858, '0060506679'), - (1859, '0375701427'), - (1860, '0553135457'), - (403, '0812504364'), - (1397, '0380000830'), - (1397, '0380014300'), - (1861, '0895773570'), - (1395, '0330312367'), - (1862, '0330312367'), - (256, '2277238929'), - (268, '2277238929'), - (1863, '2743606789'), - (342, '2253001279'), - (1864, '2253001279'), - (1865, '2253001279'), - (1866, '2253001279'), - (1724, '2253047422'), - (105, '0553255142'), - (149, '9500703203'), - (1867, '0345406516'), - (1868, '0312281250'), - (1869, '0385490461'), - (285, '0060936363'), - (285, '038082101X'), - (567, '0849943663'), - (369, '3453099613'), - (873, '1574534106'), - (1870, '1574534106'), - (1871, '1574534106'), - (1872, '0380977745'), - (17, '1558747028'), - (18, '1558747028'), - (1650, '1558747028'), - (1873, '0618050140'), - (1874, '0312774842'), - (1875, '1579213405'), - (1876, '0671708635'), - (906, '0812970101'), - (1877, '0812970101'), - (1810, '0375727566'), - (1878, '0373630468'), - (1879, '0671676652'), - (1880, '0553250655'), - (1881, '0399139125'), - (1001, '0553377884'), - (1882, '9679787834'), - (1883, '0609605623'), - (1331, '0451195507'), - (583, '0061012289'), - (1884, '0451195493'), - (583, '0061092088'), - (1885, '0425162788'), - (145, '0425162788'), - (1886, '0425162788'), - (131, '0451208811'), - (1887, '3404920910'), - (1888, '2070419878'), - (1889, '2070419878'), - (188, '0345342968'), - (1890, '0192860925'), - (873, '0812550706'), - (1436, '0553580302'), - (1891, '0553580302'), - (1442, '0553580302'), - (1892, '0441102670'), - (1891, '0441328008'), - (1891, '0441294677'), - (1891, '0441104029'), - (574, '0345443683'), - (1893, '0061012149'), - (1894, '0890420254'), - (39, '0345378482'), - (60, '0671758896'), - (1895, '0345348109'), - (142, '0451177096'), - (1896, '0778800229'), - (574, '0345422384'), - (1075, '0441328091'), - (1897, '0684818868'), - (777, '0525463313'), - (1898, '0525463313'), - (1899, '0812513754'), - (1898, '0812550307'), - (1898, '0812513738'), - (1898, '0312852487'), - (1898, '0765348446'), - (1898, '0765348438'), - (1898, '0812511816'), - (1900, '0871401185'), - (1901, '0871401185'), - (1902, '0394712447'), - (397, '0671722727'), - (1903, '0385029551'), - (1904, '0385029551'), - (1905, '0070419361'), - (1906, '0070419361'), - (1907, '0070419361'), - (1908, '1929194196'), - (1909, '0553351702'), - (1910, '0285632655'), - (1911, '0804832463'), - (1912, '0804832463'), - (1901, '0375705090'), - (1913, '0375705090'), - (1914, '0312269587'), - (24, '0099244926'), - (1915, '0340612843'), - (206, '0413588106'), - (1916, '009945520X'), - (1917, '009945520X'), - (1918, '009945520X'), - (1919, '0702228842'), - (1920, '0880385367'), - (818, '0812515609'), - (819, '0812515609'), - (1625, '0451183681'), - (1921, '3502517959'), - (1726, '3442424623'), - (1922, '3442424623'), - (1923, '3310005844'), - (1924, '3310005844'), - (1925, '059525893X'), - (145, '0425122123'), - (1926, '0812530489'), - (1927, '081257060X'), - (1698, '081257060X'), - (1498, '0446326488'), - (1928, '0446326488'), - (81, '080410882X'), - (1929, '0446609986'), - (1930, '0375726624'), - (1243, '0892882816'), - (1931, '1577487370'), - (1243, '1578562325'), - (121, '0385484518'), - (1932, '0060951710'), - (54, '0060922532'), - (1933, '0786864133'), - (1934, '156836010X'), - (1935, '156836010X'), - (1936, '156836010X'), - (1937, '006251119X'), - (1938, '0440236703'), - (1939, '0671795937'), - (1739, '0345380274'), - (1940, '0440224039'), - (1941, '076790396X'), - (1942, '1572241381'), - (1943, '1572241381'), - (1944, '1572241381'), - (1945, '0345443411'), - (1946, '0345443411'), - (1947, '0192802542'), - (1948, '0060928204'), - (1949, '1592400876'), - (1950, '0140282378'), - (1951, '0435240765'), - (1952, '0435240765'), - (780, '0316779490'), - (1234, '0767902513'), - (253, '038531809X'), - (1953, '068815252X'), - (1954, '078686351X'), - (1046, '0375706410'), - (462, '0753811464'), - (1955, '0452266688'), - (1956, '0340697687'), - (1957, '0130289221'), - (1958, '0806957050'), - (1959, '0806957050'), - (1957, '0806957050'), - (1329, '0517084732'), - (1960, '020530902X'), - (257, '020530902X'), - (1961, '020530902X'), - (1962, '073520313X'), - (1963, '0130891347'), - (1964, '0130891347'), - (1965, '0465021433'), - (1966, '1565115228'), - (1159, '1565115228'), - (1967, '0380810336'), - (1968, '0809225034'), - (1969, '061819729X'), - (1970, '1565122798'), - (1971, '1565122798'), - (1972, '1581820542'), - (1973, '1581820542'), - (1974, '0425166791'), - (1975, '0452284058'), - (1976, '1564146731'), - (1977, '0767910079'), - (270, '0486401464'), - (94, '0880841109'), - (648, '0811201090'), - (1978, '0140621407'), - (82, '0140620281'), - (1979, '0201895293'), - (1980, '0201895293'), - (1981, '1585420611'), - (56, '0553211978'), - (1982, '0553274503'), - (235, '0440224659'), - (1983, '1841492086'), - (1984, '0345308239'), - (1985, '0330357190'), - (206, '0413537900'), - (1986, '1860467776'), - (1987, '0671757059'), - (1988, '0671511424'), - (145, '0425133540'), - (1989, '0743469801'), - (1990, '0590110225'), - (1991, '0835902242'), - (906, '0425173755'), - (906, '0451199871'), - (1992, '0963144839'), - (1993, '0373196903'), - (928, '0373196962'), - (351, '0671822209'), - (568, '0064409430'), - (914, '0380752107'), - (346, '0425194493'), - (1994, '0531103099'), - (1995, '0380728125'), - (397, '0671722816'), - (794, '1563521024'), - (1996, '0312267819'), - (1997, '0842361715'), - (1998, '0446527289'), - (1999, '0743457900'), - (1410, '0394830148'), - (1411, '0394830148'), - (59, '0345384350'), - (179, '0060175532'), - (2000, '0811200701'), - (2001, '0671023373'), - (7, '0679748083'), - (2002, '0830819223'), - (61, '0425175405'), - (2003, '0380731851'), - (2004, '0749930721'), - (2005, '0380009560'), - (2006, '0380009560'), - (944, '0345298365'), - (2007, '0380776510'), - (2008, '1570422826'), - (2009, '1570422826'), - (2010, '1570422826'), - (1771, '2070368076'), - (1328, '0312874995'), - (2011, '0425185702'), - (2012, '0425185702'), - (2013, '0886771560'), - (2014, '0684862719'), - (1455, '0552998338'), - (2015, '051748904X'), - (2016, '051748904X'), - (2017, '087226002X'), - (2018, '1855853906'), - (2019, '1850630127'), - (2020, '1850630127'), - (256, '0385304366'), - (256, '0385299842'), - (2021, '1555910408'), - (2022, '1555910408'), - (2023, '071411393X'), - (2024, '0713723076'), - (2025, '0713723076'), - (2026, '0486243451'), - (1998, '0684859262'), - (2027, '0684836491'), - (2028, '0671614460'), - (1628, '0345452550'), - (2029, '0399147357'), - (2030, '0740704532'), - (2029, '0836221974'), - (2029, '0836228790'), - (2029, '0836221966'), - (2029, '0836232232'), - (1628, '0345452534'), - (2031, '0312717415'), - (2032, '0312717415'), - (129, '0316602051'), - (737, '0316602051'), - (552, '0688156126'), - (2033, '1552976246'), - (2034, '1552976246'), - (2035, '1552976246'), - (2036, '0440221420'), - (2037, '0553573977'), - (2038, '0684867583'), - (2039, '0684867583'), - (142, '0451197879'), - (1337, '0380796090'), - (536, '0446604666'), - (2040, '0312860951'), - (1327, '0312860951'), - (2041, '0340792655'), - (39, '0061015725'), - (2042, '0593043995'), - (2043, '1855681870'), - (59, '0553579754'), - (2044, '0425181200'), - (2045, '0425181200'), - (115, '0451163494'), - (2043, '0425157164'), - (1013, '0449221482'), - (889, '0316154067'), - (889, '0312958455'), - (2046, '0515120863'), - (94, '0553279912'), - (39, '0345353145'), - (1001, '0553348973'), - (152, '0446516538'), - (24, '0440214041'), - (39, '0679446486'), - (2047, '0802116825'), - (2048, '0846705672'), - (2049, '0841502439'), - (664, '0380717972'), - (2050, '0312028784'), - (2051, '0807079200'), - (2052, '0878670319'), - (2053, '0896082172'), - (2054, '0226067114'), - (2055, '0393011224'), - (2056, '0060167084'), - (2057, '0415907411'), - (2058, '0415907411'), - (2059, '0415907411'), - (2060, '0472095978'), - (2061, '1565842103'), - (2062, '0385239068'), - (2063, '0385239068'), - (2064, '0525943730'), - (2065, '0802130259'), - (2066, '0802130259'), - (2067, '0802130259'), - (2068, '0877736510'), - (2069, '0151002231'), - (2070, '1895857058'), - (2071, '1895857058'), - (2072, '1895857058'), - (2073, '0525480374'), - (2074, '0812822625'), - (2075, '0890876096'), - (2076, '0890876096'), - (2077, '1560238763'), - (2078, '0062507567'), - (199, '0553476580'), - (2079, '076071150X'), - (2080, '1561707236'), - (2079, '1561707244'), - (2079, '1561706213'), - (2081, '1561706213'), - (2082, '0525945040'), - (2079, '0525945040'), - (2083, '0743400720'), - (2084, '0553274384'), - (2085, '1880032627'), - (1273, '0915811898'), - (389, '0385315287'), - (389, '0440108268'), - (389, '0440204321'), - (389, '044020562X'), - (2007, '0446676489'), - (2086, '1577310454'), - (2087, '1577310454'), - (2088, '1577310454'), - (180, '0140298479'), - (2089, '0694524638'), - (2088, '0694524638'), - (2090, '0912365579'), - (2091, '1882591275'), - (2092, '0811812006'), - (2093, '0809237628'), - (2094, '0809237601'), - (2092, '0806514094'), - (2095, '0786860642'), - (2093, '0671777351'), - (2096, '067084487X'), - (357, '067084487X'), - (2097, '0821211226'), - (2098, '0062508482'), - (2099, '0062508482'), - (2100, '0062508482'), - (2101, '0912776412'), - (2102, '0892132701'), - (2103, '0553255959'), - (1263, '0385484100'), - (2104, '0140422226'), - (2105, '0140422226'), - (2106, '0062509594'), - (2107, '0062509594'), - (2108, '0062509594'), - (2109, '0446673714'), - (2110, '0062500287'), - (2084, '1577311868'), - (199, '0062513346'), - (2111, '0030020786'), - (2112, '0030020786'), - (2113, '0030020786'), - (2114, '0133502813'), - (2115, '0133502813'), - (2116, '0716724022'), - (777, '0525462325'), - (1897, '0525462325'), - (994, '0060256664'), - (2117, '0794505007'), - (2118, '0794505007'), - (2119, '0786889020'), - (2120, '0786861320'), - (327, '0688149790'), - (2121, '0671519751'), - (2122, '0399505962'), - (2123, '0812090381'), - (2124, '156305700X'), - (2125, '0889652066'), - (1017, '0889652066'), - (2126, '0140386645'), - (574, '0345337662'), - (574, '0345351525'), - (2127, '0553205587'), - (1013, '0449003787'), - (2128, '0867202076'), - (2129, '0867202076'), - (2130, '0716723980'), - (2131, '0716723980'), - (2132, '0716723980'), - (2133, '0765347539'), - (2134, '0965921506'), - (2135, '0471485527'), - (2132, '0765345048'), - (712, '0385265700'), - (2136, '0156935805'), - (2137, '0713442549'), - (2138, '094547069X'), - (2139, '094547069X'), - (2140, '0486293556'), - (2141, '0020083513'), - (2142, '0020083513'), - (2143, '0140376410'), - (2144, '0452281296'), - (814, '1573229326'), - (2145, '038072930X'), - (2146, '068483376X'), - (2147, '068484270X'), - (2148, '0316754315'), - (2149, '0671672576'), - (2150, '0671672576'), - (2151, '0679743243'), - (2152, '0151003394'), - (2153, '0151003394'), - (2154, '0151003394'), - (24, '0385424736'), - (2155, '0060923717'), - (2156, '0060923717'), - (2157, '0060923717'), - (989, '0671617028'), - (543, '0440224772'), - (1804, '0345406036'), - (2158, '0871132389'), - (2159, '0345421825'), - (2160, '0061057983'), - (1821, '0373245513'), - (2161, '0525440631'), - (2162, '0373196504'), - (2163, '0425130312'), - (2164, '0373123515'), - (2165, '0373123531'), - (24, '0375433465'), - (914, '0380752123'), - (906, '067170463X'), - (1733, '0671543180'), - (906, '067170091X'), - (906, '0671705997'), - (906, '0671704664'), - (2166, '0373805217'), - (1733, '0671696513'), - (2167, '0373123086'), - (403, '0140390839'), - (2168, '0140390839'), - (932, '0373123523'), - (2169, '0821758179'), - (2170, '0821758179'), - (2171, '0821758179'), - (2172, '0821758179'), - (2006, '0380896931'), - (2173, '0971942315'), - (2174, '3455059554'), - (1109, '0553275860'), - (2175, '0553275860'), - (133, '0739307312'), - (2176, '0739307312'), - (1209, '3423105518'), - (2177, '3423105518'), - (2178, '0812090284'), - (2179, '0812090284'), - (2180, '0590254715'), - (2181, '0449210073'), - (236, '0446605239'), - (369, '0553295977'), - (2182, '0380470845'), - (2183, '0380715309'), - (240, '0553291025'), - (287, '0812549295'), - (2184, '0812549295'), - (891, '0440162041'), - (1092, '0671739778'), - (2185, '0679770232'), - (921, '0312875495'), - (2186, '0553130285'), - (1245, '0440212723'), - (2187, '0061054267'), - (2188, '0553299743'), - (1244, '0671016768'), - (2189, '0553276735'), - (937, '0786889047'), - (1546, '0380720191'), - (230, '0380898179'), - (2190, '0345314247'), - (2191, '0671646575'), - (199, '0060955775'), - (2192, '0679723374'), - (2193, '0679723374'), - (2194, '0716744481'), - (2195, '0395629497'), - (2196, '0395629497'), - (2197, '0140259988'), - (2198, '0140259988'), - (2199, '0743458036'), - (2200, '0743458036'), - (2201, '0441225691'), - (2202, '0671721720'), - (2203, '0679745963'), - (2204, '0679745963'), - (2201, '0671875965'), - (1759, '0142003409'), - (2205, '0671577727'), - (256, '0451451686'), - (2206, '068486780X'), - (1045, '0743224574'), - (1987, '0671010115'), - (60, '0671004549'), - (2207, '0375509283'), - (2208, '081297106X'), - (2209, '0312422601'), - (2210, '0802139256'), - (2211, '0553565915'), - (2212, '0553565915'), - (565, '055356160X'), - (2213, '0439240700'), - (2214, '0439240700'), - (795, '0345317580'), - (795, '0345335287'), - (795, '0345362276'), - (1491, '0373512066'), - (602, '0812505042'), - (602, '0486270718'), - (1523, '0140022651'), - (2215, '0140022651'), - (2216, '1558504184'), - (597, '0590629808'), - (2217, '0590629778'), - (2179, '059046678X'), - (2218, '0671740903'), - (2217, '0671740881'), - (2219, '0380570009'), - (2220, '0380570009'), - (2221, '0380570009'), - (2222, '0451077237'), - (2223, '0807842613'), - (2224, '0345283554'), - (2225, '0345260627'), - (2226, '0345283929'), - (2227, '068808527X'), - (2228, '0929634063'), - (2229, '0898863538'), - (2230, '0898863538'), - (2228, '0679023755'), - (2231, '0394707745'), - (2232, '042516540X'), - (1298, '0671695304'), - (183, '0515134384'), - (183, '051512463X'), - (1428, '0671529714'), - (1428, '0671751174'), - (2233, '0671001868'), - (2234, '0671001868'), - (795, '0345375580'), - (2235, '0671802283'), - (796, '067166865X'), - (2236, '067166865X'), - (2237, '0553492411'), - (2238, '0590109715'), - (597, '0590629786'), - (597, '0590629794'), - (2239, '0439164567'), - (2240, '0590448595'), - (2241, '0590448595'), - (2242, '0590448323'), - (2241, '0590448315'), - (2243, '0553295691'), - (2242, '0553562754'), - (369, '0515120618'), - (152, '0971766711'), - (2244, '0201731355'), - (1359, '0380812029'), - (2245, '1551668424'), - (1116, '0553583077'), - (2246, '0804119740'), - (2247, '0446611107'), - (2244, '1551669463'), - (743, '0821772252'), - (2248, '0060009241'), - (2249, '0380819619'), - (2250, '1551668521'), - (2251, '0312989202'), - (584, '0451208293'), - (2252, '084395051X'), - (2244, '1551665964'), - (2253, '0843950676'), - (2254, '0451208153'), - (2255, '0060001453'), - (1359, '0060002050'), - (2163, '0373123213'), - (2256, '0843951346'), - (2257, '1551666766'), - (2258, '1551666855'), - (2251, '0451208412'), - (2259, '0061032093'), - (2260, '0312989431'), - (2261, '0446611298'), - (2262, '0843952059'), - (2263, '0380812975'), - (2264, '0345447174'), - (2265, '0553583565'), - (2266, '0804119953'), - (2267, '0843950803'), - (2268, '0553583905'), - (2269, '0373292228'), - (2270, '0060502312'), - (2271, '0743436830'), - (2272, '1551668920'), - (2254, '0060001445'), - (2273, '0451206754'), - (2246, '0440236401'), - (2006, '038081479X'), - (2251, '0843949635'), - (2252, '0843949724'), - (2274, '0821771205'), - (2275, '0312979495'), - (2276, '0440235960'), - (2277, '0380811065'), - (543, '0440224055'), - (1073, '0140255087'), - (2278, '0684866048'), - (2279, '0688164307'), - (2280, '0060392703'), - (2281, '0671743228'), - (2282, '0385483813'), - (2283, '1556590415'), - (2284, '0399517405'), - (2285, '1885171013'), - (2286, '1583940677'), - (2287, '0804110867'), - (2288, '0446400688'), - (269, '0425102319'), - (2289, '039304856X'), - (183, '0399143335'), - (2290, '0962455741'), - (2182, '0441001866'), - (2182, '0441000312'), - (183, '0515118249'), - (2291, '0743456823'), - (2292, '0312311354'), - (2293, '0671743562'), - (165, '0385335830'), - (2294, '0743262174'), - (369, '0515130389'), - (612, '080411935X'), - (760, '0142004235'), - (369, '0515135062'), - (2295, '0595197124'), - (2296, '0595197124'), - (1814, '0689859376'), - (2297, '0689859376'), - (2296, '0689859376'), - (2298, '1563524317'), - (1505, '0140065008'), - (2299, '0156881802'), - (2300, '0156881802'), - (1704, '0006476333'), - (2301, '3257233027'), - (2300, '325723273X'), - (2302, '0743412028'), - (254, '3442429439'), - (2303, '3442429439'), - (1441, '0061056774'), - (2304, '0061056774'), - (634, '0425169693'), - (413, '0452269571'), - (369, '051513287X'), - (732, '0618002219'), - (632, '0553576399'), - (2305, '0451458370'), - (632, '0441374239'), - (2029, '0887307884'), - (2306, '0252068505'), - (2307, '0804108447'), - (2308, '0671721046'), - (1186, '0441117732'), - (632, '0553576429'), - (2309, '0915035170'), - (2310, '0915035170'), - (2311, '0915035170'), - (2312, '0060914254'), - (632, '0441003702'), - (2313, '0886776155'), - (1186, '055329461X'), - (632, '055329461X'), - (632, '055357549X'), - (2314, '0553373803'), - (208, '0060392452'), - (1765, '1568650418'), - (433, '0451455789'), - (2315, '0963401661'), - (2316, '0963401661'), - (2317, '1566393523'), - (2318, '0153895152'), - (2319, '0345412451'), - (1824, '0590353403'), - (1825, '0590353403'), - (2320, '0671877283'), - (2321, '0941104184'), - (1776, '0380815931'), - (2322, '0930878132'), - (2323, '0932130097'), - (133, '0312263120'), - (208, '0446532231'), - (2324, '0806511605'), - (2325, '0007103999'), - (2306, '0671877143'), - (2326, '0671877143'), - (2327, '0886777844'), - (2328, '0875424961'), - (2329, '089281313X'), - (2330, '0877285314'), - (1898, '0765341840'), - (2331, '0380789116'), - (2332, '2877141667'), - (2333, '0312243359'), - (2334, '2742702458'), - (2335, '2253182389'), - (2336, '0385498802'), - (2337, '0141002077'), - (192, '0394757653'), - (2338, '0812579569'), - (1180, '0898655293'), - (330, '0449904628'), - (2339, '0831750065'), - (2340, '0446674338'), - (2341, '0449702936'), - (2340, '0449702146'), - (2340, '0449701301'), - (2340, '0449703347'), - (2340, '0590477323'), - (2340, '0449701875'), - (2340, '0590471570'), - (2340, '0449702545'), - (2342, '0156005778'), - (2343, '0375727434'), - (2344, '1550223968'), - (517, '0312291639'), - (518, '0312291639'), - (270, '014043187X'), - (2345, '014043187X'), - (59, '0425101452'), - (2346, '0192816489'), - (2347, '0192816489'), - (2348, '189251415X'), - (2349, '014018869X'), - (2350, '1401068049'), - (2351, '2070374637'), - (2352, '2070374637'), - (2353, '2070374637'), - (94, '2890377741'), - (2354, '0375505296'), - (2355, '3423350024'), - (2356, '034536662X'), - (1001, '0553348981'), - (2357, '0486251772'), - (2358, '0671541013'), - (244, '0684874350'), - (2359, '0451207580'), - (129, '0446611212'), - (2360, '0316168688'), - (25, '0452264790'), - (2361, '0679448802'), - (2362, '0425189082'), - (2363, '1566492785'), - (2364, '0553254456'), - (2365, '0553130250'), - (2366, '0451451279'), - (2367, '0441816533'), - (2368, '0879977361'), - (2369, '0671002384'), - (2370, '0380561433'), - (2371, '0879831227'), - (571, '0425155943'), - (1164, '0553240307'), - (716, '3257229534'), - (1060, '0553144286'), - (24, '0440241537'), - (574, '034538475X'), - (2372, '0671004247'), - (2373, '0671004247'), - (122, '0671002406'), - (2374, '0671006754'), - (309, '055327418X'), - (330, '0345419995'), - (2375, '0345388674'), - (2376, '0345277937'), - (2377, '0671824171'), - (2378, '0441354955'), - (2379, '0879977981'), - (2380, '0879977981'), - (2381, '0441239196'), - (2382, '0441239196'), - (803, '0671822845'), - (2383, '0671822845'), - (2384, '0880387157'), - (2385, '0880387157'), - (2386, '0451163036'), - (1093, '0394718224'), - (2387, '0345280229'), - (2388, '0345280229'), - (2389, '0345280229'), - (2390, '0875421989'), - (2391, '0875421989'), - (2392, '087100240X'), - (2393, '0874771412'), - (2394, '0886777631'), - (59, '0425098648'), - (2395, '0061008427'), - (59, '0425181103'), - (2396, '0786001690'), - (227, '0380718340'), - (142, '0451153553'), - (1352, '0142001805'), - (1397, '0380014033'), - (2397, '0553277839'), - (51, '0375706062'), - (2398, '0060981180'), - (2399, '0061051098'), - (61, '0425147622'), - (2028, '0451180410'), - (2400, '0425143341'), - (1784, '0446360856'), - (2401, '1593100825'), - (2402, '1593100825'), - (2403, '1593100825'), - (2404, '1593100825'), - (2405, '1591451124'), - (2406, '0800758579'), - (818, '0812589831'), - (819, '0812589831'), - (2251, '0451212193'), - (2407, '1593101678'), - (2408, '0312993560'), - (2409, '0373791429'), - (2410, '0373227787'), - (2411, '037327372X'), - (2412, '0373273711'), - (2006, '0380400480'), - (2413, '0964894203'), - (2414, '0964894203'), - (2415, '0964894203'), - (2416, '0964894203'), - (2417, '037327369X'), - (2418, '1551666685'), - (2417, '0778320227'), - (59, '0553582763'), - (59, '0425188809'), - (59, '0425092178'), - (59, '0345384369'), - (59, '034539657X'), - (2293, '0020532105'), - (2419, '0671623931'), - (665, '0020519109'), - (59, '0425144429'), - (2224, '0345468392'), - (1323, '0312305060'), - (2420, '0743493540'), - (2421, '0821770594'), - (2422, '0310466628'), - (2257, '0446363510'), - (2423, '037329168X'), - (2271, '0440206707'), - (1112, '0425144569'), - (2420, '0821764462'), - (1600, '0451204948'), - (56, '0486290492'), - (859, '156619301X'), - (2424, '0060175966'), - (145, '0399144137'), - (2425, '0743436741'), - (368, '0330352253'), - (252, '0609600567'), - (2426, '0786404019'), - (2427, '034545104X'), - (2428, '0394756827'), - (2429, '0300069049'), - (2430, '0300069049'), - (7, '0399146431'), - (2431, '0312186754'), - (873, '0312876513'), - (2432, '080901548X'), - (2433, '080901548X'), - (2434, '080901548X'), - (2435, '080901548X'), - (2436, '0803287100'), - (2437, '0879520388'), - (2438, '0520077806'), - (2439, '0295955252'), - (2440, '0824811720'), - (1767, '0385482388'), - (2441, '0312275560'), - (2442, '0820319627'), - (2443, '0820319627'), - (2444, '0820319627'), - (2445, '0767901266'), - (2446, '0385470142'), - (2447, '0870238566'), - (2448, '0870238566'), - (2449, '0870238566'), - (2450, '0870238566'), - (2451, '1558850481'), - (2452, '0679733760'), - (2453, '0395874653'), - (7, '0399141146'), - (1575, '0375706771'), - (2454, '0451525078'), - (2455, '0679722319'), - (2456, '0553213601'), - (2457, '0553213601'), - (1125, '0679745580'), - (2458, '0679741410'), - (2459, '0679729259'), - (2460, '0679729259'), - (2461, '0679729259'), - (25, '0452260116'), - (2462, '0812533550'), - (568, '0020442602'), - (1704, '0312978367'), - (2463, '038079893X'), - (2464, '038079893X'), - (1300, '0061098019'), - (2465, '0061098019'), - (2466, '0425177696'), - (1898, '0812517725'), - (256, '0380818191'), - (2467, '9721013412'), - (2368, '074346771X'), - (2468, '0399134883'), - (2469, '0316037443'), - (2470, '0316037443'), - (2471, '1878067745'), - (59, '0399138749'), - (2472, '0571069134'), - (2473, '0811816583'), - (2474, '0811816583'), - (2475, '1588512681'), - (1360, '1573228745'), - (2476, '0446528757'), - (1315, '0451191145'), - (1961, '0136714897'), - (720, '0689823517'), - (2477, '0689823517'), - (2478, '0875093663'), - (2418, '0671510126'), - (2479, '0671510126'), - (843, '0440403278'), - (888, '0803722907'), - (465, '0060987561'), - (2480, '0842314296'), - (2481, '1880089858'), - (1432, '0312265867'), - (2482, '055328424X'), - (2483, '0373250290'), - (2484, '1844262553'), - (2485, '3442411580'), - (2486, '3548600867'), - (1706, '3596124166'), - (2487, '3596124166'), - (2486, '3596124166'), - (2488, '3257227809'), - (180, '344244392X'), - (2489, '344244392X'), - (2490, '3546001575'), - (2491, '3546001575'), - (323, '0525945172'), - (2492, '3462029916'), - (2493, '3423203668'), - (2494, '3423203668'), - (2492, '3423204206'), - (2493, '3423204206'), - (1374, '0152008772'), - (1291, '0312150601'), - (2495, '0671899619'), - (58, '0061099694'), - (128, '0446603309'), - (252, '0345302745'), - (1194, '0671881957'), - (2496, '0786881852'), - (2497, '0310240972'), - (1366, '0440170370'), - (290, '034524575X'), - (1628, '0345413873'), - (552, '0380726262'), - (1194, '0671881965'), - (1194, '0671881981'), - (1194, '0671881930'), - (1194, '0671881949'), - (2498, '0590419293'), - (122, '0671896768'), - (746, '0064410129'), - (747, '0064410129'), - (2499, '0064410129'), - (2500, '0553267736'), - (2501, '055325636X'), - (2502, '0553254723'), - (2503, '0553254723'), - (1876, '0553801309'), - (2504, '0445210214'), - (1396, '0375719350'), - (2505, '0345334302'), - (2506, '0345334302'), - (2507, '0380773945'), - (2508, '0345373413'), - (252, '0345348176'), - (2509, '0679802614'), - (2239, '0590428098'), - (2510, '0671702920'), - (2511, '0380757893'), - (1298, '0440400759'), - (2512, '0590414976'), - (1323, '0684874318'), - (1011, '037570387X'), - (2513, '0451452925'), - (2514, '0451452925'), - (1523, '1559029838'), - (2515, '0590414658'), - (1194, '0671674919'), - (2516, '0441048862'), - (2517, '0553271547'), - (2518, '0553272004'), - (2519, '0451450787'), - (2518, '0451450876'), - (2518, '0451450825'), - (2520, '0451452542'), - (2521, '0451453026'), - (430, '0451453026'), - (2518, '0451453727'), - (2519, '0451453697'), - (2522, '0451453700'), - (2523, '0451456998'), - (860, '0451459954'), - (2524, '0451457471'), - (2525, '0451453689'), - (2526, '0451457374'), - (2527, '0451451899'), - (2520, '0451451996'), - (2528, '0451453719'), - (2524, '0451452380'), - (2522, '0451458397'), - (2523, '0451458184'), - (2529, '0399143815'), - (2530, '0441004911'), - (1695, '0671578375'), - (2531, '0440234948'), - (2532, '0671023187'), - (2533, '0395390338'), - (2534, '0395390338'), - (2535, '0395390338'), - (2536, '0679746048'), - (868, '0684803143'), - (867, '0451459245'), - (2537, '0743417720'), - (175, '0446610100'), - (2538, '1857027795'), - (231, '0440216745'), - (889, '3453151720'), - (2539, '344242979X'), - (2540, '344242979X'), - (2541, '3423241012'), - (1197, '3423202343'), - (1432, '0312966970'), - (2542, '0671730177'), - (2543, '0671568485'), - (2544, '0345352238'), - (433, '0345334310'), - (2545, '0671876937'), - (2544, '0671876015'), - (187, '0812533666'), - (2546, '0893757837'), - (2547, '1575663104'), - (2548, '0679766758'), - (2549, '0874869226'), - (2550, '0967224918'), - (2551, '3492215416'), - (2552, '3499431009'), - (2553, '3499431009'), - (2554, '3442440246'), - (2555, '3746618959'), - (2556, '3746618959'), - (2557, '3257228449'), - (2558, '3570204758'), - (2559, '3548680291'), - (2560, '3442450144'), - (2561, '3442450144'), - (2562, '3442727758'), - (2563, '3442727758'), - (2564, '3426620685'), - (2565, '3596505429'), - (2566, '0307100227'), - (2567, '0886251788'), - (2568, '1590383141'), - (2569, '0061066591'), - (2233, '0671522728'), - (2570, '0816735786'), - (2571, '0689835752'), - (2570, '0689835752'), - (2572, '0152017976'), - (2571, '0152017984'), - (2573, '3596271088'), - (2572, '3596270952'), - (2574, '3596270952'), - (2575, '3596270952'), - (367, '0394577736'), - (1803, '0151104506'), - (2576, '0425175006'), - (2577, '0345426274'), - (2578, '0425186857'), - (1754, '0671003518'), - (369, '051512317X'), - (369, '0515114693'), - (2579, '0060507403'), - (960, '0679767398'), - (2580, '0679767398'), - (56, '0553212761'), - (1366, '0425174468'), - (1366, '044012929X'), - (351, '0345367421'), - (2581, '0060004533'), - (1362, '0380002930'), - (2582, '080215185X'), - (2583, '080215185X'), - (2584, '0718143043'), - (1014, '0670858722'), - (162, '0486280489'), - (181, '0486280489'), - (2585, '3821829494'), - (2586, '0312876912'), - (92, '0684148579'), - (2587, '0553562967'), - (2588, '0446363170'), - (247, '0804110379'), - (247, '0449003183'), - (247, '044920474X'), - (247, '0449244970'), - (247, '0449210952'), - (1432, '0312971346'), - (337, '0399147101'), - (2589, '0449146383'), - (2590, '0446603066'), - (2591, '0446603821'), - (2588, '0449149374'), - (1164, '0553378260'), - (2592, '1556614438'), - (873, '0312850581'), - (2593, '0140280553'), - (682, '0930031067'), - (364, '0060958022'), - (729, '0385474016'), - (2594, '0380804700'), - (2595, '0500280673'), - (2596, '048640076X'), - (2597, '0349109931'), - (2598, '156245191X'), - (2599, '0140124497'), - (2600, '0553210114'), - (2601, '0553210114'), - (2602, '0553210114'), - (1091, '0156658992'), - (1616, '037550334X'), - (2603, '3518396005'), - (1732, '3499123665'), - (2604, '3548603203'), - (2605, '3548603203'), - (1724, '2253057835'), - (2606, '2253057835'), - (2607, '2253057835'), - (2608, '2020482363'), - (2609, '2264027754'), - (2610, '2264027754'), - (2611, '2264032189'), - (239, '052594527X'), - (848, '3257204833'), - (2612, '3257204833'), - (2613, '3596156963'), - (711, '3596122279'), - (1052, '3404141970'), - (2614, '0029281113'), - (2615, '0517559552'), - (2616, '0345338545'), - (2617, '0375701044'), - (2618, '0316158720'), - (1099, '0007154615'), - (1757, '0375412824'), - (2619, '1558743669'), - (2620, '084236661X'), - (2619, '084236661X'), - (2621, '0708842100'), - (1428, '059045367X'), - (1428, '0590453661'), - (2622, '059042761X'), - (2623, '0385721617'), - (1471, '0694013226'), - (2624, '0694013226'), - (2182, '0441005764'), - (132, '0553582135'), - (971, '0671034065'), - (159, '0451410777'), - (2625, '0345418832'), - (2626, '0671026801'), - (2627, '0671024051'), - (2628, '0684869829'), - (131, '0399147772'), - (1625, '0440237416'), - (284, '0439101336'), - (827, '0439101336'), - (563, '0399147284'), - (60, '0684832380'), - (183, '039914210X'), - (2002, '0380730359'), - (2629, '0374166560'), - (142, '0451150635'), - (2630, '3596132762'), - (2631, '3492225926'), - (2632, '3492225926'), - (2633, '006018700X'), - (2634, '0684836483'), - (2635, '0571174450'), - (2636, '0312848846'), - (2637, '0442043244'), - (1041, '0880381736'), - (1042, '0880381736'), - (1473, '0767907817'), - (712, '0385720106'), - (1109, '0553208845'), - (2638, '0553208845'), - (1853, '0064400581'), - (2639, '0064400581'), - (2640, '0571142745'), - (2641, '0898861780'), - (2642, '1586480456'), - (2643, '030681188X'), - (2644, '0688155022'), - (2645, '088064219X'), - (2646, '088064219X'), - (2647, '088064219X'), - (480, '1904095399'), - (2648, '0743204158'), - (2649, '0310225116'), - (2650, '0800758358'), - (2651, '0385050755'), - (2652, '0842329218'), - (2653, '0072430958'), - (2654, '0072430958'), - (568, '0684823780'), - (967, '1576738442'), - (2655, '0449219283'), - (2656, '0553574965'), - (543, '0440225698'), - (24, '0440221471'), - (2657, '0394541545'), - (742, '0877958920'), - (2658, '0440235758'), - (2659, '0743216458'), - (1626, '0061007129'), - (606, '0886773784'), - (2660, '0440228204'), - (2661, '0883657635'), - (145, '0425143325'), - (145, '0425180964'), - (2662, '0812520793'), - (2663, '0312109393'), - (2664, '0399148019'), - (2665, '0373063121'), - (401, '0140620869'), - (1164, '0553801589'), - (373, '0743411250'), - (93, '0590129988'), - (2666, '0590129988'), - (536, '0375700684'), - (2667, '0375700684'), - (536, '0375700692'), - (2666, '0375700692'), - (2668, '0312955510'), - (795, '0345396537'), - (2669, '0452272092'), - (2670, '3518383620'), - (2671, '3518383620'), - (2672, '3518383620'), - (2673, '3499262967'), - (2674, '3407808836'), - (2675, '3407808836'), - (2676, '3423085711'), - (142, '3453159926'), - (2677, '3453159926'), - (2678, '3499137909'), - (2679, '3499137909'), - (2680, '0747563721'), - (2681, '0451518845'), - (247, '0441009700'), - (2682, '0345395190'), - (2683, '0553265571'), - (397, '0451521285'), - (2684, '0451521285'), - (2685, '0812566351'), - (150, '0060502258'), - (1755, '0440911710'), - (2686, '0140298444'), - (2687, '0395869463'), - (788, '0064407721'), - (2688, '0684859785'), - (2689, '0156806479'), - (2126, '0553266055'), - (2690, '0345441443'), - (2691, '0802132952'), - (2692, '0441535771'), - (1302, '0812552989'), - (397, '0451521358'), - (2693, '0451521358'), - (2694, '0140089365'), - (2695, '0451455126'), - (2696, '0451455126'), - (127, '0451455126'), - (2697, '0451455126'), - (2698, '038072345X'), - (2699, '1580173144'), - (76, '0671025570'), - (40, '0553274864'), - (2700, '0553274864'), - (2701, '1888604182'), - (2702, '0805064362'), - (2703, '0330336215'), - (256, '0061020710'), - (389, '0440204887'), - (732, '0345339681'), - (1118, '0812572297'), - (1539, '0345272579'), - (142, '0385199570'), - (2704, '0156007568'), - (2705, '0156007568'), - (2706, '3426776545'), - (2707, '3404701704'), - (2708, '3404701704'), - (2709, '3404701704'), - (2710, '3404701704'), - (2492, '3423205202'), - (2493, '3423205202'), - (24, '3453169247'), - (2711, '3442541751'), - (2492, '3423202947'), - (2712, '3423202947'), - (2713, '3423202947'), - (1176, '0374332657'), - (2714, '0553298496'), - (2713, '0553255371'), - (905, '0451528018'), - (247, '0451528018'), - (66, '0842321942'), - (65, '0842321942'), - (66, '0842321934'), - (65, '0842321934'), - (1748, '1562475878'), - (1748, '1562475193'), - (597, '0590997262'), - (597, '0590997297'), - (597, '0590762613'), - (597, '0590213040'), - (2212, '0439061652'), - (2715, '0439061652'), - (2716, '1584851651'), - (2717, '1584851651'), - (274, '0141304707'), - (2718, '0679866957'), - (2719, '0679866957'), - (2720, '059048575X'), - (2721, '059048575X'), - (2722, '059048575X'), - (2723, '044048474X'), - (1298, '044048474X'), - (2724, '1568657803'), - (2725, '0140309578'), - (2726, '0140309578'), - (2727, '0140309578'), - (1816, '0671028049'), - (2728, '0671019805'), - (2212, '0671016954'), - (2729, '0671019791'), - (1194, '044809553X'), - (2730, '0671023810'), - (2731, '1561565601'), - (1194, '0448095548'), - (1748, '1584850167'), - (2732, '1584850167'), - (2733, '1584850167'), - (2734, '1562470752'), - (2735, '1562470752'), - (1748, '1562470043'), - (2736, '1562470043'), - (1748, '1562475150'), - (2737, '1562475150'), - (2738, '1562475150'), - (2241, '0590448250'), - (1965, '0590386042'), - (1298, '0590386042'), - (2739, '0590386042'), - (2740, '0590386042'), - (2741, '0877191174'), - (2742, '0689817215'), - (2728, '0671015192'), - (2729, '0671024272'), - (410, '3453025423'), - (2743, '0553141406'), - (1699, '0517580497'), - (187, '0312863403'), - (2744, '086547642X'), - (17, '1558744630'), - (18, '1558744630'), - (1650, '1558744630'), - (2745, '0140380361'), - (2746, '0140380361'), - (39, '0394588169'), - (780, '0316143464'), - (543, '0385336322'), - (1366, '038533348X'), - (1265, '0553294385'), - (2747, '1573222623'), - (17, '1558746161'), - (18, '1558746161'), - (1650, '1558746161'), - (2748, '0553583867'), - (415, '0553214225'), - (2749, '0394569962'), - (2750, '0553568914'), - (433, '0671721291'), - (606, '0671721291'), - (1628, '0553563521'), - (1628, '055357230X'), - (61, '0399142282'), - (2751, '0140193383'), - (2752, '1890159018'), - (2753, '1890159018'), - (1265, '0446670626'), - (1048, '0446670626'), - (2754, '0590429892'), - (2755, '0782123813'), - (2756, '0782123813'), - (2757, '0782123813'), - (2754, '0782125352'), - (2758, '1561703249'), - (1898, '0812513711'), - (79, '0671004107'), - (1188, '0553213539'), - (2759, '9681905202'), - (1732, '0449200396'), - (2760, '0425173615'), - (2761, '0684186454'), - (2762, '006016185X'), - (2763, '006016185X'), - (2764, '0800730364'), - (2765, '0671766821'), - (2766, '0671766821'), - (989, '0671683993'), - (81, '0425098680'), - (1001, '0553245694'), - (2767, '0874775639'), - (2768, '0060907215'), - (2769, '0385302274'), - (888, '0670873683'), - (634, '0425168700'), - (252, '0375704906'), - (665, '0020519001'), - (2770, '0345426029'), - (1635, '0060973277'), - (2771, '0439064872'), - (1825, '0439064872'), - (2772, '0679751602'), - (389, '0688127169'), - (2773, '9722110195'), - (2774, '0714832529'), - (1298, '0440784743'), - (819, '0812551532'), - (2775, '1573247022'), - (2776, '1573247022'), - (1315, '0451132157'), - (2777, '055315754X'), - (2778, '0312263449'), - (2779, '0060904453'), - (2780, '0671734547'), - (2781, '0671734547'), - (2585, '0812580354'), - (25, '1400076218'), - (1195, '1573226106'), - (2782, '0373263678'), - (2680, '0553211404'), - (2783, '0679447393'), - (2784, '0380718650'), - (2785, '0373263953'), - (183, '0515102652'), - (1086, '0312263996'), - (232, '1400032717'), - (2786, '0595315070'), - (2787, '0595315070'), - (2788, '1594200106'), - (2789, '1594200106'), - (2790, '1589880013'), - (2791, '0553250515'), - (211, '0374100128'), - (25, '0452283868'), - (1801, '0446610380'), - (54, '0061097314'), - (2792, '074325547X'), - (2793, '158988003X'), - (2794, '158988003X'), - (2795, '1573222453'), - (201, '0140119906'), - (1322, '0140119906'), - (2796, '0395873347'), - (2586, '0446677426'), - (2797, '0446677426'), - (2798, '0393308839'), - (2799, '0393308839'), - (2800, '0393308839'), - (2801, '0451524039'), - (2802, '0451524039'), - (2803, '0451524039'), - (2804, '0060548533'), - (2805, '1885266480'), - (2806, '0060987049'), - (2807, '0571169341'), - (54, '0060504080'), - (2808, '0679749861'), - (1045, '0684853701'), - (2809, '0374521409'), - (2458, '0140445277'), - (2810, '0140445277'), - (1248, '0684831546'), - (1396, '0345404475'), - (2811, '0375404929'), - (408, '0684857820'), - (274, '0140051317'), - (1065, '0553291890'), - (2812, '0586213333'), - (2813, '2080707590'), - (2814, '2715223528'), - (2815, '2246567610'), - (2816, '2253153427'), - (425, '2883531714'), - (2817, '2266083309'), - (2818, '2266083309'), - (2819, '2070383326'), - (2820, '2290045799'), - (2821, '2264010991'), - (2822, '2264010991'), - (2656, '0449207331'), - (2823, '0449207331'), - (2824, '0060092645'), - (2825, '0451207378'), - (1359, '0061031755'), - (266, '0812551583'), - (2826, '0743410653'), - (2540, '0684864711'), - (2827, '1582430748'), - (2826, '1582430748'), - (2828, '0684846861'), - (2829, '0743200349'), - (2830, '0761521097'), - (2831, '0761521097'), - (2832, '0446674109'), - (2833, '0849937361'), - (2834, '0140124373'), - (2835, '1853811262'), - (142, '0450411435'), - (2836, '0749309636'), - (252, '0375704973'), - (533, '034543059X'), - (2837, '037541309X'), - (2838, '037541309X'), - (2839, '0752848011'), - (2840, '1580083412'), - (2841, '0140236716'), - (2842, '0380973499'), - (2843, '0380973499'), - (2844, '0380973499'), - (2658, '0684867184'), - (2845, '031224116X'), - (2846, '0385319622'), - (2847, '1557507422'), - (2848, '1557507422'), - (2849, '1853673110'), - (2850, '0917298551'), - (2851, '0891415947'), - (2852, '0804100039'), - (2853, '0440236304'), - (2658, '0440236304'), - (2854, '0060937114'), - (2855, '0060183527'), - (2856, '081288518X'), - (2857, '038549565X'), - (2858, '0743201981'), - (2859, '0767908244'), - (2658, '0743203399'), - (2860, '0688158943'), - (274, '0140018328'), - (2861, '0515100072'), - (565, '0553579606'), - (2862, '0553282069'), - (1265, '0385177259'), - (2863, '0373201451'), - (2864, '0373201451'), - (2865, '0373201451'), - (131, '0061013439'), - (2866, '0553080237'), - (1628, '0679459596'), - (2867, '0393038173'), - (1116, '0553578901'), - (2868, '0446605786'), - (2869, '0609609068'), - (2870, '0500011931'), - (2871, '0531150259'), - (2872, '0805205454'), - (2873, '0425193896'), - (2689, '0345382846'), - (2874, '0312115067'), - (1804, '0345413938'), - (1983, '0345283945'), - (2875, '0060934239'), - (2423, '006099486X'), - (2876, '0306809893'), - (2877, '0060185430'), - (2878, '0060987383'), - (2879, '0306811596'), - (306, '0306811596'), - (2880, '0789410842'), - (2881, '068485080X'), - (2882, '0684841347'), - (2883, '1567310265'), - (2884, '1567310265'), - (2885, '044652087X'), - (2886, '044652087X'), - (2887, '0878911774'), - (2888, '0060176628'), - (142, '0670855030'), - (60, '0517064626'), - (60, '0684810387'), - (2889, '0931580439'), - (2890, '0931580439'), - (2891, '0931580439'), - (60, '0440183057'), - (2892, '0380709333'), - (136, '0671769200'), - (1281, '0884042642'), - (1576, '0671250671'), - (2893, '0553067966'), - (2894, '0440507294'), - (82, '0553212141'), - (2895, '0671602705'), - (2896, '0843946385'), - (2897, '0439978238'), - (244, '0743200985'), - (59, '0425118703'), - (2898, '9510236756'), - (2899, '0349100136'), - (2900, '0349100136'), - (2901, '0349100136'), - (2902, '2070367622'), - (2903, '0811802981'), - (403, '0486415910'), - (181, '0486415910'), - (485, '0380792737'), - (2904, '1877856916'), - (2905, '0571200435'), - (2906, '0446604763'), - (2907, '0446604763'), - (265, '0060516283'), - (2908, '1590210301'), - (2909, '1573245216'), - (1936, '1567313671'), - (2910, '1878424424'), - (241, '0553109839'), - (2911, '0316639842'), - (2912, '0140296409'), - (2913, '3442442354'), - (2302, '3442442354'), - (1562, '0451192613'), - (2914, '0451138481'), - (2915, '0670891576'), - (138, '0395264758'), - (955, '3442431875'), - (2916, '3442431875'), - (1493, '0140259112'), - (2917, '0439339170'), - (574, '0375401598'), - (1704, '0553106678'), - (534, '0684802988'), - (151, '0061000043'), - (397, '0312055145'), - (2918, '0312055145'), - (2919, '0060617225'), - (2706, '0060617225'), - (2920, '0060617225'), - (2921, '1558214291'), - (2922, '0349100373'), - (2923, '0340542667'), - (1265, '0380699176'), - (2924, '0380699176'), - (84, '0380699176'), - (788, '0151006725'), - (2925, '0525946241'), - (2926, '0394751043'), - (2927, '2070388425'), - (2926, '2070427110'), - (2928, '2221081722'), - (2929, '2070388905'), - (2928, '2070756319'), - (2930, '2253138916'), - (1227, '0553263579'), - (2931, '0441007015'), - (1699, '0553289411'), - (433, '0553258559'), - (2932, '0394717406'), - (2933, '0141300272'), - (2934, '0141300272'), - (2935, '9500418606'), - (2936, '0316588032'), - (2937, '0671892479'), - (2695, '0060011912'), - (1997, '044661064X'), - (2938, '0553211803'), - (2939, '1551666839'), - (1365, '0374526893'), - (2940, '1583940634'), - (2941, '0805060200'), - (2132, '0312872402'), - (2132, '0312872399'), - (2132, '0765342987'), - (2942, '0451456726'), - (2941, '0451456718'), - (2941, '0451456734'), - (2943, '0571154913'), - (2944, '0446530522'), - (1726, '0330327917'), - (2945, '0786004886'), - (2946, '0446674346'), - (2947, '0060092963'), - (2254, '0060517611'), - (2948, '0553802550'), - (2949, '0425192695'), - (2950, '0760704767'), - (2287, '0760704767'), - (397, '0671468464'), - (2951, '0440241286'), - (415, '002026478X'), - (2952, '0743407148'), - (1244, '0345447840'), - (2940, '0312977360'), - (2953, '0312992203'), - (2954, '0312089449'), - (2955, '096558383X'), - (2956, '096558383X'), - (2957, '096558383X'), - (2958, '0140094903'), - (901, '034541103X'), - (2959, '0345425286'), - (2960, '0688179053'), - (2961, '0451201507'), - (2962, '0380760975'), - (2963, '0553569791'), - (410, '038000772X'), - (536, '044661193X'), - (2964, '0446401617'), - (1164, '0345428196'), - (1704, '0553208799'), - (2965, '0821767747'), - (1498, '0446512923'), - (2966, '0060955406'), - (2967, '0380793059'), - (1176, '0440419468'), - (9, '0446359866'), - (889, '0446602612'), - (129, '0446612790'), - (737, '0446612790'), - (873, '0671676253'), - (2968, '0671676253'), - (129, '0446606383'), - (956, '0553213148'), - (1422, '0380725584'), - (1423, '0380725584'), - (2969, '0679401032'), - (2968, '0394580567'), - (2968, '0394571029'), - (337, '0440128994'), - (2970, '0590455761'), - (9, '0446365505'), - (397, '0671531409'), - (2026, '002542730X'), - (2968, '0804111898'), - (2971, '0802132154'), - (2972, '0025473905'), - (2973, '0025473905'), - (555, '0451203895'), - (1265, '0345309014'), - (1265, '0345308999'), - (1265, '0345309006'), - (2808, '0553272535'), - (2974, '0553272535'), - (2975, '0553272535'), - (913, '0445406488'), - (2976, '0451209710'), - (867, '0312865031'), - (2977, '089190672X'), - (2978, '0449219631'), - (905, '0425104052'), - (2979, '0425181464'), - (62, '0425181464'), - (2980, '0515090298'), - (2981, '0345438353'), - (2982, '0060298774'), - (247, '0449212858'), - (962, '0812505018'), - (405, '0671888021'), - (2983, '0671888021'), - (2984, '0451458125'), - (1318, '0553213377'), - (2985, '0553213377'), - (2986, '0142002054'), - (70, '067150987X'), - (1065, '0345347951'), - (92, '0425037827'), - (1452, '0553574353'), - (2987, '0553574353'), - (2988, '0553142046'), - (2989, '0786889527'), - (1041, '0441006345'), - (606, '0671721380'), - (2990, '0671721380'), - (2991, '0446356018'), - (1065, '0446356018'), - (2992, '067174139X'), - (433, '0399136487'), - (2993, '0671720139'), - (974, '039480001X'), - (1001, '0345273303'), - (2994, '0446365661'), - (2995, '0749930888'), - (1272, '0440201101'), - (952, '1857022424'), - (2996, '1561383619'), - (1002, '068484477X'), - (2997, '0393317552'), - (142, '0684853515'), - (142, '0375504397'), - (580, '0375504397'), - (239, '0452283205'), - (2998, '0374524912'), - (780, '0316779237'), - (2999, '0875427324'), - (24, '0385421982'), - (848, '0892962275'), - (3000, '0393040135'), - (138, '0679402470'), - (3001, '055344171X'), - (3002, '0733801862'), - (3003, '0733801862'), - (392, '0875421180'), - (1628, '055308013X'), - (56, '0460872125'), - (3004, '0460872125'), - (3005, '2020606291'), - (1265, '0345311965'), - (142, '0451139739'), - (188, '0553236202'), - (340, '038072975X'), - (3006, '1885167172'), - (3007, '0452261589'), - (3008, '0374230072'), - (1803, '014006690X'), - (3009, '0060975210'), - (3010, '0374521352'), - (3011, '0374521352'), - (3012, '0226424197'), - (3013, '0316085251'), - (3014, '0874771641'), - (1490, '0451185560'), - (3015, '1853260401'), - (3016, '0773760555'), - (1699, '0553250531'), - (1699, '0553148001'), - (3017, '1579542085'), - (433, '0671720414'), - (2307, '0671720414'), - (433, '0345275675'), - (3018, '024189865X'), - (3019, '0773671358'), - (3020, '0773671358'), - (3021, '0553284460'), - (24, '0440213525'), - (142, '0451188462'), - (187, '034525855X'), - (433, '0441135560'), - (3022, '3789131202'), - (3023, '0195103793'), - (3024, '0195103793'), - (3025, '0816303630'), - (3026, '0811807282'), - (1214, '0671019449'), - (3027, '0152105328'), - (3028, '0152105328'), - (3029, '0152105328'), - (2498, '0060283122'), - (1824, '0439136350'), - (1825, '0439136350'), - (1211, '0671028367'), - (3030, '0028642333'), - (3031, '0440235642'), - (3032, '0330486705'), - (3033, '0670881872'), - (543, '0440111811'), - (257, '0064400557'), - (3034, '0064400557'), - (258, '0064400557'), - (3035, '067166607X'), - (3036, '0312870582'), - (1616, '3423123222'), - (3037, '3453064038'), - (3038, '3404122631'), - (3039, '3596134153'), - (3040, '3596134153'), - (24, '3453061187'), - (3041, '3453061187'), - (3042, '3423107421'), - (3043, '3423107421'), - (3044, '3453161394'), - (3045, '3579007335'), - (3046, '3579007335'), - (3047, '3257229372'), - (3048, '3257229372'), - (3049, '3453088530'), - (3050, '3453088530'), - (3051, '3453088530'), - (410, '345305136X'), - (3052, '3257224974'), - (3053, '3257224974'), - (3054, '3404139674'), - (3055, '3404139674'), - (3056, '3442353793'), - (1145, '3442353793'), - (3057, '3596129397'), - (3058, '3548257623'), - (3059, '3746613531'), - (3058, '3746618169'), - (3060, '9972847012'), - (3061, '9582700319'), - (3062, '3257228031'), - (913, '3548248845'), - (3063, '3548248845'), - (1019, '3446178694'), - (1020, '3446178694'), - (3064, '3453198840'), - (3065, '3453198840'), - (2398, '3404147294'), - (3066, '3746619394'), - (2556, '3426619857'), - (3067, '3499233045'), - (3068, '3404142624'), - (3069, '051604642X'), - (3070, '0380803151'), - (3071, '0553568728'), - (1441, '0553297988'), - (3072, '0671654209'), - (3073, '0671654209'), - (3074, '0671654209'), - (1281, '0884046818'), - (3075, '0345289072'), - (3076, '0671720406'), - (2223, '0345379802'), - (3077, '0886778697'), - (2201, '0743435346'), - (3078, '0743435346'), - (3079, '0743435346'), - (1597, '0679448594'), - (92, '0345313577'), - (60, '0671867172'), - (2759, '0425189104'), - (3080, '0061030635'), - (236, '0446613436'), - (237, '0449006530'), - (131, '006109157X'), - (543, '0440221315'), - (128, '0553576011'), - (3081, '0451205294'), - (436, '0345444892'), - (236, '0446527785'), - (436, '0375500685'), - (3082, '0375503218'), - (3083, '0755310047'), - (3084, '0752851950'), - (3085, '0747257574'), - (3086, '056353723X'), - (3087, '185326041X'), - (1555, '0312272057'), - (2487, '0142003190'), - (3088, '042518336X'), - (2770, '0613329740'), - (1824, '0613325419'), - (3089, '0613325419'), - (268, '156389470X'), - (3090, '156389470X'), - (3091, '0439551234'), - (3092, '058253531X'), - (1507, '0836218353'), - (3093, '2842772032'), - (1507, '0836204387'), - (3094, '0345441435'), - (3095, '0812504755'), - (3096, '0836217225'), - (3097, '0030181011'), - (622, '0064407055'), - (1773, '0553262505'), - (3098, '0689710887'), - (3097, '0689710879'), - (3099, '0689710879'), - (3097, '0020427859'), - (598, '031286258X'), - (3095, '0836217616'), - (1160, '0316107018'), - (3076, '0886777828'), - (1075, '0441068804'), - (1075, '0141309814'), - (1089, '0679032983'), - (1866, '0679408835'), - (408, '0316096199'), - (1024, '0689829655'), - (438, '059045899X'), - (439, '059045899X'), - (3100, '0385238614'), - (3101, '0758201605'), - (3102, '1561384755'), - (3103, '1561384755'), - (3104, '1561384755'), - (3105, '1562820575'), - (3106, '1562820575'), - (3107, '185854176X'), - (3108, '185854176X'), - (3109, '0786830425'), - (3110, '0786830425'), - (259, '088101270X'), - (3111, '0881012718'), - (3112, '0881012718'), - (3113, '0312272782'), - (3114, '044022831X'), - (3115, '1590522265'), - (3116, '1551669307'), - (3117, '060980202X'), - (3118, '0698113950'), - (3119, '043944246X'), - (3120, '043944246X'), - (3121, '0060954884'), - (3122, '0743422961'), - (3123, '0525946780'), - (3124, '1558534172'), - (3125, '0609807919'), - (863, '0060532149'), - (3126, '081296683X'), - (3127, '188517182X'), - (3128, '0820319198'), - (3129, '0446520829'), - (2482, '0373250525'), - (3130, '0811802272'), - (3131, '0811802272'), - (3132, '1871512417'), - (3131, '1871512417'), - (713, '042515517X'), - (3133, '037322348X'), - (3134, '0393317382'), - (3135, '0375713751'), - (3136, '0312272766'), - (3137, '0446526479'), - (3138, '068985546X'), - (3137, '0689855451'), - (3139, '0140240209'), - (3140, '0764525662'), - (3141, '0679771492'), - (3142, '0130743038'), - (3143, '1856273296'), - (66, '0842343253'), - (65, '0842343253'), - (3144, '0201406462'), - (3145, '1895636337'), - (1159, '0140131566'), - (633, '0446521442'), - (3146, '0062515802'), - (3147, '0684859777'), - (3146, '0684859769'), - (3148, '0609807080'), - (3149, '1556522126'), - (543, '0440224845'), - (1600, '0671864173'), - (3150, '0060959428'), - (369, '0373079613'), - (60, '0440200989'), - (60, '0671568175'), - (1013, '0449221504'), - (128, '0446607193'), - (1092, '0671705091'), - (2254, '0505522675'), - (3151, '0515124656'), - (369, '0373484003'), - (532, '0451198506'), - (543, '0440223237'), - (974, '0679882820'), - (3152, '0399226907'), - (17, '1558747109'), - (18, '1558747109'), - (3153, '1558747109'), - (3154, '1558747109'), - (3155, '0786884142'), - (3156, '0767905385'), - (3157, '0767905385'), - (136, '0671793551'), - (3158, '0553574302'), - (3159, '0440211263'), - (1704, '0553260111'), - (3160, '0380775840'), - (974, '0394900014'), - (3161, '0894803123'), - (3162, '0894803123'), - (3163, '0894803123'), - (2246, '0440225892'), - (2246, '0440236371'), - (3164, '1551660261'), - (1196, '1551665638'), - (3165, '0553575007'), - (3164, '0553563343'), - (3166, '0943233941'), - (3167, '0694014532'), - (937, '0743411439'), - (1096, '0553347233'), - (3168, '0385152922'), - (3169, '0767900383'), - (3170, '0786889055'), - (2035, '0440212626'), - (3171, '0553265415'), - (3172, '0553265415'), - (3173, '0449131793'), - (2593, '0380804697'), - (346, '0425178951'), - (3174, '038548562X'), - (3175, '038548562X'), - (244, '0684865742'), - (644, '0385313632'), - (3176, '0866119892'), - (3177, '0866119892'), - (3178, '0505523442'), - (230, '0380772469'), - (230, '0380899361'), - (1196, '0671728571'), - (3179, '067146969X'), - (3180, '0446392308'), - (3181, '0586207228'), - (3182, '0821762559'), - (3183, '0553275399'), - (1754, '0671034006'), - (145, '0425116840'), - (3184, '0882893327'), - (913, '0380817152'), - (1891, '0345302907'), - (3185, '0340565829'), - (145, '0425191184'), - (3186, '0872169014'), - (1198, '0399142991'), - (1507, '0836218221'), - (798, '067988288X'), - (2239, '0590251597'), - (3187, '0679885307'), - (2239, '0590251589'), - (2239, '0590227637'), - (3188, '0806903481'), - (2239, '0590224735'), - (274, '0141301074'), - (3189, '0671016792'), - (3190, '0448409313'), - (142, '0452278902'), - (142, '074343627X'), - (61, '039914465X'), - (17, '1558747699'), - (18, '1558747699'), - (3191, '1558747699'), - (142, '067102423X'), - (3192, '1891620487'), - (3193, '1891620487'), - (3194, '0060009225'), - (3193, '0380820870'), - (3193, '0380797399'), - (3195, '0060198524'), - (574, '0345334531'), - (3196, '0515103993'), - (3197, '1550130994'), - (3198, '0316316962'), - (3199, '0062506080'), - (3200, '0142001007'), - (1947, '0060920432'), - (3201, '0786884061'), - (3202, '0691005419'), - (1573, '0060505265'), - (3203, '0864427433'), - (3204, '0864427433'), - (3205, '0864424574'), - (3206, '0813812860'), - (3207, '0842372180'), - (3208, '0842372180'), - (3209, '0842372180'), - (142, '0399143947'), - (3210, '0066211085'), - (3211, '042517476X'), - (1625, '0440237262'), - (3212, '0380713330'), - (3213, '0195002237'), - (3214, '0195002237'), - (3215, '0195002237'), - (1505, '014004387X'), - (1519, '0895772620'), - (3216, '0895772620'), - (3166, '0517618141'), - (3217, '0192833871'), - (3218, '0192833871'), - (3219, '0192833871'), - (882, '0393960579'), - (3220, '0393960579'), - (82, '1551113074'), - (3221, '1551113074'), - (270, '0486264785'), - (1401, '0060809833'), - (1891, '0441172660'), - (3222, '0156711427'), - (1073, '0553206516'), - (285, '0553550039'), - (1213, '0345390458'), - (265, '0061091871'), - (2011, '0425090787'), - (3223, '1929317999'), - (3224, '0553268880'), - (3225, '0385008910'), - (1301, '0688042872'), - (3226, '0671027107'), - (346, '0399145869'), - (1005, '0375405429'), - (668, '0446521582'), - (356, '0151002630'), - (129, '0316666009'), - (3227, '0316890197'), - (2958, '0446675253'), - (3228, '0345451325'), - (1209, '0330284142'), - (176, '0345391810'), - (403, '0140620524'), - (1577, '0312186118'), - (1196, '0671516922'), - (3229, '1586607251'), - (3230, '0671015206'), - (3231, '0671015206'), - (3232, '0440216540'), - (436, '0449209598'), - (3233, '0140062599'), - (3234, '0582349168'), - (3235, '0140041079'), - (3236, '0140400117'), - (3237, '0140400117'), - (56, '0192815466'), - (3238, '0192815466'), - (85, '0140431357'), - (3239, '0140431357'), - (3240, '0140431357'), - (3241, '1575664054'), - (3240, '0451209117'), - (3240, '0743236777'), - (3242, '037348481X'), - (3243, '037348481X'), - (3244, '037348481X'), - (3245, '0553208314'), - (236, '0446611867'), - (279, '0385336179'), - (3246, '0972380698'), - (3247, '0972380698'), - (3248, '155054439X'), - (3249, '060980619X'), - (843, '0440900794'), - (3250, '0553560662'), - (369, '0373483880'), - (373, '0061042005'), - (415, '0425046117'), - (1706, '0156619180'), - (59, '0553582755'), - (3251, '0486282694'), - (181, '0486282694'), - (3252, '006101091X'), - (3253, '006101091X'), - (3254, '0452268060'), - (403, '0439099404'), - (1298, '0525405224'), - (465, '0671759213'), - (152, '044651652X'), - (407, '0312050631'), - (283, '0452254264'), - (2249, '0380786052'), - (128, '0446364282'), - (3255, '0385337272'), - (3256, '0140291903'), - (3257, '0142002267'), - (3258, '0671640925'), - (1179, '0425099644'), - (3259, '0960809600'), - (3260, '0439368030'), - (3261, '0439368030'), - (3262, '0785272984'), - (3263, '0060520221'), - (3264, '0590443518'), - (1024, '0440409942'), - (3265, '0590438069'), - (1422, '0380720132'), - (229, '0380720132'), - (3266, '1841952974'), - (3267, '1841952974'), - (3268, '0440967848'), - (65, '0842329277'), - (66, '0842329277'), - (66, '0842343296'), - (65, '0842343296'), - (1375, '0440439884'), - (66, '0842343288'), - (65, '0842343288'), - (3269, '0842343288'), - (1176, '0590424165'), - (257, '059030271X'), - (258, '059030271X'), - (732, '0345339738'), - (1024, '0440413761'), - (1428, '0590461001'), - (3270, '0688149588'), - (66, '0842343261'), - (65, '0842343261'), - (3268, '0842343261'), - (66, '084234327X'), - (65, '084234327X'), - (3268, '084234327X'), - (3271, '0395280060'), - (319, '0590451146'), - (3267, '0064407314'), - (3272, '0816707979'), - (3273, '034541036X'), - (991, '0517187760'), - (129, '0446679593'), - (81, '0679441557'), - (1936, '1567315658'), - (1597, '0849916518'), - (3274, '1565120310'), - (3275, '156512104X'), - (3276, '0446690295'), - (3277, '0446690295'), - (606, '0886774268'), - (606, '0886773520'), - (606, '0886774012'), - (3278, '1892065169'), - (3279, '0609808346'), - (3280, '0609808346'), - (26, '0609808346'), - (3281, '0307157857'), - (1505, '0141186151'), - (1787, '0141186151'), - (3282, '0451121902'), - (1553, '0679417796'), - (3283, '0684833662'), - (814, '1573225517'), - (3284, '0449909336'), - (3285, '1550548913'), - (3286, '1550548913'), - (3287, '0679311386'), - (427, '039396647X'), - (3288, '039396647X'), - (3289, '039396647X'), - (3290, '039396647X'), - (268, '0380973650'), - (3291, '0375414487'), - (3197, '0316346624'), - (3292, '0802130208'), - (3293, '0802130208'), - (3294, '0312988990'), - (3295, '0842373195'), - (3296, '0842373195'), - (3297, '0043510744'), - (3298, '0340821191'), - (3299, '0333906306'), - (3300, '0156004992'), - (1706, '0156628708'), - (2559, '0752844059'), - (644, '0440208459'), - (2559, '0752848224'), - (2559, '075285111X'), - (247, '0449208672'), - (1091, '0060808241'), - (346, '0380725835'), - (2287, '0751514012'), - (3301, '0751511056'), - (2287, '0751511056'), - (3302, '186941358X'), - (3303, '0886775876'), - (3304, '0451458680'), - (54, '0060199652'), - (1628, '034541389X'), - (3305, '0684871580'), - (3306, '0684871580'), - (3307, '0684871580'), - (2000, '0738203548'), - (3308, '0805033203'), - (1715, '0316284955'), - (78, '0801855926'), - (3309, '156352600X'), - (3310, '0679427651'), - (2748, '0345412214'), - (2748, '0345441702'), - (142, '0451147367'), - (3311, '0451147367'), - (3312, '0595168442'), - (3313, '044041668X'), - (2513, '0451170539'), - (351, '0375501371'), - (2981, '006447335X'), - (571, '0316155101'), - (1555, '0312283709'), - (250, '0060987529'), - (1726, '0312951426'), - (1726, '0312953615'), - (2825, '0671567829'), - (3314, '0670820555'), - (1001, '0553270931'), - (3315, '0449241114'), - (3316, '0394561236'), - (1403, '0375703764'), - (1876, '0553092626'), - (3317, '0812545133'), - (3318, '0812545133'), - (175, '0446523321'), - (2182, '0441004164'), - (3319, '0066620996'), - (3320, '0553277472'), - (3321, '0385494602'), - (1558, '0345433106'), - (3322, '0345443020'), - (244, '068487217X'), - (758, '0684853159'), - (3323, '1573228281'), - (1784, '0446608262'), - (3324, '0385503970'), - (3325, '0316120324'), - (490, '0440214432'), - (1939, '0440225779'), - (3326, '0385501676'), - (1209, '3446180850'), - (2176, '3446180850'), - (3327, '0312242735'), - (3328, '0440935741'), - (268, '0380804557'), - (1259, '3257229739'), - (3329, '3257229739'), - (24, '0099245027'), - (3330, '0970880812'), - (3331, '0595256775'), - (3332, '0741412780'), - (3333, '0684855380'), - (3334, '0525946233'), - (3335, '0399513000'), - (3336, '0399513000'), - (81, '0425161617'), - (3337, '0140149295'), - (1634, '0553565028'), - (3338, '0375410848'), - (3339, '0505520680'), - (3340, '0505520680'), - (919, '0373710348'), - (3341, '0451115457'), - (800, '0373079710'), - (281, '0861782356'), - (3342, '0515097039'), - (554, '0553560247'), - (3343, '0836135474'), - (3344, '0836135474'), - (3345, '0312974221'), - (330, '0345416600'), - (3346, '0684856476'), - (3347, '0800757734'), - (2029, '0887309100'), - (270, '1593080255'), - (3348, '1593080255'), - (723, '1400041988'), - (3349, '0151010633'), - (2453, '9504604730'), - (3350, '0802714358'), - (3351, '0802714358'), - (285, '9500720418'), - (2787, '950491036X'), - (3352, '0340697083'), - (3353, '2742739351'), - (3354, '2742739351'), - (3355, '2742739351'), - (3356, '0671008668'), - (213, '9509009059'), - (3357, '0312154542'), - (3358, '0312154542'), - (746, '0064408639'), - (747, '0064408639'), - (2498, '0064408639'), - (3359, '0954290100'), - (241, '0553295772'), - (3360, '0312858957'), - (92, '0345330129'), - (3361, '0743410246'), - (3362, '0743445643'), - (3363, '0743445643'), - (3364, '0743445627'), - (3365, '0743445600'), - (873, '0812575717'), - (1870, '0812575717'), - (3366, '0812575717'), - (1816, '0671026356'), - (1815, '0743427602'), - (1815, '0671039288'), - (3367, '0671026364'), - (2542, '0671526103'), - (3368, '0671526103'), - (3369, '0671526103'), - (2542, '0671021257'), - (3367, '0671021257'), - (3368, '0671021257'), - (2542, '067100882X'), - (3370, '067100882X'), - (3371, '067100882X'), - (2542, '0671008781'), - (3367, '0671008781'), - (3368, '0671008781'), - (3372, '2253007900'), - (3373, '2253007900'), - (2805, '0671874349'), - (1666, '0394838475'), - (3374, '0394838475'), - (3375, '0743439775'), - (3376, '1567311199'), - (2239, '0590482378'), - (2239, '0590482238'), - (3377, '0451179706'), - (536, '0449219410'), - (2583, '0446609781'), - (536, '0679454446'), - (369, '051512608X'), - (3378, '0373262329'), - (115, '0451124383'), - (3379, '1565122208'), - (109, '0312978332'), - (3380, '0345294459'), - (280, '0451408888'), - (1339, '0671524968'), - (3381, '0515115487'), - (3382, '1563841134'), - (490, '0060008776'), - (554, '0553574671'), - (1137, '0061057819'), - (3383, '0761513779'), - (3384, '1565078241'), - (3385, '0449908119'), - (1726, '0312956126'), - (231, '0385334729'), - (3386, '0805044698'), - (3387, '075050059X'), - (3388, '0140165525'), - (2487, '3257231393'), - (3389, '3257231393'), - (2029, '3453149874'), - (3390, '9681500601'), - (669, '067088300X'), - (1258, '0786869216'), - (734, '0670878103'), - (3391, '0446528382'), - (3392, '0446528382'), - (3393, '0943233437'), - (3394, '0943233437'), - (3165, '0943233437'), - (3395, '0375727345'), - (1024, '0156001454'), - (3396, '3440066738'), - (175, '0446608890'), - (2525, '0061059137'), - (3397, '0061059137'), - (3264, '059044316X'), - (3398, '0316781460'), - (3399, '0316781460'), - (346, '0425188787'), - (585, '0345382323'), - (1432, '0312983298'), - (3400, '0312983298'), - (3401, '0553270249'), - (3169, '0553275852'), - (501, '0440201330'), - (3402, '0449147398'), - (3403, '0747546215'), - (280, '0006513409'), - (641, '0312980345'), - (1092, '0743437640'), - (3115, '1551668912'), - (3404, '0688009387'), - (234, '0380017601'), - (3405, '0671024418'), - (3404, '067102440X'), - (3404, '0671024426'), - (3404, '0671024396'), - (2095, '0140346848'), - (357, '0140346848'), - (2095, '0140346031'), - (3406, '0140346031'), - (2095, '0613286626'), - (357, '0613286626'), - (3407, '0553568051'), - (145, '042515601X'), - (876, '042515601X'), - (3408, '042515601X'), - (3409, '0333782259'), - (3410, '0333782259'), - (3411, '0333782259'), - (52, '0435120964'), - (814, '0140293442'), - (3412, '0571097103'), - (3413, '0140293469'), - (3414, '0920668372'), - (3415, '0920668372'), - (1011, '0375703861'), - (3416, '0060391537'), - (715, '0156011042'), - (1060, '0812566637'), - (250, '0060391448'), - (1002, '0684829975'), - (142, '0451099648'), - (3417, '0671776975'), - (3418, '0440967694'), - (3419, '0060801115'), - (213, '0553149660'), - (462, '0425152251'), - (410, '0312924585'), - (2293, '0684718634'), - (3420, '0385479565'), - (3421, '0876056354'), - (3422, '0375714383'), - (3423, '0375714383'), - (973, '0441718213'), - (3424, '0385499094'), - (3425, '0385499094'), - (3426, '0743421574'), - (1232, '0140132708'), - (3427, '0312309295'), - (2544, '0671578103'), - (2326, '0756401364'), - (2326, '0886779758'), - (3428, '1931561230'), - (3429, '0807085464'), - (3430, '0807085464'), - (54, '0060504072'), - (176, '0345460952'), - (3431, '0312274920'), - (3432, '0007134495'), - (3327, '0440408903'), - (973, '038081658X'), - (973, '0380791978'), - (3433, '0345397800'), - (574, '0345409671'), - (3434, '0441007392'), - (3433, '0441006329'), - (973, '0380791986'), - (867, '0886771544'), - (3435, '0312974485'), - (3434, '0312979584'), - (1776, '0553380958'), - (3436, '0756400805'), - (3435, '0886779014'), - (3437, '0886779014'), - (3435, '0886776880'), - (3438, '0886776880'), - (3435, '0886775744'), - (3437, '0886775744'), - (732, '0395272238'), - (3439, '0380819007'), - (3438, '0380731800'), - (3440, '0142300608'), - (3441, '087951602X'), - (3442, '042518627X'), - (3438, '0380731797'), - (3443, '0970851715'), - (3444, '1557504644'), - (504, '081120958X'), - (3445, '081120958X'), - (3446, '0534525075'), - (3447, '0534525075'), - (2267, '0553583891'), - (3448, '0684849739'), - (3247, '0312171838'), - (3449, '0688175716'), - (3450, '0743467604'), - (1112, '0671042505'), - (3451, '0743205413'), - (2689, '0399147853'), - (3452, '0425162443'), - (3453, '0966482018'), - (1484, '1400060052'), - (3454, '0451181409'), - (3455, '0060505559'), - (3456, '0312104472'), - (1837, '1551667533'), - (3457, '0425183238'), - (3458, '0425183238'), - (458, '0553802240'), - (3115, '0373711646'), - (3459, '0345423291'), - (369, '0515132020'), - (3460, '0684864363'), - (369, '0515131229'), - (3461, '0451192974'), - (3462, '0451192974'), - (3463, '0446679364'), - (3464, '0345445732'), - (3465, '0553581430'), - (3466, '0451410157'), - (3467, '0373441320'), - (3468, '0373441320'), - (1497, '1551662906'), - (3469, '0373834748'), - (3470, '0373834748'), - (3471, '0373834748'), - (3472, '0843943319'), - (3473, '1570613818'), - (3474, '0743228022'), - (154, '0385494149'), - (460, '0312199368'), - (3475, '0312199430'), - (873, '1570089957'), - (3476, '0452282101'), - (3477, '0060193689'), - (3478, '048627263X'), - (3479, '0486270610'), - (3480, '0486270610'), - (1726, '0330330373'), - (3074, '0671318403'), - (3036, '0743440358'), - (220, '0571135390'), - (3481, '0571135390'), - (3482, '1557250219'), - (3483, '0451183746'), - (3484, '0316134317'), - (3485, '0316134317'), - (3486, '0789467747'), - (3487, '0789467747'), - (3488, '0789467747'), - (3489, '0071408398'), - (3490, '038079487X'), - (244, '0684872153'), - (614, '0684872153'), - (3491, '0060926317'), - (3492, '0961937904'), - (3493, '0961937904'), - (3494, '0140179755'), - (3495, '0571152813'), - (3496, '0140622500'), - (3497, '9038802986'), - (94, '0007101953'), - (1982, '1857238982'), - (3498, '380062236X'), - (211, '0312421273'), - (536, '0679454454'), - (714, '0743480562'), - (3499, '0312986211'), - (3500, '0778320294'), - (2747, '0425196453'), - (3501, '1575668572'), - (3502, '0821776126'), - (3503, '0821773429'), - (3504, '0060555882'), - (2276, '0380811081'), - (3505, '0373250592'), - (369, '0373285043'), - (346, '0399147020'), - (3506, '0062512668'), - (3507, '0062512668'), - (3508, '0440241162'), - (3509, '0439233844'), - (3510, '0785917136'), - (3511, '1930353006'), - (3512, '0874831121'), - (3511, '0874831121'), - (3513, '0874831121'), - (1258, '0786866586'), - (3514, '0140254749'), - (3515, '3250600520'), - (3516, '3446190295'), - (3517, '3250102342'), - (215, '342310001X'), - (3518, '3406426530'), - (3519, '3354005092'), - (3520, '3354005092'), - (3514, '3250300020'), - (3521, '3608958703'), - (822, '0061092029'), - (3522, '3718501473'), - (1704, '3453017978'), - (2188, '3492230466'), - (208, '3492045170'), - (3523, '3492045170'), - (209, '3492045170'), - (3524, '3492045170'), - (3525, '0072521309'), - (3526, '0072521309'), - (3527, '0072521309'), - (1191, '0679756973'), - (3528, '0517886685'), - (3529, '1570625190'), - (3530, '0670866563'), - (3531, '0375405046'), - (3532, '0316845442'), - (3533, '0140291725'), - (3534, '0029023106'), - (3535, '0802134254'), - (3536, '0688156819'), - (3537, '0762403004'), - (3538, '0140250840'), - (3539, '0679723226'), - (3540, '0679722645'), - (3541, '0380732181'), - (3542, '0156007754'), - (3543, '0156007754'), - (3544, '0553371010'), - (3545, '0553371010'), - (3546, '0553371010'), - (2805, '031205436X'), - (2912, '1573226521'), - (3547, '0671027638'), - (3548, '0385497091'), - (814, '1573226882'), - (814, '1573228214'), - (135, '0316780812'), - (3458, '0515119784'), - (3549, '0736909672'), - (3550, '0786011963'), - (3551, '0811825558'), - (3552, '0141390972'), - (3553, '0062736302'), - (3554, '0062736302'), - (3555, '0071352430'), - (3556, '0071352430'), - (3557, '0671798553'), - (3558, '0060953497'), - (3559, '0060953497'), - (3560, '0306810646'), - (3561, '0393318923'), - (3562, '1882114981'), - (3563, '1882114981'), - (3564, '1882114981'), - (3565, '1882114981'), - (3566, '0471415804'), - (3567, '0471415804'), - (3568, '0471415804'), - (3569, '0380788691'), - (1537, '0515134449'), - (3570, '0596000987'), - (3571, '0134843460'), - (746, '0064407675'), - (3572, '0767902890'), - (3573, '0812213122'), - (3574, '0879238615'), - (3575, '0879238615'), - (3576, '0618134786'), - (3577, '0618134786'), - (1094, '0312135653'), - (3562, '0375726446'), - (3578, '037575895X'), - (2542, '0061092355'), - (3579, '0061092355'), - (3580, '0060934727'), - (3581, '0375403671'), - (1759, '0670888214'), - (268, '0380977788'), - (3582, '0380977788'), - (1537, '0441304834'), - (3583, '0375421726'), - (3584, '0609805002'), - (3585, '1891053426'), - (3586, '0393049272'), - (3587, '0140099182'), - (3588, '0385319932'), - (3589, '0684853205'), - (3590, '0609802437'), - (3591, '0765347415'), - (3592, '0425071081'), - (3593, '0393956571'), - (3594, '0393956571'), - (3595, '0393956571'), - (3596, '0805324305'), - (3597, '2710305089'), - (3598, '2070368378'), - (3599, '3462025376'), - (132, '0553571818'), - (92, '0441790348'), - (3359, '0812550390'), - (2331, '2877141519'), - (403, '0965881199'), - (3600, '0965881199'), - (3601, '0965881199'), - (403, '1573928275'), - (3602, '014011906X'), - (3603, '0920109020'), - (3604, '0920109020'), - (3605, '0345377494'), - (3606, '0590960369'), - (3607, '0152009604'), - (1987, '0393038025'), - (3608, '0771014929'), - (2423, '0060931809'), - (3609, '1566199697'), - (1597, '0451527496'), - (3545, '0451527496'), - (1597, '0451525426'), - (3545, '0451525426'), - (3610, '0451525426'), - (3611, '0553573403'), - (3610, '0553579908'), - (3610, '055357342X'), - (3612, '0440211158'), - (3613, '1885211279'), - (3490, '2290044067'), - (3614, '2290044067'), - (3615, '0821739514'), - (3616, '0553280147'), - (3617, '0821730894'), - (3618, '0553245716'), - (39, '0345391055'), - (1851, '0553243055'), - (906, '0312979479'), - (3619, '0375760911'), - (3620, '0449244679'), - (76, '0671681036'), - (952, '068480087X'), - (2913, '0743407067'), - (1615, '0515131083'), - (3621, '1585420654'), - (3622, '1587430665'), - (3623, '1587430665'), - (3624, '0684843110'), - (3625, '0684843110'), - (1755, '0684843110'), - (3626, '156955028X'), - (3627, '156955028X'), - (3628, '156955028X'), - (3629, '0446679763'), - (3630, '0446679763'), - (3631, '0867162791'), - (3632, '0867162791'), - (3633, '0452274664'), - (3634, '0064403645'), - (3635, '0064403645'), - (1560, '1400032806'), - (3636, '0140262776'), - (3637, '0385317042'), - (3638, '0393029875'), - (3639, '0743243315'), - (2913, '0743407059'), - (3458, '1400061598'), - (3640, '0452283280'), - (2913, '0743407083'), - (236, '0446532444'), - (3641, '0446532444'), - (3642, '0446533041'), - (3643, '0375413278'), - (3644, '1892738341'), - (63, '0743483014'), - (1337, '0743483014'), - (3645, '0743483014'), - (3646, '0393029603'), - (3647, '0312093004'), - (3648, '0451184149'), - (3649, '0380005239'), - (1394, '0380005239'), - (3650, '0231121008'), - (3651, '0231121008'), - (3652, '0064401774'), - (3653, '0064401774'), - (3654, '0380732238'), - (3655, '1571740562'), - (3654, '0399142789'), - (1046, '0375406530'), - (1542, '006000438X'), - (501, '0679411267'), - (374, '0375412557'), - (3656, '0312169868'), - (211, '0374129983'), - (3657, '067003178X'), - (3658, '0688176992'), - (3659, '0688176992'), - (3660, '0312032978'), - (149, '0394561619'), - (1322, '0394561619'), - (3661, '0786866470'), - (3458, '0385318782'), - (3662, '1879941201'), - (545, '0060920076'), - (3458, '0679437452'), - (677, '1931561648'), - (150, '0060517794'), - (3663, '0553296124'), - (93, '0345413350'), - (363, '0380701340'), - (3664, '0373260474'), - (3665, '1588515281'), - (938, '0679450041'), - (3666, '0241130522'), - (3667, '0413722309'), - (3666, '0413725405'), - (3668, '1853830852'), - (3669, '0859533565'), - (206, '0413624501'), - (3670, '1857141296'), - (3671, '0745321992'), - (3102, '0140350748'), - (3672, '1853912352'), - (3673, '0201050714'), - (3674, '0802116175'), - (1665, '0140185011'), - (3675, '0140298363'), - (115, '0451146425'), - (3676, '0877738513'), - (3677, '0877738513'), - (3678, '0380817446'), - (3679, '0440862809'), - (3680, '0571197272'), - (49, '0345300203'), - (3681, '0451167309'), - (1366, '0440154731'), - (1704, '0553579835'), - (3172, '0449224775'), - (176, '0345379330'), - (3682, '1576737330'), - (827, '0590371258'), - (3683, '1573227226'), - (3684, '0670871753'), - (1209, '0151446474'), - (142, '0670813028'), - (3685, '0810922975'), - (3686, '0761520937'), - (3687, '0785281754'), - (3688, '0785281754'), - (3689, '0345405730'), - (1600, '0451197410'), - (3382, '0761522557'), - (135, '0316601950'), - (131, '0399151516'), - (3690, '0399151435'), - (890, '0451210220'), - (3689, '0399148515'), - (2393, '0886777771'), - (913, '0445406518'), - (3691, '0671697978'), - (3692, '0671697978'), - (187, '0441317480'), - (3693, '0345405625'), - (3692, '0345406141'), - (3694, '0061006629'), - (1041, '0553563696'), - (1042, '0553563696'), - (3695, '0345431618'), - (1041, '0553567713'), - (1042, '0553567713'), - (1041, '0553286390'), - (1042, '0553286390'), - (1396, '0345301293'), - (3692, '0345382412'), - (3692, '0345389972'), - (3692, '0345402219'), - (3692, '0345405501'), - (3690, '0671654349'), - (3691, '0671654349'), - (3696, '0671832174'), - (1396, '0881845531'), - (873, '076534128X'), - (187, '0441662382'), - (3692, '0345384687'), - (3697, '0345353749'), - (3698, '1586481843'), - (1396, '088184389X'), - (1188, '0460872583'), - (3699, '0460872583'), - (1366, '0385333498'), - (1396, '0425043231'), - (187, '0345313151'), - (795, '0345314255'), - (187, '0345305183'), - (3694, '0380004933'), - (142, '0451132343'), - (187, '0345279255'), - (142, '0451131312'), - (187, '0345272846'), - (3700, '0786884460'), - (635, '0061031429'), - (208, '0060977337'), - (208, '0446693790'), - (3701, '0553380168'), - (3702, '0140285008'), - (3703, '067104155X'), - (208, '006098726X'), - (1986, '068483569X'), - (3704, '068483569X'), - (3705, '0380701006'), - (1464, '0671504398'), - (283, '0451522303'), - (3706, '0441005152'), - (1109, '3518366750'), - (3707, '3518366750'), - (3708, '3453172337'), - (3709, '3453172337'), - (3710, '3453172337'), - (936, '3404136012'), - (936, '3453131169'), - (936, '3453092007'), - (59, '0553582925'), - (1527, '0441008763'), - (1629, '0812545249'), - (3711, '0446606715'), - (2188, '0553572423'), - (3712, '0373320132'), - (3713, '0803728492'), - (413, '0525941673'), - (3078, '0812522400'), - (3714, '0553102044'), - (3715, '156718359X'), - (397, '0671722948'), - (3716, '0140191550'), - (3717, '0140009930'), - (3718, '014027944X'), - (823, '0140051627'), - (3719, '0713910372'), - (3720, '0713910372'), - (3721, '0140510494'), - (3722, '0140510028'), - (3723, '0140510028'), - (3724, '0140442073'), - (3725, '0140442073'), - (3726, '0575075546'), - (3727, '0091816874'), - (3696, '0330020706'), - (3728, '0851123554'), - (3729, '0851123554'), - (3730, '0743220633'), - (3731, '1903402913'), - (3732, '1856053318'), - (3733, '0752521454'), - (3734, '0696204800'), - (3735, '0696204800'), - (3736, '0696204800'), - (3737, '027300235X'), - (3738, '0877540950'), - (3739, '0751514853'), - (3053, '3404143205'), - (24, '345386980X'), - (1370, '345386980X'), - (3740, '345386980X'), - (3741, '3629002013'), - (3742, '3629002013'), - (3743, '3629002013'), - (3744, '0877147728'), - (3745, '0674955218'), - (1353, '0452283930'), - (1827, '0553382225'), - (814, '1573227331'), - (3746, '0679767959'), - (397, '0451526767'), - (3747, '0596001932'), - (3748, '0596001932'), - (3749, '156592861X'), - (3746, '1565926730'), - (81, '080411918X'), - (3750, '0060171405'), - (3751, '0553293176'), - (3752, '0316812471'), - (1010, '0440222915'), - (108, '1551668653'), - (3753, '038079960X'), - (583, '0440237300'), - (3754, '0373292945'), - (3755, '1568842406'), - (571, '0399133186'), - (39, '0066214122'), - (3756, '0684803135'), - (3757, '0451404300'), - (3758, '0312192339'), - (3759, '0060802162'), - (3760, '0394744322'), - (1207, '0375507523'), - (3761, '0375507523'), - (3762, '0140266909'), - (3763, '0140266909'), - (2029, '0836221192'), - (3764, '0446386405'), - (3765, '0446386405'), - (3766, '0688088007'), - (3767, '0140444203'), - (3768, '0140444203'), - (3315, '1878825003'), - (3769, '0070037485'), - (648, '3499102277'), - (3770, '3499102277'), - (3771, '0872203948'), - (3772, '0872203948'), - (306, '0385721404'), - (1303, '0375410597'), - (2185, '0440125081'), - (1597, '0446604275'), - (3773, '0446604275'), - (3774, '0671501747'), - (3775, '0805040900'), - (3776, '0465006930'), - (3777, '0670804541'), - (1207, '0679741836'), - (3283, '068810391X'), - (3778, '0849912903'), - (1265, '034531798X'), - (3779, '0812968379'), - (3780, '0312961294'), - (556, '034545071X'), - (3781, '0451188470'), - (3782, '006019541X'), - (1319, '0446527696'), - (3783, '0446609749'), - (463, '0375502238'), - (3779, '0440202043'), - (795, '0345285557'), - (3784, '0821723243'), - (3785, '0312156499'), - (3786, '0938077112'), - (3787, '0938077112'), - (2940, '0312975228'), - (3788, '0590452037'), - (39, '0451183665'), - (3789, '0451183665'), - (3790, '0061097268'), - (3791, '0553111531'), - (3792, '0439137411'), - (3793, '0312155859'), - (2593, '0380758377'), - (1739, '0345441761'), - (61, '0399150897'), - (3794, '0449911160'), - (3795, '0671868640'), - (377, '0553247379'), - (3796, '0553247379'), - (1091, '0061043508'), - (3797, '0811828964'), - (3798, '0811828964'), - (1626, '0671624342'), - (3799, '0786890169'), - (3800, '074322535X'), - (534, '0399148728'), - (3801, '0399148728'), - (3802, '0071349294'), - (3803, '0071349294'), - (187, '0312869061'), - (3804, '0812968212'), - (1704, '0312264372'), - (2626, '0312264372'), - (1211, '0684841185'), - (3805, '0749005491'), - (3803, '0679463070'), - (3806, '0399146865'), - (3807, '0312873085'), - (3808, '0875964249'), - (3809, '0875964249'), - (3810, '0875964249'), - (3811, '0028625757'), - (337, '0399146687'), - (3464, '055380099X'), - (129, '0316693286'), - (2095, '0670861944'), - (357, '0670861944'), - (2041, '0399146237'), - (3812, '0684842106'), - (3813, '0439164842'), - (3814, '0060174056'), - (369, '0373484887'), - (107, '0099521016'), - (3815, '0750005815'), - (3814, '075001203X'), - (3816, '0330261878'), - (3817, '0140302395'), - (1337, '0060086246'), - (2028, '0451180429'), - (3818, '0373250126'), - (3819, '0060723890'), - (3820, '0373250193'), - (3821, '0758204930'), - (3822, '0451410947'), - (3823, '038550926X'), - (3824, '0061010707'), - (3825, '3462031112'), - (1191, '3499187809'), - (3826, '3499187809'), - (3827, '3446203966'), - (3828, '3446203966'), - (3829, '3442727367'), - (3830, '3216303217'), - (1876, '3442444020'), - (1921, '3442444020'), - (2487, '3257229364'), - (3831, '349961118X'), - (3832, '3795116074'), - (3833, '3795116074'), - (3834, '3499232103'), - (3835, '3499232103'), - (364, '0552998001'), - (658, '3499114178'), - (3836, '3499114178'), - (1726, '3442439736'), - (46, '3442350484'), - (3837, '3442350484'), - (60, '0671004530'), - (3838, '3421056056'), - (3839, '3442720141'), - (3840, '325722575X'), - (2913, '3442413338'), - (1921, '3442413338'), - (3779, '3499129728'), - (3841, '3499129728'), - (61, '3442435366'), - (45, '3442435366'), - (61, '3442441382'), - (3842, '3442441382'), - (3843, '3499613638'), - (578, '3499134411'), - (3844, '3257224303'), - (814, '3462025864'), - (3845, '3462025864'), - (3846, '0811811654'), - (3845, '0811811654'), - (3847, '0811811654'), - (3848, '0811811654'), - (231, '0440226414'), - (3849, '0060233532'), - (54, '0060959037'), - (1164, '055327886X'), - (1013, '0805036377'), - (552, '0688156134'), - (3850, '0374232415'), - (180, '014028009X'), - (3851, '0060697024'), - (3852, '0060697024'), - (3853, '0140254587'), - (1271, '0375708278'), - (3854, '3442541034'), - (3855, '0340581239'), - (337, '0425187063'), - (578, '2264032200'), - (3856, '2070407675'), - (60, '2253171395'), - (3857, '2070408507'), - (3858, '2253054747'), - (3859, '0002258579'), - (1210, '0446361305'), - (3860, '3775713328'), - (3216, '0451524063'), - (3861, '0451524063'), - (3860, '0451524063'), - (3862, '0451411285'), - (3863, '0743246349'), - (3864, '031286504X'), - (3865, '1928556396'), - (3866, '0517676044'), - (3867, '1562054376'), - (3868, '1562054376'), - (3869, '0735700737'), - (3870, '0028604032'), - (2729, '0028604032'), - (2706, '1573220256'), - (142, '034547063X'), - (580, '034547063X'), - (3871, '0425181480'), - (3872, '0405054610'), - (3873, '0405054610'), - (3874, '0405054610'), - (3875, '0312280769'), - (3876, '1585673390'), - (2326, '0886778964'), - (3877, '3596154766'), - (3878, '1561631469'), - (3879, '1561631469'), - (3880, '1841950149'), - (3881, '1852428112'), - (3882, '1852428112'), - (3883, '1418447293'), - (2983, '0451457811'), - (1096, '0553342495'), - (3884, '0374525641'), - (3885, '0571167926'), - (3886, '059043344X'), - (3887, '059043344X'), - (3888, '059043344X'), - (3889, '0140043136'), - (3890, '0874775132'), - (3891, '0738846503'), - (3892, '1552633217'), - (1450, '0375701311'), - (3893, '0340265450'), - (3894, '0441004954'), - (3895, '0312244266'), - (3896, '0786889098'), - (3897, '0373169884'), - (2863, '1551660539'), - (3898, '0373076371'), - (3899, '0373259646'), - (3900, '0553445014'), - (3901, '037325668X'), - (1122, '0373098006'), - (3902, '0373095244'), - (1496, '0373885210'), - (3903, '1565970519'), - (3904, '0373075286'), - (3905, '0373223455'), - (3906, '0373031114'), - (3907, '0373115458'), - (3908, '0373164556'), - (3909, '0821756672'), - (3910, '0373291019'), - (3911, '0373168713'), - (3469, '0373168829'), - (3912, '0373169795'), - (1296, '0373169477'), - (128, '0446364290'), - (3913, '0373482957'), - (128, '0446600342'), - (128, '0445205512'), - (128, '1551666014'), - (128, '0446356859'), - (128, '0446603082'), - (128, '0446360511'), - (128, '0446364312'), - (128, '0446364150'), - (128, '0446356875'), - (3914, '0373288468'), - (3915, '0373166621'), - (128, '0446360708'), - (3916, '0373222289'), - (3468, '0373169302'), - (3896, '0373169639'), - (2948, '1551660903'), - (3917, '0553440845'), - (3918, '0373098677'), - (3919, '0373451911'), - (3920, '0373096585'), - (3910, '0373169175'), - (3921, '0373169469'), - (3922, '0373255500'), - (3923, '037324343X'), - (3924, '0373165048'), - (3925, '0452282829'), - (3926, '0452281091'), - (3927, '0679781579'), - (3928, '0380728532'), - (3929, '0395754127'), - (3930, '1585673781'), - (3931, '1585673781'), - (3932, '1585673781'), - (3933, '1585673781'), - (3934, '0879757892'), - (246, '0803251734'), - (3935, '0803251734'), - (3936, '1582431612'), - (3937, '0873382668'), - (3938, '0931122740'), - (2180, '1562800299'), - (2180, '1562801465'), - (3939, '0934971013'), - (3940, '0934971013'), - (3941, '0553149121'), - (3942, '0761504362'), - (3943, '0673523241'), - (3944, '0673523241'), - (3945, '0395354846'), - (3946, '0553258958'), - (3947, '0061040185'), - (3948, '0816513333'), - (3947, '0816513074'), - (3949, '1888277173'), - (3950, '155583356X'), - (3951, '155583356X'), - (3952, '0688037127'), - (3953, '0688179096'), - (3954, '1879960214'), - (3955, '0345367561'), - (3956, '0066214688'), - (3957, '0785268839'), - (97, '0871135809'), - (3958, '0590436848'), - (3959, '3442352703'), - (247, '0449219143'), - (3960, '3795115833'), - (3961, '3442721652'), - (3962, '3442721652'), - (274, '3499156938'), - (3963, '347354034X'), - (49, '034540761X'), - (3964, '0061057797'), - (3036, '033028813X'), - (3965, '0859696707'), - (3966, '0859696707'), - (3967, '1844261085'), - (3968, '0385031386'), - (3969, '0875420036'), - (2914, '0141001828'), - (3970, '038078520X'), - (3971, '3492229891'), - (3972, '0385468067'), - (2332, '0312420021'), - (1265, '0553293400'), - (1401, '0060929871'), - (3973, '0393312836'), - (3974, '0553211757'), - (3975, '0553211757'), - (3976, '0553211757'), - (1109, '0060931914'), - (1783, '0393318680'), - (3267, '0590409433'), - (2423, '0138700982'), - (574, '0515093556'), - (3977, '1412014050'), - (906, '2253003964'), - (1268, '0399151850'), - (3978, '0802117821'), - (3979, '0802117821'), - (2818, '0380897180'), - (3980, '0380897180'), - (3981, '1573240923'), - (2836, '0385722206'), - (2837, '0385722206'), - (3982, '0702221988'), - (179, '0061095540'), - (3983, '9879630130'), - (1093, '0679732411'), - (1997, '0446606243'), - (3984, '0316785261'), - (760, '0140049975'), - (3985, '3701712417'), - (3986, '080913960X'), - (3987, '0139483993'), - (3988, '0139483993'), - (3989, '0385494661'), - (162, '014062080X'), - (145, '0425174808'), - (876, '0425174808'), - (3407, '0425174808'), - (906, '0061002860'), - (3990, '0140390847'), - (3007, '0140390847'), - (3991, '0140390847'), - (890, '0451202856'), - (3992, '0451405889'), - (1426, '0312274971'), - (2632, '0914171771'), - (3993, '0914171771'), - (3994, '0914171771'), - (3153, '0914171771'), - (3995, '0964849909'), - (3996, '0964849909'), - (3997, '0886777461'), - (3998, '0886777461'), - (3999, '0886777461'), - (4000, '0375406956'), - (4001, '0375406956'), - (4002, '0743202031'), - (495, '0767902912'), - (4003, '039571091X'), - (4004, '0395860318'), - (2937, '0192833642'), - (4005, '0192833642'), - (4006, '0192833642'), - (4007, '0750514833'), - (821, '1860463312'), - (4008, '0142001430'), - (1811, '0609809547'), - (1144, '0440218667'), - (760, '0142000671'), - (4009, '0425192792'), - (4010, '0821774352'), - (4011, '0821774352'), - (4012, '0821774352'), - (167, '0505524139'), - (621, '0345463404'), - (2245, '0449006379'), - (4013, '1885840047'), - (4014, '0060580208'), - (4015, '0060580208'), - (4016, '0425191060'), - (4017, '0743458125'), - (4018, '0312984820'), - (4019, '0380764008'), - (4020, '0060549270'), - (4021, '0505525305'), - (1795, '0373218222'), - (921, '0373218222'), - (4022, '0373218222'), - (4023, '0679777601'), - (2276, '0060505249'), - (4024, '0060505249'), - (4025, '0060505249'), - (1833, '0425191257'), - (2983, '0451458923'), - (4026, '0805426183'), - (132, '0553800914'), - (2968, '080410526X'), - (1555, '031242227X'), - (4027, '1555836577'), - (106, '0553250256'), - (415, '0451520793'), - (4028, '030680395X'), - (279, '0440241812'), - (3822, '0767914767'), - (284, '0451528697'), - (4029, '0451528697'), - (1680, '0060989270'), - (4030, '0374232105'), - (4029, '0140061401'), - (4031, '0393310329'), - (4032, '0679721037'), - (284, '0140433988'), - (4033, '0140433988'), - (4032, '0140433988'), - (4034, '0142437204'), - (4035, '0142437204'), - (4036, '1560235136'), - (4037, '0440219892'), - (4038, '1555834930'), - (4039, '1555836038'), - (4040, '0553272160'), - (578, '006093090X'), - (4041, '0942361598'), - (4042, '0942361598'), - (4043, '0942361598'), - (859, '055321148X'), - (4044, '038533494X'), - (4045, '0345355563'), - (1464, '0553210327'), - (4046, '0964109964'), - (1523, '0553212524'), - (4047, '0553212524'), - (4048, '0553251503'), - (4049, '0393321096'), - (2517, '0553574132'), - (4050, '038071681X'), - (4051, '088029261X'), - (3885, '0517053586'), - (4052, '0375706682'), - (734, '0140270590'), - (281, '0679445625'), - (1237, '0140862129'), - (4053, '0140862129'), - (4054, '0140862129'), - (4055, '0140862129'), - (4056, '0740735756'), - (63, '0440235596'), - (4057, '0440906156'), - (4058, '034540498X'), - (1339, '0671619373'), - (1887, '2070419657'), - (1888, '2070419657'), - (4059, '0943734312'), - (4060, '0943734150'), - (4061, '0898861098'), - (4062, '0803267355'), - (4063, '0803267355'), - (4064, '0964858401'), - (93, '0679826718'), - (4065, '1885211686'), - (4066, '1885211686'), - (4067, '1885211686'), - (4068, '0767904893'), - (1747, '0679733167'), - (4069, '0679436685'), - (4070, '074341120X'), - (732, '0618162216'), - (4071, '0375724621'), - (4072, '0375724621'), - (4073, '0140077812'), - (4074, '059045563X'), - (4075, '059045563X'), - (2207, '0375504907'), - (4076, '0312087357'), - (1706, '0156907380'), - (4077, '0142000485'), - (4078, '1584790660'), - (4079, '0812910389'), - (4080, '1573245038'), - (4081, '1573245038'), - (4082, '061810450X'), - (433, '0441231942'), - (3997, '0886773768'), - (433, '0345291794'), - (4083, '0449231992'), - (4084, '0192820575'), - (4085, '0192820575'), - (4086, '0449907899'), - (433, '0345301064'), - (4087, '0226462110'), - (4088, '0425062341'), - (4089, '0806967315'), - (4090, '0944031072'), - (4091, '1567182445'), - (4092, '0380776324'), - (4093, '0380776324'), - (4094, '0440504716'), - (4095, '0525942262'), - (2313, '0062508156'), - (4096, '014019536X'), - (485, '0380816555'), - (2881, '0684848066'), - (1362, '0449211827'), - (4097, '0441627404'), - (2586, '0553562738'), - (2306, '0812555031'), - (2306, '0812536509'), - (2306, '0812553993'), - (2398, '0380708892'), - (2398, '038070613X'), - (88, '0380805421'), - (4098, '0425171264'), - (4099, '2277219517'), - (4100, '0441794297'), - (225, '0375708707'), - (4101, '0802134475'), - (4102, '0151003084'), - (1041, '0553274066'), - (1042, '0553274066'), - (4103, '1897783108'), - (4104, '0340767278'), - (3673, '0679750932'), - (61, '042516098X'), - (4105, '0375701168'), - (4106, '0375701168'), - (129, '0446613266'), - (412, '038549081X'), - (4107, '0312267460'), - (4108, '0140329358'), - (4109, '0140329358'), - (4110, '074324396X'), - (364, '0552998486'), - (4111, '0099759713'), - (4112, '1853260193'), - (4113, '1853260967'), - (2331, '0140440151'), - (4114, '0140440151'), - (4115, '074993087X'), - (142, '0671041789'), - (1824, '0439139597'), - (1825, '0439139597'), - (1824, '0439064864'), - (1825, '0439064864'), - (4116, '1575665379'), - (2182, '0441005489'), - (4117, '0924171553'), - (4118, '0924171553'), - (463, '0449909050'), - (4119, '0330412302'), - (4120, '0064470059'), - (4121, '0064470059'), - (4122, '0821222341'), - (4123, '0821221558'), - (2002, '0380726297'), - (1001, '0553292056'), - (4124, '1860119190'), - (4125, '082122154X'), - (1188, '0553213512'), - (3924, '0060933577'), - (543, '044023672X'), - (974, '0394839129'), - (4126, '1573220213'), - (1366, '0440180295'), - (312, '014044582X'), - (4127, '014044582X'), - (4126, '014044582X'), - (4128, '014044582X'), - (401, '3423071001'), - (4129, '3423071001'), - (4130, '0884270610'), - (4131, '0884270610'), - (145, '0425170055'), - (4132, '345832402X'), - (4133, '3499613425'), - (4134, '3548021026'), - (1513, '351836605X'), - (1591, '1573229083'), - (4135, '0805058249'), - (351, '034540047X'), - (4136, '0140255842'), - (2593, '0380805995'), - (218, '0425169375'), - (3773, '0671727311'), - (1013, '0449003795'), - (4137, '055357874X'), - (4138, '0671896326'), - (4139, '3379017159'), - (1365, '0374190771'), - (4140, '0972660208'), - (4141, '0939165376'), - (52, '0060935464'), - (1209, '0446322180'), - (4142, '1551668998'), - (368, '0515116173'), - (4143, '157586326X'), - (337, '042516828X'), - (4144, '0440910552'), - (1768, '1853261092'), - (4145, '0889950954'), - (4146, '1562477579'), - (1695, '0312876343'), - (2007, '0446519081'), - (2007, '044651862X'), - (4147, '0688002307'), - (4148, '0394708229'), - (1663, '0394708229'), - (4149, '0195085140'), - (4150, '0195085140'), - (4151, '0671765973'), - (4152, '0922729611'), - (4153, '0922729611'), - (4154, '0767902335'), - (4155, '1577311523'), - (4156, '0425166805'), - (4157, '1567185126'), - (4158, '1874166188'), - (4159, '1874166188'), - (4160, '0875425011'), - (4161, '0875426638'), - (2210, '1882723007'), - (4162, '1882723007'), - (4163, '0764809326'), - (4164, '1892137038'), - (4163, '1892137038'), - (4165, '0883681056'), - (3620, '0874776945'), - (4166, '0875422462'), - (4167, '1869928180'), - (2770, '043935806X'), - (1825, '043935806X'), - (4168, '034540002X'), - (4169, '0399507914'), - (4170, '1570627193'), - (3654, '0439313899'), - (4171, '0609608045'), - (4172, '076071004X'), - (4173, '1855381125'), - (392, '0875421202'), - (4174, '1566199646'), - (4175, '0738700339'), - (4176, '0875423248'), - (2390, '073870279X'), - (1186, '0425158640'), - (2083, '0553236628'), - (4177, '1863739157'), - (4178, '068483183X'), - (4179, '0713715162'), - (4180, '0671532545'), - (4181, '0330360434'), - (4182, '0380723336'), - (4183, '0006498000'), - (4184, '0553210823'), - (4185, '0395771552'), - (4186, '1932560491'), - (4187, '0140304770'), - (4188, '0140444572'), - (4189, '0140444572'), - (4190, '0140029613'), - (3989, '0553213113'), - (4191, '0743489063'), - (4192, '0440225922'), - (24, '0099993805'), - (4193, '0914457284'), - (4194, '0914457284'), - (4195, '0914457284'), - (4196, '073870234X'), - (2100, '0892132922'), - (2100, '0892133260'), - (4197, '0060988258'), - (4198, '0345406419'), - (142, '0451184963'), - (24, '0440220602'), - (4199, '0821766929'), - (187, '0671721135'), - (4200, '0671721135'), - (4201, '0786864516'), - (59, '042513525X'), - (4202, '0060688246'), - (4203, '0883960044'), - (4204, '0883960044'), - (4205, '0399149422'), - (1755, '0440972329'), - (142, '0451156609'), - (3172, '0449132471'), - (4206, '0373111355'), - (4207, '0373114087'), - (2239, '0590298364'), - (4208, '0689107730'), - (4209, '0380016699'), - (4210, '088001072X'), - (4211, '0671760327'), - (4212, '0671760327'), - (92, '034530988X'), - (4213, '0380728184'), - (4214, '0140298924'), - (3541, '9722105248'), - (4215, '2020239302'), - (4216, '2020239302'), - (1086, '2742743693'), - (4217, '0769613292'), - (498, '0671628828'), - (4218, '0380716259'), - (4219, '0380716259'), - (1771, '0806509023'), - (4220, '0767901649'), - (4221, '0439173035'), - (4222, '0439173035'), - (4223, '0590187554'), - (4224, '060980748X'), - (4225, '060980748X'), - (4226, '0393049515'), - (1255, '1400031354'), - (4227, '0007106130'), - (4228, '1572241314'), - (4229, '2268013987'), - (4230, '0451202783'), - (4231, '0486277909'), - (1213, '0394578198'), - (4232, '0262192624'), - (4233, '0399135413'), - (4234, '2290318329'), - (234, '0553278118'), - (4235, '0310478014'), - (1428, '0590477412'), - (1428, '0671868314'), - (145, '0425170349'), - (906, '0425068064'), - (906, '0312975120'), - (2239, '0590433865'), - (905, '0486270556'), - (4236, '0486270556'), - (2239, '0590433857'), - (281, '0486296342'), - (596, '0380709538'), - (617, '0380709538'), - (2548, '0743400526'), - (4237, '0451188497'), - (4238, '0671656589'), - (1214, '0671695169'), - (1214, '0671695142'), - (1214, '0671729462'), - (236, '0446608955'), - (2880, '0312287860'), - (4239, '0809293242'), - (283, '0679417397'), - (950, '0679779159'), - (3284, '1550546007'), - (63, '0440204194'), - (3080, '0451408721'), - (4240, '0064472574'), - (1281, '0884042693'), - (270, '0141439696'), - (4241, '0141439696'), - (4242, '0764548573'), - (4243, '0764548573'), - (679, '0449203662'), - (4244, '0586087060'), - (559, '0449221032'), - (2656, '0449218473'), - (4245, '0060926015'), - (4246, '0385018061'), - (4247, '0385018061'), - (4248, '0385018061'), - (4249, '0028600819'), - (4250, '0028600819'), - (1505, '0140248307'), - (4251, '0425065952'), - (4252, '0070064261'), - (115, '3404149114'), - (852, '3404149114'), - (4253, '3404149114'), - (401, '9504001068'), - (4254, '1864501235'), - (4255, '0864426224'), - (4256, '0864426224'), - (4257, '2277229938'), - (199, '2253150908'), - (867, '2253048852'), - (4258, '2253048852'), - (867, '2253044911'), - (4257, '2253044911'), - (955, '2266067249'), - (4259, '2266067249'), - (1209, '2253033138'), - (4260, '2253033138'), - (4261, '2070380742'), - (4262, '067972883X'), - (1176, '0440414806'), - (4263, '0440414806'), - (4264, '0440414806'), - (828, '0689825587'), - (4265, '0142302015'), - (4266, '0142302015'), - (4267, '1586480499'), - (256, '0380821214'), - (3417, '014038572X'), - (4268, '2714303412'), - (4269, '0140621334'), - (4270, '2070389634'), - (4271, '2070389634'), - (4272, '2070389634'), - (4273, '2070368157'), - (4214, '2864241277'), - (24, '0440241073'), - (1605, '0553277243'), - (4274, '0140161953'), - (237, '0553287303'), - (142, '0451190521'), - (142, '0451190491'), - (330, '0679404856'), - (4232, '0399141499'), - (4275, '0553100130'), - (4276, '0553100130'), - (4277, '067187294X'), - (4278, '0449215202'), - (4279, '0440204429'), - (4280, '0440204429'), - (4281, '0553259253'), - (4282, '2207305554'), - (4283, '2207249786'), - (1323, '2266102621'), - (4284, '2266102621'), - (4285, '2253140589'), - (4286, '2253140589'), - (3700, '2277233617'), - (3046, '202025462X'), - (4287, '2277116092'), - (4288, '2253049069'), - (4289, '2266002635'), - (1724, '2253044903'), - (2606, '2253044903'), - (3046, '2253152846'), - (1981, '2290312959'), - (244, '2266104853'), - (960, '2020579391'), - (4290, '2020579391'), - (2331, '2070366081'), - (4291, '0553225448'), - (4292, '0553225448'), - (4293, '0786703377'), - (1063, '0345350804'), - (1295, '0345350804'), - (4294, '0895551950'), - (4295, '0872168328'), - (4296, '0786705302'), - (2658, '0743203178'), - (4297, '0812550897'), - (4298, '0881849804'), - (4299, '0671725254'), - (4300, '0810934302'), - (4301, '006008118X'), - (4302, '0312266588'), - (3659, '0312906765'), - (2529, '0312274785'), - (1281, '0884042871'), - (1281, '0884042847'), - (3076, '0445204303'), - (1773, '0380003821'), - (4303, '0879801646'), - (4304, '0879801646'), - (1983, '0553227734'), - (4305, '0486232948'), - (1704, '0553241575'), - (1704, '0553205315'), - (4306, '0671493515'), - (1185, '0828103054'), - (4307, '0812561589'), - (4076, '0670884839'), - (115, '0449227421'), - (4308, '3404118839'), - (2913, '3442430879'), - (1921, '3442430879'), - (39, '3426600218'), - (4309, '3426600218'), - (4310, '3809413747'), - (4311, '3442723833'), - (4312, '096788330X'), - (4313, '0929141652'), - (89, '0525244581'), - (4314, '0373706847'), - (4315, '0373706847'), - (4316, '0440414121'), - (1876, '3442441080'), - (1921, '3442441080'), - (4317, '3492238572'), - (1061, '3492238572'), - (1013, '0805010858'), - (4318, '0963622927'), - (4319, '0963622927'), - (4320, '1558506462'), - (4321, '1558506462'), - (4322, '1558506462'), - (4323, '0140245480'), - (2748, '0451167716'), - (438, '069811695X'), - (4324, '0262121867'), - (4325, '9839236083'), - (4326, '0811830454'), - (4327, '0811830454'), - (4328, '0811830454'), - (4329, '0310329914'), - (337, '0440203430'), - (175, '0446606324'), - (284, '0553211234'), - (2680, '1593080077'), - (4330, '1593080077'), - (484, '0446604089'), - (2963, '0446603287'), - (4261, '0446343013'), - (3374, '0451202473'), - (3546, '0060548827'), - (4331, '0804119937'), - (17, '1558746986'), - (18, '1558746986'), - (4332, '1558746986'), - (369, '0515132187'), - (4333, '0704349469'), - (4334, '0394758439'), - (679, '0449213447'), - (271, '0446670251'), - (4335, '0061098736'), - (1194, '0448095149'), - (4336, '0702227773'), - (3787, '1841219266'), - (4337, '0671015842'), - (4338, '0140149708'), - (4339, '0434271918'), - (4340, '1840461535'), - (4158, '1840461535'), - (4341, '0563534753'), - (4342, '0563534753'), - (4340, '0563487496'), - (4343, '1862042497'), - (4344, '1862042497'), - (1302, '0330328573'), - (4345, '0330328573'), - (859, '0330328573'), - (4346, '0751516880'), - (4347, '014062225X'), - (1706, '0140622144'), - (4336, '0340765429'), - (4348, '034066049X'), - (61, '0425154092'), - (4349, '0425179613'), - (4350, '0425179613'), - (95, '0375724370'), - (4351, '0446677671'), - (4352, '0446677671'), - (4350, '0060969911'), - (4351, '0060969911'), - (3041, '342310516X'), - (2176, '342310516X'), - (135, '3492040683'), - (906, '3502506809'), - (24, '3453127013'), - (2749, '3453172841'), - (1706, '359650547X'), - (1998, '0330262726'), - (1998, '0330253565'), - (1628, '0553057960'), - (1092, '0671014196'), - (4353, '0688171877'), - (610, '0871136791'), - (4354, '0679400540'), - (4355, '0805009213'), - (4356, '0679406557'), - (4357, '0684814773'), - (4358, '957131577X'), - (4359, '0517881004'), - (4360, '1879181363'), - (4361, '0671518909'), - (1519, '055321277X'), - (4362, '055321277X'), - (4363, '006039241X'), - (414, '0553380095'), - (4362, '0060391502'), - (4364, '0060391502'), - (4365, '0874779669'), - (4366, '0874779669'), - (4367, '0679726225'), - (4368, '0306810123'), - (4369, '1555834310'), - (4370, '0684841827'), - (253, '0440504708'), - (4371, '0440504708'), - (4372, '0671521136'), - (4373, '0399518460'), - (4374, '0688140718'), - (4375, '0853301239'), - (4376, '0553284347'), - (4377, '0345356500'), - (4378, '0440473500'), - (4379, '0773674489'), - (1339, '0743423682'), - (4380, '1410798860'), - (63, '0525945938'), - (3458, '042516876X'), - (1228, '0385496095'), - (412, '0385475721'), - (4381, '0385319908'), - (1965, '0425142035'), - (4382, '0061096253'), - (2271, '1551667509'), - (1879, '0553277723'), - (906, '0425068099'), - (4383, '0449146391'), - (2288, '0312421117'), - (4384, '0761514430'), - (4385, '0761514430'), - (574, '0679405283'), - (4386, '0440508975'), - (4387, '0440508975'), - (4388, '0006751504'), - (369, '0515137111'), - (621, '0345456939'), - (3159, '0060504110'), - (4389, '0060542799'), - (373, '0743469844'), - (565, '0553583573'), - (2583, '0446613886'), - (4390, '0449148238'), - (400, '0373289278'), - (4391, '0451205561'), - (2417, '1551667371'), - (4392, '1551667398'), - (4393, '0778320324'), - (4394, '0778320413'), - (1164, '0553107380'), - (225, '0375406182'), - (1013, '0553271636'), - (4395, '1892145057'), - (4396, '1892145057'), - (4397, '1892145057'), - (351, '0345389964'), - (4398, '0486256111'), - (107, '0679751521'), - (4399, '0590120727'), - (4400, '1888054557'), - (4401, '0312099045'), - (4402, '0312099045'), - (1432, '0312966091'), - (4403, '0385265565'), - (142, '0670813648'), - (1532, '0892961759'), - (1787, '0345372433'), - (183, '0399144315'), - (1932, '0786883219'), - (463, '0375504613'), - (4404, '0785263535'), - (2593, '0380896389'), - (2593, '0380896419'), - (4405, '0671252941'), - (4406, '155972272X'), - (4407, '0393046338'), - (1432, '0671001795'), - (4408, '0316526835'), - (4409, '0385307888'), - (4410, '0385307888'), - (2656, '039447970X'), - (634, '0425161285'), - (40, '0156904365'), - (4411, '0156904365'), - (4412, '0743448421'), - (2125, '014034991X'), - (595, '0440414539'), - (4413, '006106498X'), - (4414, '006106498X'), - (4415, '0553274295'), - (4037, '0590457799'), - (4416, '0689800843'), - (600, '0590457233'), - (4417, '0689311001'), - (4418, '0590926675'), - (441, '0671794019'), - (4419, '0671794019'), - (438, '0440403332'), - (596, '0440948991'), - (4415, '0689849176'), - (4420, '1586480103'), - (2641, '1586480103'), - (4421, '1570282021'), - (4422, '0877950938'), - (4423, '0743490398'), - (283, '0451524667'), - (4424, '0451524667'), - (4425, '0446600253'), - (795, '0345386744'), - (4426, '0965894355'), - (1214, '0671039857'), - (1214, '0671039830'), - (4427, '0671007696'), - (1214, '067100767X'), - (823, '0140063838'), - (4428, '0207169519'), - (4429, '0684870819'), - (17, '1558748040'), - (18, '1558748040'), - (1650, '1558748040'), - (4430, '0425132986'), - (4431, '0439053862'), - (1214, '0743403614'), - (4432, '013029442X'), - (4433, '0843925027'), - (3998, '0756400953'), - (2418, '1559210869'), - (867, '0886779960'), - (368, '033042095X'), - (4434, '0789716399'), - (2169, '0821767240'), - (2045, '0515135356'), - (135, '0316782262'), - (2618, '0525945210'), - (4435, '0786869054'), - (552, '0446530387'), - (4436, '0688177743'), - (4437, '0375413634'), - (4438, '0425147762'), - (131, '0399149295'), - (4439, '0066212693'), - (3821, '0670031062'), - (254, '0679439382'), - (4440, '1565123417'), - (580, '0451179188'), - (4441, '0786867612'), - (4442, '0061098035'), - (240, '0553572105'), - (4443, '051512950X'), - (4444, '0312926456'), - (4445, '0786889837'), - (81, '0804108749'), - (563, '0425121631'), - (4446, '0804109052'), - (4447, '0345402308'), - (580, '0451168690'), - (1628, '067945960X'), - (129, '0316693235'), - (532, '0451188616'), - (4448, '050552208X'), - (4024, '0380820846'), - (59, '0425153975'), - (571, '0425119653'), - (132, '0553579983'), - (61, '0399149325'), - (4449, '042515971X'), - (4450, '1583144269'), - (2964, '0446610852'), - (4451, '0821771426'), - (1092, '0671744577'), - (4452, '0373261047'), - (1211, '0743233468'), - (7, '0804114986'), - (2258, '0380808072'), - (136, '067179356X'), - (1211, '0743410505'), - (2006, '0380750848'), - (4453, '0425151883'), - (128, '0446611808'), - (4454, '0310220033'), - (3750, '0553583360'), - (127, '0446600709'), - (4455, '0671019929'), - (3401, '044915002X'), - (2978, '0425178579'), - (367, '0449907953'), - (4456, '1551669498'), - (2964, '038081448X'), - (4457, '0140069135'), - (4458, '0696214563'), - (4459, '0696214563'), - (182, '044808919X'), - (182, '0448089165'), - (1597, '0451626079'), - (4460, '0451626079'), - (4461, '0451626079'), - (4462, '1563831236'), - (4461, '156383121X'), - (3141, '0028620666'), - (4463, '1892051176'), - (4464, '0877201358'), - (4465, '0844273252'), - (4466, '0201741644'), - (4467, '0201741644'), - (4468, '1559362324'), - (1554, '0345430786'), - (129, '0316710571'), - (4469, '0060555513'), - (4470, '0892967544'), - (4471, '0399148655'), - (2934, '0312319142'), - (4472, '0345457587'), - (971, '0345453417'), - (4473, '0060555653'), - (1987, '0316591122'), - (2188, '0312319517'), - (4474, '0380978830'), - (1625, '0385336209'), - (616, '0553802526'), - (127, '0446530689'), - (644, '0399150854'), - (490, '0060083956'), - (1327, '0446531421'), - (1326, '0446531421'), - (1730, '0312306814'), - (4475, '0312271786'), - (337, '0399150870'), - (131, '0399149821'), - (59, '0553802496'), - (1628, '0345452577'), - (374, '1400041414'), - (4476, '0060193883'), - (1214, '0743428684'), - (720, '0525947655'), - (1704, '0312316690'), - (4477, '0060005556'), - (4478, '0312304269'), - (4479, '0312304269'), - (4480, '0399148760'), - (129, '0316603287'), - (337, '0399145664'), - (330, '0425178102'), - (2586, '0553580515'), - (4481, '0749301015'), - (4482, '0749301015'), - (4483, '0445204222'), - (4484, '1930252501'), - (2528, '0515123293'), - (1283, '0312985207'), - (4485, '0312985207'), - (4486, '0449220354'), - (4487, '0312981260'), - (4488, '067104754X'), - (4489, '0385144741'), - (4490, '0385144342'), - (4491, '0595175686'), - (4492, '1594082316'), - (4491, '1410777057'), - (4493, '0374172471'), - (1259, '2070394867'), - (4494, '0609807420'), - (4190, '0425122956'), - (2028, '0451208765'), - (732, '0618129022'), - (1537, '0345423402'), - (1537, '0345423429'), - (1537, '034544356X'), - (2028, '0743454146'), - (142, '0451210840'), - (4097, '0425152367'), - (4495, '0553374435'), - (59, '0553106643'), - (4496, '0553057707'), - (4497, '1853263508'), - (4498, '1567185711'), - (4499, '1560251476'), - (4500, '1560251476'), - (237, '0449223795'), - (4501, '1568846533'), - (4502, '0312144075'), - (4503, '0684869233'), - (788, '0156007479'), - (1538, '0061031844'), - (4504, '0312267177'), - (204, '0345434943'), - (4505, '1860110886'), - (392, '0875421849'), - (4506, '0786868619'), - (4507, '0786868619'), - (4508, '0786868619'), - (4509, '037550303X'), - (223, '0345442741'), - (4510, '0970272707'), - (59, '0399138439'), - (4511, '0130484717'), - (4512, '0452276365'), - (1021, '0671723650'), - (1021, '0671733354'), - (2028, '0451206525'), - (1965, '0140445943'), - (4513, '0140445943'), - (4514, '1557489297'), - (4515, '0553280430'), - (142, '0451167317'), - (4516, '0821725998'), - (830, '0590444646'), - (4517, '039951743X'), - (4518, '039951743X'), - (281, '0671517643'), - (4519, '155748919X'), - (4520, '1577480112'), - (4521, '0451457250'), - (4522, '0394741838'), - (4523, '0394741838'), - (4524, '0394741838'), - (4525, '0345428455'), - (2372, '0671541749'), - (2371, '0671541749'), - (2223, '0345314875'), - (4526, '0140446109'), - (4527, '0140446109'), - (4528, '0140446109'), - (4529, '014044422X'), - (4530, '014044422X'), - (4531, '0140147683'), - (4532, '0452270294'), - (4533, '1560766263'), - (4534, '014011341X'), - (4535, '0155026607'), - (4536, '0155026607'), - (4537, '0155026607'), - (1740, '0312850247'), - (4538, '0312850247'), - (4524, '0786913886'), - (403, '0766607208'), - (4539, '1884820298'), - (4540, '1884820298'), - (1965, '014042346X'), - (4541, '014042346X'), - (4542, '014042346X'), - (79, '0440133017'), - (4543, '0140587640'), - (369, '0399144706'), - (4544, '031285904X'), - (427, '0140444173'), - (4545, '0140444173'), - (4546, '0380769158'), - (4547, '0380769158'), - (4524, '1560760478'), - (4524, '0880389052'), - (4524, '0880389206'), - (4548, '0140193669'), - (4549, '0140193669'), - (4550, '0140194916'), - (4551, '0140255109'), - (4552, '0140255109'), - (4553, '0140255109'), - (397, '014070731X'), - (4554, '014070731X'), - (3723, '0140445145'), - (4555, '0140445145'), - (4554, '0140445145'), - (4556, '0452010845'), - (1965, '0140048162'), - (3989, '0140390537'), - (4557, '0140390537'), - (4558, '0192713434'), - (574, '0345396936'), - (334, '0312261918'), - (4559, '014010870X'), - (397, '0671722840'), - (4560, '0553233890'), - (4561, '0553346083'), - (4562, '0330306839'), - (415, '0140181903'), - (1616, '0140181903'), - (4563, '0786881275'), - (4564, '0786881275'), - (824, '0394587545'), - (4565, '0020519303'), - (4566, '0345315014'), - (3259, '059022638X'), - (3260, '059022638X'), - (1428, '0590466178'), - (4567, '0006514588'), - (4568, '1578660432'), - (4569, '0761116230'), - (4570, '0761116230'), - (4571, '1580174493'), - (2248, '0380819600'), - (108, '0312980159'), - (3502, '0821771116'), - (4572, '0451403967'), - (574, '0451403967'), - (4573, '0140277749'), - (4574, '0140277749'), - (4575, '1580050158'), - (56, '0451524195'), - (4576, '0451524195'), - (4577, '0821768093'), - (4578, '0440214866'), - (4577, '0440210046'), - (4577, '0440214858'), - (4579, '0380818957'), - (4571, '0451191889'), - (574, '0451191889'), - (4571, '0345423658'), - (4580, '0743410262'), - (4581, '0515119660'), - (4582, '0312979851'), - (109, '0312979886'), - (4583, '0446671339'), - (4584, '0446671339'), - (2978, '0425173631'), - (4585, '0451524748'), - (4586, '0451524748'), - (4587, '0553212451'), - (4588, '0553212451'), - (1315, '0451191137'), - (1316, '0451191137'), - (3319, '0553299611'), - (574, '0679454489'), - (574, '0679454470'), - (2978, '0425176304'), - (3086, '0684824485'), - (4589, '0684824485'), - (3086, '0684801558'), - (1510, '0440225639'), - (3086, '0811212475'), - (4590, '0811212475'), - (4591, '0553584782'), - (4592, '0805417761'), - (4593, '0805417761'), - (4594, '087542791X'), - (4595, '015696158X'), - (1409, '0679720200'), - (4596, '0679720200'), - (4597, '1852302089'), - (4598, '0140092838'), - (3345, '0679424474'), - (4599, '0373250371'), - (1432, '0312983271'), - (4600, '0312983271'), - (3399, '0312983271'), - (4601, '0060507845'), - (433, '0345295684'), - (4602, '0312204353'), - (4603, '1551669285'), - (4604, '0446670111'), - (4605, '0020545509'), - (4606, '0385468490'), - (4607, '0312979096'), - (4608, '0385313861'), - (4609, '0323023924'), - (4610, '0323023924'), - (716, '3257232993'), - (648, '3499141639'), - (4611, '0702217921'), - (4113, '037328019X'), - (4612, '1557735840'), - (4613, '0515111341'), - (584, '0373242190'), - (4614, '067163156X'), - (4615, '0380541718'), - (4616, '0749300663'), - (2096, '0821221817'), - (4617, '0684146010'), - (4618, '0684146010'), - (4619, '0441007163'), - (176, '0345391829'), - (1397, '0345253884'), - (115, '0609603086'), - (4620, '0553282816'), - (1013, '0553284789'), - (1013, '0553279556'), - (4621, '0812580141'), - (9, '0374281947'), - (1998, '0345420438'), - (4622, '0689300549'), - (433, '0345384911'), - (854, '0345332997'), - (2695, '0451194101'), - (3310, '0451191013'), - (2396, '0553564943'), - (867, '0886772370'), - (4623, '0886772370'), - (4624, '0671637185'), - (4625, '0140154787'), - (4624, '0140154787'), - (4626, '0751514403'), - (2816, '2070361381'), - (4627, '2070361381'), - (4628, '2070381161'), - (2928, '2070380599'), - (3008, '2070368823'), - (4629, '2020477815'), - (4630, '2020477815'), - (4631, '2253151165'), - (4632, '284205461X'), - (4633, '2277220620'), - (4634, '038073124X'), - (4635, '0002713276'), - (4636, '0002713276'), - (4637, '0375725849'), - (732, '0345318587'), - (4638, '0345340973'), - (4619, '0440106443'), - (4639, '0515104531'), - (4640, '0515104531'), - (4619, '0553238450'), - (60, '0671701231'), - (4619, '0553290266'), - (2695, '038072541X'), - (2226, '0449204553'), - (1784, '0446605409'), - (3434, '0061009504'), - (4641, '0142002399'), - (4642, '0142002399'), - (4643, '0330328743'), - (3008, '2070376990'), - (3291, '2264034882'), - (4644, '2264034882'), - (4645, '0786711256'), - (4646, '0446605956'), - (4647, '1864484098'), - (1605, '0399136479'), - (1354, '0679776818'), - (4648, '0812508424'), - (4647, '0812555333'), - (4649, '0312931123'), - (4190, '0312931123'), - (4650, '1569711240'), - (4651, '0441007880'), - (4650, '0441007090'), - (4652, '0812540034'), - (4653, '0451458842'), - (4654, '0345382455'), - (4655, '0446610771'), - (4656, '0812520076'), - (848, '0679416773'), - (1100, '0812555171'), - (4657, '0963784617'), - (644, '0440224713'), - (4658, '0425096440'), - (3282, '0553280414'), - (369, '0373484232'), - (746, '0064410137'), - (747, '0064410137'), - (2498, '0064410137'), - (4659, '0373291108'), - (4660, '1402710658'), - (4661, '1402710658'), - (4662, '1402710658'), - (4663, '1402710658'), - (2518, '0446600377'), - (4664, '0451410610'), - (972, '0345440765'), - (2029, '0836251822'), - (4665, '0763616087'), - (176, '3453209613'), - (729, '0517706814'), - (4666, '0517706814'), - (4667, '0517706814'), - (596, '0590044931'), - (4668, '0590630938'), - (4669, '0590630938'), - (4670, '0439087961'), - (842, '0439087961'), - (2740, '0141303786'), - (4671, '0141303786'), - (962, '069401110X'), - (4672, '069401110X'), - (2238, '0786842431'), - (4673, '068981934X'), - (441, '0671737295'), - (4674, '081673416X'), - (4675, '0439323738'), - (4676, '0440496039'), - (4677, '0440496039'), - (4678, '0689710682'), - (4679, '0689710682'), - (2238, '0590462318'), - (4680, '0394846656'), - (4681, '0590458078'), - (3026, '0152099905'), - (3027, '0152099905'), - (3028, '0152099905'), - (441, '0671745670'), - (4682, '0671745670'), - (4683, '157765692X'), - (602, '1577658043'), - (4684, '0382243579'), - (2239, '0590523465'), - (4685, '0140319301'), - (3271, '0816728798'), - (596, '0440472091'), - (1824, '0439136369'), - (1825, '0439136369'), - (1176, '0688160867'), - (3405, '0688160867'), - (2233, '0590673181'), - (596, '0380712369'), - (4686, '0380712369'), - (4687, '0679804021'), - (4688, '0679804021'), - (441, '0671798340'), - (4681, '0671798340'), - (830, '0020418809'), - (4416, '0449701778'), - (4689, '0821730002'), - (4690, '014034893X'), - (1428, '0590483463'), - (2335, '0385498799'), - (962, '0140366660'), - (4691, '0140366660'), - (3090, '0060278250'), - (3090, '0060278234'), - (3090, '0064471837'), - (4692, '0064471837'), - (4693, '0345366239'), - (176, '0330262130'), - (4694, '0416052029'), - (4695, '0689867034'), - (2495, '0786885971'), - (3137, '0689870027'), - (4220, '0590769588'), - (4696, '0590769588'), - (4697, '0786817909'), - (4698, '0060595094'), - (4428, '0684832178'), - (268, '0380807343'), - (4699, '0380807343'), - (3137, '0689859910'), - (4700, '0957881436'), - (4701, '0140341773'), - (342, '0553577123'), - (4702, '0553577123'), - (4703, '0553577123'), - (4704, '0553577123'), - (599, '0307222519'), - (1816, '0671021184'), - (262, '0064473627'), - (373, '0061008761'), - (4705, '0684870827'), - (4706, '0375727019'), - (4707, '0375727019'), - (4708, '042518689X'), - (187, '0380752891'), - (4709, '0807848735'), - (4710, '0813116791'), - (4711, '0394744543'), - (1366, '0385333501'), - (1720, '0316925195'), - (4712, '0425176053'), - (4713, '0425176053'), - (4714, '0330301497'), - (4715, '0297778536'), - (463, '0812969812'), - (4716, '0306803984'), - (142, '0451163524'), - (142, '0451194861'), - (4698, '0451194861'), - (4717, '0852073259'), - (25, '0452280621'), - (4718, '0195042239'), - (760, '0140187375'), - (142, '0451166582'), - (971, '0671019732'), - (1282, '0671026011'), - (4719, '0231120621'), - (2744, '1895555590'), - (4720, '0888992424'), - (4721, '088899124X'), - (4722, '0006479650'), - (4723, '0888991703'), - (4720, '088899088X'), - (4721, '0006479383'), - (180, '0330375253'), - (4313, '0373834993'), - (1001, '055337933X'), - (4724, '0002245663'), - (24, '0385503822'), - (3248, '0609804138'), - (4725, '0345439104'), - (3704, '0316852570'), - (635, '0061031410'), - (4726, '0375757597'), - (4727, '0140071083'), - (1060, '0345248228'), - (4728, '0374423415'), - (4729, '0743439791'), - (335, '0192833669'), - (4730, '0192833669'), - (4543, '0812548221'), - (4731, '0380784165'), - (4732, '0684848406'), - (4733, '0446677698'), - (4734, '0451192990'), - (906, '0425105695'), - (1965, '0441003524'), - (4735, '0451455835'), - (277, '0679742565'), - (2586, '0553575384'), - (412, '0449214176'), - (3159, '0061031070'), - (61, '0425180638'), - (284, '1853260045'), - (4736, '1853260045'), - (4737, '1853260045'), - (410, '2266051326'), - (4738, '0752860178'), - (4739, '0441009239'), - (4451, '0441008534'), - (3779, '0312924801'), - (4740, '1857970446'), - (4741, '0786702427'), - (1428, '0590477420'), - (1428, '0590477447'), - (4742, '0440222435'), - (3568, '0451454537'), - (4743, '0316555525'), - (4744, '0688101194'), - (4745, '0241123968'), - (4746, '0060112719'), - (4747, '0671739085'), - (4748, '0821756044'), - (4749, '0786004827'), - (4750, '0751516678'), - (4751, '0297828991'), - (4752, '0061013722'), - (115, '0451163540'), - (4753, '0735201994'), - (4754, '1414011458'), - (4755, '1564029654'), - (4756, '1564029654'), - (4757, '0307121259'), - (3280, '0307121259'), - (4758, '0671493183'), - (4757, '0671493183'), - (974, '0679882812'), - (4757, '067144901X'), - (3151, '0399215921'), - (4759, '0394900189'), - (4758, '0394800206'), - (2533, '039515023X'), - (2532, '039515023X'), - (4760, '0953881024'), - (2368, '1852860596'), - (397, '0521426219'), - (4761, '0521426219'), - (4762, '0859344304'), - (4763, '0859344304'), - (122, '0671787551'), - (4764, '0671787551'), - (122, '0671869108'), - (867, '0812516001'), - (940, '0394821998'), - (4765, '0449208796'), - (4766, '0393318451'), - (502, '0192835181'), - (4767, '0192835181'), - (4768, '3518115758'), - (4769, '3442432073'), - (4770, '3442432073'), - (3271, '1853261076'), - (4771, '0786706953'), - (4772, '0345443233'), - (2934, '0688149626'), - (369, '0399145923'), - (129, '0316693251'), - (1841, '0373706936'), - (4773, '0804107432'), - (4774, '2070373622'), - (1207, '0375503994'), - (3760, '0375503994'), - (4775, '0688062229'), - (4776, '0688062229'), - (1748, '0937295078'), - (1749, '0937295078'), - (4777, '3540587101'), - (4778, '3540587101'), - (4779, '1565922093'), - (4780, '1565922093'), - (4781, '1565925653'), - (3086, '068416325X'), - (4782, '0843105550'), - (4783, '0672324253'), - (4784, '0672324253'), - (715, '3442722497'), - (4785, '3442722497'), - (2710, '3442545544'), - (4786, '3257225334'), - (4787, '3257206089'), - (4788, '0312423187'), - (4789, '3746614007'), - (4790, '3746614007'), - (4791, '3548253652'), - (4792, '0140063331'), - (277, '0679735909'), - (2593, '0380716542'), - (2593, '0380792486'), - (66, '0670881767'), - (859, '0451523377'), - (4793, '0451523377'), - (4794, '0452281423'), - (574, '0452281423'), - (4795, '0553581651'), - (4796, '2290314889'), - (596, '0380709139'), - (617, '0380709139'), - (960, '0679775439'), - (732, '0345272609'), - (732, '0345272595'), - (732, '0345272587'), - (4797, '3499433265'), - (4798, '3871340758'), - (4799, '3498063618'), - (4800, '3423122080'), - (4801, '3423122080'), - (4802, '3423122080'), - (364, '3548252443'), - (1052, '3404242327'), - (4803, '3746680174'), - (4804, '3746680174'), - (4805, '3596215226'), - (4806, '3518379089'), - (4807, '3518373080'), - (4808, '3518373080'), - (4809, '340460024X'), - (4810, '0748702784'), - (1724, '3257018959'), - (4811, '3257018959'), - (301, '0553240633'), - (2603, '0786817089'), - (4812, '0385334923'), - (1484, '0345445856'), - (1092, '0743437136'), - (4813, '344272872X'), - (4702, '344272872X'), - (290, '0684841215'), - (970, '1587242583'), - (3058, '3746616360'), - (4814, '0140026177'), - (1013, '0449221490'), - (1023, '067943335X'), - (180, '0670033332'), - (1337, '0060520515'), - (634, '042513699X'), - (81, '0679407715'), - (1355, '0747273200'), - (677, '015602943X'), - (4815, '037570485X'), - (4814, '0671686151'), - (634, '0345455916'), - (4816, '1931081743'), - (4817, '1931081743'), - (4818, '1932047247'), - (4819, '1930586787'), - (962, '3401045660'), - (4820, '3401045660'), - (989, '0156028352'), - (4821, '0679733485'), - (4822, '0732269199'), - (92, '0671877046'), - (4823, '0380761599'), - (4824, '0446609900'), - (4825, '0553281437'), - (1041, '0553279025'), - (1042, '0553279025'), - (2393, '0886773741'), - (4826, '0609608924'), - (4827, '0812549007'), - (1041, '0553276387'), - (1042, '0553276387'), - (2393, '0886771625'), - (4828, '0440223547'), - (2282, '0140186484'), - (4829, '0140186484'), - (4830, '059041691X'), - (4831, '059041691X'), - (3264, '0590457403'), - (1194, '0448095041'), - (1194, '044809505X'), - (4832, '0380728508'), - (4833, '0312916450'), - (4834, '0804106576'), - (4835, '1886910529'), - (4189, '0140818030'), - (4836, '0140818030'), - (3209, '0061032042'), - (161, '0061032042'), - (4837, '156647101X'), - (4838, '0684825414'), - (654, '0385475462'), - (368, '0515126098'), - (4839, '1888608501'), - (351, '0345387651'), - (306, '0345384563'), - (4840, '0590440152'), - (1065, '0553287893'), - (4841, '0451628640'), - (4842, '1566891051'), - (4843, '0883964201'), - (4844, '0883964716'), - (4845, '1881273628'), - (4846, '0785266097'), - (4847, '1883013852'), - (4848, '1883013852'), - (4849, '1883013860'), - (4850, '1883013860'), - (906, '0425067866'), - (4851, '0812092007'), - (4024, '1586602241'), - (4852, '0736905324'), - (4853, '0393047229'), - (4854, '0061073628'), - (4855, '0688140475'), - (4856, '0609808400'), - (4857, '0609808400'), - (4858, '0609808400'), - (4852, '0743200330'), - (4859, '0743200330'), - (4860, '1931402213'), - (4861, '0966723724'), - (4862, '0875730701'), - (4863, '0875730701'), - (4864, '0972208607'), - (4865, '1884800394'), - (4866, '0971971501'), - (4867, '0397320426'), - (3677, '0553580531'), - (4868, '042517364X'), - (2748, '0451160193'), - (1395, '0679402292'), - (4869, '0811801020'), - (574, '0679433023'), - (4870, '0679446672'), - (962, '0553212036'), - (1553, '0679463321'), - (39, '0679444815'), - (39, '0394589424'), - (4871, '0465072836'), - (217, '0486268705'), - (181, '0486268705'), - (2599, '0486275477'), - (1186, '0399145796'), - (4872, '0140714545'), - (4873, '0140714545'), - (4874, '0140714545'), - (4875, '0072546409'), - (54, '0060921145'), - (4876, '1841763101'), - (4877, '1841763101'), - (4875, '1855329816'), - (4878, '1855329816'), - (4875, '184176311X'), - (4876, '184176311X'), - (4879, '085045512X'), - (4880, '085045512X'), - (4881, '0007137508'), - (351, '037540290X'), - (4882, '037540290X'), - (237, '0553241729'), - (4883, '0517883864'), - (3345, '0446313939'), - (4884, '0446313939'), - (368, '0671680781'), - (4885, '1592869629'), - (1249, '0800782194'), - (4886, '0821761196'), - (4887, '0061084719'), - (4888, '1551661594'), - (4889, '0515120340'), - (630, '0821761730'), - (819, '0812507428'), - (818, '0812507428'), - (59, '0425121259'), - (1325, '0061030430'), - (4890, '0840757239'), - (4891, '0553138014'), - (4892, '1586481614'), - (241, '0553572210'), - (237, '0553288342'), - (4893, '1575668475'), - (142, '0743467523'), - (889, '0312950489'), - (149, '014012389X'), - (4894, '014012389X'), - (4893, '014012389X'), - (4895, '0804106274'), - (4896, '038548755X'), - (4897, '038548755X'), - (1784, '0446353205'), - (4619, '0553208225'), - (4898, '0770103936'), - (4899, '0373970021'), - (2626, '042516019X'), - (484, '0446357405'), - (3892, '0340223030'), - (4900, '067180913X'), - (4901, '067167269X'), - (4902, '0722150954'), - (4903, '1552780724'), - (1452, '0440223822'), - (1118, '042509586X'), - (1118, '0441090729'), - (1118, '0425097226'), - (4904, '0446675962'), - (4905, '0312867395'), - (325, '0345300807'), - (152, '0446517984'), - (4244, '006464801X'), - (369, '0373834284'), - (543, '0440224853'), - (158, '0345404114'), - (4906, '074723003X'), - (4905, '0747230293'), - (4907, '0553579193'), - (4908, '0471407380'), - (4909, '0060984422'), - (4910, '0553567152'), - (4911, '0451211014'), - (4909, '0553283502'), - (3264, '0440219817'), - (4909, '0553570870'), - (4912, '0786813709'), - (128, '0446361739'), - (814, '0141007338'), - (4913, '0002261529'), - (4914, '0007110928'), - (4380, '0375760393'), - (1298, '0440467012'), - (906, '0425129586'), - (4915, '0373168284'), - (976, '0679745130'), - (4725, '0375502815'), - (2340, '0590483803'), - (373, '0671027662'), - (4916, '1580081231'), - (4917, '0452279089'), - (4918, '0452279089'), - (4919, '0316779075'), - (4920, '0316779075'), - (4921, '0399523308'), - (4922, '020162690X'), - (4920, '0671021761'), - (4923, '0915473569'), - (4924, '0553580744'), - (4925, '0553580744'), - (4926, '0553580744'), - (4927, '0553580744'), - (4928, '0451171071'), - (4929, '0671620495'), - (4930, '0688151078'), - (906, '042513024X'), - (4931, '1558321160'), - (4932, '0446530239'), - (4933, '3492256341'), - (1086, '0805067140'), - (285, '3518383973'), - (4934, '3518383973'), - (256, '0552133256'), - (2007, '227724113X'), - (4935, '0156011603'), - (930, '0345335058'), - (176, '0671742515'), - (4936, '190288132X'), - (4937, '190288132X'), - (1209, '0446357200'), - (3086, '0451526643'), - (4134, '0451526643'), - (4938, '0316198951'), - (4939, '0312244991'), - (4940, '0312244991'), - (4941, '0312244991'), - (3971, '0375706143'), - (4942, '0953327523'), - (4943, '0451149173'), - (3482, '0140065504'), - (4944, '0140065504'), - (1616, '0679759328'), - (962, '0440447674'), - (1553, '0345427637'), - (1305, '055321263X'), - (412, '0449213765'), - (412, '0446314986'), - (56, '0553213105'), - (4945, '0786703229'), - (4946, '0446674168'), - (4947, '0671602543'), - (2169, '0451199979'), - (1977, '0451521072'), - (4424, '0446675369'), - (281, '0440466091'), - (4948, '0440416027'), - (2818, '0380012057'), - (4949, '0385474547'), - (2067, '1573220531'), - (1214, '0671020293'), - (4950, '0595259677'), - (2693, '0860074382'), - (4951, '0140386084'), - (176, '0330267388'), - (4952, '1896764096'), - (4953, '1896764096'), - (612, '0679426140'), - (1229, '0671042572'), - (4954, '0812990323'), - (4955, '0930452933'), - (4956, '0930452933'), - (4957, '081269421X'), - (4958, '0385487398'), - (4959, '0609608096'), - (4960, '0609608096'), - (4961, '0312141475'), - (3229, '0743420373'), - (3230, '0743420373'), - (3642, '0099287927'), - (4962, '1558184023'), - (4963, '0684869748'), - (3490, '3442448794'), - (2539, '3442448794'), - (4964, '0689832923'), - (4965, '0590640860'), - (1284, '0060937688'), - (1024, '0440219760'), - (4966, '0553371843'), - (4967, '0916773191'), - (4968, '0916773191'), - (1396, '0679736662'), - (63, '0451209907'), - (4969, '0312954166'), - (1013, '0449221512'), - (4970, '0451409647'), - (4971, '0375707093'), - (4972, '0399149783'), - (115, '0525946284'), - (63, '0385318073'), - (1626, '0061013315'), - (1255, '1400031362'), - (2286, '0804107386'), - (85, '0140435530'), - (4973, '0140435530'), - (4974, '007212170X'), - (4975, '0307120848'), - (4976, '0307120848'), - (3096, '0689846088'), - (4977, '0689846088'), - (35, '0689842708'), - (4978, '0689842708'), - (4979, '0786846461'), - (4980, '0671038311'), - (4981, '0671038311'), - (4982, '0140381538'), - (4983, '0064472612'), - (4984, '0743400771'), - (2723, '0849959306'), - (4985, '0849959306'), - (1013, '0449223612'), - (4986, '0380818817'), - (4987, '0060959940'), - (4988, '0425181863'), - (634, '0439443857'), - (4989, '0061031127'), - (4990, '0824511743'), - (4991, '0875963021'), - (4992, '0399526005'), - (4993, '0399526005'), - (4994, '044020352X'), - (3856, '0156012197'), - (4995, '0156012197'), - (536, '0449221180'), - (4996, '3423703040'), - (2568, '3423703040'), - (4997, '0425179206'), - (1001, '0553107755'), - (270, '1853260150'), - (1706, '1853262390'), - (270, '0140010211'), - (1783, '0393314804'), - (4998, '1591291666'), - (4999, '0843944331'), - (888, '0440403782'), - (2126, '0312168748'), - (5000, '0590897543'), - (5001, '0425155463'), - (5002, '0312266065'), - (5003, '0843952008'), - (5004, '0385261756'), - (3367, '0671014021'), - (5005, '0671014021'), - (5006, '0393093247'), - (5007, '0812549325'), - (281, '0439101360'), - (438, '0439101360'), - (2002, '038073186X'), - (5008, '0140621598'), - (60, '0440195934'), - (5009, '088038722X'), - (5010, '088038722X'), - (5011, '0844295582'), - (631, '0140314202'), - (1755, '0440998050'), - (5012, '0439319137'), - (3036, '0330352091'), - (5013, '0140014845'), - (1578, '0060269928'), - (4909, '0553299328'), - (5014, '0743464672'), - (5015, '155874424X'), - (4500, '155874424X'), - (2814, '2070414574'), - (5016, '1853262803'), - (274, '014032870X'), - (5017, '014032870X'), - (5018, '0345396669'), - (5019, '0316181358'), - (1263, '0385468709'), - (5020, '0385422938'), - (5021, '0060165979'), - (5022, '038542194X'), - (3799, '1565122968'), - (5023, '0486280594'), - (5024, '0843114797'), - (612, '0804115613'), - (5025, '0375724958'), - (5024, '067973855X'), - (5024, '0679771832'), - (732, '0345340426'), - (95, '0679745203'), - (468, '0679777482'), - (468, '0679777474'), - (468, '0679777466'), - (468, '0679777458'), - (351, '0345449347'), - (5026, '0879100362'), - (5027, '0879100362'), - (5028, '0312252927'), - (5027, '0312266510'), - (5029, '0151005346'), - (1044, '0151005346'), - (1268, '0156006391'), - (5030, '0156006391'), - (468, '067977744X'), - (3541, '0156005204'), - (3542, '0156005204'), - (3541, '0156006243'), - (3542, '0156006243'), - (3541, '0156010593'), - (5031, '0156010593'), - (461, '0375701907'), - (3541, '0156004011'), - (3542, '0156004011'), - (1268, '0679777547'), - (5029, '0679777547'), - (351, '034543479X'), - (1787, '0345396456'), - (427, '1853262714'), - (3288, '1853262714'), - (5032, '1853262714'), - (5033, '1853262714'), - (5034, '0888012055'), - (5033, '0773759697'), - (5035, '1895837618'), - (779, '0375705198'), - (5036, '1550548166'), - (5037, '0385720327'), - (5038, '0385720327'), - (5039, '0747545634'), - (5040, '0374521956'), - (5041, '0889951926'), - (367, '0449910830'), - (5042, '0771079567'), - (5043, '0571212212'), - (5044, '0671439162'), - (5045, '0345419073'), - (5046, '0590419447'), - (5047, '0425166090'), - (5048, '0440227011'), - (5049, '067188784X'), - (5050, '0671041657'), - (5051, '0894808249'), - (5052, '0590475363'), - (644, '044021873X'), - (5053, '0449223345'), - (5054, '0764227890'), - (5055, '0060244151'), - (5056, '0060244151'), - (5057, '0684829223'), - (5058, '1573060313'), - (5057, '1573060313'), - (5059, '0881337269'), - (5060, '0881337269'), - (3359, '0671872648'), - (5061, '0375758585'), - (5062, '0061013579'), - (5063, '0061013579'), - (5064, '0061013579'), - (3172, '0449223833'), - (5065, '0394520939'), - (5066, '0394583256'), - (1987, '0316592382'), - (5067, '0439372941'), - (747, '0439372941'), - (563, '039913543X'), - (151, '0517092816'), - (574, '0679412956'), - (25, '0394423291'), - (552, '0688156142'), - (59, '0399137734'), - (3704, '0316955191'), - (337, '0515123498'), - (2770, '0439139600'), - (1825, '0439139600'), - (734, '0670894370'), - (1186, '0441007554'), - (5068, '1555910807'), - (5069, '0553271105'), - (2856, '0385495641'), - (734, '0670031208'), - (5070, '0670031208'), - (580, '0525246606'), - (5071, '1880238667'), - (5072, '1880238667'), - (5073, '0822315890'), - (5074, '0140100032'), - (5075, '0684870673'), - (3406, '093914994X'), - (955, '0552143774'), - (5076, '0886193540'), - (5077, '0142004278'), - (5078, '0451192036'), - (5079, '0451192036'), - (5080, '0451192036'), - (5081, '0310217598'), - (5080, '031021758X'), - (5082, '1568654782'), - (915, '0140434186'), - (5083, '0140434186'), - (217, '0141182458'), - (5084, '0595140459'), - (5085, '0913559482'), - (1699, '0517189186'), - (4492, '0374148570'), - (149, '9681336089'), - (5086, '0375700668'), - (244, '0743204239'), - (859, '0192833863'), - (5087, '0192833863'), - (5088, '067931041X'), - (5089, '0805041508'), - (5090, '0380977702'), - (5091, '096774590X'), - (4931, '0446531480'), - (1144, '3442353971'), - (5092, '3442353971'), - (890, '0451207645'), - (5093, '0316092738'), - (5094, '0316092738'), - (5095, '0743428188'), - (2568, '0590598856'), - (5096, '0061000078'), - (1214, '0671670689'), - (247, '0449000869'), - (128, '0446605581'), - (2224, '0441694543'), - (5097, '044640344X'), - (5098, '1572972181'), - (3379, '0345395069'), - (5099, '0425148343'), - (5100, '0515117552'), - (5101, '042514545X'), - (5102, '0553298836'), - (5098, '0425156729'), - (5101, '042516988X'), - (5098, '0380794772'), - (1211, '0671011375'), - (5103, '0515124796'), - (3912, '0515126489'), - (461, '0679753826'), - (5104, '0380974282'), - (5105, '0684196778'), - (61, '0399142851'), - (61, '0399146253'), - (129, '0316693294'), - (5106, '0892964111'), - (1998, '0671042742'), - (5107, '0385480385'), - (937, '0385488424'), - (327, '0553096834'), - (3795, '0425130746'), - (2655, '0553102133'), - (1739, '0345391330'), - (49, '0345334019'), - (5108, '055356966X'), - (554, '0553574663'), - (4444, '0451180054'), - (1498, '0812590554'), - (5109, '055357924X'), - (5110, '0061093920'), - (5111, '0671898779'), - (1144, '0812571991'), - (1331, '0451199650'), - (5112, '0451197429'), - (1876, '0553102346'), - (563, '0399146504'), - (5113, '0312143648'), - (565, '0553099590'), - (644, '038530000X'), - (5114, '3499233312'), - (5115, '0140620508'), - (5116, '0140620508'), - (5117, '1895565545'), - (89, '0416469604'), - (5118, '1841120685'), - (5119, '1841120685'), - (5120, '1841120685'), - (5121, '1841120685'), - (4794, '0044402449'), - (5122, '0749425628'), - (5123, '0749425628'), - (5124, '0273622218'), - (5125, '0751530328'), - (56, '0140431020'), - (282, '0140431020'), - (5126, '0749418222'), - (5127, '0241141095'), - (1137, '0450547434'), - (5128, '0340766638'), - (412, '0860680649'), - (5129, '0140040021'), - (698, '2253098183'), - (5130, '0312997159'), - (2035, '0786890061'), - (414, '0553279378'), - (5131, '0440209986'), - (4473, '0380788640'), - (4473, '0380788632'), - (4473, '0380717581'), - (5132, '0684826143'), - (5133, '1551666987'), - (2045, '0425176037'), - (5134, '0156013126'), - (5135, '0156013126'), - (5136, '0446610941'), - (145, '0425083837'), - (2011, '0425135721'), - (5137, '0515130540'), - (2181, '0515090654'), - (565, '0553292722'), - (346, '0380721643'), - (346, '0425183750'), - (2963, '0445408502'), - (5138, '0553270486'), - (913, '0380798573'), - (464, '0452282268'), - (5139, '0786867787'), - (5140, '0307001253'), - (5141, '0590484133'), - (5142, '0590484133'), - (5143, '067982412X'), - (5144, '067982412X'), - (5145, '0373227272'), - (5146, '0373872410'), - (3359, '0671550578'), - (3359, '0671550764'), - (5147, '0373226918'), - (5148, '0761118691'), - (5149, '0671680080'), - (5150, '0671680080'), - (2542, '0671680080'), - (39, '0345354621'), - (176, '0671442686'), - (176, '0671525808'), - (1101, '0671684027'), - (5151, '0671701304'), - (5152, '0380773066'), - (266, '0812516214'), - (5153, '0446602299'), - (5154, '0446602299'), - (5155, '0312954115'), - (5156, '0671742493'), - (335, '0451511328'), - (397, '0671441515'), - (5157, '0867211725'), - (5158, '0867211725'), - (5159, '0140111891'), - (5160, '0140111891'), - (5161, '0061054143'), - (2977, '0449220893'), - (5162, '0064420485'), - (5163, '0064420485'), - (5164, '0590939351'), - (5165, '078688214X'), - (5166, '078688214X'), - (5167, '078688214X'), - (5168, '0446391301'), - (76, '0743233026'), - (5169, '3442722403'), - (5170, '3442722403'), - (5171, '3442720117'), - (5172, '3442720117'), - (502, '0140621873'), - (151, '0060119071'), - (5173, '0875963234'), - (3807, '0875963234'), - (4849, '0875963234'), - (5174, '0449911462'), - (2888, '0931580587'), - (5175, '0312123337'), - (5176, '0965603695'), - (3805, '0068596022'), - (5177, '0068596022'), - (5178, '0066620732'), - (5179, '0066620732'), - (5180, '0525446052'), - (5181, '0525446052'), - (5182, '0440417449'), - (5183, '0440417449'), - (5184, '970651452X'), - (5185, '0613282728'), - (5186, '0802130119'), - (5187, '0802130119'), - (644, '0440224705'), - (1432, '0312983867'), - (1490, '045120994X'), - (1484, '0345459202'), - (2977, '0312955731'), - (1001, '0553205803'), - (342, '0553541633'), - (665, '0684800713'), - (720, '1566840287'), - (2109, '0062500260'), - (5188, '0380793229'), - (5189, '0345304659'), - (5190, '0786888083'), - (5188, '0345344464'), - (821, '0374115540'), - (5191, '0374115540'), - (2805, '0671718436'), - (665, '0684163268'), - (1255, '1400031346'), - (5192, '0754101495'), - (633, '0446524131'), - (5193, '0446524131'), - (9, '0446612626'), - (5194, '1565076613'), - (5195, '1565076613'), - (5196, '1565076613'), - (5197, '1565076613'), - (135, '0316781142'), - (729, '0609801279'), - (5198, '3257230915'), - (5199, '2035877393'), - (5200, '2290301531'), - (2455, '2070374874'), - (5201, '2070374874'), - (1337, '0060008024'), - (5202, '3442725577'), - (5203, '3442725577'), - (3912, '051511264X'), - (5204, '0425052028'), - (5205, '0425052028'), - (176, '0330491199'), - (5206, '0373709323'), - (5207, '0373710062'), - (2754, '0782141676'), - (5208, '0399526609'), - (574, '0345389417'), - (145, '0425147584'), - (1883, '0451177037'), - (5209, '0373710291'), - (5210, '0451406079'), - (1497, '0373471564'), - (1828, '0373710267'), - (5211, '037370870X'), - (1822, '0373709307'), - (1828, '0373708726'), - (5212, '0373710283'), - (919, '0373710054'), - (1822, '0373710356'), - (5213, '037371002X'), - (5214, '0373710259'), - (5215, '0373710275'), - (3916, '0373484380'), - (5216, '0373484380'), - (5217, '0373484380'), - (5218, '0795151314'), - (5219, '0940863332'), - (5220, '1565924975'), - (142, '0684853523'), - (5221, '0060193395'), - (5222, '0060193395'), - (484, '0446363669'), - (5223, '0373471645'), - (1828, '0373710208'), - (5224, '0373710186'), - (3115, '0373484518'), - (5225, '0373484518'), - (5226, '0373484518'), - (5227, '0373710216'), - (1822, '0373710070'), - (433, '0345339495'), - (1214, '0671525433'), - (2313, '0060675357'), - (2504, '0345302575'), - (4730, '0812571231'), - (606, '0812571231'), - (5228, '0345386868'), - (5229, '0151002444'), - (5230, '0151002444'), - (5231, '0312152000'), - (3333, '0452283442'), - (598, '0440918022'), - (5232, '1853260274'), - (5233, '081254949X'), - (574, '0345404319'), - (1696, '0671721887'), - (1214, '0671682830'), - (187, '0688086888'), - (187, '0312864663'), - (5234, '0312864663'), - (3359, '0812510488'), - (5235, '0345441494'), - (5236, '0609609017'), - (2929, '2253041939'), - (5237, '2020326450'), - (5238, '0671015583'), - (5239, '0140248943'), - (5240, '1894770099'), - (5241, '1894770099'), - (5242, '0571057063'), - (2911, '0670887315'), - (906, '0425098451'), - (3643, '0804105138'), - (5243, '0671664921'), - (5244, '0938665650'), - (1164, '0553572245'), - (1387, '0373834756'), - (5245, '0373834756'), - (5246, '0373834756'), - (94, '1568652895'), - (4200, '0786885912'), - (5247, '0307101479'), - (151, '0061000299'), - (913, '0380731207'), - (5248, '1550130684'), - (5249, '0471142425'), - (4315, '0440413281'), - (4768, '0345432479'), - (5096, '0446609560'), - (1732, '0449912108'), - (5250, '0531150011'), - (463, '067940712X'), - (5251, '1896300421'), - (223, '188259312X'), - (1226, '0609810030'), - (1493, '0670894699'), - (5252, '0452283086'), - (2990, '0553573292'), - (5253, '0553573292'), - (5254, '0448168278'), - (5255, '0679810528'), - (5256, '0679810528'), - (151, '0061000035'), - (1725, '038081093X'), - (199, '2910188132'), - (5257, '0684867974'), - (578, '0060924349'), - (5258, '0373289170'), - (743, '0671627759'), - (231, '0440225116'), - (743, '0316171638'), - (231, '0440214009'), - (5259, '342312203X'), - (351, '3257211945'), - (5260, '3257211945'), - (1001, '3499156717'), - (5261, '3499156717'), - (221, '3442448387'), - (2487, '3257231008'), - (2487, '0330346261'), - (5262, '0671743481'), - (3078, '067187876X'), - (274, '0140320431'), - (5016, '0140320431'), - (5263, '0743471520'), - (1180, '044166251X'), - (5264, '0713724048'), - (5265, '0006727492'), - (1755, '0440999197'), - (5266, '0471062189'), - (5267, '0471062189'), - (5268, '0375758453'), - (5269, '0843950552'), - (3662, '0553560719'), - (142, '0451168615'), - (5270, '0028617363'), - (1965, '0886779146'), - (5271, '0886779146'), - (2513, '0886779146'), - (1366, '0385334206'), - (1815, '0671027492'), - (1816, '0671027492'), - (949, '1853260010'), - (4764, '0449220605'), - (5272, '0553379267'), - (56, '1853260002'), - (1519, '1853260614'), - (1328, '0553560735'), - (1815, '0671027506'), - (1816, '0671027506'), - (1815, '0671024345'), - (1816, '0671024345'), - (5273, '0345384229'), - (5274, '0345384229'), - (4794, '0345384229'), - (580, '0449006883'), - (4710, '0060952822'), - (5275, '0553106651'), - (5276, '0671025538'), - (92, '0345413997'), - (1305, '1853260444'), - (1305, '1853260770'), - (3863, '0312863853'), - (5277, '0312863853'), - (5278, '0671026291'), - (59, '0425099334'), - (5279, '3442541425'), - (2604, '3442541425'), - (149, '067972205X'), - (5280, '067972205X'), - (2007, '0446912069'), - (5281, '0802112803'), - (4190, '0399135847'), - (5282, '0813517508'), - (2150, '067978148X'), - (5283, '0871135701'), - (5284, '1551667479'), - (3225, '0671027115'), - (5285, '0671785141'), - (5286, '006000777X'), - (76, '0671891650'), - (5287, '0671891650'), - (218, '0060391022'), - (5288, '1577330080'), - (3924, '0786711035'), - (5289, '0618263276'), - (142, '0684853507'), - (5290, '0385492235'), - (2633, '0761516735'), - (5291, '0060931353'), - (5292, '0345407083'), - (5293, '1570671222'), - (5294, '080213338X'), - (5295, '0722513585'), - (5296, '0385488947'), - (5297, '0446522422'), - (5298, '0446522384'), - (5299, '0345380673'), - (5300, '0446524182'), - (553, '0670865796'), - (5301, '0525241604'), - (5302, '0399146296'), - (5303, '031230238X'), - (5304, '0312859589'), - (5305, '0802139566'), - (5306, '0805042156'), - (5307, '155870275X'), - (640, '006019295X'), - (423, '0385484003'), - (488, '0060185716'), - (5308, '0517163128'), - (5309, '0671521004'), - (5310, '1401300065'), - (488, '0061031542'), - (5311, '0618197338'), - (1987, '0618197338'), - (2182, '0399237232'), - (129, '0316603570'), - (737, '0316603570'), - (3434, '0312318898'), - (1432, '0312289723'), - (5312, '0671659154'), - (1094, '0553801945'), - (5313, '0811828301'), - (944, '0765347156'), - (5314, '0740713949'), - (5315, '0836269195'), - (5316, '0836269195'), - (250, '0060745908'), - (1013, '0425192725'), - (1094, '0553579525'), - (485, '0380792745'), - (488, '0688167829'), - (944, '0812517024'), - (183, '0399146652'), - (5317, '006056198X'), - (973, '0553573985'), - (2371, '0312065647'), - (2232, '0312065647'), - (5318, '0312065647'), - (2544, '0671578448'), - (5319, '0671042831'), - (4501, '0312199406'), - (3394, '0393046974'), - (5320, '0312968884'), - (2393, '0756401356'), - (867, '0671656155'), - (5321, '0968288308'), - (760, '0808514121'), - (5322, '0345450698'), - (81, '0375412530'), - (5323, '0969799152'), - (5324, '0969799152'), - (5325, '0969799152'), - (5326, '0969799152'), - (5327, '0696218364'), - (1097, '0787123730'), - (1679, '1565115430'), - (5328, '1565115430'), - (5329, '1565115430'), - (5330, '1565115430'), - (1099, '1574533525'), - (5331, '0140285679'), - (5332, '0824518977'), - (3079, '0553569031'), - (152, '1558008764'), - (3223, '0553472704'), - (5333, '0553472704'), - (1395, '1559273909'), - (5334, '1559273909'), - (154, '1402511787'), - (5335, '1402511787'), - (5336, '0671779664'), - (5337, '0671779664'), - (223, '0804114609'), - (5338, '0743249275'), - (5339, '0743249275'), - (223, '0345438825'), - (206, '0380868768'), - (145, '039915079X'), - (5340, '0670894508'), - (5341, '0312983743'), - (553, '069452526X'), - (233, '0385729340'), - (3291, '0517122707'), - (4814, '0679463135'), - (5342, '0375508716'), - (5343, '089281859X'), - (2559, '075284332X'), - (5344, '9724115380'), - (5345, '0451450523'), - (5346, '0752801716'), - (559, '0330331973'), - (5347, '0006510019'), - (5346, '058621089X'), - (5348, '0864423705'), - (5349, '4770016964'), - (5350, '4770016964'), - (1532, '0586045449'), - (5351, '0586200967'), - (5352, '0441132448'), - (905, '0553212427'), - (905, '0553212419'), - (309, '0553577778'), - (5353, '0671037307'), - (5352, '0671037293'), - (5352, '0671037285'), - (1432, '031298328X'), - (3399, '031298328X'), - (131, '0451205626'), - (2823, '0380802937'), - (2589, '0446606456'), - (237, '0449223043'), - (237, '0553284118'), - (2823, '0380802929'), - (374, '0446364622'), - (138, '0140060898'), - (1754, '0671737791'), - (1575, '0684826127'), - (578, '0060920335'), - (4692, '0345423135'), - (2404, '1556613105'), - (1491, '0373483937'), - (734, '0142002585'), - (5069, '0142002585'), - (5354, '0425068145'), - (5355, '0891079149'), - (5356, '068482440X'), - (3159, '0373484488'), - (1491, '0373484488'), - (5357, '0373484488'), - (5358, '0764220314'), - (5359, '0684800993'), - (571, '0451082028'), - (5360, '0802726224'), - (5361, '0156002078'), - (5362, '0764223666'), - (5363, '156476706X'), - (5364, '0800757181'), - (5081, '1556618662'), - (916, '0891073906'), - (5365, '187895105X'), - (369, '0373218125'), - (485, '0380728133'), - (5366, '1586420429'), - (220, '0060932147'), - (225, '0375724389'), - (540, '0375422412'), - (5081, '0764223291'), - (81, '0449003981'), - (495, '037570924X'), - (5367, '0812930088'), - (5368, '0812930088'), - (3458, '0345435168'), - (5369, '0786886323'), - (4101, '0747541604'), - (5370, '0840775717'), - (1867, '0061009482'), - (552, '0380730847'), - (4577, '0373243820'), - (5371, '0373164394'), - (5372, '0345441265'), - (304, '1573227528'), - (5373, '038078954X'), - (2823, '0380819635'), - (63, '0440221595'), - (5374, '0316782475'), - (1937, '0525947299'), - (5375, '0140115773'), - (5376, '0060198184'), - (5377, '0878332928'), - (3333, '0525947736'), - (367, '0804119430'), - (5378, '0618118810'), - (2997, '0618118810'), - (330, '0449906515'), - (1282, '0671038443'), - (5379, '0786884649'), - (5378, '0786865539'), - (1981, '0553263811'), - (1746, '1857988884'), - (5380, '0747256675'), - (3159, '0380767643'), - (955, '0440222656'), - (3972, '0380569035'), - (3159, '0380767635'), - (5381, '0380711982'), - (1945, '0380711982'), - (5382, '0312904568'), - (4125, '0452282063'), - (5383, '0192833170'), - (5384, '0192833170'), - (1272, '0140189351'), - (1232, '0140189351'), - (5385, '0671622021'), - (3086, '0486289990'), - (5386, '0525468633'), - (4520, '0441000150'), - (606, '0671878662'), - (822, '0070064547'), - (5387, '0897331222'), - (5388, '1557736022'), - (252, '044022392X'), - (4732, '0446605913'), - (377, '0553254642'), - (217, '0553213806'), - (5389, '0553213806'), - (501, '0451410025'), - (247, '0804118558'), - (5390, '0380808641'), - (5387, '1557735417'), - (5126, '0385722109'), - (5391, '1931166196'), - (5392, '0947782753'), - (574, '0679433015'), - (574, '0394587863'), - (5393, '0517150646'), - (2779, '0440136482'), - (2780, '0440136482'), - (5394, '0440136482'), - (5395, '0867163968'), - (5396, '0867163968'), - (5397, '0867163968'), - (5398, '0883781042'), - (5399, '0913866156'), - (5400, '0094717907'), - (5401, '1887161120'), - (5400, '0385188579'), - (5400, '0451196805'), - (5400, '0385132786'), - (5400, '0671632949'), - (5402, '0767901576'), - (5403, '0316899984'), - (5404, '3423130180'), - (5405, '0671820478'), - (5406, '0843947888'), - (412, '0385471106'), - (1679, '014029628X'), - (5407, '3473581534'), - (5408, '3473581534'), - (5409, '3473581534'), - (965, '0590425919'), - (5410, '0394719557'), - (5411, '0441478123'), - (5412, '006019393X'), - (1214, '0743428668'), - (161, '1568650426'), - (5413, '1571742859'), - (5414, '3462030426'), - (5413, '3462030426'), - (290, '3596125723'), - (892, '006097141X'), - (5415, '0380974487'), - (199, '325706277X'), - (200, '325706277X'), - (5416, '0517703491'), - (160, '0739412930'), - (5417, '0739413279'), - (109, '0821749889'), - (5418, '0373970196'), - (5419, '0553563734'), - (1196, '0515129224'), - (1196, '0671676237'), - (1116, '0553801813'), - (2006, '0380016974'), - (5420, '0380809087'), - (5421, '0609805509'), - (3998, '0886778158'), - (3998, '0886778166'), - (4455, '0671025945'), - (5422, '0441009077'), - (5423, '0375509089'), - (2168, '0449005844'), - (554, '044922046X'), - (2201, '0671877836'), - (2201, '0671876813'), - (1118, '0441090435'), - (1537, '0425181685'), - (1696, '0743435583'), - (1196, '0515130923'), - (5424, '055357762X'), - (2276, '0380802325'), - (5425, '0425173356'), - (554, '0553572040'), - (2201, '0671721631'), - (1537, '0345435273'), - (2006, '0380814803'), - (5426, '0399149678'), - (5427, '0671035460'), - (3115, '0778320286'), - (3465, '0451212169'), - (1754, '0671871005'), - (3115, '0373218877'), - (5428, '0755308530'), - (5429, '0451188713'), - (5430, '0974087203'), - (63, '0316095133'), - (5431, '1573221597'), - (5432, '1573221597'), - (262, '0064472272'), - (5433, '0440224748'), - (5434, '3492229352'), - (5435, '0140446745'), - (5436, '0140446745'), - (5437, '0140446745'), - (5438, '0486285537'), - (3608, '0805210555'), - (5439, '0805210555'), - (1732, '0805210555'), - (5440, '0451628047'), - (5441, '0451628047'), - (284, '0689839618'), - (5442, '0689839618'), - (1159, '0670878073'), - (5443, '0440114330'), - (2303, '0061059323'), - (5444, '0061059323'), - (5445, '0764228943'), - (5446, '0764228943'), - (5081, '0764228072'), - (94, '0880384433'), - (532, '0515128600'), - (458, '0553583980'), - (369, '0515121843'), - (5447, '0553560220'), - (5448, '3423130148'), - (1179, '0312872372'), - (5449, '0071364498'), - (5450, '0071364498'), - (915, '0486292568'), - (5451, '0312952716'), - (5452, '0446357928'), - (5453, '0375714529'), - (335, '0451527712'), - (5454, '0451527712'), - (5455, '1565049489'), - (5456, '0486270734'), - (5457, '1888054069'), - (5458, '087542001X'), - (5459, '0671474308'), - (5460, '0345432223'), - (5461, '0876544766'), - (5462, '019283097X'), - (5463, '019283097X'), - (5464, '0831705183'), - (56, '0451525892'), - (282, '0451525892'), - (5465, '0446391360'), - (4710, '0060965819'), - (5466, '0385044011'), - (5467, '0451520955'), - (5468, '0446373559'), - (5469, '0883657147'), - (2713, '0671039415'), - (5470, '0156612062'), - (5471, '0156612062'), - (5472, '0156612062'), - (5473, '0517692007'), - (5474, '0679603301'), - (1203, '0312130279'), - (5475, '0847813754'), - (5476, '0140441034'), - (5477, '0140441034'), - (1597, '0140443215'), - (5476, '0140443215'), - (5478, '0140443215'), - (4354, '0871567865'), - (5479, '0871567865'), - (5480, '0375501517'), - (5481, '0679410341'), - (145, '0399147837'), - (5482, '0399147837'), - (188, '0553354779'), - (2181, '051511331X'), - (1013, '0399147195'), - (1432, '0312265840'), - (60, '0743206029'), - (2249, '038080025X'), - (369, '0515136263'), - (5483, '0425157784'), - (5108, '0553579312'), - (346, '0380725827'), - (346, '0380728265'), - (60, '0684835959'), - (5484, '0786884592'), - (5485, '0786884592'), - (5486, '0312958358'), - (135, '0316780375'), - (127, '0446611948'), - (5487, '067151699X'), - (5488, '0452280958'), - (5489, '078601525X'), - (142, '0452279607'), - (142, '0670272663'), - (142, '0670451932'), - (1996, '0849911788'), - (559, '0333568745'), - (2656, '067943612X'), - (142, '0743436210'), - (5490, '0061098280'), - (5491, '0061098280'), - (1937, '0440236738'), - (5492, '0449902803'), - (5493, '0399138250'), - (2968, '0804105820'), - (1875, '0671864416'), - (5494, '0671864416'), - (5495, '0671864416'), - (5496, '0553370715'), - (5497, '0201101904'), - (5498, '0671536214'), - (5499, '0440224721'), - (175, '0446604844'), - (131, '0061044490'), - (1883, '0451204514'), - (5498, '0440220696'), - (5500, '0449230643'), - (5501, '0380564998'), - (5502, '0671570072'), - (1041, '0880382651'), - (5503, '0880382651'), - (5504, '0802730981'), - (1196, '1551665557'), - (971, '1551668610'), - (552, '0380817691'), - (565, '0553582526'), - (1211, '0684859734'), - (2769, '0345426037'), - (2768, '0671887971'), - (5505, '0345401964'), - (1753, '0312983387'), - (5506, '055337396X'), - (5507, '006104055X'), - (115, '0451173139'), - (61, '0671038567'), - (1628, '0451152190'), - (180, '0141000198'), - (1395, '067976268X'), - (5508, '0425188213'), - (2575, '0425192121'), - (5509, '0451184785'), - (554, '055309999X'), - (55, '0380804743'), - (5510, '0679734163'), - (1871, '006000469X'), - (554, '0553578316'), - (55, '0380770334'), - (498, '0743225325'), - (5511, '0446365386'), - (5512, '0804111634'), - (5511, '0804111626'), - (5513, '1930722109'), - (882, '055321330X'), - (1084, '055321330X'), - (5514, '006091341X'), - (128, '0446519804'), - (128, '0446527017'), - (337, '0399148450'), - (2079, '0451201515'), - (2081, '0451201515'), - (989, '0671727796'), - (5515, '0440194253'), - (1326, '0446523372'), - (1327, '0446523372'), - (5516, '0743456378'), - (3259, '0439043999'), - (3260, '0439043999'), - (5517, '0439043999'), - (3259, '0590481150'), - (3260, '0590481150'), - (5518, '0590481150'), - (2599, '0812504798'), - (5519, '0440009782'), - (5520, '1565540387'), - (5521, '0440229464'), - (5522, '0064440257'), - (5523, '0064440257'), - (256, '0061020702'), - (5524, '0425130223'), - (142, '0451161351'), - (256, '0061057649'), - (59, '0425100650'), - (5525, '0689845936'), - (5526, '0440202086'), - (5527, '0140060324'), - (5528, '0091841844'), - (5529, '190085032X'), - (5530, '190085032X'), - (1355, '0440509238'), - (369, '0373218036'), - (2928, '2070725804'), - (5531, '0349113858'), - (2531, '0671047329'), - (5532, '0451451155'), - (5531, '0061056219'), - (5531, '0451453328'), - (5531, '0451451384'), - (5531, '0451451562'), - (5531, '0451451805'), - (5533, '0399217797'), - (5534, '0785812245'), - (5535, '0785812245'), - (5536, '1558747575'), - (5537, '0395311292'), - (5538, '034542705X'), - (5539, '0312860374'), - (2006, '0380762595'), - (2006, '0380774933'), - (3779, '0440202507'), - (1196, '0515131741'), - (1196, '0515136182'), - (1793, '0515136948'), - (2169, '0451206428'), - (2823, '0380790890'), - (1092, '0743477081'), - (914, '0380752131'), - (583, '0345388593'), - (3779, '044020254X'), - (2168, '0515135453'), - (1359, '0380812037'), - (1116, '0553581872'), - (5540, '0380818647'), - (3750, '0553583395'), - (1116, '055358619X'), - (532, '0515125628'), - (2747, '0553565249'), - (160, '055357695X'), - (1196, '0671019619'), - (1196, '0446363731'), - (1196, '0671019651'), - (1196, '0671523074'), - (1628, '0553572326'), - (2987, '0061059838'), - (5541, '0061059838'), - (5542, '0061059838'), - (61, '0425172546'), - (5543, '074347628X'), - (1116, '0553586181'), - (743, '0061094609'), - (5544, '0486273776'), - (5545, '0931432901'), - (5546, '0060256257'), - (833, '0060256257'), - (689, '0679427279'), - (5547, '055357809X'), - (2913, '0380711524'), - (5548, '0553261509'), - (374, '0446341991'), - (2468, '0140113428'), - (5549, '0821713000'), - (939, '006101009X'), - (939, '0061092533'), - (5550, '0449211886'), - (1428, '0590466194'), - (5551, '0811827631'), - (988, '0140068767'), - (1265, '0553278398'), - (1265, '0345308980'), - (142, '0743235150'), - (5552, '2867448999'), - (1552, '0515104191'), - (1891, '0441885691'), - (5553, '0451628039'), - (760, '0140177396'), - (5554, '1570624380'), - (56, '0760700435'), - (5555, '048627084X'), - (5556, '048627084X'), - (5557, '0802713823'), - (5558, '051718608X'), - (5559, '051718608X'), - (1977, '0486278166'), - (56, '0140373373'), - (5560, '0140373373'), - (401, '0486408787'), - (181, '0486408787'), - (553, '0451186923'), - (142, '0451184114'), - (484, '0446356573'), - (1840, '155166545X'), - (1013, '0553280341'), - (1013, '0553280368'), - (574, '067942573X'), - (3863, '0812570944'), - (1953, '078688939X'), - (142, '0451176464'), - (5561, '0671894455'), - (142, '0451186362'), - (5562, '1570431108'), - (5563, '1570431108'), - (5564, '0451405692'), - (129, '0446607657'), - (5111, '0446611662'), - (5565, '0140067841'), - (5566, '1878379992'), - (5567, '0892811706'), - (5568, '0684150700'), - (5569, '0517463008'), - (2282, '081120457X'), - (5570, '081120457X'), - (5571, '0395120985'), - (5572, '0910395039'), - (2126, '0312901437'), - (397, '0553212923'), - (5573, '0553212923'), - (5574, '0553212923'), - (39, '0345354613'), - (5575, '0967231434'), - (128, '0553104039'), - (5576, '038532748X'), - (1234, '0380713802'), - (56, '0140430725'), - (5577, '0140430725'), - (5578, '0345356640'), - (3078, '0812513401'), - (5579, '0940685590'), - (4915, '0898159318'), - (5580, '0671319825'), - (5581, '0451456491'), - (5580, '0451450957'), - (5580, '0451454359'), - (2307, '067187747X'), - (1186, '0441569595'), - (5582, '0843948302'), - (5583, '1573229105'), - (3125, '0375505148'), - (4286, '0345291409'), - (145, '0425147363'), - (876, '0425147363'), - (3407, '0425147363'), - (5584, '0671731424'), - (203, '034068948X'), - (686, '0449238083'), - (5585, '0747204233'), - (490, '0385333919'), - (536, '0449001245'), - (330, '0449001245'), - (5586, '0449001245'), - (1096, '0061099570'), - (5587, '0061099570'), - (5588, '0936552034'), - (5589, '0375750002'), - (2694, '0425165582'), - (1337, '0380820293'), - (1265, '0451141296'), - (2513, '0451141296'), - (5590, '0451141296'), - (5591, '0312980205'), - (971, '0743467345'), - (798, '0679889175'), - (798, '0679801111'), - (5592, '0871236575'), - (5593, '1410729435'), - (178, '0395775396'), - (5594, '0743434021'), - (5595, '0440164125'), - (5596, '0515116297'), - (1498, '0812550765'), - (5597, '0888011091'), - (5598, '0425183653'), - (5599, '0373765703'), - (3467, '037369167X'), - (5600, '0373250134'), - (2587, '0446363162'), - (3469, '0373153279'), - (1491, '0373153260'), - (5601, '0345375556'), - (2701, '1573221082'), - (3086, '068480154X'), - (56, '0140430059'), - (5602, '0140430059'), - (1628, '0553569619'), - (5603, '0770104274'), - (5604, '0451172825'), - (129, '0446613843'), - (737, '0446613843'), - (118, '0679436448'), - (301, '0553580930'), - (5605, '1558216847'), - (5606, '0590313185'), - (5607, '0590313185'), - (5608, '0590313185'), - (5609, '0590462253'), - (5610, '0590462253'), - (1282, '0671024094'), - (5611, '1565070054'), - (5610, '1565070461'), - (5612, '1556618646'), - (5444, '1556618646'), - (5611, '1556618638'), - (5444, '1556618638'), - (5611, '155661862X'), - (5444, '155661862X'), - (5610, '0890819696'), - (5610, '1565071298'), - (5613, '1556618409'), - (5612, '1556618395'), - (5614, '0849942357'), - (5613, '0849937221'), - (5613, '0849917069'), - (5613, '0849917050'), - (5615, '0373691580'), - (1005, '0385249683'), - (5616, '0060975849'), - (3259, '059043411X'), - (3260, '059043411X'), - (3791, '0439172187'), - (5617, '0590978802'), - (4222, '0439051630'), - (5618, '0439051630'), - (5619, '0439160200'), - (5620, '0439160219'), - (5621, '0439160219'), - (5622, '068482292X'), - (5623, '0393308189'), - (5624, '0446676136'), - (5625, '0446676136'), - (5626, '0345394658'), - (5625, '0345301110'), - (5627, '068485287X'), - (2669, '0140450181'), - (5628, '0140450181'), - (2669, '014045022X'), - (5627, '014045022X'), - (5629, '014045022X'), - (1432, '0312980140'), - (403, '0553211951'), - (274, '0141301155'), - (89, '0525934960'), - (2572, '0140189645'), - (5630, '0140189645'), - (5631, '0877790388'), - (5632, '0771065175'), - (397, '0451521293'), - (1010, '0385324138'), - (5633, '0679436332'), - (283, '0452277507'), - (5634, '0452277507'), - (5635, '0764222295'), - (5591, '0764222295'), - (2724, '0140327738'), - (5636, '0140367624'), - (5637, '0140367624'), - (5635, '0140367462'), - (5638, '0140367462'), - (5591, '0764221396'), - (5591, '076422400X'), - (5591, '0764225553'), - (5634, '0764222473'), - (5591, '0764222473'), - (5634, '0764221760'), - (5591, '0764221760'), - (1010, '044022425X'), - (5591, '0764221612'), - (5591, '0764221566'), - (1010, '0440217563'), - (1010, '0385319959'), - (5639, '0773674187'), - (5640, '0773674187'), - (5591, '1556619510'), - (175, '0446611778'), - (2453, '1853260363'), - (5641, '0006374093'), - (1084, '0374525188'), - (2344, '0749385359'), - (3608, '0099428644'), - (2596, '0349111367'), - (5642, '0747273146'), - (5643, '034910901X'), - (5644, '0330244078'), - (5645, '0571216420'), - (5646, '0312974620'), - (5647, '0312974620'), - (5648, '0304357278'), - (5649, '0471293334'), - (5650, '0471293334'), - (5651, '1842223739'), - (5652, '0714530387'), - (5653, '0679735291'), - (5654, '0140250328'), - (5655, '1591092744'), - (2805, '3442540356'), - (5656, '0671447483'), - (5657, '0671447483'), - (220, '2070741354'), - (137, '0345385977'), - (5658, '0373441762'), - (5659, '0373441800'), - (5599, '0373250479'), - (108, '0312303467'), - (5660, '0671693190'), - (218, '0670891509'), - (5661, '0312988915'), - (518, '0312988915'), - (1099, '014023313X'), - (5662, '097213011X'), - (5663, '097213011X'), - (563, '0425141233'), - (1320, '0812966813'), - (1244, '0671016776'), - (5664, '0923059008'), - (1030, '0373250428'), - (476, '0345470621'), - (5665, '0060522259'), - (1730, '0312205961'), - (4435, '0743418700'), - (1730, '0399143564'), - (1730, '0399144684'), - (4435, '0425185508'), - (4435, '0140230270'), - (5666, '0140266925'), - (1937, '0525947914'), - (1628, '0345452593'), - (17, '0757300421'), - (18, '0757300421'), - (5667, '0757300421'), - (5668, '0757300421'), - (5669, '076791404X'), - (5670, '0060586125'), - (5671, '0440220432'), - (137, '0446326062'), - (2027, '0671733613'), - (1937, '0440225442'), - (5672, '0575403306'), - (5673, '0375759093'), - (5674, '0590137859'), - (911, '0590137859'), - (5675, '0590137859'), - (5676, '0786845384'), - (5677, '0786845406'), - (5678, '0064442055'), - (5679, '0064442055'), - (5677, '0064440192'), - (5680, '0064440192'), - (2241, '0590470051'), - (2713, '0553480545'), - (4680, '0590417363'), - (4416, '0590442481'), - (2239, '0590440829'), - (1194, '0671879464'), - (2713, '0553484001'), - (1965, '0590373986'), - (1194, '0671879510'), - (2713, '0553480553'), - (2713, '055348284X'), - (2239, '0590482289'), - (2713, '0553482122'), - (5677, '0380716984'), - (5681, '0380716984'), - (274, '0590136011'), - (275, '0590136011'), - (5682, '0590426931'), - (618, '0590426818'), - (618, '0590426869'), - (5683, '0590426869'), - (5684, '0590426850'), - (5682, '0590426850'), - (618, '0590426877'), - (5685, '0590426877'), - (5051, '0590426885'), - (618, '0590426796'), - (596, '0380732726'), - (617, '0380732726'), - (596, '0380709562'), - (617, '0380709562'), - (596, '0380709600'), - (5686, '0380709600'), - (596, '038070952X'), - (617, '038070952X'), - (596, '0380709236'), - (617, '0380709236'), - (1194, '0671955128'), - (1194, '0743437616'), - (5687, '0743437616'), - (1194, '0743437675'), - (5688, '0743437675'), - (1194, '0671001205'), - (1194, '0743406648'), - (1194, '0743437470'), - (5686, '0743437470'), - (906, '0440158613'), - (5689, '0061052493'), - (5690, '0142000396'), - (5691, '0679730346'), - (4604, '0684815028'), - (5692, '0684815028'), - (5693, '0312204264'), - (5694, '0312984863'), - (5695, '0373261136'), - (3606, '0517573199'), - (622, '0060275103'), - (1451, '0679752455'), - (5696, '0525947345'), - (5697, '006001203X'), - (5167, '0375713344'), - (2940, '0805060227'), - (5698, '0890878897'), - (5699, '0890878897'), - (5700, '0091834171'), - (4030, '0451174291'), - (5701, '0451174291'), - (1401, '3596200261'), - (5702, '3596200261'), - (5703, '3518366467'), - (5704, '3129044019'), - (5705, '3404146298'), - (814, '0140293450'), - (5706, '1891480030'), - (458, '055311073X'), - (81, '037540256X'), - (543, '0440207622'), - (5707, '0671004654'), - (5708, '034543630X'), - (1214, '0671759329'), - (2181, '0399142495'), - (543, '0385306059'), - (5405, '0843951044'), - (3282, '0743253973'), - (5709, '1930603401'), - (5710, '0971614504'), - (3448, '006000780X'), - (5405, '0450057062'), - (5405, '0747247838'), - (5711, '0972930949'), - (5405, '0843951842'), - (5712, '0843953837'), - (1615, '042519549X'), - (81, '1400042070'), - (3463, '067084327X'), - (1615, '0425193942'), - (3458, '0375506039'), - (3458, '0345435028'), - (1754, '0345453816'), - (810, '0345464958'), - (345, '0743412753'), - (458, '0553583956'), - (5713, '0446612804'), - (5714, '0618109617'), - (5715, '1401300316'), - (5705, '1889186287'), - (5705, '1881475735'), - (5716, '1881475735'), - (5717, '0972085920'), - (5718, '0972085920'), - (5705, '1889186228'), - (5719, '1892950103'), - (1214, '0671729411'), - (5720, '950028359X'), - (4669, '043912042X'), - (3541, '9722100262'), - (583, '0060177225'), - (5721, '9505112033'), - (5722, '9875500534'), - (5439, '9875500046'), - (5721, '9875500526'), - (2011, '0425128458'), - (1628, '0553568701'), - (5723, '1569471231'), - (5724, '1889199036'), - (5725, '0345442938'), - (5726, '0531058379'), - (906, '0425129616'), - (5727, '1856352498'), - (484, '0688162827'), - (490, '0060083948'), - (5728, '0679892206'), - (5729, '0679892206'), - (5730, '1590521439'), - (4518, '158660970X'), - (5731, '0152024999'), - (567, '0849942845'), - (5732, '158567074X'), - (1409, '2070360024'), - (5733, '0451184025'), - (3608, '0553213695'), - (5734, '0553213695'), - (5735, '0140089373'), - (5736, '0140291946'), - (5737, '0921149611'), - (401, '0460873598'), - (5738, '0889223394'), - (5739, '0138199051'), - (5740, '0771021461'), - (1209, '0446344109'), - (992, '074320395X'), - (5185, '0452008999'), - (135, '0316788228'), - (5741, '0415902029'), - (5742, '0920057861'), - (5743, '0774803436'), - (5744, '0774803436'), - (5745, '0774803436'), - (5746, '1550170732'), - (5747, '013116757X'), - (5748, '0176035400'), - (454, '0192815326'), - (5749, '0192815326'), - (5750, '0192815326'), - (5751, '0948984031'), - (5433, '014002476X'), - (5752, '155861009X'), - (5753, '155861009X'), - (5754, '0671740288'), - (5755, '0951426133'), - (5756, '0704339838'), - (1046, '0375421815'), - (283, '0451519841'), - (1802, '0451519841'), - (901, '0451519841'), - (5757, '0889222371'), - (1514, '006091307X'), - (5758, '0140067779'), - (427, '0553211714'), - (484, '0440160677'), - (5759, '0451158962'), - (583, '0061095869'), - (583, '0345345738'), - (5760, '1859671438'), - (5761, '0870407570'), - (1891, '0441172717'), - (5762, '0751510785'), - (93, '0375803483'), - (5763, '0375803483'), - (5764, '0060956453'), - (5765, '0971400415'), - (821, '0374266441'), - (2199, '0374266441'), - (5766, '0452283876'), - (5767, '0375506292'), - (2713, '0553156691'), - (2713, '0553156810'), - (5768, '0553156950'), - (2713, '0553156950'), - (2713, '0553157159'), - (2713, '0553156888'), - (2713, '0553156357'), - (2713, '0553156535'), - (2713, '0553157272'), - (2713, '0553156241'), - (2713, '0553156284'), - (2713, '0553156098'), - (2713, '0553157078'), - (2713, '0553156411'), - (2713, '0553155881'), - (2713, '0553156063'), - (2713, '0553156632'), - (2713, '0553484346'), - (5769, '0060961023'), - (5770, '0060961023'), - (5771, '0385134444'), - (5772, '0385134444'), - (5773, '0446342963'), - (5774, '0446342963'), - (5775, '0023672609'), - (5776, '1567615325'), - (5777, '0451410327'), - (132, '0553569902'), - (3750, '0553574116'), - (1876, '3442413508'), - (1921, '3442413508'), - (712, '0385479484'), - (848, '3257234015'), - (5778, '3257234015'), - (5779, '0030914566'), - (5780, '0425185796'), - (5781, '087923573X'), - (5782, '1573223328'), - (3912, '0399142614'), - (5783, '0375703128'), - (1704, '0553232320'), - (5784, '0440318688'), - (1532, '0345314980'), - (5785, '3455042457'), - (5098, '0380811812'), - (5786, '0452267110'), - (5787, '0451187261'), - (3591, '0425068293'), - (3591, '0553295233'), - (5788, '0743246071'), - (142, '0743417682'), - (5789, '0385507593'), - (142, '0345441036'), - (580, '0345441036'), - (5790, '0345366700'), - (5789, '0441470017'), - (5789, '0441046371'), - (4655, '0553575708'), - (5791, '0812542843'), - (1186, '0553281747'), - (5792, '1572971967'), - (5793, '1572971967'), - (5794, '1565049314'), - (5795, '1565049314'), - (873, '006109398X'), - (4338, '156947012X'), - (2306, '0312867549'), - (1697, '157322202X'), - (5796, '0879516283'), - (3972, '0879516283'), - (5797, '0879516283'), - (1898, '0812571339'), - (574, '037541200X'), - (5798, '0380732033'), - (5799, '0553278274'), - (565, '0553571885'), - (274, '014034294X'), - (275, '014034294X'), - (5800, '192883244X'), - (5801, '0934641641'), - (5802, '0934641641'), - (5803, '0934641641'), - (5804, '1851820442'), - (5805, '0446671444'), - (5806, '0446671444'), - (596, '0440717949'), - (5807, '0140502343'), - (5808, '0140502343'), - (5809, '0590478346'), - (5810, '0440474655'), - (5811, '0806968532'), - (4333, '0385318413'), - (5812, '1569873291'), - (5813, '1569870381'), - (593, '030701035X'), - (5814, '030701035X'), - (3259, '0439327660'), - (5815, '0439327660'), - (5816, '0439327660'), - (5817, '0439327660'), - (5818, '1885221665'), - (5819, '006441082X'), - (5820, '0590189344'), - (4220, '0590189344'), - (5821, '1561791334'), - (5822, '0553225413'), - (5823, '0451188586'), - (5824, '0451188586'), - (5825, '1561568805'), - (4398, '043921064X'), - (1416, '0717289079'), - (5826, '0842341137'), - (5827, '0439057469'), - (5828, '0439057469'), - (5829, '0590425587'), - (5830, '0440402921'), - (1431, '0316142336'), - (5831, '0310202639'), - (5830, '0310495512'), - (5832, '1889733008'), - (5833, '1889733008'), - (5834, '0440406943'), - (5835, '0440406943'), - (5836, '1856975770'), - (5837, '1568222033'), - (5838, '9531530319'), - (5839, '1567186483'), - (5840, '0738841943'), - (5841, '0738841943'), - (5842, '0806512687'), - (5843, '0806512687'), - (4195, '0875420486'), - (463, '0385333137'), - (59, '034538430X'), - (616, '0553576801'), - (3399, '1551668637'), - (5020, '0060169281'), - (4191, '1551666952'), - (369, '0553285785'), - (369, '0373484410'), - (5844, '0064405877'), - (5845, '0064405877'), - (5846, '0060009640'), - (2694, '0060182970'), - (713, '0399144897'), - (3159, '0061031089'), - (5847, '0312890273'), - (1326, '0446608378'), - (1327, '0446608378'), - (436, '0449001962'), - (5848, '074321269X'), - (543, '0385323921'), - (3241, '1551668440'), - (5849, '0446518700'), - (5850, '0451201906'), - (5851, '0812555058'), - (5852, '0441005543'), - (5853, '0312956681'), - (5854, '0373262736'), - (4391, '155166836X'), - (1562, '0451193288'), - (132, '0553578022'), - (1013, '0449219364'), - (5855, '1842328506'), - (5856, '0446516279'), - (3159, '0380775832'), - (550, '0440215900'), - (3159, '0380818760'), - (1319, '0446361836'), - (3615, '0517549069'), - (4593, '1567187277'), - (3897, '0373272359'), - (1319, '0446605883'), - (5857, '1567181562'), - (760, '0140187405'), - (5858, '0140187405'), - (3885, '0893753971'), - (905, '1853260584'), - (5500, '0590434985'), - (176, '0671739670'), - (5859, '0843953101'), - (5860, '0345308484'), - (5861, '0393307069'), - (3069, '0380789140'), - (5862, '0451453824'), - (906, '0440186927'), - (56, '0679783261'), - (463, '0679783261'), - (5863, '0375806717'), - (5864, '0515137057'), - (5787, '0743227441'), - (5865, '0670877999'), - (4474, '0312986289'), - (5866, '0812570901'), - (1282, '0671024108'), - (5707, '0345433491'), - (5867, '0671793888'), - (5868, '0679769447'), - (3225, '0671535455'), - (17, '1558743316'), - (18, '1558743316'), - (1866, '0345381432'), - (5869, '089919513X'), - (5870, '089919513X'), - (5871, '043919105X'), - (5872, '043919105X'), - (5873, '0553375067'), - (351, '0671452177'), - (5874, '0451143426'), - (301, '0553275976'), - (2126, '0553122509'), - (1159, '0140092323'), - (5875, '0441779131'), - (433, '0345387813'), - (5876, '0345387813'), - (5877, '1562927736'), - (5878, '0553293885'), - (5879, '0671795171'), - (5880, '0449702472'), - (4619, '0553564404'), - (5881, '0441873308'), - (913, '0812512421'), - (5882, '0553209833'), - (5883, '0553209833'), - (1164, '0553562398'), - (1164, '0553287532'), - (906, '0312979509'), - (5884, '0312979509'), - (5885, '0060199296'), - (1569, '0060199296'), - (5886, '1885365012'), - (2888, '0931580781'), - (5887, '0440214602'), - (2978, '0425191583'), - (3749, '0061097942'), - (679, '0449207145'), - (5606, '0380704900'), - (760, '0553278363'), - (3086, '0684717603'), - (5888, '0671666401'), - (79, '0671434225'), - (18, '0609609491'), - (117, '0609609491'), - (24, '3453136411'), - (1283, '0671742949'), - (132, '0553582127'), - (713, '0425169685'), - (2043, '0425132625'), - (5498, '0440225817'), - (1704, '0312982615'), - (2626, '0312982615'), - (5515, '0743456394'), - (5889, '0312270712'), - (5890, '0060163283'), - (5891, '0060163283'), - (5892, '0061091847'), - (554, '0553578308'), - (5893, '0393300498'), - (554, '0553578359'), - (5894, '0671529986'), - (5895, '1594570841'), - (217, '1853260061'), - (1755, '0440901588'), - (939, '0425146421'), - (1496, '1551666235'), - (5896, '0553281143'), - (952, '068419337X'), - (433, '0345305779'), - (5897, '0684827123'), - (2006, '0380792028'), - (630, '0821770195'), - (3615, '0517593343'), - (5898, '0969522908'), - (2404, '0842357424'), - (532, '051513225X'), - (3996, '0886773490'), - (532, '0515129933'), - (532, '051512088X'), - (433, '0345387805'), - (5875, '0345387805'), - (2987, '0345316002'), - (5899, '0345316002'), - (5875, '0441003583'), - (5900, '0441005195'), - (5899, '0441004326'), - (5899, '0441005055'), - (5901, '0590034871'), - (218, '0425179648'), - (5902, '9070066882'), - (1773, '0553262807'), - (1228, '0679420916'), - (5903, '0895948028'), - (5904, '0446515612'), - (5905, '1569247137'), - (5906, '1569247137'), - (5907, '0671657860'), - (5908, '0515103292'), - (5909, '0060956283'), - (5910, '3596142172'), - (5911, '3596142172'), - (5912, '3404142942'), - (3693, '3453160789'), - (5187, '3453162358'), - (5913, '3257230044'), - (3961, '3257230044'), - (554, '354824971X'), - (1300, '345315178X'), - (5914, '3442727103'), - (5915, '3442727103'), - (5916, '344272144X'), - (5917, '3596147832'), - (5918, '3596147832'), - (5919, '3404139968'), - (632, '3453196643'), - (5920, '3442351472'), - (5919, '3442351472'), - (5919, '3442435285'), - (5921, '3442435285'), - (5919, '3442431379'), - (175, '3404143485'), - (5922, '3404143485'), - (5923, '3596223946'), - (5919, '3547717655'), - (1209, '3446200487'), - (2176, '3446200487'), - (285, '3446201882'), - (5924, '3446201882'), - (5925, '0759901260'), - (1409, '0679764003'), - (2661, '0812550609'), - (5008, '1560760516'), - (5009, '1560760516'), - (5926, '1560760516'), - (5927, '156076113X'), - (5925, '156076113X'), - (574, '0345422406'), - (5928, '0312194560'), - (4909, '0553570951'), - (2985, '0451121082'), - (598, '0140345353'), - (1092, '0671644475'), - (2166, '0373122659'), - (5929, '037329221X'), - (3467, '0373259891'), - (5930, '0373122691'), - (1388, '0373122675'), - (913, '0812507274'), - (5931, '0070506728'), - (5932, '0070506728'), - (5933, '0070506728'), - (5934, '0525932593'), - (5935, '0525932593'), - (5936, '0810913763'), - (5937, '0810913763'), - (5938, '0865470561'), - (5939, '0688159141'), - (1073, '039449461X'), - (5940, '0449908615'), - (5941, '0963440349'), - (5942, '0312045875'), - (4400, '0312045875'), - (5943, '0671769316'), - (5944, '0671769316'), - (5945, '0671769316'), - (5946, '0806515015'), - (5947, '0767900936'), - (5948, '0767900936'), - (5946, '0060965991'), - (5947, '0060965991'), - (5949, '0060965991'), - (5950, '1559581719'), - (415, '0553213938'), - (2271, '1551668122'), - (5951, '0345444078'), - (5952, '0802137040'), - (5953, '0802137040'), - (821, '1860461670'), - (5954, '0375410198'), - (5955, '0375410198'), - (118, '0375700153'), - (142, '0451190548'), - (1244, '0671553046'), - (5881, '0553232940'), - (2714, '059010683X'), - (1167, '043942089X'), - (1168, '043942089X'), - (5956, '0684849224'), - (5957, '0006392466'), - (5958, '0452283825'), - (5959, '044661050X'), - (5960, '0425176045'), - (4556, '0449006158'), - (5961, '0486280381'), - (1875, '0671749102'), - (5962, '0687287529'), - (492, '0142003735'), - (1562, '0451168429'), - (5963, '006055584X'), - (5964, '006055584X'), - (5965, '0312104324'), - (5966, '0552138428'), - (5967, '0425180468'), - (5968, '0060092165'), - (131, '0061094234'), - (5969, '0425169855'), - (131, '0061099805'), - (5970, '0061099805'), - (131, '0061093491'), - (131, '0061090808'), - (5971, '0440223709'), - (1509, '157566691X'), - (5972, '0140272852'), - (5973, '9057592029'), - (5974, '0373121873'), - (5975, '1583483322'), - (5976, '1551668254'), - (3541, '0151004218'), - (5977, '0812970802'), - (5978, '0830708200'), - (5979, '0385249640'), - (274, '0590032496'), - (275, '0590032496'), - (5980, '1863738487'), - (5981, '0749720409'), - (3473, '0330363239'), - (956, '0553480669'), - (5982, '0140318909'), - (956, '0553269216'), - (1194, '0671000500'), - (1194, '0671663194'), - (1194, '0671464612'), - (3264, '0440220653'), - (5983, '0440210224'), - (2675, '0064405842'), - (5984, '0671001787'), - (5985, '0743407865'), - (5028, '3548602746'), - (1052, '379511733X'), - (3057, '3548256007'), - (364, '3548255329'), - (5986, '3548255329'), - (364, '354825621X'), - (5985, '354825621X'), - (5987, '3716022799'), - (5988, '3716022799'), - (5989, '3716022799'), - (5990, '3548364160'), - (5991, '3548364160'), - (3057, '3548257615'), - (3057, '3548256910'), - (5992, '3426622548'), - (2805, '0060987324'), - (5993, '3453863712'), - (5994, '0192823507'), - (5995, '0192823507'), - (3787, '0679986375'), - (5996, '1740595939'), - (5997, '1740595939'), - (5998, '0609604511'), - (5999, '2070364178'), - (6000, '0062505521'), - (6001, '0449911411'), - (6002, '007212248X'), - (5633, '0452254345'), - (6003, '0807115258'), - (6004, '0807115258'), - (6005, '0807115258'), - (2458, '0486290816'), - (181, '0486290816'), - (6006, '0880015829'), - (3689, '0449225313'), - (5068, '0553240765'), - (411, '0609603825'), - (6007, '0765349671'), - (2267, '0553585843'), - (61, '0425192733'), - (3084, '0060525460'), - (550, '0446326925'), - (6008, '0449206246'), - (1829, '155166285X'), - (2656, '0449207102'), - (6009, '0385471998'), - (1876, '0553575104'), - (162, '0895771845'), - (6010, '0895771845'), - (6011, '0895771845'), - (585, '0451403703'), - (6012, '0812564804'), - (6013, '0380756226'), - (6006, '0812589718'), - (4276, '0812571789'), - (2654, '0449222713'), - (2654, '0449215482'), - (3379, '0345327454'), - (6014, '0821720600'), - (381, '0913367346'), - (6015, '0892211105'), - (1162, '0671701045'), - (484, '0688084923'), - (583, '0440235146'), - (6016, '0445044454'), - (6017, '0446301809'), - (6018, '0553573489'), - (6019, '0786889411'), - (6020, '0671496107'), - (377, '0553257196'), - (2695, '0553257196'), - (6021, '055321246X'), - (56, '0451526368'), - (282, '0451526368'), - (2239, '0590433881'), - (6022, '0974375861'), - (6023, '0974375853'), - (5560, '0671522647'), - (6024, '0671541005'), - (6025, '0933662599'), - (6026, '0863186602'), - (142, '0525941908'), - (3310, '0525941908'), - (6027, '0767915054'), - (6028, '038533396X'), - (6029, '0394566300'), - (6030, '0394566300'), - (6031, '0394566300'), - (6032, '0842365826'), - (1876, '0736907386'), - (6033, '1576734005'), - (118, '0375700145'), - (239, '0452284449'), - (6034, '0312195168'), - (6035, '0446610542'), - (6036, '0679750169'), - (6037, '0679750169'), - (6038, '051759675X'), - (6039, '0671759299'), - (6040, '0671759299'), - (6041, '0440910099'), - (6042, '0590411292'), - (6043, '0684843560'), - (6044, '0553269151'), - (6045, '0553269151'), - (6046, '0486272753'), - (403, '067188803X'), - (6047, '1562451650'), - (6048, '009938860X'), - (6049, '0743202198'), - (5874, '0441371574'), - (1366, '0440111498'), - (5874, '0553273078'), - (2504, '0345321421'), - (6050, '0345321421'), - (1065, '0553286587'), - (2990, '0553286587'), - (6051, '0843952202'), - (6052, '0373227388'), - (6053, '0778320065'), - (3912, '0515121495'), - (2006, '0743456351'), - (6054, '0316804924'), - (6055, '080506270X'), - (6056, '080506270X'), - (6057, '0316130133'), - (59, '0425132951'), - (187, '0380759470'), - (3036, '0330303112'), - (6058, '0895888041'), - (6059, '1568849052'), - (6060, '1568849052'), - (6061, '1568849052'), - (6062, '1568849052'), - (6063, '0764550551'), - (6064, '0764550551'), - (1625, '0782903800'), - (1625, '0782903363'), - (6065, '1570641218'), - (6066, '0671648462'), - (3796, '0811833615'), - (3797, '0811833615'), - (3796, '0811821706'), - (3797, '0811821706'), - (17, '1558747613'), - (18, '1558747613'), - (1650, '1558747613'), - (6067, '0679755330'), - (6068, '0451526732'), - (6069, '0451526732'), - (2694, '0425083896'), - (178, '0451525795'), - (6070, '0451525795'), - (6071, '0451188454'), - (1164, '3499136457'), - (6072, '0759615365'), - (6073, '0312874472'), - (281, '0806516542'), - (6074, '0671704834'), - (2011, '0425166392'), - (17, '1558745718'), - (18, '1558745718'), - (6075, '1558745718'), - (6076, '1740592409'), - (6077, '1740592409'), - (6078, '1740592409'), - (2517, '0425176932'), - (145, '0425176932'), - (876, '0425176932'), - (283, '0881030368'), - (251, '1565117794'), - (6079, '1565117794'), - (6080, '1565117794'), - (1118, '0553580604'), - (6081, '340778063X'), - (6082, '340778063X'), - (6083, '3791535560'), - (201, '3442424402'), - (1755, '0440219507'), - (1666, '3446152962'), - (6084, '3446152962'), - (6085, '3446152962'), - (6086, '3746615429'), - (352, '2070374807'), - (6087, '2070401685'), - (749, '2253006629'), - (2035, '044021632X'), - (3264, '0590474782'), - (634, '0425117383'), - (4036, '0141308133'), - (6088, '0385260431'), - (6089, '0860682552'), - (56, '055321019X'), - (6090, '0060971185'), - (6091, '1580622119'), - (6092, '074343059X'), - (1337, '0060090375'), - (6093, '1582343047'), - (6094, '0520216202'), - (6095, '0380711516'), - (6096, '0890439702'), - (6097, '0689866364'), - (211, '0312984294'), - (6098, '0575047798'), - (6099, '0800758889'), - (6100, '0743252136'), - (6101, '0812932773'), - (6102, '3551580561'), - (6103, '3551580561'), - (368, '0399139745'), - (1395, '0679762671'), - (6104, '0679762671'), - (6105, '0140196226'), - (2693, '0140143505'), - (6106, '0671743503'), - (1628, '0345413881'), - (1001, '0553289691'), - (6107, '0671851047'), - (760, '0140042407'), - (6108, '344203079X'), - (6109, '344203079X'), - (5855, '0765303418'), - (6110, '0786000872'), - (992, '0140179178'), - (873, '0812550757'), - (675, '067087311X'), - (6111, '0679721886'), - (6112, '0394575202'), - (1315, '0451187849'), - (1316, '0451187849'), - (5873, '0451163966'), - (1732, '0449911659'), - (843, '0553571338'), - (6113, '0671041584'), - (2688, '0151189781'), - (2661, '0812564669'), - (3692, '0812564669'), - (1498, '0765302365'), - (6114, '0446605905'), - (63, '0525946829'), - (2181, '0399138013'), - (6115, '0880707682'), - (5730, '0152550860'), - (6116, '1556618603'), - (274, '0590060198'), - (1428, '0671868403'), - (2713, '0553570080'), - (3359, '0671550284'), - (3359, '0671736825'), - (1428, '0671008749'), - (1428, '0671002929'), - (6117, '0812570758'), - (6118, '0812540239'), - (2713, '0553292323'), - (6119, '981305607X'), - (3359, '0671736809'), - (3359, '0671019287'), - (3359, '0671736787'), - (2713, '0553158937'), - (2713, '0553158597'), - (2713, '0553157671'), - (2713, '0553481975'), - (2713, '0553158015'), - (2713, '0553483471'), - (2713, '0553480510'), - (2713, '0553480618'), - (2713, '0553482491'), - (2713, '0553159526'), - (2713, '055356403X'), - (2713, '0553157663'), - (2492, '3423202327'), - (2711, '3423202327'), - (2712, '3423202327'), - (1726, '3442421357'), - (1921, '3442421357'), - (6120, '3404144031'), - (1432, '0312986343'), - (806, '0399137599'), - (6121, '0060974494'), - (2427, '0553345842'), - (6122, '0553345842'), - (6123, '0553343211'), - (6124, '0809255324'), - (5943, '0922233209'), - (6125, '086316160X'), - (6126, '086316160X'), - (6127, '0553078682'), - (2108, '0062504096'), - (6128, '0062504096'), - (6129, '0155019872'), - (6130, '0155019872'), - (6131, '0679413065'), - (571, '0425125467'), - (6132, '158322601X'), - (6133, '158322601X'), - (6134, '158322601X'), - (6135, '0385495358'), - (6136, '1555835589'), - (6137, '1585972622'), - (485, '006056668X'), - (6138, '0385511620'), - (6139, '0446530077'), - (6140, '0689856083'), - (6141, '0689856083'), - (6142, '0689856083'), - (6143, '0802151574'), - (6144, '0812992180'), - (4947, '0385729472'), - (6145, '0373227728'), - (6146, '0373227736'), - (6147, '037322771X'), - (2408, '0373227744'), - (6148, '0373712049'), - (6149, '0373712006'), - (6150, '0373712014'), - (6151, '0373712057'), - (6152, '0373227396'), - (5214, '0373711719'), - (6153, '0373711735'), - (1441, '0451409434'), - (2998, '0875427332'), - (6154, '0738704458'), - (6155, '0738704458'), - (6156, '0738704458'), - (6157, '0316281697'), - (6158, '0060965118'), - (6159, '0060965118'), - (6160, '0060965118'), - (573, '0312951914'), - (6161, '0878577386'), - (6162, '0843922567'), - (6163, '1592231381'), - (237, '0517182467'), - (6164, '055357485X'), - (392, '0875421245'), - (6165, '0875421245'), - (6166, '0671670875'), - (4195, '0875420508'), - (6167, '0801043859'), - (6168, '0785270442'), - (6169, '0785270442'), - (142, '0451178599'), - (94, '1555472419'), - (6170, '0671421611'), - (6171, '0380780216'), - (6172, '1590030044'), - (6173, '1590030044'), - (142, '0451128370'), - (142, '0451170385'), - (6174, '3036911154'), - (6175, '0451206339'), - (5028, '0156006847'), - (1269, '0156006847'), - (5310, '0395926882'), - (54, '0395926882'), - (1997, '0446527297'), - (6176, '0786867906'), - (145, '0425151875'), - (876, '0425151875'), - (3407, '0425151875'), - (4909, '0553570854'), - (321, '055357115X'), - (6177, '0440802059'), - (369, '0373218958'), - (6178, '3442356180'), - (6179, '3442356180'), - (713, '0671684256'), - (713, '0425182843'), - (1109, '0486406539'), - (6180, '0590440144'), - (606, '0812550749'), - (606, '0671720996'), - (1189, '0671720996'), - (4146, '0553148524'), - (2344, '0802111610'), - (3482, '0670031720'), - (2976, '0385128533'), - (277, '0679405127'), - (6181, '0679742115'), - (3704, '0316954993'), - (351, '0345463153'), - (6182, '188522317X'), - (1432, '0312991460'), - (4723, '0142001325'), - (5321, '1565123670'), - (583, '0385501412'), - (583, '0553277901'), - (3823, '006016848X'), - (6183, '0684862921'), - (6184, '0060956690'), - (6185, '0156007185'), - (6186, '0451182960'), - (223, '0449002985'), - (1491, '037348254X'), - (3115, '037348254X'), - (6187, '037348254X'), - (1228, '0865473900'), - (2686, '0395859972'), - (1298, '0671727583'), - (6188, '0028604695'), - (58, '0060176156'), - (822, '0440159008'), - (3166, '0893754005'), - (6189, '0671600400'), - (1010, '0440212561'), - (6190, '0517799952'), - (4726, '0140267670'), - (6191, '0394544749'), - (6192, '0785282149'), - (2254, '0505523183'), - (6193, '0505523183'), - (6194, '0505523183'), - (630, '0821769278'), - (6195, '0373223102'), - (6196, '0380815257'), - (82, '0486264645'), - (4235, '0486264645'), - (532, '0451402065'), - (532, '0515133302'), - (2271, '0451406907'), - (1491, '1551668432'), - (532, '0451198948'), - (630, '0821767852'), - (6197, '1552450244'), - (6198, '1552450244'), - (6199, '1552450244'), - (3607, '0771014910'), - (3607, '0771014899'), - (5772, '0446363650'), - (5773, '0446363650'), - (6200, '0684186373'), - (1675, '0006480764'), - (3946, '0062514377'), - (6201, '0970116500'), - (6202, '0684804018'), - (6203, '1592861512'), - (4794, '0345421884'), - (2505, '0345421884'), - (5918, '0684801051'), - (369, '039914840X'), - (6204, '0679426094'), - (4197, '0345410130'), - (6205, '0787947350'), - (6206, '0818403802'), - (3086, '0684801523'), - (4588, '0684801523'), - (6207, '0836213106'), - (6208, '0836213106'), - (6209, '0671733346'), - (6206, '0836217810'), - (6207, '0836217810'), - (283, '0736605673'), - (6210, '0736605673'), - (236, '0446532452'), - (1109, '1570629706'), - (6211, '1570629706'), - (848, '0393322440'), - (2331, '0140449124'), - (6212, '0140449124'), - (6211, '0140449124'), - (6213, '0140449124'), - (6214, '0099274167'), - (6215, '0749391723'), - (6206, '0836217446'), - (6207, '0836217446'), - (6206, '0836217152'), - (6207, '0836217152'), - (6216, '0375421114'), - (1784, '0446520659'), - (854, '0553071807'), - (545, '0060167033'), - (131, '0061091561'), - (6217, '0310214351'), - (131, '0060191872'), - (2695, '0061030996'), - (1305, '0140430148'), - (6218, '0140430148'), - (6219, '067318160X'), - (6220, '155591229X'), - (3086, '0020198817'), - (2348, '0140001409'), - (490, '0385323964'), - (6221, '1881066703'), - (502, '1853265535'), - (1210, '0345448359'), - (3710, '0446527084'), - (1210, '0743444965'), - (2159, '0752816500'), - (1554, '0061059048'), - (6222, '0671656473'), - (1210, '0812520475'), - (6223, '0743421922'), - (145, '0425173534'), - (84, '0425173534'), - (145, '042510107X'), - (2043, '0425108937'), - (6224, '0451457781'), - (6225, '0451457781'), - (2723, '1576734013'), - (136, '0451203267'), - (1467, '0312140908'), - (6226, '0394571770'), - (1824, '043936213X'), - (2748, '0345432401'), - (6227, '0380779323'), - (6228, '0380779323'), - (6229, '043930931X'), - (6230, '043930931X'), - (6231, '0064401502'), - (978, '0064401502'), - (433, '0671876570'), - (2503, '0671876570'), - (6232, '0373120095'), - (2880, '0671798782'), - (6233, '0679822631'), - (6234, '0886191718'), - (6235, '0373764723'), - (2250, '0373764685'), - (6236, '0373764677'), - (6237, '038071471X'), - (800, '0373764766'), - (6238, '0373764650'), - (328, '0061061433'), - (329, '0061061433'), - (2126, '0312020317'), - (290, '0671823884'), - (6239, '0060973617'), - (6240, '0141301236'), - (6241, '0771014236'), - (6242, '1576104176'), - (6243, '1576104176'), - (6244, '0525458638'), - (6245, '0525458638'), - (6246, '0782124526'), - (6247, '0671726528'), - (105, '0553208659'), - (105, '0553247662'), - (6248, '0307220060'), - (6249, '037570342X'), - (1353, '0452283027'), - (6250, '1400045029'), - (1575, '1400052157'), - (6251, '0374174075'), - (6252, '0688102255'), - (6253, '0704340070'), - (1740, '0440132118'), - (6254, '0060916125'), - (6255, '0140274383'), - (6256, '0883910349'), - (1265, '0380001012'), - (6257, '1857033701'), - (6258, '0330303287'), - (6257, '0330303279'), - (6259, '0786884274'), - (6260, '0749308583'), - (6261, '0749429003'), - (960, '3518392387'), - (6262, '3518392387'), - (6263, '3518392387'), - (145, '0425187055'), - (1884, '0425187055'), - (2513, '0425187055'), - (6264, '0970897251'), - (6265, '0316089737'), - (6266, '1589199669'), - (154, '0385494327'), - (6267, '1566492017'), - (174, '0802117155'), - (3337, '0060159081'), - (6268, '080326089X'), - (6269, '080326089X'), - (5552, '0446607258'), - (5913, '0374138591'), - (6270, '0375726225'), - (471, '0316184152'), - (6271, '0316184152'), - (6272, '1555661874'), - (6273, '1555661874'), - (1626, '0312313195'), - (6274, '068817776X'), - (6275, '068817776X'), - (6276, '0375760903'), - (6277, '0385721838'), - (6278, '0743234359'), - (6279, '0142001104'), - (6280, '0142001104'), - (24, '0739306510'), - (6281, '0739306510'), - (3656, '0142003816'), - (6282, '1585422932'), - (3785, '080701222X'), - (6283, '080701222X'), - (6282, '080701222X'), - (6176, '0805071849'), - (6284, '1585673625'), - (6285, '081296747X'), - (6286, '0739307002'), - (6287, '0739307002'), - (6288, '0967002303'), - (6289, '0881001163'), - (539, '0375726373'), - (6290, '0684826879'), - (6291, '0684826879'), - (3785, '1573229377'), - (6292, '1400030803'), - (6293, '0452282020'), - (6294, '0452282020'), - (5785, '0684872838'), - (1858, '0375726349'), - (6295, '0375403701'), - (6296, '0375403701'), - (6297, '1932360069'), - (6298, '0006280803'), - (2746, '1573223786'), - (6299, '0140235396'), - (6300, '0385336934'), - (6301, '0399151648'), - (6302, '0941781135'), - (6303, '0805063021'), - (6304, '1583224939'), - (6305, '1583224939'), - (6306, '0394757777'), - (6307, '1581820135'), - (415, '0393959015'), - (6308, '0393959015'), - (412, '0445046368'), - (1491, '0373197187'), - (920, '0689868278'), - (733, '0451202627'), - (6309, '1552095738'), - (6310, '0373250274'), - (3125, '0345469674'), - (6311, '0671023535'), - (108, '0312966806'), - (6312, '0446692298'), - (6313, '1573227161'), - (6314, '0505525496'), - (5361, '0842382852'), - (666, '0842382836'), - (5811, '0842382844'), - (6315, '1591840414'), - (6316, '0007106572'), - (6317, '1556615728'), - (2404, '1556615728'), - (6318, '0974757004'), - (33, '0060528125'), - (6185, '0451188543'), - (108, '1551667436'), - (6319, '0312983484'), - (6320, '0375724990'), - (6321, '0060089296'), - (4581, '0312984227'), - (6322, '1592680291'), - (6323, '1594140812'), - (128, '0446613053'), - (6185, '0380819651'), - (4390, '0451207475'), - (2258, '0671735934'), - (6324, '075820230X'), - (554, '055357258X'), - (6325, '0425181839'), - (1871, '0060525010'), - (3969, '0060525010'), - (6326, '0060525010'), - (6327, '0060525010'), - (6328, '0451207653'), - (6329, '0451207653'), - (6330, '0451207653'), - (6331, '0451207653'), - (6185, '0451192311'), - (843, '0440228921'), - (362, '1575662450'), - (6332, '0060176563'), - (6333, '1573222232'), - (4352, '0688177859'), - (76, '0684868865'), - (889, '0446607274'), - (502, '0486266842'), - (178, '0679731806'), - (6334, '0897331575'), - (6335, '0897331575'), - (6336, '0897331575'), - (6337, '0897331575'), - (403, '0553211439'), - (188, '0553296345'), - (1048, '0441289886'), - (327, '0553573136'), - (6338, '0771099843'), - (6339, '0771099843'), - (6340, '0140440038'), - (6341, '0872201562'), - (6342, '1577940040'), - (6343, '1555171559'), - (6344, '1558505857'), - (6345, '1558505857'), - (1010, '0385302312'), - (6346, '088494770X'), - (1010, '0385302320'), - (6347, '0142437212'), - (6348, '0142437212'), - (6349, '0142437212'), - (6350, '0805063196'), - (6351, '0140075623'), - (6352, '0743217713'), - (6353, '0609810103'), - (6354, '0670886017'), - (6355, '0060916338'), - (115, '0451204530'), - (5160, '0812562852'), - (6356, '0698116801'), - (6357, '1858600006'), - (6358, '0964374099'), - (719, '0451205987'), - (6359, '1591290902'), - (1179, '0449211525'), - (6360, '0515101877'), - (6361, '0812522362'), - (4196, '006098824X'), - (6362, '0812561880'), - (6363, '0451203569'), - (6364, '0688111882'), - (6365, '0060505885'), - (580, '0679401385'), - (63, '0440213886'), - (369, '0515116068'), - (6366, '0679419691'), - (937, '0743244710'), - (6367, '0425044890'), - (281, '0140436669'), - (6368, '0140436669'), - (6369, '0140436669'), - (6370, '0394742494'), - (6371, '0670862215'), - (6370, '0670847100'), - (6369, '0586068805'), - (6372, '0553259016'), - (1159, '0670818577'), - (578, '0060910992'), - (502, '0060955716'), - (3051, '0394462017'), - (6373, '0811812693'), - (5953, '0393322203'), - (3282, '0030622093'), - (6374, '0380404109'), - (2190, '0060806419'), - (6369, '158080036X'), - (6375, '038517652X'), - (6376, '0671541900'), - (3779, '0312926294'), - (6377, '1585790087'), - (6378, '0060805943'), - (906, '0425089002'), - (6379, '0345312791'), - (1998, '0394473361'), - (6380, '0689107943'), - (6381, '0312532253'), - (6382, '0448416492'), - (618, '0807554146'), - (777, '0525483357'), - (6383, '0525483357'), - (6384, '044048605X'), - (4839, '0399234616'), - (93, '0679879242'), - (936, '0425057771'), - (6385, '088776519X'), - (1282, '0451203054'), - (1883, '0451184734'), - (780, '0316779989'), - (76, '0671568183'), - (129, '0446603716'), - (2002, '0380726289'), - (543, '0440193613'), - (6386, '0679764895'), - (542, '0743418166'), - (231, '0440235774'), - (583, '0061094404'), - (1196, '0515133418'), - (60, '0743460529'), - (1246, '0140386335'), - (1247, '0140386335'), - (6387, '0373288891'), - (6388, '0373825013'), - (6389, '0373825021'), - (552, '0449148408'), - (6390, '0312957920'), - (39, '0345359321'), - (6391, '0345377672'), - (1451, '0743216024'), - (6392, '2890379302'), - (1159, '0140131612'), - (6393, '0140131612'), - (6394, '0741410060'), - (6395, '0521315441'), - (6396, '0741404540'), - (6397, '0446609951'), - (142, '0451157443'), - (6398, '1560300027'), - (5095, '0452275660'), - (179, '0060175680'), - (60, '0671867083'), - (736, '0446605360'), - (60, '0671741209'), - (1871, '0380790025'), - (5564, '0671880314'), - (24, '038550120X'), - (1493, '0670860743'), - (6399, '0451209486'), - (1784, '0446513067'), - (6400, '0312242220'), - (6401, '0671665499'), - (6402, '0789426323'), - (6403, '0789202816'), - (6404, '0789202816'), - (6405, '0688172253'), - (6406, '0891091165'), - (6407, '0891091165'), - (6408, '0310918421'), - (6402, '0789203928'), - (6403, '0789203928'), - (6409, '1562827979'), - (6384, '0806974109'), - (6410, '0840732228'), - (6411, '0891090665'), - (1998, '0896218643'), - (1871, '0380977729'), - (1871, '0380977737'), - (916, '0849944767'), - (6412, '0440364574'), - (6413, '0446394009'), - (1767, '038549730X'), - (6414, '0446391581'), - (6415, '0812967240'), - (6416, '0971995907'), - (6417, '1589820010'), - (6418, '0679447164'), - (6419, '0679447164'), - (6420, '0393007316'), - (1892, '0061096644'), - (88, '0449907570'), - (138, '0804105146'), - (2168, '0451155815'), - (6421, '1589820681'), - (6422, '0971931429'), - (6423, '0520082567'), - (4141, '1551665301'), - (6424, '0425151425'), - (4909, '0553280074'), - (1075, '0064404773'), - (6425, '156382485X'), - (2436, '0879522593'), - (532, '0380756234'), - (6426, '0446603856'), - (6427, '0671885650'), - (6428, '0895296950'), - (6429, '0684852047'), - (4407, '0671002821'), - (6430, '1582430616'), - (6431, '1582430616'), - (873, '0812589041'), - (6432, '0060931752'), - (6433, '0966784219'), - (6434, '1931395004'), - (6435, '0670031895'), - (6436, '0452011574'), - (6437, '0452011574'), - (6438, '0452011574'), - (6439, '0451200985'), - (6440, '0451200985'), - (1616, '0375505822'), - (6441, '0312288549'), - (2668, '0393039595'), - (6442, '0571175686'), - (6443, '0571175686'), - (6444, '1588720020'), - (459, '0316169226'), - (6360, '0785814078'), - (6445, '0785814078'), - (6446, '0785814078'), - (867, '0345333853'), - (6447, '0060937866'), - (364, '0060198125'), - (6448, '0525945830'), - (1628, '0345452569'), - (2805, '1582343586'), - (6449, '0020404808'), - (6450, '0425106403'), - (6451, '0597145806'), - (2694, '0061091464'), - (6452, '0671015311'), - (6453, '0912670096'), - (6454, '0912670096'), - (154, '0385497520'), - (6455, '0312151144'), - (992, '0743203968'), - (6456, '0385247958'), - (4030, '0486284670'), - (3999, '0375701710'), - (1232, '0670825379'), - (368, '0449217191'), - (6452, '1558611584'), - (6457, '1558611584'), - (1706, '0151009988'), - (6458, '0671788574'), - (1366, '0440127793'), - (3041, '0156106809'), - (2026, '0765108674'), - (6459, '0679724699'), - (6460, '0679724699'), - (266, '014230218X'), - (2654, '0449212297'), - (6461, '0571199895'), - (2740, '0141304235'), - (4670, '0141304235'), - (266, '0312863934'), - (2190, '0385468873'), - (4724, '0385502532'), - (1773, '0060928034'), - (4597, '0140252991'), - (6462, '0449002594'), - (6463, '0140286527'), - (4422, '0743236742'), - (3750, '0399151745'), - (6464, '1400060737'), - (6465, '0060520612'), - (6466, '0375413596'), - (3458, '034543739X'), - (3223, '0553268937'), - (6467, '0060931957'), - (6468, '0060931957'), - (6469, '0060192704'), - (2145, '0890877033'), - (60, '0684835975'), - (6470, '0062516981'), - (1198, '0380722704'), - (6471, '096533192X'), - (1704, '0553114271'), - (1626, '0671671499'), - (2749, '0425123456'), - (6472, '0312957882'), - (6473, '0671725955'), - (1704, '0553263226'), - (1214, '0671525425'), - (6474, '0671542745'), - (6475, '0671507397'), - (713, '0451124685'), - (6476, '0373194072'), - (369, '0373218397'), - (6477, '0373441614'), - (6478, '050552533X'), - (6479, '0140257349'), - (3159, '0060504137'), - (6480, '1558530983'), - (6481, '1558530983'), - (6482, '1558530983'), - (6483, '0758205600'), - (6484, '0345381718'), - (2252, '0843941987'), - (6485, '082173718X'), - (6486, '0843941812'), - (6487, '0821738453'), - (6488, '0821754866'), - (6489, '0373290160'), - (6490, '0061084751'), - (6487, '0821758683'), - (6491, '082172679X'), - (6492, '082172679X'), - (6493, '0451405285'), - (6494, '0380785617'), - (6495, '0380763435'), - (6496, '0380782529'), - (6497, '0312955057'), - (6498, '0140140859'), - (6499, '0385418213'), - (5766, '0060934425'), - (6500, '0671631985'), - (6501, '0671631985'), - (6502, '0671631985'), - (6503, '0671027409'), - (3642, '0671703617'), - (471, '1566190304'), - (563, '0425179885'), - (6111, '0670883514'), - (6504, '0395798655'), - (952, '0395798655'), - (5310, '0395798655'), - (6505, '0812578902'), - (6506, '0812578902'), - (568, '0020442203'), - (56, '0553211374'), - (6507, '0140150706'), - (1262, '0140150706'), - (6508, '0140150706'), - (2126, '0553204572'), - (2872, '0425175111'), - (136, '0671001132'), - (136, '0671793535'), - (136, '0671868691'), - (136, '0671793543'), - (136, '0671025341'), - (6509, '0375713484'), - (3863, '0812572122'), - (9, '0762102543'), - (1801, '0446601977'), - (5860, '0393307050'), - (6510, '0879735783'), - (6511, '0879735783'), - (3863, '0812550579'), - (6512, '0672320967'), - (6513, '0132267055'), - (6514, '0773761969'), - (4993, '0773761969'), - (5957, '0452282934'), - (3281, '0451203526'), - (714, '0451203526'), - (6515, '0316289124'), - (1295, '0743474724'), - (3539, '0679722637'), - (6516, '0198607199'), - (6517, '188455010X'), - (6518, '0804109192'), - (3863, '0812548116'), - (3134, '0375414053'), - (6519, '1400046610'), - (3863, '0312868855'), - (1295, '0812519329'), - (6520, '0446526665'), - (6521, '1568655819'), - (1537, '0441001971'), - (60, '0684810395'), - (369, '0399143874'), - (822, '0070064601'), - (2416, '0373272820'), - (2417, '0373218117'), - (6234, '0373218117'), - (6522, '0373218117'), - (6523, '0373711050'), - (6524, '0373711409'), - (6525, '0373711409'), - (6526, '0505524430'), - (6527, '0373194919'), - (6528, '0373227205'), - (369, '0373218419'), - (543, '0440222842'), - (6529, '0373272383'), - (6530, '0373194714'), - (369, '0399141227'), - (6531, '3426619342'), - (6530, '3426624680'), - (6532, '3426273098'), - (6533, '3810505153'), - (1164, '3499134039'), - (6534, '3499134039'), - (6535, '3518370081'), - (6536, '3518370081'), - (6537, '3518370081'), - (6538, '3548359698'), - (1742, '0553379011'), - (892, '0385319851'), - (6539, '0060958308'), - (93, '0440418321'), - (135, '0316789976'), - (5095, '0394525280'), - (6540, '0020433115'), - (6541, '0671733397'), - (6542, '1568360428'), - (6543, '1568360428'), - (6544, '1568360428'), - (534, '0671519816'), - (59, '042518109X'), - (151, '0061097861'), - (6545, '0374513112'), - (6546, '0374513112'), - (889, '0446609145'), - (1164, '0553575406'), - (6547, '0380797631'), - (6548, '0140161171'), - (274, '0141304677'), - (275, '0141304677'), - (3221, '0553213237'), - (6549, '076791175X'), - (25, '0679433740'), - (3924, '0060501170'), - (1198, '0375703063'), - (3307, '0345343697'), - (6550, '0838434762'), - (6551, '0838434762'), - (6552, '0838434754'), - (6553, '0838434754'), - (6554, '0136155596'), - (2586, '0553351672'), - (6555, '0140065407'), - (1626, '0449244288'), - (1175, '1573222127'), - (4033, '0451523326'), - (6556, '0451523326'), - (6557, '3492224466'), - (6558, '3492224466'), - (4033, '0140434003'), - (4034, '0140434003'), - (1231, '0756401100'), - (6559, '038079439X'), - (3610, '0553577905'), - (6560, '0553577905'), - (6561, '0451402391'), - (6562, '0451402391'), - (6429, '0395877334'), - (6563, '274670238X'), - (6564, '084770176X'), - (6565, '0671028820'), - (1886, '2070404722'), - (6566, '2070404722'), - (2926, '2070415066'), - (6567, '2841722171'), - (6566, '2841722171'), - (955, '2266091328'), - (6568, '2845950470'), - (6569, '0671447807'), - (6570, '9684113404'), - (6571, '0679409041'), - (5373, '0316782653'), - (239, '0525945814'), - (6572, '0140141499'), - (6573, '0684870053'), - (2360, '0060934913'), - (6574, '0375814116'), - (799, '0899193625'), - (220, '0060974486'), - (6575, '0060974486'), - (1395, '0679736042'), - (1395, '0679441247'), - (6576, '1558177604'), - (135, '0156005891'), - (6577, '084395258X'), - (121, '076790592X'), - (6578, '0394711920'), - (2790, '0618526412'), - (3752, '0380815591'), - (568, '0060652934'), - (6579, '1841953814'), - (6580, '1582341427'), - (6581, '0375709231'), - (6582, '0688174035'), - (1349, '0618246967'), - (1011, '0618246967'), - (6583, '0758206135'), - (6584, '0763617229'), - (6585, '0763617229'), - (1352, '0670032891'), - (3086, '068480445X'), - (4588, '068480445X'), - (6586, '1931520003'), - (6587, '0595149782'), - (6586, '0595193021'), - (6586, '0967986508'), - (2656, '0449216411'), - (1395, '0330319477'), - (6588, '0330319477'), - (162, '0812504593'), - (142, '9500406977'), - (82, '1551110652'), - (3220, '1551110652'), - (6589, '1551110652'), - (4377, '0552997706'), - (2912, '3442449898'), - (5910, '3442449898'), - (889, '3453108191'), - (6590, '3453108191'), - (484, '3442067855'), - (4252, '3442067855'), - (849, '3442067855'), - (484, '3442092639'), - (6591, '3442092639'), - (6592, '3612275232'), - (6593, '3784427855'), - (6594, '0945990049'), - (6595, '0945990049'), - (6596, '0945990049'), - (6597, '0898620600'), - (230, '0380807939'), - (152, '0446602736'), - (81, '0425098400'), - (6598, '0449904075'), - (6599, '0449904075'), - (9, '0446360589'), - (543, '0385315090'), - (543, '0385319606'), - (543, '0385311923'), - (543, '0440500729'), - (543, '0385297661'), - (543, '0385306024'), - (58, '0345362721'), - (484, '0446802204'), - (484, '0446329894'), - (337, '0399144587'), - (129, '0671639218'), - (49, '0679420649'), - (2035, '0786889551'), - (2035, '0312923856'), - (2035, '0786889667'), - (6600, '0804111111'), - (6599, '055327032X'), - (6599, '0821762532'), - (231, '044023574X'), - (6601, '0304328464'), - (6602, '0304328464'), - (6603, '0304328464'), - (434, '0345379020'), - (4453, '0310235561'), - (1060, '0743458168'), - (6604, '0743458168'), - (4453, '1586606735'), - (6605, '1578565677'), - (6606, '1578565677'), - (3295, '0452284201'), - (6607, '0452284201'), - (6608, '349223562X'), - (6609, '349223562X'), - (6610, '2890199029'), - (6611, '1889195162'), - (6612, '1889195162'), - (6613, '1889195162'), - (6614, '1904132073'), - (6615, '2070408450'), - (6616, '0312972954'), - (6617, '0912333634'), - (6618, '0912333634'), - (2949, '0786702141'), - (6619, '0446520837'), - (6620, '0937966185'), - (760, '0141312556'), - (149, '9871138016'), - (6621, '0374503486'), - (6622, '0374503486'), - (6623, '2040162097'), - (4795, '2080700324'), - (6624, '2080700324'), - (403, '051722108X'), - (5466, '0762414197'), - (6625, '0762414197'), - (6626, '0854963782'), - (6627, '0854963782'), - (6628, '0854963782'), - (5198, '225303939X'), - (6629, '1840020830'), - (6630, '0152008675'), - (6631, '0152008675'), - (3885, '0762405449'), - (2142, '0140386351'), - (6632, '359650533X'), - (6633, '067102325X'), - (6634, '0812213238'), - (723, '0679729976'), - (6635, '1562055089'), - (6636, '0830645519'), - (6637, '0933121539'), - (6638, '0373078811'), - (6639, '0373763808'), - (6640, '0452261457'), - (6641, '002031275X'), - (6458, '1565843525'), - (6642, '1565843525'), - (6459, '1565843525'), - (155, '0140143459'), - (6643, '0864693257'), - (6644, '0864693257'), - (6645, '0864693257'), - (6646, '0070212147'), - (6647, '0070212147'), - (6648, '0192853902'), - (59, '0553580221'), - (312, '0140442758'), - (6649, '0140442758'), - (6648, '0140442758'), - (6650, '0679781358'), - (6651, '0664246915'), - (6652, '1879960400'), - (325, '0345370430'), - (237, '0553272616'), - (6653, '1570621608'), - (6654, '0743427084'), - (6655, '0743427084'), - (6656, '0712610847'), - (3785, '1888375051'), - (6657, '1888375051'), - (6658, '1888375051'), - (6659, '1888375051'), - (6660, '0385492677'), - (6661, '0937938874'), - (5404, '0671039016'), - (6662, '0020178506'), - (6663, '0020178506'), - (6664, '0020198507'), - (6665, '0020198507'), - (6666, '0020198507'), - (5691, '068419001X'), - (6667, '0140126422'), - (6668, '0440162645'), - (6669, '0450017095'), - (2963, '0892965258'), - (6670, '0140147381'), - (2624, '0345333810'), - (6671, '0930031091'), - (6672, '0684814161'), - (6673, '0671734601'), - (436, '0449212750'), - (337, '0425127230'), - (777, '0451155580'), - (1987, '0671884298'), - (81, '0804108862'), - (634, '0399139087'), - (337, '0385304374'), - (4338, '0679438793'), - (6674, '0915801418'), - (6675, '1559390476'), - (568, '0064471047'), - (833, '0064471047'), - (867, '0345441184'), - (6676, '0330491482'), - (6677, '0767904141'), - (6678, '0786868430'), - (6679, '0394711556'), - (6680, '2842190009'), - (6681, '0060191538'), - (6682, '0060191341'), - (6443, '0425166929'), - (6683, '0425104044'), - (6684, '051509479X'), - (3779, '0312958129'), - (543, '0385336314'), - (6685, '1891620452'), - (6686, '0590477331'), - (6687, '0590477331'), - (6688, '0590477331'), - (6689, '3530267147'), - (6690, '3530267147'), - (1241, '3530267147'), - (6691, '3150000254'), - (6692, '3518100122'), - (6693, '3518380338'), - (6694, '074930152X'), - (368, '3257232543'), - (6695, '3257232543'), - (6696, '0140621466'), - (1209, '0345368754'), - (6697, '3492260640'), - (6698, '3492260640'), - (6699, '3627001028'), - (6700, '3627001028'), - (956, '0553213164'), - (129, '0446603929'), - (2719, '067189787X'), - (6701, '0440431476'), - (6702, '0553213180'), - (6703, '0061067318'), - (6704, '037316243X'), - (3359, '0671745085'), - (1024, '014032724X'), - (6705, '0312155204'), - (6706, '1569470170'), - (543, '0440177049'), - (6707, '0451528670'), - (6708, '0451528670'), - (6603, '074347502X'), - (6709, '0590434616'), - (6710, '0812551702'), - (2930, '0812551699'), - (2930, '0812536541'), - (152, '0446518581'), - (6711, '0971181802'), - (6712, '0971181802'), - (937, '0380712040'), - (6713, '0752837648'), - (498, '0743225724'), - (2187, '0553562401'), - (2331, '0451523873'), - (6714, '0451523873'), - (6715, '0451523873'), - (6716, '0553202960'), - (6717, '0060806389'), - (6718, '0553235605'), - (3805, '0449243141'), - (188, '0553561057'), - (6719, '0816627770'), - (6720, '0804461406'), - (6721, '0804461406'), - (6722, '0375756981'), - (6723, '068486729X'), - (6724, '0440504589'), - (6725, '0440504589'), - (1907, '0195014766'), - (6726, '0195014766'), - (6727, '0195014766'), - (6728, '0140440372'), - (6729, '0844237809'), - (6730, '0844237809'), - (6731, '0394717023'), - (6732, '0394717023'), - (6733, '0140442014'), - (6734, '0140442014'), - (6735, '0765307596'), - (2592, '0140258795'), - (6736, '0965063992'), - (1161, '0898799767'), - (6737, '0812059379'), - (6738, '0812059379'), - (6739, '0812059379'), - (6740, '0671850148'), - (6741, '1559702141'), - (6742, '0395893380'), - (6743, '0060915765'), - (6744, '0380713926'), - (6745, '0425117693'), - (6746, '0877799156'), - (6747, '0804113491'), - (6748, '0521456932'), - (6749, '0521456932'), - (6750, '0521456932'), - (6751, '0020474105'), - (6752, '0020154402'), - (6753, '0024182001'), - (257, '0024182001'), - (6754, '0312894708'), - (6755, '0393320553'), - (6756, '0393320553'), - (6757, '0226899152'), - (6758, '0898794080'), - (6759, '0062735233'), - (6760, '0596005059'), - (6761, '0596005059'), - (6762, '0312422547'), - (2793, '0312422547'), - (6763, '067972754X'), - (6764, '0735619255'), - (4782, '0596004893'), - (723, '0679727299'), - (6765, '0679727299'), - (6766, '1400062535'), - (6767, '0345464869'), - (5896, '0393051404'), - (6768, '0385500696'), - (6769, '0898798736'), - (6770, '0673522946'), - (4993, '0312203632'), - (6771, '0312203632'), - (6772, '0312203632'), - (6773, '0151003718'), - (951, '0385509472'), - (250, '0060988649'), - (2006, '0380725711'), - (5151, '0380812959'), - (6774, '0061056278'), - (5151, '0380788101'), - (6773, '0061056286'), - (5151, '0380784157'), - (5151, '0380788098'), - (6775, '0671319930'), - (3077, '0743471547'), - (6776, '0743471547'), - (6777, '0743471547'), - (5880, '0345392477'), - (795, '0808572407'), - (6778, '0595256368'), - (6779, '0425076490'), - (58, '0061099708'), - (337, '0425182886'), - (337, '0425179559'), - (337, '0425174018'), - (337, '0425157474'), - (337, '0425152901'), - (337, '0425147746'), - (337, '0425141551'), - (337, '0425137937'), - (337, '0425132935'), - (337, '0425120015'), - (337, '0440200040'), - (337, '0440188415'), - (337, '0440111323'), - (337, '0440195357'), - (337, '0440109930'), - (337, '0440180953'), - (337, '0440122147'), - (337, '0440153166'), - (6780, '0671853864'), - (1876, '0340750626'), - (337, '0440171970'), - (337, '0440157587'), - (337, '0440129613'), - (6781, '0874770475'), - (6780, '0874770351'), - (6782, '0917102258'), - (6783, '0878570950'), - (6784, '0812911520'), - (607, '0449215156'), - (6785, '189400406X'), - (721, '3746618363'), - (6786, '3746618363'), - (6787, '9722014862'), - (1052, '345319926X'), - (6788, '345319926X'), - (713, '0451143752'), - (282, '0670842702'), - (6789, '0140178260'), - (6790, '0375758208'), - (1010, '0385302304'), - (6791, '0375726241'), - (1234, '344245073X'), - (6792, '344245073X'), - (368, '0515117234'), - (4106, '0805062858'), - (1315, '0451158237'), - (6793, '0393045986'), - (598, '0393045986'), - (6794, '0452281881'), - (6795, '0300029691'), - (6796, '1555971148'), - (1547, '1555971148'), - (6797, '1555971148'), - (6798, '1555971148'), - (2146, '0060163747'), - (6799, '0553081209'), - (952, '0684195488'), - (6800, '0931122422'), - (3823, '0941831930'), - (6801, '0446518425'), - (6802, '9711004143'), - (6803, '0932194400'), - (6804, '0060961724'), - (6805, '0060961724'), - (1464, '0140444300'), - (6806, '0140444300'), - (6805, '0140444300'), - (6807, '0930377001'), - (6808, '0930377001'), - (6809, '0930377001'), - (6810, '0930377001'), - (6811, '0930377001'), - (6812, '0295968265'), - (6813, '0295968265'), - (6814, '0520007840'), - (6815, '039330678X'), - (415, '0312062346'), - (6816, '0312062346'), - (6817, '0440220424'), - (6818, '0440220424'), - (1935, '0440220424'), - (6819, '0679405135'), - (6820, '0060179228'), - (6821, '1557982414'), - (6822, '074321689X'), - (1001, '0553057758'), - (6375, '0060176873'), - (5155, '0151255946'), - (6823, '0151255946'), - (6824, '0913175145'), - (6825, '0913175145'), - (6826, '0871134799'), - (6375, '0060168536'), - (6827, '0060149426'), - (1597, '0689817851'), - (6828, '044920846X'), - (6829, '0935710019'), - (6830, '0807059056'), - (6110, '0679723285'), - (6831, '1561385751'), - (6832, '1561385751'), - (6833, '1561385751'), - (5012, '0140181997'), - (6834, '0966691911'), - (1349, '0970335555'), - (6835, '0755310721'), - (6836, '0553572431'), - (6837, '0812549082'), - (256, '006105691X'), - (2188, '0553574604'), - (3692, '0345388526'), - (3692, '0345402405'), - (3692, '0345389980'), - (3817, '0373250207'), - (6838, '0671023934'), - (6839, '0671023934'), - (6840, '1571684115'), - (6841, '1571684115'), - (3292, '0312254199'), - (6842, '0312254199'), - (6843, '0061000124'), - (6844, '0061000124'), - (6837, '0671003941'), - (6838, '0671003941'), - (85, '0451523601'), - (6845, '0451523601'), - (145, '3453171837'), - (876, '3453171837'), - (145, '345315195X'), - (876, '345315195X'), - (145, '3453147464'), - (876, '3453147464'), - (3717, '0241141788'), - (648, '0802131786'), - (3717, '0140075968'), - (6846, '0385475195'), - (6847, '3473580309'), - (17, '1558745041'), - (18, '1558745041'), - (19, '1558745041'), - (6848, '076456174X'), - (4376, '0345386663'), - (6849, '0060594330'), - (6850, '0060594330'), - (1498, '0812550773'), - (630, '082175856X'), - (630, '044914982X'), - (2357, '0671899597'), - (6851, '038071616X'), - (630, '067179390X'), - (630, '0345365925'), - (6852, '0373834136'), - (630, '0821772341'), - (543, '0440237025'), - (743, '0316171476'), - (4376, '034538170X'), - (1024, '059098182X'), - (152, '0446603600'), - (6853, '0425180298'), - (6854, '0312986696'), - (6855, '0345459679'), - (1432, '0312306326'), - (6856, '0670852147'), - (6857, '0670852147'), - (3096, '0345442393'), - (488, '0061031550'), - (3852, '0440214904'), - (6858, '0801678765'), - (6859, '0801678765'), - (142, '0451169522'), - (1086, '0805054081'), - (285, '0060927216'), - (1578, '0064406962'), - (6860, '0064406962'), - (6861, '074324141X'), - (1523, '0812504305'), - (6862, '0863040403'), - (1323, '0374172897'), - (25, '0140283404'), - (340, '0380730774'), - (965, '0862418879'), - (6863, '0862418879'), - (6864, '0862418879'), - (6865, '340414645X'), - (6866, '3442730988'), - (6867, '3442730988'), - (1052, '3404144783'), - (3114, '0880707550'), - (6868, '068145413X'), - (898, '068145413X'), - (6869, '068145413X'), - (6870, '1569472793'), - (6871, '0297829084'), - (6872, '1853406201'), - (6873, '0006551076'), - (6874, '1903650151'), - (3234, '1852278951'), - (6875, '1841153656'), - (658, '0140178198'), - (659, '0140178198'), - (6876, '1877003034'), - (6877, '3404144317'), - (145, '3453171861'), - (6878, '3852183219'), - (6877, '3852182751'), - (4288, '2070408221'), - (6879, '0792706250'), - (6701, '0340568879'), - (2621, '059040654X'), - (6880, '0439557089'), - (6881, '0749707933'), - (3166, '0517189674'), - (6882, '0810943980'), - (6883, '0590248588'), - (6884, '0870449559'), - (6885, '043910842X'), - (6886, '0749712295'), - (6887, '0749726881'), - (2724, '0140309586'), - (6888, '0140319972'), - (6889, '0140319972'), - (6890, '156565269X'), - (6891, '156565269X'), - (1410, '0394839102'), - (1411, '0394839102'), - (6892, '0860201244'), - (6893, '0860201244'), - (6894, '0860201244'), - (6895, '0395713250'), - (6896, '0395713250'), - (6897, '0894806149'), - (6898, '0894806149'), - (6899, '0140554556'), - (6900, '0140554556'), - (1031, '1563053179'), - (1410, '039480967X'), - (1411, '039480967X'), - (974, '0394800389'), - (6901, '0394800389'), - (6902, '0802769756'), - (6903, '0802769756'), - (6904, '0802769756'), - (6905, '0679823859'), - (6906, '0679823859'), - (6907, '0064430227'), - (6906, '0064430227'), - (6908, '0030423910'), - (6909, '0140502076'), - (6908, '0140502076'), - (6910, '0843110406'), - (6911, '0843110430'), - (6912, '0881380199'), - (6913, '0881380199'), - (388, '1853261580'), - (6914, '1853261580'), - (6915, '0307968219'), - (6401, '0789495929'), - (6916, '0920236162'), - (6917, '0920236162'), - (3102, '0140183515'), - (6918, '0140183515'), - (6919, '0152014209'), - (6920, '0517556758'), - (6921, '0881660965'), - (6922, '188559304X'), - (6923, '188559304X'), - (6924, '1557346755'), - (6925, '1557346755'), - (6926, '1557346755'), - (6927, '155734678X'), - (6928, '1557346763'), - (58, '0061093335'), - (6929, '0385479670'), - (6930, '0786861924'), - (6931, '0786861924'), - (1965, '0890430403'), - (6932, '1551669021'), - (6933, '076270327X'), - (1335, '076270327X'), - (6180, '0375504443'), - (3256, '0618015841'), - (176, '0681403225'), - (6934, '0385316518'), - (6935, '0440324971'), - (658, '0140168125'), - (6936, '0140168125'), - (6937, '0192829068'), - (6938, '0192829068'), - (6939, '0192829068'), - (6940, '0688141862'), - (6941, '0688141862'), - (1784, '0446602450'), - (247, '0804113831'), - (256, '0061092193'), - (256, '0061031321'), - (374, '0446359750'), - (1696, '0380818604'), - (803, '0812577833'), - (2185, '0440208513'), - (1060, '0553299077'), - (256, '0061054895'), - (6942, '0688177867'), - (6943, '0440458226'), - (3168, '0767916069'), - (3458, '067943299X'), - (6944, '0156027119'), - (2241, '0590065912'), - (6945, '0966853016'), - (6946, '0966853016'), - (6947, '0689832133'), - (6948, '0689832133'), - (2336, '0140179836'), - (1164, '0553580906'), - (6949, '0300080301'), - (463, '044022103X'), - (132, '0553581554'), - (3115, '0373834349'), - (2028, '0451179803'), - (2028, '0451203593'), - (5081, '0764223305'), - (2028, '0451207505'), - (630, '1575666731'), - (6950, '0396080111'), - (6951, '0030476267'), - (819, '0812507436'), - (818, '0812507436'), - (4921, '0201093804'), - (6952, '0671760602'), - (6953, '0671760602'), - (6954, '0970634706'), - (6955, '2020336480'), - (6956, '2070378306'), - (6957, '2070378306'), - (6958, '2020315599'), - (6959, '2080671618'), - (6960, '2868697984'), - (6961, '2868697984'), - (6962, '2868697984'), - (6963, '2253942723'), - (6964, '2253942731'), - (716, '2070425266'), - (2606, '2070425266'), - (6965, '2070425266'), - (221, '2070411729'), - (6966, '202009908X'), - (6967, '2842190068'), - (4288, '2266023209'), - (3291, '2264023481'), - (1265, '0345331397'), - (6968, '2070361039'), - (6969, '207072333X'), - (6970, '2290328685'), - (6971, '2020281341'), - (6970, '2020323656'), - (6972, '2253037389'), - (6973, '2020094851'), - (6974, '2020099136'), - (6975, '2253023906'), - (4705, '2290045764'), - (3046, '225314911X'), - (6976, '0679751750'), - (6975, '0679751769'), - (6977, '0679751769'), - (6978, '0679751769'), - (6979, '2070332748'), - (3008, '2070369439'), - (6980, '2070426777'), - (1396, '2290302481'), - (6981, '0744302749'), - (4377, '3257231598'), - (6982, '3257231598'), - (1521, '0751528498'), - (1799, '3478719615'), - (6983, '3596137225'), - (6984, '3596137225'), - (484, '0446341878'), - (2487, '3257231180'), - (3388, '3257231180'), - (6985, '3451048582'), - (6986, '0962655104'), - (6987, '3499228653'), - (142, '0451180232'), - (6988, '1570671044'), - (142, '0905712609'), - (176, '0671625837'), - (176, '0517693119'), - (6989, '0452275350'), - (6990, '0395584159'), - (6991, '0913028673'), - (6992, '0415040132'), - (6993, '0836269640'), - (2271, '1551667878'), - (4198, '157566383X'), - (6994, '0380790718'), - (6995, '0590462105'), - (6996, '0590462121'), - (6997, '0812022009'), - (6998, '0812022009'), - (6999, '037321815X'), - (7000, '0373293143'), - (7001, '0373293135'), - (183, '0399145702'), - (945, '0446346802'), - (1428, '0590483447'), - (1428, '0590453688'), - (142, '0451137965'), - (3310, '0451137965'), - (237, '0553266578'), - (368, '0449219550'), - (59, '0425128164'), - (59, '0425107469'), - (580, '0451162145'), - (571, '042510687X'), - (1965, '0451451481'), - (7002, '0451451481'), - (2513, '0451451481'), - (237, '0440198577'), - (237, '0553262645'), - (237, '044018293X'), - (1428, '0590568817'), - (7003, '0553573616'), - (183, '0515101230'), - (183, '0515129941'), - (7004, '0590421174'), - (7005, '089919463X'), - (7006, '0590250841'), - (7007, '0590250841'), - (7005, '0590250884'), - (7006, '0590250884'), - (7008, '0743492919'), - (1214, '0671039946'), - (1214, '0671039954'), - (1214, '0671039962'), - (618, '0807554545'), - (7009, '0807554545'), - (618, '0807534374'), - (618, '0807530816'), - (618, '0807554227'), - (618, '0807554200'), - (7010, '0671002031'), - (7011, '0872863077'), - (3549, '0786014245'), - (7012, '0312312261'), - (7013, '0312312261'), - (7014, '1574090356'), - (7015, '1574090356'), - (180, '0142000221'), - (3571, '014014773X'), - (7016, '0060910690'), - (7017, '0812925300'), - (7018, '0312953496'), - (7019, '1858283434'), - (7020, '0671732129'), - (274, '0140041796'), - (891, '052594544X'), - (7021, '1567313590'), - (5622, '1567313590'), - (7022, '0812551478'), - (7021, '0765346524'), - (433, '0345434676'), - (7023, '078670442X'), - (7024, '0505525372'), - (7025, '055357339X'), - (5898, '055357339X'), - (7026, '055357339X'), - (1859, '0553209671'), - (644, '0440204208'), - (7027, '0140074511'), - (7028, '0843952016'), - (7029, '0843951907'), - (5405, '0843949783'), - (936, '0843949783'), - (388, '0156252856'), - (7030, '1858286999'), - (7031, '1858286999'), - (7032, '1858286999'), - (7033, '1858286999'), - (6075, '1740591623'), - (7034, '1740591623'), - (7035, '1740591623'), - (7036, '1740591623'), - (7037, '3761400853'), - (7038, '0864427557'), - (7039, '0864427557'), - (7040, '0864427557'), - (7041, '0864427557'), - (2150, '346202261X'), - (7042, '3257217005'), - (7043, '3257217005'), - (7044, '3257217005'), - (7045, '3257217005'), - (1065, '0345315227'), - (1065, '0312871996'), - (1554, '0312871996'), - (7046, '3455003273'), - (7047, '1571741119'), - (284, '0140620443'), - (397, '0517053616'), - (401, '0517147815'), - (7048, '0517147815'), - (7049, '0517147815'), - (1396, '3453217314'), - (4603, '0679436154'), - (7050, '345834277X'), - (7051, '345834277X'), - (7052, '0140135375'), - (2458, '0140442529'), - (7053, '0140442529'), - (7052, '0140442529'), - (3608, '3596258758'), - (723, '3596258758'), - (6458, '3518068547'), - (217, '057106700X'), - (3972, '057106700X'), - (7054, '0140422161'), - (7055, '0140422161'), - (7056, '0140422161'), - (821, '0006547834'), - (7057, '1559706643'), - (552, '3442724627'), - (7058, '3442724627'), - (4610, '0670822671'), - (7059, '972210585X'), - (7060, '9726101794'), - (7061, '9722002171'), - (188, '0345410017'), - (1523, '0812550927'), - (7062, '1577592735'), - (7063, '1577592735'), - (7064, '0553279300'), - (7065, '0786702524'), - (1519, '0486414167'), - (181, '0486414167'), - (2930, '044100668X'), - (7066, '0826452450'), - (5632, '0486270513'), - (7067, '0553274325'), - (7068, '0966505301'), - (1722, '0375500936'), - (94, '034910171X'), - (154, '0385494238'), - (1455, '0671855670'), - (7069, '3453152816'), - (7070, '0333375114'), - (7071, '0333375114'), - (7072, '0333375114'), - (2118, '0786861347'), - (7073, '1590889754'), - (7074, '0452283248'), - (7075, '0945320531'), - (142, '0425105334'), - (188, '0395878063'), - (59, '0553580191'), - (7076, '0440442508'), - (7077, '0440442508'), - (7078, '0064400859'), - (257, '0064400565'), - (258, '0064400565'), - (1721, '0439049962'), - (1721, '0590846280'), - (7079, '0316358487'), - (7078, '0316358452'), - (7080, '0380787717'), - (7081, '0006485936'), - (2210, '0671558684'), - (583, '0345379365'), - (2504, '0312855222'), - (3071, '0312855222'), - (7082, '0312855222'), - (187, '0345307615'), - (4794, '0345315723'), - (7083, '0201754703'), - (247, '0804119368'), - (5060, '0375759999'), - (7084, '0375758232'), - (5060, '0679413138'), - (7085, '0525939105'), - (5060, '0375758275'), - (142, '0451172817'), - (60, '0671886665'), - (1755, '0440487617'), - (1756, '0440487617'), - (2179, '0590109960'), - (7086, '0590462261'), - (1024, '0440227194'), - (7087, '044021985X'), - (7088, '0440220238'), - (1234, '0767915062'), - (2088, '0062516930'), - (7089, '0679755047'), - (1084, '0374173133'), - (285, '0060509171'), - (467, '080506995X'), - (7090, '080506995X'), - (7091, '0809140586'), - (7092, '0809140586'), - (7093, '1583224890'), - (7094, '0809141353'), - (7095, '0809141353'), - (1936, '006008829X'), - (7096, '006008829X'), - (7097, '0764551620'), - (7098, '0553096087'), - (7099, '0737003103'), - (7100, '0737003103'), - (7101, '074322423X'), - (7102, '1572242396'), - (1704, '0312981589'), - (7103, '0312981589'), - (7104, '006019328X'), - (7105, '0399525009'), - (7106, '0062508342'), - (7107, '0062508342'), - (7108, '0062508342'), - (7109, '0140195874'), - (7110, '1591860008'), - (7111, '0874779685'), - (7112, '0874779685'), - (7113, '0066214424'), - (3946, '0345394070'), - (7114, '0376017201'), - (7115, '0376017201'), - (7116, '0376016760'), - (4457, '0696208180'), - (364, '0060958014'), - (7117, '0312271247'), - (7118, '0312271247'), - (7119, '1559706848'), - (7120, '0848723716'), - (7121, '1564145190'), - (7122, '1573228354'), - (1591, '1573222410'), - (7123, '1571780386'), - (7124, '1571780386'), - (7125, '0764586335'), - (7126, '0937750123'), - (7127, '1583762027'), - (7128, '2070403963'), - (7129, '2070392627'), - (7130, '2070392627'), - (7131, '0805071792'), - (7132, '0316328197'), - (3912, '051513595X'), - (6177, '044021680X'), - (1065, '3453092473'), - (2990, '3453092473'), - (7133, '3453092473'), - (145, '3453861825'), - (92, '0345369416'), - (501, '0440120500'), - (142, '0743211375'), - (2958, '0446606251'), - (397, '0521409047'), - (7134, '0521409047'), - (7135, '0521409047'), - (4347, '0340682310'), - (7136, '3518394045'), - (814, '3426615355'), - (5335, '0446515078'), - (2325, '185371545X'), - (7137, '0446300152'), - (5903, '0446300152'), - (7138, '0446300152'), - (1696, '0671720147'), - (4024, '0060511508'), - (7139, '0060511508'), - (6195, '0060511508'), - (7140, '0060511508'), - (7141, '0140093060'), - (7142, '0671033085'), - (7143, '0671033085'), - (7144, '0684852144'), - (7145, '0316787035'), - (7146, '156025307X'), - (7147, '0452284139'), - (7148, '067145711X'), - (7149, '0553202308'), - (7150, '0385115784'), - (7151, '0684872889'), - (7152, '0802139604'), - (7153, '0786881194'), - (7154, '0140167455'), - (7155, '0385493258'), - (7156, '0767906039'), - (7157, '0684835290'), - (7158, '0451083709'), - (97, '0871131455'), - (7159, '0425178838'), - (43, '077109972X'), - (7160, '077109972X'), - (746, '0439386012'), - (259, '0451520882'), - (3051, '0451520882'), - (7161, '1841953229'), - (149, '067943853X'), - (3738, '0349115222'), - (7162, '0060956135'), - (7163, '0349111030'), - (7164, '055214276X'), - (7165, '0330317490'), - (2188, '0552134759'), - (59, '0425130711'), - (256, '0575049804'), - (256, '0575047631'), - (256, '0575046066'), - (256, '0575044632'), - (256, '0575043636'), - (7166, '1593150229'), - (7167, '0671787187'), - (7168, '0449213013'), - (543, '0385317093'), - (142, '0451168089'), - (612, '080411868X'), - (2770, '0439420105'), - (7169, '1591824095'), - (7170, '039914417X'), - (784, '0451163710'), - (5873, '0451158261'), - (1938, '0671799584'), - (7171, '1860465382'), - (7172, '1860465382'), - (7168, '1591822580'), - (7173, '1591822572'), - (7168, '1591821533'), - (1041, '0765304686'), - (1041, '0786927402'), - (1042, '0786927402'), - (7168, '1591820073'), - (7168, '1591820065'), - (4730, '0812511751'), - (606, '0812511751'), - (7168, '1591820057'), - (945, '0345418263'), - (7168, '1931514925'), - (7174, '034528349X'), - (2188, '055309128X'), - (7175, '0887621112'), - (7176, '0380775662'), - (806, '0399124721'), - (7177, '0671876821'), - (433, '0553141279'), - (397, '067172262X'), - (7178, '0764226312'), - (7179, '039304808X'), - (2543, '0345445899'), - (1246, '9681902548'), - (7180, '9681902548'), - (7181, '9681902548'), - (2758, '9681902068'), - (7182, '0805052453'), - (3284, '1841952338'), - (176, '0330419560'), - (965, '086611954X'), - (7183, '0316877719'), - (7184, '0747541140'), - (7185, '0789426277'), - (7186, '0345449126'), - (1704, '055314300X'), - (7187, '0664225985'), - (7188, '0671022202'), - (2940, '031217229X'), - (5020, '0060925752'), - (7189, '038531177X'), - (1315, '0452264863'), - (2360, '1582341400'), - (7190, '0515085995'), - (7191, '0515085995'), - (713, '0449137465'), - (2768, '0671887963'), - (413, '0452273404'), - (3536, '0965011615'), - (7192, '0965011615'), - (6113, '0446404144'), - (1814, '0689859368'), - (2296, '0689859368'), - (7193, '0440416655'), - (7194, '0440416655'), - (7192, '0440414857'), - (7195, '0440414857'), - (7193, '0440414857'), - (2872, '042518045X'), - (7196, '0959774661'), - (7197, '0373259204'), - (7198, '0746016646'), - (7199, '0746016646'), - (7200, '0373165218'), - (571, '0425145638'), - (6248, '140003065X'), - (7201, '0671708376'), - (7202, '0671742647'), - (7203, '0671742647'), - (7204, '0671883410'), - (7205, '0671567993'), - (7206, '0446345628'), - (1699, '0553260960'), - (59, '0553801376'), - (6854, '0671733893'), - (796, '0671700103'), - (3115, '1551669447'), - (351, '0552992062'), - (7207, '0684863308'), - (618, '0807508527'), - (7208, '0807508527'), - (3259, '0590848860'), - (5814, '0590848860'), - (7209, '0590848860'), - (3787, '037582233X'), - (66, '0842343318'), - (65, '0842343318'), - (3268, '0842343318'), - (66, '084234330X'), - (65, '084234330X'), - (3268, '084234330X'), - (66, '0842343326'), - (65, '0842343326'), - (3268, '0842343326'), - (66, '0842342974'), - (65, '0842342974'), - (3268, '0842342974'), - (66, '0842321969'), - (65, '0842321969'), - (2525, '0671021192'), - (7210, '0671884492'), - (3159, '0380769557'), - (1211, '0671028383'), - (1211, '0671011367'), - (3430, '0091882087'), - (7211, '0446670553'), - (1282, '0671047485'), - (532, '0515136549'), - (2006, '0380814811'), - (971, '0671019716'), - (971, '0671034057'), - (5223, '0373708718'), - (971, '0671568841'), - (7212, '0373289766'), - (2267, '0553581643'), - (230, '038078615X'), - (2169, '038078615X'), - (7213, '038078615X'), - (2259, '0380781468'), - (971, '0671027573'), - (7214, '0312962436'), - (7213, '0312960891'), - (1116, '055358068X'), - (7215, '0440235510'), - (532, '0451402049'), - (7216, '0521815819'), - (132, '0553569910'), - (7217, '0817235000'), - (7218, '0817235000'), - (7219, '1576751511'), - (7220, '1576751511'), - (7221, '1576751511'), - (7222, '3442730368'), - (7223, '3442730368'), - (7224, '3442728266'), - (7225, '3442760771'), - (3838, '3442729696'), - (4812, '3442729726'), - (4702, '3442729726'), - (7226, '3442728312'), - (7227, '3442728312'), - (7228, '350251884X'), - (7229, '3442429641'), - (2488, '3442429641'), - (7230, '3442429641'), - (780, '3251004557'), - (2710, '344254162X'), - (767, '2253137243'), - (433, '0345456335'), - (2296, '0345456335'), - (3223, '3404117476'), - (616, '0553578685'), - (2271, '0451409884'), - (542, '0743418204'), - (1932, '0786863137'), - (554, '0553574639'), - (54, '0060512822'), - (7231, '006097673X'), - (7232, '0805023232'), - (7231, '0805039805'), - (7231, '0805018352'), - (1575, '0609608339'), - (7233, '0871138433'), - (6113, '0446607681'), - (7234, '1584650532'), - (7233, '1584650028'), - (7233, '0874518849'), - (7235, '0786866845'), - (7236, '0786866845'), - (56, '0375757422'), - (7237, '0375757422'), - (7232, '037570745X'), - (565, '0553290533'), - (7238, '0312989393'), - (641, '0312273045'), - (7239, '1853261874'), - (1158, '0836218310'), - (1455, '0552146986'), - (7240, '0340818689'), - (7241, '0140059032'), - (2598, '0140011706'), - (7242, '0552136492'), - (7243, '0330335278'), - (7244, '0743429044'), - (7245, '1857027604'), - (7246, '1856354008'), - (7247, '0440501601'), - (7248, '0952661020'), - (7247, '0952661012'), - (7247, '0952661004'), - (7249, '0340660112'), - (7250, '0718146999'), - (7251, '0718146999'), - (432, '0312135866'), - (7252, '0575065613'), - (7253, '0575065613'), - (7254, '0752800442'), - (7255, '1559704950'), - (1880, '0399141294'), - (921, '0312869932'), - (7256, '0425176789'), - (7257, '0553580310'), - (367, '0679450742'), - (465, '0060391626'), - (3883, '0374527229'), - (1704, '0312253435'), - (7102, '0312253435'), - (1010, '0385337477'), - (2937, '0140431217'), - (7258, '0140431217'), - (1753, '0312986319'), - (1704, '0312989385'), - (574, '0345409329'), - (323, '0451411056'), - (7259, '0349115761'), - (128, '0446603104'), - (65, '0553803220'), - (7260, '0553803220'), - (7261, '1560232234'), - (7262, '1883061318'), - (7263, '0060009462'), - (128, '0446519790'), - (3046, '2253146889'), - (7264, '0340629681'), - (7265, '0552998524'), - (4811, '074932483X'), - (397, '014070714X'), - (7266, '014070714X'), - (1523, '0140351140'), - (7267, '0340672250'), - (7268, '0563384514'), - (7269, '0060921161'), - (7270, '0330253603'), - (7271, '0553131605'), - (543, '044011585X'), - (543, '0440200563'), - (7272, '0671774662'), - (59, '0425075699'), - (1891, '0425080021'), - (936, '0425085325'), - (59, '042511984X'), - (250, '0060393823'), - (7273, '0747517797'), - (60, '0671431285'), - (7274, '0889627681'), - (7275, '0771058373'), - (3714, '0875423086'), - (433, '0345349350'), - (7276, '156504875X'), - (7277, '156504875X'), - (1318, '1853267333'), - (873, '0061093998'), - (873, '0812508645'), - (7278, '0671743058'), - (1539, '0048231398'), - (1062, '0048231398'), - (2835, '0312932014'), - (2585, '0812580346'), - (7279, '0671793152'), - (182, '0671793128'), - (1194, '0671641379'), - (1194, '0671568051'), - (1194, '0671002112'), - (1194, '0671730886'), - (1194, '0671794795'), - (5860, '0393037606'), - (7280, '0205319149'), - (7281, '0316235024'), - (7282, '0060952970'), - (7283, '0836133471'), - (3799, '0743203631'), - (7284, '1567187072'), - (7285, '1551108496'), - (7286, '0831711434'), - (7287, '0067575986'), - (7288, '0023193913'), - (7289, '0023193913'), - (7290, '0028639227'), - (505, '0517159309'), - (7291, '1557866031'), - (7292, '0931432820'), - (7293, '0671528068'), - (7294, '0800629701'), - (7295, '0966496027'), - (7294, '0966496019'), - (7296, '0929661192'), - (7297, '0922066434'), - (7298, '0517025302'), - (7299, '0553344803'), - (7298, '0060922583'), - (7294, '1580060218'), - (7300, '0195113713'), - (7301, '0195113713'), - (7302, '0452010136'), - (7303, '0452010136'), - (7304, '0345379586'), - (7305, '0192839071'), - (7306, '0192839071'), - (312, '0192834274'), - (7307, '0192834274'), - (7308, '0899548318'), - (7309, '0899548318'), - (7310, '0374523835'), - (7311, '0140585044'), - (7312, '0140585044'), - (7313, '0899088236'), - (7314, '014130751X'), - (7315, '0140360468'), - (5231, '0140620842'), - (7316, '0590449389'), - (1704, '0553278002'), - (7317, '0060198508'), - (3080, '0451187423'), - (7318, '0671750402'), - (7, '080411109X'), - (142, '0425081818'), - (580, '0425081818'), - (891, '0345369432'), - (890, '0451206460'), - (1455, '0552999954'), - (6283, '0140287248'), - (438, '0590502077'), - (7319, '1590790510'), - (7320, '1401040861'), - (7321, '0310239397'), - (568, '0060652926'), - (7322, '0786865482'), - (2619, '084235266X'), - (7323, '1557739579'), - (387, '0140375988'), - (1571, '0451194721'), - (3133, '0679448608'), - (1628, '0553089218'), - (7324, '0312983379'), - (7325, '140332557X'), - (7326, '1562012541'), - (7242, '0330491970'), - (7327, '1858285453'), - (7328, '1858285453'), - (1428, '0590487442'), - (2239, '0590431366'), - (401, '0448060043'), - (7048, '0448060043'), - (956, '0553213172'), - (397, '0671722905'), - (962, '0397306938'), - (4671, '0397306938'), - (7329, '0345316452'), - (7330, '0590853112'), - (505, '0517051516'), - (7331, '1562933493'), - (7332, '0448343010'), - (7333, '0448343010'), - (7334, '0448343010'), - (7335, '0816715602'), - (599, '0307117421'), - (1230, '0060931418'), - (1013, '051720679X'), - (895, '0451194772'), - (896, '0451194772'), - (7336, '0679455884'), - (7337, '0142000981'), - (7338, '0971212309'), - (7339, '0060926198'), - (1592, '0310254752'), - (7340, '044990945X'), - (183, '0515136557'), - (7341, '0449204324'), - (7342, '0747545545'), - (135, '0965455572'), - (7343, '3492236014'), - (7344, '3492236014'), - (1678, '3404147952'), - (7345, '3404146794'), - (3839, '3257227264'), - (2484, '3442429552'), - (7346, '3596148731'), - (7347, '349222962X'), - (7348, '349222962X'), - (7349, '3492235816'), - (1061, '3492235816'), - (5916, '0312320248'), - (552, '3442726735'), - (7350, '3442726735'), - (2028, '340414550X'), - (7351, '3404148703'), - (7352, '3404145518'), - (5911, '3404149122'), - (5707, '3596144868'), - (7353, '3596144868'), - (7354, '3426603136'), - (7355, '3426603136'), - (3608, '3423026294'), - (7356, '3423026294'), - (7357, '0804114498'), - (1726, '3442447038'), - (7358, '3442448336'), - (7359, '3442448336'), - (1105, '3404144171'), - (7360, '3404144694'), - (2492, '3423201509'), - (7361, '3423201509'), - (574, '3442442532'), - (7362, '3442442532'), - (474, '0020198906'), - (627, '1578155584'), - (7363, '0312082975'), - (415, '0451527569'), - (463, '0451527569'), - (7364, '0938317288'), - (7365, '0140089225'), - (323, '0679449787'), - (7366, '0385425473'), - (7367, '0312959842'), - (7366, '0312962940'), - (7368, '0061097152'), - (7369, '061812702X'), - (7370, '061812702X'), - (630, '082177364X'), - (7371, '0440236878'), - (7372, '0060963190'), - (2913, '0743448642'), - (7373, '0553801449'), - (823, '0140263144'), - (7374, '0892813571'), - (7375, '0811214028'), - (5720, '0811214028'), - (7376, '0811214028'), - (1232, '0679757899'), - (7377, '157322877X'), - (7378, '0385319525'), - (7379, '0590418262'), - (7380, '0590418262'), - (584, '0821769367'), - (1816, '0743400399'), - (1816, '0689866259'), - (5153, '0689866259'), - (1815, '0671042599'), - (7381, '0671042599'), - (7382, '0671042599'), - (7383, '0743427440'), - (4099, '0743427440'), - (7384, '0743427440'), - (7385, '0743427440'), - (6116, '0743400453'), - (1816, '0743400453'), - (7386, '0743400453'), - (7387, '0743400453'), - (187, '0812564901'), - (5233, '0812564901'), - (7388, '0812539265'), - (868, '0440221919'), - (7389, '1891153889'), - (1815, '1891153889'), - (5153, '068985918X'), - (7390, '1569715416'), - (1815, '1569715416'), - (7391, '1569715416'), - (7392, '1569715416'), - (1815, '0743418921'), - (369, '0373482078'), - (3115, '0373482078'), - (7393, '0373482078'), - (7394, '0373482078'), - (7395, '0843129689'), - (7396, '0399525777'), - (7397, '0762401400'), - (7398, '0762401400'), - (7396, '0762401397'), - (7399, '0762401397'), - (7400, '0821223275'), - (7401, '0821223275'), - (7402, '0785811338'), - (3055, '0316287555'), - (7403, '0590433512'), - (7404, '0345320530'), - (7405, '0486227456'), - (7406, '0789709651'), - (2179, '0141307129'), - (7407, '0062732749'), - (7408, '0062732749'), - (7409, '1586630326'), - (7410, '1586630326'), - (3997, '0451458311'), - (7411, '0451458311'), - (7412, '0451458311'), - (6097, '0679885447'), - (2995, '0762404590'), - (1299, '051512558X'), - (7413, '0743211995'), - (7414, '0761530878'), - (7415, '0761537295'), - (7414, '0761539220'), - (907, '0761539220'), - (7416, '088038204X'), - (7417, '0525463062'), - (7418, '0525463062'), - (7419, '076071682X'), - (3912, '0515132136'), - (7351, '076530127X'), - (85, '0140431314'), - (284, '0140430547'), - (5745, '0140430547'), - (7420, '0312154895'), - (7421, '1410755568'), - (5916, '0316816531'), - (11, '0156005492'), - (1675, '038533446X'), - (1013, '0805059555'), - (1013, '0805036504'), - (7422, '0060005009'), - (7421, '0060005009'), - (7423, '0786831685'), - (7424, '0786831685'), - (7425, '0786831685'), - (7426, '1578562589'), - (815, '0671024183'), - (7427, '0590448501'), - (7426, '0590448501'), - (4376, '055305807X'), - (7428, '0831746807'), - (7429, '0373706863'), - (3359, '0671690558'), - (155, '0140173188'), - (7430, '1558172696'), - (7431, '1558172696'), - (7432, '1558172696'), - (7433, '0399519483'), - (7434, '1562650033'), - (7435, '1562650033'), - (7436, '0451173392'), - (7437, '0451173392'), - (7438, '0679434046'), - (7439, '1568846444'), - (7440, '0895266067'), - (7296, '0380004658'), - (2150, '3462030531'), - (7441, '3462030531'), - (484, '3442438799'), - (1876, '3442427983'), - (1921, '3442427983'), - (7442, '0553155962'), - (7443, '0024080918'), - (7444, '0024080918'), - (7445, '027362198X'), - (7446, '1885027060'), - (7447, '1885027060'), - (7448, '0312962185'), - (7449, '1932173102'), - (7450, '1932173102'), - (7451, '0373029578'), - (7452, '0380788500'), - (2796, '1558172297'), - (919, '0373035039'), - (903, '1878702033'), - (2695, '0618124918'), - (7453, '0618124918'), - (2258, '0380782332'), - (3893, '0553124773'), - (438, '0698116844'), - (1298, '0440700132'), - (760, '0553278215'), - (1214, '0743428625'), - (7454, '067174500X'), - (166, '0440213428'), - (7455, '0671726587'), - (7456, '0590679090'), - (7457, '0590679090'), - (7458, '3453864050'), - (7459, '3453864026'), - (7460, '0440406404'), - (7461, '0929923901'), - (7462, '0446512478'), - (4137, '0385417845'), - (235, '0385312121'), - (7463, '0553273280'), - (1884, '0425177351'), - (145, '0425177351'), - (7464, '0425177351'), - (7465, '0312912153'), - (7466, '0671836862'), - (7467, '1558020837'), - (7468, '055311767X'), - (108, '0312974256'), - (5112, '0449222470'), - (7469, '052341899X'), - (7470, '0689846223'), - (5500, '0689846223'), - (7471, '0070504253'), - (7472, '067088782X'), - (7473, '1893010023'), - (1048, '1893010023'), - (7474, '0743456246'), - (915, '0141439556'), - (5082, '0141439556'), - (7475, '0141439556'), - (59, '0679425268'), - (129, '0446608815'), - (369, '0515128546'), - (1298, '0440984696'), - (369, '0515114006'), - (574, '0375401601'), - (7476, '0446610348'), - (505, '0517431491'), - (7477, '0300069766'), - (7478, '0140178406'), - (369, '0399149392'), - (266, '0312875681'), - (3223, '0385413041'), - (7479, '0385308078'), - (7480, '0395771382'), - (915, '0451523385'), - (7481, '0140440224'), - (7482, '0140440224'), - (7483, '0871138611'), - (188, '0380789663'), - (188, '0380789590'), - (106, '0316769495'), - (4391, '1551662809'), - (7484, '1410784924'), - (180, '0670880728'), - (24, '0385472943'), - (7485, '0679452354'), - (7486, '0142003727'), - (959, '2253036218'), - (142, '2290308404'), - (7487, '2738107915'), - (7488, '2844121578'), - (7489, '2844121578'), - (2805, '2264002190'), - (1553, '2266072242'), - (7490, '1591299357'), - (7491, '0373703384'), - (1282, '0671047515'), - (1282, '0553581767'), - (1452, '039308700X'), - (2986, '039308700X'), - (59, '0553801341'), - (188, '0375803017'), - (7492, '0375803017'), - (142, '0671039725'), - (574, '0345389425'), - (7493, '0671660209'), - (1558, '0345422317'), - (7494, '0140169598'), - (5148, '0671883429'), - (397, '0671722891'), - (7495, '0441115985'), - (4290, '0441115985'), - (7496, '0441115985'), - (7497, '0553234706'), - (7498, '067153873X'), - (7200, '0671869124'), - (142, '0451142934'), - (7499, '068805935X'), - (7500, '0786862564'), - (7501, '0786862564'), - (7502, '0967575613'), - (7503, '0967575613'), - (3432, '0345388623'), - (5096, '0445407158'), - (7504, '0445407158'), - (7505, '0553568787'), - (7506, '0345382528'), - (6425, '0446363049'), - (7507, '0446363049'), - (7508, '0671017241'), - (5361, '0849939518'), - (7509, '0740738089'), - (397, '0451526929'), - (6138, '0446676209'), - (7510, '0446676209'), - (7511, '0446676209'), - (7512, '0747553327'), - (7513, '0571134173'), - (7514, '0865733279'), - (7515, '0865733279'), - (2271, '0451408462'), - (7516, '0446517399'), - (543, '0440173922'), - (553, '0061031992'), - (1706, '0156394014'), - (4079, '0517703858'), - (7517, '0425159671'), - (3499, '1551668084'), - (2251, '0843948892'), - (3918, '038081014X'), - (7518, '344244991X'), - (1726, '051513306X'), - (7519, '0805065393'), - (527, '0764226770'), - (7520, '0425195244'), - (7521, '0060527412'), - (7522, '042519213X'), - (1112, '0671042513'), - (7523, '045121188X'), - (1319, '0446611468'), - (7524, '0451211790'), - (2169, '0451408020'), - (3132, '0373225628'), - (7525, '0373289138'), - (4024, '0060531231'), - (1833, '037322558X'), - (3434, '0312990030'), - (7526, '0373224648'), - (2169, '0451211839'), - (7527, '0821760955'), - (59, '0425104346'), - (714, '0425198057'), - (2824, '0451210646'), - (2253, '0440224551'), - (6576, '0843953780'), - (7528, '0440237556'), - (7529, '0373245025'), - (1351, '0373226667'), - (7530, '0373224613'), - (7531, '0373226772'), - (7532, '0373226144'), - (1388, '037312273X'), - (7533, '0373225806'), - (2409, '0373225857'), - (3471, '0505522837'), - (7534, '0505522837'), - (7535, '0505522837'), - (7536, '0061084476'), - (1892, '0061000205'), - (2239, '0590251627'), - (2241, '0590251619'), - (2239, '0590251600'), - (6703, '1551669420'), - (4826, '0152017682'), - (7537, '0425176614'), - (4909, '1581960085'), - (1537, '0515134511'), - (7538, '0486277879'), - (7539, '1932344268'), - (7540, '0967024250'), - (7541, '096702420X'), - (236, '0446520802'), - (3458, '0375500995'), - (7542, '0062502514'), - (634, '0425168468'), - (410, '0553227467'), - (4050, '0140372628'), - (5720, '0394728815'), - (7375, '0394728815'), - (7543, '0963930400'), - (7542, '0963930419'), - (532, '0515130966'), - (971, '1551667339'), - (7544, '1571430237'), - (1428, '0590474804'), - (220, '0060152583'), - (3480, '0060152583'), - (6544, '0374512647'), - (7545, '0374512647'), - (7546, '0374512647'), - (3008, '0394743040'), - (7547, '0394743040'), - (3008, '0394623266'), - (7548, '0020191200'), - (7549, '0394744756'), - (3008, '0394552369'), - (1207, '0375757147'), - (3760, '0375757147'), - (410, '0440206146'), - (4362, '0060392436'), - (7550, '0805064222'), - (7551, '0140274316'), - (7552, '0609607804'), - (7553, '0609607804'), - (7554, '3548265383'), - (732, '0618129014'), - (7555, '055338189X'), - (3325, '0385509529'), - (7556, '0821601806'), - (7557, '0821601806'), - (6428, '0345329732'), - (7558, '1563521083'), - (7559, '0449200256'), - (61, '0684195976'), - (7560, '042506073X'), - (6471, '0312971494'), - (7561, '0451112121'), - (7562, '0515123536'), - (7563, '037324195X'), - (7564, '0312954700'), - (7565, '0312954700'), - (7566, '0671672495'), - (81, '0425092917'), - (254, '0449911519'), - (543, '0440236754'), - (7567, '0881660949'), - (142, '0451173317'), - (142, '0451160525'), - (7568, '0743446593'), - (5510, '068483068X'), - (7569, '0759695377'), - (7570, '0340512660'), - (7569, '0340512660'), - (7571, '0099623404'), - (281, '014035008X'), - (473, '0684813440'), - (473, '0684813459'), - (474, '0684813467'), - (7572, '0553283111'), - (1157, '0030448565'), - (7573, '0030448565'), - (7574, '0140188479'), - (7575, '0446393681'), - (7576, '067177879X'), - (7577, '067177879X'), - (7578, '0553238744'), - (3086, '0020199600'), - (949, '0553210211'), - (7579, '0743211227'), - (7580, '0743211227'), - (1704, '0553560441'), - (374, '0445405627'), - (7581, '0445405627'), - (891, '0440201705'), - (5962, '0061090565'), - (2188, '0553297422'), - (1498, '0515117617'), - (2656, '0449217264'), - (1213, '0345298349'), - (7582, '0345372050'), - (7583, '0809130157'), - (4321, '0060919833'), - (2188, '0553199803'), - (3591, '0553269100'), - (7584, '0345311183'), - (7585, '0553236776'), - (7584, '0553236687'), - (7586, '155369046X'), - (7587, '0312971303'), - (7588, '067188414X'), - (7589, '067188414X'), - (2371, '0440215404'), - (7590, '1863736522'), - (7591, '1869503368'), - (7592, '1869503368'), - (7593, '1589610024'), - (369, '0425195473'), - (7594, '0899681069'), - (7595, '0802707815'), - (7596, '0241894840'), - (2976, '0002219476'), - (7597, '1551660369'), - (4191, '0778321150'), - (7598, '0860207161'), - (7599, '0671955543'), - (7600, '0671955543'), - (7601, '0140307532'), - (7602, '0140328335'), - (7603, '0006716067'), - (1194, '000692347X'), - (7604, '085079188X'), - (7605, '0723237840'), - (7606, '0001360469'), - (7605, '0001360469'), - (7607, '0721406173'), - (7608, '0948535156'), - (7609, '059070592X'), - (7610, '0001374869'), - (7609, '0001374869'), - (7611, '0861122488'), - (599, '0307122034'), - (7612, '1852700483'), - (7613, '0750009861'), - (7614, '0721407501'), - (7615, '0721407501'), - (7018, '1858282160'), - (1473, '0140276904'), - (947, '3453868315'), - (7616, '3453868315'), - (7617, '3442450020'), - (7618, '3442450020'), - (133, '3404148665'), - (7619, '0967819946'), - (244, '3630869459'), - (7620, '3630869459'), - (2271, '1551666650'), - (2618, '1558745157'), - (7621, '0802139612'), - (7622, '0812966627'), - (7623, '0806943238'), - (7624, '096737930X'), - (7625, '096737930X'), - (7626, '0531162192'), - (7627, '0439083699'), - (7628, '0439083699'), - (7629, '0439083699'), - (3787, '0060739487'), - (1578, '0060739495'), - (1853, '0060739444'), - (2638, '0060739444'), - (7630, '0743437314'), - (5500, '006073941X'), - (7631, '006073941X'), - (7632, '0439633737'), - (7633, '0439633737'), - (7631, '0439253233'), - (810, '034536208X'), - (1704, '0553230212'), - (7634, '1579903002'), - (7635, '0762727942'), - (7636, '1590591224'), - (176, '0787108960'), - (7204, '0812522133'), - (7637, '014028852X'), - (7638, '014028852X'), - (7639, '014028852X'), - (7640, '014028852X'), - (7641, '1887424148'), - (7642, '1887424148'), - (7643, '1887424148'), - (7644, '0060928174'), - (7645, '0060928174'), - (7646, '0425063879'), - (268, '1563890895'), - (4051, '1563890895'), - (7647, '1563890895'), - (7648, '1563890895'), - (7645, '0425064921'), - (7645, '0425061957'), - (2909, '1878424483'), - (7649, '1878424483'), - (7650, '0789205106'), - (7651, '0679445358'), - (7652, '0679445358'), - (7653, '1861870612'), - (7654, '0804831904'), - (7655, '0804831904'), - (7656, '0804831904'), - (7657, '0517163446'), - (7658, '0517163446'), - (7659, '1565123778'), - (7660, '1565123778'), - (860, '0553578731'), - (7661, '0020292651'), - (7662, '0898866294'), - (7663, '0898866294'), - (7664, '1904492355'), - (237, '0440118700'), - (7335, '0380710897'), - (7665, '0615116426'), - (600, '0590457241'), - (760, '0553242172'), - (132, '0553800949'), - (94, '0330328913'), - (7666, '0738867543'), - (758, '0349105715'), - (220, '057114456X'), - (4288, '3257205082'), - (7667, '3257205082'), - (7668, '0849955815'), - (7669, '0849955815'), - (602, '0590101129'), - (7670, '069811406X'), - (6146, '0373612605'), - (284, '0140430083'), - (7671, '0140430083'), - (7672, '1582340722'), - (7673, '0373822030'), - (7674, '0060000791'), - (285, '006050918X'), - (7675, '0140124381'), - (7676, '039305747X'), - (3097, '0689303173'), - (3098, '0689303173'), - (7677, '0140441654'), - (7678, '0140441654'), - (7679, '0140158014'), - (7680, '0140118047'), - (7681, '0732264472'), - (7682, '0394759753'), - (7683, '0910147140'), - (7684, '0895778742'), - (7685, '0821723502'), - (1209, '0345418271'), - (7686, '0534005411'), - (234, '0804114277'), - (5110, '0671795570'), - (889, '0312955006'), - (7687, '0440236169'), - (7001, '0425178552'), - (7688, '0312278284'), - (397, '014071491X'), - (7689, '014071491X'), - (7690, '1902825969'), - (5418, '0380803240'), - (2835, '0843952407'), - (3848, '0553235400'), - (4232, '0679723110'), - (4111, '0140430350'), - (6217, '0140430350'), - (280, '037325024X'), - (5646, '0743463544'), - (7691, '193152713X'), - (7692, '1400060222'), - (433, '0061057908'), - (7693, '0061057908'), - (7694, '0061057908'), - (433, '0061050946'), - (5540, '0061050946'), - (6696, '0061044431'), - (7695, '0802140149'), - (6369, '006093140X'), - (433, '0345351878'), - (433, '0441003389'), - (433, '0441005314'), - (2987, '0061057894'), - (7692, '0061057894'), - (5418, '0380720868'), - (7696, '078670621X'), - (7697, '0393315606'), - (7698, '0060936231'), - (7699, '0060936231'), - (7700, '0156002108'), - (2035, '0786864400'), - (1086, '0140178139'), - (7701, '0440219930'), - (7702, '0395640229'), - (1320, '0060178248'), - (7703, '1573220663'), - (991, '0140139400'), - (76, '0671682083'), - (7704, '9151830485'), - (82, '0192816276'), - (7705, '0192816276'), - (7706, '0330353713'), - (7707, '0060503475'), - (7708, '1400060117'), - (7691, '081296800X'), - (367, '0449908798'), - (7709, '0743255224'), - (4348, '0399146113'), - (4349, '0399146113'), - (7710, '0312291523'), - (668, '0446675059'), - (7711, '1558614621'), - (7712, '1558614621'), - (5707, '0753811251'), - (25, '0375411550'), - (7713, '0679774025'), - (4049, '0380705648'), - (7714, '0812968182'), - (7715, '0385318804'), - (4049, '0380652277'), - (7716, '0375508627'), - (239, '0452284937'), - (1228, '1573222267'), - (135, '0316781010'), - (1228, '0865472807'), - (4724, '0345460359'), - (7717, '1885211929'), - (7718, '1885211929'), - (7719, '0743201027'), - (7720, '156292530X'), - (7721, '0684836556'), - (7722, '0684836556'), - (7723, '0842307419'), - (5591, '1556612966'), - (5608, '0590465953'), - (1173, '0671017276'), - (403, '0895772175'), - (7724, '0895772175'), - (7725, '0064405109'), - (7726, '0064405109'), - (7727, '0064405486'), - (7728, '0064405486'), - (7729, '0064400018'), - (258, '0064400018'), - (7730, '1561797111'), - (2029, '0836217799'), - (7731, '083611714X'), - (7732, '0440490995'), - (1176, '0380698714'), - (3405, '0380698714'), - (7733, '0380698714'), - (2713, '0553481185'), - (2570, '0689835744'), - (7734, '0590450336'), - (7735, '0590450336'), - (1691, '0316115568'), - (7736, '0590623516'), - (7737, '0140511008'), - (83, '0609602438'), - (7738, '9723704552'), - (7271, '067177459X'), - (7739, '0618071784'), - (5623, '1550660160'), - (7740, '0876054440'), - (7741, '0882547593'), - (7742, '0316057517'), - (7743, '0866220445'), - (7744, '0866220445'), - (7745, '0517880539'), - (7746, '0671449621'), - (7747, '3923880642'), - (7748, '3923880642'), - (7749, '0312104456'), - (7750, '0312104456'), - (7751, '0385314280'), - (7752, '0385314280'), - (3757, '0345285859'), - (7753, '0872168255'), - (411, '0804102988'), - (891, '0440150167'), - (7754, '0590988867'), - (7755, '059050214X'), - (7756, '0316286125'), - (7757, '0590053698'), - (7758, '038523029X'), - (6629, '0152177639'), - (1422, '0380715635'), - (1977, '0517667185'), - (7759, '0517667185'), - (7760, '0316613231'), - (4981, '0140343865'), - (618, '0807593664'), - (7761, '0807593664'), - (7762, '044021212X'), - (1024, '0440411335'), - (5441, '0440497272'), - (956, '059042243X'), - (7763, '0140365826'), - (3359, '0671550748'), - (7764, '0821715186'), - (1578, '0060233346'), - (7765, '0590098535'), - (7766, '0671866966'), - (7767, '072324216X'), - (631, '0140314512'), - (7762, '0590432664'), - (6942, '0440430712'), - (7768, '0590972154'), - (1989, '0590972154'), - (7769, '0380750260'), - (7770, '0449219895'), - (1428, '0590399888'), - (7771, '0874067715'), - (3028, '0874067715'), - (7770, '0874067715'), - (7772, '006440160X'), - (7773, '006440160X'), - (1431, '0316142417'), - (5586, '0786813563'), - (7774, '0064470229'), - (7775, '0590425560'), - (7776, '0590425560'), - (7777, '0590414356'), - (7775, '0590414356'), - (7778, '0910034532'), - (7779, '1591820324'), - (7778, '1591820316'), - (7778, '1591820308'), - (7778, '1591820286'), - (7778, '1931514496'), - (7778, '1931514968'), - (7780, '3426621657'), - (7781, '0312983336'), - (397, '0140714197'), - (7782, '0140714197'), - (7783, '0425154882'), - (6880, '0233981071'), - (7784, '3453171489'), - (7785, '3453171489'), - (7786, '1550171348'), - (49, '0345404769'), - (59, '0425158594'), - (1858, '0099282194'), - (7787, '0380806576'), - (4049, '0060508876'), - (7788, '0967253535'), - (1194, '0448095017'), - (7789, '0671038850'), - (6302, '345386722X'), - (7790, '345386722X'), - (6425, '0446359688'), - (7791, '0892831189'), - (7792, '0449902927'), - (17, '1558745017'), - (18, '1558745017'), - (7793, '1558745017'), - (7794, '1558745017'), - (7795, '0671501283'), - (7796, '0671501283'), - (7797, '033036197X'), - (7798, '0767906780'), - (7799, '0679744495'), - (3458, '0440221099'), - (463, '0385319207'), - (7800, '0449907635'), - (7801, '042518269X'), - (4837, '0060915749'), - (1013, '0553260618'), - (5497, '0671002783'), - (397, '0671722794'), - (7802, '1893121119'), - (162, '0804900078'), - (7803, '0385323905'), - (1894, '034540727X'), - (5138, '0786886625'), - (7804, '0375760504'), - (5786, '0312300530'), - (7805, '157322930X'), - (4135, '0805211020'), - (7806, '0679736891'), - (4559, '0060915188'), - (1229, '0671792385'), - (4912, '0156008661'), - (63, '0156008661'), - (5642, '0156008661'), - (7807, '0156008661'), - (7808, '0609803247'), - (61, '0425163407'), - (7809, '0671873199'), - (5538, '0812531353'), - (7810, '0140281290'), - (2629, '3596143500'), - (403, '0451525027'), - (7811, '0451525027'), - (7812, '9074336329'), - (7813, '3423704306'), - (7814, '3423704306'), - (183, '0515099546'), - (1326, '0812542835'), - (1327, '0812542835'), - (7815, '0373264208'), - (7816, '0373264216'), - (7516, '0425170306'), - (7516, '042517025X'), - (7516, '0425180905'), - (7817, '0373263945'), - (906, '0425067769'), - (7818, '0785278796'), - (7819, '1560431008'), - (7820, '1565076257'), - (3713, '0553575937'), - (7821, '0571136117'), - (7822, '0856402915'), - (4657, '0800714237'), - (7823, '0140069453'), - (7824, '0671852701'), - (7825, '0553283588'), - (7102, '055329508X'), - (6111, '0855616539'), - (1092, '0743410181'), - (626, '0671502522'), - (1092, '0671502522'), - (898, '0671502522'), - (7826, '0671502522'), - (7827, '0373834292'), - (5214, '0373834292'), - (7828, '0373834292'), - (7829, '0263819922'), - (7830, '0263823091'), - (674, '026382831X'), - (1092, '0671744623'), - (6854, '0671025384'), - (7831, '0671019228'), - (7832, '038073320X'), - (3823, '0061044636'), - (2084, '0553561049'), - (3115, '0263824683'), - (7833, '0373047231'), - (971, '0373483872'), - (2863, '0373483872'), - (7834, '0373483872'), - (4692, '3442438241'), - (7835, '3442438241'), - (1248, '3596130417'), - (7836, '3596130417'), - (4387, '0552526150'), - (7837, '0307123332'), - (7604, '0723245835'), - (7838, '3770156218'), - (6631, '351828875X'), - (7839, '3453124502'), - (7840, '354835985X'), - (7841, '3404144449'), - (252, '3442420156'), - (7842, '3442420156'), - (1191, '0330294911'), - (7843, '3485008265'), - (5160, '0061053473'), - (3856, '3792000261'), - (7844, '3792000261'), - (3839, '3257229305'), - (7840, '3499231689'), - (5403, '3423125071'), - (7845, '3423125071'), - (2790, '0553239112'), - (7846, '0802141293'), - (7847, '0451458915'), - (7846, '0451458559'), - (7846, '0451458141'), - (7846, '0451457935'), - (7846, '0451457730'), - (3792, '0142002798'), - (7848, '0397300441'), - (7849, '0397300441'), - (742, '0451190955'), - (742, '0451160533'), - (7850, '0060530421'), - (995, '0395927218'), - (7851, '0345450302'), - (250, '006039384X'), - (3618, '037576092X'), - (7852, '0874041872'), - (1537, '0515133876'), - (1537, '0515134503'), - (1537, '0515134457'), - (1537, '0515134473'), - (7853, '0810942631'), - (7854, '0810942631'), - (1537, '0515134465'), - (3588, '0142002593'), - (1537, '051513452X'), - (7855, '0399150706'), - (1537, '0515134481'), - (7856, '038548237X'), - (1537, '051513449X'), - (7857, '158567365X'), - (5094, '0743456408'), - (5094, '0743427149'), - (951, '1565113306'), - (7858, '1565113306'), - (1211, '3442355907'), - (7859, '3442355907'), - (1628, '3442448182'), - (7860, '3442448182'), - (3880, '3442309646'), - (7861, '3442309646'), - (951, '3442541662'), - (7862, '3442541662'), - (121, '3442451752'), - (7863, '3442451752'), - (7864, '9810023847'), - (1898, '081257558X'), - (7865, '0684859483'), - (7866, '0684859483'), - (7867, '0684859483'), - (7868, '9810455674'), - (7869, '0395971802'), - (7863, '9810026595'), - (397, '1853262439'), - (397, '1853262544'), - (7870, '0971009902'), - (7871, '1840224002'), - (7872, '1840224002'), - (905, '1853260339'), - (56, '0553212737'), - (7873, '2277301981'), - (7874, '0140106391'), - (795, '0345434110'), - (3654, '0743456947'), - (7875, '1853265179'), - (1428, '0671013777'), - (7876, '0446605700'), - (7877, '0451186745'), - (7878, '0553446282'), - (7879, '1857821173'), - (7880, '0446531413'), - (553, '0061032476'), - (7881, '0373764405'), - (7882, '0060533072'), - (342, '055356983X'), - (7883, '0330352695'), - (3831, '1860499627'), - (7884, '1860499627'), - (7885, '0553492144'), - (7886, '0553569228'), - (1719, '0061013714'), - (7887, '0345260791'), - (7888, '0553493213'), - (7889, '0312274777'), - (7890, '0140366709'), - (7891, '0140366709'), - (3823, '0060574216'), - (7892, '0060540591'), - (7893, '0553492942'), - (7894, '0553492942'), - (7895, '0553492942'), - (85, '1853262773'), - (7896, '0896380637'), - (7897, '0752271687'), - (7898, '0899093655'), - (1577, '0312049994'), - (7899, '0767914848'), - (7900, '0684849690'), - (7901, '0380731819'), - (4507, '0380731819'), - (7902, '0505524902'), - (2417, '0515131679'), - (563, '0425195449'), - (4931, '0446613851'), - (7903, '034544227X'), - (897, '0451210611'), - (374, '0679438890'), - (7904, '0399527826'), - (7905, '0399527826'), - (7906, '0767904095'), - (653, '0812929802'), - (2082, '0743400739'), - (3601, '2070424324'), - (7907, '2070424324'), - (7908, '2290311782'), - (7909, '2266031619'), - (7910, '2266031619'), - (7911, '1550544683'), - (336, '0749717556'), - (7912, '0881339512'), - (7913, '0881339512'), - (5015, '0140031189'), - (4938, '0871132648'), - (7914, '037575699X'), - (7915, '037575699X'), - (2703, '037575699X'), - (274, '0141301104'), - (7916, '0714843377'), - (1248, '3453150090'), - (7917, '0525944230'), - (634, '0425170500'), - (369, '0399148248'), - (571, '9500416387'), - (149, '9500704285'), - (634, '0425174344'), - (971, '0671027581'), - (150, '0061015075'), - (1747, '0224031457'), - (7918, '0805066160'), - (5877, '0553564498'), - (7919, '1883991145'), - (2667, '0312970277'), - (3172, '0449224627'), - (490, '0060082194'), - (1858, '0618059458'), - (341, '1573229725'), - (937, '0786889306'), - (7297, '325770044X'), - (1899, '325770044X'), - (1265, '325770044X'), - (4426, '0671534726'), - (1214, '0671873202'), - (1214, '0671007637'), - (1214, '0671534734'), - (5705, '0821745689'), - (1214, '0671534742'), - (1219, '0380720973'), - (59, '0425136981'), - (7920, '2070381471'), - (1621, '0609607294'), - (7921, '089733356X'), - (7922, '0375724397'), - (7923, '0226244962'), - (7922, '0226244962'), - (7924, '0226244962'), - (2559, '0312965141'), - (7925, '0807612596'), - (7926, '0893819034'), - (7927, '0893819034'), - (1275, '0689848919'), - (7928, '3404161696'), - (2239, '0590436481'), - (2240, '0590436481'), - (60, '0671673653'), - (7929, '1558746692'), - (7930, '1558746692'), - (1899, '0140378278'), - (7931, '0140378278'), - (7932, '0352332352'), - (7933, '0452007380'), - (7934, '0553133896'), - (7935, '0553133896'), - (7936, '0380599236'), - (543, '0440224780'), - (2007, '0446671002'), - (1428, '0590483404'), - (220, '0060930314'), - (1428, '0590453653'), - (1428, '059056885X'), - (1880, '038549842X'), - (6825, '0385246870'), - (3035, '0312869088'), - (7937, '0871312875'), - (4727, '0340415185'), - (7938, '0684865491'), - (3798, '0786862874'), - (39, '0679419454'), - (7939, '0553057456'), - (7940, '0385298870'), - (6390, '0836252063'), - (7941, '1575662493'), - (2271, '1551668971'), - (7942, '1880909340'), - (7943, '0517597152'), - (1196, '0399149384'), - (7944, '1559721162'), - (7945, '0802733220'), - (2583, '0892967307'), - (7946, '0446518859'), - (2913, '0688126731'), - (5108, '0684196549'), - (7947, '0688158196'), - (2576, '0345386299'), - (6390, '0836278658'), - (7948, '0609602403'), - (7949, '1575663473'), - (4730, '0525426701'), - (4677, '0689304420'), - (7950, '0394473043'), - (7951, '052593863X'), - (3643, '0385419457'), - (4190, '0060176539'), - (7952, '038530532X'), - (4502, '0385314124'), - (7953, '0312112831'), - (7954, '0618045678'), - (7955, '0312263066'), - (2593, '038097729X'), - (4565, '0670854891'), - (280, '2266123254'), - (1167, '0439531640'), - (7956, '0152045708'), - (2353, '0812971043'), - (1706, '0156319527'), - (7957, '0754807762'), - (7958, '0060923288'), - (7959, '1551669323'), - (3768, '0330349112'), - (7960, '033035566X'), - (7961, '061805670X'), - (7962, '0684860244'), - (7963, '0831731516'), - (1484, '3453870212'), - (7964, '3442355052'), - (1560, '0385509510'), - (7965, '3426616653'), - (7966, '0688169082'), - (7967, '1570753881'), - (7966, '1570753881'), - (7968, '0813339022'), - (7969, '0465083668'), - (7970, '0931779073'), - (7971, '0679757015'), - (7972, '0385239165'), - (7973, '155896388X'), - (7974, '155896388X'), - (7975, '0380771535'), - (7976, '0813526507'), - (7977, '0460873946'), - (7978, '0460873946'), - (367, '0804115761'), - (7979, '0688118186'), - (7980, '0671027328'), - (7981, '1863305955'), - (7982, '0195090616'), - (873, '0812513495'), - (1663, '0812971116'), - (7983, '0140481850'), - (5938, '3442449871'), - (7984, '3442449871'), - (7985, '3442450136'), - (7986, '3442450136'), - (48, '3442426030'), - (7987, '0064406423'), - (7988, '0140249265'), - (7989, '3462027697'), - (7990, '3462027697'), - (4382, '0449147231'), - (7991, '0747258740'), - (7992, '0330351958'), - (7213, '0743419162'), - (7993, '0451205707'), - (58, '0060179341'), - (889, '0316152196'), - (1432, '0312185863'), - (1498, '0312865694'), - (7994, '0684193965'), - (2169, '0451206444'), - (7995, '0843947616'), - (7996, '0689117353'), - (7997, '0787902314'), - (7998, '0304328502'), - (7400, '0304328502'), - (7999, '0745312187'), - (8000, '0745312187'), - (8001, '0745312187'), - (8002, '0745312187'), - (8003, '0889220603'), - (8004, '1558505164'), - (8005, '1558505164'), - (8006, '1550221582'), - (1164, '0553380400'), - (781, '1555838537'), - (8002, '0889223017'), - (436, '0449219399'), - (8007, '0310248299'), - (551, '006104296X'), - (1265, '0553803700'), - (1265, '0553565079'), - (397, '0451524608'), - (8008, '0451524608'), - (397, '0451522869'), - (8009, '0451522869'), - (397, '0451524101'), - (8010, '0451524101'), - (397, '0451522990'), - (8011, '0451522990'), - (8012, '0451522990'), - (397, '0451522966'), - (8013, '0451522966'), - (397, '0451524098'), - (8014, '0451524098'), - (397, '0451523113'), - (397, '0451522664'), - (397, '0451522974'), - (8015, '0451522974'), - (397, '0140707204'), - (8016, '0140707204'), - (397, '0140707182'), - (8017, '0140707182'), - (397, '014070728X'), - (8016, '014070728X'), - (8018, '014070728X'), - (433, '0441001416'), - (6854, '0671025325'), - (7085, '0802850995'), - (8019, '0804200637'), - (8020, '068700781X'), - (8021, '068700781X'), - (8022, '0679730621'), - (8023, '1862044201'), - (8024, '0345388879'), - (8025, '0316102334'), - (8026, '0316102334'), - (8027, '0380792508'), - (176, '0517552000'), - (3662, '0553564927'), - (8028, '0064403149'), - (2287, '0446400718'), - (2495, '0786868848'), - (1331, '0451410378'), - (341, '1573227889'), - (8029, '0446515272'), - (7467, '0425129039'), - (369, '0373240007'), - (4104, '3596505275'), - (8030, '3608934537'), - (266, '0765304341'), - (8031, '076530418X'), - (8032, '0312867808'), - (8033, '0812568850'), - (8034, '0812575857'), - (3632, '0452263565'), - (1628, '0553285920'), - (8035, '0345346602'), - (8036, '0679454748'), - (8037, '0785280952'), - (533, '0345430514'), - (150, '0060933186'), - (151, '0061097853'), - (8038, '0552995770'), - (2583, '0718143051'), - (1726, '1865083348'), - (1428, '3570206181'), - (8039, '3570206181'), - (1428, '3570205932'), - (8038, '3570205932'), - (3962, '3473581720'), - (7861, '3473581720'), - (847, '349913943X'), - (3223, '0553271369'), - (8040, '0671016733'), - (8041, '0618145591'), - (7426, '0307001377'), - (8042, '0307001377'), - (882, '0140390227'), - (8043, '0851129412'), - (8044, '0851129412'), - (8045, '0851129412'), - (8046, '0851128882'), - (8047, '1852838892'), - (8048, '0743430344'), - (8049, '0500091080'), - (8050, '0500091080'), - (8051, '0851125794'), - (8052, '0851125794'), - (8053, '0711930007'), - (8054, '034911319X'), - (8055, '0688176461'), - (1826, '0373765207'), - (8056, '0439132266'), - (8057, '0195101685'), - (8058, '0860202909'), - (397, '0743477553'), - (2599, '0451515927'), - (8059, '0373169922'), - (60, '0671867091'), - (2306, '1575662728'), - (2170, '1575662728'), - (674, '1575662728'), - (8060, '1575662728'), - (1087, '0821758608'), - (3677, '038072751X'), - (8061, '0553207083'), - (8062, '0590487922'), - (798, '0590554093'), - (8063, '0821756079'), - (606, '0886778905'), - (59, '0425147517'), - (59, '0345386108'), - (1283, '0671709607'), - (8064, '1881471578'), - (5201, '3442725984'), - (1061, '3442725984'), - (8065, '0849942365'), - (8066, '0849942365'), - (8067, '0895294958'), - (8068, '0028612671'), - (8069, '0395752833'), - (8070, '0061056154'), - (2528, '0515130095'), - (1851, '0061099082'), - (8071, '0812531884'), - (626, '0671795554'), - (2393, '0886775981'), - (3912, '0515130044'), - (4191, '1551665204'), - (5432, '0440217334'), - (8072, '0140287442'), - (8073, '0425164152'), - (5052, '038072118X'), - (7916, '0451407199'), - (8074, '0446608009'), - (616, '0553576798'), - (8075, '1558850767'), - (8076, '0684871483'), - (8077, '0684871483'), - (236, '0446525537'), - (8078, '0385472978'), - (8079, '0533133726'), - (8080, '1561708755'), - (4419, '0375507639'), - (6470, '0670894605'), - (712, '038550117X'), - (3332, '0684847450'), - (8081, '0886772796'), - (8082, '0451451600'), - (8083, '0752847732'), - (8084, '0684865386'), - (5788, '1400030927'), - (8085, '0340767065'), - (8086, '0582327318'), - (8087, '0135605415'), - (8088, '0395585686'), - (1366, '3442445078'), - (8089, '0141012722'), - (6174, '0451208668'), - (3752, '0380976749'), - (4750, '038549744X'), - (2559, '0316095648'), - (8090, '1552781364'), - (8091, '075530540X'), - (4416, '0590321579'), - (8092, '0919926487'), - (8093, '090898801X'), - (8094, '0553275380'), - (2261, '0505522977'), - (5183, '3548256058'), - (8095, '3404614887'), - (8096, '2226133097'), - (8097, '0684849046'), - (8098, '0679752560'), - (8099, '0312270348'), - (374, '0345446666'), - (247, '0449207668'), - (8100, '1877251038'), - (8101, '0877734518'), - (5564, '1863305025'), - (5629, '0460875523'), - (8102, '0330359916'), - (1323, '0553550020'), - (4966, '0881662089'), - (8103, '0890875871'), - (6213, '0385423977'), - (8104, '0805031251'), - (8105, '0684859114'), - (8106, '0812931378'), - (7255, '042514321X'), - (8107, '0767904621'), - (8108, '0312205309'), - (583, '0061008079'), - (8109, '096843911X'), - (414, '0553255762'), - (8110, '1550460943'), - (8111, '067154683X'), - (342, '0671690094'), - (8112, '3492231489'), - (8113, '3492231489'), - (8114, '0618093974'), - (6377, '0060970421'), - (24, '0440295556'), - (3263, '0590423827'), - (8115, '0590423827'), - (8116, '0440134056'), - (3654, '0399145419'), - (906, '0553241443'), - (92, '0425071588'), - (68, '0156004801'), - (8117, '0380788802'), - (3086, '1853260975'), - (8118, '0671047302'), - (7994, '0843949465'), - (8119, '0099142309'), - (8120, '0671640992'), - (6704, '0312610556'), - (8121, '0385493002'), - (6331, '0385418132'), - (1997, '0446611921'), - (2694, '006103018X'), - (3333, '0525945725'), - (8122, '3351028253'), - (8123, '0140511687'), - (8124, '0140511687'), - (8125, '0030291798'), - (8126, '0030291798'), - (586, '0060959541'), - (8127, '0060959541'), - (8128, '0812967224'), - (8129, '0374250995'), - (8130, '0380710722'), - (4988, '0006550576'), - (3077, '0743471555'), - (2201, '0743471555'), - (6776, '0743471555'), - (6591, '0553101633'), - (736, '0743205820'), - (131, '0061094226'), - (8131, '0679776591'), - (462, '3446177108'), - (8132, '3446177108'), - (1061, '3446177108'), - (867, '3426609568'), - (142, '3453090578'), - (8133, '3442441188'), - (50, '3442441188'), - (1747, '0679777423'), - (1096, '0553344234'), - (54, '0060175796'), - (8134, '057121861X'), - (8135, '0807004553'), - (8136, '0807004553'), - (4050, '0140439072'), - (8137, '0140439072'), - (2344, '0140439072'), - (8138, '0140288090'), - (1023, '0679435549'), - (2836, '3492044514'), - (8139, '3492044514'), - (8140, '3442354722'), - (8141, '3442354722'), - (8142, '3442356970'), - (7361, '3442356970'), - (48, '3442442540'), - (8143, '3442438659'), - (1164, '3499225964'), - (8144, '3499225964'), - (8145, '3492236324'), - (8146, '3426612828'), - (8147, '3426612828'), - (2928, '3462030191'), - (8148, '3462030191'), - (8149, '3426622254'), - (8150, '3426048086'), - (8151, '3498006312'), - (8152, '3746612160'), - (8153, '3746612160'), - (1255, '3485008702'), - (8154, '3485008702'), - (1782, '3453195841'), - (8155, '340411566X'), - (24, '345307565X'), - (8156, '3453177398'), - (8157, '3453177398'), - (1089, '0679020489'), - (8158, '0471526525'), - (8159, '0471526525'), - (8160, '0312263236'), - (8161, '0312263236'), - (1099, '0670853097'), - (8162, '0140184325'), - (8163, '0140184325'), - (938, '0340424354'), - (2679, '1862045143'), - (534, '0671000314'), - (8164, '0688170714'), - (8165, '0375502114'), - (1575, '0517703963'), - (8166, '0786866500'), - (8167, '0786866500'), - (8168, '0062516086'), - (8169, '0670879835'), - (8170, '1551920107'), - (8171, '1591293049'), - (2209, '087113795X'), - (175, '0446522597'), - (41, '0375507876'), - (94, '0671724800'), - (4398, '0590446681'), - (8172, '0590446681'), - (4829, '0590303805'), - (8173, '0590426257'), - (8172, '0590426265'), - (3359, '0671745069'), - (815, '0380710811'), - (8174, '0836226992'), - (8175, '0836226992'), - (1096, '0066209773'), - (8176, '0140082255'), - (8177, '0140082255'), - (17, '1558746226'), - (18, '1558746226'), - (19, '1558746226'), - (8178, '0688167101'), - (53, '0375502912'), - (8179, '1400047714'), - (8180, '1893224902'), - (3168, '0811808424'), - (351, '0375506276'), - (8181, '0935300007'), - (8182, '905000105X'), - (8183, '0898220785'), - (8184, '0898220785'), - (8185, '0898220785'), - (8186, '207054351X'), - (8187, '207054351X'), - (8188, '207054351X'), - (5132, '0440234700'), - (8189, '0373075111'), - (1562, '0451175190'), - (1562, '0451181964'), - (3996, '0886776686'), - (202, '1582340110'), - (4352, '1567920713'), - (970, '0743237196'), - (2528, '0515136565'), - (4421, '0312864124'), - (60, '0684803968'), - (1876, '0553582364'), - (552, '0446611476'), - (1876, '0553284363'), - (8190, '075151635X'), - (2528, '0515117420'), - (2528, '0515107476'), - (2528, '0515132489'), - (2528, '0515103977'), - (2528, '0515101486'), - (2528, '0515097500'), - (2528, '0515111139'), - (8191, '0375500642'), - (8192, '0743219287'), - (8193, '0451200152'), - (3366, '0759239630'), - (8194, '0812525647'), - (8195, '0751500046'), - (8196, '0684831708'), - (3195, '0446355917'), - (8197, '0140390081'), - (8198, '0140390081'), - (8199, '0140390081'), - (8200, '0060168528'), - (8201, '0060168528'), - (8202, '0451522087'), - (5586, '0451522087'), - (436, '0877953120'), - (3458, '0743411331'), - (2182, '044100914X'), - (860, '0553379194'), - (5875, '0441008976'), - (8203, '0140386270'), - (1537, '0451451430'), - (4571, '0345444019'), - (4571, '0345444000'), - (3157, '0553103946'), - (325, '0345440781'), - (326, '0345440781'), - (4435, '0743431014'), - (8204, '0553381768'), - (208, '051770739X'), - (8205, '0743227123'), - (4079, '0553370804'), - (7785, '1550170759'), - (63, '0451203771'), - (369, '0515124893'), - (60, '0671528203'), - (937, '0786860820'), - (8206, '0786860820'), - (8207, '0394732928'), - (8208, '0394732928'), - (818, '0812540336'), - (819, '0812540336'), - (5443, '0061012165'), - (723, '0399504583'), - (284, '0140351302'), - (8209, '0140351302'), - (8210, '0195130928'), - (403, '0553210793'), - (8211, '0141180250'), - (8212, '0141180250'), - (1560, '0385488181'), - (560, '0590503111'), - (561, '0590503111'), - (8213, '0879517034'), - (8214, '0790008696'), - (8215, '1885223331'), - (8216, '1885223331'), - (17, '1885223331'), - (8217, '0671522779'), - (8218, '0671522779'), - (1315, '0451156455'), - (7827, '0373790953'), - (8219, '1568655622'), - (8220, '0773731202'), - (8221, '0786867647'), - (4902, '1552782654'), - (369, '0515133973'), - (8222, '0771091591'), - (8223, '0802114970'), - (8224, '0802114970'), - (8225, '0771037457'), - (891, '044016205X'), - (1605, '0425097722'), - (8226, '0425097722'), - (8225, '0425097722'), - (1092, '067189109X'), - (76, '067162461X'), - (8227, '0812580397'), - (843, '0440229499'), - (8228, '0446678619'), - (1754, '0671702513'), - (1706, '0679420428'), - (8229, '0273645919'), - (8230, '0273645919'), - (8231, '0273645919'), - (81, '0449911594'), - (8232, '0743255712'), - (8233, '1560255102'), - (8234, '1560255102'), - (8235, '0758203519'), - (8236, '0758203519'), - (8237, '0312287712'), - (7086, '0449703746'), - (1179, '0312872356'), - (1179, '0312872364'), - (8238, '0969201745'), - (8239, '0969201745'), - (8240, '0871133962'), - (8241, '0312874413'), - (8242, '1551990393'), - (7021, '0312890532'), - (3893, '0312861591'), - (5734, '0385496745'), - (1889, '0393039307'), - (715, '0151002290'), - (8243, '0156013177'), - (8244, '0880012528'), - (8245, '0345296907'), - (8246, '0192760319'), - (8247, '0192760319'), - (8248, '1852304839'), - (8249, '0934252238'), - (8250, '0875424953'), - (8251, '0806994754'), - (8252, '0806994754'), - (8253, '1880032074'), - (8254, '1880032074'), - (8255, '1889625035'), - (8256, '1889625035'), - (3337, '0060913312'), - (7541, '0877732248'), - (8257, '0140126562'), - (2993, '0671673203'), - (8258, '0312950098'), - (484, '0446892041'), - (8259, '0142001309'), - (8260, '0802133347'), - (8261, '0802133347'), - (8262, '0888992211'), - (8263, '1553663950'), - (8264, '0440401607'), - (5685, '0440401607'), - (595, '0440476399'), - (8265, '0440476399'), - (5887, '067166641X'), - (1997, '1586212044'), - (8266, '1586212044'), - (967, '1576739767'), - (968, '1576739767'), - (3156, '0448165384'), - (635, '0694523283'), - (8267, '0694523283'), - (8268, '0143017292'), - (8269, '1857997573'), - (8270, '1570761418'), - (8271, '0968454402'), - (435, '0385333412'), - (1706, '1853261912'), - (7706, '0060084405'), - (630, '0345367758'), - (1198, '0783801157'), - (8272, '1550135457'), - (1484, '0345445848'), - (1484, '0375504036'), - (8273, '0453006264'), - (8274, '0375724850'), - (2333, '1552781542'), - (949, '0140430016'), - (8275, '0140430016'), - (54, '0816158770'), - (8276, '1862041318'), - (281, '0590203509'), - (1346, '0373708416'), - (8277, '0671734334'), - (1366, '0399145052'), - (8278, '0671883208'), - (970, '0099740516'), - (8279, '0747550867'), - (8280, '0590453068'), - (8281, '0064406113'), - (8282, '0064406113'), - (143, '0061056448'), - (4415, '0689824750'), - (8283, '0689824750'), - (8284, '0340577371'), - (4571, '0345423623'), - (8285, '0896731081'), - (81, '0804108897'), - (8286, '0399132007'), - (1190, '0671003976'), - (414, '0553246895'), - (7422, '1567921892'), - (8287, '1567921892'), - (4565, '0374181152'), - (2556, '0385316577'), - (8288, '0330334182'), - (256, '0060012331'), - (951, '0385501560'), - (8289, '0066212448'), - (8290, '0066212448'), - (8291, '1932100024'), - (8292, '1932100024'), - (4322, '0140264450'), - (8293, '0192632442'), - (951, '1400047838'), - (8294, '0393045358'), - (8295, '0486272702'), - (8296, '0786864656'), - (8297, '1400040752'), - (175, '0446525774'), - (2271, '0385311133'), - (8298, '0913428361'), - (6447, '0525945466'), - (8299, '0671795228'), - (3159, '1551668106'), - (843, '0440404975'), - (8300, '0689713908'), - (8301, '0590412485'), - (8302, '0590412485'), - (8303, '0440413729'), - (8304, '044022747X'), - (2675, '006440630X'), - (8305, '0440407591'), - (8306, '0553244841'), - (5881, '0553231863'), - (2501, '0553233246'), - (8307, '0552527742'), - (3750, '0553565060'), - (8308, '050028251X'), - (2656, '0394533887'), - (8309, '3492229697'), - (8310, '0194226948'), - (7422, '0140034919'), - (7422, '0879238526'), - (8311, '1899293086'), - (4785, '3257063199'), - (8312, '0345430573'), - (2963, '0892966505'), - (8313, '1559705884'), - (8314, '0452284546'), - (8315, '0743203232'), - (8316, '0789300354'), - (4094, '0451175867'), - (2306, '0812574923'), - (1332, '0446600288'), - (1332, '0440208130'), - (1012, '055337513X'), - (8317, '0671507036'), - (545, '0060930861'), - (584, '0821776037'), - (8318, '0345457005'), - (8319, '0967404401'), - (8320, '0967404401'), - (8321, '0140232990'), - (2190, '1582430349'), - (2190, '1582430152'), - (1554, '0345430808'), - (8061, '0140242058'), - (1679, '0142001821'), - (1396, '0806511532'), - (1397, '0806511532'), - (8322, '0806511532'), - (8323, '0809001608'), - (8324, '0380719185'), - (2618, '0452281903'), - (8325, '0312983093'), - (8326, '0813511895'), - (8327, '0671660705'), - (8328, '0671731874'), - (543, '0385316917'), - (543, '0385335431'), - (3169, '0345435648'), - (543, '0385333463'), - (543, '0440205573'), - (543, '0440221501'), - (543, '0385313012'), - (543, '0385333064'), - (8196, '0446385077'), - (8329, '0446385077'), - (8330, '0446385077'), - (8331, '0446385077'), - (543, '0440201926'), - (5389, '0688141838'), - (8332, '0671557378'), - (543, '0440176484'), - (7211, '0373288689'), - (8333, '0753506483'), - (1704, '0553576143'), - (889, '0446612731'), - (8334, '0553252607'), - (3649, '2070323498'), - (8335, '2070323498'), - (2241, '0590448307'), - (8336, '0590424955'), - (8337, '0553573837'), - (2239, '0590436457'), - (8338, '0590416677'), - (1431, '0316139947'), - (8339, '0316139947'), - (8340, '0570041945'), - (8341, '0570041945'), - (595, '0440476968'), - (2239, '0590435728'), - (2241, '0590691821'), - (4376, '0345436733'), - (8342, '0965866823'), - (8343, '0965866823'), - (8344, '0965866823'), - (8341, '0965866807'), - (8342, '0965866807'), - (8345, '002708230X'), - (541, '0670894184'), - (3115, '0373833458'), - (8346, '0316473049'), - (4082, '0449225925'), - (5825, '0830713042'), - (1626, '0061092037'), - (8347, '0553275631'), - (162, '0486270602'), - (181, '0486270602'), - (8348, '0671669397'), - (6628, '0486419274'), - (8349, '0486419274'), - (8350, '0835918696'), - (3216, '0486270629'), - (397, '0486278026'), - (397, '0486297659'), - (8351, '0836225902'), - (7509, '006273248X'), - (8352, '006273248X'), - (5498, '0440236053'), - (8353, '002920528X'), - (8354, '1558003592'), - (368, '0399144560'), - (2913, '0553478206'), - (8355, '0553478206'), - (58, '0694523321'), - (8356, '0694523321'), - (58, '0060577479'), - (8355, '0060577479'), - (2035, '156740765X'), - (8357, '156740765X'), - (8358, '0066621054'), - (8359, '0066621054'), - (8360, '1570721971'), - (1841, '0373706383'), - (8361, '037310734X'), - (8362, '1561290998'), - (8363, '0800784111'), - (8364, '0802733662'), - (8365, '0345426800'), - (231, '0440216818'), - (8366, '0440224330'), - (8367, '0446526126'), - (7321, '0743242963'), - (2079, '1401900844'), - (543, '0385319568'), - (8368, '0062515845'), - (2088, '0062515845'), - (3997, '0886779766'), - (574, '0679454497'), - (506, '0449906817'), - (4020, '0505525178'), - (8369, '0671709569'), - (8370, '0061061778'), - (1428, '0671021826'), - (1164, '0553575414'), - (817, '0312968973'), - (1075, '0441008658'), - (433, '0345368991'), - (8371, '0345368991'), - (8372, '0393309290'), - (729, '038542017X'), - (8373, '073943053X'), - (8374, '073943053X'), - (6482, '073943053X'), - (8375, '0312958366'), - (8376, '0553582003'), - (8377, '0515135305'), - (8378, '0449140911'), - (6867, '0451407695'), - (8379, '0451404793'), - (5227, '0345315499'), - (5227, '0345308921'), - (8380, '034530893X'), - (2747, '0821773135'), - (8381, '0843943408'), - (8382, '0515130397'), - (8383, '0380414759'), - (1092, '0671556843'), - (898, '0671779370'), - (8384, '0821747479'), - (3750, '0553571591'), - (230, '0380807947'), - (230, '0380005255'), - (230, '038079828X'), - (3465, '0380799383'), - (5283, '0446606227'), - (8385, '0843939427'), - (8386, '0671004123'), - (2245, '0449006352'), - (1754, '0671010085'), - (1754, '0671010093'), - (1396, '0881844365'), - (8387, '0553572407'), - (8388, '0345457641'), - (8389, '0345423828'), - (8390, '0312970129'), - (8391, '1887128654'), - (8392, '0345416430'), - (3831, '0688158234'), - (3832, '0688158234'), - (8393, '0446608475'), - (4948, '0435905260'), - (8394, '0965036022'), - (8395, '0590853015'), - (2238, '0590853015'), - (8396, '0671729330'), - (8397, '078686219X'), - (8398, '078686219X'), - (8399, '0671769669'), - (8400, '0671769669'), - (8401, '0671741373'), - (8402, '0967851017'), - (8403, '0385240716'), - (532, '0515111317'), - (719, '0451202902'), - (8404, '0441005349'), - (484, '0446356611'), - (484, '0446350109'), - (867, '0671877992'), - (8405, '0671877992'), - (1732, '0449216527'), - (8406, '0671014757'), - (8407, '0671014765'), - (8405, '0671551361'), - (8405, '0671551337'), - (8405, '0671551388'), - (8405, '0671551353'), - (8405, '0671014773'), - (8406, '0671551345'), - (606, '0671721100'), - (8408, '0671721100'), - (3223, '0553574574'), - (187, '0812534832'), - (8409, '0671721623'), - (606, '0671721623'), - (8410, '0671721623'), - (606, '0671698850'), - (8411, '0671698850'), - (606, '0671721542'), - (8404, '0671721542'), - (8408, '0671721542'), - (606, '0671876155'), - (8407, '0671876155'), - (284, '0140434895'), - (8412, '0140434895'), - (8413, '0140434895'), - (82, '0140180923'), - (5892, '0393309282'), - (8414, '0060194790'), - (25, '0452280397'), - (2326, '0886773318'), - (606, '0886775167'), - (606, '0812521145'), - (8408, '0671721259'), - (606, '0671721259'), - (8415, '0671721259'), - (606, '0671876287'), - (8416, '0517543346'), - (466, '0140265988'), - (8417, '0752271474'), - (8418, '0751512966'), - (597, '059049418X'), - (220, '207038165X'), - (8419, '207038165X'), - (8420, '207038165X'), - (8421, '0531098745'), - (8422, '0465026567'), - (8423, '0446674044'), - (8424, '0446674044'), - (8425, '1592570801'), - (8426, '1592570801'), - (8427, '1582970807'), - (8428, '158180119X'), - (8429, '1581802986'), - (8430, '0891347208'), - (8429, '1581800320'), - (6020, '0140390448'), - (8431, '0140390448'), - (8432, '0004121120'), - (8433, '0861013743'), - (8434, '0525945407'), - (8435, '0517654954'), - (8436, '0025294458'), - (8437, '0903505355'), - (8438, '0903505193'), - (8439, '0903505193'), - (8440, '1551050765'), - (8441, '0517693399'), - (997, '1859671039'), - (8442, '1859671039'), - (5782, '0458921009'), - (8443, '1842151126'), - (8444, '0920656404'), - (337, '0399139206'), - (151, '0060163704'), - (8443, '0920656080'), - (8443, '0920656943'), - (8445, '0920656943'), - (8446, '0835607771'), - (8447, '0835607771'), - (8448, '0345391373'), - (8449, '0345391373'), - (2773, '0714836257'), - (8450, '0920656269'), - (7673, '0345400577'), - (2968, '0679419616'), - (8451, '0201567792'), - (8452, '0201567792'), - (8453, '0517331942'), - (8454, '1568361742'), - (4408, '0385315058'), - (8455, '9747315084'), - (145, '3453152891'), - (2258, '3442352983'), - (8456, '3442352983'), - (8457, '3499101505'), - (285, '3518382357'), - (7784, '3518382357'), - (8458, '3442446929'), - (8459, '3442446929'), - (8460, '3257218478'), - (8461, '0684854341'), - (142, '3453052544'), - (8462, '3442724295'), - (8463, '3442724295'), - (8464, '0821225685'), - (8465, '0821225685'), - (8466, '0821225685'), - (991, '0449209881'), - (7712, '0375724443'), - (5076, '0140282777'), - (6111, '034541005X'), - (94, '2894294247'), - (2713, '0553159445'), - (8467, '0380713349'), - (1428, '059044333X'), - (8468, '0380614324'), - (3327, '0440911257'), - (8469, '0671736795'), - (2233, '0671529544'), - (8470, '0671628410'), - (8471, '0425133184'), - (6039, '0671888285'), - (6038, '0671888285'), - (8472, '0671888285'), - (8470, '0425127729'), - (1428, '0671894242'), - (1428, '0671529560'), - (1428, '059045370X'), - (1428, '0590453696'), - (1428, '0590477382'), - (1428, '0590466186'), - (1319, '0446602558'), - (8473, '0316485187'), - (8474, '0890819858'), - (8475, '0310539218'), - (8476, '156761583X'), - (8477, '156761583X'), - (8478, '0805042768'), - (8479, '0805042768'), - (4843, '0883964481'), - (8480, '0883964481'), - (3885, '0140432914'), - (8481, '0140432914'), - (2571, '0006742939'), - (8482, '1573222321'), - (2002, '0688163165'), - (8483, '0064400204'), - (8484, '0064400204'), - (8485, '0060557540'), - (239, '0525947671'), - (715, '0151004439'), - (277, '0679642382'), - (81, '0804113475'), - (2937, '037576013X'), - (8486, '037576013X'), - (1227, '0679455612'), - (2680, '0553212435'), - (63, '0440147956'), - (25, '0375415351'), - (3033, '0763616052'), - (5500, '0380432811'), - (63, '0440212359'), - (988, '0670857459'), - (2360, '1582344094'), - (8487, '0452285062'), - (8488, '0805063315'), - (368, '0671507303'), - (8489, '0684844141'), - (8488, '0394722531'), - (8490, '0375504184'), - (8491, '0671009443'), - (7516, '0425165337'), - (8492, '0553579207'), - (8493, '0060529148'), - (6696, '006104444X'), - (8494, '1400034817'), - (8495, '0553378007'), - (8496, '0553378007'), - (822, '0836226844'), - (183, '0515113328'), - (8497, '0345368436'), - (183, '0515093203'), - (175, '0446525731'), - (368, '0449212653'), - (183, '0515107867'), - (8498, '0140232257'), - (8499, '0140232257'), - (8500, '0449220273'), - (8501, '0449220273'), - (2661, '0312864876'), - (3692, '0312864876'), - (7147, '0684813637'), - (6185, '0451192931'), - (8502, '0446400564'), - (8503, '0446403083'), - (4614, '0445406836'), - (8504, '0156003376'), - (183, '0515132268'), - (8505, '0399524827'), - (8506, '1563055619'), - (8507, '1563055619'), - (6185, '0451205685'), - (142, '0451190572'), - (8508, '1555218067'), - (8509, '0525940413'), - (4143, '0440411394'), - (4417, '0590425609'), - (8510, '0425187101'), - (8511, '0425187101'), - (8512, '1857026012'), - (8513, '014007385X'), - (8514, '0905762207'), - (3607, '0771014813'), - (8515, '0028610865'), - (8516, '0312862091'), - (8515, '0312064330'), - (8515, '0312093586'), - (8515, '0312866712'), - (1060, '0553229281'), - (1060, '0553244949'), - (2224, '0441646611'), - (2224, '0441516645'), - (176, '0671601075'), - (176, '067166493X'), - (176, '0671532642'), - (8517, '9681908244'), - (867, '0886772680'), - (8518, '0812511840'), - (8519, '0671865714'), - (8520, '0515105449'), - (8521, '0451404505'), - (1552, '0515112461'), - (8522, '0451407504'), - (3314, '0449206440'), - (7138, '0380809176'), - (1327, '0385506708'), - (183, '0515109509'), - (8523, '0446355569'), - (5012, '0192838601'), - (8411, '0192838601'), - (8524, '0140255036'), - (8525, '020717055X'), - (8526, '0060173092'), - (8527, '0151001820'), - (2517, '0553100890'), - (1191, '0679437851'), - (284, '0385483260'), - (8528, '0385483260'), - (5623, '0446522252'), - (5624, '0446522252'), - (8529, '0030844924'), - (8530, '0816029091'), - (8531, '1578660343'), - (8532, '0801431611'), - (8533, '0801431611'), - (4457, '0696207397'), - (8534, '1567994741'), - (2773, '0714835420'), - (8535, '0517159635'), - (8536, '0140237712'), - (403, '1566195268'), - (8537, '1888363576'), - (1366, '1888363576'), - (237, '0449225046'), - (8538, '0938985000'), - (8539, '0938985000'), - (2937, '0140161163'), - (8540, '0671675427'), - (8541, '9510119342'), - (8542, '0899670202'), - (2682, '055326026X'), - (1730, '0312989474'), - (8543, '0821602039'), - (1698, '0765342227'), - (5271, '0553273817'), - (873, '0812520157'), - (8544, '0399133038'), - (1158, '0836217241'), - (8545, '0836217241'), - (8546, '0553349058'), - (8547, '0671318578'), - (3077, '0671318578'), - (6370, '0142000264'), - (607, '0449208281'), - (2340, '0689312024'), - (1730, '0451199448'), - (2287, '0446405345'), - (3327, '0440227437'), - (8548, '1585671487'), - (8549, '0446672351'), - (1730, '0425158497'), - (8550, '0768322413'), - (8551, '0380003856'), - (81, '0099272687'), - (1268, '1860465536'), - (8552, '0525945784'), - (8553, '085572191X'), - (8554, '0061064866'), - (1266, '0140280499'), - (1395, '0140259708'), - (187, '0345338588'), - (187, '0345318854'), - (8555, '0140133496'), - (719, '0061097101'), - (8556, '2246650119'), - (8557, '0708832725'), - (8558, '1843336162'), - (8559, '1570621284'), - (8560, '0812516257'), - (946, '0140104321'), - (8561, '0140250824'), - (721, '2266104535'), - (3673, '2020352257'), - (8562, '2070417212'), - (8563, '0902920049'), - (8564, '1858286794'), - (8565, '1858286794'), - (217, '0140622306'), - (596, '0440432960'), - (4794, '0345380975'), - (8566, '067102261X'), - (188, '055327449X'), - (92, '0425093328'), - (1753, '0312979533'), - (206, '1569470154'), - (915, '0439228913'), - (285, '0060951281'), - (93, '0679879269'), - (93, '0679879250'), - (285, '0060951303'), - (8567, '0439456983'), - (8210, '0813511704'), - (8568, '0813511704'), - (8569, '0312890249'), - (8570, '0393310396'), - (8571, '0393310396'), - (8572, '0312253737'), - (571, '0451159497'), - (8573, '0446675792'), - (8574, '0446675792'), - (571, '0425155404'), - (3086, '0671535552'), - (8575, '0299177742'), - (8576, '0299177742'), - (1086, '0140231900'), - (8577, '0762411554'), - (8578, '0762411554'), - (8579, '0747543259'), - (859, '9875021245'), - (602, '0486405524'), - (2929, '0863560237'), - (1209, '0674810511'), - (283, '0151002177'), - (4883, '0151002177'), - (5531, '0451458222'), - (39, '0613072103'), - (39, '067945540X'), - (1539, '0618002243'), - (732, '0618002235'), - (1539, '0618002227'), - (1401, '0001047973'), - (8580, '0001047973'), - (283, '0452262933'), - (1802, '0452262933'), - (8581, '0684838087'), - (401, '0517488906'), - (8582, '0517488906'), - (1396, '0679740678'), - (8583, '0330346520'), - (6020, '0679735747'), - (8584, '0679735747'), - (59, '0060294884'), - (8585, '0060294884'), - (1024, '0440206324'), - (8586, '0812536304'), - (8587, '0812536304'), - (8588, '3404612493'), - (8589, '344242528X'), - (8590, '344242528X'), - (568, '006447108X'), - (833, '006447108X'), - (726, '0451409973'), - (8591, '0821773712'), - (2233, '0590477390'), - (3500, '0345368622'), - (230, '0380816792'), - (2168, '0451404459'), - (8592, '0553577379'), - (8593, '0373106939'), - (8594, '0373260024'), - (8595, '0804101507'), - (8596, '0804101507'), - (127, '0449206610'), - (1196, '1551660431'), - (8597, '0887291228'), - (8598, '0887291228'), - (8599, '0887291228'), - (8600, '0486428427'), - (8601, '0486428427'), - (8602, '0345250559'), - (8603, '0440209102'), - (550, '0446306177'), - (1754, '067187098X'), - (8604, '1557488371'), - (1112, '0671676369'), - (230, '0380844001'), - (56, '0140620753'), - (8605, '0689714335'), - (7076, '0689714335'), - (8606, '1893224201'), - (8607, '1893224201'), - (8608, '1893224201'), - (6745, '1892859084'), - (8609, '1565122321'), - (5054, '0064401103'), - (8610, '0064401103'), - (5054, '0064400980'), - (5055, '0064400980'), - (5054, '0064400999'), - (5055, '0064400999'), - (5054, '0064408582'), - (8609, '0064408582'), - (8611, '3423126299'), - (8612, '3404102800'), - (8613, '3453870336'), - (718, '0525946632'), - (4376, '0345369025'), - (8614, '0375823255'), - (8615, '2070424197'), - (24, '0440295521'), - (3417, '0140389660'), - (310, '3423125195'), - (8616, '3423125195'), - (8617, '0842365508'), - (274, '0140363033'), - (439, '0140363033'), - (8618, '0440503310'), - (8619, '0671674005'), - (8620, '0312961049'), - (8621, '0590431692'), - (8622, '0590489410'), - (2118, '0786889322'), - (8623, '3499232634'), - (8624, '3499232634'), - (8625, '346202812X'), - (8626, '1400030382'), - (8627, '3518100319'), - (8628, '3499233347'), - (8629, '3499233347'), - (8630, '3150006597'), - (389, '3548208975'), - (8631, '3548208975'), - (8632, '3548208975'), - (8633, '3379015180'), - (142, '0451078721'), - (1284, '0553484508'), - (8634, '0706366468'), - (536, '0375411070'), - (1858, '0679749020'), - (3924, '0525934553'), - (5006, '0312860129'), - (397, '051743623X'), - (1858, '0375726845'), - (284, '0312080824'), - (8635, '0312080824'), - (8636, '0891979867'), - (8637, '0812881176'), - (1545, '1850892237'), - (3216, '1880399679'), - (1499, '1880399679'), - (8638, '1880399679'), - (312, '0671525247'), - (8639, '0440343690'), - (8640, '0899664016'), - (2688, '0151807027'), - (8641, '0151807027'), - (454, '1853260231'), - (8642, '0099478110'), - (8643, '0553214543'), - (6369, '0394746295'), - (1858, '0449210901'), - (1981, '0553256653'), - (1858, '0099825201'), - (2331, '0451528204'), - (6713, '0451528204'), - (8644, '0451528204'), - (1747, '0802135226'), - (1747, '0679768203'), - (1998, '0679441816'), - (8645, '1557832307'), - (3972, '1557832307'), - (4565, '0452276721'), - (1490, '078711457X'), - (1490, '0452274796'), - (220, '0060927518'), - (220, '0140096949'), - (8646, '0806133678'), - (5425, '0806133678'), - (8647, '0691086192'), - (3654, '0375410414'), - (8648, '1569246483'), - (8649, '1567184766'), - (8650, '0813519942'), - (25, '0394497848'), - (2431, '0940322587'), - (25, '0940322587'), - (4436, '0375712925'), - (8651, '1582340331'), - (2943, '0446678457'), - (158, '0345410998'), - (1013, '0399149155'), - (1704, '0553264303'), - (713, '0553107003'), - (6177, '0440178002'), - (7397, '0717127516'), - (161, '0385243022'), - (5016, '0385243022'), - (8652, '0446390895'), - (8653, '0446390895'), - (814, '1573220167'), - (6468, '0060173211'), - (8654, '0316172006'), - (8655, '0679415645'), - (8548, '0060976241'), - (1473, '0767905202'), - (8656, '315009951X'), - (8657, '315009951X'), - (8658, '033034692X'), - (8659, '033034692X'), - (960, '3442727952'), - (8660, '3442727952'), - (5584, '1740590651'), - (8661, '1740590120'), - (8662, '1863305130'), - (1310, '0140287698'), - (8663, '0671034979'), - (8664, '1583225579'), - (8665, '0702228524'), - (8666, '0330358561'), - (8667, '0702227218'), - (8668, '073225700X'), - (8669, '0868246778'), - (8670, '0671018280'), - (8671, '0590603884'), - (972, '0618131736'), - (5310, '0618131736'), - (3924, '0060185252'), - (4435, '0688170528'), - (727, '0743225082'), - (8672, '0758201087'), - (634, '0425184943'), - (8673, '0201570971'), - (8674, '0201570971'), - (8675, '0201570971'), - (6336, '0201570971'), - (1277, '067086014X'), - (8676, '0864922108'), - (1087, '0821765868'), - (1112, '1551660733'), - (2259, '0312977409'), - (8677, '0843941774'), - (94, '0515120626'), - (5594, '0440212308'), - (8678, '038076766X'), - (8679, '038075942X'), - (8680, '0515077437'), - (1754, '067102177X'), - (8681, '0380761327'), - (3164, '055358183X'), - (2261, '0843949848'), - (60, '0671867164'), - (179, '0060955635'), - (8682, '0688013929'), - (8683, '0688013929'), - (17, '1558748903'), - (18, '1558748903'), - (8684, '1558748903'), - (8685, '1558748903'), - (2881, '0684841371'), - (8686, '0739405047'), - (8687, '0804108412'), - (6180, '0394589955'), - (8688, '0385414250'), - (8689, '0312120001'), - (149, '0060740450'), - (8690, '0802111815'), - (1158, '0836220498'), - (1249, '0800781562'), - (1250, '0800781562'), - (1251, '0800781562'), - (8691, '0881334588'), - (8692, '0679730680'), - (3345, '0671420186'), - (8693, '0312081944'), - (8694, '0312081944'), - (1451, '3499138956'), - (8695, '3499138956'), - (3958, '3426611457'), - (8696, '3426611457'), - (8697, '3426611457'), - (1310, '0702228230'), - (8698, '0878579915'), - (8699, '0878579915'), - (8700, '156512281X'), - (8424, '156512281X'), - (2938, '1551660717'), - (532, '0451199685'), - (8701, '0385189508'), - (8702, '0385189508'), - (8703, '0385189508'), - (8704, '0810933160'), - (8705, '0810933160'), - (3431, '0810933160'), - (8699, '1565121384'), - (8706, '1565121384'), - (8707, '0395653738'), - (8708, '0312170955'), - (8709, '0312170955'), - (1031, '0152013415'), - (574, '0679441018'), - (574, '0345377648'), - (8710, '0201409429'), - (8711, '0765107619'), - (859, '0140052801'), - (8712, '1853687022'), - (2008, '068815512X'), - (8713, '155870406X'), - (8714, '0679723005'), - (8715, '1555830617'), - (8716, '0312420048'), - (4195, '1578591473'), - (8717, '0062511173'), - (8718, '0062511173'), - (8719, '0394719999'), - (8720, '0135113385'), - (8721, '0135113385'), - (4095, '0807032530'), - (8722, '0449910172'), - (8723, '0449910172'), - (8724, '0395353440'), - (149, '0345310020'), - (8725, '0679891072'), - (2925, '0394751019'), - (5500, '0064403688'), - (920, '0064472795'), - (8726, '0679783598'), - (8727, '0595271618'), - (8728, '031230093X'), - (284, '0140434941'), - (8729, '0140434941'), - (8730, '0140434941'), - (8731, '0152380418'), - (2340, '0590467158'), - (5606, '0689835337'), - (7753, '0374480095'), - (1724, '3257056109'), - (8732, '0425177432'), - (2881, '0684859998'), - (1075, '0688154395'), - (8733, '0684848147'), - (1478, '0684848120'), - (1479, '0684848120'), - (427, '0553210351'), - (8734, '0553210351'), - (8735, '0553210351'), - (8736, '1567313965'), - (8737, '1567313965'), - (4177, '0375401458'), - (1576, '0671528165'), - (8738, '006251184X'), - (240, '0515128325'), - (8739, '0140276823'), - (8740, '3596137306'), - (8741, '3596137306'), - (8742, '3596137306'), - (8743, '3596137306'), - (1384, '3596237874'), - (3314, '0380820757'), - (8744, '0807062995'), - (8745, '0786865148'), - (8746, '0345322061'), - (8747, '0764552988'), - (8748, '0811809935'), - (8749, '0943015073'), - (777, '0140361219'), - (1897, '0140361219'), - (2790, '0553269631'), - (2790, '0553272543'), - (1875, '0671887173'), - (8750, '0553285726'), - (8751, '0062552767'), - (8752, '0062552767'), - (8753, '0671787004'), - (577, '0060919760'), - (8754, '0060507233'), - (1273, '0915811006'), - (8755, '1558744274'), - (6020, '0192829823'), - (8756, '0192829823'), - (8757, '1567314163'), - (8758, '0743416996'), - (8759, '0786880708'), - (8760, '1561703753'), - (8761, '1561703753'), - (1012, '1561703753'), - (8762, '1561703753'), - (8763, '0452272041'), - (8764, '0452272041'), - (8765, '0452272041'), - (8766, '0316133175'), - (8767, '0878331859'), - (2599, '0679600442'), - (8768, '1567314260'), - (8769, '1573241172'), - (4408, '0345311000'), - (381, '0849916836'), - (8770, '0764553143'), - (8771, '3462029592'), - (1164, '3499121581'), - (780, '3453210719'), - (8772, '0380728249'), - (1725, '0380792648'), - (8773, '0553242598'), - (1129, '0385031149'), - (661, '0385031149'), - (5114, '0385031149'), - (8774, '0836982215'), - (7873, '0451171128'), - (8775, '0061052280'), - (5793, '0061052280'), - (8776, '0140620850'), - (814, '3462032208'), - (7440, '3462032208'), - (8777, '3462032208'), - (8778, '0060925795'), - (5950, '189162007X'), - (8779, '189162007X'), - (2888, '0931580633'), - (8780, '0684839873'), - (4353, '0156006820'), - (1043, '068483295X'), - (1309, '0670852627'), - (8548, '0871138018'), - (8781, '0201877589'), - (8782, '0201877589'), - (8783, '0201877589'), - (8784, '0596001967'), - (328, '1568654383'), - (8785, '0764551280'), - (8786, '0764551280'), - (8787, '0764551280'), - (8788, '0764551280'), - (8789, '0669164062'), - (8790, '0669164062'), - (8791, '0669164062'), - (8792, '283151794X'), - (5591, '1556618123'), - (8793, '0380812924'), - (1898, '0812550293'), - (8794, '0679751319'), - (1715, '0316285269'), - (188, '0553277537'), - (8795, '0440502721'), - (1771, '207036805X'), - (760, '0553234161'), - (8796, '0812502841'), - (713, '0671640585'), - (8797, '1586480286'), - (8798, '1586480286'), - (8799, '1558596909'), - (8800, '1558596909'), - (367, '0449910237'), - (906, '0553235575'), - (665, '0020519605'), - (8801, '0140274375'), - (8802, '0140024018'), - (8803, '0425138151'), - (3247, '1550376284'), - (8804, '0375725202'), - (1773, '0140306323'), - (5854, '0140048987'), - (2503, '0671878549'), - (8805, '0671730134'), - (8806, '0446520667'), - (8807, '0706406141'), - (8808, '087474945X'), - (8809, '087474945X'), - (8810, '087474945X'), - (8811, '0881149497'), - (8812, '0881149497'), - (2002, '0380726238'), - (8813, '0806524154'), - (966, '0306811677'), - (8814, '0425182703'), - (8815, '1566633370'), - (145, '0399148701'), - (145, '0399131493'), - (145, '0870212850'), - (4619, '006009527X'), - (301, '0224030361'), - (1859, '0679736395'), - (8816, '1568849168'), - (3463, '0451403959'), - (8817, '014028088X'), - (8818, '014028088X'), - (8819, '0394726251'), - (8820, '0887307396'), - (8821, '0887307396'), - (5690, '0679735739'), - (8822, '0834800799'), - (8823, '0834800799'), - (8824, '0834800799'), - (8825, '0834800799'), - (8826, '0837850681'), - (8827, '0837850681'), - (1938, '0671545140'), - (8828, '0671545140'), - (8829, '0914457527'), - (8287, '0786705833'), - (8830, '0807107808'), - (8831, '0385326521'), - (8832, '0385326521'), - (8833, '1588270475'), - (145, '0425150143'), - (876, '0425150143'), - (8834, '0841914036'), - (8835, '0809233169'), - (8836, '0679446028'), - (8837, '0671469975'), - (8838, '0440506743'), - (8839, '0440506743'), - (2028, '0743234693'), - (8840, '019281513X'), - (8841, '019281513X'), - (369, '0399144803'), - (8842, '0702226009'), - (1776, '0613361628'), - (8843, '0553586971'), - (8844, '158005059X'), - (8845, '158005059X'), - (8846, '158005059X'), - (4313, '1551669188'), - (8847, '0380728613'), - (8848, '0064406601'), - (920, '0689868456'), - (635, '0061096113'), - (1498, '0812575970'), - (8849, '006092330X'), - (642, '0316116726'), - (2145, '0890877025'), - (8850, '0877284245'), - (7092, '1878825011'), - (330, '0805029648'), - (8851, '1888766034'), - (8852, '1888766034'), - (4477, '0380728176'), - (3419, '0345409973'), - (7277, '0671743074'), - (1628, '0345413865'), - (1740, '0380786974'), - (8853, '1567312373'), - (8854, '1567312373'), - (129, '0446609404'), - (8855, '1842230514'), - (491, '0864922302'), - (7335, '0671785214'), - (287, '0312111029'), - (286, '0312111029'), - (8856, '0439219175'), - (2656, '0449203794'), - (5281, '0374522928'), - (2600, '0374522928'), - (8857, '0374522928'), - (7086, '0440219515'), - (814, '1573221937'), - (1537, '0441002935'), - (1537, '0441000916'), - (8858, '0306454114'), - (221, '0896087247'), - (56, '0451523652'), - (8859, '0451523652'), - (5873, '0140043128'), - (4804, '0841914060'), - (8860, '1870041364'), - (1337, '0060557257'), - (8861, '0553582313'), - (6034, '0373835876'), - (6034, '037383599X'), - (6034, '0373835795'), - (1359, '0380794578'), - (1359, '0380805685'), - (1359, '0380812010'), - (1432, '0312983301'), - (3399, '0312983301'), - (2254, '006051762X'), - (8862, '0440236606'), - (6034, '0446610569'), - (8863, '0060582308'), - (1116, '0553586203'), - (8864, '0373790473'), - (8865, '0373790481'), - (369, '0373483694'), - (5132, '1551669374'), - (1087, '0821763431'), - (1087, '0821767623'), - (369, '0373218478'), - (8866, '0380813017'), - (8867, '1551669226'), - (8868, '0380820552'), - (3177, '0505525038'), - (3465, '0380791021'), - (2267, '0553583913'), - (8277, '1551669234'), - (621, '0804119538'), - (3254, '0440225299'), - (2888, '0931580501'), - (8869, '0553295101'), - (2888, '0553295101'), - (8870, '156276134X'), - (402, '0716713616'), - (8871, '0886778581'), - (1362, '0451140354'), - (1265, '0380008238'), - (8872, '080912596X'), - (1191, '0375704051'), - (3259, '0590509616'), - (3260, '0590509616'), - (5516, '0590509616'), - (8873, '0395544262'), - (1194, '0448095491'), - (1194, '0448095432'), - (2239, '0590436465'), - (1194, '0448095157'), - (1194, '0448095440'), - (8874, '0439130204'), - (8873, '0439130220'), - (8873, '0439130247'), - (8875, '0746022751'), - (8876, '0590300393'), - (8877, '0590944711'), - (1410, '0679836101'), - (1410, '0679866655'), - (1411, '0679866655'), - (8878, '0590673130'), - (8879, '0448148943'), - (8880, '0671787136'), - (8881, '038079537X'), - (1965, '038079537X'), - (8882, '0440414911'), - (8883, '0671183699'), - (8884, '0590957678'), - (8885, '0439120470'), - (8886, '0439120470'), - (8884, '0439062837'), - (8884, '0439062829'), - (8884, '0439062802'), - (8887, '0517208326'), - (8888, '0517208326'), - (336, '0590416936'), - (4689, '0439056527'), - (8889, '0936650087'), - (3264, '0440219779'), - (4212, '038072913X'), - (906, '0425067750'), - (8890, '0060805188'), - (8891, '0449200019'), - (7571, '0441698859'), - (8892, '0671600427'), - (8893, '0425132358'), - (2923, '0671466801'), - (8894, '0140011528'), - (8895, '0425108449'), - (8896, '0671649469'), - (1214, '0671642561'), - (1214, '0671695126'), - (1214, '0671443283'), - (6387, '0373702213'), - (8897, '0380778009'), - (145, '0425144372'), - (1577, '055312997X'), - (8898, '0380785358'), - (8899, '0872165272'), - (237, '055323336X'), - (8900, '0671672711'), - (3662, '0671721143'), - (8901, '0131654233'), - (8902, '0672315610'), - (8903, '0672315610'), - (8900, '0137089171'), - (8904, '0136362346'), - (8905, '907219439X'), - (8690, '0471969478'), - (994, '0060256656'), - (8906, '0152010289'), - (8907, '0698116151'), - (7728, '0060259078'), - (8908, '0060259078'), - (8909, '0590568663'), - (458, '0749933380'), - (8910, '1859028519'), - (8911, '0142301655'), - (8912, '0948524588'), - (555, '0349111863'), - (2556, '0749395389'), - (274, '0140118470'), - (8286, '0140118470'), - (8913, '044024126X'), - (8914, '1840225106'), - (6177, '0340654163'), - (8915, '0380773309'), - (4190, '0812512774'), - (1214, '0671729403'), - (1214, '0671729438'), - (8916, '0006749151'), - (8917, '0425139697'), - (8670, '0061062472'), - (286, '0380718758'), - (287, '0380718758'), - (1214, '067172939X'), - (1214, '0671729446'), - (8918, '1853264180'), - (2598, '1585673382'), - (8919, '1842157086'), - (8920, '972708530X'), - (7058, '9722110500'), - (8921, '0002257580'), - (7984, '0375708049'), - (8922, '0375701435'), - (7058, '9722100718'), - (8923, '9721030791'), - (2026, '0028604199'), - (8924, '0374202281'), - (8925, '0874779111'), - (8926, '0345369491'), - (2660, '0525484272'), - (989, '0671526022'), - (4321, '0060154969'), - (8927, '0060930888'), - (6056, '039585993X'), - (1428, '3785538448'), - (8928, '3785538448'), - (572, '0385492707'), - (8929, '0140369945'), - (56, '1566191432'), - (8930, '0874771501'), - (8931, '0874771501'), - (6470, '0060645873'), - (8932, '0768420350'), - (8933, '1557250537'), - (8934, '0877936250'), - (8935, '0877936250'), - (8936, '0867164301'), - (8937, '1565070569'), - (8938, '0896939758'), - (8939, '1401901484'), - (8940, '0829419888'), - (8941, '0062548689'), - (8942, '0824519302'), - (8943, '0451182006'), - (3407, '0425186709'), - (5492, '0425186709'), - (8944, '0425186709'), - (534, '0671026682'), - (3800, '0671026682'), - (7507, '0684846608'), - (3639, '0399151613'), - (1209, '0330314971'), - (8945, '051788433X'), - (8503, '051788433X'), - (8946, '0688160999'), - (8947, '1553662415'), - (8948, '1585421499'), - (8949, '1585421499'), - (6005, '0679729798'), - (8950, '0140127739'), - (8569, '1567315208'), - (217, '0141182806'), - (8951, '0141182806'), - (8952, '0006143199'), - (1362, '0140050000'), - (8953, '0843949090'), - (8954, '1893224848'), - (4136, '0553586335'), - (7168, '3551749612'), - (7168, '3551749620'), - (8955, '3551751846'), - (8956, '3551751846'), - (8957, '3551745315'), - (8958, '3251003011'), - (2612, '3870245123'), - (662, '3150012198'), - (8959, '3150012198'), - (8958, '3150012198'), - (8960, '3858620203'), - (3319, '0553138758'), - (8961, '0345344375'), - (2126, '0553138596'), - (3207, '0842345566'), - (8962, '0802415881'), - (720, '0684834731'), - (8963, '1565121465'), - (2126, '0312021690'), - (8964, '0312021690'), - (1970, '0140465340'), - (2126, '0312549059'), - (8965, '0312549059'), - (8966, '0671794248'), - (7549, '0767901428'), - (8967, '0060170832'), - (8968, '0060928069'), - (8969, '0875420087'), - (8970, '0373760639'), - (8971, '0816772045'), - (3114, '1561797332'), - (3114, '1561797324'), - (3114, '1561797316'), - (3114, '1561797308'), - (3114, '1561797200'), - (3114, '1561797197'), - (3114, '1561797189'), - (3114, '156179600X'), - (3114, '1561795992'), - (3114, '1561795976'), - (3114, '1561797219'), - (3114, '1561795984'), - (8972, '0373037732'), - (8973, '0395519519'), - (8974, '0395735262'), - (8975, '0395735262'), - (8976, '0831710349'), - (8977, '0831710349'), - (5589, '093439573X'), - (8978, '093439573X'), - (8979, '093439573X'), - (8980, '093439573X'), - (2340, '0689804466'), - (501, '0451409132'), - (8981, '0425160424'), - (231, '0385297548'), - (8982, '0142301493'), - (8983, '0140167153'), - (8984, '0140167153'), - (8985, '014034912X'), - (583, '0060182687'), - (937, '0743204832'), - (8220, '0786888741'), - (8986, '0446604682'), - (2011, '0399150552'), - (2010, '0399150552'), - (1704, '0312289901'), - (2626, '0312289901'), - (1331, '0553561723'), - (2627, '0743426657'), - (8987, '0061098760'), - (410, '0451204158'), - (1562, '0451171861'), - (1665, '0142001384'), - (8988, '0440206685'), - (574, '0345373707'), - (162, '0440376408'), - (8989, '0440376408'), - (1366, '0440180090'), - (142, '0670839531'), - (1784, '0446358584'), - (892, '0374121230'), - (1092, '0671014218'), - (6199, '0670856495'), - (397, '0812035844'), - (8990, '0385242719'), - (8991, '0553578529'), - (8992, '0671041800'), - (8993, '0471123005'), - (1666, '0553213768'), - (2984, '0553213768'), - (129, '0316693707'), - (2018, '1852305606'), - (2019, '1852305606'), - (8994, '1852305606'), - (8995, '1852305606'), - (8996, '0375752501'), - (8997, '1573226041'), - (1773, '0380013207'), - (8998, '0451192575'), - (8999, '0966080521'), - (9000, '0966080521'), - (5564, '0385467958'), - (2041, '0515123447'), - (4451, '0441010512'), - (2029, '0887308589'), - (943, '0140363386'), - (943, '0140363378'), - (187, '0312854137'), - (70, '0380727331'), - (9001, '0440226236'), - (9002, '0393049701'), - (1463, '0345441044'), - (4945, '0374189870'), - (634, '0425161633'), - (9003, '190415123X'), - (9004, '190415123X'), - (9005, '190415123X'), - (9006, '190415123X'), - (7, '1400002877'), - (9007, '0946395438'), - (9008, '0874772095'), - (9009, '0874772095'), - (9010, '0874772095'), - (9011, '0874772095'), - (9012, '0684853612'), - (1560, '0684853612'), - (9013, '0312145357'), - (9014, '0595131700'), - (9015, '0399148876'), - (9016, '0316442178'), - (9017, '0786708395'), - (1987, '0446606928'), - (9018, '0425177718'), - (1691, '0316110493'), - (154, '0385503954'), - (9019, '0375502947'), - (9020, '0060959517'), - (9021, '0671527967'), - (9022, '0312266499'), - (9023, '0312266499'), - (2875, '0312242417'), - (9024, '0881845973'), - (9023, '0375718990'), - (3744, '0674766911'), - (111, '0316097500'), - (2029, '088730866X'), - (9025, '088730866X'), - (1697, '0425185001'), - (9026, '0741412896'), - (795, '0345396545'), - (9027, '0060008865'), - (8981, '0141309725'), - (8987, '044021646X'), - (9028, '0006498035'), - (7400, '0749390832'), - (1616, '0140132155'), - (3601, '0140238131'), - (634, '0385507607'), - (60, '0743206061'), - (58, '006016249X'), - (132, '0553802453'), - (2543, '0345445910'), - (346, '0399148469'), - (2963, '089296765X'), - (132, '0553802461'), - (7549, '0440224071'), - (716, '0679781307'), - (717, '0679781307'), - (6087, '0440174643'), - (368, '0449221393'), - (9029, '0671652796'), - (2749, '068480378X'), - (1871, '0380807203'), - (552, '0449147282'), - (4094, '0451195981'), - (59, '0425071871'), - (552, '0449218929'), - (1626, '0671604082'), - (1628, '0553275100'), - (9030, '0030598583'), - (176, '0671660632'), - (5130, '0440207460'), - (9031, '0345362667'), - (202, '0345323750'), - (9032, '0486280314'), - (5555, '0486280314'), - (9033, '0913866024'), - (9034, '157297317X'), - (9035, '0806519630'), - (9036, '0399521577'), - (9037, '0312267126'), - (9038, '0671870238'), - (803, '0345346904'), - (9039, '1591823641'), - (9040, '1591823633'), - (9041, '193248020X'), - (9042, '1932480099'), - (9043, '1591820162'), - (9044, '1569310491'), - (9043, '1569310491'), - (9045, '0743458206'), - (9046, '1591824729'), - (2233, '0060530804'), - (9047, '0553493264'), - (9045, '1591821819'), - (9045, '1591820588'), - (9048, '1560974109'), - (9049, '1591823951'), - (9048, '1591823935'), - (9050, '1591822246'), - (9051, '159182415X'), - (9052, '159182415X'), - (9050, '1591824141'), - (9051, '1591824141'), - (9053, '1931514186'), - (9054, '1931514186'), - (9052, '1931514178'), - (9052, '193151416X'), - (9052, '1931514151'), - (9055, '0872262278'), - (9056, '0872262278'), - (9057, '082302377X'), - (9045, '1591821800'), - (9045, '1591820596'), - (7172, '159182303X'), - (9045, '1931514798'), - (9045, '1931514801'), - (7168, '1591160502'), - (7168, '156931568X'), - (7168, '1569314748'), - (7168, '1569314071'), - (7168, '1569312648'), - (7168, '1569312273'), - (7168, '1569311897'), - (7168, '1569311382'), - (9058, '1591823455'), - (9049, '1591825369'), - (9059, '1586649000'), - (9060, '0224045814'), - (9061, '0751505366'), - (9062, '1841640212'), - (2500, '0553563971'), - (9063, '0571197418'), - (9064, '0571197418'), - (9065, '0571197418'), - (275, '0330482432'), - (9066, '0141307757'), - (9067, '0750004088'), - (9068, '0750004088'), - (9069, '059013387X'), - (9070, '059013387X'), - (9071, '0746020899'), - (9072, '0746020899'), - (6885, '0006751032'), - (9073, '1858811945'), - (9074, '0330481355'), - (5374, '0099769913'), - (142, '3404143434'), - (9075, '3492107400'), - (93, '3453152271'), - (5911, '3404148932'), - (8456, '3257225350'), - (1706, '3596113318'), - (2486, '3596113318'), - (9076, '3596113318'), - (9077, '3150034914'), - (9078, '3880220131'), - (9079, '3150000912'), - (9080, '3150000912'), - (374, '3499230755'), - (9081, '3499230755'), - (194, '3499230755'), - (93, '3453137442'), - (9082, '3421051496'), - (284, '3257008724'), - (9083, '3257008724'), - (9084, '1857025539'), - (411, '3426618303'), - (9085, '3426611384'), - (8457, '3442447186'), - (9086, '3442447186'), - (1001, '0553050680'), - (9087, '1560761210'), - (1353, '0747272522'), - (9088, '0385606990'), - (9089, '0385606990'), - (9090, '1843910500'), - (9091, '1843910500'), - (1519, '0439288886'), - (6466, '1840221178'), - (9092, '1840221178'), - (9093, '3791321641'), - (9094, '3791321641'), - (9095, '1840225025'), - (9096, '0340857382'), - (2148, '057117857X'), - (176, '0345391837'), - (9097, '0762413697'), - (9098, '0141315741'), - (9099, '0711708770'), - (9100, '0802139779'), - (9101, '0297643347'), - (9102, '1900512440'), - (628, '0571081789'), - (284, '0156236001'), - (9103, '0156236001'), - (9104, '0156236001'), - (9105, '1844130533'), - (1592, '0310209307'), - (822, '0060177888'), - (543, '0440214114'), - (373, '0671016652'), - (9106, '0515110132'), - (8582, '0446607827'), - (1109, '0613572742'), - (9107, '0919924034'), - (9108, '0919924034'), - (9109, '0919924034'), - (3108, '0448210339'), - (9110, '0448210339'), - (4501, '0312099436'), - (256, '0451450442'), - (166, '0440987202'), - (9111, '0142301094'), - (484, '0446357421'), - (9112, '0130314803'), - (9113, '0130314803'), - (9114, '0130314803'), - (9115, '0812092821'), - (9116, '0764551949'), - (9117, '0312959249'), - (9118, '1576739562'), - (9119, '0684868938'), - (9120, '0312966814'), - (571, '0399141065'), - (2181, '0425171272'), - (9121, '1880033100'), - (7870, '0804900973'), - (9122, '0804900973'), - (4764, '0449215571'), - (5466, '0451516060'), - (9123, '0764585932'), - (335, '0553212478'), - (9124, '0671432427'), - (9125, '0517569620'), - (9126, '0671827944'), - (9127, '0671701363'), - (9128, '0553247727'), - (65, '0842329242'), - (66, '0842329242'), - (565, '0553106333'), - (3428, '0395683297'), - (9129, '0395683297'), - (9130, '0395683297'), - (281, '0590451782'), - (9131, '0452270529'), - (563, '0425168298'), - (949, '1566193087'), - (284, '0553213423'), - (351, '0553213423'), - (9132, '0394713788'), - (237, '0345433165'), - (9133, '0785804714'), - (9134, '0002229544'), - (9135, '0140011307'), - (1194, '0671007343'), - (1159, '067084943X'), - (76, '0671799045'), - (9136, '067178501X'), - (1977, '0721406270'), - (9137, '0721406270'), - (9138, '0721406270'), - (9139, '0062508326'), - (471, '0486264661'), - (5382, '0486272818'), - (9140, '0486272648'), - (8917, '0486277836'), - (2458, '048627053X'), - (1674, '0064472531'), - (9141, '0205131999'), - (9142, '0205131999'), - (9143, '0451625781'), - (9144, '0451625781'), - (9145, '0441005004'), - (9146, '002346450X'), - (8715, '0312280637'), - (3211, '0380017822'), - (368, '0515129232'), - (137, '0345400011'), - (5402, '0316898163'), - (9147, '0937611018'), - (9148, '0965834522'), - (9149, '0671695347'), - (9150, '0671695347'), - (9151, '0671758748'), - (61, '0399147659'), - (9152, '0399147659'), - (7147, '0671869205'), - (3632, '0374525102'), - (9153, '0140003185'), - (9154, '1853262412'), - (9155, '1880656655'), - (1071, '0812544196'), - (9156, '0446610526'), - (9157, '0385285965'), - (1665, '0140017917'), - (9158, '0741409577'), - (9159, '0380784130'), - (325, '0345367693'), - (326, '0345367693'), - (325, '0345373529'), - (749, '096623460X'), - (4029, '0140165347'), - (484, '0446357448'), - (9160, '0805209522'), - (9161, '0385147635'), - (9162, '0708905307'), - (285, '0060510323'), - (583, '0061008095'), - (5916, '0446606294'), - (1092, '0671689746'), - (285, '0060951273'), - (760, '0374523789'), - (2654, '0449208885'), - (9163, '0399136002'), - (7, '067972768X'), - (5916, '0380723409'), - (2823, '0380790904'), - (9164, '0800711246'), - (4220, '0439104645'), - (9165, '0439104645'), - (5618, '0439160197'), - (9166, '0439160197'), - (3791, '0439104661'), - (9167, '0451401182'), - (3315, '0345370139'), - (5758, '0451145577'), - (1283, '0440207428'), - (347, '0446608106'), - (9168, '0553562916'), - (9169, '0345435907'), - (60, '0385319215'), - (7515, '0684855135'), - (9170, '0425160343'), - (9169, '0425155129'), - (9169, '0425165671'), - (1094, '0553574566'), - (9171, '0394759842'), - (9172, '188845136X'), - (1012, '0553347756'), - (9173, '3800015064'), - (6877, '3800015064'), - (2724, '3789129453'), - (9174, '3789129453'), - (7435, '0452278384'), - (7436, '0452278384'), - (4428, '0743250192'), - (9175, '0743250192'), - (3115, '1551664348'), - (58, '0061099732'), - (1052, '3453149793'), - (9176, '3518404741'), - (1098, '3442722357'), - (1021, '3502151040'), - (9177, '1570623392'), - (9178, '0340590262'), - (1109, '3518366823'), - (9179, '0452262380'), - (9180, '0452262380'), - (9181, '0688132464'), - (9182, '0684834669'), - (9183, '1566471192'), - (9184, '1566471192'), - (9185, '0446393568'), - (9186, '0446393568'), - (9187, '0446393568'), - (9188, '0425114686'), - (3912, '0515110396'), - (1937, '0385335555'), - (607, '0385414587'), - (607, '0449911373'), - (145, '0399142193'), - (233, '0385729332'), - (9189, '0140048944'), - (1256, '0385333005'), - (5560, '0671517635'), - (9190, '0812695313'), - (9191, '0812695313'), - (9158, '0671606832'), - (741, '0345428919'), - (9192, '0553289314'), - (1065, '0399134999'), - (9193, '0399134999'), - (9194, '0321130073'), - (5538, '0812523113'), - (9195, '0886775388'), - (9196, '0312853742'), - (5875, '0441010210'), - (5344, '0451454146'), - (9197, '0684854422'), - (9198, '0312877994'), - (4020, '0505525542'), - (325, '0345448995'), - (326, '0345448995'), - (151, '0061099155'), - (606, '0671878638'), - (8410, '0671878638'), - (5560, '0802139981'), - (867, '0886778913'), - (9199, '0451198379'), - (9200, '0152337016'), - (9201, '0873585763'), - (9202, '0394546415'), - (9203, '051512768X'), - (9204, '0312916671'), - (2504, '0671218336'), - (3071, '0671218336'), - (2340, '0449700895'), - (9205, '031203833X'), - (9206, '0688044816'), - (9207, '0688044816'), - (9208, '0688035418'), - (3538, '0679723250'), - (1765, '0441203981'), - (1765, '0441048854'), - (1765, '0441787541'), - (1765, '0441888054'), - (1765, '0441001068'), - (1765, '0441860397'), - (1765, '0441748635'), - (1246, '0374455031'), - (9209, '0374455031'), - (9210, '0374455031'), - (9211, '0374455031'), - (9212, '1582402159'), - (9213, '1582402159'), - (2458, '0140449132'), - (2809, '0140449132'), - (9214, '0140449132'), - (905, '0192823795'), - (9215, '0192823795'), - (192, '0394758277'), - (848, '0375405119'), - (9216, '0375405119'), - (3822, '0739307320'), - (9217, '0739307320'), - (9218, '014044629X'), - (9219, '014044629X'), - (1665, '0140184937'), - (1318, '1587156865'), - (1870, '1400100666'), - (9220, '9505812760'), - (9221, '9505812760'), - (90, '0451527461'), - (9222, '0451527461'), - (9223, '0451527461'), - (3001, '078688942X'), - (3002, '078688942X'), - (9224, '0553373854'), - (7242, '0688171451'), - (9225, '0942394577'), - (1265, '0345315715'), - (1265, '0345336275'), - (2043, '0425115291'), - (4602, '1551667010'), - (145, '0425168220'), - (876, '0425168220'), - (3407, '0425168220'), - (890, '0440220793'), - (9226, '0446301353'), - (563, '0425146413'), - (2242, '0553566075'), - (9227, '0451409639'), - (9228, '0553580167'), - (370, '0590341286'), - (371, '0590341286'), - (9229, '0310535212'), - (3702, '0880385480'), - (2006, '0380793342'), - (495, '0140285105'), - (2458, '0486295729'), - (3974, '0486295729'), - (5455, '0140622160'), - (2181, '0515094773'), - (484, '068803196X'), - (292, '060303294X'), - (9230, '1551664445'), - (9231, '0373271948'), - (1402, '2080701142'), - (5937, '158243140X'), - (9232, '0138153094'), - (9233, '0452011345'), - (8857, '0764912518'), - (9234, '1588800296'), - (397, '0486275574'), - (9235, '1857933206'), - (758, '0349107688'), - (9236, '0868065951'), - (1165, '0860682854'), - (5128, '0811214575'), - (9237, '1862053642'), - (4112, '014043061X'), - (9238, '014043061X'), - (1616, '0679738134'), - (9239, '0140028668'), - (2224, '0345255577'), - (9240, '0553121375'), - (2980, '0553252526'), - (9241, '0553109782'), - (9242, '0553109782'), - (2515, '0671632663'), - (9243, '0671501070'), - (7830, '0671501070'), - (3893, '081253221X'), - (1740, '081253221X'), - (9244, '081253221X'), - (9245, '081253221X'), - (1112, '0671027514'), - (532, '0451404327'), - (3695, '0310200059'), - (9246, '1576736261'), - (2504, '0345333926'), - (1428, '0446603503'), - (2504, '0345257502'), - (3590, '0812510127'), - (5498, '0440225825'), - (534, '0425191729'), - (9247, '0849396409'), - (9248, '0879800429'), - (9249, '0879800429'), - (9250, '0879800429'), - (9251, '0446349763'), - (9252, '0446349763'), - (9253, '0553227386'), - (9254, '0553227386'), - (9255, '0138094764'), - (9256, '0471084263'), - (9257, '0911654690'), - (4148, '0385484984'), - (330, '0878575707'), - (9258, '0878575707'), - (9259, '0671832638'), - (9260, '0449144585'), - (9261, '0449243583'), - (1732, '0394558332'), - (9262, '0312977026'), - (9263, '067346427X'), - (9264, '067346427X'), - (9265, '067346427X'), - (9266, '044990668X'), - (9267, '0465005594'), - (3700, '0465005594'), - (253, '044022330X'), - (9268, '2211016529'), - (9269, '0752803409'), - (9270, '0609800140'), - (7582, '1893732126'), - (3191, '3499231670'), - (9271, '3499231670'), - (8852, '3499222736'), - (3191, '3499222736'), - (9272, '3499222736'), - (8852, '3499222728'), - (3191, '3499222728'), - (9271, '3499222728'), - (955, '0375431403'), - (534, '0553050044'), - (9273, '0911104674'), - (9272, '0911104674'), - (2695, '0380725347'), - (3757, '0312978820'), - (9274, '0889951853'), - (9275, '0002005395'), - (7958, '1551668076'), - (1036, '0670892084'), - (9276, '0888012748'), - (9277, '0889951918'), - (266, '0812534085'), - (9275, '0888012268'), - (405, '0394740181'), - (9278, '0394740181'), - (9279, '0394740181'), - (9280, '0812589505'), - (9281, '076150592X'), - (9001, '077109969X'), - (3924, '077109969X'), - (8298, '039304632X'), - (9282, '1552631885'), - (9283, '0385475004'), - (266, '0553279580'), - (441, '0553276409'), - (2942, '0679731725'), - (2326, '0886776287'), - (9284, '0385172419'), - (9285, '0889223025'), - (9286, '0889223025'), - (9287, '0889223025'), - (9288, '0889221456'), - (9289, '0919591566'), - (9290, '0064402754'), - (9291, '088001539X'), - (664, '0380441071'), - (39, '0451210638'), - (2224, '0345346890'), - (9292, '0486290387'), - (181, '0486290387'), - (9293, '0525938508'), - (9294, '0373052987'), - (9295, '0373052367'), - (9296, '0373054742'), - (9297, '0671570986'), - (9298, '0671571117'), - (4392, '0373095287'), - (9299, '0440149843'), - (9300, '0440118891'), - (543, '0440173701'), - (9301, '0373089899'), - (4376, '0906710618'), - (121, '0375432329'), - (369, '0399151060'), - (3115, '0739437631'), - (247, '0345456521'), - (66, '0842384065'), - (9302, '0842332340'), - (66, '0842332340'), - (2242, '0425191796'), - (2287, '0449207005'), - (9303, '0060809078'), - (1091, '0060809078'), - (736, '0446600768'), - (9304, '0451186729'), - (3458, '074341134X'), - (282, '0804103658'), - (9305, '0345347676'), - (9306, '0553109332'), - (5444, '0764225170'), - (8087, '0395636264'), - (532, '0451402383'), - (532, '0451402340'), - (9307, '0345284364'), - (626, '0671525751'), - (9308, '0743227611'), - (1252, '0670030511'), - (1253, '0670030511'), - (7477, '0670891797'), - (4934, '015100692X'), - (7944, '0802733794'), - (556, '0609602497'), - (873, '0312864833'), - (1801, '1888363819'), - (2592, '0802713432'), - (972, '0375431314'), - (9309, '155166884X'), - (2592, '0783889542'), - (9310, '0156790157'), - (9311, '0312272197'), - (9312, '0312863462'), - (9313, '0743446496'), - (9314, '0743446496'), - (9315, '0385502176'), - (54, '0060158638'), - (1591, '0805056637'), - (746, '0064407691'), - (747, '0064407691'), - (2498, '0064407691'), - (9316, '0385314698'), - (1024, '0156000520'), - (2126, '0553110004'), - (9317, '0881762024'), - (9318, '0312208804'), - (9319, '076455168X'), - (9320, '076455168X'), - (9321, '087483435X'), - (9322, '0590415719'), - (9323, '0590415719'), - (9324, '0070540403'), - (9325, '1563083701'), - (9326, '0938756370'), - (9327, '0938756370'), - (9328, '0917846494'), - (9329, '0917846494'), - (9330, '0874835909'), - (9331, '0385127685'), - (9332, '0874834473'), - (9333, '0963870580'), - (83, '1566197198'), - (9334, '0945353863'), - (9335, '0192761870'), - (9336, '0192761870'), - (9337, '0060193328'), - (3689, '044900211X'), - (9338, '0786000511'), - (9339, '0553373730'), - (720, '0671004239'), - (9340, '084236966X'), - (5268, '0843946954'), - (9341, '0786866020'), - (9342, '0786866020'), - (9343, '0786866020'), - (1564, '0786866020'), - (3912, '0399146725'), - (247, '0449006565'), - (247, '0345440048'), - (1878, '0345385071'), - (1436, '0553580337'), - (1441, '0553580337'), - (1442, '0553580337'), - (5482, '0425153088'), - (1697, '0425166139'), - (1878, '0140282513'), - (501, '0345376579'), - (1119, '0451458540'), - (9344, '0441007511'), - (9345, '0380791285'), - (9344, '0380791277'), - (9346, '0671629689'), - (9347, '0671027212'), - (2559, '075284413X'), - (9348, '0460878247'), - (4723, '0670899771'), - (9349, '0700606572'), - (9350, '0700606572'), - (9351, '0874775191'), - (9352, '0060391634'), - (9353, '0374192030'), - (2681, '345313138X'), - (3739, '345313138X'), - (9354, '2038716633'), - (9355, '1400001625'), - (284, '0192833901'), - (9356, '0192833901'), - (502, '0140432620'), - (9357, '0140432620'), - (9358, '0140432620'), - (9359, '0939218208'), - (9360, '0939218208'), - (1560, '0679457526'), - (9361, '037550298X'), - (9089, '3423130989'), - (9362, '3423130989'), - (1232, '3463403021'), - (9363, '1561451010'), - (9364, '1561451010'), - (9365, '0385496052'), - (1300, '006103066X'), - (6034, '0446610550'), - (534, '0399150412'), - (3800, '0399150412'), - (63, '0440207770'), - (9366, '0861710649'), - (9367, '0062585215'), - (2713, '0553297945'), - (9368, '1901881555'), - (9369, '1901881555'), - (3633, '0440228352'), - (974, '0679894772'), - (9370, '0886776783'), - (149, '9500705117'), - (54, '0571206484'), - (9371, '0743201116'), - (9372, '0743201116'), - (106, '0316769509'), - (9373, '0553585509'), - (142, '0451150716'), - (9374, '0380704161'), - (9375, '0812553861'), - (9376, '1403905843'), - (9377, '0399137920'), - (9378, '0786814225'), - (1965, '0886775280'), - (2513, '0886775280'), - (9379, '0886775280'), - (256, '0061059056'), - (9380, '0304353493'), - (9381, '3770149599'), - (501, '344243761X'), - (9382, '344243761X'), - (1143, '3596129052'), - (9383, '0738849901'), - (9384, '0738849901'), - (9385, '0739438573'), - (972, '037541178X'), - (183, '039914675X'), - (9386, '0061066079'), - (1965, '0451522796'), - (9387, '0451522796'), - (9388, '157748794X'), - (1214, '0671007610'), - (1214, '0671534718'), - (1298, '0440904196'), - (9389, '1885840020'), - (9390, '1885840020'), - (241, '0553273299'), - (60, '0671741187'), - (1428, '0590568795'), - (1428, '0590568825'), - (1428, '0590568744'), - (1428, '0590483471'), - (1428, '0590483455'), - (1428, '0590483544'), - (1428, '059048351X'), - (1428, '0590568752'), - (94, '0590483552'), - (2233, '0590568760'), - (1428, '0590494503'), - (1428, '0590483501'), - (9391, '0312110790'), - (5690, '0517585154'), - (9392, '1585421359'), - (9393, '0805064478'), - (9394, '9023405587'), - (8096, '0743467329'), - (9395, '044900709X'), - (971, '0345453409'), - (894, '0440147190'), - (9396, '0451456068'), - (499, '0060521902'), - (5847, '0743482212'), - (9397, '0812520327'), - (1196, '037321877X'), - (583, '0440235154'), - (9398, '0964631601'), - (9399, '0515136433'), - (8062, '0786010126'), - (9158, '0671452533'), - (1345, '0373037716'), - (9400, '0345295463'), - (1339, '0743424107'), - (9401, '0425190943'), - (4017, '0312984839'), - (128, '0446353957'), - (369, '0373835922'), - (552, '0449003302'), - (9402, '0312987013'), - (183, '0399140751'), - (9403, '0743479068'), - (76, '0671722131'), - (6426, '0812575393'), - (3344, '0451172507'), - (1626, '0312993536'), - (9192, '0061056383'), - (9404, '0373222815'), - (9405, '0451210972'), - (410, '3453177746'), - (9406, '3453177746'), - (9407, '0747257833'), - (9408, '0399129111'), - (9409, '0399131280'), - (9407, '0312059612'), - (9410, '039915034X'), - (4471, '0345428293'), - (3458, '0743411323'), - (9409, '0805053077'), - (9411, '0446527378'), - (9407, '0312155581'), - (9407, '0060177012'), - (2667, '0312280661'), - (6170, '0312280661'), - (9409, '0446527386'), - (2341, '0805071903'), - (4471, '0345443268'), - (234, '0449908593'), - (81, '0449911799'), - (81, '0449911721'), - (81, '0449911780'), - (81, '0449911896'), - (9412, '0345410033'), - (9413, '0345439600'), - (9414, '0030597862'), - (576, '0345353617'), - (9415, '0061003964'), - (3615, '0553561111'), - (4278, '0671024353'), - (128, '0446601853'), - (9416, '0758203896'), - (9417, '0373121717'), - (9418, '0385411235'), - (4438, '0060989238'), - (9419, '0758206283'), - (6468, '0060195460'), - (5340, '0312992327'), - (5696, '0380727293'), - (9420, '0967303516'), - (9421, '0967303516'), - (3899, '0967303516'), - (3615, '0553561375'), - (2656, '0449211584'), - (3924, '0452280192'), - (5464, '0060186941'), - (6431, '0060186941'), - (9422, '0553110748'), - (9423, '0553110748'), - (9424, '0786863269'), - (9425, '0688110290'), - (9426, '0688110290'), - (9427, '0688110290'), - (1300, '0060196300'), - (9428, '0684850737'), - (9429, '0810931850'), - (9430, '0030463262'), - (9431, '0030463262'), - (9432, '0030463262'), - (2504, '0449235998'), - (3071, '0449235998'), - (905, '0451524780'), - (4556, '0451524780'), - (1591, '3499229935'), - (9433, '3499229935'), - (9434, '2871294011'), - (867, '0312872836'), - (56, '0140258175'), - (9433, '1569312036'), - (9433, '1569312028'), - (9433, '1569311285'), - (9433, '1569311374'), - (9433, '1569310858'), - (9433, '1569310203'), - (9433, '1569310165'), - (9433, '1569319626'), - (9435, '1568361181'), - (9436, '1568361181'), - (9434, '1568361173'), - (9435, '1568361173'), - (9437, '1892213974'), - (9434, '1892213974'), - (9438, '159264029X'), - (1246, '0140074317'), - (1247, '0140074317'), - (2695, '1874061688'), - (3537, '0670875953'), - (9439, '1590580680'), - (1949, '014026065X'), - (9440, '0714120022'), - (9441, '0786810424'), - (9442, '0786810424'), - (9443, '0740706020'), - (1431, '0316142573'), - (9444, '0316142573'), - (9445, '0316142573'), - (9446, '0789447649'), - (7329, '0448431025'), - (9447, '1876825251'), - (9448, '1876825251'), - (9449, '1575727331'), - (2095, '0141310979'), - (3405, '0141310979'), - (2925, '0394751027'), - (9450, '0525470417'), - (9451, '0451628004'), - (9452, '0451198808'), - (9453, '0446603422'), - (9454, '0446603422'), - (9455, '0672604426'), - (312, '0915144182'), - (9456, '0915144182'), - (1431, '0316141631'), - (9457, '0316141631'), - (9458, '0316141631'), - (3314, '0449206092'), - (959, '0876853904'), - (554, '0553100017'), - (554, '0553100009'), - (61, '0684195984'), - (61, '0399141464'), - (61, '0684195305'), - (61, '0941711420'), - (4444, '0786866195'), - (2242, '0553091735'), - (337, '0425177068'), - (7366, '0312198299'), - (9459, '0026125803'), - (3620, '1585420093'), - (9460, '0786904739'), - (5874, '0553276123'), - (5874, '0812551079'), - (9461, '1560768983'), - (7176, '0441000541'), - (9462, '0061054658'), - (2393, '0886773849'), - (2312, '0886775272'), - (9459, '0786905018'), - (9463, '0821743279'), - (9464, '006050675X'), - (7021, '0765305224'), - (1041, '0786918179'), - (1042, '0786918179'), - (7021, '0765300265'), - (9463, '0060506512'), - (7024, '0553575651'), - (1442, '0553575651'), - (3997, '0756400996'), - (7024, '0553575643'), - (1041, '0061020575'), - (1042, '0061020575'), - (7024, '0553575635'), - (1442, '0553575635'), - (867, '0886772885'), - (4099, '0451456408'), - (6444, '0886779804'), - (9465, '0886779804'), - (142, '0812575237'), - (1060, '0812575237'), - (7021, '0812575237'), - (9466, '078691808X'), - (1119, '0451452682'), - (1436, '0553110845'), - (1441, '0553110845'), - (3302, '0756400007'), - (9467, '1930662513'), - (1965, '1903650267'), - (5901, '3518398873'), - (9468, '3518398873'), - (9469, '3518398873'), - (9470, '0525935762'), - (9471, '0345437829'), - (9472, '0862417031'), - (9473, '157322135X'), - (9474, '0812815904'), - (9475, '0812815904'), - (4197, '0345333748'), - (2029, '0740713906'), - (7465, '0670030295'), - (3689, '0451211480'), - (128, '0743245520'), - (1597, '0140440755'), - (1091, '0140440755'), - (127, '0449209733'), - (9476, '0399142177'), - (9477, '0140112847'), - (3316, '0812534271'), - (3317, '0812534271'), - (9478, '0375753788'), - (9479, '1590710088'), - (9175, '0452281709'), - (9480, '0452281709'), - (4558, '000654861X'), - (3253, '0452274427'), - (1158, '0836220870'), - (9481, '0130816795'), - (9482, '0130816795'), - (6772, '0399141960'), - (9483, '0898796407'), - (9484, '0898796407'), - (9485, '0898796407'), - (9486, '0898796407'), - (9487, '0028613228'), - (9488, '0898796342'), - (59, '0425194515'), - (2695, '0688132286'), - (1013, '0688132286'), - (2695, '0060198303'), - (4301, '0679408193'), - (9489, '1931201080'), - (9490, '0393951693'), - (9491, '0816727953'), - (325, '0446532215'), - (326, '0446532215'), - (9492, '0312964293'), - (3830, '0312964293'), - (6396, '0312956789'), - (4477, '0380727544'), - (3419, '0345466632'), - (2530, '0440237246'), - (9493, '0771087462'), - (9494, '0060973323'), - (4029, '0140065598'), - (4938, '0440359376'), - (4146, '0553103105'), - (745, '0006135986'), - (1628, '0553572202'), - (5015, '0898704448'), - (571, '0399144714'), - (9495, '0312859279'), - (9494, '0812589173'), - (9494, '0312866925'), - (9494, '0441001963'), - (9494, '0441033423'), - (9494, '0441662250'), - (9494, '0441182003'), - (9494, '0441799779'), - (9494, '0441944604'), - (9494, '0441385540'), - (7024, '0553565699'), - (7024, '0553375636'), - (7024, '0553374451'), - (3610, '0553381709'), - (9496, '0373195818'), - (9497, '0060962348'), - (9498, '0446526924'), - (9499, '0446526924'), - (9500, '0446526924'), - (641, '0312275714'), - (9501, '2266025791'), - (389, '0440343194'), - (368, '0449212645'), - (9502, '0970566506'), - (1704, '0553252704'), - (9503, '0880117834'), - (9504, '0880117834'), - (142, '067082982X'), - (9505, '0919591051'), - (6177, '0440164842'), - (5426, '0440226457'), - (2458, '0140440232'), - (9506, '0140440232'), - (9507, '0140440232'), - (532, '0451204301'), - (65, '0842329269'), - (66, '0842329269'), - (9508, '0786868155'), - (9509, '0156002523'), - (9510, '0440507626'), - (1060, '0380976307'), - (309, '0380976307'), - (873, '0380976307'), - (9511, '0380976307'), - (9512, '0887306918'), - (9513, '0887306918'), - (9514, '0887306918'), - (9515, '0887306918'), - (9516, '0840791712'), - (3327, '0140380736'), - (9517, '0689828772'), - (1486, '0689313535'), - (9518, '0679411836'), - (5052, '0151962960'), - (9519, '3404921178'), - (9520, '3404921178'), - (8272, '0451136330'), - (9521, '0061001023'), - (9522, '0843934557'), - (9523, '0312961006'), - (9524, '2266041517'), - (9525, '2290047155'), - (9526, '2226120467'), - (2007, '0446523089'), - (9527, '0373226136'), - (3952, '0688167810'), - (9528, '0373704526'), - (369, '0373484895'), - (427, '0451524497'), - (9505, '0451524497'), - (977, '0449234576'), - (9529, '014025773X'), - (9530, '0395533627'), - (9531, '0393963039'), - (6307, '0393963039'), - (9532, '0941104311'), - (3776, '0375401296'), - (1783, '0393322157'), - (3090, '0060005424'), - (9533, '3404615131'), - (2656, '0449205878'), - (9534, '0670813699'), - (1291, '0552996181'), - (131, '0451211561'), - (9535, '3499420694'), - (9536, '3257218362'), - (188, '0380729407'), - (9537, '0310214653'), - (9538, '0310214653'), - (9539, '0486299929'), - (9540, '0486278042'), - (9541, '0486282252'), - (9542, '0738807338'), - (8985, '0446523151'), - (17, '1558749209'), - (18, '1558749209'), - (1695, '0446601020'), - (2516, '0446601020'), - (8111, '3492238882'), - (9543, '3492238882'), - (9544, '3257205368'), - (1234, '0749396547'), - (9545, '0749396547'), - (9546, '325130058X'), - (9547, '325130058X'), - (9548, '3794147286'), - (9549, '3548243746'), - (1086, '0670814458'), - (9550, '0816707987'), - (9551, '3426617277'), - (9552, '185863864X'), - (4104, '3596294312'), - (9553, '3453209419'), - (9554, '0595250955'), - (59, '0399135790'), - (795, '0345356950'), - (4804, '2253060224'), - (688, '2253060224'), - (9555, '2253060224'), - (1432, '0312265859'), - (9556, '0130421499'), - (9557, '0130421499'), - (9558, '0673980111'), - (9559, '157029237X'), - (9560, '0935989870'), - (9561, '0935989870'), - (9562, '0935989870'), - (9563, '0935989870'), - (9564, '0876591063'), - (9565, '0876591063'), - (9566, '0876591195'), - (9567, '0876591195'), - (9568, '0935989900'), - (9569, '0553380303'), - (9570, '0553380303'), - (9571, '0316744441'), - (4919, '0316779032'), - (4918, '0316779032'), - (9572, '089586763X'), - (9573, '0827348916'), - (9574, '0060406046'), - (9575, '0312636490'), - (9576, '0312636490'), - (9577, '0671739999'), - (4918, '0912500212'), - (1474, '1576734587'), - (9578, '1576734587'), - (9579, '0786884525'), - (1659, '0553347187'), - (9580, '0553347187'), - (9581, '0671537628'), - (9582, '0553226630'), - (9167, '0553580655'), - (9583, '0440127092'), - (9584, '0671836285'), - (9585, '0312969767'), - (9586, '0440214475'), - (9587, '0380790750'), - (9588, '0671027271'), - (9589, '0764561960'), - (9590, '0831788356'), - (9591, '1566910838'), - (9592, '0803893728'), - (9593, '1558534334'), - (9594, '0873374789'), - (9595, '0873374789'), - (9596, '0395714060'), - (9597, '0878570764'), - (9598, '0380758962'), - (9599, '0553088122'), - (9600, '0879752408'), - (9601, '0425096505'), - (9602, '0822023016'), - (9603, '0822023016'), - (9604, '0307336565'), - (9605, '0307336565'), - (9606, '0307336565'), - (9607, '0307336565'), - (6067, '0486224570'), - (9608, '0842346740'), - (9609, '0805061835'), - (1804, '0805061835'), - (145, '0425165701'), - (84, '0425165701'), - (415, '0451522273'), - (9610, '0451522273'), - (9611, '0767900189'), - (2397, '0060196661'), - (9612, '344242366X'), - (1265, '2070415708'), - (7024, '2290316296'), - (9613, '2290316296'), - (7024, '2290313238'), - (9612, '2290313238'), - (7024, '2290303607'), - (9614, '2290304778'), - (9615, '2290042560'), - (1063, '2290331341'), - (9616, '2290331341'), - (9617, '2290331341'), - (9618, '2290331341'), - (9619, '2226135022'), - (9620, '0449003213'), - (115, '0688046592'), - (9621, '3548332374'), - (9622, '3548332374'), - (9623, '2207304183'), - (1408, '2207304183'), - (9624, '2207304132'), - (9625, '2207304116'), - (9626, '2207304116'), - (9627, '2207304078'), - (5112, '2207304027'), - (806, '2207304019'), - (1408, '2207304019'), - (806, '2207304000'), - (1408, '2207304000'), - (9628, '2207303993'), - (9629, '2207303888'), - (3716, '2207301656'), - (188, '2207250660'), - (9630, '2207250660'), - (9631, '2742743537'), - (532, '0399148779'), - (61, '3442439019'), - (9632, '3442439019'), - (5251, '0452281725'), - (503, '0385092148'), - (178, '0385092148'), - (9633, '0745916147'), - (9634, '0830727639'), - (9635, '0662174860'), - (9636, '187963905X'), - (9637, '187963905X'), - (9638, '187963905X'), - (9639, '0380795671'), - (9640, '1567181449'), - (9641, '0805047794'), - (6568, '0671542141'), - (2103, '0553211161'), - (2661, '0812556070'), - (873, '0812532597'), - (9642, '0879050721'), - (1265, '0345339967'), - (9643, '3442089832'), - (9644, '3442089832'), - (9645, '1414034563'), - (4620, '0880385871'), - (9646, '0141182253'), - (9647, '0060526769'), - (9648, '1858285283'), - (9649, '1858285283'), - (9650, '1858285283'), - (9651, '0385404859'), - (9652, '0375760520'), - (9653, '0375760520'), - (9654, '0375760520'), - (890, '0525945768'), - (9655, '1592400388'), - (199, '0060589272'), - (9656, '0553583158'), - (9657, '0804102511'), - (9658, '0137791577'), - (9656, '0804118213'), - (2978, '0425148297'), - (930, '0670628301'), - (9659, '0312868278'), - (9660, '0395752906'), - (9661, '0060523492'), - (4441, '0451209443'), - (9662, '0689311982'), - (9663, '0312039409'), - (3465, '0451207947'), - (2043, '042519065X'), - (9664, '0060008369'), - (9665, '0451208773'), - (876, '0425190919'), - (3407, '0425190919'), - (145, '0425190919'), - (9666, '006103181X'), - (9667, '0446612901'), - (2043, '051513581X'), - (2044, '051513581X'), - (369, '0515119202'), - (369, '1551660504'), - (7102, '0671013947'), - (94, '042512164X'), - (9668, '0451197534'), - (4613, '0425188795'), - (4485, '0515134864'), - (9669, '0312925778'), - (1283, '031228361X'), - (4444, '0786889845'), - (6426, '0765341697'), - (2043, '0060094397'), - (2044, '0060094397'), - (9670, '0451410645'), - (9671, '0446610402'), - (2748, '0061032425'), - (1562, '0743405900'), - (713, '0425163415'), - (2043, '0425187721'), - (2044, '0425187721'), - (6838, '0553574035'), - (5498, '044022473X'), - (9672, '0091833345'), - (9673, '0899972020'), - (4689, '0553254502'), - (1086, '0140097058'), - (9674, '0688155308'), - (115, '0688046606'), - (9675, '0451624769'), - (2182, '0441006949'), - (5379, '0747265453'), - (5379, '0747263884'), - (9676, '0140137815'), - (283, '0156767503'), - (815, '0380563908'), - (3315, '0345331176'), - (9677, '0241102634'), - (9678, '0786708069'), - (937, '0743411447'), - (642, '0743411447'), - (502, '0140432264'), - (9679, '0140432264'), - (9680, '0452276772'), - (9679, '0452276772'), - (9681, '0140185887'), - (9682, '0140008950'), - (9683, '0743235053'), - (9684, '1561310271'), - (85, '0553210246'), - (1505, '0140054316'), - (9402, '0590372343'), - (9685, '0595279171'), - (9686, '0312983417'), - (9687, '0440238412'), - (285, '006054564X'), - (1467, '0385502761'), - (4947, '0440229081'), - (9688, '038550084X'), - (188, '0553257749'), - (1362, '0380005166'), - (1727, '0394309685'), - (9689, '0970141947'), - (82, '0451516680'), - (1597, '0140367829'), - (9690, '0140367829'), - (9691, '0140367829'), - (411, '0345441788'), - (2680, '1853260207'), - (85, '0140620478'), - (9238, '0679750150'), - (2582, '0679750150'), - (7957, '0060930438'), - (9692, '0671796356'), - (9693, '0671796356'), - (3550, '0811841553'), - (9694, '0811841553'), - (9695, '0811841553'), - (415, '076070015X'), - (9696, '0312261357'), - (9697, '188090845X'), - (9698, '0804818584'), - (9699, '0804818584'), - (9697, '080482052X'), - (9700, '080482052X'), - (1625, '0440237424'), - (1706, '2253030589'), - (906, '0425087700'), - (906, '2013218923'), - (1665, '0140286829'), - (1666, '2290333697'), - (3539, '0679722610'), - (2599, '1592247938'), - (9701, '958949479X'), - (9702, '958949479X'), - (4682, '0553213296'), - (859, '0812523016'), - (1523, '0553214209'), - (1523, '0140367152'), - (2214, '0140367152'), - (9703, '9500286327'), - (1523, '0689810962'), - (9704, '0689810962'), - (9705, '0062702475'), - (2513, '0385415613'), - (7144, '0449219771'), - (9706, '0195038630'), - (9707, '0385418973'), - (2615, '0345380746'), - (9708, '1564963179'), - (9709, '156496518X'), - (9710, '156496518X'), - (9711, '156496518X'), - (9712, '0891347739'), - (9713, '0891347739'), - (8544, '1566091888'), - (9714, '1566091888'), - (9715, '0891346406'), - (9716, '1573441244'), - (9717, '0140280243'), - (9718, '1570716439'), - (9719, '076151340X'), - (9720, '076151340X'), - (6111, '0345359925'), - (9721, '1562829254'), - (9722, '1562829254'), - (9723, '0688127258'), - (1232, '0140109269'), - (7547, '0452260302'), - (9724, '0140116168'), - (1732, '0449205061'), - (5187, '0886775361'), - (256, '0061020672'), - (176, '0671664948'), - (92, '0345316509'), - (9680, '0140185992'), - (9725, '006440174X'), - (3772, '0385333862'), - (9726, '0330392611'), - (665, '0684822768'), - (7753, '0374480133'), - (9727, '1842124196'), - (9728, '1559723475'), - (9729, '1559723475'), - (9730, '0812521463'), - (6103, '0394512669'), - (895, '0451192915'), - (896, '0451192915'), - (309, '0553100343'), - (9731, '0684172755'), - (9732, '0811804844'), - (9733, '0385483414'), - (9734, '0385483414'), - (895, '0451194756'), - (896, '0451194756'), - (9735, '0449905950'), - (9736, '0345342313'), - (9737, '0448168324'), - (1013, '0805004602'), - (9738, '0590449036'), - (4905, '0747232679'), - (9739, '0133140547'), - (5887, '0671732277'), - (532, '0451406176'), - (9740, '0345424115'), - (9741, '0345302656'), - (5015, '0140082565'), - (9742, '0695808117'), - (9229, '0373152507'), - (9743, '0394486986'), - (231, '0440071240'), - (389, '0688078028'), - (9744, '0688078028'), - (9745, '0312285329'), - (9746, '0380785749'), - (4137, '044920099X'), - (325, '0345385209'), - (9747, '055325555X'), - (9748, '084311861X'), - (9749, '0553249371'), - (9750, '0446911968'), - (94, '0440142326'), - (9751, '0425077047'), - (9752, '0385278861'), - (374, '0446602345'), - (534, '0671737775'), - (534, '0553276328'), - (1326, '0446610232'), - (1327, '0446610232'), - (1326, '0812564375'), - (1327, '0812564375'), - (1326, '0812543262'), - (1327, '0812543262'), - (1892, '0061014591'), - (484, '0787103950'), - (9753, '0787103950'), - (9754, '0451409744'), - (1234, '0688147259'), - (1326, '0446523364'), - (1327, '0446523364'), - (9755, '0761512195'), - (9756, '0761512195'), - (9757, '0761504397'), - (9758, '0963425900'), - (1071, '0812571029'), - (411, '0804109729'), - (973, '0553280643'), - (9759, '0385480210'), - (1787, '0345431901'), - (3547, '0385497105'), - (9760, '0465031358'), - (9761, '0306808900'), - (966, '031219904X'), - (9762, '0312980663'), - (9763, '0062502891'), - (9764, '1570612676'), - (9765, '1570612676'), - (2833, '0451452313'), - (9766, '0767912365'), - (9767, '0767912365'), - (9768, '3293202047'), - (9769, '3293202047'), - (9770, '0595319033'), - (9771, '0201626098'), - (9772, '0201626098'), - (9773, '0684868660'), - (52, '0060194995'), - (2208, '0805065415'), - (7527, '044023655X'), - (4017, '0312979975'), - (7527, '0440236525'), - (4017, '0312979983'), - (9774, '0743226844'), - (7527, '0440234816'), - (971, '0671019740'), - (8372, '0373691300'), - (2747, '0425190927'), - (1196, '0446600814'), - (7527, '0440234808'), - (9775, '0373806841'), - (1196, '0373806841'), - (1196, '0373252579'), - (1196, '0373834683'), - (3507, '0373834683'), - (9776, '084233193X'), - (9777, '084233193X'), - (9778, '0061087130'), - (1196, '0671019635'), - (9779, '0876664206'), - (1367, '0609605216'), - (1368, '0609605216'), - (9780, '0740723367'), - (9781, '0380004801'), - (256, '2277302686'), - (9782, '2070334430'), - (9783, '2290045802'), - (6732, '2070403734'), - (9784, '2070403734'), - (9785, '2070403734'), - (1396, '220730521X'), - (9786, '2207306038'), - (9787, '2207306038'), - (9788, '2207248526'), - (9789, '2207306046'), - (8559, '2207304884'), - (8559, '2207304892'), - (8559, '2207303454'), - (9790, '2207303454'), - (9789, '2207303454'), - (9791, '2070326977'), - (9792, '2910932915'), - (9793, '2844850235'), - (9794, '2844850235'), - (702, '2846400539'), - (702, '2846400520'), - (1325, '0061091790'), - (9795, '039453896X'), - (9796, '0141006633'), - (9797, '0803723547'), - (543, '0440236851'), - (1739, '0345397843'), - (9798, '0843925795'), - (571, '0425151867'), - (9799, '0395746566'), - (2576, '0345380193'), - (5916, '0380715937'), - (9800, '0451188071'), - (9801, '0449704378'), - (9802, '0751370312'), - (9803, '0340721480'), - (1891, '0399127216'), - (5718, '0843948760'), - (9804, '0385720211'), - (9805, '0671671421'), - (9806, '0961551453'), - (9807, '0671024620'), - (3615, '0553256092'), - (3615, '0553293761'), - (1339, '067102096X'), - (9808, '0874830842'), - (9809, '1573225444'), - (374, '0446311774'), - (3615, '0553561367'), - (9810, '0882669842'), - (9811, '0743206088'), - (9812, '0826307361'), - (1704, '0312982518'), - (6048, '074320218X'), - (145, '0425180050'), - (876, '0425180050'), - (3407, '0425180050'), - (9813, '055347068X'), - (2656, '0394572726'), - (1704, '0553199609'), - (9814, '0962546895'), - (3528, '0553014803'), - (9815, '0679439196'), - (9816, '0140157352'), - (9817, '0140157352'), - (7637, '0140157352'), - (9818, '0691083886'), - (9819, '0030211212'), - (2126, '0312950586'), - (9820, '0380778130'), - (9821, '0806107014'), - (9822, '027522600X'), - (2467, '039913087X'), - (1396, '0679736646'), - (9823, '1904908004'), - (3430, '0091882109'), - (9824, '0743406230'), - (128, '0446609943'), - (9825, '0783884397'), - (2818, '0380017962'), - (889, '0316153990'), - (9826, '0375411275'), - (9827, '0375507760'), - (441, '0152022686'), - (171, '0060956860'), - (9828, '0940642247'), - (9829, '0940642247'), - (9827, '0940642247'), - (9817, '0393316041'), - (9830, '0393316041'), - (9831, '0393316041'), - (9832, '0440223970'), - (1678, '0345441109'), - (1198, '0380725576'), - (760, '3423104740'), - (9833, '3423104740'), - (2360, '3442455235'), - (9834, '3442455235'), - (9835, '0679748253'), - (9836, '3499128381'), - (9837, '3596235316'), - (9838, '3320013041'), - (9839, '3320013041'), - (9840, '3320013041'), - (9841, '343017581X'), - (9842, '343017581X'), - (9843, '0671725017'), - (9844, '0062510533'), - (9845, '1561710059'), - (3440, '0722535724'), - (8767, '0966164202'), - (9846, '1852304960'), - (9847, '0062514083'), - (571, '042518286X'), - (178, '0394712528'), - (1699, '0553250426'), - (178, '0394714342'), - (4198, '0821772287'), - (9848, '0590130048'), - (9849, '0590130048'), - (2043, '0425136612'), - (7945, '0446602698'), - (2274, '0312975112'), - (2977, '0425060055'), - (1214, '0671039903'), - (369, '0373243286'), - (2185, '0425163865'), - (2748, '0553252828'), - (9850, '0812501756'), - (2587, '0446604208'), - (3757, '0345317386'), - (3757, '0345311809'), - (4232, '0425076717'), - (9851, '0440169127'), - (9852, '0706406974'), - (543, '0440117437'), - (9853, '038055111X'), - (9854, '038055111X'), - (9855, '0446363251'), - (9856, '0935312390'), - (9857, '0935312390'), - (3345, '0679785892'), - (4883, '0679785892'), - (1248, '0020360754'), - (9858, '1586420232'), - (5763, '0060974990'), - (4837, '0671797867'), - (3292, '0375701966'), - (7063, '0802136346'), - (9859, '0330282565'), - (9860, '0310480000'), - (9861, '0310480000'), - (6369, '006093056X'), - (9862, '0060099062'), - (9863, '0312310439'), - (9536, '0310501016'), - (1592, '0310501016'), - (9864, '0310501016'), - (3893, '0812535707'), - (9746, '0553274074'), - (2593, '0380754134'), - (5105, '0804112894'), - (9865, '0440526701'), - (3638, '0743243307'), - (9866, '0520223446'), - (5132, '0440223806'), - (9867, '0399146032'), - (351, '0786885238'), - (9868, '0880015233'), - (9869, '0880015233'), - (939, '0380820048'), - (132, '0553288555'), - (9870, '0399149716'), - (9871, '0393049779'), - (9872, '0849929660'), - (9873, '0849929660'), - (9874, '0849929660'), - (9875, '0374524602'), - (9876, '1887166009'), - (9877, '1887166009'), - (9878, '0679420991'), - (9877, '0394574567'), - (9879, '0801865212'), - (9880, '0801865212'), - (9881, '0801865212'), - (9882, '1568651732'), - (3248, '060980877X'), - (9883, '0671748408'), - (607, '0449909557'), - (5131, '0020236107'), - (5170, '0465021182'), - (9884, '0465021182'), - (9885, '0446677507'), - (1164, '055356949X'), - (9886, '0440223032'), - (9887, '1586480316'), - (1084, '0553262386'), - (9888, '0060957271'), - (9889, '0028617274'), - (2906, '0446301582'), - (9890, '1885171080'), - (9891, '1885171080'), - (9892, '1885171080'), - (7798, '0425046605'), - (9893, '0743457838'), - (9894, '1841192538'), - (9895, '1559701501'), - (9896, '0060596325'), - (1732, '0449912116'), - (1732, '0140255893'), - (1732, '0679446400'), - (1732, '0449911632'), - (9897, '0552998478'), - (9898, '0743469763'), - (9899, '0743469763'), - (59, '0553584480'), - (2046, '0802139590'), - (1248, '0684852225'), - (9900, '186207044X'), - (138, '0449908585'), - (5644, '0156029987'), - (9901, '1841955485'), - (6373, '0226743497'), - (9902, '0571179282'), - (9903, '0671032631'), - (9904, '0340278269'), - (9905, '0684837242'), - (4642, '0330328085'), - (9906, '0340750464'), - (9907, '0743203712'), - (951, '0393319296'), - (9908, '0786861495'), - (254, '0679410325'), - (9909, '0671737996'), - (9910, '0671737996'), - (9911, '0609809431'), - (436, '0449206211'), - (9912, '0759629625'), - (9913, '0812521617'), - (534, '055320663X'), - (534, '0671631845'), - (534, '0671742760'), - (534, '0671001809'), - (142, '0670858692'), - (2029, '0740721909'), - (9914, '0553814516'), - (9915, '0441000525'), - (9916, '0872235130'), - (1180, '0441023622'), - (9917, '0441023622'), - (9918, '0759550182'), - (2118, '0786862572'), - (9919, '0140282025'), - (552, '0446531316'), - (6225, '0380708353'), - (2257, '0446356522'), - (2249, '0380007762'), - (1116, '0553578936'), - (9920, '0515124621'), - (626, '0671737600'), - (1754, '0671870963'), - (1795, '0553567756'), - (1490, '0451138775'), - (2577, '0515121398'), - (1092, '0671744607'), - (6225, '038071504X'), - (4988, '0312954212'), - (2168, '0451403673'), - (2181, '051512219X'), - (235, '0440216575'), - (626, '0671525743'), - (2006, '0380757478'), - (743, '0061094595'), - (1092, '067101417X'), - (626, '0671742558'), - (9919, '1551660571'), - (2824, '0440217032'), - (8385, '0671521438'), - (674, '006108459X'), - (1493, '0440216907'), - (1339, '0671744186'), - (1116, '0553575244'), - (9921, '0553582542'), - (9922, '044689270X'), - (897, '0451162919'), - (626, '0671737627'), - (9923, '0763618292'), - (9924, '0345442768'), - (9925, '0345396812'), - (9926, '0375758682'), - (254, '0060518049'), - (1998, '0340733950'), - (3969, '034539643X'), - (9927, '0451198239'), - (131, '0061099368'), - (4381, '0061097829'), - (4296, '0812584341'), - (24, '3453071174'), - (9928, '3453071174'), - (3067, '3404120604'), - (1759, '0140258825'), - (9929, '1550590154'), - (6190, '0394536967'), - (9930, '1895449553'), - (9931, '1565049055'), - (9932, '1565049055'), - (9933, '031207090X'), - (484, '1568650922'), - (9934, '0684810948'), - (4361, '0399134239'), - (9935, '0553053868'), - (5508, '0525939857'), - (867, '0312858817'), - (9936, '0399143122'), - (9937, '068810973X'), - (1998, '0679425136'), - (9938, '0671679473'), - (9939, '0671692976'), - (9940, '1556112289'), - (1283, '0671870602'), - (9941, '1895897653'), - (9942, '1897580193'), - (9943, '0060183039'), - (552, '0688143679'), - (9944, '0805059237'), - (9945, '0773728805'), - (2791, '0671864866'), - (9946, '0763615757'), - (9945, '0763615757'), - (9947, '0789420279'), - (9948, '0789420279'), - (9946, '0789402017'), - (9947, '0789402017'), - (9949, '0789402017'), - (732, '0395898714'), - (9950, '0395898714'), - (9951, '0395898714'), - (439, '1929132123'), - (2931, '0679600213'), - (9952, '0394827406'), - (1519, '0451527046'), - (9953, '0451527046'), - (5466, '0486404277'), - (181, '0486404277'), - (1768, '0517189585'), - (9954, '1859846815'), - (9955, '1859846815'), - (9956, '0261103431'), - (149, '0060932678'), - (1706, '0156949601'), - (3715, '0664243916'), - (223, '0345442822'), - (9957, '0393322815'), - (8129, '0671638688'), - (9958, '0773517634'), - (9959, '1550546163'), - (9960, '1550546163'), - (9961, '0670031372'), - (9962, '0809468700'), - (9963, '0809468549'), - (9964, '0805017224'), - (9965, '0805017224'), - (9966, '0582438349'), - (7480, '0192815970'), - (9967, '0192815970'), - (56, '0393967913'), - (9968, '0393967913'), - (9969, '1563893304'), - (9960, '0670894710'), - (9970, '0451627318'), - (1507, '0836221362'), - (1507, '0836217691'), - (9971, '0806973404'), - (1507, '0836218051'), - (1507, '0836218523'), - (1507, '0836218833'), - (1507, '0836218787'), - (1507, '0836218663'), - (1507, '0836218620'), - (1507, '0836220889'), - (3543, '0374339716'), - (9972, '0374339716'), - (978, '0374339716'), - (9973, '0374339716'), - (574, '0394558235'), - (956, '0517189682'), - (9974, '1570981094'), - (9975, '0140440046'), - (9976, '1853260495'), - (9977, '1853260495'), - (1395, '3426617463'), - (971, '3442357780'), - (9978, '3442357780'), - (9979, '3442133513'), - (9980, '3442133513'), - (9981, '3442726840'), - (9982, '3404604989'), - (7988, '344245204X'), - (7989, '344245204X'), - (936, '3404143744'), - (142, '3404132998'), - (59, '3453171721'), - (936, '3404141849'), - (936, '3404142187'), - (580, '3453177541'), - (936, '3453162900'), - (142, '3453036972'), - (142, '3453088883'), - (142, '3404131606'), - (142, '340413088X'), - (142, '3453021347'), - (142, '3453003128'), - (142, '3404130014'), - (9983, '3404130014'), - (142, '0451190750'), - (3310, '0451190750'), - (3310, '3453002393'), - (142, '3453002393'), - (2937, '0451524276'), - (9984, '0451524276'), - (732, '0395193958'), - (9985, '1874166986'), - (4158, '1874166986'), - (9986, '0671619829'), - (9987, '0704339927'), - (9988, '0843136170'), - (9989, '0816735662'), - (9990, '0771056222'), - (9989, '0771056281'), - (1395, '0679762698'), - (9991, '3546002474'), - (9992, '3546002474'), - (9993, '0517701405'), - (4869, '0517701405'), - (9994, '0679741151'), - (502, '0553210599'), - (1169, '0684873052'), - (4405, '0684873052'), - (9995, '0974218006'), - (9996, '0441783600'), - (5689, '0140244816'), - (873, '0812509250'), - (873, '0812532554'), - (3963, '0061000116'), - (9997, '088240041X'), - (1505, '0140043888'), - (9998, '0425068323'), - (3102, '0451523407'), - (9999, '0451523407'), - (10000, '0425143945'), - (1876, '0553278029'), - (2663, '0515133639'), - (10001, '0671868098'), - (10002, '0380804174'), - (351, '0345417976'), - (85, '0451525469'), - (10003, '0451525469'), - (10004, '0020199309'), - (6696, '0061031151'), - (1230, '0060921714'), - (10005, '0439286034'), - (403, '0393324494'), - (10006, '0393324494'), - (10007, '0393324494'), - (10008, '0393324494'), - (2942, '0679722661'), - (6756, '0673982432'), - (10009, '0312980329'), - (2084, '3499180936'), - (10010, '3499180936'), - (10011, '0451410823'), - (2355, '0394579259'), - (1454, '0385425627'), - (10012, '0312984685'), - (584, '1551667053'), - (543, '0440217466'), - (3325, '0385720726'), - (10013, '0936728779'), - (10012, '0936728779'), - (10012, '0936728787'), - (10014, '0936728485'), - (10015, '0936728485'), - (2182, '0380719223'), - (2365, '0345428811'), - (10016, '3442434130'), - (10017, '3442434130'), - (10015, '3442351588'), - (7834, '3442351588'), - (1767, '3453150147'), - (10018, '3453150147'), - (4307, '3404128397'), - (10019, '3453151704'), - (6649, '3548245897'), - (50, '3548245897'), - (10020, '0898151953'), - (6104, '0140195831'), - (10021, '1568360487'), - (10022, '1568360487'), - (976, '0375401466'), - (10023, '0916890015'), - (10024, '0916890015'), - (10025, '0743202236'), - (843, '0440412226'), - (10026, '038508854X'), - (10027, '1559718641'), - (2212, '0590632744'), - (2714, '0590632744'), - (1430, '0439343518'), - (1429, '0439343518'), - (10028, '0765345706'), - (10029, '0448416484'), - (10030, '0448416484'), - (1176, '0590477625'), - (1176, '0590457268'), - (6708, '0590252372'), - (8518, '0671887351'), - (10031, '0679429948'), - (10032, '1570360421'), - (4398, '0613003225'), - (1176, '0807281530'), - (376, '0786888067'), - (3036, '3453213394'), - (10033, '0375508112'), - (938, '0312254385'), - (369, '0425176169'), - (10034, '0374423296'), - (941, '0374423296'), - (63, '0440223202'), - (10035, '0802839061'), - (5155, '0156029030'), - (10036, '0316666335'), - (10037, '0670852945'), - (10038, '0761133208'), - (1802, '0060915943'), - (10039, '0060915943'), - (10040, '0060915943'), - (10041, '0312300700'), - (10042, '1928556221'), - (10043, '0060172789'), - (10044, '1556705069'), - (10045, '0671441035'), - (767, '2253153982'), - (61, '2253076996'), - (10046, '2253076996'), - (574, '2266127365'), - (1699, '2266128876'), - (10047, '2266128876'), - (10048, '157794304X'), - (10049, '0575072741'), - (10050, '0373264429'), - (10051, '0451205367'), - (10052, '0843953144'), - (10053, '0380712202'), - (3651, '0590431978'), - (10054, '0764551248'), - (10055, '0764551248'), - (10056, '0764550780'), - (9319, '1568848668'), - (9318, '1568848668'), - (7096, '0764550136'), - (10057, '0028613430'), - (10058, '0684870940'), - (10059, '1882606256'), - (10060, '1882606256'), - (10061, '0830732586'), - (10062, '0922729387'), - (4151, '0922729387'), - (10063, '0062505378'), - (4426, '0671829777'), - (10064, '0708837085'), - (658, '0140042598'), - (3662, '0345459164'), - (3662, '0553578790'), - (3662, '0553298046'), - (1726, '3442442508'), - (1921, '3442442508'), - (3079, '0060083263'), - (7485, '0670032808'), - (10065, '1401300901'), - (2913, '0743446291'), - (10066, '0451210816'), - (10065, '0451208552'), - (369, '0399149848'), - (2258, '0066211220'), - (543, '0385335377'), - (10067, '0060393408'), - (10068, '1890957313'), - (10069, '1890957313'), - (10070, '073882688X'), - (10071, '0425183378'), - (10072, '0425183378'), - (10073, '0684194201'), - (10074, '0307060381'), - (6883, '0792218345'), - (10075, '0792218345'), - (5877, '0553292552'), - (10076, '0786807083'), - (59, '0425119920'), - (10077, '0805002707'), - (1876, '0553566040'), - (867, '0451456521'), - (5273, '0451456521'), - (10078, '0451456521'), - (369, '1551660202'), - (10079, '0373764170'), - (10078, '0373763794'), - (10080, '0373764243'), - (10081, '0821746286'), - (1097, '0743431030'), - (10082, '067187702X'), - (10083, '0812518624'), - (8192, '0451192192'), - (2513, '0886774209'), - (5589, '0886774209'), - (10084, '0671045423'), - (3314, '0449217124'), - (2011, '042512519X'), - (2011, '0425104273'), - (3108, '0307128539'), - (10085, '0307128539'), - (5677, '006020186X'), - (10086, '006020186X'), - (10087, '0823405796'), - (10088, '0823405796'), - (10089, '0823405796'), - (749, '225314696X'), - (1724, '2070567842'), - (7128, '2070567842'), - (10090, '2070567842'), - (1784, '0446358592'), - (129, '0446600466'), - (81, '0425098834'), - (930, '0345409051'), - (129, '0446600474'), - (1277, '0140272100'), - (1784, '0446364800'), - (49, '0679450408'), - (1246, '0613028155'), - (10091, '0613028155'), - (945, '034543014X'), - (268, '1563895730'), - (10092, '1563895730'), - (268, '1563890356'), - (10093, '1563890356'), - (1063, '0345294688'), - (1295, '0345294688'), - (5012, '1566197589'), - (1776, '0871131811'), - (6508, '0375713549'), - (256, '0061020699'), - (256, '086140324X'), - (268, '156389226X'), - (10092, '156389226X'), - (288, '156389226X'), - (268, '1401200893'), - (7833, '0373650132'), - (2270, '0671786113'), - (2270, '0373822456'), - (373, '0061092819'), - (10094, '0373224540'), - (7596, '0373825617'), - (4313, '0373707711'), - (5205, '0373708130'), - (10095, '0373241739'), - (10096, '037326240X'), - (10097, '0373825692'), - (3468, '0373166613'), - (266, '0312869592'), - (274, '0140328734'), - (10098, '0140328734'), - (268, '1563892251'), - (297, '1563892251'), - (268, '1563892464'), - (4698, '1563892464'), - (268, '038097827X'), - (3581, '038097827X'), - (266, '0312874014'), - (266, '0312873972'), - (268, '1565041992'), - (4698, '1565041992'), - (284, '014143967X'), - (4032, '014143967X'), - (10099, '038070174X'), - (2286, '0804108552'), - (1828, '0373708149'), - (10100, '0373242441'), - (142, '0451150244'), - (10098, '0385134681'), - (906, '0553350072'), - (268, '0380973634'), - (266, '0765300222'), - (268, '0441008615'), - (256, '0441008615'), - (2680, '0679405828'), - (1318, '0140367470'), - (7306, '0140367470'), - (10101, '0140367470'), - (574, '0345434803'), - (5206, '037370951X'), - (10102, '0373072430'), - (743, '0671040480'), - (10103, '0449005550'), - (4141, '1551667894'), - (584, '0373242077'), - (5104, '0425177009'), - (3115, '0373834543'), - (5214, '0373834543'), - (5214, '0373707290'), - (1832, '0373226071'), - (2251, '0451201914'), - (10104, '0373822405'), - (2664, '0373063040'), - (971, '155166500X'), - (10105, '0060502320'), - (10106, '0821771949'), - (10107, '0304345350'), - (269, '0373835558'), - (10108, '0812542819'), - (8482, '0590402129'), - (1733, '0671465376'), - (274, '0141301066'), - (906, '0515095524'), - (312, '0451628276'), - (10109, '0451628276'), - (10110, '0451628276'), - (10111, '0451628276'), - (4137, '0449226182'), - (128, '1551660237'), - (1024, '059043893X'), - (532, '0451408845'), - (2748, '0451088816'), - (2181, '0515090379'), - (10112, '0373242034'), - (10113, '0373707266'), - (269, '0373835493'), - (269, '0373835590'), - (269, '0373835582'), - (269, '0373834454'), - (269, '0373834446'), - (2248, '0380810492'), - (2181, '051510521X'), - (4050, '0895774011'), - (10114, '0590440675'), - (4050, '0895775522'), - (10115, '0801957729'), - (10116, '1931081727'), - (1155, '1931081727'), - (1366, '0808520695'), - (4730, '0449242765'), - (484, '0446329142'), - (484, '0446354678'), - (484, '0446341932'), - (268, '0060934700'), - (269, '0373834489'), - (10117, '0679409033'), - (568, '0066238501'), - (833, '0066238501'), - (369, '0553265741'), - (268, '0380977281'), - (364, '014100018X'), - (10118, '1556520743'), - (10119, '1556520743'), - (4202, '088396452X'), - (10120, '1567310877'), - (1891, '0441172695'), - (266, '0312865104'), - (10121, '088001380X'), - (10122, '0965834581'), - (269, '0373834462'), - (10123, '0373834462'), - (7570, '0345357019'), - (10124, '0679433228'), - (1987, '0446529540'), - (10125, '0681415207'), - (7652, '1861870019'), - (10126, '0811826848'), - (10127, '0375756469'), - (3826, '0375756469'), - (1450, '067164405X'), - (814, '0575061596'), - (98, '0340718153'), - (10128, '0380817845'), - (412, '0553560468'), - (10129, '0312868332'), - (484, '0446356832'), - (188, '0553263633'), - (5763, '0060976977'), - (188, '0553280325'), - (7530, '0373810431'), - (3469, '0373810482'), - (5244, '0373033605'), - (10130, '0373162669'), - (1833, '0373226063'), - (10131, '0373226063'), - (10132, '0373226063'), - (1196, '0446363499'), - (10133, '1583140379'), - (10134, '0373810601'), - (8860, '037307848X'), - (10135, '0373075502'), - (10136, '0373075502'), - (5210, '0373707010'), - (6703, '1551667959'), - (10137, '0373031106'), - (10138, '0373031106'), - (10139, '0373030959'), - (1196, '0671676245'), - (3906, '0373033923'), - (10140, '051788139X'), - (3327, '0141310685'), - (7532, '0373226276'), - (4392, '0373243952'), - (10141, '0375503838'), - (357, '0375503838'), - (4577, '0373243944'), - (5212, '0373709889'), - (10142, '0373709625'), - (7826, '0373600739'), - (10143, '0373243979'), - (92, '0345342445'), - (92, '0345350596'), - (3803, '0375503269'), - (3097, '0689711522'), - (3097, '0689710895'), - (10144, '0689710895'), - (8723, '0375815147'), - (2675, '0375815147'), - (624, '1557733856'), - (624, '0553294849'), - (624, '0553297341'), - (10145, '0898153778'), - (10146, '0880117168'), - (10147, '0880117168'), - (10148, '0880117168'), - (5608, '0590462237'), - (5609, '0590462237'), - (7426, '0307115208'), - (10149, '0743260244'), - (939, '0425115844'), - (624, '0553580523'), - (10150, '0915368587'), - (10151, '0915368587'), - (10152, '0915368587'), - (10153, '0915368587'), - (8723, '0679833692'), - (8723, '0394825985'), - (9158, '0759228086'), - (9158, '067144378X'), - (873, '0812502124'), - (873, '0812533593'), - (873, '0812533534'), - (5498, '0440236061'), - (3374, '0743444523'), - (7277, '0743474325'), - (2626, '067102406X'), - (619, '0061094560'), - (1883, '0451210891'), - (10154, '0345447409'), - (160, '0553571842'), - (10155, '0936034025'), - (160, '0553583441'), - (5100, '0425168948'), - (2603, '0786817070'), - (89, '0140230165'), - (10156, '0553258176'), - (160, '0553575538'), - (624, '1557734909'), - (1628, '034546074X'), - (10157, '0152325808'), - (10158, '0439163099'), - (10159, '0449000265'), - (7426, '0307119424'), - (7728, '0064400026'), - (258, '0064400026'), - (10160, '0307117375'), - (10161, '0307117375'), - (10162, '0307128865'), - (10163, '0307128865'), - (10164, '0307128865'), - (10165, '0816738556'), - (10166, '0816738556'), - (10167, '0874065925'), - (1768, '0440403553'), - (2340, '0439080967'), - (584, '0821769340'), - (1428, '0671885634'), - (2239, '0590442988'), - (909, '0553157124'), - (2593, '0380724332'), - (1432, '0684196387'), - (3749, '3596237262'), - (10168, '0140430091'), - (10169, '0140430091'), - (1305, '0140620249'), - (10170, '3499179806'), - (10171, '3499179806'), - (10172, '3453188519'), - (10173, '3453188519'), - (10174, '0140128107'), - (578, '0060164662'), - (24, '0385470819'), - (780, '0316779423'), - (10175, '0679419624'), - (149, '0375400699'), - (664, '0151000719'), - (773, '1841950521'), - (264, '0140366857'), - (4690, '0140366857'), - (10176, '2909051196'), - (10177, '2876916193'), - (3857, '2253170127'), - (60, '2253170372'), - (60, '2253170569'), - (10178, '2253001457'), - (749, '2253140872'), - (10179, '2253140872'), - (6967, '2070393577'), - (10180, '2070393577'), - (10181, '2070375609'), - (10182, '2070375722'), - (10183, '2070375722'), - (94, '2266002996'), - (10184, '2070322068'), - (732, '2253049417'), - (10185, '2253049417'), - (10186, '2253000868'), - (10177, '2253006866'), - (682, '2253002895'), - (10187, '2253051381'), - (10188, '2253037796'), - (10189, '2857043821'), - (151, '0061092606'), - (63, '0752804510'), - (4021, '0373270089'), - (10190, '0373123205'), - (10191, '0373037481'), - (10192, '0373118333'), - (10193, '0373196725'), - (3468, '0373613601'), - (10192, '0373196679'), - (1388, '0373123167'), - (10194, '0373036582'), - (10195, '0399206868'), - (920, '0060085444'), - (2165, '0373122829'), - (10196, '037316971X'), - (2165, '0373123248'), - (2233, '0590431250'), - (10197, '0373037449'), - (14, '0821766066'), - (2287, '0892964049'), - (732, '0618260307'), - (381, '0849995299'), - (285, '0553258656'), - (10198, '0553258656'), - (1159, '067081976X'), - (10199, '0020435207'), - (10200, '0020435207'), - (10201, '0151829756'), - (1043, '0060971819'), - (10202, '096444724X'), - (3770, '0140440399'), - (10203, '0140440399'), - (10202, '0140440399'), - (10204, '0140440399'), - (10205, '0871564599'), - (94, '0553247921'), - (906, '0671415948'), - (892, '0440215234'), - (10206, '0553290207'), - (10207, '0140149937'), - (10208, '0140444750'), - (10209, '0140444750'), - (7977, '0140017151'), - (10210, '0062740083'), - (412, '0385491085'), - (1600, '0670869902'), - (10211, '0345334930'), - (4414, '0553255851'), - (10212, '1904301088'), - (1699, '0517556278'), - (10213, '0517556278'), - (502, '0460876171'), - (10214, '0460876171'), - (5500, '0064401847'), - (7630, '0064401847'), - (10215, '0340188022'), - (1010, '0385315279'), - (10216, '051509465X'), - (3086, '0684174685'), - (414, '0553569074'), - (3654, '1571740252'), - (10217, '0425082202'), - (906, '039607412X'), - (867, '0671641778'), - (1092, '0671689711'), - (1245, '0440514428'), - (3096, '0449230279'), - (10218, '0440401224'), - (2572, '0553206575'), - (2331, '0553211013'), - (1876, '0553561278'), - (2340, '0449700712'), - (7761, '0440215978'), - (8027, '0064402967'), - (10219, '0064402967'), - (10220, '0553272586'), - (10221, '0553272586'), - (4118, '0375507507'), - (10222, '0898700744'), - (10223, '0898700744'), - (10224, '1576832899'), - (268, '0380817705'), - (10225, '0380817705'), - (8559, '0380817705'), - (10226, '0380817705'), - (10227, '0380817705'), - (628, '0060907894'), - (82, '014018371X'), - (10228, '014018371X'), - (10229, '014018371X'), - (10230, '0785107649'), - (10231, '0785107649'), - (2458, '1853261750'), - (1318, '0451197003'), - (1133, '0551031085'), - (142, '0451139712'), - (10232, '0553234811'), - (9705, '0394312066'), - (10233, '0394312066'), - (10234, '0226726770'), - (5926, '0880384514'), - (10235, '0671667815'), - (10236, '0671667815'), - (10237, '0553052268'), - (1041, '0553268945'), - (1042, '0553268945'), - (2615, '0345334515'), - (938, '0312140940'), - (10238, '0613117905'), - (10239, '0613117905'), - (10240, '0862648092'), - (10241, '0862648092'), - (10242, '074603010X'), - (7597, '074603010X'), - (10243, '0142300128'), - (10244, '0142300128'), - (10245, '0750003049'), - (10244, '0750003049'), - (10246, '0749720182'), - (10247, '0006642004'), - (10248, '0006642004'), - (10249, '0006643094'), - (439, '0006643094'), - (1584, '0689853491'), - (10250, '0689853491'), - (9945, '0744530717'), - (3117, '0679883878'), - (5016, '058242092X'), - (10251, '0749725028'), - (10245, '0434971383'), - (10252, '0805067868'), - (1412, '0811828379'), - (10253, '0811828379'), - (10254, '0140563733'), - (10255, '2253009164'), - (10256, '2070412571'), - (543, '0440224837'), - (10257, '0812520424'), - (10258, '0451198247'), - (10259, '2070362361'), - (10260, '2253152064'), - (10261, '0375726322'), - (3608, '2290314110'), - (1405, '2723407381'), - (1406, '2723407381'), - (10262, '2723407403'), - (10263, '2723407403'), - (10261, '2723407411'), - (10262, '2723407411'), - (274, '2070513726'), - (275, '2070513726'), - (274, '2070544281'), - (275, '2070544281'), - (10264, '2070544281'), - (3535, '2264027681'), - (410, '2266120158'), - (7604, '0723206015'), - (10265, '0843110589'), - (859, '014143984X'), - (10266, '014143984X'), - (10265, '014143984X'), - (10267, '014143984X'), - (10268, '2290307831'), - (6517, '0671619055'), - (2898, '2266022504'), - (10269, '2020291541'), - (10270, '2707318094'), - (10271, '2871294798'), - (10270, '287129478X'), - (721, '226612269X'), - (283, '2070375161'), - (10272, '0140274294'), - (1464, '2266085778'), - (10273, '2266085778'), - (1418, '2253001295'), - (10274, '273811167X'), - (1396, '2264028815'), - (10275, '2264028815'), - (256, '0752853694'), - (10276, '0971116288'), - (95, '0679416781'), - (10277, '0451528484'), - (4460, '0451528484'), - (10278, '156476303X'), - (9997, '2207300838'), - (10279, '2207300838'), - (815, '0380603764'), - (10280, '0345450515'), - (10281, '0671640003'), - (4486, '033390785X'), - (10282, '033390785X'), - (4912, '0156006332'), - (10283, '0451526988'), - (415, '0606006133'), - (10284, '0375725296'), - (3674, '0312420366'), - (1428, '0590673211'), - (10285, '1875657320'), - (10286, '0091832861'), - (1305, '1592247865'), - (10287, '0684852705'), - (10288, '0752817051'), - (168, '0140176616'), - (10289, '0330291610'), - (82, '1853260657'), - (10290, '0746020120'), - (10291, '0746020120'), - (10292, '0746020120'), - (10293, '0954395913'), - (2945, '0446691216'), - (10294, '1862071624'), - (10295, '1862071624'), - (10296, '0385336403'), - (3265, '1400075637'), - (3266, '1400075637'), - (3981, '1860491235'), - (10297, '044652719X'), - (10298, '0881104086'), - (10299, '075350507X'), - (10300, '2253152188'), - (6007, '0345439481'), - (10301, '3471794484'), - (7673, '0060000805'), - (7987, '0142003581'), - (10302, '156849663X'), - (10303, '1400060648'), - (10304, '014100374X'), - (10305, '0812541979'), - (95, '0679777377'), - (10306, '1585672939'), - (10307, '0007119860'), - (10308, '0061030015'), - (7314, '0531301427'), - (10309, '0140185844'), - (3473, '0743234413'), - (3473, '0743228480'), - (4435, '0743418735'), - (4435, '0671776134'), - (10310, '0965881261'), - (10311, '0140104569'), - (10312, '0330391763'), - (10313, '0330483013'), - (10314, '0312421184'), - (10315, '0747265097'), - (138, '0618446877'), - (723, '0679725229'), - (365, '0385418485'), - (10316, '0385319452'), - (1209, '0156001314'), - (1744, '0156001314'), - (1697, '1573229865'), - (10317, '0151004137'), - (10318, '1841955469'), - (8087, '0316353299'), - (10319, '1869503171'), - (1234, '0767903862'), - (1514, '0060931671'), - (10320, '0060730552'), - (323, '009179319X'), - (6091, '0743444329'), - (10321, '0743444329'), - (1326, '0812563581'), - (10322, '1558850945'), - (14, '1575664550'), - (10323, '0688145736'), - (10324, '1560796626'), - (61, '0684191415'), - (10325, '0140092501'), - (237, '0553265520'), - (1211, '074345300X'), - (10326, '1932270329'), - (1615, '0425191362'), - (1335, '0451401492'), - (2011, '0425042715'), - (4477, '0312304250'), - (10327, '0385508603'), - (142, '0399133143'), - (10328, '0570060265'), - (1001, '1558007725'), - (10329, '1558007725'), - (898, '0671882198'), - (10330, '1893910245'), - (10331, '1893910245'), - (145, '0425133516'), - (1282, '0553583298'), - (10332, '0375505547'), - (10333, '0375505547'), - (1245, '0899199089'), - (5310, '0899199089'), - (10334, '0151881006'), - (10335, '0425174360'), - (10336, '0802713815'), - (10337, '0875964125'), - (10338, '0875964125'), - (5181, '0385325126'), - (5182, '0385325126'), - (10339, '0486408760'), - (10002, '039588408X'), - (10340, '1569021074'), - (10341, '044801582X'), - (10342, '044801582X'), - (10343, '0844239461'), - (414, '0679439242'), - (10344, '0671017586'), - (10345, '0385140932'), - (10346, '0646286927'), - (3572, '0646286927'), - (7499, '0385490615'), - (10347, '0887482570'), - (10348, '0800705246'), - (8639, '0929587227'), - (1282, '0684855631'), - (10349, '0934971609'), - (10350, '0345382544'), - (4820, '0679775471'), - (308, '0156838389'), - (10351, '0156838389'), - (9539, '0156838389'), - (732, '0618129030'), - (10352, '0451162463'), - (7214, '0060536705'), - (4313, '0373708300'), - (621, '0373079621'), - (10353, '0373196636'), - (128, '0553562746'), - (3178, '0373706901'), - (10354, '0373871864'), - (5213, '0373706987'), - (9403, '0373707959'), - (5214, '037370836X'), - (10355, '037324522X'), - (10356, '037370822X'), - (10357, '0373259840'), - (919, '0373708084'), - (10358, '037330157X'), - (10359, '0061082945'), - (3643, '0771086776'), - (916, '0849938635'), - (10360, '0373706200'), - (3907, '0373707061'), - (4392, '1551666030'), - (554, '0553107232'), - (2256, '0778320138'), - (373, '0743431367'), - (10361, '0689856644'), - (543, '0440168724'), - (128, '0446527130'), - (1532, '0061096024'), - (7583, '0345289420'), - (5546, '0553576666'), - (9665, '0380787865'), - (10362, '0671774514'), - (2011, '0425060772'), - (10363, '0515129739'), - (10364, '0843948698'), - (10365, '0553584898'), - (6477, '0505524236'), - (10366, '0515130419'), - (10367, '0843948078'), - (10368, '0373192398'), - (10369, '0553267159'), - (10370, '0671629972'), - (10371, '0380777304'), - (10372, '0380777304'), - (1214, '0671039938'), - (2181, '0515118230'), - (2249, '0380806304'), - (2181, '0515101222'), - (3750, '0553285947'), - (1244, '0345447867'), - (1832, '0373512112'), - (7211, '037328800X'), - (10373, '0373700474'), - (10374, '0451207963'), - (1196, '0743467191'), - (532, '038075620X'), - (10375, '0373703023'), - (3750, '0553574078'), - (132, '055329945X'), - (10376, '0373511876'), - (532, '0515107662'), - (10377, '0380820056'), - (10378, '0802705499'), - (10379, '050552435X'), - (9526, '0373224818'), - (3241, '0061083275'), - (10380, '0373195036'), - (10381, '0373121709'), - (3911, '0505524333'), - (8446, '0373036485'), - (7450, '0373121601'), - (10382, '0373168438'), - (10383, '0373121857'), - (10384, '0505522969'), - (10385, '0828003882'), - (8866, '155166450X'), - (1754, '0671737821'), - (10386, '0451205189'), - (3339, '0821747703'), - (63, '0440213290'), - (10387, '0373226934'), - (6495, '038076735X'), - (10388, '0821768107'), - (9920, '0441791212'), - (7428, '0373707169'), - (10389, '0446346438'), - (10390, '0373226950'), - (2944, '0821740121'), - (8385, '0671521446'), - (10391, '0373169299'), - (1112, '067179793X'), - (2964, '0821768441'), - (2513, '0886777755'), - (10392, '0886777755'), - (10393, '0440225868'), - (7530, '0373222467'), - (3536, '0762406984'), - (7191, '0762406984'), - (10394, '0717802418'), - (10395, '0717802418'), - (10396, '477001970X'), - (10397, '477001970X'), - (10398, '1882180887'), - (574, '0345409663'), - (10399, '1878257528'), - (10400, '0865714487'), - (5020, '0865714487'), - (7548, '0679724494'), - (10401, '0805059970'), - (10402, '0805059970'), - (10403, '0805059970'), - (10404, '0805059970'), - (10405, '0071360166'), - (10406, '0300096860'), - (3211, '0300096860'), - (10407, '039472903X'), - (1171, '0851706517'), - (8293, '0670031518'), - (10408, '0786864230'), - (10409, '1852424214'), - (10410, '0465005225'), - (142, '0425104338'), - (142, '0451191935'), - (10411, '0671792288'), - (10412, '0787955876'), - (651, '0787955876'), - (10413, '0743242602'), - (10414, '0520204514'), - (1209, '0520204514'), - (10415, '0205318088'), - (10416, '0205318088'), - (1272, '014118485X'), - (6652, '1570623449'), - (10417, '0446672483'), - (10418, '0446672483'), - (10419, '1558681752'), - (10420, '0394743644'), - (10421, '0394743644'), - (1234, '0380713810'), - (10422, '067162248X'), - (10423, '0767913973'), - (2881, '0684867486'), - (10424, '1864502118'), - (10425, '1587410133'), - (10426, '0968246907'), - (10427, '0968246907'), - (10428, '0968246907'), - (10429, '0316441791'), - (6464, '0316441791'), - (10430, '0316441791'), - (10431, '0140125086'), - (10432, '0140125086'), - (10433, '0140260234'), - (10431, '0140260234'), - (10434, '0415222818'), - (10435, '1904048145'), - (10436, '1573922110'), - (10437, '0300087152'), - (1858, '0679756450'), - (10438, '0340802995'), - (10439, '0140140328'), - (814, '1573228583'), - (950, '0330334360'), - (8983, '0140286780'), - (10440, '0803959907'), - (10441, '0803959907'), - (4232, '0679734031'), - (10442, '0761123695'), - (220, '0060997028'), - (10443, '0060997028'), - (220, '0060997001'), - (10444, '0618219196'), - (10431, '0140289216'), - (10445, '0415167914'), - (10446, '0140135154'), - (85, '0553211684'), - (10447, '0553211684'), - (5466, '0375757325'), - (10448, '0684866005'), - (1804, '0684866005'), - (5012, '0451525914'), - (10449, '0451525914'), - (6024, '185788292X'), - (10450, '0345362322'), - (10451, '0874779472'), - (10452, '0393324869'), - (951, '0385722192'), - (142, '0743455967'), - (10453, '0679758941'), - (8639, '0151104212'), - (3419, '0679430946'), - (10454, '0688164080'), - (10455, '1565840968'), - (5763, '1565840968'), - (10456, '0385094027'), - (8525, '157322829X'), - (10457, '0130957011'), - (10458, '0130957011'), - (10459, '1840463503'), - (9984, '1840463503'), - (10460, '1840463503'), - (155, '0435240609'), - (10461, '0435240609'), - (10462, '0840339402'), - (10463, '0879804211'), - (10464, '0130647608'), - (10465, '0130647608'), - (7103, '0060931361'), - (10466, '0582037670'), - (10467, '0531110397'), - (10468, '0345333152'), - (10469, '0194315193'), - (10470, '0194315193'), - (10471, '0024031216'), - (10472, '0024031216'), - (9675, '0140137793'), - (10473, '0953309819'), - (10474, '1555831753'), - (199, '0062513982'), - (199, '006251279X'), - (10475, '0345453557'), - (10476, '093077356X'), - (4853, '0060191988'), - (10419, '068483992X'), - (10477, '0425133656'), - (10478, '0874221501'), - (10479, '0451525353'), - (10480, '0451525353'), - (10481, '1563054671'), - (10474, '0345453549'), - (10482, '1580420079'), - (10483, '0713440228'), - (1075, '0441004997'), - (1075, '0698119509'), - (10484, '0689821417'), - (10485, '0689821417'), - (10486, '0689821417'), - (10487, '067086935X'), - (10488, '0816743924'), - (10489, '0816743924'), - (873, '0765341174'), - (10490, '030768993X'), - (3172, '0679434054'), - (10491, '0679434054'), - (2249, '1570960305'), - (606, '0886777208'), - (1756, '0886777208'), - (606, '0886777550'), - (606, '0886777127'), - (606, '0886776619'), - (606, '0886776120'), - (606, '0886775639'), - (606, '0886774632'), - (6444, '0886775043'), - (9378, '0886775043'), - (606, '0886774144'), - (606, '0886774543'), - (606, '0886777739'), - (606, '0886774004'), - (606, '0886773776'), - (9985, '0671701843'), - (873, '0812535219'), - (873, '0312921098'), - (873, '0812533313'), - (873, '0812533577'), - (873, '0812500865'), - (873, '0812521358'), - (873, '0812523679'), - (873, '0812523040'), - (873, '0812533658'), - (873, '0812516850'), - (10492, '0669271896'), - (10493, '0669271896'), - (873, '0812532961'), - (873, '0812532988'), - (873, '0812532619'), - (873, '0812532635'), - (3302, '0886776589'), - (3302, '0886777151'), - (3302, '0886778603'), - (3302, '0886775493'), - (3302, '0886775205'), - (3302, '0886775035'), - (867, '0380775123'), - (4730, '0380775123'), - (606, '0380775123'), - (6773, '0061020427'), - (6773, '0061020419'), - (6773, '0061059773'), - (6773, '0061056294'), - (2941, '0451458028'), - (2941, '0451459423'), - (2941, '0451458990'), - (2941, '0451458508'), - (10494, '0746030517'), - (10495, '0746030517'), - (10496, '0874936225'), - (10497, '0965987302'), - (10498, '0965987302'), - (10499, '0688161162'), - (10500, '0875962432'), - (10501, '0875962432'), - (10502, '0201632721'), - (6798, '0553379534'), - (10503, '0894716174'), - (10504, '1556432151'), - (10505, '1891400495'), - (10506, '0671025554'), - (10507, '0316542377'), - (10508, '0912500867'), - (10509, '1558506438'), - (10510, '1558506438'), - (4919, '0316779059'), - (4918, '0316779059'), - (10511, '0764550039'), - (10512, '0192800493'), - (10513, '0192800493'), - (274, '0375815260'), - (275, '0375815260'), - (10514, '0882710583'), - (10515, '0882710583'), - (10516, '0882710583'), - (994, '0060256737'), - (994, '0060248025'), - (10517, '0880887575'), - (8396, '0786880007'), - (10518, '0793800153'), - (10519, '0595006035'), - (10518, '0595093019'), - (10520, '0761107363'), - (10521, '0761107363'), - (369, '0515136379'), - (369, '0515136530'), - (1426, '0553288202'), - (5538, '0812545990'), - (4920, '0671524313'), - (369, '051513628X'), - (10522, '0912500522'), - (10523, '0912500549'), - (2941, '0451529014'), - (3302, '0886777593'), - (3302, '0886777011'), - (543, '0385294638'), - (5437, '0486275728'), - (10524, '156402976X'), - (10525, '156402976X'), - (7559, '0895779129'), - (10526, '0060950536'), - (10527, '0895295458'), - (10528, '0895295458'), - (10529, '0688117619'), - (10530, '0671027441'), - (2239, '0590448293'), - (2241, '0590448285'), - (5608, '059046597X'), - (5609, '059046597X'), - (5608, '0590455788'), - (5609, '0590455788'), - (10531, '0590455788'), - (2179, '0439222303'), - (10532, '0439222303'), - (10533, '0786710330'), - (4696, '0786814241'), - (3090, '0439176824'), - (2237, '0590956159'), - (964, '0590010891'), - (7886, '0590010891'), - (10534, '0142302163'), - (5406, '038071907X'), - (10535, '1565111575'), - (10536, '1565111575'), - (4593, '1567187293'), - (10537, '1561008931'), - (10536, '1561008931'), - (10538, '0671038931'), - (10539, '0671038931'), - (10540, '1570420564'), - (10541, '1570420564'), - (10129, '0373691653'), - (10542, '0448426862'), - (141, '0448426862'), - (10543, '0448426862'), - (2241, '059047054X'), - (10544, '0881848603'), - (10545, '0806512318'), - (10546, '0806512318'), - (14, '0806512318'), - (10547, '0394563131'), - (10546, '0394553284'), - (10548, '0688047211'), - (5052, '0151879834'), - (1065, '0345351738'), - (142, '0451125452'), - (142, '0451149513'), - (2268, '037328960X'), - (2080, '093317490X'), - (10549, '0764550349'), - (10550, '0764550349'), - (10551, '0373638167'), - (4520, '0441693237'), - (4520, '1572970944'), - (4520, '0441000762'), - (10552, '1559029897'), - (2568, '0679805265'), - (10553, '0394843509'), - (6237, '0373765649'), - (10554, '0373642970'), - (10553, '0373642962'), - (10555, '0373642954'), - (10554, '0373642946'), - (10554, '0373642938'), - (10554, '0373642911'), - (10554, '0373642903'), - (10554, '0373642857'), - (10554, '0373642849'), - (10554, '0373642822'), - (10554, '037364292X'), - (10554, '0373614918'), - (3317, '0373632452'), - (10556, '0373632452'), - (10557, '0440219035'), - (10554, '0373619472'), - (10554, '0373619499'), - (10554, '0373619502'), - (10554, '0373614896'), - (10550, '0373638078'), - (10558, '0803298145'), - (10559, '0803298145'), - (806, '0803298145'), - (1397, '0743486625'), - (2223, '034528710X'), - (10560, '0671803530'), - (10554, '037361490X'), - (597, '0590880748'), - (2237, '0590879979'), - (2237, '0590880780'), - (832, '0590880780'), - (10552, '0679811761'), - (10561, '0440920221'), - (10562, '0698119916'), - (2182, '0441007732'), - (10563, '097089726X'), - (10564, '097089726X'), - (10565, '037379116X'), - (10566, '0060506989'), - (7499, '0451191579'), - (3081, '0375706933'), - (10567, '0345423038'), - (3662, '0553073273'), - (10568, '038513097X'), - (10546, '0394531094'), - (10569, '0394531094'), - (10570, '0786807555'), - (10554, '0373614845'), - (128, '0553290851'), - (3996, '0886774829'), - (3996, '0886774500'), - (3996, '0886775426'), - (3996, '0886775957'), - (1298, '0671693816'), - (10571, '0785276890'), - (2946, '0743445813'), - (10572, '0743445813'), - (6050, '0843949856'), - (2824, '0440222109'), - (10573, '1565928431'), - (10574, '1931836876'), - (10575, '1931836876'), - (10576, '1931836876'), - (10577, '1931836876'), - (10578, '1931836876'), - (10579, '096265342X'), - (10580, '096265342X'), - (10581, '0596000588'), - (10582, '0596000588'), - (10583, '1565927206'), - (10584, '1565927206'), - (10585, '1565927206'), - (10586, '1565926994'), - (10587, '1565926994'), - (10588, '0486211339'), - (10589, '0486211339'), - (10590, '0914918346'), - (10591, '0835605728'), - (10592, '0072131780'), - (10593, '042504842X'), - (10594, '0441760066'), - (10595, '0553268546'), - (10594, '0671831593'), - (3195, '0445201223'), - (3195, '0446912689'), - (8743, '0671559060'), - (122, '0671019813'), - (10596, '0671019813'), - (10597, '0061097195'), - (2504, '0441653162'), - (10598, '0441653162'), - (10599, '0671440683'), - (10600, '0441775578'), - (2372, '0671002570'), - (2371, '0671002570'), - (10601, '0671002570'), - (4237, '0671656597'), - (1397, '0380896354'), - (598, '0441091660'), - (10602, '0671698508'), - (5855, '0451132319'), - (3379, '0345370732'), - (1302, '0812525752'), - (9239, '0425074498'), - (732, '0345296052'), - (2367, '0523485263'), - (10603, '0879977051'), - (10604, '0446890359'), - (10605, '0441896448'), - (577, '0380699575'), - (10606, '0942024001'), - (10607, '052547014X'), - (10608, '0892131144'), - (10609, '067183276X'), - (1302, '0812533496'), - (732, '0345296044'), - (10610, '0671658131'), - (3367, '0671658131'), - (1397, '0441102573'), - (1704, '0553287737'), - (606, '0812521048'), - (433, '0345368959'), - (433, '0345285980'), - (9258, '0553248456'), - (142, '0451161343'), - (3310, '0451161343'), - (867, '0879977620'), - (867, '0879979623'), - (9801, '0879979623'), - (867, '044106857X'), - (867, '0879978066'), - (867, '0345315642'), - (867, '0886771854'), - (10611, '0886771854'), - (10612, '0886771854'), - (784, '0451454081'), - (867, '0886770963'), - (867, '0886774519'), - (867, '0879978155'), - (10613, '0879978155'), - (1065, '0345303067'), - (867, '0671448757'), - (867, '0441892558'), - (867, '0886770750'), - (867, '0812500067'), - (867, '0879978570'), - (10614, '0671440349'), - (7200, '0671833073'), - (7200, '0671633295'), - (973, '0553291165'), - (2368, '0671632671'), - (2368, '0671618733'), - (867, '0441159354'), - (10615, '0553231251'), - (867, '0345288300'), - (867, '0671448773'), - (867, '0879979283'), - (867, '0886770416'), - (10616, '0425058646'), - (10608, '0671465414'), - (2292, '0671794264'), - (873, '044018178X'), - (9343, '0441138764'), - (873, '0441918107'), - (2694, '0061099643'), - (784, '0451452941'), - (784, '0451452305'), - (784, '0451454499'), - (10617, '0671832972'), - (10618, '0671836323'), - (9343, '0441065848'), - (873, '0425058190'), - (10619, '0786014652'), - (5352, '0743424387'), - (4567, '0800758056'), - (117, '047121888X'), - (10620, '1588720284'), - (1628, '0345460693'), - (9409, '0446613681'), - (606, '0886773199'), - (1094, '0553574582'), - (606, '0886772222'), - (606, '0886772559'), - (606, '0886771897'), - (606, '0886772850'), - (10621, '0671578510'), - (10622, '0786006579'), - (10623, '0061098353'), - (3998, '0756400147'), - (436, '0449007383'), - (10624, '0802773524'), - (10625, '0425170470'), - (1658, '0878331824'), - (1659, '0878331824'), - (10525, '0060937645'), - (10626, '0789488914'), - (10627, '0020960808'), - (10628, '0449703274'), - (8543, '0380542625'), - (4486, '0312983220'), - (10629, '0515135747'), - (10630, '0071414975'), - (10629, '0071383832'), - (4362, '0071383832'), - (10631, '1855858320'), - (10632, '1400047064'), - (10633, '1570671273'), - (10634, '1570671273'), - (10635, '0062517791'), - (10636, '0062517821'), - (6427, '089529768X'), - (10629, '0071407944'), - (10637, '0446521612'), - (10638, '1562059513'), - (10639, '1562059513'), - (10640, '0441116868'), - (10641, '0425052990'), - (580, '0425062856'), - (10000, '044921852X'), - (10642, '0758201931'), - (10643, '0340182563'), - (10644, '0385018681'), - (10645, '0446936383'), - (10646, '0460016989'), - (10647, '0932870171'), - (10648, '0932870171'), - (10649, '0394730526'), - (10650, '0133143023'), - (10651, '0671795988'), - (10652, '0801615194'), - (10653, '0801615194'), - (10654, '0139634479'), - (10655, '0679504885'), - (7499, '0882293613'), - (10656, '0882293613'), - (3751, '0030632366'), - (10657, '0882840185'), - (10658, '0897890272'), - (10659, '0897890272'), - (10660, '0898620406'), - (10661, '0898620406'), - (10662, '0030589533'), - (5564, '0151712824'), - (10663, '0312191952'), - (2075, '0312019009'), - (2075, '031209261X'), - (10664, '0446518220'), - (10665, '0446518220'), - (2055, '0446518220'), - (10666, '0786861657'), - (10667, '0786861657'), - (10668, '0684803976'), - (10669, '0684803976'), - (10670, '0131953621'), - (135, '0449903001'), - (10671, '0895942402'), - (10672, '0553052691'), - (10673, '0671669583'), - (10674, '0534129064'), - (10675, '1559723009'), - (10676, '1556111401'), - (2504, '0441515444'), - (10677, '0441515444'), - (10678, '0441515444'), - (10679, '0553341014'), - (10680, '0671808427'), - (1498, '0812583361'), - (10681, '0671523627'), - (10682, '0812880145'), - (822, '0449237842'), - (2516, '0440980429'), - (1265, '0449243842'), - (10683, '0804101787'), - (867, '0441791131'), - (10684, '0441791131'), - (2889, '0931580366'), - (10685, '0931580366'), - (10686, '0931580366'), - (10687, '0385054882'), - (1180, '0446360430'), - (9343, '0446360430'), - (4730, '0312855486'), - (606, '0312855486'), - (10676, '0312855486'), - (10688, '0930436024'), - (2923, '0840764049'), - (122, '0671896776'), - (10689, '0345272463'), - (433, '0345257448'), - (433, '0441735762'), - (433, '0345273575'), - (433, '0345256662'), - (2307, '0671698702'), - (10690, '0671464795'), - (433, '0345272455'), - (10691, '044173684X'), - (2307, '0671721178'), - (585, '0345379144'), - (2504, '0345277406'), - (2504, '0441167128'), - (7081, '0441167128'), - (2515, '0671495003'), - (10692, '0671495003'), - (7645, '0425056023'), - (9240, '0671833987'), - (9241, '0671833987'), - (9240, '0553113925'), - (2987, '034528643X'), - (10693, '034528643X'), - (7645, '0425055272'), - (7645, '0425047253'), - (9240, '0671833995'), - (9241, '0671833995'), - (10694, '0671836927'), - (2515, '0671625810'), - (1101, '0671635743'), - (9147, '0671547305'), - (10695, '0441889697'), - (10694, '0425055914'), - (10694, '0425045404'), - (2504, '0345275497'), - (92, '0425030520'), - (92, '0345260724'), - (6568, '0671806769'), - (10696, '0523419562'), - (10697, '0425050424'), - (2691, '0425037967'), - (6568, '0671442260'), - (6568, '0671549952'), - (10698, '0451171845'), - (10699, '0451171845'), - (10700, '0312913435'), - (10701, '0553236679'), - (10702, '0425050343'), - (3079, '0061030643'), - (10703, '0886779200'), - (10704, '0886779200'), - (4485, '0515130125'), - (10705, '0345291158'), - (10011, '0312974728'), - (10706, '0345298713'), - (10707, '0345308476'), - (1210, '0441370594'), - (1210, '0671473905'), - (10708, '0451115481'), - (10709, '0446327085'), - (1498, '0446349461'), - (1498, '0446346829'), - (501, '0440204925'), - (6177, '0440145465'), - (179, '0671797050'), - (867, '0553290797'), - (2681, '0553290797'), - (4730, '0553290797'), - (10710, '0671653601'), - (606, '0671721224'), - (8410, '0671721224'), - (10711, '0425033260'), - (10712, '088950900X'), - (10709, '067155915X'), - (2835, '0441227449'), - (10713, '087216683X'), - (1687, '0872168026'), - (10714, '0345397371'), - (2515, '0671531360'), - (4250, '0425084574'), - (921, '0879977906'), - (10715, '0879977906'), - (10716, '0879977906'), - (10717, '0553204769'), - (10718, '0449232085'), - (2784, '0553246089'), - (10086, '0440948754'), - (10719, '0425054578'), - (4764, '0449236714'), - (10720, '0446957402'), - (10721, '0380482800'), - (10722, '0449245284'), - (5416, '0380770210'), - (10723, '0440110602'), - (10724, '0440128757'), - (10725, '0671415018'), - (10726, '0451115589'), - (4619, '0553260219'), - (8404, '0671722026'), - (2386, '0812545540'), - (2515, '0812545540'), - (2381, '0425046648'), - (3074, '0345275187'), - (10727, '0671832867'), - (10728, '0345357620'), - (10729, '0425040801'), - (10730, '0425040801'), - (9304, '0441003435'), - (10731, '0441003435'), - (10732, '0812545508'), - (8772, '0345361407'), - (10733, '055323577X'), - (10734, '0451401905'), - (5659, '0553249533'), - (10717, '0449238121'), - (4764, '0449201147'), - (10735, '0425053008'), - (4653, '0345382447'), - (10736, '0441373879'), - (10737, '0380872625'), - (575, '0446322563'), - (10738, '082171306X'), - (4082, '0449240886'), - (10739, '0553258311'), - (745, '1559702125'), - (10740, '0671622358'), - (10741, '0395247764'), - (10742, '0393310477'), - (10743, '0345326962'), - (241, '0553227041'), - (10744, '0446794031'), - (10745, '0671658875'), - (10746, '0394499026'), - (2011, '0399129723'), - (10747, '1555610889'), - (10748, '1556522347'), - (10749, '1556522347'), - (2306, '0812585151'), - (10750, '0312970617'), - (2011, '0425039048'), - (2694, '0671743872'), - (10751, '0684852802'), - (1214, '0671468200'), - (10724, '0671428306'), - (10752, '1573220000'), - (10753, '1573220000'), - (10754, '1573220000'), - (436, '0449209695'), - (436, '0449206181'), - (5112, '1551668467'), - (10755, '0345254112'), - (890, '0451204891'), - (122, '0743437888'), - (4571, '0345423615'), - (2934, '038072880X'), - (10756, '0688143660'), - (10757, '0688143660'), - (552, '0380724987'), - (10758, '0451205073'), - (606, '0756400619'), - (151, '006109918X'), - (241, '0553576623'), - (1498, '0812575962'), - (10759, '0553289640'), - (2500, '0553262009'), - (2501, '0553564013'), - (10760, '0590403370'), - (2179, '0553155040'), - (746, '0064408655'), - (747, '0064408655'), - (2498, '0064408655'), - (10761, '0385337116'), - (10762, '0385337116'), - (10763, '0373260776'), - (10764, '0671793225'), - (571, '0425136191'), - (10765, '044175046X'), - (374, '0446348287'), - (10766, '0373261071'), - (2981, '0394820304'), - (1194, '0671502948'), - (182, '0671502948'), - (2241, '0590408747'), - (8264, '0590408747'), - (176, '0671746065'), - (10767, '059033560X'), - (2340, '0449702766'), - (2542, '0441800106'), - (571, '0451119932'), - (1878, '0140291954'), - (1965, '0425171973'), - (873, '0765340054'), - (10768, '0345275861'), - (10769, '0451160312'), - (1625, '0786013567'), - (913, '0812509145'), - (2224, '0812524608'), - (10770, '0812524608'), - (1801, '0446603775'), - (5012, '0451525299'), - (10448, '0451525299'), - (746, '0064408663'), - (747, '0064408663'), - (2498, '0064408663'), - (2494, '0671034251'), - (10771, '0937295221'), - (10772, '0937295221'), - (10773, '0937295221'), - (1748, '0937295477'), - (10774, '1562471171'), - (10775, '1562471171'), - (10776, '1562471171'), - (274, '0141301058'), - (275, '0141301058'), - (10777, '0439078059'), - (10778, '0916773752'), - (10779, '0916773752'), - (10780, '0026890380'), - (933, '0026890380'), - (10781, '039922405X'), - (10782, '039922405X'), - (1410, '0679830006'), - (1411, '0679830006'), - (1410, '0679877061'), - (1411, '0679877061'), - (599, '0307128385'), - (1586, '0060235330'), - (10783, '0060235330'), - (1410, '0679848053'), - (1411, '0679848053'), - (10784, '0395827418'), - (1410, '0679864342'), - (1411, '0679864342'), - (1410, '0394873335'), - (1411, '0394873335'), - (432, '0312180624'), - (10785, '0451171616'), - (1748, '0937295906'), - (10775, '0937295906'), - (10786, '0937295906'), - (1748, '0937295167'), - (1748, '0937295256'), - (10787, '0937295256'), - (1748, '0937295434'), - (10788, '0937295043'), - (10775, '0937295043'), - (2735, '0937295043'), - (2239, '0590298356'), - (3231, '0374109990'), - (10789, '0345329163'), - (2011, '0399137629'), - (10790, '0812568788'), - (7426, '0307168409'), - (7604, '0723236658'), - (10791, '1570824304'), - (5677, '0064440168'), - (4061, '0156849097'), - (3207, '0918956730'), - (3207, '0918956463'), - (10792, '0970760094'), - (63, '0440213029'), - (10793, '0025003305'), - (436, '0449219372'), - (281, '0440223016'), - (6842, '0786867752'), - (4851, '1565073541'), - (10794, '1565073541'), - (10795, '1565073541'), - (1646, '0688031188'), - (10796, '0688031188'), - (10797, '1890437557'), - (10798, '0671657135'), - (734, '0745926290'), - (1965, '0451628330'), - (10799, '0451628330'), - (10800, '014027684X'), - (567, '0849942187'), - (1997, '0446607339'), - (10801, '0898157803'), - (10802, '0898157803'), - (5695, '0140279288'), - (10803, '0805421351'), - (10804, '0805421351'), - (10805, '0805421351'), - (10806, '0967307902'), - (2968, '0804111154'), - (5591, '1556616120'), - (5591, '155661456X'), - (10807, '0871915537'), - (284, '1561797464'), - (10808, '1561797464'), - (10809, '0380787814'), - (10810, '0380787814'), - (10811, '0736903054'), - (2548, '0874869870'), - (1755, '0874869870'), - (10076, '0805029486'), - (40, '0020869002'), - (10812, '0684835525'), - (10813, '0939431238'), - (10814, '0684852772'), - (1594, '1576738590'), - (10815, '0806961740'), - (810, '1565121562'), - (10816, '0806624302'), - (10817, '0806624302'), - (10818, '0345319672'), - (7315, '0689824351'), - (10819, '0310322413'), - (40, '0684823772'), - (2942, '0375410546'), - (10820, '0800786084'), - (965, '0812505123'), - (8064, '1564766047'), - (10821, '1561794708'), - (2495, '0786883375'), - (76, '0671753819'), - (3776, '0140094385'), - (5356, '0373245076'), - (6176, '0440766419'), - (10822, '0892838981'), - (1845, '0345439252'), - (3359, '0671872672'), - (5068, '0395070902'), - (7075, '0440942500'), - (1580, '0061056987'), - (1581, '0061056987'), - (1582, '0061056987'), - (5586, '0684835355'), - (10823, '0451129040'), - (10824, '0310216222'), - (10825, '0310216222'), - (403, '0553211587'), - (10826, '0310211883'), - (10827, '0310211883'), - (381, '1576737284'), - (10828, '0060186860'), - (10829, '0060186860'), - (10830, '0843951141'), - (6023, '0671643126'), - (8727, '1567184855'), - (7204, '0812521757'), - (10831, '0786813334'), - (822, '0449215296'), - (1755, '0440498058'), - (10832, '0971290903'), - (274, '0141311908'), - (10833, '0310514916'), - (10834, '0064401324'), - (10835, '0064401324'), - (10836, '0671702262'), - (10835, '0671702262'), - (10837, '0819310077'), - (3314, '0688025072'), - (4033, '0140430113'), - (10838, '0140430113'), - (10839, '0849941768'), - (4889, '0849941768'), - (40, '0156329301'), - (10840, '0387986065'), - (5180, '0385066392'), - (162, '0553212060'), - (3207, '0842345523'), - (6316, '1556614373'), - (2404, '1556614373'), - (6316, '1556616996'), - (2404, '1556616996'), - (6316, '1556616988'), - (2404, '1556616988'), - (5591, '0871237954'), - (1198, '0380726815'), - (2418, '0671729896'), - (568, '0064471098'), - (833, '0064471098'), - (10841, '1570361975'), - (3416, '0226500578'), - (4889, '0849910013'), - (965, '048626968X'), - (181, '048626968X'), - (10842, '0849911672'), - (10347, '0800717147'), - (10843, '0800717147'), - (10844, '0800717147'), - (10845, '0880702753'), - (7819, '1565073584'), - (10846, '1565073584'), - (10847, '071483839X'), - (3345, '0345301137'), - (1519, '1593080549'), - (10848, '1593080549'), - (10849, '051788206X'), - (10850, '0743442482'), - (10851, '0375503897'), - (10852, '0375503897'), - (10853, '0375503897'), - (7798, '0899198929'), - (397, '0671722654'), - (10854, '067084134X'), - (10855, '0399525750'), - (10856, '0062554735'), - (25, '0452282195'), - (2931, '0394742117'), - (10857, '0618119809'), - (580, '0425097269'), - (6369, '0060924179'), - (5188, '1583225498'), - (10858, '1583225498'), - (9539, '0195061675'), - (10859, '0195061675'), - (972, '0060929979'), - (10860, '0962197963'), - (56, '1566190932'), - (397, '0451521250'), - (10861, '0451521250'), - (397, '0451521323'), - (10862, '0451521323'), - (1773, '0061054887'), - (965, '0486270637'), - (10863, '0271007494'), - (10864, '0060977205'), - (10865, '0394172663'), - (25, '0679745424'), - (10866, '0915943565'), - (10867, '0915943565'), - (10868, '0140120491'), - (10867, '0140120491'), - (10869, '1556151047'), - (10870, '1556151047'), - (10871, '0804832560'), - (10872, '0804832560'), - (10873, '1570613028'), - (1457, '044900483X'), - (2146, '0679422188'), - (10874, '0553206036'), - (10875, '1582431485'), - (10876, '0071360638'), - (10877, '039597707X'), - (10878, '039597707X'), - (10879, '0918949165'), - (10880, '0918949165'), - (25, '037540273X'), - (115, '0449227545'), - (145, '0425171884'), - (84, '0425171884'), - (906, '0061003638'), - (2026, '1561003913'), - (10881, '1561003913'), - (10882, '0393314812'), - (309, '0553279718'), - (309, '0553269828'), - (10883, '0425164829'), - (10884, '0312006926'), - (10885, '0312006926'), - (427, '0060830719'), - (10886, '0553274872'), - (10887, '0553274872'), - (10888, '0874776953'), - (10889, '1886039224'), - (10890, '0935908315'), - (10891, '0231121989'), - (10892, '0231121989'), - (10893, '0385094787'), - (10894, '0832903930'), - (10895, '0832903930'), - (10896, '0832903930'), - (178, '0553214187'), - (10897, '0553214187'), - (10898, '0312286236'), - (552, '0380726254'), - (10899, '0071387218'), - (10900, '0062505319'), - (10901, '0679872027'), - (2889, '0931580617'), - (2888, '0931580617'), - (3615, '0553238000'), - (5696, '087131794X'), - (10902, '087131794X'), - (2893, '0786864680'), - (2893, '1561703184'), - (2888, '0931580242'), - (10903, '0440193567'), - (10695, '0380706512'), - (10904, '0380706512'), - (10905, '0671707248'), - (10906, '0895860724'), - (10907, '0882668870'), - (10908, '0609803387'), - (2872, '042518403X'), - (10909, '1584855185'), - (10910, '1584855185'), - (2030, '0451625552'), - (10911, '0786011661'), - (1452, '0451157087'), - (10912, '0451157087'), - (10913, '0451405897'), - (10914, '0395860032'), - (10915, '0395860032'), - (10916, '0395860032'), - (4415, '0689821867'), - (10917, '0689821867'), - (10918, '0619016620'), - (10919, '0914881655'), - (10920, '0877931003'), - (1607, '0374515360'), - (10159, '0307617963'), - (10921, '0060193387'), - (10922, '067950754X'), - (10923, '0517576988'), - (10924, '0747545847'), - (5642, '0385261764'), - (10925, '0887291058'), - (10926, '0312157061'), - (10927, '0312157061'), - (1273, '0915811642'), - (10928, '0393962873'), - (10929, '0553207628'), - (10930, '0752500260'), - (10931, '0871318903'), - (10932, '0140141510'), - (4375, '014005264X'), - (10933, '014005264X'), - (10934, '0451628667'), - (10935, '1884910009'), - (10936, '0688075665'), - (3792, '0312194390'), - (10937, '0843711299'), - (10938, '0843711299'), - (10939, '0843711299'), - (284, '0451522923'), - (10940, '0451522923'), - (10941, '0696013908'), - (10942, '0696023644'), - (10943, '0800864166'), - (10944, '0781805899'), - (1904, '0201043823'), - (10945, '0631158189'), - (10946, '0205152074'), - (10947, '0205126987'), - (2872, '0425171493'), - (10948, '157224223X'), - (10949, '0449704335'), - (10950, '0864426488'), - (10949, '0864426488'), - (10951, '0898798140'), - (10952, '0361074662'), - (1597, '0140445587'), - (9690, '0140445587'), - (10953, '0060830476'), - (10954, '0060830476'), - (10955, '0375708111'), - (4148, '0385477058'), - (10956, '0517589818'), - (10957, '0201340208'), - (10958, '0201340208'), - (10959, '0195017854'), - (10960, '0892434090'), - (10961, '0892434090'), - (2872, '0425187144'), - (10962, '0151004943'), - (3560, '0306811588'), - (6572, '0743234979'), - (10963, '0374106843'), - (10964, '0374106843'), - (1732, '0394568354'), - (10965, '0520063279'), - (10966, '0394529383'), - (10967, '0394529383'), - (90, '0140441077'), - (10968, '0140441077'), - (10967, '0140441077'), - (10969, '0764801422'), - (10970, '0764801422'), - (10971, '0764801422'), - (10972, '0764801422'), - (10973, '0684195208'), - (10962, '0553100793'), - (10974, '0140055312'), - (10975, '0451522397'), - (10976, '0906138213'), - (10977, '3423078006'), - (10978, '0895862530'), - (10979, '0895861682'), - (10980, '0895861682'), - (10981, '1551800713'), - (10982, '0882951017'), - (10983, '0882951017'), - (10984, '0394752937'), - (10985, '0394752937'), - (10986, '0060653035'), - (9723, '0801522315'), - (10987, '0713990988'), - (10988, '1568360290'), - (628, '0385720254'), - (10989, '0385720254'), - (10990, '0631133917'), - (10991, '0688024610'), - (10992, '0399123237'), - (10993, '0452006228'), - (10994, '031210104X'), - (10995, '031210104X'), - (10996, '031210104X'), - (10997, '063118449X'), - (10998, '0253204232'), - (10999, '0933932669'), - (11000, '0933932669'), - (11001, '0933932669'), - (11002, '0933932669'), - (11003, '0933932669'), - (11004, '0155013459'), - (11005, '006064205X'), - (3785, '1573225681'), - (60, '0684856603'), - (11006, '0006329527'), - (11007, '0520011309'), - (10983, '0394752996'), - (11008, '0030056284'), - (11009, '0030056284'), - (11010, '0312155948'), - (11011, '0895261677'), - (679, '0449209113'), - (2791, '0743204123'), - (6680, '0061096962'), - (11012, '0840795319'), - (2706, '1573228834'), - (415, '0553212486'), - (11013, '0440237084'), - (415, '0486266907'), - (11014, '0800871863'), - (11015, '0800871863'), - (11016, '023399226X'), - (11017, '0060812494'), - (11018, '0140044507'), - (11019, '1556520794'), - (11020, '0394717953'), - (4409, '1894877233'), - (11021, '0312118341'), - (11022, '0670886955'), - (412, '0385491077'), - (11023, '0316355208'), - (2872, '0425167801'), - (11024, '0873326903'), - (11025, '0873326903'), - (2208, '067975833X'), - (11026, '0786889624'), - (536, '0446343455'), - (11027, '0916410641'), - (11028, '0916410641'), - (2011, '0399131256'), - (1092, '0671454056'), - (1998, '0553239813'), - (1891, '0425045048'), - (11029, '0425045048'), - (1773, '0553234617'), - (1740, '0380000547'), - (11030, '0453010105'), - (606, '0671721755'), - (187, '0671721755'), - (854, '0345257189'), - (854, '0345257170'), - (854, '0345257162'), - (11031, '0684825457'), - (325, '0345335651'), - (2991, '067170561X'), - (410, '0553109405'), - (6854, '0671735160'), - (2681, '0345355237'), - (3367, '0671894226'), - (5004, '0671894226'), - (1759, '0140296441'), - (11032, '3518393421'), - (8632, '344272578X'), - (11033, '3257231652'), - (2915, '3257231652'), - (11034, '3492220169'), - (11035, '3492220169'), - (11036, '3492220169'), - (3037, '3404123425'), - (4307, '3404122763'), - (11037, '3548252192'), - (863, '3499233002'), - (11038, '3499233002'), - (11039, '3746650291'), - (2331, '3458335684'), - (2538, '3442420970'), - (2539, '3442420970'), - (3055, '3442424747'), - (2302, '3442424747'), - (11040, '3404147596'), - (848, '325720485X'), - (2611, '325720485X'), - (11041, '3453150244'), - (11042, '3453150244'), - (11043, '3453150244'), - (10098, '3423202823'), - (11044, '3627000927'), - (11045, '3596141990'), - (7356, '354824789X'), - (8627, '349922710X'), - (11046, '349922710X'), - (11047, '3423130199'), - (3827, '3423130199'), - (25, '3499228548'), - (11048, '3499228548'), - (11049, '3499228548'), - (11050, '3442728363'), - (11051, '3442728363'), - (4640, '3596150531'), - (7078, '0316358568'), - (1158, '0836220676'), - (2981, '0688124887'), - (4250, '044100895X'), - (4250, '0441004385'), - (11052, '042507448X'), - (397, '1853260096'), - (11053, '0425132153'), - (4099, '0064408086'), - (4376, '0345320115'), - (3716, '0345328175'), - (11054, '0312860684'), - (11055, '0441007961'), - (11054, '0441007570'), - (11054, '0441007023'), - (11054, '0441009972'), - (4794, '0345319656'), - (4376, '0345335805'), - (4794, '0345296710'), - (4794, '0345296702'), - (11056, '1569316961'), - (11055, '1569316961'), - (8723, '0394832205'), - (6387, '0451207246'), - (11057, '0823414566'), - (11058, '0803720947'), - (1584, '0883659662'), - (5011, '0893753688'), - (11059, '0521398266'), - (11060, '0060936800'), - (11061, '0060096195'), - (8608, '0373250533'), - (11062, '0375503846'), - (6309, '037325041X'), - (11063, '0805064346'), - (7115, '0376026138'), - (10848, '051788268X'), - (11064, '051788268X'), - (11065, '039470780X'), - (11066, '0140388419'), - (11067, '1568361815'), - (11068, '0060509392'), - (6414, '0375507124'), - (3264, '0385322135'), - (11069, '0027357813'), - (1853, '0060235284'), - (11070, '0060235284'), - (7768, '0688068677'), - (3787, '0679886370'), - (11071, '0374336644'), - (11072, '0439053870'), - (11073, '0525459685'), - (11074, '039923389X'), - (11075, '0375726632'), - (4077, '1584790679'), - (11076, '0525946276'), - (11070, '0374437165'), - (11077, '0312284535'), - (11078, '0060544260'), - (11079, '1581570007'), - (11080, '0394555295'), - (11081, '0394555295'), - (11082, '0152167919'), - (11083, '0312046448'), - (11084, '0312046448'), - (1470, '0894800159'), - (1471, '0894800159'), - (1480, '0894800159'), - (11085, '1400032644'), - (11086, '0385721897'), - (11087, '0451209028'), - (11088, '0373250258'), - (9007, '0517703777'), - (11089, '0517703777'), - (11090, '1560442956'), - (280, '0373250487'), - (714, '0525942254'), - (3912, '0399145362'), - (363, '038071082X'), - (58, '0060157992'), - (9016, '0786710101'), - (7372, '0553801414'), - (11091, '0670850780'), - (3254, '0385320175'), - (11092, '0789308894'), - (11093, '0789308894'), - (98, '0385501005'), - (6232, '0060290307'), - (242, '059055204X'), - (11094, '059055204X'), - (11095, '059055204X'), - (1755, '0374416842'), - (11096, '0374416842'), - (11097, '0881011126'), - (11096, '0881011126'), - (10976, '0140322051'), - (11098, '0140322051'), - (11099, '0195154991'), - (11100, '0195154991'), - (11101, '0141308419'), - (11102, '0805037152'), - (3693, '0515127485'), - (6401, '0789458063'), - (726, '0609610031'), - (3299, '0743436695'), - (11103, '0684856875'), - (11104, '043916589X'), - (11105, '0689505868'), - (262, '0060097469'), - (11106, '1400060427'), - (11107, '0439482682'), - (11108, '093872116X'), - (11109, '0316699128'), - (11110, '0316699128'), - (5147, '0761129774'), - (1095, '0375822739'), - (4962, '0684837226'), - (1337, '0688180728'), - (11111, '0373250282'), - (5235, '0060084456'), - (11112, '0374404542'), - (11113, '0142003484'), - (11114, '0618250735'), - (6504, '0448190834'), - (11115, '0448190834'), - (11116, '0385416679'), - (11117, '0812570626'), - (11118, '0316070211'), - (11119, '0395562333'), - (11120, '0395562333'), - (596, '0380709163'), - (617, '0380709163'), - (5608, '0590876120'), - (5609, '0590876120'), - (1853, '0064406822'), - (11121, '0064406822'), - (1578, '0064406326'), - (11122, '0689813481'), - (11123, '0689813481'), - (11121, '0689808585'), - (11122, '0689808585'), - (11124, '0894808605'), - (11125, '0894808605'), - (11126, '0717218937'), - (11127, '0769612873'), - (11128, '044040150X'), - (11129, '044040150X'), - (1431, '0316140074'), - (10216, '0399215301'), - (11130, '0874498155'), - (11131, '0874498155'), - (11132, '0689710550'), - (11131, '0689710550'), - (505, '0517613441'), - (505, '0517613476'), - (11133, '0785279954'), - (6919, '0517703351'), - (11134, '0684856220'), - (795, '0345435257'), - (11135, '0783502370'), - (1808, '0783502370'), - (11136, '0783502370'), - (415, '0735100004'), - (11137, '0735100004'), - (11138, '0679413383'), - (11139, '0679413383'), - (11140, '0964122804'), - (11141, '0964122804'), - (956, '0553213776'), - (956, '0553280503'), - (956, '0553280511'), - (956, '0553280465'), - (956, '0553264931'), - (956, '0553262149'), - (956, '055323370X'), - (11142, '1565970497'), - (11143, '0373706421'), - (11144, '0373706448'), - (11145, '1565970500'), - (6264, '0316415022'), - (179, '0061093890'), - (11146, '078180583X'), - (11147, '0679445390'), - (132, '0553800973'), - (1558, '0345435796'), - (11148, '0345435796'), - (9619, '0345435796'), - (11149, '0937721778'), - (11150, '0805070834'), - (11151, '0385730985'), - (11152, '0803728468'), - (11153, '0803728468'), - (11154, '0345450892'), - (11155, '0373250231'), - (11156, '068486441X'), - (11157, '0395966051'), - (2407, '0152167056'), - (11158, '0066213339'), - (11159, '0689848641'), - (11160, '1557093334'), - (11161, '1557093334'), - (3639, '0805047379'), - (11162, '1879441845'), - (11163, '0767913000'), - (11164, '051788576X'), - (11165, '0698115597'), - (3277, '1565124006'), - (11166, '0373117515'), - (11167, '0373190255'), - (11168, '0373031424'), - (11169, '0373075944'), - (11142, '0373810199'), - (11170, '037322138X'), - (136, '0671527886'), - (890, '0440222826'), - (2993, '0446600830'), - (11171, '0783502508'), - (1808, '0783502508'), - (11172, '0783502508'), - (4135, '0140265716'), - (11173, '1585421758'), - (618, '0807506451'), - (11174, '0807506451'), - (2241, '0590731890'), - (3267, '0439050138'), - (11175, '0373250142'), - (11110, '0373250150'), - (1320, '0345388968'), - (5251, '0743222261'), - (1039, '0345453387'), - (11176, '0393315797'), - (6919, '051757702X'), - (1674, '0060277491'), - (5426, '044022313X'), - (11177, '0671526723'), - (11178, '0373250169'), - (11179, '0684857340'), - (11180, '0609800256'), - (10882, '0399142606'), - (937, '0385488440'), - (11181, '1886910553'), - (11182, '0060513888'), - (11183, '0375706429'), - (11184, '0689855583'), - (11185, '0689855583'), - (11186, '0743205987'), - (888, '0803725167'), - (11187, '0060191058'), - (1337, '0060090367'), - (2495, '0786863218'), - (11188, '0880014164'), - (11189, '0880014164'), - (11190, '0880014164'), - (11191, '0880014164'), - (11192, '0451183460'), - (11191, '0451823192'), - (11191, '0451192729'), - (6364, '0688173896'), - (6087, '0517162695'), - (11193, '0789426099'), - (11194, '0140360042'), - (6898, '0802788300'), - (166, '038532331X'), - (11195, '0671787209'), - (11196, '0425178234'), - (11197, '0446531286'), - (11198, '0393038548'), - (11199, '1567312497'), - (11200, '0316910333'), - (11201, '0452272734'), - (11202, '0934971722'), - (11203, '0525946403'), - (11204, '0758204175'), - (8372, '0758204175'), - (6482, '0758204175'), - (6309, '0373250118'), - (1184, '0375410767'), - (2622, '0385501722'), - (1473, '0767905199'), - (11205, '0670879045'), - (972, '0385312431'), - (5289, '0385492243'), - (11206, '0786862335'), - (11207, '0380720787'), - (4623, '0671737899'), - (11208, '0553251473'), - (8595, '0553251473'), - (11209, '0515086991'), - (11210, '0062517317'), - (11211, '0684811766'), - (128, '1551667932'), - (237, '0345433319'), - (7493, '0743442628'), - (11212, '0673524299'), - (2692, '0673524299'), - (1840, '1551668394'), - (6982, '039595777X'), - (11213, '039595777X'), - (1674, '0064407446'), - (634, '0399145079'), - (1374, '0152021973'), - (432, '0312203594'), - (11214, '068480302X'), - (11215, '0385486812'), - (4814, '0671015648'), - (11216, '0395971179'), - (11217, '0743205049'), - (11218, '0743205049'), - (11219, '0385333757'), - (11220, '1567310362'), - (11221, '1567310362'), - (2748, '067945778X'), - (11222, '0802137008'), - (11223, '0688147364'), - (11222, '0688147364'), - (11224, '0373250215'), - (4043, '0385323638'), - (11225, '1888338032'), - (743, '0517139618'), - (11226, '0141439564'), - (11227, '0060194146'), - (11228, '0306807203'), - (11229, '0525947116'), - (11230, '0553381121'), - (11231, '0316320277'), - (11232, '0385318790'), - (11233, '031227193X'), - (11234, '0451169026'), - (1039, '0449005577'), - (1556, '0385722435'), - (9859, '0425135012'), - (11235, '0826212433'), - (3124, '0609807900'), - (2495, '0786883367'), - (11236, '0890434573'), - (11237, '0890434573'), - (11238, '0525246398'), - (11239, '0896933466'), - (11240, '0842350128'), - (11241, '0842350128'), - (11242, '0871202824'), - (11243, '0871202824'), - (11244, '0830713573'), - (11245, '0830817220'), - (11246, '1560790512'), - (11247, '0310231612'), - (11248, '0875164358'), - (11249, '0802726216'), - (11250, '1560790555'), - (11251, '1560790555'), - (11252, '0890813302'), - (11253, '0890813302'), - (11254, '0446520888'), - (11255, '0312023022'), - (11256, '0312023022'), - (286, '0689821395'), - (287, '0689821395'), - (11257, '0446394580'), - (11258, '0446394580'), - (11259, '0446394580'), - (534, '0671521101'), - (11260, '1579540791'), - (11261, '0935180621'), - (5606, '0380690543'), - (5962, '0971700915'), - (8595, '0971700915'), - (2791, '0671894404'), - (11262, '0671894404'), - (9470, '0345404440'), - (3136, '0446690155'), - (435, '0385319037'), - (6144, '0373250185'), - (364, '0140282033'), - (6684, '0671867407'), - (11263, '0684835819'), - (11264, '0684835819'), - (11265, '1878448021'), - (11266, '0060529733'), - (11267, '0060529733'), - (11268, '067088698X'), - (11269, '0156010887'), - (2239, '0590424939'), - (1176, '0394805720'), - (11270, '0688152937'), - (11271, '0688152937'), - (2239, '0590673890'), - (11272, '0030442818'), - (8947, '0345320409'), - (11273, '0684804433'), - (11274, '0517075032'), - (11275, '1565123190'), - (6103, '1565123190'), - (11276, '0312270801'), - (11277, '0452282659'), - (11278, '0943233828'), - (11279, '0945448619'), - (11280, '0761511032'), - (11281, '0761511032'), - (11282, '0375701230'), - (1353, '0452281679'), - (11283, '0609603809'), - (9360, '0767906993'), - (622, '0060293152'), - (2884, '0446605336'), - (2885, '0446605336'), - (11284, '0684802082'), - (7478, '0385312512'), - (3779, '0312961324'), - (720, '0671027646'), - (11285, '068810004X'), - (11198, '1567312500'), - (920, '0060294698'), - (11286, '0609606441'), - (433, '0613072111'), - (11287, '0831771348'), - (571, '0425113884'), - (1450, '0679752617'), - (2771, '0679764925'), - (2771, '0679770151'), - (11288, '0962855022'), - (11289, '0962855022'), - (262, '0066236568'), - (1249, '0800717716'), - (11290, '0800717716'), - (11291, '0800717716'), - (5011, '0553213873'), - (7368, '0618127038'), - (719, '0060185287'), - (795, '0345356365'), - (810, '0345336429'), - (1092, '0671556835'), - (11292, '014017821X'), - (2011, '0425109240'), - (8034, '0312146957'), - (11293, '1567182186'), - (17, '1558747060'), - (18, '1558747060'), - (19, '1558747060'), - (17, '1558746463'), - (18, '1558746463'), - (5666, '1558746463'), - (5667, '1558746463'), - (17, '1558746099'), - (18, '1558746099'), - (11294, '1558746099'), - (11295, '1558746099'), - (17, '1558747141'), - (18, '1558747141'), - (7792, '1558747141'), - (7793, '1558747141'), - (11296, '0316120863'), - (11297, '0911379010'), - (810, '0345382919'), - (11298, '1556113854'), - (574, '0452266637'), - (4793, '0452266637'), - (11299, '155972126X'), - (265, '006109028X'), - (3912, '0515113719'), - (17, '0757300243'), - (18, '0757300243'), - (11300, '0757300243'), - (11301, '0757300243'), - (17, '1558744029'), - (18, '1558744029'), - (11302, '1558744029'), - (5816, '1558744029'), - (17, '1558743790'), - (18, '1558743790'), - (11303, '084991437X'), - (17, '1558748008'), - (18, '1558748008'), - (11293, '1558748008'), - (11294, '1558748008'), - (17, '1558745629'), - (18, '1558745629'), - (11304, '1558745629'), - (17, '1558747966'), - (18, '1558747966'), - (7792, '1558747966'), - (7793, '1558747966'), - (1674, '006447187X'), - (11305, '006447187X'), - (11306, '0375760628'), - (598, '0060287365'), - (11307, '0060287365'), - (11308, '0380727021'), - (432, '0312187106'), - (381, '0849952476'), - (381, '0849952492'), - (11309, '0789405652'), - (11310, '1580172938'), - (83, '0449910741'), - (11311, '1591450055'), - (11312, '038072152X'), - (11313, '0440413869'), - (11314, '0133349705'), - (2495, '1577311108'), - (577, '1577311108'), - (10209, '0062740067'), - (11315, '0439435242'), - (11316, '1563051818'), - (11317, '0671743686'), - (11318, '0818405422'), - (11319, '0818405422'), - (11320, '1891105035'), - (11321, '006621016X'), - (1038, '0786865504'), - (4814, '0679456937'), - (11322, '0380975580'), - (11323, '0684853620'), - (250, '0060392827'), - (4577, '1551668157'), - (956, '0553213156'), - (612, '0613225937'), - (7702, '1573221260'), - (6639, '0345410092'), - (543, '0440124344'), - (5695, '014027927X'), - (2495, '078688360X'), - (1374, '0152008799'), - (11324, '0805063781'), - (11325, '0064473023'), - (1374, '0152001018'), - (11326, '0761316426'), - (8923, '0312209673'), - (11327, '1883523362'), - (8967, '0060976497'), - (432, '0312147015'), - (17, '1558743545'), - (18, '1558743545'), - (11328, '1558743545'), - (5695, '0452282128'), - (98, '0767906543'), - (11070, '0374399891'), - (11329, '0517100800'), - (11330, '068485595X'), - (2495, '0786884207'), - (11331, '0786884207'), - (1484, '0375506187'), - (11332, '0812524160'), - (8912, '0399135278'), - (8951, '0312908830'), - (734, '0142000345'), - (5444, '1577488288'), - (11333, '0800781724'), - (11334, '1577482158'), - (11335, '0882702637'), - (11336, '0821723006'), - (1337, '0380796104'), - (3378, '1565120167'), - (11337, '1586603981'), - (11338, '031020755X'), - (11339, '031020755X'), - (3754, '0764501801'), - (368, '0399141855'), - (8620, '0140340831'), - (11340, '0140340831'), - (6042, '0310213975'), - (11341, '0310213975'), - (11342, '0517588242'), - (474, '0385485697'), - (4851, '1565075722'), - (11343, '0440415829'), - (3633, '0064460932'), - (11344, '0064460932'), - (441, '0590959433'), - (11345, '0590959433'), - (5591, '076422249X'), - (5634, '076422249X'), - (11346, '0816318050'), - (11347, '0142000477'), - (11348, '1586602616'), - (11349, '1586602616'), - (11350, '1586602616'), - (7411, '1586602616'), - (11351, '1586602772'), - (11352, '1586602772'), - (11353, '1586602772'), - (11354, '1586602772'), - (11355, '0395636477'), - (11356, '0060617519'), - (11357, '0446530115'), - (1355, '0553581066'), - (179, '0671794493'), - (6192, '0380978342'), - (11358, '0312105231'), - (10745, '0060179988'), - (3419, '013029604X'), - (2006, '0380975351'), - (3315, '034531221X'), - (11359, '0849939585'), - (11358, '0849939593'), - (11358, '0849936888'), - (11358, '0849939194'), - (1374, '0590460560'), - (1374, '0590460528'), - (1374, '0590460544'), - (9163, '0830707360'), - (6031, '1576738167'), - (11360, '0915684012'), - (11361, '0802404332'), - (11362, '1874508003'), - (3115, '155166576X'), - (4908, '0060926201'), - (4908, '0804108293'), - (381, '0849953421'), - (11363, '0664254829'), - (11364, '0310515114'), - (11365, '1556615833'), - (11366, '0816733082'), - (974, '0375811354'), - (11367, '0806984929'), - (11368, '067165845X'), - (8967, '0060173084'), - (11369, '0451204123'), - (1374, '0152006737'), - (6031, '0842319018'), - (1265, '051734582X'), - (11370, '1580082319'), - (11371, '0345427297'), - (11372, '0140547533'), - (11373, '0140547533'), - (11374, '1578564719'), - (11375, '1576737810'), - (11376, '0785270221'), - (11377, '0785270221'), - (11378, '1576737098'), - (11377, '1576730360'), - (11379, '1576730360'), - (11380, '0786862262'), - (10825, '031023008X'), - (10826, '031023008X'), - (11381, '0840771835'), - (11382, '0840771835'), - (485, '0380975068'), - (505, '0517118971'), - (1410, '0394873416'), - (1411, '0394873416'), - (11383, '059040024X'), - (11384, '059040024X'), - (11385, '059040024X'), - (3812, '0590226517'), - (11386, '1580626599'), - (1374, '0590543199'), - (743, '067161276X'), - (11387, '0871316072'), - (179, '0671794507'), - (1374, '0152164502'), - (3591, '0312959176'), - (3591, '1577361814'), - (1691, '0679867406'), - (6904, '0394865871'), - (11388, '0849942829'), - (5081, '0764222120'), - (5081, '0764222112'), - (11389, '0310201683'), - (7368, '0395251818'), - (1374, '0440228611'), - (11390, '0880701366'), - (1374, '0590742590'), - (11391, '0934395500'), - (11392, '0934395500'), - (1410, '0394872177'), - (1411, '0394872177'), - (7626, '0590426230'), - (7379, '0590426230'), - (11393, '006446735X'), - (11394, '006446735X'), - (11395, '0679800921'), - (11396, '0679800921'), - (560, '0590479172'), - (561, '0590479172'), - (11397, '0698116003'), - (11398, '0698116003'), - (11399, '068806518X'), - (11398, '068806518X'), - (11400, '1880000334'), - (11401, '1880000334'), - (11402, '1880000334'), - (11403, '0590480898'), - (11404, '0590480898'), - (11405, '0064402509'), - (258, '0064402509'), - (438, '0590934252'), - (439, '0590934252'), - (5142, '067988341X'), - (5143, '067988341X'), - (11406, '0590449206'), - (11407, '0590449206'), - (438, '0590947168'), - (439, '0590947168'), - (5142, '0679824111'), - (5143, '0679824111'), - (264, '0805002138'), - (11408, '0805002138'), - (264, '1587172046'), - (11409, '1587172046'), - (11410, '0380719002'), - (5522, '0064440591'), - (274, '0141302283'), - (275, '0141302283'), - (11411, '0671677136'), - (10086, '0440409411'), - (11412, '0590543385'), - (11413, '0060163097'), - (11414, '0060163097'), - (11415, '0060163097'), - (11416, '0060163097'), - (8881, '0440416248'), - (5500, '0140349812'), - (5500, '0140386742'), - (5180, '0140365931'), - (11417, '0439099048'), - (10948, '0613177177'), - (3253, '1565121570'), - (17, '1558746587'), - (18, '1558746587'), - (11418, '1558746587'), - (2156, '1558746587'), - (11419, '0964095564'), - (11291, '0099133717'), - (11420, '0771068182'), - (11421, '0771068182'), - (702, '2894641214'), - (11422, '1858284147'), - (11423, '1858284147'), - (11424, '1558533311'), - (11425, '0394557212'), - (11103, '0590697692'), - (3267, '0590486691'), - (827, '0140376283'), - (11426, '0698118804'), - (11427, '0698118804'), - (11425, '0531087875'), - (11425, '0590439448'), - (568, '0684823799'), - (1727, '0679732187'), - (11428, '0140344438'), - (11429, '0451523954'), - (11430, '0451523954'), - (1578, '0064406865'), - (11431, '0064406865'), - (595, '0440430461'), - (1374, '0590117440'), - (11432, '0689842945'), - (11433, '1883672902'), - (11434, '0689842309'), - (11435, '0060281766'), - (1374, '0152003924'), - (5406, '0380978636'), - (11436, '0809206196'), - (11437, '0842300198'), - (4550, '0140236201'), - (11438, '0140481877'), - (5437, '0486273008'), - (3601, '0140108599'), - (8310, '0195867866'), - (1965, '0451628454'), - (929, '0451628454'), - (3787, '0679887911'), - (11439, '0674354427'), - (3264, '0440226848'), - (7768, '0590319906'), - (6918, '0064470679'), - (11440, '0156004771'), - (11441, '0061081116'), - (369, '0373483503'), - (11442, '0380785757'), - (9745, '0380785714'), - (3164, '0553294091'), - (1025, '0590023888'), - (1498, '0812544420'), - (11443, '0373290853'), - (4455, '0671741268'), - (11444, '0312033001'), - (369, '0373270976'), - (7947, '0812571762'), - (7515, '0671025708'), - (8517, '0812514092'), - (369, '0515122734'), - (2253, '0440224578'), - (2253, '0440217857'), - (11445, '0373705867'), - (373, '1551665794'), - (373, '0061010995'), - (5969, '0061010995'), - (2248, '0373762690'), - (2169, '0451407806'), - (1491, '0373484046'), - (11446, '1854879820'), - (11447, '0373168209'), - (2268, '0373290861'), - (11448, '0743232933'), - (11449, '0312305664'), - (11450, '1583486259'), - (142, '0451160916'), - (1819, '1551665077'), - (484, '0446607207'), - (11451, '0373223587'), - (3164, '0553581147'), - (1827, '0553579231'), - (543, '0440209412'), - (3157, '0553574310'), - (11452, '0060631317'), - (11453, '0140375899'), - (11454, '1885983212'), - (5677, '0380700670'), - (5406, '0380725622'), - (618, '0807510092'), - (11173, '0807510092'), - (66, '0842321950'), - (65, '0842321950'), - (1024, '0440407125'), - (11455, '0590312413'), - (1853, '0141312424'), - (11456, '0816704058'), - (11457, '0816704058'), - (6039, '0590481819'), - (5516, '0590481819'), - (2241, '0590228706'), - (11458, '0590228706'), - (11459, '0590228706'), - (1721, '0439049989'), - (2239, '0590228773'), - (1721, '0439050006'), - (4979, '0671019376'), - (11460, '0671019376'), - (1410, '0590944770'), - (1411, '0590944770'), - (11461, '0590944770'), - (11462, '0871234408'), - (11463, '0880296143'), - (11464, '0880296143'), - (11465, '0892741880'), - (2495, '0786864249'), - (11466, '0449150011'), - (66, '0842329250'), - (65, '0842329250'), - (1876, '0553102354'), - (11467, '0912111631'), - (11468, '0912111631'), - (11469, '0912111631'), - (5305, '0767903390'), - (11470, '055334935X'), - (11471, '055334935X'), - (285, '0060591706'), - (11472, '0679763384'), - (11473, '1557042608'), - (11474, '1557042608'), - (11475, '1557042608'), - (11476, '0815410565'), - (285, '0060951311'), - (3645, '9682321557'), - (11477, '9682321557'), - (1679, '1878448900'), - (401, '155994806X'), - (11478, '155994806X'), - (11479, '9500723832'), - (11480, '9500723832'), - (11481, '0198641583'), - (93, '0807281859'), - (7240, '0140011749'), - (11482, '9684322046'), - (1265, '042509345X'), - (11483, '0743448782'), - (11484, '0385471475'), - (3434, '0312983786'), - (11485, '0525455205'), - (1897, '0525455205'), - (4905, '0747233667'), - (265, '0061091944'), - (2825, '0671003534'), - (2825, '0671003526'), - (2981, '0688134017'), - (2981, '0688134009'), - (2981, '0064473139'), - (4726, '0553103032'), - (2586, '0553574418'), - (11486, '037326237X'), - (9394, '0804116571'), - (1265, '0449210529'), - (4794, '0345441710'), - (11487, '0345414365'), - (5899, '0441002617'), - (4826, '015201800X'), - (4826, '0152018018'), - (3431, '0804107025'), - (11488, '0142501433'), - (11487, '0142501530'), - (2142, '0141311096'), - (973, '0553568736'), - (8081, '0792276868'), - (973, '044144525X'), - (973, '0441568572'), - (973, '044190209X'), - (9925, '0375503641'), - (183, '0451171012'), - (11489, '0451171012'), - (11490, '0451456599'), - (574, '0394534433'), - (1776, '0553573314'), - (1776, '0553562614'), - (1776, '0553573861'), - (973, '0553095145'), - (11491, '0802138578'), - (11492, '0802138578'), - (11493, '1579546137'), - (8730, '0152046976'), - (658, '0802131867'), - (11494, '0786860219'), - (3253, '0452282438'), - (11495, '0520222571'), - (3458, '0380723085'), - (810, '0345410289'), - (11496, '0452280699'), - (11497, '0914913360'), - (11498, '0914913360'), - (11499, '0914913360'), - (11500, '0914913360'), - (2342, '0679755624'), - (11501, '0679414614'), - (11502, '0060977191'), - (810, '0345410424'), - (2454, '0679723692'), - (549, '0060956291'), - (1880, '0671748092'), - (533, '0609608738'), - (3307, '0805031871'), - (11503, '1878067990'), - (810, '0345410394'), - (463, '0375500510'), - (634, '0425184757'), - (11504, '0452283167'), - (11505, '0452283167'), - (11506, '1582340765'), - (11507, '1571310169'), - (11209, '0380820145'), - (892, '0385333293'), - (11508, '0060923202'), - (5443, '0061054437'), - (4938, '0312187343'), - (8686, '0679416730'), - (340, '0380729768'), - (11509, '0060926465'), - (11510, '0316691178'), - (11511, '0871138328'), - (11512, '1565122437'), - (2146, '0345386574'), - (1706, '0156907399'), - (4261, '0156907399'), - (2686, '0395908728'), - (3924, '0066209463'), - (6880, '0802136265'), - (11513, '1559704640'), - (11514, '0743227840'), - (11515, '0452271045'), - (11516, '0452271045'), - (11517, '0684867826'), - (4908, '0060984333'), - (2454, '0679723056'), - (4768, '0345389247'), - (11518, '0375503315'), - (162, '0393956539'), - (11519, '0393956539'), - (11520, '0393956539'), - (11521, '0395977711'), - (11197, '0380728826'), - (5095, '0452282098'), - (11522, '096521365X'), - (1198, '0380732149'), - (11523, '0312283474'), - (7750, '0385314256'), - (7751, '0385314256'), - (4636, '0394563158'), - (11524, '0786869011'), - (11525, '1573221511'), - (3924, '0812968344'), - (1165, '0812968344'), - (3292, '0312243111'), - (461, '0375726012'), - (3458, '0812968131'), - (3458, '0345423097'), - (3458, '0743411358'), - (3458, '0425176487'), - (580, '0671441981'), - (11526, '0671673947'), - (11527, '0440507723'), - (11528, '0963634291'), - (11529, '0963634291'), - (11530, '0897322096'), - (7021, '0812548051'), - (11531, '0822011298'), - (312, '0140440488'), - (11532, '0140440488'), - (11531, '0140440488'), - (11533, '0449215261'), - (10955, '0786886471'), - (1041, '055357325X'), - (1042, '055357325X'), - (1041, '0553290983'), - (1042, '0553290983'), - (1041, '0553295411'), - (1042, '0553295411'), - (1041, '0553561405'), - (1042, '0553561405'), - (11534, '0006548180'), - (1099, '1857027051'), - (11535, '1857988027'), - (3174, '0241100100'), - (1236, '0552995649'), - (11536, '1840672013'), - (256, '0575048360'), - (11537, '0575048360'), - (11538, '0753813823'), - (11539, '0330354566'), - (5530, '0349115087'), - (3608, '0146001788'), - (11540, '0146001788'), - (11541, '1857995457'), - (11542, '1857995457'), - (11543, '0553288660'), - (11544, '0694520799'), - (4853, '0694520799'), - (8474, '0310342023'), - (11545, '0310342023'), - (552, '0688143687'), - (11546, '0394722191'), - (11547, '0805001182'), - (3250, '0140006095'), - (11548, '0140006095'), - (150, '006019345X'), - (79, '0394501691'), - (1265, '0441731538'), - (11549, '0394721683'), - (3608, '0553210424'), - (11550, '0140157913'), - (220, '0060912227'), - (989, '0156997789'), - (11551, '1551669196'), - (11552, '0826404286'), - (220, '0140096922'), - (3480, '0140096922'), - (220, '0140064702'), - (6574, '0140064702'), - (11549, '0140088393'), - (11549, '014010304X'), - (106, '0553203487'), - (1073, '0553123432'), - (220, '0140059245'), - (3480, '0140059245'), - (1858, '0140059245'), - (11553, '0679724222'), - (3856, '0156970902'), - (11554, '067973502X'), - (11555, '0345335864'), - (3849, '0452011116'), - (11556, '0385473079'), - (188, '0345292340'), - (215, '0380003333'), - (9479, '0380003333'), - (3292, '080410378X'), - (11557, '0871563223'), - (11558, '1557783446'), - (1228, '0679442405'), - (11559, '0671250841'), - (2592, '3442723183'), - (7672, '0373078056'), - (11560, '0373078056'), - (11561, '1551660016'), - (36, '0821746219'), - (11562, '0373169264'), - (10390, '0373169841'), - (1965, '0821758969'), - (11563, '084394272X'), - (11564, '0373222823'), - (5693, '0843948884'), - (11565, '0373501757'), - (11566, '0380818078'), - (11567, '0373031939'), - (11568, '037310507X'), - (128, '0373482949'), - (11569, '0671469134'), - (2246, '0373288816'), - (11570, '037365054X'), - (1828, '0373706898'), - (2863, '0373885121'), - (4577, '0373098855'), - (3903, '0373076223'), - (2948, '0373821514'), - (11571, '0373288093'), - (128, '155166531X'), - (1122, '0373240899'), - (11572, '0380815346'), - (2863, '037321703X'), - (128, '0446360732'), - (11573, '0373093829'), - (11574, '0373096828'), - (1122, '0373099150'), - (11562, '0821718398'), - (11562, '0843946466'), - (3911, '0373168721'), - (3907, '0373164386'), - (1835, '0373451903'), - (10381, '0373169035'), - (11575, '0743436466'), - (2371, '067178577X'), - (2372, '067178577X'), - (7199, '0373168411'), - (128, '0553567683'), - (128, '0446603090'), - (11576, '0373099894'), - (11577, '0373099894'), - (11578, '0380774542'), - (2250, '0061083402'), - (1192, '0373451555'), - (7672, '0373077289'), - (5146, '0373168683'), - (7199, '0373169493'), - (2863, '0373451806'), - (5370, '0373168748'), - (11579, '0373225202'), - (1822, '0373168527'), - (11580, '0373705247'), - (11581, '0373118775'), - (4330, '0373168632'), - (3470, '0373169779'), - (128, '055329783X'), - (11582, '0373169760'), - (11583, '0373166958'), - (11584, '0671835645'), - (3468, '0373168675'), - (6931, '0373451547'), - (10195, '0373169620'), - (11585, '037316596X'), - (7199, '0373169736'), - (1296, '037316954X'), - (10103, '0373650396'), - (11586, '0441023142'), - (11587, '0373257813'), - (1192, '0373201575'), - (11588, '0373030932'), - (11589, '0451180143'), - (2169, '0451180143'), - (11590, '0451180143'), - (11591, '0451180143'), - (128, '0373160011'), - (743, '0373898347'), - (2863, '0373201427'), - (2248, '0373201427'), - (8860, '0373201427'), - (2166, '0373115113'), - (11592, '037316968X'), - (3469, '0373169531'), - (7199, '0373168705'), - (3470, '0373169868'), - (11593, '0671519077'), - (2166, '0373108400'), - (2260, '037316985X'), - (11594, '0373289871'), - (7211, '0373289871'), - (5257, '0373289871'), - (11595, '1878702823'), - (11596, '0373099169'), - (11597, '0515087998'), - (128, '0553220284'), - (373, '0373253184'), - (3449, '0373169566'), - (11598, '0373290012'), - (11599, '0671535706'), - (11600, '0373290438'), - (58, '0061093343'), - (11601, '0373706871'), - (11602, '0373106734'), - (743, '0373898339'), - (11603, '0373169361'), - (2275, '0373169329'), - (11604, '0373169191'), - (11605, '0821767720'), - (11606, '0821767720'), - (10105, '0821767720'), - (11607, '0373025920'), - (3918, '0373072422'), - (10065, '0440224454'), - (11608, '0312956762'), - (11609, '0312956762'), - (2246, '0373288646'), - (7672, '0373076746'), - (11610, '037370643X'), - (11611, '0373241437'), - (3918, '0373074808'), - (11612, '0373765053'), - (373, '0061042331'), - (11613, '0373093918'), - (11614, '0786000139'), - (11615, '0373114931'), - (2824, '0440211352'), - (11616, '0425105156'), - (11617, '0373074492'), - (148, '0449223515'), - (11618, '0886778212'), - (6444, '0886778212'), - (11619, '0373024665'), - (10103, '0373650159'), - (122, '0671775235'), - (9240, '0553279335'), - (9241, '0553279335'), - (10678, '0425058247'), - (11593, '037329011X'), - (11620, '055322039X'), - (6186, '0373704070'), - (11575, '0373097840'), - (6475, '037319692X'), - (11621, '0373241224'), - (11622, '0373291175'), - (2654, '0449232131'), - (9162, '0449232131'), - (11623, '0449129047'), - (122, '0671019147'), - (11624, '0373501749'), - (11625, '0373079184'), - (9229, '037310667X'), - (6488, '0373292155'), - (11165, '0373116373'), - (11626, '0373288050'), - (2377, '0345435419'), - (11627, '0373051921'), - (11628, '037329106X'), - (11629, '0373114206'), - (11630, '082173427X'), - (11631, '0373291205'), - (3163, '0373254571'), - (5370, '0373163541'), - (3922, '0373243022'), - (11632, '0449125394'), - (128, '0553219510'), - (11633, '0373166575'), - (11634, '0373168802'), - (11635, '0821745085'), - (9420, '0553219928'), - (11619, '0553440136'), - (2948, '0373162510'), - (11636, '0445206608'), - (11637, '051506162X'), - (3918, '0373074123'), - (2268, '0373291213'), - (11638, '0373286740'), - (11639, '0373121369'), - (3919, '0373099568'), - (7587, '0671047574'), - (7588, '0671047574'), - (3918, '0373071485'), - (11570, '037328926X'), - (11640, '0373165676'), - (4206, '0373118651'), - (5244, '0373121482'), - (128, '0553220012'), - (9420, '0553444433'), - (11641, '0373289537'), - (11642, '0373162227'), - (7566, '0373288212'), - (5225, '0373098847'), - (11143, '0373710550'), - (11643, '0373151896'), - (11644, '0373151896'), - (11593, '0373288727'), - (3903, '0373077351'), - (11645, '0440169836'), - (6186, '0373075367'), - (11646, '0440112907'), - (11645, '0440173787'), - (11647, '0373032072'), - (11648, '0373097735'), - (11649, '0380897857'), - (1388, '0373106696'), - (7672, '037307638X'), - (11559, '037307638X'), - (4392, '0373099738'), - (11143, '0373707002'), - (10190, '0373111622'), - (2948, '0373162111'), - (11650, '0373290055'), - (3903, '0373076932'), - (3899, '0553445006'), - (128, '0553217771'), - (11651, '0373243685'), - (11652, '0373167520'), - (11653, '0373076592'), - (11654, '0373035101'), - (11655, '0373254547'), - (2246, '0373288506'), - (4730, '0446606448'), - (11656, '0446606448'), - (11657, '0373107072'), - (11635, '0445208848'), - (11658, '0821749374'), - (11659, '0821718053'), - (11660, '0312901925'), - (160, '0553289993'), - (11661, '0671460412'), - (10356, '0373790538'), - (11662, '0515058181'), - (3904, '0373224915'), - (11663, '0373709560'), - (11664, '0373105401'), - (11665, '0671495429'), - (11666, '0061096156'), - (5899, '0441007147'), - (11667, '0451161122'), - (2372, '0671032569'), - (2371, '0671032569'), - (160, '0553569651'), - (11668, '0821744798'), - (434, '0345379055'), - (11669, '0061083577'), - (2948, '0373161387'), - (4206, '0373109040'), - (7385, '0451456823'), - (10691, '0451456823'), - (11670, '0345276353'), - (835, '0671042092'), - (10749, '0312980353'), - (4206, '0373117949'), - (11671, '0671473646'), - (11672, '037370707X'), - (10195, '0373166877'), - (3899, '0553443976'), - (4206, '0373118716'), - (6854, '0743410645'), - (11673, '0449140180'), - (3916, '0553443119'), - (6484, '0821740296'), - (2948, '0373165544'), - (11674, '0373093799'), - (11675, '0373165595'), - (3916, '0553219987'), - (11676, '0373291183'), - (11677, '038076864X'), - (11678, '0373289421'), - (3918, '037309437X'), - (10099, '0373098987'), - (2948, '0373165811'), - (1821, '0786005416'), - (11674, '0373088701'), - (3916, '0553218298'), - (3916, '0553218514'), - (3918, '0373092741'), - (105, '0553233688'), - (7827, '0373166931'), - (11679, '0821726382'), - (6488, '037329056X'), - (11651, '0553443763'), - (11680, '0821760459'), - (11681, '0931122651'), - (369, '0739439065'), - (11682, '0345446100'), - (11683, '0688103324'), - (56, '0553213342'), - (3787, '0679885501'), - (11684, '0385266294'), - (11685, '0385266294'), - (11686, '0385266294'), - (11687, '080707103X'), - (454, '0061064173'), - (11688, '0061064173'), - (1428, '0671785699'), - (11689, '044840172X'), - (7296, '0451143183'), - (5398, '0877282684'), - (11690, '0877282684'), - (11691, '0877282684'), - (11692, '1561840092'), - (1109, '0811202925'), - (2637, '0811202925'), - (11693, '0764153730'), - (11694, '0764153730'), - (11695, '0850307147'), - (7046, '0850307147'), - (11696, '0316488356'), - (11697, '0671704613'), - (11698, '0563551011'), - (6854, '0743412346'), - (11699, '0671629980'), - (266, '0812534077'), - (5319, '0312964250'), - (2287, '0446400580'), - (11700, '034531784X'), - (11701, '0345346912'), - (2542, '0671008803'), - (3367, '0671008803'), - (3368, '0671008803'), - (5579, '0345311639'), - (11702, '0345283716'), - (5272, '0345329457'), - (11703, '0935127291'), - (11704, '0935127291'), - (11705, '0671503618'), - (11706, '0879801107'), - (9997, '0887330045'), - (11707, '1558172378'), - (10555, '1558172378'), - (11708, '1558172378'), - (11709, '094383208X'), - (11710, '0879493046'), - (11711, '0312958838'), - (11712, '0440100259'), - (9997, '0234770554'), - (11713, '0394733312'), - (11714, '0894872281'), - (11715, '0821717510'), - (11714, '0821717529'), - (11716, '0571130143'), - (11717, '1561840599'), - (11718, '1561840599'), - (11717, '1561841536'), - (9997, '0887330630'), - (5272, '0786703873'), - (5187, '0886776244'), - (3076, '0445204524'), - (265, '0066210844'), - (5272, '0345384210'), - (4733, '0312909233'), - (11719, '0879977388'), - (11720, '0879977388'), - (8287, '0786706473'), - (1816, '0743412419'), - (11721, '0425126021'), - (392, '087542127X'), - (11722, '0061057525'), - (10363, '0061057525'), - (11723, '0061057525'), - (6346, '0140182926'), - (11724, '0140261184'), - (11725, '0140261184'), - (3234, '0140139125'), - (8648, '1567184731'), - (3234, '1852278862'), - (3234, '0140035206'), - (3234, '0140023747'), - (3234, '0007155093'), - (11726, '0007155093'), - (11727, '0007155093'), - (4336, '0671037390'), - (4336, '0671015850'), - (1422, '0749930632'), - (11728, '0553282182'), - (4336, '0671037382'), - (11729, '0413519503'), - (11730, '0413519503'), - (11731, '0340693096'), - (2627, '3426195593'), - (11732, '3404129490'), - (11733, '3596505151'), - (8626, '3518100734'), - (11734, '3596224284'), - (942, '340413348X'), - (292, '0749719745'), - (11735, '1841150770'), - (9019, '0099286572'), - (11736, '3125781108'), - (11737, '312577540X'), - (11738, '312577540X'), - (11739, '3518365010'), - (11740, '3518365010'), - (11741, '3442161177'), - (11742, '3442161177'), - (11743, '3442139112'), - (9518, '3404148657'), - (9519, '3404148657'), - (11744, '3746652618'), - (11745, '3502518998'), - (2654, '3502518998'), - (11746, '3502518998'), - (5098, '3548256171'), - (11747, '3426080648'), - (11748, '3442450322'), - (4702, '3442450322'), - (176, '3453146972'), - (612, '3404118251'), - (11749, '3404118251'), - (11750, '0752218751'), - (2492, '186046808X'), - (11751, '0684873753'), - (11752, '0152020683'), - (11753, '0152020683'), - (11754, '0385503466'), - (11755, '0767901843'), - (11756, '0767901843'), - (1092, '0671020110'), - (369, '0373484429'), - (11757, '0671042920'), - (11758, '0446524999'), - (5479, '0767908260'), - (11759, '0140434682'), - (11760, '0140434682'), - (11761, '0140434127'), - (11762, '0140434127'), - (11763, '0140154515'), - (11764, '0140432809'), - (11765, '0140432809'), - (11766, '014051290X'), - (2458, '0140445285'), - (2809, '0140445285'), - (11767, '0140445625'), - (11768, '0140445625'), - (11769, '0140445625'), - (11770, '0140194886'), - (11771, '0140194886'), - (11772, '1573220922'), - (11773, '0140466606'), - (11774, '0140466606'), - (11775, '0140466606'), - (11776, '0140188517'), - (3490, '0060171928'), - (11777, '0060171928'), - (2940, '0140587489'), - (11778, '0310239729'), - (11779, '0310239729'), - (11780, '0310239729'), - (11781, '0310239729'), - (3086, '0684717654'), - (4532, '0786913339'), - (11782, '0786913339'), - (891, '0515041858'), - (891, '0515041866'), - (891, '0515035084'), - (9924, '0345409876'), - (745, '0679724516'), - (11783, '0679724516'), - (4177, '0679763309'), - (11784, '0393027414'), - (11785, '0813522137'), - (56, '0375757295'), - (11786, '0375757295'), - (2978, '0425183971'), - (11787, '0582292190'), - (11788, '0582292190'), - (11789, '0582292190'), - (1727, '067973225X'), - (628, '0060174900'), - (11790, '1879237741'), - (628, '0375704469'), - (11791, '0894803204'), - (2888, '093158079X'), - (11760, '0486270521'), - (11792, '0449200248'), - (11793, '0937858668'), - (665, '0684839075'), - (11794, '0140266933'), - (665, '0684818981'), - (11795, '1862042055'), - (11796, '1862042055'), - (665, '068482499X'), - (3086, '0020199856'), - (11797, '1558508473'), - (11798, '1558508473'), - (1537, '0441007813'), - (5155, '0804002800'), - (5155, '0671680110'), - (11799, '0446609048'), - (11798, '0446606677'), - (11800, '0380790963'), - (11799, '0380790947'), - (2694, '006093316X'), - (628, '0060909005'), - (272, '0060909005'), - (7406, '0062731009'), - (7406, '0062731025'), - (11801, '0062731025'), - (5155, '0804001480'), - (1537, '0441005748'), - (5155, '156333609X'), - (11802, '0812566688'), - (11803, '0312860226'), - (11801, '0812540026'), - (11804, '0811824225'), - (11805, '1889295000'), - (2603, '0786808012'), - (389, '0385285019'), - (11806, '1573245003'), - (2276, '0380802317'), - (11807, '0821771418'), - (423, '0385484011'), - (4793, '0452281458'), - (574, '0452281458'), - (4793, '0452281431'), - (574, '0452281431'), - (4577, '0440210038'), - (11808, '1551668483'), - (11809, '0380795736'), - (11810, '0312191189'), - (10099, '074340596X'), - (11811, '0821771159'), - (4313, '1551668289'), - (88, '0061014788'), - (11812, '0345317211'), - (415, '0451526120'), - (552, '0449215024'), - (11813, '0552142506'), - (2185, '0425176088'), - (5602, '0440216974'), - (142, '0451170113'), - (889, '0316153915'), - (563, '0425155722'), - (2978, '0425189031'), - (8414, '0671015443'), - (2512, '0671015443'), - (543, '0440236665'), - (187, '0425049264'), - (7021, '0812551486'), - (7021, '081257639X'), - (374, '0736618198'), - (11814, '0736618198'), - (1626, '0061007153'), - (1397, '0380011220'), - (56, '0451525884'), - (282, '0451525884'), - (39, '034539092X'), - (9824, '0345323173'), - (9824, '0345378784'), - (11815, '0441703534'), - (252, '0345349520'), - (11816, '0886776554'), - (11817, '0002243776'), - (412, '0385491107'), - (179, '0786209542'), - (412, '0385720955'), - (1234, '0751510610'), - (714, '0743442245'), - (1086, '0571168639'), - (2911, '0142002003'), - (11818, '0330480952'), - (9415, '0758203888'), - (11819, '3596282756'), - (54, '006109868X'), - (11820, '0451208846'), - (11821, '0684867427'), - (1337, '0060520507'), - (4711, '0425184498'), - (4712, '0425184498'), - (1473, '0767915593'), - (11822, '0451196813'), - (10700, '1889853038'), - (412, '0860681297'), - (281, '0553212664'), - (435, '0385319002'), - (920, '0330482076'), - (920, '0060294655'), - (11823, '0316057401'), - (11824, '0316057401'), - (780, '0316777722'), - (4347, '0340682272'), - (5227, '0345376927'), - (5227, '0345347994'), - (4905, '0747230307'), - (11825, '0399511156'), - (11826, '0870946595'), - (11827, '0870946595'), - (11828, '0070145121'), - (11827, '007014530X'), - (3571, '0767904427'), - (723, '0679723161'), - (7820, '0618066136'), - (2661, '0451458478'), - (11829, '0805052046'), - (11830, '0345447212'), - (11831, '0140276300'), - (11832, '0140276300'), - (11833, '0140276300'), - (612, '0099143712'), - (11834, '0721401023'), - (11835, '0721401023'), - (11836, '0140234209'), - (43, '0140252525'), - (3247, '1550541129'), - (11837, '0767903382'), - (11838, '156924703X'), - (10961, '0156012022'), - (3571, '0767902041'), - (1203, '0312283377'), - (1277, '0671679430'), - (6353, '0143033603'), - (6353, '0140283641'), - (11839, '0340728256'), - (11840, '0140285822'), - (11841, '0140277439'), - (76, '0684853868'), - (11842, '1894294424'), - (11843, '0679767207'), - (1395, '0679455116'), - (11844, '1552782395'), - (9989, '0771054602'), - (6767, '0375724834'), - (11845, '0771095651'), - (9877, '0679724362'), - (11846, '0312135092'), - (7060, '015100658X'), - (1269, '015100658X'), - (11847, '0385333641'), - (351, '0345417941'), - (712, '0385720467'), - (6338, '0771041837'), - (665, '0684803356'), - (665, '0684865726'), - (1002, '0679731156'), - (11848, '0006385370'), - (11849, '0676971997'), - (11850, '074341005X'), - (1665, '0140291091'), - (2341, '1569471169'), - (11851, '0920897533'), - (11852, '0312205546'), - (11853, '0312205546'), - (11854, '0385333706'), - (11855, '1552634523'), - (2046, '0802137849'), - (7140, '0006480608'), - (7140, '0002244098'), - (3284, '014029984X'), - (11856, '1550548409'), - (11857, '0864922299'), - (11858, '1895411416'), - (11859, '1861590466'), - (11858, '1861591799'), - (2911, '0670872202'), - (11860, '0141000252'), - (11861, '1551924579'), - (3607, '0771014902'), - (4007, '0385475772'), - (11862, '0771014538'), - (10445, '0679767770'), - (4565, '0452272726'), - (4565, '0525941916'), - (4565, '0452270073'), - (11863, '1552633470'), - (11862, '1552630110'), - (11862, '1550135570'), - (11864, '0312301731'), - (4501, '0312267568'), - (412, '0521662605'), - (4768, '0345419030'), - (9315, '0684850273'), - (1175, '1573229717'), - (2912, '1573227749'), - (70, '0440574862'), - (11865, '0312168675'), - (11866, '0312144504'), - (11867, '0312144504'), - (11868, '0312144504'), - (8054, '0671726730'), - (11869, '0060275855'), - (5766, '067944999X'), - (822, '0061099058'), - (3885, '0486268756'), - (1627, '0486270645'), - (11870, '0553273353'), - (11871, '1566475961'), - (11872, '1566475961'), - (145, '0399133453'), - (5406, '0380714752'), - (11873, '0805401539'), - (3755, '0805401539'), - (11874, '0385054580'), - (11875, '0812923634'), - (1169, '0446341339'), - (11876, '0671775464'), - (1747, '0679454756'), - (11877, '0881441791'), - (665, '0684174715'), - (11878, '0849934176'), - (11877, '0849937019'), - (11879, '042519485X'), - (11880, '0930117018'), - (11881, '0553269674'), - (11882, '0553269674'), - (11883, '0440227828'), - (11884, '0849906873'), - (2964, '067179342X'), - (81, '0375702903'), - (4677, '0689821719'), - (545, '0060172754'), - (2168, '042517428X'), - (2224, '0446608041'), - (2224, '0446609307'), - (11885, '1570649669'), - (11886, '0312038208'), - (1210, '0743458311'), - (11887, '0345414462'), - (11888, '0380786761'), - (131, '0061094781'), - (2242, '0425156745'), - (9198, '0451197143'), - (714, '0451191986'), - (2513, '0451191986'), - (11889, '0812512766'), - (4647, '0451458753'), - (11890, '0451174976'), - (11891, '0425164101'), - (2517, '0553577565'), - (11892, '0553577565'), - (11893, '0553577565'), - (286, '0380778726'), - (287, '0380778726'), - (1164, '0553580256'), - (2681, '0345362497'), - (11894, '0702220957'), - (1605, '0786868104'), - (8148, '1557044791'), - (1409, '0679720227'), - (5251, '0452282276'), - (7728, '006440031X'), - (258, '006440031X'), - (618, '0590649191'), - (5608, '0590462245'), - (5609, '0590462245'), - (11895, '0374453071'), - (11894, '0374453071'), - (11896, '0374453071'), - (485, '0380725231'), - (1158, '0836218817'), - (2501, '0553560077'), - (3969, '0380800780'), - (11897, '0312962606'), - (10556, '0440944597'), - (11898, '0451528417'), - (11899, '0451528417'), - (11900, '0451528417'), - (3848, '0553239759'), - (2269, '0380811804'), - (644, '0440223253'), - (11901, '045120834X'), - (11900, '0451210727'), - (4730, '0886774616'), - (6444, '0886774616'), - (5967, '0061080969'), - (8372, '082177512X'), - (11902, '0553562835'), - (11903, '0553562835'), - (1164, '0553572350'), - (9119, '0312104952'), - (2468, '067087762X'), - (1159, '0670826472'), - (1159, '067088796X'), - (5464, '0446393746'), - (3434, '0312969228'), - (635, '0061096105'), - (1880, '0804118906'), - (1801, '0807083054'), - (11904, '0807083054'), - (2218, '0684824728'), - (2219, '0684824728'), - (11905, '1592980414'), - (11906, '0312327188'), - (568, '0027582000'), - (11407, '0027582000'), - (11907, '0670874914'), - (11908, '0670874914'), - (70, '0670868434'), - (7456, '0670868434'), - (70, '0395498589'), - (7456, '0395498589'), - (1697, '1573220825'), - (11909, '0140548572'), - (11910, '0140548572'), - (618, '0807563277'), - (11911, '0345352491'), - (3278, '0395713730'), - (1246, '0385176228'), - (1247, '0385176228'), - (1646, '0345335236'), - (11912, '0312112629'), - (11913, '0156001128'), - (11914, '0688120202'), - (11915, '0688120202'), - (11916, '156619945X'), - (11917, '156619945X'), - (11918, '0809117541'), - (1597, '0451528212'), - (10479, '0451528212'), - (3099, '0380794012'), - (8981, '0439087171'), - (11919, '0020223722'), - (11920, '0380009471'), - (4261, '0156189216'), - (970, '0743466527'), - (921, '0440218101'), - (1298, '0440404193'), - (11921, '0874832772'), - (179, '0061097667'), - (3848, '0440229510'), - (971, '0671521500'), - (2964, '0671521500'), - (8277, '0671521500'), - (11922, '0671521500'), - (8277, '1551668459'), - (11923, '0934257507'), - (7831, '0380817624'), - (11924, '0345422473'), - (137, '0394578074'), - (11925, '0060193700'), - (11926, '0618033874'), - (11927, '034530263X'), - (3327, '0440495563'), - (11928, '0945397542'), - (11929, '0945397542'), - (11930, '034543885X'), - (11931, '0740718770'), - (11932, '0740718770'), - (11933, '0740718770'), - (2513, '0385304854'), - (5589, '0385304854'), - (11934, '0767916220'), - (11935, '0786863153'), - (11936, '0786863153'), - (11937, '0141001976'), - (11938, '0874779901'), - (11939, '0836230671'), - (1158, '0836218655'), - (1158, '0836220986'), - (1158, '0836220730'), - (4376, '0345330455'), - (4376, '0345326342'), - (11382, '0688108059'), - (7774, '0688108059'), - (5685, '0688108059'), - (841, '0689818769'), - (842, '0689818769'), - (1089, '0679006826'), - (2902, '0811801802'), - (4094, '0451167872'), - (720, '0671008978'), - (11940, '1569248281'), - (11941, '0684815990'), - (11942, '087754042X'), - (11943, '0877796130'), - (11944, '0877796130'), - (11945, '0877796130'), - (11946, '038078047X'), - (2120, '0671683829'), - (11947, '0671683829'), - (6639, '0345377702'), - (11948, '0345433017'), - (11949, '0525938346'), - (11950, '0060960833'), - (11951, '0809276984'), - (11952, '0930878450'), - (11953, '0930878450'), - (11954, '0930878450'), - (11955, '0767903617'), - (11956, '1563053462'), - (11957, '1563052377'), - (11958, '0517881225'), - (11959, '0060955597'), - (3733, '0696010976'), - (11960, '1556701799'), - (11961, '0912656506'), - (11962, '1859674801'), - (11963, '1579590225'), - (11964, '1579590225'), - (11965, '0316139289'), - (11966, '0316139289'), - (11967, '0688113133'), - (11968, '0761106332'), - (11969, '0762400072'), - (11970, '0762400072'), - (11971, '0762400072'), - (7642, '0762400072'), - (11957, '0894802046'), - (11956, '0894802046'), - (11972, '0894802046'), - (11973, '0684818701'), - (11974, '0684818701'), - (11975, '0684818701'), - (11954, '0028610105'), - (11976, '0028610105'), - (11977, '076110481X'), - (11978, '076110481X'), - (11957, '0894803921'), - (11956, '0894803921'), - (11979, '0785813640'), - (11978, '1563051729'), - (11980, '1563051729'), - (11981, '0024103411'), - (11982, '0024103411'), - (11983, '0898151899'), - (1158, '0836217268'), - (8544, '0836217268'), - (11984, '0896103145'), - (11985, '0882681265'), - (11986, '044652705X'), - (11987, '044652705X'), - (11988, '044652705X'), - (794, '0786862343'), - (11989, '1561792535'), - (1479, '0684844001'), - (1478, '0684844001'), - (11990, '0316099813'), - (11991, '0060094745'), - (11992, '0803709773'), - (11993, '0803709773'), - (11994, '076790849X'), - (11995, '0452267072'), - (11996, '0913589357'), - (8750, '0894861611'), - (11997, '0684867672'), - (4908, '0060977744'), - (1096, '0060931221'), - (2933, '014050639X'), - (2932, '014050639X'), - (11998, '0870679546'), - (11999, '0618043012'), - (12000, '0618043012'), - (12001, '0618043012'), - (3267, '0590458981'), - (735, '0679744398'), - (760, '0140177388'), - (7754, '0439076668'), - (3812, '0590819755'), - (414, '0553251996'), - (12002, '0935180915'), - (12003, '0786000821'), - (5560, '0671563076'), - (92, '0441359175'), - (5560, '0671522663'), - (11382, '0385185596'), - (712, '0395866502'), - (12004, '0849908280'), - (12005, '0824816285'), - (9238, '0399504877'), - (578, '0060964073'), - (578, '0060964065'), - (578, '0060964057'), - (12006, '1573061727'), - (12007, '093049248X'), - (7669, '0689866976'), - (12008, '0689866976'), - (705, '0743442911'), - (994, '0060256680'), - (994, '0060256745'), - (12009, '0425166422'), - (12010, '0312965478'), - (3969, '0380778785'), - (409, '0374525234'), - (12011, '0804816255'), - (12012, '0804816255'), - (12013, '0679411089'), - (12014, '0871134942'), - (11894, '0374423075'), - (12015, '0374423075'), - (12016, '0312959966'), - (12017, '0060987510'), - (1970, '0140468811'), - (4200, '0786885416'), - (138, '0395860296'), - (1259, '0802115454'), - (12018, '0802115454'), - (6438, '0451206363'), - (12019, '0140148450'), - (4677, '0020446500'), - (12020, '0736401954'), - (12021, '0380731398'), - (12022, '0435905554'), - (12023, '031242258X'), - (12024, '0740713957'), - (8496, '0609601032'), - (12025, '0760700761'), - (12026, '0786882506'), - (12027, '1880985020'), - (12028, '0871566230'), - (12029, '0871566230'), - (12030, '0807014133'), - (12031, '0868614726'), - (578, '0060924926'), - (10983, '0394752910'), - (6180, '0679734406'), - (1191, '0679451145'), - (12032, '0385298293'), - (2904, '0684852756'), - (4898, '0671892614'), - (12033, '0525934197'), - (12034, '0440486971'), - (12035, '0440486971'), - (12036, '0440401038'), - (12037, '0763611999'), - (12038, '0763611999'), - (978, '0763611999'), - (12039, '0515128872'), - (1938, '0671000721'), - (8827, '0671000721'), - (12040, '0316460842'), - (243, '0439162521'), - (12041, '0809232057'), - (12042, '0590406205'), - (258, '0590406205'), - (2239, '0590213113'), - (438, '0590213113'), - (4774, '0688046266'), - (12043, '0688046266'), - (12044, '0446522570'), - (12045, '0151006040'), - (12046, '0060955694'), - (12047, '0763615676'), - (12048, '0152018255'), - (12049, '0152018255'), - (12050, '1564020703'), - (12049, '1564020703'), - (12051, '0375810838'), - (1075, '0688106390'), - (12052, '0688106390'), - (12051, '0688106390'), - (1471, '0761121323'), - (1470, '0761121323'), - (1472, '0761121323'), - (12053, '0023376627'), - (12054, '0062734547'), - (12055, '0060931213'), - (12056, '0517093650'), - (12057, '0307020460'), - (12058, '0307020460'), - (12059, '0440412234'), - (2738, '0064402053'), - (3456, '0425095517'), - (3457, '0425095517'), - (12060, '0451163443'), - (760, '014017737X'), - (12061, '0449130320'), - (1816, '0671041444'), - (12062, '1573061565'), - (12063, '1573061565'), - (4836, '1566473209'), - (12064, '1566473209'), - (1755, '0440952522'), - (12065, '188712876X'), - (8120, '188712876X'), - (12066, '0590981811'), - (12067, '0553274422'), - (8847, '0064403319'), - (4600, '0380818973'), - (11312, '0440409683'), - (423, '1573229628'), - (1801, '1888363363'), - (3924, '0525936327'), - (12068, '0890876797'), - (2771, '0201626705'), - (5918, '0671204971'), - (70, '0440322049'), - (274, '0140328696'), - (5016, '0140328696'), - (4934, '0156028778'), - (12069, '0916291456'), - (12070, '0375826688'), - (12071, '0743244427'), - (12072, '0743244427'), - (12073, '0910043590'), - (12074, '0910043590'), - (553, '0451196856'), - (7456, '0395304482'), - (12075, '0590630954'), - (9031, '0899198546'), - (7004, '0899198546'), - (12076, '0201107120'), - (12077, '0201107120'), - (12078, '0812521021'), - (9, '0446351709'), - (4586, '0140390316'), - (12079, '0140390316'), - (12080, '0786704608'), - (12081, '0684853779'), - (2928, '0889104999'), - (12082, '0889104999'), - (12083, '1555913458'), - (12084, '0316548189'), - (12085, '0385468628'), - (12086, '0385336780'), - (10561, '0399238794'), - (12087, '0374529035'), - (12088, '0385507836'), - (12089, '0385507836'), - (12090, '0385507836'), - (1031, '0060953225'), - (274, '0553151657'), - (274, '0553150979'), - (12091, '1578400619'), - (12092, '1578400619'), - (12093, '1578400619'), - (12094, '1578400619'), - (1129, '1578401860'), - (12091, '1578401860'), - (12095, '1578401860'), - (12096, '1578400600'), - (12097, '1578400600'), - (12098, '1578400600'), - (12099, '0385315511'), - (12100, '0877845824'), - (8567, '0813511690'), - (12101, '0385471432'), - (12102, '067973743X'), - (1987, '1574780255'), - (11178, '0679769781'), - (733, '0525938850'), - (274, '0880291230'), - (7280, '0440226198'), - (274, '0140055770'), - (3221, '0394743180'), - (11146, '0449912744'), - (4141, '1551667215'), - (12103, '0064402371'), - (12104, '0064402371'), - (5308, '0671521012'), - (5155, '0671871390'), - (12105, '0399233881'), - (12104, '0399233881'), - (599, '0307122379'), - (12106, '067187893X'), - (12107, '067187893X'), - (10156, '067187893X'), - (12108, '067943979X'), - (12109, '1559720093'), - (8104, '1573420387'), - (12110, '0394849558'), - (4419, '0375502025'), - (12111, '1566911605'), - (12112, '1566911605'), - (12113, '0451199634'), - (12114, '0451199634'), - (2517, '0441007368'), - (12115, '1573241180'), - (12116, '1573241180'), - (12114, '1573241180'), - (12117, '1573241180'), - (12118, '0743225961'), - (12119, '0743225961'), - (12120, '0312161271'), - (682, '1890132322'), - (330, '0805002545'), - (960, '0452265169'), - (12121, '0452265169'), - (12122, '0962307203'), - (11894, '0374413312'), - (12014, '0374413312'), - (12123, '0449218228'), - (12124, '0449218228'), - (12125, '1885167504'), - (12126, '0711919518'), - (10561, '0399238786'), - (12127, '0307021742'), - (12128, '030701021X'), - (592, '030701021X'), - (12129, '030701021X'), - (7330, '0307001040'), - (12130, '0307001040'), - (593, '0307001040'), - (12131, '0307001342'), - (12132, '0307001342'), - (12133, '0307030717'), - (12134, '0307030717'), - (12135, '0307302024'), - (12136, '0307302024'), - (777, '0717288234'), - (1416, '0717288234'), - (12137, '0689804520'), - (12138, '0689804520'), - (12139, '0439213614'), - (12140, '0439213614'), - (3791, '0439381282'), - (12141, '0439381282'), - (12142, '0439381282'), - (12143, '0816714584'), - (3413, '0590341952'), - (6916, '0590341952'), - (12144, '0448343606'), - (12145, '0448343606'), - (12146, '0590334271'), - (12147, '0394851455'), - (12148, '0590689908'), - (7569, '0590689908'), - (11382, '0590738720'), - (11384, '0590738720'), - (12149, '0590464639'), - (12150, '0590464639'), - (3543, '0590411853'), - (3544, '0590411853'), - (12151, '0590411853'), - (12152, '0590411853'), - (12153, '0394840704'), - (12154, '0307020908'), - (12155, '0307020908'), - (12156, '0307988384'), - (12157, '0307988384'), - (12158, '0307010309'), - (12159, '0307010309'), - (12160, '0307002101'), - (12161, '0307002101'), - (12162, '0307002101'), - (12157, '0307010945'), - (12163, '0307010945'), - (5143, '0307601900'), - (3280, '0307001369'), - (3280, '0307301400'), - (12164, '0307010856'), - (12165, '0307010856'), - (1721, '0152420371'), - (12166, '088138044X'), - (12167, '0141309199'), - (11199, '0141309199'), - (12168, '0141309199'), - (12169, '0425153061'), - (7356, '0446674249'), - (12170, '0440400597'), - (12171, '0440400597'), - (5057, '188521135X'), - (12172, '188521135X'), - (12173, '0865476268'), - (1159, '0140274782'), - (12174, '0156717204'), - (1586, '0307960374'), - (12175, '0307960374'), - (12176, '0307960374'), - (12146, '0394837037'), - (12177, '0380017199'), - (12178, '1573060194'), - (12179, '0618164723'), - (176, '1400045088'), - (1109, '081120068X'), - (2637, '081120068X'), - (664, '0380707799'), - (2968, '0061096164'), - (12180, '1558538445'), - (12181, '1558538445'), - (12182, '0879236671'), - (12181, '0879236671'), - (559, '0312954468'), - (10799, '0965574911'), - (12183, '0394889568'), - (12184, '0064430677'), - (12185, '0064430677'), - (12186, '0689304374'), - (12187, '0964335905'), - (11507, '0060812451'), - (12188, '0738861618'), - (12189, '0312167989'), - (12190, '0824813928'), - (8921, '0679781277'), - (5937, '0865470545'), - (12191, '0345440145'), - (12192, '0026098407'), - (1325, '0060167688'), - (6096, '0689846258'), - (11016, '0060812508'), - (3636, '0066211662'), - (12193, '1401300014'), - (12194, '1561633259'), - (8179, '1561633259'), - (1699, '055328942X'), - (12195, '0425167054'), - (11864, '0140083049'), - (12196, '0767900316'), - (12197, '0767900316'), - (12198, '0684863871'), - (12199, '0836236637'), - (12200, '0316597058'), - (12201, '0316597058'), - (12202, '0316597058'), - (12203, '0312922728'), - (12204, '1551520559'), - (3456, '0425103285'), - (3457, '0425103285'), - (12205, '0553342762'), - (241, '0553574086'), - (12206, '0553287575'), - (12207, '0970159404'), - (17, '0757300618'), - (18, '0757300618'), - (12208, '0757300618'), - (12209, '0757300618'), - (1801, '0445205377'), - (12210, '0446610798'), - (3280, '0307986241'), - (12211, '0446611328'), - (1471, '0761125493'), - (1470, '0761125493'), - (1480, '0761125493'), - (12212, '1931686408'), - (12213, '039923392X'), - (12214, '0967418305'), - (12215, '0967418305'), - (12216, '1566471575'), - (12217, '1566471575'), - (12218, '0816704317'), - (12219, '0816704317'), - (12220, '1556114753'), - (247, '0449908453'), - (5101, '0553568779'), - (4476, '0061097489'), - (890, '0440221048'), - (501, '0345394267'), - (5101, '0385420951'), - (6390, '0836261313'), - (2286, '0449909360'), - (4614, '0892965711'), - (49, '0679429883'), - (1571, '0762102519'), - (12221, '0385242395'), - (1754, '0671003364'), - (5101, '0380714868'), - (5101, '0380711877'), - (3379, '0345375351'), - (3035, '0812568672'), - (913, '0446515868'), - (12222, '0446523186'), - (12223, '0553140175'), - (12224, '0786860472'), - (1892, '0671694170'), - (2576, '0399132066'), - (12225, '0070590826'), - (1753, '0312983603'), - (565, '0553106341'), - (1726, '0399144927'), - (2045, '0399143807'), - (49, '0345404785'), - (5101, '0425158608'), - (4477, '0380728168'), - (5102, '0515121282'), - (534, '068480297X'), - (571, '0399139710'), - (252, '0375704892'), - (12226, '0671875817'), - (4794, '0553575260'), - (1876, '0553092650'), - (5101, '0385468520'), - (12227, '0892965835'), - (1013, '0553264680'), - (252, '0451191951'), - (168, '0451191951'), - (49, '0679429891'), - (12228, '0061009881'), - (129, '0316693863'), - (247, '0449224392'), - (10758, '0553575945'), - (585, '0451184726'), - (12229, '0440237513'), - (12230, '0375709045'), - (574, '0345389409'), - (12231, '0066210690'), - (2825, '0743201957'), - (12232, '0425160920'), - (12233, '0451404270'), - (12234, '0425173305'), - (12235, '0451409485'), - (713, '0399145850'), - (7917, '0151003580'), - (1858, '037571412X'), - (889, '0446667900'), - (1591, '0805056645'), - (937, '0786881011'), - (552, '0380730820'), - (6703, '0821765957'), - (128, '0446604232'), - (12236, '0060914289'), - (12237, '0345366395'), - (3608, '0805208488'), - (39, '0517084791'), - (12238, '0312253974'), - (12239, '0312253974'), - (1939, '0517702134'), - (1094, '0312169345'), - (12240, '0684837765'), - (10448, '0807070971'), - (12241, '0020447019'), - (12242, '0060916559'), - (585, '0525939695'), - (12243, '0312264143'), - (2538, '0446527912'), - (7356, '0679762051'), - (1737, '0553578774'), - (5103, '0380790432'), - (5295, '0553581481'), - (12244, '0553571702'), - (3374, '0061044393'), - (347, '0446403237'), - (347, '0446604062'), - (2028, '0399146245'), - (3971, '0679753117'), - (5110, '0671708104'), - (5110, '0671898744'), - (5110, '0671898752'), - (5110, '0671695843'), - (5110, '0671708120'), - (1732, '0449223132'), - (5212, '0373710240'), - (12245, '0373710194'), - (4313, '0373217250'), - (5370, '0373217250'), - (3469, '037371033X'), - (11600, '0373709331'), - (5226, '0373709870'), - (1821, '0373217242'), - (12246, '0373217242'), - (5132, '0373471599'), - (906, '0425067858'), - (2504, '0671036602'), - (3071, '0671036602'), - (973, '0553560980'), - (12247, '0756401518'), - (906, '0425174727'), - (7508, '0740721984'), - (12248, '0061319481'), - (7081, '0446526681'), - (2661, '0312875568'), - (12249, '0886779561'), - (4794, '0345361326'), - (5319, '0312971958'), - (5319, '0312970978'), - (12250, '1582340978'), - (12251, '0789480646'), - (377, '0553276069'), - (4390, '0451209850'), - (5319, '0312968329'), - (12252, '0740723227'), - (6206, '0740723227'), - (5313, '0836282868'), - (1759, '0140280898'), - (490, '0060084022'), - (11321, '0380784491'), - (12253, '0790009072'), - (12254, '0140238530'), - (12255, '1878067125'), - (12256, '014025644X'), - (12249, '1582343187'), - (12257, '0553247468'), - (5319, '0312966695'), - (5313, '0836268237'), - (5946, '140004832X'), - (944, '0812514300'), - (12258, '0061057878'), - (2695, '0515081574'), - (1094, '0553581112'), - (12259, '1567312292'), - (12260, '0380806355'), - (129, '0446611085'), - (5313, '0740704567'), - (1094, '0553581058'), - (5319, '0515075019'), - (12261, '0345443128'), - (12262, '0872863654'), - (5319, '0425144690'), - (12263, '0908652658'), - (12262, '0908569734'), - (7508, '0740728946'), - (5860, '0393325172'), - (12264, '1892514877'), - (3482, '0140119507'), - (3482, '0140299939'), - (3482, '0140092862'), - (3482, '0140081518'), - (5644, '1841954608'), - (12265, '1841954608'), - (1261, '0909486727'), - (10033, '0684856328'), - (12266, '0312313810'), - (12267, '0824817060'), - (12268, '0375414290'), - (12269, '0340401079'), - (1732, '0394537602'), - (1396, '0806518561'), - (12270, '006051406X'), - (9360, '0375502971'), - (12271, '0670825212'), - (138, '0618219153'), - (2100, '0892131012'), - (217, '0679722769'), - (11321, '0380780879'), - (12272, '0786709324'), - (7706, '0060503467'), - (12273, '140004538X'), - (12274, '0618246940'), - (1349, '0618246940'), - (873, '1570089949'), - (12275, '0932379435'), - (6696, '0066212901'), - (12276, '1558171665'), - (2695, '0380728257'), - (3307, '0141002166'), - (2143, '0792265289'), - (12277, '0156006898'), - (12278, '0156006898'), - (12279, '0156006898'), - (4169, '1570629137'), - (12280, '0312252854'), - (12281, '0312287984'), - (5319, '0312966717'), - (5319, '0312964285'), - (5319, '0312969902'), - (5319, '0312966059'), - (12282, '1563335506'), - (12281, '0684850400'), - (12283, '1575663783'), - (1160, '0316107093'), - (12284, '0395836220'), - (12285, '0743422287'), - (12286, '0380842939'), - (2694, '0061093084'), - (2694, '0061099015'), - (585, '0451197399'), - (12287, '0889104646'), - (1851, '0889104646'), - (8213, '0152050167'), - (4101, '0151003130'), - (12288, '0312978863'), - (12289, '0525946578'), - (3434, '0312282664'), - (488, '0380732343'), - (1352, '0670031909'), - (485, '0380978415'), - (554, '055356773X'), - (8213, '0790004062'), - (12290, '076271235X'), - (12291, '076271235X'), - (960, '0679750533'), - (4354, '038000741X'), - (1001, '0553251481'), - (4354, '0345326490'), - (142, '0451179285'), - (202, '014003613X'), - (12292, '0002712172'), - (12293, '0140099271'), - (1094, '0553577808'), - (944, '0812561864'), - (4213, '0790000458'), - (12294, '1565120507'), - (12295, '0060936150'), - (183, '0399149562'), - (12296, '0312966849'), - (12297, '0751501220'), - (12298, '0684853043'), - (12299, '0688021174'), - (12300, '0688021174'), - (1432, '0718146298'), - (12301, '0946487758'), - (137, '0446344672'), - (5319, '0425143538'), - (11807, '0743457471'), - (5319, '0515077003'), - (5319, '0515075345'), - (5319, '0312966709'), - (1747, '0802135161'), - (5319, '0312973144'), - (5319, '0515076279'), - (5319, '0515078514'), - (5319, '0515075078'), - (5319, '0515085928'), - (11321, '0380780860'), - (12302, '0060093595'), - (12303, '0449004279'), - (1002, '0684844826'), - (1554, '0061052582'), - (12304, '0802133525'), - (12305, '0880299193'), - (12306, '0743243412'), - (12307, '0316365521'), - (1213, '0684872536'), - (12308, '0743411943'), - (12309, '0789305186'), - (5319, '0515076066'), - (377, '0553261096'), - (187, '0812574745'), - (485, '0380816547'), - (12310, '0316137251'), - (12311, '0151003378'), - (12312, '0060002433'), - (3955, '0887300405'), - (554, '0312042779'), - (6185, '0451182979'), - (1483, '0142000892'), - (4794, '0553575295'), - (12313, '0679729771'), - (12314, '0066212545'), - (12315, '0312119313'), - (2608, '0345430948'), - (4794, '0553575287'), - (10870, '0394735307'), - (12316, '0394735307'), - (12317, '0060394366'), - (12318, '1565123352'), - (7703, '0375505172'), - (12008, '0312282060'), - (12319, '0971263906'), - (12294, '0684831376'), - (12320, '0385495420'), - (2695, '0451186346'), - (12312, '0394747232'), - (12321, '0966086503'), - (2694, '0061092002'), - (1628, '0451206002'), - (377, '0553234978'), - (485, '0684810972'), - (485, '0312951469'), - (12322, '0898866065'), - (2690, '0140043519'), - (1494, '0140043519'), - (658, '0451165624'), - (12323, '1850514496'), - (12324, '0312969880'), - (12325, '1892327988'), - (12326, '0066214440'), - (485, '0671881884'), - (12327, '0312273126'), - (4794, '0553575279'), - (12328, '0966941411'), - (12329, '0394741919'), - (6414, '0394741919'), - (9978, '055358281X'), - (12294, '0066211239'), - (1048, '0441363946'), - (12330, '0671042297'), - (485, '0380978407'), - (4794, '0553109243'), - (151, '0618012710'), - (7452, '0618012710'), - (3434, '0312282621'), - (3587, '0374129851'), - (12331, '1569471568'), - (7316, '0060958111'), - (7946, '0312966679'), - (7946, '0312963238'), - (1046, '0375709118'), - (12332, '1558746927'), - (1395, '0679441239'), - (223, '0345438817'), - (108, '0312198493'), - (2713, '0553261940'), - (2713, '0553261568'), - (2713, '0553258125'), - (2713, '055325295X'), - (2713, '0553251309'), - (2713, '0553247166'), - (12333, '055325944X'), - (1214, '0671682849'), - (4426, '067164257X'), - (1214, '0671656570'), - (4237, '0671640453'), - (3779, '0440202558'), - (3779, '0440202515'), - (1337, '0060090383'), - (563, '0425135020'), - (564, '0425135020'), - (555, '0871138190'), - (12334, '006103004X'), - (12335, '006103004X'), - (12336, '006103004X'), - (129, '0446600458'), - (760, '055327824X'), - (284, '0553211765'), - (719, '0451403754'), - (554, '0553107240'), - (12256, '0517574985'), - (12337, '0836221443'), - (12338, '0836221443'), - (12339, '0312861230'), - (369, '0399142401'), - (12340, '0684872706'), - (12341, '0684872706'), - (12342, '0310231876'), - (12343, '0310231876'), - (1282, '0684871262'), - (1282, '0451188489'), - (12344, '0970816308'), - (3779, '0312063571'), - (822, '0070064512'), - (6026, '0385499825'), - (12345, '0722536305'), - (12346, '0836270320'), - (12347, '0836270320'), - (12348, '1560438487'), - (12349, '1560438487'), - (185, '1565075315'), - (12350, '0385315724'), - (12351, '0761517049'), - (2618, '0739400614'), - (17, '1558746625'), - (18, '1558746625'), - (17, '1558744592'), - (18, '1558744592'), - (12352, '1558744592'), - (12353, '1558744592'), - (6470, '0670032379'), - (11576, '0425186326'), - (9419, '0446610674'), - (63, '0440224594'), - (12354, '0553066684'), - (12355, '0739417991'), - (553, '0670878847'), - (12356, '0688160344'), - (719, '0060193751'), - (4623, '0446516953'), - (12357, '0375412336'), - (1265, '0553288105'), - (12358, '0586025944'), - (1265, '0586062009'), - (309, '055326981X'), - (12359, '0946626820'), - (12360, '0946626820'), - (12361, '0375755365'), - (12362, '0375755365'), - (12262, '1869414365'), - (5918, '0684818442'), - (12363, '0890876517'), - (230, '0380766558'), - (5080, '0310217601'), - (12364, '0803289065'), - (12365, '0803289065'), - (12366, '0803289065'), - (12367, '0805401725'), - (12368, '0708942008'), - (12369, '0310243882'), - (5357, '0764220330'), - (1092, '0380812061'), - (2145, '0890876789'), - (12370, '0836246047'), - (2808, '0805210288'), - (12371, '0062512234'), - (602, '0803298188'), - (12372, '0803298188'), - (12373, '0803298188'), - (630, '082177462X'), - (1099, '0140149902'), - (12374, '0385334060'), - (12375, '039914983X'), - (12376, '0743230191'), - (715, '0679767185'), - (638, '0060925582'), - (12377, '037570177X'), - (4217, '0380714647'), - (12378, '0380714647'), - (12379, '0765305569'), - (2902, '0811831620'), - (606, '0886776430'), - (8407, '0886776430'), - (5418, '0553564935'), - (12380, '0743422937'), - (325, '0345338715'), - (326, '0345338715'), - (12381, '0435909592'), - (1329, '0385413017'), - (325, '0345403959'), - (326, '0345403959'), - (5418, '0553285246'), - (12382, '0394178637'), - (2825, '0380718839'), - (12383, '9974560004'), - (2454, '0679740074'), - (12384, '0786648287'), - (12385, '0786648287'), - (1616, '0679727124'), - (12386, '015640057X'), - (2724, '0140309594'), - (2726, '0140309594'), - (501, '0451205235'), - (12387, '0804120021'), - (12388, '0449909433'), - (4938, '0802137954'), - (1432, '0684822652'), - (12389, '038547640X'), - (12390, '1580291023'), - (12391, '1580291023'), - (12392, '1580291023'), - (12393, '0316896586'), - (12394, '015600514X'), - (12395, '0441005608'), - (12396, '0345371631'), - (5418, '0380789833'), - (433, '0689860064'), - (1748, '0937295353'), - (1748, '1562475355'), - (10909, '1562475355'), - (1748, '0937295418'), - (1748, '1562470078'), - (397, '0451524381'), - (12397, '0451524381'), - (11830, '0805066128'), - (12398, '068817163X'), - (479, '0553569155'), - (12399, '0316735116'), - (12400, '0060520825'), - (12401, '0671517325'), - (3983, '0316785644'), - (12402, '0899193846'), - (5301, '0425169871'), - (6577, '081296697X'), - (3793, '081296697X'), - (6639, '067974245X'), - (12403, '0375506128'), - (12404, '1573061425'), - (12405, '0879052651'), - (2799, '0879052651'), - (12406, '0688177026'), - (12407, '1558612203'), - (12408, '1558612203'), - (1002, '0684872730'), - (12409, '0393316580'), - (12410, '0449911438'), - (367, '0804117683'), - (1158, '0836217012'), - (12411, '0140447954'), - (12412, '0140447954'), - (536, '0446600660'), - (841, '0399236260'), - (2912, '1573220485'), - (12413, '0375757430'), - (12414, '0880707232'), - (412, '0385491034'), - (12415, '0380727943'), - (3632, '0374527075'), - (12416, '0801855578'), - (12417, '0374134669'), - (6517, '0679772936'), - (3247, '0312194404'), - (12418, '0064431290'), - (12417, '0064431290'), - (12419, '0684808943'), - (7499, '0380814110'), - (12420, '1580172466'), - (129, '0446677388'), - (10438, '0679762108'), - (12421, '0312315600'), - (12422, '0811214206'), - (12423, '0811214206'), - (1012, '0553072455'), - (12424, '0060914440'), - (154, '0385498055'), - (12425, '0399518231'), - (12426, '0399518231'), - (12427, '0679749519'), - (12428, '0761513116'), - (12, '0679731946'), - (2157, '0679745327'), - (12429, '7119020412'), - (12430, '0130866172'), - (12431, '0130866172'), - (12432, '0130866172'), - (12433, '0929701364'), - (12434, '067975444X'), - (12435, '0671028502'), - (2749, '0671047426'), - (12436, '0385313152'), - (12437, '0451202112'), - (12438, '0451202112'), - (12439, '059527059X'), - (12440, '0345390016'), - (2656, '0449221431'), - (217, '0140186832'), - (12441, '0140186832'), - (12440, '0140186832'), - (5513, '0060929855'), - (2593, '0380792478'), - (1600, '0670839809'), - (1213, '0679426612'), - (12442, '0471349976'), - (12443, '0679769420'), - (5052, '044990542X'), - (2021, '0152022341'), - (560, '0816752087'), - (561, '0816752087'), - (12444, '0001714600'), - (2533, '0395906954'), - (12445, '0689831803'), - (12446, '0689831803'), - (7338, '0880016620'), - (664, '0758201885'), - (12447, '0873492862'), - (12448, '0873492862'), - (12449, '0688167241'), - (12450, '1580083986'), - (4253, '1864503157'), - (3952, '0688167802'), - (12451, '0688067700'), - (12452, '0446528595'), - (12453, '0140275010'), - (12454, '185585662X'), - (12455, '185585662X'), - (6429, '0140109595'), - (1055, '0520206738'), - (549, '0880015942'), - (2157, '0394741188'), - (403, '1566198798'), - (220, '0060002093'), - (12456, '0807083178'), - (4209, '0679722181'), - (12457, '1896891063'), - (3051, '038089887X'), - (2543, '034540453X'), - (12414, '1562827960'), - (11198, '1567313736'), - (12458, '031202259X'), - (12459, '0762723742'), - (12460, '0684833840'), - (2689, '0805056084'), - (1308, '0374153248'), - (12461, '0786863951'), - (12462, '185828869X'), - (12463, '185828869X'), - (12464, '0684857022'), - (1375, '0440403790'), - (12465, '0517220121'), - (4787, '0805067922'), - (12466, '0449907562'), - (330, '0878575103'), - (12467, '1877988243'), - (12468, '1877988243'), - (81, '0785799524'), - (2902, '0877017883'), - (2963, '0446604100'), - (252, '0440222028'), - (4937, '0316199648'), - (12469, '1556522460'), - (12470, '0525485082'), - (12471, '0525485082'), - (12472, '0525485082'), - (17, '1558748865'), - (18, '1558748865'), - (12473, '1558748865'), - (12474, '1558748865'), - (1228, '1573223425'), - (2535, '0679753761'), - (7499, '0060081961'), - (12475, '0486200701'), - (479, '0553096060'), - (12476, '0813525764'), - (4028, '0380730200'), - (12477, '0451403800'), - (12478, '0312290888'), - (330, '0679404864'), - (12479, '0062507583'), - (2656, '0449210502'), - (7338, '0316816884'), - (12480, '0931122562'), - (1459, '0312187688'), - (1460, '0312187688'), - (12481, '0399519785'), - (6538, '0060958294'), - (12482, '0684827107'), - (3451, '0609803875'), - (8548, '1882413768'), - (2454, '0871133741'), - (12483, '0871133741'), - (3635, '0805068015'), - (136, '0671793578'), - (6721, '0375750525'), - (11043, '0802133991'), - (8921, '060960516X'), - (12484, '0316197475'), - (12349, '0140122060'), - (4026, '1555835821'), - (991, '0140133488'), - (12485, '0930773284'), - (1214, '0671729470'), - (12486, '0590865420'), - (9834, '0771021828'), - (277, '0156814161'), - (12487, '0912310782'), - (10652, '0912310782'), - (3780, '0452276756'), - (1089, '0676904955'), - (12488, '0676904955'), - (12489, '0676904955'), - (12490, '0028606736'), - (12491, '0028606736'), - (12492, '0970038704'), - (12493, '0970038704'), - (12494, '0970038704'), - (12495, '0970038704'), - (6761, '0140248927'), - (12496, '0767900340'), - (1998, '0345385764'), - (2397, '0060976993'), - (8642, '0679740775'), - (12497, '052594642X'), - (12498, '0140147292'), - (12499, '0553255282'), - (6941, '0688168248'), - (12500, '0684830922'), - (12501, '0714530603'), - (7171, '0714530603'), - (1268, '0151489262'), - (1269, '0151489262'), - (1706, '015670160X'), - (12502, '0385133448'), - (1325, '0345318145'), - (12503, '0440127068'), - (2288, '0312198647'), - (2513, '0804113629'), - (12504, '0963608894'), - (12505, '0963608894'), - (12506, '0963608894'), - (11427, '0590428837'), - (220, '0060932384'), - (2593, '038071843X'), - (1158, '0836218515'), - (3255, '0395744415'), - (575, '0385484275'), - (12507, '0684848295'), - (12508, '0684848295'), - (369, '0373243790'), - (11354, '0395528151'), - (12509, '1559240059'), - (5044, '0345346491'), - (4043, '0385319401'), - (12510, '0060096772'), - (206, '1569470553'), - (12511, '0671892673'), - (1158, '0836211499'), - (2150, '0330294008'), - (12512, '0961655321'), - (12513, '0961655321'), - (51, '0679759263'), - (12514, '0393900401'), - (12515, '0393900401'), - (8163, '0688177905'), - (1511, '0140064834'), - (12516, '0345336712'), - (5707, '0345440129'), - (640, '067975556X'), - (12517, '0679783571'), - (1164, '0553380672'), - (12518, '1885061781'), - (723, '0679727256'), - (723, '0679727272'), - (12519, '031228425X'), - (12520, '0962054364'), - (12521, '0962054364'), - (988, '0670031542'), - (330, '0399145672'), - (12522, '1864501936'), - (12523, '1864501936'), - (2997, '0060976772'), - (12524, '0140280456'), - (9352, '0385499345'), - (4043, '0385334931'), - (12525, '0688163769'), - (12526, '1860469345'), - (4852, '0679742409'), - (12527, '0912365307'), - (12528, '0295962194'), - (12529, '0295962194'), - (4692, '0345419081'), - (1194, '0671663143'), - (12530, '015600464X'), - (12531, '156833186X'), - (1616, '0375704248'), - (6447, '0452282543'), - (12532, '0836221818'), - (461, '0679432477'), - (666, '0736900640'), - (1213, '034539044X'), - (2513, '0804109796'), - (545, '0060168609'), - (1159, '0140131604'), - (51, '0679735461'), - (6880, '0940242737'), - (12533, '1588370011'), - (330, '0517595753'), - (1271, '0609602330'), - (2782, '0679462988'), - (11115, '0517595532'), - (12534, '044020867X'), - (12535, '0964303558'), - (415, '068480123X'), - (5690, '0679734589'), - (2143, '0679422587'), - (3571, '0767902025'), - (282, '0156006197'), - (252, '0375724842'), - (12536, '0385720408'), - (12537, '0385720408'), - (12279, '0312143834'), - (5095, '0452279070'), - (12538, '0553582801'), - (60, '0425137473'), - (252, '0425137473'), - (644, '0425137473'), - (12539, '0425137473'), - (7084, '0451407261'), - (364, '0060198133'), - (12540, '0030640075'), - (1213, '0345310799'), - (5564, '0446391719'), - (12541, '038077514X'), - (4559, '006092411X'), - (223, '0449912787'), - (1055, '037550155X'), - (2336, '0670892742'), - (12542, '0449216241'), - (459, '0316313076'), - (12543, '0345384237'), - (4492, '0156007819'), - (12544, '1550171631'), - (12545, '1550171631'), - (5622, '0393311031'), - (12546, '0684849135'), - (220, '0060928417'), - (1505, '0140097112'), - (12547, '0156006340'), - (12548, '0140119795'), - (4002, '1573220280'), - (12549, '0880014857'), - (3780, '0452281202'), - (367, '0671885332'), - (12550, '1571430148'), - (12551, '1571430148'), - (12552, '1571430148'), - (12553, '1571430148'), - (1308, '0140040188'), - (12554, '0330305336'), - (12555, '0843133805'), - (2808, '0671644076'), - (1605, '0553110438'), - (351, '034536676X'), - (161, '0812217268'), - (12556, '0451525116'), - (12557, '0451525116'), - (12558, '0451525116'), - (5918, '0671640488'), - (2598, '0140284621'), - (2598, '0140030395'), - (12559, '0394716310'), - (12560, '0843733756'), - (679, '0449209105'), - (1985, '0679743839'), - (12561, '1404306781'), - (7240, '0140011722'), - (12562, '0140011722'), - (367, '0449908747'), - (12563, '0915230151'), - (7368, '0618127046'), - (12564, '156305115X'), - (938, '0060972122'), - (2660, '0671754629'), - (1308, '0394741714'), - (2342, '0452261848'), - (81, '0449910571'), - (5918, '0671242954'), - (1055, '0449214370'), - (1001, '0553148923'), - (5371, '0393048144'), - (2471, '0140046860'), - (12565, '0671254308'), - (4814, '0679456945'), - (5085, '0375400656'), - (11232, '0312252803'), - (2035, '078688908X'), - (12566, '0452268427'), - (12567, '0452268427'), - (12568, '0060970782'), - (4814, '0671881604'), - (11836, '0375501959'), - (7873, '0811202208'), - (7022, '0446677922'), - (12569, '1568360266'), - (12570, '0767900057'), - (12571, '0767900057'), - (573, '0312192037'), - (12572, '0316299235'), - (12573, '1842152130'), - (4195, '1567180892'), - (5398, '0877286868'), - (5398, '0877283478'), - (1282, '0743437802'), - (12574, '0771099940'), - (12575, '0771099940'), - (550, '0743410599'), - (12576, '0316890642'), - (937, '0440224012'), - (5488, '0786012676'), - (12577, '075153286X'), - (12578, '0349114021'), - (12579, '0552997803'), - (12580, '0566074184'), - (4130, '0566074184'), - (168, '0140250409'), - (12581, '034082607X'), - (1305, '0753804549'), - (12582, '0722176082'), - (12583, '0006372570'), - (368, '0330293796'), - (12584, '034060977X'), - (12226, '0751511935'), - (12585, '0962500631'), - (12586, '0962500631'), - (12587, '0951980424'), - (138, '0140071814'), - (1291, '055299619X'), - (12588, '1857021037'), - (12589, '014302812X'), - (12590, '014302812X'), - (12591, '014302812X'), - (12592, '0345460391'), - (1186, '0553566067'), - (12593, '0694016446'), - (237, '0345433327'), - (12594, '038550943X'), - (12595, '0671519867'), - (12596, '0375811729'), - (11224, '0375811729'), - (4107, '0786015772'), - (937, '0786880112'), - (12597, '0688174590'), - (12598, '0525947302'), - (5975, '0525947132'), - (12599, '0743229061'), - (12600, '0316102121'), - (12601, '0312192428'), - (1937, '0440220440'), - (1937, '0440222702'), - (1937, '0440222680'), - (1937, '0440220459'), - (12602, '0753700891'), - (11067, '0060509406'), - (12603, '1578566363'), - (136, '0743448677'), - (12604, '0060560754'), - (10768, '0451211200'), - (12605, '0849939372'), - (12606, '1892065444'), - (12607, '0330487949'), - (109, '031225234X'), - (12608, '1583143203'), - (863, '0060595620'), - (641, '0312209517'), - (108, '0312284683'), - (6546, '0060595833'), - (4354, '0345278666'), - (3503, '0380800373'), - (1341, '0373440081'), - (10315, '0385319347'), - (12609, '0743229584'), - (136, '0451160436'), - (4435, '0743454510'), - (435, '037541388X'), - (369, '0515126772'), - (11320, '0060086386'), - (1234, '0767903854'), - (12610, '0446521507'), - (12611, '0446521507'), - (12612, '0451407482'), - (12613, '0060393149'), - (12614, '1899712186'), - (459, '0316317713'), - (12615, '1902852427'), - (137, '0345367081'), - (1730, '042513749X'), - (1194, '0671042696'), - (5686, '0671042696'), - (3280, '0394882695'), - (2239, '0590456601'), - (2239, '0590425013'), - (2239, '0590424971'), - (2239, '0590437208'), - (2239, '0590435124'), - (5608, '0590401386'), - (2239, '0590438999'), - (7426, '0140548130'), - (12616, '0060093412'), - (12617, '0590880144'), - (12618, '068984042X'), - (12619, '068984042X'), - (12620, '0689841930'), - (12621, '0689841930'), - (5677, '0380491710'), - (2239, '0590442996'), - (5828, '0750012706'), - (11071, '0396077897'), - (2239, '0590420070'), - (962, '0590433466'), - (12622, '0743423569'), - (5705, '1889186414'), - (12623, '1889186414'), - (12624, '0451211189'), - (12625, '0451206355'), - (12626, '0312850514'), - (12627, '0312269374'), - (4190, '0425129551'), - (12628, '0060565519'), - (580, '1400060923'), - (12629, '0843951710'), - (12630, '0399151273'), - (1987, '0316570826'), - (5717, '0843951575'), - (9326, '0743412761'), - (12631, '0060199105'), - (12632, '0451205758'), - (12633, '0385334370'), - (12634, '0972915710'), - (5705, '0972915710'), - (334, '0312983832'), - (5718, '1557736154'), - (563, '039915180X'), - (12635, '0061032212'), - (12631, '0451211197'), - (3458, '081296814X'), - (12636, '1401300189'), - (12637, '1840680059'), - (5705, '1892950138'), - (5715, '1892950138'), - (5718, '1887368698'), - (5705, '1887368698'), - (12638, '0312286449'), - (12639, '0345445724'), - (12640, '0843953276'), - (5268, '084395177X'), - (4414, '0553298186'), - (3366, '0553298917'), - (936, '0970998716'), - (59, '055310666X'), - (543, '0385335520'), - (543, '0385335490'), - (8372, '0758205511'), - (11203, '0758205511'), - (1834, '0758205511'), - (59, '0553801430'), - (12634, '0066212995'), - (6457, '1402201478'), - (5718, '0425145662'), - (12641, '0312289510'), - (4294, '0786014555'), - (12077, '0843952199'), - (12642, '0843953292'), - (5405, '0843951826'), - (12643, '0843952571'), - (12644, '0743242548'), - (12645, '1592861857'), - (12646, '189295012X'), - (1094, '0553382527'), - (1116, '0553573691'), - (12647, '037324598X'), - (3115, '1551662604'), - (12633, '0972930930'), - (12648, '0972930930'), - (5718, '1887368353'), - (12649, '1887368353'), - (5718, '1587670674'), - (8688, '0312272758'), - (5718, '0843950404'), - (5405, '0843950463'), - (1571, '0451194004'), - (6517, '0679753362'), - (5705, '0843952032'), - (550, '0743453468'), - (2150, '0679735771'), - (5405, '0843951036'), - (1092, '0671014188'), - (1244, '0345447832'), - (2769, '0345439007'), - (11368, '0843951532'), - (5268, '0843951532'), - (1815, '0843951532'), - (3863, '0765345080'), - (3115, '1551669730'), - (5405, '0843951818'), - (56, '0140620222'), - (12647, '1894815351'), - (5214, '0373230117'), - (1832, '0373230117'), - (5705, '1889186384'), - (12650, '1889186384'), - (5718, '1887368566'), - (12648, '1887368566'), - (5718, '1892950618'), - (12648, '1892950618'), - (543, '0385336306'), - (12651, '0399151729'), - (12652, '0399151729'), - (5485, '0671738763'), - (2583, '0892967269'), - (5485, '0679410554'), - (12653, '0373785070'), - (9384, '0786015578'), - (12654, '1551667207'), - (5405, '0843946903'), - (4371, '0671886118'), - (5485, '0679410562'), - (3241, '1551669676'), - (5405, '0843948507'), - (3504, '0373250304'), - (369, '0373218974'), - (2695, '0743445597'), - (12655, '0373245645'), - (543, '0440224810'), - (3241, '1551667401'), - (373, '0446602159'), - (12656, '0156027127'), - (12657, '0679412921'), - (369, '0373218966'), - (3241, '155166416X'), - (369, '0373239963'), - (543, '0440170796'), - (12658, '0767902238'), - (142, '0670844527'), - (5766, '0380731479'), - (12659, '084395275X'), - (12660, '0743223128'), - (5002, '0843951958'), - (12661, '0061097748'), - (12662, '0451410963'), - (543, '0743474104'), - (5416, '0312984618'), - (402, '048627165X'), - (5302, '0312253079'), - (12663, '0811823555'), - (465, '006053429X'), - (1880, '0345439244'), - (128, '0446360716'), - (9923, '0345439155'), - (5080, '031020707X'), - (376, '0786868139'), - (12664, '0312988249'), - (12625, '0812568729'), - (59, '0553582941'), - (1965, '0425181928'), - (1212, '0425181928'), - (12665, '0671744690'), - (1428, '0446519537'), - (1094, '0553578243'), - (12666, '0743412664'), - (5098, '0380820498'), - (5405, '1587670127'), - (5405, '1587670348'), - (3115, '0373834365'), - (12667, '0743219341'), - (12668, '0553123904'), - (5405, '031213150X'), - (158, '0345396065'), - (5950, '0881848581'), - (12625, '0881848581'), - (1628, '055308920X'), - (237, '0553074741'), - (12669, '0553100335'), - (5583, '0671743066'), - (5560, '0671521705'), - (12670, '0679419853'), - (12671, '031205811X'), - (12672, '031205811X'), - (12673, '031205811X'), - (3379, '067940211X'), - (916, '0891076182'), - (1628, '0553089196'), - (2913, '0688088686'), - (59, '067942525X'), - (5416, '0312968078'), - (60, '067100042X'), - (240, '0553291009'), - (3647, '0525939571'), - (12674, '0786710829'), - (3924, '0525940456'), - (1206, '0802139280'), - (2913, '0743446259'), - (12631, '0451207874'), - (2583, '0446531510'), - (12675, '006000133X'), - (5818, '0060286881'), - (3924, '0060531061'), - (543, '0385299087'), - (59, '0425140032'), - (3277, '0684829924'), - (12676, '0060196572'), - (12631, '0451202821'), - (12677, '055327998X'), - (2966, '055327998X'), - (2002, '068815333X'), - (463, '0345422783'), - (12678, '0385497369'), - (12679, '0345383826'), - (12680, '1879402297'), - (12681, '1879402297'), - (3973, '0553213520'), - (3974, '0553213520'), - (12682, '0553213520'), - (2105, '0062509586'), - (2106, '0062509586'), - (2107, '0062509586'), - (397, '1855013592'), - (4934, '0151006261'), - (12683, '0345350685'), - (6087, '0345350685'), - (12684, '0345350685'), - (12685, '0020631502'), - (5789, '0441644856'), - (11218, '0440234859'), - (5789, '0441468721'), - (5789, '0345374053'), - (12686, '0345427998'), - (12687, '0451451538'), - (12688, '0446608483'), - (39, '0553024248'), - (12689, '043938074X'), - (12688, '043937989X'), - (12688, '0684833727'), - (9056, '0823026906'), - (1410, '0590603795'), - (1411, '0590603795'), - (12690, '0195283910'), - (12691, '055305614X'), - (7761, '0879733438'), - (12692, '0879733438'), - (12693, '0590437747'), - (12694, '0590437747'), - (12695, '0060097825'), - (12696, '0060097825'), - (12697, '014017799X'), - (12698, '1553373405'), - (12699, '1553373405'), - (4262, '0689831935'), - (5142, '0375802975'), - (12700, '0375802975'), - (5143, '0375802975'), - (12701, '0395440904'), - (12702, '0395440904'), - (1410, '0394805666'), - (1411, '0394805666'), - (12703, '0689823215'), - (598, '0689823215'), - (12704, '0689823215'), - (2212, '0439625602'), - (12705, '0689831781'), - (12706, '0689831781'), - (12369, '0696209063'), - (433, '0345335082'), - (7, '0399146857'), - (10198, '0590672975'), - (12707, '0553370227'), - (12708, '0789429624'), - (12709, '0789429624'), - (12710, '0894809938'), - (12711, '0894809938'), - (12712, '0590403729'), - (12713, '0590403729'), - (257, '0064400484'), - (12714, '0064400484'), - (5521, '0064441075'), - (5522, '0064441075'), - (6848, '055325605X'), - (6849, '055325605X'), - (5441, '0440228956'), - (12715, '0452264030'), - (12716, '156138190X'), - (2619, '0842359249'), - (1194, '0448095122'), - (1194, '0448095106'), - (596, '0440417945'), - (4685, '0440417945'), - (974, '0394800028'), - (975, '0394800028'), - (12717, '0312491670'), - (12718, '1579121489'), - (12719, '1579121489'), - (12720, '1579121489'), - (12721, '0816713170'), - (12722, '0064462080'), - (12723, '0767915445'), - (9968, '1931484198'), - (12724, '1931484198'), - (1970, '0140469710'), - (12725, '0940319004'), - (12726, '0698119487'), - (12725, '0698119487'), - (12725, '0399234969'), - (12725, '039923246X'), - (977, '0060284773'), - (978, '0060284773'), - (962, '0689844077'), - (12727, '0689844077'), - (12674, '0060278226'), - (4415, '0689831285'), - (10916, '0689831285'), - (3787, '0590386336'), - (12728, '0786817577'), - (12729, '0786817577'), - (12711, '059042582X'), - (12730, '059042582X'), - (9097, '0425187012'), - (12731, '0785258442'), - (6848, '0553272500'), - (6849, '0553272500'), - (12732, '0395549701'), - (2675, '0395881560'), - (12733, '0316454311'), - (12734, '0840758634'), - (12735, '0312277350'), - (12736, '1885593155'), - (12737, '1885593155'), - (12738, '0913589721'), - (94, '0785335927'), - (10316, '0156806797'), - (12739, '1584850388'), - (5142, '0590623524'), - (12740, '1889209023'), - (12741, '1561384380'), - (12742, '1561384380'), - (12743, '1561384380'), - (12744, '0942237129'), - (12745, '0942237080'), - (12746, '156476737X'), - (12747, '156476737X'), - (12748, '156476737X'), - (12749, '0812043650'), - (12750, '0812043650'), - (12751, '0844283738'), - (12752, '0844283460'), - (12753, '0812046439'), - (12754, '0812046439'), - (12755, '0517590662'), - (12754, '0517590670'), - (7771, '0679889337'), - (12756, '0819310433'), - (12757, '1551050900'), - (12758, '0312291450'), - (12759, '1565123085'), - (9448, '1575724103'), - (9448, '0688177484'), - (12760, '0881661775'), - (10652, '0881661775'), - (12761, '1562313010'), - (1410, '0679989560'), - (1411, '0679989560'), - (12762, '0764800582'), - (12763, '0385029039'), - (1464, '0451525264'), - (12764, '0451525264'), - (12765, '0451525264'), - (12766, '0760734046'), - (12767, '1888992042'), - (9429, '0517562898'), - (9357, '0517562898'), - (12768, '0805063331'), - (12769, '0819830992'), - (12770, '0819830992'), - (12771, '0819830992'), - (12772, '1931709300'), - (12773, '0963903209'), - (12774, '0898706785'), - (12775, '0689829507'), - (12776, '0689829507'), - (12777, '1851825924'), - (12778, '0898706602'), - (12771, '0898704367'), - (7402, '0590414488'), - (12779, '0971412936'), - (12780, '0971412936'), - (12781, '0971412936'), - (12782, '0971412936'), - (5142, '0439141346'), - (7758, '0439141346'), - (12783, '0842373624'), - (12784, '0842373624'), - (12785, '193264542X'), - (12786, '193264542X'), - (12787, '193264542X'), - (2156, '193264542X'), - (12788, '078681859X'), - (12789, '0553381075'), - (12790, '0898707609'), - (6064, '1570642389'), - (12791, '0809256851'), - (12792, '078943413X'), - (12793, '0805068422'), - (12794, '0805068422'), - (12795, '0671882538'), - (12796, '1569552924'), - (12797, '1569552924'), - (12798, '037312354X'), - (12799, '0829411739'), - (12800, '0829411739'), - (12801, '089870569X'), - (12802, '0879736739'), - (12803, '089283756X'), - (12804, '0879735775'), - (12805, '1928832180'), - (12806, '0964261081'), - (12807, '0964261081'), - (3779, '0312134517'), - (12808, '1576581454'), - (12809, '1576581454'), - (12810, '0439236398'), - (12811, '0439236398'), - (231, '0385319800'), - (6702, '0618159789'), - (12812, '0740718665'), - (136, '0740718665'), - (2963, '0445408510'), - (12813, '0140350144'), - (12814, '0140350144'), - (817, '0553271717'), - (12815, '0060163402'), - (2695, '0060163402'), - (1782, '0060163402'), - (12816, '0060163402'), - (1194, '0671730762'), - (1194, '0671730703'), - (1194, '0671730711'), - (105, '0553241346'), - (2937, '055321229X'), - (12817, '0553210602'), - (9454, '0553210602'), - (12818, '0553210602'), - (12819, '0385418957'), - (12820, '0395346355'), - (12821, '0395346355'), - (12822, '0871932148'), - (12823, '0871932148'), - (12824, '0871932148'), - (12825, '0451521692'), - (12826, '0451521692'), - (12827, '0380722658'), - (12828, '0316150460'), - (12829, '0316150460'), - (7873, '0822210940'), - (284, '0140436499'), - (12830, '0140436499'), - (4187, '0553126121'), - (12831, '0553126121'), - (397, '0451526783'), - (397, '0553212818'), - (5572, '0553212818'), - (5573, '0553212818'), - (12832, '0819310395'), - (12833, '055357857X'), - (585, '0345360354'), - (817, '0312989741'), - (284, '0816714630'), - (2233, '0590934899'), - (599, '0307016277'), - (12834, '0440464854'), - (5673, '0590262173'), - (911, '0590262173'), - (1428, '0590847740'), - (3633, '0064401863'), - (5273, '0064401863'), - (12835, '0064401863'), - (568, '0020868308'), - (12836, '0307302709'), - (12710, '0307302709'), - (12837, '0451410106'), - (12838, '039470648X'), - (12839, '0896380653'), - (12840, '0896380653'), - (1509, '1575668335'), - (3026, '0590341502'), - (3027, '0590341502'), - (3028, '0590341502'), - (12841, '0449221059'), - (12840, '0449212599'), - (12840, '0449214990'), - (12842, '0684808129'), - (12843, '0840796560'), - (12844, '0750926376'), - (2306, '0804101167'), - (12845, '0821748726'), - (12846, '0445407549'), - (2590, '0446602809'), - (12847, '1575666278'), - (624, '0553573004'), - (183, '0515087122'), - (1194, '0671700359'), - (913, '0380798565'), - (12848, '1575663309'), - (1509, '1575663309'), - (12849, '1590600762'), - (12850, '1590600762'), - (312, '0895269163'), - (1194, '067173069X'), - (1194, '0671700375'), - (12851, '006091565X'), - (1091, '006104363X'), - (12852, '0965608646'), - (1509, '1575662191'), - (436, '0449213323'), - (436, '0446314889'), - (436, '0449001725'), - (12836, '0345394380'), - (12836, '0345389484'), - (433, '0671721097'), - (7692, '0671721097'), - (12853, '0671721097'), - (2654, '038542406X'), - (607, '0449006700'), - (12854, '0452263301'), - (8754, '0932194540'), - (12855, '0030628822'), - (12856, '0380793474'), - (12857, '0380793474'), - (397, '0517093588'), - (9054, '0517093588'), - (12858, '0425165698'), - (7882, '0939149222'), - (12859, '0939149222'), - (397, '0671509810'), - (12860, '0671509810'), - (12861, '0671509810'), - (12862, '0671661590'), - (12863, '0399136134'), - (4604, '0671435248'), - (12864, '0786880376'), - (12865, '0786880376'), - (12866, '0674445449'), - (4882, '0517597985'), - (2126, '0312966199'), - (12867, '1579830021'), - (2287, '0449212238'), - (12868, '0446522899'), - (213, '0316769517'), - (6514, '0523413920'), - (12869, '0831400889'), - (2927, '0375701214'), - (12870, '0375701214'), - (1362, '0449239047'), - (368, '0515119520'), - (4080, '0553345745'), - (12871, '0380008971'), - (12872, '0916392392'), - (12873, '0449205452'), - (12874, '093033003X'), - (1093, '0394724550'), - (6639, '0394562720'), - (4604, '0684847515'), - (823, '0140063315'), - (433, '034529873X'), - (5898, '034529873X'), - (1091, '0061043494'), - (12875, '0345370767'), - (12876, '0590763563'), - (12877, '0590763563'), - (822, '0061099813'), - (2546, '1575665670'), - (848, '0679742298'), - (1871, '038080722X'), - (7944, '0802733670'), - (12109, '0307103803'), - (7084, '0345343247'), - (644, '0345327772'), - (12878, '1557734534'), - (5319, '0515060712'), - (325, '0345300785'), - (325, '0345300793'), - (12879, '0446602744'), - (12880, '0446602744'), - (2458, '1853262005'), - (12881, '0312960743'), - (12882, '0786881623'), - (12883, '0881763004'), - (1194, '0671730509'), - (1194, '0671730541'), - (11885, '0449205320'), - (12884, '1575663740'), - (12885, '0595217354'), - (12886, '0595217354'), - (12887, '0396036619'), - (9924, '0345377443'), - (822, '0449209377'), - (12888, '0816704589'), - (12889, '0816704589'), - (1194, '0448095025'), - (1194, '0448095033'), - (12890, '0448095033'), - (1194, '0448095068'), - (1194, '044809519X'), - (1194, '0448095238'), - (12891, '0448095238'), - (1194, '0448095246'), - (1194, '044809522X'), - (1016, '1576736792'), - (4187, '0553210416'), - (12892, '0553210416'), - (8732, '0671223666'), - (1428, '0590494481'), - (12893, '156987025X'), - (11321, '0380793660'), - (6591, '0553291955'), - (3362, '0806519339'), - (12894, '0761504370'), - (12895, '0761504370'), - (155, '0393048136'), - (631, '0440459516'), - (94, '0590687247'), - (607, '0449149560'), - (909, '0553156756'), - (8585, '0812536339'), - (8586, '0812536339'), - (1194, '0448095211'), - (1194, '0448095203'), - (11321, '0380801493'), - (12896, '0671722182'), - (5673, '0590866338'), - (911, '0590866338'), - (12897, '0590866338'), - (12898, '0671034375'), - (12899, '0716765144'), - (12900, '0716765144'), - (12901, '0716765144'), - (12902, '0670445800'), - (2720, '0439060435'), - (12903, '0307100820'), - (12904, '0307100820'), - (94, '0861128273'), - (6401, '0789405784'), - (10245, '0679819770'), - (4376, '0345370295'), - (6901, '0590444301'), - (12905, '0590444301'), - (12906, '0395743427'), - (12907, '0590275232'), - (599, '0307101991'), - (12908, '0590333194'), - (12909, '0026885522'), - (12910, '0026885522'), - (12911, '0891914927'), - (12912, '0891914927'), - (7477, '0140178414'), - (1194, '0671649175'), - (5821, '0553264842'), - (913, '0445402296'), - (1509, '1575663929'), - (4189, '0393308804'), - (2654, '0449239799'), - (12913, '0671006614'), - (6591, '0553074938'), - (12914, '0312862083'), - (1998, '0394416457'), - (397, '0671727680'), - (11885, '0451149939'), - (11321, '0380809389'), - (2724, '0140311645'), - (11186, '0061098132'), - (596, '0440473519'), - (264, '0590447742'), - (12915, '0446361046'), - (12916, '0446361046'), - (264, '0440495555'), - (12917, '0373264011'), - (12918, '0373264011'), - (12919, '0373264011'), - (12920, '0373264011'), - (2531, '0671047345'), - (596, '0380709546'), - (617, '0380709546'), - (596, '0440454115'), - (1089, '0930328787'), - (12921, '1556380801'), - (12922, '0380006456'), - (5875, '0441002692'), - (5880, '0441873375'), - (6045, '0451525302'), - (12923, '0451525302'), - (7584, '0553240838'), - (5880, '0345274563'), - (12924, '0425179184'), - (12923, '0425185249'), - (12923, '042518272X'), - (12925, '0743410068'), - (2695, '0451198476'), - (2241, '0590448331'), - (12926, '0440442079'), - (5821, '0553152017'), - (12927, '0590482947'), - (12928, '0590443607'), - (815, '0445085452'), - (11427, '0590407252'), - (4774, '055348513X'), - (4774, '0553157248'), - (1157, '0805000739'), - (1194, '0671730738'), - (1432, '0312203039'), - (5441, '0440422256'), - (12929, '0440422256'), - (12930, '0060937793'), - (12931, '0446608270'), - (12932, '0446608270'), - (8732, '0449223558'), - (12933, '0933488327'), - (12934, '0897330854'), - (12935, '0897330536'), - (12936, '0897330536'), - (12937, '0897330536'), - (12938, '0380794063'), - (12939, '0380794063'), - (1626, '0061007358'), - (187, '0812531167'), - (5104, '0425140989'), - (5104, '042515405X'), - (12940, '0425128482'), - (12941, '0060524936'), - (1498, '0812576071'), - (12942, '0062502972'), - (12943, '0062502972'), - (12944, '0062502972'), - (12945, '0440159415'), - (551, '0671450492'), - (5880, '0812541529'), - (624, '042518885X'), - (2513, '0756400988'), - (12946, '0756400988'), - (433, '0756400988'), - (7753, '0440840953'), - (12857, '0425180042'), - (501, '0345374568'), - (5635, '0140367683'), - (12947, '0440430909'), - (3969, '038081563X'), - (12948, '0060953675'), - (956, '0553153277'), - (2940, '0140088121'), - (1259, '0802115160'), - (1468, '0312201656'), - (56, '0451519167'), - (1194, '067173072X'), - (292, '0603550622'), - (12949, '0312207662'), - (2717, '0679844074'), - (2718, '0679844074'), - (250, '0064410722'), - (1422, '0380815605'), - (12950, '0440204739'), - (533, '0553258915'), - (9241, '0553271954'), - (9240, '0553271954'), - (4774, '055315723X'), - (4774, '0553157256'), - (4774, '0553157353'), - (12951, '055314796X'), - (2126, '0553268120'), - (7750, '0345448820'), - (822, '0449237850'), - (6894, '0899197213'), - (12952, '0899197213'), - (1298, '0440486599'), - (12833, '0440495717'), - (1397, '0380705672'), - (12953, '0380705672'), - (8502, '0446400408'), - (551, '0671455281'), - (4774, '0553157345'), - (12954, '1860421016'), - (12955, '1860421016'), - (1428, '0590431390'), - (1428, '0671738666'), - (5758, '0451110641'), - (12956, '0374253536'), - (12957, '0006386369'), - (1626, '0671456865'), - (2029, '0836228995'), - (12958, '0345275306'), - (2288, '0393025616'), - (12959, '0849942195'), - (11356, '0849942195'), - (292, '0583300650'), - (292, '0583300588'), - (292, '0583300359'), - (292, '0583300340'), - (292, '0583300332'), - (292, '0583300324'), - (3322, '1573225312'), - (1733, '0671620193'), - (1013, '0449219461'), - (2279, '0929638298'), - (12960, '0440405157'), - (12961, '0440441099'), - (12962, '0440154138'), - (12963, '0440154138'), - (5880, '0441006361'), - (12169, '0440420326'), - (403, '0451523555'), - (2937, '0451523555'), - (12840, '0449217949'), - (6390, '0449007138'), - (12964, '0440237041'), - (5986, '0449907155'), - (1227, '0679741666'), - (12872, '0575400048'), - (2029, '0836236688'), - (2029, '0836210263'), - (12965, '0809233479'), - (12966, '1580170951'), - (12967, '0345431057'), - (12968, '0345458303'), - (12969, '0929523288'), - (12970, '0879850213'), - (12971, '0394725808'), - (12972, '0848714385'), - (12973, '0848714385'), - (1483, '0670031054'), - (1483, '0670032077'), - (1509, '1575667347'), - (1509, '1575666855'), - (3314, '0449200817'), - (12974, '0671443356'), - (12975, '0671443356'), - (1428, '0590494457'), - (12976, '0590294040'), - (4220, '0590294040'), - (4325, '076241085X'), - (12977, '0312911912'), - (551, '0671438190'), - (9330, '0553247824'), - (12978, '0553251961'), - (9225, '055325362X'), - (5896, '0743200322'), - (5677, '0590537733'), - (5680, '0590537733'), - (12979, '0679883614'), - (12980, '0440475333'), - (264, '0689831404'), - (3097, '0689831404'), - (978, '0064431789'), - (10551, '0486247791'), - (12981, '0590316575'), - (12982, '0590484451'), - (12983, '0590447432'), - (312, '0195003640'), - (12984, '0195003640'), - (12985, '0316784974'), - (2654, '0449221776'), - (3096, '0449242625'), - (1164, '0553096036'), - (2242, '0553288474'), - (7600, '0140340246'), - (1519, '0812504488'), - (12986, '0840741391'), - (2479, '0842346112'), - (7581, '0380717832'), - (1626, '0061093653'), - (906, '0425104060'), - (12853, '0679761802'), - (12987, '0590454412'), - (12810, '0590454412'), - (12235, '0064401510'), - (12988, '0064401510'), - (12989, '0345255585'), - (11204, '0140280464'), - (397, '0671722751'), - (12990, '0449146863'), - (1773, '0061054003'), - (12991, '0802730949'), - (8501, '0446404039'), - (9824, '0380709473'), - (12992, '0380709473'), - (2226, '0449214567'), - (1325, '0345358031'), - (2656, '0449213358'), - (12993, '0553225650'), - (12994, '0553111507'), - (12995, '0879237848'), - (12996, '0879237848'), - (415, '0553213202'), - (885, '0385474903'), - (886, '0385474903'), - (12997, '0770420842'), - (12998, '0553282166'), - (12999, '0553282166'), - (3104, '0553154400'), - (11358, '0380001411'), - (13000, '0679766766'), - (5825, '0310218039'), - (13001, '0452283736'), - (1327, '0385506686'), - (362, '0821744526'), - (5877, '0553569368'), - (13002, '0688179444'), - (13001, '0688179444'), - (1468, '0380006286'), - (281, '0440447682'), - (397, '0671727184'), - (596, '0440760755'), - (571, '0451141083'), - (13003, '0307215873'), - (4426, '0671415085'), - (8154, '0553282980'), - (13004, '0440383145'), - (13005, '0060912596'), - (12098, '0385315546'), - (1387, '0373833865'), - (585, '0345356535'), - (8501, '0380731630'), - (1410, '0590944738'), - (1411, '0590944738'), - (13006, '089577481X'), - (13007, '089577481X'), - (13008, '0590426915'), - (256, '0060507772'), - (261, '0060507772'), - (13009, '0842335935'), - (585, '0449149986'), - (2656, '0449223450'), - (2656, '0449238601'), - (13010, '0316364517'), - (13011, '0828891591'), - (397, '0451518519'), - (2577, '0515121746'), - (5424, '0515121746'), - (2248, '0515121746'), - (13012, '0515121746'), - (6667, '0345326210'), - (4471, '0345428307'), - (13013, '0345307593'), - (2656, '0449238040'), - (2656, '0449238520'), - (397, '0553212982'), - (5572, '0553212982'), - (5573, '0553212982'), - (3635, '0312421036'), - (13014, '0446363278'), - (12883, '157566108X'), - (12883, '1575663562'), - (7452, '0375712992'), - (8912, '0375712992'), - (1509, '1575664992'), - (9817, '039331393X'), - (13015, '039331393X'), - (187, '0345336003'), - (10551, '0345282280'), - (13016, '0345282280'), - (13017, '0312963963'), - (596, '0380709244'), - (617, '0380709244'), - (13018, '0671897861'), - (13019, '0671897861'), - (13020, '0064400468'), - (5877, '0312978650'), - (2126, '0312925581'), - (13021, '0380603926'), - (563, '0425152898'), - (1214, '067172942X'), - (13022, '0316850950'), - (397, '0451521269'), - (10446, '0451521269'), - (13023, '0446352470'), - (635, '0061030597'), - (13024, '039458872X'), - (13025, '0761109196'), - (13026, '0761109196'), - (607, '0449235637'), - (13027, '0671497596'), - (13028, '0140432787'), - (13029, '0140432787'), - (1509, '1575663708'), - (3539, '0394717740'), - (433, '0345314484'), - (433, '0553234595'), - (438, '0440986311'), - (6390, '0345331907'), - (410, '0553275224'), - (13030, '0380423901'), - (9023, '0881843903'), - (13031, '0671534645'), - (9225, '0060974443'), - (9225, '0060974435'), - (433, '0345341678'), - (403, '0553211285'), - (2600, '0553211285'), - (956, '0553242954'), - (13032, '0688040330'), - (1258, '078688505X'), - (4382, '0449149587'), - (11312, '044040407X'), - (596, '044042299X'), - (596, '0440432952'), - (13002, '0307215598'), - (3313, '0440201322'), - (13033, '0440201322'), - (4361, '0451186796'), - (596, '0440772109'), - (596, '0440472415'), - (596, '044040665X'), - (438, '044096895X'), - (4672, '0590433563'), - (256, '0380978954'), - (734, '0140568123'), - (3668, '0140568123'), - (1422, '0380706490'), - (13034, '0837885043'), - (187, '0380759489'), - (1871, '0380793253'), - (563, '0399139141'), - (187, '0345337484'), - (13035, '0898657512'), - (1003, '0393001660'), - (13036, '0393001660'), - (187, '0345318862'), - (187, '0345311078'), - (187, '0345313216'), - (187, '0345317718'), - (2987, '0345327861'), - (5898, '0345327861'), - (9225, '0553250671'), - (377, '0553252542'), - (433, '0812510992'), - (13037, '0671540882'), - (13038, '0671540882'), - (13039, '044900161X'), - (817, '0553294229'), - (13040, '0425101088'), - (187, '034530456X'), - (187, '0345335090'), - (13041, '0802725228'), - (2791, '0671473204'), - (13042, '089081015X'), - (4350, '0446370126'), - (4351, '0446370126'), - (1908, '055322509X'), - (13043, '089622662X'), - (9805, '0961551445'), - (13044, '0425114511'), - (10540, '0425114511'), - (817, '0446360082'), - (12946, '0307122239'), - (13045, '0307122239'), - (13046, '0879058161'), - (13047, '0671038869'), - (533, '0609601008'), - (3051, '0805058664'), - (10882, '0399143939'), - (2242, '0553094653'), - (7744, '0517588455'), - (39, '0345354648'), - (10720, '0312107935'), - (13048, '0553294636'), - (11885, '0449213439'), - (12939, '042513265X'), - (256, '0061020648'), - (13049, '088138013X'), - (2619, '0553228412'), - (2968, '0804111146'), - (13050, '0060675187'), - (169, '0061056014'), - (13051, '0060183136'), - (13052, '0060183136'), - (13053, '0712674527'), - (4679, '0394846664'), - (13054, '0380792036'), - (252, '0609608533'), - (135, '0316678104'), - (281, '0448060191'), - (13055, '0448060191'), - (2654, '0449200558'), - (7935, '0380636778'), - (13056, '0380636778'), - (13057, '0764150987'), - (2525, '0060514698'), - (4195, '1578591147'), - (13058, '0812882776'), - (4276, '0671416367'), - (13059, '1578564271'), - (12625, '0812516389'), - (2179, '0590466771'), - (3379, '034537536X'), - (13060, '089296426X'), - (13061, '089296426X'), - (13062, '0812932064'), - (13063, '0812932064'), - (1859, '0812932064'), - (13064, '0140020845'), - (13065, '0140020845'), - (13066, '0919345174'), - (13067, '1567184006'), - (60, '0671741195'), - (49, '0345386132'), - (10997, '0201489376'), - (13068, '0201489376'), - (13069, '1566890861'), - (13070, '0373441533'), - (13071, '0961696702'), - (13072, '1566260272'), - (13073, '1576734161'), - (1498, '0312871880'), - (13074, '0595096751'), - (13075, '0805237739'), - (13076, '087875539X'), - (13077, '039332298X'), - (723, '185715133X'), - (13078, '0395083567'), - (218, '0425157180'), - (3713, '0553578375'), - (665, '0684179962'), - (218, '0425171094'), - (247, '0449214427'), - (4197, '0345333756'), - (4197, '0345350162'), - (346, '038072362X'), - (13079, '1400031028'), - (4197, '0345333721'), - (13080, '0670910279'), - (13081, '0310978912'), - (7566, '067167739X'), - (13082, '067167739X'), - (13083, '067167739X'), - (13084, '0931674042'), - (13085, '1887166491'), - (13086, '1887166491'), - (1787, '0688065317'), - (247, '0345433262'), - (8750, '0866835024'), - (13087, '0866835024'), - (3081, '0807119563'), - (13088, '0064640353'), - (668, '0446603651'), - (13089, '0156004070'), - (6020, '0486275639'), - (4146, '0688032079'), - (7882, '0446674931'), - (10316, '081120099X'), - (13090, '1577485033'), - (238, '0451176820'), - (13091, '0140092846'), - (13092, '088029700X'), - (13093, '0865476004'), - (3392, '1573241482'), - (13094, '0866835040'), - (13095, '0451200861'), - (5586, '0446387878'), - (63, '0385301499'), - (1010, '0385336764'), - (4354, '0060956445'), - (13096, '0060956445'), - (13097, '0062502239'), - (13098, '096612880X'), - (1957, '0806982276'), - (13099, '0806982276'), - (635, '0060185147'), - (13100, '0805010270'), - (2759, '0425184307'), - (930, '0345409043'), - (60, '0440110653'), - (13101, '0553574701'), - (13102, '0380732084'), - (63, '0385335121'), - (4487, '0671016970'), - (247, '0449225666'), - (13103, '0373263937'), - (6669, '0312093616'), - (13104, '1586602950'), - (13105, '1586602950'), - (13106, '1586602950'), - (13107, '0764563556'), - (13108, '0764563556'), - (13109, '1573229601'), - (208, '1573229601'), - (5843, '0590452991'), - (10088, '0590452991'), - (13110, '0860209261'), - (5128, '0452264510'), - (13111, '0786869445'), - (979, '0786869445'), - (13112, '0380819597'), - (630, '1575667614'), - (13113, '0877935637'), - (13114, '0877935637'), - (13115, '0684856077'), - (5131, '0517597977'), - (8316, '0671567713'), - (13116, '0671537512'), - (368, '0718143515'), - (13117, '0373441517'), - (2249, '1551666219'), - (363, '0380710854'), - (13118, '0140012664'), - (12715, '0773752102'), - (1265, '0441731546'), - (2126, '0553204343'), - (13119, '0201112159'), - (13120, '0782122221'), - (13121, '0782122221'), - (2755, '0782122221'), - (2755, '078212223X'), - (13119, '078212223X'), - (13120, '078212223X'), - (13122, '0782122213'), - (2224, '0345316576'), - (13123, '0770109047'), - (13124, '0060139145'), - (13125, '0060139145'), - (13126, '0345372328'), - (13127, '0671769057'), - (142, '0670220264'), - (1998, '0517422840'), - (6568, '0671229427'), - (6568, '0671230875'), - (6568, '0671673238'), - (6568, '0671492055'), - (6568, '0671218581'), - (13128, '0671502549'), - (12921, '0380379783'), - (1704, '0553566032'), - (1891, '042507272X'), - (1891, '042507160X'), - (13129, '051770689X'), - (13130, '0440107016'), - (5538, '081253073X'), - (13131, '0671655892'), - (1065, '0451452739'), - (13132, '0451452739'), - (1704, '0553569570'), - (3071, '0671877410'), - (3073, '0671877410'), - (1704, '0553281798'), - (4261, '0156729156'), - (13133, '0440500303'), - (13134, '0440500303'), - (9352, '1400031257'), - (13135, '0860917886'), - (13136, '0860917886'), - (13137, '0860917886'), - (1771, '0805210474'), - (13138, '1931561168'), - (13139, '1573229539'), - (13140, '1578194547'), - (13141, '0684869497'), - (6369, '0060937556'), - (13142, '0805072772'), - (13143, '0671224387'), - (13144, '0805207457'), - (13145, '0767904605'), - (13146, '1560254505'), - (13147, '1560254505'), - (653, '081293217X'), - (13148, '0141802812'), - (1870, '0141802812'), - (2599, '0679732233'), - (8104, '0679732233'), - (13149, '0375417206'), - (13150, '0375417206'), - (270, '0192815539'), - (13151, '0192815539'), - (13152, '0679735011'), - (4156, '0875425925'), - (13153, '0393087913'), - (13154, '0252062825'), - (13155, '0375420762'), - (13156, '0877957215'), - (1259, '0802139914'), - (13157, '0802139914'), - (13158, '0738205702'), - (11030, '0743222245'), - (13159, '0971156905'), - (11074, '0804106436'), - (5909, '0395519462'), - (13160, '0452270251'), - (13161, '0452270251'), - (2632, '0452270251'), - (436, '0449219402'), - (13162, '0934211477'), - (13163, '0385491239'), - (13164, '0156027453'), - (2208, '069452350X'), - (13165, '069452350X'), - (236, '0446691798'), - (13166, '1883642434'), - (7961, '1883642434'), - (13167, '0140086412'), - (268, '0961035269'), - (8559, '0961035269'), - (13168, '0452283906'), - (13169, '0060952652'), - (11517, '0449006581'), - (13170, '185799597X'), - (156, '1585670227'), - (979, '0743206371'), - (13171, '0814402860'), - (5560, '0671526065'), - (1308, '0446671304'), - (13172, '038547167X'), - (13173, '0060913983'), - (13174, '0874411033'), - (679, '0874411033'), - (3169, '0345434471'), - (674, '044661078X'), - (13175, '1575667266'), - (3399, '1551669412'), - (13176, '1400047943'), - (13177, '1400047943'), - (13178, '0451205448'), - (13179, '0877142912'), - (13180, '0452284295'), - (5507, '0425190749'), - (10127, '0060517212'), - (5967, '0060548215'), - (6185, '0451197550'), - (6314, '159184021X'), - (13181, '0743442652'), - (13182, '0345434137'), - (13183, '082176845X'), - (13174, '1575664798'), - (6560, '0312970757'), - (6323, '1575667223'), - (6323, '1575667215'), - (24, '0739302213'), - (13184, '0739302213'), - (13182, '038081918X'), - (13185, '037370920X'), - (13186, '0373243146'), - (10376, '0380816830'), - (11662, '0373708513'), - (13187, '0425184315'), - (2247, '0380814390'), - (6318, '0312978723'), - (13188, '0380793806'), - (108, '1551666189'), - (12666, '0743219333'), - (6523, '0373708661'), - (919, '0373708408'), - (550, '0671786601'), - (2964, '0446609188'), - (10195, '037344155X'), - (13189, '0505524228'), - (3084, '0747266395'), - (4136, '0553578758'), - (2258, '0380782340'), - (3468, '0373166125'), - (928, '0373195419'), - (13190, '0373291027'), - (13191, '0849935369'), - (13192, '0373169043'), - (13193, '0373441568'), - (13194, '0373441568'), - (11674, '0373825412'), - (12379, '0671039350'), - (13195, '1890768030'), - (13196, '0312966369'), - (13197, '0312956436'), - (13198, '0671526677'), - (13199, '0671731866'), - (2964, '0821771175'), - (13200, '037316680X'), - (13201, '0373707053'), - (13202, '0312971370'), - (3177, '0505524279'), - (13203, '050552497X'), - (4581, '0312981848'), - (8860, '0373272006'), - (9526, '0373226586'), - (369, '0515133868'), - (5353, '0515133868'), - (13204, '0515133868'), - (13205, '0515133868'), - (13206, '0373217218'), - (12654, '0373217218'), - (13207, '0373710763'), - (1837, '1551668270'), - (13208, '0804119686'), - (13209, '037322608X'), - (13210, '0373226055'), - (13116, '0373259786'), - (12386, '0373790554'), - (13211, '0373226470'), - (3502, '0821773402'), - (1196, '0373834853'), - (373, '0373834853'), - (13212, '037371047X'), - (2964, '0821765221'), - (13213, '0553575066'), - (2963, '0446403830'), - (1214, '074342347X'), - (13195, '0312955421'), - (10193, '0373037147'), - (13214, '0446609005'), - (1214, '0671729454'), - (1214, '0671007718'), - (13215, '0804117438'), - (1112, '1551665506'), - (13216, '0446364819'), - (7532, '0373226780'), - (2161, '0373194870'), - (10389, '0373226802'), - (13217, '0373441436'), - (13218, '0373441436'), - (13219, '0373441452'), - (13220, '0380781565'), - (1268, '9871106181'), - (270, '9507682074'), - (1188, '0451528522'), - (13221, '0451528522'), - (6371, '0803728719'), - (6371, '0803760965'), - (13222, '0803760965'), - (13223, '0553482939'), - (13222, '0553483579'), - (13222, '0553482890'), - (13224, '0061062081'), - (13223, '0061067865'), - (13223, '0061061441'), - (13225, '0061061441'), - (13226, '006106727X'), - (3327, '0440943930'), - (3327, '0440997313'), - (13227, '0553264753'), - (4189, '0393311465'), - (13228, '0140183078'), - (5466, '0192815555'), - (13229, '0192815555'), - (607, '0449208648'), - (824, '0449214281'), - (607, '044918336X'), - (607, '0449150046'), - (13230, '0140104771'), - (13231, '0671827774'), - (4189, '0393000567'), - (3327, '0030074312'), - (13232, '0030074312'), - (13233, '0553211668'), - (4636, '0394550846'), - (13234, '0679737383'), - (13235, '1878424084'), - (13236, '1878424084'), - (284, '0140430032'), - (1679, '0670032670'), - (6581, '0060929952'), - (13237, '0141001682'), - (13238, '0141001682'), - (3752, '0060937742'), - (12850, '0060913568'), - (13239, '0345439163'), - (13240, '0972100539'), - (13241, '1580632068'), - (13242, '1580632068'), - (8680, '0425140040'), - (13243, '0062701649'), - (6591, '0553277944'), - (13244, '1591251478'), - (13245, '1591251478'), - (2029, '0887307876'), - (12468, '1556521952'), - (13246, '1556521952'), - (13247, '1582700230'), - (13248, '1582700230'), - (458, '1567403263'), - (13249, '1567403263'), - (810, '0449002268'), - (13250, '0205187382'), - (13251, '0205187382'), - (13252, '0553345834'), - (13253, '0970866402'), - (13254, '0970866402'), - (13255, '0970866402'), - (5310, '039592684X'), - (7, '039592684X'), - (13256, '159129021X'), - (13257, '0805058001'), - (13258, '0684848376'), - (13259, '0761119396'), - (13260, '0836279077'), - (13261, '0938756605'), - (13262, '0452282691'), - (3813, '0679752927'), - (13263, '1580631797'), - (12850, '006091646X'), - (13264, '0883964368'), - (13265, '0970351704'), - (2259, '031220387X'), - (5695, '0452281636'), - (8093, '0425111911'), - (463, '080410946X'), - (9541, '0312289189'), - (4435, '0743422449'), - (13266, '0425176339'), - (218, '0425176339'), - (1426, '0446359203'), - (13267, '1893705153'), - (231, '0440206529'), - (4988, '0312962258'), - (13268, '0972051007'), - (13269, '0970997582'), - (13270, '0970997582'), - (8813, '0525933654'), - (4948, '0030554381'), - (13271, '0741408155'), - (12240, '0811813401'), - (2628, '0452279593'), - (13272, '096146206X'), - (13273, '0671795694'), - (13274, '1552790401'), - (13275, '0800757769'), - (3779, '0312978383'), - (369, '051511779X'), - (458, '055358264X'), - (2663, '0380978091'), - (13276, '0452271657'), - (1315, '0451175123'), - (2006, '0380756250'), - (13277, '0312420323'), - (13278, '0972386602'), - (578, '0060924802'), - (5953, '037570910X'), - (13279, '0142003514'), - (13280, '0142003514'), - (896, '0142003514'), - (13281, '0394561120'), - (13282, '1574900684'), - (13283, '1574900684'), - (7910, '0312186924'), - (13284, '0440123747'), - (4435, '0688158129'), - (10174, '0312119305'), - (13285, '087905283X'), - (12392, '0316895245'), - (13286, '0393308499'), - (1232, '0312270933'), - (1232, '0679744665'), - (3924, '0452269865'), - (3423, '0385264666'), - (54, '0060927569'), - (7480, '0140424385'), - (7481, '0140424385'), - (1616, '0679457852'), - (4082, '0440167361'), - (1232, '0140157379'), - (312, '0140442618'), - (11531, '0140442618'), - (13287, '0884191338'), - (3224, '0340165634'), - (13288, '0891902309'), - (3224, '0449237923'), - (2981, '0064473511'), - (4738, '0786704799'), - (13289, '0385721765'), - (6452, '0394736656'), - (13290, '0316196614'), - (284, '0451526562'), - (4556, '0451526562'), - (284, '0553210165'), - (13291, '0553210165'), - (401, '0787119784'), - (220, '0060912529'), - (13292, '0393314073'), - (13293, '0672520885'), - (3989, '1577656954'), - (1519, '0451521897'), - (13294, '0451521897'), - (894, '0553273221'), - (13295, '0590422677'), - (1194, '0671646990'), - (281, '0679445102'), - (5975, '0440156998'), - (145, '0425158632'), - (2654, '0449237575'), - (7553, '0140444270'), - (13296, '0140444270'), - (13297, '0140444270'), - (3102, '0742628191'), - (13298, '0812963741'), - (13299, '0812963741'), - (13300, '0192825232'), - (13301, '0192825232'), - (13302, '0192825232'), - (939, '042511306X'), - (2654, '2830202813'), - (13303, '0030119502'), - (2834, '0380017997'), - (4137, '0449207439'), - (2805, '0671755064'), - (8368, '0590424564'), - (13304, '0380775506'), - (13305, '0515116386'), - (8678, '0380754029'), - (13306, '1557739404'), - (13307, '0843941790'), - (13308, '0440206499'), - (2255, '0843935391'), - (13309, '0821754084'), - (13310, '0843935405'), - (13311, '0380778335'), - (13312, '0821746545'), - (1319, '0446365262'), - (14, '0821766430'), - (13313, '0380775794'), - (12654, '0380898802'), - (563, '0425132048'), - (13314, '0061083259'), - (3241, '0061083259'), - (13218, '0446613665'), - (550, '0671786466'), - (129, '0446606189'), - (2823, '0743456181'), - (13182, '0380819201'), - (3182, '0821769332'), - (910, '1551665042'), - (9202, '0515127108'), - (13315, '0515127108'), - (13316, '0515127108'), - (7647, '0515127108'), - (550, '0440215994'), - (2657, '0440235782'), - (13317, '0449146448'), - (2657, '0440237602'), - (13318, '0425196852'), - (2417, '0373218095'), - (2261, '0446612944'), - (1196, '0445206578'), - (3798, '0786889691'), - (5419, '0380780038'), - (13319, '0380793393'), - (108, '155166951X'), - (3549, '0786016418'), - (4330, '0804119503'), - (2913, '0380711532'), - (2913, '0440222877'), - (743, '0821772228'), - (3374, '0061044407'), - (5283, '0821746170'), - (2963, '0445409169'), - (3399, '0380792206'), - (1428, '0590673203'), - (2233, '059067319X'), - (5712, '0446612812'), - (3182, '0821770802'), - (13320, '0821772139'), - (13321, '1551666960'), - (13322, '0743477294'), - (13323, '1551664267'), - (132, '0553803409'), - (60, '074320607X'), - (635, '0060514930'), - (6396, '0446612510'), - (13324, '1551669455'), - (458, '0553581023'), - (1833, '0425192784'), - (4376, '0345319281'), - (4376, '0345318056'), - (4376, '0345312716'), - (4376, '0345312260'), - (4376, '034530912X'), - (13325, '0345307127'), - (4376, '0345302621'), - (4376, '0345287797'), - (550, '0440225043'), - (108, '0373255632'), - (971, '1551661535'), - (1194, '0671000527'), - (128, '0553802542'), - (550, '0671786539'), - (971, '0671034421'), - (13326, '0802775829'), - (13182, '0380807122'), - (13327, '1551665867'), - (13182, '0380807149'), - (13328, '0821771450'), - (13182, '0380795116'), - (13182, '0380795124'), - (7780, '0060539836'), - (8277, '0671567705'), - (13329, '0590448862'), - (13330, '0590448862'), - (1194, '0671019295'), - (3503, '0380800381'), - (1829, '0373072937'), - (13331, '1551665360'), - (13332, '0553237667'), - (13333, '1879960109'), - (7254, '0684865114'), - (13334, '0465015328'), - (6371, '0553272470'), - (3704, '0316955256'), - (59, '0446603392'), - (1706, '055321490X'), - (11396, '0064407713'), - (1308, '0374525080'), - (145, '0399139540'), - (955, '0385315236'), - (175, '0446520950'), - (760, '014005829X'), - (1577, '0312186142'), - (13335, '0446523437'), - (13336, '0064471861'), - (11304, '0064471861'), - (285, '006095129X'), - (13337, '0553256130'), - (13338, '059042792X'), - (729, '060980149X'), - (290, '0671502336'), - (2418, '0671504371'), - (1880, '0449911446'), - (13339, '0451527550'), - (2301, '074343756X'), - (13340, '0743222628'), - (56, '0141439513'), - (5576, '0141439513'), - (1248, '0743225422'), - (13341, '0374278784'), - (270, '159308059X'), - (13342, '159308059X'), - (268, '0060558121'), - (5582, '1573221767'), - (271, '0374199698'), - (13343, '0373250460'), - (93, '0375828192'), - (634, '0399132821'), - (814, '1573220876'), - (93, '044041833X'), - (4726, '0374516812'), - (788, '0156027399'), - (2006, '0380793334'), - (6599, '0553284169'), - (1196, '0399146695'), - (59, '0425047075'), - (59, '0345384377'), - (13344, '1558740872'), - (59, '0425097773'), - (1094, '0312119070'), - (2962, '0553580884'), - (2962, '0553574957'), - (76, '0671891685'), - (5286, '0671891685'), - (13345, '0399146229'), - (132, '0553299468'), - (6007, '0449221229'), - (6007, '0449214362'), - (3693, '0679428887'), - (534, '0399145885'), - (889, '0446602620'), - (2188, '0553271989'), - (9018, '0375753834'), - (6396, '0446522996'), - (13346, '0671546031'), - (115, '0517701766'), - (115, '087795223X'), - (1464, '1853260851'), - (1464, '1853260509'), - (897, '0451202732'), - (2188, '0553266306'), - (13347, '3829028784'), - (2770, '0439286239'), - (1409, '0140180206'), - (13348, '2040160434'), - (1627, '2040160434'), - (13349, '225303987X'), - (13350, '225303987X'), - (13351, '225303987X'), - (13352, '2253006203'), - (13353, '2253006203'), - (199, '2843370744'), - (1523, '1853260908'), - (13351, '2080706195'), - (4050, '0595014283'), - (2814, '2246567629'), - (6732, '2080701819'), - (2770, '0439284031'), - (13354, '2266127756'), - (13355, '9504910017'), - (95, '2070383652'), - (13356, '0192838679'), - (13357, '0192838679'), - (13358, '0192838679'), - (10258, '2070368165'), - (10258, '2070363619'), - (3008, '0375700528'), - (848, '0393323668'), - (1041, '0786930705'), - (1042, '0786930705'), - (1041, '0880386525'), - (1042, '0880386525'), - (13359, '1843500728'), - (13360, '1843430215'), - (13361, '1843430215'), - (301, '0330305735'), - (906, '157270120X'), - (13362, '157270120X'), - (682, '207036240X'), - (906, '2702408648'), - (906, '0425093255'), - (906, '2702426328'), - (906, '2702413722'), - (906, '2253009199'), - (906, '225302001X'), - (13363, '2841110664'), - (7926, '2841110664'), - (1887, '186046310X'), - (13364, '186046310X'), - (13365, '2070516504'), - (13366, '2895400644'), - (13367, '2895400644'), - (13368, '2895400644'), - (4103, '0340551194'), - (13369, '0440505941'), - (13370, '188491036X'), - (6761, '0374119163'), - (13371, '0374119163'), - (13372, '0312242727'), - (13373, '1884910394'), - (13374, '0062734725'), - (2457, '0811814815'), - (4232, '0393320030'), - (2454, '0393320030'), - (13375, '0673181731'), - (13376, '0673181731'), - (13377, '0673181731'), - (13378, '0192813897'), - (13379, '0192813897'), - (13380, '0312010443'), - (13381, '0767903080'), - (3620, '0874778867'), - (13382, '1884910408'), - (13383, '0226103897'), - (13384, '1884910459'), - (13385, '1582970599'), - (7125, '1582970033'), - (13386, '1582970033'), - (13387, '1582970688'), - (13388, '0385499191'), - (13389, '0312166907'), - (13390, '0898796334'), - (1539, '0395489326'), - (13391, '0395489326'), - (2806, '0802132758'), - (6761, '0312421303'), - (13392, '0312421303'), - (13393, '1932360239'), - (81, '0517064596'), - (6761, '0312420285'), - (13391, '0312420285'), - (13394, '0375404538'), - (367, '037540600X'), - (1457, '0679451501'), - (397, '0198117477'), - (13395, '0198117477'), - (13394, '0198117477'), - (13396, '0198117477'), - (13397, '0786706562'), - (13398, '0786706562'), - (13399, '014027281X'), - (6762, '080231323X'), - (6762, '0679420851'), - (13400, '0679420851'), - (1268, '0151002835'), - (1268, '0151001812'), - (5133, '0521576229'), - (5134, '0521576229'), - (5133, '0156001438'), - (10322, '0688145744'), - (13401, '0312205503'), - (13402, '0374280355'), - (13401, '0345404351'), - (13403, '0140275673'), - (2282, '0395544181'), - (3484, '0395544181'), - (6767, '0385491832'), - (11828, '0805052054'), - (11828, '080505202X'), - (585, '1568655800'), - (1755, '0060652861'), - (1600, '0670896764'), - (8627, '0140239375'), - (2483, '0140239375'), - (8627, '0394744209'), - (8627, '0140156011'), - (13404, '0140156011'), - (723, '067972723X'), - (723, '0679727264'), - (723, '0679723439'), - (723, '0679726209'), - (723, '0679727221'), - (723, '0679726098'), - (723, '0679723390'), - (723, '0679727280'), - (723, '0679728864'), - (723, '0679725415'), - (723, '0679410775'), - (13405, '0253212340'), - (5190, '0374292035'), - (13406, '1559704012'), - (13405, '1559704160'), - (54, '0060926597'), - (13407, '081011514X'), - (3480, '081011514X'), - (13408, '0375500804'), - (6745, '0877798079'), - (13409, '089879658X'), - (13408, '1582972540'), - (268, '156389629X'), - (10091, '156389629X'), - (268, '1563890119'), - (296, '1563890119'), - (297, '1563890119'), - (298, '1563890119'), - (13410, '0930289595'), - (13411, '0930289595'), - (268, '156389016X'), - (10092, '156389016X'), - (288, '156389016X'), - (13412, '156389016X'), - (268, '1563890410'), - (10092, '1563890410'), - (297, '1563890410'), - (13413, '1563890410'), - (5787, '0006511767'), - (290, '0440204399'), - (13414, '0385485247'), - (7140, '006019197X'), - (268, '0963094432'), - (118, '0375700137'), - (4051, '081956298X'), - (13415, '081956298X'), - (2551, '0517707861'), - (2551, '0517799928'), - (277, '0679738290'), - (13416, '0312871937'), - (1323, '0312202318'), - (11809, '0312119240'), - (1674, '006028644X'), - (412, '0553377892'), - (412, '0553377922'), - (10283, '0679737995'), - (13417, '0679447954'), - (13418, '0811819167'), - (1291, '0312203241'), - (1291, '0312186886'), - (13419, '0802139558'), - (3979, '0802139558'), - (412, '0449911535'), - (13420, '1563050757'), - (13421, '0670693812'), - (5108, '055310943X'), - (5108, '0684801418'), - (3431, '0449001180'), - (13422, '1594200092'), - (13423, '0195170342'), - (13424, '0156007533'), - (13425, '1565926161'), - (13426, '0471213020'), - (13427, '0596003846'), - (13428, '0596003846'), - (13429, '0596003846'), - (13424, '0596005229'), - (13430, '0618138927'), - (51, '0375727612'), - (7335, '0375506160'), - (13431, '1583913580'), - (13432, '1583913580'), - (13433, '1886941343'), - (13434, '1886941343'), - (13435, '0195160770'), - (13436, '068482390X'), - (13437, '068482390X'), - (13438, '014019469X'), - (13439, '0965731286'), - (7230, '0060569662'), - (356, '0060569662'), - (11956, '076113185X'), - (5411, '0452285658'), - (13440, '0060006765'), - (13441, '074323572X'), - (13442, '1585673552'), - (13443, '0716732106'), - (13444, '0375703160'), - (1875, '0684802031'), - (5493, '0684802031'), - (5494, '0684802031'), - (13445, '0812911016'), - (13446, '0670877638'), - (13447, '0425062430'), - (2306, '0441366104'), - (13448, '0671705245'), - (1001, '0553349481'), - (13405, '0375700943'), - (5133, '0156005573'), - (13449, '0425183270'), - (13450, '055337821X'), - (13451, '055337821X'), - (13449, '0684801280'), - (13450, '0684801280'), - (13452, '087833209X'), - (13453, '087833209X'), - (7640, '1887424377'), - (13454, '1887424377'), - (7640, '1887424032'), - (13450, '1887424032'), - (12864, '0684815311'), - (13455, '0684815311'), - (13456, '0452279631'), - (13457, '0876308000'), - (13450, '0375701079'), - (13458, '0878339604'), - (13459, '080186822X'), - (13460, '080186822X'), - (13461, '080186822X'), - (13457, '0878339175'), - (13457, '0878339795'), - (13462, '0802713769'), - (13461, '1887424059'), - (3885, '0785812814'), - (13463, '0785812814'), - (7640, '1887424520'), - (13464, '1887424520'), - (3688, '1887424520'), - (6761, '0140262156'), - (1322, '0140262156'), - (6761, '0140283595'), - (1322, '0140283595'), - (156, '0879518340'), - (1369, '0375407561'), - (717, '0375407561'), - (3689, '0451208188'), - (2782, '044900371X'), - (13465, '081664179X'), - (13466, '0451211103'), - (13467, '0451211103'), - (13468, '1568581491'), - (1697, '0743422082'), - (1697, '0425177424'), - (1697, '0425173585'), - (1697, '0425168956'), - (412, '0385491026'), - (2800, '0140441131'), - (9505, '0140441131'), - (2458, '0451523881'), - (3974, '0451523881'), - (13469, '0451523881'), - (284, '0451513355'), - (4948, '0449208109'), - (12555, '014044470X'), - (13470, '014044470X'), - (13469, '014044470X'), - (13471, '093831713X'), - (13472, '0918273420'), - (13473, '0767901592'), - (13474, '0440211697'), - (723, '0679727248'), - (723, '0679724508'), - (11838, '0151002584'), - (2143, '0451407229'), - (1858, '0030037166'), - (2515, '0671567659'), - (7885, '055356921X'), - (13475, '0802134580'), - (6761, '0140143491'), - (13391, '0140143491'), - (4571, '0345423607'), - (1234, '0380715430'), - (9127, '0553253905'), - (6669, '0140106464'), - (13476, '0840790813'), - (13477, '0060191015'), - (188, '1877741094'), - (13478, '0030419964'), - (7, '0399150749'), - (3489, '0380804883'), - (13479, '0449219232'), - (13480, '0898152399'), - (9805, '1877988235'), - (13481, '0553227750'), - (115, '0525946896'), - (13482, '0671023411'), - (13481, '0671023403'), - (13481, '067102339X'), - (1485, '039913929X'), - (13483, '156138450X'), - (13484, '156138450X'), - (13485, '0312997108'), - (13486, '0312997108'), - (4500, '0764534238'), - (13487, '0380732130'), - (13488, '1879682737'), - (13487, '1879682699'), - (13487, '1879682656'), - (13489, '0809225050'), - (13490, '0809225050'), - (13491, '0786888911'), - (13492, '0425180034'), - (152, '0446364495'), - (3550, '0811831310'), - (9693, '0811831310'), - (13493, '0811831310'), - (4476, '006109286X'), - (13494, '0806972742'), - (13495, '0806972742'), - (1158, '0836218426'), - (13496, '0679311149'), - (5967, '0061030848'), - (13497, '1575001438'), - (13498, '1575001438'), - (274, '0553150510'), - (13499, '0590907239'), - (13500, '157145697X'), - (13487, '1571454942'), - (13487, '1571456988'), - (4409, '1551053020'), - (13501, '1551053020'), - (13502, '0919433820'), - (13503, '0919433820'), - (13504, '1551051737'), - (13505, '1551051737'), - (13506, '1551051737'), - (1065, '0451457994'), - (6206, '0740713930'), - (6207, '0740713930'), - (13507, '0375756663'), - (13508, '0793559847'), - (13509, '1858283329'), - (13510, '0743403541'), - (13511, '0312978588'), - (13512, '0380788438'), - (13513, '0740726765'), - (3284, '006052510X'), - (501, '0451409361'), - (13514, '0941263177'), - (2035, '078689007X'), - (13515, '0356105180'), - (13516, '0740704540'), - (11313, '002862615X'), - (3537, '0670886610'), - (11191, '0785340467'), - (3102, '185326119X'), - (13517, '0233997660'), - (1768, '0451528654'), - (7230, '0451528654'), - (94, '0333493400'), - (7728, '0064400034'), - (258, '0064400034'), - (264, '089009683X'), - (12185, '0333493427'), - (12185, '0333493389'), - (13518, '0753451131'), - (13519, '1577490185'), - (13518, '1577490177'), - (5184, '0753452243'), - (13520, '1552633845'), - (13521, '1550372289'), - (13522, '1550372289'), - (6915, '1550372556'), - (13523, '1550372556'), - (13524, '0786822864'), - (13523, '0786804106'), - (13525, '0679864415'), - (401, '086611873X'), - (974, '0394800168'), - (5677, '0064441555'), - (10085, '0064441555'), - (13526, '0316813079'), - (974, '0679892478'), - (1586, '0694003611'), - (13527, '0694003611'), - (777, '0525444440'), - (1897, '0525444440'), - (13528, '014036739X'), - (13529, '014036739X'), - (3271, '1853261246'), - (974, '0394829131'), - (6915, '0920236936'), - (13530, '0920236936'), - (777, '0525444459'), - (1897, '0525444459'), - (777, '0525444467'), - (1897, '0525444467'), - (13531, '2070728951'), - (13532, '2012002439'), - (13533, '2012002439'), - (13534, '2070357023'), - (1268, '2253076252'), - (13535, '2253006181'), - (13536, '2908957515'), - (13537, '2070412741'), - (732, '2266070592'), - (732, '2266070606'), - (7374, '207042314X'), - (13538, '207042314X'), - (13539, '2070422070'), - (13540, '2070422097'), - (13541, '2070425533'), - (13542, '2070425533'), - (13543, '2070422089'), - (13544, '2070425509'), - (13545, '2070408019'), - (13546, '2856164129'), - (13547, '2226001344'), - (13548, '2070369390'), - (4631, '2742718737'), - (13549, '2879293073'), - (13550, '2879293073'), - (13351, '2253005266'), - (13551, '2253005266'), - (13552, '2253028274'), - (13553, '2253046701'), - (1109, '2253002933'), - (13554, '2253002933'), - (13555, '2290303097'), - (270, '2253002887'), - (960, '2020349140'), - (1507, '2258047803'), - (13556, '222889401X'), - (4189, '207070906X'), - (13557, '2070386902'), - (13558, '2070386902'), - (13559, '2070386902'), - (13560, '2264027312'), - (6967, '2070370003'), - (13561, '057120631X'), - (13562, '2070425479'), - (13563, '2869596103'), - (2331, '2253010693'), - (13564, '2910686078'), - (1507, '2258047811'), - (13565, '2070377199'), - (13551, '2253056383'), - (13551, '2253047848'), - (13566, '2253040940'), - (13567, '2253040940'), - (13568, '2846710457'), - (13569, '2738112420'), - (13570, '273810858X'), - (10273, '273810858X'), - (13571, '2843040612'), - (221, '2070764702'), - (13572, '2746500582'), - (412, '2264035951'), - (13573, '2264035951'), - (13574, '2020301016'), - (3041, '2020259109'), - (6967, '2070373630'), - (2820, '2264027789'), - (2742, '2020479915'), - (6966, '2070422135'), - (13575, '2070423530'), - (13576, '2253004014'), - (13577, '2070400557'), - (2929, '2253051209'), - (4284, '2869309651'), - (1899, '2869309651'), - (13578, '2869309651'), - (13579, '2253043982'), - (735, '2020309610'), - (3041, '2264034769'), - (13580, '2867447763'), - (13581, '2070371700'), - (13582, '2742740945'), - (13583, '2742740945'), - (13584, '2742740945'), - (9284, '2742706372'), - (6954, '2020067447'), - (13585, '2070376702'), - (682, '2070368726'), - (13586, '2070322793'), - (3723, '2070324303'), - (13587, '2070324303'), - (13588, '2070324303'), - (3608, '2070362841'), - (3989, '2070372162'), - (6974, '2020126540'), - (13589, '270731028X'), - (13590, '2213006180'), - (13591, '2707301108'), - (13592, '202005924X'), - (13593, '2707126934'), - (13594, '2707126926'), - (402, '2020088959'), - (13595, '2020325276'), - (13596, '273810228X'), - (10273, '2738104134'), - (13569, '2738104134'), - (7486, '2738102158'), - (702, '286930756X'), - (13597, '286930756X'), - (13598, '0684803534'), - (13599, '2904299106'), - (142, '2253150371'), - (13600, '207071781X'), - (3723, '225306386X'), - (13601, '225306386X'), - (1109, '284205007X'), - (13602, '284205007X'), - (2333, '274272494X'), - (2333, '2742730486'), - (13603, '2715219512'), - (690, '2070378411'), - (4705, '2290303054'), - (13604, '2070388638'), - (13605, '2070409848'), - (735, '2020309629'), - (217, '2070385698'), - (13606, '2070385698'), - (13605, '2070385698'), - (13607, '2070385698'), - (13608, '2020374277'), - (13609, '2020403412'), - (13608, '2020352850'), - (9782, '229030879X'), - (3880, '2020551306'), - (13543, '207037467X'), - (13543, '2070362426'), - (10268, '2867446821'), - (6020, '2264024976'), - (13610, '2264024976'), - (13611, '2264024976'), - (13612, '2221078306'), - (13613, '2842050525'), - (13614, '2266064975'), - (13615, '207038781X'), - (13571, '2746500655'), - (13616, '2070400867'), - (13617, '2844120644'), - (13618, '2020395886'), - (13619, '2253012556'), - (13620, '2020068079'), - (13571, '2260012078'), - (13571, '2876860791'), - (13571, '2876860414'), - (13571, '2876860783'), - (13593, '2876860783'), - (13571, '2876860031'), - (13571, '2082115178'), - (13571, '208211533X'), - (2816, '208211533X'), - (13571, '2246275512'), - (13571, '2246334314'), - (13571, '2707303208'), - (13621, '2020385856'), - (755, '2869304870'), - (13622, '2070372391'), - (13623, '2070372391'), - (9238, '2070374556'), - (13624, '2070374556'), - (13530, '2070377865'), - (9645, '2070363511'), - (1886, '2070386023'), - (13625, '2070386023'), - (13626, '224648751X'), - (13581, '2742720073'), - (13583, '2742720073'), - (1409, '2070360784'), - (1887, '2070419584'), - (1888, '2070419584'), - (6761, '2070378233'), - (545, '2742714448'), - (13627, '2743608846'), - (13628, '2246616115'), - (1859, '2070393453'), - (13629, '2070393453'), - (2333, '2290053945'), - (13630, '2290053945'), - (2333, '2742718877'), - (2333, '2742722688'), - (13616, '2844121152'), - (13631, '2742713352'), - (13632, '2912517168'), - (13633, '2070767000'), - (13634, '2070757811'), - (13635, '2210422701'), - (13636, '2210422701'), - (13637, '2742727329'), - (755, '2743608765'), - (1886, '220725092X'), - (13624, '220725092X'), - (13579, '2867449375'), - (9618, '2226116745'), - (6119, '2226116494'), - (13638, '2867447143'), - (7907, '2842630254'), - (1086, '2742722629'), - (13639, '2742722629'), - (1086, '2742701729'), - (13638, '2742701729'), - (13640, '2868699529'), - (689, '2742700064'), - (13630, '2742728759'), - (13641, '2742734929'), - (13642, '2742734929'), - (13643, '2070417611'), - (13579, '2070408957'), - (13644, '2070408582'), - (13645, '2266062344'), - (13646, '2020385805'), - (5434, '2070714489'), - (13647, '2070714489'), - (351, '2020257785'), - (13648, '2020062143'), - (1086, '2868698921'), - (13638, '2868698921'), - (6119, '222613624X'), - (13649, '2020375060'), - (13650, '2020490668'), - (13651, '2070301028'), - (6761, '2070259811'), - (2333, '2228128007'), - (755, '2869305583'), - (755, '2869304560'), - (5960, '2869302940'), - (13626, '2743603291'), - (13652, '2253151017'), - (2333, '2742723951'), - (2333, '2742708715'), - (2333, '2742701826'), - (2333, '2742717730'), - (2333, '2742743510'), - (2836, '2070757625'), - (13108, '2070422437'), - (13653, '2070422437'), - (13654, '2070414167'), - (1302, '0812590465'), - (618, '0807511455'), - (618, '080751604X'), - (618, '0807554065'), - (7008, '0807554065'), - (618, '0807528552'), - (618, '0807510793'), - (618, '0807553980'), - (618, '0807553689'), - (618, '0807553859'), - (618, '0807531782'), - (618, '0807553670'), - (11173, '0807553670'), - (618, '0807507091'), - (11173, '0807507091'), - (618, '0807507946'), - (5682, '0807507946'), - (618, '0807551414'), - (5682, '0807551414'), - (618, '0807576743'), - (7760, '0807576743'), - (618, '0807576239'), - (7008, '0807576239'), - (618, '0807554189'), - (618, '0807554014'), - (618, '0807553948'), - (618, '0807553395'), - (618, '0807565350'), - (618, '0807503193'), - (618, '0807553794'), - (618, '0807503673'), - (618, '0807515604'), - (618, '0807509760'), - (11173, '0807509760'), - (618, '0807553727'), - (11173, '0807553727'), - (618, '0807580872'), - (11173, '0807580872'), - (618, '080757516X'), - (11173, '080757516X'), - (618, '0807572632'), - (11173, '0807572632'), - (618, '0807534137'), - (11173, '0807534137'), - (1428, '0590494465'), - (1428, '0590568930'), - (13655, '0590047116'), - (13656, '1561441279'), - (13657, '1561441279'), - (5673, '0590479083'), - (13658, '0590479083'), - (5673, '0590479075'), - (13657, '0590479075'), - (13223, '0061067563'), - (13223, '0061061468'), - (13659, '0205086802'), - (8818, '039489118X'), - (13660, '039489118X'), - (13661, '0385174837'), - (6555, '0385174837'), - (13662, '0441007740'), - (13663, '0965072444'), - (13664, '0451404432'), - (13665, '0553282123'), - (13666, '0842317112'), - (2006, '0380762609'), - (543, '0440237009'), - (13667, '0310214599'), - (543, '0671749412'), - (543, '0440186560'), - (543, '0440184053'), - (543, '0440185327'), - (543, '0440217547'), - (2181, '0515115630'), - (13668, '0671667653'), - (13669, '0449132307'), - (128, '055357602X'), - (142, '0451196716'), - (3310, '0451196716'), - (2880, '0671533983'), - (13670, '0312963173'), - (13323, '1551662779'), - (13323, '1551668181'), - (13323, '1551660482'), - (13323, '1551661551'), - (11368, '0451201744'), - (183, '0515090166'), - (183, '0515087947'), - (142, '0453004687'), - (3310, '0453004687'), - (142, '067103975X'), - (142, '0670868361'), - (142, '0452262143'), - (13671, '0452262143'), - (142, '0451167805'), - (142, '0451132378'), - (142, '0451190564'), - (142, '0451190556'), - (142, '0140258574'), - (1628, '055357227X'), - (1628, '055329170X'), - (563, '0425174271'), - (563, '039914613X'), - (563, '0399143823'), - (5361, '0849936373'), - (13672, '0679873066'), - (563, '0425126064'), - (61, '0765191121'), - (1172, '0446328413'), - (13673, '0440986524'), - (965, '0590440012'), - (13323, '1551664313'), - (4999, '0590443305'), - (1428, '0671002937'), - (13674, '0061061573'), - (971, '0743475488'), - (635, '0061042935'), - (13330, '0778320057'), - (563, '0425189864'), - (1331, '0451202287'), - (13182, '0821766775'), - (1628, '0451168623'), - (183, '0451176898'), - (2598, '0451176898'), - (2287, '0451176898'), - (7514, '0451176898'), - (13675, '0595129838'), - (12481, '0965735974'), - (13676, '0151002908'), - (13677, '1564145549'), - (2150, '0375703845'), - (13678, '3821834250'), - (1771, '3499105810'), - (1550, '3499105810'), - (1771, '3499133164'), - (13679, '3499133164'), - (13678, '3499133164'), - (11353, '3499133164'), - (92, '3404241185'), - (92, '3404232011'), - (4789, '3404232011'), - (13680, '0300084730'), - (3608, '3596124433'), - (13681, '3499193140'), - (7297, '3548346839'), - (13682, '3548346839'), - (7292, '0140231943'), - (686, '346202731X'), - (217, '3518115243'), - (2486, '3518115243'), - (13683, '3518115243'), - (176, '3453099826'), - (13684, '3453099826'), - (13685, '3453099826'), - (92, '3404242866'), - (5874, '1857984986'), - (959, '3423123877'), - (13686, '3423123877'), - (13687, '3423002565'), - (6556, '3492224431'), - (1527, '0380708213'), - (1401, '006080985X'), - (256, '3453173309'), - (13688, '3453173309'), - (13689, '3453173309'), - (13690, '3423124288'), - (2504, '3404242386'), - (92, '3404231910'), - (1186, '3453164105'), - (1773, '3453164156'), - (188, '3453164121'), - (13691, '3453164121'), - (5404, '3453164180'), - (92, '3404232208'), - (3972, '345316413X'), - (8852, '349922271X'), - (3191, '349922271X'), - (13692, '3499122146'), - (13693, '3499122146'), - (13694, '3499122146'), - (309, '3453164164'), - (13695, '3817132336'), - (13696, '3817132336'), - (13697, '3453164199'), - (13698, '3453164199'), - (13699, '3453164199'), - (1396, '3453164113'), - (92, '3404242750'), - (13700, '3423301244'), - (1771, '3499110008'), - (13701, '3499110008'), - (13702, '0861300238'), - (13703, '3518102079'), - (13704, '3518102079'), - (52, '3499142813'), - (13705, '3499142813'), - (13706, '3423300205'), - (5015, '0898705525'), - (13707, '3492200133'), - (13708, '3506500104'), - (13709, '3506500104'), - (3477, '0062732765'), - (94, '3817132352'), - (13710, '3150090342'), - (4603, '3453092414'), - (13711, '0253306752'), - (9817, '0691024170'), - (13712, '0140261494'), - (13713, '0140296085'), - (1455, '0140296085'), - (13714, '0140296085'), - (13683, '0140296085'), - (13715, '0094660409'), - (5272, '3518392573'), - (13716, '3518392573'), - (9817, '3492221661'), - (13706, '3492200540'), - (13717, '3492221009'), - (13718, '3880598800'), - (13719, '3423202068'), - (13720, '0262560038'), - (13721, '0521777526'), - (13722, '0521777526'), - (13723, '0471404217'), - (13724, '3518276255'), - (13725, '3518276255'), - (13726, '3518276255'), - (1401, '0060901918'), - (13727, '0375706348'), - (7045, '3379015776'), - (662, '3458329072'), - (13728, '3458329072'), - (1209, '3423120398'), - (2176, '3423120398'), - (4603, '345504431X'), - (13729, '345504431X'), - (13730, '3821839171'), - (13731, '382183594X'), - (9817, '0201150255'), - (8421, '342330426X'), - (8421, '3608917586'), - (13732, '3608917586'), - (13733, '3608917586'), - (13734, '3776621923'), - (13735, '0674637526'), - (90, '3520377020'), - (13736, '3520377020'), - (13735, '3520377020'), - (3608, '3257700474'), - (13737, '0965139808'), - (940, '0394733525'), - (13738, '3426774291'), - (13739, '3817134010'), - (13686, '3596259347'), - (9477, '3379001252'), - (1109, '351818802X'), - (13740, '3150096561'), - (13741, '3150096561'), - (5272, '351838922X'), - (13742, '351838922X'), - (13743, '3518371703'), - (13744, '3518371703'), - (13745, '3518371703'), - (13742, '3518384465'), - (13743, '3518384465'), - (13746, '3518384465'), - (13742, '3518389521'), - (13743, '3518389521'), - (13747, '3518389521'), - (1265, '0553293354'), - (1265, '3404230663'), - (1265, '3404241134'), - (13748, '3404241134'), - (13698, '3404241134'), - (1065, '3453025652'), - (6534, '351838645X'), - (13749, '351838645X'), - (6534, '3518377663'), - (13728, '3518377663'), - (6534, '3518396749'), - (13750, '3518396749'), - (6534, '3518372297'), - (13751, '3518372297'), - (13752, '3518372297'), - (13753, '3518372297'), - (6534, '3518386999'), - (6534, '3518383906'), - (13748, '3518383906'), - (6534, '3518370707'), - (6535, '3518370707'), - (6534, '3518372408'), - (6534, '351839293X'), - (13754, '351839293X'), - (6534, '3518368567'), - (13755, '3518368567'), - (6534, '3518380745'), - (13749, '3518380745'), - (6534, '3518374559'), - (13756, '3518374559'), - (9817, '3492213472'), - (13757, '3492226221'), - (13758, '3492226221'), - (13756, '3492227171'), - (13759, '0672604043'), - (13760, '0672604043'), - (13758, '3787311556'), - (13761, '3787311556'), - (1209, '3423122870'), - (2176, '3423122870'), - (13762, '3499196654'), - (13763, '3446163670'), - (13756, '3492230555'), - (9477, '3746655153'), - (13764, '3746655153'), - (13761, '3499195356'), - (13765, '3442115361'), - (13766, '3442115361'), - (7063, '080213422X'), - (9817, '0738203491'), - (1401, '0060900075'), - (13767, '3499609339'), - (13766, '349960728X'), - (13768, '344275500X'), - (13769, '344275500X'), - (1232, '3426606488'), - (13716, '3492049885'), - (1065, '0345430727'), - (13770, '0376011831'), - (13771, '0553375334'), - (13772, '0553375334'), - (13773, '1879159376'), - (13774, '1880281139'), - (13775, '0943574447'), - (13776, '0764551418'), - (13777, '086573190X'), - (13778, '086573190X'), - (6058, '0764506765'), - (13779, '0764506765'), - (13780, '0764506765'), - (13781, '1893361764'), - (11697, '0762100699'), - (13782, '0875968864'), - (13783, '0811827151'), - (13784, '0811827151'), - (7125, '0937750239'), - (13385, '0937750239'), - (13785, '0937750239'), - (13786, '1569473307'), - (8558, '0877735506'), - (13787, '0385335210'), - (13788, '0062505157'), - (2706, '0062505157'), - (13789, '0062505157'), - (13790, '1585420859'), - (13791, '0861711459'), - (13792, '0861711459'), - (1704, '0312973055'), - (2626, '0312973055'), - (4457, '0696211785'), - (13793, '0696211785'), - (13794, '140004684X'), - (13795, '0801986311'), - (13796, '0801986311'), - (13797, '0801986311'), - (13798, '0922705380'), - (7125, '0440235014'), - (13799, '0801980801'), - (13800, '0679725997'), - (12270, '1567998712'), - (13801, '1567998712'), - (10635, '1573227358'), - (13802, '0806958235'), - (6653, '0722539320'), - (13803, '089721255X'), - (8558, '0877739706'), - (11379, '0786862270'), - (13804, '0961475455'), - (13805, '0961475455'), - (13806, '0765760355'), - (13807, '0765760355'), - (13808, '0935278184'), - (13809, '0935278184'), - (13810, '0935278184'), - (6110, '0674007913'), - (13811, '0840752873'), - (2706, '0722540302'), - (13812, '1567994288'), - (13813, '0897210875'), - (13814, '0897210875'), - (13815, '0897210875'), - (13816, '0897210875'), - (13817, '0688144713'), - (13818, '0688144713'), - (13816, '0688097391'), - (13819, '1573225754'), - (13820, '0802130313'), - (13821, '0814623581'), - (13820, '0814623581'), - (7093, '038549436X'), - (13822, '0743226208'), - (13823, '0743226208'), - (13824, '0553382179'), - (13825, '0743418301'), - (6470, '006064589X'), - (13826, '0385497903'), - (7107, '0767902998'), - (13827, '0738204102'), - (13828, '1567997686'), - (13829, '0765307154'), - (39, '0060502304'), - (574, '0345456343'), - (13830, '1576104192'), - (13831, '0752221892'), - (1926, '0446518549'), - (1698, '0446518549'), - (13832, '1565924878'), - (13833, '1565922204'), - (13834, '0072129409'), - (13835, '0130843709'), - (2754, '0782126472'), - (13836, '0130173231'), - (606, '0451457595'), - (3001, '0786881887'), - (13837, '0786881887'), - (3002, '0786881887'), - (3001, '0786889209'), - (3002, '0786889209'), - (13838, '055357681X'), - (242, '0448407264'), - (2181, '051511054X'), - (251, '0156030209'), - (7809, '0140275428'), - (13839, '0553813714'), - (2618, '0752837613'), - (4604, '0684803852'), - (1194, '067164193X'), - (13840, '0517320908'), - (13841, '0774712619'), - (1628, '0553089226'), - (12018, '0670829390'), - (13842, '0786000848'), - (13843, '0671578820'), - (913, '0446364789'), - (2513, '0812514432'), - (598, '0812514432'), - (8370, '0812514432'), - (13844, '0812514432'), - (142, '0451151224'), - (3310, '0451151224'), - (1451, '0425054535'), - (13845, '0425054535'), - (3611, '044021498X'), - (13846, '0821724045'), - (13847, '042512245X'), - (1219, '0451080157'), - (13848, '0451080157'), - (1610, '0312928408'), - (7473, '0812551664'), - (7507, '0812551664'), - (145, '0425109720'), - (1214, '0671670646'), - (13849, '0345425596'), - (1214, '0671028006'), - (13850, '0590412264'), - (13851, '0590412264'), - (13852, '0590412264'), - (13853, '0590412264'), - (867, '0886771722'), - (4794, '0345309197'), - (3076, '0886772249'), - (328, '0380818418'), - (329, '0380818418'), - (325, '0345300777'), - (325, '0345309979'), - (325, '0345335708'), - (867, '0886774691'), - (2525, '0786901136'), - (13854, '0786901136'), - (2361, '0425173089'), - (13855, '0440237343'), - (1306, '0786890053'), - (13856, '0140053166'), - (2011, '0425142868'), - (2011, '0425137457'), - (2011, '042514755X'), - (867, '0886772346'), - (13857, '0886772346'), - (906, '0425103633'), - (11801, '0812570936'), - (1214, '0671759345'), - (596, '0440475821'), - (1214, '0671670662'), - (13858, '0312962177'), - (10708, '0446344281'), - (13859, '0446601829'), - (13860, '0944276040'), - (2011, '042511872X'), - (596, '0688037852'), - (617, '0688037852'), - (2011, '0425116417'), - (6854, '0446602175'), - (13861, '0446602175'), - (13862, '0446602175'), - (13863, '0446602175'), - (9166, '0451402707'), - (13864, '1558175555'), - (12670, '0312927789'), - (12671, '0312927789'), - (12672, '0312927789'), - (13865, '0312927614'), - (13866, '0451171640'), - (13867, '0451402847'), - (13868, '0380722526'), - (5209, '0451117905'), - (13869, '0821717448'), - (543, '0440203856'), - (543, '0440146844'), - (543, '0440126894'), - (3615, '0553264079'), - (13870, '0451403053'), - (583, '0553256211'), - (13871, '0451153952'), - (5580, '0425130894'), - (4524, '088038672X'), - (13872, '0843938269'), - (13873, '0385279140'), - (13874, '0394859111'), - (1704, '0553271091'), - (13875, '1572972912'), - (13876, '1572972912'), - (1219, '0451159896'), - (13847, '0451159896'), - (5786, '3426015463'), - (13877, '3442750547'), - (13878, '3442750547'), - (2624, '3423085304'), - (13879, '3423085304'), - (24, '3455024947'), - (780, '345387319X'), - (13880, '345387319X'), - (374, '3499146983'), - (9080, '3499146983'), - (374, '3426013347'), - (9080, '3426013347'), - (13881, '3596151945'), - (1571, '0060080841'), - (580, '0060080841'), - (13882, '0679816607'), - (1537, '0441005241'), - (1537, '0441004520'), - (1537, '0441003745'), - (13883, '0553577255'), - (13884, '0553577255'), - (13882, '0553575430'), - (13883, '0553575430'), - (13885, '0884481492'), - (13882, '0553575422'), - (13883, '0553575422'), - (5542, '0843949945'), - (13886, '0486292886'), - (13887, '006090674X'), - (13888, '006090674X'), - (13889, '0871968789'), - (13890, '0871968789'), - (13891, '0912608951'), - (13892, '0912608951'), - (13893, '0912608951'), - (13890, '0912608110'), - (13894, '0912608110'), - (369, '0373076312'), - (1579, '0743403495'), - (1579, '0743403487'), - (1579, '0743403479'), - (1579, '0743403460'), - (3316, '0812517164'), - (3317, '0812517164'), - (13174, '1575667274'), - (543, '0385306040'), - (543, '0385316879'), - (13895, '0942237285'), - (1092, '0743457269'), - (7242, '0330334026'), - (128, '0446527041'), - (13896, '0471528889'), - (2029, '0836217578'), - (231, '0385334710'), - (630, '1575665727'), - (240, '0399146741'), - (13897, '078710339X'), - (13898, '078710339X'), - (108, '0312179405'), - (543, '0440211891'), - (13899, '0821737902'), - (179, '0451204956'), - (13900, '0373255241'), - (3919, '0373241755'), - (7529, '037322513X'), - (13901, '0373079281'), - (369, '0515124214'), - (12596, '0380820889'), - (2694, '0061053716'), - (543, '0440213282'), - (13902, '0451407431'), - (459, '0316313203'), - (13903, '0452277809'), - (13904, '0452277809'), - (13905, '0030149061'), - (5112, '0312942192'), - (13906, '0879830689'), - (1998, '0671027972'), - (13907, '0312970307'), - (6185, '0380802252'), - (10364, '0553574795'), - (412, '0385260075'), - (1261, '0895770695'), - (13908, '0895770695'), - (176, '0517554399'), - (12019, '0736421300'), - (13909, '0451457528'), - (10922, '0385425074'), - (3097, '0689704208'), - (3097, '0689704488'), - (3097, '0689704674'), - (4391, '1551665816'), - (10556, '0394828054'), - (13910, '0590431242'), - (13911, '0373482345'), - (13912, '0373482345'), - (9294, '0373482345'), - (13913, '0373482345'), - (3449, '0373196660'), - (6919, '0517554550'), - (4295, '0440116139'), - (13914, '0440116139'), - (3359, '0671872680'), - (3078, '0812536169'), - (10819, '0800786866'), - (2515, '0671724169'), - (13915, '0373290136'), - (2006, '0380753022'), - (11675, '0373289510'), - (13916, '0679853065'), - (13917, '1558171118'), - (281, '0020412401'), - (2542, '067152609X'), - (3367, '067152609X'), - (3368, '067152609X'), - (13918, '0767913701'), - (9240, '0671674358'), - (9241, '0671674358'), - (835, '0671658662'), - (256, '0451159233'), - (13919, '1572242132'), - (843, '0618055819'), - (13920, '078688262X'), - (56, '0192827618'), - (5748, '0192827618'), - (13921, '0192827618'), - (13922, '0671502239'), - (13232, '1853260630'), - (13923, '0002550563'), - (13924, '0002550563'), - (3989, '0451524551'), - (13925, '0451524551'), - (13926, '1889392022'), - (13927, '1889392022'), - (13925, '1889392030'), - (13926, '1889392030'), - (3823, '0060171626'), - (1396, '0441518095'), - (13928, '082175565X'), - (3159, '1551662671'), - (2276, '0380802309'), - (11616, '037348383X'), - (1793, '0671569031'), - (2331, '0140621792'), - (256, '0061092177'), - (2252, '0843941219'), - (2255, '0843941219'), - (6193, '0843941219'), - (13929, '0843941219'), - (11641, '0373224729'), - (13930, '0373118864'), - (1428, '0671868322'), - (166, '0440983568'), - (1428, '0671868330'), - (1428, '0671738232'), - (1428, '067189434X'), - (3359, '0671745115'), - (3359, '0671690590'), - (1428, '0671724851'), - (3359, '0590430149'), - (1428, '0671724819'), - (13931, '0590403214'), - (3359, '0671745107'), - (1428, '0671894331'), - (1428, '0671702432'), - (3359, '0671550551'), - (166, '0671726498'), - (166, '0440918642'), - (12812, '0345274539'), - (3359, '0671676563'), - (12959, '0590433105'), - (13932, '0441515339'), - (2529, '0441515339'), - (3097, '0689829833'), - (13931, '0441515304'), - (8062, '078600312X'), - (3102, '0883632012'), - (13933, '0786889063'), - (1088, '0316290238'), - (1755, '0374386137'), - (1891, '0425065553'), - (281, '0192834347'), - (13934, '0192834347'), - (7531, '0373226691'), - (13935, '050552385X'), - (1164, '0553801619'), - (1871, '0060004703'), - (1164, '0553582852'), - (13936, '0743482247'), - (895, '0451211715'), - (896, '0451211715'), - (4198, '0821769286'), - (13937, '0843937335'), - (2006, '0380753014'), - (6477, '0505525313'), - (4198, '0821772279'), - (3159, '0380767597'), - (2006, '0380897393'), - (3750, '0553561537'), - (2823, '0380811987'), - (5693, '0312987846'), - (230, '0380761483'), - (9326, '0743460537'), - (2169, '0451208072'), - (3750, '0553574108'), - (13938, '0671689738'), - (1092, '0743478967'), - (230, '1568655878'), - (2270, '0743467221'), - (5225, '0373286716'), - (230, '0061031534'), - (2169, '0451205804'), - (13939, '0821774166'), - (1164, '0553580280'), - (7819, '1565073193'), - (13940, '050552516X'), - (13941, '0451623142'), - (9530, '0451523024'), - (13942, '0451523024'), - (183, '0399151079'), - (13943, '0553442856'), - (12654, '0373241062'), - (1092, '0671644483'), - (9919, '0671446886'), - (1491, '0373153309'), - (13944, '0373701217'), - (11612, '0373098596'), - (13945, '0373097360'), - (65, '084232920X'), - (66, '084232920X'), - (13946, '0373706766'), - (5212, '0373707657'), - (13947, '0553266926'), - (381, '0880705760'), - (2254, '0380806290'), - (532, '0451408772'), - (65, '0842329161'), - (66, '0842329161'), - (1092, '038075911X'), - (13049, '0060675233'), - (13948, '0380897342'), - (5934, '0373119194'), - (230, '0060185708'), - (65, '0842329285'), - (66, '0842329285'), - (6341, '0892749482'), - (13949, '1586608010'), - (6483, '0345275128'), - (13950, '0060571454'), - (13914, '0373291515'), - (10370, '0380777312'), - (2823, '0380811979'), - (1795, '0553567772'), - (230, '0380385880'), - (13951, '0060560789'), - (4198, '0821775472'), - (2274, '0312982305'), - (2255, '0505524945'), - (13952, '0553565044'), - (13953, '0425194833'), - (6462, '0425194868'), - (10571, '0743470036'), - (1754, '067100333X'), - (402, '071671017X'), - (13954, '0736907734'), - (10112, '0451409094'), - (532, '0515127213'), - (3885, '0553212281'), - (13955, '0553379623'), - (13956, '0553379623'), - (13957, '1575665646'), - (13958, '1576739627'), - (13959, '1576739627'), - (13960, '068985482X'), - (13961, '068985482X'), - (13962, '0786004509'), - (13963, '0786006285'), - (10364, '0553584901'), - (13964, '0821758942'), - (7519, '0743465067'), - (2246, '0440225884'), - (169, '0061059471'), - (7519, '0425191230'), - (3591, '0553268481'), - (2656, '0394551540'), - (484, '0688065716'), - (2656, '0449221873'), - (5319, '0515061786'), - (5319, '0515070742'), - (5319, '0515075051'), - (6177, '0688066631'), - (13965, '034525385X'), - (13966, '0891098623'), - (10223, '0891098623'), - (760, '014004891X'), - (368, '0449219569'), - (2656, '0449206521'), - (4614, '0446404462'), - (319, '0449206394'), - (891, '0553564994'), - (584, '0821767089'), - (2513, '0804112258'), - (5319, '0515075035'), - (5319, '0515077356'), - (60, '0684832291'), - (5319, '0515061662'), - (4614, '0445407808'), - (183, '0515120278'), - (13967, '0449904962'), - (2026, '0028604202'), - (474, '0020199082'), - (2082, '0553240951'), - (5319, '0515074438'), - (5319, '051507506X'), - (5319, '0515071056'), - (4094, '0451197690'), - (895, '0451204344'), - (896, '0451204344'), - (3143, '0201517205'), - (13968, '0333517628'), - (13969, '0333517628'), - (13970, '0333517628'), - (13971, '0746012721'), - (7597, '0746012721'), - (13972, '0192752685'), - (13973, '0517147270'), - (1722, '0330288393'), - (13974, '0671029088'), - (115, '2253076287'), - (13975, '2253076287'), - (13976, '0140621296'), - (13977, '0216927781'), - (13978, '1853045586'), - (13979, '1853045586'), - (12226, '0751511919'), - (2559, '0312966776'), - (13980, '0747258090'), - (13981, '0749732687'), - (13982, '0600400409'), - (13983, '0746000561'), - (13984, '0140511849'), - (1215, '0140511849'), - (13985, '0140511849'), - (13986, '0563371110'), - (13987, '0563371110'), - (13988, '0563371110'), - (13989, '0316734500'), - (13990, '0752848151'), - (13991, '0752848151'), - (13992, '1854790420'), - (13993, '0723216371'), - (13994, '0723216371'), - (13995, '1860192599'), - (5015, '0140059776'), - (13996, '1853043427'), - (13997, '1853043427'), - (13998, '1850510881'), - (13999, '0704339986'), - (14000, '1887166734'), - (14001, '0439010705'), - (1281, '1870451090'), - (1013, '0805004610'), - (14002, '0671874594'), - (570, '1563898810'), - (14003, '1563898810'), - (14004, '1563898810'), - (14005, '1563898810'), - (268, '1563898780'), - (1169, '1563898780'), - (791, '1563898780'), - (14006, '1563898780'), - (14007, '1563898780'), - (14008, '080502669X'), - (1328, '0553100637'), - (973, '0385415109'), - (94, '1878734601'), - (424, '157965116X'), - (14009, '157965116X'), - (1365, '0374514852'), - (973, '0312890222'), - (973, '0380821001'), - (14010, '038078405X'), - (14011, '0452281229'), - (14010, '0452281849'), - (14012, '0684824175'), - (14013, '0684824175'), - (3458, '0743411366'), - (14014, '0786890371'), - (1837, '1551665999'), - (7485, '0670032069'), - (14015, '0525943064'), - (1228, '0385491808'), - (179, '052594558X'), - (14016, '1573229350'), - (1326, '0446607177'), - (1327, '0446607177'), - (14017, '0553575465'), - (12668, '0553573926'), - (4476, '0061097624'), - (1876, '0553576089'), - (1562, '0061097306'), - (2528, '0515124060'), - (5563, '0451185498'), - (5563, '0451192222'), - (128, '0446609617'), - (10758, '0446608033'), - (7453, '1575663643'), - (14018, '1575663643'), - (14019, '0307128199'), - (11224, '0307128199'), - (1739, '044022571X'), - (14020, '0448117487'), - (3495, '0843108118'), - (14021, '0446608912'), - (9670, '0446608319'), - (14022, '0345427696'), - (414, '0375500723'), - (14021, '0316803480'), - (3231, '0312278306'), - (7163, '0345428080'), - (1228, '0140264795'), - (14023, '0060974621'), - (14024, '0312970897'), - (14025, '0312970897'), - (14026, '0452282535'), - (1164, '0913780146'), - (14027, '0670857661'), - (14028, '1567314295'), - (14029, '0670899836'), - (14030, '0670899836'), - (14031, '0330331698'), - (14032, '0737000465'), - (14033, '0374248613'), - (14034, '0807072125'), - (7778, '1931514933'), - (14035, '1591823692'), - (7168, '1892213087'), - (7172, '1892213001'), - (14036, '1586648756'), - (14037, '1586648756'), - (14035, '1586648969'), - (14038, '1586648969'), - (14035, '1586648950'), - (14037, '1586648950'), - (14035, '1586648624'), - (14037, '1586648624'), - (14035, '1586648616'), - (14037, '1586648616'), - (14035, '1586648500'), - (14037, '1586648500'), - (14035, '1562199455'), - (14037, '1562199455'), - (14039, '0385477155'), - (14040, '0385730918'), - (14041, '0385730918'), - (14042, '0739408461'), - (14043, '0486212688'), - (14044, '0486212688'), - (142, '0451210875'), - (142, '0451210867'), - (142, '0451210859'), - (14045, '1591822092'), - (14044, '1591822084'), - (14044, '1591822076'), - (14044, '1591822068'), - (14046, '193151478X'), - (3702, '193151478X'), - (14044, '1931514771'), - (14045, '1931514763'), - (14044, '1931514755'), - (14044, '1931514747'), - (14044, '1931514739'), - (14047, '159182107X'), - (14048, '159182107X'), - (14046, '1591820219'), - (14047, '1591820219'), - (14046, '1591820200'), - (14047, '1591820200'), - (14049, '1931514461'), - (14046, '1931514461'), - (14047, '1931514461'), - (14046, '193151495X'), - (9042, '1591820146'), - (9042, '1931514976'), - (9042, '1931514941'), - (14050, '1591161932'), - (14049, '1591161932'), - (14049, '1591161258'), - (14049, '1591160944'), - (14049, '1591160677'), - (14049, '1591160669'), - (14051, '1591823978'), - (14052, '1591823978'), - (14053, '1591823978'), - (14050, '159182396X'), - (2694, '0060177241'), - (387, '0141308109'), - (6854, '0345450051'), - (14054, '0441002846'), - (14055, '0880382791'), - (14056, '0966961706'), - (142, '0451160959'), - (14057, '156931778X'), - (1194, '0671700294'), - (6351, '0060924640'), - (10309, '0385497954'), - (247, '080411188X'), - (14058, '0505525224'), - (14059, '0062513095'), - (6115, '1556611102'), - (14060, '0446305693'), - (1787, '0380624060'), - (753, '0938410563'), - (58, '0345354575'), - (14061, '0312152949'), - (2641, '044630798X'), - (284, '0553212230'), - (14062, '0201489392'), - (6872, '068485970X'), - (1760, '0873513193'), - (14063, '0679762892'), - (330, '0449904067'), - (3283, '0679415610'), - (14064, '0152012702'), - (14065, '1568360096'), - (1787, '0380698692'), - (1787, '0380703149'), - (1787, '0380703130'), - (1787, '0380615983'), - (14066, '0375401946'), - (5531, '0061059900'), - (8370, '0061059900'), - (14067, '0380792990'), - (14068, '0385272170'), - (991, '0140139419'), - (1096, '0060171324'), - (14069, '1555612423'), - (14070, '1555612423'), - (14071, '0452277698'), - (12714, '0452279097'), - (14072, '0452279097'), - (644, '0440213355'), - (14073, '0553569376'), - (81, '0804108854'), - (10315, '0385319444'), - (6264, '0316418927'), - (4402, '038547721X'), - (8985, '0446607401'), - (4028, '0385336489'), - (14074, '0934601941'), - (14075, '0934601941'), - (14076, '0963355554'), - (14077, '0963355554'), - (14073, '0931948932'), - (14074, '0931948932'), - (14078, '0931948932'), - (2333, '0375709215'), - (2341, '0805060367'), - (1159, '0816148708'), - (2181, '0399141200'), - (14079, '0688166083'), - (5549, '0440212235'), - (4002, '0395633206'), - (14080, '0345273494'), - (14081, '0312309635'), - (14082, '0809321297'), - (14083, '0809321297'), - (14084, '0690048246'), - (11164, '0690048246'), - (9086, '0345456688'), - (12345, '1880823233'), - (12399, '055306102X'), - (14085, '0609609459'), - (705, '0767913019'), - (1210, '0345435400'), - (14086, '0684834308'), - (14087, '0684834308'), - (7855, '038549727X'), - (7855, '0385497296'), - (14088, '0345428609'), - (178, '0140187642'), - (14089, '0140187642'), - (14090, '0140187642'), - (14091, '0140187642'), - (14092, '0140187642'), - (860, '0345428560'), - (14093, '0425149625'), - (14094, '0446530255'), - (14093, '0446679178'), - (2224, '0345443004'), - (14087, '0345442989'), - (14095, '0670030651'), - (5600, '037542055X'), - (3677, '038550098X'), - (14096, '1875989048'), - (14097, '1590250001'), - (14098, '1590250001'), - (3241, '0061081558'), - (1214, '0671028014'), - (2713, '0553563084'), - (2713, '0553570560'), - (2713, '0553570587'), - (2233, '0671694979'), - (14099, '1591132207'), - (2287, '0446400173'), - (14100, '0684813580'), - (14101, '094148307X'), - (5278, '0939416611'), - (14102, '0385480377'), - (2287, '0446400696'), - (906, '0425129608'), - (906, '0425099148'), - (14103, '0813190355'), - (14104, '0743464273'), - (906, '0312979738'), - (906, '0451201132'), - (906, '0425129632'), - (906, '0425173917'), - (906, '0451199898'), - (906, '0451201191'), - (906, '0312981600'), - (906, '0451200187'), - (14105, '0060926945'), - (2103, '0393093883'), - (14106, '0393093883'), - (14107, '0393093883'), - (14108, '0486290735'), - (14109, '0060929804'), - (965, '0812504321'), - (3102, '0812504380'), - (403, '0142437174'), - (14110, '0142437174'), - (2167, '0142437174'), - (14111, '1561481858'), - (906, '0312979819'), - (14112, '0671685112'), - (14113, '0394721039'), - (1787, '0380729865'), - (5130, '044020495X'), - (906, '0425175456'), - (906, '0312981651'), - (906, '042506803X'), - (906, '0425091805'), - (906, '0425098540'), - (906, '0312981686'), - (906, '0425173909'), - (906, '0451200535'), - (906, '042509961X'), - (906, '0440159229'), - (906, '0441240984'), - (14114, '0441240984'), - (14115, '0941483428'), - (14116, '1573441252'), - (14117, '0786886099'), - (14118, '0345351959'), - (7886, '0345351959'), - (14119, '0345351959'), - (2287, '0446400157'), - (906, '0451199863'), - (14120, '0312330731'), - (585, '034541215X'), - (1325, '0061099481'), - (40, '0743234901'), - (5887, '0671724738'), - (906, '0451201205'), - (906, '0440152305'), - (368, '0399146601'), - (906, '0671542125'), - (397, '0451521595'), - (427, '0713994606'), - (4826, '0812503058'), - (14121, '0380705486'), - (14122, '0316702757'), - (906, '0425130258'), - (1755, '0374517835'), - (906, '0425169251'), - (506, '0449210006'), - (433, '0345253736'), - (433, '0345362861'), - (5898, '0345362861'), - (14123, '0020868804'), - (14124, '9960340112'), - (14125, '0060935405'), - (14126, '0374522812'), - (14127, '0374522812'), - (14128, '1557282048'), - (545, '0060956739'), - (1265, '0553293362'), - (1186, '0441089348'), - (1144, '0446519766'), - (14129, '0446519766'), - (14130, '0743457633'), - (14131, '0345407601'), - (6854, '0743509447'), - (14132, '0836250877'), - (14133, '0836250877'), - (3327, '0440425360'), - (3327, '0440435749'), - (3327, '0440484839'), - (3327, '0440411254'), - (3327, '0440406498'), - (3327, '0440407028'), - (14134, '0440381142'), - (14135, '0440381142'), - (1164, '0553261258'), - (14136, '0553149075'), - (906, '0425080005'), - (906, '0425103528'), - (906, '0440192285'), - (906, '0425100413'), - (906, '0451199928'), - (906, '0425177416'), - (906, '0061003786'), - (906, '0061003689'), - (906, '0425174735'), - (5874, '0743423763'), - (1194, '067163822X'), - (14137, '1400060265'), - (2393, '0061052043'), - (2398, '0380781042'), - (906, '067142095X'), - (14138, '0393322963'), - (1747, '0375411119'), - (12395, '0345365399'), - (14139, '0671701592'), - (777, '0140361227'), - (1897, '0140361227'), - (14140, '0140231595'), - (9069, '0140231595'), - (56, '1853260282'), - (906, '0396073735'), - (1733, '0671552228'), - (1755, '0440957761'), - (4586, '0451515048'), - (10962, '0451527097'), - (14141, '0451527097'), - (14142, '0451181441'), - (7516, '0425159612'), - (7516, '0425154637'), - (1773, '0441008631'), - (1164, '0553269291'), - (122, '0743427947'), - (473, '068482504X'), - (14143, '1565071875'), - (122, '0671019163'), - (906, '0671464965'), - (14144, '0425163830'), - (14145, '0425163830'), - (873, '0812518055'), - (14146, '0812518055'), - (1878, '0671701622'), - (1755, '0440917190'), - (5152, '0441783295'), - (2224, '042507255X'), - (3327, '0440906490'), - (14147, '0373261896'), - (14148, '0441001467'), - (906, '0671823337'), - (14149, '0671437968'), - (1159, '0140064826'), - (14150, '0671568310'), - (906, '0425108589'), - (5821, '0553276514'), - (2326, '0886773865'), - (12870, '0380011077'), - (2287, '0449207021'), - (14151, '0590416243'), - (8723, '0679890998'), - (2287, '0446403180'), - (6918, '0060244755'), - (1740, '0812579410'), - (14152, '0812540379'), - (895, '0451185129'), - (896, '0451185129'), - (1281, '1573182036'), - (14153, '1573182036'), - (14154, '0807846465'), - (14155, '093871628X'), - (14156, '0762702265'), - (122, '0743427920'), - (14157, '0836283430'), - (14158, '0836283430'), - (2287, '0449214958'), - (5887, '0671738623'), - (14159, '084237356X'), - (967, '1576739759'), - (8298, '039303853X'), - (3779, '0312927746'), - (4428, '068484897X'), - (3458, '0679449434'), - (14160, '0842371893'), - (5729, '0842371893'), - (1837, '1551664992'), - (14161, '067147071X'), - (14162, '0375405356'), - (1485, '0399142983'), - (2913, '0385485212'), - (14163, '0684845261'), - (14164, '0440210178'), - (412, '055334501X'), - (14165, '039450965X'), - (14166, '0877900507'), - (14167, '0486411915'), - (14168, '0738204048'), - (14169, '0738204048'), - (6426, '0425110427'), - (5235, '0060639059'), - (14170, '0553257439'), - (2100, '0892131187'), - (14171, '089256265X'), - (527, '089256265X'), - (3704, '0671463195'), - (14172, '0670383295'), - (14173, '014046560X'), - (14174, '0823030970'), - (14175, '0823030970'), - (3643, '0425075826'), - (14176, '0451136039'), - (14177, '0140272801'), - (2687, '0425137465'), - (3591, '0425092038'), - (369, '0373484836'), - (369, '0373244487'), - (281, '0140277293'), - (14178, '0380007002'), - (14179, '0380007002'), - (14180, '0380700999'), - (414, '0375507477'), - (14181, '1558701311'), - (14182, '1558701311'), - (14183, '1887911510'), - (14184, '1887911510'), - (14185, '1887911510'), - (14186, '1887911510'), - (310, '0670878812'), - (14187, '1564651622'), - (14188, '0553203630'), - (14189, '0394564324'), - (14190, '0345362500'), - (14191, '0940159147'), - (6548, '0399145427'), - (8110, '0523421214'), - (14192, '0523421214'), - (14193, '0609800906'), - (369, '0515120871'), - (14194, '0966443004'), - (550, '0743410602'), - (14195, '158234096X'), - (14196, '1587210975'), - (14197, '0135814219'), - (10005, '0140068929'), - (14198, '0312045239'), - (14199, '0394724372'), - (252, '0517704803'), - (14200, '0689813279'), - (14201, '1574882295'), - (5065, '0064401758'), - (11128, '0064401758'), - (11193, '0141310871'), - (14202, '0156011549'), - (14203, '0879612312'), - (14204, '0879612312'), - (14205, '0879612312'), - (14206, '1558176756'), - (11273, '038072099X'), - (11810, '0821771167'), - (4757, '0689863632'), - (14207, '0761319417'), - (14208, '0449218201'), - (8668, '0345417739'), - (457, '0671025864'), - (11326, '1883523133'), - (572, '0385495056'), - (14209, '1556591241'), - (138, '0140057935'), - (8372, '0515131733'), - (14210, '0751531294'), - (4576, '0821769391'), - (10005, '0140093281'), - (12621, '0440191238'), - (14211, '014007600X'), - (14212, '0553578294'), - (14213, '0669217360'), - (14214, '0912238259'), - (14215, '0912238259'), - (63, '0743457463'), - (1337, '0743457463'), - (3644, '0743457463'), - (8732, '0684844958'), - (2654, '0449200981'), - (8890, '0449200361'), - (9161, '1902881842'), - (14216, '0395281601'), - (3619, '0884111431'), - (14217, '0671203576'), - (115, '0451163516'), - (14218, '0075536226'), - (367, '044991089X'), - (7270, '0553226347'), - (14219, '0440121418'), - (14220, '0831754087'), - (14221, '0871137771'), - (955, '038531700X'), - (14222, '0805055452'), - (14223, '0805055452'), - (4037, '0590433644'), - (14224, '1582343497'), - (14225, '1562472305'), - (14226, '1562472305'), - (14227, '0789432331'), - (14228, '1572972939'), - (14229, '1572972939'), - (2963, '0688048315'), - (13325, '0688048315'), - (330, '0449910261'), - (14230, '0394555287'), - (14231, '0394555287'), - (14232, '0816038465'), - (14233, '0816038465'), - (14234, '0816038465'), - (14235, '0002179687'), - (128, '0446519782'), - (14236, '0449208184'), - (4584, '0140150447'), - (14237, '0140150447'), - (962, '0064401871'), - (4671, '0064401871'), - (14238, '1579620604'), - (14239, '039914630X'), - (14240, '0972022104'), - (14241, '0826321143'), - (14242, '1931243328'), - (14243, '1931243328'), - (187, '0380759500'), - (397, '0671722778'), - (397, '0671722646'), - (14244, '0970310501'), - (14245, '0060910496'), - (14246, '0312929277'), - (9961, '0809434903'), - (14247, '006091601X'), - (14248, '0314040536'), - (14249, '0314260439'), - (5892, '0393000699'), - (5763, '1851680659'), - (8752, '0316547336'), - (14250, '0316547336'), - (7112, '0415908078'), - (8304, '0395674379'), - (14251, '0446394572'), - (665, '0020518706'), - (14252, '0446513644'), - (14253, '1562477587'), - (8569, '039300158X'), - (14254, '0802773877'), - (14255, '0802773877'), - (13099, '0805006923'), - (14256, '0385192401'), - (14257, '0385192401'), - (14258, '0767903595'), - (1272, '0140119698'), - (14259, '0894803220'), - (14260, '0894803220'), - (6059, '0962341053'), - (14261, '0962341053'), - (14262, '0891093699'), - (14263, '0941483096'), - (14264, '0886875269'), - (14265, '0886875269'), - (14266, '0963557572'), - (14267, '0876091729'), - (14268, '0439135230'), - (2007, '0446671223'), - (2008, '0446671223'), - (10787, '0937295132'), - (14269, '0345349040'), - (14270, '0060972947'), - (14271, '0060972947'), - (5599, '0446611751'), - (178, '0486277852'), - (14272, '1561384798'), - (14273, '1566395305'), - (14274, '0895297310'), - (14275, '0934878420'), - (14276, '1592799175'), - (14277, '0486240304'), - (7579, '1573221252'), - (14278, '0066211484'), - (14279, '1575842793'), - (14280, '094463432X'), - (14281, '1576730409'), - (14282, '0812921828'), - (14283, '0714827363'), - (14284, '1576732533'), - (186, '0830724923'), - (7115, '037602478X'), - (7917, '0805065989'), - (11858, '0743218035'), - (14285, '0874173515'), - (14286, '1558502874'), - (14287, '1558500502'), - (14288, '0135085322'), - (14289, '0312265611'), - (14290, '0395979366'), - (14291, '0312268033'), - (14292, '0684850796'), - (14293, '088162280X'), - (14294, '0688165273'), - (14295, '0380975440'), - (14296, '0395430976'), - (6410, '0785272399'), - (14297, '1841950955'), - (14298, '0385141041'), - (1556, '0967370167'), - (14299, '0785268766'), - (7814, '0312263015'), - (501, '0805056211'), - (14300, '0380975920'), - (14301, '0446524484'), - (7515, '0446519901'), - (14302, '0451168364'), - (14303, '0877735441'), - (13803, '0961475439'), - (13803, '0963625543'), - (13804, '0963625543'), - (14304, '1559722754'), - (14305, '0807009539'), - (9530, '0451526708'), - (14306, '0451526708'), - (14307, '0310217067'), - (14308, '0310217067'), - (14309, '0310217067'), - (14310, '0310217067'), - (14311, '0875964818'), - (14312, '0875964818'), - (14313, '047116917X'), - (14314, '0786866764'), - (14315, '0060805420'), - (6714, '0156027860'), - (965, '0689856741'), - (1024, '0689856741'), - (14316, '0671677217'), - (14315, '0671677209'), - (14317, '0802754309'), - (231, '0385311044'), - (14318, '0472060953'), - (14319, '0472060953'), - (2791, '0743205626'), - (1196, '0671524097'), - (5892, '0393009165'), - (14320, '0471496421'), - (14321, '0471496421'), - (14322, '0471496421'), - (14323, '0471496421'), - (14324, '0044409001'), - (14323, '0044409001'), - (1094, '0553578251'), - (4799, '0679741917'), - (4994, '0679741917'), - (1283, '0312253419'), - (2695, '006019832X'), - (14325, '089480619X'), - (14326, '0679764399'), - (14327, '0520088794'), - (14328, '0520088794'), - (220, '0060932139'), - (3480, '0060932139'), - (14329, '0449912337'), - (6672, '0671734598'), - (3590, '031286129X'), - (14330, '0962295701'), - (14331, '158234311X'), - (43, '0679870423'), - (14332, '0553279114'), - (14333, '0345345053'), - (14334, '0671028294'), - (14335, '0961000805'), - (14336, '0961000805'), - (14337, '0316105163'), - (14338, '0316105163'), - (7115, '0376024852'), - (7115, '0376024763'), - (415, '0425064506'), - (14339, '1929156006'), - (14340, '0553268724'), - (14341, '1582431264'), - (14342, '1883642442'), - (14343, '1573221686'), - (14344, '0395984165'), - (11049, '0805066667'), - (14345, '0590465880'), - (14346, '039594113X'), - (14347, '0060282320'), - (11888, '0312876610'), - (1363, '0060194170'), - (14348, '0385492979'), - (14349, '0395945151'), - (8268, '0375402721'), - (8345, '0316472409'), - (14350, '0944072917'), - (14351, '1582430225'), - (13156, '1582430225'), - (14352, '0385478194'), - (2472, '0060926066'), - (14353, '0865342695'), - (3969, '0380762951'), - (14354, '0505525054'), - (14355, '0044409575'), - (14354, '0044409575'), - (14356, '0044409575'), - (14357, '1559360739'), - (14356, '1559360615'), - (4104, '0679722068'), - (14358, '0679722068'), - (4614, '038070336X'), - (14359, '038070336X'), - (14360, '0810980991'), - (14361, '0810980991'), - (14362, '0448192187'), - (8730, '0141312181'), - (187, '0706431642'), - (12912, '0671019961'), - (14363, '0671019961'), - (2656, '0449217493'), - (2656, '0449214192'), - (14364, '1878580450'), - (11241, '0679437037'), - (11242, '0679437037'), - (8485, '0375707409'), - (14365, '0471155454'), - (14366, '0471155454'), - (20, '0446605964'), - (4719, '0374309302'), - (2656, '0449206513'), - (14367, '037581177X'), - (342, '0385480334'), - (4701, '0385480334'), - (4702, '0385480334'), - (4703, '0385480334'), - (151, '0061092614'), - (5633, '0451133129'), - (14368, '0684858266'), - (2656, '0449244741'), - (14369, '0449244741'), - (14370, '0449244741'), - (2656, '0449238598'), - (6370, '0140093451'), - (14065, '0317532901'), - (4614, '0380755408'), - (368, '067168079X'), - (4382, '0449147452'), - (12457, '0380704056'), - (12457, '038070529X'), - (14371, '0879052686'), - (2656, '0449234940'), - (368, '0671680765'), - (337, '042518904X'), - (14372, '0553284134'), - (136, '0451166876'), - (14373, '0451166876'), - (14374, '0446670332'), - (1144, '0812527259'), - (14375, '0440212049'), - (1704, '0553199552'), - (2656, '0449220923'), - (7221, '0375758771'), - (14376, '0899669611'), - (578, '0060924799'), - (14377, '0399122702'), - (2656, '0449210928'), - (2656, '0812534379'), - (2656, '0449239594'), - (14378, '0140036636'), - (14379, '0553272934'), - (14380, '0451409655'), - (14381, '1555972403'), - (10002, '1555972403'), - (397, '0521425042'), - (14382, '0521425042'), - (12125, '0521425042'), - (14383, '0345343727'), - (2551, '0804113645'), - (5583, '0671664824'), - (937, '038072121X'), - (3071, '067172018X'), - (9344, '0345388747'), - (8291, '055329010X'), - (309, '0553262815'), - (5538, '0812502701'), - (2949, '0786705337'), - (1740, '0812532236'), - (1740, '0425086577'), - (1740, '0812532082'), - (1740, '0812532368'), - (1740, '0812500768'), - (5874, '0553249355'), - (5874, '0553277006'), - (14384, '0553277006'), - (1180, '0441007910'), - (9169, '0441007910'), - (2224, '0441132456'), - (2224, '0446341819'), - (14385, '0671746340'), - (14386, '0671899007'), - (14387, '1878067265'), - (9192, '0553266640'), - (1065, '0553290053'), - (9192, '0380790521'), - (9192, '0553573322'), - (854, '0345326008'), - (14388, '0273637371'), - (14389, '0273637371'), - (14390, '087584877X'), - (14391, '087584877X'), - (1065, '0553298178'), - (2990, '0553298178'), - (9396, '0812520629'), - (9, '0446350982'), - (14392, '0590419668'), - (819, '0886774926'), - (12841, '039472366X'), - (14393, '0671720791'), - (14394, '0671720791'), - (14395, '0671720791'), - (2656, '0449206505'), - (2656, '0449214206'), - (2656, '0812513010'), - (14396, '0684859017'), - (1302, '0671654047'), - (2656, '0394450779'), - (506, '0743434870'), - (6616, '1850180490'), - (14397, '0425187403'), - (2656, '0449232042'), - (14398, '0679781420'), - (14399, '0684864185'), - (8852, '034535933X'), - (10713, '0345373480'), - (14400, '0671809385'), - (14401, '0312924291'), - (8233, '1565846567'), - (14402, '0061003425'), - (14403, '0451174186'), - (2610, '0140171673'), - (14404, '0804103712'), - (12223, '0380722607'), - (3317, '1558173331'), - (14405, '044921849X'), - (14406, '0345343263'), - (1302, '0671559044'), - (3379, '0345312015'), - (4682, '0375757643'), - (14407, '0375757643'), - (1179, '0449205983'), - (14408, '0451158717'), - (14315, '0671677225'), - (14409, '0821738976'), - (1507, '0836218981'), - (14359, '0810913038'), - (14360, '0810913038'), - (12674, '006028739X'), - (502, '0375761225'), - (14410, '0375761225'), - (14411, '0066211697'), - (10076, '080500503X'), - (2624, '0345340418'), - (551, '0671455257'), - (14412, '0802138039'), - (14413, '0802138039'), - (14414, '0060907967'), - (14415, '0449211479'), - (3172, '0449134040'), - (14416, '1569800677'), - (92, '0345330145'), - (2504, '0671720082'), - (2656, '0449237613'), - (2224, '0345332857'), - (14417, '0671698516'), - (5874, '0812536460'), - (1366, '0385333781'), - (5418, '0380720884'), - (10267, '0671644211'), - (14418, '0553158899'), - (14419, '0553158899'), - (2365, '0441908721'), - (9105, '0515126985'), - (2201, '0671578553'), - (14420, '0345371976'), - (819, '0886775647'), - (14421, '0802313167'), - (14422, '0312088353'), - (2834, '0553232894'), - (4322, '0060932902'), - (14423, '0609606077'), - (14424, '0306804751'), - (14425, '0306804751'), - (2656, '0394505050'), - (2656, '0878579109'), - (14426, '0878579109'), - (979, '0743205677'), - (14427, '0743205677'), - (14428, '0805047360'), - (14429, '0743222946'), - (14430, '0439376068'), - (14431, '0439376068'), - (1721, '0439376068'), - (14432, '0525457453'), - (7750, '0525457453'), - (14433, '0060960809'), - (93, '0375801766'), - (4787, '0805054537'), - (14434, '0312110529'), - (14435, '0525093303'), - (14436, '0671633635'), - (14437, '0671678051'), - (14438, '0452262704'), - (14439, '0688155162'), - (7581, '0060959622'), - (14440, '0385266367'), - (1664, '0140178724'), - (10410, '0195030680'), - (14441, '0670882070'), - (14442, '0395957826'), - (14443, '0156505150'), - (14444, '0854491872'), - (14445, '0451623797'), - (14446, '1568362641'), - (14445, '1568362641'), - (14447, '0393039870'), - (6370, '0140077715'), - (680, '0425153797'), - (1987, '0671740504'), - (5101, '0553293915'), - (14162, '0671016717'), - (12872, '0394710932'), - (2656, '0449203158'), - (14448, '0156806754'), - (7200, '0671746480'), - (8291, '0671743880'), - (14449, '0671743880'), - (14450, '0671743880'), - (14451, '0671739182'), - (14452, '067152044X'), - (1527, '0553241745'), - (14453, '0671880306'), - (2372, '0671880306'), - (14454, '0671880306'), - (2980, '0553121111'), - (13223, '0671709704'), - (14129, '0671520466'), - (2368, '0671506048'), - (14455, '0671506048'), - (14456, '0671506048'), - (14457, '0671506048'), - (14458, '0451129474'), - (14459, '0451129474'), - (2368, '0671882678'), - (14460, '0671882678'), - (123, '0671882678'), - (14461, '0671882678'), - (2372, '0671520962'), - (2371, '0671520962'), - (14462, '0671520482'), - (14129, '0671797042'), - (14463, '0671453580'), - (7385, '0671537830'), - (7176, '0671881167'), - (4655, '0671872753'), - (8518, '0671568116'), - (2991, '0671549170'), - (6854, '0671520474'), - (14464, '0671658158'), - (14465, '0671741403'), - (14466, '0671741403'), - (10763, '067151914X'), - (14467, '067151914X'), - (10595, '067151914X'), - (14468, '067151914X'), - (8291, '0553241702'), - (14469, '067179065X'), - (2224, '0345272129'), - (14470, '0345272129'), - (7200, '0671705601'), - (14450, '0671501054'), - (6854, '0671746472'), - (14471, '0671524887'), - (5148, '0671798588'), - (14466, '0671798588'), - (14467, '0671798588'), - (14472, '0671879979'), - (3198, '0060916095'), - (14473, '0449005127'), - (1999, '0374520763'), - (5150, '0671741438'), - (14474, '0671666622'), - (14464, '0671465430'), - (14475, '1884907873'), - (14476, '0449221202'), - (2624, '034536998X'), - (2881, '0671864165'), - (14477, '158613101X'), - (14478, '0767905040'), - (14479, '0802131379'), - (1857, '0380788756'), - (14480, '0553560727'), - (14481, '0553560727'), - (14482, '0515113522'), - (5063, '0515113522'), - (14483, '0451452356'), - (35, '0689835558'), - (14484, '0752843753'), - (14485, '0874777992'), - (1867, '0061007072'), - (7873, '0811205967'), - (14486, '0679750304'), - (14487, '0921912951'), - (5231, '0486287599'), - (14488, '0312963157'), - (14489, '0691003122'), - (14490, '067088460X'), - (6908, '067088460X'), - (14491, '0887307361'), - (14492, '0688089054'), - (14493, '0688089054'), - (14494, '0399522662'), - (3946, '0062548662'), - (7288, '0804112657'), - (14495, '1561704059'), - (14496, '0446525685'), - (14497, '0061011886'), - (14498, '034536225X'), - (5406, '0380728753'), - (8173, '0740729497'), - (8174, '0740729497'), - (14499, '0740729497'), - (14500, '0140046941'), - (14501, '0684837455'), - (14502, '0312022808'), - (14503, '0828869782'), - (10116, '0828869782'), - (4070, '055321392X'), - (367, '055321392X'), - (14504, '0881844632'), - (14505, '2710300257'), - (993, '0375507914'), - (14506, '0486220370'), - (14507, '0486220370'), - (14508, '0839828500'), - (14509, '0394408853'), - (14510, '0310219345'), - (2656, '0394565614'), - (2595, '0192834320'), - (14511, '0192834320'), - (14512, '0192834320'), - (14513, '0192834320'), - (14514, '0684839571'), - (14515, '0684839571'), - (8064, '156476768X'), - (5504, '0440123925'), - (6042, '0385264860'), - (11340, '0385264860'), - (58, '006109921X'), - (14516, '0870119206'), - (14517, '0870119206'), - (1308, '0394741722'), - (2669, '0140437908'), - (5627, '0140437908'), - (14518, '0140437908'), - (14519, '0060975466'), - (5538, '0671578588'), - (3893, '0671578588'), - (1696, '0671653989'), - (4730, '0886777119'), - (6444, '0886777119'), - (867, '0886777410'), - (14520, '0671577743'), - (5538, '0671577743'), - (734, '067087485X'), - (14521, '0553349155'), - (2325, '0156227258'), - (14522, '1578511933'), - (14523, '1578511933'), - (14524, '1578511933'), - (14525, '0684815753'), - (14526, '039952276X'), - (14527, '039952276X'), - (14528, '0385475985'), - (14258, '0385475985'), - (14529, '1561382477'), - (4079, '1567312950'), - (14530, '0382091175'), - (14531, '0382091175'), - (1282, '0553560204'), - (14532, '0345332784'), - (14533, '0824910591'), - (14534, '0670838101'), - (14535, '0689812744'), - (14536, '0689812744'), - (14537, '0140542388'), - (68, '0394530195'), - (14538, '1556113307'), - (14539, '0156093103'), - (6758, '0395486173'), - (622, '0064407470'), - (14540, '0060952423'), - (14539, '0060957182'), - (1210, '0870540947'), - (1210, '0743452631'), - (188, '0380812002'), - (1065, '0553293877'), - (14541, '0553573330'), - (1065, '0553573330'), - (1159, '0670030031'), - (14542, '002963900X'), - (14543, '0679430679'), - (14544, '0525943625'), - (12696, '0525943625'), - (14545, '0060985011'), - (14546, '0399512330'), - (14547, '1555253903'), - (14548, '0440415942'), - (10650, '0671892258'), - (129, '0316693715'), - (14549, '0440203244'), - (14550, '0440505984'), - (14551, '0688118852'), - (8068, '0395470439'), - (9, '0374184232'), - (14552, '0671541390'), - (14553, '1852307927'), - (14554, '0451406273'), - (14555, '0451406273'), - (1626, '0060192240'), - (14556, '0312146310'), - (14557, '0312146310'), - (14558, '0393087972'), - (6680, '0679456821'), - (14559, '0679456821'), - (14560, '0679454799'), - (630, '1575661381'), - (14561, '0380802112'), - (554, '055308576X'), - (14070, '0679456317'), - (554, '0553095870'), - (1616, '0679738142'), - (14562, '0876857446'), - (14563, '037601556X'), - (7115, '0376011998'), - (14564, '0376011998'), - (14562, '0376011998'), - (14565, '0376011998'), - (7372, '0553581929'), - (7916, '0451200284'), - (14566, '0425183025'), - (11550, '1551668599'), - (345, '0671036564'), - (2357, '0449224260'), - (580, '0449149900'), - (14567, '0395765285'), - (14568, '0395765285'), - (2006, '0380975343'), - (14569, '0916180018'), - (14570, '0916180018'), - (14571, '0679768149'), - (14572, '0316812404'), - (720, '0684834723'), - (14573, '1556155689'), - (7372, '0553581937'), - (532, '0451202317'), - (14574, '0465019803'), - (13416, '0671661353'), - (14575, '0534178081'), - (4602, '1551669153'), - (3571, '0140250948'), - (4189, '0393960129'), - (14576, '0393960129'), - (12551, '0312155476'), - (14577, '0393950344'), - (14578, '0393950344'), - (5466, '039309412X'), - (630, '0821766570'), - (2695, '0451180755'), - (4832, '0312974507'), - (14579, '0316115924'), - (1858, '0449202917'), - (85, '0393959031'), - (14580, '0393959031'), - (14581, '0821223496'), - (14582, '0821223496'), - (14583, '0821223496'), - (559, '0312979398'), - (1498, '0812590252'), - (14584, '0786889608'), - (14585, '0471985813'), - (14586, '0471985813'), - (14587, '0471985813'), - (14588, '0822953560'), - (1244, '0671553038'), - (1626, '0060175184'), - (3798, '0786889756'), - (9933, '0446605050'), - (4471, '0345428285'), - (217, '0140155058'), - (160, '0553571834'), - (2253, '0440235219'), - (2978, '042517140X'), - (14589, '0425184242'), - (4602, '1551668246'), - (1196, '0671523090'), - (2978, '0425160394'), - (14590, '0812928342'), - (13171, '0385471289'), - (14591, '0451205413'), - (14592, '0451205413'), - (14593, '0440235812'), - (368, '0515126519'), - (14594, '0380818655'), - (720, '0743430999'), - (8096, '0671019554'), - (14595, '0312112874'), - (6517, '0679760660'), - (14596, '0140094601'), - (154, '0385494246'), - (1965, '0451519485'), - (14597, '0451519485'), - (1065, '0812576403'), - (1554, '0812576403'), - (4051, '0375706690'), - (1315, '0452011876'), - (1316, '0452011876'), - (478, '0553109588'), - (14598, '0964411911'), - (11555, '087243169X'), - (14599, '0785264280'), - (14600, '1881471322'), - (12247, '0573690219'), - (8365, '0374102058'), - (14601, '0060950773'), - (14602, '0060950773'), - (14603, '0819143847'), - (14604, '1885492200'), - (14605, '1885492200'), - (2658, '067152836X'), - (1409, '0679720219'), - (14606, '0679720219'), - (5586, '0446670197'), - (14607, '0786885882'), - (14608, '0786885882'), - (14609, '0747259526'), - (2393, '0886779774'), - (2551, '0804115729'), - (5290, '0520209109'), - (7530, '0812568680'), - (14610, '0812568680'), - (14611, '0425164357'), - (2551, '0804114897'), - (368, '0449221113'), - (14610, '0380774992'), - (2257, '1551664305'), - (574, '0345397819'), - (848, '0871132095'), - (2271, '0451406893'), - (3164, '0553576232'), - (2577, '0425181979'), - (3164, '0553294083'), - (2259, '0312966210'), - (3997, '0821742841'), - (14612, '0312152841'), - (14613, '0312152841'), - (14614, '0312152841'), - (14615, '0312152841'), - (3745, '0671624830'), - (14616, '1564265536'), - (2259, '0380781484'), - (1071, '0812544161'), - (14617, '1559724307'), - (14618, '0140062785'), - (1116, '0553573705'), - (14619, '006107361X'), - (14620, '006107361X'), - (2791, '0671413678'), - (14621, '006096510X'), - (14622, '0385248253'), - (14623, '0394754271'), - (14624, '1885492030'), - (14625, '1885492030'), - (14626, '0917657462'), - (14627, '0385503636'), - (14628, '1558211853'), - (2805, '0671755056'), - (14629, '0812929136'), - (10438, '0679735186'), - (14630, '0449906566'), - (1096, '0060170808'), - (4080, '055324518X'), - (14631, '0452268737'), - (14632, '0896223337'), - (10385, '0451185145'), - (154, '0385494335'), - (14633, '0070371628'), - (583, '0394559584'), - (583, '0385245793'), - (3159, '0380973170'), - (82, '0192816861'), - (14634, '0192816861'), - (231, '0440226406'), - (4321, '0060924675'), - (2963, '0892966882'), - (2610, '0679721746'), - (14635, '0684815095'), - (1706, '0156153955'), - (14636, '0451180224'), - (1876, '0553572512'), - (4556, '0449912639'), - (6517, '0804107513'), - (13093, '0837820464'), - (14637, '0486415848'), - (14638, '1575252929'), - (14639, '1561893978'), - (14640, '1561893978'), - (6039, '1557043035'), - (14641, '1557043035'), - (14642, '1557043035'), - (10970, '1557043035'), - (13523, '1562823485'), - (1002, '0684854759'), - (14643, '0684824892'), - (14644, '0664501168'), - (14645, '0811823601'), - (14646, '0449901556'), - (2694, '0060933151'), - (49, '0679766669'), - (14642, '0684847957'), - (14647, '0345386817'), - (14648, '0345386817'), - (1428, '0590453874'), - (14649, '0875346197'), - (14650, '0875346197'), - (14651, '0875346197'), - (2077, '0939680491'), - (14652, '0812550978'), - (2681, '0345395107'), - (665, '0684169401'), - (3264, '0440219248'), - (14653, '0451524705'), - (14654, '0451524705'), - (14655, '091651532X'), - (14656, '0609602489'), - (7084, '0451402537'), - (3432, '0345370570'), - (14657, '0671770438'), - (70, '0395442567'), - (374, '0446313033'), - (2551, '0553291203'), - (6107, '0786707550'), - (2695, '0380813734'), - (14658, '0425148211'), - (2624, '0345346866'), - (2624, '0345352548'), - (551, '0671455265'), - (551, '067168356X'), - (13186, '0425169669'), - (13186, '0425146383'), - (13186, '0425163970'), - (13186, '0425153363'), - (14659, '0345371267'), - (14660, '0804102813'), - (55, '038077030X'), - (2624, '0449007111'), - (2624, '0345354893'), - (2624, '0449007065'), - (3400, '0553286161'), - (628, '0312141890'), - (14661, '0312141890'), - (2551, '0553272373'), - (14662, '0671678949'), - (13223, '038075908X'), - (14663, '038075908X'), - (14664, '0671870890'), - (274, '0140340203'), - (275, '0140340203'), - (6702, '0553481800'), - (14665, '0964102404'), - (14666, '0964102404'), - (4921, '0385292090'), - (14667, '1558320547'), - (14668, '0394553756'), - (14669, '0890875197'), - (14670, '0440506344'), - (14671, '0689823908'), - (14672, '0689823908'), - (441, '0671747827'), - (14673, '0553542311'), - (14674, '0440418283'), - (4604, '0684803860'), - (5691, '0684803860'), - (1634, '0671826786'), - (551, '0671464809'), - (14675, '0671464809'), - (14676, '0671464809'), - (551, '0671455303'), - (551, '0671455273'), - (551, '0671464140'), - (551, '0671456393'), - (551, '067145529X'), - (551, '0671464817'), - (4942, '0451156234'), - (12031, '0140108718'), - (14677, '034537682X'), - (14676, '0345382692'), - (14678, '0440414555'), - (7584, '0783890036'), - (7584, '1572701625'), - (14679, '1572701625'), - (2575, '0440160162'), - (2654, '0002215810'), - (1782, '0440207452'), - (2011, '0425084736'), - (2011, '042510429X'), - (2011, '0425079600'), - (2011, '0425094731'), - (2011, '0425104303'), - (2011, '0380751453'), - (2011, '0425100057'), - (14680, '0679861807'), - (8263, '0440402263'), - (8263, '0440400104'), - (8263, '0440400635'), - (5685, '0440400635'), - (3259, '0590226363'), - (3260, '0590226363'), - (7077, '006440840X'), - (14681, '006440840X'), - (3989, '1561560936'), - (14682, '1561560936'), - (14683, '0802115330'), - (436, '0345443802'), - (14684, '0393317013'), - (760, '0140177361'), - (14685, '1886746370'), - (14686, '1886746370'), - (14687, '0449148718'), - (1422, '0671206710'), - (14688, '0679807748'), - (12774, '0689821514'), - (14689, '0689821514'), - (14690, '0689821514'), - (10253, '0399207589'), - (777, '0525447091'), - (2393, '0886778441'), - (14691, '0883623382'), - (505, '0517541998'), - (14692, '0916103544'), - (14693, '0684837927'), - (1899, '0393301583'), - (14694, '0393301583'), - (1900, '0393301583'), - (14693, '0393301583'), - (14695, '0671447610'), - (14696, '0812882962'), - (14697, '0374319693'), - (14698, '087596480X'), - (14699, '1579545637'), - (14700, '1579545637'), - (14701, '1579545637'), - (607, '0449909549'), - (8745, '0345309049'), - (891, '0451197011'), - (14702, '0805779612'), - (14703, '0802130798'), - (14704, '0802130798'), - (106, '0316769576'), - (213, '0316769029'), - (2656, '0785728473'), - (14705, '0802730191'), - (5713, '0452272580'), - (56, '0192833588'), - (5748, '0192833588'), - (13920, '0192833588'), - (14706, '0192833588'), - (2075, '0449909174'), - (14707, '0684802678'), - (14708, '0671007858'), - (14709, '067100610X'), - (6466, '0671005022'), - (14710, '0671007238'), - (14711, '0822010933'), - (14712, '0822007088'), - (14713, '0452256178'), - (14714, '0399510737'), - (14715, '0802135501'), - (14716, '1556708556'), - (12562, '0140251383'), - (7600, '0688155502'), - (1887, '1860462588'), - (13363, '1860462588'), - (14717, '0440226937'), - (4938, '0312155638'), - (14718, '0312155638'), - (14719, '0446525596'), - (11986, '0446525596'), - (14720, '089281781X'), - (14721, '089281781X'), - (14722, '0140246142'), - (14723, '0394726421'), - (14724, '0312968892'), - (8096, '0671010123'), - (713, '0425143570'), - (14725, '0517524171'), - (14726, '0553351370'), - (14727, '0345381645'), - (14728, '0789200015'), - (14729, '0789200015'), - (14730, '1582431108'), - (14731, '0061011843'), - (14, '0786011386'), - (14, '0786010576'), - (14732, '970690042X'), - (14733, '0812928423'), - (14734, '0609801880'), - (6180, '0679725768'), - (965, '0140366679'), - (14735, '0140366679'), - (868, '031211933X'), - (14736, '0671686216'), - (14737, '0553282611'), - (14738, '0809254999'), - (14739, '0140243917'), - (821, '0385315147'), - (2199, '0385315147'), - (14740, '0373832877'), - (664, '0684832860'), - (14741, '0684832860'), - (2791, '067176960X'), - (14742, '0030195160'), - (965, '0553212257'), - (14743, '0070439915'), - (14744, '0393091198'), - (247, '0449219615'), - (14745, '0139705821'), - (14746, '0688052398'), - (1086, '0140131558'), - (14747, '066991066X'), - (14748, '0393090477'), - (14749, '0393090477'), - (2823, '0380811995'), - (8145, '0449003884'), - (10010, '0380794802'), - (9744, '0449222802'), - (9202, '0515105910'), - (14750, '0875427391'), - (10708, '0446360945'), - (3164, '0553581856'), - (6195, '038082079X'), - (1112, '0671873164'), - (14751, '0515129747'), - (14752, '0380809273'), - (14751, '0380809281'), - (14751, '0380818043'), - (14751, '0380818035'), - (14751, '0380797488'), - (6195, '0060514051'), - (6195, '0380820803'), - (6195, '0380815265'), - (7138, '0380798867'), - (6195, '0380810719'), - (2577, '0515133620'), - (4017, '0515133620'), - (2264, '0515133620'), - (14753, '0515133620'), - (2273, '0821765744'), - (7138, '0380820838'), - (7138, '0380809168'), - (7138, '0380818507'), - (7138, '038082082X'), - (137, '0394571819'), - (14754, '0380802902'), - (1075, '0441153135'), - (2168, '0451166027'), - (2169, '0380767848'), - (4826, '0590402803'), - (14755, '006050353X'), - (1754, '0671744216'), - (3702, '0445209402'), - (4024, '0380789337'), - (4017, '0312998368'), - (160, '0553252836'), - (5344, '0345353676'), - (634, '0449210235'), - (7547, '0802135412'), - (14756, '0393323145'), - (4826, '0670892475'), - (939, '0425118312'), - (433, '0441006256'), - (8884, '0439062810'), - (964, '0812558251'), - (14757, '0812558251'), - (2503, '0812564170'), - (14758, '0449149579'), - (433, '0345379845'), - (14759, '0684811138'), - (1075, '0441005837'), - (14760, '0671753673'), - (14761, '0671753673'), - (1397, '0380702878'), - (4250, '0152008691'), - (921, '0879516976'), - (921, '0879516984'), - (6192, '0843947470'), - (8952, '0505525526'), - (14762, '0380776170'), - (13303, '0440236746'), - (14763, '0536597073'), - (14764, '0030226864'), - (14765, '0155053272'), - (2650, '0875650546'), - (14766, '0875650546'), - (14767, '0321090934'), - (14768, '0072822805'), - (14769, '0072822805'), - (8952, '0843948167'), - (14770, '0671865846'), - (6444, '0886779227'), - (14771, '0886779227'), - (2262, '0060098538'), - (11565, '038081806X'), - (14772, '044900516X'), - (14773, '0671664247'), - (14774, '0671664247'), - (10086, '0375806776'), - (10088, '0375806776'), - (14775, '0345328396'), - (14776, '0451407105'), - (2261, '0505522551'), - (2276, '0380761505'), - (2276, '038077013X'), - (14777, '0451149203'), - (571, '0425140946'), - (1065, '0425093891'), - (1065, '0451149378'), - (4211, '0671793896'), - (14778, '0385469608'), - (14779, '0919891276'), - (14780, '0138876541'), - (14781, '0853980055'), - (13020, '0316507415'), - (14782, '0307136566'), - (9605, '0307136566'), - (14783, '0307136566'), - (14784, '0307136566'), - (14785, '0451163095'), - (14786, '0451163095'), - (14787, '0394504321'), - (14788, '0394504321'), - (14789, '0394504321'), - (14790, '0060972920'), - (974, '0394800869'), - (8754, '0553353896'), - (14791, '068483720X'), - (14792, '068483720X'), - (14793, '1889461024'), - (14794, '0306802538'), - (14795, '0898621283'), - (14796, '0898621283'), - (14797, '0771033737'), - (14798, '0062701908'), - (14797, '0062700162'), - (14799, '0345339428'), - (1727, '0394700058'), - (13020, '0316507350'), - (14800, '0425132110'), - (14801, '0425132110'), - (7019, '0671680277'), - (14802, '1572231408'), - (14803, '1572231408'), - (414, '0375500316'), - (14804, '059084475X'), - (14805, '0553374524'), - (1727, '0394712390'), - (142, '3548254152'), - (14806, '3548254152'), - (14807, '3203751046'), - (1086, '0140154078'), - (14808, '3596147239'), - (992, '3499131706'), - (14809, '3499131706'), - (992, '3499136899'), - (14808, '3499136899'), - (14810, '3466343755'), - (14811, '3466343755'), - (5170, '3442723302'), - (14812, '3442723302'), - (14813, '3442446783'), - (50, '3442446783'), - (5916, '3596121477'), - (351, '325721605X'), - (14814, '0671853414'), - (484, '0446341754'), - (484, '0446341851'), - (3619, '0553249169'), - (6474, '0671464043'), - (368, '067150732X'), - (9987, '0439354951'), - (14815, '0439354951'), - (122, '0553487728'), - (183, '0515115649'), - (7530, '0812564596'), - (14609, '0812564596'), - (6185, '0451192303'), - (7516, '0425185788'), - (8501, '0446405264'), - (6185, '0380792540'), - (14816, '0671222473'), - (433, '0812585658'), - (14817, '0671674269'), - (14818, '0553285084'), - (14819, '0590030205'), - (2561, '0425155501'), - (8502, '0445408642'), - (8501, '0449149005'), - (7516, '0425191273'), - (14820, '0517146789'), - (14821, '0156006510'), - (8501, '0449148297'), - (6426, '067152819X'), - (14822, '0743417038'), - (5946, '0684838923'), - (5947, '0684838923'), - (2360, '1582341338'), - (14823, '0806943424'), - (10652, '0806943424'), - (14824, '1414051999'), - (5695, '0525946535'), - (745, '1565845609'), - (14825, '1565845609'), - (14826, '1565845609'), - (14827, '1567315267'), - (14496, '0446530190'), - (10813, '087351288X'), - (14828, '087351288X'), - (94, '1556610351'), - (3615, '0517575019'), - (5986, '0385417926'), - (10029, '0671437933'), - (575, '067122591X'), - (14829, '0312373082'), - (5916, '0679415793'), - (14830, '0060153016'), - (575, '0395339707'), - (1498, '0446512362'), - (14831, '0800714113'), - (14832, '1557482101'), - (14833, '0890814449'), - (14834, '0840756178'), - (14835, '0835806219'), - (14836, '1561790613'), - (14837, '1561790613'), - (14838, '0310372712'), - (14839, '0890815038'), - (14840, '0892837101'), - (14841, '0890817715'), - (14842, '0800751248'), - (14843, '0912106344'), - (14844, '0912106344'), - (14845, '0917726405'), - (14846, '0917726405'), - (14847, '0890814317'), - (14848, '0890814317'), - (14849, '0890814317'), - (14850, '1555131085'), - (14851, '0891094202'), - (14852, '0892744421'), - (14853, '0882077112'), - (14854, '0912376376'), - (14855, '1576736512'), - (14856, '0883680912'), - (14857, '0840732422'), - (14858, '080246808X'), - (14859, '0802403336'), - (6259, '0449236129'), - (14860, '0840734581'), - (14861, '0840734581'), - (14862, '0840734581'), - (14863, '0896938174'), - (3591, '0310313414'), - (14864, '0802413978'), - (380, '0896935477'), - (14865, '0896935477'), - (14866, '0307120007'), - (14867, '0840753608'), - (14868, '068481465X'), - (14869, '068481465X'), - (14870, '0895775506'), - (14871, '0877795096'), - (14872, '0062700782'), - (14873, '0800700899'), - (14874, '0028702506'), - (14875, '0028702506'), - (14876, '0801010705'), - (14877, '0840775776'), - (14878, '0840775776'), - (14879, '1551563452'), - (14880, '1551563452'), - (14881, '0618446885'), - (369, '0373218575'), - (369, '0373218850'), - (5054, '0064400972'), - (5055, '0064400972'), - (5054, '0064400964'), - (5055, '0064400964'), - (6259, '0800711807'), - (14882, '0891094229'), - (12099, '0877844860'), - (14883, '080241544X'), - (14884, '089109072X'), - (14885, '0871235625'), - (14886, '0871235625'), - (14887, '066908669X'), - (14888, '066908669X'), - (14889, '0805453318'), - (14890, '0896933024'), - (14891, '0896933024'), - (14892, '0070615373'), - (14893, '0840790694'), - (14894, '0310269512'), - (14895, '031037281X'), - (14896, '0842350233'), - (14897, '084740739X'), - (14898, '1555136591'), - (14899, '080245982X'), - (4844, '0802487874'), - (14900, '0801082447'), - (14901, '0310347017'), - (14849, '0891911375'), - (14902, '0891091432'), - (14903, '0802473695'), - (14904, '0842315071'), - (14905, '0802489710'), - (14906, '0310459311'), - (14907, '0891091815'), - (14908, '0830703454'), - (14909, '0310225795'), - (56, '0893756113'), - (6031, '1576731863'), - (14910, '0345452690'), - (14911, '0771020139'), - (14912, '0771020139'), - (14913, '0384242146'), - (7316, '0754091392'), - (568, '0451626109'), - (1252, '1556610343'), - (1252, '0871239906'), - (1252, '0871239396'), - (1252, '087123940X'), - (1252, '0871238705'), - (1586, '0064430170'), - (13526, '0064430170'), - (14914, '0570060192'), - (14915, '0570060192'), - (14916, '0570060753'), - (14917, '0570060850'), - (14918, '0570060850'), - (40, '0020868901'), - (568, '0020442300'), - (14919, '0688121160'), - (6095, '0890438439'), - (14920, '0743246128'), - (2680, '0460875965'), - (14921, '0960394621'), - (14920, '0960394648'), - (1410, '0679893342'), - (1411, '0679893342'), - (14922, '0883965054'), - (14923, '0805047905'), - (3151, '0805047905'), - (5015, '0399501517'), - (1965, '0849914965'), - (7668, '0849914965'), - (6031, '0842335994'), - (6031, '0842335978'), - (6031, '084233596X'), - (6031, '0842335986'), - (14924, '0886873428'), - (14925, '1850155011'), - (7652, '1850155011'), - (14926, '0397300069'), - (14925, '0397300069'), - (14927, '0830729135'), - (5591, '0871238829'), - (5591, '0871236117'), - (5591, '1556610866'), - (5591, '0871239795'), - (5591, '0871236168'), - (5591, '0871234017'), - (5591, '0871233150'), - (5591, '0871233452'), - (5591, '0871233428'), - (5591, '1556610599'), - (5591, '1556610025'), - (5591, '0871239469'), - (5591, '0871234130'), - (2723, '1578563933'), - (6167, '1561794600'), - (14928, '1561794600'), - (14929, '0310202302'), - (14930, '0395911680'), - (91, '1558531211'), - (11379, '0786882417'), - (14931, '0898401003'), - (10841, '0898401003'), - (14932, '0930014898'), - (4889, '0930014898'), - (14933, '0805461957'), - (14934, '0195061551'), - (14935, '0195061551'), - (14936, '0195061551'), - (14937, '0801062500'), - (14938, '0802404529'), - (568, '0064471063'), - (833, '0064471063'), - (568, '0064409422'), - (833, '0064409422'), - (568, '0064471055'), - (833, '0064471055'), - (568, '0064471071'), - (833, '0064471071'), - (1395, '0818402539'), - (14939, '0818402539'), - (14940, '0802490549'), - (14941, '0800758382'), - (14942, '0800758382'), - (14943, '0800758382'), - (14944, '0310209161'), - (822, '0449238946'), - (822, '0449237869'), - (12060, '0449237869'), - (14945, '0891092897'), - (1996, '089107919X'), - (14946, '1561793620'), - (14947, '1400040930'), - (6031, '0842319476'), - (11555, '0824519671'), - (6031, '084230052X'), - (14948, '0310212146'), - (9536, '0310212146'), - (14949, '0684842874'), - (14950, '0684842874'), - (14951, '1576832961'), - (6167, '1561790206'), - (14952, '1561790206'), - (14953, '0800792149'), - (14954, '0800792149'), - (14955, '0800792149'), - (6031, '0842377506'), - (6031, '0842313079'), - (6031, '0842339760'), - (14833, '1578561493'), - (14956, '1578561493'), - (14957, '1556613369'), - (14958, '1556613369'), - (14959, '076240759X'), - (14960, '0452283396'), - (6031, '0842335722'), - (14961, '9999364497'), - (14962, '9999364497'), - (2723, '1576736563'), - (14963, '1576736563'), - (14964, '1576736563'), - (14965, '0802438059'), - (14966, '0553243470'), - (14967, '0891096078'), - (14968, '0891096078'), - (382, '0891096078'), - (1252, '0670894877'), - (1253, '0670894877'), - (14944, '084231802X'), - (14969, '084231802X'), - (9536, '0310521807'), - (2974, '0881843059'), - (14931, '0849905273'), - (14970, '0879056096'), - (14971, '0879056096'), - (14972, '0310224713'), - (14973, '0842321349'), - (14974, '0880701749'), - (14975, '1567314619'), - (1252, '0785280669'), - (1253, '0785280669'), - (1253, '0785280693'), - (1252, '0785280693'), - (1252, '0785280766'), - (1253, '0785280766'), - (1252, '0785280677'), - (1253, '0785280677'), - (1252, '0842375066'), - (1253, '0842375066'), - (1252, '0785280685'), - (1253, '0785280685'), - (1252, '0785281967'), - (1253, '0785281967'), - (1252, '0670030120'), - (1253, '0670030120'), - (1252, '0670030848'), - (1253, '0670030848'), - (14976, '0684718669'), - (586, '0688151981'), - (6772, '1573226254'), - (14977, '0517585073'), - (14332, '019505928X'), - (14978, '019505928X'), - (14979, '019505928X'), - (14980, '0395071763'), - (14981, '0395071763'), - (14982, '0944641393'), - (14983, '1572430753'), - (14984, '0964920107'), - (14985, '0964920107'), - (14986, '0787902691'), - (14987, '0787902691'), - (8330, '0787902691'), - (14988, '1561794058'), - (14989, '0943703034'), - (14990, '0943703034'), - (14991, '0918684544'), - (14992, '0918684544'), - (7728, '0064400808'), - (7728, '0064400816'), - (7728, '0064400085'), - (258, '0064400085'), - (7728, '0064400077'), - (258, '0064400077'), - (7728, '0064400069'), - (258, '0064400069'), - (7728, '0064400050'), - (258, '0064400050'), - (7728, '0064400042'), - (258, '0064400042'), - (14993, '1576737799'), - (14941, '0842307303'), - (14994, '0814402178'), - (14995, '0814402178'), - (14996, '0684868113'), - (14997, '0308800583'), - (14998, '0802787673'), - (14999, '0802787673'), - (381, '0849913241'), - (15000, '1564772241'), - (15001, '0696000121'), - (3141, '0028630092'), - (11972, '0452279232'), - (11973, '0452279232'), - (10807, '1561796344'), - (15002, '0060669667'), - (10802, '0060669667'), - (15003, '1569550913'), - (15004, '1569550913'), - (13031, '0025196359'), - (15005, '0842301801'), - (15006, '1580081916'), - (15007, '1561790419'), - (15008, '1561790419'), - (15009, '0802445241'), - (15010, '1558672540'), - (455, '0440566142'), - (15011, '1561381527'), - (14850, '0891095365'), - (281, '0613377095'), - (15012, '0385054483'), - (3141, '0028634691'), - (15013, '0028634691'), - (3141, '0028630238'), - (15014, '0070479321'), - (7115, '037602237X'), - (15015, '0060169613'), - (15016, '0962478407'), - (15015, '0962478415'), - (15017, '0802413587'), - (15018, '0802413587'), - (15019, '0849916747'), - (6031, '0842335706'), - (15020, '0871236109'), - (15019, '087123615X'), - (15021, '0842378480'), - (6031, '0842342710'), - (15022, '0525946756'), - (14920, '0960394672'), - (15023, '0064610446'), - (15024, '0805208690'), - (1815, '0671021354'), - (1816, '0671021354'), - (5591, '1556611536'), - (15025, '1556611536'), - (5591, '1556612257'), - (5591, '155661683X'), - (15001, '0061043850'), - (15026, '089480751X'), - (10115, '0146000501'), - (1099, '0670894885'), - (15027, '0441822134'), - (403, '0195101405'), - (15028, '0195101405'), - (25, '0195101405'), - (15029, '0195101405'), - (10445, '0679755179'), - (10445, '0394569393'), - (282, '0851191894'), - (282, '080410364X'), - (282, '0452262828'), - (6369, '0553262106'), - (15030, '0631189246'), - (989, '0671668781'), - (989, '0151731527'), - (7297, '0671201565'), - (15031, '0671201565'), - (3768, '039454272X'), - (5133, '0553208187'), - (5133, '0156907720'), - (5133, '0151001529'), - (5134, '0151001529'), - (3885, '1840680113'), - (3608, '0749399554'), - (15032, '0385240899'), - (2282, '0786881488'), - (8930, '015626028X'), - (6822, '015626028X'), - (15033, '0679761276'), - (2688, '0571105653'), - (8640, '0571105653'), - (15034, '0816621144'), - (7063, '0802135269'), - (15035, '0613073304'), - (15033, '0803263430'), - (15036, '0803263430'), - (15035, '0803263430'), - (15037, '9029532068'), - (15038, '067182306X'), - (15031, '0316082511'), - (15039, '0415049296'), - (15040, '0892813695'), - (15041, '0936703008'), - (15042, '0936703008'), - (3678, '0590409662'), - (15043, '0590409662'), - (1755, '0440800544'), - (8876, '0590624008'), - (15044, '0688136230'), - (2029, '0836204158'), - (1532, '0345359313'), - (15045, '1560545151'), - (15046, '0449240193'), - (3619, '0449241491'), - (13129, '0380641623'), - (2654, '0449231984'), - (2654, '0449214214'), - (15047, '0451402472'), - (5786, '0451177010'), - (15048, '0373160623'), - (15049, '0451114523'), - (3692, '0345343387'), - (5098, '0380716453'), - (15050, '0373074794'), - (7933, '0553225774'), - (6007, '0449244172'), - (1101, '0671742906'), - (2224, '0345296591'), - (9937, '0451130987'), - (914, '0380822970'), - (15051, '0446906492'), - (3172, '044920703X'), - (4619, '0553269321'), - (4232, '1557732108'), - (122, '0671708368'), - (606, '0812522729'), - (15052, '0380769514'), - (1528, '0553100777'), - (6377, '006080713X'), - (15053, '0226706702'), - (977, '0449239977'), - (2681, '0345355245'), - (15054, '0881845434'), - (3757, '0345314867'), - (15055, '0425101797'), - (15056, '0671430653'), - (1096, '0553268074'), - (15057, '0380761963'), - (15058, '0380761963'), - (6159, '0671431412'), - (6158, '0671431412'), - (2720, '0590965379'), - (15059, '0590965379'), - (15060, '038045534X'), - (15061, '0891291512'), - (1250, '0891291512'), - (15062, '0891291512'), - (3749, '0440156637'), - (15063, '0446814377'), - (10608, '0812557042'), - (15064, '0451453492'), - (598, '0765342308'), - (15065, '0671827847'), - (10758, '0671499335'), - (2504, '0345248686'), - (1667, '0553261797'), - (3078, '0441240879'), - (15066, '0441240879'), - (1740, '0553225227'), - (15067, '0345346505'), - (15068, '0345349474'), - (894, '0440161061'), - (4276, '0671818856'), - (4421, '0451172272'), - (4426, '0671648144'), - (5633, '0451165896'), - (7270, '0553116606'), - (15069, '0804112592'), - (1704, '0553122061'), - (1528, '0553235478'), - (2213, '0671834096'), - (15070, '0671834096'), - (15071, '0671834096'), - (15072, '0874313759'), - (15073, '0449232859'), - (15074, '0385007728'), - (15075, '0505516101'), - (15076, '0523009933'), - (3691, '0523009933'), - (15077, '0886770041'), - (15078, '0020436904'), - (15079, '0425129004'), - (15080, '0425129004'), - (15081, '0345286480'), - (15082, '0446824631'), - (1983, '0553256025'), - (2011, '0425050017'), - (15083, '0881840653'), - (817, '0440191831'), - (1528, '055325846X'), - (15084, '0449242390'), - (1490, '0452252733'), - (644, '0345319540'), - (10754, '0393311198'), - (891, '0515040460'), - (1532, '0061090417'), - (894, '0440178924'), - (2188, '0553251139'), - (15085, '0373160674'), - (3292, '0671451979'), - (6629, '0380010038'), - (15086, '0553245015'), - (15087, '0451147715'), - (15088, '067100252X'), - (15089, '0770104835'), - (15090, '0380712113'), - (3172, '0449125092'), - (15091, '0373071647'), - (2976, '0449209709'), - (15092, '0872169324'), - (15093, '0446300292'), - (15094, '0505515253'), - (15095, '0340337923'), - (377, '0553255509'), - (4137, '0449212785'), - (8679, '0515086703'), - (15096, '0882077449'), - (15097, '0843176989'), - (15098, '0843176989'), - (1362, '0449205037'), - (2586, '0553562940'), - (15099, '0553230360'), - (4571, '0345423631'), - (9311, '0812549872'), - (4730, '0743488318'), - (187, '0441525628'), - (15100, '0451159098'), - (13127, '0671439960'), - (795, '0345422589'), - (15101, '0345422589'), - (828, '0689869886'), - (15102, '0793823218'), - (2182, '0399236015'), - (15103, '0399236015'), - (15104, '0553133136'), - (12988, '0345300912'), - (15105, '0345300912'), - (4619, '0440106079'), - (13129, '0385288581'), - (891, '0515039276'), - (2528, '0515087254'), - (14819, '0515095125'), - (105, '0553278819'), - (15045, '0449232212'), - (6031, '044164449X'), - (15106, '0671469622'), - (15107, '0828009775'), - (15108, '0886772214'), - (14616, '038076413X'), - (15109, '038076413X'), - (15110, '038076413X'), - (10267, '0671729918'), - (15111, '0060804955'), - (15112, '1558172831'), - (15113, '0445407018'), - (15114, '0440119502'), - (15115, '0671502689'), - (3074, '055325698X'), - (5227, '0345293711'), - (7504, '0815604599'), - (2188, '0552121401'), - (92, '1588810070'), - (713, '0671746693'), - (891, '051509157X'), - (1144, '0515087335'), - (15116, '044104915X'), - (8323, '1561291935'), - (1858, '0679748261'), - (15117, '0451148207'), - (644, '0440215285'), - (15118, '0451528913'), - (15119, '0451528913'), - (10728, '074344485X'), - (10729, '074344485X'), - (15120, '0451144848'), - (506, '0449245276'), - (15121, '1852426411'), - (5319, '0312966040'), - (9679, '0451138945'), - (1293, '1558535527'), - (15122, '055329573X'), - (4619, '0440613965'), - (4137, '0449204200'), - (15123, '0523424515'), - (1704, '0553262564'), - (552, '0449148246'), - (20, '1558021256'), - (15124, '1558021256'), - (15125, '1558021256'), - (15126, '1558021256'), - (15127, '0451081641'), - (15128, '0451081641'), - (15129, '006080694X'), - (9023, '006080694X'), - (15130, '0671451820'), - (15131, '0373160925'), - (15132, '0821722999'), - (15133, '0061080535'), - (12232, '0451182677'), - (8104, '0345275748'), - (15134, '0553133179'), - (15135, '0821731130'), - (2576, '0345386302'), - (15136, '094323509X'), - (15137, '0312974167'), - (3192, '0451141482'), - (15138, '0553293850'), - (743, '0449146138'), - (4276, '0671824813'), - (15139, '187765213X'), - (81, '0425059995'), - (15140, '0060809469'), - (3945, '055320338X'), - (2893, '0440224489'), - (15141, '1557730121'), - (1983, '0345281527'), - (12981, '0590333062'), - (15142, '0553113313'), - (9127, '0553201344'), - (15143, '0553201344'), - (9729, '0380558890'), - (15144, '155817060X'), - (7335, '0380701766'), - (15145, '0439474299'), - (187, '073880701X'), - (10694, '0441358489'), - (15146, '055322588X'), - (15147, '1558176535'), - (15148, '0345314891'), - (15149, '0373071248'), - (15150, '0446896268'), - (15151, '0446300675'), - (5004, '0553292587'), - (1339, '0671507915'), - (15152, '1577487869'), - (1878, '0140298452'), - (7277, '0671741039'), - (15153, '0425064638'), - (15154, '0821721054'), - (14695, '0451120531'), - (1339, '0446322490'), - (15155, '0553246178'), - (10129, '0373166907'), - (15156, '0312954425'), - (3763, '0517118424'), - (4376, '034538332X'), - (2535, '067975377X'), - (15157, '067143487X'), - (15158, '0553087258'), - (15159, '0553087258'), - (15160, '0451187415'), - (15161, '0373630336'), - (15162, '0553262041'), - (559, '0451113357'), - (15163, '0060805463'), - (3172, '0449132757'), - (6107, '0380705753'), - (15164, '067156787X'), - (15165, '0441240941'), - (15166, '0440104327'), - (8890, '0449203433'), - (2504, '0345334973'), - (8291, '0345334973'), - (15167, '0839825943'), - (15168, '037327033X'), - (7392, '0373074646'), - (4155, '0285620878'), - (15169, '0440217113'), - (15170, '0523009151'), - (484, '0446360074'), - (15171, '0373612443'), - (7560, '0440123070'), - (1109, '0446914770'), - (10355, '0373706413'), - (15172, '0425071197'), - (13185, '0440008379'), - (9937, '0451162188'), - (15173, '059030061X'), - (743, '0449134369'), - (15174, '0312914873'), - (630, '0345341228'), - (1665, '0684871254'), - (15175, '0345319087'), - (15176, '0915473135'), - (6167, '0849930715'), - (15177, '0696017288'), - (15178, '0883441047'), - (15179, '0806625783'), - (15180, '0806625783'), - (14973, '0830709967'), - (15181, '0883638886'), - (15182, '0671620991'), - (6246, '0671499505'), - (15183, '0877843309'), - (15184, '0800750268'), - (15185, '0688111505'), - (15186, '0880704756'), - (15187, '0880704756'), - (15188, '0934134464'), - (15189, '0891095578'), - (15190, '0891095578'), - (12400, '0671709003'), - (15191, '0523008473'), - (15192, '0671693786'), - (15193, '0881840238'), - (9753, '0843931248'), - (1528, '0553259571'), - (15194, '0830813233'), - (15195, '0830813233'), - (15196, '0394718526'), - (3751, '0451155009'), - (14022, '0451164555'), - (15197, '0312960875'), - (15198, '0393073610'), - (15199, '0393073610'), - (14280, '1562921495'), - (15200, '0312926146'), - (15201, '0312926146'), - (15202, '0385270399'), - (15203, '0882077120'), - (10700, '0553253514'), - (12996, '0553147021'), - (15204, '0670808652'), - (1704, '0553246402'), - (1179, '0449205975'), - (15205, '0449228878'), - (1842, '0449147371'), - (15206, '0061320684'), - (1859, '0061320684'), - (2977, '0553133969'), - (1493, '0312905823'), - (377, '0553253638'), - (2695, '0380709937'), - (1704, '0553258990'), - (15207, '067153291X'), - (2861, '0553271598'), - (10605, '094202401X'), - (15208, '0345361628'), - (15209, '0812559894'), - (15210, '0812559894'), - (15211, '0380773988'), - (2188, '0553029754'), - (15212, '0312912951'), - (15213, '0446300853'), - (3704, '0316952664'), - (1339, '0446302686'), - (15214, '0373071957'), - (15215, '0805003819'), - (15216, '0517536242'), - (15217, '0517536242'), - (7183, '0375409270'), - (2528, '0515084557'), - (2188, '0553264907'), - (15218, '0373706677'), - (15219, '0440111935'), - (15220, '0553373846'), - (15221, '1884739091'), - (8559, '0812558138'), - (575, '0671509756'), - (15222, '0385096313'), - (15223, '0373030940'), - (6177, '0340268778'), - (15224, '0877931267'), - (5974, '0553246763'), - (14464, '0671648705'), - (8543, '038059949X'), - (6669, '0140069704'), - (15225, '0345255216'), - (5128, '038070935X'), - (2143, '0140130209'), - (501, '0440135842'), - (3710, '0446605158'), - (15226, '0451115473'), - (15227, '0440125820'), - (4232, '0425058603'), - (2372, '0445209348'), - (6116, '0553574043'), - (15228, '0553574043'), - (15229, '0449235254'), - (15230, '0882704214'), - (880, '0671871218'), - (6107, '0380705729'), - (15231, '0060807393'), - (15232, '0373264348'), - (15233, '0446314668'), - (15234, '039474098X'), - (15235, '0881842214'), - (15236, '0821719882'), - (1528, '0553248642'), - (10742, '0345368711'), - (15237, '0704326485'), - (6110, '0394723929'), - (15238, '0446327786'), - (1281, '0884041557'), - (743, '0671600729'), - (15239, '0380802562'), - (441, '0380802562'), - (15240, '0380802562'), - (15241, '0939286017'), - (5892, '0393301087'), - (15242, '0515056561'), - (1112, '1551660989'), - (15243, '0425070085'), - (2006, '0380851180'), - (5448, '0246134933'), - (15105, '0671430742'), - (15244, '0373085567'), - (15245, '0373031084'), - (13283, '0440179297'), - (3469, '0373160739'), - (4747, '0821747169'), - (1998, '0743431685'), - (1760, '0873513223'), - (15246, '0873513223'), - (568, '0613071832'), - (15247, '0671504681'), - (15248, '0030577861'), - (3071, '0671431056'), - (10676, '0671431056'), - (15249, '0380791137'), - (15250, '0380791137'), - (8873, '0439130263'), - (943, '0141306971'), - (142, '0670260770'), - (713, '0425161021'), - (142, '0833510266'), - (573, '0793800722'), - (15251, '0793800722'), - (437, '0553580752'), - (15252, '0743244281'), - (9026, '0060008873'), - (369, '0553264613'), - (597, '0590877437'), - (3693, '0446678651'), - (1302, '0441205666'), - (15253, '0898156270'), - (15254, '0793818524'), - (15255, '042508437X'), - (15256, '042508437X'), - (15257, '0671541811'), - (15258, '0505515563'), - (1265, '0553293397'), - (867, '0783890656'), - (1065, '0345444051'), - (176, '0517542099'), - (11507, '0609605453'), - (15259, '086622064X'), - (15260, '0962448206'), - (17, '0757300006'), - (18, '0757300006'), - (15261, '0757300006'), - (15262, '0425095908'), - (15263, '0806961007'), - (15264, '0806961007'), - (597, '0590877542'), - (597, '0590877623'), - (832, '059087764X'), - (2237, '0590877666'), - (597, '0590878549'), - (15254, '0425104842'), - (15255, '0425104842'), - (10763, '0671541501'), - (1117, '0061054240'), - (7493, '074344261X'), - (9147, '0671652273'), - (2292, '0671735551'), - (2660, '0060911980'), - (15265, '0879737964'), - (2991, '0671042718'), - (835, '0671794388'), - (2368, '0671009257'), - (7830, '0671019155'), - (2991, '067104270X'), - (15266, '006254506X'), - (2368, '0671032577'), - (6854, '067174142X'), - (14461, '0671032550'), - (6854, '0671741454'), - (7209, '0671775715'), - (15267, '0451207637'), - (7826, '1551668130'), - (2258, '0380776839'), - (15268, '0515129496'), - (15269, '0804101396'), - (1112, '0743411544'), - (458, '0553573225'), - (2258, '0380808080'), - (6223, '0671039199'), - (8414, '0671039199'), - (15270, '0486261794'), - (15271, '0912692561'), - (187, '0812555120'), - (1853, '0064405737'), - (11069, '0064405737'), - (1410, '0394868811'), - (1411, '0394868811'), - (2811, '0812534018'), - (962, '1572700408'), - (15272, '1572700408'), - (15273, '0836218914'), - (15274, '0836218914'), - (1158, '0836220668'), - (187, '0812574710'), - (63, '0451192028'), - (433, '0345387791'), - (5875, '0345387791'), - (2029, '0836217403'), - (606, '0373802021'), - (105, '0440119766'), - (15275, '0394714202'), - (1245, '0385312202'), - (2654, '0736625828'), - (2656, '0394500792'), - (713, '0736605029'), - (15276, '0736605029'), - (15277, '0451087488'), - (1362, '1585671827'), - (5227, '0345324455'), - (3314, '0449911764'), - (1013, '0805013342'), - (6544, '0345300610'), - (15278, '0803705832'), - (12767, '0803705832'), - (15279, '0688159079'), - (15280, '0060929510'), - (1674, '0060277475'), - (3610, '0743434897'), - (15281, '0743423917'), - (2504, '0812566785'), - (15282, '0515134406'), - (1281, '0884042855'), - (15283, '0060096209'), - (3893, '0345350502'), - (867, '0671667033'), - (187, '0812534867'), - (3848, '0553263218'), - (15284, '0891904891'), - (6426, '0671737120'), - (15285, '0821735985'), - (6483, '0345334841'), - (14831, '0842339558'), - (15286, '0025182005'), - (15287, '0595144470'), - (368, '1572701285'), - (8579, '1572701285'), - (15288, '0451110293'), - (2993, '0446365696'), - (15289, '0446365696'), - (1339, '0671724517'), - (15290, '0671874950'), - (237, '0553171712'), - (15291, '0736603964'), - (15292, '0440126185'), - (736, '0446364703'), - (397, '1903436087'), - (15293, '1903436087'), - (15294, '1903436087'), - (15295, '067154313X'), - (15296, '0140302069'), - (15297, '1401088945'), - (15298, '1401088945'), - (1302, '0812511182'), - (2633, '0446392340'), - (2224, '0345277996'), - (2186, '0061054275'), - (15299, '0441110444'), - (15300, '1582340544'), - (15301, '0061054747'), - (15302, '0679768645'), - (15303, '0698107047'), - (15304, '0333185153'), - (626, '0671776096'), - (5480, '0440384974'), - (15305, '0380391236'), - (15306, '0380699710'), - (4979, '0671690140'), - (15307, '0881844314'), - (15308, '0671221396'), - (6568, '0671732498'), - (15309, '0747548218'), - (3020, '0553121456'), - (15310, '0892440384'), - (15311, '1842326481'), - (2249, '0380811901'), - (3315, '0345339215'), - (4276, '0671874861'), - (15312, '9997405307'), - (15313, '0064470148'), - (873, '0312857322'), - (14145, '0312857322'), - (15314, '0310275121'), - (3615, '0553284657'), - (15315, '0786704845'), - (15316, '0671832611'), - (1571, '0553290045'), - (15317, '0505512386'), - (15318, '0505516292'), - (10962, '0140071229'), - (15319, '0140071229'), - (15320, '0441783058'), - (2654, '0449213617'), - (2656, '039455695X'), - (15321, '0345282892'), - (14371, '0060179716'), - (644, '0440213991'), - (10554, '0373610734'), - (15322, '0451136497'), - (2504, '0671532278'), - (3071, '0671532278'), - (337, '0440193281'), - (891, '0515091332'), - (15083, '0340020326'), - (713, '0425175413'), - (15323, '0821719246'), - (534, '0671737783'), - (4488, '0396065023'), - (7515, '0446603058'), - (14151, '0380707063'), - (2249, '1551667169'), - (4376, '0345383850'), - (1755, '044098761X'), - (5078, '0451208641'), - (4730, '0345325885'), - (15324, '0879972734'), - (1265, '0345318315'), - (15325, '0525169954'), - (309, '0553257048'), - (15326, '0843938366'), - (15289, '0671526812'), - (945, '0345439724'), - (906, '0396088678'), - (13303, '0440226279'), - (15327, '044017399X'), - (6016, '0446305618'), - (4232, '0441585558'), - (559, '0449204960'), - (15328, '0451400216'), - (15150, '0446342122'), - (5047, '044022795X'), - (8890, '0449209741'), - (15329, '1558174516'), - (15330, '044022327X'), - (1704, '0553130986'), - (6056, '0451162897'), - (9938, '0553148915'), - (15331, '1558021833'), - (11516, '0345343581'), - (15332, '0441122892'), - (15333, '0821716700'), - (2006, '0380899825'), - (15334, '0380751712'), - (1283, '0671640127'), - (1319, '0445203684'), - (187, '0812555112'), - (15335, '0380772973'), - (15336, '034529601X'), - (15337, '0553272659'), - (15338, '0843946539'), - (15339, '0151569401'), - (8890, '0449203948'), - (15340, '0590312642'), - (15307, '0380008424'), - (1164, '0553282204'), - (2157, '0394756886'), - (8277, '037382503X'), - (15341, '0345256557'), - (2257, '0446323802'), - (14638, '0874068541'), - (15342, '0874068541'), - (15343, '0874068541'), - (15344, '0761115366'), - (2011, '1564310310'), - (7515, '0380703696'), - (5605, '0689806590'), - (5606, '0689806590'), - (5607, '0689806590'), - (15345, '0140097309'), - (337, '0440146291'), - (8890, '0449200582'), - (4288, '0156551381'), - (15346, '0373705166'), - (15347, '0884113795'), - (12578, '0380012278'), - (15348, '0380607077'), - (234, '0380018446'), - (559, '0449202712'), - (15349, '1557508275'), - (15350, '1557508275'), - (2528, '0515090220'), - (4232, '0425122611'), - (2043, '0425120430'), - (4232, '0425052478'), - (3172, '044912505X'), - (580, '0425188221'), - (15351, '0091059801'), - (9751, '0671007947'), - (15290, '0449207269'), - (8890, '0449207307'), - (826, '0671555022'), - (2667, '0451400372'), - (15352, '0523417489'), - (15353, '0380003120'), - (115, '0380733358'), - (630, '0345273559'), - (12599, '0345347897'), - (15354, '1557481733'), - (15355, '0671633457'), - (6177, '0380703122'), - (10550, '0373638388'), - (3996, '0886774039'), - (1898, '0312854285'), - (873, '0312930372'), - (2681, '0385261853'), - (15356, '0385261853'), - (4730, '0385261853'), - (7021, '0312890524'), - (15357, '031287054X'), - (4543, '0812545591'), - (15358, '0152015981'), - (15359, '0152015981'), - (3151, '0399218777'), - (325, '0345377591'), - (15360, '0812095367'), - (15361, '0812095367'), - (15362, '0812095367'), - (8240, '0446602930'), - (15363, '0816724350'), - (15364, '0816724334'), - (15365, '0816724334'), - (5418, '0688124097'), - (4524, '0786916575'), - (2382, '031294165X'), - (5443, '0061052663'), - (10708, '0446324388'), - (3793, '0679433074'), - (4414, '0807204684'), - (15366, '0807204684'), - (15367, '0671624121'), - (15368, '0380731614'), - (15369, '0345301706'), - (10301, '0671648772'), - (4197, '0345369114'), - (1088, '0451110951'), - (15370, '0816750343'), - (15371, '0874068118'), - (15372, '0874068118'), - (15373, '093527829X'), - (142, '0451185978'), - (9685, '0312971842'), - (13182, '0821764039'), - (15374, '1564581772'), - (15375, '067980353X'), - (15376, '0915793806'), - (15377, '1558533729'), - (15378, '1558533729'), - (15379, '1558533729'), - (15380, '0801487722'), - (187, '0812574982'), - (2603, '0786819146'), - (15381, '0312216130'), - (819, '0446610968'), - (818, '0446610968'), - (15382, '0688139582'), - (2603, '0786808551'), - (187, '1885173997'), - (11054, '0441005659'), - (11054, '0441006353'), - (15383, '0812584236'), - (15384, '0451182987'), - (15385, '0805462996'), - (1196, '0671524208'), - (15386, '0891073000'), - (943, '0440437423'), - (15387, '0821746200'), - (15388, '0679892648'), - (2233, '0671001841'), - (2233, '0671001876'), - (6884, '0439108403'), - (15389, '0679856927'), - (7571, '0553280708'), - (818, '0812507452'), - (819, '0812507452'), - (15390, '067187599X'), - (1328, '0553572393'), - (8414, '0671877135'), - (10612, '0671877135'), - (606, '0671877135'), - (1714, '0671877135'), - (4909, '0553562622'), - (9442, '0836228804'), - (15391, '0812029763'), - (15392, '0812029763'), - (10826, '084993897X'), - (3051, '0380709902'), - (15393, '0964561131'), - (15394, '1878605003'), - (8530, '0590338684'), - (12711, '0590411837'), - (15395, '1555135269'), - (15396, '1555135269'), - (66, '0880709723'), - (596, '0440472105'), - (600, '0590401939'), - (600, '0590456903'), - (15397, '0590456903'), - (15398, '051508994X'), - (15399, '1555137377'), - (15400, '0800753569'), - (15401, '0800753569'), - (15402, '0840792549'), - (10166, '0874064163'), - (12975, '0380761122'), - (15403, '039475591X'), - (15404, '0671747134'), - (4814, '0671656767'), - (1229, '0671645870'), - (13212, '0373834152'), - (583, '055327953X'), - (15405, '0373244770'), - (15406, '0373271808'), - (94, '0671533789'), - (5586, '078681358X'), - (15407, '0486291707'), - (15408, '0486291707'), - (3787, '0064405788'), - (15409, '1856979660'), - (827, '0140363912'), - (15410, '0064405753'), - (7725, '0064405753'), - (15411, '0684191202'), - (2126, '0312113420'), - (15412, '0312113420'), - (1853, '0060274069'), - (7075, '0440220246'), - (5404, '0679767819'), - (15413, '0590623761'), - (15414, '0590623761'), - (15415, '0915560186'), - (15416, '0395957524'), - (12076, '0395957524'), - (7728, '0590252194'), - (7426, '0307119408'), - (713, '0425138232'), - (7426, '0307117138'), - (7426, '0307126854'), - (7426, '030711936X'), - (15417, '0394825691'), - (15416, '0394926250'), - (15418, '0440411483'), - (1025, '0689803931'), - (9385, '006106632X'), - (10086, '044040942X'), - (1025, '0689807791'), - (15419, '0689807791'), - (5591, '0934998191'), - (15420, '0934998191'), - (2182, '0441005993'), - (4906, '0553572644'), - (798, '0689318332'), - (15421, '0440425050'), - (631, '0440425050'), - (12143, '156282144X'), - (974, '0679805273'), - (2738, '0440411459'), - (568, '0020442106'), - (15422, '0020442106'), - (833, '0020442106'), - (15409, '0064404781'), - (7725, '0064404781'), - (3885, '0590411365'), - (15423, '0140364749'), - (15424, '0140364749'), - (1025, '0689714920'), - (1026, '0689714920'), - (6703, '0821770829'), - (2182, '044100315X'), - (15409, '0064405745'), - (7725, '0064405745'), - (441, '0397318731'), - (4681, '0397318731'), - (15425, '0397320043'), - (596, '0440472431'), - (274, '0394935942'), - (15426, '0961866349'), - (15427, '0781409756'), - (15428, '0856487643'), - (15429, '0856487643'), - (15430, '0307132048'), - (94, '1555781020'), - (505, '0517560232'), - (15431, '0525259600'), - (5522, '0525259600'), - (2987, '0061059846'), - (5540, '0061059846'), - (433, '0345336038'), - (5926, '0441007287'), - (5055, '0064461629'), - (15432, '044022036X'), - (15408, '0874063353'), - (15433, '0874063353'), - (15434, '0590319043'), - (5926, '0441008550'), - (15435, '0570049628'), - (15436, '0553154680'), - (7755, '0440900107'), - (15437, '0140360352'), - (1375, '0440220289'), - (66, '084233226X'), - (65, '084233226X'), - (5926, '0441003494'), - (11815, '0886775795'), - (15438, '157145165X'), - (11815, '0886775507'), - (895, '0451194764'), - (896, '0451194764'), - (17, '155874715X'), - (18, '155874715X'), - (7792, '155874715X'), - (7793, '155874715X'), - (5441, '0440412579'), - (1024, '0027701301'), - (17, '0439078415'), - (15436, '0140384235'), - (15435, '0553155601'), - (15439, '0671721836'), - (15438, '0671878530'), - (606, '0671876368'), - (243, '0590442953'), - (61, '0385489005'), - (15440, '0811643085'), - (15441, '0811643085'), - (15442, '0380800500'), - (15443, '0689808518'), - (441, '0671026518'), - (15444, '0671026518'), - (15445, '0762409053'), - (15446, '0312922884'), - (15447, '0684856093'), - (7594, '0312269242'), - (15448, '044145125X'), - (5606, '0380645432'), - (11119, '0380645432'), - (4909, '087406841X'), - (15449, '087406841X'), - (15450, '044022022X'), - (1298, '0440407079'), - (11312, '0440219914'), - (15451, '068801075X'), - (10551, '0486252086'), - (13015, '0486252086'), - (274, '0140328742'), - (596, '0380709570'), - (617, '0380709570'), - (2237, '0590629816'), - (15452, '0590629816'), - (597, '0590494368'), - (93, '0394825993'), - (15453, '0590435418'), - (14391, '0590424602'), - (276, '0141301163'), - (276, '0590383892'), - (1891, '0425042502'), - (15454, '3492101658'), - (1989, '0439286069'), - (15455, '0140190430'), - (15456, '0140190430'), - (15457, '0140190430'), - (15458, '3811820966'), - (15459, '3811820966'), - (15460, '3404243013'), - (15461, '3150089573'), - (15462, '3150089573'), - (9622, '0380755351'), - (1396, '0440188601'), - (1265, '0553561227'), - (6222, '1857231791'), - (15463, '0385327943'), - (15464, '1591820634'), - (15463, '1591820634'), - (15463, '193151464X'), - (15465, '1569716692'), - (15466, '1591820014'), - (15467, '1591822424'), - (7172, '1892213753'), - (7172, '1892213761'), - (7172, '189221377X'), - (7172, '1892213788'), - (7172, '1892213796'), - (11055, '156931957X'), - (15468, '1591160774'), - (15469, '1591160774'), - (15470, '1591162149'), - (15469, '1591162149'), - (15467, '1591160766'), - (15468, '1591160766'), - (15471, '1591820642'), - (15472, '1591820642'), - (7168, '1569319502'), - (15473, '1591823544'), - (15474, '1591823544'), - (15464, '1569714215'), - (1815, '0671024337'), - (1816, '0671024337'), - (15475, '1563897490'), - (15476, '1931514542'), - (15475, '1931514550'), - (15475, '1931514569'), - (15475, '1931514577'), - (15465, '1591820022'), - (15477, '1591820022'), - (15478, '1591820022'), - (15479, '1591823803'), - (15480, '1591823277'), - (15481, '1591826969'), - (7168, '1892213591'), - (15482, '097250379X'), - (15483, '097250379X'), - (15466, '1591821088'), - (7168, '1569319499'), - (15484, '4889960473'), - (15485, '1591821541'), - (15486, '1591821541'), - (15487, '1591823781'), - (2924, '0525946845'), - (15488, '0786015012'), - (7172, '1591820340'), - (15489, '1591823668'), - (15490, '1591822416'), - (15489, '1591822416'), - (15489, '1591822408'), - (142, '0375507779'), - (580, '0375507779'), - (15478, '159182379X'), - (15486, '1591823773'), - (15491, '1588991962'), - (15492, '1588992942'), - (15490, '1588992942'), - (2720, '0590411829'), - (2719, '0590411829'), - (7775, '0590411829'), - (15493, '0880387548'), - (1041, '0880382678'), - (15416, '0394825713'), - (15494, '1568304706'), - (15495, '1568304706'), - (15496, '0380821036'), - (142, '0670835382'), - (15497, '0881622400'), - (15498, '0881622400'), - (3754, '1568849079'), - (15499, '1569314284'), - (15500, '1569318697'), - (15499, '1569318697'), - (6701, '0451523199'), - (15501, '0883650215'), - (15502, '0312879016'), - (15503, '1591822157'), - (15504, '1591822149'), - (15505, '1591822149'), - (15506, '1591822149'), - (15507, '1561633291'), - (15508, '1569319014'), - (15507, '1569319014'), - (15509, '1591821878'), - (7172, '1892213362'), - (15510, '1569311803'), - (15509, '1569311803'), - (15511, '1580084648'), - (252, '0517703238'), - (15512, '0060174110'), - (142, '0881037214'), - (5160, '0061054151'), - (142, '0451157753'), - (142, '0451150708'), - (76, '0671758721'), - (15513, '1931514917'), - (15514, '1931514917'), - (15515, '0875965598'), - (15516, '0875965598'), - (527, '0823039919'), - (859, '0140350489'), - (574, '0679438335'), - (574, '0375416218'), - (15517, '0375416218'), - (7172, '1892213664'), - (15479, '1591823269'), - (397, '0671727672'), - (403, '0440471869'), - (142, '0451092163'), - (568, '0020442009'), - (1815, '0671017136'), - (1816, '0671017136'), - (8368, '0671017128'), - (5153, '0671017128'), - (15518, '0967063108'), - (12541, '0449005747'), - (15519, '0312288840'), - (236, '0446676098'), - (15520, '0739411543'), - (142, '0451169514'), - (15463, '1931514623'), - (568, '0064405036'), - (833, '0064405036'), - (568, '0064405044'), - (833, '0064405044'), - (568, '0064405028'), - (7456, '0064405028'), - (568, '0064405001'), - (833, '0064405001'), - (568, '006440501X'), - (833, '006440501X'), - (568, '0064404994'), - (833, '0064404994'), - (142, '067103264X'), - (1013, '3442054672'), - (15521, '3442054672'), - (154, '3257225792'), - (5912, '3257230982'), - (15522, '3257230982'), - (3209, '3442350603'), - (15523, '3442350603'), - (15524, '3499121352'), - (15525, '3886800849'), - (644, '3492256856'), - (5258, '3423119152'), - (6568, '3596214572'), - (15526, '3596214572'), - (15527, '3596214572'), - (4133, '3423110066'), - (215, '3423011505'), - (15528, '3821806354'), - (1109, '3518389009'), - (15529, '3518389009'), - (220, '3596259924'), - (401, '019283374X'), - (7889, '019283374X'), - (7048, '019283374X'), - (4932, '3492233740'), - (4932, '3492233708'), - (15530, '3492233708'), - (4932, '3492233716'), - (15529, '3492233716'), - (15531, '337901592X'), - (960, '3442726689'), - (8659, '3442726689'), - (5107, '3442720303'), - (15532, '3458324232'), - (848, '3257226039'), - (6591, '3612276204'), - (15533, '3512003931'), - (13686, '3499100355'), - (15534, '3423241187'), - (15535, '3873290812'), - (15536, '3873290812'), - (1259, '3257227000'), - (15537, '3257227000'), - (15538, '3257227000'), - (351, '3257218370'), - (867, '3596282225'), - (2188, '3442448263'), - (1145, '3442448263'), - (351, '3257233000'), - (15539, '3257233000'), - (15540, '3423122595'), - (15541, '3423122595'), - (15542, '3423122595'), - (962, '0140621687'), - (4932, '3492233724'), - (15529, '3492233724'), - (3209, '3442416108'), - (224, '3442726328'), - (15543, '3442726328'), - (15534, '3257061455'), - (15544, '3596148030'), - (15545, '3596148030'), - (5038, '3442446015'), - (9381, '3442446015'), - (61, '3442439027'), - (15546, '3442439027'), - (15547, '3442729688'), - (252, '3442447666'), - (15548, '3426001454'), - (15549, '344221548X'), - (15550, '3630611087'), - (15551, '3518368001'), - (3849, '3518374508'), - (848, '3257229356'), - (15552, '340648879X'), - (15553, '3608930663'), - (15554, '3608930663'), - (15555, '3453210832'), - (15556, '3453150228'), - (9085, '3453150228'), - (3854, '3498029711'), - (1550, '3498029711'), - (15557, '3498029711'), - (15558, '3498029711'), - (745, '3499110660'), - (15559, '3499110660'), - (4785, '325721796X'), - (4307, '340412264X'), - (745, '3499157470'), - (1550, '3499157470'), - (15560, '3499157470'), - (4928, '3498046268'), - (6369, '359629259X'), - (745, '3499147556'), - (745, '3499122065'), - (15561, '3499122065'), - (3008, '3518366122'), - (15562, '3518366122'), - (15563, '3442438918'), - (3689, '3492230849'), - (244, '0684843137'), - (10733, '3423113707'), - (15564, '3423113707'), - (2710, '3442455707'), - (15565, '3518388762'), - (5872, '3423362111'), - (15566, '3423362111'), - (15567, '3423362111'), - (465, '354860062X'), - (15568, '3548250173'), - (15569, '3548250173'), - (2188, '0312975856'), - (61, '3442439043'), - (45, '3442439043'), - (14342, '3492038549'), - (7222, '3492038549'), - (145, '3453198875'), - (374, '3426624028'), - (15570, '3426624028'), - (1354, '3442443784'), - (15571, '3442443784'), - (7, '3442096480'), - (15572, '3442096480'), - (484, '3442448395'), - (6705, '3499228637'), - (15573, '3499228637'), - (15574, '034082428X'), - (15575, '0192804472'), - (15576, '0192804472'), - (1396, '0679734465'), - (1209, '0151910790'), - (1744, '0151910790'), - (15577, '0571145906'), - (15578, '0140252258'), - (374, '0743219627'), - (2598, '0140284095'), - (2257, '0505524406'), - (15579, '9681906004'), - (15580, '9681905628'), - (56, '0486406482'), - (181, '0486406482'), - (1491, '1551666170'), - (1754, '074347418X'), - (15054, '0816143358'), - (128, '1551664836'), - (2257, '1892603004'), - (2244, '0449150534'), - (149, '1400034671'), - (760, '0140053204'), - (2244, '0449150542'), - (1092, '0671011340'), - (1092, '0671739735'), - (1754, '0671702505'), - (15581, '9501513394'), - (369, '0373073739'), - (1092, '0671739786'), - (3615, '0553561359'), - (9645, '0452255953'), - (15582, '0452255953'), - (13309, '0312288271'), - (495, '039475218X'), - (1398, '0805041397'), - (15583, '0452272785'), - (401, '0785789073'), - (15584, '0884360555'), - (3541, '9681908716'), - (15585, '9681908716'), - (612, '0375704132'), - (2598, '0140284125'), - (11273, '0816139709'), - (1528, '006109174X'), - (1528, '0553241605'), - (5335, '0446360015'), - (301, '0374115370'), - (2654, '0449214745'), - (13012, '0679774386'), - (149, '968131574X'), - (410, '0312195265'), - (6369, '0060927968'), - (4421, '0451133935'), - (13644, '0671662414'), - (8522, '0671662414'), - (5786, '0449214540'), - (15586, '2020239213'), - (15587, '9700509125'), - (415, '0486298035'), - (181, '0486298035'), - (15588, '0670364991'), - (559, '0449147614'), - (15589, '067972902X'), - (220, '9509779032'), - (15590, '9509779032'), - (3401, '1585860972'), - (3401, '1585861677'), - (4198, '0821747940'), - (1196, '0749316411'), - (2820, '0811213196'), - (4635, '0811213196'), - (149, '1400034965'), - (9354, '1400001617'), - (3750, '0553293257'), - (3750, '0553571907'), - (3750, '0553283545'), - (3750, '0553289322'), - (3750, '0553293168'), - (2006, '0380762560'), - (2006, '0380752999'), - (2006, '0380756277'), - (2006, '0380871556'), - (2006, '0380750872'), - (2006, '0380756293'), - (2006, '0380750864'), - (2006, '0380814714'), - (2006, '0380756269'), - (2006, '0380752948'), - (15591, '9502801954'), - (626, '0671880608'), - (1998, '0553060635'), - (815, '0684853299'), - (15592, '0060085894'), - (3483, '0871133792'), - (3483, '0811212777'), - (15593, '0811212777'), - (39, '0679431136'), - (8354, '0679431136'), - (2006, '0380725703'), - (2006, '0816152284'), - (15594, '0802776159'), - (15595, '0393320359'), - (15596, '0714529850'), - (15597, '2266061283'), - (15598, '0826452310'), - (15599, '0671748157'), - (70, '0380727366'), - (162, '1586633503'), - (15600, '1586633503'), - (729, '0385721234'), - (15601, '9504901816'), - (15602, '0375707166'), - (15579, '9584204106'), - (7548, '0679755454'), - (8112, '1852427000'), - (15603, '1852427000'), - (15604, '0802130305'), - (3484, '0802130305'), - (4046, '0802130305'), - (149, '1400034957'), - (15605, '9504906915'), - (15606, '0192838865'), - (15607, '0192838865'), - (15608, '0864424663'), - (8660, '1740590392'), - (15609, '1740590392'), - (2006, '0380899531'), - (82, '0460874772'), - (3750, '055329315X'), - (1359, '006018888X'), - (15610, '1400034531'), - (1690, '0142000809'), - (937, '0743449193'), - (79, '0785787828'), - (2271, '0821769839'), - (3750, '0553569406'), - (4198, '078600021X'), - (62, '0425155188'), - (15611, '0873325079'), - (15610, '0873325079'), - (15612, '0873325079'), - (15613, '0786901349'), - (15614, '0451195167'), - (4050, '9500286335'), - (56, '0812543122'), - (15615, '048621866X'), - (15616, '0192839829'), - (15617, '0192839829'), - (15618, '0192839829'), - (1580, '0783887841'), - (1581, '0783887841'), - (15619, '9879317114'), - (15620, '0330344773'), - (15621, '0727849190'), - (15622, '0708992897'), - (15623, '2253149624'), - (7534, '0505522993'), - (7351, '0312875673'), - (15624, '1565048423'), - (15623, '1565048415'), - (15623, '1565048407'), - (2011, '0425157466'), - (15625, '2871292086'), - (1579, '2744403709'), - (1579, '2744403695'), - (1579, '2744403687'), - (2233, '0439568366'), - (9066, '9505111215'), - (867, '0886773083'), - (4622, '0886773083'), - (292, '0749711841'), - (2006, '0727855468'), - (2006, '0380753006'), - (3885, '0140621164'), - (15626, '0634032984'), - (188, '067187036X'), - (325, '034537472X'), - (9396, '0812521374'), - (848, '0679745688'), - (1209, '1860219470'), - (15627, '0671626299'), - (7870, '096664431X'), - (9121, '096664431X'), - (15628, '096664431X'), - (15629, '096664431X'), - (15630, '042517350X'), - (859, '0140434062'), - (10265, '0140434062'), - (15631, '0441006612'), - (15632, '0441006612'), - (256, '0061020680'), - (15633, '0773670696'), - (15634, '1568651295'), - (15635, '1568651295'), - (6591, '067089205X'), - (7477, '067003200X'), - (15636, '0394547942'), - (607, '0345436520'), - (6591, '0670030600'), - (15637, '0375401768'), - (15638, '0818501332'), - (9354, '0967673739'), - (15639, '0375714553'), - (15640, '0743222199'), - (15641, '0743222199'), - (15642, '0006278841'), - (15643, '0006278841'), - (12460, '0452270839'), - (15644, '0451183959'), - (15645, '0395944171'), - (630, '0743457951'), - (15646, '0934395942'), - (720, '0684815907'), - (7412, '0743224914'), - (15647, '0743224914'), - (15648, '0743224914'), - (8068, '0395585643'), - (15649, '0800718372'), - (15650, '0060081651'), - (788, '0151009376'); - -INSERT INTO BORROWER (Ssn, Bname, Address, Phone) - VALUES - ('850-47-3740', 'Mark Morgan', '5677 Coolidge Street Plano, TX', '(469) 904-1438'), - ('256-95-4382', 'Eric Warren', '9062 Schurz Drive Dallas, TX', '(214) 701-8127'), - ('256-51-5268', 'Robert Harper', '7786 Sachs Place Plano, TX', '(214) 875-5911'), - ('976-95-2914', 'Donna Franklin', '3 Magdeline Terrace Plano, TX', '(214) 800-6127'), - ('906-63-3588', 'Linda King', '41260 Kedzie Terrace Dallas, TX', '(469) 213-2549'), - ('206-26-7141', 'Judy Holmes', '6583 Manitowish Hill Dallas, TX', '(972) 898-5909'), - ('898-61-3567', 'Deborah Lawrence', '2 Hermina Trail Dallas, TX', '(972) 900-2951'), - ('644-25-0492', 'Adam Johnston', '05671 Norway Maple Court Dallas, TX', '(469) 743-0176'), - ('678-12-4697', 'Pamela Carr', '1848 Fordem Avenue Richardson, TX', '(972) 247-9852'), - ('562-33-7951', 'Daniel Fisher', '400 Cody Lane Plano, TX', '(214) 891-7743'), - ('441-90-7753', 'Stephen Fields', '99 Fair Oaks Drive Plano, TX', '(214) 801-3069'), - ('305-53-3736', 'Walter Ferguson', '814 Sutteridge Point Dallas, TX', '(469) 945-8172'), - ('634-61-6311', 'Paul Cook', '58295 Pierstorff Pass Richardson, TX', '(469) 932-0168'), - ('661-24-6360', 'Roy Smith', '563 Fairview Park Dallas, TX', '(214) 911-4724'), - ('350-83-8412', 'Michelle Gardner', '28309 Paget Court Plano, TX', '(469) 974-2681'), - ('439-75-5475', 'George Powell', '31 Clove Crossing Dallas, TX', '(972) 885-7291'), - ('431-61-5822', 'Nicholas Hudson', '29 Esker Trail Dallas, TX', '(469) 698-4000'), - ('879-82-7179', 'Linda Henderson', '117 Katie Center Dallas, TX', '(469) 997-0832'), - ('484-96-1826', 'Gregory Fowler', '42454 Hermina Plaza Dallas, TX', '(214) 936-8301'), - ('562-52-7080', 'Carol Sanders', '99600 Moland Way Dallas, TX', '(214) 762-1061'), - ('876-61-5170', 'Mark Hamilton', '76425 Dixon Hill Dallas, TX', '(972) 802-7903'), - ('139-71-1123', 'Anthony Brown', '8691 Walton Terrace Dallas, TX', '(972) 947-3376'), - ('239-16-6210', 'James Rivera', '4 Golden Leaf Trail Dallas, TX', '(214) 761-8129'), - ('283-06-7717', 'Tammy Cole', '22 Atwood Parkway Dallas, TX', '(469) 292-1882'), - ('371-60-9878', 'Donald Bowman', '196 Golf View Terrace Dallas, TX', '(214) 956-6083'), - ('438-78-7652', 'Susan Gomez', '601 Warbler Point Richardson, TX', '(972) 877-1341'), - ('893-37-1519', 'Juan Martin', '846 Johnson Circle Dallas, TX', '(214) 828-5694'), - ('434-92-5388', 'Samuel Bailey', '1367 Northport Drive Dallas, TX', '(972) 972-2250'), - ('444-50-9807', 'Paul White', '24775 Melvin Place Dallas, TX', '(469) 459-4087'), - ('557-41-0386', 'Gregory Clark', '259 Porter Avenue Dallas, TX', '(972) 979-5771'), - ('123-99-1439', 'Steven Wood', '852 Darwin Alley Dallas, TX', '(214) 984-2801'), - ('507-26-2481', 'Jessica Fuller', '975 Carpenter Parkway Dallas, TX', '(972) 956-5055'), - ('258-33-5117', 'Donna Greene', '86 Delladonna Lane Dallas, TX', '(469) 969-6535'), - ('876-94-4518', 'Edward Ford', '34 Fulton Circle Dallas, TX', '(214) 869-1555'), - ('153-20-8011', 'Steve Torres', '781 Loeprich Alley Dallas, TX', '(469) 964-7789'), - ('881-79-3670', 'Alice Rivera', '79 Dayton Center Dallas, TX', '(214) 841-3416'), - ('878-61-5560', 'Jessica Freeman', '27997 Loftsgordon Lane Dallas, TX', '(214) 835-4205'), - ('728-84-4113', 'Kenneth Harrison', '25074 Holmberg Park Richardson, TX', '(972) 774-1504'), - ('792-17-4540', 'Betty Austin', '4 Schmedeman Terrace Dallas, TX', '(972) 927-7561'), - ('433-05-3698', 'Irene Gonzalez', '820 Oxford Crossing Dallas, TX', '(214) 865-5203'), - ('132-21-3747', 'Charles Foster', '850 Summerview Crossing Dallas, TX', '(469) 910-6688'), - ('457-93-9804', 'Gregory Perez', '57 Bluejay Pass Dallas, TX', '(972) 433-8549'), - ('906-16-1095', 'Jose Stone', '93 Waywood Parkway Dallas, TX', '(972) 991-8017'), - ('882-36-6316', 'Patrick Moore', '78 Crest Line Road Dallas, TX', '(214) 950-2446'), - ('728-96-3473', 'Louis Lynch', '12197 Kinsman Center Dallas, TX', '(469) 820-4208'), - ('377-44-1238', 'Matthew Snyder', '169 Mayfield Park Richardson, TX', '(469) 855-5018'), - ('582-62-7069', 'Sara Wagner', '24827 Twin Pines Junction Richardson, TX', '(469) 914-5869'), - ('577-82-2947', 'Louise Long', '6 Haas Center Dallas, TX', '(214) 939-0517'), - ('216-53-6968', 'Judy Hamilton', '65364 Mosinee Center Dallas, TX', '(972) 847-2849'), - ('202-40-3427', 'Evelyn Young', '4788 South Street Dallas, TX', '(214) 864-9776'), - ('897-56-8517', 'James Moore', '9089 Lunder Parkway Dallas, TX', '(469) 830-4056'), - ('923-84-7867', 'Clarence Romero', '68501 Michigan Street Plano, TX', '(972) 982-1803'), - ('539-63-0143', 'Jennifer Smith', '3 Cordelia Terrace Dallas, TX', '(469) 963-5598'), - ('636-25-1591', 'Jack Baker', '01441 Eastlawn Place Dallas, TX', '(972) 909-1277'), - ('622-93-5915', 'Amy Nguyen', '79 Rigney Circle Dallas, TX', '(214) 905-2261'), - ('823-00-8890', 'Maria Stevens', '5348 David Point Plano, TX', '(972) 992-5831'), - ('534-07-7079', 'Teresa Carpenter', '6280 Spenser Lane Dallas, TX', '(972) 908-2593'), - ('203-68-8563', 'Roy Arnold', '7548 Dunning Junction Richardson, TX', '(214) 990-9053'), - ('457-75-1314', 'Randy Stewart', '5004 Emmet Park Dallas, TX', '(469) 422-2991'), - ('524-73-0400', 'Brenda Fernandez', '335 Forster Alley Dallas, TX', '(214) 920-6944'), - ('344-66-8375', 'Janet Thompson', '1 Chinook Place Plano, TX', '(972) 986-8081'), - ('716-55-3314', 'Billy Ortiz', '4 Hintze Court Dallas, TX', '(469) 808-1346'), - ('869-29-5873', 'Edward Hawkins', '96231 Northland Plaza Dallas, TX', '(972) 798-3752'), - ('218-81-6261', 'Mark Morgan', '5 Miller Lane Dallas, TX', '(469) 784-6546'), - ('913-50-1956', 'Carolyn Morgan', '975 Golf View Place Dallas, TX', '(469) 674-8726'), - ('749-40-8693', 'Tina Weaver', '5414 Green Ridge Street Dallas, TX', '(469) 840-0879'), - ('992-92-6136', 'Eric Taylor', '6 Fisk Pass Dallas, TX', '(214) 714-7652'), - ('378-07-1662', 'Ruth Henry', '84 Hermina Street Dallas, TX', '(972) 934-2054'), - ('388-44-9990', 'Phillip Perkins', '84771 Bartelt Trail Dallas, TX', '(214) 917-4226'), - ('288-23-0361', 'Annie Welch', '80 Stuart Road Dallas, TX', '(972) 516-1320'), - ('509-44-1761', 'Lois Hunter', '49 Blaine Lane Plano, TX', '(972) 809-1141'), - ('704-79-5907', 'Lisa Cook', '4412 Lakewood Gardens Plaza Richardson, TX', '(972) 653-9871'), - ('948-30-8402', 'Kathleen Harvey', '13 Grayhawk Hill Dallas, TX', '(469) 547-7753'), - ('651-57-6305', 'Diane Stevens', '0091 American Circle Dallas, TX', '(469) 942-1364'), - ('908-63-2676', 'Samuel Young', '0157 Holmberg Street Richardson, TX', '(469) 918-5729'), - ('727-25-3782', 'Mark Riley', '4900 Thompson Court Dallas, TX', '(972) 767-2036'), - ('775-32-5935', 'Bonnie Ross', '0 Walton Court Richardson, TX', '(972) 766-6908'), - ('402-35-0549', 'Elizabeth Arnold', '952 Sage Pass Dallas, TX', '(214) 967-2424'), - ('270-86-6950', 'John Walker', '2 Packers Crossing Dallas, TX', '(469) 796-5094'), - ('982-11-9636', 'William Simmons', '1232 Hayes Crossing Dallas, TX', '(972) 903-7706'), - ('757-38-5276', 'Lisa Kelley', '3718 Twin Pines Way Dallas, TX', '(972) 900-0487'), - ('980-24-2372', 'Carl Larson', '096 Goodland Parkway Dallas, TX', '(469) 550-2228'), - ('444-73-4007', 'Brandon Anderson', '8 Leroy Circle Dallas, TX', '(469) 993-9270'), - ('278-33-4174', 'Gloria Myers', '03 Elmside Center Plano, TX', '(469) 853-3967'), - ('772-25-9640', 'Daniel Freeman', '9584 Elka Place Dallas, TX', '(972) 769-9270'), - ('232-98-4647', 'Judith Mitchell', '2506 Merchant Terrace Dallas, TX', '(972) 902-9669'), - ('937-38-5159', 'Alan King', '958 Burrows Street Dallas, TX', '(214) 583-5636'), - ('327-80-3166', 'Steve Phillips', '45557 Jana Court Dallas, TX', '(972) 937-9620'), - ('405-92-7423', 'Brenda Butler', '5 Calypso Avenue Dallas, TX', '(972) 892-6177'), - ('133-37-8900', 'Patricia Spencer', '65143 Union Lane Dallas, TX', '(214) 909-9264'), - ('227-64-6193', 'Larry Olson', '50299 Lien Parkway Dallas, TX', '(972) 965-7073'), - ('272-41-6460', 'Victor Sullivan', '272 Milwaukee Point Plano, TX', '(972) 759-4852'), - ('318-95-0284', 'Kathryn Taylor', '2952 Thackeray Point Dallas, TX', '(214) 862-0958'), - ('729-22-8562', 'Rachel Little', '755 Kropf Pass Dallas, TX', '(972) 797-7226'), - ('783-54-9793', 'Donald Richardson', '951 Chive Avenue Dallas, TX', '(972) 934-6450'), - ('131-52-5777', 'Stephen Chapman', '0 Lunder Alley Dallas, TX', '(214) 987-1376'), - ('335-18-5473', 'Harold Richardson', '76743 Burrows Court Dallas, TX', '(469) 899-1924'), - ('933-15-2171', 'Ernest Palmer', '6 Upham Drive Dallas, TX', '(972) 942-2638'), - ('595-38-3883', 'Pamela Matthews', '2 Green Lane Dallas, TX', '(214) 944-0666'), - ('808-44-7643', 'Jason Campbell', '6 Raven Court Dallas, TX', '(972) 811-4885'), - ('924-16-0243', 'Joyce Fuller', '45900 Iowa Way Dallas, TX', '(469) 906-3524'), - ('348-53-9608', 'Andrea Bailey', '33 Cardinal Alley Richardson, TX', '(972) 846-5566'), - ('379-16-0722', 'Denise Perry', '68 Old Shore Lane Dallas, TX', '(214) 991-3418'), - ('997-92-4787', 'Michael Jacobs', '0 Brentwood Place Richardson, TX', '(469) 924-9727'), - ('664-95-5489', 'Catherine Reid', '41544 Anniversary Crossing Plano, TX', '(214) 948-8236'), - ('424-12-2851', 'Aaron Romero', '844 Union Way Dallas, TX', '(972) 535-5154'), - ('295-19-3279', 'John Warren', '9127 Farragut Center Dallas, TX', '(469) 923-5725'), - ('806-92-2733', 'Steve Garrett', '729 Kenwood Court Richardson, TX', '(214) 703-1311'), - ('466-92-6624', 'Jimmy Ellis', '8 Nevada Place Dallas, TX', '(972) 742-8738'), - ('454-64-8101', 'Jose Perez', '4463 Commercial Circle Richardson, TX', '(469) 852-3133'), - ('909-18-6864', 'Katherine Dean', '4978 Cordelia Way Dallas, TX', '(972) 886-7232'), - ('203-54-9198', 'Ashley Jackson', '676 David Road Dallas, TX', '(469) 976-0450'), - ('177-45-8737', 'Kathryn Hart', '29 Dexter Circle Dallas, TX', '(972) 900-3590'), - ('279-96-6074', 'Dennis Ruiz', '18784 Browning Circle Dallas, TX', '(972) 974-1505'), - ('561-91-3511', 'Sharon Cox', '4 Hoffman Street Dallas, TX', '(214) 915-0820'), - ('325-12-4236', 'Ruby Burke', '5 Swallow Avenue Dallas, TX', '(972) 928-8965'), - ('537-25-0563', 'Jerry Stewart', '54494 Kenwood Trail Dallas, TX', '(469) 817-5662'), - ('508-36-5238', 'Howard Fisher', '2 Reinke Lane Plano, TX', '(972) 325-6683'), - ('663-89-7131', 'Eric Phillips', '578 Westend Pass Dallas, TX', '(972) 893-0831'), - ('582-89-0521', 'Albert Cruz', '04 Shopko Way Dallas, TX', '(972) 471-4420'), - ('112-24-4907', 'Timothy Harrison', '04099 Anhalt Place Dallas, TX', '(214) 849-7879'), - ('593-24-8597', 'Ronald Phillips', '4632 Brentwood Hill Dallas, TX', '(469) 945-4638'), - ('152-06-9743', 'Antonio Bishop', '212 Memorial Lane Richardson, TX', '(469) 835-8047'), - ('917-73-0651', 'Howard Green', '9 Florence Trail Dallas, TX', '(214) 875-8195'), - ('550-66-4068', 'Willie Murphy', '09 Loeprich Parkway Richardson, TX', '(214) 954-5495'), - ('151-32-0622', 'Christine Washington', '95086 Eliot Alley Dallas, TX', '(469) 844-5383'), - ('363-52-9311', 'Angela Ellis', '61 Chinook Avenue Dallas, TX', '(469) 912-7557'), - ('498-97-9543', 'Kathy Wagner', '1 Columbus Crossing Plano, TX', '(214) 958-2980'), - ('109-59-3700', 'Antonio Carr', '6996 Arizona Avenue Dallas, TX', '(469) 724-0803'), - ('919-11-7074', 'Samuel Ellis', '69968 Meadow Ridge Alley Dallas, TX', '(469) 957-8249'), - ('532-19-3189', 'Bruce Williamson', '51 Maywood Place Richardson, TX', '(214) 969-6651'), - ('186-61-2257', 'Ruby Mcdonald', '031 Ohio Lane Dallas, TX', '(214) 970-5621'), - ('758-82-0981', 'Jack Larson', '43086 Dexter Way Dallas, TX', '(469) 913-6292'), - ('789-85-0156', 'Tammy Hunter', '08 Marquette Pass Dallas, TX', '(214) 919-0495'), - ('144-61-2857', 'Mildred Richards', '6863 Warbler Crossing Dallas, TX', '(469) 636-7310'), - ('812-34-4775', 'Janet Dixon', '1 Ridgeway Terrace Dallas, TX', '(972) 381-9665'), - ('605-13-5959', 'Antonio Hamilton', '2545 Lerdahl Center Dallas, TX', '(214) 886-6681'), - ('873-83-1740', 'Louise Jordan', '7326 Reindahl Point Dallas, TX', '(972) 518-9421'), - ('992-25-4077', 'Linda Hunt', '710 Lighthouse Bay Point Dallas, TX', '(972) 754-7045'), - ('222-46-0064', 'Joan Webb', '90 Bashford Avenue Dallas, TX', '(469) 955-0632'), - ('135-71-1523', 'Kevin Frazier', '47 Bluejay Hill Dallas, TX', '(972) 965-3683'), - ('490-88-8407', 'Todd Schmidt', '4 Lakeland Pass Dallas, TX', '(214) 903-6828'), - ('797-95-4607', 'Andrea Sims', '898 Killdeer Pass Dallas, TX', '(469) 988-0761'), - ('959-24-3477', 'Barbara Brooks', '305 Mendota Plaza Dallas, TX', '(469) 958-8251'), - ('600-79-0040', 'Kenneth Anderson', '246 Shopko Drive Richardson, TX', '(972) 998-5406'), - ('704-59-6830', 'Jessica Knight', '36 Forest Park Richardson, TX', '(469) 961-0488'), - ('542-87-9344', 'Dorothy Adams', '2483 Melody Plaza Richardson, TX', '(972) 881-8472'), - ('634-80-8812', 'Phillip Adams', '4 Derek Point Dallas, TX', '(972) 918-0335'), - ('599-72-6050', 'James Carpenter', '6668 Ilene Court Dallas, TX', '(214) 820-8276'), - ('751-57-0699', 'Amy Lopez', '715 Westend Avenue Dallas, TX', '(469) 830-1019'), - ('570-71-9526', 'Frank Gomez', '61280 Mallory Parkway Plano, TX', '(214) 962-2973'), - ('585-65-8864', 'Debra Rogers', '4 Southridge Place Richardson, TX', '(469) 753-7894'), - ('784-42-3645', 'Aaron Chapman', '840 Messerschmidt Plaza Dallas, TX', '(972) 753-3651'), - ('327-00-2811', 'Jerry Cruz', '48314 Muir Crossing Dallas, TX', '(214) 973-8302'), - ('209-64-5805', 'Gerald Mccoy', '71113 Corry Circle Plano, TX', '(469) 758-3820'), - ('352-52-5321', 'Matthew Ward', '3726 Oneill Terrace Plano, TX', '(972) 668-2488'), - ('312-33-6562', 'Marilyn Andrews', '61664 Warrior Street Dallas, TX', '(972) 831-4215'), - ('585-35-8539', 'Lawrence Coleman', '0 Scoville Plaza Plano, TX', '(469) 987-3187'), - ('766-72-6736', 'Sarah Burton', '65230 Prairie Rose Point Plano, TX', '(972) 736-0106'), - ('519-22-1664', 'Gerald White', '82 Delaware Plaza Plano, TX', '(214) 774-5757'), - ('811-23-2706', 'Shawn Robertson', '9 Troy Alley Dallas, TX', '(214) 943-9366'), - ('983-17-1073', 'Samuel Arnold', '1748 Monterey Road Dallas, TX', '(469) 741-5231'), - ('153-09-5087', 'Ruby Mcdonald', '00621 Killdeer Crossing Dallas, TX', '(469) 941-5043'), - ('208-16-2580', 'Lillian Kim', '47585 Nova Drive Dallas, TX', '(214) 740-2312'), - ('604-54-4201', 'Pamela Bradley', '2 Lakewood Gardens Place Richardson, TX', '(469) 871-3326'), - ('764-51-2571', 'Ralph Chavez', '15739 Vera Plaza Dallas, TX', '(214) 598-5319'), - ('102-72-1991', 'Martin Richards', '8 New Castle Trail Dallas, TX', '(469) 976-0263'), - ('743-82-1324', 'Chris Simmons', '46833 Farmco Junction Dallas, TX', '(469) 810-0333'), - ('915-27-6165', 'Martin Stevens', '573 Oneill Hill Dallas, TX', '(469) 570-2393'), - ('615-68-8488', 'Lisa West', '55586 Ronald Regan Lane Dallas, TX', '(972) 998-4345'), - ('538-66-1965', 'Daniel Marshall', '3 Manitowish Crossing Dallas, TX', '(469) 730-4725'), - ('981-95-3778', 'John Hicks', '81 Northfield Place Richardson, TX', '(972) 727-1591'), - ('802-73-6786', 'Roger Harrison', '9 Meadow Vale Drive Dallas, TX', '(469) 941-5954'), - ('777-08-7277', 'Teresa Thompson', '06364 Gerald Street Dallas, TX', '(972) 670-1547'), - ('445-90-2407', 'Arthur Freeman', '51652 Russell Street Dallas, TX', '(469) 994-4509'), - ('909-02-3006', 'Howard Simpson', '95 Redwing Lane Dallas, TX', '(972) 910-0392'), - ('790-10-1835', 'Christopher Spencer', '6 Northfield Crossing Dallas, TX', '(214) 821-9650'), - ('847-64-1856', 'Theresa Wood', '0420 Westport Circle Dallas, TX', '(469) 994-1901'), - ('930-97-8594', 'Lillian Wright', '82972 Raven Road Dallas, TX', '(972) 960-5502'), - ('823-59-4050', 'Sara Rogers', '7 Twin Pines Circle Dallas, TX', '(214) 984-5323'), - ('831-37-2302', 'Linda Richards', '046 Harper Center Dallas, TX', '(214) 998-2489'), - ('139-70-8042', 'Albert Cunningham', '414 Summer Ridge Trail Richardson, TX', '(972) 716-3924'), - ('611-16-9228', 'Debra Holmes', '22 Bluejay Road Plano, TX', '(972) 954-8773'), - ('248-33-5177', 'Jason Davis', '82931 Cardinal Junction Dallas, TX', '(214) 969-9787'), - ('399-38-8513', 'Justin Fowler', '1958 Leroy Way Dallas, TX', '(972) 915-2410'), - ('515-58-4650', 'Catherine Harris', '4091 Doe Crossing Alley Plano, TX', '(469) 968-7984'), - ('911-94-6409', 'Gary Reyes', '06 Shelley Parkway Dallas, TX', '(972) 985-2014'), - ('952-37-2293', 'Clarence Harvey', '637 Blackbird Crossing Dallas, TX', '(972) 735-8046'), - ('866-26-3470', 'Kathleen Lynch', '0 Northview Center Dallas, TX', '(469) 858-9821'), - ('696-87-1283', 'Angela Myers', '07 Jenifer Point Plano, TX', '(214) 996-3258'), - ('525-30-0056', 'Paula Roberts', '2025 Annamark Court Richardson, TX', '(214) 919-1512'), - ('455-25-1300', 'Marie Hudson', '35523 Fulton Point Richardson, TX', '(972) 955-0047'), - ('300-83-3012', 'Victor George', '16 Butterfield Place Plano, TX', '(469) 982-0024'), - ('568-53-7223', 'Judith Lane', '59463 Havey Center Dallas, TX', '(469) 962-1701'), - ('219-13-1583', 'Steven Carpenter', '64 Rutledge Court Richardson, TX', '(972) 759-2760'), - ('628-41-9882', 'Beverly Welch', '0 7th Point Richardson, TX', '(214) 758-2027'), - ('553-83-0248', 'Chris Cox', '386 Coleman Avenue Richardson, TX', '(214) 902-1149'), - ('664-42-3811', 'Heather Duncan', '3 Acker Avenue Richardson, TX', '(972) 906-2444'), - ('932-05-2280', 'Helen Cooper', '90887 Ohio Trail Dallas, TX', '(214) 723-9307'), - ('359-15-6568', 'Linda Dixon', '0506 Boyd Plaza Richardson, TX', '(214) 940-0096'), - ('377-03-6374', 'Eric Wood', '730 Bonner Hill Dallas, TX', '(972) 959-7132'), - ('956-77-5994', 'Brenda Brooks', '4 Pennsylvania Hill Dallas, TX', '(972) 960-5440'), - ('262-72-9956', 'Fred Crawford', '00 Mariners Cove Terrace Dallas, TX', '(972) 978-1543'), - ('935-26-1044', 'Alan Morris', '2238 Debra Center Dallas, TX', '(469) 701-3591'), - ('575-57-3479', 'Jimmy Watkins', '91873 Colorado Crossing Dallas, TX', '(469) 933-3579'), - ('534-35-2839', 'Keith Fisher', '2 Muir Crossing Richardson, TX', '(972) 999-1883'), - ('487-48-3434', 'Rose Oliver', '3152 Thackeray Point Dallas, TX', '(214) 971-9384'), - ('282-19-5051', 'Johnny Vasquez', '809 Grover Circle Dallas, TX', '(972) 843-5554'), - ('198-52-6239', 'Judith Dunn', '337 Northview Point Dallas, TX', '(972) 999-1156'), - ('165-45-3343', 'Roger Freeman', '13 Farmco Way Dallas, TX', '(469) 854-9842'), - ('983-87-0005', 'Richard Bailey', '3108 Browning Park Richardson, TX', '(214) 718-0392'), - ('387-20-1613', 'Ernest Palmer', '66600 Pleasure Drive Dallas, TX', '(214) 238-1120'), - ('440-22-0860', 'Janice Long', '26577 Laurel Road Dallas, TX', '(214) 972-0889'), - ('589-60-2564', 'Thomas Schmidt', '0 New Castle Crossing Plano, TX', '(469) 745-9014'), - ('564-07-7138', 'Kathryn Hayes', '18504 Basil Hill Dallas, TX', '(469) 831-7793'), - ('106-58-8800', 'Chris Perkins', '14865 John Wall Center Plano, TX', '(972) 957-3368'), - ('664-12-8122', 'Thomas Scott', '449 Schurz Parkway Dallas, TX', '(469) 914-5396'), - ('394-69-4479', 'Judy Richards', '9420 Main Hill Dallas, TX', '(469) 871-8324'), - ('977-89-1063', 'Janice Garrett', '2998 Chive Place Dallas, TX', '(214) 809-6943'), - ('720-12-0662', 'Raymond Peterson', '892 Fairfield Point Richardson, TX', '(469) 947-5199'), - ('344-03-8015', 'Marilyn Williams', '0 John Wall Circle Dallas, TX', '(214) 992-8183'), - ('166-80-9145', 'Teresa Reid', '9224 Manufacturers Terrace Dallas, TX', '(972) 457-6436'), - ('628-54-4529', 'Irene Medina', '51 Southridge Pass Dallas, TX', '(972) 994-3852'), - ('763-92-5219', 'Linda Carpenter', '43 Dovetail Road Dallas, TX', '(972) 866-8440'), - ('468-30-6717', 'Jonathan Harrison', '113 Havey Crossing Plano, TX', '(469) 900-2769'), - ('716-63-5871', 'Laura Graham', '72346 Emmet Place Dallas, TX', '(469) 892-4249'), - ('462-64-8746', 'Sharon Pierce', '9 Clove Trail Dallas, TX', '(972) 930-5410'), - ('890-27-4530', 'Katherine Boyd', '90 Park Meadow Junction Dallas, TX', '(214) 652-5153'), - ('875-97-7822', 'Brian Perkins', '5988 Havey Street Dallas, TX', '(972) 973-2502'), - ('867-84-8327', 'Eric Cooper', '7 Granby Road Dallas, TX', '(972) 970-2642'), - ('907-94-1254', 'Randy Stanley', '94552 Linden Court Dallas, TX', '(972) 815-8835'), - ('319-59-2633', 'Pamela Gutierrez', '50236 Goodland Lane Plano, TX', '(972) 968-2569'), - ('145-92-8000', 'Keith Perkins', '9543 Farragut Road Richardson, TX', '(214) 804-0599'), - ('361-70-3782', 'Scott Spencer', '5 Lukken Junction Dallas, TX', '(214) 701-4621'), - ('992-96-4866', 'Todd Bryant', '418 Onsgard Hill Dallas, TX', '(214) 980-7359'), - ('916-54-8159', 'Jose Anderson', '2705 Ohio Junction Dallas, TX', '(214) 530-2752'), - ('133-83-4824', 'Amanda Davis', '1636 Norway Maple Place Plano, TX', '(469) 913-5733'), - ('712-12-8661', 'Richard Cruz', '69 Marquette Park Richardson, TX', '(469) 902-7741'), - ('325-77-2883', 'Sara Walker', '18924 3rd Circle Dallas, TX', '(972) 932-7544'), - ('974-70-9717', 'Gloria Sanders', '36961 Green Ridge Place Dallas, TX', '(214) 937-3306'), - ('584-04-3187', 'Jonathan Harris', '286 Merry Way Dallas, TX', '(469) 873-4473'), - ('152-31-3951', 'Juan Fields', '291 Marquette Parkway Richardson, TX', '(972) 916-7303'), - ('950-88-3244', 'Wanda Mills', '79024 Surrey Way Dallas, TX', '(469) 920-6298'), - ('315-12-0643', 'Karen Davis', '83 Holy Cross Drive Dallas, TX', '(972) 890-5755'), - ('328-21-2988', 'Scott Montgomery', '96247 Oriole Circle Dallas, TX', '(972) 929-5312'), - ('752-03-8294', 'Michael Stevens', '356 Shoshone Drive Dallas, TX', '(469) 803-5017'), - ('223-10-5941', 'Andrea Baker', '90 Heath Drive Dallas, TX', '(469) 930-1109'), - ('383-36-2902', 'Marilyn Alexander', '443 Dottie Circle Dallas, TX', '(972) 406-2617'), - ('556-96-7003', 'Harry Alvarez', '636 Express Way Dallas, TX', '(214) 954-5716'), - ('760-25-1865', 'Rose Peterson', '034 Shelley Drive Dallas, TX', '(972) 861-4171'), - ('196-06-0978', 'Barbara Garcia', '5690 Acker Road Dallas, TX', '(469) 517-8843'), - ('140-56-2974', 'Ann Berry', '37940 Morning Hill Dallas, TX', '(972) 918-7984'), - ('493-92-4232', 'Paul Turner', '75287 Pleasure Place Dallas, TX', '(972) 782-6768'), - ('353-18-9662', 'Theresa Day', '9 American Ash Crossing Dallas, TX', '(972) 909-4722'), - ('926-42-8995', 'Andrew Gilbert', '8 American Parkway Dallas, TX', '(972) 834-2804'), - ('741-11-7814', 'Alice Turner', '4 Namekagon Lane Dallas, TX', '(214) 660-6741'), - ('700-23-8477', 'Julie Smith', '61345 Namekagon Place Dallas, TX', '(469) 861-2346'), - ('390-30-8158', 'Alice Carr', '7564 Ohio Plaza Dallas, TX', '(214) 549-1687'), - ('941-05-7192', 'Harry Baker', '7 Straubel Center Plano, TX', '(469) 590-5412'), - ('949-37-6371', 'Donna Cooper', '1629 Summer Ridge Plaza Dallas, TX', '(469) 957-3027'), - ('947-04-7262', 'Laura Rogers', '7776 Summer Ridge Court Dallas, TX', '(972) 730-7675'), - ('443-61-5562', 'Jessica Hicks', '17138 Ryan Circle Dallas, TX', '(469) 815-6162'), - ('428-09-7397', 'George Turner', '4 Quincy Pass Richardson, TX', '(214) 958-2175'), - ('354-53-8826', 'Joan Watkins', '9601 Lerdahl Pass Plano, TX', '(214) 814-9170'), - ('757-21-3141', 'Andrea Gonzalez', '127 Russell Hill Dallas, TX', '(972) 809-5959'), - ('924-17-9942', 'Billy Little', '46 Autumn Leaf Junction Dallas, TX', '(972) 986-6001'), - ('778-68-6617', 'Teresa Marshall', '2 Sheridan Trail Dallas, TX', '(469) 884-2394'), - ('431-20-0144', 'Benjamin Lynch', '53 Tennyson Park Dallas, TX', '(469) 877-9851'), - ('851-35-0300', 'Nancy Dixon', '4 Dwight Street Dallas, TX', '(972) 770-3641'), - ('583-40-6101', 'Jean Dunn', '4 North Street Dallas, TX', '(469) 995-6149'), - ('125-98-5061', 'Anthony Gardner', '9823 Donald Terrace Dallas, TX', '(972) 432-3180'), - ('750-84-1386', 'Benjamin Morrison', '21 Oriole Terrace Dallas, TX', '(214) 409-6322'), - ('319-09-3742', 'Anne Dixon', '9579 Browning Crossing Dallas, TX', '(972) 907-6080'), - ('585-90-0674', 'Denise Wallace', '6021 Portage Park Dallas, TX', '(972) 940-4355'), - ('416-38-3510', 'Linda Owens', '13 Monterey Alley Richardson, TX', '(214) 836-3577'), - ('614-68-5656', 'Larry Warren', '2657 Mitchell Hill Plano, TX', '(972) 938-7212'), - ('984-48-8111', 'Edward Hunt', '6 Claremont Avenue Dallas, TX', '(972) 763-1900'), - ('446-20-4077', 'Harry Mcdonald', '22283 Farragut Place Plano, TX', '(214) 873-3156'), - ('154-67-1759', 'Lawrence Wells', '841 Delaware Place Dallas, TX', '(214) 976-7034'), - ('218-70-1729', 'Martin Fuller', '53309 Buhler Place Dallas, TX', '(469) 667-3361'), - ('685-99-2971', 'Roger Ellis', '74213 Charing Cross Circle Dallas, TX', '(972) 976-7863'), - ('551-99-0871', 'Patrick Moreno', '490 Rockefeller Lane Dallas, TX', '(972) 955-5269'), - ('156-64-6797', 'Andrew Cole', '30 Sunfield Pass Plano, TX', '(214) 879-7342'), - ('704-85-7803', 'Joan Hudson', '4 Everett Court Dallas, TX', '(214) 954-1417'), - ('491-79-6292', 'Chris Powell', '4 Jenifer Circle Dallas, TX', '(469) 726-7925'), - ('164-90-8064', 'Anna Perez', '1241 Graceland Court Dallas, TX', '(469) 996-2325'), - ('857-94-0950', 'Debra Gray', '251 Monterey Hill Dallas, TX', '(469) 973-4499'), - ('581-46-2753', 'Annie Shaw', '561 Cody Crossing Plano, TX', '(214) 764-1587'), - ('300-46-8310', 'Shawn Martinez', '19 Lunder Park Dallas, TX', '(469) 986-4161'), - ('691-97-1438', 'Mary Graham', '701 Cordelia Court Dallas, TX', '(214) 687-0840'), - ('239-90-4011', 'Janet West', '2308 Division Center Dallas, TX', '(214) 978-0541'), - ('702-60-4201', 'Aaron Arnold', '5886 Banding Trail Dallas, TX', '(214) 955-5863'), - ('253-17-0796', 'Justin Brown', '611 Green Plaza Plano, TX', '(214) 901-6023'), - ('547-06-9057', 'George Torres', '64206 Calypso Hill Dallas, TX', '(972) 925-4199'), - ('722-28-9325', 'Brian Romero', '4418 Green Ridge Terrace Dallas, TX', '(469) 825-9159'), - ('488-01-1020', 'Lawrence Morris', '42 Magdeline Pass Dallas, TX', '(214) 942-2979'), - ('947-93-9771', 'Patrick Garcia', '1 Nevada Parkway Dallas, TX', '(469) 827-6118'), - ('708-32-6866', 'Ashley Moreno', '067 Morning Park Dallas, TX', '(469) 869-6226'), - ('421-79-0842', 'Aaron Ellis', '1925 Grasskamp Alley Dallas, TX', '(469) 937-9272'), - ('554-28-3296', 'Jimmy James', '3 Knutson Way Dallas, TX', '(972) 930-8175'), - ('271-28-4504', 'Maria Torres', '56168 Arizona Drive Dallas, TX', '(214) 931-8328'), - ('453-78-4845', 'Chris Owens', '6 Browning Park Dallas, TX', '(972) 701-4889'), - ('556-27-9759', 'Elizabeth Harvey', '1995 Nelson Park Dallas, TX', '(972) 992-9375'), - ('212-61-9406', 'Jane Baker', '0062 Sunbrook Junction Dallas, TX', '(469) 754-6653'), - ('142-06-8429', 'Lisa Kelley', '272 Larry Drive Dallas, TX', '(469) 930-6637'), - ('205-62-6313', 'Jonathan Diaz', '18283 Brown Center Dallas, TX', '(469) 940-2479'), - ('592-93-9926', 'Mildred Allen', '5734 La Follette Point Dallas, TX', '(469) 946-2268'), - ('714-97-1208', 'Linda Rogers', '0590 Northport Drive Dallas, TX', '(972) 947-1564'), - ('949-18-1878', 'Gary Garrett', '5285 2nd Court Dallas, TX', '(469) 939-2476'), - ('454-36-5067', 'Earl Hall', '7755 Park Meadow Way Dallas, TX', '(214) 882-0672'), - ('586-20-4125', 'Benjamin Bailey', '72101 Elmside Parkway Dallas, TX', '(214) 896-3364'), - ('853-10-4620', 'Angela Graham', '5 High Crossing Crossing Richardson, TX', '(972) 878-1468'), - ('132-68-7899', 'Dennis Hunter', '7 2nd Place Plano, TX', '(469) 967-8745'), - ('618-21-2736', 'Matthew Stevens', '9603 Hansons Way Dallas, TX', '(469) 861-3808'), - ('852-75-0048', 'Annie Freeman', '7466 Gulseth Alley Dallas, TX', '(972) 921-0146'), - ('652-37-4979', 'Richard Lawson', '792 Dottie Circle Dallas, TX', '(214) 545-9387'), - ('953-35-3551', 'Susan Allen', '6 Morrow Alley Dallas, TX', '(214) 748-0451'), - ('269-55-4900', 'Rose Coleman', '26094 Loomis Alley Dallas, TX', '(469) 819-2212'), - ('398-57-5624', 'Kathy Elliott', '28 Boyd Pass Dallas, TX', '(469) 996-0439'), - ('769-13-6801', 'Teresa Brooks', '57699 Oak Circle Richardson, TX', '(972) 731-4160'), - ('781-65-2211', 'Julie Lane', '8261 Magdeline Road Dallas, TX', '(214) 930-8339'), - ('880-14-5596', 'Jessica Day', '80 Cascade Junction Dallas, TX', '(214) 947-1788'), - ('472-47-3959', 'Billy Cruz', '75 Mosinee Court Dallas, TX', '(214) 797-5929'), - ('628-10-4874', 'Martha Mccoy', '74 Claremont Park Dallas, TX', '(214) 915-1572'), - ('799-41-8699', 'Frances Long', '0 Schlimgen Alley Dallas, TX', '(214) 951-4800'), - ('826-57-4791', 'Carolyn Duncan', '1 Merry Place Dallas, TX', '(214) 279-8556'), - ('497-33-4483', 'Ryan Mendoza', '9 Myrtle Way Dallas, TX', '(214) 867-1887'), - ('733-61-4241', 'Jerry Oliver', '0 Vera Alley Dallas, TX', '(469) 734-8276'), - ('669-72-6189', 'Juan Smith', '3 Dixon Parkway Dallas, TX', '(214) 909-9366'), - ('867-23-4679', 'Marilyn White', '769 Mayfield Center Dallas, TX', '(972) 933-0968'), - ('410-60-8961', 'Anne Moreno', '60 Raven Pass Dallas, TX', '(214) 886-0662'), - ('381-83-9299', 'Ruby Greene', '328 Fallview Center Richardson, TX', '(214) 872-7995'), - ('186-53-8147', 'Shawn Rivera', '8 American Hill Dallas, TX', '(972) 528-2505'), - ('100-08-2010', 'Tina Hamilton', '24695 Di Loreto Crossing Dallas, TX', '(972) 755-6424'), - ('166-29-5051', 'Benjamin Graham', '08 New Castle Avenue Dallas, TX', '(214) 983-4311'), - ('869-23-6916', 'Doris Bailey', '5773 Eastlawn Center Dallas, TX', '(469) 801-1479'), - ('242-20-9101', 'Jason Washington', '3225 Vera Lane Richardson, TX', '(972) 931-0247'), - ('456-04-0469', 'Evelyn Wilson', '9873 Kim Center Richardson, TX', '(469) 901-5209'), - ('812-93-7575', 'Steve Cunningham', '5615 Mcbride Park Dallas, TX', '(214) 883-3172'), - ('696-31-4035', 'Henry Howard', '9 Lakewood Avenue Dallas, TX', '(214) 848-6192'), - ('399-88-0576', 'Timothy Crawford', '39384 Tony Terrace Dallas, TX', '(972) 729-2932'), - ('342-52-5404', 'Todd Rose', '8 Mosinee Plaza Plano, TX', '(469) 893-2893'), - ('699-25-9472', 'Mary Nelson', '8 Colorado Avenue Dallas, TX', '(214) 241-4452'), - ('188-14-3830', 'Jason Watkins', '74155 Welch Terrace Dallas, TX', '(972) 915-1343'), - ('562-73-5031', 'Kathy Cole', '8600 Anniversary Pass Dallas, TX', '(214) 993-7915'), - ('633-54-2851', 'Albert Reyes', '43 Transport Pass Dallas, TX', '(469) 808-4965'), - ('256-93-5132', 'Aaron Harvey', '1807 Prairieview Pass Dallas, TX', '(214) 632-9282'), - ('973-81-6951', 'Jack Ward', '5 Susan Plaza Richardson, TX', '(972) 918-4342'), - ('324-71-1906', 'Dorothy Spencer', '90651 Bellgrove Junction Dallas, TX', '(972) 892-8862'), - ('227-59-5562', 'Lawrence Hunt', '2 Randy Court Dallas, TX', '(972) 962-4743'), - ('931-62-4904', 'Beverly Fernandez', '480 Toban Lane Richardson, TX', '(469) 975-3330'), - ('625-57-7457', 'Karen Johnston', '3 Coleman Plaza Dallas, TX', '(214) 768-1518'), - ('285-70-4379', 'Howard Gonzalez', '7699 Dakota Terrace Dallas, TX', '(214) 905-6019'), - ('490-16-4375', 'Dorothy Graham', '9 Mcguire Alley Richardson, TX', '(469) 619-4224'), - ('246-40-5583', 'Barbara Anderson', '77 Ronald Regan Park Richardson, TX', '(214) 947-1531'), - ('697-56-6815', 'Frances Willis', '61438 Becker Park Dallas, TX', '(469) 900-5979'), - ('878-94-1305', 'Martha Arnold', '52279 Hauk Plaza Dallas, TX', '(469) 968-6237'), - ('721-32-2687', 'Maria Medina', '6 Gina Crossing Dallas, TX', '(214) 851-3813'), - ('842-65-5010', 'Jonathan Fox', '32 Springs Road Dallas, TX', '(972) 916-5884'), - ('657-17-6421', 'Carlos Carter', '96207 3rd Park Dallas, TX', '(214) 928-7624'), - ('422-81-7045', 'Adam Ferguson', '0 Summerview Court Dallas, TX', '(214) 957-5621'), - ('644-09-0337', 'Nicholas Wheeler', '756 Pleasure Circle Dallas, TX', '(469) 973-3255'), - ('903-98-1679', 'Raymond Rogers', '16 Monument Parkway Richardson, TX', '(469) 887-9227'), - ('847-29-3619', 'Brandon Stevens', '94647 Village Junction Dallas, TX', '(214) 693-6689'), - ('822-62-5312', 'Lori Ferguson', '49 Sachtjen Crossing Dallas, TX', '(214) 968-1515'), - ('629-41-9551', 'Roy Turner', '61544 Talmadge Drive Richardson, TX', '(469) 927-5678'), - ('235-79-8503', 'Martha Warren', '94 Vahlen Hill Dallas, TX', '(972) 776-3863'), - ('265-90-7820', 'Ruby Anderson', '0482 Haas Terrace Dallas, TX', '(469) 873-2923'), - ('694-92-0573', 'Steven Bailey', '8987 Lawn Park Dallas, TX', '(469) 938-8249'), - ('143-30-2355', 'Melissa Perkins', '0039 Hanson Court Dallas, TX', '(972) 995-3027'), - ('344-69-2006', 'Ruby Ross', '86591 Roxbury Circle Dallas, TX', '(214) 917-1080'), - ('566-64-7874', 'Billy King', '831 Sutherland Point Plano, TX', '(214) 846-6560'), - ('163-65-8067', 'Mildred Sanchez', '09 Annamark Circle Dallas, TX', '(469) 877-2424'), - ('588-45-9557', 'Linda Duncan', '09159 Charing Cross Way Dallas, TX', '(972) 877-3172'), - ('142-74-6194', 'Janice Montgomery', '661 Grasskamp Alley Dallas, TX', '(214) 905-8688'), - ('694-58-3169', 'Robin Cox', '0 Gerald Court Dallas, TX', '(972) 722-1586'), - ('513-11-0091', 'Carol Howell', '273 Sullivan Lane Richardson, TX', '(214) 831-1374'), - ('432-49-7884', 'Doris Welch', '74 Oakridge Alley Dallas, TX', '(469) 983-6603'), - ('204-46-7713', 'Debra Kelly', '0 Maywood Street Dallas, TX', '(469) 926-2312'), - ('597-00-1738', 'Scott Morales', '823 Sherman Point Plano, TX', '(469) 801-1210'), - ('221-70-6594', 'Louise Murphy', '7113 Carpenter Drive Dallas, TX', '(469) 988-1773'), - ('300-48-5255', 'Jack Cruz', '55322 Linden Point Dallas, TX', '(469) 896-0110'), - ('823-59-7520', 'Teresa Carter', '4757 Kingsford Street Dallas, TX', '(214) 964-1732'), - ('526-53-0309', 'Eric Flores', '0 Vera Center Dallas, TX', '(214) 868-2141'), - ('996-22-6511', 'Louis Elliott', '02 Jenna Trail Dallas, TX', '(972) 567-4117'), - ('688-12-7828', 'Nicholas Evans', '13 Russell Lane Dallas, TX', '(214) 975-3027'), - ('389-89-9874', 'Evelyn Bailey', '77832 West Park Dallas, TX', '(972) 978-9540'), - ('614-07-9273', 'Arthur Ray', '3079 Donald Point Dallas, TX', '(469) 754-2762'), - ('189-81-8299', 'Shawn Burns', '51 Nelson Plaza Dallas, TX', '(469) 978-8065'), - ('874-30-0223', 'Henry Wallace', '4139 Spaight Road Richardson, TX', '(972) 524-8949'), - ('841-42-8500', 'Kathy Garcia', '3657 Anhalt Trail Richardson, TX', '(469) 867-8069'), - ('933-68-6811', 'Kenneth Sanchez', '06600 Utah Crossing Dallas, TX', '(972) 810-0694'), - ('124-81-1894', 'Carl Bishop', '01 Goodland Junction Dallas, TX', '(469) 792-3214'), - ('255-45-0108', 'Harry Tucker', '8 Waubesa Parkway Dallas, TX', '(214) 925-4392'), - ('694-43-1375', 'Christopher Marshall', '34693 Warbler Junction Plano, TX', '(214) 646-3142'), - ('405-10-9736', 'Russell Murphy', '9552 Mandrake Center Dallas, TX', '(214) 843-3552'), - ('752-91-8139', 'Jessica Carr', '9 Sutteridge Pass Dallas, TX', '(469) 949-9851'), - ('324-70-7021', 'Cheryl Moore', '0 2nd Plaza Dallas, TX', '(972) 272-0101'), - ('903-05-2325', 'Lori Carroll', '879 Clarendon Alley Dallas, TX', '(469) 989-2206'), - ('323-48-3150', 'Frank Martin', '428 Lindbergh Way Dallas, TX', '(972) 802-1808'), - ('748-29-7839', 'Joyce Allen', '5911 Troy Pass Dallas, TX', '(469) 935-7570'), - ('203-92-3954', 'Philip Gonzalez', '2 Buhler Street Dallas, TX', '(214) 941-2219'), - ('483-93-2540', 'Nicole Bell', '69 Manitowish Lane Dallas, TX', '(214) 901-7334'), - ('235-14-1141', 'Joseph Perry', '45 Judy Trail Dallas, TX', '(214) 938-2436'), - ('138-49-9901', 'Doris Peterson', '56 Oxford Avenue Dallas, TX', '(214) 956-2812'), - ('311-51-3288', 'Gregory Marshall', '17 Eastwood Terrace Dallas, TX', '(214) 824-0301'), - ('359-35-2008', 'Virginia Kelly', '37408 Morrow Court Plano, TX', '(972) 839-9825'), - ('608-20-9205', 'Beverly Hawkins', '0 Hovde Terrace Dallas, TX', '(469) 814-1846'), - ('539-33-7584', 'Scott Gonzalez', '623 Westend Way Dallas, TX', '(469) 928-6396'), - ('407-50-8210', 'Paul Mcdonald', '334 Orin Avenue Dallas, TX', '(972) 994-1541'), - ('158-21-4344', 'Dennis Duncan', '05 Mitchell Hill Dallas, TX', '(469) 906-7817'), - ('146-55-7699', 'Mary Ryan', '24029 Nevada Way Dallas, TX', '(469) 827-6766'), - ('870-93-1419', 'Victor Smith', '0 Helena Point Dallas, TX', '(214) 828-3216'), - ('752-50-3597', 'Ruby Murray', '4920 Westend Court Dallas, TX', '(214) 859-6221'), - ('894-84-4831', 'Jean Garza', '91 Havey Plaza Plano, TX', '(972) 738-9037'), - ('327-53-6005', 'Andrew Jordan', '38498 Park Meadow Crossing Dallas, TX', '(469) 762-1505'), - ('868-79-0477', 'Harry Marshall', '24 Heffernan Crossing Plano, TX', '(972) 927-0592'), - ('409-03-9079', 'Wayne Franklin', '35 Continental Alley Dallas, TX', '(214) 741-9000'), - ('653-59-9039', 'Lillian Gonzalez', '9922 Arkansas Circle Plano, TX', '(972) 872-9248'), - ('718-47-6143', 'Rachel Bishop', '70227 Vernon Way Dallas, TX', '(972) 798-2559'), - ('841-96-3890', 'Alan Lynch', '332 Dayton Plaza Plano, TX', '(214) 930-8850'), - ('931-94-4929', 'Carlos Ray', '62 Monument Park Dallas, TX', '(469) 942-7494'), - ('720-85-0355', 'Frank Taylor', '5 Lien Center Dallas, TX', '(214) 621-5602'), - ('836-23-8686', 'Melissa Burton', '5 Springs Lane Dallas, TX', '(469) 567-0603'), - ('999-28-2020', 'Anne Nelson', '34365 Kropf Park Dallas, TX', '(972) 904-1974'), - ('919-67-6865', 'Amanda Bailey', '29 Continental Point Dallas, TX', '(214) 819-4931'), - ('362-09-9834', 'Chris Duncan', '35 Alpine Avenue Dallas, TX', '(214) 940-2965'), - ('762-37-8033', 'Elizabeth Gibson', '6602 Namekagon Way Dallas, TX', '(972) 863-7573'), - ('424-50-1775', 'Keith Brown', '471 Burning Wood Park Dallas, TX', '(214) 849-4296'), - ('221-74-2881', 'Karen Sanchez', '71 Old Gate Point Dallas, TX', '(214) 915-6512'), - ('467-35-1217', 'Marilyn Meyer', '3981 Lerdahl Point Dallas, TX', '(972) 956-5459'), - ('142-41-8822', 'Harold Little', '81271 Evergreen Lane Dallas, TX', '(469) 888-8096'), - ('626-74-9990', 'Henry Dean', '4913 Brentwood Center Dallas, TX', '(469) 950-2072'), - ('468-99-7446', 'Joyce Rivera', '3 Johnson Pass Dallas, TX', '(469) 982-3317'), - ('560-85-1499', 'Marie Johnson', '6 Graedel Street Richardson, TX', '(972) 701-4623'), - ('650-87-6068', 'Aaron Clark', '5169 Bashford Point Plano, TX', '(214) 931-4554'), - ('262-55-8913', 'Anne Campbell', '0140 Grover Place Dallas, TX', '(214) 962-1673'), - ('691-11-1485', 'Janice Garrett', '439 Prentice Hill Dallas, TX', '(972) 911-1842'), - ('772-97-8655', 'Bobby Johnson', '7 Moulton Crossing Dallas, TX', '(469) 948-5326'), - ('807-93-7008', 'Fred Welch', '0 Lukken Alley Dallas, TX', '(214) 955-3447'), - ('464-18-8734', 'Laura Chapman', '304 Lunder Hill Richardson, TX', '(469) 823-5855'), - ('307-70-2725', 'Albert Castillo', '2 Beilfuss Center Dallas, TX', '(214) 705-0297'), - ('528-91-7558', 'Julia Oliver', '42421 Farmco Street Dallas, TX', '(972) 780-5174'), - ('408-53-0520', 'David Russell', '57840 Laurel Alley Dallas, TX', '(972) 852-7339'), - ('520-76-6004', 'Russell Montgomery', '18 Hagan Pass Dallas, TX', '(972) 389-6002'), - ('660-90-8261', 'Joe Price', '1 Leroy Park Dallas, TX', '(214) 527-9098'), - ('799-34-0025', 'Anthony Harrison', '7123 Bunker Hill Junction Dallas, TX', '(972) 970-2532'), - ('870-49-6647', 'Gregory Hudson', '42 Park Meadow Park Dallas, TX', '(972) 883-9738'), - ('707-63-8293', 'Michelle Chapman', '29 Rieder Pass Dallas, TX', '(972) 911-7317'), - ('469-39-1386', 'Chris Bailey', '8 South Court Dallas, TX', '(214) 935-4761'), - ('553-57-0780', 'Kevin Wood', '0 Pierstorff Park Dallas, TX', '(469) 876-1298'), - ('316-43-6159', 'Louise Spencer', '4462 Blaine Avenue Dallas, TX', '(214) 877-5122'), - ('455-51-2609', 'Ruth Lee', '58 Waubesa Avenue Dallas, TX', '(469) 940-2041'), - ('995-34-9938', 'Carolyn Alexander', '634 Judy Pass Dallas, TX', '(214) 882-9567'), - ('149-26-9323', 'Barbara Rivera', '93 North Pass Dallas, TX', '(972) 696-7148'), - ('889-46-9650', 'Adam Mcdonald', '20734 Beilfuss Park Dallas, TX', '(972) 846-7469'), - ('242-32-1789', 'Sara Graham', '4992 Ridgeview Court Dallas, TX', '(469) 586-2569'), - ('900-93-1217', 'Henry Spencer', '919 7th Plaza Dallas, TX', '(214) 949-3097'), - ('669-83-7441', 'Lillian Austin', '8 Eagle Crest Way Richardson, TX', '(469) 980-2648'), - ('989-79-1559', 'Jerry Pierce', '16 Charing Cross Center Dallas, TX', '(469) 546-3297'), - ('336-44-7837', 'Emily Ruiz', '1 Claremont Junction Plano, TX', '(214) 961-5149'), - ('928-58-0480', 'Lillian Baker', '111 Village Plaza Richardson, TX', '(469) 643-7532'), - ('186-05-2080', 'Ruth Butler', '41052 Waubesa Lane Richardson, TX', '(972) 760-5201'), - ('922-11-3673', 'Catherine Welch', '666 Kim Crossing Dallas, TX', '(972) 895-2567'), - ('209-54-9222', 'Howard Castillo', '4069 Oneill Point Richardson, TX', '(214) 332-8692'), - ('352-50-9918', 'Justin Sanders', '2 Mayer Junction Plano, TX', '(214) 883-7551'), - ('651-14-8311', 'Ronald Roberts', '25 South Lane Dallas, TX', '(972) 703-1253'), - ('724-31-5669', 'Jane Harrison', '8070 Clarendon Parkway Dallas, TX', '(469) 907-0689'), - ('506-88-8490', 'Benjamin Grant', '89750 Kenwood Crossing Dallas, TX', '(469) 978-2012'), - ('581-20-4224', 'Harry Miller', '721 High Crossing Court Dallas, TX', '(214) 867-9998'), - ('878-06-0469', 'Matthew Burke', '735 Toban Park Plano, TX', '(972) 915-3614'), - ('246-12-3136', 'Christine Chavez', '560 Atwood Pass Dallas, TX', '(214) 937-6446'), - ('938-95-9106', 'Eric Hernandez', '80149 Haas Court Dallas, TX', '(214) 905-1189'), - ('734-24-8047', 'Diana Jones', '499 Pearson Junction Dallas, TX', '(469) 838-4299'), - ('829-11-9179', 'Janet Rice', '35291 Bunker Hill Way Dallas, TX', '(214) 291-3432'), - ('744-91-0994', 'Diane Ruiz', '36 Cambridge Park Dallas, TX', '(469) 888-5191'), - ('981-13-1196', 'Theresa Russell', '589 Northwestern Park Dallas, TX', '(214) 851-1236'), - ('770-00-5747', 'Wayne Hunt', '9818 Westend Center Plano, TX', '(469) 941-4660'), - ('842-92-7572', 'Virginia Gordon', '76 Tony Road Dallas, TX', '(214) 913-8462'), - ('737-53-3435', 'Gloria Rice', '9 Golf View Alley Dallas, TX', '(214) 920-9672'), - ('451-56-2506', 'Mildred Butler', '67 Westerfield Avenue Dallas, TX', '(469) 283-4838'), - ('368-38-1777', 'Debra West', '4799 Melody Parkway Richardson, TX', '(972) 966-6826'), - ('199-36-9132', 'Nancy Wheeler', '737 Doe Crossing Trail Dallas, TX', '(972) 898-3947'), - ('931-76-2866', 'Lawrence Stone', '8 Darwin Alley Richardson, TX', '(214) 949-9916'), - ('371-28-8168', 'Rachel Reyes', '6 Anniversary Alley Richardson, TX', '(972) 939-6714'), - ('435-69-4707', 'Amanda Simpson', '15 Dixon Street Dallas, TX', '(972) 740-1910'), - ('235-32-3985', 'Lori Carroll', '213 Forest Point Dallas, TX', '(469) 958-8957'), - ('148-55-6625', 'Bobby Austin', '62352 Pankratz Road Richardson, TX', '(972) 912-7272'), - ('253-35-6885', 'Brenda Carpenter', '6664 Prairie Rose Point Dallas, TX', '(214) 986-1471'), - ('817-44-1979', 'Sharon Mason', '33 Moulton Lane Dallas, TX', '(972) 901-1745'), - ('639-31-4924', 'Joshua Ross', '4376 Kropf Road Dallas, TX', '(214) 915-4707'), - ('926-53-1333', 'Melissa Mccoy', '08770 Moland Lane Richardson, TX', '(469) 926-4571'), - ('728-54-9849', 'Bobby Kelly', '79 Burning Wood Pass Dallas, TX', '(214) 860-1350'), - ('846-65-0817', 'Jennifer Ortiz', '25989 Mccormick Drive Dallas, TX', '(469) 874-7030'), - ('810-70-4323', 'Chris Carter', '50486 Grim Alley Dallas, TX', '(469) 916-1204'), - ('919-26-6378', 'Christopher Gonzales', '49163 Moose Point Dallas, TX', '(214) 959-6901'), - ('966-29-4430', 'Albert Gibson', '90 Lillian Trail Dallas, TX', '(469) 951-7990'), - ('435-99-9670', 'Doris Rose', '1891 Melrose Terrace Richardson, TX', '(972) 849-4915'), - ('416-21-6778', 'Marilyn Jordan', '61 Eagle Crest Junction Richardson, TX', '(214) 796-3512'), - ('306-68-0158', 'Joe Bowman', '26225 8th Road Dallas, TX', '(972) 882-8221'), - ('840-12-3188', 'Denise Price', '46 Knutson Drive Richardson, TX', '(972) 488-9450'), - ('332-41-0512', 'Evelyn Edwards', '7867 Nancy Park Dallas, TX', '(972) 209-1095'), - ('196-02-7403', 'Kimberly Hernandez', '2 Buell Drive Dallas, TX', '(469) 779-6890'), - ('388-55-1450', 'Norma Boyd', '35 Service Court Dallas, TX', '(972) 833-7491'), - ('395-16-7095', 'Sharon Ramos', '39 Daystar Hill Dallas, TX', '(214) 898-7050'), - ('541-25-5056', 'Rachel Riley', '01017 Jay Plaza Dallas, TX', '(972) 803-8359'), - ('132-58-8039', 'Randy Jenkins', '794 Buena Vista Road Dallas, TX', '(469) 894-9345'), - ('774-38-4043', 'John Clark', '0708 North Terrace Dallas, TX', '(469) 918-1359'), - ('495-55-0985', 'Ruby Hansen', '8756 Wayridge Drive Dallas, TX', '(469) 941-4442'), - ('739-90-9261', 'Ashley Peters', '28880 4th Alley Dallas, TX', '(972) 893-4339'), - ('377-63-8268', 'Albert Garcia', '0 Maple Terrace Plano, TX', '(972) 931-7094'), - ('150-30-2288', 'Clarence Holmes', '291 1st Terrace Richardson, TX', '(214) 952-6641'), - ('849-92-8312', 'Julie Parker', '3377 Dahle Street Dallas, TX', '(214) 876-9952'), - ('953-43-1417', 'Michael Martinez', '0967 Melrose Avenue Dallas, TX', '(214) 935-8776'), - ('337-86-8085', 'William Berry', '9 Hagan Street Dallas, TX', '(214) 885-1966'), - ('465-95-8833', 'Gerald Burke', '5175 Florence Center Dallas, TX', '(469) 999-7380'), - ('960-83-9340', 'Linda Rodriguez', '2427 Reindahl Park Dallas, TX', '(972) 664-5725'), - ('709-91-1641', 'Terry Stephens', '27291 Farragut Court Dallas, TX', '(972) 890-0078'), - ('423-06-4282', 'Timothy Hunt', '4219 Westport Hill Richardson, TX', '(214) 950-1960'), - ('622-29-9732', 'Richard Cruz', '813 Darwin Avenue Dallas, TX', '(972) 889-2210'), - ('631-12-8701', 'Gregory Gomez', '3993 American Circle Dallas, TX', '(972) 867-8273'), - ('699-59-0681', 'Louise Garza', '14760 Bobwhite Terrace Dallas, TX', '(469) 893-7918'), - ('762-63-8070', 'James Adams', '055 Alpine Way Richardson, TX', '(972) 925-4501'), - ('149-42-1309', 'Victor Gardner', '12141 Corscot Junction Dallas, TX', '(972) 962-2925'), - ('531-67-5941', 'Ernest Lane', '66226 Nova Way Plano, TX', '(469) 999-6823'), - ('156-63-1943', 'Joe Griffin', '205 Fuller Plaza Dallas, TX', '(469) 912-4055'), - ('664-38-4205', 'Sean Kelly', '3 Gerald Court Dallas, TX', '(214) 970-9971'), - ('662-87-7945', 'Angela Turner', '53 Colorado Pass Plano, TX', '(469) 945-2673'), - ('678-62-8472', 'Jerry Howard', '68198 Monterey Parkway Dallas, TX', '(972) 936-3734'), - ('216-37-2770', 'Ashley Lopez', '405 Hovde Way Dallas, TX', '(972) 956-4194'), - ('302-51-0303', 'Albert Marshall', '933 Claremont Avenue Dallas, TX', '(972) 771-8796'), - ('194-03-3629', 'Michelle Williams', '07 Marquette Road Dallas, TX', '(469) 921-7056'), - ('303-31-8810', 'Sharon Wells', '23 Twin Pines Parkway Dallas, TX', '(972) 841-5472'), - ('785-25-4186', 'Doris Gordon', '358 Pearson Court Dallas, TX', '(469) 945-1043'), - ('395-22-8160', 'Patricia Long', '76 Jana Place Plano, TX', '(469) 711-2650'), - ('374-21-6461', 'Helen Lee', '65137 Summerview Crossing Dallas, TX', '(469) 656-8757'), - ('746-77-1077', 'Kimberly Collins', '9629 Delaware Crossing Dallas, TX', '(469) 789-3606'), - ('376-27-2540', 'Mary Dunn', '6848 Sunbrook Parkway Dallas, TX', '(214) 961-2821'), - ('756-45-3967', 'Amy Harper', '5863 Boyd Drive Dallas, TX', '(214) 988-3185'), - ('873-25-3246', 'Bobby Long', '35 Paget Circle Plano, TX', '(214) 910-1295'), - ('447-50-8678', 'Sara Young', '71916 Sherman Point Plano, TX', '(972) 918-2624'), - ('303-61-3106', 'Kathy Oliver', '0 Victoria Junction Dallas, TX', '(972) 784-8364'), - ('693-54-6232', 'Ruby Ray', '17 Hermina Point Dallas, TX', '(214) 987-1219'), - ('107-16-4727', 'Lori Schmidt', '181 Rowland Hill Dallas, TX', '(469) 786-6455'), - ('160-60-2907', 'Raymond Fox', '1 Farwell Avenue Dallas, TX', '(214) 986-0132'), - ('192-57-3114', 'Nancy Turner', '1 Vermont Alley Dallas, TX', '(214) 984-4444'), - ('214-13-7727', 'Gregory Richards', '9 Vidon Street Dallas, TX', '(214) 911-5776'), - ('480-37-2448', 'Lawrence Perez', '6441 Derek Junction Dallas, TX', '(972) 932-7049'), - ('279-03-2319', 'Thomas Pierce', '73803 Prairieview Alley Dallas, TX', '(214) 837-7005'), - ('860-31-5301', 'Steve Larson', '6 Nobel Trail Dallas, TX', '(469) 818-8073'), - ('375-32-0893', 'Aaron Coleman', '62 Golden Leaf Crossing Plano, TX', '(972) 965-7245'), - ('335-17-5061', 'Joe Daniels', '916 Marcy Way Richardson, TX', '(972) 852-7588'), - ('273-16-3483', 'Theresa Porter', '8868 Blaine Pass Dallas, TX', '(214) 841-2263'), - ('690-78-4766', 'Kathleen Crawford', '44 Elmside Place Dallas, TX', '(214) 466-2521'), - ('371-48-9808', 'Joe Bradley', '90362 Kipling Plaza Dallas, TX', '(214) 934-9993'), - ('957-05-0987', 'Paul Jacobs', '512 Tennessee Place Dallas, TX', '(214) 842-8747'), - ('229-10-8054', 'Andrew Reid', '7654 Moland Terrace Dallas, TX', '(972) 610-4548'), - ('714-89-8210', 'Ralph George', '072 Merchant Trail Dallas, TX', '(972) 917-6796'), - ('401-33-5380', 'Jeremy Brown', '2 Old Shore Park Plano, TX', '(469) 982-3476'), - ('953-58-5532', 'Nicholas Kennedy', '2067 Jana Parkway Dallas, TX', '(214) 951-6843'), - ('818-63-4715', 'Ronald Wells', '37 Prairieview Parkway Plano, TX', '(469) 672-3875'), - ('984-16-0277', 'Albert Gilbert', '7169 Scoville Avenue Dallas, TX', '(972) 599-7668'), - ('762-90-9837', 'Jason Turner', '208 Summit Park Dallas, TX', '(972) 919-7729'), - ('229-26-6155', 'Arthur Spencer', '624 Kropf Terrace Dallas, TX', '(469) 790-4776'), - ('673-35-9377', 'Bonnie Ray', '20935 Vahlen Pass Dallas, TX', '(469) 690-0504'), - ('414-82-6319', 'Carol Ryan', '43 Sloan Avenue Dallas, TX', '(469) 959-3742'), - ('832-18-4025', 'Kevin Little', '244 Tony Center Dallas, TX', '(214) 865-6806'), - ('562-28-1756', 'Todd Hall', '3896 Corscot Circle Dallas, TX', '(214) 623-7406'), - ('243-20-4627', 'Ralph Hart', '16083 Lillian Crossing Dallas, TX', '(469) 916-1028'), - ('152-91-1428', 'Ruby Martin', '6 Merry Trail Dallas, TX', '(469) 781-1733'), - ('200-92-4036', 'Julia Kim', '30 Corscot Terrace Richardson, TX', '(972) 826-8872'), - ('869-20-2424', 'Lawrence Reyes', '70001 Lunder Pass Plano, TX', '(469) 952-7199'), - ('766-56-6664', 'Ronald Rivera', '0 Fuller Trail Dallas, TX', '(469) 977-6988'), - ('966-33-9584', 'Kenneth Medina', '652 Melody Avenue Dallas, TX', '(469) 815-2235'), - ('761-70-9256', 'Angela Clark', '916 Elka Place Dallas, TX', '(972) 726-9437'), - ('191-21-0161', 'Diane Brown', '4221 Petterle Junction Plano, TX', '(972) 633-7951'), - ('597-21-1875', 'Jack Ward', '00625 Warner Street Dallas, TX', '(972) 802-4440'), - ('175-99-0098', 'Roger Powell', '48387 Corben Junction Dallas, TX', '(214) 803-6520'), - ('541-56-2611', 'Rachel Cook', '214 Eastwood Hill Dallas, TX', '(214) 862-3951'), - ('454-07-8145', 'Karen Burke', '09242 Victoria Plaza Dallas, TX', '(469) 897-7697'), - ('947-35-1972', 'Kimberly Robinson', '26233 Oneill Junction Dallas, TX', '(214) 810-2174'), - ('679-65-6095', 'Samuel Bryant', '95 Pearson Pass Dallas, TX', '(972) 509-6994'), - ('522-26-5924', 'Russell Berry', '27 Moose Plaza Plano, TX', '(214) 969-7916'), - ('624-87-7517', 'Paula Frazier', '713 Havey Court Dallas, TX', '(469) 704-7407'), - ('502-80-0344', 'Anna Rice', '9 Lunder Center Dallas, TX', '(469) 960-1948'), - ('385-99-4195', 'Diane Stanley', '96 Roth Hill Richardson, TX', '(214) 955-8100'), - ('678-08-8971', 'Billy Snyder', '8170 Clarendon Crossing Dallas, TX', '(972) 883-8736'), - ('850-26-9485', 'Juan Bailey', '6 Logan Crossing Plano, TX', '(972) 954-9785'), - ('119-17-4689', 'Patricia Green', '27001 Mayfield Street Dallas, TX', '(972) 880-1670'), - ('640-57-8903', 'Louise Harrison', '4383 Forest Dale Hill Plano, TX', '(972) 591-6825'), - ('915-81-5067', 'Scott Cunningham', '1312 Kinsman Terrace Dallas, TX', '(469) 940-8227'), - ('287-08-2149', 'Steve White', '57 Vera Lane Dallas, TX', '(972) 573-3704'), - ('915-62-6265', 'Brandon Jones', '8845 Blackbird Terrace Dallas, TX', '(214) 982-8588'), - ('622-62-2819', 'Rebecca Reed', '012 Sunbrook Place Plano, TX', '(469) 800-1493'), - ('330-90-1862', 'Kelly Hawkins', '517 Bay Crossing Dallas, TX', '(972) 839-2019'), - ('159-37-4167', 'Kenneth Hudson', '16 Porter Trail Dallas, TX', '(972) 977-7399'), - ('332-96-2350', 'Tammy Butler', '0897 Amoth Hill Dallas, TX', '(214) 934-8616'), - ('179-13-6812', 'Steven Lane', '0185 Hollow Ridge Street Dallas, TX', '(214) 993-0045'), - ('640-94-5337', 'Jean West', '5487 Tomscot Place Plano, TX', '(214) 814-4521'), - ('381-83-4152', 'Keith Mason', '1 Norway Maple Park Richardson, TX', '(469) 237-7698'), - ('480-06-1832', 'Jose Morales', '36703 Pennsylvania Center Dallas, TX', '(214) 936-8952'), - ('360-26-2573', 'Johnny Harris', '816 Ramsey Pass Dallas, TX', '(214) 800-8878'), - ('271-80-3746', 'Harold Romero', '864 Clove Plaza Dallas, TX', '(972) 958-7058'), - ('161-60-2246', 'Jose Phillips', '726 Farwell Road Dallas, TX', '(469) 922-7795'), - ('968-21-3159', 'Tina Nguyen', '7814 Fairview Avenue Dallas, TX', '(214) 858-2813'), - ('994-00-7169', 'Michelle Hill', '70 Jana Plaza Plano, TX', '(214) 805-4933'), - ('164-07-0343', 'Henry Powell', '1 Arapahoe Plaza Dallas, TX', '(469) 861-9090'), - ('491-05-7221', 'Donna Nelson', '4 Homewood Alley Dallas, TX', '(469) 700-9754'), - ('511-95-4134', 'Louis Perry', '1655 Heffernan Pass Dallas, TX', '(214) 820-3573'), - ('196-78-4374', 'Paul Lee', '41406 Ridge Oak Parkway Dallas, TX', '(972) 810-6175'), - ('112-60-2094', 'Diana King', '65113 Saint Paul Court Dallas, TX', '(972) 748-9174'), - ('376-03-6774', 'Evelyn Campbell', '68 Mifflin Court Dallas, TX', '(214) 743-4130'), - ('277-81-5111', 'Louis Howard', '0 Lyons Park Dallas, TX', '(972) 941-3029'), - ('658-05-1653', 'Irene Robinson', '04 Fairfield Parkway Dallas, TX', '(469) 943-6537'), - ('155-87-2365', 'Alice Armstrong', '7068 Derek Alley Dallas, TX', '(214) 911-6490'), - ('665-02-8900', 'Eugene Woods', '56245 Graceland Way Dallas, TX', '(972) 832-8839'), - ('670-32-5349', 'Louis Taylor', '09508 Thackeray Center Dallas, TX', '(214) 932-0979'), - ('416-31-2379', 'Deborah Owens', '12322 Hayes Center Dallas, TX', '(214) 971-1946'), - ('346-41-4220', 'Marilyn Collins', '305 1st Crossing Dallas, TX', '(972) 927-4971'), - ('475-06-7256', 'Virginia Gonzalez', '03722 Huxley Point Dallas, TX', '(214) 864-3430'), - ('701-28-5911', 'Helen Ryan', '51 Kennedy Parkway Dallas, TX', '(214) 988-0720'), - ('646-84-1183', 'John Myers', '4 Mendota Junction Dallas, TX', '(214) 437-0969'), - ('748-14-1656', 'Mary Collins', '261 Almo Alley Dallas, TX', '(469) 987-5918'), - ('802-79-0419', 'Raymond Carter', '71 Eastwood Way Dallas, TX', '(972) 891-0800'), - ('124-07-9804', 'Mary Ramos', '6 Anderson Lane Plano, TX', '(214) 989-0536'), - ('311-30-5644', 'Kathy Ferguson', '20 7th Place Dallas, TX', '(214) 607-7944'), - ('156-04-8304', 'Clarence Morales', '4645 Homewood Trail Plano, TX', '(214) 900-0324'), - ('590-28-7564', 'Teresa Campbell', '0241 Bultman Point Dallas, TX', '(214) 930-0030'), - ('157-33-0075', 'Roger Nguyen', '249 Marquette Center Dallas, TX', '(972) 931-8604'), - ('326-20-8507', 'Phyllis Long', '9 Bluestem Circle Dallas, TX', '(972) 661-7458'), - ('536-17-5051', 'Michael Taylor', '18398 Florence Place Dallas, TX', '(972) 833-7591'), - ('906-45-2011', 'John Watkins', '1669 Ridgeview Hill Richardson, TX', '(214) 925-0299'), - ('336-89-2349', 'Carolyn Garcia', '9 Dapin Trail Dallas, TX', '(214) 920-2780'), - ('255-25-6148', 'Donald Phillips', '7 Alpine Alley Dallas, TX', '(214) 813-6913'), - ('292-88-0298', 'Deborah Watson', '75 Carey Parkway Dallas, TX', '(469) 809-1498'), - ('640-78-6255', 'Annie Shaw', '66820 Bunting Plaza Dallas, TX', '(972) 965-6678'), - ('847-47-8564', 'Alan Price', '84 Rutledge Junction Dallas, TX', '(972) 776-5854'), - ('126-26-3636', 'Kathryn Morrison', '59100 Onsgard Crossing Dallas, TX', '(972) 875-1440'), - ('471-61-6333', 'Christopher Johnson', '777 Ludington Terrace Dallas, TX', '(972) 679-9556'), - ('439-03-8518', 'Joshua Bishop', '0 Grim Place Dallas, TX', '(214) 600-5143'), - ('391-22-2309', 'Ernest Jones', '8085 Weeping Birch Alley Dallas, TX', '(972) 948-1978'), - ('897-34-6632', 'Melissa Banks', '578 Reindahl Trail Dallas, TX', '(972) 993-2150'), - ('985-72-2421', 'Arthur Lane', '26696 Steensland Court Plano, TX', '(214) 959-8756'), - ('325-85-6108', 'Joyce Perkins', '8 Bluestem Park Dallas, TX', '(972) 942-5394'), - ('506-85-1419', 'Judith Sullivan', '95194 Badeau Trail Dallas, TX', '(972) 890-8729'), - ('103-27-3706', 'Billy Johnson', '95272 Kensington Plaza Dallas, TX', '(972) 823-5333'), - ('378-57-9726', 'Marie Bell', '74 Anderson Avenue Dallas, TX', '(469) 991-0533'), - ('764-94-7005', 'Jimmy Ford', '14311 Merchant Court Dallas, TX', '(469) 937-3556'), - ('667-37-5162', 'Alice Mccoy', '6 Nelson Avenue Dallas, TX', '(469) 848-7697'), - ('946-02-5323', 'Richard Matthews', '121 Warrior Alley Dallas, TX', '(972) 963-0887'), - ('143-59-3681', 'Daniel Foster', '84 Charing Cross Avenue Dallas, TX', '(972) 838-0899'), - ('251-35-0397', 'Earl Banks', '0 Lindbergh Place Dallas, TX', '(972) 921-9987'), - ('709-47-1259', 'Scott Rogers', '9 Gulseth Circle Dallas, TX', '(469) 936-7824'), - ('211-17-9786', 'Richard Baker', '68093 Ridge Oak Junction Dallas, TX', '(972) 957-8835'), - ('375-17-9234', 'Robin Mcdonald', '3407 Old Gate Circle Dallas, TX', '(972) 858-2976'), - ('512-45-0642', 'Victor Riley', '219 Fair Oaks Park Dallas, TX', '(214) 932-7141'), - ('727-22-0778', 'Anne Lopez', '62 Truax Terrace Dallas, TX', '(972) 987-8304'), - ('315-71-5729', 'Margaret Fisher', '53744 Prentice Alley Dallas, TX', '(469) 711-2192'), - ('897-19-4834', 'Amanda Perkins', '629 Troy Way Dallas, TX', '(972) 937-2368'), - ('619-76-5825', 'Linda Perry', '83189 Esch Circle Dallas, TX', '(214) 865-3742'), - ('272-90-8955', 'Wanda Lawrence', '6239 Mandrake Alley Dallas, TX', '(214) 772-4765'), - ('100-07-8344', 'Tina Mitchell', '42613 Pankratz Hill Dallas, TX', '(972) 791-8636'), - ('392-34-3414', 'Jacqueline Gordon', '3603 Vernon Junction Dallas, TX', '(972) 979-5379'), - ('850-03-5811', 'Betty Hunt', '79 Welch Court Dallas, TX', '(214) 615-4372'), - ('190-47-5767', 'Kevin Webb', '156 Lukken Lane Dallas, TX', '(214) 947-7416'), - ('529-87-4076', 'Joshua Evans', '225 Dixon Center Richardson, TX', '(214) 882-4750'), - ('836-54-2070', 'Kathleen Peters', '5024 Park Meadow Park Dallas, TX', '(214) 838-2643'), - ('265-54-1326', 'Marie Mason', '651 Cody Trail Dallas, TX', '(972) 918-8605'), - ('941-12-6153', 'Jean Morrison', '68 Stuart Parkway Dallas, TX', '(972) 767-8868'), - ('190-47-8274', 'Daniel Hudson', '16609 Oak Valley Plaza Dallas, TX', '(214) 921-7666'), - ('318-20-1054', 'Judith Dixon', '8 Almo Court Dallas, TX', '(972) 908-2892'), - ('963-64-2281', 'Roy Morales', '05025 Muir Point Dallas, TX', '(972) 635-1013'), - ('531-84-3873', 'Justin Marshall', '972 Crownhardt Circle Plano, TX', '(469) 778-6036'), - ('635-15-6122', 'Gregory Smith', '59810 Erie Circle Dallas, TX', '(972) 868-0952'), - ('552-29-0884', 'Deborah Reed', '426 Swallow Hill Richardson, TX', '(214) 981-2497'), - ('578-14-7271', 'Pamela King', '1754 Pennsylvania Way Plano, TX', '(214) 989-0559'), - ('520-65-9256', 'Alan Welch', '1102 Magdeline Court Richardson, TX', '(469) 984-4212'), - ('393-11-9047', 'Samuel Moore', '41307 Grasskamp Drive Dallas, TX', '(972) 850-8906'), - ('343-72-6326', 'Katherine Holmes', '0 Rowland Avenue Dallas, TX', '(972) 954-3190'), - ('900-26-2190', 'Harold Williams', '7576 Vermont Plaza Dallas, TX', '(214) 889-7673'), - ('133-85-2262', 'Evelyn Nguyen', '590 Independence Circle Dallas, TX', '(469) 746-7480'), - ('824-55-4537', 'Joe Cooper', '1421 Linden Avenue Plano, TX', '(469) 977-1179'), - ('784-92-2076', 'Helen Fernandez', '70499 Michigan Circle Dallas, TX', '(469) 831-8504'), - ('151-58-6475', 'Nicholas Gibson', '2454 Clemons Crossing Plano, TX', '(972) 906-3742'), - ('122-74-8518', 'Angela Tucker', '50 Brentwood Crossing Dallas, TX', '(972) 650-5349'), - ('917-44-4969', 'Amy Washington', '93083 Elka Lane Dallas, TX', '(972) 817-2285'), - ('688-02-5499', 'Gregory Sanchez', '230 Briar Crest Road Dallas, TX', '(972) 860-8215'), - ('941-81-2456', 'Terry Kennedy', '55 Summer Ridge Point Dallas, TX', '(214) 945-1527'), - ('370-79-5137', 'Charles Bradley', '10 Kenwood Avenue Dallas, TX', '(214) 763-4487'), - ('972-75-6100', 'Judy Gilbert', '0 Roth Alley Dallas, TX', '(214) 917-8414'), - ('820-05-9916', 'Paul Chapman', '57011 Reindahl Terrace Richardson, TX', '(469) 918-9529'), - ('536-88-7676', 'Cheryl Taylor', '4916 Stang Hill Plano, TX', '(469) 602-9760'), - ('753-82-4781', 'Linda Nelson', '46 Lukken Hill Dallas, TX', '(214) 728-3594'), - ('617-28-1448', 'Edward Harvey', '2989 Leroy Point Dallas, TX', '(469) 999-8714'), - ('735-50-3554', 'Carolyn Chapman', '9524 Amoth Lane Dallas, TX', '(214) 947-2089'), - ('525-50-2241', 'Jack Hudson', '2 Claremont Drive Dallas, TX', '(972) 544-4023'), - ('534-11-4411', 'Adam Gardner', '907 Corben Alley Dallas, TX', '(214) 548-0751'), - ('363-38-9674', 'Julia Pierce', '8 Heath Avenue Richardson, TX', '(469) 701-5525'), - ('407-53-1627', 'Janet Robertson', '20 Mesta Plaza Dallas, TX', '(214) 836-2849'), - ('240-04-1102', 'Maria Romero', '188 Loeprich Drive Richardson, TX', '(214) 845-7095'), - ('472-98-6371', 'Diana Rogers', '58 Welch Place Dallas, TX', '(469) 502-6533'), - ('663-09-0104', 'Evelyn Carter', '8 Fair Oaks Alley Plano, TX', '(469) 825-0017'), - ('535-55-5684', 'Bruce Armstrong', '9 Memorial Junction Plano, TX', '(214) 875-5764'), - ('325-18-4093', 'Janice Matthews', '967 Mifflin Center Dallas, TX', '(469) 914-7781'), - ('371-06-4026', 'Mildred Nelson', '9598 Union Terrace Dallas, TX', '(972) 452-3908'), - ('222-63-3734', 'Shawn Robertson', '6590 Holy Cross Way Dallas, TX', '(972) 656-2026'), - ('276-49-3884', 'Elizabeth Tucker', '65 Fulton Court Dallas, TX', '(214) 987-6456'), - ('122-23-9319', 'Dorothy Harper', '83 Boyd Center Dallas, TX', '(214) 827-1293'), - ('323-59-6505', 'Jack Woods', '10 Crest Line Pass Dallas, TX', '(214) 942-9460'), - ('436-60-5376', 'Eric Jordan', '154 Redwing Way Richardson, TX', '(469) 924-3271'), - ('283-97-2577', 'Marilyn Taylor', '57 Farmco Park Dallas, TX', '(214) 806-7627'), - ('248-17-2518', 'Timothy Edwards', '109 Larry Road Dallas, TX', '(214) 974-9365'), - ('637-48-2284', 'Carol Welch', '121 Ohio Road Dallas, TX', '(214) 821-0016'), - ('164-19-4566', 'Sandra Reed', '1876 Westend Court Plano, TX', '(469) 896-9764'), - ('498-44-8648', 'Jason Dunn', '90950 Sherman Way Richardson, TX', '(972) 712-6791'), - ('741-86-2253', 'Paula Jordan', '0 Schurz Lane Dallas, TX', '(214) 956-1394'), - ('694-72-1725', 'Willie Hernandez', '46 Bluejay Crossing Dallas, TX', '(469) 869-1585'), - ('500-83-0564', 'Chris Phillips', '2563 Macpherson Avenue Dallas, TX', '(214) 795-5477'), - ('849-33-1958', 'Juan Hayes', '5 Melvin Junction Dallas, TX', '(469) 666-0063'), - ('398-41-8926', 'Helen Lopez', '2 Maryland Park Richardson, TX', '(214) 904-8793'), - ('642-59-9156', 'Justin Porter', '66 Lerdahl Street Dallas, TX', '(469) 820-0587'), - ('236-99-9327', 'Johnny Garcia', '85 Sloan Street Dallas, TX', '(469) 962-1344'), - ('590-51-2989', 'Katherine Taylor', '00 Carey Alley Dallas, TX', '(469) 755-0265'), - ('847-74-4073', 'Jacqueline Howell', '30 Meadow Valley Trail Dallas, TX', '(972) 817-4256'), - ('743-83-9247', 'Earl Richards', '431 Birchwood Court Dallas, TX', '(214) 959-4661'), - ('482-29-7565', 'Clarence Woods', '7 Schiller Road Plano, TX', '(214) 913-1723'), - ('209-78-7735', 'Jessica Gonzales', '645 Rutledge Road Dallas, TX', '(972) 938-3645'), - ('831-59-6111', 'Matthew Warren', '4561 Texas Lane Dallas, TX', '(972) 971-6529'), - ('280-98-5533', 'Kathy Smith', '8726 Packers Parkway Dallas, TX', '(214) 953-4343'), - ('925-63-9699', 'Keith Collins', '99196 Surrey Court Dallas, TX', '(214) 788-7439'), - ('556-38-3135', 'Joan Garrett', '43 Scoville Pass Plano, TX', '(972) 954-7260'), - ('434-71-8048', 'Diane Little', '11 Donald Road Plano, TX', '(469) 688-9174'), - ('372-72-3479', 'Wanda Mendoza', '34327 Sunbrook Hill Dallas, TX', '(469) 569-6125'), - ('657-61-4433', 'Martin Nguyen', '08974 Bowman Way Dallas, TX', '(469) 996-7003'), - ('967-28-8561', 'Donald Andrews', '8 Kennedy Terrace Dallas, TX', '(972) 828-3356'), - ('895-97-4019', 'Ruth Weaver', '46239 Kipling Terrace Dallas, TX', '(214) 802-4320'), - ('469-60-9195', 'Patricia Gilbert', '43 Mariners Cove Center Dallas, TX', '(214) 814-7712'), - ('286-87-5683', 'Carlos Ford', '0 Dovetail Avenue Dallas, TX', '(214) 658-8568'), - ('988-74-6162', 'Louise Arnold', '55 Mandrake Crossing Dallas, TX', '(972) 903-4805'), - ('284-97-8780', 'Henry Nichols', '08 Oak Valley Park Richardson, TX', '(214) 941-0961'), - ('186-84-1844', 'Kathleen Hayes', '72 Mcguire Road Dallas, TX', '(469) 895-4109'), - ('458-94-0428', 'Bonnie Mccoy', '83175 Cottonwood Way Dallas, TX', '(214) 913-2990'), - ('419-29-8694', 'Jerry Montgomery', '10 Northland Plaza Dallas, TX', '(214) 826-7806'), - ('219-67-5666', 'Jessica Mccoy', '09315 Trailsway Court Dallas, TX', '(214) 918-2939'), - ('372-21-0737', 'Jean Ryan', '801 Hooker Center Richardson, TX', '(214) 998-5831'), - ('338-73-5511', 'Joyce Clark', '360 Hovde Way Dallas, TX', '(469) 853-7767'), - ('593-87-1261', 'Marilyn Cruz', '4 Esker Plaza Dallas, TX', '(469) 947-7763'), - ('132-70-2552', 'Christine Young', '70 Meadow Valley Pass Richardson, TX', '(972) 989-7753'), - ('795-84-3330', 'Marie Phillips', '8 Pleasure Drive Dallas, TX', '(469) 603-0113'), - ('645-65-7799', 'Ann Bryant', '451 Sundown Drive Dallas, TX', '(214) 940-1980'), - ('338-60-5273', 'Bruce Bailey', '1228 Warner Hill Dallas, TX', '(972) 785-6558'), - ('171-35-4592', 'Julie Fields', '0 Hayes Alley Dallas, TX', '(214) 226-5537'), - ('872-37-7791', 'Gregory Schmidt', '998 Merchant Circle Dallas, TX', '(972) 990-8419'), - ('264-34-8300', 'Marilyn Ryan', '877 Forster Lane Dallas, TX', '(469) 900-2911'), - ('361-84-6572', 'Julia Long', '472 Forest Trail Dallas, TX', '(972) 934-8954'), - ('538-33-3604', 'Victor Peterson', '3653 Sage Parkway Dallas, TX', '(214) 965-4668'), - ('294-41-0480', 'Sara Ruiz', '75507 Center Way Richardson, TX', '(214) 988-8363'), - ('286-27-4771', 'Roy Barnes', '4505 Transport Drive Dallas, TX', '(469) 530-2193'), - ('528-82-3250', 'Anthony Carpenter', '61 Karstens Plaza Dallas, TX', '(214) 939-8741'), - ('774-66-2989', 'Jessica Rodriguez', '3969 Springview Court Dallas, TX', '(469) 846-8175'), - ('147-96-7903', 'Craig Carter', '3 Hayes Plaza Dallas, TX', '(214) 974-6461'), - ('126-49-2208', 'Brandon Ellis', '9617 Summit Terrace Dallas, TX', '(469) 767-8210'), - ('509-31-0770', 'Richard Torres', '19723 Cherokee Drive Dallas, TX', '(972) 915-3282'), - ('335-36-3231', 'Janet Mcdonald', '63455 Division Park Plano, TX', '(469) 586-2793'), - ('862-42-5821', 'Raymond Campbell', '495 Mallard Street Dallas, TX', '(214) 881-9579'), - ('430-93-4149', 'Mark Fields', '03 Menomonie Junction Dallas, TX', '(972) 919-4515'), - ('936-04-6604', 'William Cox', '2 Veith Junction Dallas, TX', '(972) 897-9587'), - ('795-03-9664', 'Ruby Hansen', '759 Mandrake Avenue Dallas, TX', '(214) 912-1668'), - ('737-18-1574', 'Phillip Richards', '29931 Northridge Trail Dallas, TX', '(972) 783-3567'), - ('286-37-8304', 'Richard Jordan', '76466 Milwaukee Lane Dallas, TX', '(469) 998-7983'), - ('314-52-2705', 'Marie Perez', '38 Summer Ridge Court Dallas, TX', '(469) 682-4358'), - ('574-79-3097', 'Cheryl Butler', '68 Maple Court Dallas, TX', '(469) 448-2582'), - ('835-29-8866', 'Michelle Carpenter', '99896 New Castle Trail Dallas, TX', '(469) 780-0762'), - ('496-59-9897', 'Adam Cooper', '74125 Laurel Center Dallas, TX', '(214) 812-8288'), - ('368-19-9311', 'Nancy Shaw', '347 Oak Plaza Dallas, TX', '(214) 849-5837'), - ('414-22-2220', 'Ernest Gomez', '34530 Donald Pass Dallas, TX', '(972) 966-3976'), - ('888-89-3056', 'Wanda Wilson', '3 Rockefeller Point Dallas, TX', '(214) 783-6562'), - ('572-70-8409', 'Melissa Bailey', '94627 Hoard Parkway Dallas, TX', '(972) 870-8953'), - ('114-71-5828', 'Clarence Gray', '797 Merrick Way Dallas, TX', '(972) 951-5685'), - ('104-43-3663', 'Janice Hunter', '3 Sheridan Trail Dallas, TX', '(972) 888-0899'), - ('329-05-3664', 'Raymond Murray', '3083 Crescent Oaks Road Dallas, TX', '(972) 900-8986'), - ('447-69-9321', 'Bruce Hansen', '88200 Johnson Alley Dallas, TX', '(214) 892-9528'), - ('937-66-7915', 'Ryan Mccoy', '27278 American Ash Avenue Dallas, TX', '(469) 786-6255'), - ('764-89-6736', 'Jerry Fowler', '0 Lighthouse Bay Circle Dallas, TX', '(214) 653-3127'), - ('134-92-4609', 'Frank Harper', '8 Fairview Drive Dallas, TX', '(972) 810-8573'), - ('571-08-1675', 'George Garza', '0 Granby Lane Dallas, TX', '(469) 758-5662'), - ('914-59-1431', 'Sharon Olson', '7705 Ridge Oak Plaza Richardson, TX', '(972) 982-4528'), - ('310-91-2067', 'Kathryn Reed', '086 Bunker Hill Way Dallas, TX', '(972) 937-2108'), - ('925-52-2771', 'Randy Weaver', '5 Del Mar Junction Richardson, TX', '(214) 853-7737'), - ('193-13-7825', 'Linda Washington', '8122 Sachtjen Circle Richardson, TX', '(972) 914-5391'), - ('799-37-4997', 'Elizabeth Anderson', '80 Dunning Circle Dallas, TX', '(469) 881-4443'), - ('981-69-8236', 'Henry Kim', '9861 Elmside Crossing Dallas, TX', '(214) 912-9599'), - ('124-22-8351', 'Earl Morales', '16 Manley Pass Dallas, TX', '(214) 651-0786'), - ('980-98-1968', 'Howard Ford', '31553 5th Place Richardson, TX', '(972) 940-7458'), - ('486-25-9016', 'Tammy Fox', '29405 Hauk Road Dallas, TX', '(214) 997-3240'), - ('765-53-6457', 'Sarah Hicks', '38 Lighthouse Bay Pass Plano, TX', '(214) 901-9314'), - ('750-87-6481', 'Diana Montgomery', '2 Welch Parkway Dallas, TX', '(214) 603-6856'), - ('796-84-4632', 'Joan Boyd', '393 School Plaza Dallas, TX', '(469) 882-9965'), - ('944-12-9610', 'Barbara Simmons', '678 Barnett Point Dallas, TX', '(469) 415-7518'), - ('604-14-8118', 'Keith Carroll', '46912 Veith Place Dallas, TX', '(214) 821-2150'), - ('554-70-7857', 'Ruby Bryant', '0502 Dorton Place Dallas, TX', '(214) 583-2918'), - ('968-07-8691', 'Andrew Holmes', '87963 Darwin Plaza Dallas, TX', '(469) 993-5278'), - ('848-01-1355', 'Juan King', '3344 Schlimgen Point Dallas, TX', '(972) 823-3180'), - ('522-56-7195', 'Michael Warren', '1 Northwestern Road Dallas, TX', '(469) 912-0181'), - ('263-49-6672', 'Randy Wagner', '28585 Iowa Pass Richardson, TX', '(972) 981-8393'), - ('916-96-2811', 'Jose Kelly', '088 Cambridge Trail Plano, TX', '(972) 832-9963'), - ('304-18-5907', 'Peter Ford', '3 Boyd Point Dallas, TX', '(214) 978-2937'), - ('381-33-3107', 'Peter Edwards', '70349 Hallows Way Richardson, TX', '(214) 991-6626'), - ('211-11-0916', 'Louise Peters', '79475 Morrow Pass Dallas, TX', '(972) 902-4551'), - ('343-23-0976', 'Stephanie Perry', '08750 Forest Dale Road Dallas, TX', '(214) 899-9004'), - ('792-44-4178', 'Lawrence Adams', '38 Forster Terrace Dallas, TX', '(214) 925-8866'), - ('443-86-2495', 'Gregory Hansen', '419 Longview Trail Plano, TX', '(469) 899-8651'), - ('797-38-1593', 'Ralph Medina', '74 High Crossing Lane Plano, TX', '(469) 953-9007'), - ('223-83-8666', 'Joan Cooper', '52 Fremont Road Dallas, TX', '(972) 842-0287'), - ('732-67-6734', 'Karen George', '560 Menomonie Plaza Dallas, TX', '(469) 551-3026'), - ('639-56-1250', 'Theresa Cunningham', '8148 Florence Drive Dallas, TX', '(469) 861-6774'), - ('506-61-7033', 'Dennis Young', '378 Carberry Place Dallas, TX', '(214) 602-2841'), - ('789-55-8630', 'Joseph Castillo', '4 Surrey Park Dallas, TX', '(469) 916-0494'), - ('100-43-9457', 'Eugene Fisher', '977 Gina Junction Dallas, TX', '(972) 926-5775'), - ('622-93-0486', 'Elizabeth Medina', '044 Prentice Center Plano, TX', '(972) 969-7931'), - ('236-05-8310', 'Joyce Arnold', '48306 Moulton Plaza Plano, TX', '(972) 958-8893'), - ('294-25-9318', 'William Ramos', '20 Red Cloud Trail Richardson, TX', '(972) 950-2750'), - ('317-84-2700', 'Billy Reed', '2 Loftsgordon Alley Dallas, TX', '(972) 853-0282'), - ('802-25-7025', 'Scott Carr', '9 Memorial Place Dallas, TX', '(469) 979-5007'), - ('713-06-2568', 'Doris Carpenter', '55093 Bunting Pass Dallas, TX', '(972) 413-6984'), - ('863-24-4380', 'Aaron Kennedy', '51078 Fisk Parkway Dallas, TX', '(214) 900-5041'), - ('957-88-2521', 'Eugene George', '32186 Katie Park Dallas, TX', '(469) 642-7160'), - ('971-59-7462', 'Marilyn Washington', '7639 Northfield Park Dallas, TX', '(214) 531-0051'), - ('778-11-2383', 'Sara Patterson', '938 Vermont Crossing Dallas, TX', '(972) 871-5585'), - ('432-34-5988', 'Samuel Henry', '031 Hintze Terrace Dallas, TX', '(972) 825-3266'), - ('110-87-5003', 'Phillip Kennedy', '41 Leroy Center Dallas, TX', '(469) 995-0612'), - ('862-95-3192', 'Robin Welch', '4 Texas Trail Dallas, TX', '(972) 778-2143'), - ('639-00-1709', 'Rose Garrett', '2384 Carey Road Plano, TX', '(214) 860-5621'), - ('687-26-7934', 'Rebecca Meyer', '38 Nelson Lane Plano, TX', '(972) 936-2303'), - ('648-00-1339', 'Michelle Reid', '7 Sunbrook Circle Dallas, TX', '(469) 941-2469'), - ('362-56-0347', 'Judy Rice', '49031 Saint Paul Avenue Dallas, TX', '(469) 935-1827'), - ('840-08-8767', 'Kevin Carroll', '36 Jana Lane Dallas, TX', '(469) 964-0568'), - ('268-14-2587', 'Kathryn Owens', '664 Clemons Hill Dallas, TX', '(214) 812-2116'), - ('211-96-5010', 'Brian Elliott', '28 Graedel Hill Dallas, TX', '(972) 857-3817'), - ('704-93-5430', 'Keith Alvarez', '73423 Mallard Park Dallas, TX', '(972) 985-3882'), - ('493-28-0872', 'Christopher Hamilton', '42 Johnson Place Plano, TX', '(972) 756-5173'), - ('104-87-2254', 'Mildred Washington', '093 Reindahl Alley Dallas, TX', '(469) 863-5699'), - ('634-96-0779', 'Maria Patterson', '435 Mockingbird Road Dallas, TX', '(214) 689-4556'), - ('973-88-0017', 'Tammy Romero', '77652 Quincy Junction Dallas, TX', '(469) 653-5925'), - ('701-06-3601', 'Shirley Ellis', '74 Boyd Circle Dallas, TX', '(469) 920-2738'), - ('948-86-4146', 'Gerald Carter', '6829 Aberg Park Dallas, TX', '(214) 994-1903'), - ('405-84-3532', 'Sandra Diaz', '73631 Arapahoe Plaza Dallas, TX', '(214) 832-3930'), - ('648-26-1008', 'Joyce Miller', '2 Annamark Center Dallas, TX', '(972) 961-6545'), - ('401-78-7678', 'Edward Freeman', '415 Di Loreto Plaza Plano, TX', '(972) 989-4204'), - ('138-67-0395', 'Willie Griffin', '990 Moland Lane Dallas, TX', '(214) 928-8621'), - ('576-90-5231', 'Eugene Gibson', '11945 Delaware Trail Dallas, TX', '(972) 954-4027'), - ('511-59-7913', 'Beverly Carroll', '7263 Mariners Cove Park Dallas, TX', '(214) 917-7386'), - ('427-26-2369', 'Kevin Weaver', '9746 Springview Lane Dallas, TX', '(469) 942-2408'), - ('981-70-0822', 'Diana Collins', '00 Stoughton Pass Dallas, TX', '(972) 804-5134'), - ('842-92-6012', 'Melissa Cole', '405 Lukken Park Dallas, TX', '(972) 786-8554'), - ('842-48-2817', 'Willie Young', '4 Bowman Lane Dallas, TX', '(214) 928-4186'), - ('420-41-5414', 'Juan Nichols', '8095 Grover Point Dallas, TX', '(469) 804-3343'), - ('571-34-6457', 'Kevin Mason', '132 Huxley Street Dallas, TX', '(469) 973-8133'), - ('977-49-7404', 'Ronald Owens', '160 Forster Court Plano, TX', '(214) 986-1282'), - ('625-10-0221', 'Howard Mason', '725 Shelley Street Dallas, TX', '(972) 884-9005'), - ('344-02-3503', 'Scott Sullivan', '3 Dottie Way Dallas, TX', '(972) 881-9868'), - ('217-52-9370', 'Margaret Payne', '706 Spenser Drive Plano, TX', '(972) 760-0404'), - ('676-28-3465', 'Ashley Dixon', '07278 Arizona Road Dallas, TX', '(972) 818-9660'), - ('927-53-6184', 'Marilyn Vasquez', '85753 Sommers Parkway Plano, TX', '(214) 435-8942'), - ('369-13-2148', 'Amanda Olson', '2 Thompson Hill Dallas, TX', '(972) 979-2331'), - ('275-69-7155', 'Heather Fernandez', '18106 Beilfuss Way Dallas, TX', '(469) 854-7653'), - ('993-11-4983', 'Stephanie Diaz', '52331 Monica Drive Dallas, TX', '(214) 912-8213'), - ('867-83-7085', 'Roy Kelly', '7053 Old Gate Alley Dallas, TX', '(469) 974-8373'), - ('466-06-1410', 'Scott Chavez', '3 Kingsford Avenue Dallas, TX', '(469) 963-3427'), - ('632-92-1297', 'Donna Mitchell', '4741 Kenwood Junction Dallas, TX', '(214) 951-3865'), - ('585-80-2785', 'Louis Harris', '2747 Rieder Plaza Dallas, TX', '(214) 886-3021'), - ('512-23-3537', 'Henry Hansen', '2900 Surrey Street Dallas, TX', '(214) 964-2420'), - ('772-62-3065', 'Kathryn Porter', '53 Dapin Parkway Dallas, TX', '(972) 844-8439'), - ('190-88-7543', 'Anne Johnson', '20069 Melvin Center Dallas, TX', '(214) 975-6054'), - ('329-18-4164', 'Todd Taylor', '97238 Onsgard Trail Dallas, TX', '(214) 937-3241'), - ('654-19-5151', 'Julia Fernandez', '34619 Marcy Crossing Dallas, TX', '(972) 966-9920'), - ('591-02-8727', 'Craig Robinson', '30 Sutteridge Point Dallas, TX', '(469) 919-0979'), - ('299-37-0401', 'Nancy Shaw', '5834 Village Crossing Dallas, TX', '(214) 788-2516'), - ('939-58-3158', 'Lawrence Nichols', '6423 Roth Park Dallas, TX', '(214) 925-2580'), - ('170-66-3784', 'Jimmy Diaz', '0301 Oriole Lane Dallas, TX', '(469) 473-0533'), - ('740-80-4320', 'Bobby Mcdonald', '3 Scoville Drive Dallas, TX', '(972) 527-7603'), - ('953-63-4906', 'Jesse Cunningham', '790 Marquette Hill Dallas, TX', '(214) 936-7626'), - ('200-60-0963', 'Gregory Andrews', '361 Sachs Crossing Dallas, TX', '(214) 973-0715'), - ('499-38-8289', 'Tina Rogers', '79 Forest Dale Road Dallas, TX', '(469) 984-9258'), - ('312-18-8191', 'Henry Allen', '9 Pennsylvania Street Dallas, TX', '(972) 939-2237'), - ('215-99-1270', 'Carolyn Gordon', '6 Fuller Avenue Richardson, TX', '(469) 829-5466'), - ('154-27-1288', 'Louise Hudson', '04798 Loeprich Alley Dallas, TX', '(972) 955-8037'), - ('772-41-5591', 'John Vasquez', '52 Darwin Park Dallas, TX', '(469) 978-1123'), - ('888-06-1132', 'Kathryn Graham', '45 Everett Pass Dallas, TX', '(469) 921-3046'), - ('992-83-5801', 'Patricia Perkins', '0 Heffernan Drive Dallas, TX', '(972) 971-8654'), - ('252-88-4550', 'Henry Arnold', '47 Becker Lane Plano, TX', '(972) 470-2949'), - ('534-51-9042', 'Ruby Bishop', '5 International Point Dallas, TX', '(972) 944-4239'), - ('292-84-4463', 'Phyllis Dunn', '8316 Calypso Court Dallas, TX', '(214) 835-0529'), - ('144-30-3599', 'Louise Wood', '000 Mccormick Plaza Dallas, TX', '(972) 914-5297'), - ('895-44-1229', 'Tammy Shaw', '0 Carey Parkway Richardson, TX', '(214) 905-2378'), - ('955-03-9519', 'Eric Rivera', '466 Tony Circle Dallas, TX', '(972) 932-9658'), - ('743-94-0520', 'Joe Williams', '748 Schlimgen Avenue Dallas, TX', '(972) 852-8033'), - ('140-10-0901', 'Aaron Snyder', '1 American Ash Avenue Dallas, TX', '(214) 936-9743'), - ('210-06-2715', 'Louis Clark', '4284 Norway Maple Lane Dallas, TX', '(972) 872-7570'), - ('357-34-7649', 'Sarah Chavez', '3 Schmedeman Court Dallas, TX', '(972) 524-1820'), - ('427-38-8763', 'Robin Ellis', '67445 Dunning Lane Richardson, TX', '(972) 866-1973'), - ('315-41-8687', 'Jessica Davis', '12957 Independence Drive Plano, TX', '(972) 842-5888'), - ('829-97-1624', 'Lillian Stone', '919 Judy Way Dallas, TX', '(972) 851-2126'), - ('347-88-9624', 'Ruth Stanley', '1 Warrior Pass Dallas, TX', '(972) 911-0228'), - ('840-39-1806', 'Jesse Duncan', '7787 Haas Hill Dallas, TX', '(972) 683-9815'), - ('637-53-4929', 'Lori Hunter', '39 Swallow Place Richardson, TX', '(469) 642-4787'), - ('136-04-3559', 'Tammy Robinson', '0378 Longview Plaza Dallas, TX', '(469) 933-2520'), - ('713-24-6764', 'James Dunn', '2 Luster Hill Dallas, TX', '(214) 849-9192'), - ('414-66-2512', 'Earl White', '3645 Ramsey Place Dallas, TX', '(972) 936-8134'), - ('613-21-6220', 'Jeremy Rogers', '91121 Moulton Plaza Plano, TX', '(469) 842-8404'), - ('733-94-6852', 'Earl Chapman', '45 Moulton Junction Dallas, TX', '(972) 997-7819'), - ('606-73-0914', 'Dorothy Miller', '52 Hazelcrest Crossing Dallas, TX', '(214) 803-3680'), - ('154-97-3290', 'Anna Lopez', '49 3rd Terrace Dallas, TX', '(214) 959-4100'), - ('369-65-4229', 'Gary Fuller', '59 Macpherson Crossing Dallas, TX', '(214) 968-9302'), - ('507-57-2316', 'Angela Nguyen', '45542 Rutledge Avenue Dallas, TX', '(214) 978-0162'), - ('325-17-0156', 'Paula Frazier', '916 Maywood Court Plano, TX', '(214) 934-1206'), - ('866-10-0944', 'Daniel Johnson', '76702 Caliangt Circle Dallas, TX', '(469) 828-8109'), - ('650-99-3347', 'Raymond Burke', '3001 Corscot Drive Dallas, TX', '(469) 749-0551'), - ('417-25-3686', 'Anna Flores', '730 Vera Avenue Dallas, TX', '(214) 820-9633'), - ('128-67-5708', 'Kathleen Reed', '89 Tomscot Street Dallas, TX', '(214) 941-0107'), - ('412-58-0911', 'Linda Garcia', '1 Luster Street Dallas, TX', '(972) 910-1369'), - ('312-56-2889', 'Kevin Turner', '3034 Kipling Drive Dallas, TX', '(214) 835-8339'), - ('122-17-0911', 'Juan Dunn', '18 Oak Drive Dallas, TX', '(214) 857-0040'), - ('548-70-2653', 'Arthur Lane', '79797 Fieldstone Circle Richardson, TX', '(214) 848-0150'), - ('922-65-9466', 'Deborah Medina', '4 Cambridge Park Dallas, TX', '(972) 679-5235'), - ('380-74-6132', 'Lisa Castillo', '856 Mitchell Junction Dallas, TX', '(469) 996-6025'), - ('148-76-3309', 'Louis Rivera', '210 Sunfield Trail Dallas, TX', '(469) 940-0843'), - ('648-41-9002', 'Catherine Hunt', '241 Gulseth Crossing Dallas, TX', '(469) 929-6433'), - ('253-50-1861', 'Bobby Gomez', '53 Kipling Place Richardson, TX', '(469) 747-8105'), - ('237-32-1975', 'Johnny Jenkins', '6757 Buena Vista Park Dallas, TX', '(214) 711-0231'), - ('304-04-2180', 'Richard Sanchez', '6 Bonner Road Dallas, TX', '(214) 789-8437'), - ('416-32-8500', 'Fred Peterson', '723 Emmet Avenue Dallas, TX', '(214) 929-0915'), - ('731-41-2008', 'Gerald Jacobs', '539 Pond Point Richardson, TX', '(972) 929-5037'), - ('680-37-1075', 'Teresa Perry', '67 Porter Center Dallas, TX', '(469) 937-7720'), - ('358-57-1779', 'Joyce Watson', '033 Fieldstone Pass Dallas, TX', '(469) 976-1235'), - ('399-11-8418', 'Antonio Crawford', '94232 Hudson Drive Dallas, TX', '(469) 818-0847'), - ('263-34-5944', 'Shawn Hanson', '88 Prairieview Terrace Dallas, TX', '(469) 712-3956'), - ('871-14-1691', 'Sandra Hayes', '8 Morning Parkway Dallas, TX', '(972) 901-1242'), - ('651-25-8004', 'Jimmy Garrett', '43 Clyde Gallagher Terrace Dallas, TX', '(972) 984-4957'), - ('484-44-5282', 'Antonio Lawrence', '08482 Merry Alley Dallas, TX', '(972) 843-3635'), - ('983-14-0730', 'Marie Medina', '7338 Pierstorff Circle Richardson, TX', '(469) 810-7312'), - ('716-92-1888', 'Juan Allen', '5 Victoria Alley Dallas, TX', '(469) 979-2886'), - ('309-24-3620', 'Gerald Porter', '11934 Upham Point Dallas, TX', '(214) 706-8751'), - ('776-60-4123', 'Todd Brooks', '7838 Moland Plaza Dallas, TX', '(469) 781-0440'), - ('679-76-7522', 'Jean Rice', '48712 Mockingbird Road Dallas, TX', '(469) 935-5450'), - ('729-59-6353', 'Jack Day', '2107 Kipling Plaza Dallas, TX', '(214) 913-6444'), - ('628-48-3788', 'Amy Woods', '5 Shoshone Crossing Dallas, TX', '(469) 773-4866'), - ('785-13-2932', 'Raymond Greene', '55619 Surrey Plaza Dallas, TX', '(469) 983-7473'), - ('101-97-8660', 'Arthur Wright', '158 John Wall Street Dallas, TX', '(214) 941-5089'), - ('946-46-6223', 'Daniel Hunt', '13709 Mariners Cove Center Richardson, TX', '(972) 915-2723'), - ('481-28-6748', 'Julie Hamilton', '6209 Ludington Pass Dallas, TX', '(972) 812-7230'), - ('864-59-5290', 'Diana Garza', '83139 Warrior Parkway Dallas, TX', '(972) 872-4808'), - ('370-11-1197', 'Walter Cruz', '463 Hanover Junction Dallas, TX', '(972) 836-9111'), - ('850-05-9666', 'Mildred Ramirez', '7 Anderson Lane Dallas, TX', '(972) 826-9318'), - ('475-45-2130', 'Jean Gilbert', '769 Colorado Center Dallas, TX', '(469) 850-6077'), - ('704-23-0250', 'Frances Porter', '16 Farwell Park Dallas, TX', '(214) 958-6327'), - ('847-54-7019', 'Jane Carter', '746 East Court Dallas, TX', '(469) 859-2686'), - ('316-40-2743', 'Johnny Perry', '5091 Melrose Court Dallas, TX', '(469) 783-2541'), - ('973-44-7229', 'Donald Powell', '1901 Laurel Pass Dallas, TX', '(972) 917-5123'), - ('597-54-1860', 'Russell Morales', '6 Continental Hill Dallas, TX', '(469) 833-1681'), - ('853-02-8515', 'Earl Smith', '73 Towne Hill Dallas, TX', '(469) 919-5433'), - ('961-10-2631', 'Jane Phillips', '9 Northland Place Dallas, TX', '(469) 981-5694'), - ('340-38-2920', 'Ruby Black', '01580 Main Alley Dallas, TX', '(214) 839-6582'), - ('650-36-9913', 'Teresa Fernandez', '50 Arrowood Circle Richardson, TX', '(972) 918-7531'), - ('940-61-5781', 'Jacqueline Hamilton', '792 Burrows Lane Dallas, TX', '(972) 785-5033'), - ('136-33-6897', 'Anthony Elliott', '82 Harper Lane Dallas, TX', '(972) 942-6006'), - ('780-32-3564', 'Louise Henderson', '58 Southridge Way Dallas, TX', '(469) 897-6813'), - ('174-47-0894', 'Lillian Cruz', '1202 Nevada Crossing Dallas, TX', '(469) 577-0003'), - ('235-78-1401', 'David Davis', '6266 Debs Place Dallas, TX', '(214) 864-7187'), - ('919-55-8047', 'Janice Price', '269 Farragut Trail Dallas, TX', '(214) 941-9869'), - ('687-90-1452', 'Donald Palmer', '12 5th Junction Richardson, TX', '(469) 677-4531'), - ('535-61-9932', 'Donald Washington', '978 Moose Plaza Dallas, TX', '(972) 844-7608'), - ('328-03-3548', 'Jessica Jones', '37 Melrose Court Richardson, TX', '(972) 906-0660'), - ('608-66-0102', 'Amy Coleman', '2562 Pond Junction Dallas, TX', '(214) 954-7729'), - ('894-17-1936', 'Marie Ryan', '4287 Canary Center Dallas, TX', '(469) 924-4203'), - ('882-93-4808', 'Gloria Barnes', '149 Columbus Avenue Dallas, TX', '(214) 797-0275'), - ('328-50-2075', 'Charles Lawrence', '7 Randy Terrace Dallas, TX', '(972) 813-8851'), - ('179-35-6366', 'Patricia Hill', '2506 Ridgeway Drive Richardson, TX', '(469) 932-9594'), - ('223-32-8250', 'Ryan Young', '40252 Lyons Terrace Dallas, TX', '(214) 742-4030'), - ('504-76-4400', 'Willie Woods', '99 Sunbrook Circle Dallas, TX', '(214) 810-2688'), - ('131-82-6807', 'Cynthia Webb', '6016 Leroy Way Dallas, TX', '(214) 975-2196'), - ('470-80-0995', 'Joyce Cox', '5027 Meadow Vale Way Richardson, TX', '(972) 832-4867'), - ('210-87-6619', 'Debra Kim', '303 Bashford Road Plano, TX', '(469) 747-4090'), - ('757-76-0049', 'Louise Harrison', '13 American Ash Place Richardson, TX', '(214) 897-8864'), - ('641-17-6232', 'Douglas Day', '264 Packers Place Dallas, TX', '(469) 868-2443'), - ('690-30-6386', 'Jane Hughes', '05 Tony Junction Dallas, TX', '(972) 963-9605'), - ('405-00-7979', 'Joan Wagner', '76837 Heath Trail Dallas, TX', '(972) 841-3593'), - ('697-50-5730', 'Joyce Gibson', '0605 Old Shore Avenue Dallas, TX', '(469) 840-4916'), - ('659-02-3329', 'Paula Harrison', '7 Swallow Pass Dallas, TX', '(469) 622-5174'), - ('647-36-9732', 'Bobby Dunn', '785 Graedel Place Plano, TX', '(972) 923-3432'), - ('659-27-5045', 'Bonnie Ross', '81741 Hallows Plaza Dallas, TX', '(214) 930-4665'), - ('923-61-2260', 'Dennis Wheeler', '8321 Mendota Crossing Dallas, TX', '(214) 932-7040'), - ('646-30-1413', 'Jason Gutierrez', '7 Pearson Way Dallas, TX', '(972) 990-8290'), - ('968-11-7539', 'Diana Spencer', '467 Menomonie Alley Richardson, TX', '(972) 850-9653'), - ('784-77-6035', 'Jessica Thompson', '73 Mandrake Center Dallas, TX', '(972) 728-3395'), - ('468-32-4617', 'Sean Pierce', '07 Laurel Park Dallas, TX', '(469) 987-3050'), - ('647-49-5762', 'Alan Stewart', '74154 Drewry Street Dallas, TX', '(469) 944-5061'), - ('345-58-9435', 'Janice Robinson', '7791 Maple Hill Dallas, TX', '(972) 855-6553'), - ('504-57-5850', 'Barbara Carroll', '5989 4th Avenue Dallas, TX', '(214) 999-2405'), - ('362-54-6087', 'Lori Mccoy', '71 Evergreen Crossing Dallas, TX', '(972) 975-7324'); +DROP TABLE IF EXISTS BOOK; + +CREATE TABLE BOOK ( + Isbn CHAR(10) PRIMARY KEY, + Title VARCHAR NOT NULL, + Cover_url VARCHAR NOT NULL +); + +DROP TABLE IF EXISTS AUTHORS; + +CREATE TABLE AUTHORS ( + Author_id INTEGER PRIMARY KEY AUTOINCREMENT, + Name VARCHAR NOT NULL +); + +DROP TABLE IF EXISTS BOOK_AUTHORS; + +CREATE TABLE BOOK_AUTHORS ( + Author_id INTEGER NOT NULL, + Isbn CHAR(10) NOT NULL, + PRIMARY KEY (Author_id, Isbn), + FOREIGN KEY (Author_id) REFERENCES AUTHORS (Author_id), + FOREIGN KEY (Isbn) REFERENCES BOOK (Isbn) +); + +DROP TABLE IF EXISTS BORROWER; + +CREATE TABLE BORROWER ( + Card_id INTEGER PRIMARY KEY AUTOINCREMENT, + Ssn CHAR(11) NOT NULL UNIQUE, + Bname VARCHAR NOT NULL, + Address VARCHAR NOT NULL, + Phone CHAR(14) +); + +INSERT INTO BOOK (Isbn, Title, Cover_url) + VALUES + ('0195153448', 'Classical Mythology', 'https://images.isbndb.com/covers/34/46/9780195153446.jpg'), + ('0002005018', 'Clara Callan: A Novel', 'https://images.isbndb.com/covers/50/12/9780002005012.jpg'), + ('0060973129', 'Decision In Normandy', 'https://images.isbndb.com/covers/31/24/9780060973124.jpg'), + ('0374157065', 'Flu: The Story Of The Great Influenza Pandemic Of 1918 And The Search For The Virus That Caused It', 'https://images.isbndb.com/covers/70/67/9780374157067.jpg'), + ('0393045218', 'The Mummies Of Urumchi', 'https://images.isbndb.com/covers/52/15/9780393045215.jpg'), + ('0399135782', 'The Kitchen God''s Wife', 'https://images.isbndb.com/covers/57/81/9780399135781.jpg'), + ('0425176428', 'What If?: The World''s Foremost Military Historians Imagine What Might Have Been', 'https://images.isbndb.com/covers/64/29/9780425176429.jpg'), + ('0671870432', 'Pleading Guilty', 'https://images.isbndb.com/covers/04/30/9780671870430.jpg'), + ('0679425608', 'Under The Black Flag: The Romance And The Reality Of Life Among The Pirates', 'https://images.isbndb.com/covers/56/01/9780679425601.jpg'), + ('074322678X', 'Where You''ll Find Me: And Other Stories', 'https://images.isbndb.com/covers/67/83/9780743226783.jpg'), + ('0771074670', 'Nights Below Station Street', 'https://images.isbndb.com/covers/46/77/9780771074677.jpg'), + ('080652121X', 'Hitler''s Secret Bankers: The Myth Of Swiss Neutrality During The Holocau: The Myth Of Swiss Neutrality During The Holocaust', 'https://images.isbndb.com/covers/12/13/9780806521213.jpg'), + ('0887841740', 'The Middle Stories', 'https://images.isbndb.com/covers/17/43/9780887841743.jpg'), + ('1552041778', 'Jane Doe', 'https://images.isbndb.com/covers/17/72/9781552041772.jpg'), + ('1558746218', 'A Second Chicken Soup For The Woman''s Soul (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/62/13/9781558746213.jpg'), + ('1567407781', 'The Witchfinder (Amos Walker Series)', 'https://images.isbndb.com/covers/77/85/9781567407785.jpg'), + ('1575663937', 'More Cunning Than Man: A Social History Of Rats And Man', 'https://images.isbndb.com/covers/39/37/9781575663937.jpg'), + ('1881320189', 'Goodbye To The Buttermilk Sky', 'https://images.isbndb.com/covers/01/80/9781881320180.jpg'), + ('0440234743', 'The Testament', 'https://images.isbndb.com/covers/47/46/9780440234746.jpg'), + ('0452264464', 'Beloved (Plume Contemporary Fiction)', 'https://images.isbndb.com/covers/44/65/9780452264465.jpg'), + ('0609804618', 'Our Dumb Century: The Onion Presents 100 Years Of Headlines From America''s Finest News Source', 'https://images.isbndb.com/covers/46/12/9780609804612.jpg'), + ('1841721522', 'New Vegetarian: Bold And Beautiful Recipes For Every Occasion', 'https://images.isbndb.com/covers/15/21/9781841721521.jpg'), + ('1879384493', 'If I''d Known Then What I Know Now: Why Not Learn From The Mistakes Of Others? You Can''t Afford To Make Them All Yourself!', 'https://images.isbndb.com/covers/44/91/9781879384491.jpg'), + ('0061076031', 'Mary-Kate & Ashley Switching Goals (Mary-Kate & Ashley Starring In)', 'https://images.isbndb.com/covers/60/39/9780061076039.jpg'), + ('0439095026', 'Tell Me This Isn''t Happening', 'https://images.isbndb.com/covers/50/20/9780439095020.jpg'), + ('0689821166', 'Flood : Mississippi 1927', 'https://images.isbndb.com/covers/11/65/9780689821165.jpg'), + ('0971880107', 'Wild Animus: A Novel', 'https://images.isbndb.com/covers/01/08/9780971880108.jpg'), + ('0345402871', 'Airframe', 'https://images.isbndb.com/covers/28/75/9780345402875.jpg'), + ('0345417623', 'Timeline', 'https://images.isbndb.com/covers/76/26/9780345417626.jpg'), + ('0684823802', 'Out Of The Silent Planet', 'https://images.isbndb.com/covers/38/05/9780684823805.jpg'), + ('0375759778', 'Prague: A Novel', 'https://images.isbndb.com/covers/97/72/9780375759772.jpg'), + ('0425163091', 'Chocolate Jesus', 'https://images.isbndb.com/covers/30/92/9780425163092.jpg'), + ('3404921038', 'Wie Barney Es Sieht. Roman', 'https://images.isbndb.com/covers/10/34/9783404921034.jpg'), + ('3442353866', 'Der Fluch Der Kaiserin', 'https://images.isbndb.com/covers/38/66/9783442353866.jpg'), + ('3442410665', 'Die Sturmzeit-Trilogie: Sturmzeit: Roman: BD 1', 'https://images.isbndb.com/covers/06/68/9783442410668.jpg'), + ('3442446937', 'Tage Der Unschuld', 'https://images.isbndb.com/covers/69/33/9783442446933.jpg'), + ('0375406328', 'Lying Awake', 'https://images.isbndb.com/covers/63/24/9780375406324.jpg'), + ('0446310786', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/07/89/9780446310789.jpg'), + ('0449005615', 'Seabiscuit: An American Legend', 'https://images.isbndb.com/covers/56/13/9780449005613.jpg'), + ('0060168013', 'Pigs In Heaven', 'https://images.isbndb.com/covers/80/18/9780060168018.jpg'), + ('038078243X', 'Miss Zukas And The Raven''s Dance (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/24/37/9780380782437.jpg'), + ('055321215X', 'Pride And Prejudice', 'https://images.isbndb.com/covers/21/50/9780553212150.jpg'), + ('067176537X', 'The Therapeutic Touch: How To Use Your Hands To Help Or To Heal', 'https://images.isbndb.com/covers/53/78/9780671765378.jpg'), + ('0061099686', 'Downtown', 'https://images.isbndb.com/covers/96/87/9780061099687.jpg'), + ('0553582909', 'Icebound', 'https://images.isbndb.com/covers/29/01/9780553582901.jpg'), + ('0671888587', 'I''ll Be Seeing You', 'https://images.isbndb.com/covers/85/89/9780671888589.jpg'), + ('0553582747', 'From The Corner Of His Eye', 'https://images.isbndb.com/covers/27/41/9780553582741.jpg'), + ('0425182908', 'Isle Of Dogs (Andy Brazil)', 'https://images.isbndb.com/covers/29/01/9780425182901.jpg'), + ('042518630X', 'Purity In Death', 'https://images.isbndb.com/covers/63/05/9780425186305.jpg'), + ('0440223571', 'This Year It Will Be Different And Other Stories - A Christmas Treasury', 'https://images.isbndb.com/covers/35/73/9780440223573.jpg'), + ('0812523873', 'Proxies', 'https://images.isbndb.com/covers/38/74/9780812523874.jpg'), + ('0842342702', 'Left Behind: A Novel Of The Earth''s Last Days (Left Behind #1)', 'https://images.isbndb.com/covers/27/04/9780842342704.jpg'), + ('0440225701', 'The Street Lawyer', 'https://images.isbndb.com/covers/57/06/9780440225706.jpg'), + ('0060914068', 'Love, Medicine And Miracles', 'https://images.isbndb.com/covers/40/66/9780060914066.jpg'), + ('0156047624', 'All The King''s Men', 'https://images.isbndb.com/covers/76/23/9780156047623.jpg'), + ('0245542957', 'Pacific Northwest', 'https://images.isbndb.com/covers/29/54/9780245542954.jpg'), + ('0380715899', 'Soldier Of The Great War', 'https://images.isbndb.com/covers/58/93/9780380715893.jpg'), + ('0553280333', 'Getting Well Again: The Bestselling Classic About The Simontons'' Revolutionary Lifesaving Self- Awareness Techniques', 'https://images.isbndb.com/covers/03/33/9780553280333.jpg'), + ('0961769947', 'Northwest Wines And Wineries', 'https://images.isbndb.com/covers/99/49/9780961769949.jpg'), + ('0964778319', 'An Atmosphere Of Eternity: Stories Of India', 'https://images.isbndb.com/covers/83/13/9780964778313.jpg'), + ('0671623249', 'Lonesome Dove', 'https://images.isbndb.com/covers/32/41/9780671623241.jpg'), + ('0679810307', 'Shabanu: Daughter Of The Wind (Border Trilogy)', 'https://images.isbndb.com/covers/03/08/9780679810308.jpg'), + ('0679865691', 'Haveli', 'https://images.isbndb.com/covers/56/98/9780679865698.jpg'), + ('2070423204', 'Lieux Dits', 'https://images.isbndb.com/covers/32/00/9782070423200.jpg'), + ('0345260317', 'The Dragons Of Eden: Speculations On The Evolution Of Human Intelligence', 'https://images.isbndb.com/covers/03/14/9780345260314.jpg'), + ('0394743741', 'The Yawning Heights', 'https://images.isbndb.com/covers/37/45/9780394743745.jpg'), + ('042511774X', 'Breathing Lessons', 'https://images.isbndb.com/covers/77/43/9780425117743.jpg'), + ('0804106304', 'The Joy Luck Club', 'https://images.isbndb.com/covers/63/06/9780804106306.jpg'), + ('1853262404', 'Heart Of Darkness & Other Stories (Wordsworth Collection)', 'https://images.isbndb.com/covers/24/01/9781853262401.jpg'), + ('0312970242', 'Deepak Chopra''s The Angel Is Near', 'https://images.isbndb.com/covers/02/46/9780312970246.jpg'), + ('1853260053', 'Tess Of The D''Urbervilles (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/56/9781853260056.jpg'), + ('1414035004', 'The Adventures Of Drew And Ellie: The Magical Dress', 'https://images.isbndb.com/covers/50/00/9781414035000.jpg'), + ('0060938412', 'The Accidental Virgin', 'https://images.isbndb.com/covers/84/13/9780060938413.jpg'), + ('0140067477', 'The Tao Of Pooh', 'https://images.isbndb.com/covers/74/77/9780140067477.jpg'), + ('0345465083', 'Seabiscuit: An American Legend', 'https://images.isbndb.com/covers/50/85/9780345465085.jpg'), + ('0451625889', 'The Prince (Mentor Series)', 'https://images.isbndb.com/covers/58/85/9780451625885.jpg'), + ('1558531025', 'Life''s Little Instruction Book: 511 Suggestions, Observations, And Reminders On How To Live A Happy And Rewarding Life', 'https://images.isbndb.com/covers/10/24/9781558531024.jpg'), + ('0441783589', 'Starship Troopers', 'https://images.isbndb.com/covers/35/88/9780441783588.jpg'), + ('0394895894', 'The Ruby In The Smoke (Sally Lockhart Trilogy, Book 1)', 'https://images.isbndb.com/covers/58/95/9780394895895.jpg'), + ('1569871213', 'Black Beauty (Illustrated Classics)', 'https://images.isbndb.com/covers/12/18/9781569871218.jpg'), + ('0375410538', 'Anil''s Ghost', 'https://images.isbndb.com/covers/05/36/9780375410536.jpg'), + ('0966986105', 'Prescription For Terror', 'https://images.isbndb.com/covers/61/05/9780966986105.jpg'), + ('087113375X', 'Modern Manners: An Etiquette Book For Rude People', 'https://images.isbndb.com/covers/37/55/9780871133755.jpg'), + ('0340767936', 'Turning Thirty', 'https://images.isbndb.com/covers/79/31/9780340767931.jpg'), + ('0743403843', 'Decipher', 'https://images.isbndb.com/covers/38/49/9780743403849.jpg'), + ('0060930365', 'My First Cousin Once Removed: Money, Madness, And The Family Of Robert Lowell', 'https://images.isbndb.com/covers/03/63/9780060930363.jpg'), + ('0060177586', 'Standing Firm: Dan Quayle', 'https://images.isbndb.com/covers/75/84/9780060177584.jpg'), + ('0071416331', 'Team Bush : Leadership Lessons From The Bush White House', 'https://images.isbndb.com/covers/63/37/9780071416337.jpg'), + ('0375509038', 'The Right Man: The Surprise Presidency Of George W. Bush, An Inside Account', 'https://images.isbndb.com/covers/90/32/9780375509032.jpg'), + ('0553062042', 'The Daybreakers (The Louis L''Amour Collection)', 'https://images.isbndb.com/covers/20/45/9780553062045.jpg'), + ('0316769487', 'The Catcher In The Rye', 'https://images.isbndb.com/covers/94/88/9780316769488.jpg'), + ('0679429220', 'Midnight In The Garden Of Good And Evil', 'https://images.isbndb.com/covers/92/27/9780679429227.jpg'), + ('0671867156', 'Pretend You Don''t See Her', 'https://images.isbndb.com/covers/71/57/9780671867157.jpg'), + ('0312252617', 'Fast Women', 'https://images.isbndb.com/covers/26/18/9780312252618.jpg'), + ('0312261594', 'Female Intelligence', 'https://images.isbndb.com/covers/15/97/9780312261597.jpg'), + ('0316748641', 'Pasquale''s Nose: Idle Days In An Italian Town', 'https://images.isbndb.com/covers/86/43/9780316748643.jpg'), + ('0316973742', 'The Gospel Of Judas: A Novel', 'https://images.isbndb.com/covers/37/48/9780316973748.jpg'), + ('0385235941', 'Prize Stories 1987: The O. Henry Awards', 'https://images.isbndb.com/covers/59/45/9780385235945.jpg'), + ('0446677450', 'Rich Dad, Poor Dad: What The Rich Teach Their Kids About Money--That The Poor And Middle Class Do Not!', 'https://images.isbndb.com/covers/74/55/9780446677455.jpg'), + ('0451166892', 'The Pillars Of The Earth', 'https://images.isbndb.com/covers/68/90/9780451166890.jpg'), + ('0553347594', 'McDonald''s: Behind The Arches', 'https://images.isbndb.com/covers/75/93/9780553347593.jpg'), + ('0671621009', 'Creating Wealth: Retire In Ten Years Using Allen''s Seven Principles Of Wealth!', 'https://images.isbndb.com/covers/10/01/9780671621001.jpg'), + ('067976397X', 'Corelli''s Mandolin: A Novel', 'https://images.isbndb.com/covers/39/70/9780679763970.jpg'), + ('0684822733', 'Love, Miracles, And Animal Healing: A Heartwarming Look At The Spiritual Bond Between Animals And Humans', 'https://images.isbndb.com/covers/27/30/9780684822730.jpg'), + ('0786868716', 'The Five People You Meet In Heaven', 'https://images.isbndb.com/covers/87/11/9780786868711.jpg'), + ('0671864769', 'Relics (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/47/67/9780671864767.jpg'), + ('0671521519', 'Bless The Beasts And Children', 'https://images.isbndb.com/covers/15/16/9780671521516.jpg'), + ('0440222303', 'The Touch Of Your Shadow, The Whisper Of Your Name (Babylon 5, Book 5)', 'https://images.isbndb.com/covers/23/09/9780440222309.jpg'), + ('0312953453', 'Blood Oath', 'https://images.isbndb.com/covers/34/54/9780312953454.jpg'), + ('0446608653', 'The Alibi', 'https://images.isbndb.com/covers/86/57/9780446608657.jpg'), + ('0446612545', 'The Beach House', 'https://images.isbndb.com/covers/25/48/9780446612548.jpg'), + ('0446612618', 'A Kiss Remembered', 'https://images.isbndb.com/covers/26/16/9780446612616.jpg'), + ('0451208080', 'The Short Forever (Stone Barrington)', 'https://images.isbndb.com/covers/80/88/9780451208088.jpg'), + ('0553584383', 'Dead Aim', 'https://images.isbndb.com/covers/43/87/9780553584387.jpg'), + ('0671027360', 'Angels & Demons', 'https://images.isbndb.com/covers/73/60/9780671027360.jpg'), + ('0812575954', 'The Deal', 'https://images.isbndb.com/covers/59/58/9780812575958.jpg'), + ('0316735736', 'All He Ever Wanted: A Novel', 'https://images.isbndb.com/covers/57/35/9780316735735.jpg'), + ('0743439740', 'Every Breath You Take : A True Story Of Obsession, Revenge, And Murder', 'https://images.isbndb.com/covers/97/49/9780743439749.jpg'), + ('0345372700', 'If I Ever Get Back To Georgia, I''m Gonna Nail My Feet To The Ground', 'https://images.isbndb.com/covers/27/03/9780345372703.jpg'), + ('0380619458', 'The Mosquito Coast', 'https://images.isbndb.com/covers/94/50/9780380619450.jpg'), + ('0446325805', 'If Love Were Oil, I''d Be About A Quart Low', 'https://images.isbndb.com/covers/58/06/9780446325806.jpg'), + ('0451406923', 'Good-Bye, My Little Ones: The True Story Of A Murderous Mother And Five Innocent Victims', 'https://images.isbndb.com/covers/69/27/9780451406927.jpg'), + ('0671042858', 'The Girl Who Loved Tom Gordon', 'https://images.isbndb.com/covers/28/51/9780671042851.jpg'), + ('0743249992', 'Bringing Down The House: The Inside Story Of Six M.I.T. Students Who Took Vegas For Millions', 'https://images.isbndb.com/covers/99/97/9780743249997.jpg'), + ('0840734530', 'The Oneprince (The Redaemian Chronicles, Book 1)', 'https://images.isbndb.com/covers/45/32/9780840734532.jpg'), + ('0425184226', 'The Sum Of All Fears', 'https://images.isbndb.com/covers/42/26/9780425184226.jpg'), + ('0375500766', 'Care Packages: Letters To Christopher Reeve From Strangers And Other Friends', 'https://images.isbndb.com/covers/07/63/9780375500763.jpg'), + ('9724119378', 'O Deus Das Pequenas Coisas (Spanish Edition)', 'https://images.isbndb.com/covers/93/73/9789724119373.jpg'), + ('0451205197', 'Lady In Green And Minor Indiscretions (Signet Regency Romance)', 'https://images.isbndb.com/covers/51/93/9780451205193.jpg'), + ('0060929790', 'One Hundred Years Of Solitude', 'https://images.isbndb.com/covers/97/94/9780060929794.jpg'), + ('0060976845', 'Little Altars Everywhere', 'https://images.isbndb.com/covers/68/42/9780060976842.jpg'), + ('0061099325', 'COYOTE WAITS MM (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/93/28/9780061099328.jpg'), + ('0671004573', 'Before I Say Good-Bye', 'https://images.isbndb.com/covers/45/76/9780671004576.jpg'), + ('0446601640', 'Slow Waltz In Cedar Bend', 'https://images.isbndb.com/covers/16/41/9780446601641.jpg'), + ('0330484516', 'Twenty Minute Retreats (A Pan Self-Discovery Title)', 'https://images.isbndb.com/covers/45/10/9780330484510.jpg'), + ('038572179X', 'Atonement: A Novel', 'https://images.isbndb.com/covers/17/90/9780385721790.jpg'), + ('0393020371', 'Next: The Future Just Happened', 'https://images.isbndb.com/covers/03/73/9780393020373.jpg'), + ('1900850303', 'Angelic Darkness', 'https://images.isbndb.com/covers/03/08/9781900850308.jpg'), + ('1903019699', 'The Soulbane Stratagem: Diabolical Subterfuge Which Threatens To Destroy Us...', 'https://images.isbndb.com/covers/96/96/9781903019696.jpg'), + ('0345425294', 'Gangster', 'https://images.isbndb.com/covers/52/94/9780345425294.jpg'), + ('0451410319', 'Hush', 'https://images.isbndb.com/covers/03/13/9780451410313.jpg'), + ('0553583468', 'Whisper Of Evil (Evil Trilogy)', 'https://images.isbndb.com/covers/34/65/9780553583465.jpg'), + ('0380778556', 'Rebecca', 'https://images.isbndb.com/covers/85/53/9780380778553.jpg'), + ('0451525221', 'The Scarlet Letter (Signet Classics)', 'https://images.isbndb.com/covers/52/22/9780451525222.jpg'), + ('0002740230', 'Keep It Simple: And Get More Out Of Life', 'https://images.isbndb.com/covers/02/34/9780002740234.jpg'), + ('0385336772', 'Diary Of A Mad Mom-to-Be', 'https://images.isbndb.com/covers/67/72/9780385336772.jpg'), + ('0440949424', 'Locked In Time', 'https://images.isbndb.com/covers/94/28/9780440949428.jpg'), + ('0505524996', 'Contact', 'https://images.isbndb.com/covers/49/97/9780505524997.jpg'), + ('0140252800', 'Brimstone Wedding', 'https://images.isbndb.com/covers/28/04/9780140252804.jpg'), + ('0451452755', 'The Catswold Portal', 'https://images.isbndb.com/covers/27/57/9780451452757.jpg'), + ('0812575482', 'Through Wolf''s Eyes (Wolf, Book 1)', 'https://images.isbndb.com/covers/54/84/9780812575484.jpg'), + ('044651747X', 'Puerto Vallarta Squeeze', 'https://images.isbndb.com/covers/74/78/9780446517478.jpg'), + ('0060801263', 'A Tree Grows In Brooklyn', 'https://images.isbndb.com/covers/12/67/9780060801267.jpg'), + ('0061030147', 'Cybill Disobedience', 'https://images.isbndb.com/covers/01/47/9780061030147.jpg'), + ('0140250964', 'Snow Angels: A Novel', 'https://images.isbndb.com/covers/09/61/9780140250961.jpg'), + ('0446527165', 'Wish You Well', 'https://images.isbndb.com/covers/71/63/9780446527163.jpg'), + ('0671461494', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/14/92/9780671461492.jpg'), + ('0385337639', 'Crow Lake (Today Show Book Club #7)', 'https://images.isbndb.com/covers/76/32/9780385337632.jpg'), + ('039575514X', 'My Antonia', 'https://images.isbndb.com/covers/51/43/9780395755143.jpg'), + ('0451206673', 'Pen Pals', 'https://images.isbndb.com/covers/66/71/9780451206671.jpg'), + ('0330332775', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/27/74/9780330332774.jpg'), + ('0486284735', 'Pride And Prejudice (Dover Thrift Editions)', 'https://images.isbndb.com/covers/47/36/9780486284736.jpg'), + ('0671021745', 'Eye On Crime: Hardy Boys #153', 'https://images.isbndb.com/covers/17/40/9780671021740.jpg'), + ('0671047612', 'Skin And Bones', 'https://images.isbndb.com/covers/76/10/9780671047610.jpg'), + ('0671504282', 'LAW OF THE JUNGLE (HARDY BOYS CASE FILE 105) (Hardy Boys, The)', 'https://images.isbndb.com/covers/42/81/9780671504281.jpg'), + ('0399138684', 'The Cat Who Came To Breakfast', 'https://images.isbndb.com/covers/86/83/9780399138683.jpg'), + ('0785263292', 'If Singleness Is A Gift, What''s The Return Policy?', 'https://images.isbndb.com/covers/32/96/9780785263296.jpg'), + ('0830714014', 'Always Daddy''s Girl: Understanding Your Father''s Impact On Who You Are', 'https://images.isbndb.com/covers/40/18/9780830714018.jpg'), + ('0345354931', 'Night Mare (The Magic Of Xanth, No. 6)', 'https://images.isbndb.com/covers/49/38/9780345354938.jpg'), + ('0553278223', 'The Martian Chronicles (The Grand Master Editions)', 'https://images.isbndb.com/covers/82/24/9780553278224.jpg'), + ('3150000335', 'Kabale Und Liebe', 'https://images.isbndb.com/covers/03/35/9783150000335.jpg'), + ('3257203659', 'Der Illustrierte Mann', 'https://images.isbndb.com/covers/36/53/9783257203653.jpg'), + ('3257207522', 'Der König In Gelb: Stories', 'https://images.isbndb.com/covers/75/21/9783257207521.jpg'), + ('3257208626', 'Fahrenheit 451', 'https://images.isbndb.com/covers/86/27/9783257208627.jpg'), + ('3257208634', 'Die Mars-Chroniken: Roman In Erzählungen', 'https://images.isbndb.com/covers/86/34/9783257208634.jpg'), + ('3257208669', 'Das Böse Kommt Auf Leisen Sohlen', 'https://images.isbndb.com/covers/86/65/9783257208665.jpg'), + ('3257210450', 'Löwenzahnwein', 'https://images.isbndb.com/covers/04/53/9783257210453.jpg'), + ('3257212054', 'Das Kind Von Morgen. Erzählungen.', 'https://images.isbndb.com/covers/20/51/9783257212051.jpg'), + ('3257212429', 'Die Mechanismen Der Freude. Erzählungen.', 'https://images.isbndb.com/covers/24/26/9783257212426.jpg'), + ('3257214154', 'Familientreffen - Erzählungen', 'https://images.isbndb.com/covers/41/54/9783257214154.jpg'), + ('3257216416', 'Der Tod Kommt Schnell In Mexico. Erzählungen.', 'https://images.isbndb.com/covers/64/17/9783257216417.jpg'), + ('3257233051', 'Veronika Beschließt Zu Sterben', 'https://images.isbndb.com/covers/30/56/9783257233056.jpg'), + ('342311360X', 'Die Liebe In Den Zeiten Der Cholera. Roman.', 'https://images.isbndb.com/covers/36/01/9783423113601.jpg'), + ('3423116714', 'Die Klone Der Joanna May. Roman.', 'https://images.isbndb.com/covers/67/18/9783423116718.jpg'), + ('3423241489', 'Ist Mein Hintern Wirklich So Dick?', 'https://images.isbndb.com/covers/14/89/9783423241489.jpg'), + ('3426605686', 'Haifischfrauen', 'https://images.isbndb.com/covers/56/84/9783426605684.jpg'), + ('3453212150', 'Die Cappuccino Jahre', 'https://images.isbndb.com/covers/21/52/9783453212152.jpg'), + ('3462021095', 'Schwarzer Tee Mit Drei Stück Zucker', 'https://images.isbndb.com/covers/10/97/9783462021097.jpg'), + ('3492045642', 'Querschüsse: Downsize This!', 'https://images.isbndb.com/covers/56/43/9783492045643.jpg'), + ('3498020862', 'Die Korrekturen', 'https://images.isbndb.com/covers/08/66/9783498020866.jpg'), + ('3499110695', 'Neun Erzählungen', 'https://images.isbndb.com/covers/06/96/9783499110696.jpg'), + ('3499151502', 'Hebt Den Dachbalken Hoch, Zimmerleute Und Seymour Wird Vorgestellt', 'https://images.isbndb.com/covers/15/07/9783499151507.jpg'), + ('3518111000', 'Ulysses', 'https://images.isbndb.com/covers/10/00/9783518111000.jpg'), + ('3548254268', 'Eine Ganz Normale Affäre', 'https://images.isbndb.com/covers/42/65/9783548254265.jpg'), + ('3570300099', 'Das Intimleben Des Adrian Mole, 13 3/4 Jahre', 'https://images.isbndb.com/covers/00/91/9783570300091.jpg'), + ('3596292646', 'Das Buch Der Lächerlichen Liebe', 'https://images.isbndb.com/covers/26/46/9783596292646.jpg'), + ('0060977493', 'The God Of Small Things', 'https://images.isbndb.com/covers/74/98/9780060977498.jpg'), + ('0312872682', 'The James Dean Affair: A Neil Gulliver & Stevie Marriner Novel', 'https://images.isbndb.com/covers/26/87/9780312872687.jpg'), + ('0316602906', 'The Big Bad Wolf', 'https://images.isbndb.com/covers/29/07/9780316602907.jpg'), + ('0316693006', 'Four Blind Mice (Alex Cross)', 'https://images.isbndb.com/covers/30/04/9780316693004.jpg'), + ('0345311396', 'Private Screening', 'https://images.isbndb.com/covers/13/99/9780345311399.jpg'), + ('0345378490', 'Congo', 'https://images.isbndb.com/covers/84/91/9780345378491.jpg'), + ('0345404793', 'Protect And Defend', 'https://images.isbndb.com/covers/47/94/9780345404794.jpg'), + ('0345433173', 'The Tall Pine Polka', 'https://images.isbndb.com/covers/31/76/9780345433176.jpg'), + ('0375400117', 'Memoirs Of A Geisha', 'https://images.isbndb.com/covers/01/17/9780375400117.jpg'), + ('0375705856', 'Plainsong', 'https://images.isbndb.com/covers/58/54/9780375705854.jpg'), + ('0380717018', 'Body Of Evidence', 'https://images.isbndb.com/covers/70/19/9780380717019.jpg'), + ('0380718332', 'All That Remains (Patricia Cornwell)', 'https://images.isbndb.com/covers/83/37/9780380718337.jpg'), + ('0380754509', 'The Case Of The Lost Look-Alike (An Avon Camelot Book)', 'https://images.isbndb.com/covers/45/02/9780380754502.jpg'), + ('038076654X', 'Petals On The River', 'https://images.isbndb.com/covers/65/43/9780380766543.jpg'), + ('0380807866', 'The Elusive Flame', 'https://images.isbndb.com/covers/78/64/9780380807864.jpg'), + ('0385316895', 'Legacy Of Silence', 'https://images.isbndb.com/covers/68/97/9780385316897.jpg'), + ('0385497466', 'The Brethren', 'https://images.isbndb.com/covers/74/66/9780385497466.jpg'), + ('0385508042', 'The King Of Torts', 'https://images.isbndb.com/covers/80/49/9780385508049.jpg'), + ('0385509456', 'The Curious Incident Of The Dog In The Night-Time: A Novel', 'https://images.isbndb.com/covers/94/59/9780385509459.jpg'), + ('0385511612', 'Bleachers', 'https://images.isbndb.com/covers/16/12/9780385511612.jpg'), + ('0385730586', 'Sisterhood Of The Traveling Pants (Book 1)', 'https://images.isbndb.com/covers/05/87/9780385730587.jpg'), + ('0425164403', 'Only Love (Magical Love)', 'https://images.isbndb.com/covers/44/02/9780425164402.jpg'), + ('0440234964', 'All Or Nothing', 'https://images.isbndb.com/covers/49/68/9780440234968.jpg'), + ('0446605484', 'Roses Are Red (Alex Cross)', 'https://images.isbndb.com/covers/54/89/9780446605489.jpg'), + ('0446610399', 'The Rescue', 'https://images.isbndb.com/covers/03/91/9780446610391.jpg'), + ('0449006522', 'The Manhattan Hunt Club', 'https://images.isbndb.com/covers/65/28/9780449006528.jpg'), + ('0449911004', 'Patty Jane''s House Of Curl (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/10/06/9780449911006.jpg'), + ('0451162072', 'Pet Sematary (Signet)', 'https://images.isbndb.com/covers/20/76/9780451162076.jpg'), + ('0451186648', 'Silent Snow', 'https://images.isbndb.com/covers/66/45/9780451186645.jpg'), + ('0452282152', 'Girl With A Pearl Earring', 'https://images.isbndb.com/covers/21/55/9780452282155.jpg'), + ('051513290X', 'Summer Of Storms', 'https://images.isbndb.com/covers/29/08/9780515132908.jpg'), + ('0553580388', 'The Patient', 'https://images.isbndb.com/covers/03/89/9780553580389.jpg'), + ('0590598848', 'Demona''s Revenge (Gargoyles, No. 2)', 'https://images.isbndb.com/covers/88/42/9780590598842.jpg'), + ('0590629719', 'Clifford''s Sports Day', 'https://images.isbndb.com/covers/97/13/9780590629713.jpg'), + ('0671023616', 'Postmortem (Kay Scarpetta Mysteries)', 'https://images.isbndb.com/covers/36/14/9780671023614.jpg'), + ('0671027387', 'Deception Point', 'https://images.isbndb.com/covers/73/84/9780671027384.jpg'), + ('0684848783', '''Tis: A Memoir', 'https://images.isbndb.com/covers/87/85/9780684848785.jpg'), + ('0743486226', 'Angels & Demons', 'https://images.isbndb.com/covers/62/24/9780743486224.jpg'), + ('0786863986', 'A Monk Swimming', 'https://images.isbndb.com/covers/39/83/9780786863983.jpg'), + ('0803251718', 'Crazy Horse: The Strange Man Of The Oglalas: A Biography.', 'https://images.isbndb.com/covers/17/17/9780803251717.jpg'), + ('0804117934', 'The Silent Cry (William Monk Novels)', 'https://images.isbndb.com/covers/79/37/9780804117937.jpg'), + ('140003180X', 'The Kalahari Typing School For Men (No. 1 Ladies'' Detective Agency, Book 4)', 'https://images.isbndb.com/covers/18/01/9781400031801.jpg'), + ('155874262X', 'Chicken Soup For The Soul: 101 Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/26/28/9781558742628.jpg'), + ('0060987103', 'Wicked: The Life And Times Of The Wicked Witch Of The West', 'https://images.isbndb.com/covers/71/07/9780060987107.jpg'), + ('0151008116', 'Life Of Pi', 'https://images.isbndb.com/covers/81/17/9780151008117.jpg'), + ('0375704965', 'A Judgement In Stone', 'https://images.isbndb.com/covers/49/63/9780375704963.jpg'), + ('0525947647', 'Lies (And The Lying Liars Who Tell Them): A Fair And Balanced Look At The Right', 'https://images.isbndb.com/covers/76/46/9780525947646.jpg'), + ('0804111359', 'Secret History', 'https://images.isbndb.com/covers/13/55/9780804111355.jpg'), + ('1558744150', 'Chicken Soup For The Woman''s Soul: 101 Stories To Open The Hearts And Rekindle The Spirits Of Women (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/41/58/9781558744158.jpg'), + ('0435272683', 'Great Expectations (Heinemann Guided Readers)', 'https://images.isbndb.com/covers/26/85/9780435272685.jpg'), + ('0316782505', 'The Weight Of Water', 'https://images.isbndb.com/covers/25/00/9780316782500.jpg'), + ('006102063X', 'Moving Pictures', 'https://images.isbndb.com/covers/06/36/9780061020636.jpg'), + ('0060013117', 'Night Watch: A Novel Of Discworld', 'https://images.isbndb.com/covers/31/10/9780060013110.jpg'), + ('0060199563', 'Thief Of Time', 'https://images.isbndb.com/covers/95/62/9780060199562.jpg'), + ('006052779X', 'Charlotte''s Web', 'https://images.isbndb.com/covers/77/92/9780060527792.jpg'), + ('0060563079', 'Peter Pan: The Original Story', 'https://images.isbndb.com/covers/30/73/9780060563073.jpg'), + ('0060809027', 'My Friend Flicka', 'https://images.isbndb.com/covers/90/27/9780060809027.jpg'), + ('0061040967', 'The Last Hero: A Discworld Fable (Discworld Novels)', 'https://images.isbndb.com/covers/09/62/9780061040962.jpg'), + ('0061050474', 'Jingo', 'https://images.isbndb.com/covers/04/73/9780061050473.jpg'), + ('0061052515', 'Maskerade', 'https://images.isbndb.com/covers/25/14/9780061052514.jpg'), + ('0061052523', 'Interesting Times: A Novel Of Discworld', 'https://images.isbndb.com/covers/25/21/9780061052521.jpg'), + ('0064472264', 'On The Bright Side, I''m Now The Girlfriend Of A Sex God: Further Confessions Of Georgia Nicolson (Confessions Of Georgia Nicolson, Book 2)', 'https://images.isbndb.com/covers/22/65/9780064472265.jpg'), + ('0140620664', 'Mansfield Park (Penguin Popular Classics)', 'https://images.isbndb.com/covers/06/65/9780140620665.jpg'), + ('0312148267', 'The Wind In The Willows (Thomas Dunne Books)', 'https://images.isbndb.com/covers/82/63/9780312148263.jpg'), + ('0312156960', 'The Winter King (The Arthur Books #1)', 'https://images.isbndb.com/covers/69/61/9780312156961.jpg'), + ('0312890044', 'Moonheart', 'https://images.isbndb.com/covers/00/49/9780312890049.jpg'), + ('034543191X', 'The King Of Elfland''s Daughter (Del Rey Impact)', 'https://images.isbndb.com/covers/19/12/9780345431912.jpg'), + ('0373836023', 'Powder And Patch', 'https://images.isbndb.com/covers/60/24/9780373836024.jpg'), + ('0375751513', 'The Picture Of Dorian Gray (Modern Library Classics)', 'https://images.isbndb.com/covers/15/16/9780375751516.jpg'), + ('0375801677', 'The Iron Giant', 'https://images.isbndb.com/covers/16/79/9780375801679.jpg'), + ('0375814248', 'James And The Giant Peach', 'https://images.isbndb.com/covers/42/42/9780375814242.jpg'), + ('0375823352', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/33/50/9780375823350.jpg'), + ('037582345X', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/34/59/9780375823459.jpg'), + ('0375823468', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/34/66/9780375823466.jpg'), + ('0380730448', 'The Adrian Mole Diaries : The Secret Diary Of Adrian Mole, Aged 13 3/4 : The Growing Pains Of Adrian Mole', 'https://images.isbndb.com/covers/04/45/9780380730445.jpg'), + ('0380973839', 'The Martian Chronicles', 'https://images.isbndb.com/covers/38/35/9780380973835.jpg'), + ('0385327773', 'The Great God Pan', 'https://images.isbndb.com/covers/77/70/9780385327770.jpg'), + ('0394586239', 'Possession: A Romance', 'https://images.isbndb.com/covers/62/36/9780394586236.jpg'), + ('0439510112', 'Born Confused', 'https://images.isbndb.com/covers/01/10/9780439510110.jpg'), + ('0440241413', 'Confessions Of A Shopaholic (Shopaholic Series)', 'https://images.isbndb.com/covers/14/16/9780440241416.jpg'), + ('0451409256', 'Making Minty Malone', 'https://images.isbndb.com/covers/92/56/9780451409256.jpg'), + ('0451523415', 'Little Women (Signet Classics)', 'https://images.isbndb.com/covers/34/19/9780451523419.jpg'), + ('0451526279', 'Emma (Signet Classics)', 'https://images.isbndb.com/covers/62/74/9780451526274.jpg'), + ('0451526341', 'Animal Farm', 'https://images.isbndb.com/covers/63/42/9780451526342.jpg'), + ('0486415864', 'Great Expectations (Dover Thrift Editions)', 'https://images.isbndb.com/covers/58/64/9780486415864.jpg'), + ('0553280589', 'Eva Luna', 'https://images.isbndb.com/covers/05/86/9780553280586.jpg'), + ('0571197639', 'Poisonwood Bible Edition Uk', 'https://images.isbndb.com/covers/76/37/9780571197637.jpg'), + ('0670035262', 'The Green Man : Tales From The Mythic Forest', 'https://images.isbndb.com/covers/52/67/9780670035267.jpg'), + ('0679423079', 'Nicholas Nickleby (Everyman''s Library (Cloth))', 'https://images.isbndb.com/covers/30/72/9780679423072.jpg'), + ('0679751343', 'Angels & Insects: Two Novellas', 'https://images.isbndb.com/covers/13/42/9780679751342.jpg'), + ('0684833395', 'Catch-22', 'https://images.isbndb.com/covers/33/92/9780684833392.jpg'), + ('0743245024', 'The Forsyte Saga (The Man Of Property; In Chancery; To Let)', 'https://images.isbndb.com/covers/50/29/9780743245029.jpg'), + ('0749748001', 'Enchanted Wood', 'https://images.isbndb.com/covers/80/05/9780749748005.jpg'), + ('0749748028', 'Folk Of The Faraway Tree', 'https://images.isbndb.com/covers/80/29/9780749748029.jpg'), + ('0963094424', 'Angels And Visitations: A Miscellany', 'https://images.isbndb.com/covers/44/21/9780963094421.jpg'), + ('1401201172', 'League Of Extraordinary Gentlemen (Vol. 2 )', 'https://images.isbndb.com/covers/11/73/9781401201173.jpg'), + ('1563892278', 'The Sandman Vol. 1: Preludes And Nocturnes', 'https://images.isbndb.com/covers/22/71/9781563892271.jpg'), + ('1563898586', 'The League Of Extraordinary Gentlemen, Vol. 1', 'https://images.isbndb.com/covers/85/87/9781563898587.jpg'), + ('156971620X', 'Harlequin Valentine', 'https://images.isbndb.com/covers/62/05/9781569716205.jpg'), + ('1592571301', 'American Sign Language In 24 Hours (Alpha Teach Yourself In 24 Hours)', 'https://images.isbndb.com/covers/13/07/9781592571307.jpg'), + ('0374270325', 'A Man In Full', 'https://images.isbndb.com/covers/03/22/9780374270322.jpg'), + ('0375719180', 'The Miracle Life Of Edgar Mint: A Novel', 'https://images.isbndb.com/covers/91/89/9780375719189.jpg'), + ('0440235502', 'October Sky (The Coalwood Series #1)', 'https://images.isbndb.com/covers/55/07/9780440235507.jpg'), + ('044023722X', 'A Painted House', 'https://images.isbndb.com/covers/72/28/9780440237228.jpg'), + ('1573225487', 'The Romance Reader', 'https://images.isbndb.com/covers/54/89/9781573225489.jpg'), + ('1853260673', 'Far From The Madding Crowd (Wordsworth Classics) (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/74/9781853260674.jpg'), + ('0060977477', 'The Perfect Storm: A True Story Of Men Against The Sea', 'https://images.isbndb.com/covers/74/74/9780060977474.jpg'), + ('0345391691', 'The Battle For God', 'https://images.isbndb.com/covers/16/98/9780345391698.jpg'), + ('0520011171', 'Sappho: A New Translation', 'https://images.isbndb.com/covers/11/75/9780520011175.jpg'), + ('0553278746', 'The Postman', 'https://images.isbndb.com/covers/87/43/9780553278743.jpg'), + ('0670856045', 'The Tortilla Curtain', 'https://images.isbndb.com/covers/60/46/9780670856046.jpg'), + ('0872200760', 'Symposium', 'https://images.isbndb.com/covers/07/60/9780872200760.jpg'), + ('0937858994', 'The What''s Happening To My Body? Book For Boys: A Growing Up Guide For Parents And Sons', 'https://images.isbndb.com/covers/89/98/9780937858998.jpg'), + ('0671649949', 'The Object Of My Affection', 'https://images.isbndb.com/covers/99/44/9780671649944.jpg'), + ('0590431110', 'The Journey Home', 'https://images.isbndb.com/covers/11/18/9780590431118.jpg'), + ('0064470113', 'Taking The Ferry Home', 'https://images.isbndb.com/covers/01/17/9780064470117.jpg'), + ('0553571486', 'Angel Of Hope (Mercy Trilogy)', 'https://images.isbndb.com/covers/14/86/9780553571486.jpg'), + ('0972044205', 'The Breach', 'https://images.isbndb.com/covers/42/02/9780972044202.jpg'), + ('0312963009', 'Neanderthal', 'https://images.isbndb.com/covers/30/02/9780312963002.jpg'), + ('0345430476', 'A Small Dark Place', 'https://images.isbndb.com/covers/04/72/9780345430472.jpg'), + ('0345435869', 'The Rivan Codex: Ancient Texts Of THE BELGARIAD And THE MALLOREON', 'https://images.isbndb.com/covers/58/66/9780345435866.jpg'), + ('0380728729', 'Babyhood', 'https://images.isbndb.com/covers/87/25/9780380728725.jpg'), + ('038081840X', 'Year''s Best Fantasy', 'https://images.isbndb.com/covers/84/02/9780380818402.jpg'), + ('0449912302', 'Dave Barry In Cyberspace', 'https://images.isbndb.com/covers/23/00/9780449912300.jpg'), + ('055329198X', 'Wolf Moon', 'https://images.isbndb.com/covers/19/88/9780553291988.jpg'), + ('0671018930', 'Eternal Warriors: The War In Heaven (Book One)', 'https://images.isbndb.com/covers/89/31/9780671018931.jpg'), + ('0812541642', 'Waiting', 'https://images.isbndb.com/covers/16/49/9780812541649.jpg'), + ('0312988699', 'Nowhere To Run', 'https://images.isbndb.com/covers/86/92/9780312988692.jpg'), + ('0486282112', 'Frankenstein (Dover Thrift Editions)', 'https://images.isbndb.com/covers/21/14/9780486282114.jpg'), + ('0670815373', 'Urn Burial', 'https://images.isbndb.com/covers/53/71/9780670815371.jpg'), + ('0385313748', 'All Our Yesterdays', 'https://images.isbndb.com/covers/37/42/9780385313742.jpg'), + ('1575843366', 'What Shall I Be (Barbie Carryalong)', 'https://images.isbndb.com/covers/33/60/9781575843360.jpg'), + ('0684193957', 'All That Remains', 'https://images.isbndb.com/covers/39/53/9780684193953.jpg'), + ('0345371984', 'Last Chance To See', 'https://images.isbndb.com/covers/19/80/9780345371980.jpg'), + ('0380730138', 'Vinegar Hill (Oprah''s Book Club)', 'https://images.isbndb.com/covers/01/31/9780380730131.jpg'), + ('1573228737', 'Affinity', 'https://images.isbndb.com/covers/87/32/9781573228732.jpg'), + ('9681500555', 'Diario De Ana Frank', 'https://images.isbndb.com/covers/05/59/9789681500559.jpg'), + ('0380711109', 'Desert Notes: Reflections In The Eye Of A Ravens And River Notes: The Dance Of Herons', 'https://images.isbndb.com/covers/11/09/9780380711109.jpg'), + ('0452283914', 'The Best Democracy Money Can Buy: The Truth About Corporate Cons, Globalization And High-Finance Fraudsters', 'https://images.isbndb.com/covers/39/16/9780452283916.jpg'), + ('0425120279', 'The Hunt For Red October', 'https://images.isbndb.com/covers/02/79/9780425120279.jpg'), + ('067153484X', 'The Music Box', 'https://images.isbndb.com/covers/48/44/9780671534844.jpg'), + ('0380728273', 'Liberty Falling (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/82/75/9780380728275.jpg'), + ('0446606197', 'Killer Market (Deborah Knott Mysteries)', 'https://images.isbndb.com/covers/61/96/9780446606196.jpg'), + ('0771076002', 'Remembering Peter Gzowski: A Book Of Tributes', 'https://images.isbndb.com/covers/60/08/9780771076008.jpg'), + ('0771088191', 'The Best Canadian Animal Stories: Classic Tales By Master Storytellers', 'https://images.isbndb.com/covers/81/93/9780771088193.jpg'), + ('1559703237', 'Trying To Save Piggy Sneed', 'https://images.isbndb.com/covers/32/39/9781559703239.jpg'), + ('3596214629', 'Herr Der Fliegen', 'https://images.isbndb.com/covers/46/24/9783596214624.jpg'), + ('0062770500', 'Access: Seattle (Access Guides)', 'https://images.isbndb.com/covers/05/09/9780062770509.jpg'), + ('0671847546', 'Real Guide: California And The West Coast (The Real Guides)', 'https://images.isbndb.com/covers/75/48/9780671847548.jpg'), + ('0060188731', 'Bel Canto: A Novel', 'https://images.isbndb.com/covers/87/33/9780060188733.jpg'), + ('0140374248', 'James And The Giant Peach', 'https://images.isbndb.com/covers/42/47/9780140374247.jpg'), + ('0142001740', 'The Secret Life Of Bees - A Novel', 'https://images.isbndb.com/covers/17/45/9780142001745.jpg'), + ('0195086295', 'What A Wonderful World: A Lifetime Of Recordings', 'https://images.isbndb.com/covers/62/94/9780195086294.jpg'), + ('0312995423', 'Digital Fortress: A Thriller', 'https://images.isbndb.com/covers/54/23/9780312995423.jpg'), + ('0380704587', 'The Ladies Of Missalonghi', 'https://images.isbndb.com/covers/45/83/9780380704583.jpg'), + ('0380815923', 'Blackberry Wine: A Novel', 'https://images.isbndb.com/covers/59/20/9780380815920.jpg'), + ('0385416342', 'The Firm', 'https://images.isbndb.com/covers/63/44/9780385416344.jpg'), + ('0385418493', 'How The Irish Saved Civilization (Hinges Of History)', 'https://images.isbndb.com/covers/84/92/9780385418492.jpg'), + ('038542471X', 'The Client', 'https://images.isbndb.com/covers/47/14/9780385424714.jpg'), + ('0425098109', 'Thieves Of Light (Photon : The Ultimate Game On Planet Earth)', 'https://images.isbndb.com/covers/81/03/9780425098103.jpg'), + ('0449005410', 'Horse Heaven (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/54/15/9780449005415.jpg'), + ('0449202631', 'The Danger', 'https://images.isbndb.com/covers/26/30/9780449202630.jpg'), + ('0449207544', 'Proof', 'https://images.isbndb.com/covers/75/43/9780449207543.jpg'), + ('0515128554', 'Heart Of The Sea (Irish Trilogy, Book 3)', 'https://images.isbndb.com/covers/85/50/9780515128550.jpg'), + ('0517577402', 'Mostly Harmless', 'https://images.isbndb.com/covers/74/00/9780517577400.jpg'), + ('0590450875', 'I Spy: A Book Of Picture Riddles', 'https://images.isbndb.com/covers/08/74/9780590450874.jpg'), + ('0590481371', 'I Spy Spooky Night: A Book Of Picture Riddles', 'https://images.isbndb.com/covers/13/73/9780590481373.jpg'), + ('067103619X', 'Lake News', 'https://images.isbndb.com/covers/61/95/9780671036195.jpg'), + ('0684177730', 'The SKULL BENEATH THE SKIN', 'https://images.isbndb.com/covers/77/31/9780684177731.jpg'), + ('0684180200', 'The New Shoe', 'https://images.isbndb.com/covers/02/05/9780684180205.jpg'), + ('0743411269', 'An Accidental Woman', 'https://images.isbndb.com/covers/12/64/9780743411264.jpg'), + ('0743470389', 'The Snow Garden', 'https://images.isbndb.com/covers/03/84/9780743470384.jpg'), + ('076218857X', 'The Doorbell Rang (The Best Mysteries Of All Time)', 'https://images.isbndb.com/covers/85/74/9780762188574.jpg'), + ('0767905938', 'A Year By The Sea: Thoughts Of An Unfinished Woman', 'https://images.isbndb.com/covers/59/30/9780767905930.jpg'), + ('0800706544', 'Though I Walk Through The Valley', 'https://images.isbndb.com/covers/65/48/9780800706548.jpg'), + ('0801096677', 'Victorious Christians You Should Know', 'https://images.isbndb.com/covers/66/79/9780801096679.jpg'), + ('0849953014', 'Life Lessons With Max Lucado: Book Of Hebrews', 'https://images.isbndb.com/covers/30/19/9780849953019.jpg'), + ('0891091963', 'Inside Out: Real Change Is Possible If You''re Willing To Start From The Inside Out', 'https://images.isbndb.com/covers/19/67/9780891091967.jpg'), + ('0915811537', 'Son Rise: The Miracle Continues', 'https://images.isbndb.com/covers/15/33/9780915811533.jpg'), + ('0927545373', 'Unveiled At Last: Discover God''s Hidden Message From Genesis To Revelation', 'https://images.isbndb.com/covers/53/72/9780927545372.jpg'), + ('1575024179', 'The Day I Almost Quit', 'https://images.isbndb.com/covers/41/72/9781575024172.jpg'), + ('1880185008', 'Serving As Senders: How To Care For Your Missionaries While They Are Preparing To Go, While They Are On The Field, When They Return Home', 'https://images.isbndb.com/covers/50/01/9781880185001.jpg'), + ('0140345809', 'House Of Stairs', 'https://images.isbndb.com/covers/58/03/9780140345803.jpg'), + ('0156528207', 'The Little Prince', 'https://images.isbndb.com/covers/82/07/9780156528207.jpg'), + ('0380012863', 'Jonathan Livingston Seagull', 'https://images.isbndb.com/covers/28/62/9780380012862.jpg'), + ('0451154916', 'The Crystal Handbook (Signet)', 'https://images.isbndb.com/covers/49/10/9780451154910.jpg'), + ('0785815147', 'Simple Wicca (Simple Wisdom Book)', 'https://images.isbndb.com/covers/51/43/9780785815143.jpg'), + ('0875421288', 'The Complete Book Of Incense, Oils And Brews (Llewellyn''s Practical Magick)', 'https://images.isbndb.com/covers/12/85/9780875421285.jpg'), + ('1567184294', 'The Western Mysteries: An Encyclopedic Guide To The Sacred Languages & Magickal Systems Of The World- The Key Of It All, Book 2 (Llewellyn Sourcebook Series)', 'https://images.isbndb.com/covers/42/97/9781567184297.jpg'), + ('156718796X', 'Astral Travel For Beginners: Transcend Time And Space With Out-of-Body Experiences (For Beginners (Llewellyn''s))', 'https://images.isbndb.com/covers/79/60/9781567187960.jpg'), + ('1862047626', 'New Perspectives: Runes', 'https://images.isbndb.com/covers/76/24/9781862047624.jpg'), + ('0020437501', 'Rosie''S Walk', 'https://images.isbndb.com/covers/75/05/9780020437505.jpg'), + ('0198320264', 'Julius Caesar (Oxford School Shakespeare)', 'https://images.isbndb.com/covers/02/65/9780198320265.jpg'), + ('0373196989', 'Santa Brought A Son: Marrying The Boss''s Daughter (Silhouette Romance)', 'https://images.isbndb.com/covers/69/82/9780373196982.jpg'), + ('0373245580', 'Marry Me ... Again: Montana Mavericks (Silhouette Special Edition)', 'https://images.isbndb.com/covers/55/81/9780373245581.jpg'), + ('0451527747', 'Alice''s Adventures In Wonderland And Through The Looking Glass (Signet Classics)', 'https://images.isbndb.com/covers/77/45/9780451527745.jpg'), + ('0671867113', 'Moonlight Becomes You', 'https://images.isbndb.com/covers/71/19/9780671867119.jpg'), + ('0812504208', 'The Adventures Of Tom Sawyer', 'https://images.isbndb.com/covers/42/00/9780812504200.jpg'), + ('0060173289', 'Divine Secrets Of The Ya-Ya Sisterhood: A Novel', 'https://images.isbndb.com/covers/32/89/9780060173289.jpg'), + ('0060973897', 'Lakota Woman', 'https://images.isbndb.com/covers/38/96/9780060973896.jpg'), + ('006101351X', 'The Perfect Storm: A True Story Of Men Against The Sea', 'https://images.isbndb.com/covers/35/15/9780061013515.jpg'), + ('0140104682', 'Heroes Of Their Own Lives: The Politics And History Of Family Violence', 'https://images.isbndb.com/covers/46/84/9780140104684.jpg'), + ('0312143370', 'The Florence King Reader', 'https://images.isbndb.com/covers/33/74/9780312143374.jpg'), + ('0316666343', 'The Lovely Bones: A Novel', 'https://images.isbndb.com/covers/63/43/9780316666343.jpg'), + ('039456894X', 'Impossible Vacation', 'https://images.isbndb.com/covers/89/42/9780394568942.jpg'), + ('0440224675', 'Hannibal', 'https://images.isbndb.com/covers/46/79/9780440224679.jpg'), + ('0449002632', 'London: The Novel', 'https://images.isbndb.com/covers/26/36/9780449002636.jpg'), + ('0449213773', 'Life Before Man', 'https://images.isbndb.com/covers/37/73/9780449213773.jpg'), + ('0452279690', 'Cavedweller: A Novel', 'https://images.isbndb.com/covers/96/98/9780452279698.jpg'), + ('0553569058', 'The Robber Bride', 'https://images.isbndb.com/covers/90/56/9780553569056.jpg'), + ('0679427430', 'Wouldn''t Take Nothing For My Journey Now', 'https://images.isbndb.com/covers/74/38/9780679427438.jpg'), + ('0679725393', 'House Of Mirth', 'https://images.isbndb.com/covers/53/98/9780679725398.jpg'), + ('0802114369', 'Ohitika Woman', 'https://images.isbndb.com/covers/43/65/9780802114365.jpg'), + ('0803233019', 'Black Elk Speaks: Being The Life Story Of A Holy Man Of The Oglala Sioux', 'https://images.isbndb.com/covers/30/10/9780803233010.jpg'), + ('0819154946', 'The Community In America', 'https://images.isbndb.com/covers/49/41/9780819154941.jpg'), + ('0897322339', 'The Best In Tent Camping: Smoky Mountains : A Guide For Campers Who Hate Rvs, Concrete Slabs, And Loud Portable Stereos (Best In Tent Camping Colorado)', 'https://images.isbndb.com/covers/23/31/9780897322331.jpg'), + ('0940322978', 'Mawrdew Czgowchwz (New York Review Books Classics)', 'https://images.isbndb.com/covers/29/74/9780940322974.jpg'), + ('1573225126', 'Prozac Nation', 'https://images.isbndb.com/covers/51/20/9781573225120.jpg'), + ('1579651658', 'The Journey From Here', 'https://images.isbndb.com/covers/16/57/9781579651657.jpg'), + ('1878424319', 'The Four Agreements: A Practical Guide To Personal Freedom (A Toltec Wisdom Book)', 'https://images.isbndb.com/covers/43/10/9781878424310.jpg'), + ('0600586898', 'Blur (Melody Maker)', 'https://images.isbndb.com/covers/68/90/9780600586890.jpg'), + ('1853260622', 'War And Peace (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/29/9781853260629.jpg'), + ('1857938011', 'A-Z Of Behaving Badly', 'https://images.isbndb.com/covers/80/12/9781857938012.jpg'), + ('0060804157', 'He Understanding Masculine Psychology (Perennial Library)', 'https://images.isbndb.com/covers/41/52/9780060804152.jpg'), + ('0140382658', 'You Can Surf The Net!: Your Guide To The World Of The Internet', 'https://images.isbndb.com/covers/26/55/9780140382655.jpg'), + ('0152012966', 'I Want To Be A Veterinarian', 'https://images.isbndb.com/covers/29/60/9780152012960.jpg'), + ('0312283784', 'Alice''s Tulips: A Novel', 'https://images.isbndb.com/covers/37/80/9780312283780.jpg'), + ('0345297709', 'Centaur Aisle (The Magic Of Xanth, No. 4)', 'https://images.isbndb.com/covers/77/09/9780345297709.jpg'), + ('0345313097', 'Crewel Lye: A Caustic Yarn (The Magic Of Xanth, No. 8)', 'https://images.isbndb.com/covers/30/96/9780345313096.jpg'), + ('0345335465', 'Dragonflight (Dragonriders Of Pern - Volume 1)', 'https://images.isbndb.com/covers/54/63/9780345335463.jpg'), + ('0345416848', 'Last Sword Of Power', 'https://images.isbndb.com/covers/68/41/9780345416841.jpg'), + ('0385333404', 'Dating Big Bird', 'https://images.isbndb.com/covers/34/05/9780385333405.jpg'), + ('044021145X', 'The Firm', 'https://images.isbndb.com/covers/14/57/9780440211457.jpg'), + ('0449212084', 'Murder At The Kennedy Center (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/20/80/9780449212080.jpg'), + ('0553582682', 'Guinness World Records 2000 (Guinness Book Of Records, 2000)', 'https://images.isbndb.com/covers/26/80/9780553582680.jpg'), + ('0590947257', 'Forever Amber Brown', 'https://images.isbndb.com/covers/72/51/9780590947251.jpg'), + ('074345829X', 'The Dungeon', 'https://images.isbndb.com/covers/82/90/9780743458290.jpg'), + ('0786913878', 'Pool Of Radiance: The Ruins Of Myth Drannor (Forgotten Realms)', 'https://images.isbndb.com/covers/38/79/9780786913879.jpg'), + ('0801491827', 'Feminism And Suffrage: The Emergence Of An Independent Women''s Movement In America, 1848-1869', 'https://images.isbndb.com/covers/18/25/9780801491825.jpg'), + ('0816729913', 'Why Are Boys So Weird (Tales From Third Grade)', 'https://images.isbndb.com/covers/99/13/9780816729913.jpg'), + ('0843136685', 'Sheldon And Mrs. Levine, An Excruciating Correspondence', 'https://images.isbndb.com/covers/66/85/9780843136685.jpg'), + ('0866119531', 'Black Beauty (Great Illustrated Classics (Playmore))', 'https://images.isbndb.com/covers/95/35/9780866119535.jpg'), + ('0866119566', 'Oliver Twist (Great Illustrated Classics)', 'https://images.isbndb.com/covers/95/66/9780866119566.jpg'), + ('0870441663', 'The Wild Ponies Of Assateague Island (Books For Young Explorers)', 'https://images.isbndb.com/covers/16/60/9780870441660.jpg'), + ('1561561428', 'Frankenstein (Illustrated Classics Series)', 'https://images.isbndb.com/covers/14/21/9781561561421.jpg'), + ('0553210092', 'The Scarlet Letter (Bantam Classics)', 'https://images.isbndb.com/covers/00/95/9780553210095.jpg'), + ('0553258524', 'Dragonsong (Volume One Of The Harper Hall Trilogy)', 'https://images.isbndb.com/covers/85/23/9780553258523.jpg'), + ('0688163726', 'The Watch House', 'https://images.isbndb.com/covers/37/23/9780688163723.jpg'), + ('1569471096', 'Was It Something I Said?', 'https://images.isbndb.com/covers/10/98/9781569471098.jpg'), + ('055358099X', 'Cloud Nine', 'https://images.isbndb.com/covers/09/90/9780553580990.jpg'), + ('0316168815', 'The Lovely Bones', 'https://images.isbndb.com/covers/88/16/9780316168816.jpg'), + ('014023828X', 'The Tortilla Curtain', 'https://images.isbndb.com/covers/82/80/9780140238280.jpg'), + ('0316314927', 'Sarah Conley', 'https://images.isbndb.com/covers/49/23/9780316314923.jpg'), + ('0345424719', 'A Widow For One Year', 'https://images.isbndb.com/covers/47/16/9780345424716.jpg'), + ('0375414746', 'The Clearing', 'https://images.isbndb.com/covers/47/49/9780375414749.jpg'), + ('0375726403', 'Empire Falls', 'https://images.isbndb.com/covers/64/08/9780375726408.jpg'), + ('0385503857', 'Oryx And Crake', 'https://images.isbndb.com/covers/38/53/9780385503853.jpg'), + ('0425156842', 'Sophie''s World: A Novel About The History Of Philosophy (Berkeley Signature Edition)', 'https://images.isbndb.com/covers/68/41/9780425156841.jpg'), + ('0440226104', 'Black And Blue: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/61/09/9780440226109.jpg'), + ('0452277337', 'Le Divorce (William Abrahams Book)', 'https://images.isbndb.com/covers/73/35/9780452277335.jpg'), + ('0553802488', 'The Face', 'https://images.isbndb.com/covers/24/81/9780553802481.jpg'), + ('0671021001', 'She''s Come Undone (Oprah''s Book Club)', 'https://images.isbndb.com/covers/10/09/9780671021009.jpg'), + ('0767903579', 'Falling Leaves: The Memoir Of An Unwanted Chinese Daughter', 'https://images.isbndb.com/covers/35/78/9780767903578.jpg'), + ('0805063897', 'Nickel And Dimed: On (Not) Getting By In America', 'https://images.isbndb.com/covers/38/99/9780805063899.jpg'), + ('0679777431', 'The Game Of Kings (Lymond Chronicles, 1)', 'https://images.isbndb.com/covers/74/34/9780679777434.jpg'), + ('0553285343', 'The Russia House', 'https://images.isbndb.com/covers/53/45/9780553285345.jpg'), + ('0486285529', 'Solv-a-Crime Puzzles (Dover Game & Puzzle Activity Books)', 'https://images.isbndb.com/covers/55/28/9780486285528.jpg'), + ('0671002481', 'The First Wives Club Movie Tie In', 'https://images.isbndb.com/covers/24/80/9780671002480.jpg'), + ('0812523385', 'Selected Poems Of Emily Dickinson', 'https://images.isbndb.com/covers/33/86/9780812523386.jpg'), + ('0895774666', 'Watercolor School (Learn As You Go)', 'https://images.isbndb.com/covers/46/68/9780895774668.jpg'), + ('0020199090', 'Joshua In The Holy Land', 'https://images.isbndb.com/covers/90/90/9780020199090.jpg'), + ('0385495145', 'The Messenger', 'https://images.isbndb.com/covers/51/41/9780385495141.jpg'), + ('0679733825', 'Sisters Of The Earth: Women''s Prose And Poetry About Nature', 'https://images.isbndb.com/covers/38/29/9780679733829.jpg'), + ('0842329129', 'Left Behind: A Novel Of The Earth''s Last Days (Left Behind No. 1)', 'https://images.isbndb.com/covers/91/25/9780842329125.jpg'), + ('0345451260', 'Househusband', 'https://images.isbndb.com/covers/12/62/9780345451262.jpg'), + ('0740700235', 'Life Messages: Inspiration For The Woman''s Spirit', 'https://images.isbndb.com/covers/02/31/9780740700231.jpg'), + ('0380973545', 'Letters From A Nut', 'https://images.isbndb.com/covers/35/45/9780380973545.jpg'), + ('0393321576', 'Karl Marx: A Life', 'https://images.isbndb.com/covers/15/79/9780393321579.jpg'), + ('0743424425', 'The Shining', 'https://images.isbndb.com/covers/44/24/9780743424424.jpg'), + ('0786868015', 'The Diary Of Ellen Rimbauer: My Life At Rose Red', 'https://images.isbndb.com/covers/80/18/9780786868018.jpg'), + ('0446610178', 'The Sky Is Falling', 'https://images.isbndb.com/covers/01/79/9780446610179.jpg'), + ('0684854953', 'Santa & Pete: A Novel Of Christmas Present And Past', 'https://images.isbndb.com/covers/49/53/9780684854953.jpg'), + ('0743229878', 'Mount Vernon Love Story: A Novel Of George And Martha Washington', 'https://images.isbndb.com/covers/98/76/9780743229876.jpg'), + ('0380617625', 'The Kingdom: Arabia And The House Of Sa''Ud', 'https://images.isbndb.com/covers/76/23/9780380617623.jpg'), + ('0380732335', 'Florida Road Kill: A Novel', 'https://images.isbndb.com/covers/23/33/9780380732333.jpg'), + ('0385337132', 'The 37th Hour', 'https://images.isbndb.com/covers/71/37/9780385337137.jpg'), + ('0440235057', 'Be Cool', 'https://images.isbndb.com/covers/50/57/9780440235057.jpg'), + ('0445402040', 'The Hunted', 'https://images.isbndb.com/covers/20/41/9780445402041.jpg'), + ('0618119760', 'The Saints Of Big Harbour: A Novel', 'https://images.isbndb.com/covers/97/69/9780618119769.jpg'), + ('0871138646', 'Old Flames', 'https://images.isbndb.com/covers/86/44/9780871138644.jpg'), + ('0026329859', 'From The Earth: Chinese Vegetarian Cooking', 'https://images.isbndb.com/covers/98/59/9780026329859.jpg'), + ('0060621257', 'Living In The Presence: Disciplines For The Spiritual Heart', 'https://images.isbndb.com/covers/12/54/9780060621254.jpg'), + ('0060915544', 'The Bean Trees', 'https://images.isbndb.com/covers/55/44/9780060915544.jpg'), + ('0060917016', 'Homeland And Other Stories', 'https://images.isbndb.com/covers/70/12/9780060917012.jpg'), + ('0060925000', 'A Suitable Boy', 'https://images.isbndb.com/covers/50/00/9780060925000.jpg'), + ('0060932759', 'Daughter Of Fortune', 'https://images.isbndb.com/covers/27/56/9780060932756.jpg'), + ('0061000280', 'The Fly On The Wall', 'https://images.isbndb.com/covers/02/87/9780061000287.jpg'), + ('0192815318', 'Cranford (The World''s Classics)', 'https://images.isbndb.com/covers/53/16/9780192815316.jpg'), + ('0312195516', 'The Red Tent', 'https://images.isbndb.com/covers/55/19/9780312195519.jpg'), + ('0380792664', 'The Right Hand Of Amon', 'https://images.isbndb.com/covers/26/65/9780380792665.jpg'), + ('0393048977', 'Last Blue: Poems', 'https://images.isbndb.com/covers/89/71/9780393048971.jpg'), + ('0399137807', 'The Cat Who Wasn''t There', 'https://images.isbndb.com/covers/78/08/9780399137808.jpg'), + ('039914739X', 'Isle Of Dogs', 'https://images.isbndb.com/covers/73/95/9780399147395.jpg'), + ('0451203046', 'Light A Penny Candle', 'https://images.isbndb.com/covers/30/45/9780451203045.jpg'), + ('0451410556', 'The Blue Last', 'https://images.isbndb.com/covers/05/59/9780451410559.jpg'), + ('0451523318', 'The Turn Of The Screw And Other Short Novels (Signet Classics)', 'https://images.isbndb.com/covers/33/10/9780451523310.jpg'), + ('0486281965', 'The Country Of The Pointed Firs (Dover Thrift Editions)', 'https://images.isbndb.com/covers/19/64/9780486281964.jpg'), + ('0486292940', 'Early Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/29/46/9780486292946.jpg'), + ('051762639X', 'Barchester Towers (Oxford Pocket Classics)', 'https://images.isbndb.com/covers/63/99/9780517626399.jpg'), + ('0684824442', 'The Reef', 'https://images.isbndb.com/covers/44/44/9780684824444.jpg'), + ('0743458303', 'Wednesday The Rabbi Got Wet', 'https://images.isbndb.com/covers/83/06/9780743458306.jpg'), + ('081296666X', 'Things My Girlfriend And I Have Argued About: A Novel', 'https://images.isbndb.com/covers/66/64/9780812966664.jpg'), + ('0819215635', 'Listening Hearts: Discerning Call In Community', 'https://images.isbndb.com/covers/56/35/9780819215635.jpg'), + ('0880011025', 'Unattainable Earth,', 'https://images.isbndb.com/covers/10/20/9780880011020.jpg'), + ('1561011525', 'The Practice Of Prayer (The New Church''s Teaching Series, Vol 4)', 'https://images.isbndb.com/covers/15/20/9781561011520.jpg'), + ('1877727083', 'Vertical Poetry: Recent Poems', 'https://images.isbndb.com/covers/70/85/9781877727085.jpg'), + ('0486206173', 'Rubinstein''s Chess Masterpieces: 100 Selected Games', 'https://images.isbndb.com/covers/61/72/9780486206172.jpg'), + ('0312278586', 'The Nanny Diaries: A Novel', 'https://images.isbndb.com/covers/85/88/9780312278588.jpg'), + ('0140370900', 'The Gizmo (Gizmo Books)', 'https://images.isbndb.com/covers/09/04/9780140370904.jpg'), + ('0674511255', 'The Last Best Hope Of Earth: Abraham Lincoln And The Promise Of America', 'https://images.isbndb.com/covers/12/55/9780674511255.jpg'), + ('0030096189', 'Organic Chemistry (Saunders Golden Sunburst Series)', 'https://images.isbndb.com/covers/61/81/9780030096181.jpg'), + ('0312965745', 'Secrets Of St. John''s Wort: Treat Depression Naturally With St. John''s Wort!', 'https://images.isbndb.com/covers/57/47/9780312965747.jpg'), + ('0345374657', 'Diet For A Poisoned Planet', 'https://images.isbndb.com/covers/46/53/9780345374653.jpg'), + ('0395710901', 'Punished By Rewards: The Trouble With Gold Stars, Incentive Plans, A''s, Praise And Other Bribes', 'https://images.isbndb.com/covers/09/06/9780395710906.jpg'), + ('080521061X', 'Montessori Today: A Comprehensive Approach To Education From Birth To Adulthood', 'https://images.isbndb.com/covers/06/13/9780805210613.jpg'), + ('0823032612', 'Oil Painting Techniques: Learn How To Master Oil Painting Working Techniques To Create Your Own Successful Paintings (Artist''s Painting Library)', 'https://images.isbndb.com/covers/26/17/9780823032617.jpg'), + ('0679310002', 'Going Down Swinging', 'https://images.isbndb.com/covers/00/06/9780679310006.jpg'), + ('0312288115', 'Confessions Of A Sociopathic Social Climber: The Katya Livingston Chronicles', 'https://images.isbndb.com/covers/81/12/9780312288112.jpg'), + ('0316171107', 'Like A Hole In The Head', 'https://images.isbndb.com/covers/11/06/9780316171106.jpg'), + ('0380710218', 'Postmortem', 'https://images.isbndb.com/covers/02/18/9780380710218.jpg'), + ('0515118656', 'The Cove (FBI Series)', 'https://images.isbndb.com/covers/86/50/9780515118650.jpg'), + ('0553289063', 'Inconvenient Woman, An', 'https://images.isbndb.com/covers/90/60/9780553289060.jpg'), + ('0671000306', 'Shock Wave (Dirk Pitt Adventures)', 'https://images.isbndb.com/covers/03/01/9780671000301.jpg'), + ('0671673688', 'While My Pretty One Sleeps', 'https://images.isbndb.com/covers/36/80/9780671673680.jpg'), + ('1561672033', 'Antipodes 10', 'https://images.isbndb.com/covers/20/35/9781561672035.jpg'), + ('0425178242', 'Kick Ass: Selected Columns Of Carl Hiaasen', 'https://images.isbndb.com/covers/82/49/9780425178249.jpg'), + ('0618173870', 'Everything Is Illuminated: A Novel', 'https://images.isbndb.com/covers/38/77/9780618173877.jpg'), + ('0156027321', 'Life Of Pi', 'https://images.isbndb.com/covers/73/28/9780156027328.jpg'), + ('0375403582', 'Rules Of The Wild: A Novel', 'https://images.isbndb.com/covers/35/83/9780375403583.jpg'), + ('0385721420', 'Three Junes', 'https://images.isbndb.com/covers/14/24/9780385721424.jpg'), + ('0451202341', 'Back Roads', 'https://images.isbndb.com/covers/23/45/9780451202345.jpg'), + ('0743418190', 'In Her Shoes : A Novel', 'https://images.isbndb.com/covers/81/95/9780743418195.jpg'), + ('0385335407', 'The Kiss', 'https://images.isbndb.com/covers/54/09/9780385335409.jpg'), + ('0965746828', 'Home Spun: A Collection', 'https://images.isbndb.com/covers/68/23/9780965746823.jpg'), + ('0060923245', 'Sweet Hereafter: A Novel', 'https://images.isbndb.com/covers/32/42/9780060923242.jpg'), + ('0486272664', 'The Rime Of The Ancient Mariner And Other Poems', 'https://images.isbndb.com/covers/26/65/9780486272665.jpg'), + ('0786015276', '11th Hour', 'https://images.isbndb.com/covers/52/76/9780786015276.jpg'), + ('0060913509', 'In Country', 'https://images.isbndb.com/covers/35/02/9780060913502.jpg'), + ('0553272837', 'Brazen Virtue (Sacred Sins)', 'https://images.isbndb.com/covers/28/33/9780553272833.jpg'), + ('0440225078', 'Ghost Moon', 'https://images.isbndb.com/covers/50/72/9780440225072.jpg'), + ('0312145543', 'Brewing Up A Storm: A John Thatcher Mystery', 'https://images.isbndb.com/covers/55/45/9780312145545.jpg'), + ('0425181111', 'Strangers', 'https://images.isbndb.com/covers/11/19/9780425181119.jpg'), + ('0380732688', 'Milk And Honey (Peter Decker/Rina Lazarus Novels)', 'https://images.isbndb.com/covers/26/85/9780380732685.jpg'), + ('0140286276', 'The Deep End Of The Ocean (Oprah''s Book Club)', 'https://images.isbndb.com/covers/62/74/9780140286274.jpg'), + ('0373484100', 'Night Tales: Night Shift/ Night Shadow/ Nightshade/ Night Smoke', 'https://images.isbndb.com/covers/41/02/9780373484102.jpg'), + ('0449907481', 'A Thousand Acres (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/74/81/9780449907481.jpg'), + ('0553107305', 'Chopping Spree', 'https://images.isbndb.com/covers/73/02/9780553107302.jpg'), + ('080213825X', 'Four Blondes', 'https://images.isbndb.com/covers/82/55/9780802138255.jpg'), + ('0515127833', 'River''s End', 'https://images.isbndb.com/covers/78/36/9780515127836.jpg'), + ('0345441133', 'Summer Island: A Novel', 'https://images.isbndb.com/covers/11/33/9780345441133.jpg'), + ('0515134279', 'Straw Men', 'https://images.isbndb.com/covers/42/78/9780515134278.jpg'), + ('0945586051', 'The Doctor The Patient: The Personal Journey Of A Physician With Cancer', 'https://images.isbndb.com/covers/60/50/9780945586050.jpg'), + ('0385490992', 'The Street Lawyer', 'https://images.isbndb.com/covers/09/93/9780385490993.jpg'), + ('0385424728', 'The Chamber', 'https://images.isbndb.com/covers/47/21/9780385424721.jpg'), + ('0312980388', 'Warlock: A Novel Of Ancient Egypt', 'https://images.isbndb.com/covers/03/82/9780312980382.jpg'), + ('0590419625', 'The Teacher From The Black Lagoon', 'https://images.isbndb.com/covers/96/28/9780590419628.jpg'), + ('0385472951', 'The Partner', 'https://images.isbndb.com/covers/29/51/9780385472951.jpg'), + ('0451195663', 'Primal Scream', 'https://images.isbndb.com/covers/56/61/9780451195661.jpg'), + ('0425182878', 'Chosen Prey (Lucas Davenport, No 12)', 'https://images.isbndb.com/covers/28/71/9780425182871.jpg'), + ('0553564528', 'Guilty As Sin: A Novel (Deer Lake)', 'https://images.isbndb.com/covers/45/25/9780553564525.jpg'), + ('055356451X', 'Night Sins (Deer Lake)', 'https://images.isbndb.com/covers/45/18/9780553564518.jpg'), + ('0743412621', 'The Second Time Around: A Novel', 'https://images.isbndb.com/covers/26/29/9780743412629.jpg'), + ('0849943728', 'Three', 'https://images.isbndb.com/covers/37/20/9780849943720.jpg'), + ('0849943450', 'The Canopy', 'https://images.isbndb.com/covers/34/54/9780849943454.jpg'), + ('084994371X', 'Blink', 'https://images.isbndb.com/covers/37/13/9780849943713.jpg'), + ('0590406019', 'The Last Battle (Chronicles Of Narnia, Book 7)', 'https://images.isbndb.com/covers/60/17/9780590406017.jpg'), + ('0020442408', 'Prince Caspian: The Return To Narnia', 'https://images.isbndb.com/covers/24/00/9780020442400.jpg'), + ('0553225987', 'Robert''s Rules Of Order: The Standard Guide To Parliamentary Procedure', 'https://images.isbndb.com/covers/59/83/9780553225983.jpg'), + ('042517736X', 'Abduction', 'https://images.isbndb.com/covers/73/65/9780425177365.jpg'), + ('0671868713', 'And Never Let Her Go: Thomas Capano: The Deadly Seducer', 'https://images.isbndb.com/covers/87/10/9780671868710.jpg'), + ('038549825X', 'Not A Day Goes By: A Novel', 'https://images.isbndb.com/covers/82/58/9780385498258.jpg'), + ('0553202294', 'Linda Goodman''s Sun Signs', 'https://images.isbndb.com/covers/22/98/9780553202298.jpg'), + ('0345313860', 'The Vampire Lestat (Vampire Chronicles, Book II)', 'https://images.isbndb.com/covers/38/67/9780345313867.jpg'), + ('0345369947', 'The Mummy Or Ramses The Damned', 'https://images.isbndb.com/covers/99/49/9780345369949.jpg'), + ('067170124X', 'His Little Women', 'https://images.isbndb.com/covers/12/46/9780671701246.jpg'), + ('0345353625', 'Her Mother''s Daughter', 'https://images.isbndb.com/covers/36/27/9780345353627.jpg'), + ('0308102282', 'Your Erroneous Zones', 'https://images.isbndb.com/covers/22/86/9780308102286.jpg'), + ('006017143X', 'The Night Listener: A Novel', 'https://images.isbndb.com/covers/14/38/9780060171438.jpg'), + ('0805056491', 'Organizing From The Inside Out', 'https://images.isbndb.com/covers/64/95/9780805056495.jpg'), + ('0679401377', 'The Hellfire Club', 'https://images.isbndb.com/covers/13/77/9780679401377.jpg'), + ('1562827049', 'The Diary Of Jack The Ripper: The Discovery, The Investigation, The Debate', 'https://images.isbndb.com/covers/70/45/9781562827045.jpg'), + ('0385306032', 'Vanished', 'https://images.isbndb.com/covers/60/34/9780385306034.jpg'), + ('0816152446', 'The Women In His Life (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/24/45/9780816152445.jpg'), + ('0821772953', 'The Morning After', 'https://images.isbndb.com/covers/29/59/9780821772959.jpg'), + ('0345379454', 'Missing Susan', 'https://images.isbndb.com/covers/94/50/9780345379450.jpg'), + ('0553576925', 'Hiding In The Shadows (Shadows Trilogy)', 'https://images.isbndb.com/covers/69/24/9780553576924.jpg'), + ('0743206053', 'Kitchen Privileges : A Memoir', 'https://images.isbndb.com/covers/60/51/9780743206051.jpg'), + ('0688169678', 'We Are Our Mothers'' Daughters', 'https://images.isbndb.com/covers/96/71/9780688169671.jpg'), + ('0439319552', 'First Graders From Mars: Episode #01: Horus''s Horrible Day', 'https://images.isbndb.com/covers/95/53/9780439319553.jpg'), + ('0590870157', 'My Garden (Beginning Literacy)', 'https://images.isbndb.com/covers/01/53/9780590870153.jpg'), + ('0307001164', '101 Dalmatians (Walt Disney''s Classics) (Little Golden Books)', 'https://images.isbndb.com/covers/11/60/9780307001160.jpg'), + ('0440441501', 'In The Dinosaur''s Paw (The Kids Of The Polk Street School)', 'https://images.isbndb.com/covers/15/02/9780440441502.jpg'), + ('0590687301', 'Ralph S. Mouse', 'https://images.isbndb.com/covers/73/00/9780590687300.jpg'), + ('0439061644', 'The First Journey (Animorphs Alternamorphs)', 'https://images.isbndb.com/covers/16/43/9780439061643.jpg'), + ('0439569842', 'How Do Dinosaurs Learn To Read?', 'https://images.isbndb.com/covers/98/42/9780439569842.jpg'), + ('0307118703', 'My First Book About Space (Look-Look)', 'https://images.isbndb.com/covers/87/07/9780307118707.jpg'), + ('0590418858', 'You Be The Jury: Courtroom II', 'https://images.isbndb.com/covers/88/50/9780590418850.jpg'), + ('030720152X', 'Comic Characters', 'https://images.isbndb.com/covers/15/22/9780307201522.jpg'), + ('0816728739', 'The Time Machine (Troll Illustrated Classics)', 'https://images.isbndb.com/covers/87/32/9780816728732.jpg'), + ('0865050880', 'I Like School (in My World Series)', 'https://images.isbndb.com/covers/08/84/9780865050884.jpg'), + ('0812519655', 'Sacred Ground', 'https://images.isbndb.com/covers/96/55/9780812519655.jpg'), + ('0812524853', 'Burning Water (Diana Tregarde)', 'https://images.isbndb.com/covers/48/57/9780812524857.jpg'), + ('0449211770', 'Tightrope Walker', 'https://images.isbndb.com/covers/17/79/9780449211779.jpg'), + ('193072229X', 'MoveOn''s 50 Ways To Love Your Country: How To Find Your Political Voice And Become A Catalyst For Change', 'https://images.isbndb.com/covers/22/93/9781930722293.jpg'), + ('0812521129', 'Children Of The Night: A Diana Tregarde Investigation', 'https://images.isbndb.com/covers/11/22/9780812521122.jpg'), + ('0345251733', 'Rainbow: The Stormy Life Of Judy Garland', 'https://images.isbndb.com/covers/17/32/9780345251732.jpg'), + ('1400077826', 'Cold Mountain (Vintage Contemporaries)', 'https://images.isbndb.com/covers/78/23/9781400077823.jpg'), + ('0312995431', 'A Fountain Filled With Blood (A Rev. Clare Fergusson And Russ Van Alstyne Mystery)', 'https://images.isbndb.com/covers/54/30/9780312995430.jpg'), + ('0312312628', 'Out Of The Deep I Cry: A Clare Fergusson And Russ Van Alstyne Mystery', 'https://images.isbndb.com/covers/26/26/9780312312626.jpg'), + ('0446394521', 'Daisy Fay And The Miracle Man', 'https://images.isbndb.com/covers/45/29/9780446394529.jpg'), + ('0590021117', 'Little House On The Prairie', 'https://images.isbndb.com/covers/11/11/9780590021111.jpg'), + ('068484267X', 'Angela''s Ashes: A Memoir', 'https://images.isbndb.com/covers/26/77/9780684842677.jpg'), + ('0553578693', 'The Next Accident', 'https://images.isbndb.com/covers/86/90/9780553578690.jpg'), + ('0380709260', 'Socks', 'https://images.isbndb.com/covers/92/67/9780380709267.jpg'), + ('0807565288', 'The Pet Shop Mystery (The Boxcar Children Special, No. 7)', 'https://images.isbndb.com/covers/52/85/9780807565285.jpg'), + ('0312986769', 'In The Bleak Midwinter (A Rev. Clare Fergusson And Russ Van Alstyne Mystery)', 'https://images.isbndb.com/covers/67/66/9780312986766.jpg'), + ('0345413377', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/33/76/9780345413376.jpg'), + ('0345413369', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/33/69/9780345413369.jpg'), + ('0679893105', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/31/03/9780679893103.jpg'), + ('0061096091', 'Eyeshot', 'https://images.isbndb.com/covers/60/99/9780061096099.jpg'), + ('0345369068', 'If Ever I Return, Pretty Peggy-O', 'https://images.isbndb.com/covers/90/62/9780345369062.jpg'), + ('0451184718', 'The Rosewood Casket', 'https://images.isbndb.com/covers/47/19/9780451184719.jpg'), + ('0449209121', 'The Amazing Mrs. Pollifax', 'https://images.isbndb.com/covers/91/27/9780449209127.jpg'), + ('0060938455', 'Fast Food Nation: The Dark Side Of The All-American Meal', 'https://images.isbndb.com/covers/84/51/9780060938451.jpg'), + ('080411952X', 'The Unsung Hero (Troubleshooters, Book 1)', 'https://images.isbndb.com/covers/95/28/9780804119528.jpg'), + ('0060575808', 'Two Princesses Of Bamarre, The', 'https://images.isbndb.com/covers/58/09/9780060575809.jpg'), + ('0060558865', 'Ella Enchanted', 'https://images.isbndb.com/covers/88/64/9780060558864.jpg'), + ('0767912918', 'Passing For Thin: Losing Half My Weight And Finding My Self', 'https://images.isbndb.com/covers/29/14/9780767912914.jpg'), + ('0553298860', 'Bloodlines (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/88/64/9780553298864.jpg'), + ('0385335679', 'Kissing In Manhattan', 'https://images.isbndb.com/covers/56/76/9780385335676.jpg'), + ('0440122090', 'Echoes', 'https://images.isbndb.com/covers/20/98/9780440122098.jpg'), + ('0671525832', 'Someone To Watch Over Me: A Novel', 'https://images.isbndb.com/covers/58/35/9780671525835.jpg'), + ('0553279572', 'The Toynbee Convector', 'https://images.isbndb.com/covers/95/73/9780553279573.jpg'), + ('0061009059', 'One For The Money (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/90/51/9780061009051.jpg'), + ('0060930187', 'The Bell Jar: A Novel (Perennial Classics)', 'https://images.isbndb.com/covers/01/89/9780060930189.jpg'), + ('0516076272', 'A Polar Bear Called Pingo', 'https://images.isbndb.com/covers/62/70/9780516076270.jpg'), + ('0679450432', 'Dark Lady', 'https://images.isbndb.com/covers/04/36/9780679450436.jpg'), + ('0821775863', 'The Future Scrolls', 'https://images.isbndb.com/covers/58/68/9780821775868.jpg'), + ('0821770209', 'About Face', 'https://images.isbndb.com/covers/02/07/9780821770207.jpg'), + ('0670855758', 'Tarot Says Beware (Herculeah Jones Mystery)', 'https://images.isbndb.com/covers/57/59/9780670855759.jpg'), + ('0553562819', 'Globalhead', 'https://images.isbndb.com/covers/28/11/9780553562811.jpg'), + ('0446364193', 'Along Came A Spider', 'https://images.isbndb.com/covers/41/95/9780446364195.jpg'), + ('0446519138', 'Simple Abundance: A Daybook Of Comfort And Joy', 'https://images.isbndb.com/covers/91/37/9780446519137.jpg'), + ('0425179672', 'The River King', 'https://images.isbndb.com/covers/96/73/9780425179673.jpg'), + ('0061042943', 'Final Appeal', 'https://images.isbndb.com/covers/29/42/9780061042942.jpg'), + ('0399144463', 'Who Moved My Cheese?: An Amazing Way To Deal With Change In Your Work And In Your Life', 'https://images.isbndb.com/covers/44/62/9780399144462.jpg'), + ('0965404560', 'Atonement', 'https://images.isbndb.com/covers/45/63/9780965404563.jpg'), + ('006015781X', 'Why Do Clocks Run Clockwise? And Other Imponderables: Mysteries Of Everyday Life Explained', 'https://images.isbndb.com/covers/78/14/9780060157814.jpg'), + ('0060930705', 'Someone To Watch Over Me: Stories', 'https://images.isbndb.com/covers/07/07/9780060930707.jpg'), + ('0312206763', 'Stately Pursuits', 'https://images.isbndb.com/covers/67/65/9780312206765.jpg'), + ('0316116025', 'The Pinball Effect: How Renaissance Water Gardens Made The Carburetor Possible-and Other Journeys Through Knowledge (Pinball Effect)', 'https://images.isbndb.com/covers/60/22/9780316116022.jpg'), + ('0156013967', 'My Father, Dancing (Harvest Book)', 'https://images.isbndb.com/covers/39/63/9780156013963.jpg'), + ('0385314019', 'Women On The Case', 'https://images.isbndb.com/covers/40/15/9780385314015.jpg'), + ('0743444167', 'New Cardiff', 'https://images.isbndb.com/covers/41/63/9780743444163.jpg'), + ('0618231617', 'Almost', 'https://images.isbndb.com/covers/16/14/9780618231614.jpg'), + ('1567920047', 'A Tally Of Types: With Additions By Several Hands ; And With A New Introduction By Mike Parker', 'https://images.isbndb.com/covers/00/48/9781567920048.jpg'), + ('0811203220', 'Stand Still Like The Hummingbird', 'https://images.isbndb.com/covers/32/27/9780811203227.jpg'), + ('1573229148', 'Crossing The Unknown Sea: Work As A Pilgrimage Of Identity', 'https://images.isbndb.com/covers/91/42/9781573229142.jpg'), + ('0787955671', 'The Future Of Leadership: Today''s Top Leadership Thinkers Speak To Tomorrow''s Leaders', 'https://images.isbndb.com/covers/56/70/9780787955670.jpg'), + ('0425174484', 'Expecting Adam: A True Story Of Birth, Rebirth, And Everyday Magic', 'https://images.isbndb.com/covers/44/87/9780425174487.jpg'), + ('0385496907', 'No Future Without Forgiveness', 'https://images.isbndb.com/covers/69/02/9780385496902.jpg'), + ('0446523992', 'A Call To Conscience: The Landmark Speeches Of Dr. Martin Luther King, Jr.', 'https://images.isbndb.com/covers/39/98/9780446523998.jpg'), + ('0140185216', 'On The Road (Penguin 20th Century Classics)', 'https://images.isbndb.com/covers/52/18/9780140185218.jpg'), + ('0684717255', 'I And Thou', 'https://images.isbndb.com/covers/72/58/9780684717258.jpg'), + ('0486272745', 'The Prince (Dover Thrift Editions)', 'https://images.isbndb.com/covers/27/40/9780486272740.jpg'), + ('0062507249', 'Becoming A Man: Half A Life Story', 'https://images.isbndb.com/covers/72/42/9780062507242.jpg'), + ('0684801221', 'The Old Man And The Sea', 'https://images.isbndb.com/covers/12/23/9780684801223.jpg'), + ('1576737357', 'Becoming Me (Diary Of A Teenage Girl: Caitlin, Book 1)', 'https://images.isbndb.com/covers/73/54/9781576737354.jpg'), + ('0060083298', 'The Dominant Blonde', 'https://images.isbndb.com/covers/32/98/9780060083298.jpg'), + ('0446672211', 'Where The Heart Is (Oprah''s Book Club)', 'https://images.isbndb.com/covers/22/14/9780446672214.jpg'), + ('0140293248', 'The Girls'' Guide To Hunting And Fishing', 'https://images.isbndb.com/covers/32/41/9780140293241.jpg'), + ('0807070718', 'Rena''s Promise: A Story Of Sisters In Auschwitz', 'https://images.isbndb.com/covers/07/10/9780807070710.jpg'), + ('0743213831', 'America The Beautiful: A Novel', 'https://images.isbndb.com/covers/38/37/9780743213837.jpg'), + ('0345305477', 'Easy Travel To Other Planets', 'https://images.isbndb.com/covers/54/73/9780345305473.jpg'), + ('0061080519', 'The Mist And The Magic (Harper Monogram)', 'https://images.isbndb.com/covers/05/17/9780061080517.jpg'), + ('0142000205', 'Icy Sparks (Oprah''s Book Club)', 'https://images.isbndb.com/covers/02/05/9780142000205.jpg'), + ('0316735027', 'The True And Outstanding Adventures Of The Hunt Sisters: A Novel', 'https://images.isbndb.com/covers/50/25/9780316735025.jpg'), + ('193156146X', 'The Time Traveler''s Wife', 'https://images.isbndb.com/covers/14/64/9781931561464.jpg'), + ('015600710X', 'Strange Fits Of Passion: A Novel', 'https://images.isbndb.com/covers/71/08/9780156007108.jpg'), + ('0062517856', 'The Monk Downstairs: A Novel', 'https://images.isbndb.com/covers/78/52/9780062517852.jpg'), + ('0679767789', 'Lost In Place: Growing Up Absurd In Suburbia', 'https://images.isbndb.com/covers/77/87/9780679767787.jpg'), + ('0449911683', 'My Name Is Asher Lev', 'https://images.isbndb.com/covers/16/86/9780449911686.jpg'), + ('0425169626', 'Waking The Dead Tie-in', 'https://images.isbndb.com/covers/96/29/9780425169629.jpg'), + ('0449207757', 'Davita''s Harp', 'https://images.isbndb.com/covers/77/58/9780449207758.jpg'), + ('0449245691', 'The Book Of Lights', 'https://images.isbndb.com/covers/56/99/9780449245699.jpg'), + ('0140029400', 'Mimic Men', 'https://images.isbndb.com/covers/94/06/9780140029406.jpg'), + ('0140021566', 'The Mystic Masseur', 'https://images.isbndb.com/covers/15/61/9780140021561.jpg'), + ('2253004022', 'Regain', 'https://images.isbndb.com/covers/40/28/9782253004028.jpg'), + ('2253005274', 'Le Grand Meaulnes', 'https://images.isbndb.com/covers/52/78/9782253005278.jpg'), + ('225300670X', 'A L''ouest Rien De Nouveau', 'https://images.isbndb.com/covers/67/01/9782253006701.jpg'), + ('2266084372', 'Pourquoi J''ai Mangé Mon Père', 'https://images.isbndb.com/covers/43/76/9782266084376.jpg'), + ('2070362388', 'Ravage', 'https://images.isbndb.com/covers/23/87/9782070362387.jpg'), + ('2266029460', 'Voyage D''une Parisienne à Lhassa', 'https://images.isbndb.com/covers/94/69/9782266029469.jpg'), + ('2253007102', 'Les Fleurs Du Mal', 'https://images.isbndb.com/covers/71/04/9782253007104.jpg'), + ('2070417743', 'Chroniques Martiennes', 'https://images.isbndb.com/covers/77/42/9782070417742.jpg'), + ('2266033689', 'Le Diable Au Corps', 'https://images.isbndb.com/covers/36/88/9782266033688.jpg'), + ('2070384349', 'La Faute De L''abbé Mouret', 'https://images.isbndb.com/covers/43/41/9782070384341.jpg'), + ('207053880X', 'L''homme Qui Plantait Des Arbres', 'https://images.isbndb.com/covers/88/05/9782070538805.jpg'), + ('2070334368', 'La Guerre Des Boutons', 'https://images.isbndb.com/covers/43/60/9782070334360.jpg'), + ('2290314951', 'Paroles De Poilus : Lettres Et Carnets Du Front 1914-1918', 'https://images.isbndb.com/covers/49/51/9782290314951.jpg'), + ('229000510X', 'Une Porte Sur L''été', 'https://images.isbndb.com/covers/51/01/9782290005101.jpg'), + ('3492207006', 'Die Entdeckung Der Langsamkeit: Roman', 'https://images.isbndb.com/covers/70/03/9783492207003.jpg'), + ('3499177757', 'Die Grenzen Des Geschlechts', 'https://images.isbndb.com/covers/77/50/9783499177750.jpg'), + ('3889774016', 'Frauen Der Welt. Der Fortschritt Der Ungleichheit', 'https://images.isbndb.com/covers/40/19/9783889774019.jpg'), + ('3502670005', 'I Ging. Das Buch Der Wandlung. Das Große Weisheits- Und Orakelbuch Der Alten Chinesen', 'https://images.isbndb.com/covers/00/01/9783502670001.jpg'), + ('0905762487', 'African Women: Their Struggle For Economic Independence', 'https://images.isbndb.com/covers/24/87/9780905762487.jpg'), + ('3499222604', 'Die Globalisierte Frau. Berichte Aus Der Zukunft Der Ungleichheit.', 'https://images.isbndb.com/covers/26/03/9783499222603.jpg'), + ('3746670055', 'Women Are The Niggers Of The World. Über Frauen, Herrenmenschen Und Nietzsches Peitsche. (Dokument Und Ess Ay)', 'https://images.isbndb.com/covers/00/58/9783746670058.jpg'), + ('0140620427', 'Sense And Sensibility (Penguin Popular Classics)', 'https://images.isbndb.com/covers/04/29/9780140620429.jpg'), + ('3596144434', 'Der Gemietete Mann: Roman', 'https://images.isbndb.com/covers/44/33/9783596144433.jpg'), + ('3442724686', 'Der Gott Der Kleinen Dinge: Roman', 'https://images.isbndb.com/covers/46/80/9783442724680.jpg'), + ('0385504209', 'The Da Vinci Code', 'https://images.isbndb.com/covers/42/01/9780385504201.jpg'), + ('0446525502', 'The Rescue', 'https://images.isbndb.com/covers/55/03/9780446525503.jpg'), + ('0385500769', 'A Map Of The World', 'https://images.isbndb.com/covers/07/60/9780385500760.jpg'), + ('0399147012', 'Edge Of Danger', 'https://images.isbndb.com/covers/70/12/9780399147012.jpg'), + ('0670892963', 'Bridget Jones : The Edge Of Reason', 'https://images.isbndb.com/covers/29/69/9780670892969.jpg'), + ('0688180639', 'Vinegar Hill: A Novel', 'https://images.isbndb.com/covers/06/38/9780688180638.jpg'), + ('0316789089', 'The Pilot''s Wife (Oprah''s Book Club)', 'https://images.isbndb.com/covers/90/80/9780316789080.jpg'), + ('0451197275', 'Saving Private Ryan: Tie In', 'https://images.isbndb.com/covers/72/76/9780451197276.jpg'), + ('0425184129', 'Big Trouble', 'https://images.isbndb.com/covers/41/27/9780425184127.jpg'), + ('0151001006', 'Snow Falling On Cedars', 'https://images.isbndb.com/covers/10/02/9780151001002.jpg'), + ('0385505833', 'Skipping Christmas: A Novel', 'https://images.isbndb.com/covers/58/33/9780385505833.jpg'), + ('0679442790', 'The Reader', 'https://images.isbndb.com/covers/27/90/9780679442790.jpg'), + ('0525943862', 'Cheaters', 'https://images.isbndb.com/covers/38/60/9780525943860.jpg'), + ('0609605925', 'Angel Falls', 'https://images.isbndb.com/covers/59/29/9780609605929.jpg'), + ('0060191929', 'The Saving Graces: A Novel', 'https://images.isbndb.com/covers/19/24/9780060191924.jpg'), + ('0743206045', 'Daddy''s Little Girl', 'https://images.isbndb.com/covers/60/44/9780743206044.jpg'), + ('0684864843', 'The Vineyard: A Novel', 'https://images.isbndb.com/covers/48/46/9780684864846.jpg'), + ('0684867818', 'The Looking Glass: A Novel (The Locket Series)', 'https://images.isbndb.com/covers/78/16/9780684867816.jpg'), + ('0743406176', 'If Only It Were True', 'https://images.isbndb.com/covers/61/78/9780743406178.jpg'), + ('0380978539', 'Dear Stranger, Dearest Friend: A Novel', 'https://images.isbndb.com/covers/85/33/9780380978533.jpg'), + ('0679603352', 'The Cider House Rules: A Novel (Modern Library)', 'https://images.isbndb.com/covers/33/51/9780679603351.jpg'), + ('0679410430', 'Lolita (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/04/30/9780679410430.jpg'), + ('0446523569', 'Message In A Bottle', 'https://images.isbndb.com/covers/35/61/9780446523561.jpg'), + ('0671042556', 'Blackbird: A Childhood Lost And Found', 'https://images.isbndb.com/covers/25/54/9780671042554.jpg'), + ('0679450440', 'Protect And Defend', 'https://images.isbndb.com/covers/04/43/9780679450443.jpg'), + ('0140107649', 'Blue Heaven (Contemporary American Fiction)', 'https://images.isbndb.com/covers/76/47/9780140107647.jpg'), + ('0609606727', 'Julie And Romeo: A Novel', 'https://images.isbndb.com/covers/67/28/9780609606728.jpg'), + ('0446527793', 'The Guardian', 'https://images.isbndb.com/covers/77/98/9780446527798.jpg'), + ('0446531332', 'Nights In Rodanthe', 'https://images.isbndb.com/covers/13/37/9780446531337.jpg'), + ('1570717257', 'Man And Boy', 'https://images.isbndb.com/covers/72/53/9781570717253.jpg'), + ('0060192631', 'One Heart: A Novel', 'https://images.isbndb.com/covers/26/31/9780060192631.jpg'), + ('0385420161', 'Like Water For Chocolate: A Novel In Monthly Installments, With Recipes, Romances, And Home Remedies', 'https://images.isbndb.com/covers/01/67/9780385420167.jpg'), + ('0345339711', 'The Two Towers (The Lord Of The Rings, Part 2)', 'https://images.isbndb.com/covers/97/13/9780345339713.jpg'), + ('052594463X', 'All Of Me: A Voluptuous Tale', 'https://images.isbndb.com/covers/46/38/9780525944638.jpg'), + ('039304016X', 'The Perfect Storm: A True Story Of Men Against The Sea', 'https://images.isbndb.com/covers/01/66/9780393040166.jpg'), + ('0399147128', 'The Villa', 'https://images.isbndb.com/covers/71/28/9780399147128.jpg'), + ('0670031046', 'In This Mountain (The Mitford Years, Book 7)', 'https://images.isbndb.com/covers/10/47/9780670031047.jpg'), + ('0394574745', 'All The Pretty Horses', 'https://images.isbndb.com/covers/47/45/9780394574745.jpg'), + ('0316969443', 'Suzanne''s Diary For Nicholas', 'https://images.isbndb.com/covers/94/44/9780316969444.jpg'), + ('0743230051', 'He Sees You When You''re Sleeping : A Novel', 'https://images.isbndb.com/covers/00/56/9780743230056.jpg'), + ('0316693200', '2nd Chance', 'https://images.isbndb.com/covers/32/02/9780316693202.jpg'), + ('0684868911', 'The Carousel: A Novel', 'https://images.isbndb.com/covers/89/12/9780684868912.jpg'), + ('0842336214', 'The Promise Remains', 'https://images.isbndb.com/covers/62/15/9780842336215.jpg'), + ('0399148582', 'You Cannot Be Serious', 'https://images.isbndb.com/covers/85/83/9780399148583.jpg'), + ('0684864320', 'LAKE NEWS : A Novel', 'https://images.isbndb.com/covers/43/27/9780684864327.jpg'), + ('0525944834', 'Liar''s Game', 'https://images.isbndb.com/covers/48/36/9780525944836.jpg'), + ('0345428900', 'Out Of The Blue', 'https://images.isbndb.com/covers/89/05/9780345428905.jpg'), + ('0451176812', 'Voice Of The Eagle', 'https://images.isbndb.com/covers/68/13/9780451176813.jpg'), + ('0671525794', 'The Kingdom By The Sea: A Journey Around Great Britain', 'https://images.isbndb.com/covers/57/98/9780671525798.jpg'), + ('0718144538', 'Shattered', 'https://images.isbndb.com/covers/45/31/9780718144531.jpg'), + ('0446602086', 'The Proud And The Free', 'https://images.isbndb.com/covers/20/82/9780446602082.jpg'), + ('0394551427', 'SHOAH', 'https://images.isbndb.com/covers/14/25/9780394551425.jpg'), + ('0064407667', 'The Bad Beginning (A Series Of Unfortunate Events #1)', 'https://images.isbndb.com/covers/76/63/9780064407663.jpg'), + ('0007100221', 'Terror Firma', 'https://images.isbndb.com/covers/02/24/9780007100224.jpg'), + ('2253148539', 'Le Loup-garou', 'https://images.isbndb.com/covers/85/31/9782253148531.jpg'), + ('2253043974', 'Chronique D''une Mort Annoncée', 'https://images.isbndb.com/covers/39/73/9782253043973.jpg'), + ('2020315491', 'Le Neveu D''Amérique', 'https://images.isbndb.com/covers/54/94/9782020315494.jpg'), + ('0747549923', 'Last Exit To Brooklyn', 'https://images.isbndb.com/covers/99/25/9780747549925.jpg'), + ('0743462335', 'More George W Bushisms', 'https://images.isbndb.com/covers/23/34/9780743462334.jpg'), + ('0140253580', 'Therapy', 'https://images.isbndb.com/covers/35/80/9780140253580.jpg'), + ('0947782141', 'SCOTTISH GHOSTS', 'https://images.isbndb.com/covers/21/46/9780947782146.jpg'), + ('057120354X', 'Awful End (Eddie Dickens Trilogy)', 'https://images.isbndb.com/covers/35/43/9780571203543.jpg'), + ('0349101779', 'Wasp Factory Uk', 'https://images.isbndb.com/covers/17/74/9780349101774.jpg'), + ('0743222229', 'George W. Bushisms : The Slate Book Of The Accidental Wit And Wisdom Of Our 43rd President', 'https://images.isbndb.com/covers/22/28/9780743222228.jpg'), + ('185479549X', 'World''s Stupidest Laws', 'https://images.isbndb.com/covers/54/96/9781854795496.jpg'), + ('0140292918', 'Of Mice And Men (Steinbeck Essentials)', 'https://images.isbndb.com/covers/29/16/9780140292916.jpg'), + ('1854795554', 'The World''s Stupidest Signs', 'https://images.isbndb.com/covers/55/57/9781854795557.jpg'), + ('1858813093', 'Nessie The Loch Ness Monster', 'https://images.isbndb.com/covers/30/97/9781858813097.jpg'), + ('2871290911', 'XIII, Tome 13, L''enquête : The XIII Mystery', 'https://images.isbndb.com/covers/09/19/9782871290919.jpg'), + ('0198604025', 'How Not To Say What You Mean: A Dictionary Of Euphemisms (Oxford Paperback Reference)', 'https://images.isbndb.com/covers/40/20/9780198604020.jpg'), + ('1842151053', 'Cooking For One (Cook''s Essentials)', 'https://images.isbndb.com/covers/10/51/9781842151051.jpg'), + ('2253063339', 'Les Fourmis', 'https://images.isbndb.com/covers/33/39/9782253063339.jpg'), + ('1860198597', 'How To Draw Celtic Knotwork: A Practical Handbook', 'https://images.isbndb.com/covers/85/95/9781860198595.jpg'), + ('0767908473', 'The Sorcerer''s Companion: A Guide To The Magical World Of Harry Potter', 'https://images.isbndb.com/covers/84/74/9780767908474.jpg'), + ('1842040154', 'Celtic Myths And Legends', 'https://images.isbndb.com/covers/01/57/9781842040157.jpg'), + ('0140622063', 'Scottish Folk And Fairy Tales (Penguin Popular Classics)', 'https://images.isbndb.com/covers/20/65/9780140622065.jpg'), + ('0571209521', 'Terrible Times (The Eddie Dickens Trilogy, Book 3)', 'https://images.isbndb.com/covers/95/21/9780571209521.jpg'), + ('2264009306', 'Cantilènes En Gelée', 'https://images.isbndb.com/covers/93/02/9782264009302.jpg'), + ('1841952931', 'Glasgow Zen', 'https://images.isbndb.com/covers/29/32/9781841952932.jpg'), + ('0890877564', 'Totally Muffins Cookbook (Totally Cookbooks)', 'https://images.isbndb.com/covers/75/62/9780890877562.jpg'), + ('1405200677', 'Tigger''s Little Book Of Diet And Exercise (Wisdom Of Pooh)', 'https://images.isbndb.com/covers/06/77/9781405200677.jpg'), + ('0416196772', 'Eeyore''s Little Book Of Gloom (Wisdom Of Pooh)', 'https://images.isbndb.com/covers/67/71/9780416196771.jpg'), + ('0747538069', 'Adventures Of Dougal (Magic Roundabout)', 'https://images.isbndb.com/covers/80/66/9780747538066.jpg'), + ('0375501347', 'Amy And Isabelle', 'https://images.isbndb.com/covers/13/40/9780375501340.jpg'), + ('0060927240', 'Rule Of The Bone: A Novel', 'https://images.isbndb.com/covers/72/40/9780060927240.jpg'), + ('0316776963', 'Me Talk Pretty One Day', 'https://images.isbndb.com/covers/69/67/9780316776967.jpg'), + ('156341029X', 'Stone Butch Blues', 'https://images.isbndb.com/covers/02/91/9781563410291.jpg'), + ('0060934719', 'Stardust', 'https://images.isbndb.com/covers/47/12/9780060934712.jpg'), + ('1886383421', 'Fires Of Aggar (The Amazons Of Aggar)', 'https://images.isbndb.com/covers/34/25/9781886383425.jpg'), + ('1888451084', 'Kamikaze Lust', 'https://images.isbndb.com/covers/10/85/9781888451085.jpg'), + ('0451450256', 'Gossamer Axe', 'https://images.isbndb.com/covers/02/58/9780451450258.jpg'), + ('1555835953', 'Witchfire', 'https://images.isbndb.com/covers/59/58/9781555835958.jpg'), + ('0395877563', 'Seven Moves', 'https://images.isbndb.com/covers/75/62/9780395877562.jpg'), + ('0962893862', 'Return To Isis', 'https://images.isbndb.com/covers/38/65/9780962893865.jpg'), + ('1555834531', 'Hood', 'https://images.isbndb.com/covers/45/31/9781555834531.jpg'), + ('0393318435', 'Leaving Pipe Shop: Memories Of Kin', 'https://images.isbndb.com/covers/84/32/9780393318432.jpg'), + ('0889740828', 'Love Ruins Everything', 'https://images.isbndb.com/covers/08/22/9780889740822.jpg'), + ('1563410443', 'Skin: Talking About Sex, Class And Literature', 'https://images.isbndb.com/covers/04/44/9781563410444.jpg'), + ('1563899388', 'Death: At Death''s Door (Death #1)', 'https://images.isbndb.com/covers/93/86/9781563899386.jpg'), + ('1563411148', 'The Second Coming Of Curly Red', 'https://images.isbndb.com/covers/11/44/9781563411144.jpg'), + ('0553579681', 'Night Mares', 'https://images.isbndb.com/covers/96/80/9780553579680.jpg'), + ('0553579673', 'Hen''s Teeth', 'https://images.isbndb.com/covers/96/73/9780553579673.jpg'), + ('0451181379', 'The Door To December', 'https://images.isbndb.com/covers/13/74/9780451181374.jpg'), + ('0786889160', 'No Shirt. No Shoes....No Problem!', 'https://images.isbndb.com/covers/91/67/9780786889167.jpg'), + ('0345370740', 'The Scions Of Shannara (The Heritage Of Shannara)', 'https://images.isbndb.com/covers/07/47/9780345370747.jpg'), + ('0553574175', 'Rebel Dawn (Star Wars: The Han Solo Trilogy, Book 3)', 'https://images.isbndb.com/covers/41/73/9780553574173.jpg'), + ('0553574167', 'The Hutt Gambit (Star Wars: The Han Solo Trilogy, Vol. 2)', 'https://images.isbndb.com/covers/41/66/9780553574166.jpg'), + ('0553574159', 'The Paradise Snare (Star Wars, The Han Solo Trilogy #1) (Book 1)', 'https://images.isbndb.com/covers/41/59/9780553574159.jpg'), + ('0312287240', 'A Year Of Full Moons: A Novel', 'https://images.isbndb.com/covers/72/45/9780312287245.jpg'), + ('0679801146', 'Alanna: The First Adventure (Song Of The Lioness, Vol. 1)', 'https://images.isbndb.com/covers/11/46/9780679801146.jpg'), + ('0446300101', 'The Beans Of Egypt, Maine', 'https://images.isbndb.com/covers/01/00/9780446300100.jpg'), + ('0821750410', 'Warrior Moon', 'https://images.isbndb.com/covers/04/14/9780821750414.jpg'), + ('0425142485', 'The Funhouse', 'https://images.isbndb.com/covers/24/86/9780425142486.jpg'), + ('0451456548', 'Cold Iron', 'https://images.isbndb.com/covers/65/40/9780451456540.jpg'), + ('0060006048', 'Circle Of Three #12: Written In The Stars', 'https://images.isbndb.com/covers/60/44/9780060006044.jpg'), + ('0312906552', 'The Space Merchants', 'https://images.isbndb.com/covers/65/59/9780312906559.jpg'), + ('0440117291', 'Dreamsnake', 'https://images.isbndb.com/covers/72/92/9780440117292.jpg'), + ('0425049981', 'Titan', 'https://images.isbndb.com/covers/99/83/9780425049983.jpg'), + ('0374386676', 'The Year They Burned The Books', 'https://images.isbndb.com/covers/66/72/9780374386672.jpg'), + ('0786886463', 'A Density Of Souls', 'https://images.isbndb.com/covers/64/63/9780786886463.jpg'), + ('0345395379', 'Slow River', 'https://images.isbndb.com/covers/53/75/9780345395375.jpg'), + ('0380788497', 'Changer', 'https://images.isbndb.com/covers/84/91/9780380788491.jpg'), + ('0307215342', 'Trixie Belden And The Mystery Off Glen Road', 'https://images.isbndb.com/covers/53/45/9780307215345.jpg'), + ('0374343381', 'Lark In The Morning', 'https://images.isbndb.com/covers/33/85/9780374343385.jpg'), + ('0345403339', 'Saving Grace', 'https://images.isbndb.com/covers/33/39/9780345403339.jpg'), + ('0440226694', 'Lena', 'https://images.isbndb.com/covers/66/97/9780440226697.jpg'), + ('0440219604', 'I Hadn''t Meant To Tell You This', 'https://images.isbndb.com/covers/96/06/9780440219606.jpg'), + ('0767903285', 'Raise The Roof: The Inspiring Inside Story Of The Tennessee Lady Volunteers Undefeated 1997-98 Season', 'https://images.isbndb.com/covers/32/88/9780767903288.jpg'), + ('0345429176', 'UFOs, JFK, And Elvis: Conspiracies You Don''t Have To Be Crazy To Believe', 'https://images.isbndb.com/covers/91/79/9780345429179.jpg'), + ('038529929X', 'Hannibal: A Novel', 'https://images.isbndb.com/covers/92/99/9780385299299.jpg'), + ('1573229571', 'About A Boy (Movie Tie-In)', 'https://images.isbndb.com/covers/95/79/9781573229579.jpg'), + ('0345418778', 'Mostly Harmless', 'https://images.isbndb.com/covers/87/77/9780345418777.jpg'), + ('0517201658', 'The Thorn Birds (Modern Classics)', 'https://images.isbndb.com/covers/16/57/9780517201657.jpg'), + ('0743211383', 'Dreamcatcher', 'https://images.isbndb.com/covers/13/83/9780743211383.jpg'), + ('039914370X', 'Sudden Mischief: A Spenser Novel', 'https://images.isbndb.com/covers/37/00/9780399143700.jpg'), + ('1884777805', 'Elements Of Programming With Perl', 'https://images.isbndb.com/covers/78/06/9781884777806.jpg'), + ('0312977905', 'To Catch A Cat', 'https://images.isbndb.com/covers/79/00/9780312977900.jpg'), + ('0812521331', 'People Of The Wolf (The First North Americans Series, Book 1)', 'https://images.isbndb.com/covers/13/37/9780812521337.jpg'), + ('0451205421', 'The Door To December', 'https://images.isbndb.com/covers/54/21/9780451205421.jpg'), + ('0894342789', 'College Majors And Careers: A Resource Guide For Effective Life Planning (College Majors & Careers: A Resource Guide For Effective Life Planning)', 'https://images.isbndb.com/covers/27/83/9780894342783.jpg'), + ('0440218535', 'Smilla''s Sense Of Snow', 'https://images.isbndb.com/covers/85/31/9780440218531.jpg'), + ('0449207595', 'The Grass Is Always Greener Over The Septic Tank', 'https://images.isbndb.com/covers/75/98/9780449207598.jpg'), + ('0670844594', 'Rumpole On Trial', 'https://images.isbndb.com/covers/45/93/9780670844593.jpg'), + ('039457513X', 'Billy Bathgate', 'https://images.isbndb.com/covers/51/31/9780394575131.jpg'), + ('0394559487', 'Citizens: A Chronicle Of The French Revolution', 'https://images.isbndb.com/covers/94/83/9780394559483.jpg'), + ('0804001944', 'The Man Who Killed The Deer: A Novel Of Pueblo Indian Life', 'https://images.isbndb.com/covers/19/46/9780804001946.jpg'), + ('0590897985', 'The Music Of Dolphins', 'https://images.isbndb.com/covers/79/83/9780590897983.jpg'), + ('0689832877', 'Sunwing (Aladdin Fantasy)', 'https://images.isbndb.com/covers/28/71/9780689832871.jpg'), + ('0689829698', 'Caddie Woodlawn - Newbery Promo ''99 (Aladdin Fiction)', 'https://images.isbndb.com/covers/96/97/9780689829697.jpg'), + ('0439042917', 'The Hork-Bajir Chronicles (Animorphs Series)', 'https://images.isbndb.com/covers/29/18/9780439042918.jpg'), + ('0064409457', 'The Silver Chair (The Chronicles Of Narnia, Full-Color Collector''s Edition)', 'https://images.isbndb.com/covers/94/52/9780064409452.jpg'), + ('0064405052', 'The Magician''s Nephew (Narnia)', 'https://images.isbndb.com/covers/50/58/9780064405058.jpg'), + ('043922165X', 'Circles In The Stream (Avalon Web Of Magic, Book 1)', 'https://images.isbndb.com/covers/16/58/9780439221658.jpg'), + ('0152162445', 'High Wizardry', 'https://images.isbndb.com/covers/24/43/9780152162443.jpg'), + ('0152162577', 'Deep Wizardry: The Second Book In The Young Wizards Series', 'https://images.isbndb.com/covers/25/73/9780152162573.jpg'), + ('015216250X', 'So You Want To Be A Wizard: The First Book In The Young Wizards Series', 'https://images.isbndb.com/covers/25/04/9780152162504.jpg'), + ('1562477528', 'Going For Great (American Girl (Paperback Unnumbered))', 'https://images.isbndb.com/covers/75/23/9781562477523.jpg'), + ('0439221676', 'All That Glitters (Avalon, 2)', 'https://images.isbndb.com/covers/16/72/9780439221672.jpg'), + ('0439221684', 'Cry Of The Wolf (Avalon Web Of Magic)', 'https://images.isbndb.com/covers/16/89/9780439221689.jpg'), + ('0439221714', 'Avalon: Web Of Magic #4: Secret Of The Unicorn', 'https://images.isbndb.com/covers/17/19/9780439221719.jpg'), + ('0439221706', 'Spellsinger (Avalon: Web Of Magic, Book 5)', 'https://images.isbndb.com/covers/17/02/9780439221702.jpg'), + ('0439221730', 'Avalon: Web Of Magic #6: Trial By Fire', 'https://images.isbndb.com/covers/17/33/9780439221733.jpg'), + ('0440415993', 'Ties That Bind, Ties That Break', 'https://images.isbndb.com/covers/59/92/9780440415992.jpg'), + ('0895872102', 'The Hauntings Of Williamsburg, Yorktown, And Jamestown', 'https://images.isbndb.com/covers/21/04/9780895872104.jpg'), + ('068983585X', 'The Janitor''s Boy', 'https://images.isbndb.com/covers/58/58/9780689835858.jpg'), + ('0345391802', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/18/03/9780345391803.jpg'), + ('0440219078', 'The Giver', 'https://images.isbndb.com/covers/90/71/9780440219071.jpg'), + ('185424597X', 'The Heavenly Man: The Remarkable True Story Of Chinese Christian Brother Yun', 'https://images.isbndb.com/covers/59/77/9781854245977.jpg'), + ('2080105434', 'The Little Book Of Chocolate', 'https://images.isbndb.com/covers/54/31/9782080105431.jpg'), + ('349913358X', 'Das Schlampenbuch', 'https://images.isbndb.com/covers/35/89/9783499133589.jpg'), + ('3257201761', 'Die Zwei Gesichter Des Januars', 'https://images.isbndb.com/covers/17/65/9783257201765.jpg'), + ('3404121686', 'Nacht über Den Wassern: Roman', 'https://images.isbndb.com/covers/16/87/9783404121687.jpg'), + ('3404118960', 'Die Säulen Der Erde: Roman', 'https://images.isbndb.com/covers/89/60/9783404118960.jpg'), + ('0345356578', 'A Man Rides Through', 'https://images.isbndb.com/covers/65/74/9780345356574.jpg'), + ('0345346971', 'The Mirror Of Her Dreams (Mordant''s Need)', 'https://images.isbndb.com/covers/69/71/9780345346971.jpg'), + ('0753804700', 'Reader', 'https://images.isbndb.com/covers/47/04/9780753804704.jpg'), + ('0451155750', 'The Dead Zone (Signet)', 'https://images.isbndb.com/covers/57/57/9780451155757.jpg'), + ('0786890436', 'The Diary Of Ellen Rimbauer: My Life At Rose Red', 'https://images.isbndb.com/covers/04/39/9780786890439.jpg'), + ('0415928087', 'A New Germany In A New Europe', 'https://images.isbndb.com/covers/80/83/9780415928083.jpg'), + ('0521427150', 'Belonging In The Two Berlins: Kin, State, Nation (Cambridge Studies In Social And Cultural Anthropology)', 'https://images.isbndb.com/covers/71/59/9780521427159.jpg'), + ('0812923278', 'The Great Depression: America 1929-1941', 'https://images.isbndb.com/covers/32/78/9780812923278.jpg'), + ('0884111342', 'Lady Of The Shroud', 'https://images.isbndb.com/covers/13/44/9780884111344.jpg'), + ('0345428544', 'Dark Tide I: Onslaught (Star Wars: The New Jedi Order, Book 2)', 'https://images.isbndb.com/covers/85/47/9780345428547.jpg'), + ('0671694049', 'The Long Dark Tea-Time Of The Soul', 'https://images.isbndb.com/covers/40/43/9780671694043.jpg'), + ('080901582X', 'The Return Of Simple', 'https://images.isbndb.com/covers/58/25/9780809015825.jpg'), + ('0449006557', 'Half Moon Street (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/65/59/9780449006559.jpg'), + ('0373250339', 'A Minor Indiscretion (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/03/32/9780373250332.jpg'), + ('0380820447', 'For Better, For Worse: A Novel', 'https://images.isbndb.com/covers/04/43/9780380820443.jpg'), + ('0385497679', 'Hidden In Plain View: A Secret Story Of Quilts And The Underground Railroad', 'https://images.isbndb.com/covers/76/71/9780385497671.jpg'), + ('0451454243', 'The Forest House (The Mists Of Avalon: Prequel)', 'https://images.isbndb.com/covers/42/49/9780451454249.jpg'), + ('0941423042', 'American Poetry Since 1970: Up Late', 'https://images.isbndb.com/covers/30/45/9780941423045.jpg'), + ('0373871562', 'Twin Blessings (Love Inspired #149)', 'https://images.isbndb.com/covers/15/68/9780373871568.jpg'), + ('0553101439', 'West Of Dodge', 'https://images.isbndb.com/covers/14/30/9780553101430.jpg'), + ('0898151910', 'How To Make A Thousand Dollars A Minute: Negotiating Salaries And Raises', 'https://images.isbndb.com/covers/19/16/9780898151916.jpg'), + ('0835949362', 'Non-manipulative Selling', 'https://images.isbndb.com/covers/93/61/9780835949361.jpg'), + ('0880701102', 'Come Before Winter-- And Share My Hope', 'https://images.isbndb.com/covers/11/05/9780880701105.jpg'), + ('039914563X', 'The Bear And The Dragon', 'https://images.isbndb.com/covers/56/36/9780399145636.jpg'), + ('0312853238', 'Ender''s Game (Ender Wiggin Saga)', 'https://images.isbndb.com/covers/32/35/9780312853235.jpg'), + ('0688048730', 'Thinking On Paper', 'https://images.isbndb.com/covers/87/30/9780688048730.jpg'), + ('0425161722', 'Net Force (Tom Clancy''s Net Force, Book 1)', 'https://images.isbndb.com/covers/17/22/9780425161722.jpg'), + ('0385493800', 'The Testament', 'https://images.isbndb.com/covers/38/02/9780385493802.jpg'), + ('0849916399', 'The Internet Church', 'https://images.isbndb.com/covers/63/97/9780849916397.jpg'), + ('1928791107', 'The Mp3 And Internet Audio Handbook: Your Guide To The Digital Music Revolution', 'https://images.isbndb.com/covers/11/02/9781928791102.jpg'), + ('067175145X', 'The Way Things Ought To Be', 'https://images.isbndb.com/covers/14/56/9780671751456.jpg'), + ('0440211727', 'A Time To Kill', 'https://images.isbndb.com/covers/17/23/9780440211723.jpg'), + ('0877192820', 'The Truth About Texas', 'https://images.isbndb.com/covers/28/24/9780877192824.jpg'), + ('0380002450', 'The Awakening', 'https://images.isbndb.com/covers/24/50/9780380002450.jpg'), + ('0793133955', 'Wall Street''s Picks For 2000', 'https://images.isbndb.com/covers/39/56/9780793133956.jpg'), + ('0394178017', 'Poetics Of The New American Poetry', 'https://images.isbndb.com/covers/80/11/9780394178011.jpg'), + ('0425134350', 'Patriot Games', 'https://images.isbndb.com/covers/43/51/9780425134351.jpg'), + ('0385479689', 'Dead Men Do Tell Tales: The Strange And Fascinating Cases Of A Forensic Anthropologist', 'https://images.isbndb.com/covers/96/84/9780385479684.jpg'), + ('0380754851', 'Moonlighting: 148 Great Ways To Make Money On The Side', 'https://images.isbndb.com/covers/48/54/9780380754854.jpg'), + ('0380538504', 'Amanda Miranda', 'https://images.isbndb.com/covers/85/08/9780380538508.jpg'), + ('044661162X', 'Chasing The Dime', 'https://images.isbndb.com/covers/16/26/9780446611626.jpg'), + ('0671742566', 'Tender Triumph (Sonnet Books)', 'https://images.isbndb.com/covers/25/60/9780671742560.jpg'), + ('0515122408', 'The Cat Who Tailed A Thief', 'https://images.isbndb.com/covers/24/04/9780515122404.jpg'), + ('0440222818', 'Guilt (Abe Glitsky)', 'https://images.isbndb.com/covers/28/11/9780440222811.jpg'), + ('0451204050', 'On Secret Service', 'https://images.isbndb.com/covers/40/59/9780451204059.jpg'), + ('038533334X', 'Charming Billy', 'https://images.isbndb.com/covers/33/44/9780385333344.jpg'), + ('0449131548', 'All Days Of My Life', 'https://images.isbndb.com/covers/15/41/9780449131541.jpg'), + ('0440120470', 'Dinner Party, The', 'https://images.isbndb.com/covers/04/76/9780440120476.jpg'), + ('0451188209', 'Murder, She Wrote: A Palette For Murder', 'https://images.isbndb.com/covers/82/05/9780451188205.jpg'), + ('0440130913', 'The Golden Cup', 'https://images.isbndb.com/covers/09/18/9780440130918.jpg'), + ('0449001954', 'Murder At The Library Of Congress (The Capital Crimes Series)', 'https://images.isbndb.com/covers/19/50/9780449001950.jpg'), + ('0345404777', 'No Safe Place', 'https://images.isbndb.com/covers/47/70/9780345404770.jpg'), + ('0451185277', 'Thorns Of Truth', 'https://images.isbndb.com/covers/52/73/9780451185273.jpg'), + ('0440224829', 'Granny Dan', 'https://images.isbndb.com/covers/48/22/9780440224822.jpg'), + ('0671779338', 'Border Bride', 'https://images.isbndb.com/covers/93/37/9780671779337.jpg'), + ('0515134368', 'The Penwyth Curse (Song Series)', 'https://images.isbndb.com/covers/43/60/9780515134360.jpg'), + ('0380759497', 'The Color Of Her Panties (Xanth #15)', 'https://images.isbndb.com/covers/94/91/9780380759491.jpg'), + ('3442098424', 'Chronik Der Vampire, Bd. 2: Der Fürst Der Finsternis', 'https://images.isbndb.com/covers/84/22/9783442098422.jpg'), + ('0394578791', 'A Reporter''s Life', 'https://images.isbndb.com/covers/87/98/9780394578798.jpg'), + ('1558505377', 'Jacob Marley''s Christmas Carol', 'https://images.isbndb.com/covers/53/77/9781558505377.jpg'), + ('0373245696', 'Practice Makes Pregnant (Manhattan Multiples) (Silhouette Special Edition, No 1569)', 'https://images.isbndb.com/covers/56/97/9780373245697.jpg'), + ('0743201078', 'The Secret Lives Of Girls: What Good Girls Really Do--Sex Play, Aggression, And Their Guilt', 'https://images.isbndb.com/covers/10/70/9780743201070.jpg'), + ('068983571X', 'Hound Of The Baskervilles (Aladdin Classics)', 'https://images.isbndb.com/covers/57/11/9780689835711.jpg'), + ('0553256785', 'Sleeping Murder', 'https://images.isbndb.com/covers/67/89/9780553256789.jpg'), + ('0892967994', 'The Fractal Murders (Pepper Keane Mysteries)', 'https://images.isbndb.com/covers/79/95/9780892967995.jpg'), + ('0061064505', 'Blowtorch Psycho.Com (Bone Chillers)', 'https://images.isbndb.com/covers/45/00/9780061064500.jpg'), + ('1551668785', 'Final Stand', 'https://images.isbndb.com/covers/87/89/9781551668789.jpg'), + ('0836230868', 'Christmas: A Holiday Treasury', 'https://images.isbndb.com/covers/08/64/9780836230864.jpg'), + ('0381999866', 'Magic House Of Numbers.', 'https://images.isbndb.com/covers/98/65/9780381999865.jpg'), + ('0380817144', 'Lord Of The Silent (Amelia Peabody, Book 13)', 'https://images.isbndb.com/covers/71/46/9780380817146.jpg'), + ('0380752115', 'Whisper To Me Of Love', 'https://images.isbndb.com/covers/21/19/9780380752119.jpg'), + ('0553212583', 'Wuthering Heights (Bantam Classics)', 'https://images.isbndb.com/covers/25/87/9780553212587.jpg'), + ('0446364762', 'The Stars Shine Down', 'https://images.isbndb.com/covers/47/68/9780446364768.jpg'), + ('0425166619', 'Toxin', 'https://images.isbndb.com/covers/66/11/9780425166611.jpg'), + ('061312975X', 'This Present Darkness', 'https://images.isbndb.com/covers/97/56/9780613129756.jpg'), + ('0765341972', 'The Mothman Prophecies', 'https://images.isbndb.com/covers/19/76/9780765341976.jpg'), + ('0590514776', 'Meet The Stars Of Buffy The Vampire Slayer', 'https://images.isbndb.com/covers/47/74/9780590514774.jpg'), + ('0373037430', 'Rush To The Altar (Twin Brides)', 'https://images.isbndb.com/covers/74/38/9780373037438.jpg'), + ('0064472779', 'All-American Girl', 'https://images.isbndb.com/covers/27/77/9780064472777.jpg'), + ('0553581279', 'The Silver Metal Lover', 'https://images.isbndb.com/covers/12/70/9780553581270.jpg'), + ('0373750013', 'The Virgin''s Secret Marriage', 'https://images.isbndb.com/covers/00/16/9780373750016.jpg'), + ('0393030342', 'A Christmas Story', 'https://images.isbndb.com/covers/03/41/9780393030341.jpg'), + ('0553561618', 'Dark Paradise: A Novel', 'https://images.isbndb.com/covers/16/16/9780553561616.jpg'), + ('0312422156', 'Middlesex: A Novel', 'https://images.isbndb.com/covers/21/58/9780312422158.jpg'), + ('0425139069', 'Somebody Help Me', 'https://images.isbndb.com/covers/90/66/9780425139066.jpg'), + ('0450029956', 'Other Worlds (SF Master)', 'https://images.isbndb.com/covers/99/50/9780450029950.jpg'), + ('0130139165', 'Introduction To Fire Prevention (5th Edition)', 'https://images.isbndb.com/covers/91/60/9780130139160.jpg'), + ('0373196741', 'To Catch A Sheik (Desert Brides)', 'https://images.isbndb.com/covers/67/46/9780373196746.jpg'), + ('0451524489', 'The Awakening And Selected Stories Of Kate Chopin (Signet Classic)', 'https://images.isbndb.com/covers/44/85/9780451524485.jpg'), + ('0140065172', 'Ordinary People', 'https://images.isbndb.com/covers/51/76/9780140065176.jpg'), + ('044022165X', 'The Rainmaker', 'https://images.isbndb.com/covers/16/54/9780440221654.jpg'), + ('0373123485', 'On The Tycoon''s Terms Do Not Disturb! (Harlequin Presents)', 'https://images.isbndb.com/covers/34/83/9780373123483.jpg'), + ('0373123108', 'Sleeping Partners (Nine To Five)', 'https://images.isbndb.com/covers/31/00/9780373123100.jpg'), + ('0590225170', 'The Real Mother Goose', 'https://images.isbndb.com/covers/51/75/9780590225175.jpg'), + ('0399143165', 'Toxin', 'https://images.isbndb.com/covers/31/68/9780399143168.jpg'), + ('044132231X', 'Heathcliff Gone Fishin''!', 'https://images.isbndb.com/covers/23/12/9780441322312.jpg'), + ('0425124347', 'The Bad Place', 'https://images.isbndb.com/covers/43/45/9780425124345.jpg'), + ('0786889705', 'Two For Texas', 'https://images.isbndb.com/covers/97/09/9780786889709.jpg'), + ('0312282990', 'The Amazing Adventures Of Kavalier & Clay', 'https://images.isbndb.com/covers/29/98/9780312282998.jpg'), + ('0425137945', 'Greygallows', 'https://images.isbndb.com/covers/79/49/9780425137949.jpg'), + ('042512892X', 'Into The Darkness', 'https://images.isbndb.com/covers/89/23/9780425128923.jpg'), + ('0425113892', 'Someone In The House', 'https://images.isbndb.com/covers/38/99/9780425113899.jpg'), + ('0394820371', 'The Phantom Tollbooth', 'https://images.isbndb.com/covers/03/78/9780394820378.jpg'), + ('0449134482', 'Dances With Wolves', 'https://images.isbndb.com/covers/44/81/9780449134481.jpg'), + ('014036336X', 'The House With A Clock In Its Walls (Lewis Barnavelt)', 'https://images.isbndb.com/covers/33/64/9780140363364.jpg'), + ('0375821813', 'Hoot', 'https://images.isbndb.com/covers/18/13/9780375821813.jpg'), + ('0812516826', 'Catnap: A Midnight Louie Mystery (Midnight Louie Mysteries)', 'https://images.isbndb.com/covers/68/21/9780812516821.jpg'), + ('0345348036', 'The Princess Bride: S Morgenstern''s Classic Tale Of True Love And High Adventure', 'https://images.isbndb.com/covers/80/36/9780345348036.jpg'), + ('0679420118', 'A Dangerous Place: California''s Unsettling Fate', 'https://images.isbndb.com/covers/01/18/9780679420118.jpg'), + ('0871137380', 'Black Hawk Down: A Story Of Modern War', 'https://images.isbndb.com/covers/73/88/9780871137388.jpg'), + ('0741409690', 'The Burberry Style', 'https://images.isbndb.com/covers/96/90/9780741409690.jpg'), + ('0741407213', 'Heavier Than Air: Riches To Burn In Balona (Balona Books)', 'https://images.isbndb.com/covers/72/14/9780741407214.jpg'), + ('0759612277', 'A Little Honesty: Trials And Triumphs Of A Prince Of Balona', 'https://images.isbndb.com/covers/22/73/9780759612273.jpg'), + ('0741402858', 'The Balona Klongs', 'https://images.isbndb.com/covers/28/51/9780741402851.jpg'), + ('1585007366', 'Sang Froyd (Balona Books)', 'https://images.isbndb.com/covers/73/63/9781585007363.jpg'), + ('074141127X', 'The Chocolate Korndog', 'https://images.isbndb.com/covers/12/73/9780741411273.jpg'), + ('0741403471', 'One Brick Shy', 'https://images.isbndb.com/covers/34/76/9780741403476.jpg'), + ('0741403781', 'Spring Break', 'https://images.isbndb.com/covers/37/80/9780741403780.jpg'), + ('0741403056', 'Focusing The Private Eye', 'https://images.isbndb.com/covers/30/56/9780741403056.jpg'), + ('0741405784', 'A Cuisine Of Leftovers', 'https://images.isbndb.com/covers/57/84/9780741405784.jpg'), + ('0741402912', 'Finding Dad', 'https://images.isbndb.com/covers/29/12/9780741402912.jpg'), + ('0553568760', 'Natural Causes', 'https://images.isbndb.com/covers/87/69/9780553568769.jpg'), + ('034538184X', 'Degree Of Guilt', 'https://images.isbndb.com/covers/18/42/9780345381842.jpg'), + ('0140620125', 'Wuthering Heights (Penguin Popular Classics)', 'https://images.isbndb.com/covers/01/22/9780140620122.jpg'), + ('0140620109', 'Emma (Penguin Popular Classics)', 'https://images.isbndb.com/covers/01/08/9780140620108.jpg'), + ('0375420827', 'The Art Of Travel', 'https://images.isbndb.com/covers/08/25/9780375420825.jpg'), + ('0671745530', 'So Long, And Thanks For All The Fish (The Fourth Book In The Hitchhiker''s Trilogy) (Hitchhiker''s Trilogy (Paperback))', 'https://images.isbndb.com/covers/55/30/9780671745530.jpg'), + ('0805062971', 'Fight Club: A Novel', 'https://images.isbndb.com/covers/29/77/9780805062977.jpg'), + ('0553211412', 'Wuthering Heights', 'https://images.isbndb.com/covers/14/12/9780553211412.jpg'), + ('0671510053', 'The Shipping News', 'https://images.isbndb.com/covers/00/53/9780671510053.jpg'), + ('1573229385', 'The Frog King', 'https://images.isbndb.com/covers/93/88/9781573229388.jpg'), + ('0945397410', 'Outhouses Of Alaska', 'https://images.isbndb.com/covers/74/10/9780945397410.jpg'), + ('0385334036', 'The Smoke Jumper', 'https://images.isbndb.com/covers/40/37/9780385334037.jpg'), + ('0060914653', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/46/53/9780060914653.jpg'), + ('0345347536', 'A Spell For Chameleon (Xanth, Book 1)', 'https://images.isbndb.com/covers/75/34/9780345347534.jpg'), + ('055321313X', 'Anne Of Green Gables', 'https://images.isbndb.com/covers/31/33/9780553213133.jpg'), + ('3473540420', 'Das Kurze Leben Der Sophie Scholl (Fiction, Poetry & Drama)', 'https://images.isbndb.com/covers/04/26/9783473540426.jpg'), + ('0375507256', 'Cloud Atlas: A Novel', 'https://images.isbndb.com/covers/72/50/9780375507250.jpg'), + ('0060529709', 'Everything Is Illuminated: A Novel', 'https://images.isbndb.com/covers/97/03/9780060529703.jpg'), + ('0876850867', 'Post Office', 'https://images.isbndb.com/covers/08/62/9780876850862.jpg'), + ('0140274154', 'On The Road (Essential Penguin)', 'https://images.isbndb.com/covers/41/58/9780140274158.jpg'), + ('0679743464', 'Hard-Boiled Wonderland And The End Of The World: A Novel (Vintage International)', 'https://images.isbndb.com/covers/34/60/9780679743460.jpg'), + ('0375704027', 'Norwegian Wood', 'https://images.isbndb.com/covers/40/24/9780375704024.jpg'), + ('0874067391', 'A Little Princess', 'https://images.isbndb.com/covers/73/92/9780874067392.jpg'), + ('0590484753', 'Talking To Dragons (Enchanted Forest Chronicles)', 'https://images.isbndb.com/covers/47/56/9780590484756.jpg'), + ('0451527038', 'The Call Of The Wild And Selected Stories: 100th Anniversary Edition (Signet Classics)', 'https://images.isbndb.com/covers/70/35/9780451527035.jpg'), + ('1590520777', 'A Life God Rewards For Teens (Breakthrough Series)', 'https://images.isbndb.com/covers/07/72/9781590520772.jpg'), + ('0590484672', 'Calling On Dragons ( The Enchanted Forest Chronicles, Book 3 )', 'https://images.isbndb.com/covers/46/71/9780590484671.jpg'), + ('0975311255', 'A Temporary New Wife', 'https://images.isbndb.com/covers/12/57/9780975311257.jpg'), + ('0743237188', 'Fall On Your Knees (Oprah''s Book Club)', 'https://images.isbndb.com/covers/71/85/9780743237185.jpg'), + ('0553586122', 'Reap The Wind', 'https://images.isbndb.com/covers/61/21/9780553586121.jpg'), + ('0553584510', 'The Survivors Club', 'https://images.isbndb.com/covers/45/16/9780553584516.jpg'), + ('0345341201', 'Sins Of Omission: A Novel', 'https://images.isbndb.com/covers/12/04/9780345341204.jpg'), + ('1551662744', 'White Lies', 'https://images.isbndb.com/covers/27/49/9781551662749.jpg'), + ('0440175623', 'Random Winds', 'https://images.isbndb.com/covers/56/29/9780440175629.jpg'), + ('0440216842', 'The Carousel', 'https://images.isbndb.com/covers/68/41/9780440216841.jpg'), + ('0345443284', 'While I Was Gone (Oprah''s Book Club)', 'https://images.isbndb.com/covers/32/81/9780345443281.jpg'), + ('0553285653', 'Grass', 'https://images.isbndb.com/covers/56/59/9780553285659.jpg'), + ('0394800133', 'One Fish Two Fish Red Fish Blue Fish (I Can Read It All By Myself)', 'https://images.isbndb.com/covers/01/34/9780394800134.jpg'), + ('0060972777', 'This Boy''s Life: A Memoir', 'https://images.isbndb.com/covers/27/76/9780060972776.jpg'), + ('0064401472', 'Zlateh The Goat And Other Stories', 'https://images.isbndb.com/covers/14/70/9780064401470.jpg'), + ('0156001942', 'Winter''s Tale', 'https://images.isbndb.com/covers/19/46/9780156001946.jpg'), + ('055326382X', 'The Dancing Wu Li Masters: An Overview Of The New Physics', 'https://images.isbndb.com/covers/38/24/9780553263824.jpg'), + ('0345418018', 'The World According To Garp (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/80/12/9780345418012.jpg'), + ('0684801469', 'A Farewell To Arms', 'https://images.isbndb.com/covers/14/69/9780684801469.jpg'), + ('0393961192', 'The American Constitution: Its Origins And Development, Volume II', 'https://images.isbndb.com/covers/11/95/9780393961195.jpg'), + ('9997522052', 'Collected Works Of Emile Zola', 'https://images.isbndb.com/covers/20/54/9789997522054.jpg'), + ('0872203492', 'Plato Complete Works', 'https://images.isbndb.com/covers/34/95/9780872203495.jpg'), + ('0312420145', 'The Twenty-Seventh City (Bestselling Backlist)', 'https://images.isbndb.com/covers/01/47/9780312420147.jpg'), + ('0911104542', 'Cat (kat), N', 'https://images.isbndb.com/covers/45/47/9780911104547.jpg'), + ('0375401318', 'Breaking Clean', 'https://images.isbndb.com/covers/13/12/9780375401312.jpg'), + ('0140253602', 'Felicia''s Journey: A Novel', 'https://images.isbndb.com/covers/36/03/9780140253603.jpg'), + ('0671789422', 'Possessing The Secret Of Joy', 'https://images.isbndb.com/covers/94/28/9780671789428.jpg'), + ('1566193966', 'A History Of Croatia', 'https://images.isbndb.com/covers/39/62/9781566193962.jpg'), + ('014016930X', 'Angle Of Repose (Contemporary American Fiction)', 'https://images.isbndb.com/covers/93/00/9780140169300.jpg'), + ('0140077022', 'White Noise (Contemporary American Fiction)', 'https://images.isbndb.com/covers/70/25/9780140077025.jpg'), + ('0679732764', 'Invisible Man', 'https://images.isbndb.com/covers/27/61/9780679732761.jpg'), + ('0553273604', 'Of Love And Shadows', 'https://images.isbndb.com/covers/36/01/9780553273601.jpg'), + ('0553273914', 'The House Of The Spirits', 'https://images.isbndb.com/covers/39/15/9780553273915.jpg'), + ('0060256672', 'Where The Sidewalk Ends: Poems And Drawings', 'https://images.isbndb.com/covers/66/78/9780060256678.jpg'), + ('039592720X', 'Interpreter Of Maladies', 'https://images.isbndb.com/covers/72/05/9780395927205.jpg'), + ('1859671500', 'Glorious Country: Food Crafts Decorating', 'https://images.isbndb.com/covers/15/04/9781859671504.jpg'), + ('0810935627', 'Loving', 'https://images.isbndb.com/covers/56/24/9780810935624.jpg'), + ('0060928336', 'Divine Secrets Of The Ya-Ya Sisterhood: A Novel', 'https://images.isbndb.com/covers/83/39/9780060928339.jpg'), + ('0671003755', 'She''s Come Undone', 'https://images.isbndb.com/covers/37/53/9780671003753.jpg'), + ('0553268449', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/84/47/9780553268447.jpg'), + ('0684844729', 'Stones From The River', 'https://images.isbndb.com/covers/47/25/9780684844725.jpg'), + ('0395051649', 'Clarissa (Riverside Editions)', 'https://images.isbndb.com/covers/16/41/9780395051641.jpg'), + ('0375705228', 'Italian Fever: A Novel', 'https://images.isbndb.com/covers/52/29/9780375705229.jpg'), + ('038001503X', 'One Hundred Years Of Solitude', 'https://images.isbndb.com/covers/50/30/9780380015030.jpg'), + ('0835607860', 'The Illustrated Encyclopedia Of Buddhist Wisdom: A Complete Introduction To The Principles And Practices Of Buddhism', 'https://images.isbndb.com/covers/78/65/9780835607865.jpg'), + ('158574218X', 'Common Phrases: And Where They Come From', 'https://images.isbndb.com/covers/21/89/9781585742189.jpg'), + ('0806996021', 'Notions And Potions: A Safe, Practical Guide To Creating Magic & Miracles', 'https://images.isbndb.com/covers/60/28/9780806996028.jpg'), + ('0440215625', 'Dragonfly In Amber (Outlander)', 'https://images.isbndb.com/covers/56/22/9780440215622.jpg'), + ('0316777730', 'Naked', 'https://images.isbndb.com/covers/77/35/9780316777735.jpg'), + ('0375501851', 'White Teeth', 'https://images.isbndb.com/covers/18/52/9780375501852.jpg'), + ('0877733759', 'Writing Down The Bones: Freeing The Writer Within', 'https://images.isbndb.com/covers/37/51/9780877733751.jpg'), + ('0805019367', '"K" Is For Killer (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/93/60/9780805019360.jpg'), + ('0140070206', 'Ironweed: A Novel', 'https://images.isbndb.com/covers/02/00/9780140070200.jpg'), + ('0140236589', 'Swimming In The Volcano', 'https://images.isbndb.com/covers/65/83/9780140236583.jpg'), + ('0140042393', 'The Grapes Of Wrath', 'https://images.isbndb.com/covers/23/99/9780140042399.jpg'), + ('1590520653', 'The Grace And Truth Paradox: Responding With Christlike Balance', 'https://images.isbndb.com/covers/06/59/9781590520659.jpg'), + ('1590521994', 'The Best Thing I Ever Did For My Marriage: 50 Real Life Stories', 'https://images.isbndb.com/covers/19/91/9781590521991.jpg'), + ('3446202218', 'Kreutzersonate: Eine Liebesgeschichte', 'https://images.isbndb.com/covers/22/14/9783446202214.jpg'), + ('3499134446', 'Tollivers Reisen', 'https://images.isbndb.com/covers/44/49/9783499134449.jpg'), + ('067142517X', 'How To Win Friends & Influence People (Revised)', 'https://images.isbndb.com/covers/51/73/9780671425173.jpg'), + ('0671726889', 'Cuckoo''s Egg', 'https://images.isbndb.com/covers/68/81/9780671726881.jpg'), + ('0446601241', 'Kiss The Girls (Alex Cross, No. 2)', 'https://images.isbndb.com/covers/12/45/9780446601245.jpg'), + ('0451124340', 'Different Seasons (Signet)', 'https://images.isbndb.com/covers/43/40/9780451124340.jpg'), + ('0345384466', 'The Witching Hour (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/44/61/9780345384461.jpg'), + ('0446604801', 'Jack & Jill (Alex Cross)', 'https://images.isbndb.com/covers/48/02/9780446604802.jpg'), + ('0345422392', 'Vittorio, The Vampire', 'https://images.isbndb.com/covers/23/92/9780345422392.jpg'), + ('0679734775', 'The House On Mango Street', 'https://images.isbndb.com/covers/47/72/9780679734772.jpg'), + ('0440414717', 'My Life In Dog Years', 'https://images.isbndb.com/covers/47/11/9780440414711.jpg'), + ('0689715625', 'Black Gold', 'https://images.isbndb.com/covers/56/24/9780689715624.jpg'), + ('0812539389', 'Red Unicorn (Tor Fantasy)', 'https://images.isbndb.com/covers/93/87/9780812539387.jpg'), + ('0152013369', 'The Silent Storm', 'https://images.isbndb.com/covers/33/63/9780152013363.jpg'), + ('0425124819', 'Black Rainbow', 'https://images.isbndb.com/covers/48/19/9780425124819.jpg'), + ('0345409469', 'The Demon-Haunted World: Science As A Candle In The Dark', 'https://images.isbndb.com/covers/94/61/9780345409461.jpg'), + ('1558747346', 'Teen Love: On Relationships, A Book For Teenagers', 'https://images.isbndb.com/covers/73/40/9781558747340.jpg'), + ('0373250177', 'On The Verge (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/01/72/9780373250172.jpg'), + ('0763615382', 'ChaseR: A Novel In E-mails', 'https://images.isbndb.com/covers/53/83/9780763615383.jpg'), + ('0965975401', 'Cool Women', 'https://images.isbndb.com/covers/54/07/9780965975407.jpg'), + ('0141001771', 'Welcome To My Planet: Where English Is Sometimes Spoken', 'https://images.isbndb.com/covers/17/77/9780141001777.jpg'), + ('068930935X', 'A STRING OF CHANCES', 'https://images.isbndb.com/covers/93/59/9780689309359.jpg'), + ('0451523369', 'Frankenstein: Or, The Modern Prometheus', 'https://images.isbndb.com/covers/33/65/9780451523365.jpg'), + ('0786884622', 'World Of Pies', 'https://images.isbndb.com/covers/46/29/9780786884629.jpg'), + ('0449005569', 'Love: A User''s Guide', 'https://images.isbndb.com/covers/55/69/9780449005569.jpg'), + ('0671027344', 'The Perks Of Being A Wallflower', 'https://images.isbndb.com/covers/73/46/9780671027346.jpg'), + ('0786927089', 'Dragons Of Summer Flame', 'https://images.isbndb.com/covers/70/81/9780786927081.jpg'), + ('0684831058', 'Dancing At The Rascal Fair', 'https://images.isbndb.com/covers/10/53/9780684831053.jpg'), + ('006019491X', 'Daughter Of Fortune: A Novel', 'https://images.isbndb.com/covers/49/18/9780060194918.jpg'), + ('0684819066', 'A Beautiful Mind : A Biography Of John Forbes Nash, Jr.', 'https://images.isbndb.com/covers/90/68/9780684819068.jpg'), + ('0375420673', 'The Bridegroom: Stories', 'https://images.isbndb.com/covers/06/72/9780375420672.jpg'), + ('0140368558', 'Kiss The Dust', 'https://images.isbndb.com/covers/85/50/9780140368550.jpg'), + ('0395353416', 'Slippage: Previously Uncollected, Precariously Poised Stories', 'https://images.isbndb.com/covers/34/17/9780395353417.jpg'), + ('0066211611', 'Portrait In Sepia: A Novel', 'https://images.isbndb.com/covers/16/19/9780066211619.jpg'), + ('0312254164', 'The Pilgrimage Road To Santiago: The Complete Cultural Handbook', 'https://images.isbndb.com/covers/41/62/9780312254162.jpg'), + ('3453147243', 'Der Magier, Der Erbe Der Nacht', 'https://images.isbndb.com/covers/72/49/9783453147249.jpg'), + ('3746611229', 'Der Fremde Freund. ( Drachenblut).', 'https://images.isbndb.com/covers/12/28/9783746611228.jpg'), + ('3492229336', 'Die Meute Der Erben: Roman', 'https://images.isbndb.com/covers/93/33/9783492229333.jpg'), + ('3453177800', 'Ein Mann Für Jede Gelegenheit.', 'https://images.isbndb.com/covers/78/02/9783453177802.jpg'), + ('3423009152', 'Der Geteilte Himmel: Erzählung', 'https://images.isbndb.com/covers/91/57/9783423009157.jpg'), + ('3596133319', 'Helden Wie Wir', 'https://images.isbndb.com/covers/33/14/9783596133314.jpg'), + ('3822813397', 'Schamanismus. Reisen Der Seele. Magische Kräfte. Ekstase Und Heilung', 'https://images.isbndb.com/covers/33/93/9783822813393.jpg'), + ('3426871874', 'Entdecke Den Schamanen In Dir: Reise In Die Innere Welt Des Alltags', 'https://images.isbndb.com/covers/18/74/9783426871874.jpg'), + ('3453171977', 'Das Meer Und Kleine Fische.', 'https://images.isbndb.com/covers/19/78/9783453171978.jpg'), + ('3423620005', 'Sofies Welt: Roman über Die Geschichte Der Philosophie', 'https://images.isbndb.com/covers/00/00/9783423620000.jpg'), + ('034537522X', 'The Book Of Lost Tales, Part Two (The History Of Middle-Earth, Vol. 2)', 'https://images.isbndb.com/covers/52/23/9780345375223.jpg'), + ('0345375211', 'The Book Of Lost Tales 1(The History Of Middle-Earth, Vol. 1)', 'https://images.isbndb.com/covers/52/16/9780345375216.jpg'), + ('034545829X', 'Waking Up Screaming: Haunting Tales Of Terror', 'https://images.isbndb.com/covers/82/92/9780345458292.jpg'), + ('0140042520', 'Dharma Bums', 'https://images.isbndb.com/covers/25/28/9780140042528.jpg'), + ('0380789035', 'American Gods', 'https://images.isbndb.com/covers/90/30/9780380789030.jpg'), + ('0446677574', 'Just Here Trying To Save A Few Lives: Tales Of Life And Death From The ER', 'https://images.isbndb.com/covers/75/78/9780446677578.jpg'), + ('0345358791', '2061: Odyssey Three', 'https://images.isbndb.com/covers/87/90/9780345358790.jpg'), + ('0060964049', 'Tales Of The City (Tales Of The City Series, V. 1)', 'https://images.isbndb.com/covers/40/47/9780060964047.jpg'), + ('0380558483', 'The Pigeon', 'https://images.isbndb.com/covers/84/83/9780380558483.jpg'), + ('1558171398', 'Deadly Sleep', 'https://images.isbndb.com/covers/13/98/9781558171398.jpg'), + ('0425121046', 'Demon Night', 'https://images.isbndb.com/covers/10/47/9780425121047.jpg'), + ('0441317502', 'Harp And The Blade', 'https://images.isbndb.com/covers/75/09/9780441317509.jpg'), + ('0804102279', 'The World, The Flesh And The Devil', 'https://images.isbndb.com/covers/22/78/9780804102278.jpg'), + ('0812551389', 'The Skystone (The Camulod Chronicles, Book 1)', 'https://images.isbndb.com/covers/13/89/9780812551389.jpg'), + ('0345298985', 'The One Tree (The Second Chronicles Of Thomas Covenant, Book 2)', 'https://images.isbndb.com/covers/89/80/9780345298980.jpg'), + ('0345316991', 'THE WHITE GOLD WIELDER (Second Chronicles Of Thomas Covenant)', 'https://images.isbndb.com/covers/69/98/9780345316998.jpg'), + ('034531042X', 'The Wounded Land (Second Chronicles Of Thomas Covenant, Vol. 1)', 'https://images.isbndb.com/covers/04/22/9780345310422.jpg'), + ('0345310306', 'The Power That Preserves (The Chronicles Of Thomas Covenant The Unbeliever, Book Three)', 'https://images.isbndb.com/covers/03/09/9780345310309.jpg'), + ('0345310292', 'The Illearth War (Chronicles Of Thomas Covenant The Unbeliever, Vol. 2)', 'https://images.isbndb.com/covers/02/93/9780345310293.jpg'), + ('034531011X', 'Lord Foul''s Bane (The Chronicles Of Thomas Covenant The Unbeliever, Book One)', 'https://images.isbndb.com/covers/01/18/9780345310118.jpg'), + ('0679734058', 'Killing Mister Watson', 'https://images.isbndb.com/covers/40/55/9780679734055.jpg'), + ('0451130448', 'Exocet', 'https://images.isbndb.com/covers/04/40/9780451130440.jpg'), + ('0553266500', 'Crib,the', 'https://images.isbndb.com/covers/65/04/9780553266504.jpg'), + ('0440206154', 'Red Dragon', 'https://images.isbndb.com/covers/61/56/9780440206156.jpg'), + ('0345370775', 'Jurassic Park', 'https://images.isbndb.com/covers/07/78/9780345370778.jpg'), + ('0441366945', 'Imaginary Lands', 'https://images.isbndb.com/covers/69/41/9780441366941.jpg'), + ('0553574833', 'So That Others May Live: Caroline Hebard & Her Search-And-Rescue Dogs', 'https://images.isbndb.com/covers/48/38/9780553574838.jpg'), + ('0915950839', 'How To Get Your Kid To Eat: But Not Too Much', 'https://images.isbndb.com/covers/08/36/9780915950836.jpg'), + ('0060242388', 'Shape Changer', 'https://images.isbndb.com/covers/23/81/9780060242381.jpg'), + ('0452265347', 'The Piano Lesson', 'https://images.isbndb.com/covers/53/49/9780452265349.jpg'), + ('0743457943', 'Trading Places', 'https://images.isbndb.com/covers/79/41/9780743457941.jpg'), + ('0373484224', 'The Stanislaski Brothers (Two Complete Novels: Mikhail And Alex)', 'https://images.isbndb.com/covers/42/25/9780373484225.jpg'), + ('0553205757', 'Housekeeping', 'https://images.isbndb.com/covers/57/56/9780553205756.jpg'), + ('0060171510', 'A Feather On The Breath Of God: A Novel', 'https://images.isbndb.com/covers/15/13/9780060171513.jpg'), + ('0312421001', 'I Thought My Father Was God: And Other True Tales From NPR''s National Story Project', 'https://images.isbndb.com/covers/10/07/9780312421007.jpg'), + ('0786000988', 'Highland Fling', 'https://images.isbndb.com/covers/09/82/9780786000982.jpg'), + ('0380789019', 'Neverwhere', 'https://images.isbndb.com/covers/90/16/9780380789016.jpg'), + ('0451135989', 'The French Lieutenant''s Woman', 'https://images.isbndb.com/covers/59/88/9780451135988.jpg'), + ('0380018179', 'The Thorn Birds', 'https://images.isbndb.com/covers/81/78/9780380018178.jpg'), + ('0679004785', 'Fodor''s Exploring London, 4th Edition (Exploring Guides)', 'https://images.isbndb.com/covers/47/83/9780679004783.jpg'), + ('0684825821', 'On Her Own Ground: The Life And Times Of Madam C.J. Walker', 'https://images.isbndb.com/covers/58/23/9780684825823.jpg'), + ('0517395754', 'Four Complete Lord Peter Wimsey Novels: Whose Body? / Clouds Of Witness / Murder Must Advertise / Gaudy Night', 'https://images.isbndb.com/covers/57/52/9780517395752.jpg'), + ('067101420X', 'Forever... : A Novel Of Good And Evil, Love And Hope (Forever Trilogy)', 'https://images.isbndb.com/covers/42/09/9780671014209.jpg'), + ('0679457313', 'The God Of Small Things', 'https://images.isbndb.com/covers/73/12/9780679457312.jpg'), + ('0394557433', 'GIFT FROM THE SEA', 'https://images.isbndb.com/covers/74/34/9780394557434.jpg'), + ('0553571656', 'The Beekeeper''s Apprentice', 'https://images.isbndb.com/covers/16/53/9780553571653.jpg'), + ('0312169787', 'The Red Tent: A Novel', 'https://images.isbndb.com/covers/97/87/9780312169787.jpg'), + ('0942257324', 'The Earth House', 'https://images.isbndb.com/covers/73/28/9780942257328.jpg'), + ('0805008950', 'Tracks', 'https://images.isbndb.com/covers/89/51/9780805008951.jpg'), + ('0786866276', 'Mother Of Pearl', 'https://images.isbndb.com/covers/62/74/9780786866274.jpg'), + ('0151000638', 'Baba: A Return To China Upon My Father''s Shoulders', 'https://images.isbndb.com/covers/06/30/9780151000630.jpg'), + ('0140266771', 'Larry''s Party', 'https://images.isbndb.com/covers/67/71/9780140266771.jpg'), + ('015644450X', 'In Love & Trouble: Stories Of Black Women', 'https://images.isbndb.com/covers/45/07/9780156444507.jpg'), + ('0679723420', 'Pale Fire', 'https://images.isbndb.com/covers/34/24/9780679723424.jpg'), + ('0441004016', 'The Anubis Gates', 'https://images.isbndb.com/covers/40/10/9780441004010.jpg'), + ('0671500546', 'The Vulcan Academy Murders', 'https://images.isbndb.com/covers/05/42/9780671500542.jpg'), + ('0140620338', 'Picture Of Dorian Gray (Penguin Popular Classics)', 'https://images.isbndb.com/covers/03/37/9780140620337.jpg'), + ('0460878263', 'Samuel Taylor Coleridge Eman Poet Lib #18 (Everyman Poetry)', 'https://images.isbndb.com/covers/82/65/9780460878265.jpg'), + ('3257061269', 'Der Alchimist', 'https://images.isbndb.com/covers/12/60/9783257061260.jpg'), + ('3453210999', 'Das Lied Der Alten Steine', 'https://images.isbndb.com/covers/09/98/9783453210998.jpg'), + ('3404126661', 'Suche Hose, Biete Rock', 'https://images.isbndb.com/covers/66/68/9783404126668.jpg'), + ('3453177622', 'Zeit Im Wind', 'https://images.isbndb.com/covers/76/28/9783453177628.jpg'), + ('3453863593', 'Deutschland In Den Schatten', 'https://images.isbndb.com/covers/35/90/9783453863590.jpg'), + ('3499108518', 'Der Fänger Im Roggen', 'https://images.isbndb.com/covers/85/18/9783499108518.jpg'), + ('3518367064', 'Demian: Die Geschichte Von Emil Sinclairs Jugend (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/70/63/9783518367063.jpg'), + ('3453199766', 'Vielleicht Lieber Morgen.', 'https://images.isbndb.com/covers/97/67/9783453199767.jpg'), + ('3746670144', 'Ich, Prinzessin Viola. Ein Altes Haus Und Seine Besetzer.', 'https://images.isbndb.com/covers/01/40/9783746670140.jpg'), + ('3453088433', 'Das Druidentor.', 'https://images.isbndb.com/covers/84/36/9783453088436.jpg'), + ('0425137015', 'Timeless', 'https://images.isbndb.com/covers/70/17/9780425137017.jpg'), + ('0553572490', 'Vice', 'https://images.isbndb.com/covers/24/90/9780553572490.jpg'), + ('0553576976', 'West Of Dodge', 'https://images.isbndb.com/covers/69/79/9780553576979.jpg'), + ('0451450604', 'Union Forever (The Lost Regiment #2) (Book 2)', 'https://images.isbndb.com/covers/06/09/9780451450609.jpg'), + ('0441001335', 'The Callahan Touch', 'https://images.isbndb.com/covers/13/30/9780441001330.jpg'), + ('0451454677', 'Caverns Of Socrates', 'https://images.isbndb.com/covers/46/76/9780451454676.jpg'), + ('0373257074', 'Between The Sheets (Harlequin Temptation)', 'https://images.isbndb.com/covers/70/72/9780373257072.jpg'), + ('0441435351', 'Kent Montana And The Really Ugly Thing From Mars', 'https://images.isbndb.com/covers/53/57/9780441435357.jpg'), + ('0373092237', 'The Black Knight (Silhouette Special Edition #223)', 'https://images.isbndb.com/covers/22/39/9780373092239.jpg'), + ('0373057296', 'Midsummer Madness (Silhouette Desire)', 'https://images.isbndb.com/covers/72/90/9780373057290.jpg'), + ('0373058446', 'The Hand Of An Angel (Silhouette Desire, No 844)', 'https://images.isbndb.com/covers/84/40/9780373058440.jpg'), + ('0349103232', 'The Crow Road', 'https://images.isbndb.com/covers/32/35/9780349103235.jpg'), + ('0571197779', 'Life Is Elsewhere', 'https://images.isbndb.com/covers/77/74/9780571197774.jpg'), + ('0679745653', 'Breakfast At Tiffany''s', 'https://images.isbndb.com/covers/56/55/9780679745655.jpg'), + ('0571200389', 'The Golden Gate (FF Classics)', 'https://images.isbndb.com/covers/03/82/9780571200382.jpg'), + ('0785268480', 'Rachel''s Tears: The Spiritual Journey Of Columbine Martyr Rachel Scott', 'https://images.isbndb.com/covers/84/82/9780785268482.jpg'), + ('014044503X', 'The Sorrows Of Young Werther (Penguin Classics)', 'https://images.isbndb.com/covers/50/39/9780140445039.jpg'), + ('0851707777', 'Metropolis (BFI Film Classics)', 'https://images.isbndb.com/covers/77/78/9780851707778.jpg'), + ('0006276199', 'Alien At St Wilfred''s', 'https://images.isbndb.com/covers/61/97/9780006276197.jpg'), + ('0551031123', 'Why I Follow Jesus', 'https://images.isbndb.com/covers/11/28/9780551031128.jpg'), + ('0551030682', 'Sacred Diary Of Adrian Plass, Christian Speaker Aged 45 3/4', 'https://images.isbndb.com/covers/06/88/9780551030688.jpg'), + ('0551032510', 'Colours Of Survival: Discovering Hope In Bangladesh', 'https://images.isbndb.com/covers/25/14/9780551032514.jpg'), + ('000649840X', 'Angelas Ashes', 'https://images.isbndb.com/covers/84/07/9780006498407.jpg'), + ('0140431268', 'Treasury Of Thomas Hardy: Tess Of The D''Urbervilles, The Mayor Of Casterbridge, Far From The Madding Crowd', 'https://images.isbndb.com/covers/12/61/9780140431261.jpg'), + ('0099771519', 'Memoirs Of A Geisha Uk', 'https://images.isbndb.com/covers/15/17/9780099771517.jpg'), + ('0486265862', 'Who Were The Pharaohs?: A History Of Their Names With A List Of Cartouches', 'https://images.isbndb.com/covers/58/65/9780486265865.jpg'), + ('067102535X', 'Last Dance, Last Chance (Ann Rule''s Crime Files)', 'https://images.isbndb.com/covers/53/59/9780671025359.jpg'), + ('0876855575', 'Ham On Rye', 'https://images.isbndb.com/covers/55/77/9780876855577.jpg'), + ('0330376136', 'Once', 'https://images.isbndb.com/covers/61/36/9780330376136.jpg'), + ('0140272658', 'Are You Experienced?', 'https://images.isbndb.com/covers/26/59/9780140272659.jpg'), + ('3407780028', 'Oh, Wie Schön Ist Panama', 'https://images.isbndb.com/covers/00/27/9783407780027.jpg'), + ('3407780117', 'Komm, Wir Finden Einen Schatz (Gulliver)', 'https://images.isbndb.com/covers/01/19/9783407780119.jpg'), + ('3257250398', 'König Babar', 'https://images.isbndb.com/covers/03/98/9783257250398.jpg'), + ('3257250053', 'Die Geschichte Von Babar, Dem Kleinen Elefanten', 'https://images.isbndb.com/covers/00/53/9783257250053.jpg'), + ('3257250460', 'Serafin Und Seine Wundermaschine', 'https://images.isbndb.com/covers/04/66/9783257250466.jpg'), + ('3442435951', 'Ich Schenk Dir Meinen Mann', 'https://images.isbndb.com/covers/59/51/9783442435951.jpg'), + ('3442435838', 'Die Prüfung', 'https://images.isbndb.com/covers/58/38/9783442435838.jpg'), + ('3608919724', 'Der Kleine Taschentherapeut: In 60 Sekunden Wieder O.k', 'https://images.isbndb.com/covers/97/21/9783608919721.jpg'), + ('3453132262', 'Die Wolfsfrau - Die Kraft Der Weiblichen Urinstinkte', 'https://images.isbndb.com/covers/22/69/9783453132269.jpg'), + ('379411664X', 'Was Ist Das?', 'https://images.isbndb.com/covers/66/45/9783794116645.jpg'), + ('340780573X', 'Post Für Den Tiger (Beltz & Gelberg)', 'https://images.isbndb.com/covers/57/37/9783407805737.jpg'), + ('3407805853', 'Das Leben Der Thiere', 'https://images.isbndb.com/covers/58/50/9783407805850.jpg'), + ('0385720920', 'Choke', 'https://images.isbndb.com/covers/09/22/9780385720922.jpg'), + ('0385498721', 'Survivor: A Novel', 'https://images.isbndb.com/covers/87/22/9780385498722.jpg'), + ('0972948503', 'Gifted Trust', 'https://images.isbndb.com/covers/85/00/9780972948500.jpg'), + ('0380813815', 'Lamb: The Gospel According To Biff, Christ''s Childhood Pal', 'https://images.isbndb.com/covers/38/10/9780380813810.jpg'), + ('2070372294', 'Le Coq De Bruyère', 'https://images.isbndb.com/covers/22/94/9782070372294.jpg'), + ('2264030542', 'Retour à Brooklyn', 'https://images.isbndb.com/covers/05/42/9782264030542.jpg'), + ('0030615321', 'Ask For May, Settle For June (A Doonesbury Book)', 'https://images.isbndb.com/covers/53/20/9780030615320.jpg'), + ('0836217632', 'The Curse Of Madame "C" (A Far Side Collection)', 'https://images.isbndb.com/covers/76/36/9780836217636.jpg'), + ('0140099832', 'Lake Wobegon Days', 'https://images.isbndb.com/covers/98/36/9780140099836.jpg'), + ('0385314744', 'Rush Limbaugh Is A Big Fat Idiot And Other Observations', 'https://images.isbndb.com/covers/47/49/9780385314749.jpg'), + ('0316107417', 'Happy Trails', 'https://images.isbndb.com/covers/74/19/9780316107419.jpg'), + ('0894803700', '14,000 Things To Be Happy About', 'https://images.isbndb.com/covers/37/03/9780894803703.jpg'), + ('0449221164', 'In The Frame', 'https://images.isbndb.com/covers/11/67/9780449221167.jpg'), + ('0553801031', 'The New Rabbi: A Congregation Searches For Its Leader', 'https://images.isbndb.com/covers/10/33/9780553801033.jpg'), + ('0590457225', 'Dealing With Dragons (Enchanted Forest Chronicles)', 'https://images.isbndb.com/covers/72/24/9780590457224.jpg'), + ('0316929190', 'All Too Human: A Political Education', 'https://images.isbndb.com/covers/91/96/9780316929196.jpg'), + ('0553052845', 'Rubyfruit Jungle', 'https://images.isbndb.com/covers/28/48/9780553052848.jpg'), + ('0140390693', 'Little Women (Penguin Classics)', 'https://images.isbndb.com/covers/06/98/9780140390698.jpg'), + ('0439404371', 'The Thief Lord', 'https://images.isbndb.com/covers/43/72/9780439404372.jpg'), + ('0939766027', 'Fantastic Four Illustrated Books - Featuring The Peerless Power Of The Silver Surfer', 'https://images.isbndb.com/covers/60/24/9780939766024.jpg'), + ('0679741011', 'Sex, Art, And American Culture: Essays', 'https://images.isbndb.com/covers/10/15/9780679741015.jpg'), + ('0345307674', 'Star Wars : Return Of The Jedi', 'https://images.isbndb.com/covers/76/75/9780345307675.jpg'), + ('0425071421', 'Stranger Strg Lnd', 'https://images.isbndb.com/covers/14/27/9780425071427.jpg'), + ('0345297687', 'The Ship Who Sang', 'https://images.isbndb.com/covers/76/86/9780345297686.jpg'), + ('0766607119', 'Little Women (Treasury Of Illustrated Classics)', 'https://images.isbndb.com/covers/71/18/9780766607118.jpg'), + ('1573225789', 'The Color Of Water: A Black Man''s Tribute To His White Mother', 'https://images.isbndb.com/covers/57/86/9781573225786.jpg'), + ('0380754843', 'Wayside School Is Falling Down', 'https://images.isbndb.com/covers/48/47/9780380754847.jpg'), + ('0345368940', 'The Dolphins Of Pern (Dragonriders Of Pern Series)', 'https://images.isbndb.com/covers/89/42/9780345368942.jpg'), + ('0345331605', 'Dragonsdawn', 'https://images.isbndb.com/covers/16/01/9780345331601.jpg'), + ('0425050807', 'Beneath An Opal Moon', 'https://images.isbndb.com/covers/08/04/9780425050804.jpg'), + ('044100962X', 'Myth-ion Improbable', 'https://images.isbndb.com/covers/96/26/9780441009626.jpg'), + ('0553296981', 'Anne Frank: The Diary Of A Young Girl', 'https://images.isbndb.com/covers/69/83/9780553296983.jpg'), + ('1895383129', 'Kriya Yoga Sutras Of Patanjali And The Siddhas', 'https://images.isbndb.com/covers/31/26/9781895383126.jpg'), + ('0375724575', 'The Family Orchard', 'https://images.isbndb.com/covers/45/72/9780375724572.jpg'), + ('067163884X', 'This Hallowed Ground', 'https://images.isbndb.com/covers/88/49/9780671638849.jpg'), + ('0553140434', 'Miracle Worker', 'https://images.isbndb.com/covers/04/39/9780553140439.jpg'), + ('0029087104', 'History Of The Southern Confederacy', 'https://images.isbndb.com/covers/71/07/9780029087107.jpg'), + ('0425050750', 'War Of The Worlds', 'https://images.isbndb.com/covers/07/50/9780425050750.jpg'), + ('0345285549', 'The Elfstones Of Shannara (The Sword Of Shannara)', 'https://images.isbndb.com/covers/55/46/9780345285546.jpg'), + ('0345290240', 'The Sword Of Shannara', 'https://images.isbndb.com/covers/02/43/9780345290243.jpg'), + ('0345301870', 'Ogre, Ogre (The Magic Of Xanth, No. 5)', 'https://images.isbndb.com/covers/18/71/9780345301871.jpg'), + ('0451169530', 'The Stand: Expanded Edition: For The First Time Complete And Uncut (Signet)', 'https://images.isbndb.com/covers/95/32/9780451169532.jpg'), + ('067168390X', 'Lonesome Dove', 'https://images.isbndb.com/covers/39/00/9780671683900.jpg'), + ('0385335881', 'Shopaholic Takes Manhattan', 'https://images.isbndb.com/covers/58/81/9780385335881.jpg'), + ('0385335482', 'Confessions Of A Shopaholic (Shopaholic, No 1)', 'https://images.isbndb.com/covers/54/85/9780385335485.jpg'), + ('0553258001', 'Cider House Rules', 'https://images.isbndb.com/covers/80/04/9780553258004.jpg'), + ('0671679627', 'Prime Time', 'https://images.isbndb.com/covers/96/20/9780671679620.jpg'), + ('0375704043', 'Uncle Tungsten: Memories Of A Chemical Boyhood', 'https://images.isbndb.com/covers/40/48/9780375704048.jpg'), + ('0373871279', 'A Family At Last (Stealing Home Series #3) (Love Inspired #121)', 'https://images.isbndb.com/covers/12/78/9780373871278.jpg'), + ('0373484070', 'Sons Of Texas : Callaway Country', 'https://images.isbndb.com/covers/40/72/9780373484072.jpg'), + ('0805063889', 'Nickel And Dimed: On (Not) Getting By In America', 'https://images.isbndb.com/covers/38/82/9780805063882.jpg'), + ('068986020X', 'Gingerbread', 'https://images.isbndb.com/covers/02/01/9780689860201.jpg'), + ('0671568809', 'Strange Memories (Nancy Drew Files No. 122)', 'https://images.isbndb.com/covers/88/01/9780671568801.jpg'), + ('1573228567', 'My Grandfather''s Blessings: Stories Of Strength, Refuge, And Belonging', 'https://images.isbndb.com/covers/85/65/9781573228565.jpg'), + ('0553582658', 'Summer Light', 'https://images.isbndb.com/covers/26/59/9780553582659.jpg'), + ('051513399X', 'Smoke In Mirrors', 'https://images.isbndb.com/covers/39/98/9780515133998.jpg'), + ('0373218400', 'Table For Two', 'https://images.isbndb.com/covers/84/00/9780373218400.jpg'), + ('0449217868', 'Winter Wedding', 'https://images.isbndb.com/covers/78/63/9780449217863.jpg'), + ('0671573020', 'Divining Women', 'https://images.isbndb.com/covers/30/27/9780671573027.jpg'), + ('0517006456', 'Eve''s Rib', 'https://images.isbndb.com/covers/64/50/9780517006450.jpg'), + ('0786867086', 'In Search Of America', 'https://images.isbndb.com/covers/70/80/9780786867080.jpg'), + ('1569471800', 'The Distance Between', 'https://images.isbndb.com/covers/18/07/9781569471807.jpg'), + ('0374216495', 'Museum Guard', 'https://images.isbndb.com/covers/64/98/9780374216498.jpg'), + ('0312274572', 'No One Thinks Of Greenland: A Novel', 'https://images.isbndb.com/covers/45/73/9780312274573.jpg'), + ('0316825336', 'Evening News: A Novel', 'https://images.isbndb.com/covers/53/37/9780316825337.jpg'), + ('0871137631', 'Having Everything', 'https://images.isbndb.com/covers/76/30/9780871137630.jpg'), + ('0679419152', 'Nothin'' But Good Times Ahead', 'https://images.isbndb.com/covers/91/50/9780679419150.jpg'), + ('0060192895', 'Hunting Badger', 'https://images.isbndb.com/covers/28/91/9780060192891.jpg'), + ('0826308791', 'The Education Of Little Tree', 'https://images.isbndb.com/covers/87/95/9780826308795.jpg'), + ('0140259198', 'The Island Of The Day Before', 'https://images.isbndb.com/covers/91/93/9780140259193.jpg'), + ('0345435249', 'Darwin''s Radio', 'https://images.isbndb.com/covers/52/48/9780345435248.jpg'), + ('0441003257', 'Good Omens', 'https://images.isbndb.com/covers/32/59/9780441003259.jpg'), + ('0451202503', 'The Songcatcher', 'https://images.isbndb.com/covers/25/05/9780451202505.jpg'), + ('0446606812', 'Message In A Bottle', 'https://images.isbndb.com/covers/68/13/9780446606813.jpg'), + ('0671028375', 'Fatal Voyage (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/83/74/9780671028374.jpg'), + ('0451181468', 'Praying For Sleep', 'https://images.isbndb.com/covers/14/66/9780451181466.jpg'), + ('0399149759', 'Flashback', 'https://images.isbndb.com/covers/97/57/9780399149757.jpg'), + ('0345384733', 'Red Square', 'https://images.isbndb.com/covers/47/37/9780345384737.jpg'), + ('0671759361', 'Pearl In The Mist (Landry Series)', 'https://images.isbndb.com/covers/93/60/9780671759360.jpg'), + ('0830724982', 'Knockin At Heaven''s Door: God''s Spirit Can Touch Your Life', 'https://images.isbndb.com/covers/49/87/9780830724987.jpg'), + ('0399146008', 'Shock', 'https://images.isbndb.com/covers/60/08/9780399146008.jpg'), + ('3442720001', 'Das Halsband Der Taube: Roman', 'https://images.isbndb.com/covers/00/02/9783442720002.jpg'), + ('0515132632', 'Isle Of Lies', 'https://images.isbndb.com/covers/26/32/9780515132632.jpg'), + ('044990671X', 'Bronze Mirror', 'https://images.isbndb.com/covers/67/12/9780449906712.jpg'), + ('0688124402', 'Doll''s Eyes', 'https://images.isbndb.com/covers/44/03/9780688124403.jpg'), + ('0929587081', 'Men And Brethren', 'https://images.isbndb.com/covers/70/80/9780929587080.jpg'), + ('155970117X', 'My Father, His Son', 'https://images.isbndb.com/covers/11/74/9781559701174.jpg'), + ('0688105408', 'Starlings Laughing: A Memoir Of Africa', 'https://images.isbndb.com/covers/54/02/9780688105402.jpg'), + ('0871130297', 'The God Of Mirrors', 'https://images.isbndb.com/covers/02/97/9780871130297.jpg'), + ('0440500095', 'Unassigned Territory', 'https://images.isbndb.com/covers/00/94/9780440500094.jpg'), + ('1570362084', 'The Best Of Larry King Live: The Greatest Interviews', 'https://images.isbndb.com/covers/20/88/9781570362088.jpg'), + ('0060930535', 'The Poisonwood Bible (Oprah''s Book Club)', 'https://images.isbndb.com/covers/05/30/9780060930530.jpg'), + ('0375702709', 'A Lesson Before Dying (Oprah''s Book Club)', 'https://images.isbndb.com/covers/27/09/9780375702709.jpg'), + ('044990928X', 'Operating Instructions: A Journal Of My Son''s First Year', 'https://images.isbndb.com/covers/92/87/9780449909287.jpg'), + ('0671038184', 'Jewel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/81/82/9780671038182.jpg'), + ('0060916508', 'Their Eyes Were Watching God: A Novel', 'https://images.isbndb.com/covers/65/03/9780060916503.jpg'), + ('0756401453', 'Wild Magic (Fool''s Gold, Book 2)', 'https://images.isbndb.com/covers/14/50/9780756401450.jpg'), + ('0963270702', 'The Satanic Verses', 'https://images.isbndb.com/covers/07/02/9780963270702.jpg'), + ('0399242562', 'Shadowmancer', 'https://images.isbndb.com/covers/25/64/9780399242564.jpg'), + ('0552996009', 'Notes From A Small Island', 'https://images.isbndb.com/covers/60/06/9780552996006.jpg'), + ('0708881297', 'The Ireta Adventure : Dinosaur Planet, And Dinosaur Planet Survivors', 'https://images.isbndb.com/covers/12/93/9780708881293.jpg'), + ('0142000663', 'The Grapes Of Wrath (Centennial Edition)', 'https://images.isbndb.com/covers/06/63/9780142000663.jpg'), + ('0590542443', 'The Amber Spy Glass. Dark Materials Book III', 'https://images.isbndb.com/covers/24/49/9780590542449.jpg'), + ('0590112899', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/28/95/9780590112895.jpg'), + ('0590660543', 'Northern Lights (His Dark Materials)', 'https://images.isbndb.com/covers/05/49/9780590660549.jpg'), + ('0345361792', 'A Prayer For Owen Meany', 'https://images.isbndb.com/covers/17/90/9780345361790.jpg'), + ('0552999512', 'Away From It All', 'https://images.isbndb.com/covers/95/19/9780552999519.jpg'), + ('041619513X', 'Winnie-The-Pooh On Management And Problem Solving (Wisdom Of Pooh)', 'https://images.isbndb.com/covers/51/32/9780416195132.jpg'), + ('0855030224', 'An ABC For You And Me', 'https://images.isbndb.com/covers/02/23/9780855030223.jpg'), + ('0861638522', 'Brave Toy Soldier And Other Stories (Enid Blyton''s Popular Rewards Series)', 'https://images.isbndb.com/covers/85/29/9780861638529.jpg'), + ('0575073314', 'Shadowheart: Legends Of The Raven (Legends Of The Raven (Gollancz))', 'https://images.isbndb.com/covers/33/19/9780575073319.jpg'), + ('0575073004', 'Nightchild (Chronicles Of The Raven 3)', 'https://images.isbndb.com/covers/30/05/9780575073005.jpg'), + ('0394404289', 'The Prophet', 'https://images.isbndb.com/covers/42/88/9780394404288.jpg'), + ('000636988X', 'HOW NOT TO BE A PERFECT MOTHER: THE CRAFTY MOTHER''S GUIDE TO A QUIET LIFE (HOW NOT TO)', 'https://images.isbndb.com/covers/98/82/9780006369882.jpg'), + ('1578562333', 'No Eye Can See (Kinship And Courage Series #2)', 'https://images.isbndb.com/covers/23/36/9781578562336.jpg'), + ('0345458915', 'The Sinner', 'https://images.isbndb.com/covers/89/19/9780345458919.jpg'), + ('038531258X', 'Cold Sassy Tree', 'https://images.isbndb.com/covers/25/85/9780385312585.jpg'), + ('006092988X', 'A Tree Grows In Brooklyn', 'https://images.isbndb.com/covers/98/86/9780060929886.jpg'), + ('0140317937', 'The Neverending Story', 'https://images.isbndb.com/covers/79/30/9780140317930.jpg'), + ('0743225406', 'The Shipping News : A Novel', 'https://images.isbndb.com/covers/54/03/9780743225403.jpg'), + ('0553256696', 'The Hiding Place', 'https://images.isbndb.com/covers/66/97/9780553256697.jpg'), + ('0785263780', 'Only The River Runs Free (Galway Chronicles, Book 1)', 'https://images.isbndb.com/covers/37/84/9780785263784.jpg'), + ('0802433243', 'Only The Wind Remembers', 'https://images.isbndb.com/covers/32/44/9780802433244.jpg'), + ('0375413081', 'True Notebooks', 'https://images.isbndb.com/covers/30/87/9780375413087.jpg'), + ('1400034779', 'The No. 1 Ladies'' Detective Agency (Book 1)', 'https://images.isbndb.com/covers/47/72/9781400034772.jpg'), + ('038533303X', 'Driving Mr. Albert: A Trip Across America With Einstein''s Brain', 'https://images.isbndb.com/covers/30/30/9780385333030.jpg'), + ('0451163753', 'The French Lieutenant''s Woman (Signet)', 'https://images.isbndb.com/covers/37/52/9780451163752.jpg'), + ('0440414520', 'The Clearing - A Mystery', 'https://images.isbndb.com/covers/45/20/9780440414520.jpg'), + ('0786885688', 'Shopgirl: A Novella', 'https://images.isbndb.com/covers/56/88/9780786885688.jpg'), + ('0671880187', 'Kitchen', 'https://images.isbndb.com/covers/01/87/9780671880187.jpg'), + ('1558506454', 'Museum Of Science Book Of Answers & Questions', 'https://images.isbndb.com/covers/64/59/9781558506459.jpg'), + ('0895773538', 'How In The World?: A Fascinating Journey Through The World Of Human Ingenuity', 'https://images.isbndb.com/covers/35/31/9780895773531.jpg'), + ('0385247745', 'The Power Of Myth', 'https://images.isbndb.com/covers/77/40/9780385247740.jpg'), + ('0385293542', 'Crescent City', 'https://images.isbndb.com/covers/35/49/9780385293549.jpg'), + ('0802069347', 'Gibson''s Student Guide To Western Canadian Universities', 'https://images.isbndb.com/covers/93/44/9780802069344.jpg'), + ('0671721038', 'The New Hugo Winners, Vol. 2', 'https://images.isbndb.com/covers/10/39/9780671721039.jpg'), + ('0671311891', 'My Teacher Is An Alien', 'https://images.isbndb.com/covers/18/96/9780671311896.jpg'), + ('0345387007', 'The Tangle Box (Magic Kingdom Of Landover, Book 4)', 'https://images.isbndb.com/covers/70/04/9780345387004.jpg'), + ('037570504X', 'Breath, Eyes, Memory (Oprah''s Book Club)', 'https://images.isbndb.com/covers/50/45/9780375705045.jpg'), + ('0767902521', 'A Walk In The Woods: Rediscovering America On The Appalachian Trail (Official Guides To The Appalachian Trail)', 'https://images.isbndb.com/covers/25/26/9780767902526.jpg'), + ('0892967048', 'The Bottoms --Signed--', 'https://images.isbndb.com/covers/70/49/9780892967049.jpg'), + ('0553377868', 'The Flanders Panel', 'https://images.isbndb.com/covers/78/66/9780553377866.jpg'), + ('0472113658', 'Where No Gods Came (Sweetwater Fiction: Originals)', 'https://images.isbndb.com/covers/36/51/9780472113651.jpg'), + ('0609608444', 'The Devil In The White City: Murder, Magic, And Madness At The Fair That Changed America', 'https://images.isbndb.com/covers/84/49/9780609608449.jpg'), + ('0670032425', 'The Adventures Of Augie March (50th Anniv. Edition)', 'https://images.isbndb.com/covers/24/26/9780670032426.jpg'), + ('0915811332', 'Sacred Journey Of The Peaceful Warrior', 'https://images.isbndb.com/covers/13/35/9780915811335.jpg'), + ('1558744606', 'Chicken Soup For The Mother''s Soul: 101 Stories To Open The Hearts And Rekindle The Spirits Of Mothers', 'https://images.isbndb.com/covers/46/08/9781558744608.jpg'), + ('080410753X', 'The Kitchen God''s Wife', 'https://images.isbndb.com/covers/75/32/9780804107532.jpg'), + ('0451526503', 'The Adventures Of Huckleberry Finn: Revised Edition (Signet Classics)', 'https://images.isbndb.com/covers/65/02/9780451526502.jpg'), + ('0345325818', 'The Silmarillion', 'https://images.isbndb.com/covers/58/15/9780345325815.jpg'), + ('044023767X', 'Teen Angst? Naaah . . . A Quasi-autobiography', 'https://images.isbndb.com/covers/76/79/9780440237679.jpg'), + ('014131088X', 'Speak', 'https://images.isbndb.com/covers/08/86/9780141310886.jpg'), + ('043909013X', 'Kerosene (Push Fiction)', 'https://images.isbndb.com/covers/01/31/9780439090131.jpg'), + ('0140244824', 'Songs In Ordinary Time (Oprah''s Book Club)', 'https://images.isbndb.com/covers/48/23/9780140244823.jpg'), + ('155643068X', 'Exploring Inner & Outer Space', 'https://images.isbndb.com/covers/06/88/9781556430688.jpg'), + ('096478260X', 'Miracle In The Void: Free Energy, Ufos And Other Scientific Revelations', 'https://images.isbndb.com/covers/26/00/9780964782600.jpg'), + ('155643152X', 'The Second Coming Of Science', 'https://images.isbndb.com/covers/15/24/9781556431524.jpg'), + ('0553346768', 'Synchronicity: The Bridge Between Matter And Mind', 'https://images.isbndb.com/covers/67/63/9780553346763.jpg'), + ('0884043142', 'L. Ron Hubbard Presents Writers Of The Future, Vol. IV', 'https://images.isbndb.com/covers/31/40/9780884043140.jpg'), + ('0743221990', 'The Stone Monkey (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/19/93/9780743221993.jpg'), + ('0312983212', 'Saucer', 'https://images.isbndb.com/covers/32/15/9780312983215.jpg'), + ('0553486411', 'Clones (Star Wars: Galaxy Of Fear, Book 11)', 'https://images.isbndb.com/covers/64/14/9780553486414.jpg'), + ('3478088534', 'Jetzt Will Ich''s Wirklich Wissen', 'https://images.isbndb.com/covers/85/34/9783478088534.jpg'), + ('3821807059', 'Herr Lehmann', 'https://images.isbndb.com/covers/70/58/9783821807058.jpg'), + ('0865532168', 'Arnold: An Unauthorized Biography', 'https://images.isbndb.com/covers/21/68/9780865532168.jpg'), + ('059040640X', 'Freedom Train: The Story Of Harriet Tubman', 'https://images.isbndb.com/covers/64/06/9780590406406.jpg'), + ('1566197155', 'Little Princess', 'https://images.isbndb.com/covers/71/51/9781566197151.jpg'), + ('0805210318', 'Light On Yoga: Yoga Dipika', 'https://images.isbndb.com/covers/03/16/9780805210316.jpg'), + ('031227999X', 'Emotionally Weird: A Novel', 'https://images.isbndb.com/covers/99/98/9780312279998.jpg'), + ('0385508417', 'Skipping Christmas', 'https://images.isbndb.com/covers/84/14/9780385508414.jpg'), + ('0385510438', 'The Last Juror', 'https://images.isbndb.com/covers/04/31/9780385510431.jpg'), + ('0848705459', 'Southern Living Cooking Light', 'https://images.isbndb.com/covers/54/59/9780848705459.jpg'), + ('0380723638', 'Ill Wind (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/36/38/9780380723638.jpg'), + ('0718001044', 'Nelson''s Bedtime Bible Stories: 150 Passages From The International Children''s Bible', 'https://images.isbndb.com/covers/10/49/9780718001049.jpg'), + ('0307132668', 'Pokemon - Bye Bye Butterfree - Adventure Series #1', 'https://images.isbndb.com/covers/26/66/9780307132666.jpg'), + ('0812515722', 'American Gothic', 'https://images.isbndb.com/covers/57/25/9780812515725.jpg'), + ('0373169876', 'My Big Fake Green-Card Wedding (Harlequin American Romance)', 'https://images.isbndb.com/covers/98/70/9780373169870.jpg'), + ('0890842795', 'English Handbook For Christian Schools', 'https://images.isbndb.com/covers/27/99/9780890842799.jpg'), + ('0385324057', 'Summer Sisters', 'https://images.isbndb.com/covers/40/52/9780385324052.jpg'), + ('9505470010', 'Fahrenheit 451 (Spanish Edition)', 'https://images.isbndb.com/covers/00/13/9789505470013.jpg'), + ('0609602535', 'The Overseer', 'https://images.isbndb.com/covers/25/39/9780609602539.jpg'), + ('0425185710', 'Valhalla Rising (Dirk Pitt Adventure)', 'https://images.isbndb.com/covers/57/11/9780425185711.jpg'), + ('0061030651', 'U.S.S. Seawolf', 'https://images.isbndb.com/covers/06/59/9780061030659.jpg'), + ('0425178773', 'Day Of Reckoning (Sean Dillon)', 'https://images.isbndb.com/covers/87/75/9780425178775.jpg'), + ('0553575619', 'Raptor Red', 'https://images.isbndb.com/covers/56/13/9780553575613.jpg'), + ('0671578391', 'The Dracula Tape', 'https://images.isbndb.com/covers/83/98/9780671578398.jpg'), + ('0425095584', 'Cold Sea Rising', 'https://images.isbndb.com/covers/55/84/9780425095584.jpg'), + ('0451409086', 'Threat Vector', 'https://images.isbndb.com/covers/90/89/9780451409089.jpg'), + ('031298250X', 'America: A Jake Grafton Novel (Jake Grafton Novels)', 'https://images.isbndb.com/covers/25/08/9780312982508.jpg'), + ('006109594X', 'Nimitz Class', 'https://images.isbndb.com/covers/59/48/9780061095948.jpg'), + ('0671527215', 'Hitchhikers''s Guide To The Galaxy', 'https://images.isbndb.com/covers/72/11/9780671527211.jpg'), + ('0486203077', 'Tales Of Terror And The Supernatural', 'https://images.isbndb.com/covers/30/72/9780486203072.jpg'), + ('0671522817', 'BRAVEHEART', 'https://images.isbndb.com/covers/28/10/9780671522810.jpg'), + ('0618074716', 'The Hallelujah Side', 'https://images.isbndb.com/covers/47/16/9780618074716.jpg'), + ('1400062888', 'Obliviously On He Sails: The Bush Administration In Rhyme', 'https://images.isbndb.com/covers/28/81/9781400062881.jpg'), + ('0618045996', 'Riding The Bus With My Sister: A True Life Journey', 'https://images.isbndb.com/covers/59/90/9780618045990.jpg'), + ('0312303033', 'Perfect Skin: A Novel', 'https://images.isbndb.com/covers/30/37/9780312303037.jpg'), + ('1931520038', 'The Mount', 'https://images.isbndb.com/covers/00/34/9781931520034.jpg'), + ('0671318314', 'Callahan''s Lady', 'https://images.isbndb.com/covers/83/14/9780671318314.jpg'), + ('0553377876', 'Half Asleep In Frog Pajamas', 'https://images.isbndb.com/covers/78/73/9780553377873.jpg'), + ('1558612815', 'Allegra Maud Goldman', 'https://images.isbndb.com/covers/28/15/9781558612815.jpg'), + ('014025448X', 'At Home In Mitford (The Mitford Years, Book 1)', 'https://images.isbndb.com/covers/44/88/9780140254488.jpg'), + ('0060934417', 'Bel Canto', 'https://images.isbndb.com/covers/44/15/9780060934415.jpg'), + ('0671793489', 'All Around The Town', 'https://images.isbndb.com/covers/34/87/9780671793487.jpg'), + ('0174434642', 'Othello (3rd Series; The Arden Shakespeare)', 'https://images.isbndb.com/covers/46/41/9780174434641.jpg'), + ('0679772677', 'A Civil Action', 'https://images.isbndb.com/covers/26/75/9780679772675.jpg'), + ('0312983824', 'Faking It', 'https://images.isbndb.com/covers/38/26/9780312983826.jpg'), + ('0449149676', 'On Mystic Lake', 'https://images.isbndb.com/covers/96/76/9780449149676.jpg'), + ('0449006344', 'Angel Falls', 'https://images.isbndb.com/covers/63/44/9780449006344.jpg'), + ('0553568183', 'Blue Moon', 'https://images.isbndb.com/covers/81/89/9780553568189.jpg'), + ('0451191153', 'The Fountainhead', 'https://images.isbndb.com/covers/11/51/9780451191151.jpg'), + ('0440224624', 'The Loop', 'https://images.isbndb.com/covers/46/24/9780440224624.jpg'), + ('0451523067', 'Emma (Signet Classics)', 'https://images.isbndb.com/covers/30/68/9780451523068.jpg'), + ('0743418174', 'Good In Bed', 'https://images.isbndb.com/covers/81/71/9780743418171.jpg'), + ('0451526295', 'Mansfield Park (Signet Classics)', 'https://images.isbndb.com/covers/62/98/9780451526298.jpg'), + ('0440214424', 'Out Of Sight', 'https://images.isbndb.com/covers/44/27/9780440214427.jpg'), + ('0451187903', 'Sense And Sensibility: Movie Tie In Edition', 'https://images.isbndb.com/covers/79/01/9780451187901.jpg'), + ('0385491050', 'Surfacing', 'https://images.isbndb.com/covers/10/51/9780385491051.jpg'), + ('0671036505', 'The Vineyard', 'https://images.isbndb.com/covers/65/08/9780671036508.jpg'), + ('0553213504', 'The Count Of Monte Cristo (Bantam Classics)', 'https://images.isbndb.com/covers/35/08/9780553213508.jpg'), + ('0446605891', 'With Heart', 'https://images.isbndb.com/covers/58/92/9780446605892.jpg'), + ('0394758285', 'The Big Sleep', 'https://images.isbndb.com/covers/82/82/9780394758282.jpg'), + ('0671004565', 'We''ll Meet Again', 'https://images.isbndb.com/covers/45/69/9780671004569.jpg'), + ('0345370805', 'How To Make An American Quilt', 'https://images.isbndb.com/covers/08/08/9780345370808.jpg'), + ('0375703055', 'Ellen Foster', 'https://images.isbndb.com/covers/30/58/9780375703058.jpg'), + ('0156006529', 'Where Or When : A Novel', 'https://images.isbndb.com/covers/65/21/9780156006521.jpg'), + ('0446673544', 'Sex And The City', 'https://images.isbndb.com/covers/35/49/9780446673549.jpg'), + ('0140256369', 'Of Love And Other Demons (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/63/69/9780140256369.jpg'), + ('0312243022', 'The Hours: A Novel', 'https://images.isbndb.com/covers/30/29/9780312243029.jpg'), + ('0316789844', 'Resistance: A Novel', 'https://images.isbndb.com/covers/98/44/9780316789844.jpg'), + ('0679761837', 'A Natural History Of Love', 'https://images.isbndb.com/covers/18/39/9780679761839.jpg'), + ('0385490445', 'Alias Grace: A Novel', 'https://images.isbndb.com/covers/04/43/9780385490443.jpg'), + ('0380725398', 'Jamaica Inn', 'https://images.isbndb.com/covers/53/97/9780380725397.jpg'), + ('0345316770', 'Almost Paradise', 'https://images.isbndb.com/covers/67/76/9780345316776.jpg'), + ('0375700757', 'Cold Mountain: A Novel', 'https://images.isbndb.com/covers/07/50/9780375700750.jpg'), + ('0070212570', 'Fried Green Tomatoes At The Whistle Stop Cafe', 'https://images.isbndb.com/covers/25/72/9780070212572.jpg'), + ('0385480016', 'Bird By Bird: Some Instructions On Writing And Life', 'https://images.isbndb.com/covers/00/17/9780385480017.jpg'), + ('0061098361', 'Circle Of Three: A Novel', 'https://images.isbndb.com/covers/83/69/9780061098369.jpg'), + ('0061093092', 'Lily White', 'https://images.isbndb.com/covers/30/98/9780061093098.jpg'), + ('0821758950', 'Cha Cha Cha', 'https://images.isbndb.com/covers/89/53/9780821758953.jpg'), + ('0679729917', 'The Best Of Roald Dahl', 'https://images.isbndb.com/covers/99/14/9780679729914.jpg'), + ('0451411013', 'The Grave Maurice', 'https://images.isbndb.com/covers/10/13/9780451411013.jpg'), + ('0446611239', 'The Cabinet Of Curiosities (Pendergast, Book 3)', 'https://images.isbndb.com/covers/12/37/9780446611237.jpg'), + ('0553580078', 'The Years Of Rice And Salt', 'https://images.isbndb.com/covers/00/75/9780553580075.jpg'), + ('0425189414', 'Midnight Runner (Sean Dillon)', 'https://images.isbndb.com/covers/94/12/9780425189412.jpg'), + ('0812909372', 'On Language', 'https://images.isbndb.com/covers/93/71/9780812909371.jpg'), + ('0451410912', 'A Killing Gift', 'https://images.isbndb.com/covers/09/17/9780451410917.jpg'), + ('0316781266', 'The Last Time They Met: A Novel', 'https://images.isbndb.com/covers/12/68/9780316781268.jpg'), + ('0486280616', 'Adventures Of Huckleberry Finn (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/15/9780486280615.jpg'), + ('0743405978', 'Bless The Child', 'https://images.isbndb.com/covers/59/73/9780743405973.jpg'), + ('0671032658', 'The Green Mile', 'https://images.isbndb.com/covers/26/54/9780671032654.jpg'), + ('0446607835', 'Somebody To Love?: A Rock-and-Roll Memoir', 'https://images.isbndb.com/covers/78/34/9780446607834.jpg'), + ('0451402103', 'Bitter Blood: A True Story Of Southern Family Pride, Madness, And Multiple Murder (Onyx)', 'https://images.isbndb.com/covers/21/03/9780451402103.jpg'), + ('0373250223', 'Name & Address Withheld', 'https://images.isbndb.com/covers/02/26/9780373250226.jpg'), + ('0380817683', 'Rachel''s Holiday', 'https://images.isbndb.com/covers/76/89/9780380817689.jpg'), + ('0671701053', 'Thing Of Beauty', 'https://images.isbndb.com/covers/10/55/9780671701055.jpg'), + ('0671000381', 'Courtney Love: The Queen Of Noise', 'https://images.isbndb.com/covers/03/87/9780671000387.jpg'), + ('006101253X', 'Sinners', 'https://images.isbndb.com/covers/25/32/9780061012532.jpg'), + ('0671689231', 'Little Girl Lost', 'https://images.isbndb.com/covers/92/30/9780671689230.jpg'), + ('0380814021', 'The Princess Diaries', 'https://images.isbndb.com/covers/40/22/9780380814022.jpg'), + ('0373711026', 'North Country Man (Harlequin Superromance No. 1102)', 'https://images.isbndb.com/covers/10/24/9780373711024.jpg'), + ('0373710992', 'The Farmer''s Wife (Harlequin Superromance No. 1099)', 'https://images.isbndb.com/covers/09/97/9780373710997.jpg'), + ('0373711107', 'The Comeback Girl: Those Sullivan Sisters (Harlequin Superromance No. 1110)', 'https://images.isbndb.com/covers/11/09/9780373711109.jpg'), + ('0440217806', 'Secret Ceremonies', 'https://images.isbndb.com/covers/78/00/9780440217800.jpg'), + ('0373711123', 'Another Man''s Wife (Harlequin Superromance No. 1112)', 'https://images.isbndb.com/covers/11/23/9780373711123.jpg'), + ('0373711115', 'Sarah''s Baby : Koomera Crossing (Harlequin Superromance No. 1111)', 'https://images.isbndb.com/covers/11/16/9780373711116.jpg'), + ('0373711131', 'Little Girl Lost (Harlequin Superromance No. 1113)', 'https://images.isbndb.com/covers/11/30/9780373711130.jpg'), + ('0061098795', 'The Wailing Wind', 'https://images.isbndb.com/covers/87/96/9780061098796.jpg'), + ('0791423549', 'Native American Postcolonial Psychology', 'https://images.isbndb.com/covers/35/47/9780791423547.jpg'), + ('0375725784', 'A Heartbreaking Work Of Staggering Genius', 'https://images.isbndb.com/covers/57/84/9780375725784.jpg'), + ('0465016146', 'The Mystery Of Capital: Why Capitalism Triumphs In The West And Fails Everywhere Else', 'https://images.isbndb.com/covers/61/43/9780465016143.jpg'), + ('0465016103', 'The Other Path: The Economic Answer To Terrorism', 'https://images.isbndb.com/covers/61/05/9780465016105.jpg'), + ('0373226519', 'In The Blink Of An Eye (The Taylor Clan) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/65/11/9780373226511.jpg'), + ('0380012774', 'The Importance Of Being Earnest', 'https://images.isbndb.com/covers/27/70/9780380012770.jpg'), + ('225313922X', 'Les Thanatonautes', 'https://images.isbndb.com/covers/92/25/9782253139225.jpg'), + ('0142004030', 'Lost In A Good Book (A Thursday Next Novel)', 'https://images.isbndb.com/covers/40/36/9780142004036.jpg'), + ('0452281784', 'Bad Heir Day', 'https://images.isbndb.com/covers/17/83/9780452281783.jpg'), + ('0375704558', 'Charlotte Gray', 'https://images.isbndb.com/covers/45/50/9780375704550.jpg'), + ('038533656X', 'Apocalipstick', 'https://images.isbndb.com/covers/65/67/9780385336567.jpg'), + ('0743230213', 'Harem: A Novel', 'https://images.isbndb.com/covers/02/16/9780743230216.jpg'), + ('0345436911', 'The Dress Lodger (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/69/17/9780345436917.jpg'), + ('0452284481', 'Le Divorce', 'https://images.isbndb.com/covers/44/87/9780452284487.jpg'), + ('0802135196', 'Valley Of The Dolls', 'https://images.isbndb.com/covers/51/93/9780802135193.jpg'), + ('0440217520', 'Tunnel Vision (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/75/27/9780440217527.jpg'), + ('0373834985', 'A Comfortable Wife', 'https://images.isbndb.com/covers/49/83/9780373834983.jpg'), + ('0679450548', 'I Was Amelia Earhart', 'https://images.isbndb.com/covers/05/42/9780679450542.jpg'), + ('0451135555', 'Summer Harvest (Signet)', 'https://images.isbndb.com/covers/55/51/9780451135551.jpg'), + ('0345339703', 'The Fellowship Of The Ring (The Lord Of The Rings, Volume 1)', 'https://images.isbndb.com/covers/97/06/9780345339706.jpg'), + ('038039586X', 'Watership Down', 'https://images.isbndb.com/covers/58/66/9780380395866.jpg'), + ('0670030643', 'The Eyre Affair', 'https://images.isbndb.com/covers/06/44/9780670030644.jpg'), + ('0060929596', 'As Nature Made Him: The Boy Who Was Raised As A Girl', 'https://images.isbndb.com/covers/95/96/9780060929596.jpg'), + ('3499232871', 'Herzsprung', 'https://images.isbndb.com/covers/28/79/9783499232879.jpg'), + ('0374516901', 'Basin And Range', 'https://images.isbndb.com/covers/69/01/9780374516901.jpg'), + ('0440131480', 'Breakfast Of Champions', 'https://images.isbndb.com/covers/14/89/9780440131489.jpg'), + ('0609600745', 'The Art Of Doing Nothing: Simple Ways To Make Time For Yourself', 'https://images.isbndb.com/covers/07/40/9780609600740.jpg'), + ('0375707425', 'Embers', 'https://images.isbndb.com/covers/74/21/9780375707421.jpg'), + ('3453151933', 'Power Plays 2 - Tigerjagd', 'https://images.isbndb.com/covers/19/32/9783453151932.jpg'), + ('0231105592', 'The Garden Of Ediacara', 'https://images.isbndb.com/covers/55/90/9780231105590.jpg'), + ('0590317822', 'Just Plain Cat', 'https://images.isbndb.com/covers/78/25/9780590317825.jpg'), + ('014056232X', 'Way Out West Lives A Coyote Named Frank (Picture Puffins)', 'https://images.isbndb.com/covers/23/23/9780140562323.jpg'), + ('0590447319', 'In My Father''s House (Point)', 'https://images.isbndb.com/covers/73/17/9780590447317.jpg'), + ('0440940001', 'Island Of The Blue Dolphins', 'https://images.isbndb.com/covers/00/05/9780440940005.jpg'), + ('0440401119', 'How To Fight A Girl', 'https://images.isbndb.com/covers/11/17/9780440401117.jpg'), + ('0440203155', 'The Romantic Obsessions And Humiliations Of Annie Sehlmeier', 'https://images.isbndb.com/covers/31/55/9780440203155.jpg'), + ('0812565959', 'Shadow Of The Hegemon (Ender, Book 6)', 'https://images.isbndb.com/covers/59/59/9780812565959.jpg'), + ('034536628X', 'Magic Casement (Man Of His Word)', 'https://images.isbndb.com/covers/62/83/9780345366283.jpg'), + ('0880387483', 'Tantras (Forgotten Realms: Avatar Trilogy, Book 2)', 'https://images.isbndb.com/covers/74/84/9780880387484.jpg'), + ('0880387300', 'Shadowdale (Forgotten Realms: Avatar Trilogy, Book One)', 'https://images.isbndb.com/covers/73/09/9780880387309.jpg'), + ('0425163385', 'The Night Crew', 'https://images.isbndb.com/covers/33/82/9780425163382.jpg'), + ('0743444051', 'CSI: Sin City', 'https://images.isbndb.com/covers/40/57/9780743444057.jpg'), + ('0061056103', 'Blackmantle (Keltiad)', 'https://images.isbndb.com/covers/61/09/9780061056109.jpg'), + ('0671042262', 'The Blue Nowhere: A Novel', 'https://images.isbndb.com/covers/22/64/9780671042264.jpg'), + ('0425157539', 'Sudden Prey', 'https://images.isbndb.com/covers/75/34/9780425157534.jpg'), + ('0553585681', 'Always A Thief', 'https://images.isbndb.com/covers/56/81/9780553585681.jpg'), + ('0553585118', 'Once A Thief', 'https://images.isbndb.com/covers/51/17/9780553585117.jpg'), + ('0886777690', 'A Thousand Words For Stranger', 'https://images.isbndb.com/covers/76/92/9780886777692.jpg'), + ('0743212002', 'Deck The Halls', 'https://images.isbndb.com/covers/20/07/9780743212007.jpg'), + ('3426650754', 'Der Mann Der''s Wert Ist (Fiction, Poetry & Drama)', 'https://images.isbndb.com/covers/07/52/9783426650752.jpg'), + ('1854877178', 'Come Home Forever', 'https://images.isbndb.com/covers/71/78/9781854877178.jpg'), + ('0380803526', 'The Renegades: Cole', 'https://images.isbndb.com/covers/35/21/9780380803521.jpg'), + ('0373152655', 'Christmas Miracles', 'https://images.isbndb.com/covers/26/50/9780373152650.jpg'), + ('0451404033', 'Fires In The Mist', 'https://images.isbndb.com/covers/40/39/9780451404039.jpg'), + ('1583140352', 'Return To Love (Arabesque)', 'https://images.isbndb.com/covers/03/52/9781583140352.jpg'), + ('1854879073', 'The Marriage Plan', 'https://images.isbndb.com/covers/90/73/9781854879073.jpg'), + ('0821728326', 'The Eagle And The Dove', 'https://images.isbndb.com/covers/83/21/9780821728321.jpg'), + ('037348397X', 'The Donovan Legacy: Captivated/ Entranced/ Charmed', 'https://images.isbndb.com/covers/39/76/9780373483976.jpg'), + ('0380773155', 'It Happened To Nancy: By An Anonymous Teenager, A True Story From Her Diary', 'https://images.isbndb.com/covers/31/52/9780380773152.jpg'), + ('3404100263', 'Die Nadel: Roman', 'https://images.isbndb.com/covers/02/62/9783404100262.jpg'), + ('0679731148', 'A Year In Provence', 'https://images.isbndb.com/covers/11/46/9780679731146.jpg'), + ('2070417700', 'Deus Irae', 'https://images.isbndb.com/covers/77/04/9782070417704.jpg'), + ('2070360075', 'Le Vieil Homme Et La Mer', 'https://images.isbndb.com/covers/00/79/9782070360079.jpg'), + ('0786889373', 'The Big Picture', 'https://images.isbndb.com/covers/93/72/9780786889372.jpg'), + ('2207245810', 'Radio Libre Albemuth', 'https://images.isbndb.com/covers/58/11/9782207245811.jpg'), + ('2207250474', 'Siva', 'https://images.isbndb.com/covers/04/71/9782207250471.jpg'), + ('2290331406', 'Dr. Bloodmoney', 'https://images.isbndb.com/covers/14/08/9782290331408.jpg'), + ('2070426815', 'L''oeil De La Sibylle', 'https://images.isbndb.com/covers/68/12/9782070426812.jpg'), + ('2290305251', 'A Rebrousse-temps', 'https://images.isbndb.com/covers/52/56/9782290305256.jpg'), + ('2070364283', 'La Perle', 'https://images.isbndb.com/covers/42/82/9782070364282.jpg'), + ('2266128566', 'Le Meilleur Des Mondes', 'https://images.isbndb.com/covers/85/68/9782266128568.jpg'), + ('2070363104', 'Histoires Extraordinaires', 'https://images.isbndb.com/covers/31/00/9782070363100.jpg'), + ('2253152277', 'Véronika Décide De Mourir', 'https://images.isbndb.com/covers/22/79/9782253152279.jpg'), + ('2207252000', 'La Maison Des Feuilles', 'https://images.isbndb.com/covers/20/00/9782207252000.jpg'), + ('2253170453', 'Risque Mortel', 'https://images.isbndb.com/covers/04/57/9782253170457.jpg'), + ('2723409821', 'Balade Au Bout Du Monde, Tome 4 : La Pierre De Folie', 'https://images.isbndb.com/covers/98/27/9782723409827.jpg'), + ('2070415686', 'Le Guide Galactique, Tome 1', 'https://images.isbndb.com/covers/56/87/9782070415687.jpg'), + ('2258036992', 'La Porte Obscure', 'https://images.isbndb.com/covers/69/94/9782258036994.jpg'), + ('2207251756', 'Nouvelles : Tome 2, 1953-1981', 'https://images.isbndb.com/covers/17/51/9782207251751.jpg'), + ('2266000489', 'La Nuit Des Temps', 'https://images.isbndb.com/covers/04/82/9782266000482.jpg'), + ('2070360423', 'La Peste', 'https://images.isbndb.com/covers/04/20/9782070360420.jpg'), + ('0394822862', 'Bears In The Night', 'https://images.isbndb.com/covers/28/60/9780394822860.jpg'), + ('0874493803', 'A First Book Of Shapes (Preschool Dinosaur Playhouse)', 'https://images.isbndb.com/covers/38/01/9780874493801.jpg'), + ('1569870942', 'Edgar The Lion Who Would Be A Good King', 'https://images.isbndb.com/covers/09/45/9781569870945.jpg'), + ('1579730272', 'The Not-So-Perfect Picnic (Disney-Pixar''s "A Bug''s Life" Library, Vol. 11)', 'https://images.isbndb.com/covers/02/77/9781579730277.jpg'), + ('0307177092', 'Peters Welcom Tell A Tale Book', 'https://images.isbndb.com/covers/70/94/9780307177094.jpg'), + ('2253004898', 'La Guerre De Troie N''aura Pas Lieu', 'https://images.isbndb.com/covers/48/99/9782253004899.jpg'), + ('0812094271', 'Miro (Famous Artists)', 'https://images.isbndb.com/covers/42/75/9780812094275.jpg'), + ('0380600129', 'The Indian In The Cupboard', 'https://images.isbndb.com/covers/01/20/9780380600120.jpg'), + ('0451522389', 'The Time Machine And The Invisible Man (Signet Classics)', 'https://images.isbndb.com/covers/23/82/9780451522382.jpg'), + ('0425169324', 'Sworn To Defend', 'https://images.isbndb.com/covers/93/22/9780425169322.jpg'), + ('082176828X', 'What You Wish For', 'https://images.isbndb.com/covers/82/80/9780821768280.jpg'), + ('0316693324', 'When The Wind Blows', 'https://images.isbndb.com/covers/33/25/9780316693325.jpg'), + ('0553283685', 'Hyperion', 'https://images.isbndb.com/covers/36/86/9780553283686.jpg'), + ('1841215457', 'Dad Alert! (Orchard Red Apple)', 'https://images.isbndb.com/covers/54/57/9781841215457.jpg'), + ('0064410358', 'The Nightmare Room Thrillogy #3: No Survivors', 'https://images.isbndb.com/covers/03/59/9780064410359.jpg'), + ('0007108648', 'Whizzard! (Tales Of The Dark Forest)', 'https://images.isbndb.com/covers/86/40/9780007108640.jpg'), + ('0064472930', 'Second Sight (Circle Of Three #3)', 'https://images.isbndb.com/covers/29/37/9780064472937.jpg'), + ('0590629824', 'The Capture (Animorphs, #6)', 'https://images.isbndb.com/covers/98/29/9780590629829.jpg'), + ('0743412273', 'Pet Sematary', 'https://images.isbndb.com/covers/22/78/9780743412278.jpg'), + ('0140089586', 'The Second Rumpole Omnibus', 'https://images.isbndb.com/covers/95/85/9780140089585.jpg'), + ('0316140651', 'Johnny Long Legs', 'https://images.isbndb.com/covers/06/52/9780316140652.jpg'), + ('1559277785', 'Full House', 'https://images.isbndb.com/covers/77/85/9781559277785.jpg'), + ('0345367898', 'The Witching Hour (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/78/91/9780345367891.jpg'), + ('0205280854', 'Including Students With Special Needs: A Practical Guide For Classroom Teachers', 'https://images.isbndb.com/covers/08/58/9780205280858.jpg'), + ('0553110721', 'Dune: House Harkonnen', 'https://images.isbndb.com/covers/07/22/9780553110722.jpg'), + ('1558534245', 'Sailing On The Ice And Other Stories From The Old Squire''s Farm', 'https://images.isbndb.com/covers/42/47/9781558534247.jpg'), + ('0553580272', 'House Atreides (Dune: House Trilogy, Book 1)', 'https://images.isbndb.com/covers/02/73/9780553580273.jpg'), + ('1560980087', 'Bertha Lum (American Printmakers: A Smithsonian Series)', 'https://images.isbndb.com/covers/00/87/9781560980087.jpg'), + ('0679412271', 'Where The Suckers Moon: An Advertising Story', 'https://images.isbndb.com/covers/22/74/9780679412274.jpg'), + ('0803281730', 'The Rocky Mountain Wonderland', 'https://images.isbndb.com/covers/17/38/9780803281738.jpg'), + ('0345396529', 'First King Of Shannara (The Sword Of Shannara)', 'https://images.isbndb.com/covers/65/25/9780345396525.jpg'), + ('0440455332', 'Me And My Little Brain (Great Brain)', 'https://images.isbndb.com/covers/53/32/9780440455332.jpg'), + ('1860462995', 'The Swan', 'https://images.isbndb.com/covers/29/93/9781860462993.jpg'), + ('0679452281', 'Asylum', 'https://images.isbndb.com/covers/22/87/9780679452287.jpg'), + ('0811807150', 'Swimmer In The Secret Sea', 'https://images.isbndb.com/covers/71/59/9780811807159.jpg'), + ('0393029190', 'And The Sea Will Tell', 'https://images.isbndb.com/covers/91/92/9780393029192.jpg'), + ('0385425686', 'Fishboy', 'https://images.isbndb.com/covers/56/81/9780385425681.jpg'), + ('0312169655', 'Popcorn', 'https://images.isbndb.com/covers/96/57/9780312169657.jpg'), + ('0785324712', 'All New Great American Favorite Brand Name Cookbook', 'https://images.isbndb.com/covers/47/13/9780785324713.jpg'), + ('0449912558', 'The Sparrow', 'https://images.isbndb.com/covers/25/53/9780449912553.jpg'), + ('0934257345', 'Glad Rags', 'https://images.isbndb.com/covers/73/43/9780934257343.jpg'), + ('0312205872', 'Slightly Chipped: Footnotes In Booklore', 'https://images.isbndb.com/covers/58/74/9780312205874.jpg'), + ('0670867144', 'The 3000-Mile Garden: An Exchange Of Letters On Gardening, Food, And The Good Life', 'https://images.isbndb.com/covers/71/41/9780670867141.jpg'), + ('0805051732', 'The Word "Desire"', 'https://images.isbndb.com/covers/17/35/9780805051735.jpg'), + ('0449300021', 'Les Miserables', 'https://images.isbndb.com/covers/00/22/9780449300022.jpg'), + ('0684835983', 'Before I Say Good-Bye: A Novel', 'https://images.isbndb.com/covers/59/83/9780684835983.jpg'), + ('0440226430', 'Summer Sisters', 'https://images.isbndb.com/covers/64/37/9780440226437.jpg'), + ('0385721358', 'Look At Me: A Novel', 'https://images.isbndb.com/covers/13/56/9780385721356.jpg'), + ('031231616X', 'I Capture The Castle', 'https://images.isbndb.com/covers/61/67/9780312316167.jpg'), + ('0764504509', 'PowerPoint 2000 For Windows For Dummies', 'https://images.isbndb.com/covers/45/01/9780764504501.jpg'), + ('089480829X', 'What To Expect When You''re Expecting', 'https://images.isbndb.com/covers/82/96/9780894808296.jpg'), + ('0767912233', 'Babyville', 'https://images.isbndb.com/covers/22/35/9780767912235.jpg'), + ('0971453217', 'On Becoming Baby Wise Book Two: Parenting Your Pre Toddler 5-12 Month Old Through The Babyhood Transition', 'https://images.isbndb.com/covers/32/10/9780971453210.jpg'), + ('0971453209', 'On Becoming Baby Wise: The Classic Sleep Reference Guide Used By Over 1,000,000 Parents Worldwide', 'https://images.isbndb.com/covers/32/03/9780971453203.jpg'), + ('0785268030', 'Starting Your Marriage Right: What You Need To Know In The Early Years To Make It Last A Lifetime', 'https://images.isbndb.com/covers/80/31/9780785268031.jpg'), + ('0743201736', 'The Motley Fool Investment Guide : How The Fool Beats Wall Streets Wise Men And How You Can Too', 'https://images.isbndb.com/covers/17/35/9780743201735.jpg'), + ('0894805770', 'What To Expect The First Year', 'https://images.isbndb.com/covers/57/76/9780894805776.jpg'), + ('0440177499', 'Snow Queen', 'https://images.isbndb.com/covers/74/94/9780440177494.jpg'), + ('0553232053', 'Tea With The Black Dragon', 'https://images.isbndb.com/covers/20/59/9780553232059.jpg'), + ('0312269102', 'Tattoo Girl', 'https://images.isbndb.com/covers/91/04/9780312269104.jpg'), + ('0062502174', 'The Alchemist', 'https://images.isbndb.com/covers/21/79/9780062502179.jpg'), + ('0688177751', 'Miss Julia Speaks Her Mind: A Novel', 'https://images.isbndb.com/covers/77/51/9780688177751.jpg'), + ('0345438329', 'Big Stone Gap: A Novel (Big Stone Gap Novels)', 'https://images.isbndb.com/covers/83/24/9780345438324.jpg'), + ('0345401123', 'Your Blues Ain''t Like Mine: A Novel', 'https://images.isbndb.com/covers/11/20/9780345401120.jpg'), + ('1593160151', 'Use What You''ve Got, And Other Business Lessons I Learned From My Mom', 'https://images.isbndb.com/covers/01/59/9781593160159.jpg'), + ('1593160127', 'Nina: Adolescence', 'https://images.isbndb.com/covers/01/28/9781593160128.jpg'), + ('0451209435', 'Fear Of Flying', 'https://images.isbndb.com/covers/94/36/9780451209436.jpg'), + ('1551669501', 'Diamond Spur', 'https://images.isbndb.com/covers/95/02/9781551669502.jpg'), + ('0375707972', 'The Reader (Oprah''s Book Club)', 'https://images.isbndb.com/covers/79/71/9780375707971.jpg'), + ('0618126988', 'The Silmarillion', 'https://images.isbndb.com/covers/69/89/9780618126989.jpg'), + ('0060094850', 'The Torn Skirt', 'https://images.isbndb.com/covers/48/50/9780060094850.jpg'), + ('0060192305', 'There''s A Spiritual Solution To Every Problem', 'https://images.isbndb.com/covers/23/03/9780060192303.jpg'), + ('0142000361', 'The Florabama Ladies'' Auxiliary & Sewing Circle', 'https://images.isbndb.com/covers/03/66/9780142000366.jpg'), + ('0872860175', 'Howl And Other Poems (City Lights Pocket Poets, No. 4)', 'https://images.isbndb.com/covers/01/79/9780872860179.jpg'), + ('031219126X', 'Frankenstein (Case Studies In Contemporary Criticism)', 'https://images.isbndb.com/covers/12/69/9780312191269.jpg'), + ('0020518609', 'Short Stories Of Ernest Hemingway (A Scribner Classic)', 'https://images.isbndb.com/covers/86/00/9780020518600.jpg'), + ('0345446860', 'Back When We Were Grownups: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/68/62/9780345446862.jpg'), + ('0446310492', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/04/99/9780446310499.jpg'), + ('037348285X', 'Birds, Bees And Babies ''94: The Best Mistake/ The Baby Machine/ Cullen''s Child', 'https://images.isbndb.com/covers/28/56/9780373482856.jpg'), + ('0515090506', 'The Cat Who Played Brahms', 'https://images.isbndb.com/covers/05/05/9780515090505.jpg'), + ('0399145087', 'Black Notice', 'https://images.isbndb.com/covers/50/87/9780399145087.jpg'), + ('0812590244', 'Irish Eyes (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/02/41/9780812590241.jpg'), + ('0963641328', 'Totally Useless Office Skills', 'https://images.isbndb.com/covers/13/28/9780963641328.jpg'), + ('1574551108', 'Catechism Of The Catholic Church', 'https://images.isbndb.com/covers/11/05/9781574551105.jpg'), + ('0879739304', 'Father McBride''s Family Catechism', 'https://images.isbndb.com/covers/93/00/9780879739300.jpg'), + ('0965712516', 'The Missionary''s Catechism', 'https://images.isbndb.com/covers/25/14/9780965712514.jpg'), + ('0670829943', 'The Enthusiasms Of Robertson Davies', 'https://images.isbndb.com/covers/99/41/9780670829941.jpg'), + ('0060192119', 'As Nature Made Him: The Boy Who Was Raised As A Girl', 'https://images.isbndb.com/covers/21/12/9780060192112.jpg'), + ('0836218256', 'Something Under The Bed Is Drooling', 'https://images.isbndb.com/covers/82/51/9780836218251.jpg'), + ('0898707129', 'The War Against Population: The Economics And Ideology Of World Population Control', 'https://images.isbndb.com/covers/71/20/9780898707120.jpg'), + ('0805420460', 'Mere Christianity', 'https://images.isbndb.com/covers/04/63/9780805420463.jpg'), + ('0140140352', 'Haroun And The Sea Of Stories', 'https://images.isbndb.com/covers/03/54/9780140140354.jpg'), + ('1575666529', 'Wedding Day Murder (Lucy Stone Mysteries, No. 8)', 'https://images.isbndb.com/covers/65/25/9781575666525.jpg'), + ('0312990456', 'One For The Money (Stephanie Plum, No. 1)', 'https://images.isbndb.com/covers/04/59/9780312990459.jpg'), + ('0440221102', 'The Complete Book Of Food Counts, Fourth Edition', 'https://images.isbndb.com/covers/11/04/9780440221104.jpg'), + ('0316969680', 'The Beach House', 'https://images.isbndb.com/covers/96/80/9780316969680.jpg'), + ('0449207463', 'Superior Women', 'https://images.isbndb.com/covers/74/68/9780449207468.jpg'), + ('0689109865', 'The BOOK OF BEBB', 'https://images.isbndb.com/covers/98/67/9780689109867.jpg'), + ('3518368540', 'Homo Faber: Ein Bericht (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/85/41/9783518368541.jpg'), + ('0312423209', 'Mason & Dixon: A Novel', 'https://images.isbndb.com/covers/32/09/9780312423209.jpg'), + ('0141180633', 'Vineland (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/06/32/9780141180632.jpg'), + ('0140283382', 'Gravity''s Rainbow', 'https://images.isbndb.com/covers/33/89/9780140283389.jpg'), + ('0786248688', 'The Book Of Illusions', 'https://images.isbndb.com/covers/86/81/9780786248681.jpg'), + ('0773762078', 'Maiden Of The Mist: A Legend Of Niagara Falls', 'https://images.isbndb.com/covers/20/77/9780773762077.jpg'), + ('0884041093', 'Self Analysis: A Simple Self-help Volume Of Tests And Techniques Based On The Discoveries Contained In Dianetics', 'https://images.isbndb.com/covers/10/92/9780884041092.jpg'), + ('0884040801', 'Self Analysis', 'https://images.isbndb.com/covers/08/04/9780884040804.jpg'), + ('0786887842', 'Rabbit-Proof Fence', 'https://images.isbndb.com/covers/78/42/9780786887842.jpg'), + ('0450542912', 'Rain', 'https://images.isbndb.com/covers/29/16/9780450542916.jpg'), + ('0192817264', 'Kidnapped And Catriona (World Classics)', 'https://images.isbndb.com/covers/72/66/9780192817266.jpg'), + ('0751522732', 'She''s Leaving Home', 'https://images.isbndb.com/covers/27/30/9780751522730.jpg'), + ('0091850401', 'South Seas Myths And Legends', 'https://images.isbndb.com/covers/04/01/9780091850401.jpg'), + ('1853260312', '20,000 Leagues Under The Sea (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/03/15/9781853260315.jpg'), + ('0140016821', 'Cider With Rosie', 'https://images.isbndb.com/covers/68/26/9780140016826.jpg'), + ('0440418569', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/85/66/9780440418566.jpg'), + ('0786014210', 'Darkness', 'https://images.isbndb.com/covers/42/17/9780786014217.jpg'), + ('0441005667', 'Forever Peace (Forever War, Book 2)', 'https://images.isbndb.com/covers/56/66/9780441005666.jpg'), + ('0553259830', 'Battle Cry', 'https://images.isbndb.com/covers/98/34/9780553259834.jpg'), + ('0312965338', 'The Climb: Tragic Ambitions On Everest', 'https://images.isbndb.com/covers/53/34/9780312965334.jpg'), + ('1888740051', 'Climbing Mt. Shasta: Route 1, Avalanche Gulch', 'https://images.isbndb.com/covers/00/59/9781888740059.jpg'), + ('0061008028', 'Fighter: The True Story Of The Battle Of Britain', 'https://images.isbndb.com/covers/80/23/9780061008023.jpg'), + ('1931646384', 'Never ACT Your Age', 'https://images.isbndb.com/covers/63/83/9781931646383.jpg'), + ('0399501487', 'Lord Of The Flies (Perigee)', 'https://images.isbndb.com/covers/14/87/9780399501487.jpg'), + ('157566559X', 'The Biograph Girl', 'https://images.isbndb.com/covers/55/97/9781575665597.jpg'), + ('3423125551', 'Sofies Welt', 'https://images.isbndb.com/covers/55/50/9783423125550.jpg'), + ('0060514949', 'Dead Ringer', 'https://images.isbndb.com/covers/49/45/9780060514945.jpg'), + ('0425188361', 'Cerulean Sins (Anita Blake, Vampire Hunter, Book 11)', 'https://images.isbndb.com/covers/83/61/9780425188361.jpg'), + ('0066210151', 'The Book Of Shadows: A Novel', 'https://images.isbndb.com/covers/01/55/9780066210155.jpg'), + ('0395177111', 'The Hobbit (or There And Back Again)', 'https://images.isbndb.com/covers/71/12/9780395177112.jpg'), + ('0375411992', 'Blackwood Farm (The Vampire Chronicles)', 'https://images.isbndb.com/covers/19/91/9780375411991.jpg'), + ('0060287802', 'Judge Judy Sheindlin''s Win Or Lose By How You Choose', 'https://images.isbndb.com/covers/78/01/9780060287801.jpg'), + ('3442730066', 'Vishnus Tod', 'https://images.isbndb.com/covers/00/63/9783442730063.jpg'), + ('0394718968', 'Plays By And About Women', 'https://images.isbndb.com/covers/89/65/9780394718965.jpg'), + ('0192820753', 'The New Oxford Book Of Light Verse (Oxford Paperbacks)', 'https://images.isbndb.com/covers/07/54/9780192820754.jpg'), + ('0671744003', 'The Autobiography Of F.B.I. Special Agent Dale Cooper: My Life, My Tapes', 'https://images.isbndb.com/covers/40/07/9780671744007.jpg'), + ('3596129389', 'Die Zauberfrau: Roman', 'https://images.isbndb.com/covers/93/86/9783596129386.jpg'), + ('0915308789', 'The Graywolf Annual Two: Short Stories By Women (No.2)', 'https://images.isbndb.com/covers/87/81/9780915308781.jpg'), + ('3423620196', 'Theos Reise: Roman über Die Religionen Der Welt', 'https://images.isbndb.com/covers/01/92/9783423620192.jpg'), + ('0743203313', 'The Blackwater Lightship: A Novel', 'https://images.isbndb.com/covers/33/19/9780743203319.jpg'), + ('0425177173', 'Atlantis Found (Dirk Pitt, No. 15)', 'https://images.isbndb.com/covers/71/74/9780425177174.jpg'), + ('0425172554', 'Primary Target', 'https://images.isbndb.com/covers/25/51/9780425172551.jpg'), + ('0440224764', 'The Partner', 'https://images.isbndb.com/covers/47/61/9780440224761.jpg'), + ('0553572997', 'The Alienist', 'https://images.isbndb.com/covers/29/95/9780553572995.jpg'), + ('034543076X', 'Manifold: Time', 'https://images.isbndb.com/covers/07/62/9780345430762.jpg'), + ('0380727501', 'Notes From A Small Island', 'https://images.isbndb.com/covers/75/06/9780380727506.jpg'), + ('0312423799', 'Dry: A Memoir', 'https://images.isbndb.com/covers/37/97/9780312423797.jpg'), + ('0743249887', 'Welcome To Higby : A Novel', 'https://images.isbndb.com/covers/98/81/9780743249881.jpg'), + ('0316089745', 'The Wooden Nickel: A Novel', 'https://images.isbndb.com/covers/97/46/9780316089746.jpg'), + ('037542217X', 'The Kalahari Typing School For Men: More From The No. 1 Ladies'' Detective Agency', 'https://images.isbndb.com/covers/21/71/9780375422171.jpg'), + ('0345440773', 'The Redemption Of Althalus', 'https://images.isbndb.com/covers/07/78/9780345440778.jpg'), + ('0440208912', 'Harvest', 'https://images.isbndb.com/covers/89/14/9780440208914.jpg'), + ('0061093106', 'Red, White And Blue', 'https://images.isbndb.com/covers/31/04/9780061093104.jpg'), + ('0373218192', 'Engaging The Enemy', 'https://images.isbndb.com/covers/81/96/9780373218196.jpg'), + ('0515120006', 'Holding The Dream (Dream Trilogy, Book 2)', 'https://images.isbndb.com/covers/00/04/9780515120004.jpg'), + ('0515127396', 'The Cat Who Saw Stars', 'https://images.isbndb.com/covers/73/93/9780515127393.jpg'), + ('0345433084', 'The Syndrome : A Thriller', 'https://images.isbndb.com/covers/30/84/9780345433084.jpg'), + ('0345416260', 'Pope Joan: A Novel', 'https://images.isbndb.com/covers/62/61/9780345416261.jpg'), + ('0385494785', 'Into Thin Air: A Personal Account Of The Mt. Everest Disaster', 'https://images.isbndb.com/covers/47/86/9780385494786.jpg'), + ('0385486804', 'Into The Wild', 'https://images.isbndb.com/covers/68/04/9780385486804.jpg'), + ('0385512104', 'The Curious Incident Of The Dog In The Night-Time (Today Show Book Club #13)', 'https://images.isbndb.com/covers/21/07/9780385512107.jpg'), + ('1555973981', 'Baby B', 'https://images.isbndb.com/covers/39/88/9781555973988.jpg'), + ('0451180208', 'Material Witness', 'https://images.isbndb.com/covers/02/09/9780451180209.jpg'), + ('089587198X', 'Great Bike Rides In And Around Winston-Salem', 'https://images.isbndb.com/covers/19/85/9780895871985.jpg'), + ('0198811020', 'Metaphysical Lyrics And Poems Of The Seventeenth Century: Donne To Butler (Oxford Paperbacks)', 'https://images.isbndb.com/covers/10/22/9780198811022.jpg'), + ('0525237704', 'The World According To Garp', 'https://images.isbndb.com/covers/77/09/9780525237709.jpg'), + ('039914255X', 'Eat Right 4 Your Type: The Individualized Diet Solution To Staying Healthy, Living Longer & Achieving Your Ideal Weight', 'https://images.isbndb.com/covers/25/50/9780399142550.jpg'), + ('0340649763', 'Dancing At The Victory Cafe', 'https://images.isbndb.com/covers/97/63/9780340649763.jpg'), + ('0440236673', 'The Brethren', 'https://images.isbndb.com/covers/66/72/9780440236672.jpg'), + ('0553295071', 'Sliver', 'https://images.isbndb.com/covers/50/78/9780553295078.jpg'), + ('0316291161', 'The French Lieutenant''s Woman', 'https://images.isbndb.com/covers/11/63/9780316291163.jpg'), + ('0449208397', 'If Life Is A Bowl Of Cherries, What Am I Doing In The Pits?', 'https://images.isbndb.com/covers/83/97/9780449208397.jpg'), + ('1590171012', 'The Magic Pudding (New York Review Children''s Collection)', 'https://images.isbndb.com/covers/10/11/9781590171011.jpg'), + ('0060505273', 'The Sewing Circles Of Herat: A Personal Voyage Through Afghanistan', 'https://images.isbndb.com/covers/52/71/9780060505271.jpg'), + ('0752999958', 'Jurassic Park AND Congo', 'https://images.isbndb.com/covers/99/51/9780752999951.jpg'), + ('0702229962', 'Setting Out On The Voyage: The World Of An Incorrigible Adventurer', 'https://images.isbndb.com/covers/99/61/9780702229961.jpg'), + ('0679771476', 'The Law Of Similars', 'https://images.isbndb.com/covers/14/70/9780679771470.jpg'), + ('0684848597', 'People Of The Lie: The Hope For Healing Human Evil', 'https://images.isbndb.com/covers/85/94/9780684848594.jpg'), + ('031215125X', 'The Far Pavilions', 'https://images.isbndb.com/covers/12/56/9780312151256.jpg'), + ('0064405176', 'Walk Two Moons', 'https://images.isbndb.com/covers/51/71/9780064405171.jpg'), + ('0684821192', 'The Son Of Light (Ramses, Vol. 1)', 'https://images.isbndb.com/covers/11/91/9780684821191.jpg'), + ('0061056871', 'Independence Day', 'https://images.isbndb.com/covers/68/71/9780061056871.jpg'), + ('0590988301', 'Pet-Rified', 'https://images.isbndb.com/covers/83/08/9780590988308.jpg'), + ('0883659654', 'The Company Of Cats: 20 Contemporary Stories Of Family Cats', 'https://images.isbndb.com/covers/96/56/9780883659656.jpg'), + ('0440235162', 'The Smoke Jumper', 'https://images.isbndb.com/covers/51/63/9780440235163.jpg'), + ('076790382X', 'I''m A Stranger Here Myself: Notes On Returning To America After 20 Years Away', 'https://images.isbndb.com/covers/38/20/9780767903820.jpg'), + ('0330357808', 'Marilyn''s Almost Terminal New York Adventure', 'https://images.isbndb.com/covers/78/07/9780330357807.jpg'), + ('0425158616', 'Cause Of Death (Kay Scarpetta, No. 7)', 'https://images.isbndb.com/covers/86/16/9780425158616.jpg'), + ('0307001385', 'The Whispering Rabbit (A Little Golden Book)', 'https://images.isbndb.com/covers/13/82/9780307001382.jpg'), + ('0595157939', 'The Mystery Of The Poison Arrow Tree', 'https://images.isbndb.com/covers/79/38/9780595157938.jpg'), + ('0702231088', 'Sally Marshall Is Not An Alien (Uqp Storybridge Series)', 'https://images.isbndb.com/covers/10/87/9780702231087.jpg'), + ('0140143599', 'Cantor''s Dilemma: A Novel', 'https://images.isbndb.com/covers/35/91/9780140143591.jpg'), + ('0062502182', 'The Alchemist, A Fable About Following Your Dream', 'https://images.isbndb.com/covers/21/86/9780062502186.jpg'), + ('0060175400', 'The Poisonwood Bible', 'https://images.isbndb.com/covers/54/05/9780060175405.jpg'), + ('1573221775', 'My Dream Of You', 'https://images.isbndb.com/covers/17/71/9781573221771.jpg'), + ('0913367044', 'The Case For Christ', 'https://images.isbndb.com/covers/70/49/9780913367049.jpg'), + ('1888698357', 'The Mighty ''MOX: The 75th Anniversary Of The People, Stories, And Events That Made KMOX A Radio Giant', 'https://images.isbndb.com/covers/83/50/9781888698350.jpg'), + ('0913367176', 'Stories For A Faithful Heart', 'https://images.isbndb.com/covers/71/79/9780913367179.jpg'), + ('0933121245', 'Book Of African Names', 'https://images.isbndb.com/covers/12/49/9780933121249.jpg'), + ('0312168144', 'The Climb: Tragic Ambitions On Everest', 'https://images.isbndb.com/covers/81/48/9780312168148.jpg'), + ('0451528182', 'Sir Gawain And The Green Knight (Signet Classics)', 'https://images.isbndb.com/covers/81/86/9780451528186.jpg'), + ('0671537458', 'Waiting To Exhale', 'https://images.isbndb.com/covers/74/56/9780671537456.jpg'), + ('0786014741', 'Body Double', 'https://images.isbndb.com/covers/47/43/9780786014743.jpg'), + ('0517573822', 'Jimmy Stewart And His Poems', 'https://images.isbndb.com/covers/38/22/9780517573822.jpg'), + ('0877732906', 'A Sociable God', 'https://images.isbndb.com/covers/29/07/9780877732907.jpg'), + ('0743437810', 'The Vanished Man (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/78/13/9780743437813.jpg'), + ('0385240406', 'Time Flies', 'https://images.isbndb.com/covers/04/06/9780385240406.jpg'), + ('0060116188', 'My Side: The Autobiography Of Ruth Gordon', 'https://images.isbndb.com/covers/61/87/9780060116187.jpg'), + ('0394742591', 'The Habit Of Being', 'https://images.isbndb.com/covers/25/95/9780394742595.jpg'), + ('0517149257', 'The Ultimate Hitchhiker''s Guide', 'https://images.isbndb.com/covers/92/56/9780517149256.jpg'), + ('0374517886', 'The Collected Stories Of Isaac Bashevis Singer', 'https://images.isbndb.com/covers/78/85/9780374517885.jpg'), + ('0850315336', 'Nothingmas Day', 'https://images.isbndb.com/covers/53/32/9780850315332.jpg'), + ('0312964854', 'Hush Little Babies: The True Story Of A Mother Who Murdered Her Own Children (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/48/56/9780312964856.jpg'), + ('0743222008', 'The Vanished Man (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/20/06/9780743222006.jpg'), + ('0684863324', 'GARDENS IN THE DUNES: A Novel', 'https://images.isbndb.com/covers/33/20/9780684863320.jpg'), + ('0618127453', 'Sparks Of Genius: The Thirteen Thinking Tools Of The World''s Most Creative People', 'https://images.isbndb.com/covers/74/50/9780618127450.jpg'), + ('0884053660', 'The World Of Pele', 'https://images.isbndb.com/covers/36/68/9780884053668.jpg'), + ('0812590236', 'Irish Mist (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/02/34/9780812590234.jpg'), + ('0515127221', 'Sullivan''s Island: A Lowcountry Tale (Lowcountry Tales)', 'https://images.isbndb.com/covers/72/25/9780515127225.jpg'), + ('0425161242', 'Chromosome 6', 'https://images.isbndb.com/covers/12/41/9780425161241.jpg'), + ('0451200993', 'Sleeping Murder (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/09/90/9780451200990.jpg'), + ('0679765123', 'Incidents In The Rue Laugier', 'https://images.isbndb.com/covers/51/27/9780679765127.jpg'), + ('0312982194', 'Gettin'' Merry', 'https://images.isbndb.com/covers/21/95/9780312982195.jpg'), + ('0451195922', 'Skull Session', 'https://images.isbndb.com/covers/59/20/9780451195920.jpg'), + ('0425169863', 'Point Of Origin (Kay Scarpetta)', 'https://images.isbndb.com/covers/98/65/9780425169865.jpg'), + ('0345380371', 'Rising Sun', 'https://images.isbndb.com/covers/03/71/9780345380371.jpg'), + ('0446609323', 'Black Friday', 'https://images.isbndb.com/covers/93/26/9780446609326.jpg'), + ('0316690619', 'Cradle And All', 'https://images.isbndb.com/covers/06/14/9780316690614.jpg'), + ('0446610038', '1st To Die: A Novel', 'https://images.isbndb.com/covers/00/32/9780446610032.jpg'), + ('155143234X', 'Flight From Big Tangle (Orca Young Readers)', 'https://images.isbndb.com/covers/23/42/9781551432342.jpg'), + ('0891074759', 'Arthur (The Pendragon Cycle)', 'https://images.isbndb.com/covers/47/55/9780891074755.jpg'), + ('0449222276', 'Belgrave Square', 'https://images.isbndb.com/covers/22/70/9780449222270.jpg'), + ('0440224608', 'Siberian Light', 'https://images.isbndb.com/covers/46/00/9780440224600.jpg'), + ('0451201558', 'Cold Case (Alan Gregory)', 'https://images.isbndb.com/covers/15/53/9780451201553.jpg'), + ('0061032077', 'To Cut A Long Story Short', 'https://images.isbndb.com/covers/20/73/9780061032073.jpg'), + ('2253004243', 'Une Vie', 'https://images.isbndb.com/covers/42/40/9782253004240.jpg'), + ('0679459626', 'Flesh And Blood', 'https://images.isbndb.com/covers/96/20/9780679459620.jpg'), + ('0812566629', 'Darwinia: A Novel Of A Very Different Twentieth Century', 'https://images.isbndb.com/covers/66/28/9780812566628.jpg'), + ('0816614024', 'A Thousand Plateaus: Capitalism And Schizophrenia', 'https://images.isbndb.com/covers/40/28/9780816614028.jpg'), + ('3518390473', 'Der Wettermacher: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/04/74/9783518390474.jpg'), + ('340414578X', 'Intrige: Thriller', 'https://images.isbndb.com/covers/57/82/9783404145782.jpg'), + ('3596113350', 'Die Mambo Kings Spielen Songs Der Liebe', 'https://images.isbndb.com/covers/33/54/9783596113354.jpg'), + ('3453189442', 'Das Verbotene Lied', 'https://images.isbndb.com/covers/94/47/9783453189447.jpg'), + ('3462031252', 'Quadrupelfuge', 'https://images.isbndb.com/covers/12/56/9783462031256.jpg'), + ('0671001701', 'Legend', 'https://images.isbndb.com/covers/17/04/9780671001704.jpg'), + ('0782125557', 'Mastering Linux Premium Edition', 'https://images.isbndb.com/covers/55/59/9780782125559.jpg'), + ('1555217532', 'The Complete Hot And Spicy Cookbook', 'https://images.isbndb.com/covers/75/32/9781555217532.jpg'), + ('0843943769', 'Avatar', 'https://images.isbndb.com/covers/37/64/9780843943764.jpg'), + ('0553583085', 'Kissed By Shadows (Get Connected Romances)', 'https://images.isbndb.com/covers/30/83/9780553583083.jpg'), + ('1892051001', 'Guiness World Records 2000', 'https://images.isbndb.com/covers/10/04/9781892051004.jpg'), + ('0805019375', '"L" Is For Lawless (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/93/77/9780805019377.jpg'), + ('1587991039', 'Technomanifestos: Visions Of The Information Revolutionaries', 'https://images.isbndb.com/covers/10/35/9781587991035.jpg'), + ('1587214768', 'The Wicked Priest: An Allegory In Two Acts', 'https://images.isbndb.com/covers/47/69/9781587214769.jpg'), + ('0802130496', 'Dr. Sax', 'https://images.isbndb.com/covers/04/95/9780802130495.jpg'), + ('1857931467', 'Dorien''s Diary: My Intimate Confessions!', 'https://images.isbndb.com/covers/14/64/9781857931464.jpg'), + ('0380717085', 'The Frugal Gourmet On Our Immigrant Ancestors', 'https://images.isbndb.com/covers/70/88/9780380717088.jpg'), + ('0380712172', 'The Frugal Gourmet Cooks Three Ancient Cuisines: China * Greece * Rome', 'https://images.isbndb.com/covers/21/75/9780380712175.jpg'), + ('0380706725', 'The Frugal Gourmet Cooks American', 'https://images.isbndb.com/covers/67/23/9780380706723.jpg'), + ('0767904281', 'The Gift Of Motherhood: 10 Truths For Every Mother', 'https://images.isbndb.com/covers/42/85/9780767904285.jpg'), + ('1558747478', 'Chicken Soup For The Parent''s Soul: 101 Stories Of Loving, Learning And Parenting', 'https://images.isbndb.com/covers/74/70/9781558747470.jpg'), + ('0440512158', 'A Child Is Born', 'https://images.isbndb.com/covers/21/58/9780440512158.jpg'), + ('0130179620', 'Business In Action', 'https://images.isbndb.com/covers/96/23/9780130179623.jpg'), + ('0273649949', 'Stimulus Factor, The', 'https://images.isbndb.com/covers/99/46/9780273649946.jpg'), + ('0072453907', 'Leading Corporate Citizens', 'https://images.isbndb.com/covers/39/04/9780072453904.jpg'), + ('0130305065', 'Managing Technology And Innovation For Competitive Advantage', 'https://images.isbndb.com/covers/50/60/9780130305060.jpg'), + ('0130219193', 'Strategic Renewal: Becoming A High-Performance Organization', 'https://images.isbndb.com/covers/91/90/9780130219190.jpg'), + ('0028626958', 'The Unofficial Guide To Having A Baby', 'https://images.isbndb.com/covers/69/56/9780028626956.jpg'), + ('1884822738', 'The Big Little Book Of Irish Wit & Wisdom', 'https://images.isbndb.com/covers/27/35/9781884822735.jpg'), + ('0140272941', 'Cider With Rosie', 'https://images.isbndb.com/covers/29/49/9780140272949.jpg'), + ('0375700382', 'The Fight', 'https://images.isbndb.com/covers/03/85/9780375700385.jpg'), + ('0006550789', '253', 'https://images.isbndb.com/covers/07/85/9780006550785.jpg'), + ('0140004424', 'Brighton Rock', 'https://images.isbndb.com/covers/44/27/9780140004427.jpg'), + ('0812517032', 'Irene''s Last Waltz: An Irene Adler Novel', 'https://images.isbndb.com/covers/70/33/9780812517033.jpg'), + ('0385492081', 'Into Thin Air: A Personal Account Of The Mt. Everest Disaster', 'https://images.isbndb.com/covers/20/89/9780385492089.jpg'), + ('0451524829', 'The Phantom Of The Opera (Signet Classics)', 'https://images.isbndb.com/covers/48/29/9780451524829.jpg'), + ('0877287384', 'The Japanese Cult Of Tranquillity', 'https://images.isbndb.com/covers/73/84/9780877287384.jpg'), + ('0465090974', 'The Way We Never Were: American Families And The Nostalgia Trap', 'https://images.isbndb.com/covers/09/76/9780465090976.jpg'), + ('1931412677', 'Feel Good Naked', 'https://images.isbndb.com/covers/26/74/9781931412674.jpg'), + ('0670848549', 'Secret History', 'https://images.isbndb.com/covers/85/46/9780670848546.jpg'), + ('0684829746', 'Cruddy: A Novel', 'https://images.isbndb.com/covers/97/46/9780684829746.jpg'), + ('0425130215', 'Hocus Pocus', 'https://images.isbndb.com/covers/02/16/9780425130216.jpg'), + ('0061000175', 'Skinwalkers (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/01/71/9780061000171.jpg'), + ('0312971362', 'Sis Boom Bah', 'https://images.isbndb.com/covers/13/66/9780312971366.jpg'), + ('0061097659', 'Switcheroo: A Novel', 'https://images.isbndb.com/covers/76/52/9780061097652.jpg'), + ('006017935X', 'Hill Towns', 'https://images.isbndb.com/covers/93/59/9780060179359.jpg'), + ('067976402X', 'Snow Falling On Cedars: A Novel', 'https://images.isbndb.com/covers/40/21/9780679764021.jpg'), + ('1558532161', 'Life''s Little Instruction Book Volume II', 'https://images.isbndb.com/covers/21/68/9781558532168.jpg'), + ('3125918103', 'Les Fantomes, Ca N'' Existe Pas. (Lernmaterialien)', 'https://images.isbndb.com/covers/81/08/9783125918108.jpg'), + ('0064408329', 'The Hanged Man', 'https://images.isbndb.com/covers/83/25/9780064408325.jpg'), + ('0743457358', 'Everything''s Eventual : 14 Dark Tales', 'https://images.isbndb.com/covers/73/54/9780743457354.jpg'), + ('0743456866', 'He Sees You When You''re Sleeping : A Novel', 'https://images.isbndb.com/covers/68/69/9780743456869.jpg'), + ('0440235464', 'Lost Girls', 'https://images.isbndb.com/covers/54/60/9780440235460.jpg'), + ('0312251890', 'Dr. Atkins'' Age-Defying Diet Revolution', 'https://images.isbndb.com/covers/18/95/9780312251895.jpg'), + ('0440227739', 'Peeling The Onion', 'https://images.isbndb.com/covers/77/31/9780440227731.jpg'), + ('0345425707', 'A Cup Of Tea (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/57/06/9780345425706.jpg'), + ('0765342294', 'Ender''s Game', 'https://images.isbndb.com/covers/22/94/9780765342294.jpg'), + ('0451821971', 'A Collection Of Lake Wobegon Stories: Leaving Home', 'https://images.isbndb.com/covers/19/73/9780451821973.jpg'), + ('0670894494', 'The Passion Of Artemisia', 'https://images.isbndb.com/covers/44/99/9780670894499.jpg'), + ('0060394447', 'Tommy''s Tale', 'https://images.isbndb.com/covers/44/48/9780060394448.jpg'), + ('0385508980', 'The Mad Dog 100: The Greatest Sports Arguments Of All Time', 'https://images.isbndb.com/covers/89/88/9780385508988.jpg'), + ('037541181X', 'A Venetian Affair', 'https://images.isbndb.com/covers/18/16/9780375411816.jpg'), + ('006093395X', 'As The Romans Do: An American Family''s Italian Odyssey', 'https://images.isbndb.com/covers/39/51/9780060933951.jpg'), + ('0385491328', 'The Anatomist', 'https://images.isbndb.com/covers/13/27/9780385491327.jpg'), + ('0345434692', 'The Skies Of Pern', 'https://images.isbndb.com/covers/46/92/9780345434692.jpg'), + ('0553131893', 'Dragondrums', 'https://images.isbndb.com/covers/18/95/9780553131895.jpg'), + ('0374177023', 'Instances Of The Number 3: A Novel', 'https://images.isbndb.com/covers/70/27/9780374177027.jpg'), + ('076790351X', 'Beethoven''s Hair: An Extraordinary Historical Odyssey And A Scientific Mystery Solved', 'https://images.isbndb.com/covers/35/16/9780767903516.jpg'), + ('0452280907', 'Fortune Is A River : Leonardo Da Vinci And Niccolo Machiavelli''s Magnificent Dream To Change The Course Of Florentine History', 'https://images.isbndb.com/covers/09/08/9780452280908.jpg'), + ('0425167313', 'Here On Earth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/73/11/9780425167311.jpg'), + ('0316314641', 'Rhoda: A Life In Stories', 'https://images.isbndb.com/covers/46/40/9780316314640.jpg'), + ('034540288X', 'The Lost World', 'https://images.isbndb.com/covers/28/82/9780345402882.jpg'), + ('0061073091', 'Resist Or Serve (The Official Guide To The X-Files, Vol. 4)', 'https://images.isbndb.com/covers/30/90/9780061073090.jpg'), + ('0786808772', 'Summerland', 'https://images.isbndb.com/covers/87/79/9780786808779.jpg'), + ('0553234609', 'Dragonsong', 'https://images.isbndb.com/covers/46/02/9780553234602.jpg'), + ('0553258540', 'Dragonsinger (Harper Hall Trilogy)', 'https://images.isbndb.com/covers/85/47/9780553258547.jpg'), + ('0802713661', 'Brunelleschi''s Dome: How A Renaissance Genius Reinvented Architecture', 'https://images.isbndb.com/covers/36/67/9780802713667.jpg'), + ('0440237688', 'The Giver', 'https://images.isbndb.com/covers/76/86/9780440237686.jpg'), + ('0679884394', 'D. W.''S Color Book (A Chunky Flap Book)', 'https://images.isbndb.com/covers/43/92/9780679884392.jpg'), + ('1582970262', 'The Writer''s Complete Fantasy Reference', 'https://images.isbndb.com/covers/02/64/9781582970264.jpg'), + ('1566091446', 'Photoshop 3 For Macintosh (Visual QuickStart Guide)', 'https://images.isbndb.com/covers/14/42/9781566091442.jpg'), + ('0553577395', 'Starfire (Bantam Spectra)', 'https://images.isbndb.com/covers/73/96/9780553577396.jpg'), + ('0671698419', 'Borders Of Infinity', 'https://images.isbndb.com/covers/84/16/9780671698416.jpg'), + ('0425167720', 'An Instance Of The Fingerpost', 'https://images.isbndb.com/covers/77/24/9780425167724.jpg'), + ('006105660X', 'Washington''s Dirigible (Timeline Wars, No.2)', 'https://images.isbndb.com/covers/66/04/9780061056604.jpg'), + ('0609610597', 'The Shelters Of Stone (Earth''s Children, Book 5)', 'https://images.isbndb.com/covers/05/96/9780609610596.jpg'), + ('0446519960', 'Absolute Power', 'https://images.isbndb.com/covers/99/60/9780446519960.jpg'), + ('0374281602', 'Reversible Errors: A Novel', 'https://images.isbndb.com/covers/16/01/9780374281601.jpg'), + ('0140251839', 'Finding The Right Place At The Right Time; Everything You Need To Know About Retirement Housing', 'https://images.isbndb.com/covers/18/38/9780140251838.jpg'), + ('0399519831', 'Inside Corporate America', 'https://images.isbndb.com/covers/98/33/9780399519833.jpg'), + ('0425159795', 'California Rush: A Novel', 'https://images.isbndb.com/covers/97/98/9780425159798.jpg'), + ('0140255370', 'A Boy Named Phyllis: A Suburban Memoir', 'https://images.isbndb.com/covers/53/79/9780140255379.jpg'), + ('0394543971', 'The Icarus Agenda', 'https://images.isbndb.com/covers/39/70/9780394543970.jpg'), + ('0060970790', 'The Man Who Mistook His Wife For A Hat: And Other Clinical Tales', 'https://images.isbndb.com/covers/07/96/9780060970796.jpg'), + ('0156787334', 'A Room Of One''s Own', 'https://images.isbndb.com/covers/73/38/9780156787338.jpg'), + ('0448095300', 'The Clue Of The Velvet Mask (Nancy Drew #30)', 'https://images.isbndb.com/covers/53/01/9780448095301.jpg'), + ('1569314195', 'Pokemon Tales, Volume 6: Where''s Clefairy''s Voice?', 'https://images.isbndb.com/covers/41/97/9781569314197.jpg'), + ('0060908548', 'Inanna, Queen Of Heaven And Earth: Her Stories And Hymns From Sumer', 'https://images.isbndb.com/covers/85/46/9780060908546.jpg'), + ('0028606353', 'Frommer''s 96 Frugal Traveler''s Guides: Europe From $50 A Day (Serial)', 'https://images.isbndb.com/covers/63/54/9780028606354.jpg'), + ('0316182540', 'White Oleander: A Novel', 'https://images.isbndb.com/covers/25/46/9780316182546.jpg'), + ('0553343874', 'Emmanuel''s Book: A Manual For Living Comfortably In The Cosmos', 'https://images.isbndb.com/covers/38/78/9780553343878.jpg'), + ('0881845906', 'The Mammoth Book Of Ghost Stories (The Mammoth Book Series)', 'https://images.isbndb.com/covers/59/07/9780881845907.jpg'), + ('0446355224', 'Midnight Blue', 'https://images.isbndb.com/covers/52/23/9780446355223.jpg'), + ('0061030953', 'Wild Thorn', 'https://images.isbndb.com/covers/09/56/9780061030956.jpg'), + ('0316919896', 'A Supposedly Fun Thing I''ll Never Do Again: Essays And Arguments', 'https://images.isbndb.com/covers/98/90/9780316919890.jpg'), + ('0553299506', 'Private Eyes (Alex Delaware Novels)', 'https://images.isbndb.com/covers/95/02/9780553299502.jpg'), + ('0446611611', 'City Of Bones (Harry Bosch)', 'https://images.isbndb.com/covers/16/19/9780446611619.jpg'), + ('0446604658', 'Lucky You', 'https://images.isbndb.com/covers/46/59/9780446604659.jpg'), + ('0553282476', 'Cat''s Eye', 'https://images.isbndb.com/covers/24/74/9780553282474.jpg'), + ('0449212602', 'The Handmaid''s Tale', 'https://images.isbndb.com/covers/26/08/9780449212608.jpg'), + ('0684867621', 'The Girl Who Loved Tom Gordon : A Novel', 'https://images.isbndb.com/covers/76/25/9780684867625.jpg'), + ('0451147375', 'Blood Test (Signet)', 'https://images.isbndb.com/covers/73/70/9780451147370.jpg'), + ('0345413903', 'The Murder Book (Alex Delaware)', 'https://images.isbndb.com/covers/39/01/9780345413901.jpg'), + ('0451178033', 'When The Bough Breaks (Alex Delaware, No. 1)', 'https://images.isbndb.com/covers/80/39/9780451178039.jpg'), + ('0590634275', 'Captain Underpants And The Attack Of The Talking Toilets', 'https://images.isbndb.com/covers/42/74/9780590634274.jpg'), + ('0330294377', 'Falling Towards England (Picador Books)', 'https://images.isbndb.com/covers/43/79/9780330294379.jpg'), + ('0061031569', 'Absolute Zero', 'https://images.isbndb.com/covers/15/64/9780061031564.jpg'), + ('3257228007', 'Das Parfum: Die Geschichte Eines Mörders', 'https://images.isbndb.com/covers/80/07/9783257228007.jpg'), + ('0553582143', 'Body Of Lies (Eve Duncan)', 'https://images.isbndb.com/covers/21/47/9780553582147.jpg'), + ('0743202961', 'Every Breath You Take: A True Story Of Obsession, Revenge, And Murder', 'https://images.isbndb.com/covers/29/61/9780743202961.jpg'), + ('0060002492', 'Amazonia', 'https://images.isbndb.com/covers/24/97/9780060002497.jpg'), + ('0399148620', 'Acid Row', 'https://images.isbndb.com/covers/86/20/9780399148620.jpg'), + ('0786866462', 'A Density Of Souls', 'https://images.isbndb.com/covers/64/65/9780786866465.jpg'), + ('0679426159', 'Standing In The Rainbow: A Novel', 'https://images.isbndb.com/covers/61/58/9780679426158.jpg'), + ('0671020315', 'Raven: The Fourth Novel In The Special Orphans Miniseries', 'https://images.isbndb.com/covers/03/16/9780671020316.jpg'), + ('0316569321', 'White Oleander', 'https://images.isbndb.com/covers/93/23/9780316569323.jpg'), + ('067169071X', 'Everything She Ever Wanted', 'https://images.isbndb.com/covers/07/17/9780671690717.jpg'), + ('0679732241', 'The Sound And The Fury: The Corrected Text', 'https://images.isbndb.com/covers/22/42/9780679732242.jpg'), + ('0451117670', 'Manitou''s Daughter', 'https://images.isbndb.com/covers/76/70/9780451117670.jpg'), + ('0451402251', 'Born Of The Sun (Onyx)', 'https://images.isbndb.com/covers/22/57/9780451402257.jpg'), + ('042513301X', 'A Cold Day For Murder (Kate Shugak Mystery)', 'https://images.isbndb.com/covers/30/19/9780425133019.jpg'), + ('1558175326', 'The White Puma', 'https://images.isbndb.com/covers/53/27/9781558175327.jpg'), + ('0449214982', 'Trust Me', 'https://images.isbndb.com/covers/49/85/9780449214985.jpg'), + ('0515090174', 'The Cat Who Could Read Backwards', 'https://images.isbndb.com/covers/01/78/9780515090178.jpg'), + ('0515095826', 'The Cat Who Knew Shakespeare', 'https://images.isbndb.com/covers/58/21/9780515095821.jpg'), + ('0515111279', 'The Cat Who Wasn''t There', 'https://images.isbndb.com/covers/12/79/9780515111279.jpg'), + ('0671555235', 'A Caribbean Mystery', 'https://images.isbndb.com/covers/52/38/9780671555238.jpg'), + ('1570719586', 'God-Shaped Hole', 'https://images.isbndb.com/covers/95/85/9781570719585.jpg'), + ('3492232981', 'Afrikanisches Fieber: Erfahrungen Aus Vierzig Jahren', 'https://images.isbndb.com/covers/29/82/9783492232982.jpg'), + ('0553580876', 'Sympathy For The Devil', 'https://images.isbndb.com/covers/08/77/9780553580877.jpg'), + ('0385475713', 'Alias Grace', 'https://images.isbndb.com/covers/57/16/9780385475716.jpg'), + ('0345290232', 'The Third Eye', 'https://images.isbndb.com/covers/02/36/9780345290236.jpg'), + ('0345441753', 'Criminal Intent', 'https://images.isbndb.com/covers/17/51/9780345441751.jpg'), + ('0425045250', 'The Exiles Trilogy', 'https://images.isbndb.com/covers/52/51/9780425045251.jpg'), + ('0689825234', 'Habibi', 'https://images.isbndb.com/covers/52/31/9780689825231.jpg'), + ('0553375407', 'Ishmael: An Adventure Of The Mind And Spirit', 'https://images.isbndb.com/covers/54/04/9780553375404.jpg'), + ('1863714081', 'Edge Of The Sacred', 'https://images.isbndb.com/covers/40/82/9781863714082.jpg'), + ('0151006903', 'Baudolino', 'https://images.isbndb.com/covers/69/08/9780151006908.jpg'), + ('1931561281', 'The Australia Stories: A Novel', 'https://images.isbndb.com/covers/12/80/9781931561280.jpg'), + ('038080350X', 'Crescent City Rhapsody', 'https://images.isbndb.com/covers/35/07/9780380803507.jpg'), + ('0679744479', 'Written On The Body', 'https://images.isbndb.com/covers/44/74/9780679744474.jpg'), + ('1562477676', 'Molly Takes Flight (American Girls Short Stories)', 'https://images.isbndb.com/covers/76/77/9781562477677.jpg'), + ('0789414708', 'Pregnancy And Birth: Your Questions Answered', 'https://images.isbndb.com/covers/47/00/9780789414700.jpg'), + ('0425115801', 'Lightning', 'https://images.isbndb.com/covers/58/00/9780425115800.jpg'), + ('0345454073', 'The Homing', 'https://images.isbndb.com/covers/40/72/9780345454072.jpg'), + ('0312983654', 'The Wire In The Blood (St. Martin''s Minotaur Mysteries.)', 'https://images.isbndb.com/covers/36/59/9780312983659.jpg'), + ('0671024248', 'Hearts In Atlantis', 'https://images.isbndb.com/covers/42/46/9780671024246.jpg'), + ('0553582933', 'Winter Moon', 'https://images.isbndb.com/covers/29/32/9780553582932.jpg'), + ('0671034022', 'Mercy', 'https://images.isbndb.com/covers/40/23/9780671034023.jpg'), + ('0440208149', 'An Acceptable Time (Time Quartet, Bk. 5)', 'https://images.isbndb.com/covers/81/43/9780440208143.jpg'), + ('0451151259', 'The Eyes Of The Dragon (Signet)', 'https://images.isbndb.com/covers/12/54/9780451151254.jpg'), + ('0375727132', 'The Dive From Clausen''s Pier: A Novel', 'https://images.isbndb.com/covers/71/39/9780375727139.jpg'), + ('0446607711', 'The Simple Truth', 'https://images.isbndb.com/covers/77/11/9780446607711.jpg'), + ('0765301954', 'Fitcher''s Brides (Fairy Tale (Tor))', 'https://images.isbndb.com/covers/19/56/9780765301956.jpg'), + ('014029645X', 'Sherlock Holmes And The Rune Stone Mystery', 'https://images.isbndb.com/covers/64/57/9780140296457.jpg'), + ('0445085614', 'The Emigrants', 'https://images.isbndb.com/covers/56/19/9780445085619.jpg'), + ('0345416880', 'Enchantment', 'https://images.isbndb.com/covers/68/89/9780345416889.jpg'), + ('0312874006', 'Angel Of Darkness', 'https://images.isbndb.com/covers/40/01/9780312874001.jpg'), + ('0028621239', 'The Complete Idiot''s Guide To Knitting And Crocheting', 'https://images.isbndb.com/covers/12/34/9780028621234.jpg'), + ('1593080743', 'The Age Of Innocence', 'https://images.isbndb.com/covers/07/47/9781593080747.jpg'), + ('0380771292', 'Black Thorn, White Rose', 'https://images.isbndb.com/covers/12/95/9780380771295.jpg'), + ('0805051589', 'All The Way To Heaven: An American Boyhood In The Himalayas', 'https://images.isbndb.com/covers/15/82/9780805051582.jpg'), + ('0312314256', 'Year''s Best Fantasy And Horror: Sixteenth Edition', 'https://images.isbndb.com/covers/42/55/9780312314255.jpg'), + ('0445202718', 'Gloriana', 'https://images.isbndb.com/covers/27/19/9780445202719.jpg'), + ('0316136778', 'Love And Longing In Bombay: Stories', 'https://images.isbndb.com/covers/67/78/9780316136778.jpg'), + ('0385483503', 'Arranged Marriage: Stories', 'https://images.isbndb.com/covers/35/06/9780385483506.jpg'), + ('0590486101', 'Black Beauty (Apple Classics)', 'https://images.isbndb.com/covers/61/01/9780590486101.jpg'), + ('0060187271', 'The Last Report On The Miracles At Little No Horse: A Novel', 'https://images.isbndb.com/covers/72/79/9780060187279.jpg'), + ('0385497288', 'The Unknown Errors Of Our Lives: Stories', 'https://images.isbndb.com/covers/72/82/9780385497282.jpg'), + ('038548951X', 'Sister Of My Heart: A Novel', 'https://images.isbndb.com/covers/95/15/9780385489515.jpg'), + ('0345386256', 'A Guide To The Star Wars Universe', 'https://images.isbndb.com/covers/62/50/9780345386250.jpg'), + ('0879517980', 'The Book Of The Dead (Secret Books Of Paradys)', 'https://images.isbndb.com/covers/79/84/9780879517984.jpg'), + ('0131554255', 'Calliope''s Sisters: A Comparative Study Of Philosophies Of Art', 'https://images.isbndb.com/covers/42/52/9780131554252.jpg'), + ('0679725164', 'No Exit And Three Other Plays', 'https://images.isbndb.com/covers/51/69/9780679725169.jpg'), + ('061830245X', 'Crackpots: A Novel', 'https://images.isbndb.com/covers/24/51/9780618302451.jpg'), + ('006015456X', 'Always Coming Home/Paperback Book And Cassette', 'https://images.isbndb.com/covers/45/61/9780060154561.jpg'), + ('0312278675', 'Steppenwolf: A Novel', 'https://images.isbndb.com/covers/86/70/9780312278670.jpg'), + ('0060512806', 'Cryptonomicon', 'https://images.isbndb.com/covers/28/04/9780060512804.jpg'), + ('0060901012', 'Brave New World & Brave New World Revisited', 'https://images.isbndb.com/covers/10/11/9780060901011.jpg'), + ('0060930071', 'The Antelope Wife: A Novel', 'https://images.isbndb.com/covers/00/73/9780060930073.jpg'), + ('0060972459', 'Tracks', 'https://images.isbndb.com/covers/24/55/9780060972455.jpg'), + ('0805012478', 'Steppenwolf: A Novel', 'https://images.isbndb.com/covers/24/77/9780805012477.jpg'), + ('0060975547', 'Love Medicine', 'https://images.isbndb.com/covers/55/48/9780060975548.jpg'), + ('0375704000', 'Freedom Song: Three Novels', 'https://images.isbndb.com/covers/40/00/9780375704000.jpg'), + ('0609806505', 'Guenevere, Queen Of The Summer Country (Guenevere Novels)', 'https://images.isbndb.com/covers/65/00/9780609806500.jpg'), + ('0965624773', 'Finding Laura Buggs', 'https://images.isbndb.com/covers/47/70/9780965624770.jpg'), + ('0060977507', 'The Beet Queen: A Novel', 'https://images.isbndb.com/covers/75/04/9780060977504.jpg'), + ('055326396X', 'Arctic Dreams: Imagination And Desire In A Northern Landscape', 'https://images.isbndb.com/covers/39/61/9780553263961.jpg'), + ('0812505166', 'Wuthering Heights (Tor Classics)', 'https://images.isbndb.com/covers/51/60/9780812505160.jpg'), + ('0440234824', 'The Sibyl In Her Grave', 'https://images.isbndb.com/covers/48/21/9780440234821.jpg'), + ('0393312801', 'The Acid House', 'https://images.isbndb.com/covers/28/05/9780393312805.jpg'), + ('0446525804', 'Last Man Standing', 'https://images.isbndb.com/covers/58/00/9780446525800.jpg'), + ('0446516570', 'Up Country: A Novel', 'https://images.isbndb.com/covers/65/70/9780446516570.jpg'), + ('0312868308', 'Flesh And Gold', 'https://images.isbndb.com/covers/83/07/9780312868307.jpg'), + ('0380752298', 'The White Raven', 'https://images.isbndb.com/covers/22/94/9780380752294.jpg'), + ('0345434773', 'Evensong (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/47/77/9780345434777.jpg'), + ('0786005998', 'Dare To Dream', 'https://images.isbndb.com/covers/59/94/9780786005994.jpg'), + ('0385254520', 'Keeper''n Me', 'https://images.isbndb.com/covers/45/26/9780385254526.jpg'), + ('0060170441', 'Eat Smart, Think Smart: How To Use Nutrients And Supplements To Achieve Maximum Mental And Physical Performance', 'https://images.isbndb.com/covers/04/48/9780060170448.jpg'), + ('0590431536', 'The Girl In The Window (An Apple Paperback)', 'https://images.isbndb.com/covers/15/38/9780590431538.jpg'), + ('0712646221', 'Negaholics', 'https://images.isbndb.com/covers/62/22/9780712646222.jpg'), + ('0749318368', 'Suddenly', 'https://images.isbndb.com/covers/83/69/9780749318369.jpg'), + ('0515122491', 'The Maze (FBI Series)', 'https://images.isbndb.com/covers/24/97/9780515122497.jpg'), + ('051512902X', 'After Dark (Ghost Hunters, Book 1)', 'https://images.isbndb.com/covers/90/21/9780515129021.jpg'), + ('0812530314', 'The Grey Beginning', 'https://images.isbndb.com/covers/03/15/9780812530315.jpg'), + ('0552138223', 'The Cat Who Came In From The Cold', 'https://images.isbndb.com/covers/82/22/9780552138222.jpg'), + ('0515131091', 'Out Of This World', 'https://images.isbndb.com/covers/10/93/9780515131093.jpg'), + ('0380791382', 'Out Of Time: A Casey Jones Mystery (Casey Jones Mysteries)', 'https://images.isbndb.com/covers/13/85/9780380791385.jpg'), + ('0091880955', 'The Luberon Garden', 'https://images.isbndb.com/covers/09/58/9780091880958.jpg'), + ('0563537329', 'The Mind Map Book: Radiant Thinking - Major Evolution In Human Thought', 'https://images.isbndb.com/covers/73/28/9780563537328.jpg'), + ('0140265686', 'Out To Canaan (The Mitford Years, Book 4)', 'https://images.isbndb.com/covers/56/82/9780140265682.jpg'), + ('0140257934', 'These High, Green Hills (The Mitford Years #3)', 'https://images.isbndb.com/covers/79/39/9780140257939.jpg'), + ('0140254544', 'A Light In The Window (The Mitford Years, Book 2)', 'https://images.isbndb.com/covers/45/49/9780140254549.jpg'), + ('0446603708', 'Clay''s Ark', 'https://images.isbndb.com/covers/37/06/9780446603706.jpg'), + ('0446606723', 'Wild Seed', 'https://images.isbndb.com/covers/67/21/9780446606721.jpg'), + ('0451524934', '1984 (Signet Classics)', 'https://images.isbndb.com/covers/49/35/9780451524935.jpg'), + ('0679721819', 'Mama Day', 'https://images.isbndb.com/covers/18/19/9780679721819.jpg'), + ('0345392825', 'Reviving Ophelia: Saving The Selves Of Adolescent Girls (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/28/24/9780345392824.jpg'), + ('0060182792', 'Anam Cara: A Book Of Celtic Wisdom', 'https://images.isbndb.com/covers/27/93/9780060182793.jpg'), + ('0393038440', 'God''s Chinese Son: The Taiping Heavenly Kingdom Of Hong Xiuquan', 'https://images.isbndb.com/covers/84/46/9780393038446.jpg'), + ('0737020121', 'Cooking For Yourself (Williams-Sonoma Lifestyles , Vol 12, No 20)', 'https://images.isbndb.com/covers/01/20/9780737020120.jpg'), + ('0679745645', 'Other Voices, Other Rooms', 'https://images.isbndb.com/covers/56/48/9780679745648.jpg'), + ('1569470901', 'Rebuilding Coventry', 'https://images.isbndb.com/covers/09/09/9781569470909.jpg'), + ('0671027123', 'All Through The Night (Holiday Classics)', 'https://images.isbndb.com/covers/71/24/9780671027124.jpg'), + ('0375412972', 'Yeats Is Dead! A Mystery By 15 Irish Writers', 'https://images.isbndb.com/covers/29/74/9780375412974.jpg'), + ('0449225151', 'A Place Called Freedom', 'https://images.isbndb.com/covers/51/58/9780449225158.jpg'), + ('0590449737', 'Body Battles', 'https://images.isbndb.com/covers/97/31/9780590449731.jpg'), + ('0892816562', 'The Complete I Ching: The Definitive Translation By The Taoist Master Alfred Huang', 'https://images.isbndb.com/covers/65/69/9780892816569.jpg'), + ('0765342405', 'Ender''s Shadow (Ender, Book 5)', 'https://images.isbndb.com/covers/24/09/9780765342409.jpg'), + ('0345350499', 'The Mists Of Avalon', 'https://images.isbndb.com/covers/04/97/9780345350497.jpg'), + ('0689837070', 'Tithe', 'https://images.isbndb.com/covers/70/74/9780689837074.jpg'), + ('0671041177', 'Immortal: Buffy The Vampire Slayer', 'https://images.isbndb.com/covers/11/75/9780671041175.jpg'), + ('0312976275', 'Hot Six (Stephanie Plum, No. 6)', 'https://images.isbndb.com/covers/62/79/9780312976279.jpg'), + ('0767905180', 'Jemima J: A Novel About Ugly Ducklings And Swans', 'https://images.isbndb.com/covers/51/83/9780767905183.jpg'), + ('0743482891', 'Now You See Her', 'https://images.isbndb.com/covers/28/99/9780743482899.jpg'), + ('037383232X', 'Sweet Promise', 'https://images.isbndb.com/covers/23/23/9780373832323.jpg'), + ('1551666200', 'Sarah''s Child', 'https://images.isbndb.com/covers/62/04/9781551666204.jpg'), + ('0373242328', 'The Perfect Neighbor (The MacGregors, No 11) (Silhouette Special Edition No. 1232)', 'https://images.isbndb.com/covers/23/20/9780373242320.jpg'), + ('0373709102', 'That Cowboy''s Kids: Home On The Ranch (Harlequin Superromance No. 910)', 'https://images.isbndb.com/covers/91/06/9780373709106.jpg'), + ('0517077744', 'Three Complete Novels: Mirror Image, Best Kept Secrets, Slow Heat In Heaven', 'https://images.isbndb.com/covers/77/40/9780517077740.jpg'), + ('0449210197', 'Crows', 'https://images.isbndb.com/covers/01/92/9780449210192.jpg'), + ('0373709617', 'Coming Home To You (Harlequin Superromance No. 961)', 'https://images.isbndb.com/covers/96/18/9780373709618.jpg'), + ('0373510225', 'Sullivan''S Woman #22 (Language Of Love)', 'https://images.isbndb.com/covers/02/21/9780373510221.jpg'), + ('0373301529', 'Mustang Man (Western Lovers: Ranch Rogues #4)', 'https://images.isbndb.com/covers/15/22/9780373301522.jpg'), + ('0373273193', 'Racing Against Time: Cavanaugh Justice (Silhouette Intimate Moments No. 1249)', 'https://images.isbndb.com/covers/31/95/9780373273195.jpg'), + ('0373301626', 'His And Hers (Western Lovers: Ranchin'' Dads #14)', 'https://images.isbndb.com/covers/16/21/9780373301621.jpg'), + ('0373271867', 'That Kind Of Girl (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/18/63/9780373271863.jpg'), + ('0373240228', 'Fall Of Shane Mackade (The Mackade Brothers)', 'https://images.isbndb.com/covers/02/27/9780373240227.jpg'), + ('059035342X', 'Harry Potter And The Sorcerer''s Stone (Book 1)', 'https://images.isbndb.com/covers/34/27/9780590353427.jpg'), + ('0373764146', 'Tycoon''S Temptation (Silhouette Desire)', 'https://images.isbndb.com/covers/41/43/9780373764143.jpg'), + ('037325928X', 'Walk On The Wild Side (Harlequin Temptation)', 'https://images.isbndb.com/covers/92/81/9780373259281.jpg'), + ('0446529788', 'A Kiss Remembered: A Classic Love Story', 'https://images.isbndb.com/covers/97/85/9780446529785.jpg'), + ('044652767X', 'Seduction By Design: A Classic Love Story', 'https://images.isbndb.com/covers/76/75/9780446527675.jpg'), + ('0743246918', 'Silent Night/All Through The Night: Two Christmas Novels', 'https://images.isbndb.com/covers/69/10/9780743246910.jpg'), + ('0373301847', 'Return To Yesterday (Western Lovers: Reunited Hearts #36)', 'https://images.isbndb.com/covers/18/43/9780373301843.jpg'), + ('0373708351', 'The Doctor''s Daughter: Men Of Glory (Harlequin Superromance No. 835)', 'https://images.isbndb.com/covers/83/52/9780373708352.jpg'), + ('1551664690', 'The Di Medici Bride (Mira Romance)', 'https://images.isbndb.com/covers/46/99/9781551664699.jpg'), + ('0789491869', 'Washington, D.C. (Eyewitness Top 10 Travel Guides)', 'https://images.isbndb.com/covers/18/62/9780789491862.jpg'), + ('0373835426', 'Witchcraft / Last Chance Cafe / Bayou Reunion', 'https://images.isbndb.com/covers/54/23/9780373835423.jpg'), + ('0373691157', 'Hot Off The Press', 'https://images.isbndb.com/covers/11/59/9780373691159.jpg'), + ('0373301537', 'Painted Sunsets (Western Lovers: Ranch Rogues #5)', 'https://images.isbndb.com/covers/15/39/9780373301539.jpg'), + ('0373258674', 'Valentine Fantasy (Fantasy For Hire) (Harlequin Temptation)', 'https://images.isbndb.com/covers/86/73/9780373258673.jpg'), + ('037330174X', 'Wellspring (Western Lovers: Kids ''n Kin #26)', 'https://images.isbndb.com/covers/17/44/9780373301744.jpg'), + ('0312968256', 'Lady''s Man', 'https://images.isbndb.com/covers/82/50/9780312968250.jpg'), + ('0451205650', 'The Fortune Hunter', 'https://images.isbndb.com/covers/56/50/9780451205650.jpg'), + ('0316089699', 'Sea Glass: A Novel', 'https://images.isbndb.com/covers/96/92/9780316089692.jpg'), + ('1551669404', 'Just Over The Mountain (Grace Valley Trilogy, Book 2)', 'https://images.isbndb.com/covers/94/03/9781551669403.jpg'), + ('0373708319', 'A Man I Used To Know: Love That Man! (Harlequin Superromance No. 831)', 'https://images.isbndb.com/covers/83/14/9780373708314.jpg'), + ('0373706545', 'Done Driftin'' (The Dunleavy Legacy; Harlequin Superromance, No. 654)', 'https://images.isbndb.com/covers/65/49/9780373706549.jpg'), + ('0373871945', 'Mountain Laurel (Laurel Glen Series #3) (Love Inspired #187)', 'https://images.isbndb.com/covers/19/40/9780373871940.jpg'), + ('0671671138', 'Treasure', 'https://images.isbndb.com/covers/11/36/9780671671136.jpg'), + ('0449287092', 'Sword Of Orion', 'https://images.isbndb.com/covers/70/95/9780449287095.jpg'), + ('0671700081', 'Ice Warrior', 'https://images.isbndb.com/covers/00/89/9780671700089.jpg'), + ('0821724231', 'BENEATH THE SILENT SEA', 'https://images.isbndb.com/covers/42/31/9780821724231.jpg'), + ('0380804670', 'The Silent Service: Los Angeles Class', 'https://images.isbndb.com/covers/46/72/9780380804672.jpg'), + ('0812516192', 'Maximum Impact', 'https://images.isbndb.com/covers/61/97/9780812516197.jpg'), + ('0425109267', 'Supercarrier: An Inside Account Of Life Aboard The World''s Most Powerful Ship, The Uss John F. Kennedy', 'https://images.isbndb.com/covers/92/67/9780425109267.jpg'), + ('0380710005', 'CW2', 'https://images.isbndb.com/covers/00/03/9780380710003.jpg'), + ('0553126911', 'WOLFSBANE', 'https://images.isbndb.com/covers/69/14/9780553126914.jpg'), + ('055320923X', 'Silent Sea', 'https://images.isbndb.com/covers/92/35/9780553209235.jpg'), + ('0140348107', 'My Side Of The Mountain', 'https://images.isbndb.com/covers/81/01/9780140348101.jpg'), + ('0884092097', 'Kaleidoscope', 'https://images.isbndb.com/covers/20/94/9780884092094.jpg'), + ('0884092119', 'A Different Voice', 'https://images.isbndb.com/covers/21/17/9780884092117.jpg'), + ('0803263724', 'My Antonia (Willa Cather Scholarly Edition Series)', 'https://images.isbndb.com/covers/37/27/9780803263727.jpg'), + ('0060506679', 'Every Secret Thing: A Novel', 'https://images.isbndb.com/covers/66/74/9780060506674.jpg'), + ('0375701427', 'American Pastoral', 'https://images.isbndb.com/covers/14/29/9780375701429.jpg'), + ('0553135457', 'Sophie''s Choice', 'https://images.isbndb.com/covers/54/59/9780553135459.jpg'), + ('0812504364', 'A Connecticut Yankee In King Arthur''s Court', 'https://images.isbndb.com/covers/43/61/9780812504361.jpg'), + ('0380000830', 'The Guns Of Avalon (Chronicles Of Amber, No. 2)', 'https://images.isbndb.com/covers/08/38/9780380000838.jpg'), + ('0380014300', 'Nine Princes In Amber', 'https://images.isbndb.com/covers/43/09/9780380014309.jpg'), + ('0895773570', 'Flower Arranging', 'https://images.isbndb.com/covers/35/79/9780895773579.jpg'), + ('0330312367', 'Year In Provence', 'https://images.isbndb.com/covers/23/63/9780330312363.jpg'), + ('2277238929', 'De Bons Présages', 'https://images.isbndb.com/covers/89/28/9782277238928.jpg'), + ('2743606789', 'Du Bon Usage De La Lenteur', 'https://images.isbndb.com/covers/67/87/9782743606787.jpg'), + ('2253001279', 'Journal D'' Anne Frank', 'https://images.isbndb.com/covers/12/70/9782253001270.jpg'), + ('2253047422', 'Le Pigeon', 'https://images.isbndb.com/covers/74/21/9782253047421.jpg'), + ('0553255142', 'The Man From Broken Hills', 'https://images.isbndb.com/covers/51/40/9780553255140.jpg'), + ('9500703203', 'El Amor En Los Tiempos Del Colera / Love In The Times Of Cholera', 'https://images.isbndb.com/covers/32/08/9789500703208.jpg'), + ('0345406516', 'The Aguero Sisters (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/65/14/9780345406514.jpg'), + ('0312281250', 'The Ghost Of Hannah Mendes', 'https://images.isbndb.com/covers/12/50/9780312281250.jpg'), + ('0385490461', 'Seraglio: A Novel', 'https://images.isbndb.com/covers/04/67/9780385490467.jpg'), + ('0060936363', 'Portrait In Sepia: A Novel', 'https://images.isbndb.com/covers/63/65/9780060936365.jpg'), + ('038082101X', 'Daughter Of Fortune: A Novel', 'https://images.isbndb.com/covers/10/13/9780380821013.jpg'), + ('0849943663', 'The Pearl', 'https://images.isbndb.com/covers/36/69/9780849943669.jpg'), + ('3453099613', 'Schatten über Den Weiden: Roman', 'https://images.isbndb.com/covers/96/16/9783453099616.jpg'), + ('1574534106', 'Shadow Of The Hegemon', 'https://images.isbndb.com/covers/41/08/9781574534108.jpg'), + ('0380977745', 'April Fool Dead (Death On Demand Mysteries, No. 13)', 'https://images.isbndb.com/covers/77/41/9780380977741.jpg'), + ('1558747028', 'Chicken Soup For The College Soul: Inspiring And Humorous Stories About College', 'https://images.isbndb.com/covers/70/29/9781558747029.jpg'), + ('0618050140', 'The Ledge: Poems', 'https://images.isbndb.com/covers/01/47/9780618050147.jpg'), + ('0312774842', 'Substitute Teaching: A Handbook For Hassle-Free Subbing', 'https://images.isbndb.com/covers/48/44/9780312774844.jpg'), + ('1579213405', 'Emotional Purity : An Affair Of The Heart', 'https://images.isbndb.com/covers/34/04/9781579213404.jpg'), + ('0671708635', 'The 7 Habits Of Highly Effective People', 'https://images.isbndb.com/covers/86/34/9780671708634.jpg'), + ('0812970101', 'The Mysterious Affair At Styles: A Detective Story (Modern Library Classics)', 'https://images.isbndb.com/covers/01/04/9780812970104.jpg'), + ('0375727566', 'Yeats Is Dead!: A Mystery By 15 Irish Writers', 'https://images.isbndb.com/covers/75/66/9780375727566.jpg'), + ('0373630468', 'Worse Than A Crime', 'https://images.isbndb.com/covers/04/62/9780373630462.jpg'), + ('0671676652', 'A Question Of Guilt', 'https://images.isbndb.com/covers/66/50/9780671676650.jpg'), + ('0553250655', 'Puppet For A Corpse', 'https://images.isbndb.com/covers/06/57/9780553250657.jpg'), + ('0399139125', 'River Of Hidden Dreams', 'https://images.isbndb.com/covers/91/23/9780399139123.jpg'), + ('0553377884', 'Skinny Legs And All', 'https://images.isbndb.com/covers/78/80/9780553377880.jpg'), + ('9679787834', 'Vermillion Eye', 'https://images.isbndb.com/covers/78/32/9789679787832.jpg'), + ('0609605623', 'You''re Fifty-Now What?: Investing For The Second Half Of Your Life', 'https://images.isbndb.com/covers/56/22/9780609605622.jpg'), + ('0451195507', 'Judging Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/55/00/9780451195500.jpg'), + ('0061012289', 'A Secret Affair', 'https://images.isbndb.com/covers/22/80/9780061012280.jpg'), + ('0451195493', 'Suspicion Of Deceit', 'https://images.isbndb.com/covers/54/94/9780451195494.jpg'), + ('0061092088', 'Dangerous To Know', 'https://images.isbndb.com/covers/20/84/9780061092084.jpg'), + ('0425162788', 'Politika (Tom Clancy''s Power Plays, Book 1)', 'https://images.isbndb.com/covers/27/81/9780425162781.jpg'), + ('0451208811', 'Blood Orchid (Holly Barker)', 'https://images.isbndb.com/covers/88/11/9780451208811.jpg'), + ('3404920910', 'Im Wald Der Gehenkten Füchse: Roman', 'https://images.isbndb.com/covers/09/14/9783404920914.jpg'), + ('2070419878', 'Novecento : Pianiste', 'https://images.isbndb.com/covers/98/76/9782070419876.jpg'), + ('0345342968', 'Fahrenheit 451', 'https://images.isbndb.com/covers/29/66/9780345342966.jpg'), + ('0192860925', 'The Selfish Gene', 'https://images.isbndb.com/covers/09/27/9780192860927.jpg'), + ('0812550706', 'Ender''s Game (Ender, Book 1)', 'https://images.isbndb.com/covers/07/02/9780812550702.jpg'), + ('0553580302', 'House Harkonnen (Dune: House Trilogy, Book 2)', 'https://images.isbndb.com/covers/03/03/9780553580303.jpg'), + ('0441102670', 'Chapterhouse Dune (Dune Chronicles, Book 6)', 'https://images.isbndb.com/covers/26/79/9780441102679.jpg'), + ('0441328008', 'Heretics Of Dune (Dune Chronicles, Book 5)', 'https://images.isbndb.com/covers/80/00/9780441328000.jpg'), + ('0441294677', 'God Emperor Of Dune (Dune Chronicles, Book 4)', 'https://images.isbndb.com/covers/46/71/9780441294671.jpg'), + ('0441104029', 'Children Of Dune (Dune Chronicles, Book 3)', 'https://images.isbndb.com/covers/40/24/9780441104024.jpg'), + ('0345443683', 'Blackwood Farm (The Vampire Chronicles)', 'https://images.isbndb.com/covers/36/87/9780345443687.jpg'), + ('0061012149', 'Serpico', 'https://images.isbndb.com/covers/21/43/9780061012143.jpg'), + ('0890420254', 'Diagnostic And Statistical Manual Of Mental Disorders DSM-IV-TR Fourth Edition (Text Revision)', 'https://images.isbndb.com/covers/02/56/9780890420256.jpg'), + ('0345378482', 'The Andromeda Strain', 'https://images.isbndb.com/covers/84/84/9780345378484.jpg'), + ('0671758896', 'Loves Music, Loves To Dance', 'https://images.isbndb.com/covers/88/99/9780671758899.jpg'), + ('0345348109', 'The Killer Angels: The Classic Novel Of The Civil War', 'https://images.isbndb.com/covers/81/04/9780345348104.jpg'), + ('0451177096', 'Dolores Claiborne', 'https://images.isbndb.com/covers/70/94/9780451177094.jpg'), + ('0778800229', 'America''s Best Slow Cooker Recipes', 'https://images.isbndb.com/covers/02/24/9780778800224.jpg'), + ('0345422384', 'Pandora (New Tales Of The Vampires)', 'https://images.isbndb.com/covers/23/85/9780345422385.jpg'), + ('0441328091', 'The Hero And The Crown', 'https://images.isbndb.com/covers/80/93/9780441328093.jpg'), + ('0684818868', 'Lies My Teacher Told Me: Everything Your American History Textbook Got Wrong', 'https://images.isbndb.com/covers/88/63/9780684818863.jpg'), + ('0525463313', 'Pooh''s Little Book Of Feng Shui', 'https://images.isbndb.com/covers/33/13/9780525463313.jpg'), + ('0812513754', 'Lord Of Chaos (The Wheel Of Time, Book 6)', 'https://images.isbndb.com/covers/37/52/9780812513752.jpg'), + ('0812550307', 'The Fires Of Heaven (The Wheel Of Time, Book 5)', 'https://images.isbndb.com/covers/03/06/9780812550306.jpg'), + ('0812513738', 'The Shadow Rising (The Wheel Of Time, Book 4)', 'https://images.isbndb.com/covers/37/38/9780812513738.jpg'), + ('0312852487', 'Dragon Reborn (The Wheel Of Time, Book 3)', 'https://images.isbndb.com/covers/24/81/9780312852481.jpg'), + ('0765348446', 'New Threads In The Pattern (The Great Hunt, Book 2)', 'https://images.isbndb.com/covers/84/49/9780765348449.jpg'), + ('0765348438', 'The Hunt Begins (The Great Hunt, Book 1)', 'https://images.isbndb.com/covers/84/32/9780765348432.jpg'), + ('0812511816', 'The Eye Of The World (The Wheel Of Time, Book 1)', 'https://images.isbndb.com/covers/18/19/9780812511819.jpg'), + ('0871401185', 'Introductory Lectures On Psychoanalysis', 'https://images.isbndb.com/covers/11/82/9780871401182.jpg'), + ('0394712447', 'The Method Of Zen', 'https://images.isbndb.com/covers/24/44/9780394712444.jpg'), + ('0671722727', 'KING LEAR', 'https://images.isbndb.com/covers/27/22/9780671722722.jpg'), + ('0385029551', 'The Confessions Of Saint Augustine (Image Book)', 'https://images.isbndb.com/covers/95/51/9780385029551.jpg'), + ('0070419361', 'The Individual In A Social World: Essays And Experiments', 'https://images.isbndb.com/covers/93/60/9780070419360.jpg'), + ('1929194196', 'The Art Of War Plus The Ancient Chinese Revealed', 'https://images.isbndb.com/covers/41/93/9781929194193.jpg'), + ('0553351702', 'The Book Of Five Rings', 'https://images.isbndb.com/covers/17/05/9780553351705.jpg'), + ('0285632655', 'Archery Anatomy: An Introduction To Techniques For Improved Performance', 'https://images.isbndb.com/covers/26/53/9780285632653.jpg'), + ('0804832463', 'One Arrow, One Life: Zen, Archery, Enlightenment', 'https://images.isbndb.com/covers/24/65/9780804832465.jpg'), + ('0375705090', 'Zen In The Art Of Archery', 'https://images.isbndb.com/covers/50/90/9780375705090.jpg'), + ('0312269587', 'Plane Insanity: A Flight Attendant''s Tales Of Sex, Rage, And Queasiness At 30,000 Feet', 'https://images.isbndb.com/covers/95/86/9780312269586.jpg'), + ('0099244926', 'The Street Lawyer', 'https://images.isbndb.com/covers/49/29/9780099244929.jpg'), + ('0340612843', 'Love ME Tender (Starlight)', 'https://images.isbndb.com/covers/28/42/9780340612842.jpg'), + ('0413588106', 'Growing Pains Of Adrian Mole', 'https://images.isbndb.com/covers/81/04/9780413588104.jpg'), + ('009945520X', 'How To Make Square Eggs', 'https://images.isbndb.com/covers/52/02/9780099455202.jpg'), + ('0702228842', 'A Bridge To Wiseman''s Cove (Uqp Young Adult Fiction)', 'https://images.isbndb.com/covers/88/41/9780702228841.jpg'), + ('0880385367', 'Starsong', 'https://images.isbndb.com/covers/53/67/9780880385367.jpg'), + ('0812515609', 'People Of The Mist (First North Americans, Book 9)', 'https://images.isbndb.com/covers/56/02/9780812515602.jpg'), + ('0451183681', 'Harm''s Way (Alan Gregory)', 'https://images.isbndb.com/covers/36/82/9780451183682.jpg'), + ('3502517959', 'Die Spinne Und Das Mädchen.', 'https://images.isbndb.com/covers/79/55/9783502517955.jpg'), + ('3442424623', 'Die Bildhauerin', 'https://images.isbndb.com/covers/46/27/9783442424627.jpg'), + ('3310005844', '20 Jahre 40 Bleiben', 'https://images.isbndb.com/covers/58/42/9783310005842.jpg'), + ('059525893X', 'Goddess Blood: Book One Of The Goddess Trilogy (Bk. 1)', 'https://images.isbndb.com/covers/89/32/9780595258932.jpg'), + ('0425122123', 'Clear And Present Danger (Jack Ryan)', 'https://images.isbndb.com/covers/21/29/9780425122129.jpg'), + ('0812530489', 'Time Wars', 'https://images.isbndb.com/covers/04/83/9780812530483.jpg'), + ('081257060X', 'The Return', 'https://images.isbndb.com/covers/06/01/9780812570601.jpg'), + ('0446326488', 'Lord Of The Dance', 'https://images.isbndb.com/covers/64/83/9780446326483.jpg'), + ('080410882X', 'Dinner At The Homesick Restaurant', 'https://images.isbndb.com/covers/88/29/9780804108829.jpg'), + ('0446609986', 'The Fourth Wall', 'https://images.isbndb.com/covers/99/82/9780446609982.jpg'), + ('0375726624', 'Newjack: Guarding Sing Sing', 'https://images.isbndb.com/covers/66/20/9780375726620.jpg'), + ('0892882816', 'Homestead, A Memoir', 'https://images.isbndb.com/covers/28/16/9780892882816.jpg'), + ('1577487370', 'The Quilt Of Life: A Patchwork Of Devotional Thoughts', 'https://images.isbndb.com/covers/73/71/9781577487371.jpg'), + ('1578562325', 'All Together In One Place (Kinship And Courage Series #1)', 'https://images.isbndb.com/covers/23/29/9781578562329.jpg'), + ('0385484518', 'Tuesdays With Morrie: An Old Man, A Young Man, And Life''s Greatest Lesson', 'https://images.isbndb.com/covers/45/10/9780385484510.jpg'), + ('0060951710', 'Martha Stuart''s Better Than You At Entertaining (A Parody)', 'https://images.isbndb.com/covers/17/19/9780060951719.jpg'), + ('0060922532', 'Pigs In Heaven', 'https://images.isbndb.com/covers/25/35/9780060922535.jpg'), + ('0786864133', 'Napalm & Silly Putty', 'https://images.isbndb.com/covers/41/33/9780786864133.jpg'), + ('156836010X', 'Having Our Say: The Delany Sisters First 100 Years', 'https://images.isbndb.com/covers/01/02/9781568360102.jpg'), + ('006251119X', 'Stop Being Mean To Yourself: A Story About Finding The True Meaning Of Self-Love', 'https://images.isbndb.com/covers/11/95/9780062511195.jpg'), + ('0440236703', 'Tell No One', 'https://images.isbndb.com/covers/67/02/9780440236702.jpg'), + ('0671795937', 'Rogue Warrior', 'https://images.isbndb.com/covers/59/31/9780671795931.jpg'), + ('0345380274', 'Deadly Justice', 'https://images.isbndb.com/covers/02/72/9780345380272.jpg'), + ('0440224039', 'True Crime: The Novel', 'https://images.isbndb.com/covers/40/37/9780440224037.jpg'), + ('076790396X', 'The Pilates Body: The Ultimate At-Home Guide To Strengthening, Lengthening, And Toning Your Body--Without Machines', 'https://images.isbndb.com/covers/39/67/9780767903967.jpg'), + ('1572241381', 'The Self-Esteem Companion', 'https://images.isbndb.com/covers/13/81/9781572241381.jpg'), + ('0345443411', 'What Women Want: What Every Man Needs To Know About Sex, Romance, Passion, And Pleasure', 'https://images.isbndb.com/covers/34/10/9780345443410.jpg'), + ('0192802542', 'Dada And Surrealism: A Very Short Introduction (Very Short Introductions)', 'https://images.isbndb.com/covers/25/45/9780192802545.jpg'), + ('0060928204', 'Creativity: Flow And The Psychology Of Discovery And Invention', 'https://images.isbndb.com/covers/82/09/9780060928209.jpg'), + ('1592400876', 'Eats, Shoots & Leaves: The Zero Tolerance Approach To Punctuation', 'https://images.isbndb.com/covers/08/74/9781592400874.jpg'), + ('0140282378', 'The Big Book Of Calm: Over 100 Successful Techniques For Relaxing Mind And Body', 'https://images.isbndb.com/covers/23/75/9780140282375.jpg'), + ('0435240765', 'Diary Of A Language Teacher (The European Language Classroom)', 'https://images.isbndb.com/covers/07/69/9780435240769.jpg'), + ('0316779490', 'Naked', 'https://images.isbndb.com/covers/94/94/9780316779494.jpg'), + ('0767902513', 'A Walk In The Woods: Rediscovering America On The Appalachian Trail', 'https://images.isbndb.com/covers/25/19/9780767902519.jpg'), + ('038531809X', 'Why Not Me? The Inside Story Of The Making And Unmaking Of The Franken Presidency', 'https://images.isbndb.com/covers/80/99/9780385318099.jpg'), + ('068815252X', 'Book', 'https://images.isbndb.com/covers/25/29/9780688152529.jpg'), + ('078686351X', 'Dirty Jokes And Beer: Stories Of The Unrefined', 'https://images.isbndb.com/covers/35/18/9780786863518.jpg'), + ('0375706410', 'Waiting: A Novel', 'https://images.isbndb.com/covers/64/17/9780375706417.jpg'), + ('0753811464', 'Maya', 'https://images.isbndb.com/covers/14/67/9780753811467.jpg'), + ('0452266688', 'The Portable Curmudgeon (Plume)', 'https://images.isbndb.com/covers/66/81/9780452266681.jpg'), + ('0340697687', 'Teach Yourself Film Studies', 'https://images.isbndb.com/covers/76/89/9780340697689.jpg'), + ('0130289221', 'Becoming A Critical Thinker: A User Friendly Manual (3rd Edition)', 'https://images.isbndb.com/covers/92/23/9780130289223.jpg'), + ('0806957050', 'Sit & Solve - Lateral Thinking Puzzles', 'https://images.isbndb.com/covers/70/50/9780806957050.jpg'), + ('0517084732', 'Good Advice: More Than 2,000 Quotations To Help You Live Your Life', 'https://images.isbndb.com/covers/47/31/9780517084731.jpg'), + ('020530902X', 'The Elements Of Style, Fourth Edition', 'https://images.isbndb.com/covers/90/23/9780205309023.jpg'), + ('073520313X', 'How To Say It Style Guide', 'https://images.isbndb.com/covers/31/36/9780735203136.jpg'), + ('0130891347', 'Asking The Right Questions: A Guide To Critical Thinking (6th Edition)', 'https://images.isbndb.com/covers/13/41/9780130891341.jpg'), + ('0465021433', 'The Evolution Of Desire: Strategies Of Human Mating', 'https://images.isbndb.com/covers/14/37/9780465021437.jpg'), + ('1565115228', 'PRETTY GOOD JOKE BOOK 2nd ED (Prairie Home Companion)', 'https://images.isbndb.com/covers/52/24/9781565115224.jpg'), + ('0380810336', 'Feeling Good: The New Mood Therapy', 'https://images.isbndb.com/covers/03/38/9780380810338.jpg'), + ('0809225034', 'Talking The Winner''s Way: 92 Little Tricks For Big Success In Business And Personal Relationships', 'https://images.isbndb.com/covers/50/33/9780809225033.jpg'), + ('061819729X', 'The Playful Way To Serious Writing', 'https://images.isbndb.com/covers/72/93/9780618197293.jpg'), + ('1565122798', 'Educating Esme: Diary Of A Teacher''s First Year', 'https://images.isbndb.com/covers/27/96/9781565122796.jpg'), + ('1581820542', 'The Little Book Of Big Ideas: Inspiration, Encouragement, And Tips To Stimulate Creativity And Improve Your Life', 'https://images.isbndb.com/covers/05/46/9781581820546.jpg'), + ('0425166791', 'Undoing Depression', 'https://images.isbndb.com/covers/67/96/9780425166796.jpg'), + ('0452284058', 'What Every American Should Know About The Rest Of The World: Your Guide To Today''s Hot Spots, Hot Shots And Incendiary Issues', 'https://images.isbndb.com/covers/40/50/9780452284050.jpg'), + ('1564146731', 'The Know-It-All''s Guide To Life: How To Climb Mount Everest, Cure Hiccups, Live To 100, And Dozens Of Other Practical, Unusual, Or Just Plain Fantasti', 'https://images.isbndb.com/covers/67/31/9781564146731.jpg'), + ('0767910079', 'A Big New Free Happy Unusual Life: Self Expression And Spiritual Practice For Those Who Have Time For Neither', 'https://images.isbndb.com/covers/00/71/9780767910071.jpg'), + ('0486401464', 'Oscar Wilde''s Wit And Wisdom: A Book Of Quotations (Dover Thrift Editions)', 'https://images.isbndb.com/covers/14/61/9780486401461.jpg'), + ('0880841109', 'The Children''s Response: Beyond Tpr Toward Writing (American English)', 'https://images.isbndb.com/covers/11/08/9780880841108.jpg'), + ('0811201090', 'The Colossus Of Maroussi', 'https://images.isbndb.com/covers/10/94/9780811201094.jpg'), + ('0140621407', 'Fairy Tales (Penguin Popular Classics)', 'https://images.isbndb.com/covers/14/02/9780140621402.jpg'), + ('0140620281', 'Nostromo (Penguin Popular Classics)', 'https://images.isbndb.com/covers/02/83/9780140620283.jpg'), + ('0201895293', '101 Bright Ideas: ESL Activities For All Ages', 'https://images.isbndb.com/covers/52/92/9780201895292.jpg'), + ('1585420611', 'Women Can''t Hear What Men Don''t Say: Destroying Myths, Creating Love', 'https://images.isbndb.com/covers/06/12/9781585420612.jpg'), + ('0553211978', 'Northanger Abbey (Bantam Classic)', 'https://images.isbndb.com/covers/19/79/9780553211979.jpg'), + ('0553274503', 'Flowers For Algernon (Bantam Classic)', 'https://images.isbndb.com/covers/45/09/9780553274509.jpg'), + ('0440224659', 'Sooner Or Later', 'https://images.isbndb.com/covers/46/55/9780440224655.jpg'), + ('1841492086', 'The Portable Door', 'https://images.isbndb.com/covers/20/87/9781841492087.jpg'), + ('0345308239', 'The March Of Folly: From Troy To Vietnam', 'https://images.isbndb.com/covers/82/38/9780345308238.jpg'), + ('0330357190', 'Loose Living', 'https://images.isbndb.com/covers/71/97/9780330357197.jpg'), + ('0413537900', 'The Secret Diary Of Adrian Mole Aged 13 3/4', 'https://images.isbndb.com/covers/79/04/9780413537904.jpg'), + ('1860467776', 'A Jerk On One End: Reflections Of A Mediocre Fisherman', 'https://images.isbndb.com/covers/77/76/9781860467776.jpg'), + ('0671757059', 'The Prize: The Epic Quest For Oil, Money And Power', 'https://images.isbndb.com/covers/70/52/9780671757052.jpg'), + ('0671511424', 'DEVIL IN A BLUE DRESS', 'https://images.isbndb.com/covers/14/25/9780671511425.jpg'), + ('0425133540', 'The Sum Of All Fears (Jack Ryan Novels)', 'https://images.isbndb.com/covers/35/45/9780425133545.jpg'), + ('0743469801', 'Why Girls Are Weird : A Novel', 'https://images.isbndb.com/covers/98/07/9780743469807.jpg'), + ('0590110225', 'The Mighty', 'https://images.isbndb.com/covers/02/28/9780590110228.jpg'), + ('0835902242', 'Adventures Of Huckleberry Finn', 'https://images.isbndb.com/covers/22/43/9780835902243.jpg'), + ('0425173755', 'Murder On The Orient Express (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/37/56/9780425173756.jpg'), + ('0451199871', 'The Body In The Library (Miss Marple)', 'https://images.isbndb.com/covers/98/74/9780451199874.jpg'), + ('0963144839', 'Half Life: What We Give Up To Work', 'https://images.isbndb.com/covers/48/36/9780963144836.jpg'), + ('0373196903', 'Her Pregnant Agenda: Marrying The Boss''s Daughter (Silhouette Romance)', 'https://images.isbndb.com/covers/69/06/9780373196906.jpg'), + ('0373196962', 'To Wed A Sheik: Desert Brides (Silhouette Romance)', 'https://images.isbndb.com/covers/69/68/9780373196968.jpg'), + ('0671822209', 'The World According To Garp', 'https://images.isbndb.com/covers/22/00/9780671822200.jpg'), + ('0064409430', 'The Magician''s Nephew', 'https://images.isbndb.com/covers/94/38/9780064409438.jpg'), + ('0380752107', 'Midnight Masquerade', 'https://images.isbndb.com/covers/21/02/9780380752102.jpg'), + ('0425194493', 'Flashback (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/44/92/9780425194492.jpg'), + ('0531103099', 'New Zoos (First Book Series)', 'https://images.isbndb.com/covers/30/98/9780531103098.jpg'), + ('0380728125', 'Wedding Night', 'https://images.isbndb.com/covers/81/21/9780380728121.jpg'), + ('0671722816', 'OTHELLO', 'https://images.isbndb.com/covers/28/14/9780671722814.jpg'), + ('1563521024', 'You''re Not A Kid Anymore...', 'https://images.isbndb.com/covers/10/27/9781563521027.jpg'), + ('0312267819', 'Stalin''s Silver: The Sinking Of The U.S.S. John Barry', 'https://images.isbndb.com/covers/78/10/9780312267810.jpg'), + ('0842361715', 'This Present Darkness', 'https://images.isbndb.com/covers/17/12/9780842361712.jpg'), + ('0446527289', 'The First Counsel', 'https://images.isbndb.com/covers/72/86/9780446527286.jpg'), + ('0743457900', 'Tinker, Tailor, Soldier, Spy', 'https://images.isbndb.com/covers/79/03/9780743457903.jpg'), + ('0394830148', 'The Berenstain Bears And Too Much Vacation', 'https://images.isbndb.com/covers/01/48/9780394830148.jpg'), + ('0345384350', 'Icebound - Signed', 'https://images.isbndb.com/covers/43/55/9780345384355.jpg'), + ('0060175532', 'Young Wives: A Novel', 'https://images.isbndb.com/covers/55/35/9780060175535.jpg'), + ('0811200701', 'The Berlin Stories: The Last Of Mr. Norris/Goodbye To Berlin (New Directions Books)', 'https://images.isbndb.com/covers/07/07/9780811200707.jpg'), + ('0671023373', 'Man''s Search For Meaning', 'https://images.isbndb.com/covers/33/79/9780671023379.jpg'), + ('0679748083', 'The Kitchen God''s Wife', 'https://images.isbndb.com/covers/80/83/9780679748083.jpg'), + ('0830819223', 'So You Want To Be A Stay-at-Home Mom', 'https://images.isbndb.com/covers/92/25/9780830819225.jpg'), + ('0425175405', 'Black Notice', 'https://images.isbndb.com/covers/54/08/9780425175408.jpg'), + ('0380731851', 'Mystic River', 'https://images.isbndb.com/covers/18/55/9780380731855.jpg'), + ('0749930721', 'Hitched', 'https://images.isbndb.com/covers/07/21/9780749930721.jpg'), + ('0380009560', 'The Fantastic Imagination: An Anthology Of High Fantasy', 'https://images.isbndb.com/covers/95/65/9780380009565.jpg'), + ('0345298365', 'Six Of Swords', 'https://images.isbndb.com/covers/83/62/9780345298362.jpg'), + ('0380776510', 'Paradise Wild', 'https://images.isbndb.com/covers/65/11/9780380776511.jpg'), + ('1570422826', 'The Celestine Prophecy: An Experiential Guide', 'https://images.isbndb.com/covers/28/29/9781570422829.jpg'), + ('2070368076', 'Huis Clos, Suivi De "Les Mouches"', 'https://images.isbndb.com/covers/80/75/9782070368075.jpg'), + ('0312874995', 'Escape From Kathmandu', 'https://images.isbndb.com/covers/49/95/9780312874995.jpg'), + ('0425185702', 'Lawrence Sanders McNally''s Chance (Archy McNally)', 'https://images.isbndb.com/covers/57/04/9780425185704.jpg'), + ('0886771560', 'The Year''s Best Horror 14', 'https://images.isbndb.com/covers/15/60/9780886771560.jpg'), + ('0684862719', 'Pay It Forward', 'https://images.isbndb.com/covers/27/12/9780684862712.jpg'), + ('0552998338', 'Blast From The Past', 'https://images.isbndb.com/covers/83/38/9780552998338.jpg'), + ('051748904X', 'A Treasury Of Irish Myth, Legend & Folklore: Fairy And Folk Tales Of The Irish Peasantry', 'https://images.isbndb.com/covers/90/48/9780517489048.jpg'), + ('087226002X', 'Celtic Mythology (Library Of The World''s Myths And Legends)', 'https://images.isbndb.com/covers/00/23/9780872260023.jpg'), + ('1855853906', 'Ancient Celtic Romances', 'https://images.isbndb.com/covers/39/04/9781855853904.jpg'), + ('1850630127', 'Western Way: The Native Tradition V. 1: A Practical Guide To The Western Mystery Tradition', 'https://images.isbndb.com/covers/01/28/9781850630128.jpg'), + ('0385304366', 'Wings', 'https://images.isbndb.com/covers/43/68/9780385304368.jpg'), + ('0385299842', 'Truckers', 'https://images.isbndb.com/covers/98/48/9780385299848.jpg'), + ('1555910408', 'Keepers Of The Earth: Teacher''s Guide', 'https://images.isbndb.com/covers/04/02/9781555910402.jpg'), + ('071411393X', 'The Celts Activity Book', 'https://images.isbndb.com/covers/39/37/9780714113937.jpg'), + ('0713723076', 'The Art Of Celtia', 'https://images.isbndb.com/covers/30/76/9780713723076.jpg'), + ('0486243451', 'The Book Of Kells: Selected Plates In Full Color', 'https://images.isbndb.com/covers/34/50/9780486243450.jpg'), + ('0684859262', 'Single & Single', 'https://images.isbndb.com/covers/92/62/9780684859262.jpg'), + ('0684836491', 'Apocalypse Wow', 'https://images.isbndb.com/covers/64/92/9780684836492.jpg'), + ('0671614460', 'Cops', 'https://images.isbndb.com/covers/44/61/9780671614461.jpg'), + ('0345452550', 'A Cold Heart: An Alex Delaware Novel', 'https://images.isbndb.com/covers/25/59/9780345452559.jpg'), + ('0399147357', 'Dead Sleep', 'https://images.isbndb.com/covers/73/57/9780399147357.jpg'), + ('0740704532', 'Random Acts Of Management:A Dilbert Book', 'https://images.isbndb.com/covers/45/36/9780740704536.jpg'), + ('0836221974', 'Conversations With Dogbert: A Dilbert Book', 'https://images.isbndb.com/covers/19/78/9780836221978.jpg'), + ('0836228790', 'The Dilbert Bunch (Dilbert Books (Hardcover Andrews McMeel))', 'https://images.isbndb.com/covers/87/93/9780836228793.jpg'), + ('0836221966', 'You Don''t Need Experience If You''ve Got Attitude', 'https://images.isbndb.com/covers/19/61/9780836221961.jpg'), + ('0836232232', 'The Boss: Nameless, Blameless & Shameless: Nameless, Blameless And Shameless (Dilbert Books (Hardcover Mini))', 'https://images.isbndb.com/covers/22/33/9780836232233.jpg'), + ('0345452534', 'The Murder Book', 'https://images.isbndb.com/covers/25/35/9780345452535.jpg'), + ('0312717415', 'Shock-Trauma', 'https://images.isbndb.com/covers/74/14/9780312717414.jpg'), + ('0316602051', 'The Jester', 'https://images.isbndb.com/covers/20/51/9780316602051.jpg'), + ('0688156126', 'Jupiter''s Bones: A Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/61/21/9780688156121.jpg'), + ('1552976246', 'Silent Witness: How Forensic Anthropology Is Used To Solve The World''s Toughest Crimes', 'https://images.isbndb.com/covers/62/41/9781552976241.jpg'), + ('0440221420', 'No Witnesses', 'https://images.isbndb.com/covers/14/25/9780440221425.jpg'), + ('0553573977', 'The Hancock Boys', 'https://images.isbndb.com/covers/39/78/9780553573978.jpg'), + ('0684867583', 'Dead Reckoning: The New Science Of Catching Killers', 'https://images.isbndb.com/covers/75/88/9780684867588.jpg'), + ('0451197879', 'Roadwork', 'https://images.isbndb.com/covers/78/70/9780451197870.jpg'), + ('0380796090', 'Watermelon', 'https://images.isbndb.com/covers/60/90/9780380796090.jpg'), + ('0446604666', 'Sick Puppy', 'https://images.isbndb.com/covers/46/66/9780446604666.jpg'), + ('0312860951', 'Reliquary', 'https://images.isbndb.com/covers/09/50/9780312860950.jpg'), + ('0340792655', 'Turning Thirty', 'https://images.isbndb.com/covers/26/50/9780340792650.jpg'), + ('0061015725', 'Prey', 'https://images.isbndb.com/covers/57/24/9780061015724.jpg'), + ('0593043995', 'The Visitor (Jack Reacher, No. 4)', 'https://images.isbndb.com/covers/39/98/9780593043998.jpg'), + ('1855681870', 'Haunted Yorkshire', 'https://images.isbndb.com/covers/18/73/9781855681873.jpg'), + ('0553579754', 'Fear Nothing', 'https://images.isbndb.com/covers/97/58/9780553579758.jpg'), + ('0425181200', 'Dale Brown''s Dreamland', 'https://images.isbndb.com/covers/12/01/9780425181201.jpg'), + ('0451163494', 'The Key To Rebecca', 'https://images.isbndb.com/covers/34/93/9780451163493.jpg'), + ('0425157164', 'Shadows Of Steel', 'https://images.isbndb.com/covers/71/69/9780425157169.jpg'), + ('0449221482', 'J Is For Judgment', 'https://images.isbndb.com/covers/14/88/9780449221488.jpg'), + ('0316154067', 'Void Moon', 'https://images.isbndb.com/covers/40/62/9780316154062.jpg'), + ('0312958455', 'The Last Coyote (Harry Bosch)', 'https://images.isbndb.com/covers/84/59/9780312958459.jpg'), + ('0515120863', 'Killing Critics (Kathleen Mallory Novels)', 'https://images.isbndb.com/covers/08/68/9780515120868.jpg'), + ('0553279912', 'A Is For Alibi', 'https://images.isbndb.com/covers/99/17/9780553279917.jpg'), + ('0345353145', 'Sphere', 'https://images.isbndb.com/covers/31/46/9780345353146.jpg'), + ('0553348973', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/89/72/9780553348972.jpg'), + ('0446516538', 'Slow Waltz In Cedar Bend', 'https://images.isbndb.com/covers/65/32/9780446516532.jpg'), + ('0440214041', 'The Pelican Brief', 'https://images.isbndb.com/covers/40/45/9780440214045.jpg'), + ('0679446486', 'Airframe', 'https://images.isbndb.com/covers/64/84/9780679446484.jpg'), + ('0802116825', 'Death Of A River Guide', 'https://images.isbndb.com/covers/68/26/9780802116826.jpg'), + ('0846705672', 'American Way Of Sex: An Informal Illustrated History', 'https://images.isbndb.com/covers/56/73/9780846705673.jpg'), + ('0841502439', 'Christopher And Gay: A Partisan''s View Of The Greenwich Village Homosexual Scene', 'https://images.isbndb.com/covers/24/37/9780841502437.jpg'), + ('0380717972', 'Halfway Home', 'https://images.isbndb.com/covers/79/72/9780380717972.jpg'), + ('0312028784', 'The Boys And Their Baby (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/87/87/9780312028787.jpg'), + ('0807079200', 'Gay Ideas: Outing And Other Controversies', 'https://images.isbndb.com/covers/92/01/9780807079201.jpg'), + ('0878670319', 'The Gay Liberation Book', 'https://images.isbndb.com/covers/03/14/9780878670314.jpg'), + ('0896082172', 'Culture Clash: The Making Of Gay Sensibility', 'https://images.isbndb.com/covers/21/75/9780896082175.jpg'), + ('0226067114', 'Christianity, Social Tolerance, And Homosexuality: Gay People In Western Europe From The Beginning Of The Christian Era To The Fourteenth Century', 'https://images.isbndb.com/covers/71/17/9780226067117.jpg'), + ('0393011224', 'The Age Of Sensation: A Psychoanalytic Exploration', 'https://images.isbndb.com/covers/12/27/9780393011227.jpg'), + ('0060167084', 'Making History: The Struggle For Gay And Lesbian Equal Rights, 1945-1990 : An Oral History', 'https://images.isbndb.com/covers/70/80/9780060167080.jpg'), + ('0415907411', 'Queer Looks: Perspectives On Lesbian And Gay Film And Video', 'https://images.isbndb.com/covers/74/15/9780415907415.jpg'), + ('0472095978', 'The Male Body: Features, Destinies, Exposures', 'https://images.isbndb.com/covers/59/71/9780472095971.jpg'), + ('1565842103', 'A Queer Reader', 'https://images.isbndb.com/covers/21/06/9781565842106.jpg'), + ('0385239068', 'After The Ball: How America Will Conquer Its Fear And Hatred Of Gays In The 90''s', 'https://images.isbndb.com/covers/90/66/9780385239066.jpg'), + ('0525943730', 'Walt Whitman: A Gay Life', 'https://images.isbndb.com/covers/37/30/9780525943730.jpg'), + ('0802130259', 'Out Front: Contemporary Gay And Lesbian Plays', 'https://images.isbndb.com/covers/02/59/9780802130259.jpg'), + ('0877736510', 'Same-Sex Love: And The Path To Wholeness', 'https://images.isbndb.com/covers/65/16/9780877736516.jpg'), + ('0151002231', 'Homosexuality In History', 'https://images.isbndb.com/covers/22/38/9780151002238.jpg'), + ('1895857058', 'On The Safe Edge: A Manual For SM Play', 'https://images.isbndb.com/covers/70/54/9781895857054.jpg'), + ('0525480374', 'Get The Message?: A Decade Of Art For Social Change', 'https://images.isbndb.com/covers/03/72/9780525480372.jpg'), + ('0812822625', 'The Gay Tapes: A Candid Discussion About Male Homosexuality', 'https://images.isbndb.com/covers/26/25/9780812822625.jpg'), + ('0890876096', 'So Little Time: Essays On Gay Life', 'https://images.isbndb.com/covers/60/91/9780890876091.jpg'), + ('1560238763', 'Reviving The Tribe: Regenerating Gay Men''s Sexuality And Culture In The Ongoing Epidemic (Haworth Gay & Lesbian Studies)', 'https://images.isbndb.com/covers/87/68/9781560238768.jpg'), + ('0062507567', 'The Thirteen Original Clan Mothers: Your Sacred Path To Discovering The Gifts, Talents, And Abilities Of The Feminine Through The Ancient Teachings Of The Sisterhood', 'https://images.isbndb.com/covers/75/63/9780062507563.jpg'), + ('0553476580', 'Alchemist', 'https://images.isbndb.com/covers/65/83/9780553476583.jpg'), + ('076071150X', 'Writing For Dollars: 75 Tips For The Freelance Writer', 'https://images.isbndb.com/covers/15/07/9780760711507.jpg'), + ('1561707236', 'Soul''s Perfection (Journey Of The Soul''s Service, Book 2)', 'https://images.isbndb.com/covers/72/32/9781561707232.jpg'), + ('1561707244', 'The Nature Of Good And Evil (Journey Of The Soul Series, Book 3)', 'https://images.isbndb.com/covers/72/49/9781561707249.jpg'), + ('1561706213', 'Adventures Of A Psychic: A Fascinating And Inspiring True-Life Story Of One Of America''s Most Successful Clairvoyants', 'https://images.isbndb.com/covers/62/11/9781561706211.jpg'), + ('0525945040', 'The Other Side And Back: A Psychic''s Guide To Our World And Beyond', 'https://images.isbndb.com/covers/50/48/9780525945048.jpg'), + ('0743400720', 'The Camino: A Journey Of The Spirit', 'https://images.isbndb.com/covers/07/25/9780743400725.jpg'), + ('0553274384', 'Don''t Fall Off The Mountain', 'https://images.isbndb.com/covers/43/87/9780553274387.jpg'), + ('1880032627', 'Creative Visualization: Use The Power Of Your Imagination To Create What You Want In Your Life', 'https://images.isbndb.com/covers/26/26/9781880032626.jpg'), + ('0915811898', 'Way Of The Peaceful Warrior: A Book That Changes Lives', 'https://images.isbndb.com/covers/18/92/9780915811892.jpg'), + ('0385315287', 'Running From Safety: An Adventure Of The Spirit', 'https://images.isbndb.com/covers/52/89/9780385315289.jpg'), + ('0440108268', 'The Bridge Across Forever: A Lovestory', 'https://images.isbndb.com/covers/82/69/9780440108269.jpg'), + ('0440204321', 'A Gift Of Wings', 'https://images.isbndb.com/covers/43/29/9780440204329.jpg'), + ('044020562X', 'One', 'https://images.isbndb.com/covers/56/23/9780440205623.jpg'), + ('0446676489', 'The Secret Of Shambhala: In Search Of The Eleventh Insight', 'https://images.isbndb.com/covers/64/89/9780446676489.jpg'), + ('1577310454', 'Maps To Ecstasy: The Healing Power Of Movement', 'https://images.isbndb.com/covers/04/57/9781577310457.jpg'), + ('0140298479', 'Bridget Jones: The Edge Of Reason', 'https://images.isbndb.com/covers/84/75/9780140298475.jpg'), + ('0694524638', 'Invitation, The', 'https://images.isbndb.com/covers/46/31/9780694524631.jpg'), + ('0912365579', 'Chief Seattle (Northwest Mythic Landscape Series)', 'https://images.isbndb.com/covers/55/72/9780912365572.jpg'), + ('1882591275', 'Write From The Heart: Unleashing The Power Of Your Creativity', 'https://images.isbndb.com/covers/12/75/9781882591275.jpg'), + ('0811812006', 'The Secret Language Of Stars And Planets: A Visual Key To The Heavens', 'https://images.isbndb.com/covers/20/09/9780811812009.jpg'), + ('0809237628', 'Chris-In-The-Morning: Love, Life, And The Whole Karmic Enchilada', 'https://images.isbndb.com/covers/76/23/9780809237623.jpg'), + ('0809237601', 'The Northern Exposure Cookbook: A Community Cookbook From The Heart Of The Alaskan Riviera', 'https://images.isbndb.com/covers/76/09/9780809237609.jpg'), + ('0806514094', 'Northern Exposure: The Official Publication Of The Television Series', 'https://images.isbndb.com/covers/40/93/9780806514093.jpg'), + ('0786860642', 'Northern Exposures: Photographs', 'https://images.isbndb.com/covers/06/47/9780786860647.jpg'), + ('0671777351', 'Letters From Cicely: A Northern Exposure Book', 'https://images.isbndb.com/covers/73/57/9780671777357.jpg'), + ('067084487X', 'The Stinky Cheese Man And Other Fairly Stupid Tales', 'https://images.isbndb.com/covers/48/76/9780670844876.jpg'), + ('0821211226', 'The Portfolios Of Ansel Adams', 'https://images.isbndb.com/covers/12/29/9780821211229.jpg'), + ('0062508482', 'Every Part Of This Earth Is Sacred: Native American Voices In Praise Of Nature', 'https://images.isbndb.com/covers/84/85/9780062508485.jpg'), + ('0912776412', 'Beyond Birth And Death', 'https://images.isbndb.com/covers/64/15/9780912776415.jpg'), + ('0892132701', 'The Journey Of Self-Discovery', 'https://images.isbndb.com/covers/27/06/9780892132706.jpg'), + ('0553255959', 'The Complete Book Of Palmistry', 'https://images.isbndb.com/covers/59/59/9780553255959.jpg'), + ('0385484100', 'The Language Of Life', 'https://images.isbndb.com/covers/41/07/9780385484107.jpg'), + ('0140422226', 'The Complete Poems (Penguin Classics)', 'https://images.isbndb.com/covers/22/21/9780140422221.jpg'), + ('0062509594', 'The Essential Rumi, New Expanded Edition', 'https://images.isbndb.com/covers/95/98/9780062509598.jpg'), + ('0446673714', 'The Soul''s Code: In Search Of Character And Calling', 'https://images.isbndb.com/covers/37/16/9780446673716.jpg'), + ('0062500287', 'The Flight Of The Seventh Moon: The Teaching Of The Shields', 'https://images.isbndb.com/covers/02/81/9780062500281.jpg'), + ('1577311868', 'Developing Intuition: Practical Guidance For Daily Life', 'https://images.isbndb.com/covers/18/67/9781577311867.jpg'), + ('0062513346', 'The Valkyries', 'https://images.isbndb.com/covers/33/42/9780062513342.jpg'), + ('0030020786', 'Principles Of Instrumental Analysis, 5th Edition', 'https://images.isbndb.com/covers/07/80/9780030020780.jpg'), + ('0133502813', 'Chemistry', 'https://images.isbndb.com/covers/28/17/9780133502817.jpg'), + ('0716724022', 'Physical Chemistry', 'https://images.isbndb.com/covers/40/25/9780716724025.jpg'), + ('0525462325', 'Pooh (Giant Board Book)', 'https://images.isbndb.com/covers/23/23/9780525462323.jpg'), + ('0060256664', 'The Giving Tree', 'https://images.isbndb.com/covers/66/61/9780060256661.jpg'), + ('0794505007', 'Dream Pony (Sandy Lane Stables)', 'https://images.isbndb.com/covers/50/04/9780794505004.jpg'), + ('0786889020', 'Don''t Stand Too Close To A Naked Man', 'https://images.isbndb.com/covers/90/20/9780786889020.jpg'), + ('0786861320', 'The Wall Street Journal Lifetime Guide To Money: Strategies For Managing Your Finances', 'https://images.isbndb.com/covers/13/23/9780786861323.jpg'), + ('0688149790', 'Babyhood', 'https://images.isbndb.com/covers/97/96/9780688149796.jpg'), + ('0671519751', '35,000+ Baby Names', 'https://images.isbndb.com/covers/97/59/9780671519759.jpg'), + ('0399505962', 'The Indoor Cat', 'https://images.isbndb.com/covers/59/66/9780399505966.jpg'), + ('0812090381', 'Maine Coon Cats (Barron''s Complete Pet Owner''s Manuals)', 'https://images.isbndb.com/covers/03/83/9780812090383.jpg'), + ('156305700X', 'Really Important Stuff My Kids Have Taught Me', 'https://images.isbndb.com/covers/70/07/9781563057007.jpg'), + ('0889652066', 'Making Your Home A Haven: Stragegies For The Domestically Challenged', 'https://images.isbndb.com/covers/20/64/9780889652064.jpg'), + ('0140386645', 'The Westing Game', 'https://images.isbndb.com/covers/66/46/9780140386646.jpg'), + ('0345337662', 'Interview With The Vampire', 'https://images.isbndb.com/covers/76/65/9780345337665.jpg'), + ('0345351525', 'The Queen Of The Damned (The Vampire Chronicles)', 'https://images.isbndb.com/covers/15/24/9780345351524.jpg'), + ('0553205587', 'The Lord God Made Them All', 'https://images.isbndb.com/covers/55/89/9780553205589.jpg'), + ('0449003787', '"O" Is For Outlaw', 'https://images.isbndb.com/covers/37/87/9780449003787.jpg'), + ('0867202076', 'Organic Chemistry', 'https://images.isbndb.com/covers/20/76/9780867202076.jpg'), + ('0716723980', 'Inorganic Chemistry', 'https://images.isbndb.com/covers/39/81/9780716723981.jpg'), + ('0765347539', 'Kushiel''s Avatar (Kushiel''s Legacy)', 'https://images.isbndb.com/covers/75/34/9780765347534.jpg'), + ('0965921506', 'In-Home Child Care: A Step-By-Step Guide To Quality, Affordable Care', 'https://images.isbndb.com/covers/15/03/9780965921503.jpg'), + ('0471485527', 'Essentials Of Computational Chemistry: Theories And Models', 'https://images.isbndb.com/covers/55/20/9780471485520.jpg'), + ('0765345048', 'Kushiel''s Chosen (Kushiel''s Legacy)', 'https://images.isbndb.com/covers/50/42/9780765345042.jpg'), + ('0385265700', 'The Book Of Ruth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/57/06/9780385265706.jpg'), + ('0156935805', 'Virginia Woolf: A Biography', 'https://images.isbndb.com/covers/58/07/9780156935807.jpg'), + ('0713442549', 'Karpov-Korchnoi: Massacre In Merano (A Batsford Chess Book)', 'https://images.isbndb.com/covers/25/40/9780713442540.jpg'), + ('094547069X', 'New Developments In The Latvian Gambit From Elsburg''s 1st LG World Championship Correspondence Chess Tournament', 'https://images.isbndb.com/covers/06/94/9780945470694.jpg'), + ('0486293556', 'Epic Battles Of The Chessboard', 'https://images.isbndb.com/covers/35/54/9780486293554.jpg'), + ('0020083513', 'Battle Of The Titans: Kasparov-karpov, New York-lyons', 'https://images.isbndb.com/covers/35/11/9780020083511.jpg'), + ('0140376410', 'The Ear, The Eye, And The Arm', 'https://images.isbndb.com/covers/64/18/9780140376418.jpg'), + ('0452281296', 'In The Cut', 'https://images.isbndb.com/covers/12/95/9780452281295.jpg'), + ('1573229326', 'How To Be Good', 'https://images.isbndb.com/covers/93/26/9781573229326.jpg'), + ('038072930X', 'Turbulent Souls:: A Catholic Son''s Return To His Jewish Family', 'https://images.isbndb.com/covers/93/02/9780380729302.jpg'), + ('068483376X', 'Succulent Wild Woman', 'https://images.isbndb.com/covers/37/67/9780684833767.jpg'), + ('068484270X', 'The Healing Of America', 'https://images.isbndb.com/covers/27/07/9780684842707.jpg'), + ('0316754315', 'The Morning After: Sex, Fear, And Feminism On Campus', 'https://images.isbndb.com/covers/43/16/9780316754316.jpg'), + ('0671672576', 'The Last Temptation Of Christ', 'https://images.isbndb.com/covers/25/77/9780671672577.jpg'), + ('0679743243', 'The Informers', 'https://images.isbndb.com/covers/32/48/9780679743248.jpg'), + ('0151003394', 'Africans In America: America''s Journey Through Slavery', 'https://images.isbndb.com/covers/33/96/9780151003396.jpg'), + ('0385424736', 'The Rainmaker', 'https://images.isbndb.com/covers/47/38/9780385424738.jpg'), + ('0060923717', 'Love In Black And White: The Triumph Of Love Over Prejudice And Taboo', 'https://images.isbndb.com/covers/37/16/9780060923716.jpg'), + ('0671617028', 'The Color Purple', 'https://images.isbndb.com/covers/70/28/9780671617028.jpg'), + ('0440224772', 'Mirror Image', 'https://images.isbndb.com/covers/47/78/9780440224778.jpg'), + ('0345406036', 'The Shelter Of Each Other: Rebuilding Our Families', 'https://images.isbndb.com/covers/60/33/9780345406033.jpg'), + ('0871132389', 'Story Of My Life', 'https://images.isbndb.com/covers/23/83/9780871132383.jpg'), + ('0345421825', 'The First Immortal: A Novel Of The Future', 'https://images.isbndb.com/covers/18/21/9780345421821.jpg'), + ('0061057983', 'Diaspora', 'https://images.isbndb.com/covers/79/84/9780061057984.jpg'), + ('0373245513', 'And Babies Make Four (Silhouette Special Edition No. 1551)(Manhattan Multiples)', 'https://images.isbndb.com/covers/55/12/9780373245512.jpg'), + ('0525440631', 'Monster Movers', 'https://images.isbndb.com/covers/06/35/9780525440635.jpg'), + ('0373196504', 'The Tycoon''s Double Trouble (Daycare Dads)', 'https://images.isbndb.com/covers/65/00/9780373196500.jpg'), + ('0425130312', 'Legacy Of Evil', 'https://images.isbndb.com/covers/03/15/9780425130315.jpg'), + ('0373123515', 'The Spaniard''s Woman Foreign Affairs (Harlequin Presents)', 'https://images.isbndb.com/covers/35/13/9780373123513.jpg'), + ('0373123531', 'The Greek Tycoon''s Ultimatum (The Greek Tycoons) (Harlequin Presents # 2353)', 'https://images.isbndb.com/covers/35/37/9780373123537.jpg'), + ('0375433465', 'The Firm (Random House Large Print)', 'https://images.isbndb.com/covers/34/67/9780375433467.jpg'), + ('0380752123', 'Each Time We Love', 'https://images.isbndb.com/covers/21/26/9780380752126.jpg'), + ('067170463X', 'Murder On The Orient Express', 'https://images.isbndb.com/covers/46/36/9780671704636.jpg'), + ('0671543180', 'Dead Man''s Folly', 'https://images.isbndb.com/covers/31/81/9780671543181.jpg'), + ('067170091X', 'Endless Night', 'https://images.isbndb.com/covers/09/11/9780671700911.jpg'), + ('0671705997', 'Easy To Kill', 'https://images.isbndb.com/covers/59/92/9780671705992.jpg'), + ('0671704664', 'And Then There Were None', 'https://images.isbndb.com/covers/46/67/9780671704667.jpg'), + ('0373805217', 'A Careful Wife', 'https://images.isbndb.com/covers/52/11/9780373805211.jpg'), + ('0671696513', 'ABC Murders', 'https://images.isbndb.com/covers/65/11/9780671696511.jpg'), + ('0373123086', 'The Blind - Date Bride (The Australians) (Harlequin Presents # 2308)', 'https://images.isbndb.com/covers/30/87/9780373123087.jpg'), + ('0140390839', 'The Adventures Of Tom Sawyer (Penguin Classics)', 'https://images.isbndb.com/covers/08/34/9780140390834.jpg'), + ('0373123523', 'The Parisian Playboy In Love With Her Boss', 'https://images.isbndb.com/covers/35/20/9780373123520.jpg'), + ('0821758179', 'Faery Magic', 'https://images.isbndb.com/covers/81/75/9780821758175.jpg'), + ('0380896931', 'Tender Is The Storm', 'https://images.isbndb.com/covers/69/36/9780380896936.jpg'), + ('0971942315', 'The Greatest Discovery', 'https://images.isbndb.com/covers/23/18/9780971942318.jpg'), + ('3455059554', 'Der Fisch Lernt Fliegen - Unterwegs Durch Die Jahre', 'https://images.isbndb.com/covers/95/57/9783455059557.jpg'), + ('0553275860', 'Narcissus And Goldmund', 'https://images.isbndb.com/covers/58/65/9780553275865.jpg'), + ('0739307312', 'The Da Vinci Code', 'https://images.isbndb.com/covers/73/11/9780739307311.jpg'), + ('3423105518', 'Der Name Der Rose: Roman', 'https://images.isbndb.com/covers/55/14/9783423105514.jpg'), + ('0812090284', '2001 Spanish And English Idioms (2001 Idioms Series)', 'https://images.isbndb.com/covers/02/84/9780812090284.jpg'), + ('0590254715', 'Spring Fever!', 'https://images.isbndb.com/covers/47/17/9780590254717.jpg'), + ('0449210073', 'Patience & Sarah', 'https://images.isbndb.com/covers/00/79/9780449210079.jpg'), + ('0446605239', 'The Notebook', 'https://images.isbndb.com/covers/52/36/9780446605236.jpg'), + ('0553295977', 'Carnal Innocence', 'https://images.isbndb.com/covers/59/79/9780553295979.jpg'), + ('0380470845', 'The Fulfillment', 'https://images.isbndb.com/covers/08/46/9780380470846.jpg'), + ('0380715309', 'Mattimeo (Redwall, Book 3)', 'https://images.isbndb.com/covers/53/05/9780380715305.jpg'), + ('0553291025', 'If I Should Die', 'https://images.isbndb.com/covers/10/25/9780553291025.jpg'), + ('0812549295', 'The Wood Wife (Tor Fantasy)', 'https://images.isbndb.com/covers/92/94/9780812549294.jpg'), + ('0440162041', 'North And South', 'https://images.isbndb.com/covers/20/49/9780440162049.jpg'), + ('0671739778', 'Lost Lady', 'https://images.isbndb.com/covers/97/75/9780671739775.jpg'), + ('0679770232', 'Italy In Mind: An Anthology', 'https://images.isbndb.com/covers/02/37/9780679770237.jpg'), + ('0312875495', 'White As Snow (Fairy Tale)', 'https://images.isbndb.com/covers/54/97/9780312875497.jpg'), + ('0553130285', 'Overload', 'https://images.isbndb.com/covers/02/87/9780553130287.jpg'), + ('0440212723', 'Cold Sassy Tree', 'https://images.isbndb.com/covers/27/20/9780440212720.jpg'), + ('0061054267', 'Ancient Shores', 'https://images.isbndb.com/covers/42/66/9780061054266.jpg'), + ('0553299743', 'Reap The Whirlwind: The Plainsmen', 'https://images.isbndb.com/covers/97/48/9780553299748.jpg'), + ('0671016768', 'Bloodstream', 'https://images.isbndb.com/covers/67/60/9780671016760.jpg'), + ('0553276735', 'No Comebacks', 'https://images.isbndb.com/covers/67/32/9780553276732.jpg'), + ('0786889047', 'BURNING ANGEL (Dave Robicheaux Mysteries)', 'https://images.isbndb.com/covers/90/44/9780786889044.jpg'), + ('0380720191', 'The List Of Seven', 'https://images.isbndb.com/covers/01/94/9780380720194.jpg'), + ('0380898179', 'So Worthy My Love', 'https://images.isbndb.com/covers/81/76/9780380898176.jpg'), + ('0345314247', 'Blue Adept (Split Infinity)', 'https://images.isbndb.com/covers/42/46/9780345314246.jpg'), + ('0671646575', 'Heat And Dust', 'https://images.isbndb.com/covers/65/78/9780671646578.jpg'), + ('0060955775', 'Veronika Decides To Die', 'https://images.isbndb.com/covers/57/79/9780060955779.jpg'), + ('0679723374', 'Manifold Destiny: The One! The Only! Guide To Cooking On Your Car Engine!', 'https://images.isbndb.com/covers/33/70/9780679723370.jpg'), + ('0716744481', 'Bold Science: Seven Scientists Who Are Changing Our World', 'https://images.isbndb.com/covers/44/81/9780716744481.jpg'), + ('0395629497', 'Treehouses: The Art And Craft Of Living Out On A Limb', 'https://images.isbndb.com/covers/94/99/9780395629499.jpg'), + ('0140259988', 'Home Tree Home: Principles Of Treehouse Construction And Other Tall Tales', 'https://images.isbndb.com/covers/99/88/9780140259988.jpg'), + ('0743458036', 'The Royal Physician''s Visit: A Novel', 'https://images.isbndb.com/covers/80/30/9780743458030.jpg'), + ('0441225691', 'Falcon', 'https://images.isbndb.com/covers/56/99/9780441225699.jpg'), + ('0671721720', 'The Honor Of The Queen (Honor Harrington Series, Book 2)', 'https://images.isbndb.com/covers/17/25/9780671721725.jpg'), + ('0679745963', 'The Man On The Balcony', 'https://images.isbndb.com/covers/59/69/9780679745969.jpg'), + ('0671875965', 'The Short Victorious War (Honor Harrington Series, Book 3)', 'https://images.isbndb.com/covers/59/61/9780671875961.jpg'), + ('0142003409', 'The Disappearance Of Sherlock Holmes', 'https://images.isbndb.com/covers/34/04/9780142003404.jpg'), + ('0671577727', 'On Basilisk Station (Honor Harrington Series, Book 1)', 'https://images.isbndb.com/covers/77/28/9780671577728.jpg'), + ('0451451686', 'Reaper Man (Discworld)', 'https://images.isbndb.com/covers/16/82/9780451451682.jpg'), + ('068486780X', 'Between Silk And Cyanide: A Codemaker''s War, 1941-1945', 'https://images.isbndb.com/covers/78/09/9780684867809.jpg'), + ('0743224574', 'A Beautiful Mind: The Life Of Mathematical Genius And Nobel Laureate John Nash', 'https://images.isbndb.com/covers/45/74/9780743224574.jpg'), + ('0671010115', 'GONE FISHIN: Featuring An Original Easy Rawlins Short Story "Smoke"', 'https://images.isbndb.com/covers/01/19/9780671010119.jpg'), + ('0671004549', 'You Belong To Me', 'https://images.isbndb.com/covers/45/45/9780671004545.jpg'), + ('0375509283', 'The Threatening Storm: The Case For Invading Iraq', 'https://images.isbndb.com/covers/92/85/9780375509285.jpg'), + ('081297106X', 'Reading Lolita In Tehran: A Memoir In Books', 'https://images.isbndb.com/covers/10/64/9780812971064.jpg'), + ('0312422601', 'Blue Latitudes: Boldly Going Where Captain Cook Has Gone Before', 'https://images.isbndb.com/covers/26/08/9780312422608.jpg'), + ('0802139256', 'Peace Like A River', 'https://images.isbndb.com/covers/92/52/9780802139252.jpg'), + ('0553565915', 'Embraced By The Light', 'https://images.isbndb.com/covers/59/11/9780553565911.jpg'), + ('055356160X', 'Cry Wolf: A Novel', 'https://images.isbndb.com/covers/16/09/9780553561609.jpg'), + ('0439240700', 'The Power Of Two (T*Witches, No 1)', 'https://images.isbndb.com/covers/07/03/9780439240703.jpg'), + ('0345317580', 'Magic Kingdom For Sale', 'https://images.isbndb.com/covers/75/82/9780345317582.jpg'), + ('0345335287', 'The Black Unicorn (The Magic Kingdom Of Landover)', 'https://images.isbndb.com/covers/52/89/9780345335289.jpg'), + ('0345362276', 'Wizard At Large (Magic Kingdom Of Landover, Book 3)', 'https://images.isbndb.com/covers/22/78/9780345362278.jpg'), + ('0373512066', 'Sweet Enemy', 'https://images.isbndb.com/covers/20/65/9780373512065.jpg'), + ('0812505042', 'The Time Machine', 'https://images.isbndb.com/covers/50/47/9780812505047.jpg'), + ('0486270718', 'The Invisible Man (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/15/9780486270715.jpg'), + ('0140022651', 'Journey To The Centre Of The Earth', 'https://images.isbndb.com/covers/26/50/9780140022650.jpg'), + ('1558504184', 'Bradymania!: Everything You Always Wanted To Know--And (25th Anniversary Edition)', 'https://images.isbndb.com/covers/41/89/9781558504189.jpg'), + ('0590629808', 'The Message (Animorphs , No 4)', 'https://images.isbndb.com/covers/98/05/9780590629805.jpg'), + ('0590629778', 'The Invasion', 'https://images.isbndb.com/covers/97/75/9780590629775.jpg'), + ('059046678X', 'The Yearbook', 'https://images.isbndb.com/covers/67/83/9780590466783.jpg'), + ('0671740903', 'Scream Of The Cat (Phantom Valley, Bk 3)', 'https://images.isbndb.com/covers/09/00/9780671740900.jpg'), + ('0671740881', 'EVIL ONE (PHANTOM VALLEY 1)', 'https://images.isbndb.com/covers/08/87/9780671740887.jpg'), + ('0380570009', 'How To Talk So Kids Will Listen And Listen So Kids Will Talk', 'https://images.isbndb.com/covers/00/03/9780380570003.jpg'), + ('0451077237', 'Farrah', 'https://images.isbndb.com/covers/72/33/9780451077233.jpg'), + ('0807842613', 'Graveyard Of The Atlantic: Shipwrecks Of The North Carolina Coast', 'https://images.isbndb.com/covers/26/14/9780807842614.jpg'), + ('0345283554', 'Han Solo At Stars'' End', 'https://images.isbndb.com/covers/35/59/9780345283559.jpg'), + ('0345260627', 'Splinter Of The Mind''s Eye', 'https://images.isbndb.com/covers/06/28/9780345260628.jpg'), + ('0345283929', 'The Empire Strikes Back (Star Wars, Episode V)', 'https://images.isbndb.com/covers/39/24/9780345283924.jpg'), + ('068808527X', 'Close Friends', 'https://images.isbndb.com/covers/52/78/9780688085278.jpg'), + ('0929634063', '50 Simple Things You Can Do To Save The Earth', 'https://images.isbndb.com/covers/40/67/9780929634067.jpg'), + ('0898863538', 'A Hiker''s Companion: 12,000 Miles Of Trail-Tested Wisdom', 'https://images.isbndb.com/covers/35/36/9780898863536.jpg'), + ('0679023755', 'Hiking: A Celebration Of The Sport And The World''s Best Places To Enjoy It (Fodor''s Sports)', 'https://images.isbndb.com/covers/37/53/9780679023753.jpg'), + ('0394707745', 'Hungry Hiker''s Book Of Good Cooking', 'https://images.isbndb.com/covers/77/47/9780394707747.jpg'), + ('042516540X', 'The Cat Who... Companion', 'https://images.isbndb.com/covers/54/09/9780425165409.jpg'), + ('0671695304', 'Forever', 'https://images.isbndb.com/covers/53/09/9780671695309.jpg'), + ('0515134384', 'The Cat Who Went Up The Creek', 'https://images.isbndb.com/covers/43/84/9780515134384.jpg'), + ('051512463X', 'The Cat Who Sang For The Birds', 'https://images.isbndb.com/covers/46/37/9780515124637.jpg'), + ('0671529714', 'High Tide (Fear Street Super Chillers, No. 12)', 'https://images.isbndb.com/covers/97/10/9780671529710.jpg'), + ('0671751174', 'The First Evil (Fear Street Cheerleaders, No. 1)', 'https://images.isbndb.com/covers/11/73/9780671751173.jpg'), + ('0671001868', 'Body Switchers From Outer Space: R L Stine''s Ghosts Of Fear Street #14 (Ghosts Of Fear Street)', 'https://images.isbndb.com/covers/18/65/9780671001865.jpg'), + ('0345375580', 'The Elf Queen Of Shannara (Heritage Of Shannara, Book 3)', 'https://images.isbndb.com/covers/55/82/9780345375582.jpg'), + ('0671802283', 'Judy Garland', 'https://images.isbndb.com/covers/22/88/9780671802288.jpg'), + ('067166865X', 'STAR TREK YESTERDAY''S SON (Star Trek: The Original Series)', 'https://images.isbndb.com/covers/86/55/9780671668655.jpg'), + ('0553492411', 'Perfect Girls (Replica 4)', 'https://images.isbndb.com/covers/24/15/9780553492415.jpg'), + ('0590109715', 'The Andalite Chronicles (Elfangor''s Journey, Alloran''s Choice, An Alien Dies) - Animorphs', 'https://images.isbndb.com/covers/97/10/9780590109710.jpg'), + ('0590629786', 'Animorphs #02: The Visitor', 'https://images.isbndb.com/covers/97/82/9780590629782.jpg'), + ('0590629794', 'The Encounter (Animorphs#3)', 'https://images.isbndb.com/covers/97/99/9780590629799.jpg'), + ('0439164567', 'Shipwreck (Island, Book 1)', 'https://images.isbndb.com/covers/45/66/9780439164566.jpg'), + ('0590448595', 'Karen''s School Trip (Baby-Sitters Little Sister, No. 24)', 'https://images.isbndb.com/covers/85/98/9780590448598.jpg'), + ('0590448323', 'Karen''s Doll (Baby-Sitters Little Sister, No. 23)', 'https://images.isbndb.com/covers/83/21/9780590448321.jpg'), + ('0590448315', 'Karen''s Pen Pal (Baby-Sitters Little Sister)', 'https://images.isbndb.com/covers/83/14/9780590448314.jpg'), + ('0553295691', 'The Christie Caper (Death On Demand Mysteries, No. 7)', 'https://images.isbndb.com/covers/56/96/9780553295696.jpg'), + ('0553562754', 'Southern Ghost (Death On Demand Mysteries, No. 8)', 'https://images.isbndb.com/covers/27/50/9780553562750.jpg'), + ('0515120618', 'Montana Sky', 'https://images.isbndb.com/covers/06/15/9780515120615.jpg'), + ('0971766711', 'A Thousand Country Roads: An Epilogue To The Bridges Of Madison County', 'https://images.isbndb.com/covers/67/16/9780971766716.jpg'), + ('0201731355', 'Macromedia Dreamweaver 4: Training From The Source', 'https://images.isbndb.com/covers/13/54/9780201731354.jpg'), + ('0380812029', 'All About Passion', 'https://images.isbndb.com/covers/20/28/9780380812028.jpg'), + ('1551668424', 'Fifth Daughter', 'https://images.isbndb.com/covers/84/20/9781551668420.jpg'), + ('0553583077', 'To Kiss A Spy (Get Connected Romances)', 'https://images.isbndb.com/covers/30/76/9780553583076.jpg'), + ('0804119740', 'Lady Of Desire', 'https://images.isbndb.com/covers/97/40/9780804119740.jpg'), + ('0446611107', 'The Rogue', 'https://images.isbndb.com/covers/11/07/9780446611107.jpg'), + ('1551669463', 'The Italian', 'https://images.isbndb.com/covers/94/65/9781551669465.jpg'), + ('0821772252', 'Scrooge Wore Spurs', 'https://images.isbndb.com/covers/22/56/9780821772256.jpg'), + ('0060009241', 'See Jane Score', 'https://images.isbndb.com/covers/92/43/9780060009243.jpg'), + ('0380819619', 'The Ring On Her Finger', 'https://images.isbndb.com/covers/96/14/9780380819614.jpg'), + ('1551668521', 'A Reckless Encounter', 'https://images.isbndb.com/covers/85/29/9781551668529.jpg'), + ('0312989202', 'Finding You/Knowing You: Two Brand-New Novels For One Wonderful Price!', 'https://images.isbndb.com/covers/92/00/9780312989200.jpg'), + ('0451208293', 'Impostress (Signet Historical Romance)', 'https://images.isbndb.com/covers/82/93/9780451208293.jpg'), + ('084395051X', 'Savage Destiny (Savage (Leisure Paperback))', 'https://images.isbndb.com/covers/05/19/9780843950519.jpg'), + ('1551665964', 'Bride Of Black Douglas (Mira Historical Romance)', 'https://images.isbndb.com/covers/59/62/9781551665962.jpg'), + ('0843950676', 'Texas Bride (Leisure Historical Romance)', 'https://images.isbndb.com/covers/06/70/9780843950670.jpg'), + ('0451208153', 'The Iron Rose', 'https://images.isbndb.com/covers/81/56/9780451208156.jpg'), + ('0060001453', 'Love With The Proper Husband', 'https://images.isbndb.com/covers/14/52/9780060001452.jpg'), + ('0060002050', 'On A Wicked Dawn (Cynster Novels)', 'https://images.isbndb.com/covers/20/53/9780060002053.jpg'), + ('0373123213', 'The Italian''s Trophy Mistress (Mistress To A Millionaire)', 'https://images.isbndb.com/covers/32/16/9780373123216.jpg'), + ('0843951346', 'Seduced By A Rogue', 'https://images.isbndb.com/covers/13/49/9780843951349.jpg'), + ('1551666766', 'Naughty Marietta', 'https://images.isbndb.com/covers/67/61/9781551666761.jpg'), + ('1551666855', 'The Love Knot', 'https://images.isbndb.com/covers/68/53/9781551666853.jpg'), + ('0451208412', 'Racing Moon', 'https://images.isbndb.com/covers/84/15/9780451208415.jpg'), + ('0061032093', 'Breathing Room', 'https://images.isbndb.com/covers/20/97/9780061032097.jpg'), + ('0312989431', 'Deadly Caress', 'https://images.isbndb.com/covers/94/39/9780312989439.jpg'), + ('0446611298', 'Seduced', 'https://images.isbndb.com/covers/12/99/9780446611299.jpg'), + ('0843952059', 'The Very Virile Viking', 'https://images.isbndb.com/covers/20/56/9780843952056.jpg'), + ('0380812975', 'Untie My Heart', 'https://images.isbndb.com/covers/29/74/9780380812974.jpg'), + ('0345447174', 'Midnight Confessions', 'https://images.isbndb.com/covers/71/73/9780345447173.jpg'), + ('0553583565', 'Stealing Heaven', 'https://images.isbndb.com/covers/35/64/9780553583564.jpg'), + ('0804119953', 'The Ways Of Grace', 'https://images.isbndb.com/covers/99/55/9780804119955.jpg'), + ('0843950803', 'Reckless Embrace (Leisure Historical Romance)', 'https://images.isbndb.com/covers/08/09/9780843950809.jpg'), + ('0553583905', 'Kingdom Of Moonlight', 'https://images.isbndb.com/covers/39/08/9780553583908.jpg'), + ('0373292228', 'Married By Midnight (Harlequin Historical)', 'https://images.isbndb.com/covers/22/26/9780373292226.jpg'), + ('0060502312', 'Breaking All The Rules', 'https://images.isbndb.com/covers/23/17/9780060502317.jpg'), + ('0743436830', 'River Road (Callahan Brothers Trilogy)', 'https://images.isbndb.com/covers/68/30/9780743436830.jpg'), + ('1551668920', 'A Season Of Miracles', 'https://images.isbndb.com/covers/89/25/9781551668925.jpg'), + ('0060001445', 'Her Highness, My Wife', 'https://images.isbndb.com/covers/14/45/9780060001445.jpg'), + ('0451206754', 'Must Be Magic', 'https://images.isbndb.com/covers/67/56/9780451206756.jpg'), + ('0440236401', 'The Temptress (The Bride Quest)', 'https://images.isbndb.com/covers/64/05/9780440236405.jpg'), + ('038081479X', 'Heart Of A Warrior', 'https://images.isbndb.com/covers/47/94/9780380814794.jpg'), + ('0843949635', 'Savage Moon (Savage (Leisure Paperback))', 'https://images.isbndb.com/covers/96/36/9780843949636.jpg'), + ('0843949724', 'Texas Homecoming (Night Riders)', 'https://images.isbndb.com/covers/97/28/9780843949728.jpg'), + ('0821771205', 'The Mating Game (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/12/04/9780821771204.jpg'), + ('0312979495', 'Tempt Me Twice', 'https://images.isbndb.com/covers/94/92/9780312979492.jpg'), + ('0440235960', 'Romancing Riley', 'https://images.isbndb.com/covers/59/65/9780440235965.jpg'), + ('0380811065', 'Lady Sophia''s Lover (Bow Street, Book 2)', 'https://images.isbndb.com/covers/10/69/9780380811069.jpg'), + ('0440224055', 'Silent Honor', 'https://images.isbndb.com/covers/40/51/9780440224051.jpg'), + ('0140255087', 'The Snow Leopard (Penguin Nature Classics)', 'https://images.isbndb.com/covers/50/89/9780140255089.jpg'), + ('0684866048', 'Move Your Stuff, Change Your Life : How To Use Feng Shui To Get Love, Money, Respect And Happiness', 'https://images.isbndb.com/covers/60/48/9780684866048.jpg'), + ('0688164307', 'Every Day''s A Party: Louisiana Recipes For Celebrating With Family And Friends', 'https://images.isbndb.com/covers/43/00/9780688164300.jpg'), + ('0060392703', 'Do Less, Achieve More: Discover The Hidden Power Of Giving In', 'https://images.isbndb.com/covers/27/03/9780060392703.jpg'), + ('0671743228', 'Success Through A Positive Mental Attitude', 'https://images.isbndb.com/covers/32/22/9780671743222.jpg'), + ('0385483813', 'Intellectual Capital: The New Wealth Of Organizations', 'https://images.isbndb.com/covers/38/10/9780385483810.jpg'), + ('1556590415', 'The Book Of Questions (Bilingual Edition) (Spanish Edition)', 'https://images.isbndb.com/covers/04/12/9781556590412.jpg'), + ('0399517405', 'Italian Light Cooking', 'https://images.isbndb.com/covers/74/02/9780399517402.jpg'), + ('1885171013', 'Soulwork: Clearing The Mind, Opening The Heart, And Replenishing The Spirit', 'https://images.isbndb.com/covers/10/16/9781885171016.jpg'), + ('1583940677', 'Nothing In This Book Is True, But It''s Exactly How Things Are', 'https://images.isbndb.com/covers/06/79/9781583940679.jpg'), + ('0804110867', 'Other People''s Skeletons (Rebecca Schwartz Mysteries)', 'https://images.isbndb.com/covers/08/60/9780804110860.jpg'), + ('0446400688', 'Death And The Joyful Woman', 'https://images.isbndb.com/covers/06/88/9780446400688.jpg'), + ('0425102319', 'No Wind Of Blame', 'https://images.isbndb.com/covers/23/12/9780425102312.jpg'), + ('039304856X', 'Iris And Her Friends: A Memoir Of Memory And Desire', 'https://images.isbndb.com/covers/85/68/9780393048568.jpg'), + ('0399143335', 'The Cat Who Sang For The Birds', 'https://images.isbndb.com/covers/33/35/9780399143335.jpg'), + ('0962455741', 'Preserving Family Lands, Book I', 'https://images.isbndb.com/covers/57/42/9780962455742.jpg'), + ('0441001866', 'Martin The Warrior (Redwall, Book 6)', 'https://images.isbndb.com/covers/18/66/9780441001866.jpg'), + ('0441000312', 'Salamandastron: A Novel Of Redwall', 'https://images.isbndb.com/covers/03/19/9780441000319.jpg'), + ('0515118249', 'The Cat Who Blew The Whistle', 'https://images.isbndb.com/covers/82/47/9780515118247.jpg'), + ('0743456823', 'The Lives Of Dax (Star Trek: Deep Space Nine)', 'https://images.isbndb.com/covers/68/21/9780743456821.jpg'), + ('0312311354', 'The Pianist: The Extraordinary True Story Of One Man''s Survival In Warsaw, 1939-1945', 'https://images.isbndb.com/covers/13/53/9780312311353.jpg'), + ('0671743562', 'Dreams Of The Raven (Star Trek, No 34)', 'https://images.isbndb.com/covers/35/67/9780671743567.jpg'), + ('0385335830', 'Diary Of A Mad Bride', 'https://images.isbndb.com/covers/58/36/9780385335836.jpg'), + ('0743262174', 'Cry, The Beloved Country (Oprah''s Book Club)', 'https://images.isbndb.com/covers/21/70/9780743262170.jpg'), + ('0515130389', 'Carolina Moon', 'https://images.isbndb.com/covers/03/86/9780515130386.jpg'), + ('080411935X', 'Standing In The Rainbow', 'https://images.isbndb.com/covers/93/51/9780804119351.jpg'), + ('0142004235', 'East Of Eden', 'https://images.isbndb.com/covers/42/34/9780142004234.jpg'), + ('0515135062', 'Three Fates', 'https://images.isbndb.com/covers/50/60/9780515135060.jpg'), + ('0595197124', 'The Courtship Dance Of The Borderline', 'https://images.isbndb.com/covers/71/25/9780595197125.jpg'), + ('0689859376', 'The Seeing Stone (The Spiderwick Chronicles #2)', 'https://images.isbndb.com/covers/93/73/9780689859373.jpg'), + ('1563524317', 'Down On Ponce', 'https://images.isbndb.com/covers/43/18/9781563524318.jpg'), + ('0140065008', 'The Deptford Trilogy: Fifth Business / The Maticore / World Of Wonders (A King Penguin)', 'https://images.isbndb.com/covers/50/08/9780140065008.jpg'), + ('0156881802', 'Tartuffe, By Moliere', 'https://images.isbndb.com/covers/18/07/9780156881807.jpg'), + ('0006476333', 'Scorpio Illusion', 'https://images.isbndb.com/covers/63/37/9780006476337.jpg'), + ('3257233027', 'Richtig Leben Mit Geri Weibel', 'https://images.isbndb.com/covers/30/25/9783257233025.jpg'), + ('325723273X', 'Richtig Leben Mit Geri Weibel', 'https://images.isbndb.com/covers/27/38/9783257232738.jpg'), + ('0743412028', 'Pay It Forward', 'https://images.isbndb.com/covers/20/25/9780743412025.jpg'), + ('3442429439', 'Die Geheime Geschichte: Roman', 'https://images.isbndb.com/covers/94/31/9783442429431.jpg'), + ('0061056774', 'The X-Files: Ground Zero', 'https://images.isbndb.com/covers/67/72/9780061056772.jpg'), + ('0425169693', 'Here On Earth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/96/98/9780425169698.jpg'), + ('0452269571', 'Bastard Out Of Carolina', 'https://images.isbndb.com/covers/95/76/9780452269576.jpg'), + ('051513287X', 'Face The Fire (Three Sisters Island Trilogy)', 'https://images.isbndb.com/covers/28/78/9780515132878.jpg'), + ('0618002219', 'The Hobbit: Or There And Back Again', 'https://images.isbndb.com/covers/22/14/9780618002214.jpg'), + ('0553576399', 'Distraction', 'https://images.isbndb.com/covers/63/99/9780553576399.jpg'), + ('0451458370', 'Alien Taste (Ukiah Oregon, Book 1)', 'https://images.isbndb.com/covers/83/77/9780451458377.jpg'), + ('0441374239', 'Islands In The Net', 'https://images.isbndb.com/covers/42/36/9780441374236.jpg'), + ('0887307884', 'Dogbert''s Top Secret Management Handbook', 'https://images.isbndb.com/covers/78/81/9780887307881.jpg'), + ('0252068505', 'Hollywood Speaks: Deafness And The Film Entertainment Industry', 'https://images.isbndb.com/covers/85/08/9780252068508.jpg'), + ('0804108447', 'Druids', 'https://images.isbndb.com/covers/84/47/9780804108447.jpg'), + ('0671721046', 'The Deed Of Paksenarrion: A Novel', 'https://images.isbndb.com/covers/10/46/9780671721046.jpg'), + ('0441117732', 'Count Zero', 'https://images.isbndb.com/covers/77/34/9780441117734.jpg'), + ('0553576429', 'A Good Old-Fashioned Future', 'https://images.isbndb.com/covers/64/29/9780553576429.jpg'), + ('0915035170', 'Deaf Culture Our Way: Anecdotes From The Deaf Community', 'https://images.isbndb.com/covers/51/75/9780915035175.jpg'), + ('0060914254', 'A Loss For Words: The Story Of Deafness In A Family', 'https://images.isbndb.com/covers/42/57/9780060914257.jpg'), + ('0441003702', 'Schismatrix Plus (Complete Shapers-Mechanists Universe)', 'https://images.isbndb.com/covers/37/09/9780441003709.jpg'), + ('0886776155', 'When True Night Falls (Coldfire Trilogy, Book 2)', 'https://images.isbndb.com/covers/61/52/9780886776152.jpg'), + ('055329461X', 'The Difference Engine (Spectra Special Editions)', 'https://images.isbndb.com/covers/46/13/9780553294613.jpg'), + ('055357549X', 'Holy Fire (Bantam Spectra Book)', 'https://images.isbndb.com/covers/54/91/9780553575491.jpg'), + ('0553373803', 'The Fifth Sacred Thing', 'https://images.isbndb.com/covers/38/06/9780553373806.jpg'), + ('0060392452', 'Stupid White Men ...And Other Sorry Excuses For The State Of The Nation!', 'https://images.isbndb.com/covers/24/51/9780060392451.jpg'), + ('1568650418', 'The Elric Saga Part II The Vanishing Tower; The Bane Of The Black Sword; Stormbringer.', 'https://images.isbndb.com/covers/04/18/9781568650418.jpg'), + ('0451455789', 'No One Noticed The Cat', 'https://images.isbndb.com/covers/57/89/9780451455789.jpg'), + ('0963401661', 'Great Deaf Americans: The Second Edition', 'https://images.isbndb.com/covers/16/63/9780963401663.jpg'), + ('1566393523', 'The Feel Of Silence (Health Society And Policy)', 'https://images.isbndb.com/covers/35/22/9781566393522.jpg'), + ('0153895152', 'Our Latin Heritage', 'https://images.isbndb.com/covers/51/59/9780153895159.jpg'), + ('0345412451', 'The Termination Node', 'https://images.isbndb.com/covers/24/54/9780345412454.jpg'), + ('0590353403', 'Harry Potter And The Sorcerer''s Stone (Book 1)', 'https://images.isbndb.com/covers/34/03/9780590353403.jpg'), + ('0671877283', 'Silverlight: The Arcana, Book II', 'https://images.isbndb.com/covers/72/86/9780671877286.jpg'), + ('0941104184', 'War Against War', 'https://images.isbndb.com/covers/41/80/9780941104180.jpg'), + ('0380815931', 'In The Beginning...was The Command Line', 'https://images.isbndb.com/covers/59/37/9780380815937.jpg'), + ('0930878132', 'A Guide To Korean Characters: Reading And Writing Hangul And Hanja (A Mini Dictionary Of Characters For Modern Readers)', 'https://images.isbndb.com/covers/81/39/9780930878139.jpg'), + ('0932130097', 'American Deaf Culture: An Anthology', 'https://images.isbndb.com/covers/00/99/9780932130099.jpg'), + ('0312263120', 'Digital Fortress: A Thriller', 'https://images.isbndb.com/covers/31/26/9780312263126.jpg'), + ('0446532231', 'Dude, Where''s My Country?', 'https://images.isbndb.com/covers/22/35/9780446532235.jpg'), + ('0806511605', 'Fairy-Faith In Celtic Countries (Library Of The Mystic Arts)', 'https://images.isbndb.com/covers/16/03/9780806511603.jpg'), + ('0007103999', 'Witch: A Magikal Journey- A Hip Guide To Modern Witchcraft', 'https://images.isbndb.com/covers/39/97/9780007103997.jpg'), + ('0671877143', 'Silverhand (The Arcana, Book 1) (Vol 1)', 'https://images.isbndb.com/covers/71/49/9780671877149.jpg'), + ('0886777844', 'Summon The Keeper: The Keeper''s Chronicles #1', 'https://images.isbndb.com/covers/78/45/9780886777845.jpg'), + ('0875424961', 'The 21 Lessons Of Merlyn: A Study In Druid Magic And Lore', 'https://images.isbndb.com/covers/49/65/9780875424965.jpg'), + ('089281313X', 'Seekers Of The Healing Energy: Reich, Cayce, The Kahunas, And Other Masters Of The Vital Force', 'https://images.isbndb.com/covers/31/31/9780892813131.jpg'), + ('0877285314', 'Spiritual Cleansing: A Handbook Of Psychic Protection', 'https://images.isbndb.com/covers/53/11/9780877285311.jpg'), + ('0765341840', 'From The Two Rivers: The Eye Of The World, Book 1 (Eye Of The World, Part 1 : The Beginning Of The Wheel Of Time)', 'https://images.isbndb.com/covers/18/46/9780765341846.jpg'), + ('0380789116', 'The Queen''s Necklace', 'https://images.isbndb.com/covers/91/15/9780380789115.jpg'), + ('2877141667', 'L''éducation Sentimentale', 'https://images.isbndb.com/covers/16/66/9782877141666.jpg'), + ('0312243359', 'We Wish To Inform You That Tomorrow We Will Be Killed With Our Families: Stories From Rwanda', 'https://images.isbndb.com/covers/33/57/9780312243357.jpg'), + ('2742702458', 'La Virevolte', 'https://images.isbndb.com/covers/24/59/9782742702459.jpg'), + ('2253182389', 'Meurtres En Soutane', 'https://images.isbndb.com/covers/23/82/9782253182382.jpg'), + ('0385498802', 'Bee Season: A Novel', 'https://images.isbndb.com/covers/88/07/9780385498807.jpg'), + ('0141002077', 'Cherry', 'https://images.isbndb.com/covers/20/71/9780141002071.jpg'), + ('0394757653', 'The Simple Art Of Murder', 'https://images.isbndb.com/covers/76/50/9780394757650.jpg'), + ('0812579569', 'Domain (Domain Trilogy)', 'https://images.isbndb.com/covers/95/67/9780812579567.jpg'), + ('0898655293', 'Myth-Nomers And Im-Pervections', 'https://images.isbndb.com/covers/52/92/9780898655292.jpg'), + ('0449904628', 'Dave Barry Slept Here: A Sort Of History Of The United States', 'https://images.isbndb.com/covers/46/26/9780449904626.jpg'), + ('0831750065', 'In Praise Of Cats', 'https://images.isbndb.com/covers/00/60/9780831750060.jpg'), + ('0446674338', 'Brown Girl In The Ring', 'https://images.isbndb.com/covers/43/31/9780446674331.jpg'), + ('0449702936', 'Sons From Afar (The Tillerman Series #6)', 'https://images.isbndb.com/covers/29/32/9780449702932.jpg'), + ('0449702146', 'Izzy, Willy-Nilly', 'https://images.isbndb.com/covers/21/47/9780449702147.jpg'), + ('0449701301', 'Building Blocks', 'https://images.isbndb.com/covers/13/00/9780449701300.jpg'), + ('0449703347', 'Tree By Leaf', 'https://images.isbndb.com/covers/33/42/9780449703342.jpg'), + ('0590477323', 'Building Blocks (Point)', 'https://images.isbndb.com/covers/73/21/9780590477321.jpg'), + ('0449701875', 'Jackaroo', 'https://images.isbndb.com/covers/18/74/9780449701874.jpg'), + ('0590471570', 'A Solitary Blue (The Tillerman Series #3)', 'https://images.isbndb.com/covers/15/72/9780590471572.jpg'), + ('0449702545', 'Homecoming', 'https://images.isbndb.com/covers/25/43/9780449702543.jpg'), + ('0156005778', 'Mister Sandman (Harvest Book)', 'https://images.isbndb.com/covers/57/77/9780156005777.jpg'), + ('0375727434', 'Hateship, Friendship, Courtship, Loveship, Marriage: Stories', 'https://images.isbndb.com/covers/74/36/9780375727436.jpg'), + ('1550223968', 'Too Close To The Falls: A Memoir', 'https://images.isbndb.com/covers/39/65/9781550223965.jpg'), + ('0312291639', 'The Nanny Diaries: A Novel', 'https://images.isbndb.com/covers/16/31/9780312291631.jpg'), + ('014043187X', 'The Picture Of Dorian Gray (Penguin Classic)', 'https://images.isbndb.com/covers/18/72/9780140431872.jpg'), + ('0425101452', 'Phantoms', 'https://images.isbndb.com/covers/14/52/9780425101452.jpg'), + ('0192816489', 'No Name (World''s Classics)', 'https://images.isbndb.com/covers/64/81/9780192816481.jpg'), + ('189251415X', 'The Bearded Lady', 'https://images.isbndb.com/covers/41/58/9781892514158.jpg'), + ('014018869X', 'Cold Comfort Farm (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/86/91/9780140188691.jpg'), + ('1401068049', 'Revelation And The Fall Of Judea', 'https://images.isbndb.com/covers/80/42/9781401068042.jpg'), + ('2070374637', 'L''Ami Retrouvé', 'https://images.isbndb.com/covers/46/32/9782070374632.jpg'), + ('2890377741', 'Lame', 'https://images.isbndb.com/covers/77/45/9782890377745.jpg'), + ('0375505296', 'The Dante Club: A Novel', 'https://images.isbndb.com/covers/52/94/9780375505294.jpg'), + ('3423350024', 'Der Wahnsinn Der Normalität: Realismus Als Krankheit. Eine Theorie Der Menschlichen Destruktivität: Realismus Als Krankheit: Eine Grundlegende Theorie Zur Menschlichen Destruktivität', 'https://images.isbndb.com/covers/00/20/9783423350020.jpg'), + ('034536662X', 'Jacob The Baker: Gentle Wisdom For A Complicated World', 'https://images.isbndb.com/covers/66/27/9780345366627.jpg'), + ('0553348981', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/89/89/9780553348989.jpg'), + ('0486251772', 'Adventures At Sea In The Great Age Of Sail: Five Firsthand Narratives', 'https://images.isbndb.com/covers/17/76/9780486251776.jpg'), + ('0671541013', 'Possessions', 'https://images.isbndb.com/covers/10/19/9780671541019.jpg'), + ('0684874350', 'Angela''s Ashes', 'https://images.isbndb.com/covers/43/57/9780684874357.jpg'), + ('0451207580', 'Who Left That Body In The Rain? (Thoroughly Southern Mysteries, No. 4)', 'https://images.isbndb.com/covers/75/86/9780451207586.jpg'), + ('0446611212', 'Violets Are Blue (Alex Cross)', 'https://images.isbndb.com/covers/12/13/9780446611213.jpg'), + ('0316168688', 'The Dogs Of Babel', 'https://images.isbndb.com/covers/86/87/9780316168687.jpg'), + ('0452264790', 'Tar Baby', 'https://images.isbndb.com/covers/47/93/9780452264793.jpg'), + ('0679448802', 'Gone Bamboo', 'https://images.isbndb.com/covers/88/08/9780679448808.jpg'), + ('0425189082', 'The Etruscan Chimera (Archaeological Mysteries, No. 6)', 'https://images.isbndb.com/covers/90/85/9780425189085.jpg'), + ('1566492785', 'The Tao Of Bada Bing: Words Of Wisdom From The Sopranos', 'https://images.isbndb.com/covers/27/82/9781566492782.jpg'), + ('0553254456', 'Gestalt Therapy', 'https://images.isbndb.com/covers/44/57/9780553254457.jpg'), + ('0553130250', 'Women Prefer Women', 'https://images.isbndb.com/covers/02/56/9780553130256.jpg'), + ('0451451279', 'The Witch''s Daughter', 'https://images.isbndb.com/covers/12/79/9780451451279.jpg'), + ('0441816533', 'Tomoe Gozen', 'https://images.isbndb.com/covers/65/38/9780441816538.jpg'), + ('0879977361', 'Amazons II', 'https://images.isbndb.com/covers/73/68/9780879977368.jpg'), + ('0671002384', 'Ancient Blood: Day Of Honor #1 (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/23/81/9780671002381.jpg'), + ('0380561433', 'God Herself: Feminine Roots Of Astrology', 'https://images.isbndb.com/covers/14/38/9780380561438.jpg'), + ('0879831227', 'Preventive Organic Medicine (Pivot Health Book)', 'https://images.isbndb.com/covers/12/26/9780879831226.jpg'), + ('0425155943', 'Contagion', 'https://images.isbndb.com/covers/59/43/9780425155943.jpg'), + ('0553240307', 'Sudden Death', 'https://images.isbndb.com/covers/03/06/9780553240306.jpg'), + ('3257229534', 'Der Vorleser', 'https://images.isbndb.com/covers/95/30/9783257229530.jpg'), + ('0553144286', 'Lord Valentine''s Castle', 'https://images.isbndb.com/covers/42/84/9780553144284.jpg'), + ('0440241537', 'The King Of Torts', 'https://images.isbndb.com/covers/15/39/9780440241539.jpg'), + ('034538475X', 'The Tale Of The Body Thief (Vampire Chronicles)', 'https://images.isbndb.com/covers/47/51/9780345384751.jpg'), + ('0671004247', 'Treaty''s Law (Star Trek: Day Of Honor, Book 4)', 'https://images.isbndb.com/covers/42/48/9780671004248.jpg'), + ('0671002406', 'Her Klingon Soul (Star Trek Voyager: Day Of Honor, Book 3)', 'https://images.isbndb.com/covers/24/04/9780671002404.jpg'), + ('0671006754', 'Armageddon Sky (Star Trek Deep Space Nine: Day Of Honor, Book 2)', 'https://images.isbndb.com/covers/67/54/9780671006754.jpg'), + ('055327418X', 'Startide Rising (The Uplift Saga, Book 2)', 'https://images.isbndb.com/covers/41/89/9780553274189.jpg'), + ('0345419995', 'Dave Barry''s Greatest Hits', 'https://images.isbndb.com/covers/99/96/9780345419996.jpg'), + ('0345388674', 'Total Zone', 'https://images.isbndb.com/covers/86/74/9780345388674.jpg'), + ('0345277937', 'Goldengirl', 'https://images.isbndb.com/covers/79/30/9780345277930.jpg'), + ('0671824171', 'Dangerous Games', 'https://images.isbndb.com/covers/41/74/9780671824174.jpg'), + ('0441354955', 'I, Alien : A Novel', 'https://images.isbndb.com/covers/49/55/9780441354955.jpg'), + ('0879977981', 'Moonscatter (Duel Of Sorcery, Bk. 2)', 'https://images.isbndb.com/covers/79/86/9780879977986.jpg'), + ('0441239196', 'First Cycle', 'https://images.isbndb.com/covers/91/91/9780441239191.jpg'), + ('0671822845', 'The Starchild Trilogy', 'https://images.isbndb.com/covers/28/42/9780671822842.jpg'), + ('0880387157', 'Illegal Aliens', 'https://images.isbndb.com/covers/71/56/9780880387156.jpg'), + ('0451163036', 'Cat House (Signet)', 'https://images.isbndb.com/covers/30/35/9780451163035.jpg'), + ('0394718224', 'Unicorn And Other Poems', 'https://images.isbndb.com/covers/82/24/9780394718224.jpg'), + ('0345280229', 'Warm Worlds And Otherwise', 'https://images.isbndb.com/covers/02/20/9780345280220.jpg'), + ('0875421989', 'The Magick Of The Tarot (The Llewellyn Practical Guides)', 'https://images.isbndb.com/covers/19/88/9780875421988.jpg'), + ('087100240X', 'Psychic Tarot', 'https://images.isbndb.com/covers/24/02/9780871002402.jpg'), + ('0874771412', 'Tarot Therapy: A Guide To The Subconscious', 'https://images.isbndb.com/covers/14/11/9780874771411.jpg'), + ('0886777631', 'City Of Golden Shadow (Otherland, Volume 1)', 'https://images.isbndb.com/covers/76/30/9780886777630.jpg'), + ('0425098648', 'Night Chills', 'https://images.isbndb.com/covers/86/46/9780425098646.jpg'), + ('0061008427', 'Pacific Blues', 'https://images.isbndb.com/covers/84/29/9780061008429.jpg'), + ('0425181103', 'Phantoms', 'https://images.isbndb.com/covers/11/02/9780425181102.jpg'), + ('0786001690', 'Tattoo', 'https://images.isbndb.com/covers/16/99/9780786001699.jpg'), + ('0380718340', 'Cruel & Unusual (Kay Scarpetta Mysteries)', 'https://images.isbndb.com/covers/83/44/9780380718344.jpg'), + ('0451153553', 'Misery', 'https://images.isbndb.com/covers/35/55/9780451153555.jpg'), + ('0142001805', 'The Eyre Affair: A Thursday Next Novel (Thursday Next Novels (Penguin Books))', 'https://images.isbndb.com/covers/18/06/9780142001806.jpg'), + ('0380014033', 'Lord Of Light', 'https://images.isbndb.com/covers/40/33/9780380014033.jpg'), + ('0553277839', 'Faerie Tale', 'https://images.isbndb.com/covers/78/38/9780553277838.jpg'), + ('0375706062', 'Lying Awake', 'https://images.isbndb.com/covers/60/66/9780375706066.jpg'), + ('0060981180', 'Mariette In Ecstasy', 'https://images.isbndb.com/covers/11/81/9780060981181.jpg'), + ('0061051098', 'The Iron Lance (The Celtic Crusades #1)', 'https://images.isbndb.com/covers/10/98/9780061051098.jpg'), + ('0425147622', 'The Body Farm', 'https://images.isbndb.com/covers/76/27/9780425147627.jpg'), + ('0451180410', 'Mortal Fear', 'https://images.isbndb.com/covers/04/14/9780451180414.jpg'), + ('0425143341', 'Curfew', 'https://images.isbndb.com/covers/33/46/9780425143346.jpg'), + ('0446360856', 'The Gold Coast', 'https://images.isbndb.com/covers/08/52/9780446360852.jpg'), + ('1593100825', 'Highland Legacy: Fresh Highland Heir/Finding Audrey/Tea And Bagpipes/Fayre Rose (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/08/27/9781593100827.jpg'), + ('1591451124', 'Deep In The Heart (Lone Star Legacy #1)', 'https://images.isbndb.com/covers/11/29/9781591451129.jpg'), + ('0800758579', 'Emma''s Gift (The Wortham Family Series #2)', 'https://images.isbndb.com/covers/85/78/9780800758578.jpg'), + ('0812589831', 'People Of The Owl (The First North Americans Series)', 'https://images.isbndb.com/covers/98/32/9780812589832.jpg'), + ('0451212193', 'Wind Walker', 'https://images.isbndb.com/covers/21/91/9780451212191.jpg'), + ('1593101678', 'Kansas Brides: Stranger''s Bride/Never A Bride/Bittersweet Bride/His Brother''s Bride (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/16/71/9781593101671.jpg'), + ('0312993560', 'The Tea Rose: A Novel', 'https://images.isbndb.com/covers/35/66/9780312993566.jpg'), + ('0373791429', 'A Burning Obsession (Heroes Inc, Book 4) (Harlequin Blaze Series #138)', 'https://images.isbndb.com/covers/14/22/9780373791422.jpg'), + ('0373227787', 'Wanted Woman (Cascades Concealed, Book 3) (Harlequin Intrigue Series #778)', 'https://images.isbndb.com/covers/77/85/9780373227785.jpg'), + ('037327372X', 'To The Limit (Silhouette Intimate Moments No. 1302)', 'https://images.isbndb.com/covers/37/20/9780373273720.jpg'), + ('0373273711', 'One Eye Open (The Pack, No.1) (Sihouette Intimate Moments, No. 1301)', 'https://images.isbndb.com/covers/37/13/9780373273713.jpg'), + ('0380400480', 'A Pirate''s Love', 'https://images.isbndb.com/covers/04/85/9780380400485.jpg'), + ('0964894203', 'Secrets Volume 1 (Red Sage - Secrets Volumes)', 'https://images.isbndb.com/covers/42/04/9780964894204.jpg'), + ('037327369X', 'A Cry In The Dark (Family Secrets) (Silhouette Intimate Moments No. 1299)', 'https://images.isbndb.com/covers/36/90/9780373273690.jpg'), + ('1551666685', 'Embrace The Twilight (MIRA)', 'https://images.isbndb.com/covers/66/86/9781551666686.jpg'), + ('0778320227', 'Edge Of Twilight', 'https://images.isbndb.com/covers/02/27/9780778320227.jpg'), + ('0553582763', 'By The Light Of The Moon', 'https://images.isbndb.com/covers/27/65/9780553582765.jpg'), + ('0425188809', 'Watchers', 'https://images.isbndb.com/covers/88/04/9780425188804.jpg'), + ('0425092178', 'Strangers', 'https://images.isbndb.com/covers/21/70/9780425092170.jpg'), + ('0345384369', 'Intensity', 'https://images.isbndb.com/covers/43/62/9780345384362.jpg'), + ('034539657X', 'Dark Rivers Of The Heart', 'https://images.isbndb.com/covers/65/70/9780345396570.jpg'), + ('0020532105', 'Cry, The Beloved Country (A Scribner Classic)', 'https://images.isbndb.com/covers/21/01/9780020532101.jpg'), + ('0671623931', 'The Good Earth', 'https://images.isbndb.com/covers/39/37/9780671623937.jpg'), + ('0020519109', 'The Old Man And The Sea (A Scribner Classic)', 'https://images.isbndb.com/covers/91/02/9780020519102.jpg'), + ('0425144429', 'Mr. Murder', 'https://images.isbndb.com/covers/44/28/9780425144428.jpg'), + ('0345468392', 'The Chronicles Of Riddick', 'https://images.isbndb.com/covers/83/90/9780345468390.jpg'), + ('0312305060', 'The Hours', 'https://images.isbndb.com/covers/50/62/9780312305062.jpg'), + ('0743493540', 'Van Helsing', 'https://images.isbndb.com/covers/35/43/9780743493543.jpg'), + ('0821770594', 'My Lady Pirate', 'https://images.isbndb.com/covers/05/97/9780821770597.jpg'), + ('0310466628', 'Windsong', 'https://images.isbndb.com/covers/66/28/9780310466628.jpg'), + ('0446363510', 'The Jacaranda Tree', 'https://images.isbndb.com/covers/35/18/9780446363518.jpg'), + ('037329168X', 'Magic And Mist (Historical)', 'https://images.isbndb.com/covers/16/87/9780373291687.jpg'), + ('0440206707', 'The Viking''s Woman', 'https://images.isbndb.com/covers/67/05/9780440206705.jpg'), + ('0425144569', 'For All Eternity', 'https://images.isbndb.com/covers/45/65/9780425144565.jpg'), + ('0821764462', 'Precious Passion (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/44/66/9780821764466.jpg'), + ('0451204948', 'A Day Late And A Dollar Short', 'https://images.isbndb.com/covers/49/43/9780451204943.jpg'), + ('0486290492', 'Sense And Sensibility (Dover Thrift Editions)', 'https://images.isbndb.com/covers/04/92/9780486290492.jpg'), + ('156619301X', 'Dracula', 'https://images.isbndb.com/covers/30/16/9781566193016.jpg'), + ('0060175966', 'The Professor And The Madman', 'https://images.isbndb.com/covers/59/62/9780060175962.jpg'), + ('0399144137', 'Rainbow Six', 'https://images.isbndb.com/covers/41/34/9780399144134.jpg'), + ('0743436741', 'The Lions Of Lucerne (Scot Harvath 1)', 'https://images.isbndb.com/covers/67/48/9780743436748.jpg'), + ('0330352253', 'To The Hilt', 'https://images.isbndb.com/covers/22/53/9780330352253.jpg'), + ('0609600567', 'Road Rage', 'https://images.isbndb.com/covers/05/66/9780609600566.jpg'), + ('0786404019', 'Day Of The Long Night : A Palestinian Refugee Remembers The Nakba', 'https://images.isbndb.com/covers/40/18/9780786404018.jpg'), + ('034545104X', 'Flesh Tones', 'https://images.isbndb.com/covers/10/40/9780345451040.jpg'), + ('0394756827', 'Gödel, Escher, Bach: An Eternal Golden Braid', 'https://images.isbndb.com/covers/68/20/9780394756820.jpg'), + ('0300069049', 'Cosima Wagner''s Diaries: An Abridgement', 'https://images.isbndb.com/covers/90/44/9780300069044.jpg'), + ('0399146431', 'The Bonesetter''s Daughter', 'https://images.isbndb.com/covers/64/35/9780399146435.jpg'), + ('0312186754', 'An Arrow''s Flight', 'https://images.isbndb.com/covers/67/53/9780312186753.jpg'), + ('0312876513', 'Shadow Of The Hegemon (Ender Wiggin Saga)', 'https://images.isbndb.com/covers/65/17/9780312876517.jpg'), + ('080901548X', 'The Dark Child: The Autobiography Of An African Boy', 'https://images.isbndb.com/covers/54/81/9780809015481.jpg'), + ('0803287100', 'Yuwipi: Vision And Experience In Oglala Ritual', 'https://images.isbndb.com/covers/71/05/9780803287105.jpg'), + ('0879520388', 'Science And Health With Key To The Scriptures (Authorized, Trade Ed.)', 'https://images.isbndb.com/covers/03/80/9780879520380.jpg'), + ('0520077806', 'Mama Lola: A Vodou Priestess In Brooklyn (Comparative Studies In Religion And Society)', 'https://images.isbndb.com/covers/78/05/9780520077805.jpg'), + ('0295955252', 'No-No Boy', 'https://images.isbndb.com/covers/52/54/9780295955254.jpg'), + ('0824811720', 'All I Asking For Is My Body (Kolowalu Book)', 'https://images.isbndb.com/covers/17/23/9780824811723.jpg'), + ('0385482388', 'The Mistress Of Spices: A Novel', 'https://images.isbndb.com/covers/23/87/9780385482387.jpg'), + ('0312275560', 'The Path Of Minor Planets: A Novel', 'https://images.isbndb.com/covers/55/63/9780312275563.jpg'), + ('0820319627', 'Curanderismo: Mexican American Folk Healing', 'https://images.isbndb.com/covers/96/29/9780820319629.jpg'), + ('0767901266', 'A Hope In The Unseen: An American Odyssey From The Inner City To The Ivy League', 'https://images.isbndb.com/covers/12/60/9780767901260.jpg'), + ('0385470142', 'Fires In The Mirror', 'https://images.isbndb.com/covers/01/48/9780385470148.jpg'), + ('0870238566', 'Unbroken Thread: An Anthology Of Plays By Asian American Women', 'https://images.isbndb.com/covers/85/67/9780870238567.jpg'), + ('1558850481', 'Zoot Suit And Other Plays', 'https://images.isbndb.com/covers/04/84/9781558850484.jpg'), + ('0679733760', 'A Midwife''s Tale: The Life Of Martha Ballard, Based On Her Diary, 1785-1812', 'https://images.isbndb.com/covers/37/68/9780679733768.jpg'), + ('0395874653', 'Kaleidoscope Readings In Education', 'https://images.isbndb.com/covers/46/53/9780395874653.jpg'), + ('0399141146', 'The Hundred Secret Senses', 'https://images.isbndb.com/covers/11/40/9780399141140.jpg'), + ('0375706771', 'Midwives (Oprah''s Book Club)', 'https://images.isbndb.com/covers/67/76/9780375706776.jpg'), + ('0451525078', 'Don Quixote: Unabridged Edition (Signet Classics)', 'https://images.isbndb.com/covers/50/79/9780451525079.jpg'), + ('0679722319', 'Where I''m Calling From: Selected Stories', 'https://images.isbndb.com/covers/23/11/9780679722311.jpg'), + ('0553213601', 'Cyrano De Bergerac (Bantam Classics Reissue)', 'https://images.isbndb.com/covers/36/07/9780553213607.jpg'), + ('0679745580', 'In Cold Blood', 'https://images.isbndb.com/covers/55/87/9780679745587.jpg'), + ('0679741410', 'Writers Dreaming: 26 Writers Talk About Their Dreams And The Creative Process', 'https://images.isbndb.com/covers/14/11/9780679741411.jpg'), + ('0679729259', 'The Brothers Karamazov (Vintage Classics)', 'https://images.isbndb.com/covers/92/59/9780679729259.jpg'), + ('0452260116', 'Song Of Solomon', 'https://images.isbndb.com/covers/01/15/9780452260115.jpg'), + ('0812533550', 'Ender''s Game', 'https://images.isbndb.com/covers/35/52/9780812533552.jpg'), + ('0020442602', 'The Voyage Of The Dawn Treader', 'https://images.isbndb.com/covers/26/08/9780020442608.jpg'), + ('0312978367', 'The Prometheus Deception', 'https://images.isbndb.com/covers/83/65/9780312978365.jpg'), + ('038079893X', 'Coronado Conspiracy', 'https://images.isbndb.com/covers/89/33/9780380798933.jpg'), + ('0061098019', 'H.M.S. Unseen', 'https://images.isbndb.com/covers/80/17/9780061098017.jpg'), + ('0425177696', 'The Passenger', 'https://images.isbndb.com/covers/76/93/9780425177693.jpg'), + ('0812517725', 'The Great Hunt (The Wheel Of Time, Book 2)', 'https://images.isbndb.com/covers/77/29/9780812517729.jpg'), + ('0380818191', 'The Truth', 'https://images.isbndb.com/covers/81/98/9780380818198.jpg'), + ('9721013412', 'Os Maias', 'https://images.isbndb.com/covers/34/14/9789721013414.jpg'), + ('074346771X', 'S.W.A.T.', 'https://images.isbndb.com/covers/77/11/9780743467711.jpg'), + ('0399134883', 'A Life On The Road', 'https://images.isbndb.com/covers/48/83/9780399134883.jpg'), + ('0316037443', 'The Best Cat Ever', 'https://images.isbndb.com/covers/74/40/9780316037440.jpg'), + ('1878067745', 'Solo: On Her Own Adventure', 'https://images.isbndb.com/covers/77/46/9781878067746.jpg'), + ('0399138749', 'Mr. Murder', 'https://images.isbndb.com/covers/87/44/9780399138744.jpg'), + ('0571069134', 'Dark Labyrinth', 'https://images.isbndb.com/covers/91/32/9780571069132.jpg'), + ('0811816583', 'New York Dogs', 'https://images.isbndb.com/covers/65/88/9780811816588.jpg'), + ('1588512681', 'Demonlands', 'https://images.isbndb.com/covers/26/80/9781588512680.jpg'), + ('1573228745', 'Innocence', 'https://images.isbndb.com/covers/87/49/9781573228749.jpg'), + ('0446528757', 'Joy', 'https://images.isbndb.com/covers/87/57/9780446528757.jpg'), + ('0451191145', 'Atlas Shrugged', 'https://images.isbndb.com/covers/11/44/9780451191144.jpg'), + ('0136714897', 'Quotations From Women On Life', 'https://images.isbndb.com/covers/48/97/9780136714897.jpg'), + ('0689823517', 'The Dance', 'https://images.isbndb.com/covers/35/10/9780689823510.jpg'), + ('0875093663', 'The Pursuit Of God', 'https://images.isbndb.com/covers/36/66/9780875093666.jpg'), + ('0671510126', 'The Good Earth (Enriched Classics)', 'https://images.isbndb.com/covers/01/21/9780671510121.jpg'), + ('0440403278', 'Number The Stars (Yearling Newbery)', 'https://images.isbndb.com/covers/32/72/9780440403272.jpg'), + ('0803722907', 'A Long Way From Chicago: A Novel In Stories (Newbery Honor Book)', 'https://images.isbndb.com/covers/29/03/9780803722903.jpg'), + ('0060987561', 'I Know This Much Is True (Oprah''s Book Club)', 'https://images.isbndb.com/covers/75/65/9780060987565.jpg'), + ('0842314296', 'Hinds'' Feet On High Places', 'https://images.isbndb.com/covers/42/99/9780842314299.jpg'), + ('1880089858', 'Woman Thou Are Loosed Healing The Wounds Of The Past 3rd Printing Hardback', 'https://images.isbndb.com/covers/98/59/9781880089859.jpg'), + ('0312265867', 'To The Nines (A Stephanie Plum Novel)', 'https://images.isbndb.com/covers/58/61/9780312265861.jpg'), + ('055328424X', 'TALENT', 'https://images.isbndb.com/covers/42/49/9780553284249.jpg'), + ('0373250290', 'Carrie Pilby (Red Dress Ink Novels)', 'https://images.isbndb.com/covers/02/95/9780373250295.jpg'), + ('1844262553', 'Free', 'https://images.isbndb.com/covers/25/57/9781844262557.jpg'), + ('3442411580', 'Die Löwin Von Aquitanien: Roman', 'https://images.isbndb.com/covers/15/80/9783442411580.jpg'), + ('3548600867', 'Die Totenwäscherin: Roman', 'https://images.isbndb.com/covers/08/64/9783548600864.jpg'), + ('3596124166', 'Virginia Woolf. Gesammelte Werke: Flush', 'https://images.isbndb.com/covers/41/69/9783596124169.jpg'), + ('3257227809', 'Venezianisches Finale: Commissario Brunettis Erster Fall', 'https://images.isbndb.com/covers/78/02/9783257227802.jpg'), + ('344244392X', 'Schokolade Zum Frühstück. Das Tagebuch Der Bridget Jones', 'https://images.isbndb.com/covers/39/25/9783442443925.jpg'), + ('3546001575', 'Der Geschichtenmacher', 'https://images.isbndb.com/covers/15/71/9783546001571.jpg'), + ('0525945172', 'The Experiment', 'https://images.isbndb.com/covers/51/78/9780525945178.jpg'), + ('3462029916', 'Wie Ich Einmal Die Welt Rettete.', 'https://images.isbndb.com/covers/99/18/9783462029918.jpg'), + ('3423203668', 'Die Fünfte Frau: Roman', 'https://images.isbndb.com/covers/36/61/9783423203661.jpg'), + ('3423204206', 'Die Falsche Fährte: Roman', 'https://images.isbndb.com/covers/42/00/9783423204200.jpg'), + ('0152008772', 'Hang A Thousand Trees With Ribbons: The Story Of Phillis Wheatley', 'https://images.isbndb.com/covers/87/72/9780152008772.jpg'), + ('0312150601', 'Behind The Scenes At The Museum: A Novel', 'https://images.isbndb.com/covers/06/00/9780312150600.jpg'), + ('0671899619', 'Fast Forward', 'https://images.isbndb.com/covers/96/15/9780671899615.jpg'), + ('0061099694', 'Hill Towns', 'https://images.isbndb.com/covers/96/94/9780061099694.jpg'), + ('0446603309', 'The Witness', 'https://images.isbndb.com/covers/33/00/9780446603300.jpg'), + ('0345302745', 'Speaker Of Mandarin: An Inspector Wexford Mystery', 'https://images.isbndb.com/covers/27/48/9780345302748.jpg'), + ('0671881957', 'Kiss And Tell (Nancy Drew Files #104)', 'https://images.isbndb.com/covers/19/55/9780671881955.jpg'), + ('0786881852', 'Don''t Sweat The Small Stuff--and It''s All Small Stuff (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/18/57/9780786881857.jpg'), + ('0310240972', 'Ten Secrets For The Man In The Mirror: Startling Ideas About True Happiness', 'https://images.isbndb.com/covers/09/76/9780310240976.jpg'), + ('0440170370', 'Player Piano', 'https://images.isbndb.com/covers/03/72/9780440170372.jpg'), + ('034524575X', 'Something Happened', 'https://images.isbndb.com/covers/57/55/9780345245755.jpg'), + ('0345413873', 'Monster (An Alex Delaware Novel)', 'https://images.isbndb.com/covers/38/71/9780345413871.jpg'), + ('0380726262', 'Moon Music (Paperback)', 'https://images.isbndb.com/covers/62/64/9780380726264.jpg'), + ('0671881965', 'Stolen Affections (Nancy Drew Files #105)', 'https://images.isbndb.com/covers/19/62/9780671881962.jpg'), + ('0671881981', 'ANYTHING FOR LOVE (NANCY DREW FILES 107)', 'https://images.isbndb.com/covers/19/86/9780671881986.jpg'), + ('0671881930', 'Counterfeit Christmas (Nancy Drew Files #102)', 'https://images.isbndb.com/covers/19/31/9780671881931.jpg'), + ('0671881949', 'Heart Of Ice (Nancy Drew Files #103)', 'https://images.isbndb.com/covers/19/48/9780671881948.jpg'), + ('0590419293', 'Prom Dress', 'https://images.isbndb.com/covers/92/91/9780590419291.jpg'), + ('0671896768', 'Crossover (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/67/68/9780671896768.jpg'), + ('0064410129', 'The Carnivorous Carnival (A Series Of Unfortunate Events # 9)', 'https://images.isbndb.com/covers/01/20/9780064410120.jpg'), + ('0553267736', 'American Revolution (Time Machine, No. 10)', 'https://images.isbndb.com/covers/77/30/9780553267730.jpg'), + ('055325636X', 'TERROR ON KABRAN #3 (Escape From Tenopia)', 'https://images.isbndb.com/covers/63/69/9780553256369.jpg'), + ('0553254723', 'Tenopia Island (Escape From Tenopia, Book 1)', 'https://images.isbndb.com/covers/47/23/9780553254723.jpg'), + ('0553801309', 'A Place Of Hiding', 'https://images.isbndb.com/covers/13/09/9780553801309.jpg'), + ('0445210214', 'Mythology 101 (Questar Fantasy)', 'https://images.isbndb.com/covers/02/19/9780445210219.jpg'), + ('0375719350', 'The Man Who Japed', 'https://images.isbndb.com/covers/93/56/9780375719356.jpg'), + ('0345334302', 'The Ringworld Engineers', 'https://images.isbndb.com/covers/43/05/9780345334305.jpg'), + ('0380773945', 'Magicnet', 'https://images.isbndb.com/covers/39/47/9780380773947.jpg'), + ('0345373413', 'The Quicksilver Screen', 'https://images.isbndb.com/covers/34/10/9780345373410.jpg'), + ('0345348176', 'From Doon With Death', 'https://images.isbndb.com/covers/81/73/9780345348173.jpg'), + ('0679802614', 'Magic Elizabeth', 'https://images.isbndb.com/covers/26/17/9780679802617.jpg'), + ('0590428098', 'Yours Turly, Shirley (Apple Paperbacks) (An Apple Paperback)', 'https://images.isbndb.com/covers/80/95/9780590428095.jpg'), + ('0671702920', 'Rosy''s Romance', 'https://images.isbndb.com/covers/29/22/9780671702922.jpg'), + ('0380757893', 'Witch House', 'https://images.isbndb.com/covers/78/93/9780380757893.jpg'), + ('0440400759', 'Just As Long As We''re Together', 'https://images.isbndb.com/covers/07/52/9780440400752.jpg'), + ('0590414976', 'Junior High Jitters', 'https://images.isbndb.com/covers/49/75/9780590414975.jpg'), + ('0684874318', 'Flesh And Blood', 'https://images.isbndb.com/covers/43/19/9780684874319.jpg'), + ('037570387X', 'The Autograph Man', 'https://images.isbndb.com/covers/38/74/9780375703874.jpg'), + ('0451452925', 'Sisters In Fantasy', 'https://images.isbndb.com/covers/29/24/9780451452924.jpg'), + ('1559029838', 'Journey To The Center Of The Earth', 'https://images.isbndb.com/covers/98/34/9781559029834.jpg'), + ('0590414658', 'Just A Little Bit Lost', 'https://images.isbndb.com/covers/46/54/9780590414654.jpg'), + ('0671674919', 'The SUSPECT NEXT DOOR NANCY DREW FILES #39 (The Nancy Drew Files Case, No 39)', 'https://images.isbndb.com/covers/49/15/9780671674915.jpg'), + ('0441048862', 'Barbary', 'https://images.isbndb.com/covers/88/61/9780441048861.jpg'), + ('0553271547', 'SEARCH FOR DINOSAURS (Time Machine)', 'https://images.isbndb.com/covers/15/46/9780553271546.jpg'), + ('0553272004', 'Civil War Secret Agent (Time Machine, No. 5)', 'https://images.isbndb.com/covers/20/00/9780553272000.jpg'), + ('0451450787', 'Never Deal With A Dragon (Shadownrun, Vol. 1)', 'https://images.isbndb.com/covers/07/84/9780451450784.jpg'), + ('0451450876', 'Shadowrun 02: Choose Your Enemies Carefully', 'https://images.isbndb.com/covers/08/76/9780451450876.jpg'), + ('0451450825', 'Find Your Own Truth (Shadowrun)', 'https://images.isbndb.com/covers/08/21/9780451450821.jpg'), + ('0451452542', 'Striper Assassin (Shadowrun)', 'https://images.isbndb.com/covers/25/42/9780451452542.jpg'), + ('0451453026', 'Shadowrun 14: Nosferatu (v. 14)', 'https://images.isbndb.com/covers/30/20/9780451453020.jpg'), + ('0451453727', 'Shadowrun 19: Just Compensation', 'https://images.isbndb.com/covers/37/23/9780451453723.jpg'), + ('0451453697', 'Shadowrun 16: Who Hunts The Hunter? (v. 16)', 'https://images.isbndb.com/covers/36/93/9780451453693.jpg'), + ('0451453700', 'Shadowrun 17: House Of The Sun', 'https://images.isbndb.com/covers/37/09/9780451453709.jpg'), + ('0451456998', 'Shadowrun 31: Technobabel', 'https://images.isbndb.com/covers/69/91/9780451456991.jpg'), + ('0451459954', 'Shadowrun 32: Wolf And Raven', 'https://images.isbndb.com/covers/99/54/9780451459954.jpg'), + ('0451457471', 'The Forever Drug (Shadowrun, No 37)', 'https://images.isbndb.com/covers/74/79/9780451457479.jpg'), + ('0451453689', 'Shadowrun 15: Burning Bright (v. 15)', 'https://images.isbndb.com/covers/36/86/9780451453686.jpg'), + ('0451457374', 'Run Hard, Die Fast (Shadowrun 35)', 'https://images.isbndb.com/covers/73/70/9780451457370.jpg'), + ('0451451899', 'Shadowrun 07: Into The Shadows (v. 7)', 'https://images.isbndb.com/covers/18/97/9780451451897.jpg'), + ('0451451996', 'Shadowrun 08: Streets Of Blood', 'https://images.isbndb.com/covers/19/96/9780451451996.jpg'), + ('0451453719', 'Worlds Without End (Shadowrun 18)', 'https://images.isbndb.com/covers/37/16/9780451453716.jpg'), + ('0451452380', 'Shadowrun 10: Night''s Pawn', 'https://images.isbndb.com/covers/23/82/9780451452382.jpg'), + ('0451458397', 'Shadowrun 40: The Burning Time', 'https://images.isbndb.com/covers/83/91/9780451458391.jpg'), + ('0451458184', 'Shadowrun 39: Tails You Lose', 'https://images.isbndb.com/covers/81/86/9780451458186.jpg'), + ('0399143815', 'The Secret Warriors: A Men At War Novel', 'https://images.isbndb.com/covers/38/16/9780399143816.jpg'), + ('0441004911', 'Isaac Asimov''s Christmas', 'https://images.isbndb.com/covers/49/11/9780441004911.jpg'), + ('0671578375', 'Transvergence (Heritage Universe)', 'https://images.isbndb.com/covers/83/74/9780671578374.jpg'), + ('0440234948', 'Area 51: The Sphinx', 'https://images.isbndb.com/covers/49/44/9780440234944.jpg'), + ('0671023187', 'Term Limits', 'https://images.isbndb.com/covers/31/88/9780671023188.jpg'), + ('0395390338', 'Curious George And The Pizza', 'https://images.isbndb.com/covers/03/37/9780395390337.jpg'), + ('0679746048', 'Girl, Interrupted', 'https://images.isbndb.com/covers/60/41/9780679746041.jpg'), + ('0684803143', 'Messiah: A Novel', 'https://images.isbndb.com/covers/31/42/9780684803142.jpg'), + ('0451459245', 'The Firebrand', 'https://images.isbndb.com/covers/92/44/9780451459244.jpg'), + ('0743417720', 'The Third Witch: A Novel', 'https://images.isbndb.com/covers/77/23/9780743417723.jpg'), + ('0446610100', 'Wish You Well', 'https://images.isbndb.com/covers/01/00/9780446610100.jpg'), + ('1857027795', 'Diving Bell And The Butterfly', 'https://images.isbndb.com/covers/77/92/9781857027792.jpg'), + ('0440216745', 'Whispers', 'https://images.isbndb.com/covers/67/42/9780440216742.jpg'), + ('3453151720', 'Der Poet.', 'https://images.isbndb.com/covers/17/27/9783453151727.jpg'), + ('344242979X', 'Dunkles Leuchten', 'https://images.isbndb.com/covers/97/90/9783442429790.jpg'), + ('3423241012', 'Ich, Meine Freundin Und All Diese Männer.', 'https://images.isbndb.com/covers/10/14/9783423241014.jpg'), + ('3423202343', 'Was Männer Sagen: Was Manner Sagen', 'https://images.isbndb.com/covers/23/43/9783423202343.jpg'), + ('0312966970', 'Four To Score (Stephanie Plum, No. 4)', 'https://images.isbndb.com/covers/69/73/9780312966973.jpg'), + ('0671730177', 'The Ultimate Maze Book', 'https://images.isbndb.com/covers/01/78/9780671730178.jpg'), + ('0671568485', 'STAR TREK: THE RETURN', 'https://images.isbndb.com/covers/84/81/9780671568481.jpg'), + ('0345352238', 'Fat Tuesday (Thomas Black Mysteries)', 'https://images.isbndb.com/covers/22/31/9780345352231.jpg'), + ('0345334310', 'The Ship Who Sang', 'https://images.isbndb.com/covers/43/12/9780345334312.jpg'), + ('0671876937', 'Master Of Many Treasures', 'https://images.isbndb.com/covers/69/37/9780671876937.jpg'), + ('0671876015', 'Pigs Don''t Fly', 'https://images.isbndb.com/covers/60/12/9780671876012.jpg'), + ('0812533666', 'Isle Of Woman (Geodyssy, Book 1)', 'https://images.isbndb.com/covers/36/68/9780812533668.jpg'), + ('0893757837', 'Tale Of Two Cities (Watermill Classics)', 'https://images.isbndb.com/covers/78/30/9780893757830.jpg'), + ('1575663104', 'The Wall', 'https://images.isbndb.com/covers/31/04/9781575663104.jpg'), + ('0679766758', 'Push: A Novel', 'https://images.isbndb.com/covers/67/59/9780679766759.jpg'), + ('0874869226', 'She Said Yes: The Unlikely Martyrdom Of Cassie Bernall', 'https://images.isbndb.com/covers/92/24/9780874869224.jpg'), + ('0967224918', 'B-More Careful: Meow Meow Productions Presents', 'https://images.isbndb.com/covers/49/16/9780967224916.jpg'), + ('3492215416', 'Champagner Und Kamillentee', 'https://images.isbndb.com/covers/54/11/9783492215411.jpg'), + ('3499431009', 'Rororo-Thriller: Finstere Gründe', 'https://images.isbndb.com/covers/10/05/9783499431005.jpg'), + ('3442440246', 'Potsdamer Ableben.', 'https://images.isbndb.com/covers/02/45/9783442440245.jpg'), + ('3746618959', 'Sommer Ende Zwanzig', 'https://images.isbndb.com/covers/89/51/9783746618951.jpg'), + ('3257228449', 'Der Kugelrunde Roberto', 'https://images.isbndb.com/covers/84/41/9783257228441.jpg'), + ('3570204758', 'Windmähne.', 'https://images.isbndb.com/covers/47/57/9783570204757.jpg'), + ('3548680291', 'Yeats Ist Tot!: 15 Autoren Schreiben Einen Sehr Irischen Roman. Es Beginnt Mit Roddy Doyle Und Endet Mit Frank McCourt', 'https://images.isbndb.com/covers/02/93/9783548680293.jpg'), + ('3442450144', 'Ehrensache: Roman', 'https://images.isbndb.com/covers/01/45/9783442450145.jpg'), + ('3442727758', 'Das Letzte Konzert', 'https://images.isbndb.com/covers/77/59/9783442727759.jpg'), + ('3426620685', 'Süden Und Der Straßenbahntrinker', 'https://images.isbndb.com/covers/06/87/9783426620687.jpg'), + ('3596505429', 'Alberta Empfängt Einen Liebhaber', 'https://images.isbndb.com/covers/54/25/9783596505425.jpg'), + ('0307100227', 'What A Wonderful World (Look-Look)', 'https://images.isbndb.com/covers/02/21/9780307100221.jpg'), + ('0886251788', 'You''Ve Lost Your Marbles, Lickety Spilt', 'https://images.isbndb.com/covers/17/89/9780886251789.jpg'), + ('1590383141', 'The Forgotten Treasure (Book Of Mormon Sleuth, Vol. 4)', 'https://images.isbndb.com/covers/31/48/9781590383148.jpg'), + ('0061066591', 'Surprise, Surprise! (Mary-Kate & Ashley Olsen, Two Of A Kind #19)', 'https://images.isbndb.com/covers/65/97/9780061066597.jpg'), + ('0671522728', 'Lucky, Lucky Day (Full House Michelle)', 'https://images.isbndb.com/covers/27/28/9780671522728.jpg'), + ('0816735786', 'Meg And The Secret Scrapbook (Always Friends Club)', 'https://images.isbndb.com/covers/57/85/9780816735785.jpg'), + ('0689835752', 'Sheltie Saves The Day', 'https://images.isbndb.com/covers/57/59/9780689835759.jpg'), + ('0152017976', 'Elidor', 'https://images.isbndb.com/covers/79/72/9780152017972.jpg'), + ('0152017984', 'The Owl Service', 'https://images.isbndb.com/covers/79/89/9780152017989.jpg'), + ('3596271088', 'Hexenjagd: Ein Drama In 2 Akten', 'https://images.isbndb.com/covers/10/85/9783596271085.jpg'), + ('3596270952', 'Tod Eines Handlungsreisenden: Gewisse Privatgespräche In Zwei Akten Und Einem Requiem. (Theater, Film, Funk, Fernsehen)', 'https://images.isbndb.com/covers/09/58/9783596270958.jpg'), + ('0394577736', 'A Thousand Acres', 'https://images.isbndb.com/covers/77/39/9780394577739.jpg'), + ('0151104506', 'Bailey''s Cafe', 'https://images.isbndb.com/covers/45/05/9780151104505.jpg'), + ('0425175006', 'The Body On The Beach: A Fethering Mystery', 'https://images.isbndb.com/covers/50/02/9780425175002.jpg'), + ('0345426274', 'The Analyst', 'https://images.isbndb.com/covers/62/77/9780345426277.jpg'), + ('0425186857', 'From This Moment On', 'https://images.isbndb.com/covers/68/55/9780425186855.jpg'), + ('0671003518', 'The Bride', 'https://images.isbndb.com/covers/35/17/9780671003517.jpg'), + ('051512317X', 'Rising Tides (The Chesapeake Bay Saga, Book 2)', 'https://images.isbndb.com/covers/31/73/9780515123173.jpg'), + ('0515114693', 'Born In Fire (Born In Trilogy, Book 1)', 'https://images.isbndb.com/covers/46/90/9780515114690.jpg'), + ('0060507403', 'The Cheese Monkeys: A Novel In Two Semesters', 'https://images.isbndb.com/covers/74/04/9780060507404.jpg'), + ('0679767398', 'South Of The Border, West Of The Sun: A Novel', 'https://images.isbndb.com/covers/73/98/9780679767398.jpg'), + ('0553212761', 'Mansfield Park (Bantam Classics)', 'https://images.isbndb.com/covers/27/61/9780553212761.jpg'), + ('0425174468', 'Bagombo Snuff Box: Uncollected Short Fiction', 'https://images.isbndb.com/covers/44/63/9780425174463.jpg'), + ('044012929X', 'God Bless You, Mr. Rosewater', 'https://images.isbndb.com/covers/92/95/9780440129295.jpg'), + ('0345367421', 'The Water-Method Man', 'https://images.isbndb.com/covers/74/26/9780345367426.jpg'), + ('0060004533', 'The Neal Pollack Anthology Of American Literature: The Collected Writings Of Neal Pollack', 'https://images.isbndb.com/covers/45/38/9780060004538.jpg'), + ('0380002930', 'Watership Down', 'https://images.isbndb.com/covers/29/31/9780380002931.jpg'), + ('080215185X', 'Teach Us To Outgrow Our Madness: Four Short Novels: The Day He Himself Shall Wipe My Tears Away, Prize Stock, Teach Us To Outgrow Our Madness, Aghwee The Sky Monster', 'https://images.isbndb.com/covers/18/58/9780802151858.jpg'), + ('0718143043', 'The Safe House', 'https://images.isbndb.com/covers/30/46/9780718143046.jpg'), + ('0670858722', 'The Flaming Corsage', 'https://images.isbndb.com/covers/87/29/9780670858729.jpg'), + ('0486280489', 'The Scarlet Letter (Dover Thrift Editions)', 'https://images.isbndb.com/covers/04/86/9780486280486.jpg'), + ('3821829494', 'Ensel Und Krete: Ein Märchen Aus Zamonien Von Hildegunst Von Mythenmetz: Ein Märchen Aus Zamonien Von Hildegunst Von Mythenmetz. Mit Erläuterungen Aus ... Umgebung Von Professor Dr. Abul Nachtigaller', 'https://images.isbndb.com/covers/94/94/9783821829494.jpg'), + ('0312876912', 'Humans (The Neanderthal Parallax, Book 2)', 'https://images.isbndb.com/covers/69/13/9780312876913.jpg'), + ('0684148579', 'Have Spacesuit Will Travel', 'https://images.isbndb.com/covers/85/71/9780684148571.jpg'), + ('0553562967', 'Bellwether', 'https://images.isbndb.com/covers/29/65/9780553562965.jpg'), + ('0446363170', 'Cape Cod', 'https://images.isbndb.com/covers/31/74/9780446363174.jpg'), + ('0804110379', 'A Dangerous Mourning (William Monk Novels)', 'https://images.isbndb.com/covers/03/72/9780804110372.jpg'), + ('0449003183', 'Brunswick Gardens (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/31/83/9780449003183.jpg'), + ('044920474X', 'RUTLAND PLACE', 'https://images.isbndb.com/covers/47/40/9780449204740.jpg'), + ('0449244970', 'Paragon Walk', 'https://images.isbndb.com/covers/49/75/9780449244975.jpg'), + ('0449210952', 'Death In The Devil''s Acre', 'https://images.isbndb.com/covers/09/56/9780449210956.jpg'), + ('0312971346', 'High Five (Stephanie Plum, No. 5)', 'https://images.isbndb.com/covers/13/42/9780312971342.jpg'), + ('0399147101', 'Potshot (Spenser Mystery)', 'https://images.isbndb.com/covers/71/04/9780399147104.jpg'), + ('0449146383', 'I, Vampire: The Confessions Of A Vampire - His Life, His Loves, His Strangest Desires ... (Fawcett Gold Medal)', 'https://images.isbndb.com/covers/63/85/9780449146385.jpg'), + ('0446603066', 'Guilt By Association', 'https://images.isbndb.com/covers/30/65/9780446603065.jpg'), + ('0446603821', 'Privileged Conversation', 'https://images.isbndb.com/covers/38/29/9780446603829.jpg'), + ('0449149374', 'Vampire Princess', 'https://images.isbndb.com/covers/93/79/9780449149379.jpg'), + ('0553378260', 'Rita Will: Memoir Of A Literary Rabble-Rouser', 'https://images.isbndb.com/covers/82/69/9780553378269.jpg'), + ('1556614438', 'Fire By Night (Refiners Fire, Book 2)', 'https://images.isbndb.com/covers/44/39/9781556614439.jpg'), + ('0312850581', 'Pastwatch: The Redemption Of Christopher Columbus', 'https://images.isbndb.com/covers/05/86/9780312850586.jpg'), + ('0140280553', 'Galileo''s Daughter: A Historical Memoir Of Science, Faith, And Love', 'https://images.isbndb.com/covers/05/55/9780140280555.jpg'), + ('0930031067', 'The Man Who Planted Trees', 'https://images.isbndb.com/covers/10/60/9780930031060.jpg'), + ('0060958022', 'Five Quarters Of The Orange', 'https://images.isbndb.com/covers/80/22/9780060958022.jpg'), + ('0385474016', 'LIKE WATER FOR CHOCOLATE', 'https://images.isbndb.com/covers/40/16/9780385474016.jpg'), + ('0380804700', 'Partner In Crime (Joanna Brady Mysteries, Book 10)', 'https://images.isbndb.com/covers/47/02/9780380804702.jpg'), + ('0500280673', 'Celtic Borders', 'https://images.isbndb.com/covers/06/76/9780500280676.jpg'), + ('048640076X', 'The Warden (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/61/9780486400761.jpg'), + ('0349109931', 'Land Girls', 'https://images.isbndb.com/covers/99/30/9780349109930.jpg'), + ('156245191X', 'The Secret Language Of Men', 'https://images.isbndb.com/covers/19/12/9781562451912.jpg'), + ('0140124497', 'Uncle Dynamite', 'https://images.isbndb.com/covers/44/91/9780140124491.jpg'), + ('0553210114', 'The Red Badge Of Courage (Bantam Classics)', 'https://images.isbndb.com/covers/01/18/9780553210118.jpg'), + ('0156658992', 'The Nine Tailors', 'https://images.isbndb.com/covers/89/97/9780156658997.jpg'), + ('037550334X', 'Undue Influence: A Novel', 'https://images.isbndb.com/covers/33/44/9780375503344.jpg'), + ('3518396005', 'Ein Springender Brunnen: Roman', 'https://images.isbndb.com/covers/60/01/9783518396001.jpg'), + ('3499123665', 'Die Hexen Von Eastwick.', 'https://images.isbndb.com/covers/36/65/9783499123665.jpg'), + ('3548603203', 'Artemis Fowl: Der Erste Roman', 'https://images.isbndb.com/covers/32/09/9783548603209.jpg'), + ('2253057835', 'La Contrebasse', 'https://images.isbndb.com/covers/78/33/9782253057833.jpg'), + ('2020482363', 'Sans Nouvelles De Gurb', 'https://images.isbndb.com/covers/23/63/9782020482363.jpg'), + ('2264027754', 'Eureka Street', 'https://images.isbndb.com/covers/77/57/9782264027757.jpg'), + ('2264032189', 'La Légende D''Henry Smart', 'https://images.isbndb.com/covers/21/88/9782264032188.jpg'), + ('052594527X', 'Girl With A Pearl Earring', 'https://images.isbndb.com/covers/52/77/9780525945277.jpg'), + ('3257204833', 'Kleine Mordgeschichten Für Tierfreunde', 'https://images.isbndb.com/covers/48/34/9783257204834.jpg'), + ('3596156963', 'Anleitung Zum Unschuldigsein: Das Übungsbuch Für Ein Schlechtes Gewissen', 'https://images.isbndb.com/covers/69/62/9783596156962.jpg'), + ('3596122279', 'Das Superweib', 'https://images.isbndb.com/covers/22/71/9783596122271.jpg'), + ('3404141970', 'Wolfsherz: Roman', 'https://images.isbndb.com/covers/19/75/9783404141975.jpg'), + ('0029281113', 'The Passionate Mind: Bringing Up An Intelligent And Creative Child', 'https://images.isbndb.com/covers/11/16/9780029281116.jpg'), + ('0517559552', 'Little Boy Book', 'https://images.isbndb.com/covers/95/50/9780517559550.jpg'), + ('0345338545', 'Follow The River', 'https://images.isbndb.com/covers/85/49/9780345338549.jpg'), + ('0375701044', 'Personal History', 'https://images.isbndb.com/covers/10/47/9780375701047.jpg'), + ('0316158720', 'The Archivist', 'https://images.isbndb.com/covers/87/25/9780316158725.jpg'), + ('0007154615', 'Unless: A Novel', 'https://images.isbndb.com/covers/46/16/9780007154616.jpg'), + ('0375412824', 'The Dive From Clausen''s Pier', 'https://images.isbndb.com/covers/28/20/9780375412820.jpg'), + ('1558743669', 'A Child Called "It": One Child''s Courage To Survive', 'https://images.isbndb.com/covers/36/63/9781558743663.jpg'), + ('084236661X', 'The Strong-Willed Child', 'https://images.isbndb.com/covers/66/18/9780842366618.jpg'), + ('0708842100', 'Wing And A Prayer A', 'https://images.isbndb.com/covers/21/02/9780708842102.jpg'), + ('059045367X', 'Monster Blood (Goosebumps, No 3)', 'https://images.isbndb.com/covers/36/77/9780590453677.jpg'), + ('0590453661', 'Stay Out Of The Basement (Goosebumps, No 2)', 'https://images.isbndb.com/covers/36/60/9780590453660.jpg'), + ('059042761X', 'Wednesday Witch', 'https://images.isbndb.com/covers/76/16/9780590427616.jpg'), + ('0385721617', 'Juno & Juliet: A Novel', 'https://images.isbndb.com/covers/16/15/9780385721615.jpg'), + ('0694013226', 'What To Expect When You Use The Potty (What To Expect Kids)', 'https://images.isbndb.com/covers/32/27/9780694013227.jpg'), + ('0441005764', 'Mossflower (Prequel To Redwall)', 'https://images.isbndb.com/covers/57/65/9780441005765.jpg'), + ('0553582135', 'Final Target', 'https://images.isbndb.com/covers/21/30/9780553582130.jpg'), + ('0671034065', 'Mr. Perfect', 'https://images.isbndb.com/covers/40/61/9780671034061.jpg'), + ('0451410777', 'Sleep Tight (Onyx Book)', 'https://images.isbndb.com/covers/07/71/9780451410771.jpg'), + ('0345418832', 'Puzzled Heart (Kate Fansler Novels)', 'https://images.isbndb.com/covers/88/38/9780345418838.jpg'), + ('0671026801', 'The Hunted', 'https://images.isbndb.com/covers/68/06/9780671026806.jpg'), + ('0671024051', 'Mosaic', 'https://images.isbndb.com/covers/40/55/9780671024055.jpg'), + ('0684869829', 'The Courtship Gift: A Novel', 'https://images.isbndb.com/covers/98/27/9780684869827.jpg'), + ('0399147772', 'Orchid Blues (Holly Barker Novels)', 'https://images.isbndb.com/covers/77/77/9780399147777.jpg'), + ('0440237416', 'Warning Signs', 'https://images.isbndb.com/covers/74/19/9780440237419.jpg'), + ('0439101336', 'A Christmas Carol (Scholastic Classics)', 'https://images.isbndb.com/covers/13/32/9780439101332.jpg'), + ('0399147284', 'Chosen Prey', 'https://images.isbndb.com/covers/72/89/9780399147289.jpg'), + ('0684832380', 'MY GAL SUNDAY LARGE PRINT: "Henry And Sunday" Stories', 'https://images.isbndb.com/covers/23/88/9780684832388.jpg'), + ('039914210X', 'The Cat Who Tailed A Thief', 'https://images.isbndb.com/covers/21/09/9780399142109.jpg'), + ('0380730359', 'Gone, Baby, Gone: A Novel', 'https://images.isbndb.com/covers/03/53/9780380730353.jpg'), + ('0374166560', 'The Great Victorian Collection', 'https://images.isbndb.com/covers/65/64/9780374166564.jpg'), + ('0451150635', 'Different Seasons (Signet): The Novela That Stand By Me Is Based On', 'https://images.isbndb.com/covers/06/39/9780451150639.jpg'), + ('3596132762', 'Ein Mann Für Eine Nacht.', 'https://images.isbndb.com/covers/27/68/9783596132768.jpg'), + ('3492225926', 'Das Wüten Der Ganzen Welt', 'https://images.isbndb.com/covers/59/22/9783492225922.jpg'), + ('006018700X', 'Design For Dying', 'https://images.isbndb.com/covers/70/02/9780060187002.jpg'), + ('0684836483', '250 Things You Can Do To Make Your Cat Adore You', 'https://images.isbndb.com/covers/64/85/9780684836485.jpg'), + ('0571174450', 'Touching From A Distance: Ian Curtis And Joy Division', 'https://images.isbndb.com/covers/44/54/9780571174454.jpg'), + ('0312848846', 'D/S: An Anti-Love Story', 'https://images.isbndb.com/covers/88/42/9780312848842.jpg'), + ('0442043244', 'Philosopher Looks At Science', 'https://images.isbndb.com/covers/32/47/9780442043247.jpg'), + ('0880381736', 'Dragons Of Autumn Twilight (DragonLance Chronicles, Vol. 1)', 'https://images.isbndb.com/covers/17/34/9780880381734.jpg'), + ('0767907817', 'Bookends: A Novel', 'https://images.isbndb.com/covers/78/11/9780767907811.jpg'), + ('0385720106', 'A Map Of The World (Oprah''s Book Club)', 'https://images.isbndb.com/covers/01/06/9780385720106.jpg'), + ('0553208845', 'Siddhartha', 'https://images.isbndb.com/covers/88/49/9780553208849.jpg'), + ('0064400581', 'Julie Of The Wolves (HarperClassics)', 'https://images.isbndb.com/covers/05/89/9780064400589.jpg'), + ('0571142745', 'THE BUDDHA OF SUBURBIA.', 'https://images.isbndb.com/covers/27/43/9780571142743.jpg'), + ('0898861780', 'Snowshoeing', 'https://images.isbndb.com/covers/17/85/9780898861785.jpg'), + ('1586480456', 'Sincerely, Andy Rooney', 'https://images.isbndb.com/covers/04/55/9781586480455.jpg'), + ('030681188X', 'How To Lose Friends & Alienate People', 'https://images.isbndb.com/covers/18/83/9780306811883.jpg'), + ('0688155022', 'The Rise And Fall Of The House Of Barneys: A Family Tale Of Chutzpah, Glory, And Greed', 'https://images.isbndb.com/covers/50/25/9780688155025.jpg'), + ('088064219X', 'The Private Life Of Kim Philby: The Moscow Years', 'https://images.isbndb.com/covers/21/94/9780880642194.jpg'), + ('1904095399', 'Who Was Dr.Charlotte Bach?', 'https://images.isbndb.com/covers/53/92/9781904095392.jpg'), + ('0743204158', 'The Pretender: How Martin Frankel Fooled The Financial World And Led The Feds On One Of The Most Publicized Manhunts In History', 'https://images.isbndb.com/covers/41/56/9780743204156.jpg'), + ('0310225116', 'Springs In The Valley', 'https://images.isbndb.com/covers/51/19/9780310225119.jpg'), + ('0800758358', 'The Stranger From Medina (West Texas Sunrise)', 'https://images.isbndb.com/covers/83/56/9780800758356.jpg'), + ('0385050755', 'The Time It Never Rained', 'https://images.isbndb.com/covers/07/53/9780385050753.jpg'), + ('0842329218', 'Tribulation Force: The Continuing Drama Of Those Left Behind', 'https://images.isbndb.com/covers/92/17/9780842329217.jpg'), + ('0072430958', 'Taking Sides: Clashing Views On Controversial Issues In American History, Vol. I', 'https://images.isbndb.com/covers/09/50/9780072430950.jpg'), + ('0684823780', 'Mere Christianity', 'https://images.isbndb.com/covers/37/82/9780684823782.jpg'), + ('1576738442', 'The Prayer Of Jabez: Devotional', 'https://images.isbndb.com/covers/84/43/9781576738443.jpg'), + ('0449219283', 'Snare Of Serpents', 'https://images.isbndb.com/covers/92/87/9780449219287.jpg'), + ('0553574965', 'The Last Family', 'https://images.isbndb.com/covers/49/68/9780553574968.jpg'), + ('0440225698', 'The Klone And I', 'https://images.isbndb.com/covers/56/90/9780440225690.jpg'), + ('0440221471', 'The Runaway Jury', 'https://images.isbndb.com/covers/14/70/9780440221470.jpg'), + ('0394541545', 'Texas', 'https://images.isbndb.com/covers/15/49/9780394541549.jpg'), + ('0877958920', 'She Who Remembers', 'https://images.isbndb.com/covers/89/25/9780877958925.jpg'), + ('0440235758', 'Going Overboard', 'https://images.isbndb.com/covers/57/50/9780440235750.jpg'), + ('0743216458', 'Band Of Brothers : E Company, 506th Regiment, 101st Airborne From Normandy To Hitler''s Eagle''s Nest', 'https://images.isbndb.com/covers/64/56/9780743216456.jpg'), + ('0061007129', 'Kane & Abel', 'https://images.isbndb.com/covers/71/25/9780061007125.jpg'), + ('0886773784', 'Arrows Of The Queen ( The Heralds Of Valdemar, Book 1)', 'https://images.isbndb.com/covers/37/86/9780886773786.jpg'), + ('0440228204', 'The Unprotected Witness', 'https://images.isbndb.com/covers/82/02/9780440228202.jpg'), + ('0883657635', 'Roger Caras'' Treasury Of Great Cat Stories', 'https://images.isbndb.com/covers/76/38/9780883657638.jpg'), + ('0425143325', 'Without Remorse', 'https://images.isbndb.com/covers/33/22/9780425143322.jpg'), + ('0425180964', 'The Bear And The Dragon (Jack Ryan)', 'https://images.isbndb.com/covers/09/69/9780425180969.jpg'), + ('0812520793', 'Throne Of Isis', 'https://images.isbndb.com/covers/07/98/9780812520798.jpg'), + ('0312109393', 'The Bette Davis Murder Case', 'https://images.isbndb.com/covers/93/94/9780312109394.jpg'), + ('0399148019', 'The Absence Of Nectar', 'https://images.isbndb.com/covers/80/19/9780399148019.jpg'), + ('0373063121', 'Found: One Husband (Medical Romance, #12)', 'https://images.isbndb.com/covers/31/23/9780373063123.jpg'), + ('0140620869', 'Alice''s Adventures In Wonderland (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/63/9780140620863.jpg'), + ('0553801589', 'The Tail Of The Tip-Off: A Mrs. Murphy Mystery', 'https://images.isbndb.com/covers/15/83/9780553801583.jpg'), + ('0743411250', 'The Woman Next Door', 'https://images.isbndb.com/covers/12/57/9780743411257.jpg'), + ('0590129988', 'Clockwork : Or All Wound Up', 'https://images.isbndb.com/covers/99/85/9780590129985.jpg'), + ('0375700684', 'Powder Burn', 'https://images.isbndb.com/covers/06/82/9780375700682.jpg'), + ('0375700692', 'Trap Line', 'https://images.isbndb.com/covers/06/99/9780375700699.jpg'), + ('0312955510', 'The Heart Of Justice', 'https://images.isbndb.com/covers/55/19/9780312955519.jpg'), + ('0345396537', 'First King Of Shannara (Shannara Trilogy, Prequel)', 'https://images.isbndb.com/covers/65/32/9780345396532.jpg'), + ('0452272092', 'So Far From God', 'https://images.isbndb.com/covers/20/95/9780452272095.jpg'), + ('3518383620', 'Gesammelte Stücke In Einzelausgaben. 15 Bände: Band 13: Der Kaiser Von Amerika: BD 13 (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/36/29/9783518383629.jpg'), + ('3499262967', 'Die Teebarone', 'https://images.isbndb.com/covers/29/68/9783499262968.jpg'), + ('3407808836', 'Jedes Sandkorn Ist Ein Buchstabe (Beltz & Gelberg - Biographie)', 'https://images.isbndb.com/covers/88/37/9783407808837.jpg'), + ('3423085711', 'Catherine, Lady Wider Willen, Sonderausgabe', 'https://images.isbndb.com/covers/57/17/9783423085717.jpg'), + ('3453159926', 'Atlantis: German Language Ed', 'https://images.isbndb.com/covers/99/21/9783453159921.jpg'), + ('3499137909', 'Der Plan Von Der Abschaffung Des Dunkels', 'https://images.isbndb.com/covers/79/07/9783499137907.jpg'), + ('0747563721', 'Inner Feng Shui', 'https://images.isbndb.com/covers/37/23/9780747563723.jpg'), + ('0451518845', 'Jane Eyre (Signet Classics)', 'https://images.isbndb.com/covers/88/42/9780451518842.jpg'), + ('0441009700', 'Tathea', 'https://images.isbndb.com/covers/97/01/9780441009701.jpg'), + ('0345395190', 'Orion Arm: The Rampart Worlds: Book 2', 'https://images.isbndb.com/covers/51/91/9780345395191.jpg'), + ('0553265571', 'Grey Horse', 'https://images.isbndb.com/covers/55/76/9780553265576.jpg'), + ('0451521285', 'Hamlet: Prince Of Denmark (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/12/86/9780451521286.jpg'), + ('0812566351', 'The Prince Of Whales', 'https://images.isbndb.com/covers/63/52/9780812566352.jpg'), + ('0060502258', 'Divine Secrets Of The Ya-Ya Sisterhood', 'https://images.isbndb.com/covers/22/56/9780060502256.jpg'), + ('0440911710', 'Camilla (Laurel Leaf Books)', 'https://images.isbndb.com/covers/17/15/9780440911715.jpg'), + ('0140298444', 'S.: A Novel About The Balkans', 'https://images.isbndb.com/covers/84/44/9780140298444.jpg'), + ('0395869463', 'The Bookshop', 'https://images.isbndb.com/covers/94/68/9780395869468.jpg'), + ('0064407721', 'Kissing The Witch: Old Tales In New Skins', 'https://images.isbndb.com/covers/77/24/9780064407724.jpg'), + ('0684859785', 'The DREAMS OUR STUFF IS MADE OF: How Science Fiction Conquered The World', 'https://images.isbndb.com/covers/97/81/9780684859781.jpg'), + ('0156806479', 'Selected Poems', 'https://images.isbndb.com/covers/64/73/9780156806473.jpg'), + ('0553266055', 'All Things Wise And Wonderful', 'https://images.isbndb.com/covers/60/54/9780553266054.jpg'), + ('0345441443', 'Cruel As The Grave', 'https://images.isbndb.com/covers/14/47/9780345441447.jpg'), + ('0802132952', 'Naked Lunch', 'https://images.isbndb.com/covers/29/56/9780802132956.jpg'), + ('0441535771', 'Mistress Masham''s Repose', 'https://images.isbndb.com/covers/57/74/9780441535774.jpg'), + ('0812552989', 'First Book Of Swords', 'https://images.isbndb.com/covers/29/80/9780812552980.jpg'), + ('0451521358', 'Macbeth (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/13/54/9780451521354.jpg'), + ('0140089365', 'Q''s Legacy', 'https://images.isbndb.com/covers/93/63/9780140089363.jpg'), + ('0451455126', 'Night Screams (Stalkers)', 'https://images.isbndb.com/covers/51/23/9780451455123.jpg'), + ('038072345X', 'ANNO DRACULA PB', 'https://images.isbndb.com/covers/34/54/9780380723454.jpg'), + ('1580173144', 'How To Sleep Soundly Tonight: 250 Simple And Natural Ways To Prevent Sleeplessness', 'https://images.isbndb.com/covers/31/48/9781580173148.jpg'), + ('0671025570', 'Duane''s Depressed (Last Picture Show Trilogy)', 'https://images.isbndb.com/covers/55/71/9780671025571.jpg'), + ('0553274864', 'A Grief Observed', 'https://images.isbndb.com/covers/48/68/9780553274868.jpg'), + ('1888604182', 'Seeking Wholeness: Insight Into The Mystery Of Experience', 'https://images.isbndb.com/covers/41/84/9781888604184.jpg'), + ('0805064362', 'After The Darkest Hour: How Suffering Begins The Journey To Wisdom', 'https://images.isbndb.com/covers/43/60/9780805064360.jpg'), + ('0330336215', 'The Picador Book Of The Beach', 'https://images.isbndb.com/covers/62/15/9780330336215.jpg'), + ('0061020710', 'The Color Of Magic', 'https://images.isbndb.com/covers/07/11/9780061020711.jpg'), + ('0440204887', 'Illusions: The Adventures Of A Reluctant Messiah', 'https://images.isbndb.com/covers/48/86/9780440204886.jpg'), + ('0345339681', 'The Hobbit', 'https://images.isbndb.com/covers/96/83/9780345339683.jpg'), + ('0812572297', 'Callahan''s Secret (Callahan''s Crosstime Saloon Series)', 'https://images.isbndb.com/covers/22/92/9780812572292.jpg'), + ('0345272579', 'The Hobbit', 'https://images.isbndb.com/covers/25/77/9780345272577.jpg'), + ('0385199570', 'The Stand: The Complete And Uncut Edition', 'https://images.isbndb.com/covers/95/75/9780385199575.jpg'), + ('0156007568', 'The Years With Laura Diaz', 'https://images.isbndb.com/covers/75/66/9780156007566.jpg'), + ('3426776545', 'Die Fünf Tibeter', 'https://images.isbndb.com/covers/65/44/9783426776544.jpg'), + ('3404701704', 'Die Regeln Des Glücks', 'https://images.isbndb.com/covers/17/04/9783404701704.jpg'), + ('3423205202', 'Mittsommermord: Roman', 'https://images.isbndb.com/covers/52/07/9783423205207.jpg'), + ('3453169247', 'Der Verrat: Roman', 'https://images.isbndb.com/covers/92/41/9783453169241.jpg'), + ('3442541751', 'Russendisko', 'https://images.isbndb.com/covers/17/51/9783442541751.jpg'), + ('3423202947', 'Hunde Von Riga: Roman', 'https://images.isbndb.com/covers/29/47/9783423202947.jpg'), + ('0374332657', 'Holes (Newbery Medal Book)', 'https://images.isbndb.com/covers/26/55/9780374332655.jpg'), + ('0553298496', 'SHE''S NOT WHAT SHE SEEMS (Sweet Valley High)', 'https://images.isbndb.com/covers/84/99/9780553298499.jpg'), + ('0553255371', 'Spring Break (Sweet Valley High, Super Edition)', 'https://images.isbndb.com/covers/53/79/9780553255379.jpg'), + ('0451528018', 'The Hound Of The Baskervilles: 150th Anniversary Edition (Signet Classics)', 'https://images.isbndb.com/covers/80/18/9780451528018.jpg'), + ('0842321942', 'Second Chance (Left Behind: The Kids #2)', 'https://images.isbndb.com/covers/19/45/9780842321945.jpg'), + ('0842321934', 'The Vanishings (Left Behind: The Kids #1)', 'https://images.isbndb.com/covers/19/38/9780842321938.jpg'), + ('1562475878', 'Happy Birthday, Josefina! (American Girl)', 'https://images.isbndb.com/covers/58/71/9781562475871.jpg'), + ('1562475193', 'Josefina''s Surprise (American Girls Collection)', 'https://images.isbndb.com/covers/51/92/9781562475192.jpg'), + ('0590997262', 'The Stranger (Animorphs, No. 7)', 'https://images.isbndb.com/covers/72/63/9780590997263.jpg'), + ('0590997297', 'The Secret (Animorphs #9)', 'https://images.isbndb.com/covers/72/94/9780590997294.jpg'), + ('0590762613', 'Animorphs #28: The Experiment', 'https://images.isbndb.com/covers/26/18/9780590762618.jpg'), + ('0590213040', 'Animorphs Megamorphs #01: The Andalite''s Gift', 'https://images.isbndb.com/covers/30/42/9780590213042.jpg'), + ('0439061652', 'Meet The Stars Of Animorphs', 'https://images.isbndb.com/covers/16/50/9780439061650.jpg'), + ('1584851651', 'School Smarts: All The Right Answers To Homework, Teachers, Popularity, And More!', 'https://images.isbndb.com/covers/16/53/9781584851653.jpg'), + ('0141304707', 'The Wonderful Story Of Henry Sugar', 'https://images.isbndb.com/covers/47/00/9780141304700.jpg'), + ('0679866957', 'Junie B. Jones And That Meanie Jim''s Birthday (Junie B. Jones, No. 6)', 'https://images.isbndb.com/covers/69/54/9780679866954.jpg'), + ('059048575X', '101 Telephone Jokes', 'https://images.isbndb.com/covers/57/53/9780590485753.jpg'), + ('044048474X', 'Tales Of A Fourth Grade Nothing (A Dell Yearling Book)', 'https://images.isbndb.com/covers/47/45/9780440484745.jpg'), + ('1568657803', 'Help! I''m Laughing And I Can''t Get Up', 'https://images.isbndb.com/covers/78/06/9781568657806.jpg'), + ('0140309578', 'Pippi Longstocking', 'https://images.isbndb.com/covers/95/77/9780140309577.jpg'), + ('0671028049', 'Scarabian Nights:Sabrina, The Teenage Witch #24', 'https://images.isbndb.com/covers/80/46/9780671028046.jpg'), + ('0671019805', 'Lotsa Luck Sabrina The Teenage Witch 10', 'https://images.isbndb.com/covers/98/08/9780671019808.jpg'), + ('0671016954', 'All You Need Is A Love Spell (Sabrina The Teenage Witch, 7)', 'https://images.isbndb.com/covers/69/51/9780671016951.jpg'), + ('0671019791', 'A Dog''s Life (Sabrina The Teenage Witch, Book 9)', 'https://images.isbndb.com/covers/97/92/9780671019792.jpg'), + ('044809553X', 'The Sky Phantom (Nancy Drew Mystery Stories, No 53)', 'https://images.isbndb.com/covers/55/30/9780448095530.jpg'), + ('0671023810', 'Teacher''s Pet: Salem''s Tails #2: Sabrina, The Teenage Witch', 'https://images.isbndb.com/covers/38/12/9780671023812.jpg'), + ('1561565601', 'Sabrina: Behind The Scenes', 'https://images.isbndb.com/covers/56/03/9781561565603.jpg'), + ('0448095548', 'The Strange Message In The Parchment (Nancy Drew Mystery Stories, No 54)', 'https://images.isbndb.com/covers/55/47/9780448095547.jpg'), + ('1584850167', 'Meet Kit: An American Girl 1934 (The American Girls Collection, Book 1)', 'https://images.isbndb.com/covers/01/68/9781584850168.jpg'), + ('1562470752', 'Meet Addy: An American Girl (The American Girls Collection Book 1)', 'https://images.isbndb.com/covers/07/53/9781562470753.jpg'), + ('1562470043', 'Meet Felicity (The American Girls Collection, Book 1)', 'https://images.isbndb.com/covers/00/43/9781562470043.jpg'), + ('1562475150', 'Meet Josefina (American Girl)', 'https://images.isbndb.com/covers/51/54/9781562475154.jpg'), + ('0590448250', 'Karen''s Cartwheel (Baby-Sitters Little Sister, No. 29)', 'https://images.isbndb.com/covers/82/53/9780590448253.jpg'), + ('0590386042', 'It''s Fine To Be Nine', 'https://images.isbndb.com/covers/60/43/9780590386043.jpg'), + ('0877191174', 'The Further Adventures Of Hank The Cowdog (Hank The Cowdog (Paperback))', 'https://images.isbndb.com/covers/11/79/9780877191179.jpg'), + ('0689817215', 'The View From Saturday', 'https://images.isbndb.com/covers/72/12/9780689817212.jpg'), + ('0671015192', 'SANTAS LITTLE HELPER SABRINA THE TEENAGE WITCH 5', 'https://images.isbndb.com/covers/51/90/9780671015190.jpg'), + ('0671024272', 'SABRINA, THE TEENAGE WITCH MAGIC HANDBOOK', 'https://images.isbndb.com/covers/42/77/9780671024277.jpg'), + ('3453025423', 'Roter Drache: Roman', 'https://images.isbndb.com/covers/54/24/9783453025424.jpg'), + ('0553141406', 'Smiley''s People', 'https://images.isbndb.com/covers/14/05/9780553141405.jpg'), + ('0517580497', 'The Plains Of Passage', 'https://images.isbndb.com/covers/04/93/9780517580493.jpg'), + ('0312863403', 'Hope Of Earth (Geodyssey)', 'https://images.isbndb.com/covers/34/01/9780312863401.jpg'), + ('086547642X', 'Positively 4th Street: The Lives And Times Of Joan Baez, Bob Dylan, Mimi Baez Farina And Richard Farina', 'https://images.isbndb.com/covers/64/24/9780865476424.jpg'), + ('1558744630', 'Chicken Soup For The Teenage Soul: 101 Stories Of Life, Love And Learning (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/46/39/9781558744639.jpg'), + ('0140380361', 'The Root Cellar', 'https://images.isbndb.com/covers/03/61/9780140380361.jpg'), + ('0394588169', 'Jurassic Park', 'https://images.isbndb.com/covers/81/62/9780394588162.jpg'), + ('0316143464', 'Dress Your Family In Corduroy And Denim', 'https://images.isbndb.com/covers/34/62/9780316143462.jpg'), + ('0385336322', 'Ransom', 'https://images.isbndb.com/covers/63/21/9780385336321.jpg'), + ('038533348X', 'Cat''s Cradle: A Novel', 'https://images.isbndb.com/covers/34/81/9780385333481.jpg'), + ('0553294385', 'I, Robot', 'https://images.isbndb.com/covers/43/85/9780553294385.jpg'), + ('1573222623', 'Drinking Coffee Elsewhere (Today Show Book Club #11)', 'https://images.isbndb.com/covers/26/24/9781573222624.jpg'), + ('1558746161', 'Chicken Soup For The Teenage Soul II', 'https://images.isbndb.com/covers/61/69/9781558746169.jpg'), + ('0553583867', 'The Husband Test', 'https://images.isbndb.com/covers/38/61/9780553583861.jpg'), + ('0553214225', 'Summer (Bantam Classics)', 'https://images.isbndb.com/covers/42/22/9780553214222.jpg'), + ('0394569962', 'The Fourth K', 'https://images.isbndb.com/covers/99/63/9780394569963.jpg'), + ('0553568914', 'Elvis, Jesus And Coca-Cola (Kinky Friedman Novels)', 'https://images.isbndb.com/covers/89/12/9780553568912.jpg'), + ('0671721291', 'The Ship Who Searched (The Ship Series)', 'https://images.isbndb.com/covers/12/99/9780671721299.jpg'), + ('0553563521', 'Devil''s Waltz (Alex Delaware Novels)', 'https://images.isbndb.com/covers/35/28/9780553563528.jpg'), + ('055357230X', 'Clinic (Alex Delaware S.)', 'https://images.isbndb.com/covers/23/08/9780553572308.jpg'), + ('0399142282', 'Hornet''s Nest', 'https://images.isbndb.com/covers/22/84/9780399142284.jpg'), + ('0140193383', 'The Tao Of Love And Sex', 'https://images.isbndb.com/covers/33/81/9780140193381.jpg'), + ('1890159018', 'The Ethical Slut: A Guide To Infinite Sexual Possibilities', 'https://images.isbndb.com/covers/90/16/9781890159016.jpg'), + ('0446670626', 'I, Robot: The Illustrated Screenplay', 'https://images.isbndb.com/covers/06/23/9780446670623.jpg'), + ('0590429892', 'The Way Things Work', 'https://images.isbndb.com/covers/98/94/9780590429894.jpg'), + ('0782123813', 'CCNA: Cisco Certified Network Associate Study Guide', 'https://images.isbndb.com/covers/38/14/9780782123814.jpg'), + ('0782125352', 'CCNA Exam Notes: Cisco Certified Network Associate', 'https://images.isbndb.com/covers/53/51/9780782125351.jpg'), + ('1561703249', 'The Western Guide To Feng Shui: Creating Balance, Harmony, And Prosperity In Your Environment', 'https://images.isbndb.com/covers/32/41/9781561703241.jpg'), + ('0812513711', 'The Dragon Reborn (The Wheel Of Time, Book 3)', 'https://images.isbndb.com/covers/37/14/9780812513714.jpg'), + ('0671004107', 'Contact', 'https://images.isbndb.com/covers/41/01/9780671004101.jpg'), + ('0553213539', 'The Invisible Man (Bantam Classic)', 'https://images.isbndb.com/covers/35/39/9780553213539.jpg'), + ('9681905202', 'La Casa Pierde (Spanish Edition)', 'https://images.isbndb.com/covers/52/00/9789681905200.jpg'), + ('0449200396', 'Rabbit Run', 'https://images.isbndb.com/covers/03/91/9780449200391.jpg'), + ('0425173615', 'Murder On St. Mark''s Place (Gaslight Mystery)', 'https://images.isbndb.com/covers/36/19/9780425173619.jpg'), + ('0684186454', 'State Of Grace, Scribner Signature Edition', 'https://images.isbndb.com/covers/64/50/9780684186450.jpg'), + ('006016185X', 'Valsalva''s Maneuver: Mots Justes And Indispensable Terms', 'https://images.isbndb.com/covers/18/59/9780060161859.jpg'), + ('0800730364', 'I Love You, I Hate You: Double-edged Nature Of Human Relationships', 'https://images.isbndb.com/covers/03/69/9780800730369.jpg'), + ('0671766821', 'Soul Survivors: A New Beginning For Adults Abused As Children (Fireside)', 'https://images.isbndb.com/covers/68/25/9780671766825.jpg'), + ('0671683993', 'The Temple Of My Familiar', 'https://images.isbndb.com/covers/39/93/9780671683993.jpg'), + ('0425098680', 'Dinner At The Homesick Restaurant', 'https://images.isbndb.com/covers/86/84/9780425098684.jpg'), + ('0553245694', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/56/91/9780553245691.jpg'), + ('0874775639', 'Babinski Reflex', 'https://images.isbndb.com/covers/56/31/9780874775631.jpg'), + ('0060907215', 'Lore Of The Unicorn', 'https://images.isbndb.com/covers/72/11/9780060907211.jpg'), + ('0385302274', 'The 27-Ingredient Chili Con Carne Murders', 'https://images.isbndb.com/covers/22/72/9780385302272.jpg'), + ('0670873683', 'London Holiday', 'https://images.isbndb.com/covers/36/85/9780670873685.jpg'), + ('0425168700', 'Fortune''s Daughter', 'https://images.isbndb.com/covers/87/07/9780425168707.jpg'), + ('0375704906', 'Some Lie And Some Die (An Inspector Wexford Mystery)', 'https://images.isbndb.com/covers/49/01/9780375704901.jpg'), + ('0020519001', 'A Farewell To Arms (A Scribner Classic)', 'https://images.isbndb.com/covers/90/03/9780020519003.jpg'), + ('0345426029', 'The Broken Hearts Club (Conrad Voort Novels)', 'https://images.isbndb.com/covers/60/24/9780345426024.jpg'), + ('0060973277', 'The Mambo Kings Play Songs Of Love', 'https://images.isbndb.com/covers/32/78/9780060973278.jpg'), + ('0439064872', 'Harry Potter And The Chamber Of Secrets (Book 2)', 'https://images.isbndb.com/covers/48/73/9780439064873.jpg'), + ('0679751602', 'Mama Makes Up Her Mind: And Other Dangers Of Southern Living', 'https://images.isbndb.com/covers/16/01/9780679751601.jpg'), + ('0688127169', 'Running From Safety: An Adventure Of The Spirit', 'https://images.isbndb.com/covers/71/69/9780688127169.jpg'), + ('9722110195', 'Era Bom Que Trocassemos Umas Ideias Sobre O Assunto: Romance (O Campo Da Palavra) (Portuguese Edition)', 'https://images.isbndb.com/covers/01/98/9789722110198.jpg'), + ('0714832529', 'The Pre-Raphaelite Vision (Phaidon Miniature Editions)', 'https://images.isbndb.com/covers/25/24/9780714832524.jpg'), + ('0440784743', 'Tales Of A Fourth Grade Nothing', 'https://images.isbndb.com/covers/47/46/9780440784746.jpg'), + ('0812551532', 'Morning River: A Novel Of The Great Missouri Wilderness In 1825', 'https://images.isbndb.com/covers/15/32/9780812551532.jpg'), + ('1573247022', 'The Food Revolution: How Your Diet Can Help Save Your Life And Our World', 'https://images.isbndb.com/covers/70/23/9781573247023.jpg'), + ('0451132157', 'Atlas Shrugged', 'https://images.isbndb.com/covers/21/54/9780451132154.jpg'), + ('055315754X', 'Horse Play (The Saddle Club #7)', 'https://images.isbndb.com/covers/75/43/9780553157543.jpg'), + ('0312263449', 'Honeymoon In Purdah: An Iranian Journey', 'https://images.isbndb.com/covers/34/47/9780312263447.jpg'), + ('0060904453', 'The Thurber Carnival (Harper Colophon Books)', 'https://images.isbndb.com/covers/44/56/9780060904456.jpg'), + ('0671734547', 'The Dead Sea Scrolls Deception', 'https://images.isbndb.com/covers/45/41/9780671734541.jpg'), + ('0812580354', 'Calculating God', 'https://images.isbndb.com/covers/03/58/9780812580358.jpg'), + ('1400076218', 'Jazz', 'https://images.isbndb.com/covers/62/15/9781400076215.jpg'), + ('1573226106', 'Kitchen Table Wisdom: Stories That Heal', 'https://images.isbndb.com/covers/61/03/9781573226103.jpg'), + ('0373263678', 'Death Flies On Final (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/36/77/9780373263677.jpg'), + ('0553211404', 'Jane Eyre (Bantam Classics)', 'https://images.isbndb.com/covers/14/05/9780553211405.jpg'), + ('0679447393', 'The Orchid Thief', 'https://images.isbndb.com/covers/73/99/9780679447399.jpg'), + ('0380718650', 'Fear In Fenway: A Duffy House Mystery', 'https://images.isbndb.com/covers/86/58/9780380718658.jpg'), + ('0373263953', 'Poison Apples (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/39/50/9780373263950.jpg'), + ('0515102652', 'The Cat Who Talked To Ghosts (The Cat Who...)', 'https://images.isbndb.com/covers/26/59/9780515102659.jpg'), + ('0312263996', 'Timbuktu: A Novel', 'https://images.isbndb.com/covers/39/97/9780312263997.jpg'), + ('1400032717', 'The Curious Incident Of The Dog In The Night-Time', 'https://images.isbndb.com/covers/27/16/9781400032716.jpg'), + ('0595315070', 'Public Spirituality: A Personal Workbook', 'https://images.isbndb.com/covers/50/79/9780595315079.jpg'), + ('1594200106', 'The Shadow Of The Wind: A Novel', 'https://images.isbndb.com/covers/01/06/9781594200106.jpg'), + ('1589880013', 'The Verb To Bird', 'https://images.isbndb.com/covers/00/16/9781589880016.jpg'), + ('0553250515', 'The Member Of The Wedding', 'https://images.isbndb.com/covers/05/10/9780553250510.jpg'), + ('0374100128', 'The Corrections', 'https://images.isbndb.com/covers/01/24/9780374100124.jpg'), + ('0452283868', 'Sula (Oprah''s Book Club)', 'https://images.isbndb.com/covers/38/62/9780452283862.jpg'), + ('0446610380', 'Parable Of The Talents', 'https://images.isbndb.com/covers/03/84/9780446610384.jpg'), + ('0061097314', 'The Bean Trees: A Novel', 'https://images.isbndb.com/covers/73/17/9780061097317.jpg'), + ('074325547X', 'Plan Of Attack', 'https://images.isbndb.com/covers/54/79/9780743255479.jpg'), + ('158988003X', 'So Many Books: Reading And Publishing In An Age Of Abundance', 'https://images.isbndb.com/covers/00/30/9781589880030.jpg'), + ('1573222453', 'The Kite Runner', 'https://images.isbndb.com/covers/24/57/9781573222457.jpg'), + ('0140119906', 'Love In The Time Of Cholera (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/99/09/9780140119909.jpg'), + ('0395873347', 'Taylor''s 50 Best Roses: Easy Plants For More Beautiful Gardens', 'https://images.isbndb.com/covers/33/42/9780395873342.jpg'), + ('0446677426', 'A Woman''s Liberation: A Choice Of Futures By And About Women', 'https://images.isbndb.com/covers/74/24/9780446677424.jpg'), + ('0393308839', 'Flash Fiction: 72 Very Short Stories', 'https://images.isbndb.com/covers/88/39/9780393308839.jpg'), + ('0451524039', 'The Diary Of A Madman And Other Stories: The Nose; The Carriage; The Overcoat; Taras Bulba (Signet Classics)', 'https://images.isbndb.com/covers/40/34/9780451524034.jpg'), + ('0060548533', 'The Buying Of The President 2004: Who''s Really Bankrolling Bush And His Democratic Challengers--and What They Expect In Return', 'https://images.isbndb.com/covers/85/37/9780060548537.jpg'), + ('1885266480', 'The Open Door', 'https://images.isbndb.com/covers/64/84/9781885266484.jpg'), + ('0060987049', 'Microserfs', 'https://images.isbndb.com/covers/70/46/9780060987046.jpg'), + ('0571169341', 'Arcadia: A Play', 'https://images.isbndb.com/covers/93/44/9780571169344.jpg'), + ('0060504080', 'Small Wonder: Essays', 'https://images.isbndb.com/covers/40/83/9780060504083.jpg'), + ('0679749861', 'Race Matters', 'https://images.isbndb.com/covers/98/68/9780679749868.jpg'), + ('0684853701', 'A BEAUTIFUL MIND: A Biography Of John Forbes Nash, Jr., Winner Of The Nobel Prize In Economics, 1994', 'https://images.isbndb.com/covers/37/03/9780684853703.jpg'), + ('0374521409', 'The Night Trilogy: Night, Dawn, The Accident', 'https://images.isbndb.com/covers/14/00/9780374521400.jpg'), + ('0140445277', 'The Brothers Karamazov (Penguin Classics)', 'https://images.isbndb.com/covers/52/75/9780140445275.jpg'), + ('0684831546', 'Accordion Crimes', 'https://images.isbndb.com/covers/15/41/9780684831541.jpg'), + ('0345404475', 'Do Androids Dream Of Electric Sheep?', 'https://images.isbndb.com/covers/44/73/9780345404473.jpg'), + ('0375404929', 'For The Relief Of Unbearable Urges: Stories', 'https://images.isbndb.com/covers/49/24/9780375404924.jpg'), + ('0684857820', 'Lucky', 'https://images.isbndb.com/covers/78/24/9780684857824.jpg'), + ('0140051317', 'Tales Of The Unexpected', 'https://images.isbndb.com/covers/13/15/9780140051315.jpg'), + ('0553291890', 'More Than One Universe: The Collected Stories Of Arthur C. Clarke', 'https://images.isbndb.com/covers/18/96/9780553291896.jpg'), + ('0586213333', 'Nemesis (The Indigo Saga, Book 1)', 'https://images.isbndb.com/covers/33/39/9780586213339.jpg'), + ('2080707590', 'Lais De Marie De France', 'https://images.isbndb.com/covers/75/98/9782080707598.jpg'), + ('2715223528', 'La Gare Des Faux Départs', 'https://images.isbndb.com/covers/35/23/9782715223523.jpg'), + ('2246567610', '99 Francs', 'https://images.isbndb.com/covers/76/15/9782246567615.jpg'), + ('2253153427', 'Musc', 'https://images.isbndb.com/covers/34/29/9782253153429.jpg'), + ('2883531714', 'Les Quatre Accords Toltèques - La Voie De La Liberté Personnelle', 'https://images.isbndb.com/covers/17/10/9782883531710.jpg'), + ('2266083309', 'Le Colonel Chabert', 'https://images.isbndb.com/covers/33/00/9782266083300.jpg'), + ('2070383326', 'Les Chemins De La Faim', 'https://images.isbndb.com/covers/33/20/9782070383320.jpg'), + ('2290045799', 'Vol De Sucettes Suivi De Recel De Bâtons Et Autres Nouvelles', 'https://images.isbndb.com/covers/57/94/9782290045794.jpg'), + ('2264010991', 'Nocturne Indien', 'https://images.isbndb.com/covers/09/95/9782264010995.jpg'), + ('0449207331', 'Iberia', 'https://images.isbndb.com/covers/73/38/9780449207338.jpg'), + ('0060092645', 'My Favorite Bride (Governess Brides, Book 6)', 'https://images.isbndb.com/covers/26/41/9780060092641.jpg'), + ('0451207378', 'Ravished (Signet Historical Romance)', 'https://images.isbndb.com/covers/73/71/9780451207371.jpg'), + ('0061031755', 'The Promise In A Kiss (Cynster Novels)', 'https://images.isbndb.com/covers/17/55/9780061031755.jpg'), + ('0812551583', 'Someplace To Be Flying', 'https://images.isbndb.com/covers/15/87/9780812551587.jpg'), + ('0743410653', 'Booked To Die (Cliff Janeway Novels)', 'https://images.isbndb.com/covers/06/56/9780743410656.jpg'), + ('0684864711', 'Pure Poetry: A Novel', 'https://images.isbndb.com/covers/47/16/9780684864716.jpg'), + ('1582430748', 'The Great Petrowski: An Illustrated Fable', 'https://images.isbndb.com/covers/07/44/9781582430744.jpg'), + ('0684846861', 'In The Land Of Men: Stories', 'https://images.isbndb.com/covers/68/66/9780684846866.jpg'), + ('0743200349', 'The Third Miracle: A Novel', 'https://images.isbndb.com/covers/03/49/9780743200349.jpg'), + ('0761521097', 'Today I Will Indulge My Inner Glutton: Health-Free Affirmations For Cynics', 'https://images.isbndb.com/covers/10/99/9780761521099.jpg'), + ('0446674109', 'The Angry Clam', 'https://images.isbndb.com/covers/41/02/9780446674102.jpg'), + ('0849937361', 'Well Connected', 'https://images.isbndb.com/covers/73/61/9780849937361.jpg'), + ('0140124373', 'Red Dwarf', 'https://images.isbndb.com/covers/43/78/9780140124378.jpg'), + ('1853811262', 'Cats Eye', 'https://images.isbndb.com/covers/12/65/9781853811265.jpg'), + ('0450411435', 'It', 'https://images.isbndb.com/covers/14/34/9780450411434.jpg'), + ('0749309636', 'Black Angel', 'https://images.isbndb.com/covers/96/33/9780749309633.jpg'), + ('0375704973', 'The Lake Of Darkness', 'https://images.isbndb.com/covers/49/70/9780375704970.jpg'), + ('034543059X', 'Fatal Charms And Other Tales Of Today/The Mansions Of Limbo (Omnibus)', 'https://images.isbndb.com/covers/05/95/9780345430595.jpg'), + ('037541309X', 'Balzac And The Little Chinese Seamstress : A Novel', 'https://images.isbndb.com/covers/30/94/9780375413094.jpg'), + ('0752848011', 'When She Was Bad...', 'https://images.isbndb.com/covers/80/13/9780752848013.jpg'), + ('1580083412', 'What Color Is Your Parachute?', 'https://images.isbndb.com/covers/34/16/9781580083416.jpg'), + ('0140236716', 'Going In', 'https://images.isbndb.com/covers/67/12/9780140236712.jpg'), + ('0380973499', 'War''s End: An Eyewitness Account Of America''s Last Atomic Mission', 'https://images.isbndb.com/covers/34/91/9780380973491.jpg'), + ('0684867184', 'Comrades: Brothers, Fathers, Heroes, Sons, Pals', 'https://images.isbndb.com/covers/71/82/9780684867182.jpg'), + ('031224116X', 'Murder On The Mauretania (George Porter Dillman And Genevieve Masefield Mysteries)', 'https://images.isbndb.com/covers/11/62/9780312241162.jpg'), + ('0385319622', 'American Chica: Two Worlds, One Childhood', 'https://images.isbndb.com/covers/96/21/9780385319621.jpg'), + ('1557507422', 'The Damned Don''t Drown: The Sinking Of The Wilhelm Gustloff (Bluejacket Books)', 'https://images.isbndb.com/covers/74/26/9781557507426.jpg'), + ('1853673110', 'War On Eastern Front (Greenhill Military Paperbacks)', 'https://images.isbndb.com/covers/31/15/9781853673115.jpg'), + ('0917298551', 'Frontier Soldier: An Enlisted Man''s Journal Of The Sioux And Nez Perce Campaigns, 1877', 'https://images.isbndb.com/covers/85/54/9780917298554.jpg'), + ('0891415947', 'August 1944: Campaign For France', 'https://images.isbndb.com/covers/59/47/9780891415947.jpg'), + ('0804100039', 'If You Survive: From Normandy To The Battle Of The Bulge To The End Of World War II, One American Officer''s Riveting True Story', 'https://images.isbndb.com/covers/00/38/9780804100038.jpg'), + ('0440236304', 'Currahee!: A Screaming Eagle At Normandy', 'https://images.isbndb.com/covers/63/06/9780440236306.jpg'), + ('0060937114', 'First Mothers: The Women Who Shaped The Presidents', 'https://images.isbndb.com/covers/71/19/9780060937119.jpg'), + ('0060183527', 'Our Kind Of People: Inside America''s Black Upper Class', 'https://images.isbndb.com/covers/35/23/9780060183523.jpg'), + ('081288518X', 'Queen Of Ice, Queen Of Shadows: The Unsuspected Life Of Sonja Henie', 'https://images.isbndb.com/covers/51/87/9780812885187.jpg'), + ('038549565X', 'Ghost Soldiers: The Epic Account Of World War II''s Greatest Rescue Mission', 'https://images.isbndb.com/covers/56/53/9780385495653.jpg'), + ('0743201981', 'Always Faithful: A Memoir Of The Marine Dogs Of WWII', 'https://images.isbndb.com/covers/19/88/9780743201988.jpg'), + ('0767908244', 'German Boy: A Child In War', 'https://images.isbndb.com/covers/82/45/9780767908245.jpg'), + ('0743203399', 'The Wild Blue: The Men And Boys Who Flew The B-24s Over Germany 1944-45', 'https://images.isbndb.com/covers/33/95/9780743203395.jpg'), + ('0688158943', 'Waiting To Fly: My Escapades With The Penguins Of Antarctica', 'https://images.isbndb.com/covers/89/41/9780688158941.jpg'), + ('0140018328', 'Kiss Kiss (French Language Edition) (French Edition)', 'https://images.isbndb.com/covers/83/25/9780140018325.jpg'), + ('0515100072', 'Crossed Swords', 'https://images.isbndb.com/covers/00/75/9780515100075.jpg'), + ('0553579606', 'Ashes To Ashes', 'https://images.isbndb.com/covers/96/04/9780553579604.jpg'), + ('0553282069', 'Forbidden Land: First Americans, Book III (Vol 3)', 'https://images.isbndb.com/covers/20/61/9780553282061.jpg'), + ('0385177259', 'Foundation''s Edge', 'https://images.isbndb.com/covers/72/52/9780385177252.jpg'), + ('0373201451', 'A Daddy Again (By Request) (Harlequin By Request)', 'https://images.isbndb.com/covers/14/57/9780373201457.jpg'), + ('0061013439', 'The Run', 'https://images.isbndb.com/covers/34/30/9780061013430.jpg'), + ('0553080237', 'A Sorrow In Our Heart: The Life Of Tecumseh', 'https://images.isbndb.com/covers/02/30/9780553080230.jpg'), + ('0679459596', 'Billy Straight: A Novel', 'https://images.isbndb.com/covers/95/90/9780679459590.jpg'), + ('0393038173', 'How Late It Was, How Late', 'https://images.isbndb.com/covers/81/70/9780393038170.jpg'), + ('0553578901', 'The Hostage Bride', 'https://images.isbndb.com/covers/89/04/9780553578904.jpg'), + ('0446605786', 'The Royals', 'https://images.isbndb.com/covers/57/86/9780446605786.jpg'), + ('0609609068', 'The Book Of Eleanor', 'https://images.isbndb.com/covers/90/64/9780609609064.jpg'), + ('0500011931', 'Case Of Walter Pater', 'https://images.isbndb.com/covers/19/35/9780500011935.jpg'), + ('0531150259', 'Judith Gautier: A Biography', 'https://images.isbndb.com/covers/02/52/9780531150252.jpg'), + ('0805205454', 'Ladies Of Seneca Falls (Studies In The Life Of Women)', 'https://images.isbndb.com/covers/54/59/9780805205459.jpg'), + ('0425193896', 'Cutwork (Needlecraft Mystery)', 'https://images.isbndb.com/covers/38/91/9780425193891.jpg'), + ('0345382846', 'Here Be Dragons', 'https://images.isbndb.com/covers/28/49/9780345382849.jpg'), + ('0312115067', 'Judith Sargent Murray: A Brief Biography With Documents (Bedford Series In History & Culture)', 'https://images.isbndb.com/covers/50/67/9780312115067.jpg'), + ('0345413938', 'Hunger Pains: The Modern Woman''s Tragic Quest For Thinness', 'https://images.isbndb.com/covers/39/32/9780345413932.jpg'), + ('0345283945', 'A Distant Mirror -The Calamitous 14th Century', 'https://images.isbndb.com/covers/39/48/9780345283948.jpg'), + ('0060934239', 'Daughters Of Britannia: The Lives And Times Of Diplomatic Wives', 'https://images.isbndb.com/covers/42/31/9780060934231.jpg'), + ('006099486X', 'The Professor And The Madman: A Tale Of Murder, Insanity, And The Making Of The Oxford English Dictionary', 'https://images.isbndb.com/covers/48/60/9780060994860.jpg'), + ('0306809893', 'The Sisters Of Henry VIII: The Tumultuous Lives Of Margaret Of Scotland And Mary Of France', 'https://images.isbndb.com/covers/98/97/9780306809897.jpg'), + ('0060185430', 'Ladies Of The Grand Tour: British Women In Pursuit Of Enlightenment And Adventure In Eighteenth-Century Europe', 'https://images.isbndb.com/covers/54/35/9780060185435.jpg'), + ('0060987383', 'Royal Blood: Richard III And The Mystery Of The Princes', 'https://images.isbndb.com/covers/73/81/9780060987381.jpg'), + ('0306811596', 'A Delusion Of Satan: The Full Story Of The Salem Witch Trials', 'https://images.isbndb.com/covers/15/93/9780306811593.jpg'), + ('0789410842', 'Ultimate Christmas', 'https://images.isbndb.com/covers/08/49/9780789410849.jpg'), + ('068485080X', 'Diana: 1961-1997 Her True Story', 'https://images.isbndb.com/covers/08/01/9780684850801.jpg'), + ('0684841347', 'One Day My Soul Just Opened Up: 40 Days And 40 Nights Toward Spiritual Strength And Personal Growth', 'https://images.isbndb.com/covers/13/42/9780684841342.jpg'), + ('1567310265', 'Boost Your Brain Power : A Total Program To Strengthen And Expand Your Most Important Resource', 'https://images.isbndb.com/covers/02/69/9781567310269.jpg'), + ('044652087X', 'My Sergei: A Love Story', 'https://images.isbndb.com/covers/08/74/9780446520874.jpg'), + ('0878911774', 'Algebra & Trigonometry Super Review', 'https://images.isbndb.com/covers/17/76/9780878911776.jpg'), + ('0060176628', 'The Trouble With A Hot Summer: A Simona Griffo Mystery (Simona Griffo Mysteries)', 'https://images.isbndb.com/covers/66/24/9780060176624.jpg'), + ('0670855030', 'INSOMNIA', 'https://images.isbndb.com/covers/50/32/9780670855032.jpg'), + ('0517064626', 'Mary Higgins Clark: Three Complete Novels: Weep No More, My Lady; Stillwatch; A Cry In The Night', 'https://images.isbndb.com/covers/46/27/9780517064627.jpg'), + ('0684810387', 'Moonlight Becomes You', 'https://images.isbndb.com/covers/03/86/9780684810386.jpg'), + ('0931580439', 'How To Survive The Loss Of A Love', 'https://images.isbndb.com/covers/04/37/9780931580437.jpg'), + ('0440183057', 'Stillwatch', 'https://images.isbndb.com/covers/30/51/9780440183051.jpg'), + ('0380709333', 'The Art Of Living Single', 'https://images.isbndb.com/covers/93/35/9780380709335.jpg'), + ('0671769200', 'If You Really Loved Me', 'https://images.isbndb.com/covers/92/08/9780671769208.jpg'), + ('0884042642', 'Self Analysis', 'https://images.isbndb.com/covers/26/48/9780884042648.jpg'), + ('0671250671', 'The Road Less Traveled: A New Psychology Of Love, Traditional Values, And Spiritual Growth', 'https://images.isbndb.com/covers/06/76/9780671250676.jpg'), + ('0553067966', 'The Simple Living Guide: A Sourcebook For Less Stressful, More Joyful Living', 'https://images.isbndb.com/covers/79/65/9780553067965.jpg'), + ('0440507294', 'Real Moments: Discover The Secret For True Happiness', 'https://images.isbndb.com/covers/72/91/9780440507291.jpg'), + ('0553212141', 'Heart Of Darkness And The Secret Sharer (Bantam Classics)', 'https://images.isbndb.com/covers/21/43/9780553212143.jpg'), + ('0671602705', 'How To Run A Traditional Jewish Household', 'https://images.isbndb.com/covers/27/03/9780671602703.jpg'), + ('0843946385', 'Drawn To The Grave', 'https://images.isbndb.com/covers/63/83/9780843946383.jpg'), + ('0439978238', 'Viaduct Child', 'https://images.isbndb.com/covers/82/31/9780439978231.jpg'), + ('0743200985', 'Tis: A Memoir', 'https://images.isbndb.com/covers/09/81/9780743200981.jpg'), + ('0425118703', 'Midnight', 'https://images.isbndb.com/covers/87/02/9780425118702.jpg'), + ('9510236756', 'Minun Sukuni Tarina (Finnish Edition)', 'https://images.isbndb.com/covers/67/58/9789510236758.jpg'), + ('0349100136', 'If This Is A Man And The Truce', 'https://images.isbndb.com/covers/01/35/9780349100135.jpg'), + ('2070367622', 'Paroles', 'https://images.isbndb.com/covers/76/27/9782070367627.jpg'), + ('0811802981', 'The Golden Mean: In Which The Extraordinary Correspondence Of Griffin & Sabine Concludes', 'https://images.isbndb.com/covers/29/87/9780811802987.jpg'), + ('0486415910', 'A Connecticut Yankee In King Arthur''s Court (Dover Thrift Editions)', 'https://images.isbndb.com/covers/59/18/9780486415918.jpg'), + ('0380792737', 'Island Of The Sequined Love Nun', 'https://images.isbndb.com/covers/27/33/9780380792733.jpg'), + ('1877856916', 'Exploring National Parks', 'https://images.isbndb.com/covers/69/14/9781877856914.jpg'), + ('0571200435', 'Buddha Of Suburbia (FF Classics)', 'https://images.isbndb.com/covers/04/36/9780571200436.jpg'), + ('0446604763', 'Mayday', 'https://images.isbndb.com/covers/47/65/9780446604765.jpg'), + ('0060516283', 'Gallow''s Thief', 'https://images.isbndb.com/covers/62/84/9780060516284.jpg'), + ('1590210301', 'Peacetalk 101', 'https://images.isbndb.com/covers/03/07/9781590210307.jpg'), + ('1573245216', 'The Giving Heart: Unlocking The Transformative Power Of Generosity In Your Life', 'https://images.isbndb.com/covers/52/10/9781573245210.jpg'), + ('1567313671', 'Gratitude: Affirming The Good Things In Life', 'https://images.isbndb.com/covers/36/73/9781567313673.jpg'), + ('1878424424', 'The Mastery Of Love: A Practical Guide To The Art Of Relationship: A Toltec Wisdom Book', 'https://images.isbndb.com/covers/44/26/9781878424426.jpg'), + ('0553109839', 'The Patient', 'https://images.isbndb.com/covers/98/32/9780553109832.jpg'), + ('0316639842', 'Unnatural Exposure', 'https://images.isbndb.com/covers/98/42/9780316639842.jpg'), + ('0140296409', 'Disgrace', 'https://images.isbndb.com/covers/64/02/9780140296402.jpg'), + ('3442442354', 'Der Strand: Roman', 'https://images.isbndb.com/covers/23/55/9783442442355.jpg'), + ('0451192613', 'Irresistible Impulse', 'https://images.isbndb.com/covers/26/15/9780451192615.jpg'), + ('0451138481', 'Life Penalty (Signet)', 'https://images.isbndb.com/covers/84/84/9780451138484.jpg'), + ('0670891576', 'In The Heart Of The Sea: The Tragedy Of The Whaleship Essex', 'https://images.isbndb.com/covers/15/73/9780670891573.jpg'), + ('0395264758', 'Picture Palace', 'https://images.isbndb.com/covers/47/51/9780395264751.jpg'), + ('3442431875', 'Der Pferdeflüsterer: Roman', 'https://images.isbndb.com/covers/18/78/9783442431878.jpg'), + ('0140259112', 'Bed And Breakfast', 'https://images.isbndb.com/covers/91/17/9780140259117.jpg'), + ('0439339170', 'The Way Of The Apprentice (Star Wars: Jedi Quest, Book 1)', 'https://images.isbndb.com/covers/91/79/9780439339179.jpg'), + ('0375401598', 'Pandora: New Tales Of The Vampires', 'https://images.isbndb.com/covers/15/96/9780375401596.jpg'), + ('0553106678', 'Matarese Countdown, The', 'https://images.isbndb.com/covers/66/71/9780553106671.jpg'), + ('0684802988', 'Flood Tide', 'https://images.isbndb.com/covers/29/85/9780684802985.jpg'), + ('0061000043', 'A Thief Of Time (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/00/41/9780061000041.jpg'), + ('0312055145', 'Shakespeare On Love: Quotations From The Plays & Poems', 'https://images.isbndb.com/covers/51/41/9780312055141.jpg'), + ('0060617225', 'The Way To Freedom: Core Teachings Of Tibetan Buddhism', 'https://images.isbndb.com/covers/72/26/9780060617226.jpg'), + ('1558214291', 'Dream Fish And Road Trips: Fly Fishing Tales From Alaska, Montana, And Beyond', 'https://images.isbndb.com/covers/42/93/9781558214293.jpg'), + ('0349100373', 'Dreams Of Dead Womens Handbags (Abacus Books)', 'https://images.isbndb.com/covers/03/71/9780349100371.jpg'), + ('0340542667', 'Canon Bang-bang', 'https://images.isbndb.com/covers/26/68/9780340542668.jpg'), + ('0380699176', '100 Great Fantasy Short, Short Stories', 'https://images.isbndb.com/covers/91/79/9780380699179.jpg'), + ('0151006725', 'Slammerkin: A Loose Dress, A Loose Woman', 'https://images.isbndb.com/covers/67/24/9780151006724.jpg'), + ('0525946241', 'Picture Maker: A Novel', 'https://images.isbndb.com/covers/62/43/9780525946243.jpg'), + ('0394751043', 'The King Must Die: A Novel', 'https://images.isbndb.com/covers/10/47/9780394751047.jpg'), + ('2070388425', 'La Part Manquante', 'https://images.isbndb.com/covers/84/24/9782070388424.jpg'), + ('2070427110', 'La Lumière Du Monde', 'https://images.isbndb.com/covers/71/16/9782070427116.jpg'), + ('2221081722', 'Le Scaphandre Et Le Papillon', 'https://images.isbndb.com/covers/17/23/9782221081723.jpg'), + ('2070388905', 'Comme Un Roman', 'https://images.isbndb.com/covers/89/05/9782070388905.jpg'), + ('2070756319', 'Le Dictateur Et Le Hamac', 'https://images.isbndb.com/covers/63/15/9782070756315.jpg'), + ('2253138916', 'Le Rocher De Tanios - Prix Goncourt 1993', 'https://images.isbndb.com/covers/89/14/9782253138914.jpg'), + ('0553263579', 'The Autobiography Of Miss Jane Pittman', 'https://images.isbndb.com/covers/35/72/9780553263572.jpg'), + ('0441007015', 'The Seven Songs Of Merlin (Lost Years Of Merlin, Bk. 2)', 'https://images.isbndb.com/covers/70/11/9780441007011.jpg'), + ('0553289411', 'The Plains Of Passage', 'https://images.isbndb.com/covers/94/11/9780553289411.jpg'), + ('0553258559', 'Dragondrums (Harper Hall Trilogy)', 'https://images.isbndb.com/covers/85/54/9780553258554.jpg'), + ('0394717406', 'Out Of Africa (Vintage Books, V740)', 'https://images.isbndb.com/covers/74/01/9780394717401.jpg'), + ('0141300272', 'It Was A Dark And Stormy Night', 'https://images.isbndb.com/covers/02/76/9780141300276.jpg'), + ('9500418606', 'Poderes Extraordinarios', 'https://images.isbndb.com/covers/86/07/9789500418607.jpg'), + ('0316588032', 'The Face', 'https://images.isbndb.com/covers/80/34/9780316588034.jpg'), + ('0671892479', 'Step-By-Step Tai Chi', 'https://images.isbndb.com/covers/24/70/9780671892470.jpg'), + ('0060011912', 'Small Town', 'https://images.isbndb.com/covers/19/18/9780060011918.jpg'), + ('044661064X', 'The First Counsel', 'https://images.isbndb.com/covers/06/43/9780446610643.jpg'), + ('0553211803', 'Middlemarch (Bantam Classics)', 'https://images.isbndb.com/covers/18/01/9780553211801.jpg'), + ('1551666839', 'Dead Run (Mira S.)', 'https://images.isbndb.com/covers/68/39/9781551666839.jpg'), + ('0374526893', 'A Sense Of Where You Are: Bill Bradley At Princeton', 'https://images.isbndb.com/covers/68/94/9780374526894.jpg'), + ('1583940634', 'The Diary Of A Teenage Girl: An Account In Words And Pictures', 'https://images.isbndb.com/covers/06/31/9781583940631.jpg'), + ('0805060200', 'Boy In The Water', 'https://images.isbndb.com/covers/02/01/9780805060201.jpg'), + ('0312872402', 'Kushiel''s Avatar', 'https://images.isbndb.com/covers/24/03/9780312872403.jpg'), + ('0312872399', 'Kushiel''s Chosen', 'https://images.isbndb.com/covers/23/97/9780312872397.jpg'), + ('0765342987', 'Kushiel''s Dart', 'https://images.isbndb.com/covers/29/80/9780765342980.jpg'), + ('0451456726', 'Heir To The Shadows (Black Jewels, Book 2)', 'https://images.isbndb.com/covers/67/24/9780451456724.jpg'), + ('0451456718', 'Daughter Of The Blood (Black Jewels, Book 1)', 'https://images.isbndb.com/covers/67/17/9780451456717.jpg'), + ('0451456734', 'Queen Of The Darkness (Black Jewels, Book 3)', 'https://images.isbndb.com/covers/67/31/9780451456731.jpg'), + ('0571154913', 'Remains Of The Day', 'https://images.isbndb.com/covers/49/13/9780571154913.jpg'), + ('0446530522', 'Cane River', 'https://images.isbndb.com/covers/05/21/9780446530521.jpg'), + ('0330327917', 'The Ice House', 'https://images.isbndb.com/covers/79/16/9780330327916.jpg'), + ('0786004886', 'The Mentor', 'https://images.isbndb.com/covers/48/81/9780786004881.jpg'), + ('0446674346', 'Cloud Mountain', 'https://images.isbndb.com/covers/43/48/9780446674348.jpg'), + ('0060092963', 'Adventures Of A Scottish Heiress', 'https://images.isbndb.com/covers/29/62/9780060092962.jpg'), + ('0060517611', 'The Lady In Question', 'https://images.isbndb.com/covers/76/18/9780060517618.jpg'), + ('0553802550', 'The Happiest Baby On The Block: The New Way To Calm Crying And Help Your Baby Sleep Longer', 'https://images.isbndb.com/covers/25/59/9780553802559.jpg'), + ('0425192695', 'Girls Of Summer', 'https://images.isbndb.com/covers/26/96/9780425192696.jpg'), + ('0760704767', 'Historical Whodunits', 'https://images.isbndb.com/covers/47/69/9780760704769.jpg'), + ('0671468464', 'King Lear', 'https://images.isbndb.com/covers/84/60/9780671468460.jpg'), + ('0440241286', 'Gun Monkeys', 'https://images.isbndb.com/covers/12/87/9780440241287.jpg'), + ('002026478X', 'Age Of Innocence (Movie Tie-in)', 'https://images.isbndb.com/covers/47/81/9780020264781.jpg'), + ('0743407148', 'Sherlock Holmes Vs. Dracula', 'https://images.isbndb.com/covers/71/44/9780743407144.jpg'), + ('0345447840', 'The Surgeon', 'https://images.isbndb.com/covers/78/45/9780345447845.jpg'), + ('0312977360', 'The Church Of Dead Girls: A Novel', 'https://images.isbndb.com/covers/73/68/9780312977368.jpg'), + ('0312992203', 'Buck Fever: A Blanco County, Texas, Novel', 'https://images.isbndb.com/covers/22/00/9780312992200.jpg'), + ('0312089449', 'Muckraking: Three Landmark Articles', 'https://images.isbndb.com/covers/94/43/9780312089443.jpg'), + ('096558383X', '20 Years Of Censored News', 'https://images.isbndb.com/covers/38/31/9780965583831.jpg'), + ('0140094903', 'A History Of News', 'https://images.isbndb.com/covers/49/09/9780140094909.jpg'), + ('034541103X', 'A Reporter''s Life', 'https://images.isbndb.com/covers/10/37/9780345411037.jpg'), + ('0345425286', 'News Is A Verb (Library Of Contemporary Thought)', 'https://images.isbndb.com/covers/52/87/9780345425287.jpg'), + ('0688179053', 'Deadlines And Datelines: Essays For A New Century', 'https://images.isbndb.com/covers/90/52/9780688179052.jpg'), + ('0451201507', 'Drudge Manifesto', 'https://images.isbndb.com/covers/15/08/9780451201508.jpg'), + ('0380760975', 'Tombley''s Walk', 'https://images.isbndb.com/covers/09/78/9780380760978.jpg'), + ('0553569791', 'The Last Innocent Man', 'https://images.isbndb.com/covers/97/97/9780553569797.jpg'), + ('038000772X', 'I''m OK-You''re OK', 'https://images.isbndb.com/covers/77/21/9780380007721.jpg'), + ('044661193X', 'Basket Case', 'https://images.isbndb.com/covers/19/30/9780446611930.jpg'), + ('0446401617', 'Where Echoes Live', 'https://images.isbndb.com/covers/16/16/9780446401616.jpg'), + ('0345428196', 'Outfoxed (Foxhunting Mysteries)', 'https://images.isbndb.com/covers/81/96/9780345428196.jpg'), + ('0553208799', 'Chancellor Manuscript', 'https://images.isbndb.com/covers/87/95/9780553208795.jpg'), + ('0821767747', 'Too Good To Be True', 'https://images.isbndb.com/covers/77/40/9780821767740.jpg'), + ('0446512923', 'Lord Of The Dance (Passover Trilogy)', 'https://images.isbndb.com/covers/29/23/9780446512923.jpg'), + ('0060955406', 'The Peculiar Memories Of Thomas Penman', 'https://images.isbndb.com/covers/54/03/9780060955403.jpg'), + ('0380793059', 'To Bury The Dead', 'https://images.isbndb.com/covers/30/51/9780380793051.jpg'), + ('0440419468', 'Holes', 'https://images.isbndb.com/covers/94/64/9780440419464.jpg'), + ('0446359866', 'Presumed Innocent: A Novel', 'https://images.isbndb.com/covers/98/63/9780446359863.jpg'), + ('0446602612', 'The Poet', 'https://images.isbndb.com/covers/26/17/9780446602617.jpg'), + ('0446612790', '2nd Chance (The Women''s Murder Club)', 'https://images.isbndb.com/covers/27/91/9780446612791.jpg'), + ('0671676253', 'The ABYSS', 'https://images.isbndb.com/covers/62/54/9780671676254.jpg'), + ('0446606383', 'The Midnight Club', 'https://images.isbndb.com/covers/63/87/9780446606387.jpg'), + ('0553213148', 'Anne Of Avonlea (Anne Of Green Gables, Book 2)', 'https://images.isbndb.com/covers/31/40/9780553213140.jpg'), + ('0380725584', 'The Indian In The Cupboard', 'https://images.isbndb.com/covers/55/88/9780380725588.jpg'), + ('0679401032', 'Uh-Oh: Some Observations From Both Sides Of The Refrigerator Door', 'https://images.isbndb.com/covers/10/32/9780679401032.jpg'), + ('0394580567', 'It Was On Fire When I Lay Down On It', 'https://images.isbndb.com/covers/05/62/9780394580562.jpg'), + ('0394571029', 'All I Really Need To Know I Learned In Kindergarten: Uncommon Thoughts On Common Things', 'https://images.isbndb.com/covers/10/27/9780394571027.jpg'), + ('0440128994', 'God Save The Child', 'https://images.isbndb.com/covers/89/91/9780440128991.jpg'), + ('0590455761', 'One Hungry Monster', 'https://images.isbndb.com/covers/57/63/9780590455763.jpg'), + ('0446365505', 'Pleading Guilty', 'https://images.isbndb.com/covers/55/05/9780446365505.jpg'), + ('0671531409', 'A Midsummer Night''s Dream (Folger Library General Readers Shakespeare)', 'https://images.isbndb.com/covers/14/09/9780671531409.jpg'), + ('002542730X', 'Politically Correct Bedtime Stories: Modern Tales For Our Life & Times', 'https://images.isbndb.com/covers/73/03/9780025427303.jpg'), + ('0804111898', 'Uh-Oh', 'https://images.isbndb.com/covers/18/98/9780804111898.jpg'), + ('0802132154', 'The Complete Plays: The Ruffian On The Stair, Entertaining Mr. Sloan, The Good And Faithful Servant, Loot, The Erpingham Camp, Funeral Games, What The Butler Saw', 'https://images.isbndb.com/covers/21/54/9780802132154.jpg'), + ('0025473905', 'Respect For Acting', 'https://images.isbndb.com/covers/39/04/9780025473904.jpg'), + ('0451203895', '4 Blondes', 'https://images.isbndb.com/covers/38/92/9780451203892.jpg'), + ('0345309014', 'Second Foundation(Foundation Trilogy, Book 3)', 'https://images.isbndb.com/covers/90/13/9780345309013.jpg'), + ('0345308999', 'Foundation (Foundation, No.1)', 'https://images.isbndb.com/covers/89/93/9780345308993.jpg'), + ('0345309006', 'FOUNDATION AND EMPIRE', 'https://images.isbndb.com/covers/90/06/9780345309006.jpg'), + ('0553272535', 'Night', 'https://images.isbndb.com/covers/25/36/9780553272536.jpg'), + ('0445406488', 'The Curse Of The Pharaohs (Amelia Peabody, Book 2)', 'https://images.isbndb.com/covers/64/83/9780445406483.jpg'), + ('0451209710', 'The Dewey Decimal System Of Love', 'https://images.isbndb.com/covers/97/19/9780451209719.jpg'), + ('0312865031', 'Gravelight', 'https://images.isbndb.com/covers/50/30/9780312865030.jpg'), + ('089190672X', 'Circus', 'https://images.isbndb.com/covers/67/28/9780891906728.jpg'), + ('0449219631', 'Jaws', 'https://images.isbndb.com/covers/96/38/9780449219638.jpg'), + ('0425104052', 'The Hound Of The Baskervilles', 'https://images.isbndb.com/covers/40/57/9780425104057.jpg'), + ('0425181464', 'Seduction In Death', 'https://images.isbndb.com/covers/14/61/9780425181461.jpg'), + ('0515090298', 'Catcher In The Wry', 'https://images.isbndb.com/covers/02/91/9780515090291.jpg'), + ('0345438353', 'A Case Of Conscience (Del Rey Impact)', 'https://images.isbndb.com/covers/83/55/9780345438355.jpg'), + ('0060298774', 'The Lives Of Christopher Chant (Chrestomanci Books)', 'https://images.isbndb.com/covers/87/77/9780060298777.jpg'), + ('0449212858', 'Rutland Place', 'https://images.isbndb.com/covers/28/51/9780449212851.jpg'), + ('0812505018', 'The Secret Garden', 'https://images.isbndb.com/covers/50/16/9780812505016.jpg'), + ('0671888021', 'Lame Deer, Seeker Of Visions (Enriched Classics)', 'https://images.isbndb.com/covers/80/22/9780671888022.jpg'), + ('0451458125', 'Fool Moon (The Dresden Files, Book 2)', 'https://images.isbndb.com/covers/81/24/9780451458124.jpg'), + ('0553213377', 'The Three Musketeers (Bantam Classic)', 'https://images.isbndb.com/covers/33/79/9780553213379.jpg'), + ('0142002054', 'Diamonds Are Forever (James Bond Novels)', 'https://images.isbndb.com/covers/20/56/9780142002056.jpg'), + ('067150987X', 'Winter''s Tale', 'https://images.isbndb.com/covers/98/73/9780671509873.jpg'), + ('0345347951', 'Childhood''s End', 'https://images.isbndb.com/covers/79/54/9780345347954.jpg'), + ('0425037827', 'Stranger In A Strange Land', 'https://images.isbndb.com/covers/78/29/9780425037829.jpg'), + ('0553574353', 'Helter Skelter: The True Story Of The Manson Murders', 'https://images.isbndb.com/covers/43/57/9780553574357.jpg'), + ('0553142046', 'Dragonsong', 'https://images.isbndb.com/covers/20/44/9780553142044.jpg'), + ('0786889527', 'Night Gardening', 'https://images.isbndb.com/covers/95/25/9780786889525.jpg'), + ('0441006345', 'Fantastic Alice: New Stories From Wonderland', 'https://images.isbndb.com/covers/63/42/9780441006342.jpg'), + ('0671721380', 'Wheels Of Fire (Serrated Edge 2)', 'https://images.isbndb.com/covers/13/81/9780671721381.jpg'), + ('0446356018', 'Cradle', 'https://images.isbndb.com/covers/60/15/9780446356015.jpg'), + ('067174139X', 'Masks (Star Trek The Next Generation, No 7)', 'https://images.isbndb.com/covers/13/96/9780671741396.jpg'), + ('0399136487', 'Damia', 'https://images.isbndb.com/covers/64/81/9780399136481.jpg'), + ('0671720139', 'Black Throne', 'https://images.isbndb.com/covers/01/31/9780671720131.jpg'), + ('039480001X', 'The Cat In The Hat', 'https://images.isbndb.com/covers/00/11/9780394800011.jpg'), + ('0345273303', 'Another Roadside Attraction', 'https://images.isbndb.com/covers/33/07/9780345273307.jpg'), + ('0446365661', 'Wall Of Brass', 'https://images.isbndb.com/covers/56/66/9780446365666.jpg'), + ('0749930888', 'Sisters In Arms', 'https://images.isbndb.com/covers/08/82/9780749930882.jpg'), + ('0440201101', 'MORE DIE/HEART BREAK', 'https://images.isbndb.com/covers/11/06/9780440201106.jpg'), + ('1857022424', 'The Shipping News', 'https://images.isbndb.com/covers/24/21/9781857022421.jpg'), + ('1561383619', 'The Quotable Traveler: Wise Words For Travelers, Explorers, And Wanderers (Miniature Editions)', 'https://images.isbndb.com/covers/36/10/9781561383610.jpg'), + ('068484477X', 'Stones From The River', 'https://images.isbndb.com/covers/47/70/9780684844770.jpg'), + ('0393317552', 'Guns, Germs, And Steel: The Fates Of Human Societies', 'https://images.isbndb.com/covers/75/58/9780393317558.jpg'), + ('0684853515', 'Hearts In Atlantis', 'https://images.isbndb.com/covers/35/12/9780684853512.jpg'), + ('0375504397', 'Black House', 'https://images.isbndb.com/covers/43/96/9780375504396.jpg'), + ('0452283205', 'Falling Angels', 'https://images.isbndb.com/covers/32/06/9780452283206.jpg'), + ('0374524912', 'Coyote V. Acme', 'https://images.isbndb.com/covers/49/13/9780374524913.jpg'), + ('0316779237', 'Holidays On Ice: Stories', 'https://images.isbndb.com/covers/92/34/9780316779234.jpg'), + ('0875427324', 'Witta: An Irish Pagan Tradition (Llewellyn''s World Religion & Magick)', 'https://images.isbndb.com/covers/73/24/9780875427324.jpg'), + ('0385421982', 'The Pelican Brief', 'https://images.isbndb.com/covers/19/80/9780385421980.jpg'), + ('0892962275', 'Black House', 'https://images.isbndb.com/covers/22/73/9780892962273.jpg'), + ('0393040135', 'Love Warps The Mind A Little', 'https://images.isbndb.com/covers/01/35/9780393040135.jpg'), + ('0679402470', 'Millroy The Magician', 'https://images.isbndb.com/covers/24/73/9780679402473.jpg'), + ('055344171X', 'The Princess And The Pea (Loveswept)', 'https://images.isbndb.com/covers/17/10/9780553441710.jpg'), + ('0733801862', 'Book Of D''Ni (Myst)', 'https://images.isbndb.com/covers/18/60/9780733801860.jpg'), + ('0875421180', 'Wicca: A Guide For The Solitary Practitioner (Includes Author''s Book Of Shadows)', 'https://images.isbndb.com/covers/11/86/9780875421186.jpg'), + ('055308013X', 'Private Eyes', 'https://images.isbndb.com/covers/01/31/9780553080131.jpg'), + ('0460872125', 'Pride & Prejudice (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/21/26/9780460872126.jpg'), + ('2020606291', 'Amours Sorcières (Export)', 'https://images.isbndb.com/covers/62/95/9782020606295.jpg'), + ('0345311965', 'Pebble In The Sky', 'https://images.isbndb.com/covers/19/62/9780345311962.jpg'), + ('0451139739', 'Christine (Signet)', 'https://images.isbndb.com/covers/97/33/9780451139733.jpg'), + ('0553236202', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/62/00/9780553236200.jpg'), + ('038072975X', 'Midnight Champagne: A Novel: A Novel', 'https://images.isbndb.com/covers/97/53/9780380729753.jpg'), + ('1885167172', 'Who''s Running Your Career?: Creating Stable Work In Unstable Times', 'https://images.isbndb.com/covers/71/70/9781885167170.jpg'), + ('0452261589', 'The Art And Craft Of Feature Writing: Based On The Wall Street Journal Guide', 'https://images.isbndb.com/covers/15/87/9780452261587.jpg'), + ('0374230072', 'Required Reading: Why Our American Classics Matter Now', 'https://images.isbndb.com/covers/00/74/9780374230074.jpg'), + ('014006690X', 'The Women Of Brewster Place (Penguin Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/69/06/9780140066906.jpg'), + ('0060975210', 'The Lover', 'https://images.isbndb.com/covers/52/10/9780060975210.jpg'), + ('0374521352', 'The Dwarf', 'https://images.isbndb.com/covers/13/56/9780374521356.jpg'), + ('0226424197', 'French Lessons: A Memoir', 'https://images.isbndb.com/covers/41/94/9780226424194.jpg'), + ('0316085251', 'The Boys Of My Youth', 'https://images.isbndb.com/covers/52/50/9780316085250.jpg'), + ('0874771641', 'Becoming A Writer', 'https://images.isbndb.com/covers/16/40/9780874771640.jpg'), + ('0451185560', 'Fear Of Flying', 'https://images.isbndb.com/covers/55/63/9780451185563.jpg'), + ('1853260401', 'The Three Musketeers (Wordsworth Classics)', 'https://images.isbndb.com/covers/04/07/9781853260407.jpg'), + ('0773760555', 'A Circle Of Silver (The Circle Of Silver Chronicles)', 'https://images.isbndb.com/covers/05/54/9780773760554.jpg'), + ('0553250531', 'Valley Of Horses', 'https://images.isbndb.com/covers/05/34/9780553250534.jpg'), + ('0553148001', 'The Clan Of The Cave Bear : A Novel', 'https://images.isbndb.com/covers/80/08/9780553148008.jpg'), + ('1579542085', 'Pets'' Letters To God', 'https://images.isbndb.com/covers/20/85/9781579542085.jpg'), + ('0671720414', 'Generation Warriors', 'https://images.isbndb.com/covers/04/14/9780671720414.jpg'), + ('0345275675', 'The White Dragon (The Dragonriders Of Pern)', 'https://images.isbndb.com/covers/56/77/9780345275677.jpg'), + ('024189865X', 'Bear''s Whelp', 'https://images.isbndb.com/covers/86/59/9780241898659.jpg'), + ('0773671358', 'Our Cops - Their Stories', 'https://images.isbndb.com/covers/13/55/9780773671355.jpg'), + ('0553284460', 'Oklahoma Pride (The Holts #2)', 'https://images.isbndb.com/covers/44/61/9780553284461.jpg'), + ('0440213525', 'The Client', 'https://images.isbndb.com/covers/35/29/9780440213529.jpg'), + ('0451188462', 'Desperation', 'https://images.isbndb.com/covers/84/65/9780451188465.jpg'), + ('034525855X', 'A Spell For Chameleon (The Magic Of Xanth, No. 1)', 'https://images.isbndb.com/covers/85/57/9780345258557.jpg'), + ('0441135560', 'Damia (Rowan)', 'https://images.isbndb.com/covers/55/61/9780441135561.jpg'), + ('3789131202', 'Der Prinz Und Der Bottelknabe: Oder Erzähl Mir Vom Dow Jones', 'https://images.isbndb.com/covers/12/02/9783789131202.jpg'), + ('0195103793', 'Managing Your Mind: The Mental Fitness Guide', 'https://images.isbndb.com/covers/37/93/9780195103793.jpg'), + ('0816303630', 'It Must Have Been An Angel (Redwood Paperback; 119)', 'https://images.isbndb.com/covers/36/32/9780816303632.jpg'), + ('0811807282', 'The Secret Language Of Dreams: A Visual Key To Dreams And Their Meanings', 'https://images.isbndb.com/covers/72/89/9780811807289.jpg'), + ('0671019449', 'FLOWERS IN THE ATTIC (Dollanganger Series)', 'https://images.isbndb.com/covers/94/40/9780671019440.jpg'), + ('0152105328', 'The Borrowers Avenged', 'https://images.isbndb.com/covers/53/27/9780152105327.jpg'), + ('0060283122', 'The Bad Beginning (A Series Of Unfortunate Events, Book 1)', 'https://images.isbndb.com/covers/31/24/9780060283124.jpg'), + ('0439136350', 'Harry Potter And The Prisoner Of Azkaban (Book 3)', 'https://images.isbndb.com/covers/63/58/9780439136358.jpg'), + ('0671028367', 'Deadly Decisions (Temperance Brennan, No. 3)', 'https://images.isbndb.com/covers/83/67/9780671028367.jpg'), + ('0028642333', 'The Complete Idiot''s Guide To Understanding Islam (The Complete Idiot''s Guide)', 'https://images.isbndb.com/covers/23/38/9780028642338.jpg'), + ('0440235642', 'Black May : The Epic Story Of The Allies'' Defeat Of The German U-Boats In May 1943', 'https://images.isbndb.com/covers/56/44/9780440235644.jpg'), + ('0330486705', 'Louise Brindley Omnibus (Pb)', 'https://images.isbndb.com/covers/67/05/9780330486705.jpg'), + ('0670881872', 'An Incidental Memoir', 'https://images.isbndb.com/covers/18/71/9780670881871.jpg'), + ('0440111811', 'Changes', 'https://images.isbndb.com/covers/18/18/9780440111818.jpg'), + ('0064400557', 'Charlotte''s Web (Trophy Newbery)', 'https://images.isbndb.com/covers/05/58/9780064400558.jpg'), + ('067166607X', 'Bambi: A Life In The Woods', 'https://images.isbndb.com/covers/60/71/9780671666071.jpg'), + ('0312870582', '01-01-00', 'https://images.isbndb.com/covers/05/84/9780312870584.jpg'), + ('3423123222', 'Verlorene Wünsche.', 'https://images.isbndb.com/covers/32/28/9783423123228.jpg'), + ('3453064038', 'Incubus.', 'https://images.isbndb.com/covers/40/34/9783453064034.jpg'), + ('3404122631', 'Sonnenfeuer', 'https://images.isbndb.com/covers/26/39/9783404122639.jpg'), + ('3596134153', 'Die Klage Des Distelfinken', 'https://images.isbndb.com/covers/41/51/9783596134151.jpg'), + ('3453061187', 'Die Jury: Roman', 'https://images.isbndb.com/covers/11/87/9783453061187.jpg'), + ('3423107421', 'Der Ritter, Den Es Nicht Gab: Roman', 'https://images.isbndb.com/covers/74/26/9783423107426.jpg'), + ('3453161394', 'Der Gefallene Engel', 'https://images.isbndb.com/covers/13/99/9783453161399.jpg'), + ('3579007335', 'Muslimische Frauen In Deutschland Erzählen über Ihren Glauben', 'https://images.isbndb.com/covers/73/35/9783579007335.jpg'), + ('3257229372', 'Liebessabotage', 'https://images.isbndb.com/covers/93/70/9783257229370.jpg'), + ('3453088530', 'Alistair MacLean''s Zeit Der Attentäter', 'https://images.isbndb.com/covers/85/35/9783453088535.jpg'), + ('345305136X', 'Das Schweigen Der Lämmer', 'https://images.isbndb.com/covers/13/62/9783453051362.jpg'), + ('3257224974', 'Die Wahrheit über Lorin Jones: Roman', 'https://images.isbndb.com/covers/49/79/9783257224979.jpg'), + ('3404139674', 'Operation Schneewolf: Thriller', 'https://images.isbndb.com/covers/96/75/9783404139675.jpg'), + ('3442353793', 'Des Teufels Kardinal: Roman', 'https://images.isbndb.com/covers/37/98/9783442353798.jpg'), + ('3596129397', 'Mit Fünfzig Küssen Männer Anders.', 'https://images.isbndb.com/covers/93/93/9783596129393.jpg'), + ('3548257623', 'Die Zuckerbäckerin: Roman', 'https://images.isbndb.com/covers/76/24/9783548257624.jpg'), + ('3746613531', 'Kleine Schwäne: Kriminalroman', 'https://images.isbndb.com/covers/35/36/9783746613536.jpg'), + ('3746618169', 'Tango Finale', 'https://images.isbndb.com/covers/81/66/9783746618166.jpg'), + ('9972847012', 'Los Amigos Que Perdí (Spanish Edition)', 'https://images.isbndb.com/covers/70/11/9789972847011.jpg'), + ('9582700319', 'Manuela (Narrativa Colombiana) (Spanish Edition)', 'https://images.isbndb.com/covers/03/17/9789582700317.jpg'), + ('3257228031', 'Flamingofeder', 'https://images.isbndb.com/covers/80/38/9783257228038.jpg'), + ('3548248845', 'Der Fluch Des Falken', 'https://images.isbndb.com/covers/88/44/9783548248844.jpg'), + ('3446178694', 'Der Virtuose: Roman', 'https://images.isbndb.com/covers/86/94/9783446178694.jpg'), + ('3453198840', 'Der Gesang Des Troubadours', 'https://images.isbndb.com/covers/88/45/9783453198845.jpg'), + ('3404147294', 'Der Sohn Des Kreuzfahrers', 'https://images.isbndb.com/covers/72/98/9783404147298.jpg'), + ('3746619394', 'Die Provencalin', 'https://images.isbndb.com/covers/93/92/9783746619392.jpg'), + ('3426619857', 'Verso Casa', 'https://images.isbndb.com/covers/98/58/9783426619858.jpg'), + ('3499233045', 'Die Reise Nach Karlsbad.', 'https://images.isbndb.com/covers/30/43/9783499233043.jpg'), + ('3404142624', 'Der Schwarze Kelch', 'https://images.isbndb.com/covers/26/20/9783404142620.jpg'), + ('051604642X', 'The Story Of The U.S.S. Arizona (Cornerstones Of Freedom)', 'https://images.isbndb.com/covers/64/26/9780516046426.jpg'), + ('0380803151', 'Avalanche Soldier', 'https://images.isbndb.com/covers/31/56/9780380803156.jpg'), + ('0553568728', 'Star Wars: The Truce At Bakura', 'https://images.isbndb.com/covers/87/21/9780553568721.jpg'), + ('0553297988', 'Jedi Search (Star Wars: The Jedi Academy Trilogy, Vol. 1)', 'https://images.isbndb.com/covers/79/80/9780553297980.jpg'), + ('0671654209', 'The Burning Eye (Warworld, Book 1)', 'https://images.isbndb.com/covers/42/07/9780671654207.jpg'), + ('0884046818', 'Battlefield Earth: A Saga Of The Year 3000', 'https://images.isbndb.com/covers/68/13/9780884046813.jpg'), + ('0345289072', 'Inherit The Stars', 'https://images.isbndb.com/covers/90/70/9780345289070.jpg'), + ('0671720406', 'A Roil Of Stars', 'https://images.isbndb.com/covers/04/07/9780671720407.jpg'), + ('0345379802', 'The Han Solo Adventures: Han Solo At Stars'' End / Han Solo''s Revenge / Han Solo And The Lost Legacy (A Del Rey Book)', 'https://images.isbndb.com/covers/98/01/9780345379801.jpg'), + ('0886778697', 'The Faded Sun Trilogy: Kesrith, Shon''jir, And Kutath', 'https://images.isbndb.com/covers/86/99/9780886778699.jpg'), + ('0743435346', 'The Warmasters', 'https://images.isbndb.com/covers/53/45/9780743435345.jpg'), + ('0679448594', 'Primary Colors: A Novel Of Politics', 'https://images.isbndb.com/covers/85/94/9780679448594.jpg'), + ('0345313577', 'Job, A Comedy Of Justice', 'https://images.isbndb.com/covers/35/77/9780345313577.jpg'), + ('0671867172', 'The Lottery Winner: Alvirah And Willy Stories', 'https://images.isbndb.com/covers/71/71/9780671867171.jpg'), + ('0425189104', 'Murder On Mulberry Bend (Gaslight Mystery)', 'https://images.isbndb.com/covers/91/08/9780425189108.jpg'), + ('0061030635', 'WILD JUSTICE MM', 'https://images.isbndb.com/covers/06/35/9780061030635.jpg'), + ('0446613436', 'The Guardian', 'https://images.isbndb.com/covers/34/39/9780446613439.jpg'), + ('0449006530', 'Midnight Voices', 'https://images.isbndb.com/covers/65/35/9780449006535.jpg'), + ('006109157X', 'Dead Eyes', 'https://images.isbndb.com/covers/15/75/9780061091575.jpg'), + ('0440221315', 'The Gift', 'https://images.isbndb.com/covers/13/19/9780440221319.jpg'), + ('0553576011', 'Send No Flowers (Bed & Breakfast)', 'https://images.isbndb.com/covers/60/16/9780553576016.jpg'), + ('0451205294', 'Fatal Care', 'https://images.isbndb.com/covers/52/92/9780451205292.jpg'), + ('0345444892', 'Murder At Ford''s Theatre (Capital Crimes)', 'https://images.isbndb.com/covers/48/99/9780345444899.jpg'), + ('0446527785', 'A Bend In The Road', 'https://images.isbndb.com/covers/77/81/9780446527781.jpg'), + ('0375500685', 'Murder At The Library Of Congress', 'https://images.isbndb.com/covers/06/88/9780375500688.jpg'), + ('0375503218', 'My Cat Spit McGee', 'https://images.isbndb.com/covers/32/14/9780375503214.jpg'), + ('0755310047', 'Josephine Cox: Child Of The North', 'https://images.isbndb.com/covers/00/43/9780755310043.jpg'), + ('0752851950', 'The Little Princesses: The Story Of The Queen''s Childhood By Her Nanny', 'https://images.isbndb.com/covers/19/52/9780752851952.jpg'), + ('0747257574', 'Somewhere, Someday', 'https://images.isbndb.com/covers/75/78/9780747257578.jpg'), + ('056353723X', 'Down To Earth', 'https://images.isbndb.com/covers/72/36/9780563537236.jpg'), + ('185326041X', 'The Great Gatsby (Wordsworth Classics)', 'https://images.isbndb.com/covers/04/14/9781853260414.jpg'), + ('0312272057', 'Dry: A Memoir', 'https://images.isbndb.com/covers/20/50/9780312272050.jpg'), + ('0142003190', 'A Noble Radiance (Guido Brunetti, No 7)', 'https://images.isbndb.com/covers/31/90/9780142003190.jpg'), + ('042518336X', 'American Fuji', 'https://images.isbndb.com/covers/33/66/9780425183366.jpg'), + ('0613329740', 'Quidditch Through The Ages', 'https://images.isbndb.com/covers/97/43/9780613329743.jpg'), + ('0613325419', 'Fantastic Beasts And Where To Find Them (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/54/17/9780613325417.jpg'), + ('156389470X', 'Stardust: Being A Romance Within The Realms Of Faerie', 'https://images.isbndb.com/covers/47/01/9781563894701.jpg'), + ('0439551234', 'Mister Monday (Keys To The Kingdom, Book 1)', 'https://images.isbndb.com/covers/12/36/9780439551236.jpg'), + ('058253531X', 'Magic Slippers (New Method Supplementary Readers)', 'https://images.isbndb.com/covers/53/12/9780582535312.jpg'), + ('0836218353', 'Yukon Ho!', 'https://images.isbndb.com/covers/83/50/9780836218350.jpg'), + ('2842772032', 'Paysages De Bretagne', 'https://images.isbndb.com/covers/20/31/9782842772031.jpg'), + ('0836204387', 'The Calvin And Hobbes Tenth Anniversary Book', 'https://images.isbndb.com/covers/43/84/9780836204384.jpg'), + ('0345441435', 'Prospero''s Children', 'https://images.isbndb.com/covers/14/30/9780345441430.jpg'), + ('0812504755', 'The Legend Of Sleepy Hollow (Tor Classics)', 'https://images.isbndb.com/covers/47/50/9780812504750.jpg'), + ('0836217225', 'Revelations From A 45-Pound Purse', 'https://images.isbndb.com/covers/72/23/9780836217223.jpg'), + ('0030181011', 'A Kiss On The Nose Turns Anger Aside', 'https://images.isbndb.com/covers/10/16/9780030181016.jpg'), + ('0064407055', 'Ella Enchanted (Trophy Newbery)', 'https://images.isbndb.com/covers/70/52/9780064407052.jpg'), + ('0553262505', 'A Wizard Of Earthsea (The Earthsea Cycle, Book 1)', 'https://images.isbndb.com/covers/25/06/9780553262506.jpg'), + ('0689710887', 'Greenwitch', 'https://images.isbndb.com/covers/08/89/9780689710889.jpg'), + ('0689710879', 'The Dark Is Rising', 'https://images.isbndb.com/covers/08/72/9780689710872.jpg'), + ('0020427859', 'Over Sea, Under Stone', 'https://images.isbndb.com/covers/78/58/9780020427858.jpg'), + ('031286258X', 'The Books Of Great Alta: Comprising ''Sister Light, Sister Dark'' And ''White Jenna''', 'https://images.isbndb.com/covers/25/89/9780312862589.jpg'), + ('0836217616', 'The Child Within Has Been Awakened But The Old Lady On The Outside Just Collapsed: A Cathy Collection', 'https://images.isbndb.com/covers/76/12/9780836217612.jpg'), + ('0316107018', 'Politically, Fashionably, And Aerodynamically Incorrect: The First Outland Collection (Bloom County)', 'https://images.isbndb.com/covers/70/13/9780316107013.jpg'), + ('0886777828', 'The Dreaming Tree', 'https://images.isbndb.com/covers/78/21/9780886777821.jpg'), + ('0441068804', 'The Blue Sword', 'https://images.isbndb.com/covers/88/07/9780441068807.jpg'), + ('0141309814', 'The Hero And The Crown', 'https://images.isbndb.com/covers/98/11/9780141309811.jpg'), + ('0679032983', 'Walt Disney World, Universal Studios And Orlando ''97: Your Complete Guide To All The Magic (Fodor''s Walt Disney World, Universal Orlando And Seaworld (Fall Edition))', 'https://images.isbndb.com/covers/29/84/9780679032984.jpg'), + ('0679408835', 'Dreaming In Cuban', 'https://images.isbndb.com/covers/88/33/9780679408833.jpg'), + ('0316096199', 'Lucky: A Memoir', 'https://images.isbndb.com/covers/61/95/9780316096195.jpg'), + ('0689829655', 'Hatchet', 'https://images.isbndb.com/covers/96/59/9780689829659.jpg'), + ('059045899X', 'Amber Brown Is Not A Crayon', 'https://images.isbndb.com/covers/89/93/9780590458993.jpg'), + ('0385238614', 'Girls In Suits At Lunch', 'https://images.isbndb.com/covers/86/18/9780385238618.jpg'), + ('0758201605', 'Last Writes (Jaine Austen Mysteries)', 'https://images.isbndb.com/covers/16/07/9780758201607.jpg'), + ('1561384755', 'The Jungle Book (Children''s Classics)', 'https://images.isbndb.com/covers/47/54/9781561384754.jpg'), + ('1562820575', 'Walt Disney''s The Jungle Book: Illustrated Classic', 'https://images.isbndb.com/covers/05/72/9781562820572.jpg'), + ('185854176X', 'Little Women', 'https://images.isbndb.com/covers/17/61/9781858541761.jpg'), + ('0786830425', 'Disney''s Pocahontas (Illustrated Classic)', 'https://images.isbndb.com/covers/04/28/9780786830428.jpg'), + ('088101270X', 'Peter Pan (Heirloom Classic)', 'https://images.isbndb.com/covers/27/05/9780881012705.jpg'), + ('0881012718', 'Pinocchio', 'https://images.isbndb.com/covers/27/12/9780881012712.jpg'), + ('0312272782', 'This Is Graceanne''s Book: A Novel', 'https://images.isbndb.com/covers/27/84/9780312272784.jpg'), + ('044022831X', 'Love And Other Four-Letter Words (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/83/18/9780440228318.jpg'), + ('1590522265', 'Sisterchicks Do The Hula (Sisterchicks Series #2)', 'https://images.isbndb.com/covers/22/64/9781590522264.jpg'), + ('1551669307', 'A Gift To Last: Can This Be Christmas?\Shirley, Goodness And Mercy', 'https://images.isbndb.com/covers/93/04/9781551669304.jpg'), + ('060980202X', 'The Gentleman''s Guide To Life: What Every Guy Should Know About Living Large, Loving Well, Feeling Strong, And Looking Good', 'https://images.isbndb.com/covers/20/21/9780609802021.jpg'), + ('0698113950', 'Little Bear''s Trousers', 'https://images.isbndb.com/covers/39/54/9780698113954.jpg'), + ('043944246X', 'September 12th: We Knew Everything Would Be All Right', 'https://images.isbndb.com/covers/24/66/9780439442466.jpg'), + ('0060954884', 'Anna And The King Of Siam', 'https://images.isbndb.com/covers/48/88/9780060954888.jpg'), + ('0743422961', 'The Miss America Family : A Novel', 'https://images.isbndb.com/covers/29/63/9780743422963.jpg'), + ('0525946780', 'The Museum Of Hoaxes', 'https://images.isbndb.com/covers/67/86/9780525946786.jpg'), + ('1558534172', 'White House Ladies: Fascinating Tales And Colorful Curiosities', 'https://images.isbndb.com/covers/41/79/9781558534179.jpg'), + ('0609807919', 'Second Helpings (Jessica Darling, Book 2)', 'https://images.isbndb.com/covers/79/10/9780609807910.jpg'), + ('0060532149', 'Bare Necessity', 'https://images.isbndb.com/covers/21/47/9780060532147.jpg'), + ('081296683X', 'Girls'' Poker Night: A Novel Of High Stakes', 'https://images.isbndb.com/covers/68/31/9780812966831.jpg'), + ('188517182X', 'Urban Etiquette: Marvelous Manners For The Modern Metropolis', 'https://images.isbndb.com/covers/18/25/9781885171825.jpg'), + ('0820319198', 'Distant Friends (Brown Thrasher Books)', 'https://images.isbndb.com/covers/91/93/9780820319193.jpg'), + ('0446520829', 'The Most Beautiful Gift: A Christmas Story', 'https://images.isbndb.com/covers/08/29/9780446520829.jpg'), + ('0373250525', 'Starting From Square Two (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/05/23/9780373250523.jpg'), + ('0811802272', 'The Birthday Cake Book', 'https://images.isbndb.com/covers/22/77/9780811802277.jpg'), + ('1871512417', 'Maisie Digs Up The Past', 'https://images.isbndb.com/covers/24/10/9781871512410.jpg'), + ('042515517X', 'Year Of The Tiger (Paul Chavasse)', 'https://images.isbndb.com/covers/51/72/9780425155172.jpg'), + ('037322348X', 'Unforgettable (Harlequin Intrigue)', 'https://images.isbndb.com/covers/34/80/9780373223480.jpg'), + ('0393317382', 'Agents Of Innocence: A Novel', 'https://images.isbndb.com/covers/73/81/9780393317381.jpg'), + ('0375713751', 'I Don''t Know How She Does It', 'https://images.isbndb.com/covers/37/50/9780375713750.jpg'), + ('0312272766', 'Plan B: A Novel', 'https://images.isbndb.com/covers/27/60/9780312272760.jpg'), + ('0446526479', 'Amanda''s Wedding', 'https://images.isbndb.com/covers/64/70/9780446526470.jpg'), + ('068985546X', 'Mates, Dates, And Designer Divas', 'https://images.isbndb.com/covers/54/67/9780689855467.jpg'), + ('0689855451', 'Mates, Dates, And Cosmic Kisses', 'https://images.isbndb.com/covers/54/50/9780689855450.jpg'), + ('0140240209', 'The Dog I.Q. Test', 'https://images.isbndb.com/covers/02/07/9780140240207.jpg'), + ('0764525662', 'Low-Carb Dieting For Dummies ', 'https://images.isbndb.com/covers/56/67/9780764525667.jpg'), + ('0679771492', 'George Foreman''s Knock-Out-the-Fat Barbecue And Grilling Cookbook', 'https://images.isbndb.com/covers/14/94/9780679771494.jpg'), + ('0130743038', 'Betty Crocker''s Eat And Lose Weight', 'https://images.isbndb.com/covers/30/39/9780130743039.jpg'), + ('1856273296', 'Little Book Of Low Calorie Recipes (Little Recipe Books)', 'https://images.isbndb.com/covers/32/99/9781856273299.jpg'), + ('0842343253', 'Nicolae High (Left Behind: The Kids #5)', 'https://images.isbndb.com/covers/32/51/9780842343251.jpg'), + ('0201406462', 'Sibling Society', 'https://images.isbndb.com/covers/64/67/9780201406467.jpg'), + ('1895636337', 'The Inanimate World', 'https://images.isbndb.com/covers/63/38/9781895636338.jpg'), + ('0140131566', 'We Are Still Married: Stories And Letters', 'https://images.isbndb.com/covers/15/67/9780140131567.jpg'), + ('0446521442', 'The Illustrated Discovery Journal : Creating A Visual Autobiography Of Your Authentic Self', 'https://images.isbndb.com/covers/14/44/9780446521444.jpg'), + ('0062515802', 'Creating A Charmed Life: Sensible, Spiritual Secrets Every Busy Woman Should Know', 'https://images.isbndb.com/covers/58/03/9780062515803.jpg'), + ('0684859777', 'Eat Mangoes Naked: Finding Pleasure Everywhere (and Dancing With The Pits)', 'https://images.isbndb.com/covers/97/74/9780684859774.jpg'), + ('0684859769', 'Transformation Soup: Healing For The Splendidly Imperfect', 'https://images.isbndb.com/covers/97/67/9780684859767.jpg'), + ('0609807080', 'All The Joy You Can Stand: 101 Sacred Power Principles For Making Joy Real In Your Life', 'https://images.isbndb.com/covers/70/88/9780609807088.jpg'), + ('1556522126', 'Making Room For Making Art: A Thoughtful And Practical Guide To Bringing The Pleasure Of Artistic Expression Back Into Your Life', 'https://images.isbndb.com/covers/21/23/9781556522123.jpg'), + ('0440224845', 'Bittersweet', 'https://images.isbndb.com/covers/48/46/9780440224846.jpg'), + ('0671864173', 'Waiting To Exhale', 'https://images.isbndb.com/covers/41/70/9780671864170.jpg'), + ('0060959428', 'After Lucy: A Novel', 'https://images.isbndb.com/covers/94/25/9780060959425.jpg'), + ('0373079613', 'Enchanted: The Donovan Legacy (Silhouette Intimate Moments, #961)', 'https://images.isbndb.com/covers/96/12/9780373079612.jpg'), + ('0440200989', 'Weep No More, My Lady', 'https://images.isbndb.com/covers/09/87/9780440200987.jpg'), + ('0671568175', 'Let Me Call You Sweetheart', 'https://images.isbndb.com/covers/81/77/9780671568177.jpg'), + ('0449221504', 'K Is For Killer (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/15/01/9780449221501.jpg'), + ('0446607193', 'Unspeakable', 'https://images.isbndb.com/covers/71/93/9780446607193.jpg'), + ('0671705091', 'A Knight In Shining Armor', 'https://images.isbndb.com/covers/50/91/9780671705091.jpg'), + ('0505522675', 'Believe (Heartspell)', 'https://images.isbndb.com/covers/26/72/9780505522672.jpg'), + ('0515124656', 'Lady Moonlight', 'https://images.isbndb.com/covers/46/51/9780515124651.jpg'), + ('0373484003', 'Irish Hearts', 'https://images.isbndb.com/covers/40/03/9780373484003.jpg'), + ('0451198506', 'The Countess (Coulter Historical Romance)', 'https://images.isbndb.com/covers/85/01/9780451198501.jpg'), + ('0440223237', 'Malice', 'https://images.isbndb.com/covers/32/38/9780440223238.jpg'), + ('0679882820', 'Mr. Brown Can Moo, Can You : Dr. Seuss''s Book Of Wonderful Noises (Bright And Early Board Books)', 'https://images.isbndb.com/covers/28/24/9780679882824.jpg'), + ('0399226907', 'The Very Hungry Caterpillar', 'https://images.isbndb.com/covers/69/08/9780399226908.jpg'), + ('1558747109', 'Chicken Soup For The Cat & Dog Lover''s Soul: Celebrating Pets As Family With Stories About Cats, Dogs And Other Critters', 'https://images.isbndb.com/covers/71/04/9781558747104.jpg'), + ('0786884142', 'A Monk Swimming A Memoir', 'https://images.isbndb.com/covers/41/48/9780786884148.jpg'), + ('0767905385', 'Catch Me If You Can: The True Story Of A Real Fake', 'https://images.isbndb.com/covers/53/81/9780767905381.jpg'), + ('0671793551', 'A Fever In The Heart And Other True Cases: Ann Rule''s Crime Files, Volume III', 'https://images.isbndb.com/covers/35/55/9780671793555.jpg'), + ('0553574302', 'The Chalice And The Blade', 'https://images.isbndb.com/covers/43/02/9780553574302.jpg'), + ('0440211263', 'Circle Of Friends', 'https://images.isbndb.com/covers/12/66/9780440211266.jpg'), + ('0553260111', 'The Bourne Identity (Bourne Trilogy No.1)', 'https://images.isbndb.com/covers/01/13/9780553260113.jpg'), + ('0380775840', 'Amber Beach (Donovan, Book 1)', 'https://images.isbndb.com/covers/58/42/9780380775842.jpg'), + ('0394900014', 'The Cat In The Hat (Beginner Books(R))', 'https://images.isbndb.com/covers/00/18/9780394900018.jpg'), + ('0894803123', 'Ben & Jerry''s Homemade Ice Cream & Dessert Book', 'https://images.isbndb.com/covers/31/23/9780894803123.jpg'), + ('0440225892', 'The Heiress: The Bride Quest #3 (Bride Quest Series, 3)', 'https://images.isbndb.com/covers/58/98/9780440225898.jpg'), + ('0440236371', 'The Beauty (Bride Quest, Book 4)', 'https://images.isbndb.com/covers/63/75/9780440236375.jpg'), + ('1551660261', 'Fulfillment', 'https://images.isbndb.com/covers/02/64/9781551660264.jpg'), + ('1551665638', 'Call It Destiny', 'https://images.isbndb.com/covers/56/34/9781551665634.jpg'), + ('0553575007', 'Touch Of Enchantment', 'https://images.isbndb.com/covers/50/02/9780553575002.jpg'), + ('0553563343', 'Breath Of Magic', 'https://images.isbndb.com/covers/33/44/9780553563344.jpg'), + ('0943233941', 'Weddings From The Heart: Contemporary And Traditional Ceremonies For An Unforgettable Wedding', 'https://images.isbndb.com/covers/39/49/9780943233949.jpg'), + ('0694014532', 'Heidi Book And Charm (Charming Classics)', 'https://images.isbndb.com/covers/45/38/9780694014538.jpg'), + ('0743411439', 'Bitterroot', 'https://images.isbndb.com/covers/14/31/9780743411431.jpg'), + ('0553347233', 'The Beet Queen', 'https://images.isbndb.com/covers/72/34/9780553347234.jpg'), + ('0385152922', 'ONE-MINUTE BEDTIME STORIES (Doubleday Balloon Books)', 'https://images.isbndb.com/covers/29/21/9780385152921.jpg'), + ('0767900383', 'Under The Tuscan Sun: At Home In Italy', 'https://images.isbndb.com/covers/03/86/9780767900386.jpg'), + ('0786889055', 'Voodoo River (Elvis Cole Novels)', 'https://images.isbndb.com/covers/90/51/9780786889051.jpg'), + ('0440212626', 'Hard Fall', 'https://images.isbndb.com/covers/26/21/9780440212621.jpg'), + ('0553265415', 'How To Have A Smarter Baby: The Infant Stimulation Program For Enhancing Your Baby''s Natural Development', 'https://images.isbndb.com/covers/54/15/9780553265415.jpg'), + ('0449131793', 'Barrier Island', 'https://images.isbndb.com/covers/17/94/9780449131794.jpg'), + ('0380804697', 'Paradise Lost (Joanna Brady Mysteries, Book 9)', 'https://images.isbndb.com/covers/46/96/9780380804696.jpg'), + ('0425178951', 'Deep South (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/89/59/9780425178959.jpg'), + ('038548562X', 'How To Choose The Sex Of Your Baby', 'https://images.isbndb.com/covers/56/23/9780385485623.jpg'), + ('0684865742', '''Tis: A Memoir', 'https://images.isbndb.com/covers/57/44/9780684865744.jpg'), + ('0385313632', 'Hard Time (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/36/36/9780385313636.jpg'), + ('0866119892', 'The Secret Garden', 'https://images.isbndb.com/covers/98/94/9780866119894.jpg'), + ('0505523442', 'Prince Charming (Time Of Your Life)', 'https://images.isbndb.com/covers/34/40/9780505523440.jpg'), + ('0380772469', 'Forever In Your Embrace', 'https://images.isbndb.com/covers/24/69/9780380772469.jpg'), + ('0380899361', 'Come Love A Stranger', 'https://images.isbndb.com/covers/93/64/9780380899364.jpg'), + ('0671728571', 'Wildest Hearts', 'https://images.isbndb.com/covers/85/71/9780671728571.jpg'), + ('067146969X', 'Dawnfire', 'https://images.isbndb.com/covers/96/96/9780671469696.jpg'), + ('0446392308', 'Healing Back Pain: The Mind-Body Connection', 'https://images.isbndb.com/covers/23/03/9780446392303.jpg'), + ('0586207228', 'Screen Kisses', 'https://images.isbndb.com/covers/72/22/9780586207222.jpg'), + ('0821762559', 'Daughter Of Camelot (Merlin''s Legacy)', 'https://images.isbndb.com/covers/25/54/9780821762554.jpg'), + ('0553275399', 'Wild, Sweet Promise', 'https://images.isbndb.com/covers/53/91/9780553275391.jpg'), + ('0671034006', 'Heartbreaker', 'https://images.isbndb.com/covers/40/09/9780671034009.jpg'), + ('0425116840', 'The Cardinal Of The Kremlin', 'https://images.isbndb.com/covers/68/45/9780425116845.jpg'), + ('0882893327', 'Voodoo Queen, The (Pelican Pouch Series)', 'https://images.isbndb.com/covers/33/27/9780882893327.jpg'), + ('0380817152', 'The Golden One (Amelia Peabody Mystery)', 'https://images.isbndb.com/covers/71/53/9780380817153.jpg'), + ('0345302907', 'The Heaven Makers', 'https://images.isbndb.com/covers/29/08/9780345302908.jpg'), + ('0340565829', 'Teach Yourself Further Spanish Pb', 'https://images.isbndb.com/covers/58/27/9780340565827.jpg'), + ('0425191184', 'Red Rabbit (Tom Clancy)', 'https://images.isbndb.com/covers/11/87/9780425191187.jpg'), + ('0872169014', 'The Bay Of Noon', 'https://images.isbndb.com/covers/90/12/9780872169012.jpg'), + ('0399142991', 'On The Occasion Of My Last Afternoon', 'https://images.isbndb.com/covers/29/94/9780399142994.jpg'), + ('0836218221', 'The Authoritative Calvin And Hobbes (A Calvin And Hobbes Treasury)', 'https://images.isbndb.com/covers/82/20/9780836218220.jpg'), + ('067988288X', 'Wild Magic (Immortals #1)', 'https://images.isbndb.com/covers/28/86/9780679882886.jpg'), + ('0590251597', 'Mary Anne Saves The Day (Baby-Sitters Club #4)', 'https://images.isbndb.com/covers/15/94/9780590251594.jpg'), + ('0679885307', 'The Random House Book Of Horse Stories', 'https://images.isbndb.com/covers/53/06/9780679885306.jpg'), + ('0590251589', 'The Truth About Stacey, Collector''s Edition (Baby-Sitters Club, No. 3)', 'https://images.isbndb.com/covers/15/87/9780590251587.jpg'), + ('0590227637', 'Claudia And The Phantom Phone Calls (The Baby-Sitters Club, No. 2)', 'https://images.isbndb.com/covers/76/36/9780590227636.jpg'), + ('0806903481', 'Great Book Of Whodunit Puzzles: Mini-Mysteries For You To Solve', 'https://images.isbndb.com/covers/34/84/9780806903484.jpg'), + ('0590224735', 'Kristy''s Great Idea (The Baby-Sitter''s Club #1)', 'https://images.isbndb.com/covers/47/34/9780590224734.jpg'), + ('0141301074', 'The Twits', 'https://images.isbndb.com/covers/10/75/9780141301075.jpg'), + ('0671016792', 'Skating For The Gold: Michelle Kwan & Tara Lipinski', 'https://images.isbndb.com/covers/67/91/9780671016791.jpg'), + ('0448409313', 'Morph Bumble Beast (Mighty Morphin Power Rangers)', 'https://images.isbndb.com/covers/93/13/9780448409313.jpg'), + ('0452278902', 'The Green Mile: The Complete Serial Novel', 'https://images.isbndb.com/covers/89/05/9780452278905.jpg'), + ('074343627X', 'Dreamcatcher', 'https://images.isbndb.com/covers/62/74/9780743436274.jpg'), + ('039914465X', 'Southern Cross (Andy Brazil)', 'https://images.isbndb.com/covers/46/53/9780399144653.jpg'), + ('1558747699', 'Chicken Soup For The Writer''s Soul: Stories To Open The Heart And Rekindle The Spirit Of Writers', 'https://images.isbndb.com/covers/76/92/9781558747692.jpg'), + ('067102423X', 'Bag Of Bones', 'https://images.isbndb.com/covers/42/39/9780671024239.jpg'), + ('1891620487', 'American Greats', 'https://images.isbndb.com/covers/04/85/9781891620485.jpg'), + ('0060009225', 'Call Each River Jordan (Abel Jones Mysteries)', 'https://images.isbndb.com/covers/92/29/9780060009229.jpg'), + ('0380820870', 'Shadows Of Glory', 'https://images.isbndb.com/covers/08/70/9780380820870.jpg'), + ('0380797399', 'Faded Coat Of Blue (Abel Jones Mysteries)', 'https://images.isbndb.com/covers/73/94/9780380797394.jpg'), + ('0060198524', 'Population: 485: Meeting Your Neighbors One Siren At A Time', 'https://images.isbndb.com/covers/85/27/9780060198527.jpg'), + ('0345334531', 'The Feast Of All Saints', 'https://images.isbndb.com/covers/45/34/9780345334534.jpg'), + ('0515103993', 'Bad Medicine', 'https://images.isbndb.com/covers/39/91/9780515103991.jpg'), + ('1550130994', 'Photography And The Art Of Seeing', 'https://images.isbndb.com/covers/09/97/9781550130997.jpg'), + ('0316316962', 'The Tipping Point: How Little Things Can Make A Big Difference', 'https://images.isbndb.com/covers/69/65/9780316316965.jpg'), + ('0062506080', 'On Relationship', 'https://images.isbndb.com/covers/60/85/9780062506085.jpg'), + ('0142001007', 'City Of Djinns: A Year In Delhi', 'https://images.isbndb.com/covers/10/04/9780142001004.jpg'), + ('0060920432', 'Flow: The Psychology Of Optimal Experience', 'https://images.isbndb.com/covers/04/32/9780060920432.jpg'), + ('0786884061', 'The Man Who Loved Only Numbers: The Story Of Paul Erdos And The Search For Mathematical Truth', 'https://images.isbndb.com/covers/40/63/9780786884063.jpg'), + ('0691005419', 'Small Worlds', 'https://images.isbndb.com/covers/54/16/9780691005416.jpg'), + ('0060505265', 'The Sewing Circles Of Herat: A Personal Voyage Through Afghanistan', 'https://images.isbndb.com/covers/52/64/9780060505264.jpg'), + ('0864427433', 'Lonely Planet Rajasthan (Lonely Planet Rajasthan, 2nd Ed)', 'https://images.isbndb.com/covers/74/34/9780864427434.jpg'), + ('0864424574', 'In Rajasthan (Lonely Planet Journeys)', 'https://images.isbndb.com/covers/45/70/9780864424570.jpg'), + ('0813812860', 'Out Here On Soap Creek: An Autobiography', 'https://images.isbndb.com/covers/28/61/9780813812861.jpg'), + ('0842372180', 'The Topsy-Turvy Kingdom', 'https://images.isbndb.com/covers/21/83/9780842372183.jpg'), + ('0399143947', 'The Tommyknockers', 'https://images.isbndb.com/covers/39/46/9780399143946.jpg'), + ('0066211085', 'Rebecca''s Tale: A Novel', 'https://images.isbndb.com/covers/10/84/9780066211084.jpg'), + ('042517476X', 'The Group: Six People In Search Of A Life', 'https://images.isbndb.com/covers/47/60/9780425174760.jpg'), + ('0440237262', 'The Program', 'https://images.isbndb.com/covers/72/66/9780440237266.jpg'), + ('0380713330', 'Animal Liberation', 'https://images.isbndb.com/covers/33/32/9780380713332.jpg'), + ('0195002237', 'The Tibetan Book Of The Dead: Or, The After-Death Experiences On The Bardo Plane, According To Lama Kazi Dawa-Samdup''s English Rendering (Galaxy Books)', 'https://images.isbndb.com/covers/22/32/9780195002232.jpg'), + ('014004387X', 'Fifth Business (Deptford Trilogy)', 'https://images.isbndb.com/covers/38/77/9780140043877.jpg'), + ('0895772620', 'Treasure Island (The World''s Best Reading)', 'https://images.isbndb.com/covers/26/26/9780895772626.jpg'), + ('0517618141', 'Heidi: Childrens Classics', 'https://images.isbndb.com/covers/81/41/9780517618141.jpg'), + ('0192833871', 'Four Major Plays: A Doll''s House, Ghosts, Hedda Gabler, The Master Builder (Oxford World''s Classics)', 'https://images.isbndb.com/covers/38/77/9780192833877.jpg'), + ('0393960579', 'The Awakening (Norton Critical Editions)', 'https://images.isbndb.com/covers/05/70/9780393960570.jpg'), + ('1551113074', 'Heart Of Darkness (Broadview Literary Texts)', 'https://images.isbndb.com/covers/30/74/9781551113074.jpg'), + ('0486264785', 'The Importance Of Being Earnest (Dover Thrift Editions)', 'https://images.isbndb.com/covers/47/83/9780486264783.jpg'), + ('0060809833', 'Brave New World', 'https://images.isbndb.com/covers/98/36/9780060809836.jpg'), + ('0441172660', 'Dune', 'https://images.isbndb.com/covers/26/65/9780441172665.jpg'), + ('0156711427', 'A Passage To India', 'https://images.isbndb.com/covers/14/25/9780156711425.jpg'), + ('0553206516', 'The Snow Leopard', 'https://images.isbndb.com/covers/65/17/9780553206517.jpg'), + ('0553550039', 'Stories Of Eva Luna', 'https://images.isbndb.com/covers/00/30/9780553550030.jpg'), + ('0345390458', 'Havana Bay (Arkady Renko Novels, No 4)', 'https://images.isbndb.com/covers/04/55/9780345390455.jpg'), + ('0061091871', 'Rebel (The Starbuck Chronicles, Book 1)', 'https://images.isbndb.com/covers/18/72/9780061091872.jpg'), + ('0425090787', 'The Fourth Deadly Sin', 'https://images.isbndb.com/covers/07/87/9780425090787.jpg'), + ('1929317999', 'Sailing The Dream', 'https://images.isbndb.com/covers/79/98/9781929317998.jpg'), + ('0553268880', 'The Prince Of Tides: A Novel', 'https://images.isbndb.com/covers/88/81/9780553268881.jpg'), + ('0385008910', 'Nethergate', 'https://images.isbndb.com/covers/89/14/9780385008914.jpg'), + ('0688042872', 'The Dinosaur Heresies: New Theories Unlocking The Mystery Of The Dinosaurs And Their Extinction', 'https://images.isbndb.com/covers/28/75/9780688042875.jpg'), + ('0671027107', 'Lily Of The Valley', 'https://images.isbndb.com/covers/71/00/9780671027100.jpg'), + ('0399145869', 'Deep South (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/58/65/9780399145865.jpg'), + ('0375405429', 'Italian Fever', 'https://images.isbndb.com/covers/54/26/9780375405426.jpg'), + ('0446521582', 'THE HONK AND HOLLER OPENING SOON', 'https://images.isbndb.com/covers/15/81/9780446521581.jpg'), + ('0151002630', 'The Magician''s Assistant', 'https://images.isbndb.com/covers/26/34/9780151002634.jpg'), + ('0316666009', '1st To Die: A Novel (Women''s Murder Club)', 'https://images.isbndb.com/covers/60/08/9780316666008.jpg'), + ('0316890197', 'The Evidence Against Her: A Novel', 'https://images.isbndb.com/covers/01/99/9780316890199.jpg'), + ('0446675253', 'Snow In August', 'https://images.isbndb.com/covers/52/53/9780446675253.jpg'), + ('0345451325', 'The Fall Of Reach (Halo, Bk. 1)', 'https://images.isbndb.com/covers/13/23/9780345451323.jpg'), + ('0330284142', 'Name Of The Rose (Picador Books)', 'https://images.isbndb.com/covers/41/41/9780330284141.jpg'), + ('0345391810', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/18/10/9780345391810.jpg'), + ('0140620524', 'Adventures Of Tom Sawyer (Penguin Popular Classics)', 'https://images.isbndb.com/covers/05/28/9780140620528.jpg'), + ('0312186118', 'Death In Kenya', 'https://images.isbndb.com/covers/61/11/9780312186111.jpg'), + ('0671516922', 'Trust Me', 'https://images.isbndb.com/covers/69/25/9780671516925.jpg'), + ('1586607251', 'Gideon''s Dawn', 'https://images.isbndb.com/covers/72/58/9781586607258.jpg'), + ('0671015206', 'The Millionaire Next Door', 'https://images.isbndb.com/covers/52/06/9780671015206.jpg'), + ('0440216540', 'Before And After', 'https://images.isbndb.com/covers/65/44/9780440216544.jpg'), + ('0449209598', 'Murder In The Smithsonian (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/95/92/9780449209592.jpg'), + ('0140062599', 'The Painter Of Signs (King Penguin)', 'https://images.isbndb.com/covers/25/95/9780140062595.jpg'), + ('0582349168', 'Witch And Other Stories (Heritage Of Literature)', 'https://images.isbndb.com/covers/91/62/9780582349162.jpg'), + ('0140041079', 'ROMMEL? : GUNNER WHO? - A Confrontation In The Desert', 'https://images.isbndb.com/covers/10/71/9780140041071.jpg'), + ('0140400117', 'The Rights Of Man (Classics)', 'https://images.isbndb.com/covers/01/13/9780140400113.jpg'), + ('0192815466', 'Persuasion (The World''s Classics)', 'https://images.isbndb.com/covers/54/60/9780192815460.jpg'), + ('0140431357', 'Tess Of The D''Urbervilles: A Pure Woman (Penguin Classics)', 'https://images.isbndb.com/covers/13/53/9780140431353.jpg'), + ('1575664054', 'The Patient''s Guide To Anesthesia: Making The Right Choices', 'https://images.isbndb.com/covers/40/57/9781575664057.jpg'), + ('0451209117', 'Under Pressure: The Final Voyage Of Submarine S-Five', 'https://images.isbndb.com/covers/91/15/9780451209115.jpg'), + ('0743236777', 'Under Pressure: The Final Voyage Of Submarine S-Five', 'https://images.isbndb.com/covers/67/75/9780743236775.jpg'), + ('037348481X', 'Turning Point', 'https://images.isbndb.com/covers/48/12/9780373484812.jpg'), + ('0553208314', 'Guidepost Treasury Of Love', 'https://images.isbndb.com/covers/83/13/9780553208313.jpg'), + ('0446611867', 'A Bend In The Road', 'https://images.isbndb.com/covers/18/62/9780446611862.jpg'), + ('0385336179', 'Shopaholic Ties The Knot (Shopaholic, No 3)', 'https://images.isbndb.com/covers/61/78/9780385336178.jpg'), + ('0972380698', 'An American Salad', 'https://images.isbndb.com/covers/06/90/9780972380690.jpg'), + ('155054439X', 'Batchelor Brothers'' Bed And Breakfast Pillow Book', 'https://images.isbndb.com/covers/43/98/9781550544398.jpg'), + ('060980619X', 'God Save The Sweet Potato Queens', 'https://images.isbndb.com/covers/61/97/9780609806197.jpg'), + ('0440900794', 'The Giver', 'https://images.isbndb.com/covers/07/95/9780440900795.jpg'), + ('0553560662', 'Princess Of Thieves', 'https://images.isbndb.com/covers/06/64/9780553560664.jpg'), + ('0373483880', 'The Macgregors; Serena, Caine-(2 Books In One)', 'https://images.isbndb.com/covers/38/84/9780373483884.jpg'), + ('0061042005', 'Suddenly (Avon)', 'https://images.isbndb.com/covers/20/03/9780061042003.jpg'), + ('0425046117', 'The House Of Mirth', 'https://images.isbndb.com/covers/61/11/9780425046111.jpg'), + ('0156619180', 'Moments Of Being', 'https://images.isbndb.com/covers/91/89/9780156619189.jpg'), + ('0553582755', 'One Door Away From Heaven', 'https://images.isbndb.com/covers/27/58/9780553582758.jpg'), + ('0486282694', 'Winesburg, Ohio (Dover Thrift Editions)', 'https://images.isbndb.com/covers/26/95/9780486282695.jpg'), + ('006101091X', 'The TV Guide Book Of Lists: Revealing Facts, Fascinating Fads, And Strange Phenomena From 50 Years Of Television', 'https://images.isbndb.com/covers/09/10/9780061010910.jpg'), + ('0452268060', 'How The Garcia Girls Lost Their Accents', 'https://images.isbndb.com/covers/80/67/9780452268067.jpg'), + ('0439099404', 'The Adventures Of Tom Sawyer', 'https://images.isbndb.com/covers/94/00/9780439099400.jpg'), + ('0525405224', 'Superfudge', 'https://images.isbndb.com/covers/52/21/9780525405221.jpg'), + ('0671759213', 'She''s Come Undone', 'https://images.isbndb.com/covers/92/16/9780671759216.jpg'), + ('044651652X', 'The Bridges Of Madison County', 'https://images.isbndb.com/covers/65/25/9780446516525.jpg'), + ('0312050631', 'Confessions Of A Failed Southern Lady', 'https://images.isbndb.com/covers/06/34/9780312050634.jpg'), + ('0452254264', '1984 (Plume)', 'https://images.isbndb.com/covers/42/68/9780452254268.jpg'), + ('0380786052', 'Midnight Lady', 'https://images.isbndb.com/covers/60/53/9780380786053.jpg'), + ('0446364282', 'Love''s Encore', 'https://images.isbndb.com/covers/42/87/9780446364287.jpg'), + ('0385337272', 'The Devil''s Banker', 'https://images.isbndb.com/covers/72/74/9780385337274.jpg'), + ('0140291903', 'Manhattan Memoir: American Girl; Manhattan, When I Was Young; Speaking With Strangers', 'https://images.isbndb.com/covers/19/02/9780140291902.jpg'), + ('0142002267', 'Word Freak: Heartbreak, Triumph, Genius, And Obsession In The World Of Competitive ScrabblePlayers', 'https://images.isbndb.com/covers/22/61/9780142002261.jpg'), + ('0671640925', 'Curse Of The Giant Muffins And Other Washington Maladies', 'https://images.isbndb.com/covers/09/27/9780671640927.jpg'), + ('0425099644', 'Shallows Of Night', 'https://images.isbndb.com/covers/96/43/9780425099643.jpg'), + ('0960809600', 'Peace Agitator: Story Of A. J. Muste', 'https://images.isbndb.com/covers/96/08/9780960809608.jpg'), + ('0439368030', 'Wizards Don''t Wear Graduation Gowns #45 (The Adventures Of The Bailey School Kids) (The Adventures Of The Bailey School Kids)', 'https://images.isbndb.com/covers/80/32/9780439368032.jpg'), + ('0785272984', 'Walking Wisely: Real Guidance For Life''s Journey', 'https://images.isbndb.com/covers/29/84/9780785272984.jpg'), + ('0060520221', 'Taming Your Gremlin: A Surprisingly Simple Method For Getting Out Of Your Own Way', 'https://images.isbndb.com/covers/02/29/9780060520229.jpg'), + ('0590443518', 'Help! I''m A Prisoner In The Library', 'https://images.isbndb.com/covers/35/17/9780590443517.jpg'), + ('0440409942', 'Harris And Me', 'https://images.isbndb.com/covers/99/46/9780440409946.jpg'), + ('0590438069', 'Losing Christina: Fog', 'https://images.isbndb.com/covers/80/63/9780590438063.jpg'), + ('0380720132', 'The Mystery Of The Cupboard (Avon Camelot Books)', 'https://images.isbndb.com/covers/01/32/9780380720132.jpg'), + ('1841952974', 'I''m Not Scared', 'https://images.isbndb.com/covers/29/70/9781841952970.jpg'), + ('0440967848', 'The Outside Shot', 'https://images.isbndb.com/covers/78/42/9780440967842.jpg'), + ('0842329277', 'Assassins (Left Behind, Book 6)', 'https://images.isbndb.com/covers/92/79/9780842329279.jpg'), + ('0842343296', 'The Search (Left Behind: The Kids #9)', 'https://images.isbndb.com/covers/32/99/9780842343299.jpg'), + ('0440439884', 'Island Of The Blue Dolphins', 'https://images.isbndb.com/covers/98/82/9780440439882.jpg'), + ('0842343288', 'Death Strike (Left Behind: The Kids) (Vol 8)', 'https://images.isbndb.com/covers/32/82/9780842343282.jpg'), + ('0590424165', 'Sideways Arithmetic From Wayside School', 'https://images.isbndb.com/covers/41/65/9780590424165.jpg'), + ('059030271X', 'Charlotte''s Web', 'https://images.isbndb.com/covers/27/15/9780590302715.jpg'), + ('0345339738', 'The Return Of The King (The Lord Of The Rings, Part 3)', 'https://images.isbndb.com/covers/97/37/9780345339737.jpg'), + ('0440413761', 'Tucket''s Gold (The Francis Tucket Books)', 'https://images.isbndb.com/covers/37/69/9780440413769.jpg'), + ('0590461001', 'The Hitchhiker (Point Horror Series)', 'https://images.isbndb.com/covers/10/09/9780590461009.jpg'), + ('0688149588', 'Lucy Forever And Miss Rosetree, Shrinks', 'https://images.isbndb.com/covers/95/81/9780688149581.jpg'), + ('0842343261', 'The Underground (Left Behind: The Kids #6)', 'https://images.isbndb.com/covers/32/68/9780842343268.jpg'), + ('084234327X', 'Busted! (Left Behind, The Kids 7)', 'https://images.isbndb.com/covers/32/75/9780842343275.jpg'), + ('0395280060', 'George And Martha Rise And Shine', 'https://images.isbndb.com/covers/00/65/9780395280065.jpg'), + ('0590451146', 'Behind The Lines (Point)', 'https://images.isbndb.com/covers/11/47/9780590451147.jpg'), + ('0064407314', 'Monster', 'https://images.isbndb.com/covers/73/11/9780064407311.jpg'), + ('0816707979', 'Five Children And It', 'https://images.isbndb.com/covers/79/73/9780816707973.jpg'), + ('034541036X', 'A Gift Of Hope: How We Survive Our Tragedies', 'https://images.isbndb.com/covers/03/68/9780345410368.jpg'), + ('0517187760', 'Crossing To Safety (Great Reads)', 'https://images.isbndb.com/covers/77/60/9780517187760.jpg'), + ('0446679593', 'Suzanne''s Diary For Nicholas', 'https://images.isbndb.com/covers/95/96/9780446679596.jpg'), + ('0679441557', 'Ladder Of Years', 'https://images.isbndb.com/covers/15/57/9780679441557.jpg'), + ('1567315658', 'Playing It By Heart: Taking Care Of Yourself No Matter What', 'https://images.isbndb.com/covers/56/53/9781567315653.jpg'), + ('0849916518', 'The Heart Reader', 'https://images.isbndb.com/covers/65/19/9780849916519.jpg'), + ('1565120310', 'Daughters Of Memory', 'https://images.isbndb.com/covers/03/10/9781565120310.jpg'), + ('156512104X', 'Right From Wrong: A Novel', 'https://images.isbndb.com/covers/10/41/9781565121041.jpg'), + ('0446690295', 'The Bondwoman''s Narrative', 'https://images.isbndb.com/covers/02/94/9780446690294.jpg'), + ('0886774268', 'Magic''s Price (The Last Herald-Mage Series, Book 3)', 'https://images.isbndb.com/covers/42/64/9780886774264.jpg'), + ('0886773520', 'Magic''s Pawn (The Last Herald-Mage Series, Book 1)', 'https://images.isbndb.com/covers/35/26/9780886773526.jpg'), + ('0886774012', 'Magic''s Promise (The Last Herald-Mage Series, Book 2)', 'https://images.isbndb.com/covers/40/11/9780886774011.jpg'), + ('1892065169', 'Kirith Kirin', 'https://images.isbndb.com/covers/51/62/9781892065162.jpg'), + ('0609808346', 'Dispatches From The Tenth Circle: The Best Of The Onion', 'https://images.isbndb.com/covers/83/44/9780609808344.jpg'), + ('0307157857', 'Richard Scarry''s Cars And Trucks And Things That Go', 'https://images.isbndb.com/covers/78/50/9780307157850.jpg'), + ('0141186151', 'Fifth Business (Penguin Classics)', 'https://images.isbndb.com/covers/61/53/9780141186153.jpg'), + ('0451121902', 'The Long Wait (Signet)', 'https://images.isbndb.com/covers/19/05/9780451121905.jpg'), + ('0679417796', 'The Alienist', 'https://images.isbndb.com/covers/77/98/9780679417798.jpg'), + ('0684833662', 'A Separate Peace (Scribner Classics)', 'https://images.isbndb.com/covers/36/68/9780684833668.jpg'), + ('1573225517', 'High Fidelity', 'https://images.isbndb.com/covers/55/19/9781573225519.jpg'), + ('0449909336', 'The Fifties', 'https://images.isbndb.com/covers/93/31/9780449909331.jpg'), + ('1550548913', 'How To Be A Canadian', 'https://images.isbndb.com/covers/89/14/9781550548914.jpg'), + ('0679311386', 'The Lion, The Fox And The Eagle', 'https://images.isbndb.com/covers/13/86/9780679311386.jpg'), + ('039396647X', 'War And Peace (Second Edition) (Norton Critical Editions)', 'https://images.isbndb.com/covers/64/73/9780393966473.jpg'), + ('0380973650', 'American Gods: A Novel', 'https://images.isbndb.com/covers/36/51/9780380973651.jpg'), + ('0375414487', 'Nobody''s Perfect: Writings From The New Yorker', 'https://images.isbndb.com/covers/44/80/9780375414480.jpg'), + ('0316346624', 'The Tipping Point: How Little Things Can Make A Big Difference', 'https://images.isbndb.com/covers/66/27/9780316346627.jpg'), + ('0802130208', 'A Confederacy Of Dunces', 'https://images.isbndb.com/covers/02/04/9780802130204.jpg'), + ('0312988990', 'American Son: A Portrait Of John F. Kennedy, Jr.', 'https://images.isbndb.com/covers/89/99/9780312988999.jpg'), + ('0842373195', 'Let''s Roll!: Ordinary People, Extraordinary Courage', 'https://images.isbndb.com/covers/31/97/9780842373197.jpg'), + ('0043510744', 'Metamorphosis', 'https://images.isbndb.com/covers/07/42/9780043510742.jpg'), + ('0340821191', 'The White Road', 'https://images.isbndb.com/covers/11/90/9780340821190.jpg'), + ('0333906306', 'Fiddleback: A Novel', 'https://images.isbndb.com/covers/63/09/9780333906309.jpg'), + ('0156004992', 'Heart Conditions', 'https://images.isbndb.com/covers/49/92/9780156004992.jpg'), + ('0156628708', 'Mrs. Dalloway', 'https://images.isbndb.com/covers/87/09/9780156628709.jpg'), + ('0752844059', 'Falls (Inspector Rebus S.)', 'https://images.isbndb.com/covers/40/53/9780752844053.jpg'), + ('0440208459', 'Burn Marks (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/84/57/9780440208457.jpg'), + ('0752848224', 'Resurrection Men (Inspector Rebus S.)', 'https://images.isbndb.com/covers/82/28/9780752848228.jpg'), + ('075285111X', 'A Question Of Blood', 'https://images.isbndb.com/covers/11/12/9780752851112.jpg'), + ('0449208672', 'The Cater Street Hangman', 'https://images.isbndb.com/covers/86/70/9780449208670.jpg'), + ('0060808241', 'Gaudy Night', 'https://images.isbndb.com/covers/82/42/9780060808242.jpg'), + ('0380725835', 'Endangered Species (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/58/30/9780380725830.jpg'), + ('0751514012', 'Virgin In The Ice (The Cadfael Chronicles)', 'https://images.isbndb.com/covers/40/18/9780751514018.jpg'), + ('0751511056', 'The Leper Of Saint Giles: The Fifth Chronicle Of Brother Cadfael (The Cadfael Chronicles)', 'https://images.isbndb.com/covers/10/55/9780751511055.jpg'), + ('186941358X', 'It Helps When You Take The Brake Off', 'https://images.isbndb.com/covers/35/83/9781869413583.jpg'), + ('0886775876', 'Legend Of Nightfall (Daw Book Collectors)', 'https://images.isbndb.com/covers/58/72/9780886775872.jpg'), + ('0451458680', 'Belarus', 'https://images.isbndb.com/covers/86/81/9780451458681.jpg'), + ('0060199652', 'Prodigal Summer', 'https://images.isbndb.com/covers/96/54/9780060199654.jpg'), + ('034541389X', 'Flesh And Blood (Alex Delaware)', 'https://images.isbndb.com/covers/38/95/9780345413895.jpg'), + ('0684871580', 'Germs : Biological Weapons And America''s Secret War', 'https://images.isbndb.com/covers/15/85/9780684871585.jpg'), + ('0738203548', 'Man''s Search For Ultimate Meaning', 'https://images.isbndb.com/covers/35/46/9780738203546.jpg'), + ('0805033203', 'A Short History Of A Small Place: A Novel', 'https://images.isbndb.com/covers/32/05/9780805033205.jpg'), + ('0316284955', 'White Oleander (Oprah''s Book Club)', 'https://images.isbndb.com/covers/49/50/9780316284950.jpg'), + ('0801855926', 'Friday', 'https://images.isbndb.com/covers/59/24/9780801855924.jpg'), + ('156352600X', 'The Coffeehouse Investor: How To Build Wealth, Ignore Wall Street And Get On With Your Life', 'https://images.isbndb.com/covers/60/08/9781563526008.jpg'), + ('0679427651', 'Scarves (Chic Simple) (Chic Simple Components)', 'https://images.isbndb.com/covers/76/50/9780679427650.jpg'), + ('0345412214', 'The Last Don', 'https://images.isbndb.com/covers/22/18/9780345412218.jpg'), + ('0345441702', 'The Sicilian', 'https://images.isbndb.com/covers/17/06/9780345441706.jpg'), + ('0451147367', 'The Bachman Books: Four Early Novels By Stephen King', 'https://images.isbndb.com/covers/73/63/9780451147363.jpg'), + ('0595168442', 'Cigar Box', 'https://images.isbndb.com/covers/84/46/9780595168446.jpg'), + ('044041668X', 'Ghost Boy', 'https://images.isbndb.com/covers/66/85/9780440416685.jpg'), + ('0451170539', 'The Fantastic Adventures Of Robin Hood (Signet)', 'https://images.isbndb.com/covers/05/38/9780451170538.jpg'), + ('0375501371', 'A Widow For One Year: A Novel', 'https://images.isbndb.com/covers/13/71/9780375501371.jpg'), + ('006447335X', 'Year Of The Griffin', 'https://images.isbndb.com/covers/33/54/9780064473354.jpg'), + ('0316155101', 'Coma: A Novel', 'https://images.isbndb.com/covers/51/06/9780316155106.jpg'), + ('0312283709', 'Running With Scissors: A Memoir', 'https://images.isbndb.com/covers/37/04/9780312283704.jpg'), + ('0060987529', 'Confessions Of An Ugly Stepsister: A Novel', 'https://images.isbndb.com/covers/75/27/9780060987527.jpg'), + ('0312951426', 'The Ice House: A Novel', 'https://images.isbndb.com/covers/14/29/9780312951429.jpg'), + ('0312953615', 'The Sculptress: A Novel', 'https://images.isbndb.com/covers/36/14/9780312953614.jpg'), + ('0671567829', 'The Bookman''s Wake (Cliff Janeway Novels)', 'https://images.isbndb.com/covers/78/28/9780671567828.jpg'), + ('0670820555', 'Spy Catcher: The Candid Autobiography Of A Senior Intelligence Officer', 'https://images.isbndb.com/covers/05/59/9780670820559.jpg'), + ('0553270931', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/09/38/9780553270938.jpg'), + ('0449241114', 'Crystal Cave', 'https://images.isbndb.com/covers/11/10/9780449241110.jpg'), + ('0394561236', 'Empire: A Novel', 'https://images.isbndb.com/covers/12/33/9780394561233.jpg'), + ('0375703764', 'House Of Leaves', 'https://images.isbndb.com/covers/37/68/9780375703768.jpg'), + ('0553092626', 'Playing For The Ashes (Inspector Lynley, Book 7)', 'https://images.isbndb.com/covers/26/22/9780553092622.jpg'), + ('0812545133', 'The Broken Sword: King Arthur Returns', 'https://images.isbndb.com/covers/51/35/9780812545135.jpg'), + ('0446523321', 'The Simple Truth', 'https://images.isbndb.com/covers/33/25/9780446523325.jpg'), + ('0441004164', 'Outcast Of Redwall (Redwall, Book 8)', 'https://images.isbndb.com/covers/41/64/9780441004164.jpg'), + ('0066620996', 'Good To Great: Why Some Companies Make The Leap... And Others Don''t', 'https://images.isbndb.com/covers/09/92/9780066620992.jpg'), + ('0553277472', 'Zen And The Art Of Motorcycle Maintenance: An Inquiry Into Values', 'https://images.isbndb.com/covers/74/70/9780553277470.jpg'), + ('0385494602', 'The Green', 'https://images.isbndb.com/covers/46/01/9780385494601.jpg'), + ('0345433106', 'The Syndrome', 'https://images.isbndb.com/covers/31/07/9780345433107.jpg'), + ('0345443020', 'Perdido Street Station', 'https://images.isbndb.com/covers/30/21/9780345443021.jpg'), + ('068487217X', 'Angelas Ashes: A Memoir', 'https://images.isbndb.com/covers/21/79/9780684872179.jpg'), + ('0684853159', 'The WASP FACTORY: A NOVEL', 'https://images.isbndb.com/covers/31/54/9780684853154.jpg'), + ('1573228281', 'A Gesture Life: A Novel', 'https://images.isbndb.com/covers/82/82/9781573228282.jpg'), + ('0446608262', 'The Lion''s Game', 'https://images.isbndb.com/covers/82/68/9780446608268.jpg'), + ('0385503970', 'The Master Of Rain', 'https://images.isbndb.com/covers/39/76/9780385503976.jpg'), + ('0316120324', 'I Don''t Want To Go To Jail: A Novel', 'https://images.isbndb.com/covers/03/26/9780316120326.jpg'), + ('0440214432', 'PRONTO', 'https://images.isbndb.com/covers/44/34/9780440214434.jpg'), + ('0440225779', 'The Uncanny', 'https://images.isbndb.com/covers/57/75/9780440225775.jpg'), + ('0385501676', 'You Are Not A Stranger Here', 'https://images.isbndb.com/covers/16/75/9780385501675.jpg'), + ('3446180850', 'Die Insel Des Vorigen Tages: Roman', 'https://images.isbndb.com/covers/08/57/9783446180857.jpg'), + ('0312242735', 'Vincent Price: A Daughter''s Biography', 'https://images.isbndb.com/covers/27/32/9780312242732.jpg'), + ('0440935741', 'The High King (Chronicles Of Prydain, Book 5)', 'https://images.isbndb.com/covers/57/42/9780440935742.jpg'), + ('0380804557', 'Stardust', 'https://images.isbndb.com/covers/45/59/9780380804559.jpg'), + ('3257229739', 'Tsugumi. Roman.', 'https://images.isbndb.com/covers/97/38/9783257229738.jpg'), + ('0099245027', 'The Testament', 'https://images.isbndb.com/covers/50/25/9780099245025.jpg'), + ('0970880812', 'Just Like Your Daddy', 'https://images.isbndb.com/covers/08/19/9780970880819.jpg'), + ('0595256775', 'Scooter And The Galactic Starship', 'https://images.isbndb.com/covers/67/78/9780595256778.jpg'), + ('0741412780', 'The Great Pretender', 'https://images.isbndb.com/covers/27/82/9780741412782.jpg'), + ('0684855380', 'My Sister From The Black Lagoon : A Novel Of My Life', 'https://images.isbndb.com/covers/53/87/9780684855387.jpg'), + ('0525946233', 'The Darwin Awards II: Unnatural Selection', 'https://images.isbndb.com/covers/62/36/9780525946236.jpg'), + ('0399513000', 'A Paler Shade Of White: The History Of White People In America - Volume II', 'https://images.isbndb.com/covers/30/08/9780399513008.jpg'), + ('0425161617', 'Accidental Tourist', 'https://images.isbndb.com/covers/16/16/9780425161616.jpg'), + ('0140149295', 'The Sixteenth Round: From Number 1 Contender To #45472', 'https://images.isbndb.com/covers/92/96/9780140149296.jpg'), + ('0553565028', 'Praetorian', 'https://images.isbndb.com/covers/50/27/9780553565027.jpg'), + ('0375410848', 'True History Of The Kelly Gang', 'https://images.isbndb.com/covers/08/40/9780375410840.jpg'), + ('0505520680', 'Ring Of Fire', 'https://images.isbndb.com/covers/06/85/9780505520685.jpg'), + ('0373710348', 'Beneath A Texas Sky: Count On A Cop (Harlequin Superromance No. 1034)', 'https://images.isbndb.com/covers/03/48/9780373710348.jpg'), + ('0451115457', 'Banners Of Silk', 'https://images.isbndb.com/covers/54/54/9780451115454.jpg'), + ('0373079710', 'Galahad In Blue Jeans (Way Out West) (Harlequin Romantic Suspense)', 'https://images.isbndb.com/covers/97/11/9780373079711.jpg'), + ('0861782356', 'Little Women', 'https://images.isbndb.com/covers/23/52/9780861782352.jpg'), + ('0515097039', 'Funny, Jonas, You Don''t Look Dead', 'https://images.isbndb.com/covers/70/30/9780515097030.jpg'), + ('0553560247', 'Dying For Chocolate (Goldy Culinary Mysteries, Book 2)', 'https://images.isbndb.com/covers/02/44/9780553560244.jpg'), + ('0836135474', 'Beyond The Golden Hills And Other Stories', 'https://images.isbndb.com/covers/54/73/9780836135473.jpg'), + ('0312974221', 'Between Husbands And Friends: A Novel', 'https://images.isbndb.com/covers/42/20/9780312974220.jpg'), + ('0345416600', 'Dave Barry Slept Here: A Sort Of History Of The United States', 'https://images.isbndb.com/covers/66/05/9780345416605.jpg'), + ('0684856476', 'The Rum Diary: A Novel', 'https://images.isbndb.com/covers/64/76/9780684856476.jpg'), + ('0800757734', 'Welcome To The Funny Farm: The All-True Misadventures Of A Woman On The Edge', 'https://images.isbndb.com/covers/77/31/9780800757731.jpg'), + ('0887309100', 'The Dilbert Future: Thriving On Business Stupidity In The 21st Century', 'https://images.isbndb.com/covers/91/06/9780887309106.jpg'), + ('1593080255', 'The Picture Of Dorian Gray (Barnes & Noble Classics Series)', 'https://images.isbndb.com/covers/02/59/9781593080259.jpg'), + ('1400041988', 'Pnin (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/19/85/9781400041985.jpg'), + ('0151010633', 'Q', 'https://images.isbndb.com/covers/06/39/9780151010639.jpg'), + ('9504604730', 'Don Quijote De La Mancha (Spanish Edition)', 'https://images.isbndb.com/covers/47/30/9789504604730.jpg'), + ('0802714358', 'Let Me Go', 'https://images.isbndb.com/covers/43/50/9780802714350.jpg'), + ('9500720418', 'Eva Luna - Bolsillo (Spanish Edition)', 'https://images.isbndb.com/covers/04/10/9789500720410.jpg'), + ('950491036X', 'La Sombra Del Viento (Autores Espanoles E Iberoamericanos) (Spanish Edition)', 'https://images.isbndb.com/covers/03/67/9789504910367.jpg'), + ('0340697083', 'Feng Shui: A Complete Guide (Beginners Guide)', 'https://images.isbndb.com/covers/70/85/9780340697085.jpg'), + ('2742739351', 'Les Soldats De Salamine', 'https://images.isbndb.com/covers/93/56/9782742739356.jpg'), + ('0671008668', 'MONARCH NOTES: J.D. Salinger''s Franny And Zooey', 'https://images.isbndb.com/covers/86/66/9780671008666.jpg'), + ('9509009059', 'Nueve Cuentos (Spanish Edition)', 'https://images.isbndb.com/covers/90/59/9789509009059.jpg'), + ('0312154542', 'Delta Style: Eve Wasn''t A Size 6 And Neither Am I', 'https://images.isbndb.com/covers/45/47/9780312154547.jpg'), + ('0064408639', 'The Austere Academy (A Series Of Unfortunate Events #5)', 'https://images.isbndb.com/covers/86/39/9780064408639.jpg'), + ('0954290100', 'Brideshead Regained', 'https://images.isbndb.com/covers/01/08/9780954290108.jpg'), + ('0553295772', 'Extreme Measures', 'https://images.isbndb.com/covers/57/71/9780553295771.jpg'), + ('0312858957', 'The Blind Mirror', 'https://images.isbndb.com/covers/89/57/9780312858957.jpg'), + ('0345330129', 'The Door Into Summer', 'https://images.isbndb.com/covers/01/23/9780345330123.jpg'), + ('0743410246', 'Lesser Evil (Star Trek Deep Space Nine: Mission Gamma, Book 4)', 'https://images.isbndb.com/covers/02/43/9780743410243.jpg'), + ('0743445643', 'Cathedral (Star Trek Deep Space Nine: Mission Gamma, Book 3)', 'https://images.isbndb.com/covers/56/41/9780743445641.jpg'), + ('0743445627', 'This Gray Spirit (Star Trek Deep Space Nine: Mission Gamma, Book 2)', 'https://images.isbndb.com/covers/56/27/9780743445627.jpg'), + ('0743445600', 'Twilight (Star Trek Deep Space Nine: Mission Gamma, Book 1)', 'https://images.isbndb.com/covers/56/03/9780743445603.jpg'), + ('0812575717', 'Ender''s Shadow (Ender, Book 5)', 'https://images.isbndb.com/covers/57/12/9780812575712.jpg'), + ('0671026356', 'Buffy The Vampire Slayer', 'https://images.isbndb.com/covers/63/56/9780671026356.jpg'), + ('0743427602', 'The Wisdom Of War (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/76/09/9780743427609.jpg'), + ('0671039288', 'Sins Of The Father (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/92/88/9780671039288.jpg'), + ('0671026364', 'Resurrecting Ravana (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/63/63/9780671026363.jpg'), + ('0671526103', 'Star Trek: The Return', 'https://images.isbndb.com/covers/61/08/9780671526108.jpg'), + ('0671021257', 'Star Trek: Preserver', 'https://images.isbndb.com/covers/12/52/9780671021252.jpg'), + ('067100882X', 'Star Trek: Dark Victory', 'https://images.isbndb.com/covers/88/26/9780671008826.jpg'), + ('0671008781', 'Star Trek: Spectre', 'https://images.isbndb.com/covers/87/89/9780671008789.jpg'), + ('2253007900', 'Gatsby Le Magnifique', 'https://images.isbndb.com/covers/79/06/9782253007906.jpg'), + ('0671874349', 'Life After God', 'https://images.isbndb.com/covers/43/46/9780671874346.jpg'), + ('0394838475', 'The Phantom Of The Opera (A Stepping Stone Book)', 'https://images.isbndb.com/covers/84/72/9780394838472.jpg'), + ('0743439775', 'Flight', 'https://images.isbndb.com/covers/97/70/9780743439770.jpg'), + ('1567311199', 'The Haunted Omnibus', 'https://images.isbndb.com/covers/11/98/9781567311198.jpg'), + ('0590482378', 'Stacey And The Bad Girls (Baby-Sitters Club, 87)', 'https://images.isbndb.com/covers/23/70/9780590482370.jpg'), + ('0590482238', 'Mary Anne Breaks The Rules (Baby-Sitters Club)', 'https://images.isbndb.com/covers/22/33/9780590482233.jpg'), + ('0451179706', 'Due Diligence (Rachel Gold Mystery)', 'https://images.isbndb.com/covers/97/08/9780451179708.jpg'), + ('0449219410', 'Skin Tight', 'https://images.isbndb.com/covers/94/16/9780449219416.jpg'), + ('0446609781', 'Beneath The Skin', 'https://images.isbndb.com/covers/97/84/9780446609784.jpg'), + ('0679454446', 'Lucky You', 'https://images.isbndb.com/covers/44/41/9780679454441.jpg'), + ('051512608X', 'The Reef', 'https://images.isbndb.com/covers/60/82/9780515126082.jpg'), + ('0373262329', 'Deadly Practice', 'https://images.isbndb.com/covers/23/28/9780373262328.jpg'), + ('0451124383', 'The Man From St. Petersburg', 'https://images.isbndb.com/covers/43/88/9780451124388.jpg'), + ('1565122208', 'Lightning Song', 'https://images.isbndb.com/covers/22/08/9781565122208.jpg'), + ('0312978332', 'Name Dropping: What If Two Very Different Women Had The Same Exact Name?', 'https://images.isbndb.com/covers/83/34/9780312978334.jpg'), + ('0345294459', 'Chameleon', 'https://images.isbndb.com/covers/44/56/9780345294456.jpg'), + ('0451408888', 'Trials Of Tiffany Trott', 'https://images.isbndb.com/covers/88/84/9780451408884.jpg'), + ('0671524968', 'Lucky', 'https://images.isbndb.com/covers/49/68/9780671524968.jpg'), + ('0515115487', 'Royal Invitation', 'https://images.isbndb.com/covers/54/82/9780515115482.jpg'), + ('1563841134', 'The Basic Steps To Successful Homeschooling', 'https://images.isbndb.com/covers/11/32/9781563841132.jpg'), + ('0060008776', 'Pagan Babies', 'https://images.isbndb.com/covers/87/72/9780060008772.jpg'), + ('0553574671', 'Prime Cut (Goldy Culinary Mysteries, Book 8)', 'https://images.isbndb.com/covers/46/78/9780553574678.jpg'), + ('0061057819', '''48', 'https://images.isbndb.com/covers/78/16/9780061057816.jpg'), + ('0761513779', 'The Homeschooling Book Of Answers: The 88 Most Important Questions Answered By Homeschooling''s Most Respected Voices', 'https://images.isbndb.com/covers/37/73/9780761513773.jpg'), + ('1565078241', 'What Makes A Man Feel Loved', 'https://images.isbndb.com/covers/82/46/9781565078246.jpg'), + ('0449908119', 'Angry Men, Passive Men: Understanding The Roots Of Men''s Anger And How To Move Beyond It', 'https://images.isbndb.com/covers/81/12/9780449908112.jpg'), + ('0312956126', 'The Scold''s Bridle: A Novel', 'https://images.isbndb.com/covers/61/27/9780312956127.jpg'), + ('0385334729', 'Her Father''s House', 'https://images.isbndb.com/covers/47/23/9780385334723.jpg'), + ('0805044698', 'The Day', 'https://images.isbndb.com/covers/46/90/9780805044690.jpg'), + ('075050059X', 'Sins Of Eden', 'https://images.isbndb.com/covers/05/93/9780750500593.jpg'), + ('0140165525', 'The Indoor Boy', 'https://images.isbndb.com/covers/55/24/9780140165524.jpg'), + ('3257231393', 'Sanft Entschlafen: Commissario Brunettis Sechster Fall', 'https://images.isbndb.com/covers/13/97/9783257231397.jpg'), + ('3453149874', 'Das Dilbert- Prinzip', 'https://images.isbndb.com/covers/98/78/9783453149878.jpg'), + ('9681500601', 'Platero Y Yo (Spanish Edition)', 'https://images.isbndb.com/covers/06/03/9789681500603.jpg'), + ('067088300X', 'The Girls'' Guide To Hunting And Fishing', 'https://images.isbndb.com/covers/30/04/9780670883004.jpg'), + ('0786869216', 'The Pleasure Of My Company: A Novel', 'https://images.isbndb.com/covers/92/13/9780786869213.jpg'), + ('0670878103', 'A New Song (The Mitford Years, Book 5)', 'https://images.isbndb.com/covers/81/09/9780670878109.jpg'), + ('0446528382', 'Jack: Straight From The Gut', 'https://images.isbndb.com/covers/83/82/9780446528382.jpg'), + ('0943233437', 'Random Acts Of Kindness', 'https://images.isbndb.com/covers/34/37/9780943233437.jpg'), + ('0375727345', 'House Of Sand And Fog (Oprah''s Book Club) (Vintage Contemporaries)', 'https://images.isbndb.com/covers/73/44/9780375727344.jpg'), + ('0156001454', 'Winterdance: The Fine Madness Of Running The Iditarod', 'https://images.isbndb.com/covers/14/58/9780156001458.jpg'), + ('3440066738', 'Traumberufe Rund Ums Pferd', 'https://images.isbndb.com/covers/67/37/9783440066737.jpg'), + ('0446608890', 'Saving Faith', 'https://images.isbndb.com/covers/88/93/9780446608893.jpg'), + ('0061059137', 'Blade', 'https://images.isbndb.com/covers/91/31/9780061059131.jpg'), + ('059044316X', 'The Cheerleader (Point Thriller)', 'https://images.isbndb.com/covers/31/66/9780590443166.jpg'), + ('0316781460', 'Live From New York: An Uncensored History Of Saturday Night Live', 'https://images.isbndb.com/covers/14/66/9780316781466.jpg'), + ('0425188787', 'Hunting Season (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/87/81/9780425188781.jpg'), + ('0345382323', 'The PMS Outlaws : An Elizabeth MacPherson Novel', 'https://images.isbndb.com/covers/23/20/9780345382320.jpg'), + ('0312983298', 'Full Speed', 'https://images.isbndb.com/covers/32/91/9780312983291.jpg'), + ('0553270249', 'Death On Deadline: A Nero Wolfe Mystery', 'https://images.isbndb.com/covers/02/42/9780553270242.jpg'), + ('0553275852', 'The Monkey''s Raincoat', 'https://images.isbndb.com/covers/58/58/9780553275858.jpg'), + ('0440201330', 'The Five Bells And Bladebone', 'https://images.isbndb.com/covers/13/35/9780440201335.jpg'), + ('0449147398', 'Wildest Dreams', 'https://images.isbndb.com/covers/73/99/9780449147399.jpg'), + ('0747546215', 'The Tulip', 'https://images.isbndb.com/covers/62/14/9780747546214.jpg'), + ('0006513409', 'Making Of Minty Malone', 'https://images.isbndb.com/covers/34/07/9780006513407.jpg'), + ('0312980345', 'Second Thyme Around', 'https://images.isbndb.com/covers/03/44/9780312980344.jpg'), + ('0743437640', 'The Mulberry Tree', 'https://images.isbndb.com/covers/76/46/9780743437646.jpg'), + ('1551668912', 'Thursdays At Eight', 'https://images.isbndb.com/covers/89/18/9781551668918.jpg'), + ('0688009387', 'The Blue Sword', 'https://images.isbndb.com/covers/93/80/9780688009380.jpg'), + ('0380017601', 'Love Story', 'https://images.isbndb.com/covers/76/07/9780380017607.jpg'), + ('0671024418', 'City Of The Dead (Resident Evil #3)', 'https://images.isbndb.com/covers/44/13/9780671024413.jpg'), + ('067102440X', 'Caliban Cove (Resident Evil #2)', 'https://images.isbndb.com/covers/44/06/9780671024406.jpg'), + ('0671024426', 'Underworld (Resident Evil #4)', 'https://images.isbndb.com/covers/44/20/9780671024420.jpg'), + ('0671024396', 'The Umbrella Conspiracy (Resident Evil #1)', 'https://images.isbndb.com/covers/43/90/9780671024390.jpg'), + ('0140346848', 'The Not-So-Jolly Roger (The Time Warp Trio)', 'https://images.isbndb.com/covers/68/48/9780140346848.jpg'), + ('0140346031', 'The Knights Of The Kitchen Table (Time Warp Trio)', 'https://images.isbndb.com/covers/60/39/9780140346039.jpg'), + ('0613286626', 'Summer Reading Is Killing Me! (Time Warp Trio)', 'https://images.isbndb.com/covers/66/26/9780613286626.jpg'), + ('0553568051', 'The Curious Eat Themselves', 'https://images.isbndb.com/covers/80/59/9780553568059.jpg'), + ('042515601X', 'Acts Of War (Tom Clancy''s Op-Center, Book 4)', 'https://images.isbndb.com/covers/60/18/9780425156018.jpg'), + ('0333782259', 'The Creative Writing Coursebook: Forty Authors Share Advice And Exercises For Fiction And Poetry', 'https://images.isbndb.com/covers/22/55/9780333782255.jpg'), + ('0435120964', 'To Kill A Mockingbird (New Windmill)', 'https://images.isbndb.com/covers/09/62/9780435120962.jpg'), + ('0140293442', 'Fever Pitch', 'https://images.isbndb.com/covers/34/49/9780140293449.jpg'), + ('0571097103', 'Wild Flowers Of Chalk And Limestone', 'https://images.isbndb.com/covers/71/04/9780571097104.jpg'), + ('0140293469', 'HIGH FIDELITY', 'https://images.isbndb.com/covers/34/63/9780140293463.jpg'), + ('0920668372', 'Love You Forever', 'https://images.isbndb.com/covers/83/75/9780920668375.jpg'), + ('0375703861', 'White Teeth: A Novel', 'https://images.isbndb.com/covers/38/67/9780375703867.jpg'), + ('0060391537', 'Quivers: A Life', 'https://images.isbndb.com/covers/15/39/9780060391539.jpg'), + ('0156011042', 'East Of The Mountains', 'https://images.isbndb.com/covers/10/44/9780156011044.jpg'), + ('0812566637', 'Legends: Short Novels By The Masters Of Modern Fantasy, Vol. 1', 'https://images.isbndb.com/covers/66/35/9780812566635.jpg'), + ('0060391448', 'Wicked: The Life And Times Of The Wicked Witch Of The West', 'https://images.isbndb.com/covers/14/47/9780060391447.jpg'), + ('0684829975', 'The Vision Of Emma Blau', 'https://images.isbndb.com/covers/99/75/9780684829975.jpg'), + ('0451099648', 'Fire-starter', 'https://images.isbndb.com/covers/96/48/9780451099648.jpg'), + ('0671776975', 'A River Runs Through It And Other Stories', 'https://images.isbndb.com/covers/69/78/9780671776978.jpg'), + ('0440967694', 'The Outsiders', 'https://images.isbndb.com/covers/76/99/9780440967699.jpg'), + ('0060801115', 'Death Be Not Proud A Memoir', 'https://images.isbndb.com/covers/11/13/9780060801113.jpg'), + ('0553149660', 'The Catcher In The Rye', 'https://images.isbndb.com/covers/96/61/9780553149661.jpg'), + ('0425152251', 'Sophie''s World: A Novel About The History Of Philosophy', 'https://images.isbndb.com/covers/22/56/9780425152256.jpg'), + ('0312924585', 'The Silence Of The Lambs', 'https://images.isbndb.com/covers/45/84/9780312924584.jpg'), + ('0684718634', 'Cry, The Beloved Country', 'https://images.isbndb.com/covers/86/37/9780684718637.jpg'), + ('0385479565', 'The Hot Zone: A Terrifying True Story', 'https://images.isbndb.com/covers/95/61/9780385479561.jpg'), + ('0876056354', 'Snakes: Their Care And Keeping', 'https://images.isbndb.com/covers/63/56/9780876056356.jpg'), + ('0375714383', 'Born Free: A Lioness Of Two Worlds', 'https://images.isbndb.com/covers/43/82/9780375714382.jpg'), + ('0441718213', 'The Revenants', 'https://images.isbndb.com/covers/82/14/9780441718214.jpg'), + ('0385499094', 'Akhenaten: Dweller In Truth A Novel', 'https://images.isbndb.com/covers/90/95/9780385499095.jpg'), + ('0743421574', 'Shanghai Baby: A Novel', 'https://images.isbndb.com/covers/15/77/9780743421577.jpg'), + ('0140132708', 'Midnight''s Children', 'https://images.isbndb.com/covers/27/00/9780140132700.jpg'), + ('0312309295', 'Some Days There''s Pie: A Novel', 'https://images.isbndb.com/covers/92/99/9780312309299.jpg'), + ('0671578103', 'Dragonne''s Eg', 'https://images.isbndb.com/covers/81/07/9780671578107.jpg'), + ('0756401364', 'Long Hot Summoning: The Keeper''s Chronicles #3', 'https://images.isbndb.com/covers/13/68/9780756401368.jpg'), + ('0886779758', 'The Second Summoning (The Keeper''s Chronicles, No 2)', 'https://images.isbndb.com/covers/97/57/9780886779757.jpg'), + ('1931561230', 'Sleep Toward Heaven: A Novel', 'https://images.isbndb.com/covers/12/35/9781931561235.jpg'), + ('0807085464', 'LOST WOODS - The Discovered Writing Of Rachel Carson', 'https://images.isbndb.com/covers/54/62/9780807085462.jpg'), + ('0060504072', 'Small Wonder: Essays', 'https://images.isbndb.com/covers/40/76/9780060504076.jpg'), + ('0345460952', 'The Salmon Of Doubt', 'https://images.isbndb.com/covers/09/50/9780345460950.jpg'), + ('0312274920', 'Round Ireland With A Fridge', 'https://images.isbndb.com/covers/49/24/9780312274924.jpg'), + ('0007134495', 'Parzival And The Stone From Heaven: A Grail Romance Retold For Our Time', 'https://images.isbndb.com/covers/44/96/9780007134496.jpg'), + ('0440408903', 'The Remarkable Journey Of Prince Jen', 'https://images.isbndb.com/covers/89/01/9780440408901.jpg'), + ('038081658X', 'The Fresco', 'https://images.isbndb.com/covers/65/83/9780380816583.jpg'), + ('0380791978', 'The Family Tree', 'https://images.isbndb.com/covers/19/72/9780380791972.jpg'), + ('0345397800', 'Cheetah Chase', 'https://images.isbndb.com/covers/78/05/9780345397805.jpg'), + ('0345409671', 'Memnoch The Devil (Vampire Chronicles)', 'https://images.isbndb.com/covers/96/76/9780345409676.jpg'), + ('0441007392', 'Through Alien Eyes', 'https://images.isbndb.com/covers/73/94/9780441007394.jpg'), + ('0441006329', 'The Color Of Distance', 'https://images.isbndb.com/covers/63/28/9780441006328.jpg'), + ('0380791986', 'Six Moon Dance', 'https://images.isbndb.com/covers/19/89/9780380791989.jpg'), + ('0886771544', 'Lythande (Daw Science Fiction)', 'https://images.isbndb.com/covers/15/46/9780886771546.jpg'), + ('0312974485', 'The Samurai''s Wife: A Novel (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/44/80/9780312974480.jpg'), + ('0312979584', 'Black Lotus (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/95/84/9780312979584.jpg'), + ('0553380958', 'Snow Crash (Bantam Spectra Book)', 'https://images.isbndb.com/covers/09/58/9780553380958.jpg'), + ('0756400805', 'The Book Of Air: Volume Four Of The Dragon Quartet', 'https://images.isbndb.com/covers/08/04/9780756400804.jpg'), + ('0886779014', 'Book Of Fire (Dragon Quartet)', 'https://images.isbndb.com/covers/90/16/9780886779016.jpg'), + ('0886776880', 'The Book Of Water (Dragon Quartet, Vol. Two)', 'https://images.isbndb.com/covers/68/86/9780886776886.jpg'), + ('0886775744', 'The Book Of Earth (Dragon Quartet, Vol. One)', 'https://images.isbndb.com/covers/57/42/9780886775742.jpg'), + ('0395272238', 'The Fellowship Of The Ring (Lord Of The Rings)', 'https://images.isbndb.com/covers/22/37/9780395272237.jpg'), + ('0380819007', 'Mendoza In Hollywood (A Novel Of The Company, Book 3)', 'https://images.isbndb.com/covers/90/03/9780380819003.jpg'), + ('0380731800', 'Sky Coyote (A Novel Of The Company, Book 2)', 'https://images.isbndb.com/covers/18/00/9780380731800.jpg'), + ('0142300608', 'Fire Bringer', 'https://images.isbndb.com/covers/06/02/9780142300602.jpg'), + ('087951602X', 'Temporary Agency', 'https://images.isbndb.com/covers/60/24/9780879516024.jpg'), + ('042518627X', 'Mister Posterior And The Genius Child', 'https://images.isbndb.com/covers/62/75/9780425186275.jpg'), + ('0380731797', 'In The Garden Of Iden (A Novel Of The Company, Book 1)', 'https://images.isbndb.com/covers/17/94/9780380731794.jpg'), + ('0970851715', 'Secret', 'https://images.isbndb.com/covers/17/10/9780970851710.jpg'), + ('1557504644', 'First To Fight: An Inside View Of The U.S. Marine Corps (Bluejacket Books)', 'https://images.isbndb.com/covers/46/47/9781557504647.jpg'), + ('081120958X', 'Selected Poems (William Carlos Williams)', 'https://images.isbndb.com/covers/95/88/9780811209588.jpg'), + ('0534525075', 'Marriages And Families: Making Choices In A Diverse Society', 'https://images.isbndb.com/covers/50/71/9780534525071.jpg'), + ('0553583891', 'Dream Island (Medieval Trilogy)', 'https://images.isbndb.com/covers/38/92/9780553583892.jpg'), + ('0684849739', 'The Bible Code', 'https://images.isbndb.com/covers/97/37/9780684849737.jpg'), + ('0312171838', 'Bachelor Brothers'' Bed & Breakfast', 'https://images.isbndb.com/covers/18/34/9780312171834.jpg'), + ('0688175716', 'Strange But True', 'https://images.isbndb.com/covers/57/19/9780688175719.jpg'), + ('0743467604', 'That''s Amore', 'https://images.isbndb.com/covers/76/05/9780743467605.jpg'), + ('0671042505', 'The Last Chance Cafe: A Novel', 'https://images.isbndb.com/covers/25/09/9780671042509.jpg'), + ('0743205413', 'The Summer Of My Greek Taverna: A Memoir', 'https://images.isbndb.com/covers/54/12/9780743205412.jpg'), + ('0399147853', 'Time And Chance', 'https://images.isbndb.com/covers/78/52/9780399147852.jpg'), + ('0425162443', 'The Rapture Of Canaan', 'https://images.isbndb.com/covers/24/46/9780425162446.jpg'), + ('0966482018', 'The Eleanor Roosevelt Girls', 'https://images.isbndb.com/covers/20/10/9780966482010.jpg'), + ('1400060052', 'Lucia, Lucia: A Novel', 'https://images.isbndb.com/covers/00/54/9781400060054.jpg'), + ('0451181409', 'Simon Says', 'https://images.isbndb.com/covers/14/04/9780451181404.jpg'), + ('0060505559', 'To The Heart Of The Nile: Lady Florence Baker And The Exploration Of Central Africa', 'https://images.isbndb.com/covers/55/54/9780060505554.jpg'), + ('0312104472', 'Dancing In The Dark', 'https://images.isbndb.com/covers/44/74/9780312104474.jpg'), + ('1551667533', 'Recipes For Easy Living', 'https://images.isbndb.com/covers/75/39/9781551667539.jpg'), + ('0425183238', 'Mrs. Mike', 'https://images.isbndb.com/covers/32/36/9780425183236.jpg'), + ('0553802240', 'The Secret Hour', 'https://images.isbndb.com/covers/22/45/9780553802245.jpg'), + ('0373711646', 'Those Christmas Angels (Harlequin Superromance No. 1164)', 'https://images.isbndb.com/covers/16/42/9780373711642.jpg'), + ('0345423291', 'What We Keep: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/32/90/9780345423290.jpg'), + ('0515132020', 'Heaven And Earth (Three Sisters Island Trilogy)', 'https://images.isbndb.com/covers/20/21/9780515132021.jpg'), + ('0684864363', 'This Is My Daughter: A Novel', 'https://images.isbndb.com/covers/43/65/9780684864365.jpg'), + ('0515131229', 'Dance Upon The Air (Three Sisters Island Trilogy)', 'https://images.isbndb.com/covers/12/22/9780515131222.jpg'), + ('0451192974', 'Murder Under Blue Skies', 'https://images.isbndb.com/covers/29/74/9780451192974.jpg'), + ('0446679364', 'The Future Homemakers Of America', 'https://images.isbndb.com/covers/93/67/9780446679367.jpg'), + ('0345445732', 'Entering Normal (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/57/35/9780345445735.jpg'), + ('0553581430', 'Last Puzzle & Testament (Puzzle Lady Mysteries)', 'https://images.isbndb.com/covers/14/30/9780553581430.jpg'), + ('0451410157', 'Sweet Nothings', 'https://images.isbndb.com/covers/01/53/9780451410153.jpg'), + ('0373441320', 'A Snowball''s Chance/ A Christmas Carol (harlequin Duets, No. 66)', 'https://images.isbndb.com/covers/13/27/9780373441327.jpg'), + ('1551662906', 'Home To Eden', 'https://images.isbndb.com/covers/29/09/9781551662909.jpg'), + ('0373834748', 'Maitland Maternity Christmas: A Heartbeat Away/The Ends Of The Earth/Once In A Lifetime (Maitland Maternity Clinic Anthology)', 'https://images.isbndb.com/covers/47/47/9780373834747.jpg'), + ('0843943319', 'Christmas Pie (Leisure Historical Romance)', 'https://images.isbndb.com/covers/33/13/9780843943313.jpg'), + ('1570613818', 'Book Lust: Recommended Reading For Every Mood, Moment, And Reason', 'https://images.isbndb.com/covers/38/14/9781570613814.jpg'), + ('0743228022', 'Dirt Music : A Novel', 'https://images.isbndb.com/covers/80/22/9780743228022.jpg'), + ('0385494149', 'Enduring Love: A Novel', 'https://images.isbndb.com/covers/41/44/9780385494144.jpg'), + ('0312199368', 'The Next Step In The Dance: A Novel', 'https://images.isbndb.com/covers/93/64/9780312199364.jpg'), + ('0312199430', 'One Thousand White Women: The Journals Of May Dodd', 'https://images.isbndb.com/covers/94/32/9780312199432.jpg'), + ('1570089957', 'Rebekah: Women Of Genesis (Women Of Genesis (Forge))', 'https://images.isbndb.com/covers/99/54/9781570089954.jpg'), + ('0452282101', 'The Debt: What America Owes To Blacks', 'https://images.isbndb.com/covers/21/00/9780452282100.jpg'), + ('0060193689', 'Rule By Secrecy: The Hidden History That Connects The Trilateral Commision, The Freemasons And The Great Pyramids', 'https://images.isbndb.com/covers/36/83/9780060193683.jpg'), + ('048627263X', 'Flatland: A Romance Of Many Dimensions (Dover Thrift Editions)', 'https://images.isbndb.com/covers/26/34/9780486272634.jpg'), + ('0486270610', 'The Gift Of The Magi And Other Short Stories', 'https://images.isbndb.com/covers/06/16/9780486270616.jpg'), + ('0330330373', 'The Sculptress', 'https://images.isbndb.com/covers/03/74/9780330330374.jpg'), + ('0671318403', 'The Legend That Was Earth', 'https://images.isbndb.com/covers/84/06/9780671318406.jpg'), + ('0743440358', 'Vorpal Blade', 'https://images.isbndb.com/covers/03/56/9780743440356.jpg'), + ('0571135390', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/53/94/9780571135394.jpg'), + ('1557250219', 'Letters From Medjugorje', 'https://images.isbndb.com/covers/02/16/9781557250216.jpg'), + ('0451183746', 'The Road To Wellville: Tie-In', 'https://images.isbndb.com/covers/37/43/9780451183743.jpg'), + ('0316134317', 'The Family Of Pascual Duarte', 'https://images.isbndb.com/covers/43/16/9780316134316.jpg'), + ('0789467747', 'The Secrets Of Bach Flower Remedies', 'https://images.isbndb.com/covers/77/44/9780789467744.jpg'), + ('0071408398', 'More Than A Pink Cadillac : Mary Kay, Inc.''s Nine Leadership Keys To Success', 'https://images.isbndb.com/covers/83/94/9780071408394.jpg'), + ('038079487X', 'What Looks Like Crazy On An Ordinary Day (Oprah''s Book Club)', 'https://images.isbndb.com/covers/48/74/9780380794874.jpg'), + ('0684872153', 'Angela''s Ashes: A Memoir', 'https://images.isbndb.com/covers/21/55/9780684872155.jpg'), + ('0060926317', 'Mutant Message Down Under', 'https://images.isbndb.com/covers/63/11/9780060926311.jpg'), + ('0961937904', 'Knights Of The Whip: Stagecoach Days In Oregon', 'https://images.isbndb.com/covers/79/04/9780961937904.jpg'), + ('0140179755', 'The Way Of A Boy: A Memoir Of Java', 'https://images.isbndb.com/covers/97/50/9780140179750.jpg'), + ('0571152813', 'Birds Of The Innocent Wood', 'https://images.isbndb.com/covers/28/10/9780571152810.jpg'), + ('0140622500', 'Mr. Greedy: Me And My Tummy (Mr. Men Own Stories)', 'https://images.isbndb.com/covers/25/08/9780140622508.jpg'), + ('9038802986', 'Grijze Wolven: Een Zoektocht Naar Turks Extreem-rechts (Dutch Edition)', 'https://images.isbndb.com/covers/29/85/9789038802985.jpg'), + ('0007101953', 'At Ruby''s', 'https://images.isbndb.com/covers/19/55/9780007101955.jpg'), + ('1857238982', 'Snow White And The Seven Samurai', 'https://images.isbndb.com/covers/89/83/9781857238983.jpg'), + ('380062236X', 'Die Externe Rechnungslegung Der Kreditinstitute Und Finanzdienstleistungsinstitute', 'https://images.isbndb.com/covers/23/68/9783800622368.jpg'), + ('0312421273', 'The Corrections: A Novel', 'https://images.isbndb.com/covers/12/74/9780312421274.jpg'), + ('0679454454', 'Sick Puppy', 'https://images.isbndb.com/covers/44/58/9780679454458.jpg'), + ('0743480562', 'CSI, Miami: Heat Wave', 'https://images.isbndb.com/covers/05/67/9780743480567.jpg'), + ('0312986211', 'Tempting The Heiress', 'https://images.isbndb.com/covers/62/16/9780312986216.jpg'), + ('0778320294', 'Mimosa Grove (Mira)', 'https://images.isbndb.com/covers/02/96/9780778320296.jpg'), + ('0425196453', 'The Marriage Test', 'https://images.isbndb.com/covers/64/58/9780425196458.jpg'), + ('1575668572', 'The Dragon Lord''s Daughters', 'https://images.isbndb.com/covers/85/74/9781575668574.jpg'), + ('0821776126', 'Getting What You Want (Stepp Sisters, Book 1)', 'https://images.isbndb.com/covers/61/24/9780821776124.jpg'), + ('0821773429', 'Perfect Switch', 'https://images.isbndb.com/covers/34/20/9780821773420.jpg'), + ('0060555882', 'What Memories Remain', 'https://images.isbndb.com/covers/58/87/9780060555887.jpg'), + ('0380811081', 'Again The Magic', 'https://images.isbndb.com/covers/10/83/9780380811083.jpg'), + ('0373250592', 'The Thin Pink Line (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/05/92/9780373250592.jpg'), + ('0373285043', 'With Open Arms: Song Of The West\Her Mother''s Keeper (Silhouette Single Title)', 'https://images.isbndb.com/covers/50/44/9780373285044.jpg'), + ('0399147020', 'Blood Lure', 'https://images.isbndb.com/covers/70/29/9780399147029.jpg'), + ('0062512668', 'The Cube: Keep The Secret', 'https://images.isbndb.com/covers/26/66/9780062512666.jpg'), + ('0440241162', 'Nerd In Shining Armor (The Nerd Series)', 'https://images.isbndb.com/covers/11/64/9780440241164.jpg'), + ('0439233844', 'A Any Small Goodness: A Novel Of The Barrio', 'https://images.isbndb.com/covers/38/42/9780439233842.jpg'), + ('0785917136', 'Ravage', 'https://images.isbndb.com/covers/71/37/9780785917137.jpg'), + ('1930353006', 'The Toy Factory (Sammy And Brian Mystery)', 'https://images.isbndb.com/covers/30/08/9781930353008.jpg'), + ('0874831121', 'Homecoming: The Southern Family In Short Fiction', 'https://images.isbndb.com/covers/11/22/9780874831122.jpg'), + ('0786866586', 'Shopgirl: A Novella', 'https://images.isbndb.com/covers/65/88/9780786866588.jpg'), + ('0140254749', 'Medicine River', 'https://images.isbndb.com/covers/47/47/9780140254747.jpg'), + ('3250600520', 'Im Café Und Auf Der Strasse. Geschichten.', 'https://images.isbndb.com/covers/05/27/9783250600527.jpg'), + ('3446190295', 'Die Fehler Des Kopisten', 'https://images.isbndb.com/covers/02/90/9783446190290.jpg'), + ('3250102342', 'Das Schimmern Der Flügel: Jugendmythen', 'https://images.isbndb.com/covers/23/42/9783250102342.jpg'), + ('342310001X', 'Fürsorgliche Belagerung: Roman', 'https://images.isbndb.com/covers/00/14/9783423100014.jpg'), + ('3406426530', 'Erinnerungen An Kreisau 1930 - 1945', 'https://images.isbndb.com/covers/65/37/9783406426537.jpg'), + ('3354005092', 'August Der Starke', 'https://images.isbndb.com/covers/50/99/9783354005099.jpg'), + ('3250300020', 'Nachtbuch Für Astrid', 'https://images.isbndb.com/covers/00/21/9783250300021.jpg'), + ('3608958703', 'Unstete Leute', 'https://images.isbndb.com/covers/87/06/9783608958706.jpg'), + ('0061092029', 'A Marriage Made In Heaven: Or Too Tired For An Affair', 'https://images.isbndb.com/covers/20/22/9780061092022.jpg'), + ('3718501473', 'Die USA Im Rückspiegel: Aufzeichnungen Eines Schweizer Amerika-Reisenden', 'https://images.isbndb.com/covers/14/72/9783718501472.jpg'), + ('3453017978', 'Der Matarese- Bund. Roman.', 'https://images.isbndb.com/covers/79/79/9783453017979.jpg'), + ('3492230466', 'Die Akte Odessa / Das Vierte Protokoll', 'https://images.isbndb.com/covers/04/69/9783492230469.jpg'), + ('3492045170', 'Stupid White Men: Eine Abrechnung Mit Dem Amerika Unter George W. Bush', 'https://images.isbndb.com/covers/51/79/9783492045179.jpg'), + ('0072521309', 'Comprehensive School Health Education: Totally Awesome Strategies For Teaching Health', 'https://images.isbndb.com/covers/13/06/9780072521306.jpg'), + ('0679756973', 'An Anthropologist On Mars: Seven Paradoxical Tales', 'https://images.isbndb.com/covers/69/72/9780679756972.jpg'), + ('0517886685', 'Inconspicuous Consumption: An Obsessive Look At The Stuff We Take For Granted, From The Everyday To The Obscure', 'https://images.isbndb.com/covers/66/87/9780517886687.jpg'), + ('1570625190', 'The Tao Of Physics: An Exploration Of The Parallels Between Modern Physics And Eastern Mysticism (25th Anniversary Edition)', 'https://images.isbndb.com/covers/51/90/9781570625190.jpg'), + ('0670866563', 'All In The Family', 'https://images.isbndb.com/covers/65/64/9780670866564.jpg'), + ('0375405046', 'NoBrow: The Culture Of Marketing - The Marketing Of Culture', 'https://images.isbndb.com/covers/50/44/9780375405044.jpg'), + ('0316845442', 'The Pursuit Of Pleasure', 'https://images.isbndb.com/covers/54/41/9780316845441.jpg'), + ('0140291725', 'We Want Some Too: Underground Desire And The Reinvention Of Mass Culture', 'https://images.isbndb.com/covers/17/28/9780140291728.jpg'), + ('0029023106', 'Denial Of Death', 'https://images.isbndb.com/covers/31/05/9780029023105.jpg'), + ('0802134254', 'Woody Allen On Woody Allen', 'https://images.isbndb.com/covers/42/57/9780802134257.jpg'), + ('0688156819', 'The Melancholy Death Of Oyster Boy & Other Stories', 'https://images.isbndb.com/covers/68/17/9780688156817.jpg'), + ('0762403004', 'World''s Shortest Stories: Murder. Love. Horror. Suspense. All This And Much More...', 'https://images.isbndb.com/covers/30/04/9780762403004.jpg'), + ('0140250840', 'Scent Of Dried Roses', 'https://images.isbndb.com/covers/08/48/9780140250848.jpg'), + ('0679723226', 'Double Indemnity', 'https://images.isbndb.com/covers/32/26/9780679723226.jpg'), + ('0679722645', 'The Maltese Falcon', 'https://images.isbndb.com/covers/26/49/9780679722649.jpg'), + ('0380732181', 'An Underachiever''s Diary', 'https://images.isbndb.com/covers/21/80/9780380732180.jpg'), + ('0156007754', 'Blindness (Harvest Book)', 'https://images.isbndb.com/covers/77/57/9780156007757.jpg'), + ('0553371010', 'The Complete Fairy Tales Of Brothers Grimm (A Bantam Trade Paperback)', 'https://images.isbndb.com/covers/10/17/9780553371017.jpg'), + ('031205436X', 'Generation X: Tales For An Accelerated Culture', 'https://images.isbndb.com/covers/43/66/9780312054366.jpg'), + ('1573226521', 'The Beach', 'https://images.isbndb.com/covers/65/23/9781573226523.jpg'), + ('0671027638', 'The Fuck-Up', 'https://images.isbndb.com/covers/76/36/9780671027636.jpg'), + ('0385497091', 'Thumbsucker: A Novel', 'https://images.isbndb.com/covers/70/91/9780385497091.jpg'), + ('1573226882', 'Fever Pitch', 'https://images.isbndb.com/covers/68/82/9781573226882.jpg'), + ('1573228214', 'High Fidelity', 'https://images.isbndb.com/covers/82/13/9781573228213.jpg'), + ('0316780812', 'Sea Glass: A Novel', 'https://images.isbndb.com/covers/08/10/9780316780810.jpg'), + ('0515119784', 'Range Of Motion', 'https://images.isbndb.com/covers/97/87/9780515119787.jpg'), + ('0736909672', 'After Anne (Coming Home To Brewster)', 'https://images.isbndb.com/covers/96/79/9780736909679.jpg'), + ('0786011963', 'The Last To Know', 'https://images.isbndb.com/covers/19/64/9780786011964.jpg'), + ('0811825558', 'The Worst-Case Scenario Survival Handbook', 'https://images.isbndb.com/covers/55/59/9780811825559.jpg'), + ('0141390972', 'Who Was The Man In The Iron Mask? And Other Historical Mysteries (Penquin Classic History)', 'https://images.isbndb.com/covers/09/70/9780141390970.jpg'), + ('0062736302', 'Felinestein: Pampering The Genius In Your Cat', 'https://images.isbndb.com/covers/63/07/9780062736307.jpg'), + ('0071352430', 'Net Slaves: True Tales Of Working The Web', 'https://images.isbndb.com/covers/24/37/9780071352437.jpg'), + ('0671798553', 'Nevermore', 'https://images.isbndb.com/covers/85/50/9780671798550.jpg'), + ('0060953497', 'The Keys Of Egypt: The Race To Crack The Hieroglyph Code', 'https://images.isbndb.com/covers/34/92/9780060953492.jpg'), + ('0306810646', 'The Erotomaniac: The Secret Life Of Henry Spencer Ashbee', 'https://images.isbndb.com/covers/06/40/9780306810640.jpg'), + ('0393318923', 'A Cabinet Of Medical Curiosities: A Compendium Of The Odd, The Bizarre, And The Unexpected', 'https://images.isbndb.com/covers/89/20/9780393318920.jpg'), + ('1882114981', 'Free Software, Free Society: Selected Essays Of Richard M. Stallman', 'https://images.isbndb.com/covers/49/86/9781882114986.jpg'), + ('0471415804', 'Essential XUL Programming', 'https://images.isbndb.com/covers/58/00/9780471415800.jpg'), + ('0380788691', 'A Secret History: The Book Of Ash, #1', 'https://images.isbndb.com/covers/86/99/9780380788699.jpg'), + ('0515134449', 'The Laughing Corpse (Anita Blake, Vampire Hunter, Book 2)', 'https://images.isbndb.com/covers/44/45/9780515134445.jpg'), + ('0596000987', 'Exim: The Mail Transfer Agent', 'https://images.isbndb.com/covers/09/81/9780596000981.jpg'), + ('0134843460', 'Introduction To Functional Programming Using Haskell (2nd Edition)', 'https://images.isbndb.com/covers/34/69/9780134843469.jpg'), + ('0064407675', 'A Series Of Unfortunate Events - The Reptile Room - Book Two', 'https://images.isbndb.com/covers/76/70/9780064407670.jpg'), + ('0767902890', 'The Things They Carried', 'https://images.isbndb.com/covers/28/92/9780767902892.jpg'), + ('0812213122', 'Fantastic Archaeology: The Wild Side Of North American Prehistory', 'https://images.isbndb.com/covers/31/26/9780812213126.jpg'), + ('0879238615', 'Dr Bowdlers Legacy', 'https://images.isbndb.com/covers/86/12/9780879238612.jpg'), + ('0618134786', 'The Best American Science And Nature Writing 2002 (The Best American Series)', 'https://images.isbndb.com/covers/47/86/9780618134786.jpg'), + ('0312135653', 'A Monstrous Regiment Of Women', 'https://images.isbndb.com/covers/56/52/9780312135652.jpg'), + ('0375726446', 'The Future Of Ideas: The Fate Of The Commons In A Connected World', 'https://images.isbndb.com/covers/64/46/9780375726446.jpg'), + ('037575895X', 'Cicero: The Life And Times Of Rome''s Greatest Politician', 'https://images.isbndb.com/covers/89/59/9780375758959.jpg'), + ('0061092355', 'Star Trek Memories', 'https://images.isbndb.com/covers/23/50/9780061092350.jpg'), + ('0060934727', 'Mike Nelson''s Death Rat!', 'https://images.isbndb.com/covers/47/29/9780060934729.jpg'), + ('0375403671', 'Night Watch: A Long-Lost Adventure In Which Sherlock Holmes Meets Father Brown', 'https://images.isbndb.com/covers/36/75/9780375403675.jpg'), + ('0670888214', 'Sherlock Holmes And The Rune Stone Mystery', 'https://images.isbndb.com/covers/82/14/9780670888214.jpg'), + ('0380977788', 'Coraline', 'https://images.isbndb.com/covers/77/89/9780380977789.jpg'), + ('0441304834', 'Guilty Pleasures (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/48/37/9780441304837.jpg'), + ('0375421726', 'Nigger - The Strange Career Of A Troublesome Word', 'https://images.isbndb.com/covers/17/23/9780375421723.jpg'), + ('0609805002', 'My 1,000 Americans: A Year-Long Journey Through The Personals', 'https://images.isbndb.com/covers/50/08/9780609805008.jpg'), + ('1891053426', 'Best Of Temp Slave!', 'https://images.isbndb.com/covers/34/29/9781891053429.jpg'), + ('0393049272', 'Bodies In Motion And At Rest: On Metaphor And Mortality', 'https://images.isbndb.com/covers/92/75/9780393049275.jpg'), + ('0140099182', 'None But A Blockhead', 'https://images.isbndb.com/covers/91/88/9780140099188.jpg'), + ('0385319932', 'The Napoleon Of Crime: The Life And Times Of Adam Worth, Master Thief', 'https://images.isbndb.com/covers/99/35/9780385319935.jpg'), + ('0684853205', 'A Mind Of Its Own: A Cultural History Of The Penis', 'https://images.isbndb.com/covers/32/08/9780684853208.jpg'), + ('0609802437', 'Great Moments In Sex', 'https://images.isbndb.com/covers/24/34/9780609802434.jpg'), + ('0765347415', 'Terminator 3: Rise Of The Machines', 'https://images.isbndb.com/covers/74/11/9780765347411.jpg'), + ('0425071081', 'Don Juan Mcqueen', 'https://images.isbndb.com/covers/10/83/9780425071083.jpg'), + ('0393956571', 'Western Civilizations: Their History And Their Culture, 11 Edition', 'https://images.isbndb.com/covers/65/73/9780393956573.jpg'), + ('0805324305', 'Information Systems: A Management Perspective', 'https://images.isbndb.com/covers/43/03/9780805324303.jpg'), + ('2710305089', 'Pour En Finir Avec Le Travail', 'https://images.isbndb.com/covers/50/88/9782710305088.jpg'), + ('2070368378', 'Eloge De La Fessée', 'https://images.isbndb.com/covers/83/72/9782070368372.jpg'), + ('3462025376', 'Der Mörder Mit Der Strumpfhose', 'https://images.isbndb.com/covers/53/78/9783462025378.jpg'), + ('0553571818', 'Long After Midnight', 'https://images.isbndb.com/covers/18/13/9780553571813.jpg'), + ('0441790348', 'Stranger In A Strange Land', 'https://images.isbndb.com/covers/03/40/9780441790340.jpg'), + ('0812550390', 'The Listeners', 'https://images.isbndb.com/covers/03/99/9780812550399.jpg'), + ('2877141519', 'Salammbô', 'https://images.isbndb.com/covers/15/12/9782877141512.jpg'), + ('0965881199', 'The Diaries Of Adam And Eve: Translated By Mark Twain', 'https://images.isbndb.com/covers/11/97/9780965881197.jpg'), + ('1573928275', 'The Diaries Of Adam And Eve (Literary Classics)', 'https://images.isbndb.com/covers/82/74/9781573928274.jpg'), + ('014011906X', 'Fire On The Mountain', 'https://images.isbndb.com/covers/90/60/9780140119060.jpg'), + ('0920109020', 'Alone In The Australian Outback', 'https://images.isbndb.com/covers/90/21/9780920109021.jpg'), + ('0345377494', 'Box Socials', 'https://images.isbndb.com/covers/74/94/9780345377494.jpg'), + ('0590960369', 'A Rat''s Tale', 'https://images.isbndb.com/covers/03/66/9780590960366.jpg'), + ('0152009604', 'User Unfriendly', 'https://images.isbndb.com/covers/96/01/9780152009601.jpg'), + ('0393038025', 'RL''s Dream', 'https://images.isbndb.com/covers/80/26/9780393038026.jpg'), + ('0771014929', 'Murder At The Mendel (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/49/25/9780771014925.jpg'), + ('0060931809', 'The Map That Changed The World: William Smith And The Birth Of Modern Geology', 'https://images.isbndb.com/covers/18/03/9780060931803.jpg'), + ('1566199697', 'The Metamorphosis And Other Stories', 'https://images.isbndb.com/covers/96/98/9781566199698.jpg'), + ('0451527496', 'The Arabian Nights, Vol. 2', 'https://images.isbndb.com/covers/74/93/9780451527493.jpg'), + ('0451525426', 'The Arabian Nights: The Marvels And Wonders Of The Thousand And One Nights (Signet Classics)', 'https://images.isbndb.com/covers/54/20/9780451525420.jpg'), + ('0553573403', 'A Game Of Thrones (A Song Of Ice And Fire, Book 1)', 'https://images.isbndb.com/covers/34/04/9780553573404.jpg'), + ('0553579908', 'A Clash Of Kings (A Song Of Ice And Fire, Book 2)', 'https://images.isbndb.com/covers/99/01/9780553579901.jpg'), + ('055357342X', 'A Storm Of Swords (A Song Of Ice And Fire, Book 3)', 'https://images.isbndb.com/covers/34/28/9780553573428.jpg'), + ('0440211158', 'Skin', 'https://images.isbndb.com/covers/11/50/9780440211150.jpg'), + ('1885211279', 'There''s No Toilet Paper On The Road Less Traveled: The Best Travel Humor And Misadventure (Travelers'' Tales Guides)', 'https://images.isbndb.com/covers/12/79/9781885211279.jpg'), + ('2290044067', 'Message Des Hommes Vrais Au Monde Mutant', 'https://images.isbndb.com/covers/40/63/9782290044063.jpg'), + ('0821739514', 'Privileged Information', 'https://images.isbndb.com/covers/95/18/9780821739518.jpg'), + ('0553280147', 'Till We Meet Again', 'https://images.isbndb.com/covers/01/42/9780553280142.jpg'), + ('0821730894', 'Sea Devil', 'https://images.isbndb.com/covers/08/98/9780821730898.jpg'), + ('0553245716', 'Scents', 'https://images.isbndb.com/covers/57/14/9780553245714.jpg'), + ('0345391055', 'Disclosure', 'https://images.isbndb.com/covers/10/56/9780345391056.jpg'), + ('0553243055', 'Firefox Down', 'https://images.isbndb.com/covers/30/55/9780553243055.jpg'), + ('0312979479', 'And Then There Were None', 'https://images.isbndb.com/covers/94/78/9780312979478.jpg'), + ('0375760911', 'The Idiot Girls'' Action-Adventure Club: True Tales From A Magnificent And Clumsy Life', 'https://images.isbndb.com/covers/09/14/9780375760914.jpg'), + ('0449244679', 'Answer As A Man', 'https://images.isbndb.com/covers/46/78/9780449244678.jpg'), + ('0671681036', 'All My Friends Are Going To Be Strangers (Touchstone Book)', 'https://images.isbndb.com/covers/10/36/9780671681036.jpg'), + ('068480087X', 'Postcards', 'https://images.isbndb.com/covers/08/75/9780684800875.jpg'), + ('0743407067', 'The First Time', 'https://images.isbndb.com/covers/70/69/9780743407069.jpg'), + ('0515131083', 'Plantation: A Lowcountry Tale', 'https://images.isbndb.com/covers/10/86/9780515131086.jpg'), + ('1585420654', 'God Is No Laughing Matter: Observations And Objections On The Spiritual Path', 'https://images.isbndb.com/covers/06/50/9781585420650.jpg'), + ('1587430665', 'Living On The Borders: What The Church Can Learn From Ethnic Immigrant Cultures', 'https://images.isbndb.com/covers/06/64/9781587430664.jpg'), + ('0684843110', 'Pilgrim Souls: A Collection Of Spiritual Autobiography', 'https://images.isbndb.com/covers/31/17/9780684843117.jpg'), + ('156955028X', 'All You Really Need To Know About Prayer You Can Learn From The Poor', 'https://images.isbndb.com/covers/02/81/9781569550281.jpg'), + ('0446679763', 'The Red Hat Society: Fun And Friendship After Fifty', 'https://images.isbndb.com/covers/97/63/9780446679763.jpg'), + ('0867162791', 'The Wild Man''s Journey: Reflections On Male Spirituality', 'https://images.isbndb.com/covers/27/90/9780867162790.jpg'), + ('0452274664', 'Autobiography Of My Mother', 'https://images.isbndb.com/covers/46/62/9780452274662.jpg'), + ('0064403645', 'The Half-a-Moon Inn', 'https://images.isbndb.com/covers/36/41/9780064403641.jpg'), + ('1400032806', 'Under The Banner Of Heaven: A Story Of Violent Faith', 'https://images.isbndb.com/covers/28/08/9781400032808.jpg'), + ('0140262776', 'Criminals', 'https://images.isbndb.com/covers/27/73/9780140262773.jpg'), + ('0385317042', 'My Sister''s Bones', 'https://images.isbndb.com/covers/70/47/9780385317047.jpg'), + ('0393029875', 'My Sisters Keeper: Learning To Cope With A Sibling''s Mental Illness', 'https://images.isbndb.com/covers/98/71/9780393029871.jpg'), + ('0743243315', 'Brick Lane: A Novel', 'https://images.isbndb.com/covers/33/15/9780743243315.jpg'), + ('0743407059', 'The First Time', 'https://images.isbndb.com/covers/70/52/9780743407052.jpg'), + ('1400061598', 'The Art Of Mending: A Novel (Berg, Elizabeth)', 'https://images.isbndb.com/covers/15/94/9781400061594.jpg'), + ('0452283280', 'Sister Noon', 'https://images.isbndb.com/covers/32/82/9780452283282.jpg'), + ('0743407083', 'Grand Avenue', 'https://images.isbndb.com/covers/70/83/9780743407083.jpg'), + ('0446532444', 'Three Weeks With My Brother', 'https://images.isbndb.com/covers/24/40/9780446532440.jpg'), + ('0446533041', 'Good Grief', 'https://images.isbndb.com/covers/30/41/9780446533041.jpg'), + ('0375413278', 'Rapture', 'https://images.isbndb.com/covers/32/78/9780375413278.jpg'), + ('1892738341', 'Daddy''s Girl', 'https://images.isbndb.com/covers/83/49/9781892738349.jpg'), + ('0743483014', 'Irish Girls About Town: An Anthology Of Short Stories', 'https://images.isbndb.com/covers/30/18/9780743483018.jpg'), + ('0393029603', 'The Book Of Embraces', 'https://images.isbndb.com/covers/96/04/9780393029604.jpg'), + ('0312093004', 'A Safe Place To Die', 'https://images.isbndb.com/covers/30/06/9780312093006.jpg'), + ('0451184149', 'My Soul To Keep', 'https://images.isbndb.com/covers/41/46/9780451184146.jpg'), + ('0380005239', 'Go Ask Alice', 'https://images.isbndb.com/covers/52/39/9780380005239.jpg'), + ('0231121008', 'The Vital Illusion', 'https://images.isbndb.com/covers/10/02/9780231121002.jpg'), + ('0064401774', 'More Scary Stories To Tell In The Dark', 'https://images.isbndb.com/covers/17/77/9780064401777.jpg'), + ('0380732238', 'Smack', 'https://images.isbndb.com/covers/22/34/9780380732234.jpg'), + ('1571740562', 'Conversations With God : An Uncommon Dialogue (Book 2)', 'https://images.isbndb.com/covers/05/64/9781571740564.jpg'), + ('0399142789', 'Conversations With God : An Uncommon Dialogue (Book 1)', 'https://images.isbndb.com/covers/27/89/9780399142789.jpg'), + ('0375406530', 'Waiting', 'https://images.isbndb.com/covers/65/39/9780375406539.jpg'), + ('006000438X', 'The Death Of Vishnu: A Novel', 'https://images.isbndb.com/covers/43/85/9780060004385.jpg'), + ('0679411267', 'The End Of The Pier', 'https://images.isbndb.com/covers/12/60/9780679411260.jpg'), + ('0375412557', 'Death In Holy Orders (Adam Dalgliesh Mystery Series #11)', 'https://images.isbndb.com/covers/25/54/9780375412554.jpg'), + ('0312169868', 'The River Beyond The World: A Novel', 'https://images.isbndb.com/covers/98/62/9780312169862.jpg'), + ('0374129983', 'The Corrections', 'https://images.isbndb.com/covers/99/89/9780374129989.jpg'), + ('067003178X', 'The Kitchen Boy: A Novel Of The Last Tsar', 'https://images.isbndb.com/covers/17/88/9780670031788.jpg'), + ('0688176992', 'Finding Fish: A Memoir', 'https://images.isbndb.com/covers/69/90/9780688176990.jpg'), + ('0312032978', 'Brighten The Corner Where You Are', 'https://images.isbndb.com/covers/29/75/9780312032975.jpg'), + ('0394561619', 'Love In The Time Of Cholera', 'https://images.isbndb.com/covers/16/15/9780394561615.jpg'), + ('0786866470', 'When My Sister Was Cleopatra Moon', 'https://images.isbndb.com/covers/64/72/9780786866472.jpg'), + ('0385318782', 'Talk Before Sleep', 'https://images.isbndb.com/covers/87/85/9780385318785.jpg'), + ('1879941201', 'The Women On The Porch (Southern Classics Series)', 'https://images.isbndb.com/covers/12/05/9781879941205.jpg'), + ('0060920076', 'Affliction', 'https://images.isbndb.com/covers/00/74/9780060920074.jpg'), + ('0679437452', 'RANGE OF MOTION', 'https://images.isbndb.com/covers/74/51/9780679437451.jpg'), + ('1931561648', 'The Time Traveler''s Wife', 'https://images.isbndb.com/covers/16/48/9781931561648.jpg'), + ('0060517794', 'Little Altars Everywhere: A Novel', 'https://images.isbndb.com/covers/77/93/9780060517793.jpg'), + ('0553296124', 'Heir To The Empire (Star Wars: The Thrawn Trilogy, Vol. 1)', 'https://images.isbndb.com/covers/61/29/9780553296129.jpg'), + ('0345413350', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/33/52/9780345413352.jpg'), + ('0380701340', 'A Creed For The Third Millennium', 'https://images.isbndb.com/covers/13/46/9780380701346.jpg'), + ('0373260474', 'Murder Of Muriel Lake', 'https://images.isbndb.com/covers/04/78/9780373260478.jpg'), + ('1588515281', 'Heir To Betrayal', 'https://images.isbndb.com/covers/52/85/9781588515285.jpg'), + ('0679450041', 'The Amazing Adventures Of Kavalier & Clay: A Novel', 'https://images.isbndb.com/covers/00/47/9780679450047.jpg'), + ('0241130522', 'Scarfe Land: A Lost World Of Fabulous Beasts And Monsters', 'https://images.isbndb.com/covers/05/20/9780241130520.jpg'), + ('0413722309', 'If...Files', 'https://images.isbndb.com/covers/23/00/9780413722300.jpg'), + ('0413725405', 'Bell''s Eye', 'https://images.isbndb.com/covers/54/00/9780413725400.jpg'), + ('1853830852', 'Turn Over A New Leaf: Green Cartoons For Care', 'https://images.isbndb.com/covers/08/53/9781853830853.jpg'), + ('0859533565', 'War And Peace (Life Skills & Responsibility)', 'https://images.isbndb.com/covers/35/60/9780859533560.jpg'), + ('0413624501', 'True Confessions Of Adrian Albert Mole, Margaret Hilda Roberts And Susan Lilian Townsend', 'https://images.isbndb.com/covers/45/05/9780413624505.jpg'), + ('1857141296', 'Dinosaur Roar! (Ragged Bears Board Books)', 'https://images.isbndb.com/covers/12/90/9781857141290.jpg'), + ('0745321992', 'Regime Unchanged: Why The War On Iraq Changed Nothing', 'https://images.isbndb.com/covers/19/98/9780745321998.jpg'), + ('0140350748', 'The Jungle Books: Complete And Unabridged (Puffin Classics)', 'https://images.isbndb.com/covers/07/46/9780140350746.jpg'), + ('1853912352', 'Desserts (Merehurst Cookery)', 'https://images.isbndb.com/covers/23/51/9781853912351.jpg'), + ('0201050714', 'The Continuum Concept: In Search Of Happiness Lost (Classics In Human Development)', 'https://images.isbndb.com/covers/07/14/9780201050714.jpg'), + ('0802116175', 'Great Apes', 'https://images.isbndb.com/covers/61/78/9780802116178.jpg'), + ('0140185011', 'Travels With My Aunt', 'https://images.isbndb.com/covers/50/10/9780140185010.jpg'), + ('0140298363', 'Mr. Phillips', 'https://images.isbndb.com/covers/83/69/9780140298369.jpg'), + ('0451146425', 'Lie Down With Lions (Signet)', 'https://images.isbndb.com/covers/64/27/9780451146427.jpg'), + ('0877738513', 'The Art Of Peace: Teachings Of The Founder Of Aikido', 'https://images.isbndb.com/covers/85/10/9780877738510.jpg'), + ('0380817446', 'The Legend Of Bagger Vance', 'https://images.isbndb.com/covers/74/43/9780380817443.jpg'), + ('0440862809', 'Teenage Mutant Ninja Turtles: Junior Novel', 'https://images.isbndb.com/covers/28/02/9780440862802.jpg'), + ('0571197272', 'Birds Of America', 'https://images.isbndb.com/covers/72/79/9780571197279.jpg'), + ('0345300203', 'The Outside Man', 'https://images.isbndb.com/covers/02/01/9780345300201.jpg'), + ('0451167309', 'Paper Money', 'https://images.isbndb.com/covers/73/09/9780451167309.jpg'), + ('0440154731', 'Jailbird', 'https://images.isbndb.com/covers/47/30/9780440154730.jpg'), + ('0553579835', 'The Matarese Countdown', 'https://images.isbndb.com/covers/98/33/9780553579833.jpg'), + ('0449224775', 'The Scarlet Ruse', 'https://images.isbndb.com/covers/47/79/9780449224779.jpg'), + ('0345379330', 'Mostly Harmless (Hitchhiker''s Series)', 'https://images.isbndb.com/covers/93/37/9780345379337.jpg'), + ('1576737330', 'The Prayer Of Jabez: Breaking Through To The Blessed Life', 'https://images.isbndb.com/covers/73/30/9781576737330.jpg'), + ('0590371258', 'Out Of The Dust (Apple Signature Edition)', 'https://images.isbndb.com/covers/12/54/9780590371254.jpg'), + ('1573227226', 'Lambs Of God', 'https://images.isbndb.com/covers/72/23/9781573227223.jpg'), + ('0670871753', 'Listmaker Pb', 'https://images.isbndb.com/covers/17/59/9780670871759.jpg'), + ('0151446474', 'The Name Of The Rose', 'https://images.isbndb.com/covers/64/76/9780151446476.jpg'), + ('0670813028', 'It', 'https://images.isbndb.com/covers/30/25/9780670813025.jpg'), + ('0810922975', 'How To Visit A Museum', 'https://images.isbndb.com/covers/29/76/9780810922976.jpg'), + ('0761520937', 'Homeschooling: The Teen Years: Your Complete Guide To Successfully Homeschooling The 13- To 18- Year-Old (Prima Home Learning Library)', 'https://images.isbndb.com/covers/09/31/9780761520931.jpg'), + ('0785281754', 'The Successful Homeschool Family Handbook', 'https://images.isbndb.com/covers/17/57/9780785281757.jpg'), + ('0345405730', 'Dreamers, Discoverers & Dynamos: How To Help The Child Who Is Bright, Bored And Having Problems In School (Formerly Titled ''The Edison Trait'')', 'https://images.isbndb.com/covers/57/39/9780345405739.jpg'), + ('0451197410', 'How Stella Got Her Groove Back', 'https://images.isbndb.com/covers/74/12/9780451197412.jpg'), + ('0761522557', 'Homeschoolers'' Success Stories : 15 Adults And 12 Young People Share The Impact That Homeschooling Has Made On Their Lives', 'https://images.isbndb.com/covers/25/53/9780761522553.jpg'), + ('0316601950', 'The Pilot''s Wife (Oprah''s Book Club)', 'https://images.isbndb.com/covers/19/55/9780316601955.jpg'), + ('0399151516', 'Reckless Abandon: A Stone Barrington Novel', 'https://images.isbndb.com/covers/15/14/9780399151514.jpg'), + ('0399151435', 'A Death In Vienna', 'https://images.isbndb.com/covers/14/39/9780399151439.jpg'), + ('0451210220', 'The First Law (Dismas Hardy)', 'https://images.isbndb.com/covers/02/27/9780451210227.jpg'), + ('0399148515', 'The English Assassin', 'https://images.isbndb.com/covers/85/14/9780399148514.jpg'), + ('0886777771', 'River Of Blue Fire (Otherland, Volume 2)', 'https://images.isbndb.com/covers/77/77/9780886777777.jpg'), + ('0445406518', 'Crocodile On The Sandbank (Amelia Peabody, Book 1)', 'https://images.isbndb.com/covers/65/13/9780445406513.jpg'), + ('0671697978', 'Monsters And Magicians (Stairway To Forever, No. 2)', 'https://images.isbndb.com/covers/79/76/9780671697976.jpg'), + ('0441317480', 'Hard Sell', 'https://images.isbndb.com/covers/74/86/9780441317486.jpg'), + ('0345405625', 'Walk In Hell (The Great War, Book 2)', 'https://images.isbndb.com/covers/56/23/9780345405623.jpg'), + ('0345406141', 'How Few Remain', 'https://images.isbndb.com/covers/61/49/9780345406149.jpg'), + ('0061006629', 'Fatherland', 'https://images.isbndb.com/covers/66/23/9780061006623.jpg'), + ('0553563696', 'The Hand Of Chaos (Death Gate Cycle, Book 5)', 'https://images.isbndb.com/covers/36/96/9780553563696.jpg'), + ('0345431618', 'The Man Who Fell To Earth', 'https://images.isbndb.com/covers/16/15/9780345431615.jpg'), + ('0553567713', 'Into The Labyrinth (Death Gate Cycle)', 'https://images.isbndb.com/covers/77/17/9780553567717.jpg'), + ('0553286390', 'Dragon Wing (The Death Gate Cycle, Book 1)', 'https://images.isbndb.com/covers/63/97/9780553286397.jpg'), + ('0345301293', 'Blade Runner', 'https://images.isbndb.com/covers/12/91/9780345301291.jpg'), + ('0345382412', 'In The Balance (Worldwar Series, Volume 1)', 'https://images.isbndb.com/covers/24/12/9780345382412.jpg'), + ('0345389972', 'Tilting The Balance (Worldwar Series, Volume 2)', 'https://images.isbndb.com/covers/99/78/9780345389978.jpg'), + ('0345402219', 'Upsetting The Balance (Worldwar Series, Volume 3)', 'https://images.isbndb.com/covers/22/19/9780345402219.jpg'), + ('0345405501', 'Striking The Balance (Worldwar Series, Volume 4)', 'https://images.isbndb.com/covers/55/00/9780345405500.jpg'), + ('0671654349', 'The Stairway To Forever', 'https://images.isbndb.com/covers/43/44/9780671654344.jpg'), + ('0671832174', 'The Book Of The Dun Cow', 'https://images.isbndb.com/covers/21/79/9780671832179.jpg'), + ('0881845531', 'The Zap Gun', 'https://images.isbndb.com/covers/55/32/9780881845532.jpg'), + ('076534128X', 'Rebekah (Women Of Genesis (Forge))', 'https://images.isbndb.com/covers/12/80/9780765341280.jpg'), + ('0441662382', 'Phthor', 'https://images.isbndb.com/covers/23/88/9780441662388.jpg'), + ('0345384687', 'The Guns Of The South', 'https://images.isbndb.com/covers/46/83/9780345384683.jpg'), + ('0345353749', 'A Town Like Alice', 'https://images.isbndb.com/covers/37/40/9780345353740.jpg'), + ('1586481843', 'Franklin Delano Roosevelt: Champion Of Freedom', 'https://images.isbndb.com/covers/18/41/9781586481841.jpg'), + ('088184389X', 'Dr. Bloodmoney', 'https://images.isbndb.com/covers/38/97/9780881843897.jpg'), + ('0460872583', 'The Island Of Doctor Moreau (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/25/84/9780460872584.jpg'), + ('0385333498', 'The Sirens Of Titan: A Novel', 'https://images.isbndb.com/covers/34/98/9780385333498.jpg'), + ('0425043231', 'The Man In The High Castle', 'https://images.isbndb.com/covers/32/33/9780425043233.jpg'), + ('0345313151', 'Bearing An Hourglass (Incarnations Of Immortality, Book 2)', 'https://images.isbndb.com/covers/31/57/9780345313157.jpg'), + ('0345314255', 'The Sword Of Shannara', 'https://images.isbndb.com/covers/42/53/9780345314253.jpg'), + ('0345305183', 'On A Pale Horse (Incarnations Of Immortality, Book 1)', 'https://images.isbndb.com/covers/51/83/9780345305183.jpg'), + ('0380004933', 'Man Who Fell To Earth', 'https://images.isbndb.com/covers/49/35/9780380004935.jpg'), + ('0451132343', 'Fire-Starter', 'https://images.isbndb.com/covers/23/45/9780451132345.jpg'), + ('0345279255', 'Castle Roogna (Xanth, No. 3)', 'https://images.isbndb.com/covers/92/55/9780345279255.jpg'), + ('0451131312', 'Night Shift', 'https://images.isbndb.com/covers/13/17/9780451131317.jpg'), + ('0345272846', 'THE SOURCE OF MAGIC', 'https://images.isbndb.com/covers/28/43/9780345272843.jpg'), + ('0786884460', 'The Ice Master: The Doomed 1913 Voyage Of The Karluk', 'https://images.isbndb.com/covers/44/69/9780786884469.jpg'), + ('0061031429', 'The Vendetta Defense', 'https://images.isbndb.com/covers/14/27/9780061031427.jpg'), + ('0060977337', 'Downsize This! Random Threats From An Unarmed American', 'https://images.isbndb.com/covers/73/37/9780060977337.jpg'), + ('0446693790', 'Dude, Where''s My Country?', 'https://images.isbndb.com/covers/37/90/9780446693790.jpg'), + ('0553380168', 'A Brief History Of Time', 'https://images.isbndb.com/covers/01/63/9780553380163.jpg'), + ('0140285008', 'The Penguin Book Of 20th-Century Speeches', 'https://images.isbndb.com/covers/50/00/9780140285000.jpg'), + ('067104155X', 'Diablo #1: Legacy Of Blood', 'https://images.isbndb.com/covers/15/57/9780671041557.jpg'), + ('006098726X', 'Stupid White Men: ...And Other Sorry Excuses For The State Of The Nation!', 'https://images.isbndb.com/covers/72/68/9780060987268.jpg'), + ('068483569X', 'The Commanding Heights : The Battle For The World Economy', 'https://images.isbndb.com/covers/56/93/9780684835693.jpg'), + ('0380701006', 'Inside Outside', 'https://images.isbndb.com/covers/10/01/9780380701001.jpg'), + ('0671504398', 'Les Miserables (Enriched Classics)', 'https://images.isbndb.com/covers/43/97/9780671504397.jpg'), + ('0451522303', 'Animal Farm (Signet Classics)', 'https://images.isbndb.com/covers/23/06/9780451522306.jpg'), + ('0441005152', 'Scales Of Justice', 'https://images.isbndb.com/covers/51/54/9780441005154.jpg'), + ('3518366750', 'Der Steppenwolf: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/67/52/9783518366752.jpg'), + ('3453172337', 'Das Schwarze Auge 50. Gassengeschichten. Fünfzigster Band Aus Der Aventurischen Spielewelt.', 'https://images.isbndb.com/covers/23/33/9783453172333.jpg'), + ('3404136012', 'Wintermond', 'https://images.isbndb.com/covers/60/18/9783404136018.jpg'), + ('3453131169', 'Flüstern In Der Nacht', 'https://images.isbndb.com/covers/11/63/9783453131163.jpg'), + ('3453092007', 'Die Zweite Haut.', 'https://images.isbndb.com/covers/20/06/9783453092006.jpg'), + ('0553582925', 'Tick Tock', 'https://images.isbndb.com/covers/29/25/9780553582925.jpg'), + ('0441008763', 'The Coming', 'https://images.isbndb.com/covers/87/66/9780441008766.jpg'), + ('0812545249', 'The Chronoliths', 'https://images.isbndb.com/covers/52/41/9780812545241.jpg'), + ('0446606715', 'A Second Chance At Eden', 'https://images.isbndb.com/covers/67/14/9780446606714.jpg'), + ('0553572423', 'The Fist Of God', 'https://images.isbndb.com/covers/24/21/9780553572421.jpg'), + ('0373320132', 'Lord Of High Cliff Manor (Gothic Romances)', 'https://images.isbndb.com/covers/01/34/9780373320134.jpg'), + ('0803728492', 'Gossip Times Three', 'https://images.isbndb.com/covers/84/93/9780803728493.jpg'), + ('0525941673', 'Cavedweller', 'https://images.isbndb.com/covers/16/75/9780525941675.jpg'), + ('0812522400', 'Lord Of The Isles', 'https://images.isbndb.com/covers/24/02/9780812522402.jpg'), + ('0553102044', 'Jane And The Wandering Eye: Being The Third Jane Austen Mystery', 'https://images.isbndb.com/covers/20/48/9780553102048.jpg'), + ('156718359X', 'Hypnosis For Beginners: Reach New Levels Of Awareness & Achievement (For Beginners (Llewellyn''s))', 'https://images.isbndb.com/covers/35/97/9781567183597.jpg'), + ('0671722948', 'Twelfth Night', 'https://images.isbndb.com/covers/29/44/9780671722944.jpg'), + ('0140191550', 'Shamanism Archaic Techniques Of Ecstasy (Arkana)', 'https://images.isbndb.com/covers/15/54/9780140191554.jpg'), + ('0140009930', 'Day Of The Triffids', 'https://images.isbndb.com/covers/99/34/9780140009934.jpg'), + ('014027944X', 'Armadillo', 'https://images.isbndb.com/covers/94/43/9780140279443.jpg'), + ('0140051627', 'The Trials Of Rumpole', 'https://images.isbndb.com/covers/16/29/9780140051629.jpg'), + ('0713910372', 'The Penguin Dictionary Of Quotations', 'https://images.isbndb.com/covers/03/77/9780713910377.jpg'), + ('0140510494', 'The Penguin Dictionary Of Geology (Dictionary, Penguin)', 'https://images.isbndb.com/covers/04/92/9780140510492.jpg'), + ('0140510028', 'A Dictionary Of Geography (Fifth Edition)', 'https://images.isbndb.com/covers/00/27/9780140510027.jpg'), + ('0140442073', 'The Twilight Of The Idols And The Anti-Christ: Or How To Philosophize With A Hammer (Classics)', 'https://images.isbndb.com/covers/20/76/9780140442076.jpg'), + ('0575075546', 'The Soddit: Or, Cashing In Again (Gollancz Sf S.)', 'https://images.isbndb.com/covers/55/42/9780575075542.jpg'), + ('0091816874', 'Sugar Busters', 'https://images.isbndb.com/covers/68/72/9780091816872.jpg'), + ('0330020706', 'Town Like Alice', 'https://images.isbndb.com/covers/07/01/9780330020701.jpg'), + ('0851123554', 'The Guinness Book Of Aircraft: Records, Facts And Feats', 'https://images.isbndb.com/covers/35/54/9780851123554.jpg'), + ('0743220633', 'Sun Dog', 'https://images.isbndb.com/covers/06/37/9780743220637.jpg'), + ('1903402913', 'Gangbuster', 'https://images.isbndb.com/covers/29/17/9781903402917.jpg'), + ('1856053318', 'Nostradamus: The Prophecies', 'https://images.isbndb.com/covers/33/10/9781856053310.jpg'), + ('0752521454', 'Patios, Pots And Window Box', 'https://images.isbndb.com/covers/14/59/9780752521459.jpg'), + ('0696204800', '501 Quilt Blocks: A Treasury Of Patterns For Patchwork And Applique (Better Homes & Gardens Crafts)', 'https://images.isbndb.com/covers/48/07/9780696204807.jpg'), + ('027300235X', 'Boxes (Collecting For Tomorrow)', 'https://images.isbndb.com/covers/23/52/9780273002352.jpg'), + ('0877540950', 'Decorative Printed Tins', 'https://images.isbndb.com/covers/09/53/9780877540953.jpg'), + ('0751514853', 'Supping With Panthers', 'https://images.isbndb.com/covers/48/58/9780751514858.jpg'), + ('3404143205', 'Mission Sphinx: Thriller', 'https://images.isbndb.com/covers/32/07/9783404143207.jpg'), + ('345386980X', 'Der Richter: Roman', 'https://images.isbndb.com/covers/98/06/9783453869806.jpg'), + ('3629002013', 'Ein Gutes Jahr', 'https://images.isbndb.com/covers/20/13/9783629002013.jpg'), + ('0877147728', 'My Last Remains', 'https://images.isbndb.com/covers/77/25/9780877147725.jpg'), + ('0674955218', 'Women On The Margins: Three Seventeenth-Century Lives', 'https://images.isbndb.com/covers/52/19/9780674955219.jpg'), + ('0452283930', 'Gossip Hound', 'https://images.isbndb.com/covers/39/30/9780452283930.jpg'), + ('0553382225', 'The Big Bad Wolf Tells All', 'https://images.isbndb.com/covers/22/28/9780553382228.jpg'), + ('1573227331', 'About A Boy', 'https://images.isbndb.com/covers/73/39/9781573227339.jpg'), + ('0679767959', 'Heartburn', 'https://images.isbndb.com/covers/79/54/9780679767954.jpg'), + ('0451526767', 'Twelfth Night: Or, What You Will (Signet Classics)', 'https://images.isbndb.com/covers/67/62/9780451526762.jpg'), + ('0596001932', 'The Root Of All Evil', 'https://images.isbndb.com/covers/19/33/9780596001933.jpg'), + ('156592861X', 'Evil Geniuses In A Nutshell', 'https://images.isbndb.com/covers/86/19/9781565928619.jpg'), + ('1565926730', 'User Friendly: The Comic Strip', 'https://images.isbndb.com/covers/67/38/9781565926738.jpg'), + ('080411918X', 'A Patchwork Planet', 'https://images.isbndb.com/covers/91/84/9780804119184.jpg'), + ('0060171405', 'The Power Of Beauty', 'https://images.isbndb.com/covers/14/07/9780060171407.jpg'), + ('0553293176', 'Dangerous', 'https://images.isbndb.com/covers/31/73/9780553293173.jpg'), + ('0316812471', 'Revolution From Within: A Book Of Self-Esteem', 'https://images.isbndb.com/covers/24/74/9780316812474.jpg'), + ('0440222915', 'Outlander', 'https://images.isbndb.com/covers/29/10/9780440222910.jpg'), + ('1551668653', 'Getting Rid Of Bradley', 'https://images.isbndb.com/covers/86/59/9781551668659.jpg'), + ('038079960X', 'The Mermaids Singing', 'https://images.isbndb.com/covers/96/02/9780380799602.jpg'), + ('0440237300', 'Three Weeks In Paris', 'https://images.isbndb.com/covers/73/03/9780440237303.jpg'), + ('0373292945', 'The Wedding Knight', 'https://images.isbndb.com/covers/29/43/9780373292943.jpg'), + ('1568842406', 'Windows.. 95 For Dummies..', 'https://images.isbndb.com/covers/24/00/9781568842400.jpg'), + ('0399133186', 'Mortal Fear', 'https://images.isbndb.com/covers/31/83/9780399133183.jpg'), + ('0066214122', 'Prey', 'https://images.isbndb.com/covers/41/22/9780066214122.jpg'), + ('0684803135', 'The Moral Compass: Stories For A Life''s Journey', 'https://images.isbndb.com/covers/31/35/9780684803135.jpg'), + ('0451404300', 'The Dividing Line (Onyx)', 'https://images.isbndb.com/covers/43/05/9780451404305.jpg'), + ('0312192339', 'Incident At Twenty-Mile', 'https://images.isbndb.com/covers/23/34/9780312192334.jpg'), + ('0060802162', 'Hitler : A Study In Tyranny ( Harper Perennial Library, P 216)', 'https://images.isbndb.com/covers/21/65/9780060802165.jpg'), + ('0394744322', 'WAITING TO LIVE-V432 (Aventura)', 'https://images.isbndb.com/covers/43/22/9780394744322.jpg'), + ('0375507523', 'Bushwhacked: Life In George W. Bush''s America', 'https://images.isbndb.com/covers/75/26/9780375507526.jpg'), + ('0140266909', 'Please Kill Me: The Uncensored Oral History Of Punk', 'https://images.isbndb.com/covers/69/00/9780140266900.jpg'), + ('0836221192', 'Fugitive From The Cubicle Police', 'https://images.isbndb.com/covers/11/90/9780836221190.jpg'), + ('0446386405', 'How To Live With A Neurotic Cat', 'https://images.isbndb.com/covers/64/01/9780446386401.jpg'), + ('0688088007', 'Grand Tours And Cook''s Tours: A History Of Leisure Travel, 1750-1915', 'https://images.isbndb.com/covers/80/02/9780688088002.jpg'), + ('0140444203', 'The Jewish War: Revised Edition (Penguin Classics)', 'https://images.isbndb.com/covers/42/09/9780140444209.jpg'), + ('1878825003', 'The Decline And Fall Of The American Empire (The Real Story Series)', 'https://images.isbndb.com/covers/50/01/9781878825001.jpg'), + ('0070037485', 'Flaubert''s Parrot', 'https://images.isbndb.com/covers/74/89/9780070037489.jpg'), + ('3499102277', 'Lachen, Liebe, Nächte: Sechs Erzählungen', 'https://images.isbndb.com/covers/22/71/9783499102271.jpg'), + ('0872203948', 'The Peloponnesian War', 'https://images.isbndb.com/covers/39/45/9780872203945.jpg'), + ('0385721404', 'Holy War: The Crusades And Their Impact On Today''s World', 'https://images.isbndb.com/covers/14/00/9780385721400.jpg'), + ('0375410597', 'Executioner''s Current: Thomas Edison, George Westinghouse, And The Invention Of The Electric Chair', 'https://images.isbndb.com/covers/05/98/9780375410598.jpg'), + ('0440125081', 'Final Diagnosis, The', 'https://images.isbndb.com/covers/50/82/9780440125082.jpg'), + ('0446604275', 'Primary Colors: A Novel Of Politics', 'https://images.isbndb.com/covers/42/77/9780446604277.jpg'), + ('0671501747', 'Salvador', 'https://images.isbndb.com/covers/17/47/9780671501747.jpg'), + ('0805040900', 'The Twilight Of Common Dreams: Why America Is Wracked By Culture Wars', 'https://images.isbndb.com/covers/09/06/9780805040906.jpg'), + ('0465006930', 'The Bell Curve Wars: Race, Intelligence, And The Future Of America (A New Republic Book)', 'https://images.isbndb.com/covers/69/39/9780465006939.jpg'), + ('0670804541', 'Amusing Ourselves To Death', 'https://images.isbndb.com/covers/45/42/9780670804542.jpg'), + ('0679741836', 'Molly Ivins Can''t Say That, Can She?', 'https://images.isbndb.com/covers/18/31/9780679741831.jpg'), + ('068810391X', 'The Next Century', 'https://images.isbndb.com/covers/39/10/9780688103910.jpg'), + ('0849912903', 'The End Of The Age: A Novel', 'https://images.isbndb.com/covers/29/00/9780849912900.jpg'), + ('034531798X', 'FOUNDATION', 'https://images.isbndb.com/covers/79/88/9780345317988.jpg'), + ('0812968379', 'Funny In Farsi: A Memoir Of Growing Up Iranian In America', 'https://images.isbndb.com/covers/83/78/9780812968378.jpg'), + ('0312961294', 'Snow In April', 'https://images.isbndb.com/covers/12/99/9780312961299.jpg'), + ('034545071X', 'Distant Shores', 'https://images.isbndb.com/covers/07/15/9780345450715.jpg'), + ('0451188470', 'The Love Letter', 'https://images.isbndb.com/covers/84/72/9780451188472.jpg'), + ('006019541X', 'Blue Angel: A Novel', 'https://images.isbndb.com/covers/54/10/9780060195410.jpg'), + ('0446527696', 'The Edge Of Town', 'https://images.isbndb.com/covers/76/99/9780446527699.jpg'), + ('0446609749', 'Getting Back', 'https://images.isbndb.com/covers/97/46/9780446609746.jpg'), + ('0375502238', 'Blessings', 'https://images.isbndb.com/covers/22/31/9780375502231.jpg'), + ('0440202043', 'The Shell Seekers', 'https://images.isbndb.com/covers/20/42/9780440202042.jpg'), + ('0345285557', 'The Elfstones Of Shannara', 'https://images.isbndb.com/covers/55/53/9780345285553.jpg'), + ('0821723243', 'House Of Illusions', 'https://images.isbndb.com/covers/32/41/9780821723241.jpg'), + ('0312156499', 'Seeing Calvin Coolidge In A Dream: A Novel', 'https://images.isbndb.com/covers/64/97/9780312156497.jpg'), + ('0938077112', 'The Heart Of Understanding: Commentaries On The Prajnaparamita Heart Sutra', 'https://images.isbndb.com/covers/71/14/9780938077114.jpg'), + ('0312975228', 'Boy In The Water', 'https://images.isbndb.com/covers/52/27/9780312975227.jpg'), + ('0590452037', 'Maniac Magee', 'https://images.isbndb.com/covers/20/38/9780590452038.jpg'), + ('0451183665', 'A Case Of Need', 'https://images.isbndb.com/covers/36/68/9780451183668.jpg'), + ('0061097268', 'Unwanted Company', 'https://images.isbndb.com/covers/72/63/9780061097263.jpg'), + ('0553111531', 'Darkness Peering', 'https://images.isbndb.com/covers/15/38/9780553111538.jpg'), + ('0439137411', 'Mewtwo Strikes Back (Pokemon, The First Movie)', 'https://images.isbndb.com/covers/74/16/9780439137416.jpg'), + ('0312155859', 'Mary Queen Of Scotland & The Isles: A Novel', 'https://images.isbndb.com/covers/58/58/9780312155858.jpg'), + ('0380758377', 'Without Due Process', 'https://images.isbndb.com/covers/83/71/9780380758371.jpg'), + ('0345441761', 'Death Row', 'https://images.isbndb.com/covers/17/68/9780345441768.jpg'), + ('0399150897', 'Blow Fly', 'https://images.isbndb.com/covers/08/90/9780399150890.jpg'), + ('0449911160', 'About Schmidt (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/11/67/9780449911167.jpg'), + ('0671868640', 'The ENCHANTED APRIL', 'https://images.isbndb.com/covers/86/42/9780671868642.jpg'), + ('0553247379', 'The Mother Hunt', 'https://images.isbndb.com/covers/73/74/9780553247374.jpg'), + ('0061043508', 'Strong Poison', 'https://images.isbndb.com/covers/35/05/9780061043505.jpg'), + ('0811828964', 'The Bad Girl''s Guide To Getting What You Want', 'https://images.isbndb.com/covers/89/63/9780811828963.jpg'), + ('0671624342', 'A Matter Of Honor', 'https://images.isbndb.com/covers/43/47/9780671624347.jpg'), + ('0786890169', 'Black Water: A Merci Rayborn Novel', 'https://images.isbndb.com/covers/01/63/9780786890163.jpg'), + ('074322535X', 'Gap Creek: The Story Of A Marriage', 'https://images.isbndb.com/covers/53/59/9780743225359.jpg'), + ('0399148728', 'Fire Ice: A Novel From The NUMA Files', 'https://images.isbndb.com/covers/87/29/9780399148729.jpg'), + ('0071349294', 'Great Eastern RV Trips: A Year-Round Guide To The Best Rving In The East', 'https://images.isbndb.com/covers/92/91/9780071349291.jpg'), + ('0312869061', 'Swell Foop (Xanth Novels)', 'https://images.isbndb.com/covers/90/69/9780312869069.jpg'), + ('0812968212', 'Matchstick Men: A Novel About Grifters With Issues', 'https://images.isbndb.com/covers/82/17/9780812968217.jpg'), + ('0312264372', 'Robert Ludlum''s The Hades Factor: A Covert-One Novel', 'https://images.isbndb.com/covers/43/76/9780312264376.jpg'), + ('0684841185', 'Death Du Jour', 'https://images.isbndb.com/covers/11/82/9780684841182.jpg'), + ('0749005491', 'Chill Factor (Detective Inspector Charlie Priest Mystery)', 'https://images.isbndb.com/covers/54/98/9780749005498.jpg'), + ('0679463070', 'Casual Rex: A Novel', 'https://images.isbndb.com/covers/30/78/9780679463078.jpg'), + ('0399146865', 'Getting What You Want: The 7 Principles Of Rational Living', 'https://images.isbndb.com/covers/68/62/9780399146862.jpg'), + ('0312873085', 'Elixir', 'https://images.isbndb.com/covers/30/80/9780312873080.jpg'), + ('0875964249', 'A Lifetime Of Sex: The Ultimate Manual On Sex, Women, And Relationships For Every Stage Of A Man''s Life', 'https://images.isbndb.com/covers/42/49/9780875964249.jpg'), + ('0028625757', 'The Complete Illustrated Guide To Everything Sold In Hardware Stores', 'https://images.isbndb.com/covers/57/51/9780028625751.jpg'), + ('0399146687', 'Perish Twice', 'https://images.isbndb.com/covers/66/88/9780399146688.jpg'), + ('055380099X', 'Last Puzzle & Testament', 'https://images.isbndb.com/covers/09/99/9780553800999.jpg'), + ('0316693286', 'Pop Goes The Weasel (Alex Cross)', 'https://images.isbndb.com/covers/32/88/9780316693288.jpg'), + ('0670861944', 'Math Curse', 'https://images.isbndb.com/covers/19/41/9780670861941.jpg'), + ('0399146237', 'Running Blind (Jack Reacher, No. 4)', 'https://images.isbndb.com/covers/62/37/9780399146237.jpg'), + ('0684842106', 'Terminal Event: A Novel', 'https://images.isbndb.com/covers/21/03/9780684842103.jpg'), + ('0439164842', 'Eleanor: Crown Jewel Of Aquitaine, France, 1136 (The Royal Diaries)', 'https://images.isbndb.com/covers/48/49/9780439164849.jpg'), + ('0060174056', 'The Tennis Partner', 'https://images.isbndb.com/covers/40/57/9780060174057.jpg'), + ('0373484887', 'Hidden Star (The Stars Of Mithra)', 'https://images.isbndb.com/covers/48/81/9780373484881.jpg'), + ('0099521016', 'Midnight In The Garden Of Good And Evil', 'https://images.isbndb.com/covers/10/13/9780099521013.jpg'), + ('0750005815', 'Whitby Series Pb Book 1 (Whitby Book One)', 'https://images.isbndb.com/covers/58/14/9780750005814.jpg'), + ('075001203X', 'Whitby Series Pb Book 2 (Whitby Book Two)', 'https://images.isbndb.com/covers/20/34/9780750012034.jpg'), + ('0330261878', 'Animals Of Farthing Wood', 'https://images.isbndb.com/covers/18/76/9780330261876.jpg'), + ('0140302395', 'Gobbolino The Witch''s Cat (Young Puffin Books)', 'https://images.isbndb.com/covers/23/94/9780140302394.jpg'), + ('0060086246', 'Last Chance Saloon', 'https://images.isbndb.com/covers/62/44/9780060086244.jpg'), + ('0451180429', 'The Quiet Game', 'https://images.isbndb.com/covers/04/21/9780451180421.jpg'), + ('0373250126', 'Milkrun', 'https://images.isbndb.com/covers/01/27/9780373250127.jpg'), + ('0060723890', 'The Other Man: John F. Kennedy Jr., Carolyn Bessette, And Me', 'https://images.isbndb.com/covers/38/97/9780060723897.jpg'), + ('0373250193', 'Loose Screws (Red Dress Ink)', 'https://images.isbndb.com/covers/01/96/9780373250196.jpg'), + ('0758204930', 'Life A La Mode', 'https://images.isbndb.com/covers/49/36/9780758204936.jpg'), + ('0451410947', 'Must Love Dogs', 'https://images.isbndb.com/covers/09/48/9780451410948.jpg'), + ('038550926X', 'The Devil Wears Prada: A Novel', 'https://images.isbndb.com/covers/92/68/9780385509268.jpg'), + ('0061010707', 'Men, Women And Relationships', 'https://images.isbndb.com/covers/07/05/9780061010705.jpg'), + ('3462031112', 'Affenliebe: Die Geschichte Eines Langen Entzugs', 'https://images.isbndb.com/covers/11/19/9783462031119.jpg'), + ('3499187809', 'Der Mann, Der Seine Frau Mit Einem Hut Verwechselte', 'https://images.isbndb.com/covers/78/03/9783499187803.jpg'), + ('3446203966', 'Das Leiden Anderer Betrachten', 'https://images.isbndb.com/covers/39/69/9783446203969.jpg'), + ('3442727367', 'Katalog Von Allem. 1111 Nummern Aus 31 Jahren.', 'https://images.isbndb.com/covers/73/60/9783442727360.jpg'), + ('3216303217', 'Cramer', 'https://images.isbndb.com/covers/32/19/9783216303219.jpg'), + ('3442444020', 'Denn Sie Betrügt Man Nicht. Roman', 'https://images.isbndb.com/covers/40/21/9783442444021.jpg'), + ('3257229364', 'Endstation Venedig: Commissario Brunettis Zweiter Fall', 'https://images.isbndb.com/covers/93/63/9783257229363.jpg'), + ('349961118X', 'Minusgrade - Auf Der Suche Nach Dem Absoluten Nullpunkt', 'https://images.isbndb.com/covers/11/86/9783499611186.jpg'), + ('3795116074', 'Wüstenblume', 'https://images.isbndb.com/covers/60/71/9783795116071.jpg'), + ('3499232103', 'Lobrede Auf Das Fehlende Teil', 'https://images.isbndb.com/covers/21/07/9783499232107.jpg'), + ('0552998001', 'Blackberry Wine', 'https://images.isbndb.com/covers/80/00/9780552998000.jpg'), + ('3499114178', 'Gammler, Zen Und Hohe Berge', 'https://images.isbndb.com/covers/41/75/9783499114175.jpg'), + ('3442439736', 'Die Schandmaske', 'https://images.isbndb.com/covers/97/37/9783442439737.jpg'), + ('3442350484', 'Die Eiserne Kaiserin', 'https://images.isbndb.com/covers/04/83/9783442350483.jpg'), + ('0671004530', 'On The Street Where You Live', 'https://images.isbndb.com/covers/45/38/9780671004538.jpg'), + ('3421056056', 'Rosa: Roman', 'https://images.isbndb.com/covers/60/54/9783421056054.jpg'), + ('3442720141', 'Der Buchtrinker.', 'https://images.isbndb.com/covers/01/49/9783442720149.jpg'), + ('325722575X', 'Der Hahn Ist Tot', 'https://images.isbndb.com/covers/57/54/9783257225754.jpg'), + ('3442413338', 'Lauf, Jane, Lauf!: Roman', 'https://images.isbndb.com/covers/33/31/9783442413331.jpg'), + ('3499129728', 'Karussell Des Lebens', 'https://images.isbndb.com/covers/97/28/9783499129728.jpg'), + ('3442435366', 'Die Tote Ohne Namen: Roman', 'https://images.isbndb.com/covers/53/64/9783442435364.jpg'), + ('3442441382', 'Ein Fall Für Kay Scarpetta', 'https://images.isbndb.com/covers/13/89/9783442441389.jpg'), + ('3499613638', 'Ein Blick Zurück, Ein Schritt Nach Vorn', 'https://images.isbndb.com/covers/36/30/9783499613630.jpg'), + ('3499134411', 'Stadtgeschichten', 'https://images.isbndb.com/covers/44/18/9783499134418.jpg'), + ('3257224303', 'Gibt''s Ein Baby, Das Nicht Schreit? Roman.', 'https://images.isbndb.com/covers/43/06/9783257224306.jpg'), + ('3462025864', 'Fever Pitch: Ballfieber - Die Geschichte Eines Fans', 'https://images.isbndb.com/covers/58/66/9783462025866.jpg'), + ('0811811654', 'Taxi Driver Wisdom', 'https://images.isbndb.com/covers/16/51/9780811811651.jpg'), + ('0440226414', 'Fortune''s Hand', 'https://images.isbndb.com/covers/64/13/9780440226413.jpg'), + ('0060233532', 'David And Della: A Novel', 'https://images.isbndb.com/covers/35/32/9780060233532.jpg'), + ('0060959037', 'Prodigal Summer: A Novel', 'https://images.isbndb.com/covers/90/36/9780060959036.jpg'), + ('055327886X', 'Rubyfruit Jungle', 'https://images.isbndb.com/covers/88/66/9780553278866.jpg'), + ('0805036377', 'M Is For Malice (The Kinsey Millhone Alphabet Mysteries)', 'https://images.isbndb.com/covers/63/74/9780805036374.jpg'), + ('0688156134', 'Stalker: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/61/38/9780688156138.jpg'), + ('0374232415', 'Pictures Of A Childhood: Sixty-Six Watercolors And An Essay', 'https://images.isbndb.com/covers/24/12/9780374232412.jpg'), + ('014028009X', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/00/98/9780140280098.jpg'), + ('0060697024', 'Gifts Of The Spirit: Living The Wisdom Of The Great Religious Traditions', 'https://images.isbndb.com/covers/70/20/9780060697020.jpg'), + ('0140254587', 'Salvation On Sand Mountain: Snake-Handling And Redemption In Southern Appalachia', 'https://images.isbndb.com/covers/45/87/9780140254587.jpg'), + ('0375708278', 'Isaac''s Storm: A Man, A Time, And The Deadliest Hurricane In History', 'https://images.isbndb.com/covers/82/75/9780375708275.jpg'), + ('3442541034', 'Enten Füttern.', 'https://images.isbndb.com/covers/10/34/9783442541034.jpg'), + ('0340581239', 'Blindfold', 'https://images.isbndb.com/covers/12/30/9780340581230.jpg'), + ('0425187063', 'Death In Paradise (Jesse Stone Novels)', 'https://images.isbndb.com/covers/70/67/9780425187067.jpg'), + ('2264032200', 'Maybe The Moon', 'https://images.isbndb.com/covers/22/01/9782264032201.jpg'), + ('2070407675', 'Les Enfants Du Marais', 'https://images.isbndb.com/covers/76/75/9782070407675.jpg'), + ('2253171395', 'Une Si Longue Nuit', 'https://images.isbndb.com/covers/13/93/9782253171393.jpg'), + ('2070408507', 'Le Petit Prince', 'https://images.isbndb.com/covers/85/04/9782070408504.jpg'), + ('2253054747', 'Ne Pleure Pas Ma Belle', 'https://images.isbndb.com/covers/47/40/9782253054740.jpg'), + ('0002258579', 'Resurrection Club', 'https://images.isbndb.com/covers/85/79/9780002258579.jpg'), + ('0446361305', 'Queen Of Angels (Questar Science Fiction)', 'https://images.isbndb.com/covers/13/09/9780446361309.jpg'), + ('3775713328', 'Ernst Ludwig Kirchner. Mountain Life. The Early Years In Davos 1917-1926', 'https://images.isbndb.com/covers/33/20/9783775713320.jpg'), + ('0451524063', 'Four Major Plays: Volume 1: A Doll House; The Wild Duck; Hedda Gabler; The Master Builder (Signet Classics)', 'https://images.isbndb.com/covers/40/65/9780451524065.jpg'), + ('0451411285', 'Sing Me Home', 'https://images.isbndb.com/covers/12/80/9780451411280.jpg'), + ('0743246349', 'Heaven Lake: A Novel', 'https://images.isbndb.com/covers/63/47/9780743246347.jpg'), + ('031286504X', 'I Am Legend', 'https://images.isbndb.com/covers/50/47/9780312865047.jpg'), + ('1928556396', 'Searching For Virginia Dare: A Fool''s Errand', 'https://images.isbndb.com/covers/63/98/9781928556398.jpg'), + ('0517676044', 'Spite,Malice And Revenge: The Ultimate Guide To Getting Even (3 Diabolical Volumes In 1)', 'https://images.isbndb.com/covers/60/42/9780517676042.jpg'), + ('1562054376', 'Internet Firewalls And Network Security', 'https://images.isbndb.com/covers/43/73/9781562054373.jpg'), + ('0735700737', 'CCNA Exam Certification Guide (CCNA Exam 640-407)', 'https://images.isbndb.com/covers/07/34/9780735700734.jpg'), + ('0028604032', 'The New York Public Library Science Desk Reference (The New York Public Library Series)', 'https://images.isbndb.com/covers/40/39/9780028604039.jpg'), + ('1573220256', 'Ethics For The New Millennium', 'https://images.isbndb.com/covers/02/55/9781573220255.jpg'), + ('034547063X', 'Black House', 'https://images.isbndb.com/covers/06/38/9780345470638.jpg'), + ('0425181480', 'Bump And Run', 'https://images.isbndb.com/covers/14/85/9780425181485.jpg'), + ('0405054610', 'Little Golden America (Foreign Travelers In America, 1810-1935 Ser.)', 'https://images.isbndb.com/covers/46/17/9780405054617.jpg'), + ('0312280769', 'Education Of A Felon: A Memoir', 'https://images.isbndb.com/covers/07/65/9780312280765.jpg'), + ('1585673390', 'Past Continuous (Tusk Ivories)', 'https://images.isbndb.com/covers/33/91/9781585673391.jpg'), + ('0886778964', 'Valor''s Choice (Valor Novel)', 'https://images.isbndb.com/covers/89/65/9780886778965.jpg'), + ('3596154766', 'Silberfaden', 'https://images.isbndb.com/covers/47/60/9783596154760.jpg'), + ('1561631469', 'Verdilak', 'https://images.isbndb.com/covers/14/69/9781561631469.jpg'), + ('1841950149', 'Shella (Canongate Crime Classics S.)', 'https://images.isbndb.com/covers/01/43/9781841950143.jpg'), + ('1852428112', 'The Sexual Life Of Catherine M.', 'https://images.isbndb.com/covers/81/12/9781852428112.jpg'), + ('1418447293', 'The Thoughts Of An Emigrant', 'https://images.isbndb.com/covers/72/98/9781418447298.jpg'), + ('0451457811', 'Storm Front (The Dresden Files, Book 1)', 'https://images.isbndb.com/covers/78/13/9780451457813.jpg'), + ('0553342495', 'Love Medicine: A Novel', 'https://images.isbndb.com/covers/24/99/9780553342499.jpg'), + ('0374525641', 'The Spirit Catches You And You Fall Down', 'https://images.isbndb.com/covers/56/44/9780374525644.jpg'), + ('0571167926', 'Vampyres: Lord Byron To Count Dracula', 'https://images.isbndb.com/covers/79/20/9780571167920.jpg'), + ('059043344X', 'Ten Great Mysteries By Edgar Allan Poe', 'https://images.isbndb.com/covers/34/40/9780590433440.jpg'), + ('0140043136', 'The Bride And The Bachelors: Five Masters Of The Avant-Garde', 'https://images.isbndb.com/covers/31/36/9780140043136.jpg'), + ('0874775132', 'Drawing On The Right Side Of The Brain', 'https://images.isbndb.com/covers/51/36/9780874775136.jpg'), + ('0738846503', 'Phoenix Flower', 'https://images.isbndb.com/covers/65/07/9780738846507.jpg'), + ('1552633217', 'The Jasmine Man', 'https://images.isbndb.com/covers/32/12/9781552633212.jpg'), + ('0375701311', 'Martha Peake: A Novel Of The Revolution', 'https://images.isbndb.com/covers/13/13/9780375701313.jpg'), + ('0340265450', 'Margaret The Queen', 'https://images.isbndb.com/covers/54/51/9780340265451.jpg'), + ('0441004954', 'The Dragon And The Djinn', 'https://images.isbndb.com/covers/49/59/9780441004959.jpg'), + ('0312244266', 'Let''s Talk About Being Selfish', 'https://images.isbndb.com/covers/42/62/9780312244262.jpg'), + ('0786889098', 'Tropical Depression', 'https://images.isbndb.com/covers/90/99/9780786889099.jpg'), + ('0373169884', 'The Playboy''s Protegee (Harlequin American Romance)', 'https://images.isbndb.com/covers/98/87/9780373169887.jpg'), + ('1551660539', 'Falcon''S Flight', 'https://images.isbndb.com/covers/05/30/9781551660530.jpg'), + ('0373076371', 'Night Of The Jaguar', 'https://images.isbndb.com/covers/63/76/9780373076376.jpg'), + ('0373259646', 'Tempted In Texas (Single In The City) (Harlequin Temptation)', 'https://images.isbndb.com/covers/96/49/9780373259649.jpg'), + ('0553445014', 'PLAYING WITH FIRE (Loveswept)', 'https://images.isbndb.com/covers/50/15/9780553445015.jpg'), + ('037325668X', 'Man Under The Mistletoe (Harlequin Temptation)', 'https://images.isbndb.com/covers/66/86/9780373256686.jpg'), + ('0373098006', 'The Pride Of St Charles Avenue (Silhouette Special Edition #800)', 'https://images.isbndb.com/covers/80/02/9780373098002.jpg'), + ('0373095244', 'Phoenix Rising (Silhouette Special Edition)', 'https://images.isbndb.com/covers/52/47/9780373095247.jpg'), + ('0373885210', 'The Fairy Tale Girl (Western Lovers: Denim & Diamonds #21)', 'https://images.isbndb.com/covers/52/13/9780373885213.jpg'), + ('1565970519', 'High-Riding Heroes (Kismet Romance)', 'https://images.isbndb.com/covers/05/19/9781565970519.jpg'), + ('0373075286', 'Mclain''S Law (Premiere) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/52/87/9780373075287.jpg'), + ('0373223455', 'Lethal Lover (Dangerous Men, Book 11) (Harlequin Intrigue Series #345)', 'https://images.isbndb.com/covers/34/59/9780373223459.jpg'), + ('0373031114', 'The Girl He Left Behind (Harlequin Romance #3111)', 'https://images.isbndb.com/covers/11/15/9780373031115.jpg'), + ('0373115458', 'Spirit Of Love (Harlequin Presents)', 'https://images.isbndb.com/covers/54/57/9780373115457.jpg'), + ('0373164556', 'Sand Man (Harlequin American Romance, No. 455)', 'https://images.isbndb.com/covers/45/54/9780373164554.jpg'), + ('0821756672', 'Firebrand', 'https://images.isbndb.com/covers/66/76/9780821756676.jpg'), + ('0373291019', 'Angel Of The Knight (Historical, 501) By Diana Hall', 'https://images.isbndb.com/covers/10/14/9780373291014.jpg'), + ('0373168713', 'Tame An Older Man (2001 Ways To Wed) (Harlequin American Romance)', 'https://images.isbndb.com/covers/87/12/9780373168712.jpg'), + ('0373168829', 'Daddy To Be Determined (Who''S The Daddy?) (American Romance, 882)', 'https://images.isbndb.com/covers/88/28/9780373168828.jpg'), + ('0373169795', 'Have Cowboy, Need Cupid (Harlequin American Romance, No 979)', 'https://images.isbndb.com/covers/97/95/9780373169795.jpg'), + ('0373169477', 'Secret Service Dad: Grooms In Uniform (Harlequin American Romance, No 947)', 'https://images.isbndb.com/covers/94/74/9780373169474.jpg'), + ('0446364290', 'Prime Time', 'https://images.isbndb.com/covers/42/94/9780446364294.jpg'), + ('0373482957', 'Undue Influence (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/29/55/9780373482955.jpg'), + ('0446600342', 'Where There''s Smoke', 'https://images.isbndb.com/covers/03/47/9780446600347.jpg'), + ('0445205512', 'Slow Heat In Heaven', 'https://images.isbndb.com/covers/55/12/9780445205512.jpg'), + ('1551666014', 'Tomorrow''s Promise', 'https://images.isbndb.com/covers/60/13/9781551666013.jpg'), + ('0446356859', 'Sunset Embrace (Coleman Family Saga)', 'https://images.isbndb.com/covers/68/55/9780446356855.jpg'), + ('0446603082', 'Sweet Anger', 'https://images.isbndb.com/covers/30/89/9780446603089.jpg'), + ('0446360511', 'Eloquent Silence', 'https://images.isbndb.com/covers/05/17/9780446360517.jpg'), + ('0446364312', 'Tempest In Eden', 'https://images.isbndb.com/covers/43/17/9780446364317.jpg'), + ('0446364150', 'Hidden Fires', 'https://images.isbndb.com/covers/41/57/9780446364157.jpg'), + ('0446356875', 'Another Dawn (Coleman Family Saga)', 'https://images.isbndb.com/covers/68/79/9780446356879.jpg'), + ('0373288468', 'Tapestry Of Fate (Harlequin Historical)', 'https://images.isbndb.com/covers/84/65/9780373288465.jpg'), + ('0373166621', 'Dana And The Calendar Man (Harlequin American Romance #662)', 'https://images.isbndb.com/covers/66/26/9780373166626.jpg'), + ('0446360708', 'Love Beyond Reason', 'https://images.isbndb.com/covers/07/08/9780446360708.jpg'), + ('0373222289', 'Ghostwriter (Harlequin Intrigue)', 'https://images.isbndb.com/covers/22/85/9780373222285.jpg'), + ('0373169302', 'Randall Honor (Brides For Brothers) (Harlequin American Romance Series # 930)', 'https://images.isbndb.com/covers/93/06/9780373169306.jpg'), + ('0373169639', 'Sweeping The Bride Away (Harlequin American Romance, No 963)', 'https://images.isbndb.com/covers/96/34/9780373169634.jpg'), + ('1551660903', 'Destiny''s Child', 'https://images.isbndb.com/covers/09/05/9781551660905.jpg'), + ('0553440845', 'The Last Brady (Loveswept No, 444)', 'https://images.isbndb.com/covers/08/43/9780553440843.jpg'), + ('0373098677', 'When Stars Collide (Silhouette Special Edition)', 'https://images.isbndb.com/covers/86/75/9780373098675.jpg'), + ('0373451911', 'For Old Times Sake (Men Made In America: South Dakota #41)', 'https://images.isbndb.com/covers/19/13/9780373451913.jpg'), + ('0373096585', 'Step From A Dream (Special Edition)', 'https://images.isbndb.com/covers/65/89/9780373096589.jpg'), + ('0373169175', 'The Unlawfully Wedded Princess (The Carradignes: American Royalty) (Harlequin American Romance # 917)', 'https://images.isbndb.com/covers/91/77/9780373169177.jpg'), + ('0373169469', 'The Inconveniently Engaged Prince: The Carradignes-American Royalty (Harlequin American Romance, No 946)', 'https://images.isbndb.com/covers/94/67/9780373169467.jpg'), + ('0373255500', 'One More Time (Harlequin Temptation)', 'https://images.isbndb.com/covers/55/04/9780373255504.jpg'), + ('037324343X', 'Texas Royalty (Special Edition, 1343)', 'https://images.isbndb.com/covers/34/33/9780373243433.jpg'), + ('0373165048', 'Twilight Magic (Harlequin American Romance)', 'https://images.isbndb.com/covers/50/49/9780373165049.jpg'), + ('0452282829', 'We Were The Mulvaneys (Oprah''s Book Club)', 'https://images.isbndb.com/covers/28/27/9780452282827.jpg'), + ('0452281091', 'Chang And Eng', 'https://images.isbndb.com/covers/10/97/9780452281097.jpg'), + ('0679781579', 'Ultimate Journey: Retracing The Path Of An Ancient Buddhist Monk Who Crossed Asia In Search Of Enlightenment', 'https://images.isbndb.com/covers/15/78/9780679781578.jpg'), + ('0380728532', 'The Rise And Fall Of The American Teenager', 'https://images.isbndb.com/covers/85/34/9780380728534.jpg'), + ('0395754127', 'The Gangster Of Love', 'https://images.isbndb.com/covers/41/22/9780395754122.jpg'), + ('1585673781', 'What If Our World Is Their Heaven? The Final Conversations Of Philip K. Dick', 'https://images.isbndb.com/covers/37/80/9781585673780.jpg'), + ('0879757892', 'Animal Rights & Human Morality', 'https://images.isbndb.com/covers/78/92/9780879757892.jpg'), + ('0803251734', 'Old Jules: 50th Anniversary Edition (Bison Book)', 'https://images.isbndb.com/covers/17/31/9780803251731.jpg'), + ('1582431612', 'The Visitor', 'https://images.isbndb.com/covers/16/11/9781582431611.jpg'), + ('0873382668', 'Lucy Breckinridge Of Grove Hill', 'https://images.isbndb.com/covers/26/63/9780873382663.jpg'), + ('0931122740', 'Heroes And Saints And Other Plays: Giving Up The Ghost, Shadow Of A Man, Heroes And Saints', 'https://images.isbndb.com/covers/27/43/9780931122743.jpg'), + ('1562800299', 'A Dooryard Full Of Flowers And Other Short Pieces', 'https://images.isbndb.com/covers/02/91/9781562800291.jpg'), + ('1562801465', 'Laurel', 'https://images.isbndb.com/covers/14/65/9781562801465.jpg'), + ('0934971013', 'The Riverhouse Stories: How Pubah S. Queen And Lazy LaRue Save The World', 'https://images.isbndb.com/covers/10/10/9780934971010.jpg'), + ('0553149121', 'Kiss Sleeping Beauty Goodbye: Breaking The Spell Of Feminine Myths And Models', 'https://images.isbndb.com/covers/91/28/9780553149128.jpg'), + ('0761504362', 'Coping With Miscarriage: A Simple, Reassuring Guide To Emotional And Physical Healing', 'https://images.isbndb.com/covers/43/68/9780761504368.jpg'), + ('0673523241', 'Family In Transition', 'https://images.isbndb.com/covers/32/42/9780673523242.jpg'), + ('0395354846', 'Gender Gap: Bella Abzug''s Guide To Political Power For American Women', 'https://images.isbndb.com/covers/48/41/9780395354841.jpg'), + ('0553258958', 'Against Our Will', 'https://images.isbndb.com/covers/89/50/9780553258950.jpg'), + ('0061040185', 'Women''s Reality: An Emerging Female System In A White Male Society', 'https://images.isbndb.com/covers/01/84/9780061040184.jpg'), + ('0816513333', 'New Chicana/Chicano Writing, Volume 2', 'https://images.isbndb.com/covers/33/38/9780816513338.jpg'), + ('0816513074', 'New Chicana/Chicano Writing 1', 'https://images.isbndb.com/covers/30/79/9780816513079.jpg'), + ('1888277173', 'Blood Sugar', 'https://images.isbndb.com/covers/71/73/9781888277173.jpg'), + ('155583356X', 'Generation Q', 'https://images.isbndb.com/covers/35/65/9781555833565.jpg'), + ('0688037127', 'Lesbian Crossroads: Personal Stories Of Lesbian Struggles And Triumphs', 'https://images.isbndb.com/covers/71/23/9780688037123.jpg'), + ('0688179096', 'Circling The Drain: Stories', 'https://images.isbndb.com/covers/90/90/9780688179090.jpg'), + ('1879960214', 'Hot Chicken Wings', 'https://images.isbndb.com/covers/02/13/9781879960213.jpg'), + ('0345367561', 'Floating World', 'https://images.isbndb.com/covers/75/63/9780345367563.jpg'), + ('0066214688', 'The E-Myth Contractor: Why Most Contractors'' Businesses Don''t Work And What To Do About It', 'https://images.isbndb.com/covers/46/89/9780066214689.jpg'), + ('0785268839', 'Wild At Heart: Discovering The Secret Of A Man''s Soul', 'https://images.isbndb.com/covers/88/33/9780785268833.jpg'), + ('0871135809', 'All The Trouble In The World', 'https://images.isbndb.com/covers/58/03/9780871135803.jpg'), + ('0590436848', 'The Golden Fleece And The Heroes Who Lived Before Achilles', 'https://images.isbndb.com/covers/68/47/9780590436847.jpg'), + ('3442352703', 'Der Himmel über Dem Moor.', 'https://images.isbndb.com/covers/27/08/9783442352708.jpg'), + ('0449219143', 'Bethlehem Road', 'https://images.isbndb.com/covers/91/40/9780449219140.jpg'), + ('3795115833', 'Coelln: Stadt, Dom, Fluss', 'https://images.isbndb.com/covers/58/38/9783795115838.jpg'), + ('3442721652', 'Alles Fließt, Sagt Heraklit', 'https://images.isbndb.com/covers/16/58/9783442721658.jpg'), + ('3499156938', 'Boy. Schönes Und Schreckliches Aus Meiner Kinderzeit', 'https://images.isbndb.com/covers/69/39/9783499156939.jpg'), + ('347354034X', 'Die Welle', 'https://images.isbndb.com/covers/03/41/9783473540341.jpg'), + ('034540761X', 'The Final Judgment', 'https://images.isbndb.com/covers/76/10/9780345407610.jpg'), + ('0061057797', 'DRAGON & UNICORN MM', 'https://images.isbndb.com/covers/77/93/9780061057793.jpg'), + ('033028813X', 'Terminal', 'https://images.isbndb.com/covers/81/32/9780330288132.jpg'), + ('0859696707', 'Understanding Your Personality', 'https://images.isbndb.com/covers/67/08/9780859696708.jpg'), + ('1844261085', 'A Book Without Covers', 'https://images.isbndb.com/covers/10/86/9781844261086.jpg'), + ('0385031386', 'Irrational Man: A Study In Existential Philosophy', 'https://images.isbndb.com/covers/13/87/9780385031387.jpg'), + ('0875420036', 'True Magick A Beginners Guide', 'https://images.isbndb.com/covers/00/35/9780875420035.jpg'), + ('0141001828', 'In The Heart Of The Sea: The Tragedy Of The Whaleship Essex', 'https://images.isbndb.com/covers/18/21/9780141001821.jpg'), + ('038078520X', 'Wed And Buried (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/52/09/9780380785209.jpg'), + ('3492229891', 'Mazel Tov In Las Vegas', 'https://images.isbndb.com/covers/98/90/9783492229890.jpg'), + ('0385468067', 'Cabal', 'https://images.isbndb.com/covers/80/60/9780385468060.jpg'), + ('0312420021', 'A Cold Case', 'https://images.isbndb.com/covers/00/24/9780312420024.jpg'), + ('0553293400', 'The Caves Of Steel (R. Daneel Olivaw, Book 1)', 'https://images.isbndb.com/covers/34/01/9780553293401.jpg'), + ('0060929871', 'Brave New World', 'https://images.isbndb.com/covers/98/79/9780060929879.jpg'), + ('0393312836', 'A Clockwork Orange', 'https://images.isbndb.com/covers/28/36/9780393312836.jpg'), + ('0553211757', 'Crime And Punishment (Bantam Classics)', 'https://images.isbndb.com/covers/17/57/9780553211757.jpg'), + ('0060931914', 'Demian (Perennial Classics)', 'https://images.isbndb.com/covers/19/19/9780060931919.jpg'), + ('0393318680', 'Filth', 'https://images.isbndb.com/covers/86/85/9780393318685.jpg'), + ('0590409433', 'Fallen Angels', 'https://images.isbndb.com/covers/94/38/9780590409438.jpg'), + ('0138700982', 'The Sun Never Sets: Travels To The Remaining Outposts Of The British Empire', 'https://images.isbndb.com/covers/09/80/9780138700980.jpg'), + ('0515093556', 'Belinda', 'https://images.isbndb.com/covers/35/51/9780515093551.jpg'), + ('1412014050', 'Natural Affinities', 'https://images.isbndb.com/covers/40/52/9781412014052.jpg'), + ('2253003964', 'Dix Petits Nègres', 'https://images.isbndb.com/covers/39/60/9782253003960.jpg'), + ('0399151850', 'The Queen Of The South', 'https://images.isbndb.com/covers/18/59/9780399151859.jpg'), + ('0802117821', 'Budapest: A Novel', 'https://images.isbndb.com/covers/78/23/9780802117823.jpg'), + ('0380897180', 'Captains Of The Sands', 'https://images.isbndb.com/covers/71/86/9780380897186.jpg'), + ('1573240923', 'Sisters: Shared Histories, Lifelong Ties', 'https://images.isbndb.com/covers/09/25/9781573240925.jpg'), + ('0385722206', 'Balzac And The Little Chinese Seamstress: A Novel', 'https://images.isbndb.com/covers/22/09/9780385722209.jpg'), + ('0702221988', 'Charades', 'https://images.isbndb.com/covers/19/89/9780702221989.jpg'), + ('0061095540', 'Marrying Mom', 'https://images.isbndb.com/covers/55/42/9780061095542.jpg'), + ('9879630130', 'Menos Tu Vientre (Spanish Edition)', 'https://images.isbndb.com/covers/01/36/9789879630136.jpg'), + ('0679732411', 'Gift From The Sea', 'https://images.isbndb.com/covers/24/19/9780679732419.jpg'), + ('0446606243', 'The Tenth Justice', 'https://images.isbndb.com/covers/62/40/9780446606240.jpg'), + ('0316785261', 'The Fig Eater: A Novel', 'https://images.isbndb.com/covers/52/66/9780316785266.jpg'), + ('0140049975', 'East Of Eden', 'https://images.isbndb.com/covers/99/78/9780140049978.jpg'), + ('3701712417', 'Mein Studium Ferner Welten', 'https://images.isbndb.com/covers/24/10/9783701712410.jpg'), + ('080913960X', 'Settings Of Silver: An Introduction To Judaism', 'https://images.isbndb.com/covers/96/06/9780809139606.jpg'), + ('0139483993', 'Understanding The Old Testament (Abridged 4th Edition)', 'https://images.isbndb.com/covers/39/98/9780139483998.jpg'), + ('0385494661', 'Kosher Sex: A Recipe For Passion And Intimacy', 'https://images.isbndb.com/covers/46/63/9780385494663.jpg'), + ('014062080X', 'Scarlet Letter (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/01/9780140620801.jpg'), + ('0425174808', 'Divide And Conquer (Tom Clancy''s Op-Center, Book 7)', 'https://images.isbndb.com/covers/48/07/9780425174807.jpg'), + ('0061002860', 'The Murder Of Roger Ackroyd', 'https://images.isbndb.com/covers/28/61/9780061002861.jpg'), + ('0140390847', 'Moby-Dick: Or, The Whale (Penguin Classics)', 'https://images.isbndb.com/covers/08/41/9780140390841.jpg'), + ('0451202856', 'Nothing But The Truth (Dismas Hardy)', 'https://images.isbndb.com/covers/28/57/9780451202857.jpg'), + ('0451405889', 'The Late Man', 'https://images.isbndb.com/covers/58/83/9780451405883.jpg'), + ('0312274971', 'Hardcase', 'https://images.isbndb.com/covers/49/79/9780312274979.jpg'), + ('0914171771', 'Chaos & Cyber Culture', 'https://images.isbndb.com/covers/17/75/9780914171775.jpg'), + ('0964849909', 'Earthbridge Crossing : A Sunny Approach To Philosophy, Quantum Physics, Spiritual Awareness, And The Evolution Of Human Consciousness', 'https://images.isbndb.com/covers/99/07/9780964849907.jpg'), + ('0886777461', 'The Golden Key', 'https://images.isbndb.com/covers/74/63/9780886777463.jpg'), + ('0375406956', 'My Name Is Red', 'https://images.isbndb.com/covers/69/59/9780375406959.jpg'), + ('0743202031', 'Juniper Tree Burning: A Novel', 'https://images.isbndb.com/covers/20/39/9780743202039.jpg'), + ('0767902912', 'An Equal Music', 'https://images.isbndb.com/covers/29/15/9780767902915.jpg'), + ('039571091X', 'Dakota: A Spiritual Geography', 'https://images.isbndb.com/covers/09/13/9780395710913.jpg'), + ('0395860318', 'The Distance From The Heart Of Things', 'https://images.isbndb.com/covers/03/11/9780395860311.jpg'), + ('0192833642', 'The Mill On The Floss (Oxford World''s Classics)', 'https://images.isbndb.com/covers/36/48/9780192833648.jpg'), + ('0750514833', 'A Peculiar Chemistry', 'https://images.isbndb.com/covers/48/35/9780750514835.jpg'), + ('1860463312', 'Miss Smilla''s Feeling For Snow', 'https://images.isbndb.com/covers/33/10/9781860463310.jpg'), + ('0142001430', 'Year Of Wonders: A Novel Of The Plague', 'https://images.isbndb.com/covers/14/31/9780142001431.jpg'), + ('0609809547', 'Tales Of A Female Nomad: Living At Large In The World', 'https://images.isbndb.com/covers/95/49/9780609809549.jpg'), + ('0440218667', 'The Select', 'https://images.isbndb.com/covers/86/61/9780440218661.jpg'), + ('0142000671', 'Of Mice And Men (Steinbeck Centennial Edition)', 'https://images.isbndb.com/covers/06/70/9780142000670.jpg'), + ('0425192792', 'Goddess Of The Sea (Goddess Summoning, Book 1)', 'https://images.isbndb.com/covers/27/95/9780425192795.jpg'), + ('0821774352', 'His Eternal Kiss', 'https://images.isbndb.com/covers/43/59/9780821774359.jpg'), + ('0505524139', 'The Star King (Star Series, Book 1)', 'https://images.isbndb.com/covers/41/33/9780505524133.jpg'), + ('0345463404', 'The Defiant Hero (Troubleshooters, Book 2)', 'https://images.isbndb.com/covers/34/01/9780345463401.jpg'), + ('0449006379', 'Lord Of Fire', 'https://images.isbndb.com/covers/63/75/9780449006375.jpg'), + ('1885840047', 'Divinely Decadent: The Strange Life And Loves Of Liza Minnelli', 'https://images.isbndb.com/covers/00/42/9781885840042.jpg'), + ('0060580208', 'Held Captive: The Kidnapping And Rescue Of Elizabeth Smart', 'https://images.isbndb.com/covers/02/09/9780060580209.jpg'), + ('0425191060', 'Still Life With Murder (Gilded Age Mysteries, No. 1)', 'https://images.isbndb.com/covers/10/64/9780425191064.jpg'), + ('0743458125', 'Top O'' The Mournin'' : A Passport To Peril Mystery', 'https://images.isbndb.com/covers/81/22/9780743458122.jpg'), + ('0312984820', 'Night Embrace (Dark-Hunter, Book 3)', 'https://images.isbndb.com/covers/48/23/9780312984823.jpg'), + ('0380764008', 'Grime And Punishment (Jane Jeffrey Mysteries, No. 1)', 'https://images.isbndb.com/covers/40/06/9780380764006.jpg'), + ('0060549270', 'A Greek God At The Ladies'' Club', 'https://images.isbndb.com/covers/92/75/9780060549275.jpg'), + ('0505525305', 'A Girl''s Guide To Vampires', 'https://images.isbndb.com/covers/53/07/9780505525307.jpg'), + ('0373218222', 'When Darkness Falls: Kiss Of The Wolf\Shadow Kissing\The Devil She Knew', 'https://images.isbndb.com/covers/82/26/9780373218226.jpg'), + ('0679777601', 'Confucius Lives Next Door: What Living In The East Teaches Us About Living In The West', 'https://images.isbndb.com/covers/76/01/9780679777601.jpg'), + ('0060505249', 'Where''s My Hero?', 'https://images.isbndb.com/covers/52/40/9780060505240.jpg'), + ('0425191257', 'Edge Of The Moon (The Moon Series, Book 2)', 'https://images.isbndb.com/covers/12/55/9780425191255.jpg'), + ('0451458923', 'Summer Knight (The Dresden Files, Book 4)', 'https://images.isbndb.com/covers/89/26/9780451458926.jpg'), + ('0805426183', 'Paperback Writer', 'https://images.isbndb.com/covers/61/82/9780805426182.jpg'), + ('0553800914', 'The Search (Iris Johansen)', 'https://images.isbndb.com/covers/09/13/9780553800913.jpg'), + ('080410526X', 'All I Really Need To Know I Learned In Kindergarten', 'https://images.isbndb.com/covers/52/62/9780804105262.jpg'), + ('031242227X', 'Running With Scissors: A Memoir', 'https://images.isbndb.com/covers/22/71/9780312422271.jpg'), + ('1555836577', 'Making A Killing', 'https://images.isbndb.com/covers/65/73/9781555836573.jpg'), + ('0553250256', 'The Catcher In The Rye', 'https://images.isbndb.com/covers/02/51/9780553250251.jpg'), + ('0451520793', 'Ethan Frome (Signet Classics)', 'https://images.isbndb.com/covers/07/91/9780451520791.jpg'), + ('030680395X', 'The Omni-americans: Black Experience And American Culture (Da Capo Press Paperback)', 'https://images.isbndb.com/covers/39/56/9780306803956.jpg'), + ('0440241812', 'Shopaholic Takes Manhattan (Shopaholic Series)', 'https://images.isbndb.com/covers/18/12/9780440241812.jpg'), + ('0767914767', 'The Devil Wears Prada: A Novel', 'https://images.isbndb.com/covers/47/65/9780767914765.jpg'), + ('0451528697', 'Bleak House (Signet Classics)', 'https://images.isbndb.com/covers/86/98/9780451528698.jpg'), + ('0060989270', 'Tommy''s Tale: A Novel', 'https://images.isbndb.com/covers/92/79/9780060989279.jpg'), + ('0374232105', 'The Pickup', 'https://images.isbndb.com/covers/21/08/9780374232108.jpg'), + ('0140061401', 'July''s People', 'https://images.isbndb.com/covers/14/06/9780140061406.jpg'), + ('0393310329', 'Maurice: A Novel', 'https://images.isbndb.com/covers/03/20/9780393310320.jpg'), + ('0679721037', 'Hiroshima', 'https://images.isbndb.com/covers/10/31/9780679721031.jpg'), + ('0140433988', 'Hard Times', 'https://images.isbndb.com/covers/39/82/9780140433982.jpg'), + ('0142437204', 'Jane Eyre (Penguin Classics)', 'https://images.isbndb.com/covers/72/09/9780142437209.jpg'), + ('1560235136', 'Harrington Gay Men''s Fiction Quarterly Vol. 4 Number 4', 'https://images.isbndb.com/covers/51/32/9781560235132.jpg'), + ('0440219892', 'Earthshine', 'https://images.isbndb.com/covers/98/97/9780440219897.jpg'), + ('1555834930', 'The Blue Lawn', 'https://images.isbndb.com/covers/49/37/9781555834937.jpg'), + ('1555836038', 'The President''s Son', 'https://images.isbndb.com/covers/60/30/9781555836030.jpg'), + ('0553272160', 'On Yankee Station: The Naval Air War Over Vietnam', 'https://images.isbndb.com/covers/21/61/9780553272161.jpg'), + ('006093090X', 'The Night Listener: A Novel', 'https://images.isbndb.com/covers/09/05/9780060930905.jpg'), + ('0942361598', 'Kids Who Make A Difference', 'https://images.isbndb.com/covers/15/99/9780942361599.jpg'), + ('055321148X', 'DRACULA', 'https://images.isbndb.com/covers/14/81/9780553211481.jpg'), + ('038533494X', 'Sometimes I Dream In Italian', 'https://images.isbndb.com/covers/49/45/9780385334945.jpg'), + ('0345355563', 'The Hill', 'https://images.isbndb.com/covers/55/60/9780345355560.jpg'), + ('0553210327', 'The Hunchback Of Notre Dame', 'https://images.isbndb.com/covers/03/23/9780553210323.jpg'), + ('0964109964', 'The Front Runner: A Novel', 'https://images.isbndb.com/covers/99/64/9780964109964.jpg'), + ('0553212524', '20,000 Leagues Under The Sea', 'https://images.isbndb.com/covers/25/25/9780553212525.jpg'), + ('0553251503', 'Soulmates', 'https://images.isbndb.com/covers/15/00/9780553251500.jpg'), + ('0393321096', 'The Abyssinian: A Novel', 'https://images.isbndb.com/covers/10/98/9780393321098.jpg'), + ('0553574132', 'Shadows Of The Empire (Star Wars)', 'https://images.isbndb.com/covers/41/35/9780553574135.jpg'), + ('038071681X', 'Ghost Girl: The True Story Of A Child In Peril And The Teacher Who Saved Her', 'https://images.isbndb.com/covers/68/14/9780380716814.jpg'), + ('088029261X', 'The Complete Sherlock Holmes', 'https://images.isbndb.com/covers/26/10/9780880292610.jpg'), + ('0517053586', 'Edgar Allan Poe: Selected Works, Deluxe Edition', 'https://images.isbndb.com/covers/35/84/9780517053584.jpg'), + ('0375706682', 'Dhalgren', 'https://images.isbndb.com/covers/66/84/9780375706684.jpg'), + ('0140270590', 'A New Song (The Mitford Years, Book 5)', 'https://images.isbndb.com/covers/05/94/9780140270594.jpg'), + ('0679445625', 'A Long Fatal Love Chase', 'https://images.isbndb.com/covers/56/23/9780679445623.jpg'), + ('0140862129', 'Winnie-the-Pooh On Problem Solving', 'https://images.isbndb.com/covers/21/26/9780140862126.jpg'), + ('0740735756', 'E-Mail To The Front: One Wife''s Correspondence With Her Husband Overseas', 'https://images.isbndb.com/covers/57/52/9780740735752.jpg'), + ('0440235596', 'Tara Road (Oprah''s Book Club)', 'https://images.isbndb.com/covers/55/90/9780440235590.jpg'), + ('0440906156', 'The Beatles Lyrics Illustrated', 'https://images.isbndb.com/covers/61/55/9780440906155.jpg'), + ('034540498X', 'Final Judgment', 'https://images.isbndb.com/covers/49/85/9780345404985.jpg'), + ('0671619373', 'Lady Boss', 'https://images.isbndb.com/covers/93/74/9780671619374.jpg'), + ('2070419657', 'Soie', 'https://images.isbndb.com/covers/96/54/9782070419654.jpg'), + ('0943734312', 'Discovering Dixie: The Best Of The Deep South Along The Magnolia Trail', 'https://images.isbndb.com/covers/43/16/9780943734316.jpg'), + ('0943734150', 'Peace Pilgrim: Her Life And Work In Her Own Words', 'https://images.isbndb.com/covers/41/56/9780943734156.jpg'), + ('0898861098', 'Miles From Nowhere: A Round The World Bicycle Adventure', 'https://images.isbndb.com/covers/10/99/9780898861099.jpg'), + ('0803267355', 'The Night Country', 'https://images.isbndb.com/covers/73/50/9780803267350.jpg'), + ('0964858401', 'North Carolina : A Guide To Backcountry Travel & Adventure', 'https://images.isbndb.com/covers/84/04/9780964858404.jpg'), + ('0679826718', 'The Tiger In The Well (Sally Lockhart Trilogy, Book 3)', 'https://images.isbndb.com/covers/67/12/9780679826712.jpg'), + ('1885211686', 'Travelers'' Tales Tuscany: True Stories', 'https://images.isbndb.com/covers/16/82/9781885211682.jpg'), + ('0767904893', 'Women Of The Pleasure Quarters: The Secret History Of The Geisha', 'https://images.isbndb.com/covers/48/96/9780767904896.jpg'), + ('0679733167', 'Sexing The Cherry', 'https://images.isbndb.com/covers/31/64/9780679733164.jpg'), + ('0679436685', 'The Wonders Of The Invisible World: Stories', 'https://images.isbndb.com/covers/66/83/9780679436683.jpg'), + ('074341120X', 'Silicon Follies', 'https://images.isbndb.com/covers/12/02/9780743411202.jpg'), + ('0618162216', 'The Hobbit; Or, There And Back Again', 'https://images.isbndb.com/covers/22/15/9780618162215.jpg'), + ('0375724621', 'UP At The Villa', 'https://images.isbndb.com/covers/46/26/9780375724626.jpg'), + ('0140077812', 'Greasy Lake And Other Stories (Contemporary American Fiction)', 'https://images.isbndb.com/covers/78/10/9780140077810.jpg'), + ('059045563X', 'Teeth Week (A Little Apple Paperback)', 'https://images.isbndb.com/covers/56/33/9780590455633.jpg'), + ('0375504907', 'Reading Lolita In Tehran: A Memoir In Books', 'https://images.isbndb.com/covers/49/07/9780375504907.jpg'), + ('0312087357', 'Bodysculpture: Weight Training For Women', 'https://images.isbndb.com/covers/73/57/9780312087357.jpg'), + ('0156907380', 'To The Lighthouse', 'https://images.isbndb.com/covers/73/85/9780156907385.jpg'), + ('0142000485', 'My Little Blue Dress', 'https://images.isbndb.com/covers/04/89/9780142000489.jpg'), + ('1584790660', 'My Cat Forgets Who Pays The Rent (Gestures Of Kindness)', 'https://images.isbndb.com/covers/06/62/9781584790662.jpg'), + ('0812910389', 'Our Marvelous Native Tongue: The Life And Times Of The English Language', 'https://images.isbndb.com/covers/03/84/9780812910384.jpg'), + ('1573245038', 'The Little Book Of Letting Go: A Revolutionary 30-Day Program To Cleanse Your Mind, Lift Your Spirit And Replenish Your Soul', 'https://images.isbndb.com/covers/50/36/9781573245036.jpg'), + ('061810450X', 'The Wind Done Gone: A Novel', 'https://images.isbndb.com/covers/45/05/9780618104505.jpg'), + ('0441231942', 'Crisis On Doona', 'https://images.isbndb.com/covers/19/42/9780441231942.jpg'), + ('0886773768', 'Sword-Dancer (Tiger And Del)', 'https://images.isbndb.com/covers/37/62/9780886773762.jpg'), + ('0345291794', 'Restoree', 'https://images.isbndb.com/covers/17/90/9780345291790.jpg'), + ('0449231992', 'Crowned Heads', 'https://images.isbndb.com/covers/19/99/9780449231999.jpg'), + ('0192820575', 'Facial Justice (Twentieth Century Classics)', 'https://images.isbndb.com/covers/05/70/9780192820570.jpg'), + ('0449907899', 'Here All Dwell Free: Stories To Heal The Wounded Feminine', 'https://images.isbndb.com/covers/78/94/9780449907894.jpg'), + ('0345301064', 'To Ride Pegasus', 'https://images.isbndb.com/covers/10/62/9780345301062.jpg'), + ('0226462110', 'Highroad To The Stake: A Tale Of Witchcraft', 'https://images.isbndb.com/covers/21/10/9780226462110.jpg'), + ('0425062341', 'Ghost Of Flight 401', 'https://images.isbndb.com/covers/23/40/9780425062340.jpg'), + ('0806967315', 'The World''s Most Challenging Puzzles', 'https://images.isbndb.com/covers/73/18/9780806967318.jpg'), + ('0944031072', 'Your Body Believes Every Word You Say', 'https://images.isbndb.com/covers/10/70/9780944031070.jpg'), + ('1567182445', 'The Ultimate Cure: The Healing Energy Within You (Llewellyn''s Whole Life Series)', 'https://images.isbndb.com/covers/24/46/9781567182446.jpg'), + ('0380776324', 'Women Who Run With The Poodles: Myths And Tips For Honoring Your Mood Swings', 'https://images.isbndb.com/covers/63/20/9780380776320.jpg'), + ('0440504716', 'Birth Order Book', 'https://images.isbndb.com/covers/47/19/9780440504719.jpg'), + ('0525942262', 'Cat Under The Mistletoe: An Alice Nestleton Mystery', 'https://images.isbndb.com/covers/22/69/9780525942269.jpg'), + ('0062508156', 'The Spiral Dance: A Rebirth Of The Ancient Religion Of The Great Goddess', 'https://images.isbndb.com/covers/81/57/9780062508157.jpg'), + ('014019536X', 'Drawing Down The Moon: Witches, Druids, Goddess-Worshippers, And Other Pagans In America Today (Compass)', 'https://images.isbndb.com/covers/53/61/9780140195361.jpg'), + ('0380816555', 'Practical Demonkeeping', 'https://images.isbndb.com/covers/65/52/9780380816552.jpg'), + ('0684848066', 'In The Meantime: Finding Yourself And The Love You Want', 'https://images.isbndb.com/covers/80/68/9780684848068.jpg'), + ('0449211827', 'Plague Dogs', 'https://images.isbndb.com/covers/18/23/9780449211823.jpg'), + ('0441627404', 'The Once And Future King', 'https://images.isbndb.com/covers/74/00/9780441627400.jpg'), + ('0553562738', 'Doomsday Book', 'https://images.isbndb.com/covers/27/36/9780553562736.jpg'), + ('0812555031', 'The Horse Goddess', 'https://images.isbndb.com/covers/50/35/9780812555035.jpg'), + ('0812536509', 'Pride Of Lions', 'https://images.isbndb.com/covers/65/08/9780812536508.jpg'), + ('0812553993', 'Lion Of Ireland', 'https://images.isbndb.com/covers/39/94/9780812553994.jpg'), + ('0380708892', 'Merlin (The Pendragon Cycle , Book 2)', 'https://images.isbndb.com/covers/88/95/9780380708895.jpg'), + ('038070613X', 'Taliesin (The Pendragon Cycle, Book 1)', 'https://images.isbndb.com/covers/61/36/9780380706136.jpg'), + ('0380805421', 'Smart Vs. Pretty', 'https://images.isbndb.com/covers/54/26/9780380805426.jpg'), + ('0425171264', 'Private Altars: A Novel', 'https://images.isbndb.com/covers/12/64/9780425171264.jpg'), + ('2277219517', '37°2 Le Matin', 'https://images.isbndb.com/covers/95/14/9782277219514.jpg'), + ('0441794297', 'The Sword Of Sagamore (Sagamore, Book 2)', 'https://images.isbndb.com/covers/42/94/9780441794294.jpg'), + ('0375708707', 'Where You Once Belonged', 'https://images.isbndb.com/covers/87/01/9780375708701.jpg'), + ('0802134475', 'Rain', 'https://images.isbndb.com/covers/44/79/9780802134479.jpg'), + ('0151003084', 'The Gashlycrumb Tinies', 'https://images.isbndb.com/covers/30/82/9780151003082.jpg'), + ('0553274066', 'Triumph Of The Darksword (The Darksword Trilogy)', 'https://images.isbndb.com/covers/40/66/9780553274066.jpg'), + ('1897783108', 'Oasis: Round Their Way', 'https://images.isbndb.com/covers/31/08/9781897783108.jpg'), + ('0340767278', 'Soldiers Return Uk', 'https://images.isbndb.com/covers/72/76/9780340767276.jpg'), + ('0679750932', 'My Idea Of Fun', 'https://images.isbndb.com/covers/09/32/9780679750932.jpg'), + ('042516098X', 'Hornet''s Nest (Andy Brazil)', 'https://images.isbndb.com/covers/09/85/9780425160985.jpg'), + ('0375701168', 'Doctor Faustus : The Life Of The German Composer Adrian Leverkuhn As Told By A Friend', 'https://images.isbndb.com/covers/11/60/9780375701160.jpg'), + ('0446613266', 'Four Blind Mice (Alex Cross)', 'https://images.isbndb.com/covers/32/62/9780446613262.jpg'), + ('038549081X', 'The Handmaid''s Tale', 'https://images.isbndb.com/covers/08/18/9780385490818.jpg'), + ('0312267460', 'Headlong: A Novel (Bestselling Backlist)', 'https://images.isbndb.com/covers/74/69/9780312267469.jpg'), + ('0140329358', 'Fangs Of Fury (Puffin Adventure Gamebooks)', 'https://images.isbndb.com/covers/93/53/9780140329353.jpg'), + ('074324396X', 'Solomon Time: An Unlikely Quest In The South Pacific', 'https://images.isbndb.com/covers/39/64/9780743243964.jpg'), + ('0552998486', 'Chocolat', 'https://images.isbndb.com/covers/84/82/9780552998482.jpg'), + ('0099759713', 'Rancid Aluminum', 'https://images.isbndb.com/covers/97/13/9780099759713.jpg'), + ('1853260193', 'Vanity Fair (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/01/93/9781853260193.jpg'), + ('1853260967', 'Confessions Of An English Opium Eater (Wordsworth Classics)', 'https://images.isbndb.com/covers/09/64/9781853260964.jpg'), + ('0140440151', 'Madame Bovary: A Story Of Provincial Life (Penguin Classics)', 'https://images.isbndb.com/covers/01/57/9780140440157.jpg'), + ('074993087X', 'Long Midnight Of Barney Thomson', 'https://images.isbndb.com/covers/08/75/9780749930875.jpg'), + ('0671041789', 'The Green Mile', 'https://images.isbndb.com/covers/17/86/9780671041786.jpg'), + ('0439139597', 'Harry Potter And The Goblet Of Fire (Book 4)', 'https://images.isbndb.com/covers/95/95/9780439139595.jpg'), + ('0439064864', 'Harry Potter And The Chamber Of Secrets (Book 2)', 'https://images.isbndb.com/covers/48/66/9780439064866.jpg'), + ('1575665379', 'The 10th Kingdom (Hallmark Entertainment Books)', 'https://images.isbndb.com/covers/53/75/9781575665375.jpg'), + ('0441005489', 'Redwall', 'https://images.isbndb.com/covers/54/82/9780441005482.jpg'), + ('0924171553', 'Treasures From The Royal Tombs Of Ur', 'https://images.isbndb.com/covers/15/50/9780924171550.jpg'), + ('0449909050', 'Thinking Out Loud: On The Personal, The Political, The Public And The Private', 'https://images.isbndb.com/covers/90/58/9780449909058.jpg'), + ('0330412302', 'Don''t Let''s Go To Dogs Tonight: An African Childhood', 'https://images.isbndb.com/covers/23/08/9780330412308.jpg'), + ('0064470059', 'Where The Lilies Bloom', 'https://images.isbndb.com/covers/00/56/9780064470056.jpg'), + ('0821222341', 'Amsterdam: Amsterdam And The Hague (Art In Focus)', 'https://images.isbndb.com/covers/23/48/9780821222348.jpg'), + ('0821221558', 'Paris (Art In Focus)', 'https://images.isbndb.com/covers/15/56/9780821221556.jpg'), + ('0380726297', 'Sacred', 'https://images.isbndb.com/covers/62/95/9780380726295.jpg'), + ('0553292056', 'Another Roadside Attraction', 'https://images.isbndb.com/covers/20/53/9780553292053.jpg'), + ('1860119190', 'London-Paris', 'https://images.isbndb.com/covers/91/94/9781860119194.jpg'), + ('082122154X', 'London (Art In Focus)', 'https://images.isbndb.com/covers/15/49/9780821221549.jpg'), + ('0553213512', 'The Time Machine', 'https://images.isbndb.com/covers/35/15/9780553213515.jpg'), + ('0060933577', 'Faithless: Tales Of Transgression', 'https://images.isbndb.com/covers/35/79/9780060933579.jpg'), + ('044023672X', 'Answered Prayers', 'https://images.isbndb.com/covers/67/26/9780440236726.jpg'), + ('0394839129', 'I Can Read With My Eyes Shut! (Beginner Books)', 'https://images.isbndb.com/covers/91/27/9780394839127.jpg'), + ('1573220213', 'Woman Who Walked On Water', 'https://images.isbndb.com/covers/02/17/9781573220217.jpg'), + ('0440180295', 'Slaughterhouse-Five', 'https://images.isbndb.com/covers/02/96/9780440180296.jpg'), + ('014044582X', 'The Last Days Of Socrates: Euthyphro; The Apology; Crito; Phaedo (Penguin Classics)', 'https://images.isbndb.com/covers/58/24/9780140445824.jpg'), + ('3423071001', 'Alice Im Wunderland', 'https://images.isbndb.com/covers/10/00/9783423071000.jpg'), + ('0884270610', 'The Goal: A Process Of Ongoing Improvement', 'https://images.isbndb.com/covers/06/14/9780884270614.jpg'), + ('0425170055', 'Rainbow Six', 'https://images.isbndb.com/covers/00/52/9780425170052.jpg'), + ('345832402X', 'Die Günderode', 'https://images.isbndb.com/covers/40/27/9783458324027.jpg'), + ('3499613425', 'Der Kleine Beziehungsberater', 'https://images.isbndb.com/covers/34/25/9783499613425.jpg'), + ('3548021026', 'Fabian. Die Geschichte Eines Moralisten (Ullstein Buch, 102)', 'https://images.isbndb.com/covers/10/27/9783548021027.jpg'), + ('351836605X', 'Stiller: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/60/59/9783518366059.jpg'), + ('1573229083', 'My Dream Of You', 'https://images.isbndb.com/covers/90/81/9781573229081.jpg'), + ('0805058249', 'Benjamin''s Crossing: A Novel', 'https://images.isbndb.com/covers/82/46/9780805058246.jpg'), + ('034540047X', 'The Hotel New Hampshire', 'https://images.isbndb.com/covers/04/75/9780345400475.jpg'), + ('0140255842', 'Drinking The Rain: A Memoir', 'https://images.isbndb.com/covers/58/43/9780140255843.jpg'), + ('0380805995', 'Kiss Of The Bees: A Novel Of Suspense', 'https://images.isbndb.com/covers/59/90/9780380805990.jpg'), + ('0425169375', 'The Best Of Friends', 'https://images.isbndb.com/covers/93/77/9780425169377.jpg'), + ('0671727311', 'After Henry', 'https://images.isbndb.com/covers/73/14/9780671727314.jpg'), + ('0449003795', 'P Is For Peril (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/37/94/9780449003794.jpg'), + ('055357874X', 'Finding Mr. Right', 'https://images.isbndb.com/covers/87/44/9780553578744.jpg'), + ('0671896326', 'Malice Domestic 5', 'https://images.isbndb.com/covers/63/24/9780671896324.jpg'), + ('3379017159', 'Manhattan Fliegt', 'https://images.isbndb.com/covers/71/52/9783379017152.jpg'), + ('0374190771', 'Looking For A Ship', 'https://images.isbndb.com/covers/07/74/9780374190774.jpg'), + ('0972660208', 'Passing The Flame: A Beadmaker''s Guide To Detail And Design', 'https://images.isbndb.com/covers/02/04/9780972660204.jpg'), + ('0939165376', 'Three Cats, Two Dogs: One Journey Through Multiple Pet Loss', 'https://images.isbndb.com/covers/53/77/9780939165377.jpg'), + ('0060935464', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/54/67/9780060935467.jpg'), + ('0446322180', 'The Name Of The Rose', 'https://images.isbndb.com/covers/21/88/9780446322188.jpg'), + ('1551668998', 'The Beach House', 'https://images.isbndb.com/covers/89/94/9781551668994.jpg'), + ('0515116173', 'Decider', 'https://images.isbndb.com/covers/61/75/9780515116175.jpg'), + ('157586326X', 'Things A Computer Scientist Rarely Talks About (Center For The Study Of Language And Information - Lecture Notes)', 'https://images.isbndb.com/covers/32/69/9781575863269.jpg'), + ('042516828X', 'Sudden Mischief (Spenser)', 'https://images.isbndb.com/covers/82/88/9780425168288.jpg'), + ('0440910552', 'Under Blood Red Sun', 'https://images.isbndb.com/covers/05/58/9780440910558.jpg'), + ('1853261092', 'Black Beauty (Wordsworth Children''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/10/91/9781853261091.jpg'), + ('0889950954', 'Prism Moon', 'https://images.isbndb.com/covers/09/55/9780889950955.jpg'), + ('1562477579', 'The Smuggler''s Treasure (American Girl History Mysteries)', 'https://images.isbndb.com/covers/75/78/9781562477578.jpg'), + ('0312876343', 'Dark As Day (Cold As Ice Book 2)', 'https://images.isbndb.com/covers/63/40/9780312876340.jpg'), + ('0446519081', 'The Tenth Insight: Holding The Vision', 'https://images.isbndb.com/covers/90/83/9780446519083.jpg'), + ('044651862X', 'The Celestine Prophecy: An Adventure', 'https://images.isbndb.com/covers/86/28/9780446518628.jpg'), + ('0688002307', 'Zen And The Art Of Motorcycle Maintenance: An Inquiry Into Values', 'https://images.isbndb.com/covers/23/05/9780688002305.jpg'), + ('0394708229', 'In The Belly Of The Beast: Letters From Prison', 'https://images.isbndb.com/covers/82/25/9780394708225.jpg'), + ('0195085140', 'Hyperspace: A Scientific Odyssey Through Parallel Universes, Time Warps, And The Tenth Dimension', 'https://images.isbndb.com/covers/51/43/9780195085143.jpg'), + ('0671765973', 'Zolar''s Encyclopedia Of Ancient And Forbidden Knowledge.', 'https://images.isbndb.com/covers/59/72/9780671765972.jpg'), + ('0922729611', 'Karma And Reincarnation: Transcending Your Past, Transforming Your Future (Pocket Guides To Practical Spirituality Series)', 'https://images.isbndb.com/covers/96/16/9780922729616.jpg'), + ('0767902335', 'Work As A Spiritual Practice: A Practical Buddhist Approach To Inner Growth And Satisfaction On The Job', 'https://images.isbndb.com/covers/23/35/9780767902335.jpg'), + ('1577311523', 'The Power Of Now: A Guide To Spiritual Enlightenment', 'https://images.isbndb.com/covers/15/22/9781577311522.jpg'), + ('0425166805', 'Chariots Of The Gods', 'https://images.isbndb.com/covers/68/02/9780425166802.jpg'), + ('1567185126', 'Energy Focused Meditation: Body, Mind, Spirit', 'https://images.isbndb.com/covers/51/26/9781567185126.jpg'), + ('1874166188', 'Introducing Buddha', 'https://images.isbndb.com/covers/61/84/9781874166184.jpg'), + ('0875425011', 'Charms, Spells, And Formulas (Llewellyn''s Practical Magick)', 'https://images.isbndb.com/covers/50/16/9780875425016.jpg'), + ('0875426638', 'The Golden Dawn: The Original Account Of The Teachings, Rites & Ceremonies Of The Hermetic Order (Llewellyn''s Golden Dawn)', 'https://images.isbndb.com/covers/66/31/9780875426631.jpg'), + ('1882723007', 'Embraced By The Light', 'https://images.isbndb.com/covers/30/03/9781882723003.jpg'), + ('0764809326', 'The Search For Happiness: Four Levels Of Emotional And Spiritual Growth', 'https://images.isbndb.com/covers/93/23/9780764809323.jpg'), + ('1892137038', 'The Underworld Initiation: A Journey Towards Psychic Transformation (Celtic Myth & Legend, V. 3)', 'https://images.isbndb.com/covers/70/36/9781892137036.jpg'), + ('0883681056', 'The Practice Of The Presence Of God', 'https://images.isbndb.com/covers/10/53/9780883681053.jpg'), + ('0874776945', 'The Artist''s Way: A Spiritual Path To Higher Creativity (Inner Workbook)', 'https://images.isbndb.com/covers/69/42/9780874776942.jpg'), + ('0875422462', 'Crystal Healing: The Next Step (Llewellyn''s New Age)', 'https://images.isbndb.com/covers/24/66/9780875422466.jpg'), + ('1869928180', 'VISUAL MAGICK: A Manual Of Freestyle Shamanism', 'https://images.isbndb.com/covers/81/86/9781869928186.jpg'), + ('043935806X', 'Harry Potter And The Order Of The Phoenix (Book 5)', 'https://images.isbndb.com/covers/80/64/9780439358064.jpg'), + ('034540002X', 'Past Lives, Present Dreams', 'https://images.isbndb.com/covers/00/24/9780345400024.jpg'), + ('0399507914', 'Drawing The Head And Figure (Perigee)', 'https://images.isbndb.com/covers/79/15/9780399507915.jpg'), + ('1570627193', 'Confessions Of A Pagan Nun', 'https://images.isbndb.com/covers/71/94/9781570627194.jpg'), + ('0439313899', 'Conversations With God For Teens', 'https://images.isbndb.com/covers/38/96/9780439313896.jpg'), + ('0609608045', 'May The Angels Be With You: A Psychic Helps You Find Your Spirit Guides And Your True Purpose', 'https://images.isbndb.com/covers/80/43/9780609608043.jpg'), + ('076071004X', 'Tarot (Book And Cards)', 'https://images.isbndb.com/covers/00/43/9780760710043.jpg'), + ('1855381125', 'A Witch Alone: Thirteen Moons To Master Natural Magic', 'https://images.isbndb.com/covers/11/24/9781855381124.jpg'), + ('0875421202', 'Magical Herbalism: The Secret Craft Of The Wise (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/12/09/9780875421209.jpg'), + ('1566199646', 'Runes Pb', 'https://images.isbndb.com/covers/96/43/9781566199643.jpg'), + ('0738700339', 'Llewellyn''s 2002 Magical Almanac', 'https://images.isbndb.com/covers/03/35/9780738700335.jpg'), + ('0875423248', 'Modern Magick: Eleven Lessons In The High Magickal Arts (Llewellyn''s High Magick)', 'https://images.isbndb.com/covers/32/41/9780875423241.jpg'), + ('073870279X', 'Astral Projection Plain & Simple: The Out-of-Body Experience', 'https://images.isbndb.com/covers/27/97/9780738702797.jpg'), + ('0425158640', 'Idoru', 'https://images.isbndb.com/covers/86/47/9780425158647.jpg'), + ('0553236628', 'Don''t Fall Off The Mountain', 'https://images.isbndb.com/covers/66/20/9780553236620.jpg'), + ('1863739157', '1988', 'https://images.isbndb.com/covers/91/53/9781863739153.jpg'), + ('068483183X', 'Touched With Fire: Manic-Depressive Illness And The Artistic Temperament', 'https://images.isbndb.com/covers/18/31/9780684831831.jpg'), + ('0713715162', 'The I Ching On Love', 'https://images.isbndb.com/covers/51/63/9780713715163.jpg'), + ('0671532545', 'Bedside Manners: The Troubled History Of Doctors And Patients', 'https://images.isbndb.com/covers/25/43/9780671532543.jpg'), + ('0330360434', 'Three Dollars', 'https://images.isbndb.com/covers/04/32/9780330360432.jpg'), + ('0380723336', 'Bully: A True Story Of High School Revenge', 'https://images.isbndb.com/covers/33/31/9780380723331.jpg'), + ('0006498000', 'Winston''s War', 'https://images.isbndb.com/covers/80/01/9780006498001.jpg'), + ('0553210823', 'Canterbury Tales', 'https://images.isbndb.com/covers/08/28/9780553210828.jpg'), + ('0395771552', 'The Clay Marble: And Related Readings (Literature Connections)', 'https://images.isbndb.com/covers/15/56/9780395771556.jpg'), + ('1932560491', 'Bedtime Stories For Women', 'https://images.isbndb.com/covers/04/97/9781932560497.jpg'), + ('0140304770', 'A Wizard Of Earthsea (The Earthsea Cycle, Book 1)', 'https://images.isbndb.com/covers/47/70/9780140304770.jpg'), + ('0140444572', 'The Aeneid: A New Prose Translation (Penguin Classics)', 'https://images.isbndb.com/covers/45/75/9780140444575.jpg'), + ('0140029613', 'Good Morning, Midnight', 'https://images.isbndb.com/covers/96/11/9780140029611.jpg'), + ('0553213113', 'Moby-Dick (Bantam Classics)', 'https://images.isbndb.com/covers/31/19/9780553213119.jpg'), + ('0743489063', 'The Day After Tomorrow', 'https://images.isbndb.com/covers/90/65/9780743489065.jpg'), + ('0440225922', 'The Poyson Garden (Elizabeth I Mysteries, Book 1)', 'https://images.isbndb.com/covers/59/28/9780440225928.jpg'), + ('0099993805', 'Pelican Brief', 'https://images.isbndb.com/covers/38/03/9780099993803.jpg'), + ('0914457284', 'The Nepal Trekker''s Handbook', 'https://images.isbndb.com/covers/72/82/9780914457282.jpg'), + ('073870234X', 'Signs, Symbols & Omens: An Illustrated Guide To Magical & Spiritual Symbolism', 'https://images.isbndb.com/covers/23/46/9780738702346.jpg'), + ('0892132922', 'The Quest For Enlightenment', 'https://images.isbndb.com/covers/29/28/9780892132928.jpg'), + ('0892133260', 'Dharma: The Way Of Transcendence', 'https://images.isbndb.com/covers/32/60/9780892133260.jpg'), + ('0060988258', 'Running In Heels: A Novel', 'https://images.isbndb.com/covers/82/58/9780060988258.jpg'), + ('0345406419', 'Rookery Blues', 'https://images.isbndb.com/covers/64/15/9780345406415.jpg'), + ('0451184963', 'Insomnia', 'https://images.isbndb.com/covers/49/62/9780451184962.jpg'), + ('0440220602', 'The Chamber', 'https://images.isbndb.com/covers/06/02/9780440220602.jpg'), + ('0821766929', 'When Darkness Falls', 'https://images.isbndb.com/covers/69/27/9780821766927.jpg'), + ('0671721135', 'Through The Ice', 'https://images.isbndb.com/covers/11/38/9780671721138.jpg'), + ('0786864516', 'The Hungry Ocean: A Swordboat Captain''s Journey', 'https://images.isbndb.com/covers/45/15/9780786864515.jpg'), + ('042513525X', 'Hideaway', 'https://images.isbndb.com/covers/52/59/9780425135259.jpg'), + ('0060688246', 'A Severe Mercy', 'https://images.isbndb.com/covers/82/40/9780060688240.jpg'), + ('0883960044', 'Step To The Music You Hear: Philosophical Poems From Modern And Classical Authors', 'https://images.isbndb.com/covers/00/42/9780883960042.jpg'), + ('0399149422', 'The Cat Who Brought Down The House', 'https://images.isbndb.com/covers/94/29/9780399149429.jpg'), + ('0440972329', 'A Ring Of Endless Light (Austin Family)', 'https://images.isbndb.com/covers/23/27/9780440972327.jpg'), + ('0451156609', 'The Tommyknockers', 'https://images.isbndb.com/covers/66/00/9780451156600.jpg'), + ('0449132471', 'The Scarlet Ruse', 'https://images.isbndb.com/covers/24/70/9780449132470.jpg'), + ('0373111355', 'A Lifetime And Beyond (Harlequin Presents, No. 1135)', 'https://images.isbndb.com/covers/13/50/9780373111350.jpg'), + ('0373114087', 'Summer Storm (Harlequin Presents)', 'https://images.isbndb.com/covers/40/85/9780373114085.jpg'), + ('0590298364', 'Sunny (California Diaries)', 'https://images.isbndb.com/covers/83/60/9780590298360.jpg'), + ('0689107730', 'East Wind, Rain', 'https://images.isbndb.com/covers/77/33/9780689107733.jpg'), + ('0380016699', 'Your Erroneous Zones', 'https://images.isbndb.com/covers/66/93/9780380016693.jpg'), + ('088001072X', 'A Call: The Tale Of Two Passions (Neglected Books Of The Twentieth Century)', 'https://images.isbndb.com/covers/07/26/9780880010726.jpg'), + ('0671760327', 'Loose Among The Lambs', 'https://images.isbndb.com/covers/03/28/9780671760328.jpg'), + ('034530988X', 'Friday', 'https://images.isbndb.com/covers/98/84/9780345309884.jpg'), + ('0380728184', 'Kokopelli''s Flute', 'https://images.isbndb.com/covers/81/83/9780380728183.jpg'), + ('0140298924', 'The Uncle''s Story', 'https://images.isbndb.com/covers/89/25/9780140298925.jpg'), + ('9722105248', 'O Evangelho Segundo Jesus Cristo: Romance (French Edition)', 'https://images.isbndb.com/covers/52/48/9789722105248.jpg'), + ('2020239302', 'Le Vieux Qui Lisait Des Romans D''amour', 'https://images.isbndb.com/covers/93/01/9782020239301.jpg'), + ('2742743693', 'Le Livre Des Illusions', 'https://images.isbndb.com/covers/36/98/9782742743698.jpg'), + ('0769613292', 'Kryptonite Chaos (Superman (Landoll))', 'https://images.isbndb.com/covers/32/91/9780769613291.jpg'), + ('0671628828', 'New Jewish Wedding', 'https://images.isbndb.com/covers/88/26/9780671628826.jpg'), + ('0380716259', 'Making Choices', 'https://images.isbndb.com/covers/62/58/9780380716258.jpg'), + ('0806509023', 'Existentialism And Human Emotions (A Philosophical Library Book)', 'https://images.isbndb.com/covers/90/20/9780806509020.jpg'), + ('0767901649', 'The Art Of Everyday Ecstasy: The Seven Trantric Keys For Bringing Passion, Spirit And Joy Into Every Part Of Your Life', 'https://images.isbndb.com/covers/16/42/9780767901642.jpg'), + ('0439173035', 'The Flintstones In Viva Rock Vegas', 'https://images.isbndb.com/covers/30/32/9780439173032.jpg'), + ('0590187554', 'Cub In The Cupboard (Animal Ark, No. 8)', 'https://images.isbndb.com/covers/75/58/9780590187558.jpg'), + ('060980748X', 'A Trip To The Beach: Living On Island Time In The Caribbean', 'https://images.isbndb.com/covers/74/84/9780609807484.jpg'), + ('0393049515', 'The Dream Of Reason: A History Of Philosophy From The Greeks To The Renaissance', 'https://images.isbndb.com/covers/95/10/9780393049510.jpg'), + ('1400031354', 'Tears Of The Giraffe (No. 1 Ladies Detective Agency, Book 2)', 'https://images.isbndb.com/covers/13/51/9781400031351.jpg'), + ('0007106130', 'To Hell In A Handcart', 'https://images.isbndb.com/covers/61/34/9780007106134.jpg'), + ('1572241314', 'The Gay And Lesbian Self-Esteem Book: A Guide To Loving Ourselves', 'https://images.isbndb.com/covers/13/12/9781572241312.jpg'), + ('2268013987', 'L''Age Du Christ', 'https://images.isbndb.com/covers/39/85/9782268013985.jpg'), + ('0451202783', 'The Ultimate Havana', 'https://images.isbndb.com/covers/27/89/9780451202789.jpg'), + ('0486277909', 'Self-Reliance And Other Essays (Dover Thrift Editions)', 'https://images.isbndb.com/covers/79/05/9780486277905.jpg'), + ('0394578198', 'Polar Star', 'https://images.isbndb.com/covers/81/94/9780394578194.jpg'), + ('0262192624', 'Portraits In Silicon', 'https://images.isbndb.com/covers/26/20/9780262192620.jpg'), + ('0399135413', 'Brokenclaw (James Bond Master Spy)', 'https://images.isbndb.com/covers/54/15/9780399135415.jpg'), + ('2290318329', 'L''Homme Aux Cercles Bleus', 'https://images.isbndb.com/covers/83/24/9782290318324.jpg'), + ('0553278118', 'Doctors', 'https://images.isbndb.com/covers/81/18/9780553278118.jpg'), + ('0310478014', 'Love Is The Key', 'https://images.isbndb.com/covers/80/10/9780310478010.jpg'), + ('0590477412', 'Deep Trouble (Goosebumps)', 'https://images.isbndb.com/covers/74/13/9780590477413.jpg'), + ('0671868314', 'The Betrayal (Fear Street Saga Trilogy, No. 1)', 'https://images.isbndb.com/covers/83/14/9780671868314.jpg'), + ('0425170349', 'Rainbow Six', 'https://images.isbndb.com/covers/03/42/9780425170342.jpg'), + ('0425068064', 'Three Blind Mice And Other Stories', 'https://images.isbndb.com/covers/80/69/9780425068069.jpg'), + ('0312975120', 'The Unexpected Guest', 'https://images.isbndb.com/covers/51/28/9780312975128.jpg'), + ('0590433865', 'Good-Bye Stacey, Good-Bye (Baby-Sitters Club)', 'https://images.isbndb.com/covers/38/60/9780590433860.jpg'), + ('0486270556', 'Six Great Sherlock Holmes Stories', 'https://images.isbndb.com/covers/05/55/9780486270555.jpg'), + ('0590433857', 'Hello, Mallory (The Baby-Sitters Club, No. 14)', 'https://images.isbndb.com/covers/38/53/9780590433853.jpg'), + ('0486296342', 'Little Women (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/63/40/9780486296340.jpg'), + ('0380709538', 'Runaway Ralph', 'https://images.isbndb.com/covers/95/33/9780380709533.jpg'), + ('0743400526', 'She Said Yes: The Unlikely Martyrdom Of Cassie Bernall', 'https://images.isbndb.com/covers/05/27/9780743400527.jpg'), + ('0451188497', 'Flawless', 'https://images.isbndb.com/covers/84/96/9780451188496.jpg'), + ('0671656589', 'Heaven', 'https://images.isbndb.com/covers/65/84/9780671656584.jpg'), + ('0671695169', 'Midnight Whispers', 'https://images.isbndb.com/covers/51/63/9780671695163.jpg'), + ('0671695142', 'Twilight''s Child (Cutler Family)', 'https://images.isbndb.com/covers/51/49/9780671695149.jpg'), + ('0671729462', 'My Sweet Audrina', 'https://images.isbndb.com/covers/94/62/9780671729462.jpg'), + ('0446608955', 'A Walk To Remember', 'https://images.isbndb.com/covers/89/54/9780446608954.jpg'), + ('0312287860', 'Madonna', 'https://images.isbndb.com/covers/78/63/9780312287863.jpg'), + ('0809293242', 'Brit Cult : An A-Z Of British Pop Culture', 'https://images.isbndb.com/covers/32/47/9780809293247.jpg'), + ('0679417397', 'Nineteen Eighty-Four', 'https://images.isbndb.com/covers/73/92/9780679417392.jpg'), + ('0679779159', 'How Proust Can Change Your Life', 'https://images.isbndb.com/covers/91/55/9780679779155.jpg'), + ('1550546007', 'Why I Hate Canadians', 'https://images.isbndb.com/covers/60/02/9781550546002.jpg'), + ('0440204194', 'Firefly Summer', 'https://images.isbndb.com/covers/41/90/9780440204190.jpg'), + ('0451408721', 'Deadly Exposure', 'https://images.isbndb.com/covers/87/23/9780451408723.jpg'), + ('0064472574', 'Breathing Underwater', 'https://images.isbndb.com/covers/25/79/9780064472579.jpg'), + ('0884042693', 'Dianetics: The Modern Science Of Mental Health: A Handbook Of Dianetics Procedure', 'https://images.isbndb.com/covers/26/93/9780884042693.jpg'), + ('0141439696', 'Complete Short Fiction (Penguin Classics)', 'https://images.isbndb.com/covers/96/93/9780141439693.jpg'), + ('0764548573', 'Zope Bible', 'https://images.isbndb.com/covers/85/74/9780764548574.jpg'), + ('0449203662', 'WANDERINGS', 'https://images.isbndb.com/covers/36/68/9780449203668.jpg'), + ('0586087060', 'Danziger''s Travels: Beyond Forbidden Frontiers (Paladin Books)', 'https://images.isbndb.com/covers/70/60/9780586087060.jpg'), + ('0449221032', 'Elephant Song', 'https://images.isbndb.com/covers/10/37/9780449221037.jpg'), + ('0449218473', 'Journey', 'https://images.isbndb.com/covers/84/71/9780449218471.jpg'), + ('0060926015', 'Mary Kay - 3rd Edition: Miracles Happen', 'https://images.isbndb.com/covers/60/14/9780060926014.jpg'), + ('0385018061', 'The Mother''s Almanac', 'https://images.isbndb.com/covers/80/67/9780385018067.jpg'), + ('0028600819', 'The Weight Watchers Complete Exercise Book', 'https://images.isbndb.com/covers/08/19/9780028600819.jpg'), + ('0140248307', 'The Cunning Man', 'https://images.isbndb.com/covers/83/02/9780140248302.jpg'), + ('0425065952', 'Forgotten Beasts Of Eld', 'https://images.isbndb.com/covers/59/52/9780425065952.jpg'), + ('0070064261', 'Absent Without Leave: Two Novellas', 'https://images.isbndb.com/covers/42/63/9780070064263.jpg'), + ('3404149114', 'Das Zweite Gedächtnis: Roman', 'https://images.isbndb.com/covers/91/17/9783404149117.jpg'), + ('9504001068', 'Alicia A Traves Del Espejo (Spanish Edition)', 'https://images.isbndb.com/covers/10/65/9789504001065.jpg'), + ('1864501235', 'Lonely Planet Madrid (Lonely Planet Travel Guides)', 'https://images.isbndb.com/covers/12/30/9781864501230.jpg'), + ('0864426224', 'Lonely Planet Paris (Paris, 2nd Ed)', 'https://images.isbndb.com/covers/62/22/9780864426222.jpg'), + ('2277229938', 'Les Nuits Fauves', 'https://images.isbndb.com/covers/99/33/9782277229933.jpg'), + ('2253150908', 'L''Alchimiste', 'https://images.isbndb.com/covers/09/09/9782253150909.jpg'), + ('2253048852', 'Les Dames Du Lac, Tome 2 : Les Brumes D''Avalon', 'https://images.isbndb.com/covers/88/55/9782253048855.jpg'), + ('2253044911', 'Les Dames Du Lac, Tome 1', 'https://images.isbndb.com/covers/49/18/9782253044918.jpg'), + ('2266067249', 'L''Homme Qui Murmurait à L''oreille Des Chevaux', 'https://images.isbndb.com/covers/72/49/9782266067249.jpg'), + ('2253033138', 'Le Nom De La Rose', 'https://images.isbndb.com/covers/31/34/9782253033134.jpg'), + ('2070380742', 'COURRIERS DE LA MORT P', 'https://images.isbndb.com/covers/07/49/9782070380749.jpg'), + ('067972883X', 'The Optimist''s Daughter', 'https://images.isbndb.com/covers/88/32/9780679728832.jpg'), + ('0440414806', 'Holes', 'https://images.isbndb.com/covers/48/03/9780440414803.jpg'), + ('0689825587', 'Silverwing', 'https://images.isbndb.com/covers/55/83/9780689825583.jpg'), + ('0142302015', 'Good Night, Good Knight (Penguin Young Readers, L2)', 'https://images.isbndb.com/covers/20/19/9780142302019.jpg'), + ('1586480499', 'War Is A Force That Gives Us Meaning', 'https://images.isbndb.com/covers/04/93/9781586480493.jpg'), + ('0380821214', 'Eric', 'https://images.isbndb.com/covers/12/11/9780380821211.jpg'), + ('014038572X', 'The Outsiders', 'https://images.isbndb.com/covers/57/24/9780140385724.jpg'), + ('2714303412', 'Préférences', 'https://images.isbndb.com/covers/34/17/9782714303417.jpg'), + ('0140621334', 'Three Men In A Boat: To Say Nothing Of The Dog! (Penguin Popular Classics)', 'https://images.isbndb.com/covers/13/34/9780140621334.jpg'), + ('2070389634', 'L''Idiot', 'https://images.isbndb.com/covers/96/36/9782070389636.jpg'), + ('2070368157', 'Les Jeunes Filles', 'https://images.isbndb.com/covers/81/50/9782070368150.jpg'), + ('2864241277', 'Le Vieux Qui Lisait Des Romans D''amour', 'https://images.isbndb.com/covers/12/70/9782864241270.jpg'), + ('0440241073', 'The Summons', 'https://images.isbndb.com/covers/10/72/9780440241072.jpg'), + ('0553277243', 'Time Flies', 'https://images.isbndb.com/covers/72/41/9780553277241.jpg'), + ('0140161953', 'The Willow Cabin (Virago Modern Classics)', 'https://images.isbndb.com/covers/19/53/9780140161953.jpg'), + ('0553287303', 'Second Child', 'https://images.isbndb.com/covers/73/01/9780553287301.jpg'), + ('0451190521', 'The Mouse On The Mile (The Green Mile, Part 2)', 'https://images.isbndb.com/covers/05/29/9780451190529.jpg'), + ('0451190491', 'The Two Dead Girls (Green Mile Series, Part 1)', 'https://images.isbndb.com/covers/04/99/9780451190499.jpg'), + ('0679404856', 'Dave Barry Does Japan', 'https://images.isbndb.com/covers/48/59/9780679404859.jpg'), + ('0399141499', 'Cold Fall', 'https://images.isbndb.com/covers/14/92/9780399141492.jpg'), + ('0553100130', 'The Death Of Innocents: A True Story Of Murder, Medicine, And High-Stake Science', 'https://images.isbndb.com/covers/01/36/9780553100136.jpg'), + ('067187294X', 'The Stallion', 'https://images.isbndb.com/covers/29/46/9780671872946.jpg'), + ('0449215202', 'Hold On, Mr. President', 'https://images.isbndb.com/covers/52/03/9780449215203.jpg'), + ('0440204429', 'Perfect Victim: The True Story Of The Girl In The Box', 'https://images.isbndb.com/covers/44/28/9780440204428.jpg'), + ('0553259253', 'Scarlet Mansion,the', 'https://images.isbndb.com/covers/92/54/9780553259254.jpg'), + ('2207305554', 'L''elvissée', 'https://images.isbndb.com/covers/55/53/9782207305553.jpg'), + ('2207249786', 'Parabellum Tango', 'https://images.isbndb.com/covers/97/89/9782207249789.jpg'), + ('2266102621', 'Les Heures', 'https://images.isbndb.com/covers/26/29/9782266102629.jpg'), + ('2253140589', 'Amerigo : Récit D''une Erreur Historique', 'https://images.isbndb.com/covers/05/80/9782253140580.jpg'), + ('2277233617', 'Une Breve Histoire Du Temps', 'https://images.isbndb.com/covers/36/19/9782277233619.jpg'), + ('202025462X', 'Hygiène De L''assassin', 'https://images.isbndb.com/covers/46/25/9782020254625.jpg'), + ('2277116092', 'Le Pêcheur', 'https://images.isbndb.com/covers/60/97/9782277116097.jpg'), + ('2253049069', 'Trois Hommes Dans Un Bateau', 'https://images.isbndb.com/covers/90/67/9782253049067.jpg'), + ('2266002635', 'La Guinguette à Deux Sous (Presses Pocket)', 'https://images.isbndb.com/covers/26/39/9782266002639.jpg'), + ('2253044903', 'Le Parfum', 'https://images.isbndb.com/covers/49/01/9782253044901.jpg'), + ('2253152846', 'Métaphysique Des Tubes', 'https://images.isbndb.com/covers/28/42/9782253152842.jpg'), + ('2290312959', 'Des Fleurs Pour Algernon', 'https://images.isbndb.com/covers/29/57/9782290312957.jpg'), + ('2266104853', 'C''est Comment L''Amérique', 'https://images.isbndb.com/covers/48/52/9782266104852.jpg'), + ('2020579391', 'La Ballade De L''impossible', 'https://images.isbndb.com/covers/93/91/9782020579391.jpg'), + ('2070366081', 'Salammbô', 'https://images.isbndb.com/covers/60/88/9782070366088.jpg'), + ('0553225448', 'Conan The Barbarian', 'https://images.isbndb.com/covers/54/40/9780553225440.jpg'), + ('0786703377', 'The Mask Of Cthulhu', 'https://images.isbndb.com/covers/33/71/9780786703371.jpg'), + ('0345350804', 'The Best Of H. P. Lovecraft: Bloodcurdling Tales Of Horror And The Macabre', 'https://images.isbndb.com/covers/08/00/9780345350800.jpg'), + ('0895551950', 'St. Dominic (Cross And Crown Series Of Spirituality)', 'https://images.isbndb.com/covers/19/55/9780895551955.jpg'), + ('0872168328', 'Horror House', 'https://images.isbndb.com/covers/83/29/9780872168329.jpg'), + ('0786705302', 'Healing With Magnets', 'https://images.isbndb.com/covers/53/06/9780786705306.jpg'), + ('0743203178', 'Nothing Like It In The World: The Men Who Built The Transcontinental Railroad 1863-1869', 'https://images.isbndb.com/covers/31/73/9780743203173.jpg'), + ('0812550897', 'The Wandering Arm (Catherine Levendeur)', 'https://images.isbndb.com/covers/08/94/9780812550894.jpg'), + ('0881849804', 'The Mind Cage', 'https://images.isbndb.com/covers/98/06/9780881849806.jpg'), + ('0671725254', 'The COLDEST WAR: A MEMOIR OF KOREA', 'https://images.isbndb.com/covers/52/59/9780671725259.jpg'), + ('0810934302', 'Maps And Mapmakers Of The Civil War', 'https://images.isbndb.com/covers/43/06/9780810934306.jpg'), + ('006008118X', 'Mr. Lincoln''s Wars: A Novel In Thirteen Stories', 'https://images.isbndb.com/covers/11/88/9780060081188.jpg'), + ('0312266588', 'The Templars: The Dramatic History Of The Knights Templar, The Most Powerful Military Order Of The Crusades', 'https://images.isbndb.com/covers/65/85/9780312266585.jpg'), + ('0312906765', 'Dagon', 'https://images.isbndb.com/covers/67/64/9780312906764.jpg'), + ('0312274785', 'The Year''s Best Science Fiction, Eighteenth Annual Collection', 'https://images.isbndb.com/covers/47/88/9780312274788.jpg'), + ('0884042871', 'Death Quest (Mission Earth Series, Vol 6)', 'https://images.isbndb.com/covers/28/77/9780884042877.jpg'), + ('0884042847', 'The Enemy Within (Mission Earth, Vol 3)', 'https://images.isbndb.com/covers/28/46/9780884042846.jpg'), + ('0445204303', 'Cyteen III: The Vindication', 'https://images.isbndb.com/covers/43/00/9780445204300.jpg'), + ('0380003821', 'Dispossessed', 'https://images.isbndb.com/covers/38/22/9780380003822.jpg'), + ('0879801646', 'Thought Dial', 'https://images.isbndb.com/covers/16/49/9780879801649.jpg'), + ('0553227734', 'Guns Of August', 'https://images.isbndb.com/covers/77/34/9780553227734.jpg'), + ('0486232948', 'How Good Is Your Chess?: Rate Your Skill And Improve Your Strategy By Participating In 35 Master Games', 'https://images.isbndb.com/covers/29/42/9780486232942.jpg'), + ('0553241575', 'Matarese Circle', 'https://images.isbndb.com/covers/15/70/9780553241570.jpg'), + ('0553205315', 'The Road To Gandolfo', 'https://images.isbndb.com/covers/53/12/9780553205312.jpg'), + ('0671493515', 'Fund Contract Bridge', 'https://images.isbndb.com/covers/35/16/9780671493516.jpg'), + ('0828103054', 'The Civil War (American Heritage Library)', 'https://images.isbndb.com/covers/30/53/9780828103053.jpg'), + ('0812561589', 'Spotlight', 'https://images.isbndb.com/covers/15/86/9780812561586.jpg'), + ('0670884839', 'My Little Blue Dress', 'https://images.isbndb.com/covers/48/34/9780670884834.jpg'), + ('0449227421', 'The Third Twin', 'https://images.isbndb.com/covers/74/28/9780449227428.jpg'), + ('3404118839', 'Das Pharao-Komplott', 'https://images.isbndb.com/covers/88/30/9783404118830.jpg'), + ('3442430879', 'Schau Dich Nicht Um', 'https://images.isbndb.com/covers/08/71/9783442430871.jpg'), + ('3426600218', 'DinoPark. Roman.', 'https://images.isbndb.com/covers/02/14/9783426600214.jpg'), + ('3809413747', 'Generation Mama', 'https://images.isbndb.com/covers/37/45/9783809413745.jpg'), + ('3442723833', 'Das Blütenstaubzimmer: Roman', 'https://images.isbndb.com/covers/38/36/9783442723836.jpg'), + ('096788330X', 'Duncan Delaney And The Cadillac Of Doom', 'https://images.isbndb.com/covers/33/04/9780967883304.jpg'), + ('0929141652', 'Speak Ill Of The Dead (Camilla MacPhee Mysteries)', 'https://images.isbndb.com/covers/16/57/9780929141657.jpg'), + ('0525244581', 'The Tao Of Pooh', 'https://images.isbndb.com/covers/45/85/9780525244585.jpg'), + ('0373706847', 'Married To The Man : Reunited (Harlequin Superromance No. 684)', 'https://images.isbndb.com/covers/68/46/9780373706846.jpg'), + ('0440414121', 'The Watsons Go To Birmingham--1963', 'https://images.isbndb.com/covers/41/24/9780440414124.jpg'), + ('3442441080', 'Im Angesicht Des Feindes', 'https://images.isbndb.com/covers/10/82/9783442441082.jpg'), + ('3492238572', 'Wer Hat Angst Vorm Bösen Wolf: Roman', 'https://images.isbndb.com/covers/85/71/9783492238571.jpg'), + ('0805010858', '"I" Is For Innocent (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/08/55/9780805010855.jpg'), + ('0963622927', 'Sign With Your Baby : How To Communicate With Infants Before They Can Speak (book Only)', 'https://images.isbndb.com/covers/29/21/9780963622921.jpg'), + ('1558506462', 'Small Miracles: Extraordinary Coincidences From Everyday Life (v. 1)', 'https://images.isbndb.com/covers/64/66/9781558506466.jpg'), + ('0140245480', 'The Red Queen: Sex And The Evolution Of Human Nature', 'https://images.isbndb.com/covers/54/86/9780140245486.jpg'), + ('0451167716', 'The Godfather (Signet)', 'https://images.isbndb.com/covers/77/12/9780451167712.jpg'), + ('069811695X', 'This Place Has No Atmosphere', 'https://images.isbndb.com/covers/69/55/9780698116955.jpg'), + ('0262121867', 'The Trouble With Computers: Usefulness, Usability, And Productivity', 'https://images.isbndb.com/covers/18/66/9780262121866.jpg'), + ('9839236083', 'Corruption And The Destiny Of Asia Pb', 'https://images.isbndb.com/covers/60/88/9789839236088.jpg'), + ('0811830454', 'My Fabulous Life: Musings On A Marvelous Me', 'https://images.isbndb.com/covers/04/54/9780811830454.jpg'), + ('0310329914', 'Be Still And Know', 'https://images.isbndb.com/covers/99/16/9780310329916.jpg'), + ('0440203430', 'Crimson Joy', 'https://images.isbndb.com/covers/34/38/9780440203438.jpg'), + ('0446606324', 'The Winner', 'https://images.isbndb.com/covers/63/25/9780446606325.jpg'), + ('0553211234', 'The Pickwick Papers (Bantam Classic)', 'https://images.isbndb.com/covers/12/38/9780553211238.jpg'), + ('1593080077', 'Jane Eyre (Barnes & Noble Classics Series)', 'https://images.isbndb.com/covers/00/75/9781593080075.jpg'), + ('0446604089', 'The Best Laid Plans', 'https://images.isbndb.com/covers/40/86/9780446604086.jpg'), + ('0446603287', 'A Wild And Lonely Place (Sharon McCone Mysteries)', 'https://images.isbndb.com/covers/32/87/9780446603287.jpg'), + ('0446343013', 'One Writer''s Beginnings', 'https://images.isbndb.com/covers/30/15/9780446343015.jpg'), + ('0451202473', 'Bones', 'https://images.isbndb.com/covers/24/75/9780451202475.jpg'), + ('0060548827', 'Chinese Takeout: A Novel', 'https://images.isbndb.com/covers/88/27/9780060548827.jpg'), + ('0804119937', 'The Trials Of Angela', 'https://images.isbndb.com/covers/99/31/9780804119931.jpg'), + ('1558746986', 'Chicken Soup For The Unsinkable Soul: 101 Stories', 'https://images.isbndb.com/covers/69/85/9781558746985.jpg'), + ('0515132187', 'The Villa', 'https://images.isbndb.com/covers/21/82/9780515132182.jpg'), + ('0704349469', 'A Different Life', 'https://images.isbndb.com/covers/94/69/9780704349469.jpg'), + ('0394758439', 'Cultural Literacy: What Every American Needs To Know', 'https://images.isbndb.com/covers/84/35/9780394758435.jpg'), + ('0449213447', 'The Chosen', 'https://images.isbndb.com/covers/34/45/9780449213445.jpg'), + ('0446670251', 'The Virgin Suicides', 'https://images.isbndb.com/covers/02/58/9780446670258.jpg'), + ('0061098736', 'Murder In Spokane', 'https://images.isbndb.com/covers/87/34/9780061098734.jpg'), + ('0448095149', 'The Whispering Statue (Nancy Drew #14)', 'https://images.isbndb.com/covers/51/41/9780448095141.jpg'), + ('0702227773', 'The Copper Crucible', 'https://images.isbndb.com/covers/77/76/9780702227776.jpg'), + ('1841219266', 'Stargirl (Black Apple)', 'https://images.isbndb.com/covers/92/64/9781841219264.jpg'), + ('0671015842', 'Mr. Macgregor', 'https://images.isbndb.com/covers/58/48/9780671015848.jpg'), + ('0140149708', 'Peace Work (v. 7)', 'https://images.isbndb.com/covers/97/08/9780140149708.jpg'), + ('0434271918', 'Liar', 'https://images.isbndb.com/covers/19/17/9780434271917.jpg'), + ('1840461535', 'Introducing Darwin And Evolution', 'https://images.isbndb.com/covers/15/34/9781840461534.jpg'), + ('0563534753', 'The Life Laundry: How To De-Junk Your Life', 'https://images.isbndb.com/covers/47/54/9780563534754.jpg'), + ('0563487496', 'The Life Laundry: How To Stay De-Junked Forever (Bk.2)', 'https://images.isbndb.com/covers/74/94/9780563487494.jpg'), + ('1862042497', 'Seven Steps To Developing Your Intuitive Powers: An Interactive Workbook', 'https://images.isbndb.com/covers/24/90/9781862042490.jpg'), + ('0330328573', 'Dracula: The Novelisation', 'https://images.isbndb.com/covers/85/79/9780330328579.jpg'), + ('0751516880', 'The Beatles Lyrics', 'https://images.isbndb.com/covers/68/83/9780751516883.jpg'), + ('014062225X', 'Rainbow Pb (Penguin Popular Classics)', 'https://images.isbndb.com/covers/22/56/9780140622256.jpg'), + ('0140622144', 'To The Lighthouse (Penguin Popular Classics)', 'https://images.isbndb.com/covers/21/40/9780140622140.jpg'), + ('0340765429', 'Trowel And Error', 'https://images.isbndb.com/covers/54/25/9780340765425.jpg'), + ('034066049X', 'Well Groomed', 'https://images.isbndb.com/covers/04/92/9780340660492.jpg'), + ('0425154092', 'From Potter''s Field (Kay Scarpetta)', 'https://images.isbndb.com/covers/40/90/9780425154090.jpg'), + ('0425179613', 'It''s Not About The Bike: My Journey Back To Life', 'https://images.isbndb.com/covers/96/11/9780425179611.jpg'), + ('0375724370', 'Anil''s Ghost: A Novel', 'https://images.isbndb.com/covers/43/74/9780375724374.jpg'), + ('0446677671', 'Sidetracked Home Executives(TM): From Pigpen To Paradise', 'https://images.isbndb.com/covers/76/77/9780446677677.jpg'), + ('0060969911', 'Get Your Act Together: A 7-Day Get-Organized Program For The Overworked, Overbooked, And Overwhelmed', 'https://images.isbndb.com/covers/99/12/9780060969912.jpg'), + ('342310516X', 'Wenn Ein Reisender In Einer Winternacht: Roman', 'https://images.isbndb.com/covers/51/63/9783423105163.jpg'), + ('3492040683', 'Die Frau Des Piloten', 'https://images.isbndb.com/covers/06/86/9783492040686.jpg'), + ('3502506809', 'Das Schicksal In Person. Ein Miss- Marple Krimi.', 'https://images.isbndb.com/covers/68/05/9783502506805.jpg'), + ('3453127013', 'Der Regenmacher: Roman', 'https://images.isbndb.com/covers/70/12/9783453127012.jpg'), + ('3453172841', 'Straßenpizza', 'https://images.isbndb.com/covers/28/45/9783453172845.jpg'), + ('359650547X', 'Orlando. Jubiläums- Edition. Eine Biographie.', 'https://images.isbndb.com/covers/54/70/9783596505470.jpg'), + ('0330262726', 'Smiley''s People', 'https://images.isbndb.com/covers/27/29/9780330262729.jpg'), + ('0330253565', 'The Honourable Schoolboy', 'https://images.isbndb.com/covers/35/67/9780330253567.jpg'), + ('0553057960', 'Time Bomb', 'https://images.isbndb.com/covers/79/66/9780553057966.jpg'), + ('0671014196', 'The Summerhouse', 'https://images.isbndb.com/covers/41/93/9780671014193.jpg'), + ('0688171877', 'Ahab''s Wife: Or, The Star-Gazer: A Novel', 'https://images.isbndb.com/covers/18/72/9780688171872.jpg'), + ('0871136791', 'Cold Mountain', 'https://images.isbndb.com/covers/67/94/9780871136794.jpg'), + ('0679400540', 'Be Sweet: A Conditional Love Story', 'https://images.isbndb.com/covers/05/47/9780679400547.jpg'), + ('0805009213', 'The Fool''s Progress', 'https://images.isbndb.com/covers/92/17/9780805009217.jpg'), + ('0679406557', 'No Mercy: A Journey To The Heart Of The Congo', 'https://images.isbndb.com/covers/65/56/9780679406556.jpg'), + ('0684814773', 'QUIT', 'https://images.isbndb.com/covers/47/73/9780684814773.jpg'), + ('957131577X', 'Yu Shang 100% De Nu Hai (in Traditional Chinese, NOT In English)', 'https://images.isbndb.com/covers/57/75/9789571315775.jpg'), + ('0517881004', 'The Vampire Encyclopedia', 'https://images.isbndb.com/covers/10/02/9780517881002.jpg'), + ('1879181363', 'Starwalking: Shamanic Practices For Traveling Into The Night Sky', 'https://images.isbndb.com/covers/13/66/9781879181366.jpg'), + ('0671518909', 'The Miracle Of Change', 'https://images.isbndb.com/covers/89/05/9780671518905.jpg'), + ('055321277X', 'Dr. Jekyll And Mr. Hyde (Bantam Classic)', 'https://images.isbndb.com/covers/27/78/9780553212778.jpg'), + ('006039241X', 'Zone-Perfect Meals In Minutes', 'https://images.isbndb.com/covers/24/13/9780060392413.jpg'), + ('0553380095', 'The Heart Of A Woman', 'https://images.isbndb.com/covers/00/95/9780553380095.jpg'), + ('0060391502', 'Enter The Zone: A Dietary Road Map', 'https://images.isbndb.com/covers/15/08/9780060391508.jpg'), + ('0874779669', 'Coming Out Spiritually: The Next Step', 'https://images.isbndb.com/covers/96/60/9780874779660.jpg'), + ('0679726225', 'Wilderness: The Lost Writings Of Jim Morrison, Volume 1', 'https://images.isbndb.com/covers/62/27/9780679726227.jpg'), + ('0306810123', 'The Last Madam: A Life In The New Orleans Underworld', 'https://images.isbndb.com/covers/01/21/9780306810121.jpg'), + ('1555834310', 'Alec Baldwin Doesn''t Love Me And Other Trials From My Queer Life', 'https://images.isbndb.com/covers/43/19/9781555834319.jpg'), + ('0684841827', 'Footnotes: A Memoir', 'https://images.isbndb.com/covers/18/23/9780684841823.jpg'), + ('0440504708', 'I''m Good Enough, I''m Smart Enough, And Doggone It, People Like Me!: Daily Affirmations By Stuart Smalley', 'https://images.isbndb.com/covers/47/02/9780440504702.jpg'), + ('0671521136', 'MARY REILLY (Movie-Tie-in)', 'https://images.isbndb.com/covers/11/34/9780671521134.jpg'), + ('0399518460', 'Gold''s Gym Weight Training Book', 'https://images.isbndb.com/covers/84/61/9780399518461.jpg'), + ('0688140718', 'Trapped In The Mirror: Adult Children Of Narcissists In Their Struggle For Self', 'https://images.isbndb.com/covers/07/17/9780688140717.jpg'), + ('0853301239', 'A Treatise On White Magic Or The Way Of The Disciple', 'https://images.isbndb.com/covers/12/33/9780853301233.jpg'), + ('0553284347', 'Toxic Parents: Overcoming Their Hurtful Legacy And Reclaiming Your Life', 'https://images.isbndb.com/covers/43/48/9780553284348.jpg'), + ('0345356500', 'Garfield''s Thanksgiving', 'https://images.isbndb.com/covers/65/05/9780345356505.jpg'), + ('0440473500', 'Madame Doubtfire (Puffin Modern Classics)', 'https://images.isbndb.com/covers/35/03/9780440473503.jpg'), + ('0773674489', 'Mystery House', 'https://images.isbndb.com/covers/44/86/9780773674486.jpg'), + ('0743423682', 'Hollywood Wives - The New Generation', 'https://images.isbndb.com/covers/36/87/9780743423687.jpg'), + ('1410798860', 'The Diary Of Alice Mary: A Factual Childhood Diary Written During The World War II Years By Joe Connally For His Young Motherless Child With Qu', 'https://images.isbndb.com/covers/88/62/9781410798862.jpg'), + ('0525945938', 'Scarlet Feather', 'https://images.isbndb.com/covers/59/32/9780525945932.jpg'), + ('042516876X', 'Range Of Motion: A Novel', 'https://images.isbndb.com/covers/87/69/9780425168769.jpg'), + ('0385496095', 'Traveling Mercies: Some Thoughts On Faith', 'https://images.isbndb.com/covers/60/94/9780385496094.jpg'), + ('0385475721', 'The Blind Assassin', 'https://images.isbndb.com/covers/57/23/9780385475723.jpg'), + ('0385319908', 'A Place Of My Own: The Education Of An Amateur Builder', 'https://images.isbndb.com/covers/99/04/9780385319904.jpg'), + ('0425142035', 'Missing In Manhattan', 'https://images.isbndb.com/covers/20/35/9780425142035.jpg'), + ('0061096253', 'The Butter Did It: A Gastronomic Tale Of Love And Murder (Chas Wheatley Mysteries)', 'https://images.isbndb.com/covers/62/59/9780061096259.jpg'), + ('1551667509', 'Haunted', 'https://images.isbndb.com/covers/75/08/9781551667508.jpg'), + ('0553277723', 'Night She Died, The', 'https://images.isbndb.com/covers/77/22/9780553277722.jpg'), + ('0425068099', 'The Witness For The Prosecution: And Other Stories', 'https://images.isbndb.com/covers/80/90/9780425068090.jpg'), + ('0449146391', 'Murder At The PTA Luncheon', 'https://images.isbndb.com/covers/63/92/9780449146392.jpg'), + ('0312421117', 'Elegy For Iris', 'https://images.isbndb.com/covers/11/13/9780312421113.jpg'), + ('0761514430', 'Lean And Luscious And Meatless (Lean And Luscious Series)', 'https://images.isbndb.com/covers/44/35/9780761514435.jpg'), + ('0679405283', 'The Tale Of The Body Thief: The Vampire Chronicles', 'https://images.isbndb.com/covers/52/83/9780679405283.jpg'), + ('0440508975', 'Bibliotherapy: The Girl''s Guide To Books For Every Phase Of Our Lives', 'https://images.isbndb.com/covers/89/77/9780440508977.jpg'), + ('0006751504', 'The Secret Life Of Sally Tomato (Diary Series)', 'https://images.isbndb.com/covers/15/02/9780006751502.jpg'), + ('0515137111', 'Birthright', 'https://images.isbndb.com/covers/71/18/9780515137118.jpg'), + ('0345456939', 'Gone Too Far (Troubleshooters, Book 6)', 'https://images.isbndb.com/covers/69/39/9780345456939.jpg'), + ('0060504110', 'Die In Plain Sight', 'https://images.isbndb.com/covers/41/13/9780060504113.jpg'), + ('0060542799', 'An Hour To Kill: A Novel', 'https://images.isbndb.com/covers/27/95/9780060542795.jpg'), + ('0743469844', 'Flirting With Pete: A Novel', 'https://images.isbndb.com/covers/98/45/9780743469845.jpg'), + ('0553583573', 'Dark Horse', 'https://images.isbndb.com/covers/35/71/9780553583571.jpg'), + ('0446613886', 'Land Of The Living', 'https://images.isbndb.com/covers/38/80/9780446613880.jpg'), + ('0449148238', 'Buried Lives', 'https://images.isbndb.com/covers/82/35/9780449148235.jpg'), + ('0373289278', 'Badlands Bride (Harlequin Historical, No 327)', 'https://images.isbndb.com/covers/92/71/9780373289271.jpg'), + ('0451205561', 'The Chocolate Cat Caper (Chocoholic Mysteries, No. 1)', 'https://images.isbndb.com/covers/55/68/9780451205568.jpg'), + ('1551667371', 'Thicker Than Water (Mordecai Young Series, Book 1)', 'https://images.isbndb.com/covers/73/79/9781551667379.jpg'), + ('1551667398', 'The Bad Witness', 'https://images.isbndb.com/covers/73/93/9781551667393.jpg'), + ('0778320324', 'Pale Moon Rising (Mira)', 'https://images.isbndb.com/covers/03/26/9780778320326.jpg'), + ('0778320413', 'While Others Sleep (Mira)', 'https://images.isbndb.com/covers/04/18/9780778320418.jpg'), + ('0553107380', 'Pawing Through The Past (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/73/88/9780553107388.jpg'), + ('0375406182', 'Plainsong', 'https://images.isbndb.com/covers/61/88/9780375406188.jpg'), + ('0553271636', 'D IS FOR DEADBEAT', 'https://images.isbndb.com/covers/16/38/9780553271638.jpg'), + ('1892145057', 'T.BOR A Book (To Keep) +30 Postcards (To Send) (Postcard Book)', 'https://images.isbndb.com/covers/50/55/9781892145055.jpg'), + ('0345389964', 'A Son Of The Circus', 'https://images.isbndb.com/covers/99/61/9780345389961.jpg'), + ('0486256111', 'Story Of The "Titanic": 24 Cards (Dover Postcards)', 'https://images.isbndb.com/covers/61/15/9780486256115.jpg'), + ('0679751521', 'Midnight In The Garden Of Good And Evil', 'https://images.isbndb.com/covers/15/26/9780679751526.jpg'), + ('0590120727', 'Help!: I''m Trapped In My Principal''s Body', 'https://images.isbndb.com/covers/07/22/9780590120722.jpg'), + ('1888054557', 'Postmarked Yesteryear: 30 Rare Holiday Postcards', 'https://images.isbndb.com/covers/45/52/9781888054552.jpg'), + ('0312099045', 'Route 66 Postcards: Greetings From The Mother Road', 'https://images.isbndb.com/covers/90/46/9780312099046.jpg'), + ('0312966091', 'Three To Get Deadly (Stephanie Plum, No. 3)', 'https://images.isbndb.com/covers/60/96/9780312966096.jpg'), + ('0385265565', 'There Are No Children Here: The Story Of Two Boys Growing Up In The Other America', 'https://images.isbndb.com/covers/55/60/9780385265560.jpg'), + ('0670813648', 'Misery', 'https://images.isbndb.com/covers/36/43/9780670813643.jpg'), + ('0892961759', 'Only When I Laugh', 'https://images.isbndb.com/covers/17/57/9780892961757.jpg'), + ('0345372433', 'The Good Husband', 'https://images.isbndb.com/covers/24/37/9780345372437.jpg'), + ('0399144315', 'The Cat Who Saw Stars', 'https://images.isbndb.com/covers/43/18/9780399144318.jpg'), + ('0786883219', 'Brain Droppings', 'https://images.isbndb.com/covers/32/19/9780786883219.jpg'), + ('0375504613', 'A Short Guide To A Happy Life', 'https://images.isbndb.com/covers/46/17/9780375504617.jpg'), + ('0785263535', 'The Savage Nation: Saving America From The Liberal Assault On Our Borders, Language And Culture', 'https://images.isbndb.com/covers/35/31/9780785263531.jpg'), + ('0380896389', 'Until Proven Guilty', 'https://images.isbndb.com/covers/63/87/9780380896387.jpg'), + ('0380896419', 'Injustice For All: A J.P. Beaumont Mystery', 'https://images.isbndb.com/covers/64/17/9780380896417.jpg'), + ('0671252941', 'Knock Wood', 'https://images.isbndb.com/covers/29/46/9780671252946.jpg'), + ('155972272X', 'Bette: An Intimate Biography Of Bette Midler', 'https://images.isbndb.com/covers/27/28/9781559722728.jpg'), + ('0393046338', 'The Republic Of Dreams: A Reverie', 'https://images.isbndb.com/covers/63/35/9780393046335.jpg'), + ('0671001795', 'Two For The Dough (Stephanie Plum, No. 2)', 'https://images.isbndb.com/covers/17/97/9780671001797.jpg'), + ('0316526835', 'Deep Water Passage: A Spiritual Journey At Midlife', 'https://images.isbndb.com/covers/68/38/9780316526838.jpg'), + ('0385307888', 'I Could Do Anything, If I Only Knew What It Was', 'https://images.isbndb.com/covers/78/88/9780385307888.jpg'), + ('039447970X', 'Centennial', 'https://images.isbndb.com/covers/97/05/9780394479705.jpg'), + ('0425161285', 'Turtle Moon', 'https://images.isbndb.com/covers/12/89/9780425161289.jpg'), + ('0156904365', 'Till We Have Faces: A Myth Retold', 'https://images.isbndb.com/covers/43/60/9780156904360.jpg'), + ('0743448421', 'Alphabetical Hook-Up List A-J', 'https://images.isbndb.com/covers/84/20/9780743448420.jpg'), + ('014034991X', 'The Westing Game', 'https://images.isbndb.com/covers/99/17/9780140349917.jpg'), + ('0440414539', 'Lily''s Crossing', 'https://images.isbndb.com/covers/45/37/9780440414537.jpg'), + ('006106498X', 'Wishbone Classic #11 Adv Of Tom Sawyer', 'https://images.isbndb.com/covers/49/82/9780061064982.jpg'), + ('0553274295', 'Where The Red Fern Grows', 'https://images.isbndb.com/covers/42/95/9780553274295.jpg'), + ('0590457799', 'Knitwits', 'https://images.isbndb.com/covers/77/98/9780590457798.jpg'), + ('0689800843', 'Running Out Of Time', 'https://images.isbndb.com/covers/08/49/9780689800849.jpg'), + ('0590457233', 'You Be The Jury: Courtroom IV', 'https://images.isbndb.com/covers/72/31/9780590457231.jpg'), + ('0689311001', 'Baby-Sitting Is A Dangerous Job', 'https://images.isbndb.com/covers/10/00/9780689311000.jpg'), + ('0590926675', 'So Far From Home: The Diary Of Mary Driscoll, An Irish Mill Girl, Lowell, Massachusetts, 1847 (Dear America Series)', 'https://images.isbndb.com/covers/66/76/9780590926676.jpg'), + ('0671794019', 'Jennifer Murdley''s Toad (Magic Shop Books)', 'https://images.isbndb.com/covers/40/19/9780671794019.jpg'), + ('0440403332', 'EVERYONE ELSE''S PARENTS SAID YES', 'https://images.isbndb.com/covers/33/33/9780440403333.jpg'), + ('0440948991', 'The Luckiest Girl (Young Love)', 'https://images.isbndb.com/covers/89/95/9780440948995.jpg'), + ('0689849176', 'Just Ella', 'https://images.isbndb.com/covers/91/76/9780689849176.jpg'), + ('1586480103', 'My War', 'https://images.isbndb.com/covers/01/03/9781586480103.jpg'), + ('1570282021', 'The Secrets Of Tae Kwon Do', 'https://images.isbndb.com/covers/20/27/9781570282027.jpg'), + ('0877950938', 'Star Child: A Novel', 'https://images.isbndb.com/covers/09/36/9780877950936.jpg'), + ('0743490398', 'The Ultimate Weight Solution Food Guide', 'https://images.isbndb.com/covers/03/99/9780743490399.jpg'), + ('0451524667', 'Animal Farm (Signet Classics)', 'https://images.isbndb.com/covers/46/69/9780451524669.jpg'), + ('0446600253', 'Bless Me, Ultima', 'https://images.isbndb.com/covers/02/55/9780446600255.jpg'), + ('0345386744', 'The Talismans Of Shannara (The Heritage Of Shannara)', 'https://images.isbndb.com/covers/67/48/9780345386748.jpg'), + ('0965894355', 'Chic & Slim Encore: More About How French Women Dress Chic Stay Slim -- And How You Can Too!', 'https://images.isbndb.com/covers/43/57/9780965894357.jpg'), + ('0671039857', 'The End Of The Rainbow (Hudson Family, Book 4)', 'https://images.isbndb.com/covers/98/51/9780671039851.jpg'), + ('0671039830', 'Eye Of The Storm (Hudson Family, Book 3)', 'https://images.isbndb.com/covers/98/37/9780671039837.jpg'), + ('0671007696', 'Lightning Strikes (Hudson Family, Book 2)', 'https://images.isbndb.com/covers/76/90/9780671007690.jpg'), + ('067100767X', 'Rain (Hudson Family, Book 1', 'https://images.isbndb.com/covers/76/76/9780671007676.jpg'), + ('0140063838', 'Clinging To The Wreckage: A Part Of Life', 'https://images.isbndb.com/covers/38/37/9780140063837.jpg'), + ('0207169519', 'New And Selected Poems (A & R Modern Poets)', 'https://images.isbndb.com/covers/95/19/9780207169519.jpg'), + ('0684870819', 'Chocolate For A Teen''s Soul: Life-changing Stories For Young Women About Growing Wise And Growing Strong', 'https://images.isbndb.com/covers/08/16/9780684870816.jpg'), + ('1558748040', 'Chicken Soup For The Teenage Soul Letters - Letters Of Life, Love And Learning (Chicken Soup For The Teenage Soul)', 'https://images.isbndb.com/covers/80/40/9781558748040.jpg'), + ('0425132986', 'Far And Away', 'https://images.isbndb.com/covers/29/82/9780425132982.jpg'), + ('0439053862', 'A Coal Miner''s Bride: The Diary Of Anetka Kaminska', 'https://images.isbndb.com/covers/38/60/9780439053860.jpg'), + ('0743403614', 'Orphans (Orphans Series)', 'https://images.isbndb.com/covers/36/10/9780743403610.jpg'), + ('013029442X', 'Cities And Privatization: Prospects For The New Century', 'https://images.isbndb.com/covers/44/25/9780130294425.jpg'), + ('0843925027', 'Maniac', 'https://images.isbndb.com/covers/50/29/9780843925029.jpg'), + ('0756400953', 'Jaran (The Jaran, Book 1)', 'https://images.isbndb.com/covers/09/58/9780756400958.jpg'), + ('1559210869', 'East Wind: West Wind (Oriental Novels Of Pearl S. Buck)', 'https://images.isbndb.com/covers/08/67/9781559210867.jpg'), + ('0886779960', 'Sword And Sorceress XVIII', 'https://images.isbndb.com/covers/99/62/9780886779962.jpg'), + ('033042095X', 'Rat Race: AND To The Hilt', 'https://images.isbndb.com/covers/09/52/9780330420952.jpg'), + ('0789716399', 'Easy Internet', 'https://images.isbndb.com/covers/63/92/9780789716392.jpg'), + ('0821767240', 'An Unwilling Bride (Zebra Historical Romance)', 'https://images.isbndb.com/covers/72/45/9780821767245.jpg'), + ('0515135356', 'Crime School', 'https://images.isbndb.com/covers/53/50/9780515135350.jpg'), + ('0316782262', 'All He Ever Wanted', 'https://images.isbndb.com/covers/22/65/9780316782265.jpg'), + ('0525945210', 'A Man Named Dave', 'https://images.isbndb.com/covers/52/15/9780525945215.jpg'), + ('0786869054', 'The Sunday Wife', 'https://images.isbndb.com/covers/90/53/9780786869053.jpg'), + ('0446530387', 'Stone Kiss (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/03/85/9780446530385.jpg'), + ('0688177743', 'Keeping Faith: A Novel', 'https://images.isbndb.com/covers/77/44/9780688177744.jpg'), + ('0375413634', 'The Emperor Of Ocean Park', 'https://images.isbndb.com/covers/36/36/9780375413636.jpg'), + ('0425147762', 'Red Azalea', 'https://images.isbndb.com/covers/77/64/9780425147764.jpg'), + ('0399149295', 'Blood Orchid (Holly Barker Novels)', 'https://images.isbndb.com/covers/92/90/9780399149290.jpg'), + ('0066212693', 'Good Girls Gone Bad', 'https://images.isbndb.com/covers/26/92/9780066212692.jpg'), + ('0670031062', 'Must Love Dogs: A Novel', 'https://images.isbndb.com/covers/10/61/9780670031061.jpg'), + ('0679439382', 'The Little Friend', 'https://images.isbndb.com/covers/93/87/9780679439387.jpg'), + ('1565123417', 'A Private Sorcery', 'https://images.isbndb.com/covers/34/10/9781565123410.jpg'), + ('0451179188', 'The Throat', 'https://images.isbndb.com/covers/91/80/9780451179180.jpg'), + ('0786867612', 'Nothing To Fall Back On: The Life And Times Of A Perpetual Optimist', 'https://images.isbndb.com/covers/76/15/9780786867615.jpg'), + ('0061098035', 'Burn Factor', 'https://images.isbndb.com/covers/80/31/9780061098031.jpg'), + ('0553572105', 'Fly Away Home', 'https://images.isbndb.com/covers/21/00/9780553572100.jpg'), + ('051512950X', 'Straw Men', 'https://images.isbndb.com/covers/95/02/9780515129502.jpg'), + ('0312926456', 'Unanswered Cries: A True Story Of Friends, Neighbors, And Murder In A Small Town', 'https://images.isbndb.com/covers/64/58/9780312926458.jpg'), + ('0786889837', 'Buried Evidence', 'https://images.isbndb.com/covers/98/39/9780786889839.jpg'), + ('0804108749', 'Saint Maybe', 'https://images.isbndb.com/covers/87/44/9780804108744.jpg'), + ('0425121631', 'Rules Of Prey', 'https://images.isbndb.com/covers/16/34/9780425121634.jpg'), + ('0804109052', 'Undue Influence', 'https://images.isbndb.com/covers/90/55/9780804109055.jpg'), + ('0345402308', 'The Fourth Procedure: A Novel Of Medical Suspense', 'https://images.isbndb.com/covers/23/01/9780345402301.jpg'), + ('0451168690', 'Mystery', 'https://images.isbndb.com/covers/86/96/9780451168696.jpg'), + ('067945960X', 'Monster: A Novel', 'https://images.isbndb.com/covers/96/06/9780679459606.jpg'), + ('0316693235', 'Violets Are Blue ~ Detective Alex Cross Series', 'https://images.isbndb.com/covers/32/33/9780316693233.jpg'), + ('0451188616', 'The Heir (Coulter Historical Romance)', 'https://images.isbndb.com/covers/86/18/9780451188618.jpg'), + ('050552208X', 'A Darker Dream (Love Spell Romance)', 'https://images.isbndb.com/covers/20/85/9780505522085.jpg'), + ('0380820846', 'Romancing Mister Bridgerton (Bridgerton Series, Book 4)', 'https://images.isbndb.com/covers/08/49/9780380820849.jpg'), + ('0425153975', 'The Eyes Of Darkness', 'https://images.isbndb.com/covers/39/70/9780425153970.jpg'), + ('0425119653', 'Mutation', 'https://images.isbndb.com/covers/96/55/9780425119655.jpg'), + ('0553579983', 'And Then You Die', 'https://images.isbndb.com/covers/99/87/9780553579987.jpg'), + ('0399149325', 'Portrait Of A Killer: Jack The Ripper -- Case Closed', 'https://images.isbndb.com/covers/93/20/9780399149320.jpg'), + ('042515971X', 'Blown Away', 'https://images.isbndb.com/covers/97/12/9780425159712.jpg'), + ('1583144269', 'Smitten (Arabesque)', 'https://images.isbndb.com/covers/42/68/9781583144268.jpg'), + ('0446610852', 'The Kissing Game', 'https://images.isbndb.com/covers/08/58/9780446610858.jpg'), + ('0821771426', 'Say You''re Mine', 'https://images.isbndb.com/covers/14/26/9780821771426.jpg'), + ('0671744577', 'Eternity', 'https://images.isbndb.com/covers/45/71/9780671744571.jpg'), + ('0373261047', 'Real Murders (Aurora Teagarden Mysteries, Book 1)', 'https://images.isbndb.com/covers/10/48/9780373261048.jpg'), + ('0743233468', 'Bare Bones : A Novel', 'https://images.isbndb.com/covers/34/60/9780743233460.jpg'), + ('0804114986', 'The Bonesetter''s Daughter', 'https://images.isbndb.com/covers/49/81/9780804114981.jpg'), + ('0380808072', 'First Lady', 'https://images.isbndb.com/covers/80/76/9780380808076.jpg'), + ('067179356X', 'In The Name Of Love: Ann Rule''s Crime Files Volume 4', 'https://images.isbndb.com/covers/35/62/9780671793562.jpg'), + ('0743410505', 'Deadly Decisions', 'https://images.isbndb.com/covers/05/02/9780743410502.jpg'), + ('0380750848', 'A Heart So Wild', 'https://images.isbndb.com/covers/08/49/9780380750849.jpg'), + ('0425151883', 'Blush', 'https://images.isbndb.com/covers/18/84/9780425151884.jpg'), + ('0446611808', 'Envy', 'https://images.isbndb.com/covers/18/00/9780446611800.jpg'), + ('0310220033', 'Vanished (J. D. Stanton Mystery Series #2)', 'https://images.isbndb.com/covers/00/39/9780310220039.jpg'), + ('0553583360', 'Slightly Shady', 'https://images.isbndb.com/covers/33/66/9780553583366.jpg'), + ('0446600709', 'Assumed Identity', 'https://images.isbndb.com/covers/07/05/9780446600705.jpg'), + ('0671019929', 'Esau', 'https://images.isbndb.com/covers/99/21/9780671019921.jpg'), + ('044915002X', 'Shameless', 'https://images.isbndb.com/covers/00/23/9780449150023.jpg'), + ('0425178579', 'Betrayal In Death', 'https://images.isbndb.com/covers/85/77/9780425178577.jpg'), + ('0449907953', 'The Age Of Grief', 'https://images.isbndb.com/covers/79/55/9780449907955.jpg'), + ('1551669498', 'Girls Night (Stp - Mira)', 'https://images.isbndb.com/covers/94/96/9781551669496.jpg'), + ('038081448X', 'The Rambunctious Lady Royston', 'https://images.isbndb.com/covers/44/80/9780380814480.jpg'), + ('0140069135', 'The Name Of Annabel Lee', 'https://images.isbndb.com/covers/91/36/9780140069136.jpg'), + ('0696214563', 'Making A Home: Housekeeping For Real Life', 'https://images.isbndb.com/covers/45/61/9780696214561.jpg'), + ('044808919X', 'The Disappearing Floor (Hardy Boys, Book 19)', 'https://images.isbndb.com/covers/91/95/9780448089195.jpg'), + ('0448089165', 'A Figure In Hiding (The Hardy Boys #16)', 'https://images.isbndb.com/covers/91/64/9780448089164.jpg'), + ('0451626079', 'The Upanishads: Breath Of The Eternal (Mentor Series)', 'https://images.isbndb.com/covers/60/73/9780451626073.jpg'), + ('1563831236', 'Gifts In A Jar: Bars & Brownies (Gifts In A Jar, 3)', 'https://images.isbndb.com/covers/12/32/9781563831232.jpg'), + ('156383121X', 'Gifts In A Jar: Cookies (Gifts In A Jar, 1)', 'https://images.isbndb.com/covers/12/18/9781563831218.jpg'), + ('0028620666', 'Betty Crocker''s Best Of Baking: More Than 350 Of America''s Favorite Recipes', 'https://images.isbndb.com/covers/06/64/9780028620664.jpg'), + ('1892051176', 'Guinness World Records (2003) (Guinness Book Of Records)', 'https://images.isbndb.com/covers/11/72/9781892051172.jpg'), + ('0877201358', 'LA Gran Aventura De Alejandro (Spanish Edition)', 'https://images.isbndb.com/covers/13/59/9780877201359.jpg'), + ('0844273252', 'Guide To Spanish Idioms', 'https://images.isbndb.com/covers/32/59/9780844273259.jpg'), + ('0201741644', 'Macromedia Director 8.5 Shockwave Studio For 3D: Training From The Source (Authorized)', 'https://images.isbndb.com/covers/16/43/9780201741643.jpg'), + ('1559362324', 'Anna In The Tropics', 'https://images.isbndb.com/covers/23/20/9781559362320.jpg'), + ('0345430786', 'Manifold: Space', 'https://images.isbndb.com/covers/07/86/9780345430786.jpg'), + ('0316710571', 'Sam''s Letters To Jennifer', 'https://images.isbndb.com/covers/05/72/9780316710572.jpg'), + ('0060555513', 'The Last Goodbye', 'https://images.isbndb.com/covers/55/11/9780060555511.jpg'), + ('0892967544', 'First Degree', 'https://images.isbndb.com/covers/75/44/9780892967544.jpg'), + ('0399148655', 'The Delicate Storm (Marian Wood Book)', 'https://images.isbndb.com/covers/86/51/9780399148651.jpg'), + ('0312319142', 'Paranoia', 'https://images.isbndb.com/covers/91/44/9780312319144.jpg'), + ('0345457587', 'Shadow Account (Frey, Stephen)', 'https://images.isbndb.com/covers/75/85/9780345457585.jpg'), + ('0345453417', 'Cry No More', 'https://images.isbndb.com/covers/34/19/9780345453419.jpg'), + ('0060555653', 'The Polished Hoe', 'https://images.isbndb.com/covers/56/58/9780060555658.jpg'), + ('0316591122', 'Fear Itself: A Fearless Jones Novel', 'https://images.isbndb.com/covers/11/26/9780316591126.jpg'), + ('0312319517', 'Avenger', 'https://images.isbndb.com/covers/95/19/9780312319519.jpg'), + ('0380978830', 'Death Trap: An Alaska Mystery (Alaska Mysteries)', 'https://images.isbndb.com/covers/88/30/9780380978830.jpg'), + ('0385336209', 'Blinded (Dr. Alan Gregory Novels)', 'https://images.isbndb.com/covers/62/08/9780385336208.jpg'), + ('0553802526', 'The Killing Hour', 'https://images.isbndb.com/covers/25/28/9780553802528.jpg'), + ('0446530689', 'The Protector', 'https://images.isbndb.com/covers/06/82/9780446530682.jpg'), + ('0399150854', 'Blacklist: A V.I. Warshawski Novel', 'https://images.isbndb.com/covers/08/52/9780399150852.jpg'), + ('0060083956', 'Mr. Paradise: A Novel', 'https://images.isbndb.com/covers/39/53/9780060083953.jpg'), + ('0446531421', 'Still Life With Crows (Pendergast, Book 4)', 'https://images.isbndb.com/covers/14/29/9780446531429.jpg'), + ('0312306814', 'A Grave Denied: A Kate Shugak Novel', 'https://images.isbndb.com/covers/68/16/9780312306816.jpg'), + ('0312271786', 'Off The Chart: A Novel', 'https://images.isbndb.com/covers/17/87/9780312271787.jpg'), + ('0399150870', 'Stone Cold: A Jesse Stone Novel', 'https://images.isbndb.com/covers/08/76/9780399150876.jpg'), + ('0399149821', 'Dirty Work', 'https://images.isbndb.com/covers/98/25/9780399149825.jpg'), + ('0553802496', 'Odd Thomas: A Novel', 'https://images.isbndb.com/covers/24/98/9780553802498.jpg'), + ('0345452577', 'The Conspiracy Club', 'https://images.isbndb.com/covers/25/73/9780345452573.jpg'), + ('1400041414', 'The Murder Room (Adam Dalgliesh Mystery Series #12)', 'https://images.isbndb.com/covers/14/11/9781400041411.jpg'), + ('0060193883', 'A Bloodhound To Die For (Jo Beth Sidden, No 6)', 'https://images.isbndb.com/covers/38/81/9780060193881.jpg'), + ('0743428684', 'Midnight Flight (Andrews, V. C.)', 'https://images.isbndb.com/covers/86/82/9780743428682.jpg'), + ('0525947655', 'A Perfect Day', 'https://images.isbndb.com/covers/76/53/9780525947653.jpg'), + ('0312316690', 'The Tristan Betrayal', 'https://images.isbndb.com/covers/66/93/9780312316693.jpg'), + ('0060005556', 'Last To Die (Grippando, James)', 'https://images.isbndb.com/covers/55/59/9780060005559.jpg'), + ('0312304269', 'Runaway Heart: A Novel', 'https://images.isbndb.com/covers/42/63/9780312304263.jpg'), + ('0399148760', 'Seizure', 'https://images.isbndb.com/covers/87/67/9780399148767.jpg'), + ('0316603287', 'The Lake House', 'https://images.isbndb.com/covers/32/87/9780316603287.jpg'), + ('0399145664', 'Family Honor', 'https://images.isbndb.com/covers/56/67/9780399145667.jpg'), + ('0425178102', 'Big Trouble', 'https://images.isbndb.com/covers/81/02/9780425178102.jpg'), + ('0553580515', 'Passage', 'https://images.isbndb.com/covers/05/18/9780553580518.jpg'), + ('0749301015', 'MY LEFT FOOT.', 'https://images.isbndb.com/covers/10/19/9780749301019.jpg'), + ('0445204222', 'Wizard War', 'https://images.isbndb.com/covers/42/25/9780445204225.jpg'), + ('1930252501', 'The Brink', 'https://images.isbndb.com/covers/25/09/9781930252509.jpg'), + ('0515123293', 'The Last Heroes: A Men At War Novel', 'https://images.isbndb.com/covers/32/96/9780515123296.jpg'), + ('0312985207', 'Deep Black (Stephen Coonts'' Deep Black, Book 1)', 'https://images.isbndb.com/covers/52/02/9780312985202.jpg'), + ('0449220354', 'Final Approach', 'https://images.isbndb.com/covers/03/51/9780449220351.jpg'), + ('0312981260', 'Temple', 'https://images.isbndb.com/covers/12/66/9780312981266.jpg'), + ('067104754X', 'Purgatory Ridge (Cork O''Connor)', 'https://images.isbndb.com/covers/75/42/9780671047542.jpg'), + ('0385144741', 'Memento', 'https://images.isbndb.com/covers/47/42/9780385144742.jpg'), + ('0385144342', 'Mark Coffin, U.S.S.: A Novel Of Capitol Hill', 'https://images.isbndb.com/covers/43/46/9780385144346.jpg'), + ('0595175686', 'The Bridge', 'https://images.isbndb.com/covers/56/80/9780595175680.jpg'), + ('1594082316', 'New England Interlude', 'https://images.isbndb.com/covers/23/13/9781594082313.jpg'), + ('1410777057', 'Hidden Agendas', 'https://images.isbndb.com/covers/70/58/9781410777058.jpg'), + ('0374172471', 'Homesickness: A Novel', 'https://images.isbndb.com/covers/24/73/9780374172473.jpg'), + ('2070394867', 'Kitchen', 'https://images.isbndb.com/covers/48/69/9782070394869.jpg'), + ('0609807420', 'The Business Plan For The Body', 'https://images.isbndb.com/covers/74/22/9780609807422.jpg'), + ('0425122956', 'Majestic', 'https://images.isbndb.com/covers/29/52/9780425122952.jpg'), + ('0451208765', 'Sleep No More', 'https://images.isbndb.com/covers/87/67/9780451208767.jpg'), + ('0618129022', 'The Lord Of The Rings (Movie Art Cover)', 'https://images.isbndb.com/covers/90/27/9780618129027.jpg'), + ('0345423402', 'A Kiss Of Shadows (Meredith Gentry, Book 1)', 'https://images.isbndb.com/covers/34/05/9780345423405.jpg'), + ('0345423429', 'A Caress Of Twilight (Meredith Gentry, Book 2)', 'https://images.isbndb.com/covers/34/29/9780345423429.jpg'), + ('034544356X', 'Seduced By Moonlight (Meredith Gentry, Book 3)', 'https://images.isbndb.com/covers/35/64/9780345443564.jpg'), + ('0743454146', 'The Footprints Of God', 'https://images.isbndb.com/covers/41/48/9780743454148.jpg'), + ('0451210840', 'The Gunslinger (The Dark Tower, Book 1)', 'https://images.isbndb.com/covers/08/45/9780451210845.jpg'), + ('0425152367', 'Private Altars: A Novel', 'https://images.isbndb.com/covers/23/62/9780425152362.jpg'), + ('0553374435', 'Conscious Breathing: Breathwork For Health, Stress Release, And Personal Mastery', 'https://images.isbndb.com/covers/44/38/9780553374438.jpg'), + ('0553106643', 'Fear Nothing', 'https://images.isbndb.com/covers/66/40/9780553106640.jpg'), + ('0553057707', 'Brain Building: Exercising Yourself Smarter', 'https://images.isbndb.com/covers/77/06/9780553057706.jpg'), + ('1853263508', 'Dictionary Of Anagrams', 'https://images.isbndb.com/covers/35/07/9781853263507.jpg'), + ('1567185711', 'Liquid Dreams Of Vampires', 'https://images.isbndb.com/covers/57/13/9781567185713.jpg'), + ('1560251476', 'In The Shadow Of The Vampire: Reflections From The World Of Anne Rice', 'https://images.isbndb.com/covers/14/77/9781560251477.jpg'), + ('0449223795', 'The Homing', 'https://images.isbndb.com/covers/37/96/9780449223796.jpg'), + ('1568846533', 'MS DOS 6.2 Simplified', 'https://images.isbndb.com/covers/65/38/9781568846538.jpg'), + ('0312144075', 'The Samurai''s Garden: A Novel', 'https://images.isbndb.com/covers/40/74/9780312144074.jpg'), + ('0684869233', 'The Burning Times: A Novel Of Medieval France', 'https://images.isbndb.com/covers/92/30/9780684869230.jpg'), + ('0156007479', 'Slammerkin', 'https://images.isbndb.com/covers/74/74/9780156007474.jpg'), + ('0061031844', 'The Book Of Shadows', 'https://images.isbndb.com/covers/18/47/9780061031847.jpg'), + ('0312267177', 'Catfish And Mandala: A Two-Wheeled Voyage Through The Landscape And Memory Of Vietnam', 'https://images.isbndb.com/covers/71/79/9780312267179.jpg'), + ('0345434943', 'Song Of The Exile (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/49/44/9780345434944.jpg'), + ('1860110886', 'Ireland', 'https://images.isbndb.com/covers/08/87/9781860110887.jpg'), + ('0875421849', 'Living Wicca: A Further Guide For The Solitary Practitioner (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/18/41/9780875421841.jpg'), + ('0786868619', 'Stolen Lives: Twenty Years In A Desert Jail (Oprah''s Book Club)', 'https://images.isbndb.com/covers/86/12/9780786868612.jpg'), + ('037550303X', 'The White Death: Tragedy And Heroism In An Avalanche Zone', 'https://images.isbndb.com/covers/30/30/9780375503030.jpg'), + ('0345442741', 'Welcome To The Great Mysterious (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/27/41/9780345442741.jpg'), + ('0970272707', 'The Birth Of Blue Satan: Featuring Blue Satan And Mrs. Kean (Blue Satan Mystery)', 'https://images.isbndb.com/covers/27/06/9780970272706.jpg'), + ('0399138439', 'Koontz: Three Complete Novels, Lightning, The Face Of Fear And The Vision', 'https://images.isbndb.com/covers/84/30/9780399138430.jpg'), + ('0130484717', 'Art Of The Leader', 'https://images.isbndb.com/covers/47/10/9780130484710.jpg'), + ('0452276365', 'Insomnia: 50 Essential Things To Do', 'https://images.isbndb.com/covers/63/69/9780452276369.jpg'), + ('0671723650', 'How To Win Friends & Influence People', 'https://images.isbndb.com/covers/36/51/9780671723651.jpg'), + ('0671733354', 'How To Stop Worrying And Start Living', 'https://images.isbndb.com/covers/33/53/9780671733353.jpg'), + ('0451206525', 'Dead Sleep', 'https://images.isbndb.com/covers/65/27/9780451206527.jpg'), + ('0140445943', 'The Earliest English Poems (Penguin Classics)', 'https://images.isbndb.com/covers/59/47/9780140445947.jpg'), + ('1557489297', 'Wait For The Morning (Heartsong Presents #194)', 'https://images.isbndb.com/covers/92/96/9781557489296.jpg'), + ('0553280430', 'The Tao Of Relationships: A Balancing Of Man And Woman', 'https://images.isbndb.com/covers/04/32/9780553280432.jpg'), + ('0451167317', 'The Dark Half', 'https://images.isbndb.com/covers/73/16/9780451167316.jpg'), + ('0821725998', 'Quest Of The Seventh Carrier', 'https://images.isbndb.com/covers/59/93/9780821725993.jpg'), + ('0590444646', 'Caddie Woodlawn', 'https://images.isbndb.com/covers/46/44/9780590444644.jpg'), + ('039951743X', 'The Pocket Dictionary Of Signing (Perigee)', 'https://images.isbndb.com/covers/74/33/9780399517433.jpg'), + ('0671517643', 'Little Women', 'https://images.isbndb.com/covers/76/49/9780671517649.jpg'), + ('155748919X', 'An Uncertain Heart (Great Lakes Series, Book 1) (Heartsong Presents #188)', 'https://images.isbndb.com/covers/91/97/9781557489197.jpg'), + ('1577480112', 'The Fruit Of Her Hands (Heartsong Presents #210)', 'https://images.isbndb.com/covers/01/12/9781577480112.jpg'), + ('0451457250', 'Stargate Sg-1', 'https://images.isbndb.com/covers/72/57/9780451457257.jpg'), + ('0394741838', 'Dragons Of Spring Dawning', 'https://images.isbndb.com/covers/18/33/9780394741833.jpg'), + ('0345428455', 'Vector Prime (Star Wars: The New Jedi Order, Book 1)', 'https://images.isbndb.com/covers/84/55/9780345428455.jpg'), + ('0671541749', 'Invasion: The Soldiers Of Fear (Star Trek: The Next Generation, No. 41)', 'https://images.isbndb.com/covers/17/43/9780671541743.jpg'), + ('0345314875', 'Requiem For A Ruler Of Worlds: (Alacrity FitzHugh And Hobart Floyt, No 1)', 'https://images.isbndb.com/covers/48/71/9780345314871.jpg'), + ('0140446109', 'On The Nature Of The Universe (Penguin Classics)', 'https://images.isbndb.com/covers/61/04/9780140446104.jpg'), + ('014044422X', 'The Complete Odes And Epodes: With The Centennial Hymn (Penguin Classics)', 'https://images.isbndb.com/covers/42/23/9780140444223.jpg'), + ('0140147683', 'The Arabs (Penguin History)', 'https://images.isbndb.com/covers/76/81/9780140147681.jpg'), + ('0452270294', 'Cosmic Wormholes: The Search For Interstellar Shortcuts', 'https://images.isbndb.com/covers/02/99/9780452270299.jpg'), + ('1560766263', 'Prince Of Lies (Forgotten Realms)', 'https://images.isbndb.com/covers/62/61/9781560766261.jpg'), + ('014011341X', 'The Second World War', 'https://images.isbndb.com/covers/34/19/9780140113419.jpg'), + ('0155026607', 'Twenty Questions: An Introduction To Philosophy', 'https://images.isbndb.com/covers/66/05/9780155026605.jpg'), + ('0312850247', 'The Trikon Deception', 'https://images.isbndb.com/covers/02/41/9780312850241.jpg'), + ('0786913886', 'The Silent Blade (Forgotten Realms: Paths Of Darkness, Book 1)', 'https://images.isbndb.com/covers/38/86/9780786913886.jpg'), + ('0766607208', 'Adventures Of Huckleberry Finn (Treasury Of Illustrated Classics)', 'https://images.isbndb.com/covers/72/00/9780766607200.jpg'), + ('1884820298', 'The A.D.D. And A.D.H.D. Diet! A Comprehensive Look At Contributing Factors And Natural Treatments For Symptoms Of Attention Deficit Disorder And Hyperactivity', 'https://images.isbndb.com/covers/02/98/9781884820298.jpg'), + ('014042346X', 'The Penguin Book Of Renaissance Verse: 1509-1659 (Penguin Classics)', 'https://images.isbndb.com/covers/34/64/9780140423464.jpg'), + ('0440133017', 'Cosmic Connection: An Extraterrestrial Perspective', 'https://images.isbndb.com/covers/30/18/9780440133018.jpg'), + ('0140587640', 'The Descent Of Alette (Poets, Penguin)', 'https://images.isbndb.com/covers/76/47/9780140587647.jpg'), + ('0399144706', 'River''s End', 'https://images.isbndb.com/covers/47/07/9780399144707.jpg'), + ('031285904X', 'The Parafaith War', 'https://images.isbndb.com/covers/90/46/9780312859046.jpg'), + ('0140444173', 'War And Peace (Penguin Classics)', 'https://images.isbndb.com/covers/41/79/9780140444179.jpg'), + ('0380769158', 'History''s Last Stand: The Last Gasps, Fatal Falls And Final Gambles Of Heroes, Despots And Civilizations', 'https://images.isbndb.com/covers/91/55/9780380769155.jpg'), + ('1560760478', 'Sojourn: The Dark Elf Trilogy, Part 3 (Forgotten Realms: The Legend Of Drizzt, Book III)', 'https://images.isbndb.com/covers/04/74/9781560760474.jpg'), + ('0880389052', 'Homeland (Forgotten Realms)', 'https://images.isbndb.com/covers/90/51/9780880389051.jpg'), + ('0880389206', 'Exile: Forgotten Realms (The Dark Elf Trilogy, Book 2)', 'https://images.isbndb.com/covers/92/04/9780880389204.jpg'), + ('0140193669', 'The Sorcerer''s Crossing: A Woman''s Journey (Compass)', 'https://images.isbndb.com/covers/36/64/9780140193664.jpg'), + ('0140194916', 'Deerdancer: The Shapeshifter Archetype In Story & In Trance (Arkana)', 'https://images.isbndb.com/covers/49/13/9780140194913.jpg'), + ('0140255109', 'Novel Without A Name', 'https://images.isbndb.com/covers/51/02/9780140255102.jpg'), + ('014070731X', 'Antony And Cleopatra (New Penguin Shakespeare)', 'https://images.isbndb.com/covers/73/11/9780140707311.jpg'), + ('0140445145', 'The Twilight Of The Idols And The Anti-Christ: Or How To Philosophize With A Hammer (Penguin Classics)', 'https://images.isbndb.com/covers/51/45/9780140445145.jpg'), + ('0452010845', 'The History Of Russia: Seventh Revised Edition (Meridian)', 'https://images.isbndb.com/covers/08/40/9780452010840.jpg'), + ('0140048162', 'Russian Short Stories, The Penguin Book Of', 'https://images.isbndb.com/covers/81/62/9780140048162.jpg'), + ('0140390537', 'Billy Budd And Other Stories (Penguin Classics)', 'https://images.isbndb.com/covers/05/37/9780140390537.jpg'), + ('0192713434', 'First Summer Year', 'https://images.isbndb.com/covers/34/38/9780192713438.jpg'), + ('0345396936', 'Cry To Heaven', 'https://images.isbndb.com/covers/69/38/9780345396938.jpg'), + ('0312261918', 'Let Me Whisper In Your Ear', 'https://images.isbndb.com/covers/19/17/9780312261917.jpg'), + ('014010870X', 'Life And Death In Shanghai', 'https://images.isbndb.com/covers/87/05/9780140108705.jpg'), + ('0671722840', 'Richard III (The New Folger Library)', 'https://images.isbndb.com/covers/28/45/9780671722845.jpg'), + ('0553233890', 'Pilgrim At Tinker Creek', 'https://images.isbndb.com/covers/38/96/9780553233896.jpg'), + ('0553346083', 'Somewhere Off The Coast Of Maine', 'https://images.isbndb.com/covers/60/84/9780553346084.jpg'), + ('0330306839', 'Holidays In Hell', 'https://images.isbndb.com/covers/68/36/9780330306836.jpg'), + ('0140181903', 'The Custom Of The Country (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/19/06/9780140181906.jpg'), + ('0786881275', 'The Postman (Il Postino)', 'https://images.isbndb.com/covers/12/77/9780786881277.jpg'), + ('0394587545', 'The Waterworks', 'https://images.isbndb.com/covers/75/47/9780394587547.jpg'), + ('0020519303', 'GREENHILLS OF AFRICA', 'https://images.isbndb.com/covers/93/00/9780020519300.jpg'), + ('0345315014', 'Union Street', 'https://images.isbndb.com/covers/50/14/9780345315014.jpg'), + ('059022638X', 'Dracula Doesn''t Drink Lemonade (The Adventures Of The Bailey School Kids, #16)', 'https://images.isbndb.com/covers/63/87/9780590226387.jpg'), + ('0590466178', 'Night Of The Living Dummy (Goosebumps, No 7)', 'https://images.isbndb.com/covers/61/72/9780590466172.jpg'), + ('0006514588', 'Three Wise Men', 'https://images.isbndb.com/covers/45/89/9780006514589.jpg'), + ('1578660432', 'How Not To Be A Messie: The Ultimate Guide For The Neatness-Challenged', 'https://images.isbndb.com/covers/04/38/9781578660438.jpg'), + ('0761116230', 'McGee & Stuckey''s Bountiful Container: Create Container Gardens Of Vegetables, Herbs, Fruits, And Edible Flowers', 'https://images.isbndb.com/covers/62/33/9780761116233.jpg'), + ('1580174493', 'The City Gardener''s Handbook: The Definitive Guide To Small Space Gardening', 'https://images.isbndb.com/covers/44/97/9781580174497.jpg'), + ('0380819600', 'Take Me, I''m Yours', 'https://images.isbndb.com/covers/96/07/9780380819607.jpg'), + ('0312980159', 'Fast Women', 'https://images.isbndb.com/covers/01/53/9780312980153.jpg'), + ('0821771116', 'Falling For April (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/12/9780821771112.jpg'), + ('0451403967', 'Devoted (Topaz Historical Romances)', 'https://images.isbndb.com/covers/39/64/9780451403964.jpg'), + ('0140277749', 'The Bust Guide To The New Girl Order', 'https://images.isbndb.com/covers/77/46/9780140277746.jpg'), + ('1580050158', 'Cunt: A Declaration Of Independence (Live Girls)', 'https://images.isbndb.com/covers/01/59/9781580050159.jpg'), + ('0451524195', 'Sense And Sensibility (Signet Classic)', 'https://images.isbndb.com/covers/41/95/9780451524195.jpg'), + ('0821768093', 'Fly Me To The Moon (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/80/99/9780821768099.jpg'), + ('0440214866', 'Hot Schemes', 'https://images.isbndb.com/covers/48/61/9780440214861.jpg'), + ('0440210046', 'Hot Secret', 'https://images.isbndb.com/covers/00/47/9780440210047.jpg'), + ('0440214858', 'Hot Money (Molly Dewitt Romantic Mystery)', 'https://images.isbndb.com/covers/48/54/9780440214854.jpg'), + ('0380818957', 'First Comes Love', 'https://images.isbndb.com/covers/89/52/9780380818952.jpg'), + ('0451191889', 'Beguiled', 'https://images.isbndb.com/covers/18/85/9780451191885.jpg'), + ('0345423658', 'The Wolf King (Legends Of The Wolves, Book 3)', 'https://images.isbndb.com/covers/36/58/9780345423658.jpg'), + ('0743410262', 'Educating Caroline (Sonnet Books)', 'https://images.isbndb.com/covers/02/67/9780743410267.jpg'), + ('0515119660', 'The Light Bearer', 'https://images.isbndb.com/covers/96/64/9780515119664.jpg'), + ('0312979851', 'True North', 'https://images.isbndb.com/covers/98/50/9780312979850.jpg'), + ('0312979886', 'Female Intelligence', 'https://images.isbndb.com/covers/98/81/9780312979881.jpg'), + ('0446671339', 'The Quiet Room: A Journey Out Of The Torment Of Madness', 'https://images.isbndb.com/covers/13/30/9780446671330.jpg'), + ('0425173631', 'Witness In Death', 'https://images.isbndb.com/covers/36/33/9780425173633.jpg'), + ('0451524748', 'Paradise Lost And Paradise Regained (Signet Classics)', 'https://images.isbndb.com/covers/47/44/9780451524744.jpg'), + ('0553212451', 'The Jungle (Bantam Classics)', 'https://images.isbndb.com/covers/24/57/9780553212457.jpg'), + ('0451191137', 'Anthem', 'https://images.isbndb.com/covers/11/37/9780451191137.jpg'), + ('0553299611', 'Lila: An Inquiry Into Morals', 'https://images.isbndb.com/covers/96/18/9780553299618.jpg'), + ('0679454489', 'Merrick (Vampire Chronicles)', 'https://images.isbndb.com/covers/44/89/9780679454489.jpg'), + ('0679454470', 'The Vampire Armand : The Vampire Chronicles (Rice, Anne, Vampire Chronicles)', 'https://images.isbndb.com/covers/44/72/9780679454472.jpg'), + ('0425176304', 'Judgment In Death', 'https://images.isbndb.com/covers/63/06/9780425176306.jpg'), + ('0684824485', 'Babylon Revisited: And Other Stories', 'https://images.isbndb.com/covers/44/82/9780684824482.jpg'), + ('0684801558', 'The Beautiful And Damned', 'https://images.isbndb.com/covers/15/51/9780684801551.jpg'), + ('0440225639', 'The Complete Book Of Food Counts- 5th Edition', 'https://images.isbndb.com/covers/56/38/9780440225638.jpg'), + ('0811212475', 'The Crack-Up', 'https://images.isbndb.com/covers/24/72/9780811212472.jpg'), + ('0553584782', 'The Pill Book 10th Edition: New And Revised (Pill Book (Mass Market Paper))', 'https://images.isbndb.com/covers/47/83/9780553584783.jpg'), + ('0805417761', 'Experiencing God Day-By-Day: A Devotional', 'https://images.isbndb.com/covers/77/60/9780805417760.jpg'), + ('087542791X', 'To Ride A Silver Broomstick: New Generation Witchcraft', 'https://images.isbndb.com/covers/79/11/9780875427911.jpg'), + ('015696158X', 'When God Was A Woman', 'https://images.isbndb.com/covers/15/85/9780156961585.jpg'), + ('0679720200', 'The Stranger', 'https://images.isbndb.com/covers/02/01/9780679720201.jpg'), + ('1852302089', 'How To Use Homeopathy (Health Workbooks)', 'https://images.isbndb.com/covers/20/85/9781852302085.jpg'), + ('0140092838', 'Adventures In The Alaskan Skin Trade (Contemporary American Fiction)', 'https://images.isbndb.com/covers/28/37/9780140092837.jpg'), + ('0679424474', 'Better Than Sex:: Confessions Of A Political Junkie (Gonzo Papers)', 'https://images.isbndb.com/covers/44/75/9780679424475.jpg'), + ('0373250371', 'Losing It (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/03/70/9780373250370.jpg'), + ('0312983271', 'Full House (Janet Evanovich''s Full Series, No 1)', 'https://images.isbndb.com/covers/32/77/9780312983277.jpg'), + ('0060507845', 'A Promising Man (and About Time, Too)', 'https://images.isbndb.com/covers/78/48/9780060507848.jpg'), + ('0345295684', 'Dragonflight', 'https://images.isbndb.com/covers/56/82/9780345295682.jpg'), + ('0312204353', 'Soul Of A Citizen: Living With Conviction In A Cynical Time', 'https://images.isbndb.com/covers/43/58/9780312204358.jpg'), + ('1551669285', 'The Soul Catcher (Maggie O''Dell Novels)', 'https://images.isbndb.com/covers/92/81/9781551669281.jpg'), + ('0446670111', 'Einstein''s Dreams', 'https://images.isbndb.com/covers/01/11/9780446670111.jpg'), + ('0020545509', 'The Daughter Of Time', 'https://images.isbndb.com/covers/55/07/9780020545507.jpg'), + ('0385468490', 'Free', 'https://images.isbndb.com/covers/84/97/9780385468497.jpg'), + ('0312979096', 'Now You See Me', 'https://images.isbndb.com/covers/90/96/9780312979096.jpg'), + ('0385313861', 'Going Native', 'https://images.isbndb.com/covers/38/65/9780385313865.jpg'), + ('0323023924', 'Nursing Interventions Classification (NIC), 4e', 'https://images.isbndb.com/covers/39/24/9780323023924.jpg'), + ('3257232993', 'Liebesfluchten (Diogenes Taschenbuch)', 'https://images.isbndb.com/covers/29/98/9783257232998.jpg'), + ('3499141639', 'Das Lächeln Am Fuße Der Leiter', 'https://images.isbndb.com/covers/16/38/9783499141638.jpg'), + ('0702217921', 'Miss Peabody''s Inheritance', 'https://images.isbndb.com/covers/79/20/9780702217920.jpg'), + ('037328019X', 'The Forest Prime Evil (A Stuart Winter Mystery)', 'https://images.isbndb.com/covers/01/93/9780373280193.jpg'), + ('1557735840', 'Error In Judgement', 'https://images.isbndb.com/covers/58/43/9781557735843.jpg'), + ('0515111341', 'Last Laugh (A Garth Ryland Mystery)', 'https://images.isbndb.com/covers/13/47/9780515111347.jpg'), + ('0373242190', 'Family Kind Of Wedding (That Special Woman/Forever Family) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/21/91/9780373242191.jpg'), + ('067163156X', 'TO DIE IN BEVERLY HILLS', 'https://images.isbndb.com/covers/15/67/9780671631567.jpg'), + ('0380541718', 'Luck Runs Out (Peter Shandy Mysteries)', 'https://images.isbndb.com/covers/17/13/9780380541713.jpg'), + ('0749300663', 'Coming Of Age', 'https://images.isbndb.com/covers/06/61/9780749300661.jpg'), + ('0821221817', 'The National Parks: A Postcard Folio Book', 'https://images.isbndb.com/covers/18/15/9780821221815.jpg'), + ('0684146010', 'Finally I''m A Doctor', 'https://images.isbndb.com/covers/60/10/9780684146010.jpg'), + ('0441007163', 'V. I.: Viral Intelligence', 'https://images.isbndb.com/covers/71/65/9780441007165.jpg'), + ('0345391829', 'Life, The Universe And Everything (Hitchhiker''s Trilogy)', 'https://images.isbndb.com/covers/18/27/9780345391827.jpg'), + ('0345253884', 'Roadmarks', 'https://images.isbndb.com/covers/38/80/9780345253880.jpg'), + ('0609603086', 'The Hammer Of Eden', 'https://images.isbndb.com/covers/30/86/9780609603086.jpg'), + ('0553282816', 'The Blooding', 'https://images.isbndb.com/covers/28/18/9780553282818.jpg'), + ('0553284789', 'F Is For Fugitive (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/47/82/9780553284782.jpg'), + ('0553279556', 'E Is For Evidence (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/95/59/9780553279559.jpg'), + ('0812580141', 'The Kingless Land (Band Of Four, Vol. 1)', 'https://images.isbndb.com/covers/01/43/9780812580143.jpg'), + ('0374281947', 'Personal Injuries (Scott Turow)', 'https://images.isbndb.com/covers/19/46/9780374281946.jpg'), + ('0345420438', 'The Tailor Of Panama', 'https://images.isbndb.com/covers/04/35/9780345420435.jpg'), + ('0689300549', 'The Farthest Shore', 'https://images.isbndb.com/covers/05/47/9780689300547.jpg'), + ('0345384911', 'Crystal Line', 'https://images.isbndb.com/covers/49/11/9780345384911.jpg'), + ('0345332997', 'A Man Rides Through (Mordant''s Need, Vol. II)', 'https://images.isbndb.com/covers/29/98/9780345332998.jpg'), + ('0451194101', 'Tanner On Ice (An Evan Tanner Mystery)', 'https://images.isbndb.com/covers/41/07/9780451194107.jpg'), + ('0451191013', 'The Regulators', 'https://images.isbndb.com/covers/10/14/9780451191014.jpg'), + ('0553564943', 'Magician: Apprentice', 'https://images.isbndb.com/covers/49/45/9780553564945.jpg'), + ('0886772370', 'The Spell Sword (Darkover: Against The Terran: The First Age)', 'https://images.isbndb.com/covers/23/76/9780886772376.jpg'), + ('0671637185', 'The RAGMAN''S SON', 'https://images.isbndb.com/covers/71/87/9780671637187.jpg'), + ('0140154787', 'Temptation (Penguin Graphic Fiction)', 'https://images.isbndb.com/covers/47/88/9780140154788.jpg'), + ('0751514403', 'Margin Of The Bulls', 'https://images.isbndb.com/covers/44/07/9780751514407.jpg'), + ('2070361381', 'La Cousine Bette', 'https://images.isbndb.com/covers/13/80/9782070361380.jpg'), + ('2070381161', 'C''est Beau Une Ville La Nuit (Blues)', 'https://images.isbndb.com/covers/11/66/9782070381166.jpg'), + ('2070380599', 'Au Bonheur Des Ogres', 'https://images.isbndb.com/covers/05/96/9782070380596.jpg'), + ('2070368823', 'Un Barrage Contre Le Pacifique', 'https://images.isbndb.com/covers/88/22/9782070368822.jpg'), + ('2020477815', 'Le Pingouin', 'https://images.isbndb.com/covers/78/19/9782020477819.jpg'), + ('2253151165', 'L''Inceste', 'https://images.isbndb.com/covers/11/66/9782253151166.jpg'), + ('284205461X', 'Soleil En Solde', 'https://images.isbndb.com/covers/46/18/9782842054618.jpg'), + ('2277220620', 'Zone érogène', 'https://images.isbndb.com/covers/06/26/9782277220626.jpg'), + ('038073124X', 'His Name Is Ron', 'https://images.isbndb.com/covers/12/44/9780380731244.jpg'), + ('0002713276', 'Bell'' Antonio', 'https://images.isbndb.com/covers/32/76/9780002713276.jpg'), + ('0375725849', 'Perfume: The Story Of A Murderer', 'https://images.isbndb.com/covers/58/45/9780375725845.jpg'), + ('0345318587', 'THE HOBBIT', 'https://images.isbndb.com/covers/85/89/9780345318589.jpg'), + ('0345340973', 'Lisa Maria''s Guide For The Perplexed (Red Dress Ink)', 'https://images.isbndb.com/covers/09/79/9780345340979.jpg'), + ('0440106443', 'The Black Marble', 'https://images.isbndb.com/covers/64/49/9780440106449.jpg'), + ('0515104531', 'Physical Evidence', 'https://images.isbndb.com/covers/45/30/9780515104530.jpg'), + ('0553238450', 'The Delta Star', 'https://images.isbndb.com/covers/84/57/9780553238457.jpg'), + ('0671701231', 'The Anastasia Syndrome And Other Stories', 'https://images.isbndb.com/covers/12/39/9780671701239.jpg'), + ('0553290266', 'The Golden Orange', 'https://images.isbndb.com/covers/02/64/9780553290264.jpg'), + ('038072541X', 'Hit Man (John Keller Mysteries)', 'https://images.isbndb.com/covers/54/10/9780380725410.jpg'), + ('0449204553', 'Walk Across America', 'https://images.isbndb.com/covers/45/59/9780449204559.jpg'), + ('0446605409', 'Plum Island', 'https://images.isbndb.com/covers/54/03/9780446605403.jpg'), + ('0061009504', 'Shinju', 'https://images.isbndb.com/covers/95/01/9780061009501.jpg'), + ('0142002399', 'The Shape Of Water', 'https://images.isbndb.com/covers/23/91/9780142002391.jpg'), + ('0330328743', 'Butcher Boy', 'https://images.isbndb.com/covers/87/46/9780330328746.jpg'), + ('2070376990', 'Dix Heures Et Demie Du Soir En été', 'https://images.isbndb.com/covers/69/95/9782070376995.jpg'), + ('2264034882', 'La Conjuration Des Imbéciles', 'https://images.isbndb.com/covers/48/85/9782264034885.jpg'), + ('0786711256', 'Sherlock Holmes And The Giant Rat Of Sumatra', 'https://images.isbndb.com/covers/12/53/9780786711253.jpg'), + ('0446605956', 'The Spirit Caller (Molly Bearpaw Mysteries)', 'https://images.isbndb.com/covers/59/53/9780446605953.jpg'), + ('1864484098', 'Antonio S And The Mystery Of Theodore Guzman Pb (A Little Ark Book)', 'https://images.isbndb.com/covers/40/90/9781864484090.jpg'), + ('0399136479', 'Childhood', 'https://images.isbndb.com/covers/64/74/9780399136474.jpg'), + ('0679776818', 'Birdsong: A Novel Of Love And War', 'https://images.isbndb.com/covers/68/19/9780679776819.jpg'), + ('0812508424', 'Shadows Linger: A Novel Of The Black Company (The Second Chronicle Of The Black Company)', 'https://images.isbndb.com/covers/84/20/9780812508420.jpg'), + ('0812555333', 'She Is The Darkness: Book Two Of Glittering Stone: A Novel Of The Black Company', 'https://images.isbndb.com/covers/53/32/9780812555332.jpg'), + ('0312931123', 'Cat Magic', 'https://images.isbndb.com/covers/11/24/9780312931124.jpg'), + ('1569711240', 'Bettie Page: Queen Of Hearts', 'https://images.isbndb.com/covers/12/48/9781569711248.jpg'), + ('0441007880', 'Scion''s Lady (Gil Trilogy, Book 2)', 'https://images.isbndb.com/covers/78/82/9780441007882.jpg'), + ('0441007090', 'Lady In Gil (Gil Trilogy, Book 1)', 'https://images.isbndb.com/covers/70/97/9780441007097.jpg'), + ('0812540034', 'Illumination', 'https://images.isbndb.com/covers/00/31/9780812540031.jpg'), + ('0451458842', 'The Glasswrights'' Journeyman', 'https://images.isbndb.com/covers/88/41/9780451458841.jpg'), + ('0345382455', 'High Queen', 'https://images.isbndb.com/covers/24/50/9780345382450.jpg'), + ('0446610771', 'Warchild', 'https://images.isbndb.com/covers/07/73/9780446610773.jpg'), + ('0812520076', 'Dark Seeker', 'https://images.isbndb.com/covers/00/71/9780812520071.jpg'), + ('0679416773', 'Ripley Under Water', 'https://images.isbndb.com/covers/67/77/9780679416777.jpg'), + ('0812555171', 'Expiration Date', 'https://images.isbndb.com/covers/51/72/9780812555172.jpg'), + ('0963784617', 'Quietus', 'https://images.isbndb.com/covers/46/12/9780963784612.jpg'), + ('0440224713', 'Total Recall', 'https://images.isbndb.com/covers/47/16/9780440224716.jpg'), + ('0425096440', '13 Fatal Errors Managers Make And How You Can Avoid Them', 'https://images.isbndb.com/covers/64/44/9780425096444.jpg'), + ('0553280414', 'A Separate Peace', 'https://images.isbndb.com/covers/04/18/9780553280418.jpg'), + ('0373484232', 'The Stanislaski Sisters: Natasha And Rachel (Silhouette Romance 2-novel Book: Taming Natasha, Falling For Rachel)', 'https://images.isbndb.com/covers/42/32/9780373484232.jpg'), + ('0064410137', 'The Slippery Slope (A Series Of Unfortunate Events, Book 10)', 'https://images.isbndb.com/covers/01/37/9780064410137.jpg'), + ('0373291108', 'Lady Of The Keep (Harlequin Historical, No 510).', 'https://images.isbndb.com/covers/11/06/9780373291106.jpg'), + ('1402710658', 'Classic Whodunits', 'https://images.isbndb.com/covers/06/50/9781402710650.jpg'), + ('0446600377', 'A Prince Among Men', 'https://images.isbndb.com/covers/03/78/9780446600378.jpg'), + ('0451410610', 'The Ice Child', 'https://images.isbndb.com/covers/06/10/9780451410610.jpg'), + ('0345440765', 'The World Below (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/07/61/9780345440761.jpg'), + ('0836251822', 'I''m Not Anti-Business, I''m Anti-Idiot [Dilbert]', 'https://images.isbndb.com/covers/18/21/9780836251821.jpg'), + ('0763616087', 'Stoner And Spaz', 'https://images.isbndb.com/covers/60/83/9780763616083.jpg'), + ('3453209613', 'Per Anhalter Durch Die Galaxis, 5 Romane In 1 Bd.', 'https://images.isbndb.com/covers/96/19/9783453209619.jpg'), + ('0517706814', 'The Law Of Love', 'https://images.isbndb.com/covers/68/17/9780517706817.jpg'), + ('0590044931', 'Ramona The Pest', 'https://images.isbndb.com/covers/49/36/9780590044936.jpg'), + ('0590630938', 'The Dragonslayer''s Apprentice (Point Fantasy)', 'https://images.isbndb.com/covers/09/31/9780590630931.jpg'), + ('0439087961', 'Riding Freedom', 'https://images.isbndb.com/covers/79/64/9780439087964.jpg'), + ('0141303786', 'The Further Adventures Of Hank The Cowdog #2', 'https://images.isbndb.com/covers/37/89/9780141303789.jpg'), + ('069401110X', 'The Secret Garden (Book And Charm)', 'https://images.isbndb.com/covers/11/00/9780694011100.jpg'), + ('0786842431', 'I Was Dan Marino (Super Bowl Switch #3)', 'https://images.isbndb.com/covers/24/38/9780786842438.jpg'), + ('068981934X', 'Home Run Hero (Scrappers)', 'https://images.isbndb.com/covers/93/46/9780689819346.jpg'), + ('0671737295', 'My Teacher Is An Alien', 'https://images.isbndb.com/covers/72/90/9780671737290.jpg'), + ('081673416X', 'Karen''s Perfect Match (Boyfriend Club)', 'https://images.isbndb.com/covers/41/60/9780816734160.jpg'), + ('0439323738', 'Lucy''s E-journal', 'https://images.isbndb.com/covers/37/34/9780439323734.jpg'), + ('0440496039', 'The Wolves Of Willoughby Chase (The Wolves Chronicles)', 'https://images.isbndb.com/covers/60/38/9780440496038.jpg'), + ('0689710682', 'Mrs. Frisby And The Rats Of Nimh (Aladdin Fantasy)', 'https://images.isbndb.com/covers/06/81/9780689710681.jpg'), + ('0590462318', 'The Toilet Paper Tigers', 'https://images.isbndb.com/covers/23/10/9780590462310.jpg'), + ('0394846656', 'The Mystery Of The Nervous Lion (The Three Investigators Mystery Series)', 'https://images.isbndb.com/covers/66/51/9780394846651.jpg'), + ('0590458078', 'Camp Murphy', 'https://images.isbndb.com/covers/80/78/9780590458078.jpg'), + ('0152099905', 'The Borrowers', 'https://images.isbndb.com/covers/99/09/9780152099909.jpg'), + ('0671745670', 'Space Brat (Space Brat 1)', 'https://images.isbndb.com/covers/56/77/9780671745677.jpg'), + ('157765692X', 'Last Of The Mohicans (Great Illustrated Classics)', 'https://images.isbndb.com/covers/69/20/9781577656920.jpg'), + ('1577658043', 'The Time Machine (Great Illustrated Classics (Abdo))', 'https://images.isbndb.com/covers/80/47/9781577658047.jpg'), + ('0382243579', 'Up A Road Slowly', 'https://images.isbndb.com/covers/35/78/9780382243578.jpg'), + ('0590523465', 'Welcome Home, Mary Anne (Baby-Sitters Club Friends Forever #11)', 'https://images.isbndb.com/covers/34/62/9780590523462.jpg'), + ('0140319301', 'The Wild Children', 'https://images.isbndb.com/covers/93/09/9780140319309.jpg'), + ('0816728798', 'Book Of Dragons Digest (Watermill Classics)', 'https://images.isbndb.com/covers/87/94/9780816728794.jpg'), + ('0440472091', 'Ramona The Pest', 'https://images.isbndb.com/covers/20/94/9780440472094.jpg'), + ('0439136369', 'Harry Potter And The Prisoner Of Azkaban', 'https://images.isbndb.com/covers/63/65/9780439136365.jpg'), + ('0688160867', 'Sideways Stories From Wayside School', 'https://images.isbndb.com/covers/08/69/9780688160869.jpg'), + ('0590673181', 'Deadly Experiments Of Dr. Eeek (Give Yourself Goosebumps)', 'https://images.isbndb.com/covers/31/81/9780590673181.jpg'), + ('0380712369', 'Strider', 'https://images.isbndb.com/covers/23/66/9780380712366.jpg'), + ('0679804021', 'Treasure Island (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/40/24/9780679804024.jpg'), + ('0671798340', 'The Search For Snout', 'https://images.isbndb.com/covers/83/45/9780671798345.jpg'), + ('0020418809', 'Caddie Woodlawn', 'https://images.isbndb.com/covers/88/01/9780020418801.jpg'), + ('0449701778', 'Baby-Sitting Is A Dangerous Job', 'https://images.isbndb.com/covers/17/75/9780449701775.jpg'), + ('0821730002', 'The Young Astronauts', 'https://images.isbndb.com/covers/00/03/9780821730003.jpg'), + ('014034893X', 'Roll Of Thunder, Hear My Cry', 'https://images.isbndb.com/covers/89/34/9780140348934.jpg'), + ('0590483463', 'Revenge Of The Lawn Gnomes (Goosebumps #34)', 'https://images.isbndb.com/covers/34/69/9780590483469.jpg'), + ('0385498799', 'Bee Season: A Novel', 'https://images.isbndb.com/covers/87/91/9780385498791.jpg'), + ('0140366660', 'The Secret Garden', 'https://images.isbndb.com/covers/66/62/9780140366662.jpg'), + ('0060278250', 'Abhorsen (The Abhorsen Trilogy)', 'https://images.isbndb.com/covers/82/50/9780060278250.jpg'), + ('0060278234', 'Lirael: Daughter Of The Clayr', 'https://images.isbndb.com/covers/82/36/9780060278236.jpg'), + ('0064471837', 'Sabriel (The Abhorsen Trilogy)', 'https://images.isbndb.com/covers/18/31/9780064471831.jpg'), + ('0345366239', 'The Eight', 'https://images.isbndb.com/covers/62/38/9780345366238.jpg'), + ('0330262130', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/21/32/9780330262132.jpg'), + ('0416052029', 'The Dream Catcher (A Magnet Book)', 'https://images.isbndb.com/covers/20/22/9780416052022.jpg'), + ('0689867034', 'How Not To Spend Your Senior Year', 'https://images.isbndb.com/covers/70/33/9780689867033.jpg'), + ('0786885971', 'Don''t Sweat The Small Stuff For Teens: Simple Ways To Keep Your Cool In Stressful Times (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/59/78/9780786885978.jpg'), + ('0689870027', 'The Princess Of Pop (Truth Or Dare)', 'https://images.isbndb.com/covers/00/26/9780689870026.jpg'), + ('0590769588', 'You''re Invited To Mary-Kate & Ashley''s Christmas Party', 'https://images.isbndb.com/covers/95/87/9780590769587.jpg'), + ('0786817909', 'Cheetah Girls Supa-Dupa Sparkle: Books 5 - 8 (Woff, There It Is - It''s Raining Benjamins - Dorinda''s Secret - Growl Power)', 'https://images.isbndb.com/covers/79/00/9780786817900.jpg'), + ('0060595094', 'NY MIN MM (New York Minute)', 'https://images.isbndb.com/covers/50/98/9780060595098.jpg'), + ('0684832178', 'Chocolate For A Woman''s Soul: 77 Stories To Feed Your Spirit And Warm Your Heart', 'https://images.isbndb.com/covers/21/73/9780684832173.jpg'), + ('0380807343', 'Coraline', 'https://images.isbndb.com/covers/73/45/9780380807345.jpg'), + ('0689859910', 'Mates, Dates, And Sleepover Secrets', 'https://images.isbndb.com/covers/99/15/9780689859915.jpg'), + ('0957881436', 'Being A Happy Teenager', 'https://images.isbndb.com/covers/14/33/9780957881433.jpg'), + ('0140341773', 'Great Puffin Joke Directory (Puffin Story Books)', 'https://images.isbndb.com/covers/17/75/9780140341775.jpg'), + ('0553577123', 'The Diary Of A Young Girl: The Definitive Edition', 'https://images.isbndb.com/covers/71/29/9780553577129.jpg'), + ('0307222519', 'Girl Talk Activity Book', 'https://images.isbndb.com/covers/25/10/9780307222510.jpg'), + ('0671021184', 'Spying Eyes (Sabrina The Teenage Witch, Book 14)', 'https://images.isbndb.com/covers/11/84/9780671021184.jpg'), + ('0064473627', 'Knocked Out By My Nunga-Nungas: Further, Further Confessions Of Georgia Nicolson (Confessions Of Georgia Nicolson, Book 3)', 'https://images.isbndb.com/covers/36/20/9780064473620.jpg'), + ('0061008761', 'An Irresistible Impulse', 'https://images.isbndb.com/covers/87/64/9780061008764.jpg'), + ('0684870827', 'Teens Can Make It Happen: Nine Steps For Success', 'https://images.isbndb.com/covers/08/23/9780684870823.jpg'), + ('0375727019', 'The Elementary Particles', 'https://images.isbndb.com/covers/70/16/9780375727016.jpg'), + ('042518689X', 'The Weedless Widow (Antique Lover''s Mysteries (Prime Crime))', 'https://images.isbndb.com/covers/68/93/9780425186893.jpg'), + ('0380752891', 'Man From Mundania', 'https://images.isbndb.com/covers/28/98/9780380752898.jpg'), + ('0807848735', 'A Tree Accurst: Bobby McMillon And Stories Of Frankie Silver', 'https://images.isbndb.com/covers/87/39/9780807848739.jpg'), + ('0813116791', 'Singing Family Of The Cumberlands', 'https://images.isbndb.com/covers/67/92/9780813116792.jpg'), + ('0394744543', 'Love Is Hell', 'https://images.isbndb.com/covers/45/44/9780394744544.jpg'), + ('0385333501', 'Welcome To The Monkey House: Stories', 'https://images.isbndb.com/covers/35/04/9780385333504.jpg'), + ('0316925195', 'Brief Interviews With Hideous Men', 'https://images.isbndb.com/covers/51/98/9780316925198.jpg'), + ('0425176053', 'Come Together', 'https://images.isbndb.com/covers/60/54/9780425176054.jpg'), + ('0330301497', 'Madwomans Underclothes Essays And Occasion (Picador Books)', 'https://images.isbndb.com/covers/14/97/9780330301497.jpg'), + ('0297778536', 'Further Letters', 'https://images.isbndb.com/covers/85/30/9780297778530.jpg'), + ('0812969812', 'Blessings: A Novel', 'https://images.isbndb.com/covers/98/18/9780812969818.jpg'), + ('0306803984', 'The Lincoln Reader', 'https://images.isbndb.com/covers/39/87/9780306803987.jpg'), + ('0451163524', 'The Drawing Of The Three (The Dark Tower, Book 2)', 'https://images.isbndb.com/covers/35/23/9780451163523.jpg'), + ('0451194861', 'Wizard And Glass (The Dark Tower, Book 4)', 'https://images.isbndb.com/covers/48/62/9780451194862.jpg'), + ('0852073259', 'The Game Of Life And How To Play It', 'https://images.isbndb.com/covers/32/54/9780852073254.jpg'), + ('0452280621', 'Beloved', 'https://images.isbndb.com/covers/06/25/9780452280625.jpg'), + ('0195042239', 'Prince Among Slaves: The True Story Of An African Prince Sold Into Slavery In The American South', 'https://images.isbndb.com/covers/22/38/9780195042238.jpg'), + ('0140187375', 'Cannery Row (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/73/73/9780140187373.jpg'), + ('0451166582', 'The Eyes Of The Dragon', 'https://images.isbndb.com/covers/65/86/9780451166586.jpg'), + ('0671019732', 'A Lady Of The West', 'https://images.isbndb.com/covers/97/30/9780671019730.jpg'), + ('0671026011', 'The Empty Chair (Lincoln Rhyme Novels)', 'https://images.isbndb.com/covers/60/11/9780671026011.jpg'), + ('0231120621', 'Invisible Light', 'https://images.isbndb.com/covers/06/23/9780231120623.jpg'), + ('1895555590', 'Unseen', 'https://images.isbndb.com/covers/55/92/9781895555592.jpg'), + ('0888992424', 'The Maestro: A Novel', 'https://images.isbndb.com/covers/24/20/9780888992420.jpg'), + ('088899124X', 'Easy Avenue', 'https://images.isbndb.com/covers/12/49/9780888991249.jpg'), + ('0006479650', 'Thirteenth Child', 'https://images.isbndb.com/covers/96/59/9780006479659.jpg'), + ('0888991703', 'Two Moons In August', 'https://images.isbndb.com/covers/17/06/9780888991706.jpg'), + ('088899088X', 'Up To Low', 'https://images.isbndb.com/covers/08/84/9780888990884.jpg'), + ('0006479383', 'There Will Be Wolves', 'https://images.isbndb.com/covers/93/83/9780006479383.jpg'), + ('0330375253', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/52/52/9780330375252.jpg'), + ('0373834993', 'Somebody''S Dad', 'https://images.isbndb.com/covers/49/90/9780373834990.jpg'), + ('055337933X', 'Fierce Invalids Home From Hot Climates', 'https://images.isbndb.com/covers/93/34/9780553379334.jpg'), + ('0002245663', 'Forms Of Devotion: Stories And Pictures', 'https://images.isbndb.com/covers/56/61/9780002245661.jpg'), + ('0385503822', 'The Summons', 'https://images.isbndb.com/covers/38/22/9780385503822.jpg'), + ('0609804138', 'The Sweet Potato Queens'' Book Of Love', 'https://images.isbndb.com/covers/41/31/9780609804131.jpg'), + ('0345439104', 'Drowning Ruth: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/91/09/9780345439109.jpg'), + ('0316852570', 'The Hope', 'https://images.isbndb.com/covers/25/79/9780316852579.jpg'), + ('0061031410', 'Courting Trouble', 'https://images.isbndb.com/covers/14/10/9780061031410.jpg'), + ('0375757597', 'Normal Girl: A Novel', 'https://images.isbndb.com/covers/75/94/9780375757594.jpg'), + ('0140071083', 'The Haunting Of Hill House', 'https://images.isbndb.com/covers/10/85/9780140071085.jpg'), + ('0345248228', 'Dying Inside', 'https://images.isbndb.com/covers/82/20/9780345248220.jpg'), + ('0374423415', 'Flame-Colored Taffeta', 'https://images.isbndb.com/covers/34/14/9780374423414.jpg'), + ('0743439791', 'The Night I Disappeared', 'https://images.isbndb.com/covers/97/94/9780743439794.jpg'), + ('0192833669', 'Frankenstein Or The Modern Prometheus: The 1818 Text (Oxford World''s Classics)', 'https://images.isbndb.com/covers/36/62/9780192833662.jpg'), + ('0812548221', 'Of Tangible Ghosts (Ghost Trilogy)', 'https://images.isbndb.com/covers/82/28/9780812548228.jpg'), + ('0380784165', 'Scent Of Magic (Five Senses, Book 3)', 'https://images.isbndb.com/covers/41/65/9780380784165.jpg'), + ('0684848406', 'The Secret Book Of Grazia Dei Rossi', 'https://images.isbndb.com/covers/84/02/9780684848402.jpg'), + ('0446677698', 'One Virgin Too Many', 'https://images.isbndb.com/covers/76/91/9780446677691.jpg'), + ('0451192990', 'Absolution By Murder (A Sister Fidelma Mystery) (Mystery Of Ancient Ireland)', 'https://images.isbndb.com/covers/29/98/9780451192998.jpg'), + ('0425105695', 'The Moving Finger: A Miss Marple Murder Mystery', 'https://images.isbndb.com/covers/56/96/9780425105696.jpg'), + ('0441003524', 'Tarot Tales', 'https://images.isbndb.com/covers/35/25/9780441003525.jpg'), + ('0451455835', 'Merlin''s Harp', 'https://images.isbndb.com/covers/58/33/9780451455833.jpg'), + ('0679742565', 'The Game: A Novel', 'https://images.isbndb.com/covers/25/62/9780679742562.jpg'), + ('0553575384', 'To Say Nothing Of The Dog', 'https://images.isbndb.com/covers/53/85/9780553575385.jpg'), + ('0449214176', 'Bluebeard''s Egg And Other Stories', 'https://images.isbndb.com/covers/41/76/9780449214176.jpg'), + ('0061031070', 'Moving Target', 'https://images.isbndb.com/covers/10/76/9780061031076.jpg'), + ('0425180638', 'The Last Precinct (Scarpetta)', 'https://images.isbndb.com/covers/06/31/9780425180631.jpg'), + ('1853260045', 'Great Expectations (Wordsworth Classics)', 'https://images.isbndb.com/covers/00/49/9781853260049.jpg'), + ('2266051326', 'Dragon Rouge', 'https://images.isbndb.com/covers/13/23/9782266051323.jpg'), + ('0752860178', 'The White Mare (Dalriada, Book 1)', 'https://images.isbndb.com/covers/01/76/9780752860176.jpg'), + ('0441009239', 'Living Dead In Dallas -- 2002 Publication', 'https://images.isbndb.com/covers/92/37/9780441009237.jpg'), + ('0441008534', 'Dead Until Dark (Southern Vampire Mysteries, Book 1)', 'https://images.isbndb.com/covers/85/37/9780441008537.jpg'), + ('0312924801', 'September', 'https://images.isbndb.com/covers/48/05/9780312924805.jpg'), + ('1857970446', 'Constant Friends', 'https://images.isbndb.com/covers/04/49/9781857970449.jpg'), + ('0786702427', 'Angel: A Novel', 'https://images.isbndb.com/covers/24/28/9780786702428.jpg'), + ('0590477420', 'The Scarecrow Walks At Midnight (Goosebumps, No. 20)', 'https://images.isbndb.com/covers/74/20/9780590477420.jpg'), + ('0590477447', 'Ghost Beach (Goosebumps)', 'https://images.isbndb.com/covers/74/44/9780590477444.jpg'), + ('0440222435', 'Loving Becky', 'https://images.isbndb.com/covers/24/39/9780440222439.jpg'), + ('0451454537', 'Grunts', 'https://images.isbndb.com/covers/45/39/9780451454539.jpg'), + ('0316555525', 'Provenance', 'https://images.isbndb.com/covers/55/24/9780316555524.jpg'), + ('0688101194', 'The Manson Curse', 'https://images.isbndb.com/covers/11/90/9780688101190.jpg'), + ('0241123968', 'Loving Attitudes', 'https://images.isbndb.com/covers/39/66/9780241123966.jpg'), + ('0060112719', 'The Azanian Assignment', 'https://images.isbndb.com/covers/27/14/9780060112714.jpg'), + ('0671739085', 'Bloody Waters', 'https://images.isbndb.com/covers/90/89/9780671739089.jpg'), + ('0821756044', 'Sweet Sorcery', 'https://images.isbndb.com/covers/60/41/9780821756041.jpg'), + ('0786004827', 'Met By Moonlight', 'https://images.isbndb.com/covers/48/29/9780786004829.jpg'), + ('0751516678', 'Hester Dark', 'https://images.isbndb.com/covers/66/78/9780751516678.jpg'), + ('0297828991', 'Mr. Foreigner', 'https://images.isbndb.com/covers/89/90/9780297828990.jpg'), + ('0061013722', 'The Clairvoyant', 'https://images.isbndb.com/covers/37/20/9780061013720.jpg'), + ('0451163540', 'Triple (Signet)', 'https://images.isbndb.com/covers/35/47/9780451163547.jpg'), + ('0735201994', 'Peterman Rides Again: Adventures Continue With The Real "J. Peterman" Through Life & The Catalog Business', 'https://images.isbndb.com/covers/19/96/9780735201996.jpg'), + ('1414011458', 'No More Bobs', 'https://images.isbndb.com/covers/14/55/9781414011455.jpg'), + ('1564029654', 'Owl Babies', 'https://images.isbndb.com/covers/96/52/9781564029652.jpg'), + ('0307121259', 'I Am A Bunny (Golden Sturdy Book)', 'https://images.isbndb.com/covers/12/57/9780307121257.jpg'), + ('0671493183', 'Doggies (Boynton Board Books (Simon & Schuster))', 'https://images.isbndb.com/covers/31/89/9780671493189.jpg'), + ('0679882812', 'Dr. Seuss''s ABC: An Amazing Alphabet Book!', 'https://images.isbndb.com/covers/28/17/9780679882817.jpg'), + ('067144901X', 'Moo Baa La La La', 'https://images.isbndb.com/covers/90/18/9780671449018.jpg'), + ('0399215921', 'The Very Busy Spider', 'https://images.isbndb.com/covers/59/26/9780399215926.jpg'), + ('0394900189', 'Are You My Mother? (Beginner Books(R))', 'https://images.isbndb.com/covers/01/86/9780394900186.jpg'), + ('0394800206', 'Go, Dog. Go! (Beginner Books)', 'https://images.isbndb.com/covers/02/02/9780394800202.jpg'), + ('039515023X', 'Curious George', 'https://images.isbndb.com/covers/02/38/9780395150238.jpg'), + ('0953881024', 'Alice In Wonderland And The World Trade Center Disaster', 'https://images.isbndb.com/covers/10/24/9780953881024.jpg'), + ('1852860596', 'Star Trek Giant 3: Final Frontier Pb (Star Trek Giant Novel)', 'https://images.isbndb.com/covers/05/92/9781852860592.jpg'), + ('0521426219', 'Macbeth (Cambridge School Shakespeare)', 'https://images.isbndb.com/covers/62/13/9780521426213.jpg'), + ('0859344304', 'MS Access 97 One Step At A Time (BP)', 'https://images.isbndb.com/covers/43/02/9780859344302.jpg'), + ('0671787551', 'Reunion (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/75/54/9780671787554.jpg'), + ('0671869108', 'Shadows On The Sun (Star Trek)', 'https://images.isbndb.com/covers/91/06/9780671869106.jpg'), + ('0812516001', 'The Inheritor', 'https://images.isbndb.com/covers/60/05/9780812516005.jpg'), + ('0394821998', 'Phantom Tollbooth', 'https://images.isbndb.com/covers/19/93/9780394821993.jpg'), + ('0449208796', 'The High Cost Of Living', 'https://images.isbndb.com/covers/87/93/9780449208793.jpg'), + ('0393318451', 'The Universal Donor (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/84/56/9780393318456.jpg'), + ('0192835181', 'Washington Square (Oxford World''s Classics)', 'https://images.isbndb.com/covers/51/85/9780192835185.jpg'), + ('3518115758', 'Samthase Und Odradek: Versuche (edition Suhrkamp)', 'https://images.isbndb.com/covers/57/56/9783518115756.jpg'), + ('3442432073', 'Verrückt In Alabama: Roman', 'https://images.isbndb.com/covers/20/73/9783442432073.jpg'), + ('1853261076', 'Railway Children (Wordsworth Children''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/10/77/9781853261077.jpg'), + ('0786706953', 'The Mammoth Book Of Heroic And Outrageous Women (Mammoth Books)', 'https://images.isbndb.com/covers/69/52/9780786706952.jpg'), + ('0345443233', 'Blind Run', 'https://images.isbndb.com/covers/32/36/9780345443236.jpg'), + ('0688149626', 'High Crimes', 'https://images.isbndb.com/covers/96/28/9780688149628.jpg'), + ('0399145923', 'Carolina Moon', 'https://images.isbndb.com/covers/59/26/9780399145926.jpg'), + ('0316693251', 'Roses Are Red (Alex Cross)', 'https://images.isbndb.com/covers/32/57/9780316693257.jpg'), + ('0373706936', 'The Hiding Place (Women Who Dare, Book 25) (Harlequin Superromance, No 693)', 'https://images.isbndb.com/covers/69/38/9780373706938.jpg'), + ('0804107432', 'Dying Young', 'https://images.isbndb.com/covers/74/33/9780804107433.jpg'), + ('2070373622', 'La Vie Devant Soi', 'https://images.isbndb.com/covers/36/28/9782070373628.jpg'), + ('0375503994', 'Shrub: The Short But Happy Political Life Of George W. Bush', 'https://images.isbndb.com/covers/39/93/9780375503993.jpg'), + ('0688062229', 'Encyclopedia Brown''s Book Of Wacky Cars (Encyclopedia Brown Books)', 'https://images.isbndb.com/covers/22/24/9780688062224.jpg'), + ('0937295078', 'Meet Molly (American Girls Collection)', 'https://images.isbndb.com/covers/50/76/9780937295076.jpg'), + ('3540587101', 'Multimedia Database Systems. Issues And Research Directions (Artificial Intelligence)', 'https://images.isbndb.com/covers/71/01/9783540587101.jpg'), + ('1565922093', 'Electronic Publishing On CD-ROM : Authoring, Development, And Distribution', 'https://images.isbndb.com/covers/20/99/9781565922099.jpg'), + ('1565925653', 'Photoshop In A Nutshell: A Desktop Quick Reference (In A Nutshell (O''Reilly))', 'https://images.isbndb.com/covers/56/56/9781565925656.jpg'), + ('068416325X', 'The Great Gatsby', 'https://images.isbndb.com/covers/32/53/9780684163253.jpg'), + ('0843105550', 'The Gnome From Nome (Serendipity)', 'https://images.isbndb.com/covers/55/51/9780843105551.jpg'), + ('0672324253', 'Sams Teach Yourself C++ In 10 Minutes (2nd Edition)', 'https://images.isbndb.com/covers/42/53/9780672324253.jpg'), + ('3442722497', 'Schnee, Der Auf Zedern Fällt', 'https://images.isbndb.com/covers/24/95/9783442722495.jpg'), + ('3442545544', 'Mein Deutsches Dschungelbuch', 'https://images.isbndb.com/covers/55/44/9783442545544.jpg'), + ('3257225334', 'Der Mann Meiner Träume: Der Mann Meiner Traume', 'https://images.isbndb.com/covers/53/34/9783257225334.jpg'), + ('3257206089', 'Lalu Lalula, Arme Kleine Ophelia: Eine Unheimliche Liebesgeschichte', 'https://images.isbndb.com/covers/60/81/9783257206081.jpg'), + ('0312423187', 'Dancer: A Novel', 'https://images.isbndb.com/covers/31/86/9780312423186.jpg'), + ('3746614007', 'Die Päpstin', 'https://images.isbndb.com/covers/40/07/9783746614007.jpg'), + ('3548253652', 'Schöner Schein Trügt', 'https://images.isbndb.com/covers/36/57/9783548253657.jpg'), + ('0140063331', 'The Only Daughter', 'https://images.isbndb.com/covers/33/32/9780140063332.jpg'), + ('0679735909', 'Possession', 'https://images.isbndb.com/covers/59/08/9780679735908.jpg'), + ('0380716542', 'Birds Of Prey: A Novel Of Suspense', 'https://images.isbndb.com/covers/65/48/9780380716548.jpg'), + ('0380792486', 'Outlaw Mountain (Joanna Brady Mysteries, Book 7)', 'https://images.isbndb.com/covers/24/81/9780380792481.jpg'), + ('0670881767', 'Twas The Night Before: A Christmas Allegory', 'https://images.isbndb.com/covers/17/65/9780670881765.jpg'), + ('0451523377', 'Dracula (Signet Classics)', 'https://images.isbndb.com/covers/33/72/9780451523372.jpg'), + ('0452281423', 'The Claiming Of Sleeping Beauty', 'https://images.isbndb.com/covers/14/24/9780452281424.jpg'), + ('0553581651', 'Die Upon A Kiss (Benjamin January, Book 5)', 'https://images.isbndb.com/covers/16/52/9780553581652.jpg'), + ('2290314889', 'La Vénus D''ille', 'https://images.isbndb.com/covers/48/83/9782290314883.jpg'), + ('0380709139', 'Ellen Tebbits', 'https://images.isbndb.com/covers/91/37/9780380709137.jpg'), + ('0679775439', 'The Wind-Up Bird Chronicle: A Novel', 'https://images.isbndb.com/covers/54/30/9780679775430.jpg'), + ('0345272609', 'The Return Of The King', 'https://images.isbndb.com/covers/26/07/9780345272607.jpg'), + ('0345272595', 'The Two Towers', 'https://images.isbndb.com/covers/25/91/9780345272591.jpg'), + ('0345272587', 'Fellowship Of The Ring', 'https://images.isbndb.com/covers/25/84/9780345272584.jpg'), + ('3499433265', 'Amoklauf Im Audimax', 'https://images.isbndb.com/covers/32/69/9783499433269.jpg'), + ('3871340758', 'Der Betroffenheitskult. Eine Politische Sittengeschichte', 'https://images.isbndb.com/covers/07/58/9783871340758.jpg'), + ('3498063618', 'Ich Aber Bin Hier Geboren', 'https://images.isbndb.com/covers/36/10/9783498063610.jpg'), + ('3423122080', 'Die Falschmünzer / Tagebuch Der Falschmünzer: Roman', 'https://images.isbndb.com/covers/20/85/9783423122085.jpg'), + ('3548252443', 'Chocolat', 'https://images.isbndb.com/covers/24/45/9783548252445.jpg'), + ('3404242327', 'Nach Dem Großen Feuer', 'https://images.isbndb.com/covers/23/20/9783404242320.jpg'), + ('3746680174', 'Der Spion Gottes: Kurt Gerstein - Ein SS-Offizier Im Widerstand?', 'https://images.isbndb.com/covers/01/70/9783746680170.jpg'), + ('3596215226', 'Schachnovelle', 'https://images.isbndb.com/covers/52/25/9783596215225.jpg'), + ('3518379089', 'Die Abschiede (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/90/80/9783518379080.jpg'), + ('3518373080', 'Die Verlorenen Spuren', 'https://images.isbndb.com/covers/30/88/9783518373088.jpg'), + ('340460024X', 'Hallo, Hier Bin Ich!: Meine Vergnüglichen Abenteuer Auf Der Neunmonatigen Reise Bis Zur Geburt - Für Eltern Und Solche, Die Es Werden Wollen', 'https://images.isbndb.com/covers/02/43/9783404600243.jpg'), + ('0748702784', 'A Midsummer Night''s Dream: Original Text & Modern Verse (Shakespeare Made Easy Series)', 'https://images.isbndb.com/covers/27/87/9780748702787.jpg'), + ('3257018959', 'Die Geschichte Von Herrn Sommer', 'https://images.isbndb.com/covers/89/50/9783257018950.jpg'), + ('0553240633', 'The Right Stuff', 'https://images.isbndb.com/covers/06/34/9780553240634.jpg'), + ('0786817089', 'The Arctic Incident (Artemis Fowl, Book 2)', 'https://images.isbndb.com/covers/70/85/9780786817085.jpg'), + ('0385334923', 'Tulip Fever', 'https://images.isbndb.com/covers/49/21/9780385334921.jpg'), + ('0345445856', 'Milk Glass Moon: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/58/58/9780345445858.jpg'), + ('0743437136', 'Wild Orchids', 'https://images.isbndb.com/covers/71/34/9780743437134.jpg'), + ('344272872X', 'Lokalausgabe, Sonderausgabe', 'https://images.isbndb.com/covers/87/25/9783442728725.jpg'), + ('0684841215', 'Something Happened', 'https://images.isbndb.com/covers/12/12/9780684841212.jpg'), + ('1587242583', 'Fall On Your Knees', 'https://images.isbndb.com/covers/25/88/9781587242588.jpg'), + ('3746616360', 'Das Puppenkind.', 'https://images.isbndb.com/covers/63/60/9783746616360.jpg'), + ('0140026177', 'Penguin Book Of English Short Stories', 'https://images.isbndb.com/covers/61/77/9780140026177.jpg'), + ('0449221490', 'L Is For Lawless (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/14/95/9780449221495.jpg'), + ('067943335X', 'The House On Mango Street', 'https://images.isbndb.com/covers/33/54/9780679433354.jpg'), + ('0670033332', 'Olivia Joules And The Overactive Imagination', 'https://images.isbndb.com/covers/33/31/9780670033331.jpg'), + ('0060520515', 'The Other Side Of The Story: A Novel', 'https://images.isbndb.com/covers/05/19/9780060520519.jpg'), + ('042513699X', 'Turtle Moon', 'https://images.isbndb.com/covers/69/97/9780425136997.jpg'), + ('0679407715', 'Saint Maybe (Random House Large Print)', 'https://images.isbndb.com/covers/77/13/9780679407713.jpg'), + ('0747273200', 'Sisteria', 'https://images.isbndb.com/covers/32/02/9780747273202.jpg'), + ('015602943X', 'The Time Traveler''s Wife', 'https://images.isbndb.com/covers/94/38/9780156029438.jpg'), + ('037570485X', 'The Inn At Lake Devine', 'https://images.isbndb.com/covers/48/57/9780375704857.jpg'), + ('0671686151', 'Then She Found Me', 'https://images.isbndb.com/covers/61/54/9780671686154.jpg'), + ('0345455916', 'The Probable Future (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/59/18/9780345455918.jpg'), + ('1931081743', 'Colonel Rutherford''s Colt', 'https://images.isbndb.com/covers/17/40/9781931081740.jpg'), + ('1932047247', 'Government Project', 'https://images.isbndb.com/covers/72/40/9781932047240.jpg'), + ('1930586787', 'The Plunge', 'https://images.isbndb.com/covers/67/89/9781930586789.jpg'), + ('3401045660', 'Der Kleine Lord', 'https://images.isbndb.com/covers/56/65/9783401045665.jpg'), + ('0156028352', 'The Color Purple', 'https://images.isbndb.com/covers/83/56/9780156028356.jpg'), + ('0679733485', 'The Marriage Of Cadmus And Harmony', 'https://images.isbndb.com/covers/34/85/9780679733485.jpg'), + ('0732269199', 'Nancy Wake Biography', 'https://images.isbndb.com/covers/91/97/9780732269197.jpg'), + ('0671877046', 'Glory Road', 'https://images.isbndb.com/covers/70/40/9780671877040.jpg'), + ('0380761599', 'Genesis Revisited', 'https://images.isbndb.com/covers/15/93/9780380761593.jpg'), + ('0446609900', '26 Nights: A Sexual Adventure (Letters To Penthouse)', 'https://images.isbndb.com/covers/99/06/9780446609906.jpg'), + ('0553281437', 'Rose Of The Prophet : Volume III - The Prophet Of Akhran', 'https://images.isbndb.com/covers/14/39/9780553281439.jpg'), + ('0553279025', 'The Paladin Of The Night (Rose Of The Prophet, Book. 2)', 'https://images.isbndb.com/covers/90/23/9780553279023.jpg'), + ('0886773741', 'Tailchaser''s Song', 'https://images.isbndb.com/covers/37/48/9780886773748.jpg'), + ('0609608924', 'To Be Someone: A Novel', 'https://images.isbndb.com/covers/89/20/9780609608920.jpg'), + ('0812549007', 'Darkangel', 'https://images.isbndb.com/covers/90/03/9780812549003.jpg'), + ('0553276387', 'The Will Of The Wanderer (Rose Of The Prophet, Vol. 1)', 'https://images.isbndb.com/covers/63/81/9780553276381.jpg'), + ('0886771625', 'Tailchaser''s Song', 'https://images.isbndb.com/covers/16/21/9780886771621.jpg'), + ('0440223547', 'To Dream In The City Of Sorrows (Babylon 5, Book 9)', 'https://images.isbndb.com/covers/35/42/9780440223542.jpg'), + ('0140186484', 'Twenty Love Poems And A Song Of Despair: Dual Language Edition (Classic, 20th-Century, Penguin) (Spanish And English Edition)', 'https://images.isbndb.com/covers/64/82/9780140186482.jpg'), + ('059041691X', '101 Dinosaur Jokes', 'https://images.isbndb.com/covers/69/17/9780590416917.jpg'), + ('0590457403', 'Emergency Room (Point)', 'https://images.isbndb.com/covers/74/08/9780590457408.jpg'), + ('0448095041', 'The Mystery At Lilac Inn (Nancy Drew, Book 4)', 'https://images.isbndb.com/covers/50/42/9780448095042.jpg'), + ('044809505X', 'The Secret Of Shadow Ranch (Nancy Drew, No. 5)', 'https://images.isbndb.com/covers/50/59/9780448095059.jpg'), + ('0380728508', 'The Kid Who Got Zapped Through Time (An Avon Camelot Book)', 'https://images.isbndb.com/covers/85/03/9780380728503.jpg'), + ('0312916450', 'The Med', 'https://images.isbndb.com/covers/64/59/9780312916459.jpg'), + ('0804106576', 'You Can''t Count A Billion Dollars: & Other Little-Known Facts About Money', 'https://images.isbndb.com/covers/65/73/9780804106573.jpg'), + ('1886910529', 'Myrtle Of Willendorf', 'https://images.isbndb.com/covers/05/22/9781886910522.jpg'), + ('0140818030', 'Wide Sargasso Sea (Penguin Student Editions)', 'https://images.isbndb.com/covers/80/31/9780140818031.jpg'), + ('0061032042', 'Rebecca''s Tale', 'https://images.isbndb.com/covers/20/42/9780061032042.jpg'), + ('156647101X', 'McDougal''s Honolulu Mysteries: Case Studies From The Life Of A Honolulu Detective', 'https://images.isbndb.com/covers/10/15/9781566471015.jpg'), + ('0684825414', 'The MULCHING OF AMERICA: A Novel', 'https://images.isbndb.com/covers/54/10/9780684825410.jpg'), + ('0385475462', 'Rainbow People Of God, The', 'https://images.isbndb.com/covers/54/64/9780385475464.jpg'), + ('0515126098', 'Field Of Thirteen', 'https://images.isbndb.com/covers/60/99/9780515126099.jpg'), + ('1888608501', 'Missouri Gardener''s Guide', 'https://images.isbndb.com/covers/85/02/9781888608502.jpg'), + ('0345387651', 'The Cider House Rules', 'https://images.isbndb.com/covers/76/53/9780345387653.jpg'), + ('0345384563', 'A History Of God: The 4,000-Year Quest Of Judaism, Christianity And Islam', 'https://images.isbndb.com/covers/45/60/9780345384560.jpg'), + ('0590440152', 'The Mitten: A Ukrainian Folktale', 'https://images.isbndb.com/covers/01/58/9780590440158.jpg'), + ('0553287893', 'Rendezvous With Rama', 'https://images.isbndb.com/covers/78/99/9780553287899.jpg'), + ('0451628640', 'Trouble The Water: 250 Years Of African American Poetry', 'https://images.isbndb.com/covers/86/40/9780451628640.jpg'), + ('1566891051', 'Madame Deluxe (National Poetry Series)', 'https://images.isbndb.com/covers/10/59/9781566891059.jpg'), + ('0883964201', '42 Gifts I''d Like To Give To You: A Guidebook Of Wonderful Thoughts To Carry Along On Your Journey Through Life (Self-Help)', 'https://images.isbndb.com/covers/42/00/9780883964200.jpg'), + ('0883964716', 'The Joys And Challenges Of Motherhood (Blue Mountain Arts Collection)', 'https://images.isbndb.com/covers/47/12/9780883964712.jpg'), + ('1881273628', 'The Five Love Languages Gift Edition: How To Express Heartfelt Commitment To Your Mate', 'https://images.isbndb.com/covers/36/22/9781881273622.jpg'), + ('0785266097', 'Money Matters: Answers To Your Financial Questions', 'https://images.isbndb.com/covers/60/99/9780785266099.jpg'), + ('1883013852', 'Yearbook 2000 People Weekly', 'https://images.isbndb.com/covers/38/51/9781883013851.jpg'), + ('1883013860', 'Entertainment Weekly Yearbook 2000', 'https://images.isbndb.com/covers/38/68/9781883013868.jpg'), + ('0425067866', 'The Man In The Brown Suit (Agatha Christie Mysteries Collection)', 'https://images.isbndb.com/covers/78/64/9780425067864.jpg'), + ('0812092007', 'American Pit Bull And Staffordshire Terriers: Everything About Purchase, Care, Nutrition, Breeding, Behavior, And Training (A Complet)', 'https://images.isbndb.com/covers/20/04/9780812092004.jpg'), + ('1586602241', 'The Everyday Guide To Prayer', 'https://images.isbndb.com/covers/22/46/9781586602246.jpg'), + ('0736905324', 'The Power Of A Praying® Husband', 'https://images.isbndb.com/covers/53/29/9780736905329.jpg'), + ('0393047229', 'On The Bus With Rosa Parks: Poems', 'https://images.isbndb.com/covers/72/26/9780393047226.jpg'), + ('0061073628', 'A Night Without Armor : Poems', 'https://images.isbndb.com/covers/36/25/9780061073625.jpg'), + ('0688140475', 'The Selected Poems Of Nikki Giovanni: 1968-1995', 'https://images.isbndb.com/covers/04/72/9780688140472.jpg'), + ('0609808400', 'Bum Rush The Page: A Def Poetry Jam', 'https://images.isbndb.com/covers/84/05/9780609808405.jpg'), + ('0743200330', 'The Best American Poetry 2000', 'https://images.isbndb.com/covers/03/32/9780743200332.jpg'), + ('1931402213', 'Phantom Feast', 'https://images.isbndb.com/covers/22/17/9781931402217.jpg'), + ('0966723724', 'Simplicity, Poetry And Photography', 'https://images.isbndb.com/covers/37/24/9780966723724.jpg'), + ('0875730701', 'The Meat-Lover''s Vegetarian Cookbook', 'https://images.isbndb.com/covers/07/07/9780875730707.jpg'), + ('0972208607', 'Why The Weight? Dare To Be Great!', 'https://images.isbndb.com/covers/86/04/9780972208604.jpg'), + ('1884800394', 'Centuries', 'https://images.isbndb.com/covers/03/99/9781884800399.jpg'), + ('0971971501', 'Around In Circles', 'https://images.isbndb.com/covers/15/09/9780971971509.jpg'), + ('0397320426', 'Seth And Me And Rebel Make Three', 'https://images.isbndb.com/covers/04/24/9780397320424.jpg'), + ('0553580531', 'Gates Of Fire: An Epic Novel Of The Battle Of Thermopylae', 'https://images.isbndb.com/covers/05/32/9780553580532.jpg'), + ('042517364X', 'Clearwater', 'https://images.isbndb.com/covers/36/40/9780425173640.jpg'), + ('0451160193', 'Fools Die', 'https://images.isbndb.com/covers/01/95/9780451160195.jpg'), + ('0679402292', 'Hotel Pastis: A Novel Of Provence', 'https://images.isbndb.com/covers/22/99/9780679402299.jpg'), + ('0811801020', 'The Twelve Cats Of Christmas', 'https://images.isbndb.com/covers/10/27/9780811801027.jpg'), + ('0679433023', 'Violin', 'https://images.isbndb.com/covers/30/26/9780679433026.jpg'), + ('0679446672', 'Nosferatu', 'https://images.isbndb.com/covers/66/75/9780679446675.jpg'), + ('0553212036', 'Little Princess, A', 'https://images.isbndb.com/covers/20/37/9780553212037.jpg'), + ('0679463321', 'Killing Time', 'https://images.isbndb.com/covers/33/20/9780679463320.jpg'), + ('0679444815', 'Timeline', 'https://images.isbndb.com/covers/48/17/9780679444817.jpg'), + ('0394589424', 'Rising Sun', 'https://images.isbndb.com/covers/94/28/9780394589428.jpg'), + ('0465072836', 'The Pony Fish''s Glow: And Other Clues To Plan And Purpose In Nature', 'https://images.isbndb.com/covers/28/35/9780465072835.jpg'), + ('0486268705', 'Dubliners (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/05/9780486268705.jpg'), + ('0486275477', 'The Open Boat And Other Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/54/75/9780486275475.jpg'), + ('0399145796', 'All Tomorrow''s Parties', 'https://images.isbndb.com/covers/57/97/9780399145797.jpg'), + ('0140714545', 'Hamlet (The Pelican Shakespeare)', 'https://images.isbndb.com/covers/45/48/9780140714548.jpg'), + ('0072546409', 'American Education With PowerWeb', 'https://images.isbndb.com/covers/64/08/9780072546408.jpg'), + ('0060921145', 'Animal Dreams', 'https://images.isbndb.com/covers/11/49/9780060921149.jpg'), + ('1841763101', 'Bussaco 1810: Wellington Defeats Napoleon''s Marshals (Campaign)', 'https://images.isbndb.com/covers/31/01/9781841763101.jpg'), + ('1855329816', 'Portuguese Army Of The Napoleonic Wars (2) : 1806-1815 (Men-At-Arms Series, 346)', 'https://images.isbndb.com/covers/98/12/9781855329812.jpg'), + ('184176311X', 'Fuentes De Oñoro 1811: Wellington''s Liberation Of Portugal (Campaign)', 'https://images.isbndb.com/covers/31/18/9781841763118.jpg'), + ('085045512X', 'Napoleon''s Line Infantry (Men At Arms Series, 141)', 'https://images.isbndb.com/covers/51/20/9780850455120.jpg'), + ('0007137508', 'Wellington: The Iron Duke', 'https://images.isbndb.com/covers/75/03/9780007137503.jpg'), + ('037540290X', 'Widow For One Year', 'https://images.isbndb.com/covers/29/06/9780375402906.jpg'), + ('0553241729', 'Nathaniel', 'https://images.isbndb.com/covers/17/23/9780553241723.jpg'), + ('0517883864', 'All I Really Need To Know I Learned From Watching Star Trek', 'https://images.isbndb.com/covers/38/60/9780517883860.jpg'), + ('0446313939', 'Fear And Loathing In Las Vegas: A Savage Journey To The Heart Of The American Dream', 'https://images.isbndb.com/covers/39/33/9780446313933.jpg'), + ('0671680781', 'Risk', 'https://images.isbndb.com/covers/07/87/9780671680787.jpg'), + ('1592869629', 'The Snakeman Cometh', 'https://images.isbndb.com/covers/96/26/9781592869626.jpg'), + ('0800782194', 'The Hiding Place', 'https://images.isbndb.com/covers/21/91/9780800782191.jpg'), + ('0821761196', 'Hannah''s Heart (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/11/99/9780821761199.jpg'), + ('0061084719', 'Once Upon A Pirate (Harper Monogram)', 'https://images.isbndb.com/covers/47/13/9780061084713.jpg'), + ('1551661594', 'House Of Destiny', 'https://images.isbndb.com/covers/15/99/9781551661599.jpg'), + ('0515120340', 'Heartbound', 'https://images.isbndb.com/covers/03/49/9780515120349.jpg'), + ('0821761730', 'Annie''s Rainbow', 'https://images.isbndb.com/covers/17/31/9780821761731.jpg'), + ('0812507428', 'People Of The Earth (The First North Americans Series, Book 3)', 'https://images.isbndb.com/covers/74/23/9780812507423.jpg'), + ('0425121259', 'The Servants Of Twilight', 'https://images.isbndb.com/covers/12/52/9780425121252.jpg'), + ('0061030430', 'Long Time No See', 'https://images.isbndb.com/covers/04/37/9780061030437.jpg'), + ('0840757239', 'Three Steps Forward Two Steps Back: Persevering Through Pressure', 'https://images.isbndb.com/covers/72/34/9780840757234.jpg'), + ('0553138014', 'The Formula', 'https://images.isbndb.com/covers/80/16/9780553138016.jpg'), + ('1586481614', 'Gracefully Insane: Life And Death Inside America''s Premier Mental Hospital', 'https://images.isbndb.com/covers/16/12/9781586481612.jpg'), + ('0553572210', 'Silent Treatment', 'https://images.isbndb.com/covers/22/16/9780553572216.jpg'), + ('0553288342', 'Sleepwalk', 'https://images.isbndb.com/covers/83/46/9780553288346.jpg'), + ('1575668475', 'Uncle Max', 'https://images.isbndb.com/covers/84/75/9781575668475.jpg'), + ('0743467523', 'Dreamcatcher', 'https://images.isbndb.com/covers/75/20/9780743467520.jpg'), + ('0312950489', 'The Black Echo (Harry Bosch)', 'https://images.isbndb.com/covers/04/84/9780312950484.jpg'), + ('014012389X', 'Love In The Time Of Cholera', 'https://images.isbndb.com/covers/38/90/9780140123890.jpg'), + ('0804106274', 'To Hear A Nightingale', 'https://images.isbndb.com/covers/62/76/9780804106276.jpg'), + ('038548755X', 'Enterprise One To One', 'https://images.isbndb.com/covers/75/59/9780385487559.jpg'), + ('0446353205', 'The Charm School', 'https://images.isbndb.com/covers/32/05/9780446353205.jpg'), + ('0553208225', 'The Glitter Dome', 'https://images.isbndb.com/covers/82/21/9780553208221.jpg'), + ('0770103936', 'Sunstrike', 'https://images.isbndb.com/covers/39/34/9780770103934.jpg'), + ('0373970021', 'Legacy Of Passion', 'https://images.isbndb.com/covers/00/25/9780373970025.jpg'), + ('042516019X', 'Masquerade', 'https://images.isbndb.com/covers/01/90/9780425160190.jpg'), + ('0446357405', 'The Other Side Of Midnight', 'https://images.isbndb.com/covers/74/01/9780446357401.jpg'), + ('0340223030', 'Lords Of Misrule Pb (The House Of Stewart Trilogy)', 'https://images.isbndb.com/covers/30/31/9780340223031.jpg'), + ('067180913X', 'A Fire In The Blood (Pocket Kangaroo Edition)', 'https://images.isbndb.com/covers/91/33/9780671809133.jpg'), + ('067167269X', 'TOO DEEP FOR TEARS', 'https://images.isbndb.com/covers/26/90/9780671672690.jpg'), + ('0722150954', 'An Unsuitable Job For A Women', 'https://images.isbndb.com/covers/09/55/9780722150955.jpg'), + ('1552780724', 'Just A Minute More: Glimpses Of Our Great Canadian Heritage', 'https://images.isbndb.com/covers/07/25/9781552780725.jpg'), + ('0440223822', 'Outrage: The Five Reasons Why O.J. Simpson Got Away With Murder', 'https://images.isbndb.com/covers/38/25/9780440223825.jpg'), + ('042509586X', 'Callahan''s Cross Salon', 'https://images.isbndb.com/covers/58/67/9780425095867.jpg'), + ('0441090729', 'Callahan''s Lady', 'https://images.isbndb.com/covers/07/23/9780441090723.jpg'), + ('0425097226', 'Time Travelers Strictly Cash', 'https://images.isbndb.com/covers/72/29/9780425097229.jpg'), + ('0446675962', 'Business @ The Speed Of Thought: Succeeding In The Digital Economy', 'https://images.isbndb.com/covers/59/63/9780446675963.jpg'), + ('0312867395', 'The Best Of Crank!', 'https://images.isbndb.com/covers/73/93/9780312867393.jpg'), + ('0345300807', 'Castle Of Wizardry (The Belgariad, Book 4)', 'https://images.isbndb.com/covers/08/05/9780345300805.jpg'), + ('0446517984', 'Old Songs In A New Cafe: Selected Essays', 'https://images.isbndb.com/covers/79/80/9780446517980.jpg'), + ('006464801X', 'Mary Kay', 'https://images.isbndb.com/covers/80/11/9780064648011.jpg'), + ('0373834284', 'Rebellion (The Macgregors)', 'https://images.isbndb.com/covers/42/80/9780373834280.jpg'), + ('0440224853', 'The Ghost', 'https://images.isbndb.com/covers/48/53/9780440224853.jpg'), + ('0345404114', 'Sleepers', 'https://images.isbndb.com/covers/41/14/9780345404114.jpg'), + ('074723003X', 'Sunrise In The West (Brothers Of Gwynedd, Book 1)', 'https://images.isbndb.com/covers/00/38/9780747230038.jpg'), + ('0747230293', 'The Hounds Of Sunset (The Brothers Of Gwynedd, 3)', 'https://images.isbndb.com/covers/02/98/9780747230298.jpg'), + ('0553579193', 'The Black Raven (Dragon Mage, Book 2)', 'https://images.isbndb.com/covers/91/92/9780553579192.jpg'), + ('0471407380', 'Enigma: The Battle For The Code', 'https://images.isbndb.com/covers/73/86/9780471407386.jpg'), + ('0060984422', 'Consuming Passions: A Food-Obsessed Life', 'https://images.isbndb.com/covers/44/27/9780060984427.jpg'), + ('0553567152', 'Don''t Die, My Love', 'https://images.isbndb.com/covers/71/51/9780553567151.jpg'), + ('0451211014', 'The Last Promise', 'https://images.isbndb.com/covers/10/19/9780451211019.jpg'), + ('0553283502', 'Time To Let Go (A Bantam Starfire Book)', 'https://images.isbndb.com/covers/35/01/9780553283501.jpg'), + ('0440219817', 'Driver''s Ed', 'https://images.isbndb.com/covers/98/11/9780440219811.jpg'), + ('0553570870', 'Telling Christina Goodbye', 'https://images.isbndb.com/covers/08/78/9780553570878.jpg'), + ('0786813709', 'Fab Five: Don''t Make A Scene, Mum - Book #1', 'https://images.isbndb.com/covers/37/04/9780786813704.jpg'), + ('0446361739', 'Slow Heat In Heaven', 'https://images.isbndb.com/covers/17/36/9780446361736.jpg'), + ('0141007338', 'About A Boy', 'https://images.isbndb.com/covers/73/35/9780141007335.jpg'), + ('0002261529', 'Temptation', 'https://images.isbndb.com/covers/15/24/9780002261524.jpg'), + ('0007110928', 'Billy', 'https://images.isbndb.com/covers/09/26/9780007110926.jpg'), + ('0375760393', 'The Botany Of Desire: A Plant''s-Eye View Of The World', 'https://images.isbndb.com/covers/03/96/9780375760396.jpg'), + ('0440467012', 'Otherwise Known As Sheila The Great', 'https://images.isbndb.com/covers/70/14/9780440467014.jpg'), + ('0425129586', 'And Then There Were None', 'https://images.isbndb.com/covers/95/86/9780425129586.jpg'), + ('0373168284', 'Big-City Bachelor (Harlequin American Romance, No. 828)', 'https://images.isbndb.com/covers/82/86/9780373168286.jpg'), + ('0679745130', 'The Vintage Book Of Contemporary American Short Stories', 'https://images.isbndb.com/covers/51/36/9780679745136.jpg'), + ('0375502815', 'Normal Girl: A Novel', 'https://images.isbndb.com/covers/28/11/9780375502811.jpg'), + ('0590483803', 'The Runner', 'https://images.isbndb.com/covers/38/03/9780590483803.jpg'), + ('0671027662', 'Coast Road: A Novel', 'https://images.isbndb.com/covers/76/67/9780671027667.jpg'), + ('1580081231', '2000 What Color Is Your Parachute', 'https://images.isbndb.com/covers/12/38/9781580081238.jpg'), + ('0452279089', 'The Womanly Art Of Breastfeeding: Sixth Revised Edition', 'https://images.isbndb.com/covers/90/87/9780452279087.jpg'), + ('0316779075', 'The Birth Book: Everything You Need To Know To Have A Safe And Satisfying Birth (Sears Parenting Library)', 'https://images.isbndb.com/covers/90/74/9780316779074.jpg'), + ('0399523308', 'The Girlfriends'' Guide To Surviving The First Year Of Motherhood', 'https://images.isbndb.com/covers/33/04/9780399523304.jpg'), + ('020162690X', 'Touchpoints: Your Child''s Emotional And Behavioral Development, Birth To 3 -- The Essential Reference For The Early Years', 'https://images.isbndb.com/covers/69/02/9780201626902.jpg'), + ('0671021761', 'The Girlfriends'' Guide To Pregnancy', 'https://images.isbndb.com/covers/17/64/9780671021764.jpg'), + ('0915473569', 'Planning Your Pregnancy And Birth, Third Edition', 'https://images.isbndb.com/covers/35/64/9780915473564.jpg'), + ('0553580744', 'The Complete Book Of Breastfeeding: Revised Edition', 'https://images.isbndb.com/covers/07/47/9780553580747.jpg'), + ('0451171071', 'The New American Dictionary Of Baby Names', 'https://images.isbndb.com/covers/10/78/9780451171078.jpg'), + ('0671620495', 'Women Who Love Too Much', 'https://images.isbndb.com/covers/04/93/9780671620493.jpg'), + ('0688151078', 'Desire Lines: A Novel', 'https://images.isbndb.com/covers/10/72/9780688151072.jpg'), + ('042513024X', 'The A. B. C. Murders (A Hercule Poirot Novel)', 'https://images.isbndb.com/covers/02/47/9780425130247.jpg'), + ('1558321160', 'Nursing Mother, Working Mother: The Essential Guide For Breastfeeding And Staying Close To Your Baby After You Return To Work', 'https://images.isbndb.com/covers/11/68/9781558321168.jpg'), + ('0446530239', 'If Looks Could Kill', 'https://images.isbndb.com/covers/02/31/9780446530231.jpg'), + ('3492256341', 'Im Interesse Der Nation: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/63/46/9783492256346.jpg'), + ('0805067140', 'I Thought My Father Was God: And Other True Tales From NPR''s National Story Project', 'https://images.isbndb.com/covers/71/49/9780805067149.jpg'), + ('3518383973', 'Eva Luna: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/39/71/9783518383971.jpg'), + ('0552133256', 'Strata', 'https://images.isbndb.com/covers/32/58/9780552133258.jpg'), + ('227724113X', 'La Prophétie Des Andes', 'https://images.isbndb.com/covers/11/33/9782277241133.jpg'), + ('0156011603', 'Under The Skin: A Novel', 'https://images.isbndb.com/covers/16/00/9780156011600.jpg'), + ('0345335058', 'ORDINARY PEOPLE', 'https://images.isbndb.com/covers/50/50/9780345335050.jpg'), + ('0671742515', 'The Long Dark Tea-Time Of The Soul', 'https://images.isbndb.com/covers/25/15/9780671742515.jpg'), + ('190288132X', 'Adiel', 'https://images.isbndb.com/covers/13/24/9781902881324.jpg'), + ('0446357200', 'Name Of The Rose', 'https://images.isbndb.com/covers/72/03/9780446357203.jpg'), + ('0451526643', 'The Beautiful And Damned (Signet Classics)', 'https://images.isbndb.com/covers/66/49/9780451526649.jpg'), + ('0316198951', 'Jim The Boy : A Novel', 'https://images.isbndb.com/covers/89/50/9780316198950.jpg'), + ('0312244991', 'Wrong Information Is Being Given Out At Princeton: The Chronicle Of One Of The Strangest Stories Ever To Be Rumoured About Around New York', 'https://images.isbndb.com/covers/49/96/9780312244996.jpg'), + ('0375706143', 'A Rich Full Death', 'https://images.isbndb.com/covers/61/41/9780375706141.jpg'), + ('0953327523', 'Nalda Said', 'https://images.isbndb.com/covers/75/22/9780953327522.jpg'), + ('0451149173', 'Code Ezra (Signet)', 'https://images.isbndb.com/covers/91/76/9780451149176.jpg'), + ('0140065504', 'Water Music (Contemporary American Fiction)', 'https://images.isbndb.com/covers/55/03/9780140065503.jpg'), + ('0679759328', 'Hotel Du Lac', 'https://images.isbndb.com/covers/93/24/9780679759324.jpg'), + ('0440447674', 'A Little Princess', 'https://images.isbndb.com/covers/76/72/9780440447672.jpg'), + ('0345427637', 'The Angel Of Darkness', 'https://images.isbndb.com/covers/76/32/9780345427632.jpg'), + ('055321263X', 'The Woman In White (Bantam Classics)', 'https://images.isbndb.com/covers/26/31/9780553212631.jpg'), + ('0449213765', 'Lady Oracle', 'https://images.isbndb.com/covers/37/66/9780449213766.jpg'), + ('0446314986', 'The Edible Woman', 'https://images.isbndb.com/covers/49/85/9780446314985.jpg'), + ('0553213105', 'Pride And Prejudice (Bantam Classics)', 'https://images.isbndb.com/covers/31/02/9780553213102.jpg'), + ('0786703229', 'The Dressmaker', 'https://images.isbndb.com/covers/32/27/9780786703227.jpg'), + ('0446674168', 'Lives Of The Monster Dogs', 'https://images.isbndb.com/covers/41/64/9780446674164.jpg'), + ('0671602543', 'Deans December', 'https://images.isbndb.com/covers/25/43/9780671602543.jpg'), + ('0451199979', 'Devilish', 'https://images.isbndb.com/covers/99/73/9780451199973.jpg'), + ('0451521072', 'Andersen''s Fairy Tales (Signet Classics)', 'https://images.isbndb.com/covers/10/71/9780451521071.jpg'), + ('0446675369', 'Bless Me, Ultima', 'https://images.isbndb.com/covers/53/69/9780446675369.jpg'), + ('0440466091', 'An Old-Fashioned Girl', 'https://images.isbndb.com/covers/60/93/9780440466093.jpg'), + ('0440416027', 'Skellig', 'https://images.isbndb.com/covers/60/29/9780440416029.jpg'), + ('0380012057', 'Gabriela, Clove And Cinnamon', 'https://images.isbndb.com/covers/20/53/9780380012053.jpg'), + ('0385474547', 'Things Fall Apart', 'https://images.isbndb.com/covers/45/42/9780385474542.jpg'), + ('1573220531', 'There Are No Accidents: Synchronicity And The Stories Of Our Lives', 'https://images.isbndb.com/covers/05/38/9781573220538.jpg'), + ('0671020293', 'Butterfly: First Novel In The Orphans Miniseries (Book 1)', 'https://images.isbndb.com/covers/02/93/9780671020293.jpg'), + ('0595259677', 'THE TWENTIETH CENTURY COLLECTION: Eight Extraordinary One-Act Plays By Playwright', 'https://images.isbndb.com/covers/96/70/9780595259670.jpg'), + ('0860074382', '84, Charing Cross Road', 'https://images.isbndb.com/covers/43/80/9780860074380.jpg'), + ('0140386084', 'Allie''s Crocodile (Young Puffin Confident Readers)', 'https://images.isbndb.com/covers/60/80/9780140386080.jpg'), + ('0330267388', 'Life, The Universe And Everything (Hitch-Hikers Guide To The Galaxy, No. 3)', 'https://images.isbndb.com/covers/73/80/9780330267380.jpg'), + ('1896764096', 'The Girl Who Hated Books', 'https://images.isbndb.com/covers/40/92/9781896764092.jpg'), + ('0679426140', 'Welcome To The World, Baby Girl!: A Novel', 'https://images.isbndb.com/covers/61/41/9780679426141.jpg'), + ('0671042572', 'Jewel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/25/78/9780671042578.jpg'), + ('0812990323', 'Starting And Running A Profitable Investment Club', 'https://images.isbndb.com/covers/03/24/9780812990324.jpg'), + ('0930452933', 'Into The Woods', 'https://images.isbndb.com/covers/29/33/9780930452933.jpg'), + ('081269421X', 'The Mindful Traveler: A Guide To Journaling And Transformative Travel', 'https://images.isbndb.com/covers/42/15/9780812694215.jpg'), + ('0385487398', 'Welcome To My Country', 'https://images.isbndb.com/covers/73/99/9780385487399.jpg'), + ('0609608096', 'The Relationship Cure: A Five-Step Guide For Building Better Connections With Family, Friends, And Lovers', 'https://images.isbndb.com/covers/80/98/9780609608098.jpg'), + ('0312141475', 'Surfing The Himalayas: A Spiritual Adventure', 'https://images.isbndb.com/covers/14/79/9780312141479.jpg'), + ('0743420373', 'The Millionaire Next Door: The Surprising Secrets Of America''s Wealthy', 'https://images.isbndb.com/covers/03/72/9780743420372.jpg'), + ('0099287927', 'Monkeys', 'https://images.isbndb.com/covers/79/26/9780099287926.jpg'), + ('1558184023', 'The Soul Of Your Pet: Evidence For The Survival Of Animals After Death', 'https://images.isbndb.com/covers/40/22/9781558184022.jpg'), + ('0684869748', 'Hoochie Mama (Mad Dog Rodriguez Trilogy)', 'https://images.isbndb.com/covers/97/42/9780684869742.jpg'), + ('3442448794', 'Traumreisende: Roman', 'https://images.isbndb.com/covers/87/91/9783442448791.jpg'), + ('0689832923', 'What Do You Know About Manners?', 'https://images.isbndb.com/covers/29/25/9780689832925.jpg'), + ('0590640860', 'National Audubon Society First Field Guide: Night Sky (Audubon Guides)', 'https://images.isbndb.com/covers/08/62/9780590640862.jpg'), + ('0060937688', 'Planet Of The Apes: (Jr Novel)', 'https://images.isbndb.com/covers/76/83/9780060937683.jpg'), + ('0440219760', 'The Transall Saga', 'https://images.isbndb.com/covers/97/67/9780440219767.jpg'), + ('0553371843', 'Caring For Your Baby And Young Children (The American Academy Of Pediatrics)', 'https://images.isbndb.com/covers/18/40/9780553371840.jpg'), + ('0916773191', 'Getting Your Child To Sleep-- And Back To Sleep: Tips For Parents Of Infants, Toddlers And Preschoolers (Family & Childcare)', 'https://images.isbndb.com/covers/31/99/9780916773199.jpg'), + ('0679736662', 'The Three Stigmata Of Palmer Eldritch', 'https://images.isbndb.com/covers/66/60/9780679736660.jpg'), + ('0451209907', 'Quentins', 'https://images.isbndb.com/covers/99/00/9780451209900.jpg'), + ('0312954166', 'Indictment, The', 'https://images.isbndb.com/covers/41/61/9780312954161.jpg'), + ('0449221512', 'I Is For Innocent (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/15/18/9780449221518.jpg'), + ('0451409647', 'The Final Faberge', 'https://images.isbndb.com/covers/96/45/9780451409645.jpg'), + ('0375707093', 'The Many Aspects Of Mobile Home Living: A Novel', 'https://images.isbndb.com/covers/70/94/9780375707094.jpg'), + ('0399149783', 'Monkeewrench', 'https://images.isbndb.com/covers/97/88/9780399149788.jpg'), + ('0525946284', 'Jackdaws', 'https://images.isbndb.com/covers/62/81/9780525946281.jpg'), + ('0385318073', 'Evening Class', 'https://images.isbndb.com/covers/80/75/9780385318075.jpg'), + ('0061013315', 'The Eleventh Commandment: A Novel', 'https://images.isbndb.com/covers/33/17/9780061013317.jpg'), + ('1400031362', 'Morality For Beautiful Girls (No. 1 Ladies Detective Agency, Book 3)', 'https://images.isbndb.com/covers/13/68/9781400031368.jpg'), + ('0804107386', 'New Orleans Mourning (Skip Langdon Novels)', 'https://images.isbndb.com/covers/73/89/9780804107389.jpg'), + ('0140435530', 'Under The Greenwood Tree (Penguin Classics)', 'https://images.isbndb.com/covers/55/35/9780140435535.jpg'), + ('007212170X', 'Harley Hahn''s Internet & Web Yellow Pages, Millennium Edition', 'https://images.isbndb.com/covers/17/04/9780072121704.jpg'), + ('0307120848', 'Welcome To Little Golden Book Land (Big Golden Book)', 'https://images.isbndb.com/covers/08/47/9780307120847.jpg'), + ('0689846088', 'A Charlie Brown Christmas', 'https://images.isbndb.com/covers/60/83/9780689846083.jpg'), + ('0689842708', 'Silver Thread', 'https://images.isbndb.com/covers/27/02/9780689842702.jpg'), + ('0786846461', 'Lizzie McGuire: The Orchids And Gumbo Poker Club', 'https://images.isbndb.com/covers/64/67/9780786846467.jpg'), + ('0671038311', 'Chomps, Flea, And Gray Cat (That''s Me!)', 'https://images.isbndb.com/covers/83/11/9780671038311.jpg'), + ('0140381538', 'Blue Sky, Butterfly (Puffin Novel)', 'https://images.isbndb.com/covers/15/35/9780140381535.jpg'), + ('0064472612', 'The Copper Elephant', 'https://images.isbndb.com/covers/26/16/9780064472616.jpg'), + ('0743400771', 'Violet Eyes', 'https://images.isbndb.com/covers/07/70/9780743400770.jpg'), + ('0849959306', 'The Pine Tree Parable', 'https://images.isbndb.com/covers/93/01/9780849959301.jpg'), + ('0449223612', 'N Is For Noose (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/36/11/9780449223611.jpg'), + ('0380818817', 'Red Angel: A Paul Devlin Mystery', 'https://images.isbndb.com/covers/88/15/9780380818815.jpg'), + ('0060959940', 'Black Heat: A Nina Halligan Novel', 'https://images.isbndb.com/covers/99/44/9780060959944.jpg'), + ('0425181863', 'Blue Plate Special (Sunny Childs Mysteries)', 'https://images.isbndb.com/covers/18/67/9780425181867.jpg'), + ('0439443857', 'Green Angel', 'https://images.isbndb.com/covers/38/52/9780439443852.jpg'), + ('0061031127', 'The Bronze Horseman', 'https://images.isbndb.com/covers/11/20/9780061031120.jpg'), + ('0824511743', 'The Gospel According To Mary', 'https://images.isbndb.com/covers/17/46/9780824511746.jpg'), + ('0875963021', 'Never Pay Retail: How To Save 20% To 80% On Everything You Buy', 'https://images.isbndb.com/covers/30/20/9780875963020.jpg'), + ('0399526005', 'In Our Humble Opinion: Car Talk''s Click And Clack Rant And Rave', 'https://images.isbndb.com/covers/60/08/9780399526008.jpg'), + ('044020352X', 'Anguished English: An Anthology Of Accidental Assaults Upon Our Language', 'https://images.isbndb.com/covers/35/20/9780440203520.jpg'), + ('0156012197', 'The Little Prince', 'https://images.isbndb.com/covers/21/95/9780156012195.jpg'), + ('0449221180', 'Native Tongue', 'https://images.isbndb.com/covers/11/81/9780449221181.jpg'), + ('3423703040', 'Die Drei ??? Und Der Giftige Gockel. (Ab 10 J.) (drei Fragezeichen). (Fiction, Poetry & Drama)', 'https://images.isbndb.com/covers/30/48/9783423703048.jpg'), + ('0425179206', 'Triplet Code', 'https://images.isbndb.com/covers/92/08/9780425179208.jpg'), + ('0553107755', 'Fierce Invalids Home From Hot Climates', 'https://images.isbndb.com/covers/77/53/9780553107753.jpg'), + ('1853260150', 'Picture Of Dorian Gray (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/01/55/9781853260155.jpg'), + ('1853262390', 'Orlando (Wordsworth Classics)', 'https://images.isbndb.com/covers/23/95/9781853262395.jpg'), + ('0140010211', 'Lord Arthur Savile''s Crime And Other Stories (Classic, Modern, Penguin)', 'https://images.isbndb.com/covers/02/13/9780140010213.jpg'), + ('0393314804', 'Trainspotting', 'https://images.isbndb.com/covers/48/09/9780393314809.jpg'), + ('1591291666', 'First The Raven', 'https://images.isbndb.com/covers/16/64/9781591291664.jpg'), + ('0843944331', 'Frontier Mayhem (Wilderness #25)', 'https://images.isbndb.com/covers/43/34/9780843944334.jpg'), + ('0440403782', 'Voices After Midnight', 'https://images.isbndb.com/covers/37/84/9780440403784.jpg'), + ('0312168748', 'James Herriot''s Animal Stories', 'https://images.isbndb.com/covers/87/42/9780312168742.jpg'), + ('0590897543', 'Blizzard (Med Center)', 'https://images.isbndb.com/covers/75/49/9780590897549.jpg'), + ('0425155463', 'Concise Guides: Instant Style For Writers (Concise Guides For The Next Century)', 'https://images.isbndb.com/covers/54/62/9780425155462.jpg'), + ('0312266065', 'Invisible Forms: A Guide To Literary Curiosities', 'https://images.isbndb.com/covers/60/66/9780312266066.jpg'), + ('0843952008', 'Fears Unnamed', 'https://images.isbndb.com/covers/20/01/9780843952001.jpg'), + ('0385261756', 'Crane''s Blue Book Of Stationery', 'https://images.isbndb.com/covers/17/53/9780385261753.jpg'), + ('0671014021', 'Icefire', 'https://images.isbndb.com/covers/40/25/9780671014025.jpg'), + ('0393093247', 'Passionate Attention; An Introduction To Literary Study', 'https://images.isbndb.com/covers/32/47/9780393093247.jpg'), + ('0812549325', 'The Black Cat', 'https://images.isbndb.com/covers/93/24/9780812549324.jpg'), + ('0439101360', 'Little Women (Scholastic Classics)', 'https://images.isbndb.com/covers/13/63/9780439101363.jpg'), + ('038073186X', 'Shutter Island', 'https://images.isbndb.com/covers/18/62/9780380731862.jpg'), + ('0140621598', 'Tales From Shakespeare (Penguin Popular Classics)', 'https://images.isbndb.com/covers/15/94/9780140621594.jpg'), + ('0440195934', 'Where Are The Children?', 'https://images.isbndb.com/covers/59/31/9780440195931.jpg'), + ('088038722X', 'Darkness And Light (Dragonlance, Preludes, Vol. 1) (v. 1)', 'https://images.isbndb.com/covers/72/24/9780880387224.jpg'), + ('0844295582', 'Hawaii At Its Best (The World At Its Best Travel Series)', 'https://images.isbndb.com/covers/55/89/9780844295589.jpg'), + ('0140314202', 'The Summer Of The Swans', 'https://images.isbndb.com/covers/42/05/9780140314205.jpg'), + ('0440998050', 'A Wrinkle In Time', 'https://images.isbndb.com/covers/80/51/9780440998051.jpg'), + ('0439319137', 'To Love This Life: Quotations From Helen Keller', 'https://images.isbndb.com/covers/91/33/9780439319133.jpg'), + ('0330352091', 'Cauldron Uk', 'https://images.isbndb.com/covers/20/93/9780330352093.jpg'), + ('0140014845', 'Lady Chatterley''s Lover', 'https://images.isbndb.com/covers/48/46/9780140014846.jpg'), + ('0060269928', 'Absolutely Normal Chaos', 'https://images.isbndb.com/covers/99/20/9780060269920.jpg'), + ('0553299328', 'Sixteen And Dying (One Last Wish)', 'https://images.isbndb.com/covers/93/28/9780553299328.jpg'), + ('0743464672', 'Getting Over Jack Wagner', 'https://images.isbndb.com/covers/46/73/9780743464673.jpg'), + ('155874424X', 'Teach Yourself VISUALLY Windows Me Millennium Edition', 'https://images.isbndb.com/covers/42/40/9781558744240.jpg'), + ('2070414574', 'L''Amour Dure Trois Ans', 'https://images.isbndb.com/covers/45/74/9782070414574.jpg'), + ('1853262803', 'Napoleon Of Notting Hill (Wordsworth Collection)', 'https://images.isbndb.com/covers/28/07/9781853262807.jpg'), + ('014032870X', 'Charlie And The Great Glass Elevator', 'https://images.isbndb.com/covers/87/07/9780140328707.jpg'), + ('0345396669', 'Our Dreaming Mind', 'https://images.isbndb.com/covers/66/62/9780345396662.jpg'), + ('0316181358', 'The Abuse Excuse: And Other Cop-Outs, Sob Stories, And Evasions Of Responsibility', 'https://images.isbndb.com/covers/13/58/9780316181358.jpg'), + ('0385468709', 'Healing And The Mind', 'https://images.isbndb.com/covers/87/01/9780385468701.jpg'), + ('0385422938', 'Shot In The Heart', 'https://images.isbndb.com/covers/29/32/9780385422932.jpg'), + ('0060165979', 'Care Of The Soul: A Guide For Cultivating Depth And Sacredness In Everyday Life', 'https://images.isbndb.com/covers/59/70/9780060165970.jpg'), + ('038542194X', 'On The Edge Of Darkness', 'https://images.isbndb.com/covers/19/42/9780385421942.jpg'), + ('1565122968', 'Gap Creek: A Novel', 'https://images.isbndb.com/covers/29/63/9781565122963.jpg'), + ('0486280594', 'Three Lives (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/92/9780486280592.jpg'), + ('0843114797', 'Little Miss Chatterbox (Mr. Men And Little Miss)', 'https://images.isbndb.com/covers/47/99/9780843114799.jpg'), + ('0804115613', 'Fried Green Tomatoes At The Whistlestop Cafe', 'https://images.isbndb.com/covers/56/12/9780804115612.jpg'), + ('0375724958', 'Stranger In The Forest: On Foot Across Borneo', 'https://images.isbndb.com/covers/49/54/9780375724954.jpg'), + ('067973855X', 'Motoring With Mohammed: Journeys To Yemen And The Red Sea', 'https://images.isbndb.com/covers/85/58/9780679738558.jpg'), + ('0679771832', 'Orchid Fever: A Horticultural Tale Of Love, Lust, And Lunacy', 'https://images.isbndb.com/covers/18/38/9780679771838.jpg'), + ('0345340426', 'J.R.R. Tolkien Boxed Set (The Hobbit And The Lord Of The Rings)', 'https://images.isbndb.com/covers/04/29/9780345340429.jpg'), + ('0679745203', 'The English Patient', 'https://images.isbndb.com/covers/52/04/9780679745204.jpg'), + ('0679777482', 'Checkmate: Sixth In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/89/9780679777489.jpg'), + ('0679777474', 'The Ringed Castle: Fifth In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/72/9780679777472.jpg'), + ('0679777466', 'Pawn In Frankincense: Fourth In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/65/9780679777465.jpg'), + ('0679777458', 'The Disorderly Knights: Third In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/58/9780679777458.jpg'), + ('0345449347', 'The Fourth Hand', 'https://images.isbndb.com/covers/93/44/9780345449344.jpg'), + ('0879100362', 'Harpo Speaks!', 'https://images.isbndb.com/covers/03/60/9780879100360.jpg'), + ('0312252927', 'Monkey Business: The Lives And Legends Of The Marx Brothers', 'https://images.isbndb.com/covers/29/22/9780312252922.jpg'), + ('0312266510', 'Stan And Ollie: The Roots Of Comedy: The Double Life Of Laurel And Hardy', 'https://images.isbndb.com/covers/65/16/9780312266516.jpg'), + ('0151005346', 'The Nautical Chart', 'https://images.isbndb.com/covers/53/45/9780151005345.jpg'), + ('0156006391', 'The Seville Communion', 'https://images.isbndb.com/covers/63/92/9780156006392.jpg'), + ('067977744X', 'Queens'' Play: Second In The Legendary Lymond Chronicles', 'https://images.isbndb.com/covers/74/41/9780679777441.jpg'), + ('0156005204', 'Baltasar And Blimunda', 'https://images.isbndb.com/covers/52/03/9780156005203.jpg'), + ('0156006243', 'The History Of The Siege Of Lisbon', 'https://images.isbndb.com/covers/62/48/9780156006248.jpg'), + ('0156010593', 'All The Names', 'https://images.isbndb.com/covers/05/97/9780156010597.jpg'), + ('0375701907', 'Straight Man: A Novel', 'https://images.isbndb.com/covers/19/00/9780375701900.jpg'), + ('0156004011', 'The Stone Raft', 'https://images.isbndb.com/covers/40/15/9780156004015.jpg'), + ('0679777547', 'The Club Dumas', 'https://images.isbndb.com/covers/75/40/9780679777540.jpg'), + ('034543479X', 'A Widow For One Year', 'https://images.isbndb.com/covers/47/91/9780345434791.jpg'), + ('0345396456', 'The Good Husband (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/64/57/9780345396457.jpg'), + ('1853262714', 'Anna Karenina (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/27/15/9781853262715.jpg'), + ('0888012055', 'Summer Of My Amazing Luck', 'https://images.isbndb.com/covers/20/50/9780888012050.jpg'), + ('0773759697', 'A Boy Of Good Breeding', 'https://images.isbndb.com/covers/96/95/9780773759695.jpg'), + ('1895837618', 'Pray For Us Sinners', 'https://images.isbndb.com/covers/76/12/9781895837612.jpg'), + ('0375705198', 'Amy And Isabelle: A Novel', 'https://images.isbndb.com/covers/51/99/9780375705199.jpg'), + ('1550548166', 'The Trade', 'https://images.isbndb.com/covers/81/67/9781550548167.jpg'), + ('0385720327', 'In My Hands: Memories Of A Holocaust Rescuer', 'https://images.isbndb.com/covers/03/28/9780385720328.jpg'), + ('0747545634', 'The Map Of Love', 'https://images.isbndb.com/covers/56/37/9780747545637.jpg'), + ('0374521956', 'One Day In The Life Of Ivan Denisovich: A Novel', 'https://images.isbndb.com/covers/19/50/9780374521950.jpg'), + ('0889951926', 'A Fine Daughter (Fiction)', 'https://images.isbndb.com/covers/19/21/9780889951921.jpg'), + ('0449910830', 'The All-True Travels And Adventures Of Lidie Newton: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/08/32/9780449910832.jpg'), + ('0771079567', 'Cinnamon Gardens', 'https://images.isbndb.com/covers/95/66/9780771079566.jpg'), + ('0571212212', 'That They May Face The Rising Sun', 'https://images.isbndb.com/covers/22/17/9780571212217.jpg'), + ('0671439162', 'The White Hotel', 'https://images.isbndb.com/covers/91/63/9780671439163.jpg'), + ('0345419073', 'Walking Across Egypt (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/90/71/9780345419071.jpg'), + ('0590419447', 'The Return Of The Third-Grade Ghosthunters (A Little Apple Paperback)', 'https://images.isbndb.com/covers/94/44/9780590419444.jpg'), + ('0425166090', 'Girls R.U.L.E. #1', 'https://images.isbndb.com/covers/60/93/9780425166093.jpg'), + ('0440227011', 'Leonardo DiCaprio: A MODERN DAY ROMEO (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/70/14/9780440227014.jpg'), + ('067188784X', 'Will Power! A Biography Of Will Smith', 'https://images.isbndb.com/covers/78/41/9780671887841.jpg'), + ('0671041657', 'Whispers From The Past (Charmed)', 'https://images.isbndb.com/covers/16/56/9780671041656.jpg'), + ('0894808249', 'All I Need To Know I Learned From My Cat', 'https://images.isbndb.com/covers/82/41/9780894808241.jpg'), + ('0590475363', 'The Boxcar Children: The Mystery Of The Missing Cat', 'https://images.isbndb.com/covers/53/65/9780590475365.jpg'), + ('044021873X', 'Windy City Blues (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/87/39/9780440218739.jpg'), + ('0449223345', 'A Pirate Looks At Fifty', 'https://images.isbndb.com/covers/33/45/9780449223345.jpg'), + ('0764227890', 'Heroes At Home: Help And Hope For America''s Military Families', 'https://images.isbndb.com/covers/78/99/9780764227899.jpg'), + ('0060244151', 'Betsy-Tacy', 'https://images.isbndb.com/covers/41/56/9780060244156.jpg'), + ('0684829223', 'We''re History!: The 20th-Century Survivor''s Final Exam', 'https://images.isbndb.com/covers/92/27/9780684829227.jpg'), + ('1573060313', 'Hawaii''s Best Spooky Tales: True Local Spine-Tinglers', 'https://images.isbndb.com/covers/03/18/9781573060318.jpg'), + ('0881337269', 'Grassroots Organizations: A Resource Book For Directors, Staff, And Volunteers Of Small, Community-Based, Nonprofit Agencies', 'https://images.isbndb.com/covers/72/66/9780881337266.jpg'), + ('0671872648', 'The Last Vampire', 'https://images.isbndb.com/covers/26/49/9780671872649.jpg'), + ('0375758585', 'The World At Night: A Novel', 'https://images.isbndb.com/covers/85/84/9780375758584.jpg'), + ('0061013579', 'Johnny Cash: The Autobiography', 'https://images.isbndb.com/covers/35/77/9780061013577.jpg'), + ('0449223833', 'The Deep Blue Good-by', 'https://images.isbndb.com/covers/38/33/9780449223833.jpg'), + ('0394520939', 'Eleni', 'https://images.isbndb.com/covers/09/33/9780394520933.jpg'), + ('0394583256', 'Legacies: A Chinese Mosaic', 'https://images.isbndb.com/covers/32/59/9780394583259.jpg'), + ('0316592382', 'Fearless Jones (Fearless Jones Novel, No.1)', 'https://images.isbndb.com/covers/23/83/9780316592383.jpg'), + ('0439372941', 'Chasing Vermeer', 'https://images.isbndb.com/covers/29/47/9780439372947.jpg'), + ('039913543X', 'Shadow Prey', 'https://images.isbndb.com/covers/54/39/9780399135439.jpg'), + ('0517092816', 'Tony Hillerman : Three Jim Chee Mysteries ( People Of Darkness / The Dark Wind / The Ghostway )', 'https://images.isbndb.com/covers/28/11/9780517092811.jpg'), + ('0679412956', 'Lasher (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/29/53/9780679412953.jpg'), + ('0394423291', 'Tar Baby', 'https://images.isbndb.com/covers/32/96/9780394423296.jpg'), + ('0688156142', 'The Forgotten: A Peter Decker/Rina Lazarus Novel', 'https://images.isbndb.com/covers/61/45/9780688156145.jpg'), + ('0399137734', 'Dragon Tears', 'https://images.isbndb.com/covers/77/30/9780399137730.jpg'), + ('0316955191', 'The Hope, A Novel', 'https://images.isbndb.com/covers/51/95/9780316955195.jpg'), + ('0515123498', 'Night Passage (Jesse Stone Novels)', 'https://images.isbndb.com/covers/34/94/9780515123494.jpg'), + ('0439139600', 'Harry Potter And The Goblet Of Fire (Book 4)', 'https://images.isbndb.com/covers/96/01/9780439139601.jpg'), + ('0670894370', 'A Common Life (The Mitford Years, Book 6)', 'https://images.isbndb.com/covers/43/76/9780670894376.jpg'), + ('0441007554', 'All Tomorrow''s Parties', 'https://images.isbndb.com/covers/75/54/9780441007554.jpg'), + ('1555910807', 'Biblioholism: The Literary Addiction', 'https://images.isbndb.com/covers/08/08/9781555910808.jpg'), + ('0553271105', 'Shane', 'https://images.isbndb.com/covers/11/02/9780553271102.jpg'), + ('0385495641', 'Ghost Soldiers: The Forgotten Epic Story Of World War II''s Most Dramatic Mission', 'https://images.isbndb.com/covers/56/46/9780385495646.jpg'), + ('0670031208', 'Shepherds Abiding', 'https://images.isbndb.com/covers/12/07/9780670031207.jpg'), + ('0525246606', 'Koko', 'https://images.isbndb.com/covers/66/02/9780525246602.jpg'), + ('1880238667', 'News Of Home (A. Poulin, Jr. New Poets Of America)', 'https://images.isbndb.com/covers/86/60/9781880238660.jpg'), + ('0822315890', 'Spreading The Word: Poetry And The Survival Of Community In America', 'https://images.isbndb.com/covers/58/96/9780822315896.jpg'), + ('0140100032', 'Ian Shoales'' Perfect World', 'https://images.isbndb.com/covers/00/37/9780140100037.jpg'), + ('0684870673', 'Laboratory Investigations: AP Environmental Science Lab Manual', 'https://images.isbndb.com/covers/06/70/9780684870670.jpg'), + ('093914994X', 'The Curious Eat Themselves: An Alaskan Mystery', 'https://images.isbndb.com/covers/99/40/9780939149940.jpg'), + ('0552143774', 'Horse Whisperer', 'https://images.isbndb.com/covers/37/76/9780552143776.jpg'), + ('0886193540', 'Sleepwalker', 'https://images.isbndb.com/covers/35/46/9780886193546.jpg'), + ('0142004278', 'Big Fish (movie Tie-in): A Novel Of Mythic Proportions', 'https://images.isbndb.com/covers/42/72/9780142004272.jpg'), + ('0451192036', 'Black Like Me', 'https://images.isbndb.com/covers/20/35/9780451192035.jpg'), + ('0310217598', 'Word Of Honor (Newpointe 911 Series #3)', 'https://images.isbndb.com/covers/75/96/9780310217596.jpg'), + ('031021758X', 'Shadow Of Doubt (Newpointe 911 Series #2)', 'https://images.isbndb.com/covers/75/89/9780310217589.jpg'), + ('1568654782', 'Shunning', 'https://images.isbndb.com/covers/47/82/9781568654782.jpg'), + ('0140434186', 'Wuthering Heights (Penguin Classics)', 'https://images.isbndb.com/covers/41/87/9780140434187.jpg'), + ('0141182458', 'Dubliners (Penguin Modern Classics)', 'https://images.isbndb.com/covers/24/52/9780141182452.jpg'), + ('0595140459', 'I Married Dr. Jekyll And Woke Up Mrs. Hyde: Or What Happens To Love?', 'https://images.isbndb.com/covers/04/59/9780595140459.jpg'), + ('0913559482', 'The Autobiography Of Maria Callas: A Novel', 'https://images.isbndb.com/covers/94/82/9780913559482.jpg'), + ('0517189186', 'Clan Of The Cave Bear (Earth''s Children)', 'https://images.isbndb.com/covers/91/84/9780517189184.jpg'), + ('0374148570', 'Eucalyptus', 'https://images.isbndb.com/covers/85/77/9780374148577.jpg'), + ('9681336089', 'Vivir Para Contarla / To Live To Tell It (Spanish) (Spanish Edition)', 'https://images.isbndb.com/covers/60/80/9789681336080.jpg'), + ('0375700668', 'A Samba For Sherlock: A Novel', 'https://images.isbndb.com/covers/06/68/9780375700668.jpg'), + ('0743204239', 'Lo Es (Tis): Una Memoria (A Memoir) (Spanish Edition)', 'https://images.isbndb.com/covers/42/31/9780743204231.jpg'), + ('0192833863', 'Dracula (Oxford World''s Classics)', 'https://images.isbndb.com/covers/38/60/9780192833860.jpg'), + ('067931041X', 'The Dominion Of Wyley McFadden', 'https://images.isbndb.com/covers/04/19/9780679310419.jpg'), + ('0805041508', 'Last Rites: A Crime Novel (Charles Resnick Novels)', 'https://images.isbndb.com/covers/15/07/9780805041507.jpg'), + ('0380977702', 'Shadows Of Sin (Jessie Drake Mysteries)', 'https://images.isbndb.com/covers/77/03/9780380977703.jpg'), + ('096774590X', 'Lofting', 'https://images.isbndb.com/covers/59/09/9780967745909.jpg'), + ('0446531480', 'A Body To Die For', 'https://images.isbndb.com/covers/14/81/9780446531481.jpg'), + ('3442353971', 'Geheimakte Proteus', 'https://images.isbndb.com/covers/39/72/9783442353972.jpg'), + ('0451207645', 'The Oath', 'https://images.isbndb.com/covers/76/47/9780451207647.jpg'), + ('0316092738', 'I Will Sing Life: Voices From The Hole In The Wall Gang Camp', 'https://images.isbndb.com/covers/27/39/9780316092739.jpg'), + ('0743428188', 'The Twentieth Wife: A Novel', 'https://images.isbndb.com/covers/81/87/9780743428187.jpg'), + ('0590598856', 'Dumb And Dumber Joke Book', 'https://images.isbndb.com/covers/88/59/9780590598859.jpg'), + ('0061000078', 'Billy Bathgate: A Novel', 'https://images.isbndb.com/covers/00/72/9780061000072.jpg'), + ('0671670689', 'Dawn (Cutler Family)', 'https://images.isbndb.com/covers/06/89/9780671670689.jpg'), + ('0449000869', 'Ashworth Hall (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/08/61/9780449000861.jpg'), + ('0446605581', 'Fat Tuesday', 'https://images.isbndb.com/covers/55/88/9780446605588.jpg'), + ('0441694543', 'Quozl', 'https://images.isbndb.com/covers/45/49/9780441694549.jpg'), + ('044640344X', 'Smoke', 'https://images.isbndb.com/covers/34/43/9780446403443.jpg'), + ('1572972181', 'Crow: City Of Angels', 'https://images.isbndb.com/covers/21/86/9781572972186.jpg'), + ('0345395069', 'Reign In Hell', 'https://images.isbndb.com/covers/50/61/9780345395061.jpg'), + ('0425148343', 'Wednesday''s Child (Inspector Banks Mystery)', 'https://images.isbndb.com/covers/83/41/9780425148341.jpg'), + ('0515117552', 'Pure Instinct', 'https://images.isbndb.com/covers/75/54/9780515117554.jpg'), + ('042514545X', 'Fool''s Puzzle (Benni Harper Mystery)', 'https://images.isbndb.com/covers/54/56/9780425145456.jpg'), + ('0553298836', 'Copy Kat (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/88/33/9780553298833.jpg'), + ('0425156729', 'Gallow''s View', 'https://images.isbndb.com/covers/67/28/9780425156728.jpg'), + ('042516988X', 'Stray Kat Waltz (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/98/89/9780425169889.jpg'), + ('0380794772', 'In A Dry Season (Inspector Banks Novels)', 'https://images.isbndb.com/covers/47/75/9780380794775.jpg'), + ('0671011375', 'Death Du Jour (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/13/76/9780671011376.jpg'), + ('0515124796', 'Cold Blood', 'https://images.isbndb.com/covers/47/98/9780515124798.jpg'), + ('0515126489', 'Critical Mass', 'https://images.isbndb.com/covers/64/88/9780515126488.jpg'), + ('0679753826', 'Mohawk', 'https://images.isbndb.com/covers/38/27/9780679753827.jpg'), + ('0380974282', 'The Purification Ceremony', 'https://images.isbndb.com/covers/42/83/9780380974283.jpg'), + ('0684196778', 'Hangman''s Root: A China Bayles Mystery', 'https://images.isbndb.com/covers/67/70/9780684196770.jpg'), + ('0399142851', 'Unnatural Exposure', 'https://images.isbndb.com/covers/28/57/9780399142857.jpg'), + ('0399146253', 'The Last Precinct (A Scarpetta Novel)', 'https://images.isbndb.com/covers/62/51/9780399146251.jpg'), + ('0316693294', 'Cat And Mouse (Alex Cross Novels)', 'https://images.isbndb.com/covers/32/95/9780316693295.jpg'), + ('0892964111', 'Poor Butterfly', 'https://images.isbndb.com/covers/41/16/9780892964116.jpg'), + ('0671042742', 'The Honourable Schoolboy', 'https://images.isbndb.com/covers/27/45/9780671042745.jpg'), + ('0385480385', 'Wilderness Of Mirrors', 'https://images.isbndb.com/covers/03/83/9780385480383.jpg'), + ('0385488424', 'Sunset Limited', 'https://images.isbndb.com/covers/84/26/9780385488426.jpg'), + ('0553096834', 'Couplehood', 'https://images.isbndb.com/covers/68/35/9780553096835.jpg'), + ('0425130746', 'Sisters In Crime 4', 'https://images.isbndb.com/covers/07/42/9780425130742.jpg'), + ('0553102133', 'The Last Family', 'https://images.isbndb.com/covers/21/30/9780553102130.jpg'), + ('0345391330', 'Perfect Justice', 'https://images.isbndb.com/covers/13/39/9780345391339.jpg'), + ('0345334019', 'Escape The Night', 'https://images.isbndb.com/covers/40/15/9780345334015.jpg'), + ('055356966X', 'By Evil Means (A Phoebe Siegel Mystery)', 'https://images.isbndb.com/covers/96/67/9780553569667.jpg'), + ('0553574663', 'The Grilling Season (Goldy Culinary Mysteries, Book 7)', 'https://images.isbndb.com/covers/46/61/9780553574661.jpg'), + ('0451180054', 'Trial By Fire', 'https://images.isbndb.com/covers/00/56/9780451180056.jpg'), + ('0812590554', 'White Smoke: A Novel Of Papal Election', 'https://images.isbndb.com/covers/05/55/9780812590555.jpg'), + ('055357924X', 'Kissed A Sad Goodbye (Duncan Kincaid/Gemma James Novels)', 'https://images.isbndb.com/covers/92/46/9780553579246.jpg'), + ('0061093920', 'Render Up The Body: A Novel Of Suspense', 'https://images.isbndb.com/covers/39/20/9780061093920.jpg'), + ('0671898779', 'Rescue: A John Cuddy Mystery', 'https://images.isbndb.com/covers/87/79/9780671898779.jpg'), + ('0812571991', 'Legacies: A Repairman Jack Novel (Repairman Jack Novels)', 'https://images.isbndb.com/covers/19/98/9780812571998.jpg'), + ('0451199650', 'Stealing Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/96/52/9780451199652.jpg'), + ('0451197429', 'The Disappearance', 'https://images.isbndb.com/covers/74/29/9780451197429.jpg'), + ('0553102346', 'Deception On His Mind', 'https://images.isbndb.com/covers/23/45/9780553102345.jpg'), + ('0399146504', 'The Devil''s Code', 'https://images.isbndb.com/covers/65/03/9780399146503.jpg'), + ('0312143648', 'Malice Prepense', 'https://images.isbndb.com/covers/36/40/9780312143640.jpg'), + ('0553099590', 'Guilty As Sin', 'https://images.isbndb.com/covers/95/91/9780553099591.jpg'), + ('038530000X', 'A Woman''s Eye', 'https://images.isbndb.com/covers/00/01/9780385300001.jpg'), + ('3499233312', 'Wie Die Tiere', 'https://images.isbndb.com/covers/33/19/9783499233319.jpg'), + ('0140620508', 'Ivanhoe', 'https://images.isbndb.com/covers/05/04/9780140620504.jpg'), + ('1895565545', 'The Group Of Seven And Tom Thomson: An Introduction', 'https://images.isbndb.com/covers/55/46/9781895565546.jpg'), + ('0416469604', 'Tao Of Pooh', 'https://images.isbndb.com/covers/96/08/9780416469608.jpg'), + ('1841120685', '?What If!: How To Start A Creative Revolution At Work', 'https://images.isbndb.com/covers/06/83/9781841120683.jpg'), + ('0044402449', 'Immortal Blood', 'https://images.isbndb.com/covers/24/42/9780044402442.jpg'), + ('0749425628', 'How To Be Better At-- Managing Change', 'https://images.isbndb.com/covers/56/23/9780749425623.jpg'), + ('0273622218', 'All Change: Project Manager''s Secret Handbook (Financial Times Management)', 'https://images.isbndb.com/covers/22/15/9780273622215.jpg'), + ('0751530328', 'Thin Air', 'https://images.isbndb.com/covers/03/22/9780751530322.jpg'), + ('0140431020', 'Lady Susan, The Watsons, Sanditon (Penguin Classics)', 'https://images.isbndb.com/covers/10/25/9780140431025.jpg'), + ('0749418222', 'Develop Your Assertiveness (Better Management Skills Series)', 'https://images.isbndb.com/covers/82/29/9780749418229.jpg'), + ('0241141095', 'Hotel World', 'https://images.isbndb.com/covers/10/90/9780241141090.jpg'), + ('0450547434', 'Creed', 'https://images.isbndb.com/covers/74/30/9780450547430.jpg'), + ('0340766638', 'Sweet Dreams Are Made Of This A Dark Fai', 'https://images.isbndb.com/covers/66/37/9780340766637.jpg'), + ('0860680649', 'Surfacing', 'https://images.isbndb.com/covers/06/42/9780860680642.jpg'), + ('0140040021', 'The Hothouse By The East River', 'https://images.isbndb.com/covers/00/29/9780140040029.jpg'), + ('2253098183', 'Vérité', 'https://images.isbndb.com/covers/81/88/9782253098188.jpg'), + ('0312997159', 'A Summer In The Country', 'https://images.isbndb.com/covers/71/51/9780312997151.jpg'), + ('0786890061', 'No Witnesses', 'https://images.isbndb.com/covers/00/64/9780786890064.jpg'), + ('0553279378', 'I Know Why The Caged Bird Sings', 'https://images.isbndb.com/covers/93/75/9780553279375.jpg'), + ('0440209986', 'Not Exactly A Brahmin', 'https://images.isbndb.com/covers/99/80/9780440209980.jpg'), + ('0380788640', 'Murder On The Yukon Quest: An Alaska Mystery', 'https://images.isbndb.com/covers/86/44/9780380788644.jpg'), + ('0380788632', 'Death Takes Passage (Alaska Mysteries)', 'https://images.isbndb.com/covers/86/37/9780380788637.jpg'), + ('0380717581', 'Murder On The Iditarod Trail (Alaska Mysteries)', 'https://images.isbndb.com/covers/75/83/9780380717583.jpg'), + ('0684826143', 'The Funeral Makers', 'https://images.isbndb.com/covers/61/41/9780684826141.jpg'), + ('1551666987', 'Marriage By The Book', 'https://images.isbndb.com/covers/69/83/9781551666983.jpg'), + ('0425176037', 'Shell Game (Kathleen Mallory Novels)', 'https://images.isbndb.com/covers/60/30/9780425176030.jpg'), + ('0156013126', 'The Same Sea', 'https://images.isbndb.com/covers/31/23/9780156013123.jpg'), + ('0446610941', 'Misfortune: A Novel', 'https://images.isbndb.com/covers/09/40/9780446610940.jpg'), + ('0425083837', 'The Hunt For Red October (Jack Ryan)', 'https://images.isbndb.com/covers/38/33/9780425083833.jpg'), + ('0425135721', 'McNally''s Secret (Archy McNally)', 'https://images.isbndb.com/covers/57/23/9780425135723.jpg'), + ('0515130540', 'Meet Me At Midnight', 'https://images.isbndb.com/covers/05/46/9780515130546.jpg'), + ('0515090654', 'Twice Loved', 'https://images.isbndb.com/covers/06/59/9780515090659.jpg'), + ('0553292722', 'Still Waters: A Novel', 'https://images.isbndb.com/covers/27/25/9780553292725.jpg'), + ('0380721643', 'Track Of The Cat (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/16/41/9780380721641.jpg'), + ('0425183750', 'Blood Lure (An Anna Pigeon Novel)', 'https://images.isbndb.com/covers/37/55/9780425183755.jpg'), + ('0445408502', 'The Cheshire Cat''s Eye (A Sharon Mccone Mystery)', 'https://images.isbndb.com/covers/85/00/9780445408500.jpg'), + ('0553270486', 'Robert Half Way To Get Hired In Today''s', 'https://images.isbndb.com/covers/04/88/9780553270488.jpg'), + ('0380798573', 'The Falcon At The Portal (Amelia Peabody, Book 11)', 'https://images.isbndb.com/covers/85/75/9780380798575.jpg'), + ('0452282268', 'Le Mariage', 'https://images.isbndb.com/covers/22/61/9780452282261.jpg'), + ('0786867787', 'Spilling Clarence: A Novel', 'https://images.isbndb.com/covers/77/83/9780786867783.jpg'), + ('0307001253', 'Happy & Sad/Grouchy & Glad (A Little Golden Book)', 'https://images.isbndb.com/covers/12/52/9780307001252.jpg'), + ('0590484133', 'The Magic School Bus Hops Home: A Book About Animal Habitats', 'https://images.isbndb.com/covers/41/38/9780590484138.jpg'), + ('067982412X', 'The Knight At Dawn (Magic Tree House, No. 2)', 'https://images.isbndb.com/covers/41/21/9780679824121.jpg'), + ('0373227272', 'Confiscated Conception (Harlequin Intrigue)', 'https://images.isbndb.com/covers/72/73/9780373227273.jpg'), + ('0373872410', 'Loving Ways (Loving Series #3) (Love Inspired #231)', 'https://images.isbndb.com/covers/24/11/9780373872411.jpg'), + ('0671550578', 'The Star Group', 'https://images.isbndb.com/covers/05/78/9780671550578.jpg'), + ('0671550764', 'Christopher Pike''s Tales Of Terror #2', 'https://images.isbndb.com/covers/07/69/9780671550769.jpg'), + ('0373226918', 'The Bride''s Rescuer', 'https://images.isbndb.com/covers/69/17/9780373226917.jpg'), + ('0761118691', 'Father To Son: Life Lessons On Raising A Boy', 'https://images.isbndb.com/covers/86/95/9780761118695.jpg'), + ('0671680080', 'Star Trek V: The Final Frontier', 'https://images.isbndb.com/covers/00/84/9780671680084.jpg'), + ('0345354621', 'The Terminal Man', 'https://images.isbndb.com/covers/46/24/9780345354624.jpg'), + ('0671442686', 'The Restaurant At The End Of The Universe (Hitch-Hikers Guide To The Galaxy, No. 2)', 'https://images.isbndb.com/covers/26/82/9780671442682.jpg'), + ('0671525808', 'So Long, And Thanks For All The Fish', 'https://images.isbndb.com/covers/58/04/9780671525804.jpg'), + ('0671684027', 'Metamorphosis (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/40/20/9780671684020.jpg'), + ('0671701304', 'Gulliver''s Fugitives (Star Trek The Next Generation #11)', 'https://images.isbndb.com/covers/13/07/9780671701307.jpg'), + ('0380773066', 'Dark Mirror, Dark Dreams', 'https://images.isbndb.com/covers/30/60/9780380773060.jpg'), + ('0812516214', 'Dreams Underfoot: The Newford Collection', 'https://images.isbndb.com/covers/62/10/9780812516210.jpg'), + ('0446602299', 'Alien: Resurrection - The Novelization', 'https://images.isbndb.com/covers/22/97/9780446602297.jpg'), + ('0312954115', 'Cheapskate Monthly Money Makeover (Debt-Proof Living)', 'https://images.isbndb.com/covers/41/16/9780312954116.jpg'), + ('0671742493', 'Delta Of Venus', 'https://images.isbndb.com/covers/24/92/9780671742492.jpg'), + ('0451511328', 'Frankenstein (Signet Classics)', 'https://images.isbndb.com/covers/13/24/9780451511324.jpg'), + ('0671441515', 'Othello', 'https://images.isbndb.com/covers/15/17/9780671441517.jpg'), + ('0867211725', 'Elfquest: Journey To Sorrows End', 'https://images.isbndb.com/covers/17/26/9780867211726.jpg'), + ('0140111891', 'Mixed Blessings: Overcoming The Stumbling BLocks In An Interfaith Marriage', 'https://images.isbndb.com/covers/18/97/9780140111897.jpg'), + ('0061054143', 'Goblins (The X-Files, Bk. 1)', 'https://images.isbndb.com/covers/41/43/9780061054143.jpg'), + ('0449220893', 'Beast', 'https://images.isbndb.com/covers/08/94/9780449220894.jpg'), + ('0064420485', 'Wolfman Sam (Trophy Chapter Book)', 'https://images.isbndb.com/covers/04/88/9780064420488.jpg'), + ('0590939351', 'Stop That Eyeball! (Spencer''s Adventures)', 'https://images.isbndb.com/covers/93/55/9780590939355.jpg'), + ('078688214X', 'Hemingway In Love And War: The Lost Diary Of Agnes Von Kurowsky', 'https://images.isbndb.com/covers/21/44/9780786882144.jpg'), + ('0446391301', 'Geek Love', 'https://images.isbndb.com/covers/13/06/9780446391306.jpg'), + ('0743233026', 'Sin Killer', 'https://images.isbndb.com/covers/30/26/9780743233026.jpg'), + ('3442722403', 'Die Vier Söhne Des Doktor March.', 'https://images.isbndb.com/covers/24/02/9783442722402.jpg'), + ('3442720117', 'Und Nietzsche Weinte.', 'https://images.isbndb.com/covers/01/18/9783442720118.jpg'), + ('0140621873', 'American (Penguin Popular Classics)', 'https://images.isbndb.com/covers/18/77/9780140621877.jpg'), + ('0060119071', 'People Of Darkness', 'https://images.isbndb.com/covers/90/72/9780060119072.jpg'), + ('0875963234', 'The Men''s Health Guide To Peak Conditioning', 'https://images.isbndb.com/covers/32/35/9780875963235.jpg'), + ('0449911462', 'Think And Grow Rich', 'https://images.isbndb.com/covers/14/64/9780449911464.jpg'), + ('0931580587', 'Ain''t Nobody''s Business If You Do : The Absurdity Of Consensual Crimes In Our Free Country', 'https://images.isbndb.com/covers/05/81/9780931580581.jpg'), + ('0312123337', 'Lost Rights: The Destruction Of American Liberty', 'https://images.isbndb.com/covers/33/38/9780312123338.jpg'), + ('0965603695', 'The Great Libertarian Offer', 'https://images.isbndb.com/covers/36/90/9780965603690.jpg'), + ('0068596022', 'Restoring The American Dream', 'https://images.isbndb.com/covers/60/28/9780068596028.jpg'), + ('0066620732', 'Just For Fun: The Story Of An Accidental Revolutionary', 'https://images.isbndb.com/covers/07/32/9780066620732.jpg'), + ('0525446052', 'The Big Book For Peace', 'https://images.isbndb.com/covers/60/57/9780525446057.jpg'), + ('0440417449', 'I Love You So Much', 'https://images.isbndb.com/covers/74/46/9780440417446.jpg'), + ('970651452X', 'El Dominico Blanco (Spanish Edition)', 'https://images.isbndb.com/covers/45/23/9789706514523.jpg'), + ('0613282728', 'Adivina Cuanto Te Quiero (Guess How Much I Love You) (Spanish Edition)', 'https://images.isbndb.com/covers/27/27/9780613282727.jpg'), + ('0802130119', 'The Master And Margarita', 'https://images.isbndb.com/covers/01/12/9780802130112.jpg'), + ('0440224705', 'Hard Time (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/47/09/9780440224709.jpg'), + ('0312983867', 'Hard Eight (Stephanie Plum, No. 8)', 'https://images.isbndb.com/covers/38/64/9780312983864.jpg'), + ('045120994X', 'Fear Of Flying', 'https://images.isbndb.com/covers/99/48/9780451209948.jpg'), + ('0345459202', 'Big Stone Gap', 'https://images.isbndb.com/covers/92/06/9780345459206.jpg'), + ('0312955731', 'White Shark', 'https://images.isbndb.com/covers/57/31/9780312955731.jpg'), + ('0553205803', 'Even Cowgirls Get The Blues', 'https://images.isbndb.com/covers/58/00/9780553205800.jpg'), + ('0553541633', 'Diary Of A Young Girl', 'https://images.isbndb.com/covers/16/32/9780553541632.jpg'), + ('0684800713', 'The Sun Also Rises', 'https://images.isbndb.com/covers/07/14/9780684800714.jpg'), + ('1566840287', 'The Christmas Box', 'https://images.isbndb.com/covers/02/86/9781566840286.jpg'), + ('0062500260', 'Medicine Woman', 'https://images.isbndb.com/covers/02/67/9780062500267.jpg'), + ('0380793229', 'The Isle Of Battle (The Swans'' War, Book 2)', 'https://images.isbndb.com/covers/32/28/9780380793228.jpg'), + ('0345304659', 'Nirvana Blues', 'https://images.isbndb.com/covers/46/50/9780345304650.jpg'), + ('0786888083', 'Confessions Of A Dangerous Mind: An Unauthorized Autobiography', 'https://images.isbndb.com/covers/80/85/9780786888085.jpg'), + ('0345344464', 'The Milagro Beanfield War', 'https://images.isbndb.com/covers/44/65/9780345344465.jpg'), + ('0374115540', 'Borderliners', 'https://images.isbndb.com/covers/55/48/9780374115548.jpg'), + ('0671718436', 'Shampoo Planet', 'https://images.isbndb.com/covers/84/35/9780671718435.jpg'), + ('0684163268', 'The Old Man And The Sea', 'https://images.isbndb.com/covers/32/60/9780684163260.jpg'), + ('1400031346', 'The No. 1 Ladies'' Detective Agency', 'https://images.isbndb.com/covers/13/44/9781400031344.jpg'), + ('0754101495', 'In Endless Strife', 'https://images.isbndb.com/covers/14/99/9780754101499.jpg'), + ('0446524131', 'Something More: Excavating Your Authentic Self', 'https://images.isbndb.com/covers/41/31/9780446524131.jpg'), + ('0446612626', 'Reversible Errors', 'https://images.isbndb.com/covers/26/23/9780446612623.jpg'), + ('1565076613', 'Meet Me For Coffee', 'https://images.isbndb.com/covers/66/17/9781565076617.jpg'), + ('0316781142', 'The Last Time They Met: A Novel', 'https://images.isbndb.com/covers/11/45/9780316781145.jpg'), + ('0609801279', 'The Law Of Love', 'https://images.isbndb.com/covers/12/77/9780609801277.jpg'), + ('3257230915', 'Tagebuch 1920.', 'https://images.isbndb.com/covers/09/18/9783257230918.jpg'), + ('2035877393', 'L''Illusion Comique, Texte Intégral', 'https://images.isbndb.com/covers/73/90/9782035877390.jpg'), + ('2290301531', 'Plus Fort Que La Haine', 'https://images.isbndb.com/covers/15/31/9782290301531.jpg'), + ('2070374874', 'Cyrano De Bergerac', 'https://images.isbndb.com/covers/48/78/9782070374878.jpg'), + ('0060008024', 'Angels', 'https://images.isbndb.com/covers/80/24/9780060008024.jpg'), + ('3442725577', 'Münsters Fall: Roman', 'https://images.isbndb.com/covers/55/71/9783442725571.jpg'), + ('051511264X', 'Prime Witness (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/26/41/9780515112641.jpg'), + ('0425052028', 'The Confessions Of Phoebe Tyler', 'https://images.isbndb.com/covers/20/20/9780425052020.jpg'), + ('0330491199', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/11/98/9780330491198.jpg'), + ('0373709323', 'Cathryn: Circle Of Friends (Harlequin Superromance No. 932)', 'https://images.isbndb.com/covers/93/28/9780373709328.jpg'), + ('0373710062', 'First Daughter: The First Family Of Texas (Harlequin Superromance No. 1006)', 'https://images.isbndb.com/covers/00/65/9780373710065.jpg'), + ('0782141676', 'CCNA: Cisco Certified Network Associate Study Guide, Third Edition', 'https://images.isbndb.com/covers/16/72/9780782141672.jpg'), + ('0399526609', 'Lose Your Love Handles: A 3 Step Program To Streamline Your Waist In 30 Days', 'https://images.isbndb.com/covers/66/02/9780399526602.jpg'), + ('0345389417', 'Servant Of The Bones', 'https://images.isbndb.com/covers/94/11/9780345389411.jpg'), + ('0425147584', 'Debt Of Honor (Jack Ryan)', 'https://images.isbndb.com/covers/75/80/9780425147580.jpg'), + ('0451177037', 'Suspicion Of Guilt', 'https://images.isbndb.com/covers/70/32/9780451177032.jpg'), + ('0373710291', 'A Cowboy For Clementine: Home On The Ranch (Harlequin Superromance No. 1029)', 'https://images.isbndb.com/covers/02/94/9780373710294.jpg'), + ('0451406079', 'Black Wolf', 'https://images.isbndb.com/covers/60/71/9780451406071.jpg'), + ('0373471564', 'Rafferty''S Choice (Born In The Usa) (Colorado)', 'https://images.isbndb.com/covers/15/60/9780373471560.jpg'), + ('0373710267', 'Charlotte Moore', 'https://images.isbndb.com/covers/02/63/9780373710263.jpg'), + ('037370870X', 'Dream Baby (Harlequin Superromance, No. 870)', 'https://images.isbndb.com/covers/87/03/9780373708703.jpg'), + ('0373709307', 'That Summer Thing: Welcome To Riverbend (Harlequin Superromance No. 930)', 'https://images.isbndb.com/covers/93/04/9780373709304.jpg'), + ('0373708726', 'His Brother''s Bride (Men Of Glory) (Harlequin Superromance)', 'https://images.isbndb.com/covers/87/27/9780373708727.jpg'), + ('0373710283', 'Daughter Of Oklahoma: Hometown U.S.A. (Harlequin Superromance No. 1028)', 'https://images.isbndb.com/covers/02/87/9780373710287.jpg'), + ('0373710054', 'My Private Detective (Count On A Cop) (Harlequin Superromance, No. 1005)', 'https://images.isbndb.com/covers/00/58/9780373710058.jpg'), + ('0373710356', '14 Valentine Place (Harlequin Superromance No. 1035)', 'https://images.isbndb.com/covers/03/55/9780373710355.jpg'), + ('037371002X', 'Married In Montana: Big Sky Country (Harlequin Superromance No. 1002)', 'https://images.isbndb.com/covers/00/27/9780373710027.jpg'), + ('0373710259', 'True Heart: 9 Months Later (Harlequin Superromance No. 1025)', 'https://images.isbndb.com/covers/02/56/9780373710256.jpg'), + ('0373710275', 'Just Around The Corner: Shelter Valley Stories (Harlequin Superromance No. 1027)', 'https://images.isbndb.com/covers/02/70/9780373710270.jpg'), + ('0373484380', 'Gifts Of Fortune (3 Novels In 1): The Holiday Heir/ The Christmas House/ Maggie''s Miracle (Fortunes Children The Lost Hei)', 'https://images.isbndb.com/covers/43/86/9780373484386.jpg'), + ('0795151314', 'Dancing In Light', 'https://images.isbndb.com/covers/13/16/9780795151316.jpg'), + ('0940863332', 'On The Threshold Of A Dream Volume 2', 'https://images.isbndb.com/covers/33/30/9780940863330.jpg'), + ('1565924975', 'VI Editor Pocket Reference', 'https://images.isbndb.com/covers/49/70/9781565924970.jpg'), + ('0684853523', 'On Writing: A Memoir Of The Craft', 'https://images.isbndb.com/covers/35/29/9780684853529.jpg'), + ('0060193395', 'Body For Life: 12 Weeks To Mental And Physical Strength', 'https://images.isbndb.com/covers/33/93/9780060193393.jpg'), + ('0446363669', 'The Doomsday Conspiracy', 'https://images.isbndb.com/covers/36/62/9780446363662.jpg'), + ('0373471645', 'Intrusive Man (Born In The Usa) (Born In The USA, Indiana)', 'https://images.isbndb.com/covers/16/45/9780373471645.jpg'), + ('0373710208', 'Zoey Phillips: Girlfriends (Harlequin Superromance No. 1020)', 'https://images.isbndb.com/covers/02/01/9780373710201.jpg'), + ('0373710186', 'The Fire Within: America''s Bravest (Harlequin Superromance No. 1018)', 'https://images.isbndb.com/covers/01/88/9780373710188.jpg'), + ('0373484518', 'Midnight Clear (3 Novels In 1)', 'https://images.isbndb.com/covers/45/15/9780373484515.jpg'), + ('0373710216', 'We Saw Mommy Kissing Santa Claus (Harlequin Superromance No. 1021)', 'https://images.isbndb.com/covers/02/18/9780373710218.jpg'), + ('0373710070', 'Two Much Alike: Twins (Harlequin Superromance No. 1007)', 'https://images.isbndb.com/covers/00/72/9780373710072.jpg'), + ('0345339495', 'Nerilka''s Story (Dragonriders Of Pern Series)', 'https://images.isbndb.com/covers/94/92/9780345339492.jpg'), + ('0671525433', 'DARK ANGEL', 'https://images.isbndb.com/covers/54/39/9780671525439.jpg'), + ('0060675357', 'The Spiral Dance: A Rebirth Of The Ancient Religion Of The Great Goddess', 'https://images.isbndb.com/covers/53/56/9780060675356.jpg'), + ('0345302575', 'Smoke Ring', 'https://images.isbndb.com/covers/25/71/9780345302571.jpg'), + ('0812571231', 'Elvenborn (Halfblood Chronicles)', 'https://images.isbndb.com/covers/12/33/9780812571233.jpg'), + ('0345386868', 'Echoes Of The Well Of Souls (Watchers At The Well, Book 1)', 'https://images.isbndb.com/covers/68/61/9780345386861.jpg'), + ('0151002444', 'The Hidden Encyclical Of Pius XI', 'https://images.isbndb.com/covers/24/43/9780151002443.jpg'), + ('0312152000', 'Renaissance Moon', 'https://images.isbndb.com/covers/20/00/9780312152000.jpg'), + ('0452283442', 'The Darwin Awards: Evolution In Action (Darwin Awards (Plume Books))', 'https://images.isbndb.com/covers/34/42/9780452283442.jpg'), + ('0440918022', 'DRAGON''S BLOOD (Pit Dragon Chronicles)', 'https://images.isbndb.com/covers/80/28/9780440918028.jpg'), + ('1853260274', 'Gulliver''s Travels (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/02/78/9781853260278.jpg'), + ('081254949X', 'Ladylord', 'https://images.isbndb.com/covers/94/92/9780812549492.jpg'), + ('0345404319', 'Taltos (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/43/12/9780345404312.jpg'), + ('0671721887', 'The Spirit Ring', 'https://images.isbndb.com/covers/18/86/9780671721886.jpg'), + ('0671682830', 'HEAVEN', 'https://images.isbndb.com/covers/28/35/9780671682835.jpg'), + ('0688086888', 'And Eternity (Incarnations Of Immortality)', 'https://images.isbndb.com/covers/68/86/9780688086886.jpg'), + ('0312864663', 'Dream A Little Dream: A Tale Of Myth And Moonshine', 'https://images.isbndb.com/covers/46/68/9780312864668.jpg'), + ('0812510488', 'The Season Of Passage', 'https://images.isbndb.com/covers/04/85/9780812510485.jpg'), + ('0345441494', 'The Devil''s Cup: A History Of The World According To Coffee', 'https://images.isbndb.com/covers/14/92/9780345441492.jpg'), + ('0609609017', 'Ten Poems To Change Your Life', 'https://images.isbndb.com/covers/90/19/9780609609019.jpg'), + ('2253041939', 'Léon L''Africain', 'https://images.isbndb.com/covers/19/31/9782253041931.jpg'), + ('2020326450', 'Textes En Scène', 'https://images.isbndb.com/covers/64/52/9782020326452.jpg'), + ('0671015583', 'The Extra Man (Contemporary Classics (Washington Square Press))', 'https://images.isbndb.com/covers/55/89/9780671015589.jpg'), + ('0140248943', 'The Canadian Revolution: From Deference To Defiance', 'https://images.isbndb.com/covers/89/44/9780140248944.jpg'), + ('1894770099', 'Strike The Wok: An Anthology Of Contemporary Chinese Canadian Fiction', 'https://images.isbndb.com/covers/00/95/9781894770095.jpg'), + ('0571057063', 'Selected Poems', 'https://images.isbndb.com/covers/70/61/9780571057061.jpg'), + ('0670887315', 'Disgrace', 'https://images.isbndb.com/covers/73/16/9780670887316.jpg'), + ('0425098451', 'N Or M?', 'https://images.isbndb.com/covers/84/55/9780425098455.jpg'), + ('0804105138', 'Night Magic', 'https://images.isbndb.com/covers/51/32/9780804105132.jpg'), + ('0671664921', 'Satisfaction', 'https://images.isbndb.com/covers/49/23/9780671664923.jpg'), + ('0938665650', 'The Arctic To The Antarctica: Arctic Tern Sails The Americas', 'https://images.isbndb.com/covers/56/56/9780938665656.jpg'), + ('0553572245', 'Riding Shotgun', 'https://images.isbndb.com/covers/22/47/9780553572247.jpg'), + ('0373834756', 'Mistletoe Miracles: Dearest Eulalia / The Extra-Special Gift / The Doorstep Baby', 'https://images.isbndb.com/covers/47/54/9780373834754.jpg'), + ('1568652895', 'Homecoming', 'https://images.isbndb.com/covers/28/94/9781568652894.jpg'), + ('0786885912', 'The Lobster Chronicles: Life On A Very Small Island', 'https://images.isbndb.com/covers/59/16/9780786885916.jpg'), + ('0307101479', 'The Three Bears (Little Golden Book)', 'https://images.isbndb.com/covers/14/71/9780307101471.jpg'), + ('0061000299', 'Listening Woman (Joe Leaphorn Novels)', 'https://images.isbndb.com/covers/02/94/9780061000294.jpg'), + ('0380731207', 'The Night Of Four Hundred Rabbits', 'https://images.isbndb.com/covers/12/06/9780380731206.jpg'), + ('1550130684', 'The Lighthearted Cookbook: Recipes For Healthy Heart Cooking', 'https://images.isbndb.com/covers/06/83/9781550130683.jpg'), + ('0471142425', 'The HTML Sourcebook: A Complete Guide To HTML 3.0 (Sourcebooks)', 'https://images.isbndb.com/covers/24/23/9780471142423.jpg'), + ('0440413281', 'Bud, Not Buddy (Newbery Medal Winner, 2000)', 'https://images.isbndb.com/covers/32/88/9780440413288.jpg'), + ('0345432479', 'Crazy In Alabama', 'https://images.isbndb.com/covers/24/76/9780345432476.jpg'), + ('0446609560', 'The Hook', 'https://images.isbndb.com/covers/95/62/9780446609562.jpg'), + ('0449912108', 'The Witches Of Eastwick', 'https://images.isbndb.com/covers/21/02/9780449912102.jpg'), + ('0531150011', 'The Angel''s Dictionary: A Modern Tribute To Ambrose Bierce', 'https://images.isbndb.com/covers/00/16/9780531150016.jpg'), + ('067940712X', 'One True Thing', 'https://images.isbndb.com/covers/71/26/9780679407126.jpg'), + ('1896300421', 'Dispatches From A Borderless World', 'https://images.isbndb.com/covers/04/29/9781896300429.jpg'), + ('188259312X', 'Patty Jane''s House Of Curl: A Novel', 'https://images.isbndb.com/covers/31/25/9781882593125.jpg'), + ('0609810030', 'Love Stories Of World War II', 'https://images.isbndb.com/covers/00/33/9780609810033.jpg'), + ('0670894699', 'The Florabama Ladies'' Auxiliary & Sewing Circle', 'https://images.isbndb.com/covers/46/97/9780670894697.jpg'), + ('0452283086', 'The Cross-Country Quilters', 'https://images.isbndb.com/covers/30/84/9780452283084.jpg'), + ('0553573292', 'Bright Messengers: A New Novel Set In The Rama Universe', 'https://images.isbndb.com/covers/32/99/9780553573299.jpg'), + ('0448168278', 'Disney Wrld Of Riddl', 'https://images.isbndb.com/covers/82/72/9780448168272.jpg'), + ('0679810528', 'Wild, Wild Wolves (Step Into Reading)', 'https://images.isbndb.com/covers/05/20/9780679810520.jpg'), + ('0061000035', 'The Dark Wind (Jim Chee Novels)', 'https://images.isbndb.com/covers/00/34/9780061000034.jpg'), + ('038081093X', 'Excavation', 'https://images.isbndb.com/covers/09/32/9780380810932.jpg'), + ('2910188132', 'L''Alchimiste', 'https://images.isbndb.com/covers/81/39/9782910188139.jpg'), + ('0684867974', 'Take The Cannoli: Stories From The New World', 'https://images.isbndb.com/covers/79/77/9780684867977.jpg'), + ('0060924349', 'Maybe The Moon: A Novel', 'https://images.isbndb.com/covers/43/48/9780060924348.jpg'), + ('0373289170', 'The Devil Earl (Harlequin Historical, No 317)', 'https://images.isbndb.com/covers/91/72/9780373289172.jpg'), + ('0671627759', 'Ride The Thunder', 'https://images.isbndb.com/covers/77/51/9780671627751.jpg'), + ('0440225116', 'Secrecy', 'https://images.isbndb.com/covers/51/19/9780440225119.jpg'), + ('0316171638', 'Tangled Vines', 'https://images.isbndb.com/covers/16/32/9780316171632.jpg'), + ('0440214009', 'Treasures', 'https://images.isbndb.com/covers/40/07/9780440214007.jpg'), + ('342312203X', 'Der Ehrliche Lügner: Roman Von Tausendundeiner Lüge', 'https://images.isbndb.com/covers/20/30/9783423122030.jpg'), + ('3257211945', 'Das Hotel New Hampshire', 'https://images.isbndb.com/covers/19/48/9783257211948.jpg'), + ('3499156717', 'PanAroma: Jitterbug Perfume', 'https://images.isbndb.com/covers/67/17/9783499156717.jpg'), + ('3442448387', 'Der Gott Der Kleinen Dinge.', 'https://images.isbndb.com/covers/83/88/9783442448388.jpg'), + ('3257231008', 'Vendetta', 'https://images.isbndb.com/covers/10/07/9783257231007.jpg'), + ('0330346261', 'Acqua Alta', 'https://images.isbndb.com/covers/62/69/9780330346269.jpg'), + ('0671743481', 'The University Of Chicago Spanish - English English - Spanish Dictionary', 'https://images.isbndb.com/covers/34/82/9780671743482.jpg'), + ('067187876X', 'Armageddon', 'https://images.isbndb.com/covers/87/64/9780671878764.jpg'), + ('0140320431', 'Charlie And The Great Glass Elevator (Puffin Story Books) (French Edition)', 'https://images.isbndb.com/covers/04/35/9780140320435.jpg'), + ('0743471520', 'Thraxas', 'https://images.isbndb.com/covers/15/27/9780743471527.jpg'), + ('044166251X', 'Phule''s Company', 'https://images.isbndb.com/covers/25/17/9780441662517.jpg'), + ('0713724048', 'Time Travel: Fact, Fiction, & Possibility', 'https://images.isbndb.com/covers/40/42/9780713724042.jpg'), + ('0006727492', 'Berry Moon (Lions)', 'https://images.isbndb.com/covers/74/91/9780006727491.jpg'), + ('0440999197', 'The Young Unicorns', 'https://images.isbndb.com/covers/91/95/9780440999195.jpg'), + ('0471062189', 'Small Business Management (The Wiley Series In Management)', 'https://images.isbndb.com/covers/21/89/9780471062189.jpg'), + ('0375758453', 'Without Reservations: The Travels Of An Independent Woman', 'https://images.isbndb.com/covers/84/54/9780375758454.jpg'), + ('0843950552', 'The Infinite (Leisure Horror)', 'https://images.isbndb.com/covers/05/57/9780843950557.jpg'), + ('0553560719', 'Dark Force Rising (Star Wars: The Thrawn Trilogy, Book 2)', 'https://images.isbndb.com/covers/07/18/9780553560718.jpg'), + ('0451168615', 'Skeleton Crew', 'https://images.isbndb.com/covers/86/10/9780451168610.jpg'), + ('0028617363', 'The Complete Idiot''s Guide To Chess', 'https://images.isbndb.com/covers/73/67/9780028617367.jpg'), + ('0886779146', 'My Favorite Horror Story', 'https://images.isbndb.com/covers/91/46/9780886779146.jpg'), + ('0385334206', 'Breakfast Of Champions: A Novel', 'https://images.isbndb.com/covers/42/04/9780385334204.jpg'), + ('0671027492', 'Ghost Roads (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/74/90/9780671027490.jpg'), + ('1853260010', 'Wuthering Heights (Wordsworth Classics)', 'https://images.isbndb.com/covers/00/18/9781853260018.jpg'), + ('0449220605', 'He, She And It', 'https://images.isbndb.com/covers/06/03/9780449220603.jpg'), + ('0553379267', 'A Canticle For Leibowitz (Bantam Spectra Book)', 'https://images.isbndb.com/covers/92/66/9780553379266.jpg'), + ('1853260002', 'Pride & Prejudice (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/01/9781853260001.jpg'), + ('1853260614', 'Dr. Jekyll And Mr. Hyde (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/12/9781853260612.jpg'), + ('0553560735', 'Red Mars (Mars Trilogy)', 'https://images.isbndb.com/covers/07/32/9780553560732.jpg'), + ('0671027506', 'Sons Of Entropy(Buffy The Vampire Slayer Gatekeeper Trilogy)', 'https://images.isbndb.com/covers/75/06/9780671027506.jpg'), + ('0671024345', 'Out Of The Madhouse ( Buffy The Vampire Slayer )', 'https://images.isbndb.com/covers/43/45/9780671024345.jpg'), + ('0345384229', 'The Road To Madness', 'https://images.isbndb.com/covers/42/25/9780345384225.jpg'), + ('0449006883', 'Magic Terror', 'https://images.isbndb.com/covers/68/87/9780449006887.jpg'), + ('0060952822', 'The Simpsons Guide To Springfield', 'https://images.isbndb.com/covers/28/22/9780060952822.jpg'), + ('0553106651', 'Seize The Night', 'https://images.isbndb.com/covers/66/57/9780553106657.jpg'), + ('0671025538', 'The Titanic Disaster Hearings', 'https://images.isbndb.com/covers/55/33/9780671025533.jpg'), + ('0345413997', 'The Door Into Summer', 'https://images.isbndb.com/covers/39/94/9780345413994.jpg'), + ('1853260444', 'The Moonstone (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/04/45/9781853260445.jpg'), + ('1853260770', 'Woman In White (Wordsworth Classics)', 'https://images.isbndb.com/covers/07/73/9781853260773.jpg'), + ('0312863853', 'Robert Bloch: Appreciations Of The Master', 'https://images.isbndb.com/covers/38/52/9780312863852.jpg'), + ('0671026291', 'The Xander Years, Volume 1', 'https://images.isbndb.com/covers/62/95/9780671026295.jpg'), + ('0425099334', 'Shattered', 'https://images.isbndb.com/covers/93/39/9780425099339.jpg'), + ('3442541425', 'Anderer Leute Dreck', 'https://images.isbndb.com/covers/14/23/9783442541423.jpg'), + ('067972205X', 'The Story Of A Shipwrecked Sailor', 'https://images.isbndb.com/covers/20/52/9780679722052.jpg'), + ('0446912069', 'The Celestine Prophecy: A Pocket Guide To The Nine Insights', 'https://images.isbndb.com/covers/20/68/9780446912068.jpg'), + ('0802112803', 'October Eight O''Clock', 'https://images.isbndb.com/covers/28/04/9780802112804.jpg'), + ('0399135847', 'Billy', 'https://images.isbndb.com/covers/58/42/9780399135842.jpg'), + ('0813517508', 'Cruz Chronicles (Rutgers Press Fiction)', 'https://images.isbndb.com/covers/75/06/9780813517506.jpg'), + ('067978148X', 'The Rules Of Attraction', 'https://images.isbndb.com/covers/14/86/9780679781486.jpg'), + ('0871135701', 'Burmese Looking Glass: A Human Rights Adventure And A Jungle Revolution', 'https://images.isbndb.com/covers/57/04/9780871135704.jpg'), + ('1551667479', 'The Other Twin', 'https://images.isbndb.com/covers/74/78/9781551667478.jpg'), + ('0671027115', 'Lily Of The Valley', 'https://images.isbndb.com/covers/71/17/9780671027117.jpg'), + ('0671785141', 'My Own Country.', 'https://images.isbndb.com/covers/51/47/9780671785147.jpg'), + ('006000777X', 'The Lies That Bind: A Novel', 'https://images.isbndb.com/covers/77/75/9780060007775.jpg'), + ('0671891650', 'Pretty Boy Floyd', 'https://images.isbndb.com/covers/16/57/9780671891657.jpg'), + ('0060391022', 'A Village Affair', 'https://images.isbndb.com/covers/10/27/9780060391027.jpg'), + ('1577330080', 'Compassion For All Creatures', 'https://images.isbndb.com/covers/00/80/9781577330080.jpg'), + ('0786711035', 'Beasts (Otto Penzler Books)', 'https://images.isbndb.com/covers/10/31/9780786711031.jpg'), + ('0618263276', 'Special: A Novel', 'https://images.isbndb.com/covers/32/71/9780618263271.jpg'), + ('0684853507', 'Bag Of Bones', 'https://images.isbndb.com/covers/35/05/9780684853505.jpg'), + ('0385492235', 'An Invisible Sign Of My Own', 'https://images.isbndb.com/covers/22/32/9780385492232.jpg'), + ('0761516735', 'You Can Save The Animals: 251 Simple Ways To Stop Thoughtless Cruelty', 'https://images.isbndb.com/covers/67/36/9780761516736.jpg'), + ('0060931353', 'Cowboy: A Novel', 'https://images.isbndb.com/covers/13/53/9780060931353.jpg'), + ('0345407083', 'Do Unto Others', 'https://images.isbndb.com/covers/70/85/9780345407085.jpg'), + ('1570671222', 'Shopping Guide For Caring Consumers: A Guide To Products That Are Not Tested On Animals', 'https://images.isbndb.com/covers/12/27/9781570671227.jpg'), + ('080213338X', 'Try', 'https://images.isbndb.com/covers/33/80/9780802133380.jpg'), + ('0722513585', 'THE SINGLE VEGETARIAN: HEALTHY RECIPES FOR ONE', 'https://images.isbndb.com/covers/35/83/9780722513583.jpg'), + ('0385488947', 'Eleven Days: A Novel Of The Heartland', 'https://images.isbndb.com/covers/89/45/9780385488945.jpg'), + ('0446522422', 'One Better', 'https://images.isbndb.com/covers/24/27/9780446522427.jpg'), + ('0446522384', 'Charmed Circle', 'https://images.isbndb.com/covers/23/80/9780446522380.jpg'), + ('0345380673', 'No Man In The House', 'https://images.isbndb.com/covers/06/78/9780345380678.jpg'), + ('0446524182', 'How Close We Come: A Novel Of Women''s Friendships', 'https://images.isbndb.com/covers/41/86/9780446524186.jpg'), + ('0670865796', 'The Deep End Of The Ocean', 'https://images.isbndb.com/covers/57/96/9780670865796.jpg'), + ('0525241604', 'Prodigal Child', 'https://images.isbndb.com/covers/16/07/9780525241607.jpg'), + ('0399146296', 'Sarah''s Window: A Novel', 'https://images.isbndb.com/covers/62/99/9780399146299.jpg'), + ('031230238X', 'Alexandra: The Last Tsarina', 'https://images.isbndb.com/covers/23/82/9780312302382.jpg'), + ('0312859589', 'Shadow Of Ashland', 'https://images.isbndb.com/covers/95/89/9780312859589.jpg'), + ('0802139566', 'Fair Warning: A Novel', 'https://images.isbndb.com/covers/95/66/9780802139566.jpg'), + ('0805042156', 'The Feng Shui Handbook: How To Create A Healthier Living & Working Environment (Henry Holt Reference Book)', 'https://images.isbndb.com/covers/21/53/9780805042153.jpg'), + ('155870275X', 'Cover Letters That Will Get You The Job You Want', 'https://images.isbndb.com/covers/27/52/9781558702752.jpg'), + ('006019295X', 'Hello To The Cannibals: A Novel', 'https://images.isbndb.com/covers/29/52/9780060192952.jpg'), + ('0385484003', 'Bitch', 'https://images.isbndb.com/covers/40/08/9780385484008.jpg'), + ('0060185716', 'Triggerfish Twist: A Novel', 'https://images.isbndb.com/covers/57/18/9780060185718.jpg'), + ('0517163128', 'Friends Are Special', 'https://images.isbndb.com/covers/31/22/9780517163122.jpg'), + ('0671521004', 'The Journal Of Callie Wade', 'https://images.isbndb.com/covers/10/04/9780671521004.jpg'), + ('1401300065', 'Gasping For Airtime: Two Years In The Trenches Of Saturday Night Live', 'https://images.isbndb.com/covers/00/67/9781401300067.jpg'), + ('0061031542', 'Orange Crush', 'https://images.isbndb.com/covers/15/40/9780061031540.jpg'), + ('0618197338', 'The Best American Short Stories 2003', 'https://images.isbndb.com/covers/73/30/9780618197330.jpg'), + ('0399237232', 'Triss (Redwall, Book 15)', 'https://images.isbndb.com/covers/72/32/9780399237232.jpg'), + ('0316603570', '3rd Degree', 'https://images.isbndb.com/covers/35/77/9780316603577.jpg'), + ('0312318898', 'The Perfumed Sleeve: A Novel (Sano Ichiro Mystery)', 'https://images.isbndb.com/covers/88/95/9780312318895.jpg'), + ('0312289723', 'Ten Big Ones (Stephanie Plum, No. 10) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/97/20/9780312289720.jpg'), + ('0671659154', 'Sherlock Holmes And The Case Of Sabina Hall', 'https://images.isbndb.com/covers/91/58/9780671659158.jpg'), + ('0553801945', 'The Game', 'https://images.isbndb.com/covers/19/41/9780553801941.jpg'), + ('0811828301', 'Dog Bless America: Tails From The Road', 'https://images.isbndb.com/covers/83/07/9780811828307.jpg'), + ('0765347156', 'The Adventuress: An Irene Adler Novel', 'https://images.isbndb.com/covers/71/52/9780765347152.jpg'), + ('0740713949', 'A Little Look-See: Mutts 6', 'https://images.isbndb.com/covers/39/41/9780740713941.jpg'), + ('0836269195', 'Three Dog Bakery Cookbook: Over 50 Recipes For All-Natural Treats For Your Dog', 'https://images.isbndb.com/covers/91/92/9780836269192.jpg'), + ('0060745908', 'Wicked: The Life And Times Of The Wicked Witch Of The West (Musical Tie-in Edition)', 'https://images.isbndb.com/covers/59/05/9780060745905.jpg'), + ('0425192725', 'Q Is For Quarry (Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/27/26/9780425192726.jpg'), + ('0553579525', 'The Moor (Mary Russell Novels)', 'https://images.isbndb.com/covers/95/29/9780553579529.jpg'), + ('0380792745', 'The Lust Lizard Of Melancholy Cove', 'https://images.isbndb.com/covers/27/40/9780380792740.jpg'), + ('0688167829', 'Florida Roadkill', 'https://images.isbndb.com/covers/78/20/9780688167820.jpg'), + ('0812517024', 'Irene At Large: An Irene Adler Novel (Irene Adler Mysteries)', 'https://images.isbndb.com/covers/70/26/9780812517026.jpg'), + ('0399146652', 'The Cat Who Smelled A Rat', 'https://images.isbndb.com/covers/66/57/9780399146657.jpg'), + ('006056198X', 'Bleachy-Haired Honky Bitch: Tales From A Bad Neighborhood', 'https://images.isbndb.com/covers/19/87/9780060561987.jpg'), + ('0553573985', 'Gibbon''s Decline And Fall', 'https://images.isbndb.com/covers/39/85/9780553573985.jpg'), + ('0312065647', 'The Best Of Pulphouse: The Hardback Magazine', 'https://images.isbndb.com/covers/56/45/9780312065645.jpg'), + ('0671578448', 'The Unlikely Ones', 'https://images.isbndb.com/covers/84/42/9780671578442.jpg'), + ('0671042831', 'Moonlight On The Avenue Of Faith', 'https://images.isbndb.com/covers/28/37/9780671042837.jpg'), + ('0312199406', 'Night Of Many Dreams: A Novel', 'https://images.isbndb.com/covers/94/01/9780312199401.jpg'), + ('0393046974', 'House Of Sand And Fog (Oprah''s Book Club)', 'https://images.isbndb.com/covers/69/77/9780393046977.jpg'), + ('0312968884', 'Singing In The Shrouds', 'https://images.isbndb.com/covers/88/85/9780312968885.jpg'), + ('0756401356', 'The War Of The Flowers', 'https://images.isbndb.com/covers/13/51/9780756401351.jpg'), + ('0671656155', 'The Fall Of Atlantis', 'https://images.isbndb.com/covers/61/57/9780671656157.jpg'), + ('0968288308', 'Gang Ranch: The Real Story', 'https://images.isbndb.com/covers/83/06/9780968288306.jpg'), + ('0808514121', 'East Of Eden (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/41/21/9780808514121.jpg'), + ('0345450698', 'Clay''s Quilt (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/06/92/9780345450692.jpg'), + ('0375412530', 'Back When We Were Grownups: A Novel', 'https://images.isbndb.com/covers/25/30/9780375412530.jpg'), + ('0969799152', 'Alaska By Cruise Ship: The Complete Guide To The Alaska Cruise Experience', 'https://images.isbndb.com/covers/91/53/9780969799153.jpg'), + ('0696218364', 'Paige By Paige: A Year Of Trading Spaces', 'https://images.isbndb.com/covers/83/61/9780696218361.jpg'), + ('0787123730', 'Mother Of Pearl', 'https://images.isbndb.com/covers/37/34/9780787123734.jpg'), + ('1565115430', 'Girl In Hyacinth Blue (Highbridge Distribution)', 'https://images.isbndb.com/covers/54/39/9781565115439.jpg'), + ('1574533525', 'Dressing Up For The Carnival', 'https://images.isbndb.com/covers/35/21/9781574533521.jpg'), + ('0140285679', 'ABOUT A BOY.', 'https://images.isbndb.com/covers/56/73/9780140285673.jpg'), + ('0824518977', 'Divine Things: Seeking The Sacred In A Secular Age', 'https://images.isbndb.com/covers/89/74/9780824518974.jpg'), + ('0553569031', 'Gone, But Not Forgotten', 'https://images.isbndb.com/covers/90/32/9780553569032.jpg'), + ('1558008764', 'Slow Waltz In Cedar Bend (Unabridged)', 'https://images.isbndb.com/covers/87/62/9781558008762.jpg'), + ('0553472704', 'Beach Music (BDD Audio)', 'https://images.isbndb.com/covers/27/07/9780553472707.jpg'), + ('1559273909', 'Anything Considered: A Novel', 'https://images.isbndb.com/covers/39/09/9781559273909.jpg'), + ('1402511787', 'Atonement', 'https://images.isbndb.com/covers/17/83/9781402511783.jpg'), + ('0671779664', 'Scarlett: The Sequel To Margaret Mitchell''s Gone With The Wind', 'https://images.isbndb.com/covers/96/65/9780671779665.jpg'), + ('0804114609', 'Patty Jane''s House Of Curl', 'https://images.isbndb.com/covers/46/08/9780804114608.jpg'), + ('0743249275', 'Lean Thinking: Banish Waste And Create Wealth In Your Corporation, Revised And Updated', 'https://images.isbndb.com/covers/92/70/9780743249270.jpg'), + ('0345438825', 'Angry Housewives Eating Bon Bons', 'https://images.isbndb.com/covers/88/29/9780345438829.jpg'), + ('0380868768', 'The Secret Diary Of Adrian Mole, Aged 13 3/4', 'https://images.isbndb.com/covers/87/66/9780380868766.jpg'), + ('039915079X', 'The Teeth Of The Tiger', 'https://images.isbndb.com/covers/07/91/9780399150791.jpg'), + ('0670894508', 'Cause Celeb', 'https://images.isbndb.com/covers/45/05/9780670894505.jpg'), + ('0312983743', 'Knock Me Off My Feet', 'https://images.isbndb.com/covers/37/41/9780312983741.jpg'), + ('069452526X', 'A Theory Of Relativity CD', 'https://images.isbndb.com/covers/52/63/9780694525263.jpg'), + ('0385729340', 'The Second Summer Of The Sisterhood (Sisterhood Of The Traveling Pants, Book 2)', 'https://images.isbndb.com/covers/93/45/9780385729345.jpg'), + ('0517122707', 'A Confederacy Of Dunces', 'https://images.isbndb.com/covers/27/09/9780517122709.jpg'), + ('0679463135', 'The Pursuit Of Alice Thrift', 'https://images.isbndb.com/covers/31/39/9780679463139.jpg'), + ('0375508716', 'Motherhood And Hollywood: How To Get A Job Like Mine', 'https://images.isbndb.com/covers/87/14/9780375508714.jpg'), + ('089281859X', 'The Templars And The Assassins: The Militia Of Heaven', 'https://images.isbndb.com/covers/85/94/9780892818594.jpg'), + ('075284332X', 'Bleeding Hearts (A Jack Harvey Novel)', 'https://images.isbndb.com/covers/33/22/9780752843322.jpg'), + ('9724115380', 'A Hora De Sertorio (Finisterra) (Portuguese Edition)', 'https://images.isbndb.com/covers/53/82/9789724115382.jpg'), + ('0451450523', 'The Last Unicorn', 'https://images.isbndb.com/covers/05/24/9780451450524.jpg'), + ('0752801716', 'When The Sky Fell In Search Of Atlantis', 'https://images.isbndb.com/covers/17/11/9780752801711.jpg'), + ('0330331973', 'River God', 'https://images.isbndb.com/covers/19/75/9780330331975.jpg'), + ('0006510019', 'K', 'https://images.isbndb.com/covers/00/17/9780006510017.jpg'), + ('058621089X', 'Judas Testament', 'https://images.isbndb.com/covers/08/95/9780586210895.jpg'), + ('0864423705', 'Lost Japan', 'https://images.isbndb.com/covers/37/02/9780864423702.jpg'), + ('4770016964', 'カタカナ練習ノート (POWER JAPANESE)', 'https://images.isbndb.com/covers/69/66/9784770016966.jpg'), + ('0586045449', 'Bomber', 'https://images.isbndb.com/covers/54/42/9780586045442.jpg'), + ('0586200967', 'The Blood God', 'https://images.isbndb.com/covers/09/64/9780586200964.jpg'), + ('0441132448', 'Cyberstealth', 'https://images.isbndb.com/covers/24/47/9780441132447.jpg'), + ('0553212427', 'Sherlock Holmes: The Complete Novels And Stories, Volume II (Bantam Classic)', 'https://images.isbndb.com/covers/24/26/9780553212426.jpg'), + ('0553212419', 'Sherlock Holmes: The Complete Novels And Stories, Vol. 1', 'https://images.isbndb.com/covers/24/19/9780553212419.jpg'), + ('0553577778', 'Infinity''s Shore (The Uplift Trilogy, Book 2)', 'https://images.isbndb.com/covers/77/78/9780553577778.jpg'), + ('0671037307', 'Water Of Life (The Wanderers)', 'https://images.isbndb.com/covers/73/07/9780671037307.jpg'), + ('0671037293', 'Song Of The Earth :2 (Earthlight)', 'https://images.isbndb.com/covers/72/91/9780671037291.jpg'), + ('0671037285', 'Circle And The Cross', 'https://images.isbndb.com/covers/72/84/9780671037284.jpg'), + ('031298328X', 'Full Tilt', 'https://images.isbndb.com/covers/32/84/9780312983284.jpg'), + ('0451205626', 'Cold Paradise (Stone Barrington)', 'https://images.isbndb.com/covers/56/29/9780451205629.jpg'), + ('0380802937', 'Someday My Prince', 'https://images.isbndb.com/covers/29/37/9780380802937.jpg'), + ('0446606456', 'An Isolated Incident', 'https://images.isbndb.com/covers/64/55/9780446606455.jpg'), + ('0449223043', 'Guardian', 'https://images.isbndb.com/covers/30/48/9780449223048.jpg'), + ('0553284118', 'Creature', 'https://images.isbndb.com/covers/41/19/9780553284119.jpg'), + ('0380802929', 'The Runaway Princess', 'https://images.isbndb.com/covers/29/20/9780380802920.jpg'), + ('0446364622', 'The Children Of Men', 'https://images.isbndb.com/covers/46/21/9780446364621.jpg'), + ('0140060898', 'The Mosquito Coast', 'https://images.isbndb.com/covers/08/98/9780140060898.jpg'), + ('0671737791', 'The Bride', 'https://images.isbndb.com/covers/77/95/9780671737795.jpg'), + ('0684826127', 'Water Witches', 'https://images.isbndb.com/covers/61/27/9780684826127.jpg'), + ('0060920335', 'Sure Of You', 'https://images.isbndb.com/covers/03/33/9780060920333.jpg'), + ('0345423135', 'The Magic Circle', 'https://images.isbndb.com/covers/31/39/9780345423139.jpg'), + ('1556613105', 'The Valiant Gunman (The House Of Winslow #14)', 'https://images.isbndb.com/covers/31/04/9781556613104.jpg'), + ('0373483937', 'Long Tall Texans: Emmett-Regan-Burke - LARGE TRADE PAPERBACK', 'https://images.isbndb.com/covers/39/38/9780373483938.jpg'), + ('0142002585', 'In This Mountain (The Mitford Years, Book 7)', 'https://images.isbndb.com/covers/25/82/9780142002582.jpg'), + ('0425068145', 'Promise Me The Dawn', 'https://images.isbndb.com/covers/81/44/9780425068144.jpg'), + ('0891079149', 'To Catch The Summer Wind (Seasons Of Intrigue, Book 5)', 'https://images.isbndb.com/covers/91/49/9780891079149.jpg'), + ('068482440X', 'Beachcombing For A Shipwrecked God', 'https://images.isbndb.com/covers/44/06/9780684824406.jpg'), + ('0373484488', 'Heaven On Earth', 'https://images.isbndb.com/covers/44/85/9780373484485.jpg'), + ('0764220314', 'Honor''s Pledge (Rocky Mountain Legacy #1) (Book 1)', 'https://images.isbndb.com/covers/03/19/9780764220319.jpg'), + ('0684800993', 'Our Noise', 'https://images.isbndb.com/covers/09/98/9780684800998.jpg'), + ('0451082028', 'Coma: Tie-In Edition (Signet)', 'https://images.isbndb.com/covers/20/22/9780451082022.jpg'), + ('0802726224', 'Abigail', 'https://images.isbndb.com/covers/62/23/9780802726223.jpg'), + ('0156002078', 'Silk Hope, NC (A Harvest Book) (Harvest American Writing)', 'https://images.isbndb.com/covers/20/73/9780156002073.jpg'), + ('0764223666', 'Evening Star (Sam Keaton: Legends Of Laramie, Book 1)', 'https://images.isbndb.com/covers/36/62/9780764223662.jpg'), + ('156476706X', 'Airwaves (Promises, A Romance)', 'https://images.isbndb.com/covers/70/66/9781564767066.jpg'), + ('0800757181', 'Daughter Of Joy (Brides Of Culdee Creek, Book 1)', 'https://images.isbndb.com/covers/71/82/9780800757182.jpg'), + ('1556618662', 'The Shunning (Heritage Of Lancaster County) (Book 1)', 'https://images.isbndb.com/covers/86/66/9781556618666.jpg'), + ('0891073906', 'This Present Darkness', 'https://images.isbndb.com/covers/39/01/9780891073901.jpg'), + ('187895105X', 'Huldah', 'https://images.isbndb.com/covers/10/52/9781878951052.jpg'), + ('0373218125', 'Mysterious', 'https://images.isbndb.com/covers/81/27/9780373218127.jpg'), + ('0380728133', 'Bloodsucking Fiends: A Love Story', 'https://images.isbndb.com/covers/81/38/9780380728138.jpg'), + ('1586420429', 'Kaddish In Dublin: An Inspector Matt Minogue Mystery', 'https://images.isbndb.com/covers/04/20/9781586420420.jpg'), + ('0060932147', 'The Book Of Laughter And Forgetting', 'https://images.isbndb.com/covers/21/45/9780060932145.jpg'), + ('0375724389', 'The Tie That Binds', 'https://images.isbndb.com/covers/43/81/9780375724381.jpg'), + ('0375422412', 'Three Junes', 'https://images.isbndb.com/covers/24/16/9780375422416.jpg'), + ('0764223291', 'The Redemption Of Sarah Cain', 'https://images.isbndb.com/covers/32/97/9780764223297.jpg'), + ('0449003981', 'A Patchwork Planet (Fawcett Book)', 'https://images.isbndb.com/covers/39/85/9780449003985.jpg'), + ('037570924X', 'An Equal Music: A Novel', 'https://images.isbndb.com/covers/92/41/9780375709241.jpg'), + ('0812930088', 'Starting And Running A Profitable Investment Club: The Official Guide From The National Association Of Investors Corporation Revised And Updated', 'https://images.isbndb.com/covers/00/85/9780812930085.jpg'), + ('0345435168', 'Open House: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/51/63/9780345435163.jpg'), + ('0786886323', 'Carter Beats The Devil', 'https://images.isbndb.com/covers/63/26/9780786886326.jpg'), + ('0747541604', 'Gashlycrumb Tinies', 'https://images.isbndb.com/covers/16/08/9780747541608.jpg'), + ('0840775717', 'The Third Millenium: A Novel', 'https://images.isbndb.com/covers/57/19/9780840775719.jpg'), + ('0061009482', 'The Sacrifice Of Tamar', 'https://images.isbndb.com/covers/94/88/9780061009488.jpg'), + ('0380730847', 'The Forgotten (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/08/41/9780380730841.jpg'), + ('0373243820', 'A Love Beyond Words (50th Book) (Harlequin Special Edition)', 'https://images.isbndb.com/covers/38/22/9780373243822.jpg'), + ('0373164394', 'Sunshine And Shadows (Harlequin American Romance)', 'https://images.isbndb.com/covers/43/94/9780373164394.jpg'), + ('0345441265', 'The Ladies Auxiliary (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/12/63/9780345441263.jpg'), + ('1573227528', 'Giving Up America', 'https://images.isbndb.com/covers/75/20/9781573227520.jpg'), + ('038078954X', 'Blood Money: A Mystery', 'https://images.isbndb.com/covers/95/42/9780380789542.jpg'), + ('0380819635', 'Lost In Your Arms (Governess Bride, Book 5)', 'https://images.isbndb.com/covers/96/38/9780380819638.jpg'), + ('0440221595', 'The Glass Lake', 'https://images.isbndb.com/covers/15/93/9780440221593.jpg'), + ('0316782475', 'The Dangerous Husband: A Novel', 'https://images.isbndb.com/covers/24/70/9780316782470.jpg'), + ('0525947299', 'No Second Chance', 'https://images.isbndb.com/covers/72/95/9780525947295.jpg'), + ('0140115773', 'What Am I Doing Here?', 'https://images.isbndb.com/covers/57/72/9780140115772.jpg'), + ('0060198184', 'The Lost Fleet: The Discovery Of A Sunken Armada From The Golden Age Of Piracy', 'https://images.isbndb.com/covers/81/83/9780060198183.jpg'), + ('0878332928', 'Citation: In A Class By Himself', 'https://images.isbndb.com/covers/29/22/9780878332922.jpg'), + ('0525947736', 'The Darwin Awards III: Survival Of The Fittest', 'https://images.isbndb.com/covers/77/38/9780525947738.jpg'), + ('0804119430', 'Horse Heaven', 'https://images.isbndb.com/covers/94/36/9780804119436.jpg'), + ('0618118810', 'The Best American Travel Writing 2003', 'https://images.isbndb.com/covers/88/16/9780618118816.jpg'), + ('0449906515', 'Dave Barry''s Only Travel Guide You''ll Ever Need', 'https://images.isbndb.com/covers/65/14/9780449906514.jpg'), + ('0671038443', 'The Devil''s Teardrop', 'https://images.isbndb.com/covers/84/41/9780671038441.jpg'), + ('0786884649', 'Confessions Of A Cineplex Heckler: Celluloid Tirades And Escapades', 'https://images.isbndb.com/covers/46/43/9780786884643.jpg'), + ('0786865539', 'My Goodness: A Cynic''s Short-Lived Search For Sainthood', 'https://images.isbndb.com/covers/55/36/9780786865536.jpg'), + ('0553263811', 'The Minds Of Billy Milligan', 'https://images.isbndb.com/covers/38/17/9780553263817.jpg'), + ('1857988884', 'Crescent City Rhapsody', 'https://images.isbndb.com/covers/88/88/9781857988888.jpg'), + ('0747256675', 'Gallery Whispers (Bob Skinner Mysteries)', 'https://images.isbndb.com/covers/66/70/9780747256670.jpg'), + ('0380767643', 'A Woman Without Lies', 'https://images.isbndb.com/covers/76/49/9780380767649.jpg'), + ('0440222656', 'The Horse Whisperer', 'https://images.isbndb.com/covers/26/51/9780440222651.jpg'), + ('0380569035', 'Earthly Powers', 'https://images.isbndb.com/covers/90/38/9780380569038.jpg'), + ('0380767635', 'Where The Heart Is', 'https://images.isbndb.com/covers/76/32/9780380767632.jpg'), + ('0380711982', 'Katherine: It''s Time : The Incredible True Story Of The Multiple Personalities Of Kit Castle', 'https://images.isbndb.com/covers/19/87/9780380711987.jpg'), + ('0312904568', 'Images', 'https://images.isbndb.com/covers/45/62/9780312904562.jpg'), + ('0452282063', 'Siam: Or The Woman Who Shot A Man', 'https://images.isbndb.com/covers/20/63/9780452282063.jpg'), + ('0192833170', 'Miss Julie And Other Plays (Oxford World''s Classics)', 'https://images.isbndb.com/covers/31/74/9780192833174.jpg'), + ('0140189351', 'Dangling Man (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/93/53/9780140189353.jpg'), + ('0671622021', 'Queen Of The Summer Stars', 'https://images.isbndb.com/covers/20/22/9780671622022.jpg'), + ('0486289990', 'This Side Of Paradise (Dover Thrift Editions)', 'https://images.isbndb.com/covers/99/91/9780486289991.jpg'), + ('0525468633', 'Postcards From No Man''s Land (Carnegie Medal Winner)', 'https://images.isbndb.com/covers/86/39/9780525468639.jpg'), + ('0441000150', 'Quantum Leap: The Wall', 'https://images.isbndb.com/covers/01/59/9780441000159.jpg'), + ('0671878662', 'Fiddler Fair', 'https://images.isbndb.com/covers/86/65/9780671878665.jpg'), + ('0070064547', 'Motherhood: The Second Oldest Profession', 'https://images.isbndb.com/covers/45/46/9780070064546.jpg'), + ('0897331222', 'An Afternoon To Kill', 'https://images.isbndb.com/covers/12/27/9780897331227.jpg'), + ('1557736022', 'Lesson In Murder', 'https://images.isbndb.com/covers/60/24/9781557736024.jpg'), + ('044022392X', 'The Keys To The Street', 'https://images.isbndb.com/covers/39/24/9780440223924.jpg'), + ('0446605913', 'Time To Depart (Marcus Didius Falco Mysteries)', 'https://images.isbndb.com/covers/59/15/9780446605915.jpg'), + ('0553254642', 'Some Buried Caesar (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/46/48/9780553254648.jpg'), + ('0553213806', 'The Dubliners', 'https://images.isbndb.com/covers/38/05/9780553213805.jpg'), + ('0451410025', 'I Am The Only Running Footman', 'https://images.isbndb.com/covers/00/23/9780451410023.jpg'), + ('0804118558', 'A Breach Of Promise (William Monk Novels)', 'https://images.isbndb.com/covers/85/52/9780804118552.jpg'), + ('0380808641', 'The Death Of An Irish Sinner: A Peter McGarr Mystery (Peter McGarr Mysteries)', 'https://images.isbndb.com/covers/86/49/9780380808649.jpg'), + ('1557735417', 'Holiday For Murder', 'https://images.isbndb.com/covers/54/16/9781557735416.jpg'), + ('0385722109', 'Hotel World', 'https://images.isbndb.com/covers/21/00/9780385722100.jpg'), + ('1931166196', 'World Leaders Speak: The Messiah Has Come', 'https://images.isbndb.com/covers/61/95/9781931166195.jpg'), + ('0947782753', 'Scottish Ghost Stories', 'https://images.isbndb.com/covers/27/57/9780947782757.jpg'), + ('0679433015', 'Servant Of The Bones', 'https://images.isbndb.com/covers/30/19/9780679433019.jpg'), + ('0394587863', 'The Witching Hour', 'https://images.isbndb.com/covers/78/68/9780394587868.jpg'), + ('0517150646', 'History Of The Devil And The Idea Of Evil', 'https://images.isbndb.com/covers/06/41/9780517150641.jpg'), + ('0440136482', 'Holy Blood, Holy Grail', 'https://images.isbndb.com/covers/64/84/9780440136484.jpg'), + ('0867163968', 'To Live As Francis Lived: A Guide For Secular Franciscans (The Path Of Franciscan Spirituality)', 'https://images.isbndb.com/covers/39/64/9780867163964.jpg'), + ('0883781042', 'The Isis Papers: The Keys To The Colors', 'https://images.isbndb.com/covers/10/43/9780883781043.jpg'), + ('0913866156', 'Aleister Crowley Thoth Tarot Deck', 'https://images.isbndb.com/covers/61/53/9780913866153.jpg'), + ('0094717907', 'The Grail: From Celtic Myth To Christian Symbol (Celtic Interest)', 'https://images.isbndb.com/covers/79/09/9780094717909.jpg'), + ('1887161120', 'A Soul''s Journey: Empowering The Present Through Past Life Regression, Reincarnation, Karma, And Past Life Memories Of The Holocaust. A Healing Guide To Your Spiritual Self.', 'https://images.isbndb.com/covers/11/21/9781887161121.jpg'), + ('0385188579', 'Astrological Aspects', 'https://images.isbndb.com/covers/85/79/9780385188579.jpg'), + ('0451196805', 'Past Lives, Present Loves (Visions, Signet)', 'https://images.isbndb.com/covers/68/04/9780451196804.jpg'), + ('0385132786', 'The Rising Sign: Your Astrological Mask', 'https://images.isbndb.com/covers/27/87/9780385132787.jpg'), + ('0671632949', 'Astrology And Your Past Lives', 'https://images.isbndb.com/covers/29/46/9780671632946.jpg'), + ('0767901576', 'Awakening The Buddha Within: Tibetan Wisdom For The Western World', 'https://images.isbndb.com/covers/15/74/9780767901574.jpg'), + ('0316899984', 'River, Cross My Heart: A Novel (Oprah''s Book Club)', 'https://images.isbndb.com/covers/99/87/9780316899987.jpg'), + ('3423130180', 'Schwarzer Rücken Der Zeit', 'https://images.isbndb.com/covers/01/89/9783423130189.jpg'), + ('0671820478', 'Golem 100', 'https://images.isbndb.com/covers/04/73/9780671820473.jpg'), + ('0843947888', 'Among The Missing', 'https://images.isbndb.com/covers/78/85/9780843947885.jpg'), + ('0385471106', 'Good Bones And Simple Murders', 'https://images.isbndb.com/covers/11/07/9780385471107.jpg'), + ('014029628X', 'Girl In Hyacinth Blue', 'https://images.isbndb.com/covers/62/80/9780140296280.jpg'), + ('3473581534', 'Jenseits Des Großen Meeres: Die Flucht', 'https://images.isbndb.com/covers/15/35/9783473581535.jpg'), + ('0590425919', 'White Fang (Apple Classics)', 'https://images.isbndb.com/covers/59/19/9780590425919.jpg'), + ('0394719557', 'States Of Ireland', 'https://images.isbndb.com/covers/95/59/9780394719559.jpg'), + ('0441478123', 'The Left Hand Of Darkness', 'https://images.isbndb.com/covers/81/25/9780441478125.jpg'), + ('006019393X', 'If The Gods Had Meant Us To Vote They Would Have Given Us Candidates', 'https://images.isbndb.com/covers/39/35/9780060193935.jpg'), + ('0743428668', 'Into The Woods (Andrews, V. C.)', 'https://images.isbndb.com/covers/86/68/9780743428668.jpg'), + ('1568650426', 'Frenchman''s Creek', 'https://images.isbndb.com/covers/04/25/9781568650425.jpg'), + ('1571742859', 'Michael Landon''s Legacy: 7 Keys To Supercharging Your Life', 'https://images.isbndb.com/covers/28/58/9781571742858.jpg'), + ('3462030426', 'Ich Bin''s', 'https://images.isbndb.com/covers/04/26/9783462030426.jpg'), + ('3596125723', 'Catch 22', 'https://images.isbndb.com/covers/57/22/9783596125722.jpg'), + ('006097141X', 'That Night', 'https://images.isbndb.com/covers/14/10/9780060971410.jpg'), + ('0380974487', 'End Of Days', 'https://images.isbndb.com/covers/44/81/9780380974481.jpg'), + ('325706277X', 'Handbuch Des Kriegers Des Lichts', 'https://images.isbndb.com/covers/27/79/9783257062779.jpg'), + ('0517703491', 'Lloyd--What Happened: A Novel Of Business', 'https://images.isbndb.com/covers/34/96/9780517703496.jpg'), + ('0739412930', 'Stealing Shadows', 'https://images.isbndb.com/covers/29/30/9780739412930.jpg'), + ('0739413279', 'Don''t Close Your Eyes', 'https://images.isbndb.com/covers/32/72/9780739413272.jpg'), + ('0821749889', 'The Club', 'https://images.isbndb.com/covers/98/83/9780821749883.jpg'), + ('0373970196', 'Twist Of Fate', 'https://images.isbndb.com/covers/01/93/9780373970193.jpg'), + ('0553563734', 'The King''s Buccaneer', 'https://images.isbndb.com/covers/37/33/9780553563733.jpg'), + ('0515129224', 'Soft Focus', 'https://images.isbndb.com/covers/92/29/9780515129229.jpg'), + ('0671676237', 'The GOLDEN CHANCE', 'https://images.isbndb.com/covers/62/30/9780671676230.jpg'), + ('0553801813', 'The Widow''s Kiss', 'https://images.isbndb.com/covers/18/11/9780553801811.jpg'), + ('0380016974', 'Captive Bride', 'https://images.isbndb.com/covers/69/76/9780380016976.jpg'), + ('0380809087', 'The Defiant One', 'https://images.isbndb.com/covers/90/80/9780380809080.jpg'), + ('0609805509', 'Debbie Travis'' Painted House Living & Dining Rooms: 60 Stylish Projects To Transform Your Home', 'https://images.isbndb.com/covers/55/03/9780609805503.jpg'), + ('0886778158', 'The Burning Stone (Crown Of Stars, Vol. 3)', 'https://images.isbndb.com/covers/81/56/9780886778156.jpg'), + ('0886778166', 'Prince Of Dogs (Crown Of Stars, Vol 2)', 'https://images.isbndb.com/covers/81/63/9780886778163.jpg'), + ('0671025945', 'Weeping Angel', 'https://images.isbndb.com/covers/59/46/9780671025946.jpg'), + ('0441009077', 'Never After', 'https://images.isbndb.com/covers/90/77/9780441009077.jpg'), + ('0375509089', 'Loose Lips', 'https://images.isbndb.com/covers/90/87/9780375509087.jpg'), + ('0449005844', 'The Wild Child', 'https://images.isbndb.com/covers/58/42/9780449005842.jpg'), + ('044922046X', 'Catering To Nobody', 'https://images.isbndb.com/covers/04/67/9780449220467.jpg'), + ('0671877836', 'Honor Among Enemies (Honor Harrington #6)', 'https://images.isbndb.com/covers/78/35/9780671877835.jpg'), + ('0671876813', 'Flag In Exile (Honor Harrington Series, Book 5)', 'https://images.isbndb.com/covers/68/14/9780671876814.jpg'), + ('0441090435', 'Callahan''s Crosstime Saloon', 'https://images.isbndb.com/covers/04/33/9780441090433.jpg'), + ('0425181685', 'Narcissus In Chains (Anita Blake, Vampire Hunter, Book 10)', 'https://images.isbndb.com/covers/16/83/9780425181683.jpg'), + ('0743435583', 'Miles Errant (Miles Vorkosigan Adventures)', 'https://images.isbndb.com/covers/55/81/9780743435581.jpg'), + ('0515130923', 'Dawn In Eclipse Bay', 'https://images.isbndb.com/covers/09/28/9780515130928.jpg'), + ('055357762X', 'The Prisoner', 'https://images.isbndb.com/covers/76/24/9780553577624.jpg'), + ('0380802325', 'Suddenly You', 'https://images.isbndb.com/covers/23/26/9780380802326.jpg'), + ('0425173356', 'Cat And The Countess', 'https://images.isbndb.com/covers/33/50/9780425173350.jpg'), + ('0553572040', 'Killer Pancake (Goldy Culinary Mysteries, Book 5)', 'https://images.isbndb.com/covers/20/49/9780553572049.jpg'), + ('0671721631', 'On Basilisk Station', 'https://images.isbndb.com/covers/16/33/9780671721633.jpg'), + ('0345435273', 'A Caress Of Twilight (Meredith Gentry, Book 2)', 'https://images.isbndb.com/covers/52/79/9780345435279.jpg'), + ('0380814803', 'The Pursuit', 'https://images.isbndb.com/covers/48/00/9780380814800.jpg'), + ('0399149678', 'Finding Caruso', 'https://images.isbndb.com/covers/96/72/9780399149672.jpg'), + ('0671035460', 'Pale Horse Coming', 'https://images.isbndb.com/covers/54/64/9780671035464.jpg'), + ('0778320286', 'Changing Habits', 'https://images.isbndb.com/covers/02/89/9780778320289.jpg'), + ('0451212169', 'Bright Eyes (Coulter Family Series)', 'https://images.isbndb.com/covers/21/60/9780451212160.jpg'), + ('0671871005', 'The Wedding', 'https://images.isbndb.com/covers/10/00/9780671871000.jpg'), + ('0373218877', 'Navy Woman (The Navy Series #4) (Silhouette Special Edition, No 683)', 'https://images.isbndb.com/covers/88/75/9780373218875.jpg'), + ('0755308530', 'Singing Bird', 'https://images.isbndb.com/covers/85/38/9780755308538.jpg'), + ('0451188713', 'A Jury Of Her Peers', 'https://images.isbndb.com/covers/87/17/9780451188717.jpg'), + ('0974087203', 'Heart And Soul: What It Takes To Promote Health While Confronting Cancer', 'https://images.isbndb.com/covers/72/07/9780974087207.jpg'), + ('0316095133', 'Evening Class', 'https://images.isbndb.com/covers/51/36/9780316095136.jpg'), + ('1573221597', 'Hunting With Hemingway: Based On The Stories Of Leicester Hemingway', 'https://images.isbndb.com/covers/15/97/9781573221597.jpg'), + ('0064472272', 'Angus, Thongs And Full-Frontal Snogging: Confessions Of Georgia Nicolson (Confessions Of Georgia Nicolson, Book 1)', 'https://images.isbndb.com/covers/22/72/9780064472272.jpg'), + ('0440224748', 'Four Corners Of Night', 'https://images.isbndb.com/covers/47/47/9780440224747.jpg'), + ('3492229352', 'Das Italienische Mädchen', 'https://images.isbndb.com/covers/93/57/9783492229357.jpg'), + ('0140446745', 'The Letters Of Vincent Van Gogh (Penguin Classics)', 'https://images.isbndb.com/covers/67/46/9780140446746.jpg'), + ('0486285537', '100 Best-Loved Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/55/35/9780486285535.jpg'), + ('0805210555', 'Franz Kafka: The Complete Stories', 'https://images.isbndb.com/covers/05/52/9780805210552.jpg'), + ('0451628047', 'The Inferno', 'https://images.isbndb.com/covers/80/46/9780451628046.jpg'), + ('0689839618', 'Great Expectations', 'https://images.isbndb.com/covers/96/10/9780689839610.jpg'), + ('0670878073', 'Wobegon Boy', 'https://images.isbndb.com/covers/80/79/9780670878079.jpg'), + ('0440114330', 'Close Encounters Of The Third Kind', 'https://images.isbndb.com/covers/43/38/9780440114338.jpg'), + ('0061059323', 'The X-Files: Fight The Future', 'https://images.isbndb.com/covers/93/22/9780061059322.jpg'), + ('0764228943', 'A Tapestry Of Hope (Lights Of Lowell Series #1)', 'https://images.isbndb.com/covers/89/40/9780764228940.jpg'), + ('0764228072', 'The Betrayal', 'https://images.isbndb.com/covers/80/70/9780764228070.jpg'), + ('0880384433', 'Dueltrack (Car Wars Adventure Game Book)', 'https://images.isbndb.com/covers/44/38/9780880384438.jpg'), + ('0515128600', 'The Edge (FBI Series)', 'https://images.isbndb.com/covers/86/04/9780515128604.jpg'), + ('0553583980', 'True Blue', 'https://images.isbndb.com/covers/39/84/9780553583984.jpg'), + ('0515121843', 'Sea Swept (Chesapeake Bay, Book 1)', 'https://images.isbndb.com/covers/18/41/9780515121841.jpg'), + ('0553560220', 'Illusion', 'https://images.isbndb.com/covers/02/20/9780553560220.jpg'), + ('3423130148', 'Es Geht Seinen Gang Oder Mühen In Unserer Ebene: Roman', 'https://images.isbndb.com/covers/01/41/9783423130141.jpg'), + ('0312872372', 'Mistress Of The Pearl (The Pearl, Book 3)', 'https://images.isbndb.com/covers/23/73/9780312872373.jpg'), + ('0071364498', 'Gipsy Moth Circles The World (The Sailor''s Classics #1)', 'https://images.isbndb.com/covers/44/92/9780071364492.jpg'), + ('0486292568', 'Wuthering Heights (Dover Thrift Editions)', 'https://images.isbndb.com/covers/25/64/9780486292564.jpg'), + ('0312952716', 'A Simple Plan', 'https://images.isbndb.com/covers/27/16/9780312952716.jpg'), + ('0446357928', 'Child Star', 'https://images.isbndb.com/covers/79/20/9780446357920.jpg'), + ('0375714529', 'David Boring', 'https://images.isbndb.com/covers/45/28/9780375714528.jpg'), + ('0451527712', 'Frankenstein (Signet Classics)', 'https://images.isbndb.com/covers/77/14/9780451527714.jpg'), + ('1565049489', 'Immaculate *OP', 'https://images.isbndb.com/covers/94/82/9781565049482.jpg'), + ('0486270734', 'Favorite Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/39/9780486270739.jpg'), + ('1888054069', 'Alphonse Mucha: An American Collection (Vignettes)', 'https://images.isbndb.com/covers/40/64/9781888054064.jpg'), + ('087542001X', 'Extra-Terrestrials Among Us (Llewellyn''s Psi-Tech Series)', 'https://images.isbndb.com/covers/00/11/9780875420011.jpg'), + ('0671474308', '2000 Insults', 'https://images.isbndb.com/covers/43/00/9780671474300.jpg'), + ('0345432223', 'Leonardo: Up Close And Personal', 'https://images.isbndb.com/covers/22/23/9780345432223.jpg'), + ('0876544766', 'A Small Book Of Fairies', 'https://images.isbndb.com/covers/47/61/9780876544761.jpg'), + ('019283097X', 'The Master Pipers (Oxford World''s Classics)', 'https://images.isbndb.com/covers/09/75/9780192830975.jpg'), + ('0831705183', 'Ansel Adams: Images Of The American West', 'https://images.isbndb.com/covers/51/83/9780831705183.jpg'), + ('0451525892', 'Sense And Sensibility: Revised Edition (Signet Classic)', 'https://images.isbndb.com/covers/58/95/9780451525895.jpg'), + ('0446391360', 'Headlines', 'https://images.isbndb.com/covers/13/68/9780446391368.jpg'), + ('0060965819', 'The Simpsons Xmas Book', 'https://images.isbndb.com/covers/58/15/9780060965815.jpg'), + ('0385044011', 'Poems That Touch The Heart', 'https://images.isbndb.com/covers/40/11/9780385044011.jpg'), + ('0451520955', 'Moll Flanders (Signet Classics)', 'https://images.isbndb.com/covers/09/51/9780451520951.jpg'), + ('0446373559', 'Instant Astrology', 'https://images.isbndb.com/covers/35/55/9780446373555.jpg'), + ('0883657147', 'Best Loved Poems To Read Again And Again: The Most Moving Verses In The English Language', 'https://images.isbndb.com/covers/71/40/9780883657140.jpg'), + ('0671039415', 'Fearless #1', 'https://images.isbndb.com/covers/94/17/9780671039417.jpg'), + ('0156612062', 'Modern Man In Search Of A Soul (Harvest Book)', 'https://images.isbndb.com/covers/20/67/9780156612067.jpg'), + ('0517692007', 'Poems Of Love', 'https://images.isbndb.com/covers/20/04/9780517692004.jpg'), + ('0679603301', 'Out Of Her Mind: Women Writing On Madness (Modern Library)', 'https://images.isbndb.com/covers/33/06/9780679603306.jpg'), + ('0312130279', 'The Bird Artist: A Novel', 'https://images.isbndb.com/covers/02/75/9780312130275.jpg'), + ('0847813754', 'Ralph Eugene Meatyard: An American Visionary', 'https://images.isbndb.com/covers/37/59/9780847813759.jpg'), + ('0140441034', 'Njal''s Saga (Penguin Classics)', 'https://images.isbndb.com/covers/10/31/9780140441031.jpg'), + ('0140443215', 'Egil''s Saga (Penguin Classics)', 'https://images.isbndb.com/covers/32/19/9780140443219.jpg'), + ('0871567865', 'The Best Of Edward Abbey', 'https://images.isbndb.com/covers/78/64/9780871567864.jpg'), + ('0375501517', 'The Island Of Lost Maps: A True Story Of Cartographic Crime', 'https://images.isbndb.com/covers/15/17/9780375501517.jpg'), + ('0679410341', 'Unto The Sons', 'https://images.isbndb.com/covers/03/48/9780679410348.jpg'), + ('0399147837', 'Shadow Warriors: Inside The Special Forces', 'https://images.isbndb.com/covers/78/38/9780399147838.jpg'), + ('0553354779', 'Graveyard For Lunatics, A', 'https://images.isbndb.com/covers/47/75/9780553354775.jpg'), + ('051511331X', 'November Of The Heart', 'https://images.isbndb.com/covers/33/10/9780515113310.jpg'), + ('0399147195', 'P Is For Peril (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/71/97/9780399147197.jpg'), + ('0312265840', 'Seven Up (Stephanie Plum, No. 7) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/58/47/9780312265847.jpg'), + ('0743206029', 'On The Street Where You Live: A Novel', 'https://images.isbndb.com/covers/60/20/9780743206020.jpg'), + ('038080025X', 'All I Desire', 'https://images.isbndb.com/covers/02/54/9780380800254.jpg'), + ('0515136263', 'Chesapeake Blue (The Chesapeake Bay Saga, Book 4)', 'https://images.isbndb.com/covers/62/65/9780515136265.jpg'), + ('0425157784', 'Mourn Not Your Dead', 'https://images.isbndb.com/covers/77/87/9780425157787.jpg'), + ('0553579312', 'Dreaming Of The Bones', 'https://images.isbndb.com/covers/93/14/9780553579314.jpg'), + ('0380725827', 'Firestorm (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/58/23/9780380725823.jpg'), + ('0380728265', 'Blind Descent (Anna Pigeon Mysteries)', 'https://images.isbndb.com/covers/82/68/9780380728268.jpg'), + ('0684835959', 'You Belong To Me', 'https://images.isbndb.com/covers/59/52/9780684835952.jpg'), + ('0786884592', 'Life Strategies: Doing What Works, Doing What Matters', 'https://images.isbndb.com/covers/45/99/9780786884599.jpg'), + ('0312958358', 'Tap, Tap', 'https://images.isbndb.com/covers/83/50/9780312958350.jpg'), + ('0316780375', 'The Weight Of Water', 'https://images.isbndb.com/covers/03/77/9780316780377.jpg'), + ('0446611948', 'Long Lost', 'https://images.isbndb.com/covers/19/47/9780446611947.jpg'), + ('067151699X', 'The HIDDEN LIFE OF DOGS', 'https://images.isbndb.com/covers/69/94/9780671516994.jpg'), + ('0452280958', 'The Tao Of Teaching: The Ageless Wisdom Of Taoism And The Art Of Teaching', 'https://images.isbndb.com/covers/09/53/9780452280953.jpg'), + ('078601525X', 'No Way Back', 'https://images.isbndb.com/covers/52/52/9780786015252.jpg'), + ('0452279607', 'The Gunslinger (The Dark Tower, Book 1)', 'https://images.isbndb.com/covers/96/05/9780452279605.jpg'), + ('0670272663', 'Different Seasons', 'https://images.isbndb.com/covers/26/62/9780670272662.jpg'), + ('0670451932', 'Cujo', 'https://images.isbndb.com/covers/19/37/9780670451937.jpg'), + ('0849911788', 'The Oath: A Novel', 'https://images.isbndb.com/covers/17/81/9780849911781.jpg'), + ('0333568745', 'River God (Egyptian Novels)', 'https://images.isbndb.com/covers/87/43/9780333568743.jpg'), + ('067943612X', 'Recessional', 'https://images.isbndb.com/covers/61/26/9780679436126.jpg'), + ('0743436210', 'Hearts In Atlantis', 'https://images.isbndb.com/covers/62/12/9780743436212.jpg'), + ('0061098280', 'Marilu Henner''s Total Health Makeover', 'https://images.isbndb.com/covers/82/84/9780061098284.jpg'), + ('0440236738', 'Gone For Good', 'https://images.isbndb.com/covers/67/33/9780440236733.jpg'), + ('0449902803', 'Unlimited Power', 'https://images.isbndb.com/covers/28/06/9780449902806.jpg'), + ('0399138250', 'Without Remorse', 'https://images.isbndb.com/covers/82/56/9780399138256.jpg'), + ('0804105820', 'It Was On Fire When I Lay Down On It', 'https://images.isbndb.com/covers/58/28/9780804105828.jpg'), + ('0671864416', 'First Things First', 'https://images.isbndb.com/covers/44/15/9780671864415.jpg'), + ('0553370715', 'Time Management For Unmanageable People: The Guilt-Free Way To Organize, Energize, And Maximize Your Life', 'https://images.isbndb.com/covers/07/13/9780553370713.jpg'), + ('0201101904', 'Procrastination Why You Do It What To Do About It', 'https://images.isbndb.com/covers/19/04/9780201101904.jpg'), + ('0671536214', 'God On A Harley: A Spiritual Fable', 'https://images.isbndb.com/covers/62/13/9780671536213.jpg'), + ('0440224721', 'Obstruction Of Justice', 'https://images.isbndb.com/covers/47/23/9780440224723.jpg'), + ('0446604844', 'Total Control', 'https://images.isbndb.com/covers/48/40/9780446604840.jpg'), + ('0061044490', 'Deep Lie', 'https://images.isbndb.com/covers/44/96/9780061044496.jpg'), + ('0451204514', 'Suspicion Of Vengeance', 'https://images.isbndb.com/covers/45/16/9780451204516.jpg'), + ('0440220696', 'Invasion Of Privacy', 'https://images.isbndb.com/covers/06/95/9780440220695.jpg'), + ('0449230643', 'Dark Inheritance', 'https://images.isbndb.com/covers/06/40/9780449230640.jpg'), + ('0380564998', 'Jacob Have I Loved', 'https://images.isbndb.com/covers/49/96/9780380564996.jpg'), + ('0671570072', 'Midsummer Bride', 'https://images.isbndb.com/covers/00/71/9780671570071.jpg'), + ('0880382651', 'Time Of The Twins Legends 1 (Dragonlance Legends Trilogy, Vol 1)', 'https://images.isbndb.com/covers/26/56/9780880382656.jpg'), + ('0802730981', 'You Have Yourself A Deal', 'https://images.isbndb.com/covers/09/85/9780802730985.jpg'), + ('1551665557', 'Family Way', 'https://images.isbndb.com/covers/55/59/9781551665559.jpg'), + ('1551668610', 'Sarah''s Child', 'https://images.isbndb.com/covers/86/11/9781551668611.jpg'), + ('0380817691', 'Stalker: A Peter Decker And Rina Lazarus Novel', 'https://images.isbndb.com/covers/76/96/9780380817696.jpg'), + ('0553582526', 'Dust To Dust', 'https://images.isbndb.com/covers/25/29/9780553582529.jpg'), + ('0684859734', 'Grave Secrets: A Novel (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/97/36/9780684859736.jpg'), + ('0345426037', 'The Broken Hearts Club (Conrad Voort Novels)', 'https://images.isbndb.com/covers/60/31/9780345426031.jpg'), + ('0671887971', 'Ring Of Truth', 'https://images.isbndb.com/covers/79/71/9780671887971.jpg'), + ('0345401964', 'Exit To Eden', 'https://images.isbndb.com/covers/19/60/9780345401960.jpg'), + ('0312983387', 'Killing The Shadows (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/33/83/9780312983383.jpg'), + ('055337396X', 'The Fine Art Of Erotic Talk: How To Entice, Excite, And Enchant Your Lover With Words', 'https://images.isbndb.com/covers/39/67/9780553373967.jpg'), + ('006104055X', 'A Man To Die For', 'https://images.isbndb.com/covers/05/59/9780061040559.jpg'), + ('0451173139', 'Night Over Water', 'https://images.isbndb.com/covers/31/33/9780451173133.jpg'), + ('0671038567', 'Body Of Evidence (Kay Scarpetta)', 'https://images.isbndb.com/covers/85/64/9780671038564.jpg'), + ('0451152190', 'Over The Edge', 'https://images.isbndb.com/covers/21/90/9780451152190.jpg'), + ('0141000198', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/01/90/9780141000190.jpg'), + ('067976268X', 'Anything Considered: A Novel', 'https://images.isbndb.com/covers/26/83/9780679762683.jpg'), + ('0425188213', 'Shades Of Earl Grey (A Tea Shop Mystery)', 'https://images.isbndb.com/covers/82/17/9780425188217.jpg'), + ('0425192121', 'The Torso In The Town (Fethering Mysteries)', 'https://images.isbndb.com/covers/21/22/9780425192122.jpg'), + ('0451184785', 'The Takeover', 'https://images.isbndb.com/covers/47/88/9780451184788.jpg'), + ('055309999X', 'The Main Corpse', 'https://images.isbndb.com/covers/99/97/9780553099997.jpg'), + ('0380804743', 'Miss Zukas Shelves The Evidence (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/47/40/9780380804740.jpg'), + ('0679734163', 'To Engineer Is Human: The Role Of Failure In Successful Design', 'https://images.isbndb.com/covers/41/61/9780679734161.jpg'), + ('006000469X', 'Engaged To Die (Death On Demand Mysteries, No. 14)', 'https://images.isbndb.com/covers/46/99/9780060004699.jpg'), + ('0553578316', 'Sticks & Scones (Goldy Culinary Mysteries, Book 10)', 'https://images.isbndb.com/covers/83/17/9780553578317.jpg'), + ('0380770334', 'Miss Zukas And The Stroke Of Death (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/03/35/9780380770335.jpg'), + ('0743225325', 'Good Harbor: A Novel', 'https://images.isbndb.com/covers/53/28/9780743225328.jpg'), + ('0446365386', 'Gone With The Wind', 'https://images.isbndb.com/covers/53/83/9780446365383.jpg'), + ('0804111634', 'Agatha Raisin And The Quiche Of Death (Agatha Raisin Mysteries, No. 1)', 'https://images.isbndb.com/covers/16/38/9780804111638.jpg'), + ('0804111626', 'Agatha Raisin And The Vicious Vet (Agatha Raisin Mysteries, No. 2)', 'https://images.isbndb.com/covers/16/21/9780804111621.jpg'), + ('1930722109', 'Why America''s Children Can''t Think: Creating Independent Minds For The 21st Century', 'https://images.isbndb.com/covers/21/01/9781930722101.jpg'), + ('055321330X', 'The Awakening', 'https://images.isbndb.com/covers/33/00/9780553213300.jpg'), + ('006091341X', 'The Bridge Of San Luis Rey (Perennial Classics)', 'https://images.isbndb.com/covers/34/10/9780060913410.jpg'), + ('0446519804', 'The Alibi', 'https://images.isbndb.com/covers/98/09/9780446519809.jpg'), + ('0446527017', 'Standoff', 'https://images.isbndb.com/covers/70/19/9780446527019.jpg'), + ('0399148450', 'Widow''s Walk: A Spenser Novel (Spenser Mysteries)', 'https://images.isbndb.com/covers/84/53/9780399148453.jpg'), + ('0451201515', 'Life On The Other Side: A Psychic''s Tour Of The Afterlife', 'https://images.isbndb.com/covers/15/15/9780451201515.jpg'), + ('0671727796', 'The Color Purple', 'https://images.isbndb.com/covers/77/96/9780671727796.jpg'), + ('0440194253', 'What Was Good About Today', 'https://images.isbndb.com/covers/42/55/9780440194255.jpg'), + ('0446523372', 'Thunderhead', 'https://images.isbndb.com/covers/33/70/9780446523370.jpg'), + ('0743456378', 'The Killing Kind: A Thriller', 'https://images.isbndb.com/covers/63/71/9780743456371.jpg'), + ('0439043999', 'Dracula Doesn''t Rock N'' Roll (The Adventures Of The Bailey School Kids, #39)', 'https://images.isbndb.com/covers/39/91/9780439043991.jpg'), + ('0590481150', 'Gremlins Don''t Chew Bubble Gum (The Bailey School Kids, Book 13)', 'https://images.isbndb.com/covers/11/51/9780590481151.jpg'), + ('0812504798', 'The Red Badge Of Courage (Tor Classics)', 'https://images.isbndb.com/covers/47/98/9780812504798.jpg'), + ('0440009782', 'The Canadians (Making Of America #38)', 'https://images.isbndb.com/covers/97/88/9780440009788.jpg'), + ('1565540387', 'Strange True Stories Of Louisiana', 'https://images.isbndb.com/covers/03/85/9781565540385.jpg'), + ('0440229464', 'Crooked', 'https://images.isbndb.com/covers/94/69/9780440229469.jpg'), + ('0064440257', 'Oscar Otter (I Can Read Book 1)', 'https://images.isbndb.com/covers/02/57/9780064440257.jpg'), + ('0061020702', 'The Light Fantastic', 'https://images.isbndb.com/covers/07/04/9780061020704.jpg'), + ('0425130223', 'Spook', 'https://images.isbndb.com/covers/02/23/9780425130223.jpg'), + ('0451161351', 'Cujo', 'https://images.isbndb.com/covers/13/52/9780451161352.jpg'), + ('0061057649', 'Feet Of Clay', 'https://images.isbndb.com/covers/76/49/9780061057649.jpg'), + ('0425100650', 'Twilight Eyes', 'https://images.isbndb.com/covers/06/53/9780425100653.jpg'), + ('0689845936', 'When Kambia Elaine Flew In From Neptune', 'https://images.isbndb.com/covers/59/32/9780689845932.jpg'), + ('0440202086', 'Visions: 19 Short Stories', 'https://images.isbndb.com/covers/20/80/9780440202080.jpg'), + ('0140060324', 'White Hotel (King Penguin)', 'https://images.isbndb.com/covers/03/24/9780140060324.jpg'), + ('0091841844', 'Lucias Measure', 'https://images.isbndb.com/covers/18/43/9780091841843.jpg'), + ('190085032X', 'The Twins', 'https://images.isbndb.com/covers/03/22/9781900850322.jpg'), + ('0440509238', 'Spin Cycle', 'https://images.isbndb.com/covers/92/33/9780440509233.jpg'), + ('0373218036', 'Truly, Madly Manhattan', 'https://images.isbndb.com/covers/80/35/9780373218035.jpg'), + ('2070725804', 'Comme Un Roman', 'https://images.isbndb.com/covers/58/09/9782070725809.jpg'), + ('0349113858', 'Kings Of Albion', 'https://images.isbndb.com/covers/38/52/9780349113852.jpg'), + ('0671047329', 'The Third Option', 'https://images.isbndb.com/covers/73/20/9780671047320.jpg'), + ('0451451155', 'Tigana', 'https://images.isbndb.com/covers/11/56/9780451451156.jpg'), + ('0061056219', 'The Lions Of Al-Rassan', 'https://images.isbndb.com/covers/62/15/9780061056215.jpg'), + ('0451453328', 'Song For Arbonne', 'https://images.isbndb.com/covers/33/27/9780451453327.jpg'), + ('0451451384', 'The Summer Tree (The Fionavar Tapestry, Book 1)', 'https://images.isbndb.com/covers/13/85/9780451451385.jpg'), + ('0451451562', 'Wandering Fire (Fionavar Tapestry)', 'https://images.isbndb.com/covers/15/69/9780451451569.jpg'), + ('0451451805', 'The Darkest Road (The Fionavar Tapestry, Book 3)', 'https://images.isbndb.com/covers/18/04/9780451451804.jpg'), + ('0399217797', 'Princess Smartypants', 'https://images.isbndb.com/covers/77/91/9780399217791.jpg'), + ('0785812245', 'Modern Locomotives', 'https://images.isbndb.com/covers/22/41/9780785812241.jpg'), + ('1558747575', 'A Little Secret For Dealing With Teens', 'https://images.isbndb.com/covers/75/79/9781558747579.jpg'), + ('0395311292', 'The Wump World', 'https://images.isbndb.com/covers/12/95/9780395311295.jpg'), + ('034542705X', 'The Man Who Listens To Horses', 'https://images.isbndb.com/covers/70/52/9780345427052.jpg'), + ('0312860374', 'Starfarers', 'https://images.isbndb.com/covers/03/70/9780312860370.jpg'), + ('0380762595', 'Until Forever', 'https://images.isbndb.com/covers/25/90/9780380762590.jpg'), + ('0380774933', 'Keeper Of The Heart', 'https://images.isbndb.com/covers/49/37/9780380774937.jpg'), + ('0440202507', 'Wild Mountain Thyme', 'https://images.isbndb.com/covers/25/09/9780440202509.jpg'), + ('0515131741', 'Lost And Found', 'https://images.isbndb.com/covers/17/41/9780515131741.jpg'), + ('0515136182', 'Light In Shadow', 'https://images.isbndb.com/covers/61/80/9780515136180.jpg'), + ('0515136948', 'After Glow (Ghost Hunters, Book 2)', 'https://images.isbndb.com/covers/69/44/9780515136944.jpg'), + ('0451206428', 'Lord Of My Heart', 'https://images.isbndb.com/covers/64/28/9780451206428.jpg'), + ('0380790890', 'A Well Pleasured Lady', 'https://images.isbndb.com/covers/08/90/9780380790890.jpg'), + ('0743477081', 'Forever And Always (Forever Trilogy)', 'https://images.isbndb.com/covers/70/86/9780743477086.jpg'), + ('0380752131', 'Love A Dark Rider', 'https://images.isbndb.com/covers/21/33/9780380752133.jpg'), + ('0345388593', 'Angel', 'https://images.isbndb.com/covers/85/99/9780345388599.jpg'), + ('044020254X', 'The Empty House', 'https://images.isbndb.com/covers/25/47/9780440202547.jpg'), + ('0515135453', 'Twist Of Fate', 'https://images.isbndb.com/covers/54/59/9780515135459.jpg'), + ('0380812037', 'On A Wild Night (Cynster Novels)', 'https://images.isbndb.com/covers/20/35/9780380812035.jpg'), + ('0553581872', 'The Widow''s Kiss', 'https://images.isbndb.com/covers/18/74/9780553581874.jpg'), + ('0380818647', 'The Devil''s Bargain', 'https://images.isbndb.com/covers/86/48/9780380818648.jpg'), + ('0553583395', 'Don''t Look Back', 'https://images.isbndb.com/covers/33/97/9780553583397.jpg'), + ('055358619X', 'The Bride Hunt', 'https://images.isbndb.com/covers/61/90/9780553586190.jpg'), + ('0515125628', 'The Target (FBI Series)', 'https://images.isbndb.com/covers/56/27/9780515125627.jpg'), + ('0553565249', 'The Unlikely Angel', 'https://images.isbndb.com/covers/52/49/9780553565249.jpg'), + ('055357695X', 'Out Of The Shadows (Shadows Trilogy)', 'https://images.isbndb.com/covers/69/55/9780553576955.jpg'), + ('0671019619', 'Grand Passion', 'https://images.isbndb.com/covers/96/17/9780671019617.jpg'), + ('0446363731', 'Midnight Jewels', 'https://images.isbndb.com/covers/37/30/9780446363730.jpg'), + ('0671019651', 'Hidden Talents', 'https://images.isbndb.com/covers/96/55/9780671019655.jpg'), + ('0671523074', 'Eye Of The Beholder', 'https://images.isbndb.com/covers/30/77/9780671523077.jpg'), + ('0553572326', 'Survival Of The Fittest: An Alex Delaware Novel', 'https://images.isbndb.com/covers/23/22/9780553572322.jpg'), + ('0061059838', 'Acorna''s People', 'https://images.isbndb.com/covers/98/34/9780061059834.jpg'), + ('0425172546', 'Southern Cross (Andy Brazil)', 'https://images.isbndb.com/covers/25/44/9780425172544.jpg'), + ('074347628X', 'The Twilight Before Christmas (Drake Sisters, Book 2)', 'https://images.isbndb.com/covers/62/87/9780743476287.jpg'), + ('0553586181', 'The Bachelor List', 'https://images.isbndb.com/covers/61/83/9780553586183.jpg'), + ('0061094609', 'Illusions: A Novel', 'https://images.isbndb.com/covers/46/06/9780061094606.jpg'), + ('0486273776', 'North American Indian Life: Customs And Traditions Of 23 Tribes', 'https://images.isbndb.com/covers/37/78/9780486273778.jpg'), + ('0931432901', 'Woman''s Book Of Rituals And Celebrations', 'https://images.isbndb.com/covers/29/03/9780931432903.jpg'), + ('0060256257', 'The Land Of Narnia: Brian Sibley Explores The World Of C. S. Lewis', 'https://images.isbndb.com/covers/62/58/9780060256258.jpg'), + ('0679427279', 'The Evolution Man Or How I Ate My Father', 'https://images.isbndb.com/covers/72/78/9780679427278.jpg'), + ('055357809X', 'Digger', 'https://images.isbndb.com/covers/80/96/9780553578096.jpg'), + ('0380711524', 'See Jane Run', 'https://images.isbndb.com/covers/15/29/9780380711529.jpg'), + ('0553261509', 'Puzzle Of The Red Stallion', 'https://images.isbndb.com/covers/15/09/9780553261509.jpg'), + ('0446341991', 'Death Of An Expert Witness', 'https://images.isbndb.com/covers/19/98/9780446341998.jpg'), + ('0140113428', 'The Cat Who Came For Christmas', 'https://images.isbndb.com/covers/34/26/9780140113426.jpg'), + ('0821713000', 'Munich 10', 'https://images.isbndb.com/covers/30/06/9780821713006.jpg'), + ('006101009X', 'Search The Shadows', 'https://images.isbndb.com/covers/00/95/9780061010095.jpg'), + ('0061092533', 'Stitches In Time', 'https://images.isbndb.com/covers/25/34/9780061092534.jpg'), + ('0449211886', 'Cities Of The Dead', 'https://images.isbndb.com/covers/18/85/9780449211885.jpg'), + ('0590466194', 'Welcome To Camp Nightmare (Goosebumps, No 9)', 'https://images.isbndb.com/covers/61/96/9780590466196.jpg'), + ('0811827631', 'Muffy''s Scrapbook: VanderBear Family? Stories, Photos And Mementos', 'https://images.isbndb.com/covers/76/38/9780811827638.jpg'), + ('0140068767', 'Fools Of Fortune (King Penguin)', 'https://images.isbndb.com/covers/87/64/9780140068764.jpg'), + ('0553278398', 'Prelude To Foundation (Foundation, Book 1)', 'https://images.isbndb.com/covers/83/92/9780553278392.jpg'), + ('0345308980', 'Foundation''s Edge', 'https://images.isbndb.com/covers/89/86/9780345308986.jpg'), + ('0743235150', 'Everything''s Eventual : 14 Dark Tales', 'https://images.isbndb.com/covers/51/50/9780743235150.jpg'), + ('2867448999', 'One Man Show', 'https://images.isbndb.com/covers/89/97/9782867448997.jpg'), + ('0515104191', 'Defcon One', 'https://images.isbndb.com/covers/41/96/9780515104196.jpg'), + ('0441885691', 'White Plague', 'https://images.isbndb.com/covers/56/95/9780441885695.jpg'), + ('0451628039', 'Mythology (Mentor)', 'https://images.isbndb.com/covers/80/39/9780451628039.jpg'), + ('0140177396', 'Of Mice And Men (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/73/98/9780140177398.jpg'), + ('1570624380', 'Flatland (Shambhala Pocket Classics)', 'https://images.isbndb.com/covers/43/84/9781570624384.jpg'), + ('0760700435', 'Sense And Sensibility', 'https://images.isbndb.com/covers/04/33/9780760700433.jpg'), + ('048627084X', 'Sleeping Beauty And Other Fairy Tales (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/08/45/9780486270845.jpg'), + ('0802713823', 'Sacred Geometry (Wooden Books)', 'https://images.isbndb.com/covers/38/27/9780802713827.jpg'), + ('051718608X', 'Colorado: A Photographic Tour (Photographic Tour (Random House))', 'https://images.isbndb.com/covers/60/84/9780517186084.jpg'), + ('0486278166', 'The Little Mermaid And Other Fairy Tales: Unabridged In Easy-To-Read Type (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/81/62/9780486278162.jpg'), + ('0140373373', 'Pride And Prejudice (Puffin Classics)', 'https://images.isbndb.com/covers/33/70/9780140373370.jpg'), + ('0486408787', 'Through The Looking-Glass (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/81/9780486408781.jpg'), + ('0451186923', 'The Deep End Of The Ocean', 'https://images.isbndb.com/covers/69/28/9780451186928.jpg'), + ('0451184114', 'Dolores Claiborne: Tie-In Edition', 'https://images.isbndb.com/covers/41/15/9780451184115.jpg'), + ('0446356573', 'A Stranger In The Mirror', 'https://images.isbndb.com/covers/65/72/9780446356572.jpg'), + ('155166545X', 'The House On Olive Street', 'https://images.isbndb.com/covers/54/50/9781551665450.jpg'), + ('0553280341', 'B Is For Burglar (A Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/03/40/9780553280340.jpg'), + ('0553280368', 'C Is For Corpse (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/03/64/9780553280364.jpg'), + ('067942573X', 'Taltos: Lives Of The Mayfair Witches', 'https://images.isbndb.com/covers/57/31/9780679425731.jpg'), + ('0812570944', 'What Dreams May Come', 'https://images.isbndb.com/covers/09/46/9780812570946.jpg'), + ('078688939X', 'DIRTY JOKES AND BEER: STORIES OF THE UNREFINED', 'https://images.isbndb.com/covers/93/96/9780786889396.jpg'), + ('0451176464', 'Gerald''s Game (Signet)', 'https://images.isbndb.com/covers/64/62/9780451176462.jpg'), + ('0671894455', 'Forrest Gump (Movie Tie In)', 'https://images.isbndb.com/covers/44/50/9780671894450.jpg'), + ('0451186362', 'Rose Madder', 'https://images.isbndb.com/covers/63/62/9780451186362.jpg'), + ('1570431108', 'Eckankar: Ancient Wisdom For Today: How Past Lives, Dreams, And Soul Travel Help You Find God', 'https://images.isbndb.com/covers/11/04/9781570431104.jpg'), + ('0451405692', 'Body Of A Crime', 'https://images.isbndb.com/covers/56/92/9780451405692.jpg'), + ('0446607657', 'When The Wind Blows', 'https://images.isbndb.com/covers/76/50/9780446607650.jpg'), + ('0446611662', 'Bird''s-Eye View', 'https://images.isbndb.com/covers/16/64/9780446611664.jpg'), + ('0140067841', 'Schindler''s List', 'https://images.isbndb.com/covers/78/42/9780140067842.jpg'), + ('1878379992', 'Watching The Wind: Conflict Resolution During South Africa''s Transition To Democracy', 'https://images.isbndb.com/covers/99/93/9781878379993.jpg'), + ('0892811706', 'Muhammad: His Life Based On The Earliest Sources', 'https://images.isbndb.com/covers/17/00/9780892811700.jpg'), + ('0684150700', 'Needlepoint Designs From Amish Quilts', 'https://images.isbndb.com/covers/07/03/9780684150703.jpg'), + ('0517463008', 'Sherlock Holmes Encyclopedia', 'https://images.isbndb.com/covers/30/00/9780517463000.jpg'), + ('081120457X', 'The Captain''s Verses (Los Versos Del Capitan) (New Directions Paperbook)', 'https://images.isbndb.com/covers/45/76/9780811204576.jpg'), + ('0395120985', 'The Book Of Nightmares', 'https://images.isbndb.com/covers/09/89/9780395120989.jpg'), + ('0910395039', 'Murder For Profit', 'https://images.isbndb.com/covers/50/38/9780910395038.jpg'), + ('0312901437', 'James Herriots Dog Stories', 'https://images.isbndb.com/covers/14/31/9780312901431.jpg'), + ('0553212923', 'Hamlet (Bantam Classic)', 'https://images.isbndb.com/covers/29/21/9780553212921.jpg'), + ('0345354613', 'Eaters Of The Dead', 'https://images.isbndb.com/covers/46/17/9780345354617.jpg'), + ('0967231434', 'Small Leather Journal With Strap-myra Series', 'https://images.isbndb.com/covers/14/33/9780967231433.jpg'), + ('0553104039', 'Tidings Of Great Joy', 'https://images.isbndb.com/covers/40/35/9780553104035.jpg'), + ('038532748X', 'Night Flying', 'https://images.isbndb.com/covers/74/80/9780385327480.jpg'), + ('0380713802', 'Neither Here Nor There: Travels In Europe', 'https://images.isbndb.com/covers/38/06/9780380713806.jpg'), + ('0140430725', 'Pride And Prejudice (The Penguin English Library)', 'https://images.isbndb.com/covers/07/21/9780140430721.jpg'), + ('0345356640', 'Emergency Doctor', 'https://images.isbndb.com/covers/66/42/9780345356642.jpg'), + ('0812513401', 'The Voyage', 'https://images.isbndb.com/covers/34/00/9780812513400.jpg'), + ('0940685590', 'Winner''s Guide To Texas Hold''em Poker', 'https://images.isbndb.com/covers/55/98/9780940685598.jpg'), + ('0898159318', 'The 1998 What Color Is Your Parachute : A Practical Manual For Job-Hunters And Career Changers (Paper)', 'https://images.isbndb.com/covers/93/18/9780898159318.jpg'), + ('0671319825', 'Forge Of The Elders', 'https://images.isbndb.com/covers/98/23/9780671319823.jpg'), + ('0451456491', 'Twilight Of The Empire', 'https://images.isbndb.com/covers/64/96/9780451456496.jpg'), + ('0451450957', 'Blue Moon Rising (Hawk & Fisher)', 'https://images.isbndb.com/covers/09/51/9780451450951.jpg'), + ('0451454359', 'Deathstalker', 'https://images.isbndb.com/covers/43/55/9780451454355.jpg'), + ('067187747X', 'The Legacy Of Gird (Trade Paperback)', 'https://images.isbndb.com/covers/74/77/9780671877477.jpg'), + ('0441569595', 'Neuromancer', 'https://images.isbndb.com/covers/95/95/9780441569595.jpg'), + ('0843948302', 'Voice Of The Blood', 'https://images.isbndb.com/covers/83/01/9780843948301.jpg'), + ('1573229105', 'Sister India', 'https://images.isbndb.com/covers/91/04/9781573229104.jpg'), + ('0375505148', 'Girls'' Poker Night', 'https://images.isbndb.com/covers/51/40/9780375505140.jpg'), + ('0345291409', 'Special Deliverance', 'https://images.isbndb.com/covers/14/00/9780345291400.jpg'), + ('0425147363', 'Op-Center (Tom Clancy''s Op-Center, Book 1)', 'https://images.isbndb.com/covers/73/68/9780425147368.jpg'), + ('0671731424', 'The Wolf''s Hour', 'https://images.isbndb.com/covers/14/27/9780671731427.jpg'), + ('034068948X', 'Does My Bum Look Big In This?', 'https://images.isbndb.com/covers/94/86/9780340689486.jpg'), + ('0449238083', 'All Quiet On The Western Front', 'https://images.isbndb.com/covers/80/80/9780449238080.jpg'), + ('0747204233', 'The Nightingale Gallery (Sorrowful Mysteries Of Brother Athelstan)', 'https://images.isbndb.com/covers/42/37/9780747204237.jpg'), + ('0385333919', 'Be Cool', 'https://images.isbndb.com/covers/39/17/9780385333917.jpg'), + ('0449001245', 'Naked Came The Manatee', 'https://images.isbndb.com/covers/12/40/9780449001240.jpg'), + ('0061099570', 'The Crown Of Columbus', 'https://images.isbndb.com/covers/95/71/9780061099571.jpg'), + ('0936552034', 'Animal Talk Interspecies Telepathis Communication', 'https://images.isbndb.com/covers/20/33/9780936552033.jpg'), + ('0375750002', 'The Portable Henry Rollins', 'https://images.isbndb.com/covers/00/07/9780375750007.jpg'), + ('0425165582', 'Clive Barker''s Books Of Blood 1-3', 'https://images.isbndb.com/covers/55/84/9780425165584.jpg'), + ('0380820293', 'Last Chance Saloon', 'https://images.isbndb.com/covers/02/90/9780380820290.jpg'), + ('0451141296', 'Comets (Issac Asimov''s Wonderful World Of Science Fiction, No 4)', 'https://images.isbndb.com/covers/12/93/9780451141293.jpg'), + ('0312980205', 'Never Count Out The Dead', 'https://images.isbndb.com/covers/02/07/9780312980207.jpg'), + ('0743467345', 'Mr. Perfect', 'https://images.isbndb.com/covers/73/46/9780743467346.jpg'), + ('0679889175', 'First Test (Protector Of The Small)', 'https://images.isbndb.com/covers/91/75/9780679889175.jpg'), + ('0679801111', 'In The Hand Of The Goddess (Song Of The Lioness #2)', 'https://images.isbndb.com/covers/11/15/9780679801115.jpg'), + ('0871236575', 'When Hope Springs New (Canadian West #4)', 'https://images.isbndb.com/covers/65/79/9780871236579.jpg'), + ('1410729435', 'Lucy''s Treasure', 'https://images.isbndb.com/covers/94/39/9781410729439.jpg'), + ('0395775396', 'My Antonia, And Related Readings (Literature Connections Series)', 'https://images.isbndb.com/covers/53/94/9780395775394.jpg'), + ('0743434021', 'Beautiful Bodies : A Novel', 'https://images.isbndb.com/covers/40/27/9780743434027.jpg'), + ('0440164125', 'No Choice But Surrender', 'https://images.isbndb.com/covers/41/28/9780440164128.jpg'), + ('0515116297', 'The Pony Wife', 'https://images.isbndb.com/covers/62/98/9780515116298.jpg'), + ('0812550765', 'Irish Gold: A Nuala Anne McGrail Novel (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/07/64/9780812550764.jpg'), + ('0888011091', 'Seed Catalogue', 'https://images.isbndb.com/covers/10/91/9780888011091.jpg'), + ('0425183653', 'A Potion For A Widow (The Chronicles Of Isaac Of Girona)', 'https://images.isbndb.com/covers/36/56/9780425183656.jpg'), + ('0373765703', 'Private Indiscretions', 'https://images.isbndb.com/covers/57/06/9780373765706.jpg'), + ('037369167X', 'Pillow Talk (Harlequin Temptation)', 'https://images.isbndb.com/covers/16/78/9780373691678.jpg'), + ('0373250134', 'Slightly Single (Red Dress Ink Paperback}', 'https://images.isbndb.com/covers/01/34/9780373250134.jpg'), + ('0446363162', 'Back Bay', 'https://images.isbndb.com/covers/31/67/9780446363167.jpg'), + ('0373153279', 'Home To You', 'https://images.isbndb.com/covers/32/75/9780373153275.jpg'), + ('0373153260', 'The Wedding In White', 'https://images.isbndb.com/covers/32/68/9780373153268.jpg'), + ('0345375556', 'One''s Company: Reflections On Living Alone', 'https://images.isbndb.com/covers/55/51/9780345375551.jpg'), + ('1573221082', 'Ordinary Grace: An Examination Of The Roots Of Compassion, Altruism, And Empathy, And The Ordinary Individuals Who Help Others In Extraordinary Ways', 'https://images.isbndb.com/covers/10/85/9781573221085.jpg'), + ('068480154X', 'Tender Is The Night', 'https://images.isbndb.com/covers/15/44/9780684801544.jpg'), + ('0140430059', 'Persuasion: With A Memoir Of Jane Austen', 'https://images.isbndb.com/covers/00/59/9780140430059.jpg'), + ('0553569619', 'When The Bough Breaks (Alex Delaware Novels)', 'https://images.isbndb.com/covers/96/12/9780553569612.jpg'), + ('0770104274', 'Ariana', 'https://images.isbndb.com/covers/42/76/9780770104276.jpg'), + ('0451172825', 'Intensive Care (Signet)', 'https://images.isbndb.com/covers/28/22/9780451172822.jpg'), + ('0446613843', 'The Jester', 'https://images.isbndb.com/covers/38/42/9780446613842.jpg'), + ('0679436448', 'CORELLI''S MANDOLIN', 'https://images.isbndb.com/covers/64/47/9780679436447.jpg'), + ('0553580930', 'A Man In Full', 'https://images.isbndb.com/covers/09/38/9780553580938.jpg'), + ('1558216847', 'The Long Walk: The True Story Of A Trek To Freedom', 'https://images.isbndb.com/covers/68/46/9781558216846.jpg'), + ('0590313185', 'Bunnicula: A Rabbit-Tale Of Mystery', 'https://images.isbndb.com/covers/31/86/9780590313186.jpg'), + ('0590462253', 'The Littles', 'https://images.isbndb.com/covers/22/59/9780590462259.jpg'), + ('0671024094', 'The Coffin Dancer (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/40/93/9780671024093.jpg'), + ('1565070054', 'As Time Goes By (California Series, Book 2)', 'https://images.isbndb.com/covers/00/59/9781565070059.jpg'), + ('1565070461', 'Sean Donovan (The Californians, Book 3)', 'https://images.isbndb.com/covers/04/62/9781565070462.jpg'), + ('1556618646', 'A Promise For Tomorrow (Ribbons Of Steel) (Book 3)', 'https://images.isbndb.com/covers/86/42/9781556618642.jpg'), + ('1556618638', 'A Hope Beyond (Ribbons Of Steel) (Book 2)', 'https://images.isbndb.com/covers/86/35/9781556618635.jpg'), + ('155661862X', 'Distant Dreams (Ribbons Of Steel) (Book 1)', 'https://images.isbndb.com/covers/86/28/9781556618628.jpg'), + ('0890819696', 'Whatever Tomorrow Brings (The Californians, Bk. 1)', 'https://images.isbndb.com/covers/96/92/9780890819692.jpg'), + ('1565071298', 'Donovan''s Daughter (The Californians, Book 4)', 'https://images.isbndb.com/covers/12/92/9781565071292.jpg'), + ('1556618409', 'Sisters Of The Confederacy (A Secret Refuge Series #2) (Book 2)', 'https://images.isbndb.com/covers/84/06/9781556618406.jpg'), + ('1556618395', 'Daughter Of Twin Oaks (A Secret Refuge Series #1) (Book 1)', 'https://images.isbndb.com/covers/83/90/9781556618390.jpg'), + ('0849942357', 'The Amethyst Heart', 'https://images.isbndb.com/covers/23/58/9780849942358.jpg'), + ('0849937221', 'The Amber Photograph', 'https://images.isbndb.com/covers/72/24/9780849937224.jpg'), + ('0849917069', 'The Memory Book: A Novel', 'https://images.isbndb.com/covers/70/66/9780849917066.jpg'), + ('0849917050', 'The Treasure Box', 'https://images.isbndb.com/covers/70/59/9780849917059.jpg'), + ('0373691580', 'Are You Lonesome Tonight? (Harlequin Temptation)', 'https://images.isbndb.com/covers/15/86/9780373691586.jpg'), + ('0385249683', 'Mary Reilly', 'https://images.isbndb.com/covers/96/83/9780385249683.jpg'), + ('0060975849', 'Two Old Women', 'https://images.isbndb.com/covers/58/45/9780060975845.jpg'), + ('059043411X', 'Vampires Don''t Wear Polka Dots (The Adventures Of The Bailey School Kids)', 'https://images.isbndb.com/covers/41/19/9780590434119.jpg'), + ('0439172187', 'Pixie Tricks #01: Sprite''s Secret', 'https://images.isbndb.com/covers/21/89/9780439172189.jpg'), + ('0590978802', 'The Diamond Princess Steps Through The Mirror (Jewel Kingdom No. 12)', 'https://images.isbndb.com/covers/88/04/9780590978804.jpg'), + ('0439051630', 'Chick Challenge (Animal Ark Pets #6)', 'https://images.isbndb.com/covers/16/37/9780439051637.jpg'), + ('0439160200', 'Powerpuff Girls Chapter Book #02: All Chalked Up! (Powerpuff Girls, Chaper Book) (No.2)', 'https://images.isbndb.com/covers/02/09/9780439160209.jpg'), + ('0439160219', 'Powerpuff Girls Chapter Book #03: Cartoon Crazy (Powerpuff Girls, Chaper Book) (No. 3)', 'https://images.isbndb.com/covers/02/16/9780439160216.jpg'), + ('068482292X', 'What Remains To Be Discovered : Mapping The Secrets Of The Universe, The Origins Of Life, And The Future Of The Human Race', 'https://images.isbndb.com/covers/29/21/9780684822921.jpg'), + ('0393308189', 'Ever Since Darwin: Reflections In Natural History', 'https://images.isbndb.com/covers/81/81/9780393308181.jpg'), + ('0446676136', 'Reason For Hope: A Spiritual Journey', 'https://images.isbndb.com/covers/61/37/9780446676137.jpg'), + ('0345394658', 'Return To The Chateau: Preceded By, A Girl In Love', 'https://images.isbndb.com/covers/46/51/9780345394651.jpg'), + ('0345301110', 'Story Of O', 'https://images.isbndb.com/covers/11/16/9780345301116.jpg'), + ('068485287X', 'Creek Walk And Other Stories', 'https://images.isbndb.com/covers/28/74/9780684852874.jpg'), + ('0140450181', 'Major Barbara (Shaw Library)', 'https://images.isbndb.com/covers/01/87/9780140450187.jpg'), + ('014045022X', 'Pygmalion : A Romance In Five Acts', 'https://images.isbndb.com/covers/02/24/9780140450224.jpg'), + ('0312980140', 'Seven Up (Stephanie Plum, No. 7)', 'https://images.isbndb.com/covers/01/46/9780312980146.jpg'), + ('0553211951', 'Complete Short Stories Of Mark Twain (Bantam Classics)', 'https://images.isbndb.com/covers/19/55/9780553211955.jpg'), + ('0141301155', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/11/50/9780141301150.jpg'), + ('0525934960', 'The Te Of Piglet (Pooh)', 'https://images.isbndb.com/covers/49/67/9780525934967.jpg'), + ('0140189645', 'The Crucible: A Play In Four Acts (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/96/43/9780140189643.jpg'), + ('0877790388', 'Webster''s Legal Speller', 'https://images.isbndb.com/covers/03/89/9780877790389.jpg'), + ('0771065175', 'A Short History Of Canada', 'https://images.isbndb.com/covers/51/70/9780771065170.jpg'), + ('0451521293', 'Twelfth Night: Or, What You Will (Signet Classic Shakespeare Series)', 'https://images.isbndb.com/covers/12/93/9780451521293.jpg'), + ('0385324138', 'The Outlandish Companion', 'https://images.isbndb.com/covers/41/37/9780385324137.jpg'), + ('0679436332', 'Blake: Poems (Everyman''s Library Pocket Poets)', 'https://images.isbndb.com/covers/63/31/9780679436331.jpg'), + ('0452277507', 'Animal Farm: A Fairy Story', 'https://images.isbndb.com/covers/75/02/9780452277502.jpg'), + ('0764222295', 'The Birthright (Song Of Acadia #3)', 'https://images.isbndb.com/covers/22/90/9780764222290.jpg'), + ('0140327738', 'Pippi In The South Seas (Puffin Story Books)', 'https://images.isbndb.com/covers/77/31/9780140327731.jpg'), + ('0140367624', 'The Princess And Curdie (Puffin Classics)', 'https://images.isbndb.com/covers/76/21/9780140367621.jpg'), + ('0140367462', 'The Princess And The Goblin (Puffin Classics)', 'https://images.isbndb.com/covers/74/61/9780140367461.jpg'), + ('0764221396', 'A Searching Heart (Prairie Legacy Series #2)', 'https://images.isbndb.com/covers/13/92/9780764221392.jpg'), + ('076422400X', 'Beyond The Gathering Storm (Canadian West #5)', 'https://images.isbndb.com/covers/40/03/9780764224003.jpg'), + ('0764225553', 'When Tomorrow Comes (Canadian West)', 'https://images.isbndb.com/covers/55/50/9780764225550.jpg'), + ('0764222473', 'The Sacred Shore (Song Of Acadia #2) (Book 2)', 'https://images.isbndb.com/covers/24/74/9780764222474.jpg'), + ('0764221760', 'The Meeting Place (Song Of Acadia #1)', 'https://images.isbndb.com/covers/17/67/9780764221767.jpg'), + ('044022425X', 'Drums Of Autumn (Outlander)', 'https://images.isbndb.com/covers/42/59/9780440224259.jpg'), + ('0764221612', 'Like Gold Refined (Prairie Legacy Series #4)', 'https://images.isbndb.com/covers/16/13/9780764221613.jpg'), + ('0764221566', 'A Quiet Strength (Prairie Legacy Series #3)', 'https://images.isbndb.com/covers/15/69/9780764221569.jpg'), + ('0440217563', 'Voyager (Outlander)', 'https://images.isbndb.com/covers/75/65/9780440217565.jpg'), + ('0385319959', 'Outlander', 'https://images.isbndb.com/covers/99/59/9780385319959.jpg'), + ('0773674187', 'Canadian Poetry (New Press Canadian Classics)', 'https://images.isbndb.com/covers/41/89/9780773674189.jpg'), + ('1556619510', 'The Tender Years (Prairie Legacy Series #1)', 'https://images.isbndb.com/covers/95/19/9781556619519.jpg'), + ('0446611778', 'Last Man Standing', 'https://images.isbndb.com/covers/17/70/9780446611770.jpg'), + ('1853260363', 'Don Quixote (Wordsworth Classics)', 'https://images.isbndb.com/covers/03/60/9781853260360.jpg'), + ('0006374093', 'Making It Happen: Reflections On Leadership', 'https://images.isbndb.com/covers/40/91/9780006374091.jpg'), + ('0374525188', 'Housekeeping: A Novel', 'https://images.isbndb.com/covers/51/87/9780374525187.jpg'), + ('0749385359', 'Dan Leno Limehouse Golem Cook Pro', 'https://images.isbndb.com/covers/53/54/9780749385354.jpg'), + ('0099428644', 'The Trial', 'https://images.isbndb.com/covers/86/40/9780099428640.jpg'), + ('0349111367', 'Easy Silence', 'https://images.isbndb.com/covers/13/60/9780349111360.jpg'), + ('0747273146', 'Resurrecting Salvador Pb', 'https://images.isbndb.com/covers/31/41/9780747273141.jpg'), + ('034910901X', 'Room For A Single Lady', 'https://images.isbndb.com/covers/90/15/9780349109015.jpg'), + ('0330244078', 'TINKER TAILOR SOLDIER SPY', 'https://images.isbndb.com/covers/40/77/9780330244077.jpg'), + ('0571216420', 'Vernon God Little', 'https://images.isbndb.com/covers/64/20/9780571216420.jpg'), + ('0312974620', 'Beyond Jennifer & Jason, Madison & Montana: What To Name Your Baby Now', 'https://images.isbndb.com/covers/46/26/9780312974626.jpg'), + ('0304357278', 'E-Tales: The Best & Worst Of Internet Humor (Humour)', 'https://images.isbndb.com/covers/72/77/9780304357277.jpg'), + ('0471293334', 'Mothers & Others For A Livable Planet Guide To Natural Baby Care: Nontoxic And Environmentally Friendly Ways To Take Care Of Your New Child', 'https://images.isbndb.com/covers/33/30/9780471293330.jpg'), + ('1842223739', 'New Woman Bloke Jokes 2 (No.2)', 'https://images.isbndb.com/covers/37/34/9781842223734.jpg'), + ('0714530387', 'The Room', 'https://images.isbndb.com/covers/03/83/9780714530383.jpg'), + ('0679735291', 'The Body Project: An Intimate History Of American Girls', 'https://images.isbndb.com/covers/52/98/9780679735298.jpg'), + ('0140250328', 'The New Whole Foods Encyclopedia: A Comprehensive Resource For Healthy Eating (Compass)', 'https://images.isbndb.com/covers/03/29/9780140250329.jpg'), + ('1591092744', 'Lapp', 'https://images.isbndb.com/covers/27/42/9781591092742.jpg'), + ('3442540356', 'Microsklaven.', 'https://images.isbndb.com/covers/03/58/9783442540358.jpg'), + ('0671447483', 'Pioneer Women: Voices From The Kansas Frontier', 'https://images.isbndb.com/covers/74/89/9780671447489.jpg'), + ('2070741354', 'La Lenteur', 'https://images.isbndb.com/covers/13/59/9782070741359.jpg'), + ('0345385977', 'I Haven''t Understood Anything Since 1962', 'https://images.isbndb.com/covers/59/70/9780345385970.jpg'), + ('0373441762', 'One True Love? (Harlequin Flipside)', 'https://images.isbndb.com/covers/17/61/9780373441761.jpg'), + ('0373441800', 'Who Needs Decaf? (Harlequin Flipside)', 'https://images.isbndb.com/covers/18/08/9780373441808.jpg'), + ('0373250479', 'Slightly Settled', 'https://images.isbndb.com/covers/04/79/9780373250479.jpg'), + ('0312303467', 'Bet Me', 'https://images.isbndb.com/covers/34/64/9780312303464.jpg'), + ('0671693190', 'Across The Border: True Story Of Satanic Cult Killings In Matamoros, Mexico', 'https://images.isbndb.com/covers/31/90/9780671693190.jpg'), + ('0670891509', 'Marrying The Mistress', 'https://images.isbndb.com/covers/15/04/9780670891504.jpg'), + ('0312988915', 'The Nanny Diaries', 'https://images.isbndb.com/covers/89/13/9780312988913.jpg'), + ('014023313X', 'The Stone Diaries', 'https://images.isbndb.com/covers/31/31/9780140233131.jpg'), + ('097213011X', 'The Big Girls'' Guide To Life: A Plus-Sized Jaunt Through A Body-Obsessed World', 'https://images.isbndb.com/covers/01/10/9780972130110.jpg'), + ('0425141233', 'Winter Prey', 'https://images.isbndb.com/covers/12/36/9780425141236.jpg'), + ('0812966813', 'A Collection Of Beauties At The Height Of Their Popularity: A Novel', 'https://images.isbndb.com/covers/68/17/9780812966817.jpg'), + ('0671016776', 'Gravity', 'https://images.isbndb.com/covers/67/77/9780671016777.jpg'), + ('0923059008', 'Fatal Love', 'https://images.isbndb.com/covers/90/02/9780923059002.jpg'), + ('0373250428', 'Up & Out (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/04/24/9780373250424.jpg'), + ('0345470621', 'Househusband', 'https://images.isbndb.com/covers/06/21/9780345470621.jpg'), + ('0060522259', 'Elegance: A Novel', 'https://images.isbndb.com/covers/22/54/9780060522254.jpg'), + ('0312205961', 'Midnight Come Again (Kate Shugak Mysteries)', 'https://images.isbndb.com/covers/59/66/9780312205966.jpg'), + ('0743418700', 'Salem Falls', 'https://images.isbndb.com/covers/87/06/9780743418706.jpg'), + ('0399143564', 'Killing Grounds (Kate Shugak Mystery/Dana Stabenow)', 'https://images.isbndb.com/covers/35/64/9780399143564.jpg'), + ('0399144684', 'Hunter''s Moon (Kate Shugak Mysteries)', 'https://images.isbndb.com/covers/46/84/9780399144684.jpg'), + ('0425185508', 'Picture Perfect', 'https://images.isbndb.com/covers/55/06/9780425185506.jpg'), + ('0140230270', 'Harvesting The Heart', 'https://images.isbndb.com/covers/02/77/9780140230277.jpg'), + ('0140266925', 'Going To Ground: Simple Life On A Georgia Pond', 'https://images.isbndb.com/covers/69/24/9780140266924.jpg'), + ('0525947914', 'Just One Look', 'https://images.isbndb.com/covers/79/12/9780525947912.jpg'), + ('0345452593', 'Therapy', 'https://images.isbndb.com/covers/25/97/9780345452597.jpg'), + ('0757300421', 'Chicken Soup For The Romantic Soul: Inspirational Stories About Love And Romance (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/04/24/9780757300424.jpg'), + ('076791404X', 'She''s Not There: A Life In Two Genders', 'https://images.isbndb.com/covers/40/48/9780767914048.jpg'), + ('0060586125', 'Three Wishes', 'https://images.isbndb.com/covers/61/26/9780060586126.jpg'), + ('0440220432', 'Killing For Company: The Story Of A Man Addicted To Murder', 'https://images.isbndb.com/covers/04/35/9780440220435.jpg'), + ('0446326062', 'Won''t You Come Home Billy Bob', 'https://images.isbndb.com/covers/60/63/9780446326063.jpg'), + ('0671733613', 'Women: American Women In Their Own Words', 'https://images.isbndb.com/covers/36/12/9780671733612.jpg'), + ('0440225442', 'One False Move (Myron Bolitar, No. 5)', 'https://images.isbndb.com/covers/54/47/9780440225447.jpg'), + ('0575403306', 'Alice Little And The Big Girl''s Blouse', 'https://images.isbndb.com/covers/33/07/9780575403307.jpg'), + ('0375759093', 'The Summer They Came', 'https://images.isbndb.com/covers/90/93/9780375759093.jpg'), + ('0590137859', 'The Case Of The Secret Password (Clue Jr. #10)', 'https://images.isbndb.com/covers/78/50/9780590137850.jpg'), + ('0786845384', 'When Moms Attack! (Lizzie McGuire, No. 1)', 'https://images.isbndb.com/covers/53/85/9780786845385.jpg'), + ('0786845406', 'Lizzie Goes Wild! (Lizzie McGuire Junior Novel, Book 3)', 'https://images.isbndb.com/covers/54/08/9780786845408.jpg'), + ('0064442055', 'Play Ball, Amelia Bedelia (I Can Read Book 2)', 'https://images.isbndb.com/covers/20/53/9780064442053.jpg'), + ('0064440192', 'Amelia Bedelia And The Surprise Shower (I Can Read, Level 2)', 'https://images.isbndb.com/covers/01/96/9780064440196.jpg'), + ('0590470051', 'Dawn''s Big Move (Baby-Sitters Club (Quality))', 'https://images.isbndb.com/covers/00/56/9780590470056.jpg'), + ('0553480545', 'JESSICA THE THIEF (Sweet Valley Twins)', 'https://images.isbndb.com/covers/05/42/9780553480542.jpg'), + ('0590417363', 'Fourth Grade Is A Jinx (An Apple Paperback)', 'https://images.isbndb.com/covers/73/65/9780590417365.jpg'), + ('0590442481', 'Girl With The Silver Eyes (Apple Paperbacks)', 'https://images.isbndb.com/covers/24/80/9780590442480.jpg'), + ('0590440829', 'Claudia And The Middle School Mystery (Baby-Sitters Club, 40)', 'https://images.isbndb.com/covers/08/20/9780590440820.jpg'), + ('0671879464', 'The Lost Locket (Nancy Drew Notebooks #2)', 'https://images.isbndb.com/covers/94/64/9780671879464.jpg'), + ('0553484001', 'LILA ON THE LOOSE (Unicorn Club)', 'https://images.isbndb.com/covers/40/07/9780553484007.jpg'), + ('0590373986', 'It''s Great To Be Eight', 'https://images.isbndb.com/covers/39/82/9780590373982.jpg'), + ('0671879510', 'Trouble At Camp Treehouse (Nancy Drew Notebooks #7)', 'https://images.isbndb.com/covers/95/18/9780671879518.jpg'), + ('0553480553', 'The Middle School Gets Married (Sweet Valley Twins)', 'https://images.isbndb.com/covers/05/59/9780553480559.jpg'), + ('055348284X', 'A Curse On Elizabeth (Sweet Valley Kids)', 'https://images.isbndb.com/covers/28/43/9780553482843.jpg'), + ('0590482289', 'Dawn And The School Spirit War (Baby-Sitters Club)', 'https://images.isbndb.com/covers/22/88/9780590482288.jpg'), + ('0553482122', 'The Amazing Jessica (Sweet Valley Kids)', 'https://images.isbndb.com/covers/21/26/9780553482126.jpg'), + ('0380716984', 'Amelia Bedelia''s Family Album', 'https://images.isbndb.com/covers/69/82/9780380716982.jpg'), + ('0590136011', 'The Twits', 'https://images.isbndb.com/covers/60/13/9780590136013.jpg'), + ('0590426931', 'The Woodshed Mystery (The Boxcar Children, Book 7)', 'https://images.isbndb.com/covers/69/30/9780590426930.jpg'), + ('0590426818', 'Caboose Mystery', 'https://images.isbndb.com/covers/68/17/9780590426817.jpg'), + ('0590426869', 'The Boxcar Children #5: Mike''s Mystery', 'https://images.isbndb.com/covers/68/62/9780590426862.jpg'), + ('0590426850', 'The Boxcar Children Blue Bay Mystery', 'https://images.isbndb.com/covers/68/55/9780590426855.jpg'), + ('0590426877', 'The Boxcar Children #4: Mystery Ranch', 'https://images.isbndb.com/covers/68/79/9780590426879.jpg'), + ('0590426885', 'The Yellow House Mystery', 'https://images.isbndb.com/covers/68/86/9780590426886.jpg'), + ('0590426796', 'The Lighthouse Mystery (Boxcar Children No. 8)', 'https://images.isbndb.com/covers/67/94/9780590426794.jpg'), + ('0380732726', 'Ramona''s World (Ramona Series)', 'https://images.isbndb.com/covers/27/22/9780380732722.jpg'), + ('0380709562', 'Ramona Quimby, Age 8 (Avon Camelot Books)', 'https://images.isbndb.com/covers/95/64/9780380709564.jpg'), + ('0380709600', 'Ramona Forever', 'https://images.isbndb.com/covers/96/01/9780380709601.jpg'), + ('038070952X', 'Ramona And Her Mother (Ramona Quimby)', 'https://images.isbndb.com/covers/95/26/9780380709526.jpg'), + ('0380709236', 'Emily''s Runaway Imagination', 'https://images.isbndb.com/covers/92/36/9780380709236.jpg'), + ('0671955128', 'The Triple Hoax (Nancy Drew, #57)', 'https://images.isbndb.com/covers/51/20/9780671955120.jpg'), + ('0743437616', 'The Crook Who Took The Book (Nancy Drew Notebooks #47)', 'https://images.isbndb.com/covers/76/15/9780743437615.jpg'), + ('0743437675', 'The Sand Castle Mystery (Nancy Drew Notebooks #49)', 'https://images.isbndb.com/covers/76/77/9780743437677.jpg'), + ('0671001205', 'The Wild Cat Crime (Nancy Drew Digest #141)', 'https://images.isbndb.com/covers/12/09/9780671001209.jpg'), + ('0743406648', 'Flower Power (Nancy Drew Notebooks #41)', 'https://images.isbndb.com/covers/66/42/9780743406642.jpg'), + ('0743437470', 'The Crazy Carnival Case (Nancy Drew Notebooks #48)', 'https://images.isbndb.com/covers/74/79/9780743437479.jpg'), + ('0440158613', 'The Moving Finger', 'https://images.isbndb.com/covers/86/15/9780440158615.jpg'), + ('0061052493', 'Waking Beauty', 'https://images.isbndb.com/covers/24/91/9780061052491.jpg'), + ('0142000396', 'The Last Manly Man (Robin Hudson Mysteries #4)', 'https://images.isbndb.com/covers/03/97/9780142000397.jpg'), + ('0679730346', 'London Fields', 'https://images.isbndb.com/covers/03/47/9780679730347.jpg'), + ('0684815028', 'Man In The Queue', 'https://images.isbndb.com/covers/50/22/9780684815022.jpg'), + ('0312204264', 'Mr. White''s Confession: A Novel', 'https://images.isbndb.com/covers/42/66/9780312204266.jpg'), + ('0312984863', 'The Impostor (The Liars Club, Book 2)', 'https://images.isbndb.com/covers/48/61/9780312984861.jpg'), + ('0373261136', 'Fifth Rapunzel', 'https://images.isbndb.com/covers/11/30/9780373261130.jpg'), + ('0517573199', 'Well Timed Enchantment', 'https://images.isbndb.com/covers/31/98/9780517573198.jpg'), + ('0060275103', 'Ella Enchanted (Newbery Honor Book)', 'https://images.isbndb.com/covers/51/05/9780060275105.jpg'), + ('0679752455', 'The Fan Man', 'https://images.isbndb.com/covers/24/55/9780679752455.jpg'), + ('0525947345', 'A Friend Of The Family', 'https://images.isbndb.com/covers/73/49/9780525947349.jpg'), + ('006001203X', 'Dr. Atkins'' New Diet Revolution', 'https://images.isbndb.com/covers/20/38/9780060012038.jpg'), + ('0375713344', 'Geek Love: A Novel', 'https://images.isbndb.com/covers/33/47/9780375713347.jpg'), + ('0805060227', 'Eating Naked: Stories', 'https://images.isbndb.com/covers/02/25/9780805060225.jpg'), + ('0890878897', 'Tap Dancing In Zen', 'https://images.isbndb.com/covers/88/97/9780890878897.jpg'), + ('0091834171', 'The Infernal', 'https://images.isbndb.com/covers/41/73/9780091834173.jpg'), + ('0451174291', 'Howards End: Tie-In Edition (Signet)', 'https://images.isbndb.com/covers/42/91/9780451174291.jpg'), + ('3596200261', 'Schöne Neue Welt', 'https://images.isbndb.com/covers/02/69/9783596200269.jpg'), + ('3518366467', 'Wunschloses Unglück', 'https://images.isbndb.com/covers/64/62/9783518366462.jpg'), + ('3129044019', 'Rosina. Erzählung', 'https://images.isbndb.com/covers/40/18/9783129044018.jpg'), + ('3404146298', 'Der Weihnachtshund.', 'https://images.isbndb.com/covers/62/91/9783404146291.jpg'), + ('0140293450', 'About A Boy', 'https://images.isbndb.com/covers/34/56/9780140293456.jpg'), + ('1891480030', 'The Ushers', 'https://images.isbndb.com/covers/00/34/9781891480034.jpg'), + ('055311073X', 'Follow The Stars Home', 'https://images.isbndb.com/covers/07/39/9780553110739.jpg'), + ('037540256X', 'A Patchwork Planet', 'https://images.isbndb.com/covers/25/62/9780375402562.jpg'), + ('0440207622', 'Daddy', 'https://images.isbndb.com/covers/76/27/9780440207627.jpg'), + ('0671004654', 'Off The Face Of The Earth', 'https://images.isbndb.com/covers/46/51/9780671004651.jpg'), + ('034543630X', 'Simon''s Family: A Novel Of Mothers And Sons', 'https://images.isbndb.com/covers/63/06/9780345436306.jpg'), + ('0671759329', 'Darkest Hour (Cutler Family)', 'https://images.isbndb.com/covers/93/22/9780671759322.jpg'), + ('0399142495', 'Small Town Girl', 'https://images.isbndb.com/covers/24/99/9780399142499.jpg'), + ('0385306059', 'Wings', 'https://images.isbndb.com/covers/60/58/9780385306058.jpg'), + ('0843951044', 'To Wake The Dead', 'https://images.isbndb.com/covers/10/42/9780843951042.jpg'), + ('0743253973', 'A Separate Peace', 'https://images.isbndb.com/covers/39/70/9780743253970.jpg'), + ('1930603401', 'Fondue (Quick & Easy Series) (Quick & Easy (Silverback))', 'https://images.isbndb.com/covers/34/00/9781930603400.jpg'), + ('0971614504', 'Shade Of The Maple', 'https://images.isbndb.com/covers/45/05/9780971614505.jpg'), + ('006000780X', 'Boy Still Missing: A Novel', 'https://images.isbndb.com/covers/78/05/9780060007805.jpg'), + ('0450057062', 'Night Show', 'https://images.isbndb.com/covers/70/69/9780450057069.jpg'), + ('0747247838', 'Allhallow''s Eve', 'https://images.isbndb.com/covers/78/38/9780747247838.jpg'), + ('0972930949', 'The Fear Within', 'https://images.isbndb.com/covers/09/49/9780972930949.jpg'), + ('0843951842', 'Endless Night', 'https://images.isbndb.com/covers/18/44/9780843951844.jpg'), + ('0843953837', 'The Wind Caller', 'https://images.isbndb.com/covers/38/31/9780843953831.jpg'), + ('042519549X', 'Isle Of Palms', 'https://images.isbndb.com/covers/54/99/9780425195499.jpg'), + ('1400042070', 'The Amateur Marriage: A Novel', 'https://images.isbndb.com/covers/20/74/9781400042074.jpg'), + ('067084327X', 'Grace Point', 'https://images.isbndb.com/covers/32/75/9780670843275.jpg'), + ('0425193942', 'Sullivan''s Island (Lowcountry Tales)', 'https://images.isbndb.com/covers/39/45/9780425193945.jpg'), + ('0375506039', 'Open House', 'https://images.isbndb.com/covers/60/31/9780375506031.jpg'), + ('0345435028', 'What We Keep', 'https://images.isbndb.com/covers/50/26/9780345435026.jpg'), + ('0345453816', 'Killjoy: A Novel', 'https://images.isbndb.com/covers/38/15/9780345453815.jpg'), + ('0345464958', 'The Last Girls: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/49/58/9780345464958.jpg'), + ('0743412753', 'No Way Out', 'https://images.isbndb.com/covers/27/59/9780743412759.jpg'), + ('0553583956', 'Safe Harbor', 'https://images.isbndb.com/covers/39/53/9780553583953.jpg'), + ('0446612804', 'Don''t Tell', 'https://images.isbndb.com/covers/28/07/9780446612807.jpg'), + ('0618109617', 'The Mystery Of Breathing: A Novel', 'https://images.isbndb.com/covers/96/16/9780618109616.jpg'), + ('1401300316', 'The Center Of Everything', 'https://images.isbndb.com/covers/03/19/9781401300319.jpg'), + ('1889186287', 'Quest For Sex, Truth & Reality', 'https://images.isbndb.com/covers/62/83/9781889186283.jpg'), + ('1881475735', 'Operator B (Cemetery Dance Novella Series, No. 7)', 'https://images.isbndb.com/covers/57/36/9781881475736.jpg'), + ('0972085920', 'Rage', 'https://images.isbndb.com/covers/59/22/9780972085922.jpg'), + ('1889186228', 'Sex, Drugs & Power Tools', 'https://images.isbndb.com/covers/62/21/9781889186221.jpg'), + ('1892950103', 'Off Season : The Unexpurgated Signed Limited Edition', 'https://images.isbndb.com/covers/01/09/9781892950109.jpg'), + ('0671729411', 'Flowers In The Attic (Dollanganger, Book 1)', 'https://images.isbndb.com/covers/94/17/9780671729417.jpg'), + ('950028359X', 'Mi Planta De Naranja-Lima', 'https://images.isbndb.com/covers/35/95/9789500283595.jpg'), + ('043912042X', 'Esperanza Rising', 'https://images.isbndb.com/covers/04/25/9780439120425.jpg'), + ('9722100262', 'Memorial Do Convento', 'https://images.isbndb.com/covers/02/67/9789722100267.jpg'), + ('0060177225', 'Dangerous To Know', 'https://images.isbndb.com/covers/72/25/9780060177225.jpg'), + ('9505112033', '62 Modelo Para Armar (Spanish Edition)', 'https://images.isbndb.com/covers/20/36/9789505112036.jpg'), + ('9875500534', 'Bodas De Sangre (Spanish Edition)', 'https://images.isbndb.com/covers/05/32/9789875500532.jpg'), + ('9875500046', 'La Divina Comedia (Spanish Edition)', 'https://images.isbndb.com/covers/00/44/9789875500044.jpg'), + ('9875500526', 'Dona Rosita La Soltera (Spanish Edition)', 'https://images.isbndb.com/covers/05/25/9789875500525.jpg'), + ('0425128458', 'Sullivan''s Sting', 'https://images.isbndb.com/covers/84/59/9780425128459.jpg'), + ('0553568701', 'Bad Love (Alex Delaware Novels)', 'https://images.isbndb.com/covers/87/07/9780553568707.jpg'), + ('1569471231', 'Handmaid Of Desire', 'https://images.isbndb.com/covers/12/34/9781569471234.jpg'), + ('1889199036', 'Styles By Maggie Sweet', 'https://images.isbndb.com/covers/90/30/9781889199030.jpg'), + ('0345442938', 'My Only Story', 'https://images.isbndb.com/covers/29/32/9780345442932.jpg'), + ('0531058379', 'Afternoon Of The Elves', 'https://images.isbndb.com/covers/83/74/9780531058374.jpg'), + ('0425129616', 'The Mysterious Affair At Styles (Hercule Poirot)', 'https://images.isbndb.com/covers/96/16/9780425129616.jpg'), + ('1856352498', 'The Story Of Irish Emigration (Compact Irish History)', 'https://images.isbndb.com/covers/24/99/9781856352499.jpg'), + ('0688162827', 'Tell Me Your Dreams', 'https://images.isbndb.com/covers/28/25/9780688162825.jpg'), + ('0060083948', 'Tishomingo Blues', 'https://images.isbndb.com/covers/39/46/9780060083946.jpg'), + ('0679892206', 'Secret Ingredient (Stepping Stone, Paper)', 'https://images.isbndb.com/covers/22/05/9780679892205.jpg'), + ('1590521439', 'A Steadfast Surrender (Steadfast Series #1)', 'https://images.isbndb.com/covers/14/34/9781590521434.jpg'), + ('158660970X', 'Hidden Things: Where The Past Meets The Present--Head On', 'https://images.isbndb.com/covers/97/02/9781586609702.jpg'), + ('0152024999', 'Ginger Pye', 'https://images.isbndb.com/covers/49/94/9780152024994.jpg'), + ('0849942845', 'The Note: A Story Of Second Chances', 'https://images.isbndb.com/covers/28/46/9780849942846.jpg'), + ('158567074X', 'Frida', 'https://images.isbndb.com/covers/07/41/9781585670741.jpg'), + ('2070360024', 'L''étranger', 'https://images.isbndb.com/covers/00/24/9782070360024.jpg'), + ('0451184025', 'Dark Cathedral (Creed)', 'https://images.isbndb.com/covers/40/23/9780451184023.jpg'), + ('0553213695', 'The Metamorphosis (Bantam Classics)', 'https://images.isbndb.com/covers/36/90/9780553213690.jpg'), + ('0140089373', 'Fools Crow (Contemporary American Fiction)', 'https://images.isbndb.com/covers/93/70/9780140089370.jpg'), + ('0140291946', 'House Of The Winds (Penguin Readers Guide Inside)', 'https://images.isbndb.com/covers/19/40/9780140291940.jpg'), + ('0921149611', 'Folk And Fairy Tales', 'https://images.isbndb.com/covers/96/13/9780921149613.jpg'), + ('0460873598', 'Alice''s Adventures In Wonderland And Through The Looking Glass (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/35/98/9780460873598.jpg'), + ('0889223394', 'Modern Canadian Plays V.1', 'https://images.isbndb.com/covers/33/94/9780889223394.jpg'), + ('0138199051', 'Social Inequality In Canada Patterns Problems Policies', 'https://images.isbndb.com/covers/90/50/9780138199050.jpg'), + ('0771021461', 'Health, Illness & Medicine (Oxford)', 'https://images.isbndb.com/covers/14/66/9780771021466.jpg'), + ('0446344109', 'The Name Of The Rose', 'https://images.isbndb.com/covers/41/04/9780446344104.jpg'), + ('074320395X', 'The Body Artist: A Novel', 'https://images.isbndb.com/covers/39/51/9780743203951.jpg'), + ('0452008999', 'The Master And Margarita', 'https://images.isbndb.com/covers/89/91/9780452008991.jpg'), + ('0316788228', 'The Pilot''s Wife', 'https://images.isbndb.com/covers/82/29/9780316788229.jpg'), + ('0415902029', 'Erotic Welfare: Sexual Theory And Politics In The Age Of Epidemic (Thinking Gender)', 'https://images.isbndb.com/covers/20/21/9780415902021.jpg'), + ('0920057861', 'The Radical Papers (v. 1)', 'https://images.isbndb.com/covers/78/65/9780920057865.jpg'), + ('0774803436', 'Cross-cultural Caring: A Handbook For Health Professionals', 'https://images.isbndb.com/covers/34/34/9780774803434.jpg'), + ('1550170732', 'Power To Us All: Consititution Or Social Contract?', 'https://images.isbndb.com/covers/07/33/9781550170733.jpg'), + ('013116757X', 'Canadian Society: A Macro Analysis', 'https://images.isbndb.com/covers/75/75/9780131167575.jpg'), + ('0176035400', 'Work, Industry, And Canadian Society', 'https://images.isbndb.com/covers/54/02/9780176035402.jpg'), + ('0192815326', 'Frankenstein (World''s Classics)', 'https://images.isbndb.com/covers/53/23/9780192815323.jpg'), + ('0948984031', 'Scum Manifesto', 'https://images.isbndb.com/covers/40/37/9780948984037.jpg'), + ('014002476X', 'The Unicorn', 'https://images.isbndb.com/covers/47/60/9780140024760.jpg'), + ('155861009X', 'The End Of This Day''s Business', 'https://images.isbndb.com/covers/00/95/9781558610095.jpg'), + ('0671740288', 'Loony Bin Trip', 'https://images.isbndb.com/covers/02/83/9780671740283.jpg'), + ('0951426133', 'Free', 'https://images.isbndb.com/covers/61/35/9780951426135.jpg'), + ('0704339838', 'Never The Same Again: Women And The Miners'' Strike', 'https://images.isbndb.com/covers/98/35/9780704339835.jpg'), + ('0375421815', 'The Crazed: A Novel', 'https://images.isbndb.com/covers/18/15/9780375421815.jpg'), + ('0451519841', '1984: A Novel (Commemorative Edition)', 'https://images.isbndb.com/covers/98/49/9780451519849.jpg'), + ('0889222371', 'Cambodia: A Book For People Who Find Television Too Slow', 'https://images.isbndb.com/covers/23/73/9780889222373.jpg'), + ('006091307X', 'The Crying Of Lot 49 (Perennial Fiction Library)', 'https://images.isbndb.com/covers/30/76/9780060913076.jpg'), + ('0140067779', 'Obasan', 'https://images.isbndb.com/covers/77/74/9780140067774.jpg'), + ('0553211714', 'Anna Karenina', 'https://images.isbndb.com/covers/17/19/9780553211719.jpg'), + ('0440160677', 'The Other Side Of Midnight', 'https://images.isbndb.com/covers/06/70/9780440160670.jpg'), + ('0451158962', 'Miracle (Signet)', 'https://images.isbndb.com/covers/89/63/9780451158963.jpg'), + ('0061095869', 'Her Own Rules', 'https://images.isbndb.com/covers/58/63/9780061095863.jpg'), + ('0345345738', 'Women In His Life', 'https://images.isbndb.com/covers/57/38/9780345345738.jpg'), + ('1859671438', 'Tinwork (New Crafts)', 'https://images.isbndb.com/covers/14/36/9781859671436.jpg'), + ('0870407570', 'Paper Magic: Pop-Up Paper Craft: Origamic Architecture', 'https://images.isbndb.com/covers/75/74/9780870407574.jpg'), + ('0441172717', 'Dune (Dune Chronicles, Book 1)', 'https://images.isbndb.com/covers/27/19/9780441172719.jpg'), + ('0751510785', 'Next To A Letter From Home: Major Glenn Miller''s Wartime Band', 'https://images.isbndb.com/covers/07/82/9780751510782.jpg'), + ('0375803483', 'Count Karlstein', 'https://images.isbndb.com/covers/34/82/9780375803482.jpg'), + ('0060956453', 'Ordinary Resurrections: Children In The Years Of Hope', 'https://images.isbndb.com/covers/64/55/9780060956455.jpg'), + ('0971400415', 'Love Thy Sister', 'https://images.isbndb.com/covers/04/12/9780971400412.jpg'), + ('0374266441', 'Smilla''s Sense Of Snow', 'https://images.isbndb.com/covers/64/48/9780374266448.jpg'), + ('0452283876', 'Himalayan Dhaba', 'https://images.isbndb.com/covers/38/79/9780452283879.jpg'), + ('0375506292', 'The Seal Wife: A Novel', 'https://images.isbndb.com/covers/62/91/9780375506291.jpg'), + ('0553156691', 'TAKING CHARGE (Sweet Valley Twins)', 'https://images.isbndb.com/covers/66/90/9780553156690.jpg'), + ('0553156810', 'TEAMWORK (Sweet Valley Twins)', 'https://images.isbndb.com/covers/68/12/9780553156812.jpg'), + ('0553156950', 'Jessica And The Brat Attack (Sweet Valley Twins #29)', 'https://images.isbndb.com/covers/69/59/9780553156959.jpg'), + ('0553157159', 'PRINCESS ELIZABETH (Sweet Valley Twins)', 'https://images.isbndb.com/covers/71/54/9780553157154.jpg'), + ('0553156888', 'APRIL FOOL! (Sweet Valley Twins)', 'https://images.isbndb.com/covers/68/81/9780553156881.jpg'), + ('0553156357', 'JUMPING TO CONCLUSIONS (Sweet Valley Twins)', 'https://images.isbndb.com/covers/63/55/9780553156355.jpg'), + ('0553156535', 'Standing Out (Sweet Valley Twins #25) (A Bantam-Skylark Book)', 'https://images.isbndb.com/covers/65/39/9780553156539.jpg'), + ('0553157272', 'JESSICA''S BAD IDEA (Sweet Valley Twins)', 'https://images.isbndb.com/covers/72/77/9780553157277.jpg'), + ('0553156241', 'CLAIM TO FAME (Sweet Valley Twins)', 'https://images.isbndb.com/covers/62/49/9780553156249.jpg'), + ('0553156284', 'OUT OF PLACE (Sweet Valley Twins)', 'https://images.isbndb.com/covers/62/87/9780553156287.jpg'), + ('0553156098', 'LEFT BEHIND (Sweet Valley Twins)', 'https://images.isbndb.com/covers/60/96/9780553156096.jpg'), + ('0553157078', 'The Big Camp Secret (Sweet Valley Twins Super Editions)', 'https://images.isbndb.com/covers/70/79/9780553157079.jpg'), + ('0553156411', 'Holiday Mischief (Sweet Valley Twins Super Editions)', 'https://images.isbndb.com/covers/64/16/9780553156416.jpg'), + ('0553155881', 'The Class Trip (Sweet Valley Twins Super Editions)', 'https://images.isbndb.com/covers/58/84/9780553155884.jpg'), + ('0553156063', 'PLAYING HOOKY (Sweet Valley Twins)', 'https://images.isbndb.com/covers/60/65/9780553156065.jpg'), + ('0553156632', 'TUG OF WAR (Sweet Valley Twins)', 'https://images.isbndb.com/covers/66/38/9780553156638.jpg'), + ('0553484346', 'Elizabeth Solves It All (Francine Pascal''s Sweet Valley Twins #103)', 'https://images.isbndb.com/covers/43/42/9780553484342.jpg'), + ('0060961023', 'Taming Your Gremlin: A Guide To Enjoying Yourself', 'https://images.isbndb.com/covers/10/22/9780060961022.jpg'), + ('0385134444', 'Farm Journal''s Freezing And Canning Cookbook: Prized Recipes From The Farms Of America', 'https://images.isbndb.com/covers/44/46/9780385134446.jpg'), + ('0446342963', 'Dreamer''s Dictionary', 'https://images.isbndb.com/covers/29/64/9780446342964.jpg'), + ('0023672609', 'Descartes: Discourse On Method And The Meditations', 'https://images.isbndb.com/covers/26/06/9780023672606.jpg'), + ('1567615325', 'Complete Idiot''s Guide To Perfect Wedding (The Complete Idiot''s Guide)', 'https://images.isbndb.com/covers/53/26/9781567615326.jpg'), + ('0451410327', 'Shetland Summer', 'https://images.isbndb.com/covers/03/20/9780451410320.jpg'), + ('0553569902', 'Lion''s Bride', 'https://images.isbndb.com/covers/99/02/9780553569902.jpg'), + ('0553574116', 'Wicked Widow', 'https://images.isbndb.com/covers/41/11/9780553574111.jpg'), + ('3442413508', 'Auf Ehre Und Gewissen: Roman', 'https://images.isbndb.com/covers/35/08/9783442413508.jpg'), + ('0385479484', 'The Short History Of A Prince: A Novel', 'https://images.isbndb.com/covers/94/86/9780385479486.jpg'), + ('3257234015', 'Zwei Fremde Im Zug', 'https://images.isbndb.com/covers/40/15/9783257234015.jpg'), + ('0030914566', 'Soldier', 'https://images.isbndb.com/covers/45/60/9780030914560.jpg'), + ('0425185796', 'The Crossword Connection', 'https://images.isbndb.com/covers/57/97/9780425185797.jpg'), + ('087923573X', 'Swallows And Amazons', 'https://images.isbndb.com/covers/57/34/9780879235734.jpg'), + ('1573223328', 'Across The Nightingale Floor (Tales Of The Otori, Book 1)', 'https://images.isbndb.com/covers/33/24/9781573223324.jpg'), + ('0399142614', 'The List', 'https://images.isbndb.com/covers/26/11/9780399142611.jpg'), + ('0375703128', 'The Road To Mars', 'https://images.isbndb.com/covers/31/26/9780375703126.jpg'), + ('0553232320', 'Road To Gandolfo', 'https://images.isbndb.com/covers/23/25/9780553232325.jpg'), + ('0440318688', 'Deliverance', 'https://images.isbndb.com/covers/86/82/9780440318682.jpg'), + ('0345314980', 'Berlin Game (Bernard Samson, Book 1)', 'https://images.isbndb.com/covers/49/87/9780345314987.jpg'), + ('3455042457', 'Das Serbische Mädchen', 'https://images.isbndb.com/covers/24/50/9783455042450.jpg'), + ('0380811812', 'Aftermath: A Novel Of Suspense (Inspector Banks Novels)', 'https://images.isbndb.com/covers/18/16/9780380811816.jpg'), + ('0452267110', 'Praisesong For The Widow', 'https://images.isbndb.com/covers/71/14/9780452267114.jpg'), + ('0451187261', 'Matters Of Choice', 'https://images.isbndb.com/covers/72/60/9780451187260.jpg'), + ('0425068293', 'Savannah', 'https://images.isbndb.com/covers/82/98/9780425068298.jpg'), + ('0553295233', 'Bright Captivity (Georgia Trilogy, Book 1)', 'https://images.isbndb.com/covers/52/38/9780553295238.jpg'), + ('0743246071', 'The Queen''s Fool: A Novel (Boleyn)', 'https://images.isbndb.com/covers/60/71/9780743246071.jpg'), + ('0743417682', 'From A Buick 8', 'https://images.isbndb.com/covers/76/86/9780743417686.jpg'), + ('0385507593', 'Jennifer Government: A Novel', 'https://images.isbndb.com/covers/75/92/9780385507592.jpg'), + ('0345441036', 'Black House', 'https://images.isbndb.com/covers/10/34/9780345441034.jpg'), + ('0345366700', 'Tanar Of Pellucidar: (#3) (Pellucidar Series)', 'https://images.isbndb.com/covers/67/02/9780345366702.jpg'), + ('0441470017', 'Land Of Terror', 'https://images.isbndb.com/covers/00/13/9780441470013.jpg'), + ('0441046371', 'Back To Stone Age', 'https://images.isbndb.com/covers/63/79/9780441046379.jpg'), + ('0553575708', 'The Edge Of Human (Blade Runner, Book 2)', 'https://images.isbndb.com/covers/57/05/9780553575705.jpg'), + ('0812542843', 'Angel', 'https://images.isbndb.com/covers/28/44/9780812542844.jpg'), + ('0553281747', 'Mona Lisa Overdrive', 'https://images.isbndb.com/covers/17/43/9780553281743.jpg'), + ('1572971967', 'Fierce Creatures', 'https://images.isbndb.com/covers/19/67/9781572971967.jpg'), + ('1565049314', 'Child Of The Light: Book One Of The Madagascar Manifesto', 'https://images.isbndb.com/covers/93/14/9781565049314.jpg'), + ('006109398X', 'Treasure Box', 'https://images.isbndb.com/covers/39/82/9780061093982.jpg'), + ('156947012X', 'The Liar', 'https://images.isbndb.com/covers/01/21/9781569470121.jpg'), + ('0312867549', '1921: The Great Novel Of The Irish Civil War', 'https://images.isbndb.com/covers/75/46/9780312867546.jpg'), + ('157322202X', 'The Dream Of Scipio', 'https://images.isbndb.com/covers/20/20/9781573222020.jpg'), + ('0879516283', 'The Gormenghast Novels (Titus Groan / Gormenghast / Titus Alone)', 'https://images.isbndb.com/covers/62/84/9780879516284.jpg'), + ('0812571339', 'Crossroads Of Twilight (Wheel Of Time, Book 10)', 'https://images.isbndb.com/covers/13/32/9780812571332.jpg'), + ('037541200X', 'Blood Canticle (The Vampire Chronicles)', 'https://images.isbndb.com/covers/20/04/9780375412004.jpg'), + ('0380732033', 'The Night Lives On: The Untold Stories & Secrets Behind The Sinking Of The Unsinkable Ship-Titanic', 'https://images.isbndb.com/covers/20/36/9780380732036.jpg'), + ('0553278274', 'A Night To Remember', 'https://images.isbndb.com/covers/82/79/9780553278279.jpg'), + ('0553571885', 'A Thin Dark Line', 'https://images.isbndb.com/covers/18/82/9780553571882.jpg'), + ('014034294X', 'Matilda', 'https://images.isbndb.com/covers/29/49/9780140342949.jpg'), + ('192883244X', 'Man, Woman, And The Meaning Of Love: God''s Plan For Love, Marriage, Intimacy, And The Family', 'https://images.isbndb.com/covers/24/47/9781928832447.jpg'), + ('0934641641', 'How To Rock Climb! 2nd Edition', 'https://images.isbndb.com/covers/16/47/9780934641647.jpg'), + ('1851820442', 'The Navarre Bible: Acts Of The Apostles (The Navarre Bible: New Testament)', 'https://images.isbndb.com/covers/04/43/9781851820443.jpg'), + ('0446671444', 'What Your Doctor May Not Tell You About Menopause: The Breakthrough Book On Natural Progesterone', 'https://images.isbndb.com/covers/14/46/9780446671446.jpg'), + ('0440717949', 'Dear Mr. Henshaw', 'https://images.isbndb.com/covers/79/42/9780440717942.jpg'), + ('0140502343', 'The Story Of Ferdinand (Picture Puffins)', 'https://images.isbndb.com/covers/23/43/9780140502343.jpg'), + ('0590478346', 'Sounder', 'https://images.isbndb.com/covers/83/42/9780590478342.jpg'), + ('0440474655', 'Sadako And The 1000 Paper Cranes', 'https://images.isbndb.com/covers/46/54/9780440474654.jpg'), + ('0806968532', 'Secret Hiding Places: (For Clever Kids)', 'https://images.isbndb.com/covers/85/37/9780806968537.jpg'), + ('0385318413', 'What Your Kindergartner Needs To Know: Preparing Your Child For A Lifetime Of Learning (Core Knowledge Series)', 'https://images.isbndb.com/covers/84/19/9780385318419.jpg'), + ('1569873291', 'Who''s A Goblin?', 'https://images.isbndb.com/covers/32/98/9781569873298.jpg'), + ('1569870381', 'The Christmas Cookies', 'https://images.isbndb.com/covers/03/89/9781569870389.jpg'), + ('030701035X', 'Walt Disney''s Cinderella, A Little Golden Book', 'https://images.isbndb.com/covers/03/53/9780307010353.jpg'), + ('0439327660', 'School''s In!', 'https://images.isbndb.com/covers/76/64/9780439327664.jpg'), + ('1885221665', 'If You Wear Out Your Body, Where Will You Live?: The Little Book Of Nourishment For Your Body, Mind And Soul', 'https://images.isbndb.com/covers/16/67/9781885221667.jpg'), + ('006441082X', 'When Good Ghouls Go Bad', 'https://images.isbndb.com/covers/08/23/9780064410823.jpg'), + ('0590189344', 'Lost In Space: Digest', 'https://images.isbndb.com/covers/93/47/9780590189347.jpg'), + ('1561791334', 'Behind The Locked Door (Adventures In Odyssey Fiction Series #4)', 'https://images.isbndb.com/covers/13/30/9781561791330.jpg'), + ('0553225413', 'House Of Danger (Choose Your Own Adventure, No. 15)', 'https://images.isbndb.com/covers/54/19/9780553225419.jpg'), + ('0451188586', 'The Illustrated Sports Record Book: Revised And Updated Fourth Edition', 'https://images.isbndb.com/covers/85/88/9780451188588.jpg'), + ('1561568805', 'Tales Of Terror And Suspense', 'https://images.isbndb.com/covers/88/02/9781561568802.jpg'), + ('043921064X', 'Don''t Get Caught In The Girls Locker Room', 'https://images.isbndb.com/covers/06/45/9780439210645.jpg'), + ('0717289079', 'Disney''s Tarzan (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/90/73/9780717289073.jpg'), + ('0842341137', 'Take Me Out Of The Ball Game (McGee And Me!)', 'https://images.isbndb.com/covers/11/34/9780842341134.jpg'), + ('0439057469', 'Home Run Heroes!: Mark McGwire And Sammy Sosa', 'https://images.isbndb.com/covers/74/62/9780439057462.jpg'), + ('0590425587', 'Drina Dances On Stage', 'https://images.isbndb.com/covers/55/82/9780590425582.jpg'), + ('0440402921', 'Travelers By Night', 'https://images.isbndb.com/covers/29/23/9780440402923.jpg'), + ('0316142336', 'At The Plate With...Ken Griffey Jr. (Matt Christopher Sports Bio Bookshelf)', 'https://images.isbndb.com/covers/23/35/9780316142335.jpg'), + ('0310202639', 'Baseball 2', 'https://images.isbndb.com/covers/26/39/9780310202639.jpg'), + ('0310495512', 'Baseball (Sports Heroes)', 'https://images.isbndb.com/covers/55/12/9780310495512.jpg'), + ('1889733008', 'The Butterfly That Found Her Way Home/La Mariposa Que Encontro El Camino A Casa', 'https://images.isbndb.com/covers/30/05/9781889733005.jpg'), + ('0440406943', 'D''Aulaires'' Book Of Greek Myths', 'https://images.isbndb.com/covers/69/45/9780440406945.jpg'), + ('1856975770', 'The Kingfisher First Dictionary (Kingfisher First Reference)', 'https://images.isbndb.com/covers/57/73/9781856975773.jpg'), + ('1568222033', 'Big Book Of Everything, Preschool', 'https://images.isbndb.com/covers/20/35/9781568222035.jpg'), + ('9531530319', 'Gdje Pijevac Ne Pjeva (Biblioteka "Zlatni Paun") (Croatian Edition)', 'https://images.isbndb.com/covers/03/16/9789531530316.jpg'), + ('1567186483', 'Origins Of Modern Witchcraft: The Evolution Of A World Religion', 'https://images.isbndb.com/covers/64/82/9781567186482.jpg'), + ('0738841943', 'Black Moon', 'https://images.isbndb.com/covers/19/46/9780738841946.jpg'), + ('0806512687', 'The Candle Magick Workbook: Why And How Candle Magick Works', 'https://images.isbndb.com/covers/26/86/9780806512686.jpg'), + ('0875420486', 'Practical Candleburning Rituals: Spells And Rituals For Every Purpose (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/04/86/9780875420486.jpg'), + ('0385333137', 'Black And Blue (Oprah''s Book Club)', 'https://images.isbndb.com/covers/31/39/9780385333139.jpg'), + ('034538430X', 'Ticktock', 'https://images.isbndb.com/covers/43/00/9780345384300.jpg'), + ('0553576801', 'The Perfect Husband', 'https://images.isbndb.com/covers/68/01/9780553576801.jpg'), + ('1551668637', 'New Attitude (MIRA)', 'https://images.isbndb.com/covers/86/35/9781551668635.jpg'), + ('0060169281', 'Soul Mates: Honoring The Mysteries Of Love And Relationship', 'https://images.isbndb.com/covers/92/82/9780060169282.jpg'), + ('1551666952', 'The Falls', 'https://images.isbndb.com/covers/69/52/9781551666952.jpg'), + ('0553285785', 'Public Secrets', 'https://images.isbndb.com/covers/57/89/9780553285789.jpg'), + ('0373484410', 'Time And Again', 'https://images.isbndb.com/covers/44/16/9780373484416.jpg'), + ('0064405877', 'Am I Blue?: Coming Out From The Silence', 'https://images.isbndb.com/covers/58/74/9780064405874.jpg'), + ('0060009640', 'Crush Depth', 'https://images.isbndb.com/covers/96/49/9780060009649.jpg'), + ('0060182970', 'Coldheart Canyon: A Hollywood Ghost Story', 'https://images.isbndb.com/covers/29/77/9780060182977.jpg'), + ('0399144897', 'The White House Connection', 'https://images.isbndb.com/covers/48/99/9780399144899.jpg'), + ('0061031089', 'Running Scared', 'https://images.isbndb.com/covers/10/83/9780061031083.jpg'), + ('0312890273', 'Ancient Of Days', 'https://images.isbndb.com/covers/02/78/9780312890278.jpg'), + ('0446608378', 'Thunderhead', 'https://images.isbndb.com/covers/83/74/9780446608374.jpg'), + ('0449001962', 'Murder In Foggy Bottom (Capital Crimes)', 'https://images.isbndb.com/covers/19/67/9780449001967.jpg'), + ('074321269X', 'The Jasmine Trade: A Novel Of Suspense Introducing Eve Diamond', 'https://images.isbndb.com/covers/26/94/9780743212694.jpg'), + ('0385323921', 'The Klone And I', 'https://images.isbndb.com/covers/39/25/9780385323925.jpg'), + ('1551668440', 'Snowfall', 'https://images.isbndb.com/covers/84/44/9781551668444.jpg'), + ('0446518700', 'The Heart: A Memoir', 'https://images.isbndb.com/covers/87/03/9780446518703.jpg'), + ('0451201906', 'Storm', 'https://images.isbndb.com/covers/19/04/9780451201904.jpg'), + ('0812555058', 'Frost Of Heaven', 'https://images.isbndb.com/covers/50/59/9780812555059.jpg'), + ('0441005543', 'Night Watch', 'https://images.isbndb.com/covers/55/43/9780441005543.jpg'), + ('0312956681', 'Rulers Of Darkness', 'https://images.isbndb.com/covers/66/84/9780312956684.jpg'), + ('0373262736', 'Fowl Play (A Molly West Mystery) (Worldwide Library Mystery)', 'https://images.isbndb.com/covers/27/31/9780373262731.jpg'), + ('155166836X', 'Last Lover', 'https://images.isbndb.com/covers/83/69/9781551668369.jpg'), + ('0451193288', 'Reckless Endangerment', 'https://images.isbndb.com/covers/32/85/9780451193285.jpg'), + ('0553578022', 'The Face Of Deception (Eve Duncan)', 'https://images.isbndb.com/covers/80/27/9780553578027.jpg'), + ('0449219364', 'G Is For Gumshoe (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/93/62/9780449219362.jpg'), + ('1842328506', 'The Widow (A Van Der Valk Thriller)', 'https://images.isbndb.com/covers/85/07/9781842328507.jpg'), + ('0446516279', 'Dreamfall', 'https://images.isbndb.com/covers/62/73/9780446516273.jpg'), + ('0380775832', 'Winter Fire', 'https://images.isbndb.com/covers/58/35/9780380775835.jpg'), + ('0440215900', 'Walking After Midnight', 'https://images.isbndb.com/covers/59/05/9780440215905.jpg'), + ('0380818760', 'Beautiful Dreamer', 'https://images.isbndb.com/covers/87/61/9780380818761.jpg'), + ('0446361836', 'Forever, Victoria', 'https://images.isbndb.com/covers/18/35/9780446361835.jpg'), + ('0517549069', 'Mistral''s Daughter', 'https://images.isbndb.com/covers/90/63/9780517549063.jpg'), + ('1567187277', 'Murder At Witches'' Bluff', 'https://images.isbndb.com/covers/72/74/9781567187274.jpg'), + ('0373272359', 'Texas Hero (Code Name: Danger) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/23/58/9780373272358.jpg'), + ('0446605883', 'With Song', 'https://images.isbndb.com/covers/58/85/9780446605885.jpg'), + ('1567181562', 'The Celtic Heart', 'https://images.isbndb.com/covers/15/62/9781567181562.jpg'), + ('0140187405', 'Tortilla Flat (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/74/03/9780140187403.jpg'), + ('0893753971', 'Great Tales Of Terror (Watermill Classics)', 'https://images.isbndb.com/covers/39/79/9780893753979.jpg'), + ('1853260584', 'Return Of Sherlock Holmes (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/05/82/9781853260582.jpg'), + ('0590434985', 'Jacob Have I Loved', 'https://images.isbndb.com/covers/49/80/9780590434980.jpg'), + ('0671739670', 'LIFE, THE UNIVERSE AND EVERYTHING', 'https://images.isbndb.com/covers/96/76/9780671739676.jpg'), + ('0843953101', 'You Are So Cursed!', 'https://images.isbndb.com/covers/31/07/9780843953107.jpg'), + ('0345308484', 'What Every Woman Should Know About Men', 'https://images.isbndb.com/covers/84/81/9780345308481.jpg'), + ('0393307069', 'Post Captain ( Book 2 In Series) (Aubrey/Maturin Novels)', 'https://images.isbndb.com/covers/70/61/9780393307061.jpg'), + ('0380789140', 'Prisoner Of Conscience', 'https://images.isbndb.com/covers/91/46/9780380789146.jpg'), + ('0451453824', 'Battletech 19: Tactics Of Duty', 'https://images.isbndb.com/covers/38/22/9780451453822.jpg'), + ('0440186927', 'There Is A Tide', 'https://images.isbndb.com/covers/69/22/9780440186922.jpg'), + ('0679783261', 'Pride And Prejudice (Modern Library Classics)', 'https://images.isbndb.com/covers/32/68/9780679783268.jpg'), + ('0375806717', 'The Black Stallion', 'https://images.isbndb.com/covers/67/11/9780375806711.jpg'), + ('0515137057', 'Clean Cut (Paris Murphy Mysteries)', 'https://images.isbndb.com/covers/70/57/9780515137057.jpg'), + ('0743227441', 'The Other Boleyn Girl', 'https://images.isbndb.com/covers/74/45/9780743227445.jpg'), + ('0670877999', 'Slow Burn', 'https://images.isbndb.com/covers/79/97/9780670877997.jpg'), + ('0312986289', 'Blackwater Sound: A Novel (Thorn Mysteries)', 'https://images.isbndb.com/covers/62/85/9780312986285.jpg'), + ('0812570901', 'The Fifth Horseman: A Novel Of Biological Disaster', 'https://images.isbndb.com/covers/09/08/9780812570908.jpg'), + ('0671024108', 'Speaking In Tongues', 'https://images.isbndb.com/covers/41/09/9780671024109.jpg'), + ('0345433491', 'Hanna''s Daughters: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/34/97/9780345433497.jpg'), + ('0671793888', 'Cowboys Are My Weakness', 'https://images.isbndb.com/covers/38/83/9780671793883.jpg'), + ('0679769447', 'What Girls Learn: A Novel', 'https://images.isbndb.com/covers/94/46/9780679769446.jpg'), + ('0671535455', 'Hoopi Shoopi Donna', 'https://images.isbndb.com/covers/54/52/9780671535452.jpg'), + ('1558743316', 'A 2nd Helping Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/33/11/9781558743311.jpg'), + ('0345381432', 'Dreaming In Cuban', 'https://images.isbndb.com/covers/14/39/9780345381439.jpg'), + ('089919513X', 'OLIVE AND THE MAGIC HAT', 'https://images.isbndb.com/covers/51/31/9780899195131.jpg'), + ('043919105X', 'Powerpuff Girls 8x8 #04: Paste Makes Waste', 'https://images.isbndb.com/covers/10/50/9780439191050.jpg'), + ('0553375067', 'Emotional Intelligence: Why It Can Matter More Than IQ', 'https://images.isbndb.com/covers/50/60/9780553375060.jpg'), + ('0671452177', 'The World According To Garp', 'https://images.isbndb.com/covers/21/79/9780671452179.jpg'), + ('0451143426', 'One Flew Over The Cuckoo''s Nest', 'https://images.isbndb.com/covers/34/26/9780451143426.jpg'), + ('0553275976', 'The Bonfire Of The Vanities', 'https://images.isbndb.com/covers/59/71/9780553275971.jpg'), + ('0553122509', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/25/03/9780553122503.jpg'), + ('0140092323', 'Lake Wobegon Days', 'https://images.isbndb.com/covers/23/25/9780140092325.jpg'), + ('0441779131', 'Stainless Steel Rat Saves The World (Stainless Steel Rat Books)', 'https://images.isbndb.com/covers/91/30/9780441779130.jpg'), + ('0345387813', 'Power Play (Petaybee, Book 3)', 'https://images.isbndb.com/covers/78/13/9780345387813.jpg'), + ('1562927736', 'The Adventures Of Mighty Mom: Here She Comes To Save The Day...If Only She Can Find The Keys!', 'https://images.isbndb.com/covers/77/38/9781562927738.jpg'), + ('0553293885', 'A Great Day For The Deadly', 'https://images.isbndb.com/covers/38/83/9780553293883.jpg'), + ('0671795171', 'Passing Fancy (Alien Nation, Book 6)', 'https://images.isbndb.com/covers/51/77/9780671795177.jpg'), + ('0449702472', 'Truth Trap', 'https://images.isbndb.com/covers/24/75/9780449702475.jpg'), + ('0553564404', 'Finnegan''s Week', 'https://images.isbndb.com/covers/44/02/9780553564402.jpg'), + ('0441873308', 'Warlock Unlocked', 'https://images.isbndb.com/covers/33/02/9780441873302.jpg'), + ('0812512421', 'Lion In The Valley', 'https://images.isbndb.com/covers/24/27/9780812512427.jpg'), + ('0553209833', 'The Lost Jewels Of Nabooti', 'https://images.isbndb.com/covers/98/39/9780553209839.jpg'), + ('0553562398', 'Rest In Pieces (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/23/92/9780553562392.jpg'), + ('0553287532', 'Wish You Were Here (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/75/30/9780553287530.jpg'), + ('0312979509', 'Spider''s Web', 'https://images.isbndb.com/covers/95/08/9780312979508.jpg'), + ('0060199296', 'Today I Am A Ma''am: And Other Musings On Life, Beauty, And Growing Older', 'https://images.isbndb.com/covers/92/96/9780060199296.jpg'), + ('1885365012', 'Dancing With Tigers', 'https://images.isbndb.com/covers/50/19/9781885365019.jpg'), + ('0931580781', 'Life 101: Everything We Wish We Had Learned About Life In School--But Didn''t (The Life 101 Series)', 'https://images.isbndb.com/covers/07/89/9780931580789.jpg'), + ('0440214602', 'Crossing Antarctica', 'https://images.isbndb.com/covers/46/01/9780440214601.jpg'), + ('0425191583', 'Imitation In Death', 'https://images.isbndb.com/covers/15/83/9780425191583.jpg'), + ('0061097942', 'Our Looks/Our Lives: Sex, Beauty, Power, And The Need To Be Seen', 'https://images.isbndb.com/covers/79/42/9780061097942.jpg'), + ('0449207145', 'My Name Is Asher Lev', 'https://images.isbndb.com/covers/71/47/9780449207147.jpg'), + ('0380704900', 'Nighty-Nightmare (Bunnicula)', 'https://images.isbndb.com/covers/49/03/9780380704903.jpg'), + ('0553278363', 'The Red Pony', 'https://images.isbndb.com/covers/83/61/9780553278361.jpg'), + ('0684717603', 'The Great Gatsby (Scribner Classic)', 'https://images.isbndb.com/covers/76/09/9780684717609.jpg'), + ('0671666401', 'Surrender The Pink', 'https://images.isbndb.com/covers/64/08/9780671666408.jpg'), + ('0671434225', 'Contact', 'https://images.isbndb.com/covers/42/29/9780671434229.jpg'), + ('0609609491', 'The One Minute Millionaire: The Enlightened Way To Wealth', 'https://images.isbndb.com/covers/94/91/9780609609491.jpg'), + ('3453136411', 'Das Urteil: Roman', 'https://images.isbndb.com/covers/64/10/9783453136410.jpg'), + ('0671742949', 'Under Siege', 'https://images.isbndb.com/covers/29/42/9780671742942.jpg'), + ('0553582127', 'The Search (Eve Duncan)', 'https://images.isbndb.com/covers/21/23/9780553582123.jpg'), + ('0425169685', 'Flight Of Eagles', 'https://images.isbndb.com/covers/96/81/9780425169681.jpg'), + ('0425132625', 'Sky Masters', 'https://images.isbndb.com/covers/26/23/9780425132623.jpg'), + ('0440225817', 'Acts Of Malice', 'https://images.isbndb.com/covers/58/12/9780440225812.jpg'), + ('0312982615', 'Robert Ludlum''s The Paris Option (A Covert-One Novel)', 'https://images.isbndb.com/covers/26/14/9780312982614.jpg'), + ('0743456394', 'The White Road: A Thriller', 'https://images.isbndb.com/covers/63/95/9780743456395.jpg'), + ('0312270712', 'Dispensing With The Truth: The Victims, The Drug Companies, And The Dramatic Story Behind The Battle Over Fen-Phen', 'https://images.isbndb.com/covers/07/11/9780312270711.jpg'), + ('0060163283', 'Bones: A Forensic Detective''s Casebook', 'https://images.isbndb.com/covers/32/80/9780060163280.jpg'), + ('0061091847', 'Mafia Dynasty: The Rise And Fall Of The Gambino Crime Family', 'https://images.isbndb.com/covers/18/41/9780061091841.jpg'), + ('0553578308', 'Tough Cookie (Goldy Culinary Mysteries, Book 9)', 'https://images.isbndb.com/covers/83/00/9780553578300.jpg'), + ('0393300498', 'As We Are Now', 'https://images.isbndb.com/covers/04/99/9780393300499.jpg'), + ('0553578359', 'Chopping Spree (Goldy Culinary Mysteries, Book 11)', 'https://images.isbndb.com/covers/83/55/9780553578355.jpg'), + ('0671529986', 'Mother: Famous Writers Celebrate Motherhood With A Treasury Of Short Stories, Essays, And Poems', 'https://images.isbndb.com/covers/99/87/9780671529987.jpg'), + ('1594570841', 'MacFarlane''s Ridge', 'https://images.isbndb.com/covers/08/41/9781594570841.jpg'), + ('1853260061', 'Portrait Of The Artist As A Young Man (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/63/9781853260063.jpg'), + ('0440901588', 'A Swiftly Tilting Planet (The Time Quartet)', 'https://images.isbndb.com/covers/15/87/9780440901587.jpg'), + ('0425146421', 'The Wizard''s Daughter', 'https://images.isbndb.com/covers/64/22/9780425146422.jpg'), + ('1551666235', 'Wild Enough For Willa (Mira)', 'https://images.isbndb.com/covers/62/35/9781551666235.jpg'), + ('0553281143', 'Obnoxious Jerks, The', 'https://images.isbndb.com/covers/11/49/9780553281149.jpg'), + ('068419337X', 'The Shipping News', 'https://images.isbndb.com/covers/33/73/9780684193373.jpg'), + ('0345305779', 'Get Off The Unicorn', 'https://images.isbndb.com/covers/57/70/9780345305770.jpg'), + ('0684827123', 'The Song Of The Dodo: Island Biogeography In An Age Of Extinction', 'https://images.isbndb.com/covers/71/24/9780684827124.jpg'), + ('0380792028', 'Glorious Angel', 'https://images.isbndb.com/covers/20/23/9780380792023.jpg'), + ('0821770195', 'Charming Lily', 'https://images.isbndb.com/covers/01/91/9780821770191.jpg'), + ('0517593343', 'Spring Collection', 'https://images.isbndb.com/covers/33/49/9780517593349.jpg'), + ('0969522908', 'The Canadian Achievers: How They Did It, How You Can Do It, Why You Should Do It', 'https://images.isbndb.com/covers/29/04/9780969522904.jpg'), + ('0842357424', 'Land Of The Shadow (The Appomattox Saga, Book 4)', 'https://images.isbndb.com/covers/74/25/9780842357425.jpg'), + ('051513225X', 'Pendragon', 'https://images.isbndb.com/covers/22/50/9780515132250.jpg'), + ('0886773490', 'The Star Scroll (Dragon Prince, Book 2)', 'https://images.isbndb.com/covers/34/96/9780886773496.jpg'), + ('0515129933', 'The Scottish Bride (Bride Series)', 'https://images.isbndb.com/covers/99/39/9780515129939.jpg'), + ('051512088X', 'Rosehaven (Song Series)', 'https://images.isbndb.com/covers/08/82/9780515120882.jpg'), + ('0345387805', 'Power Lines (Petaybee, Book 2)', 'https://images.isbndb.com/covers/78/06/9780345387806.jpg'), + ('0345316002', 'Killashandra', 'https://images.isbndb.com/covers/60/04/9780345316004.jpg'), + ('0441003583', 'The Godmother''s Apprentice', 'https://images.isbndb.com/covers/35/87/9780441003587.jpg'), + ('0441005195', 'Jovah''s Angel (Samaria, Book 2)', 'https://images.isbndb.com/covers/51/92/9780441005192.jpg'), + ('0441004326', 'Archangel (Samaria, Book 1)', 'https://images.isbndb.com/covers/43/24/9780441004324.jpg'), + ('0441005055', 'The Alleluia Files (Ace Science Fiction)', 'https://images.isbndb.com/covers/50/55/9780441005055.jpg'), + ('0590034871', 'Girls Know Best', 'https://images.isbndb.com/covers/48/76/9780590034876.jpg'), + ('0425179648', 'Marrying The Mistress', 'https://images.isbndb.com/covers/96/42/9780425179642.jpg'), + ('9070066882', 'Het Volgende Verhaal (Dutch Edition)', 'https://images.isbndb.com/covers/68/88/9789070066888.jpg'), + ('0553262807', 'Always Coming Home', 'https://images.isbndb.com/covers/28/03/9780553262803.jpg'), + ('0679420916', 'Operating Instructions: A Journal Of My Son''s First Year', 'https://images.isbndb.com/covers/09/10/9780679420910.jpg'), + ('0895948028', 'Old Age Is Another Country: A Traveler''s Guide', 'https://images.isbndb.com/covers/80/21/9780895948021.jpg'), + ('0446515612', 'The American Vegetarian Cookbook From The Fit For Life Kitchen', 'https://images.isbndb.com/covers/56/10/9780446515610.jpg'), + ('1569247137', 'Three Trapped Tigers', 'https://images.isbndb.com/covers/71/36/9781569247136.jpg'), + ('0671657860', 'Many Lives, Many Masters: The True Story Of A Prominent Psychiatrist, His Young Patient, And The Past-Life Therapy That Changed Both Their Lives', 'https://images.isbndb.com/covers/78/64/9780671657864.jpg'), + ('0515103292', 'When Rabbit Howls', 'https://images.isbndb.com/covers/32/98/9780515103298.jpg'), + ('0060956283', 'Good/Grief', 'https://images.isbndb.com/covers/62/88/9780060956288.jpg'), + ('3596142172', 'Body And Soul', 'https://images.isbndb.com/covers/21/70/9783596142170.jpg'), + ('3404142942', 'Das Jesus Video', 'https://images.isbndb.com/covers/29/41/9783404142941.jpg'), + ('3453160789', 'Aurora', 'https://images.isbndb.com/covers/07/81/9783453160781.jpg'), + ('3453162358', 'Der Erleuchtete.', 'https://images.isbndb.com/covers/23/58/9783453162358.jpg'), + ('3257230044', 'Der Spion Und Der Analytiker', 'https://images.isbndb.com/covers/00/48/9783257230048.jpg'), + ('354824971X', 'Harte Nuss', 'https://images.isbndb.com/covers/97/11/9783548249711.jpg'), + ('345315178X', 'Nimitz Class', 'https://images.isbndb.com/covers/17/89/9783453151789.jpg'), + ('3442727103', 'Die Versuchung In Der Wüste', 'https://images.isbndb.com/covers/71/00/9783442727100.jpg'), + ('344272144X', 'Inspektor Kajetan Und Die Sache Koslowski: Roman', 'https://images.isbndb.com/covers/14/43/9783442721443.jpg'), + ('3596147832', 'Das Haus Der Harmonie', 'https://images.isbndb.com/covers/78/30/9783596147830.jpg'), + ('3404139968', 'Von Zeit Zu Zeit', 'https://images.isbndb.com/covers/99/65/9783404139965.jpg'), + ('3453196643', 'Inseln Im Netz', 'https://images.isbndb.com/covers/66/43/9783453196643.jpg'), + ('3442351472', 'Seidentanz', 'https://images.isbndb.com/covers/14/73/9783442351473.jpg'), + ('3442435285', 'Feuerfrau', 'https://images.isbndb.com/covers/52/89/9783442435289.jpg'), + ('3442431379', 'Silbermuschel', 'https://images.isbndb.com/covers/13/73/9783442431373.jpg'), + ('3404143485', 'Die Versuchung: Roman', 'https://images.isbndb.com/covers/34/81/9783404143481.jpg'), + ('3596223946', 'Sommerhaus, Später', 'https://images.isbndb.com/covers/39/47/9783596223947.jpg'), + ('3547717655', 'Wüstenmond: Roman', 'https://images.isbndb.com/covers/76/55/9783547717655.jpg'), + ('3446200487', 'Baudolino: Roman', 'https://images.isbndb.com/covers/04/87/9783446200487.jpg'), + ('3446201882', 'Die Stadt Der Wilden Götter', 'https://images.isbndb.com/covers/18/80/9783446201880.jpg'), + ('0759901260', 'Cowboy In My Pocket', 'https://images.isbndb.com/covers/12/61/9780759901261.jpg'), + ('0679764003', 'A Happy Death', 'https://images.isbndb.com/covers/40/07/9780679764007.jpg'), + ('0812550609', 'Arrows Of The Sun', 'https://images.isbndb.com/covers/06/03/9780812550603.jpg'), + ('1560760516', 'Firstborn (Dragonlance Elven Nations, Vol 1)', 'https://images.isbndb.com/covers/05/11/9781560760511.jpg'), + ('156076113X', 'The Kinslayer Wars (Dragonlance Elven Nations, Vol.2)', 'https://images.isbndb.com/covers/11/36/9781560761136.jpg'), + ('0345422406', 'Merrick (Vampire/Witches Chronicles)', 'https://images.isbndb.com/covers/24/08/9780345422408.jpg'), + ('0312194560', 'Girl Walking Backwards', 'https://images.isbndb.com/covers/45/67/9780312194567.jpg'), + ('0553570951', 'Dawn Rochelle, Four Novels: Six Months To Live/ I Want To Live/ So Much To Live For/ No Time To Cry', 'https://images.isbndb.com/covers/09/53/9780553570953.jpg'), + ('0451121082', 'You Only Live Twice (James Bond)', 'https://images.isbndb.com/covers/10/80/9780451121080.jpg'), + ('0140345353', 'The Devil''s Arithmetic', 'https://images.isbndb.com/covers/53/53/9780140345353.jpg'), + ('0671644475', 'The Conquest', 'https://images.isbndb.com/covers/44/75/9780671644475.jpg'), + ('0373122659', 'The Honeymoon Contract (The Kings Of Australia) (Harlequin Presents)', 'https://images.isbndb.com/covers/26/53/9780373122653.jpg'), + ('037329221X', 'A Perilous Attraction (Harlequin Historical)', 'https://images.isbndb.com/covers/22/19/9780373292219.jpg'), + ('0373259891', 'Just Kiss Me (Harlequin Temptation)', 'https://images.isbndb.com/covers/98/92/9780373259892.jpg'), + ('0373122691', 'The Pregnant Bride (Harlequin Presents Expecting #2269)', 'https://images.isbndb.com/covers/26/91/9780373122691.jpg'), + ('0373122675', 'To Marry McCloud (Bachelor Cousins) (Harlequin Presents)', 'https://images.isbndb.com/covers/26/77/9780373122677.jpg'), + ('0812507274', 'The Love Talker', 'https://images.isbndb.com/covers/72/70/9780812507270.jpg'), + ('0070506728', 'Miracle At Midway', 'https://images.isbndb.com/covers/67/25/9780070506725.jpg'), + ('0525932593', 'Hill Towns Of Italy: 2', 'https://images.isbndb.com/covers/25/98/9780525932598.jpg'), + ('0810913763', 'The National Geographic Society: 100 Years Of Adventure And Discovery', 'https://images.isbndb.com/covers/37/69/9780810913769.jpg'), + ('0865470561', 'Mrs. Bridge: A Novel', 'https://images.isbndb.com/covers/05/69/9780865470569.jpg'), + ('0688159141', 'Gates Of Eden: Stories', 'https://images.isbndb.com/covers/91/46/9780688159146.jpg'), + ('039449461X', 'Far Tortuga', 'https://images.isbndb.com/covers/46/16/9780394494616.jpg'), + ('0449908615', 'Star Country', 'https://images.isbndb.com/covers/86/17/9780449908617.jpg'), + ('0963440349', 'Where The Locals Eat: A Guide To The Best Restaurants In America', 'https://images.isbndb.com/covers/03/41/9780963440341.jpg'), + ('0312045875', 'The Route 66 Traveler''s Guide And Roadside Companion', 'https://images.isbndb.com/covers/58/76/9780312045876.jpg'), + ('0671769316', 'New Roadside America: The Modern Traveler''s Guide To The Wild And Wonderful World Of America''s Tourist', 'https://images.isbndb.com/covers/93/14/9780671769314.jpg'), + ('0806515015', 'The Cockroach Hall Of Fame: And 101 Other Off-The-Wall Museums', 'https://images.isbndb.com/covers/50/14/9780806515014.jpg'), + ('0767900936', 'Eat Your Way Across The U.S.A., Revised Edition', 'https://images.isbndb.com/covers/09/35/9780767900935.jpg'), + ('0060965991', 'Roadfood', 'https://images.isbndb.com/covers/59/90/9780060965990.jpg'), + ('1559581719', 'The Food Lover''s Handbook To The Southwest', 'https://images.isbndb.com/covers/17/14/9781559581714.jpg'), + ('0553213938', 'The Custom Of The Country (Bantam Classics)', 'https://images.isbndb.com/covers/39/35/9780553213935.jpg'), + ('1551668122', 'Night Of The Blackbird', 'https://images.isbndb.com/covers/81/23/9781551668123.jpg'), + ('0345444078', 'Shadows Over Innsmouth', 'https://images.isbndb.com/covers/40/73/9780345444073.jpg'), + ('0802137040', 'Exploration Of The Valley Of The Amazon', 'https://images.isbndb.com/covers/70/43/9780802137043.jpg'), + ('1860461670', 'Miss Smilla''s Feeling For Snow', 'https://images.isbndb.com/covers/16/75/9781860461675.jpg'), + ('0375410198', 'The Feast Of Love', 'https://images.isbndb.com/covers/01/92/9780375410192.jpg'), + ('0375700153', 'The Troublesome Offspring Of Cardinal Guzman', 'https://images.isbndb.com/covers/01/56/9780375700156.jpg'), + ('0451190548', 'Coffey''s Hands (The Green Mile, Part 3)', 'https://images.isbndb.com/covers/05/43/9780451190543.jpg'), + ('0671553046', 'Life Support', 'https://images.isbndb.com/covers/30/43/9780671553043.jpg'), + ('0553232940', 'Escape (Choose Your Own Adventure #20)', 'https://images.isbndb.com/covers/29/43/9780553232943.jpg'), + ('059010683X', 'Hanson Brothers Biography', 'https://images.isbndb.com/covers/68/32/9780590106832.jpg'), + ('043942089X', 'The Thief Lord', 'https://images.isbndb.com/covers/08/91/9780439420891.jpg'), + ('0684849224', 'Advanced Sex Tips For Girls: This Time It''s Personal', 'https://images.isbndb.com/covers/92/25/9780684849225.jpg'), + ('0006392466', 'Working Class Zero', 'https://images.isbndb.com/covers/24/60/9780006392460.jpg'), + ('0452283825', 'Baggage', 'https://images.isbndb.com/covers/38/24/9780452283824.jpg'), + ('044661050X', 'The Diary Of V: The Breakup', 'https://images.isbndb.com/covers/05/06/9780446610506.jpg'), + ('0425176045', 'Falling Bodies', 'https://images.isbndb.com/covers/60/47/9780425176047.jpg'), + ('0449006158', 'The Night Inspector (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/61/53/9780449006153.jpg'), + ('0486280381', 'Civil War Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/03/87/9780486280387.jpg'), + ('0671749102', 'Principle-Centered Leadership', 'https://images.isbndb.com/covers/91/01/9780671749101.jpg'), + ('0687287529', 'Becoming A Thinking Christian: If We Want Church Renewal, We Will Have To Renew Thinking In The Church', 'https://images.isbndb.com/covers/75/29/9780687287529.jpg'), + ('0142003735', 'Old Flames', 'https://images.isbndb.com/covers/37/32/9780142003732.jpg'), + ('0451168429', 'Depraved Indifference (Signet)', 'https://images.isbndb.com/covers/84/29/9780451168429.jpg'), + ('006055584X', 'Mission Compromised', 'https://images.isbndb.com/covers/58/49/9780060555849.jpg'), + ('0312104324', 'The Bluestocking: The Story Of The Famous Forrest Divorce Case', 'https://images.isbndb.com/covers/43/20/9780312104320.jpg'), + ('0552138428', 'The Brentford Triangle (Brentford Trilogy)', 'https://images.isbndb.com/covers/84/20/9780552138420.jpg'), + ('0425180468', 'Fax Me A Bagel', 'https://images.isbndb.com/covers/04/64/9780425180464.jpg'), + ('0060092165', 'Two Cooks A-Killing: An Angie Amalfi Mystery', 'https://images.isbndb.com/covers/21/60/9780060092160.jpg'), + ('0061094234', 'Dirt', 'https://images.isbndb.com/covers/42/31/9780061094231.jpg'), + ('0425169855', 'Date With The Perfect Dead Man (Hannah And Kiki Mysteries)', 'https://images.isbndb.com/covers/98/58/9780425169858.jpg'), + ('0061099805', 'Swimming To Catalina', 'https://images.isbndb.com/covers/98/09/9780061099809.jpg'), + ('0061093491', 'Dead In The Water', 'https://images.isbndb.com/covers/34/94/9780061093494.jpg'), + ('0061090808', 'NY DEAD MM', 'https://images.isbndb.com/covers/08/06/9780061090806.jpg'), + ('0440223709', 'Taken To The Cleaners (Mandy Dyer Mystery)', 'https://images.isbndb.com/covers/37/02/9780440223702.jpg'), + ('157566691X', 'Christmas Cookie Murder (Lucy Stone Mysteries, No. 5)', 'https://images.isbndb.com/covers/69/14/9781575666914.jpg'), + ('0140272852', 'Amistad Pb', 'https://images.isbndb.com/covers/28/57/9780140272857.jpg'), + ('9057592029', 'Erzsebet: Roman (Dutch Edition)', 'https://images.isbndb.com/covers/20/27/9789057592027.jpg'), + ('0373121873', 'The Marriage Arrangement', 'https://images.isbndb.com/covers/18/78/9780373121878.jpg'), + ('1583483322', 'And Not Make Dreams Your Master', 'https://images.isbndb.com/covers/33/29/9781583483329.jpg'), + ('1551668254', 'Road Taken', 'https://images.isbndb.com/covers/82/53/9781551668253.jpg'), + ('0151004218', 'All The Names', 'https://images.isbndb.com/covers/42/18/9780151004218.jpg'), + ('0812970802', 'Girl Meets God: A Memoir', 'https://images.isbndb.com/covers/08/07/9780812970807.jpg'), + ('0830708200', 'Psalms For God''s People: A Bible Commentary For Laymen', 'https://images.isbndb.com/covers/82/08/9780830708208.jpg'), + ('0385249640', 'Parenting An Only Child', 'https://images.isbndb.com/covers/96/45/9780385249645.jpg'), + ('0590032496', 'The Witches', 'https://images.isbndb.com/covers/24/90/9780590032490.jpg'), + ('1863738487', 'Crew', 'https://images.isbndb.com/covers/84/84/9781863738484.jpg'), + ('0749720409', 'Midnight Ride Of Thomas The Tank Engine Pb', 'https://images.isbndb.com/covers/04/07/9780749720407.jpg'), + ('0330363239', 'Dirt Music', 'https://images.isbndb.com/covers/32/35/9780330363235.jpg'), + ('0553480669', 'Anne Of The Island (Anne Of Green Gables)', 'https://images.isbndb.com/covers/06/65/9780553480665.jpg'), + ('0140318909', 'Complete Data Interpretation For The MRCP, 1e (MRCP Study Guides)', 'https://images.isbndb.com/covers/89/06/9780140318906.jpg'), + ('0553269216', 'Rainbow Valley (Anne Of Green Gables, No. 7)', 'https://images.isbndb.com/covers/92/15/9780553269215.jpg'), + ('0671000500', 'The WEDDING DAY MYSTERY NANCY DREW 136', 'https://images.isbndb.com/covers/05/09/9780671000509.jpg'), + ('0671663194', 'PICTURE-PERFECT MYSTERY (NANCY DREW 94)', 'https://images.isbndb.com/covers/31/93/9780671663193.jpg'), + ('0671464612', 'BROKEN ANCHOR ND P (Nancy Drew Mystery Stories)', 'https://images.isbndb.com/covers/46/15/9780671464615.jpg'), + ('0440220653', 'The Face On The Milk Carton', 'https://images.isbndb.com/covers/06/57/9780440220657.jpg'), + ('0440210224', 'Children Of The River (Laurel-Leaf Contemporary Fiction)', 'https://images.isbndb.com/covers/02/21/9780440210221.jpg'), + ('0064405842', 'Catherine, Called Birdy (rpkg) (Trophy Newbery)', 'https://images.isbndb.com/covers/58/43/9780064405843.jpg'), + ('0671001787', 'ALASKA', 'https://images.isbndb.com/covers/17/80/9780671001780.jpg'), + ('0743407865', 'Brave New Girl', 'https://images.isbndb.com/covers/78/61/9780743407861.jpg'), + ('3548602746', 'Die Seekarte', 'https://images.isbndb.com/covers/27/45/9783548602745.jpg'), + ('379511733X', 'Flut', 'https://images.isbndb.com/covers/73/37/9783795117337.jpg'), + ('3548256007', 'Die Zuckerbäckerin', 'https://images.isbndb.com/covers/60/09/9783548256009.jpg'), + ('3548255329', 'Fünf Viertel Einer Orange', 'https://images.isbndb.com/covers/53/23/9783548255323.jpg'), + ('354825621X', 'Chocolat', 'https://images.isbndb.com/covers/62/14/9783548256214.jpg'), + ('3716022799', 'Schattenkinder', 'https://images.isbndb.com/covers/27/95/9783716022795.jpg'), + ('3548364160', 'Die Weiße Hexe, Jubil.-Ausg.', 'https://images.isbndb.com/covers/41/62/9783548364162.jpg'), + ('3548257615', 'Die Glasbläserin: Roman', 'https://images.isbndb.com/covers/76/17/9783548257617.jpg'), + ('3548256910', 'Die Amerikanerin', 'https://images.isbndb.com/covers/69/17/9783548256917.jpg'), + ('3426622548', 'Die Hexe Und Die Heilige', 'https://images.isbndb.com/covers/25/44/9783426622544.jpg'), + ('0060987324', 'Girlfriend In A Coma', 'https://images.isbndb.com/covers/73/29/9780060987329.jpg'), + ('3453863712', 'Die Orks', 'https://images.isbndb.com/covers/37/12/9783453863712.jpg'), + ('0192823507', 'Wuthering Heights (The World''s Classics)', 'https://images.isbndb.com/covers/35/02/9780192823502.jpg'), + ('0679986375', 'Stargirl', 'https://images.isbndb.com/covers/63/79/9780679986379.jpg'), + ('1740595939', 'Rite Of Passage: Tales Of Backpacking ''Round Europe', 'https://images.isbndb.com/covers/59/33/9781740595933.jpg'), + ('0609604511', 'A Recipe For Bees', 'https://images.isbndb.com/covers/45/19/9780609604519.jpg'), + ('2070364178', 'Silbermann', 'https://images.isbndb.com/covers/41/76/9782070364176.jpg'), + ('0062505521', 'I Have A Dream: Writings And Speeches That Changed The World, Special 75th Anniversary Edition (Martin Luther King, Jr., Born January 15, 1929)', 'https://images.isbndb.com/covers/55/21/9780062505521.jpg'), + ('0449911411', 'And I Don''t Want To Live This Life: A Mother''s Story Of Her Daughter''s Murder', 'https://images.isbndb.com/covers/14/19/9780449911419.jpg'), + ('007212248X', 'Oracle8I For Windows Nt Starter Kit (Oracle Press)', 'https://images.isbndb.com/covers/24/80/9780072122480.jpg'), + ('0452254345', 'Growing Up', 'https://images.isbndb.com/covers/43/43/9780452254343.jpg'), + ('0807115258', 'Dollar Road', 'https://images.isbndb.com/covers/52/51/9780807115251.jpg'), + ('0486290816', 'The Gambler (Dover Thrift Editions)', 'https://images.isbndb.com/covers/08/12/9780486290812.jpg'), + ('0880015829', 'The Sheltering Sky', 'https://images.isbndb.com/covers/58/20/9780880015820.jpg'), + ('0449225313', 'The Mark Of The Assasin', 'https://images.isbndb.com/covers/53/18/9780449225318.jpg'), + ('0553240765', 'Shane', 'https://images.isbndb.com/covers/07/64/9780553240764.jpg'), + ('0609603825', 'The Forest', 'https://images.isbndb.com/covers/38/26/9780609603826.jpg'), + ('0765349671', 'The Da Vinci Legacy', 'https://images.isbndb.com/covers/96/75/9780765349675.jpg'), + ('0553585843', 'Fountain Of Secrets (Get Connected Romances)', 'https://images.isbndb.com/covers/58/41/9780553585841.jpg'), + ('0425192733', 'Portrait Of A Killer: Jack The Ripper -- Case Closed (Berkley True Crime)', 'https://images.isbndb.com/covers/27/33/9780425192733.jpg'), + ('0060525460', 'The Beachcomber', 'https://images.isbndb.com/covers/54/60/9780060525460.jpg'), + ('0446326925', 'Wild Orchids', 'https://images.isbndb.com/covers/69/26/9780446326926.jpg'), + ('0449206246', 'Wheel Of Fortune', 'https://images.isbndb.com/covers/62/49/9780449206249.jpg'), + ('155166285X', 'If Looks Could Kill', 'https://images.isbndb.com/covers/28/55/9781551662855.jpg'), + ('0449207102', 'The Source', 'https://images.isbndb.com/covers/71/09/9780449207109.jpg'), + ('0385471998', 'Come As You Are: The Story Of Nirvana', 'https://images.isbndb.com/covers/19/92/9780385471992.jpg'), + ('0553575104', 'In Pursuit Of The Proper Sinner', 'https://images.isbndb.com/covers/51/01/9780553575101.jpg'), + ('0895771845', 'The Scarlet Letter (The World''s Best Reading)', 'https://images.isbndb.com/covers/18/41/9780895771841.jpg'), + ('0451403703', 'The Hangman''s Beautiful Daughter (Onyx)', 'https://images.isbndb.com/covers/37/04/9780451403704.jpg'), + ('0812564804', 'Delusion', 'https://images.isbndb.com/covers/48/08/9780812564808.jpg'), + ('0380756226', 'Secret Of The Sea', 'https://images.isbndb.com/covers/62/23/9780380756223.jpg'), + ('0812589718', 'Daughter Of God', 'https://images.isbndb.com/covers/97/19/9780812589719.jpg'), + ('0812571789', 'The Predators', 'https://images.isbndb.com/covers/17/83/9780812571783.jpg'), + ('0449222713', 'Black Opal', 'https://images.isbndb.com/covers/27/13/9780449222713.jpg'), + ('0449215482', 'The Silk Vendetta', 'https://images.isbndb.com/covers/54/87/9780449215487.jpg'), + ('0345327454', 'Thai Horse', 'https://images.isbndb.com/covers/74/51/9780345327451.jpg'), + ('0821720600', 'Flowers From Berlin', 'https://images.isbndb.com/covers/06/08/9780821720608.jpg'), + ('0913367346', 'Just Like Jesus', 'https://images.isbndb.com/covers/73/46/9780913367346.jpg'), + ('0892211105', 'China Cry', 'https://images.isbndb.com/covers/11/04/9780892211104.jpg'), + ('0671701045', 'Thing Of Beauty', 'https://images.isbndb.com/covers/10/48/9780671701048.jpg'), + ('0688084923', 'Morning Noon & Night', 'https://images.isbndb.com/covers/49/29/9780688084929.jpg'), + ('0440235146', 'A Sudden Change Of Heart', 'https://images.isbndb.com/covers/51/49/9780440235149.jpg'), + ('0445044454', 'Sisters And Strangers', 'https://images.isbndb.com/covers/44/56/9780445044456.jpg'), + ('0446301809', 'Daughters Of The Shining City', 'https://images.isbndb.com/covers/18/00/9780446301800.jpg'), + ('0553573489', 'Circumstantial Evidence: Death, Life, And Justice In A Southern Town', 'https://images.isbndb.com/covers/34/80/9780553573480.jpg'), + ('0786889411', 'Rock This!', 'https://images.isbndb.com/covers/94/19/9780786889419.jpg'), + ('0671496107', 'Immortal Poems Of The English Language', 'https://images.isbndb.com/covers/61/04/9780671496104.jpg'), + ('0553257196', 'Black Orchids (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/71/99/9780553257199.jpg'), + ('055321246X', 'Walden And Other Writings', 'https://images.isbndb.com/covers/24/64/9780553212464.jpg'), + ('0451526368', 'Northanger Abbey (Signet Classics)', 'https://images.isbndb.com/covers/63/66/9780451526366.jpg'), + ('0590433881', 'Kristy''s Great Idea (Baby-Sitters Club #1)', 'https://images.isbndb.com/covers/38/84/9780590433884.jpg'), + ('0974375861', 'They Came Home: Korean War POWs Tell Their Stories', 'https://images.isbndb.com/covers/58/61/9780974375861.jpg'), + ('0974375853', 'Hickerdoodle Meets A Chigger', 'https://images.isbndb.com/covers/58/54/9780974375854.jpg'), + ('0671522647', 'Gump & Co.', 'https://images.isbndb.com/covers/26/43/9780671522643.jpg'), + ('0671541005', '1st Among Equals X', 'https://images.isbndb.com/covers/10/02/9780671541002.jpg'), + ('0933662599', 'Survival Kit For Overseas Living: For Americans Planning To Live And Work Abroad', 'https://images.isbndb.com/covers/25/99/9780933662599.jpg'), + ('0863186602', 'PREGNANCY AND BIRTH BOOK', 'https://images.isbndb.com/covers/66/08/9780863186608.jpg'), + ('0525941908', 'The Regulators', 'https://images.isbndb.com/covers/19/03/9780525941903.jpg'), + ('0767915054', 'A Girl Named Zippy: Growing Up Small In Mooreland, Indiana', 'https://images.isbndb.com/covers/50/52/9780767915052.jpg'), + ('038533396X', 'How I Accidentally Joined The Vast Right-Wing Conspiracy (and Found Inner Peace)', 'https://images.isbndb.com/covers/39/62/9780385333962.jpg'), + ('0394566300', 'Decorating Rich: How To Achieve A Monied Look Without Spending A Fortune', 'https://images.isbndb.com/covers/63/06/9780394566306.jpg'), + ('0842365826', 'And The Shofar Blew', 'https://images.isbndb.com/covers/58/26/9780842365826.jpg'), + ('0736907386', 'The Remarkable Women Of The Bible: And Their Message For Your Life Today', 'https://images.isbndb.com/covers/73/85/9780736907385.jpg'), + ('1576734005', 'Distant Bells (The Cult Series #3)', 'https://images.isbndb.com/covers/40/01/9781576734001.jpg'), + ('0375700145', 'Senor Vivo And The Coca Lord', 'https://images.isbndb.com/covers/01/49/9780375700149.jpg'), + ('0452284449', 'The Virgin Blue: A Novel', 'https://images.isbndb.com/covers/44/49/9780452284449.jpg'), + ('0312195168', 'Night Talk: A Novel', 'https://images.isbndb.com/covers/51/68/9780312195168.jpg'), + ('0446610542', 'The Bachelor (The Chandler Brothers, Book 1)', 'https://images.isbndb.com/covers/05/44/9780446610544.jpg'), + ('0679750169', 'The Romance Of Tristan And Iseult', 'https://images.isbndb.com/covers/01/61/9780679750161.jpg'), + ('051759675X', 'Perfect Little Angels: Divine Messengers In Miniature And 10 Notecards With Envelopes', 'https://images.isbndb.com/covers/67/53/9780517596753.jpg'), + ('0671759299', 'My Girl', 'https://images.isbndb.com/covers/92/92/9780671759292.jpg'), + ('0440910099', 'Face On The Milk Carton', 'https://images.isbndb.com/covers/00/91/9780440910091.jpg'), + ('0590411292', 'Paper Tricks', 'https://images.isbndb.com/covers/12/95/9780590411295.jpg'), + ('0684843560', 'When Angels Speak: Inspiration From Touched By An Angel', 'https://images.isbndb.com/covers/35/68/9780684843568.jpg'), + ('0553269151', 'Inherit The Wind', 'https://images.isbndb.com/covers/91/54/9780553269154.jpg'), + ('0486272753', 'Spoon River Anthology (Dover Thrift Editions)', 'https://images.isbndb.com/covers/27/57/9780486272757.jpg'), + ('067188803X', 'Adventures Of Huckleberry Finn (Enriched Classic ): Adventures Of Huckleberry Finn', 'https://images.isbndb.com/covers/80/39/9780671888039.jpg'), + ('1562451650', 'Great Quotes From Great Teachers', 'https://images.isbndb.com/covers/16/53/9781562451653.jpg'), + ('009938860X', 'Chains', 'https://images.isbndb.com/covers/86/09/9780099388609.jpg'), + ('0743202198', 'Change Me Into Zeus''s Daughter: A Memoir', 'https://images.isbndb.com/covers/21/90/9780743202190.jpg'), + ('0441371574', 'Invasion: Earth', 'https://images.isbndb.com/covers/15/70/9780441371570.jpg'), + ('0440111498', 'Cat''s Cradle', 'https://images.isbndb.com/covers/14/98/9780440111498.jpg'), + ('0553273078', 'The Stainless Steel Rat Gets Drafted', 'https://images.isbndb.com/covers/30/76/9780553273076.jpg'), + ('0345321421', 'Limits', 'https://images.isbndb.com/covers/14/28/9780345321428.jpg'), + ('0553286587', 'Rama II: The Sequel To Rendezvous With Rama', 'https://images.isbndb.com/covers/65/88/9780553286588.jpg'), + ('0843952202', 'The Temptation', 'https://images.isbndb.com/covers/22/09/9780843952209.jpg'), + ('0373227388', 'Bodyguard /Husband: Ultimate Agents (Harlequin Intrigue)', 'https://images.isbndb.com/covers/73/89/9780373227389.jpg'), + ('0778320065', 'Grave Concerns (Dr. Rhea Lynch Novels)', 'https://images.isbndb.com/covers/00/67/9780778320067.jpg'), + ('0515121495', 'The List', 'https://images.isbndb.com/covers/14/90/9780515121490.jpg'), + ('0743456351', 'A Man To Call My Own: A Novel', 'https://images.isbndb.com/covers/63/57/9780743456357.jpg'), + ('0316804924', 'The Discovery Of Animal Behaviour', 'https://images.isbndb.com/covers/49/29/9780316804929.jpg'), + ('080506270X', 'A Field Guide To Demons, Fairies, Fallen Angels And Other Subversive Spirits', 'https://images.isbndb.com/covers/27/00/9780805062700.jpg'), + ('0316130133', 'Family Trade', 'https://images.isbndb.com/covers/01/34/9780316130134.jpg'), + ('0425132951', 'The House Of Thunder', 'https://images.isbndb.com/covers/29/51/9780425132951.jpg'), + ('0380759470', 'Isle Of View (Xanth, No. 13)', 'https://images.isbndb.com/covers/94/77/9780380759477.jpg'), + ('0330303112', 'Deadlock', 'https://images.isbndb.com/covers/31/18/9780330303118.jpg'), + ('0895888041', 'DOS 5 Instant Reference', 'https://images.isbndb.com/covers/80/44/9780895888044.jpg'), + ('1568849052', 'Unix For Dummies', 'https://images.isbndb.com/covers/90/58/9781568849058.jpg'), + ('0764550551', 'Weddings For Dummies', 'https://images.isbndb.com/covers/05/53/9780764550553.jpg'), + ('0782903800', 'Barney''s Favorite Mother Goose Rhymes (Volume 2)', 'https://images.isbndb.com/covers/38/05/9780782903805.jpg'), + ('0782903363', 'Barney''s Favorite Mother Goose Rhymes, Volume I', 'https://images.isbndb.com/covers/33/62/9780782903362.jpg'), + ('1570641218', 'What Would Barney Say?', 'https://images.isbndb.com/covers/12/13/9781570641213.jpg'), + ('0671648462', 'You Were Born Again To Be Together', 'https://images.isbndb.com/covers/84/66/9780671648466.jpg'), + ('0811833615', 'The Bad Girl''s Guide To The Party Life', 'https://images.isbndb.com/covers/36/15/9780811833615.jpg'), + ('0811821706', 'The Bad Girl''s Guide To The Open Road', 'https://images.isbndb.com/covers/17/04/9780811821704.jpg'), + ('1558747613', 'Chicken Soup For The Teenage Soul III: More Stories Of Life, Love And Learning', 'https://images.isbndb.com/covers/76/16/9781558747616.jpg'), + ('0679755330', 'A Raisin In The Sun', 'https://images.isbndb.com/covers/53/33/9780679755333.jpg'), + ('0451526732', 'Narrative Of The Life Of Frederick Douglass, An American Slave (Signet Classics)', 'https://images.isbndb.com/covers/67/31/9780451526731.jpg'), + ('0425083896', 'Books Of Blood, Vol. 1', 'https://images.isbndb.com/covers/38/95/9780425083895.jpg'), + ('0451525795', 'My Antonia (Signet Classics)', 'https://images.isbndb.com/covers/57/96/9780451525796.jpg'), + ('0451188454', 'The Bone Collector (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/84/58/9780451188458.jpg'), + ('3499136457', 'Venusneid.', 'https://images.isbndb.com/covers/64/50/9783499136450.jpg'), + ('0759615365', 'Life In A Rapidly Changing World (New Economy Self-Development)', 'https://images.isbndb.com/covers/53/66/9780759615366.jpg'), + ('0312874472', 'Witness For The Dead', 'https://images.isbndb.com/covers/44/76/9780312874476.jpg'), + ('0806516542', 'The Lost Stories Of Louisa May Alcott', 'https://images.isbndb.com/covers/65/47/9780806516547.jpg'), + ('0671704834', 'Into The Blue: Into The Blue', 'https://images.isbndb.com/covers/48/34/9780671704834.jpg'), + ('0425166392', 'Guilty Pleasures', 'https://images.isbndb.com/covers/63/90/9780425166390.jpg'), + ('1558745718', 'Chicken Soup For The Pet Lover''s Soul: Stories About Pets As Teachers, Healers, Heroes And Friends (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/57/11/9781558745711.jpg'), + ('1740592409', 'Lonely Planet Victoria', 'https://images.isbndb.com/covers/24/06/9781740592406.jpg'), + ('0425176932', 'Breaking Point (Tom Clancy''s Net Force, Book 4)', 'https://images.isbndb.com/covers/69/31/9780425176931.jpg'), + ('0881030368', '1984 (Turtleback School & Library Binding Edition) (Signet Classics)', 'https://images.isbndb.com/covers/03/65/9780881030365.jpg'), + ('1565117794', 'Life Of Pi', 'https://images.isbndb.com/covers/77/92/9781565117792.jpg'), + ('0553580604', 'Callahan''s Key', 'https://images.isbndb.com/covers/06/00/9780553580600.jpg'), + ('340778063X', 'Das Geheimnis Des Siebten Weges: Abenteuer-Roman', 'https://images.isbndb.com/covers/06/38/9783407780638.jpg'), + ('3791535560', 'Heimatlos', 'https://images.isbndb.com/covers/55/62/9783791535562.jpg'), + ('3442424402', 'Zwölf Geschichten Aus Der Fremde', 'https://images.isbndb.com/covers/44/05/9783442424405.jpg'), + ('0440219507', 'Troubling A Star', 'https://images.isbndb.com/covers/95/07/9780440219507.jpg'), + ('3446152962', 'Das Phantom Der Oper. Roman', 'https://images.isbndb.com/covers/29/60/9783446152960.jpg'), + ('3746615429', 'Die Truhen Des Arcimboldo: Nach Den Tagebüchern Des Heinrich Wilhelm Lehmann. Roman', 'https://images.isbndb.com/covers/54/24/9783746615424.jpg'), + ('2070374807', 'Sa Majesté Des Mouches', 'https://images.isbndb.com/covers/48/09/9782070374809.jpg'), + ('2070401685', 'L''Ile Des Gauchers', 'https://images.isbndb.com/covers/16/80/9782070401680.jpg'), + ('2253006629', 'L''Arrache-coeur', 'https://images.isbndb.com/covers/66/26/9782253006626.jpg'), + ('044021632X', 'The Angel Maker', 'https://images.isbndb.com/covers/63/22/9780440216322.jpg'), + ('0590474782', 'Twins', 'https://images.isbndb.com/covers/47/88/9780590474788.jpg'), + ('0425117383', 'At Risk', 'https://images.isbndb.com/covers/73/85/9780425117385.jpg'), + ('0141308133', 'The Empress Of Elsewhere', 'https://images.isbndb.com/covers/81/35/9780141308135.jpg'), + ('0385260431', 'A Different Kind Of Christmas', 'https://images.isbndb.com/covers/04/35/9780385260435.jpg'), + ('0860682552', 'I''m Not Complaining (Virago Modern Classics)', 'https://images.isbndb.com/covers/25/54/9780860682554.jpg'), + ('055321019X', 'Emma', 'https://images.isbndb.com/covers/01/94/9780553210194.jpg'), + ('0060971185', 'The Housewife And The Assassin', 'https://images.isbndb.com/covers/11/82/9780060971182.jpg'), + ('1580622119', 'Come Rain Or Come Shine: Friendships Between Women', 'https://images.isbndb.com/covers/21/10/9781580622110.jpg'), + ('074343059X', 'Geisha Of Gion', 'https://images.isbndb.com/covers/05/93/9780743430593.jpg'), + ('0060090375', 'Lucy Sullivan Is Getting Married', 'https://images.isbndb.com/covers/03/71/9780060090371.jpg'), + ('1582343047', 'How To Cook A Tart', 'https://images.isbndb.com/covers/30/44/9781582343044.jpg'), + ('0520216202', 'Asphalt Nation: How The Automobile Took Over America And How We Can Take It Back', 'https://images.isbndb.com/covers/62/04/9780520216204.jpg'), + ('0380711516', 'Fulton County', 'https://images.isbndb.com/covers/15/12/9780380711512.jpg'), + ('0890439702', 'Buying Guide 2003 (Consumer Reports Buying Guide)', 'https://images.isbndb.com/covers/97/08/9780890439708.jpg'), + ('0689866364', 'The Outcasts Of 19 Schuyler Place', 'https://images.isbndb.com/covers/63/64/9780689866364.jpg'), + ('0312984294', 'The Corrections', 'https://images.isbndb.com/covers/42/98/9780312984298.jpg'), + ('0575047798', 'The Colloghi Conspiracy', 'https://images.isbndb.com/covers/77/92/9780575047792.jpg'), + ('0800758889', 'Grace By The Cup: A Break From The Daily Grind', 'https://images.isbndb.com/covers/88/82/9780800758882.jpg'), + ('0743252136', 'Domestic Bliss: Simple Ways To Add Style To Your Life', 'https://images.isbndb.com/covers/21/33/9780743252133.jpg'), + ('0812932773', 'The 50 Greatest Love Letters Of All Time', 'https://images.isbndb.com/covers/27/75/9780812932775.jpg'), + ('3551580561', 'Fanny Und Pepsi', 'https://images.isbndb.com/covers/05/66/9783551580566.jpg'), + ('0399139745', 'Wild Horses', 'https://images.isbndb.com/covers/97/41/9780399139741.jpg'), + ('0679762671', 'A Dog''s Life', 'https://images.isbndb.com/covers/26/76/9780679762676.jpg'), + ('0140196226', 'If The Buddha Married: Creating Enduring Relationships On A Spiritual Path (Compass)', 'https://images.isbndb.com/covers/62/21/9780140196221.jpg'), + ('0140143505', '84, Charing Cross Road', 'https://images.isbndb.com/covers/35/08/9780140143508.jpg'), + ('0671743503', 'The Object Of My Affection', 'https://images.isbndb.com/covers/35/05/9780671743505.jpg'), + ('0345413881', 'Dr. Death (Alex Delaware)', 'https://images.isbndb.com/covers/38/88/9780345413888.jpg'), + ('0553289691', 'Skinny Legs And I', 'https://images.isbndb.com/covers/96/95/9780553289695.jpg'), + ('0671851047', 'Game Ten Pb', 'https://images.isbndb.com/covers/10/40/9780671851040.jpg'), + ('0140042407', 'Tortilla Flat', 'https://images.isbndb.com/covers/24/05/9780140042405.jpg'), + ('344203079X', 'Der Hüter Des Kelchs. Ein Albert-Campion-Roman.', 'https://images.isbndb.com/covers/07/98/9783442030798.jpg'), + ('0765303418', 'Catspaw', 'https://images.isbndb.com/covers/34/17/9780765303417.jpg'), + ('0786000872', 'The Promise', 'https://images.isbndb.com/covers/08/76/9780786000876.jpg'), + ('0140179178', 'Great Jones Street (Contemporary American Fiction)', 'https://images.isbndb.com/covers/91/70/9780140179170.jpg'), + ('0812550757', 'Speaker For The Dead (Ender, Book 2)', 'https://images.isbndb.com/covers/07/57/9780812550757.jpg'), + ('067087311X', 'Icy Sparks (Oprah''s Book Club)', 'https://images.isbndb.com/covers/31/11/9780670873111.jpg'), + ('0679721886', 'The Woman Warrior: Memoirs Of A Girlhood Among Ghosts', 'https://images.isbndb.com/covers/18/88/9780679721888.jpg'), + ('0394575202', 'The Power Of One', 'https://images.isbndb.com/covers/52/09/9780394575209.jpg'), + ('0451187849', 'We The Living', 'https://images.isbndb.com/covers/78/40/9780451187840.jpg'), + ('0451163966', 'One Flew Over The Cuckoo''s Nest', 'https://images.isbndb.com/covers/39/67/9780451163967.jpg'), + ('0449911659', 'Rabbit, Run', 'https://images.isbndb.com/covers/16/55/9780449911655.jpg'), + ('0553571338', 'The Giver', 'https://images.isbndb.com/covers/13/32/9780553571332.jpg'), + ('0671041584', 'Blood Washes Blood: A True Story Of Love, Murder, And Redemption Under The Sicilian Sun', 'https://images.isbndb.com/covers/15/88/9780671041588.jpg'), + ('0151189781', 'T. S. Eliot: Collected Poems, 1909-1962 (The Centenary Edition)', 'https://images.isbndb.com/covers/97/86/9780151189786.jpg'), + ('0812564669', 'Household Gods', 'https://images.isbndb.com/covers/46/62/9780812564662.jpg'), + ('0765302365', 'Second Spring: A Love Story', 'https://images.isbndb.com/covers/23/66/9780765302366.jpg'), + ('0446605905', 'The Ragman''s Memory (Joe Gunther Mysteries)', 'https://images.isbndb.com/covers/59/08/9780446605908.jpg'), + ('0525946829', 'Quentins', 'https://images.isbndb.com/covers/68/23/9780525946823.jpg'), + ('0399138013', 'November Of The Heart', 'https://images.isbndb.com/covers/80/10/9780399138010.jpg'), + ('0880707682', 'Chosen (Full Circle Series #5)', 'https://images.isbndb.com/covers/76/88/9780880707688.jpg'), + ('0152550860', 'The Moffat Museum', 'https://images.isbndb.com/covers/08/68/9780152550868.jpg'), + ('1556618603', 'Masquerade (Portraits Series #11)', 'https://images.isbndb.com/covers/86/04/9781556618604.jpg'), + ('0590060198', 'The BFG', 'https://images.isbndb.com/covers/01/96/9780590060196.jpg'), + ('0671868403', 'College Weekend (Fear Street, No. 32)', 'https://images.isbndb.com/covers/84/06/9780671868406.jpg'), + ('0553570080', 'The House Of Death (Sweet Valley University(R))', 'https://images.isbndb.com/covers/00/83/9780553570083.jpg'), + ('0671550284', 'Starlight Crystal', 'https://images.isbndb.com/covers/02/88/9780671550288.jpg'), + ('0671736825', 'Gimme A Kiss', 'https://images.isbndb.com/covers/68/28/9780671736828.jpg'), + ('0671008749', 'Fear Hall: The Beginning (Fear Street, No. 46) (Part 1)', 'https://images.isbndb.com/covers/87/41/9780671008741.jpg'), + ('0671002929', 'The Hidden Evil (Fear Street, No. 5)', 'https://images.isbndb.com/covers/29/23/9780671002923.jpg'), + ('0812570758', 'Species II: A Novel', 'https://images.isbndb.com/covers/07/55/9780812570755.jpg'), + ('0812540239', 'The Mongoose Man', 'https://images.isbndb.com/covers/02/39/9780812540239.jpg'), + ('0553292323', 'Jessica Against Bruce (Sweet Valley High)', 'https://images.isbndb.com/covers/23/29/9780553292329.jpg'), + ('981305607X', 'True Singapore Ghost Stories : Book 8', 'https://images.isbndb.com/covers/60/77/9789813056077.jpg'), + ('0671736809', 'Graduation (Final Friends, No. 3)', 'https://images.isbndb.com/covers/68/04/9780671736804.jpg'), + ('0671019287', 'The DANCE FINAL FRIENDS 2', 'https://images.isbndb.com/covers/92/80/9780671019280.jpg'), + ('0671736787', 'The PARTY (FINAL FRIENDS 1) (Final Friends, No 1)', 'https://images.isbndb.com/covers/67/81/9780671736781.jpg'), + ('0553158937', 'The Ghost In The Bell Tower (Sweet Valley Twins Super Chiller)', 'https://images.isbndb.com/covers/89/39/9780553158939.jpg'), + ('0553158597', 'The Carnival Ghost (Sweet Valley Twins Super Chillers)', 'https://images.isbndb.com/covers/85/95/9780553158595.jpg'), + ('0553157671', 'The Christmas Ghost (Sweet Valley Twins Super Chiller Book 1)', 'https://images.isbndb.com/covers/76/73/9780553157673.jpg'), + ('0553481975', 'Don''t Talk To Brian (Sweet Valley Twins)', 'https://images.isbndb.com/covers/19/76/9780553481976.jpg'), + ('0553158015', 'The Ghost In The Graveyard (Sweet Valley Twins Super Chillers)', 'https://images.isbndb.com/covers/80/14/9780553158014.jpg'), + ('0553483471', 'The Twins Go To College (Sweet Valley Twins)', 'https://images.isbndb.com/covers/34/75/9780553483475.jpg'), + ('0553480510', 'The Magic Christmas (Sweet Valley Twins Magna Editions)', 'https://images.isbndb.com/covers/05/11/9780553480511.jpg'), + ('0553480618', 'Jessica And The Earthquake (Sweet Valley Twins)', 'https://images.isbndb.com/covers/06/10/9780553480610.jpg'), + ('0553482491', 'BIG FOR CHRISTMAS (Sweet Valley Twins)', 'https://images.isbndb.com/covers/24/92/9780553482492.jpg'), + ('0553159526', 'The Big Party Weekend (Sweet Valley Twins)', 'https://images.isbndb.com/covers/95/23/9780553159523.jpg'), + ('055356403X', 'The Curse Of The Golden Heart (Sweet Valley Twins & Friends Super Chillers - Book 6)', 'https://images.isbndb.com/covers/40/37/9780553564037.jpg'), + ('0553157663', 'JESSICA THE ROCK STAR (Sweet Valley Twins)', 'https://images.isbndb.com/covers/76/66/9780553157666.jpg'), + ('3423202327', 'Mörder Ohne Gesicht: Roman', 'https://images.isbndb.com/covers/23/29/9783423202329.jpg'), + ('3442421357', 'Im Eishaus', 'https://images.isbndb.com/covers/13/50/9783442421350.jpg'), + ('3404144031', 'Die Purpurnen Flüsse: Thriller', 'https://images.isbndb.com/covers/40/37/9783404144037.jpg'), + ('0312986343', 'Visions Of Sugar Plums (A Stephanie Plum Holiday Novel)', 'https://images.isbndb.com/covers/63/46/9780312986346.jpg'), + ('0399137599', 'Steel Beach', 'https://images.isbndb.com/covers/75/94/9780399137594.jpg'), + ('0060974494', 'Lost Tribes And Promised Lands: The Origins Of American Racism', 'https://images.isbndb.com/covers/44/97/9780060974497.jpg'), + ('0553345842', 'The Mind''s I: Fantasies And Reflections On Self And Soul', 'https://images.isbndb.com/covers/58/41/9780553345841.jpg'), + ('0553343211', 'Synchronicity: The Bridge Between Matter And Mind', 'https://images.isbndb.com/covers/32/12/9780553343212.jpg'), + ('0809255324', 'Physics For Poets', 'https://images.isbndb.com/covers/53/20/9780809255320.jpg'), + ('0922233209', 'Raw Deal: Horrible And Ironic Stories Of Forgotten Americans', 'https://images.isbndb.com/covers/32/05/9780922233205.jpg'), + ('086316160X', 'Foucault For Beginners (Writers And Readers Documentary Comic Books: 62)', 'https://images.isbndb.com/covers/16/05/9780863161605.jpg'), + ('0553078682', 'Food Of The Gods: The Search For The Original Tree Of Knowledge A Radical History Of Plants, Drugs, And Human Evolution', 'https://images.isbndb.com/covers/86/88/9780553078688.jpg'), + ('0062504096', 'We''Ve Had A Hundred Years Of Psychotherapy And The World''s Getting Worse', 'https://images.isbndb.com/covers/40/98/9780062504098.jpg'), + ('0155019872', 'A Guide To Literary Criticism And Research', 'https://images.isbndb.com/covers/98/74/9780155019874.jpg'), + ('0679413065', 'The Secret Sun: A Novel Of Japan', 'https://images.isbndb.com/covers/30/66/9780679413066.jpg'), + ('0425125467', 'Harmful Intent', 'https://images.isbndb.com/covers/54/65/9780425125465.jpg'), + ('158322601X', 'The Oh Really? Factor: Unspinning Fox News Channel''s Bill O''Reilly', 'https://images.isbndb.com/covers/60/18/9781583226018.jpg'), + ('0385495358', 'I Rant, Therefore I Am', 'https://images.isbndb.com/covers/53/56/9780385495356.jpg'), + ('1555835589', 'Revolutionary Voices', 'https://images.isbndb.com/covers/55/83/9781555835583.jpg'), + ('1585972622', 'Spiderbreath', 'https://images.isbndb.com/covers/26/23/9781585972623.jpg'), + ('006056668X', 'Fluke: Or, I Know Why The Winged Whale Sings (Today Show Book Club #25)', 'https://images.isbndb.com/covers/66/85/9780060566685.jpg'), + ('0385511620', 'Women Make The Best Salesmen: Isn’t It Time You Started Using Their Secrets?', 'https://images.isbndb.com/covers/16/29/9780385511629.jpg'), + ('0446530077', 'Find Me', 'https://images.isbndb.com/covers/00/71/9780446530071.jpg'), + ('0689856083', 'A Journey The Autobiography Of Apolo Anton Ohno', 'https://images.isbndb.com/covers/60/82/9780689856082.jpg'), + ('0802151574', 'Querelle', 'https://images.isbndb.com/covers/15/75/9780802151575.jpg'), + ('0812992180', 'Vagabonding: An Uncommon Guide To The Art Of Long-Term World Travel', 'https://images.isbndb.com/covers/21/82/9780812992182.jpg'), + ('0385729472', 'Secret Heart', 'https://images.isbndb.com/covers/94/75/9780385729475.jpg'), + ('0373227728', 'Double Take (Harlequin Intrigue)', 'https://images.isbndb.com/covers/77/23/9780373227723.jpg'), + ('0373227736', 'Mask Of A Hunter (Harlequin Intrigue)', 'https://images.isbndb.com/covers/77/30/9780373227730.jpg'), + ('037322771X', 'Just Before Dawn (Harlequin Intrigue)', 'https://images.isbndb.com/covers/77/16/9780373227716.jpg'), + ('0373227744', 'Out For Justice (Shotgun Sallys, Book 1) (Harlequin Intrigue Series #774)', 'https://images.isbndb.com/covers/77/47/9780373227747.jpg'), + ('0373712049', 'Whose Child? A Little Secret (Harlequin Superromance No. 1204)', 'https://images.isbndb.com/covers/20/45/9780373712045.jpg'), + ('0373712006', 'Silent Witness (Code Red) (Harlequin Superromance, No. 1200)', 'https://images.isbndb.com/covers/20/07/9780373712007.jpg'), + ('0373712014', 'Return To Little Hills: Going Back (Harlequin Superromance No. 1201)', 'https://images.isbndb.com/covers/20/14/9780373712014.jpg'), + ('0373712057', 'Two On The Run: Count On A Cop (Harlequin Superromance No. 1205)', 'https://images.isbndb.com/covers/20/52/9780373712052.jpg'), + ('0373227396', 'Unmarked Man (Bachelors At Large, Book 2) (Harlequin Intrigue Series #739)', 'https://images.isbndb.com/covers/73/96/9780373227396.jpg'), + ('0373711719', 'For The Children (Harlequin Superromance No. 1171)', 'https://images.isbndb.com/covers/17/10/9780373711710.jpg'), + ('0373711735', 'The Road To Echo Point (Harlequin Superromance No. 1173)', 'https://images.isbndb.com/covers/17/34/9780373711734.jpg'), + ('0451409434', 'Fantastic Voyage: Microcosm', 'https://images.isbndb.com/covers/94/30/9780451409430.jpg'), + ('0875427332', 'A Witch''s Guide To Faery Folk: How To Work With The Elemental World (Llewellyn''s New Age)', 'https://images.isbndb.com/covers/73/31/9780875427331.jpg'), + ('0738704458', 'Witchy Tarot (English And Spanish Edition)', 'https://images.isbndb.com/covers/44/56/9780738704456.jpg'), + ('0316281697', 'Like Father, Like Daughter: How Father Shapes The Woman His Daughter Becomes', 'https://images.isbndb.com/covers/16/90/9780316281690.jpg'), + ('0060965118', 'The Jeopardy! Book: The Answers, The Questions, The Facts, And The Stories Of The Greatest Game Show In History', 'https://images.isbndb.com/covers/51/12/9780060965112.jpg'), + ('0312951914', 'Linda Goodman''s Star Signs', 'https://images.isbndb.com/covers/19/17/9780312951917.jpg'), + ('0878577386', 'Flowers (Rodale''s Home Gardening Library)', 'https://images.isbndb.com/covers/73/85/9780878577385.jpg'), + ('0843922567', 'Creature', 'https://images.isbndb.com/covers/25/61/9780843922561.jpg'), + ('1592231381', 'The Tarot Set: The Illustrated Book Of Tarot', 'https://images.isbndb.com/covers/13/86/9781592231386.jpg'), + ('0517182467', 'John Saul: Three Terrifying Bestselling Novels: Suffer The Children; Punish The Sinners; Cry For The Strangers', 'https://images.isbndb.com/covers/24/68/9780517182468.jpg'), + ('055357485X', 'Children''s Past Lives: How Past Life Memories Affect Your Child', 'https://images.isbndb.com/covers/48/52/9780553574852.jpg'), + ('0875421245', 'The Magical Household: Spells & Rituals For The Home (Llewellyn''s Practical Magick Series)', 'https://images.isbndb.com/covers/12/47/9780875421247.jpg'), + ('0671670875', 'Tarot Made Easy', 'https://images.isbndb.com/covers/08/70/9780671670870.jpg'), + ('0875420508', 'Buckland''s Complete Book Of Witchcraft (Llewellyn''s Practical Magick)', 'https://images.isbndb.com/covers/05/09/9780875420509.jpg'), + ('0801043859', 'When The One You Love Wants To Leave: Guidance And Comfort For Surviving Marital Crisis', 'https://images.isbndb.com/covers/38/57/9780801043857.jpg'), + ('0785270442', 'Winning Your Husband Back Before It''s Too Late: Whether He''s Left Physically Or Emotionally, All That Matters Is...', 'https://images.isbndb.com/covers/04/47/9780785270447.jpg'), + ('0451178599', 'Needful Things', 'https://images.isbndb.com/covers/85/96/9780451178596.jpg'), + ('1555472419', 'Just Before Daybreak', 'https://images.isbndb.com/covers/24/12/9781555472412.jpg'), + ('0671421611', 'Childgrave', 'https://images.isbndb.com/covers/16/18/9780671421618.jpg'), + ('0380780216', 'Cry For Justice', 'https://images.isbndb.com/covers/02/11/9780380780211.jpg'), + ('1590030044', 'The White Magic Book', 'https://images.isbndb.com/covers/00/42/9781590030042.jpg'), + ('0451128370', 'Christine (Signet)', 'https://images.isbndb.com/covers/83/79/9780451128379.jpg'), + ('0451170385', 'Four Past Midnight (Signet)', 'https://images.isbndb.com/covers/03/85/9780451170385.jpg'), + ('3036911154', 'Der Welt Den Rücken. 2 CDs: Vier Geschichten Aus Dem Erzählband ''Der Welt Den Rücken''. Neben Der Titelgeschichte: Der Tag Als Boris Becker Ging / Silberhochzeit / Karl, Bob Dylan Und Ich', 'https://images.isbndb.com/covers/11/51/9783036911151.jpg'), + ('0451206339', 'Forgive The Moon', 'https://images.isbndb.com/covers/63/36/9780451206336.jpg'), + ('0156006847', 'The Fencing Master: A Novel', 'https://images.isbndb.com/covers/68/42/9780156006842.jpg'), + ('0395926882', 'The Best American Short Stories 2001 (The Best American Series)', 'https://images.isbndb.com/covers/68/88/9780395926888.jpg'), + ('0446527297', 'The Millionaires', 'https://images.isbndb.com/covers/72/93/9780446527293.jpg'), + ('0786867906', 'Strip City: A Stripper''s Farewell Journey Across America', 'https://images.isbndb.com/covers/79/05/9780786867905.jpg'), + ('0425151875', 'Games Of State (Tom Clancy''s Op-Center, Book 3)', 'https://images.isbndb.com/covers/18/77/9780425151877.jpg'), + ('0553570854', 'Till Death Do Us Part', 'https://images.isbndb.com/covers/08/54/9780553570854.jpg'), + ('055357115X', 'Until Angels Close My Eyes', 'https://images.isbndb.com/covers/11/58/9780553571158.jpg'), + ('0440802059', 'One Eyed Cat', 'https://images.isbndb.com/covers/20/51/9780440802051.jpg'), + ('0373218958', 'Less Of A Stranger', 'https://images.isbndb.com/covers/89/50/9780373218950.jpg'), + ('3442356180', 'Shogun.', 'https://images.isbndb.com/covers/61/88/9783442356188.jpg'), + ('0671684256', 'Cold Harbour', 'https://images.isbndb.com/covers/42/59/9780671684259.jpg'), + ('0425182843', 'Edge Of Danger (Sean Dillon)', 'https://images.isbndb.com/covers/28/40/9780425182840.jpg'), + ('0486406539', 'Siddhartha (Dover Thrift Editions)', 'https://images.isbndb.com/covers/65/34/9780486406534.jpg'), + ('0590440144', 'The Swiss Family Robinson (Apple Classic)', 'https://images.isbndb.com/covers/01/41/9780590440141.jpg'), + ('0812550749', 'Firebird (The Elemental Masters Fairy Tales)', 'https://images.isbndb.com/covers/07/40/9780812550740.jpg'), + ('0671720996', 'The Lark And The Wren (Bardic Voices, Book 1)', 'https://images.isbndb.com/covers/09/95/9780671720995.jpg'), + ('0553148524', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/85/27/9780553148527.jpg'), + ('0802111610', 'First Light', 'https://images.isbndb.com/covers/16/16/9780802111616.jpg'), + ('0670031720', 'Drop City', 'https://images.isbndb.com/covers/17/26/9780670031726.jpg'), + ('0385128533', 'Goodbye California', 'https://images.isbndb.com/covers/85/37/9780385128537.jpg'), + ('0679405127', 'Angels & Insects: Two Novellas', 'https://images.isbndb.com/covers/51/22/9780679405122.jpg'), + ('0679742115', 'Vox', 'https://images.isbndb.com/covers/21/11/9780679742111.jpg'), + ('0316954993', 'War And Remembrance', 'https://images.isbndb.com/covers/49/90/9780316954990.jpg'), + ('0345463153', 'The Fourth Hand', 'https://images.isbndb.com/covers/31/59/9780345463159.jpg'), + ('188522317X', 'Bumper Sticker Wisdom: America''s Pulpit Above The Tailpipe', 'https://images.isbndb.com/covers/31/73/9781885223173.jpg'), + ('0312991460', 'To The Nines (Stephanie Plum, No. 9)', 'https://images.isbndb.com/covers/14/63/9780312991463.jpg'), + ('0142001325', 'Our Lady Of The Lost And Found: A Novel Of Mary, Faith, And Friendship', 'https://images.isbndb.com/covers/13/25/9780142001325.jpg'), + ('1565123670', 'A Parchment Of Leaves', 'https://images.isbndb.com/covers/36/70/9781565123670.jpg'), + ('0385501412', 'Three Weeks In Paris', 'https://images.isbndb.com/covers/14/15/9780385501415.jpg'), + ('0553277901', 'A Woman Of Substance', 'https://images.isbndb.com/covers/79/06/9780553277906.jpg'), + ('006016848X', 'Men Are From Mars, Women Are From Venus: A Practical Guide For Improving Communication And Getting What You Want In Your Relationships', 'https://images.isbndb.com/covers/84/83/9780060168483.jpg'), + ('0684862921', 'Ringing For You: A Love Story With Interruptions', 'https://images.isbndb.com/covers/29/27/9780684862927.jpg'), + ('0060956690', 'So Big (Perennial Classics)', 'https://images.isbndb.com/covers/66/91/9780060956691.jpg'), + ('0156007185', 'The Worst Day Of My Life, So Far', 'https://images.isbndb.com/covers/71/84/9780156007184.jpg'), + ('0451182960', 'Too Many Crooks Spoil The Broth (A Pennsylvania-Dutch Mystery With Recipes)', 'https://images.isbndb.com/covers/29/68/9780451182968.jpg'), + ('0449002985', 'Your Oasis On Flame Lake (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/29/88/9780449002988.jpg'), + ('037348254X', 'To Mother With Love 1993', 'https://images.isbndb.com/covers/25/42/9780373482542.jpg'), + ('0865473900', 'Rosie', 'https://images.isbndb.com/covers/39/04/9780865473904.jpg'), + ('0395859972', 'The Blue Flower', 'https://images.isbndb.com/covers/99/71/9780395859971.jpg'), + ('0671727583', 'Smart Women', 'https://images.isbndb.com/covers/75/81/9780671727581.jpg'), + ('0028604695', 'Frommer''s Walking Tours: Paris (2nd Edition)', 'https://images.isbndb.com/covers/46/95/9780028604695.jpg'), + ('0060176156', 'Up Island', 'https://images.isbndb.com/covers/61/50/9780060176150.jpg'), + ('0440159008', 'Motherhood The Second Oldest Profession', 'https://images.isbndb.com/covers/90/01/9780440159001.jpg'), + ('0893754005', 'Heidi', 'https://images.isbndb.com/covers/40/06/9780893754006.jpg'), + ('0671600400', 'Portrait Of An Artist: A Biography Of Georgia O''Keeffe', 'https://images.isbndb.com/covers/04/02/9780671600402.jpg'), + ('0440212561', 'Outlander', 'https://images.isbndb.com/covers/25/60/9780440212560.jpg'), + ('0517799952', 'Simple Spells For Love: Ancient Practices For Emotional Fulfillment', 'https://images.isbndb.com/covers/99/56/9780517799956.jpg'), + ('0140267670', 'Life Among The Savages', 'https://images.isbndb.com/covers/76/79/9780140267679.jpg'), + ('0394544749', 'Great Tours And Detours: The Sophisticated Traveler Series', 'https://images.isbndb.com/covers/47/48/9780394544748.jpg'), + ('0785282149', 'Driving Lessons', 'https://images.isbndb.com/covers/21/43/9780785282143.jpg'), + ('0505523183', 'The Night Before Christmas', 'https://images.isbndb.com/covers/31/81/9780505523181.jpg'), + ('0821769278', 'Plain Jane', 'https://images.isbndb.com/covers/92/70/9780821769270.jpg'), + ('0373223102', 'Veil Of Fear (Harlequin Intrigue)', 'https://images.isbndb.com/covers/31/07/9780373223107.jpg'), + ('0380815257', 'A Belated Bride', 'https://images.isbndb.com/covers/52/58/9780380815258.jpg'), + ('0486264645', 'Heart Of Darkness (Dover Thrift Editions)', 'https://images.isbndb.com/covers/46/46/9780486264646.jpg'), + ('0451402065', 'Earth Song (Song Novels)', 'https://images.isbndb.com/covers/20/66/9780451402066.jpg'), + ('0515133302', 'Hemlock Bay (FBI Series)', 'https://images.isbndb.com/covers/33/01/9780515133301.jpg'), + ('0451406907', 'Surrender (Florida Civil War)', 'https://images.isbndb.com/covers/69/03/9780451406903.jpg'), + ('1551668432', 'The Texas Ranger', 'https://images.isbndb.com/covers/84/37/9781551668437.jpg'), + ('0451198948', 'Warrior''s Song (Medieval Song Quartet #4)', 'https://images.isbndb.com/covers/89/45/9780451198945.jpg'), + ('0821767852', 'Yesterday', 'https://images.isbndb.com/covers/78/56/9780821767856.jpg'), + ('1552450244', 'Piccolo Mondo', 'https://images.isbndb.com/covers/02/46/9781552450246.jpg'), + ('0771014910', 'Deadly Appearances (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/49/18/9780771014918.jpg'), + ('0771014899', 'Verdict In Blood (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/48/95/9780771014895.jpg'), + ('0446363650', 'Dreamer''s Dictionary', 'https://images.isbndb.com/covers/36/55/9780446363655.jpg'), + ('0684186373', 'Harnessing Peacocks', 'https://images.isbndb.com/covers/63/75/9780684186375.jpg'), + ('0006480764', 'Lost Girls', 'https://images.isbndb.com/covers/07/61/9780006480761.jpg'), + ('0062514377', 'Meditations For Women Who Do Too Much', 'https://images.isbndb.com/covers/43/70/9780062514370.jpg'), + ('0970116500', 'Expect A Miracle: You Won''t Be Disappointed', 'https://images.isbndb.com/covers/65/05/9780970116505.jpg'), + ('0684804018', 'Divided Lives', 'https://images.isbndb.com/covers/40/19/9780684804019.jpg'), + ('1592861512', 'Journey', 'https://images.isbndb.com/covers/15/14/9781592861514.jpg'), + ('0345421884', 'Dragonshadow (Winterlands, No. 2)', 'https://images.isbndb.com/covers/18/83/9780345421883.jpg'), + ('0684801051', 'Time And Again', 'https://images.isbndb.com/covers/10/56/9780684801056.jpg'), + ('039914840X', 'Three Fates', 'https://images.isbndb.com/covers/84/08/9780399148408.jpg'), + ('0679426094', 'ENTRIES: Poems', 'https://images.isbndb.com/covers/60/97/9780679426097.jpg'), + ('0345410130', 'Dear James: A Novel', 'https://images.isbndb.com/covers/01/39/9780345410139.jpg'), + ('0787947350', 'Let Your Life Speak: Listening For The Voice Of Vocation', 'https://images.isbndb.com/covers/73/54/9780787947354.jpg'), + ('0818403802', 'Getting Straight A''S Green Gordon W', 'https://images.isbndb.com/covers/38/04/9780818403804.jpg'), + ('0684801523', 'The Great Gatsby', 'https://images.isbndb.com/covers/15/20/9780684801520.jpg'), + ('0836213106', 'Night Of The Living Dad (Baby Blues Scrapbook)', 'https://images.isbndb.com/covers/31/02/9780836213102.jpg'), + ('0671733346', 'The Cinderella Complex: Women''s Hidden Fear Of Independence', 'https://images.isbndb.com/covers/33/46/9780671733346.jpg'), + ('0836217810', 'We Are Experiencing Parental Difficulties...Please Stand By: Baby Blues Scrapbook No. 5 (Baby Blues Collection)', 'https://images.isbndb.com/covers/78/10/9780836217810.jpg'), + ('0736605673', 'Animal Farm', 'https://images.isbndb.com/covers/56/70/9780736605670.jpg'), + ('0446532452', 'The Wedding', 'https://images.isbndb.com/covers/24/57/9780446532457.jpg'), + ('1570629706', 'Siddhartha', 'https://images.isbndb.com/covers/97/09/9781570629709.jpg'), + ('0393322440', 'The Blunderer', 'https://images.isbndb.com/covers/24/46/9780393322446.jpg'), + ('0140449124', 'Madame Bovary (Penguin Classics)', 'https://images.isbndb.com/covers/91/29/9780140449129.jpg'), + ('0099274167', 'Misconceptions', 'https://images.isbndb.com/covers/41/62/9780099274162.jpg'), + ('0749391723', 'Lives Of The Saints Pb', 'https://images.isbndb.com/covers/17/20/9780749391720.jpg'), + ('0836217446', 'I Thought Labor Ended When The Baby Was Born (Baby Blues Collection)', 'https://images.isbndb.com/covers/74/45/9780836217445.jpg'), + ('0836217152', 'Guess Who Didn''t Take A Nap? (Baby Blues Collection)', 'https://images.isbndb.com/covers/71/55/9780836217155.jpg'), + ('0375421114', 'Video: Stories', 'https://images.isbndb.com/covers/11/12/9780375421112.jpg'), + ('0446520659', 'The Lion''s Game', 'https://images.isbndb.com/covers/06/52/9780446520652.jpg'), + ('0553071807', 'This Day All Gods Die: The Gap Into Ruin (Gap Series/Stephen R. Donaldson)', 'https://images.isbndb.com/covers/18/01/9780553071801.jpg'), + ('0060167033', 'The Sweet Hereafter: A Novel', 'https://images.isbndb.com/covers/70/35/9780060167035.jpg'), + ('0061091561', 'LA TIMES MM', 'https://images.isbndb.com/covers/15/68/9780061091568.jpg'), + ('0310214351', 'A Shepherd Looks At Psalm 23', 'https://images.isbndb.com/covers/43/59/9780310214359.jpg'), + ('0060191872', 'The Run', 'https://images.isbndb.com/covers/18/70/9780060191870.jpg'), + ('0061030996', 'Hit List (John Keller Mysteries)', 'https://images.isbndb.com/covers/09/94/9780061030994.jpg'), + ('0140430148', 'The Moonstone (Penguin Classics)', 'https://images.isbndb.com/covers/01/41/9780140430141.jpg'), + ('067318160X', 'Short English Handbook', 'https://images.isbndb.com/covers/16/02/9780673181602.jpg'), + ('155591229X', 'Potomac Trails: D.C., Virginia, Maryland, And West Virginia', 'https://images.isbndb.com/covers/22/91/9781555912291.jpg'), + ('0020198817', 'The Great Gatsby (A Scribner Classic)', 'https://images.isbndb.com/covers/88/19/9780020198819.jpg'), + ('0140001409', 'Cold Comfort Farm', 'https://images.isbndb.com/covers/14/02/9780140001402.jpg'), + ('0385323964', 'Maximum Bob', 'https://images.isbndb.com/covers/39/63/9780385323963.jpg'), + ('1881066703', 'New York City Restaurants 3 Ed', 'https://images.isbndb.com/covers/67/05/9781881066705.jpg'), + ('1853265535', 'Washington Square (Classics Library (NTC))', 'https://images.isbndb.com/covers/55/32/9781853265532.jpg'), + ('0345448359', 'Darwin''s Children', 'https://images.isbndb.com/covers/83/54/9780345448354.jpg'), + ('0446527084', 'Fallen Dragon', 'https://images.isbndb.com/covers/70/88/9780446527088.jpg'), + ('0743444965', 'Blood Music', 'https://images.isbndb.com/covers/49/65/9780743444965.jpg'), + ('0752816500', 'Axiomatic', 'https://images.isbndb.com/covers/65/00/9780752816500.jpg'), + ('0061059048', 'Vacuum Diagrams', 'https://images.isbndb.com/covers/90/49/9780061059049.jpg'), + ('0671656473', 'Marooned In Realtime', 'https://images.isbndb.com/covers/64/78/9780671656478.jpg'), + ('0812520475', 'Eon', 'https://images.isbndb.com/covers/04/77/9780812520477.jpg'), + ('0743421922', 'Look To Windward', 'https://images.isbndb.com/covers/19/28/9780743421928.jpg'), + ('0425173534', 'SSN', 'https://images.isbndb.com/covers/35/34/9780425173534.jpg'), + ('042510107X', 'Red Storm Rising', 'https://images.isbndb.com/covers/10/70/9780425101070.jpg'), + ('0425108937', 'Flight Of The Old Dog', 'https://images.isbndb.com/covers/89/32/9780425108932.jpg'), + ('0451457781', 'Treachery And Treason', 'https://images.isbndb.com/covers/77/83/9780451457783.jpg'), + ('1576734013', 'Mixed Signals (Alabaster Books)', 'https://images.isbndb.com/covers/40/18/9781576734018.jpg'), + ('0451203267', 'The Stranger Beside Me (Revised And Updated): 20th Anniversary', 'https://images.isbndb.com/covers/32/67/9780451203267.jpg'), + ('0312140908', 'The Invisible Circus: A Novel', 'https://images.isbndb.com/covers/09/08/9780312140908.jpg'), + ('0394571770', 'Butterfly', 'https://images.isbndb.com/covers/17/75/9780394571775.jpg'), + ('043936213X', 'Harry Potter And The Sorcerer''s Stone (Book 1)', 'https://images.isbndb.com/covers/21/39/9780439362139.jpg'), + ('0345432401', 'Omerta', 'https://images.isbndb.com/covers/24/07/9780345432407.jpg'), + ('0380779323', 'When Dinosaurs Ruled The Basement (An Avon Camelot Book)', 'https://images.isbndb.com/covers/93/21/9780380779321.jpg'), + ('043930931X', 'The Case Of The Buried Treasure (Jigsaw Jones Mystery Super Special, No. 1)', 'https://images.isbndb.com/covers/93/18/9780439309318.jpg'), + ('0064401502', 'Mrs. Piggle-Wiggle''s Farm', 'https://images.isbndb.com/covers/15/00/9780064401500.jpg'), + ('0671876570', 'The Ship Who Won', 'https://images.isbndb.com/covers/65/79/9780671876579.jpg'), + ('0373120095', 'In Bed With The Boss (Harlequin Presents)', 'https://images.isbndb.com/covers/00/93/9780373120093.jpg'), + ('0671798782', 'Diana: Her True Story', 'https://images.isbndb.com/covers/87/89/9780671798789.jpg'), + ('0679822631', 'Goodbye, Vietnam', 'https://images.isbndb.com/covers/26/39/9780679822639.jpg'), + ('0886191718', 'Daughters Of Captain Cook (International Fiction List)', 'https://images.isbndb.com/covers/17/19/9780886191719.jpg'), + ('0373764723', 'Expecting...And In Danger (Dynasties:The Connellys)', 'https://images.isbndb.com/covers/47/23/9780373764723.jpg'), + ('0373764685', 'The Royal Treatment (Crown And Glory)', 'https://images.isbndb.com/covers/46/86/9780373764686.jpg'), + ('0373764677', 'The Seal''s Surprise Baby', 'https://images.isbndb.com/covers/46/79/9780373764679.jpg'), + ('038071471X', 'Beyond The Stars', 'https://images.isbndb.com/covers/47/11/9780380714711.jpg'), + ('0373764766', 'Do You Take This Enemy (Stallion Pass)', 'https://images.isbndb.com/covers/47/61/9780373764761.jpg'), + ('0373764650', 'Taming The Outlaw (Man Of The Month) (Silhouette Desire)', 'https://images.isbndb.com/covers/46/55/9780373764655.jpg'), + ('0061061433', 'Year''s Best SF 7', 'https://images.isbndb.com/covers/14/31/9780061061431.jpg'), + ('0312020317', 'All Things Wise And Wonderful', 'https://images.isbndb.com/covers/03/16/9780312020316.jpg'), + ('0671823884', 'Good As Gold', 'https://images.isbndb.com/covers/38/87/9780671823887.jpg'), + ('0060973617', 'Up The Down Staircase', 'https://images.isbndb.com/covers/36/12/9780060973612.jpg'), + ('0141301236', 'A Place In The Sun', 'https://images.isbndb.com/covers/12/35/9780141301235.jpg'), + ('0771014236', 'Death Of Tecumseh (Book 20) (Battles Of The War Of 1812)', 'https://images.isbndb.com/covers/42/39/9780771014239.jpg'), + ('1576104176', 'Access 2000 Client/Server Solutions: The In-depth Guide To Developing Access Client/Server Systems', 'https://images.isbndb.com/covers/41/70/9781576104170.jpg'), + ('0525458638', 'The Shakespeare Stealer', 'https://images.isbndb.com/covers/86/30/9780525458630.jpg'), + ('0782124526', 'Mastering Coldfusion 4', 'https://images.isbndb.com/covers/45/21/9780782124521.jpg'), + ('0671726528', 'Kon-Tiki: Across The Pacific In A Raft', 'https://images.isbndb.com/covers/65/22/9780671726522.jpg'), + ('0553208659', 'Fair Blows The Wind', 'https://images.isbndb.com/covers/86/58/9780553208658.jpg'), + ('0553247662', 'Westward The Tide', 'https://images.isbndb.com/covers/76/64/9780553247664.jpg'), + ('0307220060', 'Ghost Of Eagle Mountain (Girl Talk)', 'https://images.isbndb.com/covers/00/66/9780307220066.jpg'), + ('037570342X', 'Family Matters', 'https://images.isbndb.com/covers/34/23/9780375703423.jpg'), + ('0452283027', 'Farm Fatale: A Comedy Of Country Manors', 'https://images.isbndb.com/covers/30/22/9780452283022.jpg'), + ('1400045029', 'Cooking For Harry: A Low-Carbohydrate Novel', 'https://images.isbndb.com/covers/50/20/9781400045020.jpg'), + ('1400052157', 'Idyll Banter: Weekly Excursions To A Very Small Town', 'https://images.isbndb.com/covers/21/58/9781400052158.jpg'), + ('0374174075', 'I Sailed With Magellan', 'https://images.isbndb.com/covers/40/71/9780374174071.jpg'), + ('0688102255', 'Rumor Has It', 'https://images.isbndb.com/covers/22/58/9780688102258.jpg'), + ('0704340070', 'Three Ply Yarn', 'https://images.isbndb.com/covers/00/77/9780704340077.jpg'), + ('0440132118', 'As On A Darkling Plain', 'https://images.isbndb.com/covers/21/10/9780440132110.jpg'), + ('0060916125', 'The True Believer: Thoughts On The Nature Of Mass Movements', 'https://images.isbndb.com/covers/61/21/9780060916121.jpg'), + ('0140274383', 'About Yvonne', 'https://images.isbndb.com/covers/43/87/9780140274387.jpg'), + ('0883910349', 'Og Mandino''s Great Trilogy', 'https://images.isbndb.com/covers/03/44/9780883910344.jpg'), + ('0380001012', 'The Foundation Trilogy: Foundation, Second Foundation, Foundation And Empire', 'https://images.isbndb.com/covers/10/19/9780380001019.jpg'), + ('1857033701', 'Getting Into Films & Television: How To Find The Best Way In (Jobs & Careers)', 'https://images.isbndb.com/covers/37/00/9781857033700.jpg'), + ('0330303287', 'The Silent People', 'https://images.isbndb.com/covers/32/86/9780330303286.jpg'), + ('0330303279', 'Seek The Fair Land (The Irish Trilogy)', 'https://images.isbndb.com/covers/32/79/9780330303279.jpg'), + ('0786884274', 'Don''t Call That Man!: A Survival Guide To Letting Go', 'https://images.isbndb.com/covers/42/78/9780786884278.jpg'), + ('0749308583', 'The Positive Way To Change Your Life', 'https://images.isbndb.com/covers/85/82/9780749308582.jpg'), + ('0749429003', 'Know Yourself: Achieve Your Goals Through Better Self-Knowledge', 'https://images.isbndb.com/covers/90/03/9780749429003.jpg'), + ('3518392387', 'Wilde Schafsjagd', 'https://images.isbndb.com/covers/23/86/9783518392386.jpg'), + ('0425187055', 'Cutting Edge (Tom Clancy''s Power Plays, Book 6)', 'https://images.isbndb.com/covers/70/50/9780425187050.jpg'), + ('0970897251', 'One Foot In Eden: A Novel', 'https://images.isbndb.com/covers/72/51/9780970897251.jpg'), + ('0316089737', 'Captain Saturday: A Novel', 'https://images.isbndb.com/covers/97/39/9780316089739.jpg'), + ('1589199669', 'A Place Called Wiregrass', 'https://images.isbndb.com/covers/96/68/9781589199668.jpg'), + ('0385494327', 'Black Dogs: A Novel', 'https://images.isbndb.com/covers/43/28/9780385494328.jpg'), + ('1566492017', 'Appointment With Il Duce', 'https://images.isbndb.com/covers/20/10/9781566492010.jpg'), + ('0802117155', 'Wish You Were Here', 'https://images.isbndb.com/covers/71/51/9780802117151.jpg'), + ('0060159081', 'Oscar And Lucinda', 'https://images.isbndb.com/covers/90/85/9780060159085.jpg'), + ('080326089X', 'The Wild Bunch At Robbers Roost', 'https://images.isbndb.com/covers/08/94/9780803260894.jpg'), + ('0446607258', 'Mythology: Timeless Tales Of Gods And Heroes', 'https://images.isbndb.com/covers/72/54/9780446607254.jpg'), + ('0374138591', 'The Devil''s Larder', 'https://images.isbndb.com/covers/85/92/9780374138592.jpg'), + ('0375726225', 'Burning Marguerite', 'https://images.isbndb.com/covers/62/24/9780375726224.jpg'), + ('0316184152', 'Final Harvest: Poems', 'https://images.isbndb.com/covers/41/51/9780316184151.jpg'), + ('1555661874', 'The Nearby Faraway: A Personal Journey Through The Heart Of The West', 'https://images.isbndb.com/covers/18/78/9781555661878.jpg'), + ('0312313195', 'Sons Of Fortune (Archer, Jeffrey)', 'https://images.isbndb.com/covers/31/97/9780312313197.jpg'), + ('068817776X', 'The Nazi Officer''s Wife: How One Jewish Woman Survived The Holocaust', 'https://images.isbndb.com/covers/77/68/9780688177768.jpg'), + ('0375760903', 'The Coffee Trader: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/09/07/9780375760907.jpg'), + ('0385721838', 'The True Sources Of The Nile', 'https://images.isbndb.com/covers/18/37/9780385721837.jpg'), + ('0743234359', 'American Jihad: The Terrorists Living Among Us', 'https://images.isbndb.com/covers/43/51/9780743234351.jpg'), + ('0142001104', 'The Art Of Possibility: Transforming Professional And Personal Life', 'https://images.isbndb.com/covers/11/03/9780142001103.jpg'), + ('0739306510', 'The Last Juror', 'https://images.isbndb.com/covers/65/12/9780739306512.jpg'), + ('0142003816', 'The Kitchen Boy: A Novel Of The Last Tsar', 'https://images.isbndb.com/covers/38/17/9780142003817.jpg'), + ('1585422932', 'The Hemingway Book Club Of Kosovo', 'https://images.isbndb.com/covers/29/37/9781585422937.jpg'), + ('080701222X', 'The Blooming Of A Lotus', 'https://images.isbndb.com/covers/22/22/9780807012222.jpg'), + ('0805071849', 'Borrowed Finery: A Memoir', 'https://images.isbndb.com/covers/18/49/9780805071849.jpg'), + ('1585673625', 'To The Edge Of The Sky: A Story Of Love, Betrayal, Suffering, And The Strength Of Human Courage', 'https://images.isbndb.com/covers/36/29/9781585673629.jpg'), + ('081296747X', 'The Majesty Of The Law: Reflections Of A Supreme Court Justice', 'https://images.isbndb.com/covers/74/70/9780812967470.jpg'), + ('0739307002', 'Death By Hollywood', 'https://images.isbndb.com/covers/70/07/9780739307007.jpg'), + ('0967002303', 'Chinese Playground : A Memoir', 'https://images.isbndb.com/covers/23/09/9780967002309.jpg'), + ('0881001163', 'Murder In Palm Springs', 'https://images.isbndb.com/covers/11/67/9780881001167.jpg'), + ('0375726373', 'Casa Rossa', 'https://images.isbndb.com/covers/63/78/9780375726378.jpg'), + ('0684826879', 'Beginning Anew', 'https://images.isbndb.com/covers/68/75/9780684826875.jpg'), + ('1573229377', 'Anger: Wisdom For Cooling The Flames', 'https://images.isbndb.com/covers/93/71/9781573229371.jpg'), + ('1400030803', 'The Good Women Of China: Hidden Voices', 'https://images.isbndb.com/covers/08/04/9781400030804.jpg'), + ('0452282020', 'Land Of A Thousand Hills: My Life In Rwanda', 'https://images.isbndb.com/covers/20/25/9780452282025.jpg'), + ('0684872838', 'The Fisher King: A Novel', 'https://images.isbndb.com/covers/28/34/9780684872834.jpg'), + ('0375726349', 'The Human Stain: A Novel American Trilogy (3)', 'https://images.isbndb.com/covers/63/47/9780375726347.jpg'), + ('0375403701', 'The Country Under My Skin: A Memoir Of Love And War', 'https://images.isbndb.com/covers/37/05/9780375403705.jpg'), + ('1932360069', 'The Long Haul', 'https://images.isbndb.com/covers/00/66/9781932360066.jpg'), + ('0006280803', 'Kundun Pb', 'https://images.isbndb.com/covers/08/04/9780006280804.jpg'), + ('1573223786', 'Drinking Coffee Elsewhere', 'https://images.isbndb.com/covers/37/82/9781573223782.jpg'), + ('0140235396', 'Memoirs Of A Beatnik', 'https://images.isbndb.com/covers/53/95/9780140235395.jpg'), + ('0385336934', 'Man Out Of Time', 'https://images.isbndb.com/covers/69/32/9780385336932.jpg'), + ('0399151648', 'Kate Remembered', 'https://images.isbndb.com/covers/16/44/9780399151644.jpg'), + ('0941781135', 'Katharine The Great : Katharine Graham And Her Washington Post Empire', 'https://images.isbndb.com/covers/11/38/9780941781138.jpg'), + ('0805063021', 'Canone Inverso: A Novel', 'https://images.isbndb.com/covers/30/28/9780805063028.jpg'), + ('1583224939', 'Terrorism And War (Open Media Series)', 'https://images.isbndb.com/covers/49/39/9781583224939.jpg'), + ('0394757777', 'Berlin Diaries, 1940-1945', 'https://images.isbndb.com/covers/77/73/9780394757773.jpg'), + ('1581820135', 'Return To The Scene Of The Crime: A Guide To Infamous Places In Chicago', 'https://images.isbndb.com/covers/01/33/9781581820133.jpg'), + ('0393959015', 'The House Of Mirth (Norton Critical Editions)', 'https://images.isbndb.com/covers/90/17/9780393959017.jpg'), + ('0445046368', 'Life Before Man', 'https://images.isbndb.com/covers/63/68/9780445046368.jpg'), + ('0373197187', 'Cattleman''s Pride (Silhouette Romance)', 'https://images.isbndb.com/covers/71/87/9780373197187.jpg'), + ('0689868278', 'When Lightning Strikes (1-800-Where-R-You)', 'https://images.isbndb.com/covers/82/76/9780689868276.jpg'), + ('0451202627', 'All Of Me: A Voluptuous Tale', 'https://images.isbndb.com/covers/26/28/9780451202628.jpg'), + ('1552095738', 'Trauma Junkie: Memoirs Of An Emergency Flight Nurse', 'https://images.isbndb.com/covers/57/37/9781552095737.jpg'), + ('0373250274', 'See Jane Date', 'https://images.isbndb.com/covers/02/71/9780373250271.jpg'), + ('0345469674', 'Girls'' Poker Night', 'https://images.isbndb.com/covers/96/70/9780345469670.jpg'), + ('0671023535', 'Prison Blues', 'https://images.isbndb.com/covers/35/39/9780671023539.jpg'), + ('0312966806', 'Tell Me Lies', 'https://images.isbndb.com/covers/68/05/9780312966805.jpg'), + ('0446692298', 'Fat Girls And Lawn Chairs', 'https://images.isbndb.com/covers/22/98/9780446692298.jpg'), + ('1573227161', 'Caucasia: A Novel', 'https://images.isbndb.com/covers/71/62/9781573227162.jpg'), + ('0505525496', 'Got A Hold On You', 'https://images.isbndb.com/covers/54/99/9780505525499.jpg'), + ('0842382852', 'Degrees Of Guilt: Tyrone''s Story', 'https://images.isbndb.com/covers/28/54/9780842382854.jpg'), + ('0842382836', 'Degrees Of Guilt: Miranda''s Story', 'https://images.isbndb.com/covers/28/30/9780842382830.jpg'), + ('0842382844', 'Degrees Of Guilt: Kyra''s Story', 'https://images.isbndb.com/covers/28/47/9780842382847.jpg'), + ('1591840414', 'Free Prize Inside: The Next Big Marketing Idea', 'https://images.isbndb.com/covers/04/11/9781591840411.jpg'), + ('0007106572', 'Guilty Creatures', 'https://images.isbndb.com/covers/65/78/9780007106578.jpg'), + ('1556615728', 'The Moon By Night (Cheney & Shiloh: The Inheritance #2)', 'https://images.isbndb.com/covers/57/26/9781556615726.jpg'), + ('0974757004', 'Ladies Choice', 'https://images.isbndb.com/covers/70/01/9780974757001.jpg'), + ('0060528125', 'Mary-Kate & Ashley Sweet 16 #6: My Best Friend''s Boyfriend: (My Best Friend''s Boyfriend) (Mary-Kate And Ashley Sweet 16)', 'https://images.isbndb.com/covers/81/26/9780060528126.jpg'), + ('0451188543', 'No Use Dying Over Spilled Milk: A Pennsylvania-Dutch Mystery With Recipes', 'https://images.isbndb.com/covers/85/40/9780451188540.jpg'), + ('1551667436', 'Strange Bedpersons (MIRA)', 'https://images.isbndb.com/covers/74/30/9781551667430.jpg'), + ('0312983484', 'Lead Me On', 'https://images.isbndb.com/covers/34/82/9780312983482.jpg'), + ('0375724990', 'Stuffed: Adventures Of A Restaurant Family', 'https://images.isbndb.com/covers/49/92/9780375724992.jpg'), + ('0060089296', 'Kiss Lonely Goodbye', 'https://images.isbndb.com/covers/92/90/9780060089290.jpg'), + ('0312984227', 'Room Service', 'https://images.isbndb.com/covers/42/29/9780312984229.jpg'), + ('1592680291', 'Harlem Sunset', 'https://images.isbndb.com/covers/02/90/9781592680290.jpg'), + ('1594140812', 'Becoming Maren', 'https://images.isbndb.com/covers/08/15/9781594140815.jpg'), + ('0446613053', 'The Crush', 'https://images.isbndb.com/covers/30/57/9780446613057.jpg'), + ('0380819651', 'Tiles And Tribulations (A Den Of Antiquity Mystery)', 'https://images.isbndb.com/covers/96/52/9780380819652.jpg'), + ('0451207475', 'The Chocolate Bear Burglary (Chocoholic Mysteries, No. 2)', 'https://images.isbndb.com/covers/74/70/9780451207470.jpg'), + ('0671735934', 'Honey Moon', 'https://images.isbndb.com/covers/59/37/9780671735937.jpg'), + ('075820230X', 'Chocolate Chip Cookie Murder (Hannah Swensen Mysteries)', 'https://images.isbndb.com/covers/23/07/9780758202307.jpg'), + ('055357258X', 'The Last Suppers (Goldy Culinary Mysteries, Book 4)', 'https://images.isbndb.com/covers/25/82/9780553572582.jpg'), + ('0425181839', 'A Tax-Deductible Death', 'https://images.isbndb.com/covers/18/36/9780425181836.jpg'), + ('0060525010', 'Motherhood Is Murder', 'https://images.isbndb.com/covers/50/19/9780060525019.jpg'), + ('0451207653', 'Living Large', 'https://images.isbndb.com/covers/76/54/9780451207654.jpg'), + ('0451192311', 'Eat, Drink And Be Wary (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/23/18/9780451192318.jpg'), + ('0440228921', 'The Giver', 'https://images.isbndb.com/covers/89/29/9780440228929.jpg'), + ('1575662450', 'Murder On The Glitter Box', 'https://images.isbndb.com/covers/24/59/9781575662459.jpg'), + ('0060176563', 'Rebel: The Life And Legend Of James Dean', 'https://images.isbndb.com/covers/65/63/9780060176563.jpg'), + ('1573222232', 'The Fruit Of Stone', 'https://images.isbndb.com/covers/22/35/9781573222235.jpg'), + ('0688177859', 'Ahab''s Wife: Or, The Star-Gazer: A Novel', 'https://images.isbndb.com/covers/78/50/9780688177850.jpg'), + ('0684868865', 'Boone''S Lick', 'https://images.isbndb.com/covers/88/68/9780684868868.jpg'), + ('0446607274', 'Angels Flight (Harry Bosch)', 'https://images.isbndb.com/covers/72/78/9780446607278.jpg'), + ('0486266842', 'The Turn Of The Screw (Dover Thrift Editions)', 'https://images.isbndb.com/covers/68/48/9780486266848.jpg'), + ('0679731806', 'The Professor''s House (Vintage Classics)', 'https://images.isbndb.com/covers/18/01/9780679731801.jpg'), + ('0897331575', 'Women Sleuths (Academy Mystery Novellas)', 'https://images.isbndb.com/covers/15/79/9780897331579.jpg'), + ('0553211439', 'A Connecticut Yankee In King Arthur''s Court (Bantam Classics)', 'https://images.isbndb.com/covers/14/36/9780553211436.jpg'), + ('0553296345', 'Zen In The Art Of Writing: Releasing The Creative Genius Within You', 'https://images.isbndb.com/covers/63/41/9780553296341.jpg'), + ('0441289886', 'The Glass Teat', 'https://images.isbndb.com/covers/98/82/9780441289882.jpg'), + ('0553573136', 'Couplehood', 'https://images.isbndb.com/covers/31/38/9780553573138.jpg'), + ('0771099843', 'Sunshine Sketches Of A Little Town (New Canadian Library)', 'https://images.isbndb.com/covers/98/47/9780771099847.jpg'), + ('0140440038', 'Sopocles: The Theban Plays: King Oedipus/Oedipus At Colonus/Antigone', 'https://images.isbndb.com/covers/00/34/9780140440034.jpg'), + ('0872201562', 'A Rulebook For Arguments', 'https://images.isbndb.com/covers/15/69/9780872201569.jpg'), + ('1577940040', 'Life In The Word: Teachings, Quotes, Personal Insights, And Humor From One Of Today''s Leading Ministers', 'https://images.isbndb.com/covers/00/43/9781577940043.jpg'), + ('1555171559', '10 Critical Keys For Highly Effective Mormon Families', 'https://images.isbndb.com/covers/15/51/9781555171551.jpg'), + ('1558505857', '365 TV-Free Activities You Can Do With Your Child', 'https://images.isbndb.com/covers/58/58/9781558505858.jpg'), + ('0385302312', 'Dragonfly In Amber (Outlander)', 'https://images.isbndb.com/covers/23/19/9780385302319.jpg'), + ('088494770X', 'Pillar Of Light: A Historical Novel (Work And The Glory)', 'https://images.isbndb.com/covers/77/07/9780884947707.jpg'), + ('0385302320', 'Voyager', 'https://images.isbndb.com/covers/23/26/9780385302326.jpg'), + ('0142437212', 'Complete Stories', 'https://images.isbndb.com/covers/72/16/9780142437216.jpg'), + ('0805063196', 'Complications: A Surgeon''s Notes On An Imperfect Science', 'https://images.isbndb.com/covers/31/96/9780805063196.jpg'), + ('0140075623', 'Stones For Ibarra (Contemporary American Fiction)', 'https://images.isbndb.com/covers/56/25/9780140075625.jpg'), + ('0743217713', 'Bad Girl Creek : A Novel', 'https://images.isbndb.com/covers/77/12/9780743217712.jpg'), + ('0609810103', 'Diary Of A Manhattan Call Girl: A Novel', 'https://images.isbndb.com/covers/01/01/9780609810101.jpg'), + ('0670886017', 'Kit''s Law', 'https://images.isbndb.com/covers/60/12/9780670886012.jpg'), + ('0060916338', 'House Made Of Dawn (Momaday)', 'https://images.isbndb.com/covers/63/36/9780060916336.jpg'), + ('0451204530', 'Code To Zero', 'https://images.isbndb.com/covers/45/30/9780451204530.jpg'), + ('0812562852', 'Chariot: Book Three Of The Millennium Quartet', 'https://images.isbndb.com/covers/28/59/9780812562859.jpg'), + ('0698116801', 'The Matchlock Gun', 'https://images.isbndb.com/covers/68/01/9780698116801.jpg'), + ('1858600006', 'The Only Planet Of Choice: Essential Briefings From Deep Space', 'https://images.isbndb.com/covers/00/00/9781858600000.jpg'), + ('0964374099', 'Jew Boy', 'https://images.isbndb.com/covers/40/96/9780964374096.jpg'), + ('0451205987', 'Wild At Heart', 'https://images.isbndb.com/covers/59/88/9780451205988.jpg'), + ('1591290902', 'The Bluebook Solution', 'https://images.isbndb.com/covers/09/02/9781591290902.jpg'), + ('0449211525', 'Sirens', 'https://images.isbndb.com/covers/15/26/9780449211526.jpg'), + ('0515101877', 'The Master Cure', 'https://images.isbndb.com/covers/18/74/9780515101874.jpg'), + ('0812522362', 'The Marilyn Tapes: A Novel', 'https://images.isbndb.com/covers/23/65/9780812522365.jpg'), + ('006098824X', 'Getting Over It', 'https://images.isbndb.com/covers/82/41/9780060988241.jpg'), + ('0812561880', 'The Protocol', 'https://images.isbndb.com/covers/18/83/9780812561883.jpg'), + ('0451203569', 'Daughter Of The Fifth Moon', 'https://images.isbndb.com/covers/35/64/9780451203564.jpg'), + ('0688111882', 'American Daughter Gone To War: On The Front Lines With An Army Nurse In Vietnam', 'https://images.isbndb.com/covers/18/85/9780688111885.jpg'), + ('0060505885', 'The Scandalous Summer Of Sissy LeBlanc: A Novel', 'https://images.isbndb.com/covers/58/82/9780060505882.jpg'), + ('0679401385', 'Mr. X. A Novel', 'https://images.isbndb.com/covers/13/84/9780679401384.jpg'), + ('0440213886', 'Echoes', 'https://images.isbndb.com/covers/38/88/9780440213888.jpg'), + ('0515116068', 'Hidden Riches', 'https://images.isbndb.com/covers/60/69/9780515116069.jpg'), + ('0679419691', 'Daughters Of Song', 'https://images.isbndb.com/covers/96/93/9780679419693.jpg'), + ('0743244710', 'White Doves At Morning', 'https://images.isbndb.com/covers/47/18/9780743244718.jpg'), + ('0425044890', 'Amateur Corpse/an', 'https://images.isbndb.com/covers/48/96/9780425044896.jpg'), + ('0140436669', 'The Inheritance (Penguin Classics)', 'https://images.isbndb.com/covers/66/62/9780140436662.jpg'), + ('0394742494', 'Stories', 'https://images.isbndb.com/covers/24/96/9780394742496.jpg'), + ('0670862215', 'Dead As A Dodo: A Homer Kelly Mystery', 'https://images.isbndb.com/covers/22/14/9780670862214.jpg'), + ('0670847100', 'The Shortest Day: Homer Kelly: Mystery At The Revels', 'https://images.isbndb.com/covers/71/05/9780670847105.jpg'), + ('0586068805', 'The Good Terrorist', 'https://images.isbndb.com/covers/88/09/9780586068809.jpg'), + ('0553259016', 'Summer Of My German Soldier', 'https://images.isbndb.com/covers/90/18/9780553259018.jpg'), + ('0670818577', 'WLT: A Radio Romance', 'https://images.isbndb.com/covers/85/70/9780670818570.jpg'), + ('0060910992', 'Babycakes', 'https://images.isbndb.com/covers/09/90/9780060910990.jpg'), + ('0060955716', 'Washington Square', 'https://images.isbndb.com/covers/57/17/9780060955717.jpg'), + ('0394462017', 'War Between The Tates', 'https://images.isbndb.com/covers/20/11/9780394462011.jpg'), + ('0811812693', 'Gluttony: Ample Tales Of Epicurean Excess', 'https://images.isbndb.com/covers/26/96/9780811812696.jpg'), + ('0393322203', 'A Relative Stranger: Stories', 'https://images.isbndb.com/covers/22/00/9780393322200.jpg'), + ('0030622093', 'A Stolen Past', 'https://images.isbndb.com/covers/20/90/9780030622090.jpg'), + ('0380404109', 'Jewel In The Crown', 'https://images.isbndb.com/covers/41/00/9780380404100.jpg'), + ('0060806419', 'Heat And Dust (Perennial Library)', 'https://images.isbndb.com/covers/64/15/9780060806415.jpg'), + ('158080036X', 'Particularly Cats', 'https://images.isbndb.com/covers/03/65/9781580800365.jpg'), + ('038517652X', 'The Normandie Affair', 'https://images.isbndb.com/covers/65/21/9780385176521.jpg'), + ('0671541900', 'A Man And Two Women: Stories (A Touchstone Book)', 'https://images.isbndb.com/covers/19/03/9780671541903.jpg'), + ('0312926294', 'The Carousel', 'https://images.isbndb.com/covers/62/98/9780312926298.jpg'), + ('1585790087', 'Another Self', 'https://images.isbndb.com/covers/00/81/9781585790081.jpg'), + ('0060805943', 'Jane And Prudence', 'https://images.isbndb.com/covers/59/44/9780060805944.jpg'), + ('0425089002', 'The Patriotic Murders', 'https://images.isbndb.com/covers/90/02/9780425089002.jpg'), + ('0345312791', 'The Silent Gondoliers: A Fable By S. Morgenstern', 'https://images.isbndb.com/covers/27/92/9780345312792.jpg'), + ('0394473361', 'The Naive And Sentimental Lover', 'https://images.isbndb.com/covers/33/69/9780394473369.jpg'), + ('0689107943', 'Tango November', 'https://images.isbndb.com/covers/79/48/9780689107948.jpg'), + ('0312532253', 'The Michaelmas Tree', 'https://images.isbndb.com/covers/22/53/9780312532253.jpg'), + ('0448416492', 'Ice Stars (All Aboard Reading. Station Stop 3)', 'https://images.isbndb.com/covers/64/96/9780448416496.jpg'), + ('0807554146', 'The Mystery On The Ice (Boxcar Children Special)', 'https://images.isbndb.com/covers/41/42/9780807554142.jpg'), + ('0525483357', 'Winnie Ille Pu (Latin Edition)', 'https://images.isbndb.com/covers/33/59/9780525483359.jpg'), + ('044048605X', 'Tennis Shoes', 'https://images.isbndb.com/covers/60/53/9780440486053.jpg'), + ('0399234616', 'The Hat', 'https://images.isbndb.com/covers/46/13/9780399234613.jpg'), + ('0679879242', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/92/44/9780679879244.jpg'), + ('0425057771', 'Phantoms', 'https://images.isbndb.com/covers/77/73/9780425057773.jpg'), + ('088776519X', 'Remember Me: A Search For Refuge In Wartime Britain', 'https://images.isbndb.com/covers/51/93/9780887765193.jpg'), + ('0451203054', 'Praying For Sleep', 'https://images.isbndb.com/covers/30/52/9780451203052.jpg'), + ('0451184734', 'Blood Relations', 'https://images.isbndb.com/covers/47/33/9780451184733.jpg'), + ('0316779989', 'Holidays On Ice: Stories', 'https://images.isbndb.com/covers/99/82/9780316779982.jpg'), + ('0671568183', 'The Late Child', 'https://images.isbndb.com/covers/81/84/9780671568184.jpg'), + ('0446603716', 'Hide And Seek', 'https://images.isbndb.com/covers/37/13/9780446603713.jpg'), + ('0380726289', 'Darkness, Take My Hand (Patrick Kenzie/Angela Gennaro Novels)', 'https://images.isbndb.com/covers/62/88/9780380726288.jpg'), + ('0440193613', 'Wanderlust', 'https://images.isbndb.com/covers/36/16/9780440193616.jpg'), + ('0679764895', 'Mr. Wilson''s Cabinet Of Wonder: Pronged Ants, Horned Humans, Mice On Toast, And Other Marvels Of Jurassic Techno Logy', 'https://images.isbndb.com/covers/48/92/9780679764892.jpg'), + ('0743418166', 'Good In Bed', 'https://images.isbndb.com/covers/81/64/9780743418164.jpg'), + ('0440235774', 'Looking Back', 'https://images.isbndb.com/covers/57/74/9780440235774.jpg'), + ('0061094404', 'Power Of A Woman', 'https://images.isbndb.com/covers/44/08/9780061094408.jpg'), + ('0515133418', 'Summer In Eclipse Bay', 'https://images.isbndb.com/covers/34/17/9780515133417.jpg'), + ('0743460529', 'Daddy''s Little Girl', 'https://images.isbndb.com/covers/05/21/9780743460521.jpg'), + ('0140386335', 'The Neverending Story', 'https://images.isbndb.com/covers/63/32/9780140386332.jpg'), + ('0373288891', 'Besieged (Harlequin Historical)', 'https://images.isbndb.com/covers/88/92/9780373288892.jpg'), + ('0373825013', 'Whirlwind (Tyler, Book 1)', 'https://images.isbndb.com/covers/50/11/9780373825011.jpg'), + ('0373825021', 'Bright Hopes (Welcome To Tyler, No. 2)', 'https://images.isbndb.com/covers/50/28/9780373825028.jpg'), + ('0449148408', 'False Prophet', 'https://images.isbndb.com/covers/84/02/9780449148402.jpg'), + ('0312957920', 'Scare Tactics', 'https://images.isbndb.com/covers/79/26/9780312957926.jpg'), + ('0345359321', 'Travels', 'https://images.isbndb.com/covers/93/22/9780345359322.jpg'), + ('0345377672', 'Body Count', 'https://images.isbndb.com/covers/76/78/9780345377678.jpg'), + ('0743216024', 'E.T.The Extra-Terrestrial: A Novel', 'https://images.isbndb.com/covers/60/29/9780743216029.jpg'), + ('2890379302', 'Le Cadeau Du Millionnaire', 'https://images.isbndb.com/covers/93/05/9782890379305.jpg'), + ('0140131612', 'Lake Wobegon Days', 'https://images.isbndb.com/covers/16/11/9780140131611.jpg'), + ('0741410060', 'Wake Up Barbara And Help Me Find This Snake', 'https://images.isbndb.com/covers/00/61/9780741410061.jpg'), + ('0521315441', 'Proust: Swann''s Way (Landmarks Of World Literature)', 'https://images.isbndb.com/covers/54/49/9780521315449.jpg'), + ('0741404540', 'What''s A Birthday Mama?', 'https://images.isbndb.com/covers/45/41/9780741404541.jpg'), + ('0446609951', 'The Letter Of The Law', 'https://images.isbndb.com/covers/99/51/9780446609951.jpg'), + ('0451157443', 'Carrie', 'https://images.isbndb.com/covers/74/47/9780451157447.jpg'), + ('1560300027', 'Review Book For Clep General Social Science Examination', 'https://images.isbndb.com/covers/00/21/9781560300021.jpg'), + ('0452275660', 'The Book Of Daniel', 'https://images.isbndb.com/covers/56/69/9780452275669.jpg'), + ('0060175680', 'Switcheroo: A Novel', 'https://images.isbndb.com/covers/56/89/9780060175689.jpg'), + ('0671867083', 'Remember Me', 'https://images.isbndb.com/covers/70/89/9780671867089.jpg'), + ('0446605360', 'Twanged (Regan Reilly Mysteries, No. 4)', 'https://images.isbndb.com/covers/53/66/9780446605366.jpg'), + ('0671741209', 'A Stranger Is Watching', 'https://images.isbndb.com/covers/12/04/9780671741204.jpg'), + ('0380790025', 'Death In Lovers'' Lane (Henrie O Mysteries)', 'https://images.isbndb.com/covers/00/29/9780380790029.jpg'), + ('0671880314', 'Schindler''s List', 'https://images.isbndb.com/covers/03/16/9780671880316.jpg'), + ('038550120X', 'A Painted House', 'https://images.isbndb.com/covers/12/00/9780385501200.jpg'), + ('0670860743', 'Bed And Breakfast', 'https://images.isbndb.com/covers/07/46/9780670860746.jpg'), + ('0451209486', 'Killer Hair: A Crime Of Fashion (Crime Of Fashion Mystery)', 'https://images.isbndb.com/covers/94/81/9780451209481.jpg'), + ('0446513067', 'The General''s Daughter', 'https://images.isbndb.com/covers/30/67/9780446513067.jpg'), + ('0312242220', 'Murder In Central Park: A Bill Donovan Mystery (Bill Donovan Mysteries)', 'https://images.isbndb.com/covers/22/20/9780312242220.jpg'), + ('0671665499', 'Life With Billy: Life With Billy', 'https://images.isbndb.com/covers/54/94/9780671665494.jpg'), + ('0789426323', 'The Starlight Princess And Other Princess Stories', 'https://images.isbndb.com/covers/63/21/9780789426321.jpg'), + ('0789202816', 'Mother And Daughter Tales (Abbeville Anthology)', 'https://images.isbndb.com/covers/28/19/9780789202819.jpg'), + ('0688172253', 'I''m Not In The Mood: What Every Woman Should Know About Improving Her Libido', 'https://images.isbndb.com/covers/22/51/9780688172251.jpg'), + ('0891091165', 'Celebrate The Seasons', 'https://images.isbndb.com/covers/11/65/9780891091165.jpg'), + ('0310918421', 'NIV Womens Devotional Bible 2', 'https://images.isbndb.com/covers/84/24/9780310918424.jpg'), + ('0789203928', 'Father And Daughter Tales (An Abbeville Anthology)', 'https://images.isbndb.com/covers/39/22/9780789203922.jpg'), + ('1562827979', 'The Super Coupon Shopping System: Ingenious New Ways To Save $$$$ On Every Shopping Bill', 'https://images.isbndb.com/covers/79/77/9781562827977.jpg'), + ('0806974109', 'Great Theme Parties For Children', 'https://images.isbndb.com/covers/41/01/9780806974101.jpg'), + ('0840732228', 'Food For The Hungry Heart: Daily Devotions For Overeaters (Serenity Meditation Series)', 'https://images.isbndb.com/covers/22/24/9780840732224.jpg'), + ('0891090665', 'Becoming A Woman Of Excellence', 'https://images.isbndb.com/covers/06/63/9780891090663.jpg'), + ('0896218643', 'A Murder Of Quality', 'https://images.isbndb.com/covers/86/42/9780896218642.jpg'), + ('0380977729', 'Sugarplum Dead (Death On Demand Mysteries, No. 12)', 'https://images.isbndb.com/covers/77/27/9780380977727.jpg'), + ('0380977737', 'Resort To Murder: A Henrie O Mystery', 'https://images.isbndb.com/covers/77/34/9780380977734.jpg'), + ('0849944767', 'The Oath', 'https://images.isbndb.com/covers/47/65/9780849944765.jpg'), + ('0440364574', 'No Language But A Cry (Laurel-Leaf Library)', 'https://images.isbndb.com/covers/45/73/9780440364573.jpg'), + ('0446394009', 'Rivethead: Tales From The Assembly Line', 'https://images.isbndb.com/covers/40/00/9780446394000.jpg'), + ('038549730X', 'The Vine Of Desire: A Novel', 'https://images.isbndb.com/covers/73/05/9780385497305.jpg'), + ('0446391581', 'A Whack On The Side Of The Head: How You Can Be More Creative', 'https://images.isbndb.com/covers/15/80/9780446391580.jpg'), + ('0812967240', 'It''s My F---ing Birthday: A Novel', 'https://images.isbndb.com/covers/72/41/9780812967241.jpg'), + ('0971995907', 'The Polygamist', 'https://images.isbndb.com/covers/59/01/9780971995901.jpg'), + ('1589820010', 'Hells Island', 'https://images.isbndb.com/covers/00/12/9781589820012.jpg'), + ('0679447164', 'Work Clothes (Chic Simple): Casual Dress For Serious Work (Chic Simple Guides)', 'https://images.isbndb.com/covers/71/60/9780679447160.jpg'), + ('0393007316', 'Worker In The Cane: A Puerto Rican Life History', 'https://images.isbndb.com/covers/73/12/9780393007312.jpg'), + ('0061096644', 'Underboss', 'https://images.isbndb.com/covers/66/48/9780061096648.jpg'), + ('0449907570', 'Heartbreak Handbook', 'https://images.isbndb.com/covers/75/73/9780449907573.jpg'), + ('0804105146', 'My Secret History', 'https://images.isbndb.com/covers/51/49/9780804105149.jpg'), + ('0451155815', 'The Would-be Widow (Signet)', 'https://images.isbndb.com/covers/58/18/9780451155818.jpg'), + ('1589820681', 'The Presents Of Angels', 'https://images.isbndb.com/covers/06/85/9781589820685.jpg'), + ('0971931429', 'How To Stay Married & Love It: Solving The Puzzle Of A SoulMate Marriage', 'https://images.isbndb.com/covers/14/28/9780971931428.jpg'), + ('0520082567', 'Religious Nationalism: Hindus And Muslims In India', 'https://images.isbndb.com/covers/25/64/9780520082564.jpg'), + ('1551665301', 'Book Club', 'https://images.isbndb.com/covers/53/06/9781551665306.jpg'), + ('0425151425', 'The Death Of A Dancing Fool (Berkley Prime Crime Series)', 'https://images.isbndb.com/covers/14/26/9780425151426.jpg'), + ('0553280074', 'Goodbye Doesn''t Mean Forever (A Bantam Starfire Book)', 'https://images.isbndb.com/covers/00/74/9780553280074.jpg'), + ('0064404773', 'Beauty: A Retelling Of The Story Of Beauty And The Beast', 'https://images.isbndb.com/covers/47/78/9780064404778.jpg'), + ('156382485X', 'Financing Your Business Made E-Z (Made E-Z Guides)', 'https://images.isbndb.com/covers/48/52/9781563824852.jpg'), + ('0879522593', 'Science And Health With Key To The Scriptures (Authorized, Trade Ed.)', 'https://images.isbndb.com/covers/25/99/9780879522599.jpg'), + ('0380756234', 'Night Storm', 'https://images.isbndb.com/covers/62/30/9780380756230.jpg'), + ('0446603856', 'The Enemy Within', 'https://images.isbndb.com/covers/38/50/9780446603850.jpg'), + ('0671885650', 'The TEN THOUSAND', 'https://images.isbndb.com/covers/56/56/9780671885656.jpg'), + ('0895296950', 'Lick The Sugar Habit', 'https://images.isbndb.com/covers/69/55/9780895296955.jpg'), + ('0684852047', 'Spending: A Novel', 'https://images.isbndb.com/covers/20/41/9780684852041.jpg'), + ('0671002821', 'Deep Water Passage: A Spiritual Journey At Midlife', 'https://images.isbndb.com/covers/28/24/9780671002824.jpg'), + ('1582430616', 'In Maremma: Life And A House In Southern Tuscany', 'https://images.isbndb.com/covers/06/14/9781582430614.jpg'), + ('0812589041', 'Ender''s Game', 'https://images.isbndb.com/covers/90/47/9780812589047.jpg'), + ('0060931752', 'The Way You Wear Your Hat: Frank Sinatra And The Lost Art Of Livin''', 'https://images.isbndb.com/covers/17/59/9780060931759.jpg'), + ('0966784219', 'Boomers Really Can Put Old On Hold', 'https://images.isbndb.com/covers/42/13/9780966784213.jpg'), + ('1931395004', 'Living In Shadows: How To Help The Stray Cat In Your Life (Without Adding To The Problem)', 'https://images.isbndb.com/covers/50/07/9781931395007.jpg'), + ('0670031895', 'I Should Be Extremely Happy In Your Company: A Novel Of Lewis And Clark (Lewis & Clark Expedition)', 'https://images.isbndb.com/covers/18/94/9780670031894.jpg'), + ('0452011574', 'Rebel Private: Front And Rear: Memoirs Of A Confederate Soldier', 'https://images.isbndb.com/covers/15/71/9780452011571.jpg'), + ('0451200985', 'French Impressions: The Adventures Of An American Family', 'https://images.isbndb.com/covers/09/83/9780451200983.jpg'), + ('0375505822', 'The Bay Of Angels: A Novel', 'https://images.isbndb.com/covers/58/29/9780375505829.jpg'), + ('0312288549', 'Cold Burial: A True Story Of Endurance And Disaster', 'https://images.isbndb.com/covers/85/49/9780312288549.jpg'), + ('0393039595', 'Loverboys: Stories', 'https://images.isbndb.com/covers/95/97/9780393039597.jpg'), + ('0571175686', 'Ed Wood', 'https://images.isbndb.com/covers/56/80/9780571175680.jpg'), + ('1588720020', 'Crossing Over: The Stories Behind The Stories', 'https://images.isbndb.com/covers/00/23/9781588720023.jpg'), + ('0316169226', 'The Cabal And Other Stories', 'https://images.isbndb.com/covers/92/26/9780316169226.jpg'), + ('0785814078', 'Cat Crimes Through Time', 'https://images.isbndb.com/covers/40/78/9780785814078.jpg'), + ('0345333853', 'Mists Of Avalon', 'https://images.isbndb.com/covers/38/58/9780345333858.jpg'), + ('0060937866', 'A Year At The Movies: One Man''s Filmgoing Odyssey', 'https://images.isbndb.com/covers/78/67/9780060937867.jpg'), + ('0060198125', 'Coastliners: A Novel', 'https://images.isbndb.com/covers/81/21/9780060198121.jpg'), + ('0525945830', 'Quakertown', 'https://images.isbndb.com/covers/58/33/9780525945833.jpg'), + ('0345452569', 'A Cold Heart (Alex Delaware)', 'https://images.isbndb.com/covers/25/66/9780345452566.jpg'), + ('1582343586', 'Hey Nostradamus!: A Novel (Coupland, Douglas)', 'https://images.isbndb.com/covers/35/87/9781582343587.jpg'), + ('0020404808', 'O Ye Jigs & Juleps!', 'https://images.isbndb.com/covers/48/04/9780020404804.jpg'), + ('0425106403', 'Replay', 'https://images.isbndb.com/covers/64/02/9780425106402.jpg'), + ('0597145806', 'VENTURE STORES, INC.: International Competitive Benchmarks And Financial Gap Analysis (Financial Performance Series)', 'https://images.isbndb.com/covers/58/03/9780597145803.jpg'), + ('0061091464', 'The Thief Of Always', 'https://images.isbndb.com/covers/14/69/9780061091469.jpg'), + ('0671015311', 'To Shield The Queen (Mystery At Queen Elizabeth I''s Court)', 'https://images.isbndb.com/covers/53/12/9780671015312.jpg'), + ('0912670096', 'The Yellow Wallpaper (Feminist Press Reprint No. 3)', 'https://images.isbndb.com/covers/00/96/9780912670096.jpg'), + ('0385497520', 'The Child In Time', 'https://images.isbndb.com/covers/75/27/9780385497527.jpg'), + ('0312151144', 'Dreamhouse', 'https://images.isbndb.com/covers/11/40/9780312151140.jpg'), + ('0743203968', 'The Body Artist: A Novel', 'https://images.isbndb.com/covers/39/68/9780743203968.jpg'), + ('0385247958', '1001 Things Everyone Should Know About Science', 'https://images.isbndb.com/covers/79/55/9780385247955.jpg'), + ('0486284670', 'A Room With A View (Unabridged) (Dover Thrift Editions)', 'https://images.isbndb.com/covers/46/75/9780486284675.jpg'), + ('0375701710', 'The New Life', 'https://images.isbndb.com/covers/17/19/9780375701719.jpg'), + ('0670825379', 'The Satanic Verses', 'https://images.isbndb.com/covers/53/70/9780670825370.jpg'), + ('0449217191', 'The Edge', 'https://images.isbndb.com/covers/71/91/9780449217191.jpg'), + ('1558611584', 'The Yellow Wall-Paper', 'https://images.isbndb.com/covers/15/80/9781558611580.jpg'), + ('0151009988', 'Mrs. Dalloway', 'https://images.isbndb.com/covers/99/85/9780151009985.jpg'), + ('0671788574', 'Foolscap', 'https://images.isbndb.com/covers/85/75/9780671788575.jpg'), + ('0440127793', 'Galapagos', 'https://images.isbndb.com/covers/77/96/9780440127796.jpg'), + ('0156106809', 'The Baron In The Trees', 'https://images.isbndb.com/covers/68/01/9780156106801.jpg'), + ('0765108674', 'Politically Correct, The Ultimate Storybook: Politically Correct Bedtime Stories, Once Upon A More Enlightened Time, And Politically Correct Holiday Stories', 'https://images.isbndb.com/covers/86/78/9780765108678.jpg'), + ('0679724699', 'The History Of Sexuality, Vol. 1: An Introduction', 'https://images.isbndb.com/covers/46/98/9780679724698.jpg'), + ('014230218X', 'The Dreaming Place', 'https://images.isbndb.com/covers/21/87/9780142302187.jpg'), + ('0449212297', 'Queen''s Confession', 'https://images.isbndb.com/covers/22/95/9780449212295.jpg'), + ('0571199895', 'Sister Revolutions: French Lightning, American Light', 'https://images.isbndb.com/covers/98/91/9780571199891.jpg'), + ('0141304235', 'The Case Of The Measled Cowboy (Hank The Cowdog, No. 33)', 'https://images.isbndb.com/covers/42/36/9780141304236.jpg'), + ('0312863934', 'Yarrow', 'https://images.isbndb.com/covers/39/37/9780312863937.jpg'), + ('0385468873', 'Poet And Dancer', 'https://images.isbndb.com/covers/88/79/9780385468879.jpg'), + ('0385502532', 'Drowning Ruth', 'https://images.isbndb.com/covers/25/35/9780385502535.jpg'), + ('0060928034', 'Unlocking The Air: Stories', 'https://images.isbndb.com/covers/80/32/9780060928032.jpg'), + ('0140252991', 'The Frog', 'https://images.isbndb.com/covers/29/96/9780140252996.jpg'), + ('0449002594', 'Seven Weeks To Sobriety: The Proven Program To Fight Alcoholism Through Nutrition', 'https://images.isbndb.com/covers/25/99/9780449002599.jpg'), + ('0140286527', 'The Diet Cure', 'https://images.isbndb.com/covers/65/26/9780140286526.jpg'), + ('0743236742', 'The Ultimate Weight Solution: The 7 Keys To Weight Loss Freedom', 'https://images.isbndb.com/covers/67/44/9780743236744.jpg'), + ('0399151745', 'The Paid Companion', 'https://images.isbndb.com/covers/17/43/9780399151743.jpg'), + ('1400060737', 'The Birth Of Venus', 'https://images.isbndb.com/covers/07/33/9781400060733.jpg'), + ('0060520612', 'The Proper Care And Feeding Of Husbands', 'https://images.isbndb.com/covers/06/18/9780060520618.jpg'), + ('0375413596', 'The White', 'https://images.isbndb.com/covers/35/99/9780375413599.jpg'), + ('034543739X', 'Until The Real Thing Comes Along (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/73/96/9780345437396.jpg'), + ('0553268937', 'The Water Is Wide', 'https://images.isbndb.com/covers/89/35/9780553268935.jpg'), + ('0060931957', 'The Odyssey Of Homer', 'https://images.isbndb.com/covers/19/57/9780060931957.jpg'), + ('0060192704', 'Beauty Fades, Dumb Is Forever: The Making Of A Happy Woman', 'https://images.isbndb.com/covers/27/09/9780060192709.jpg'), + ('0890877033', 'Living Juicy: Daily Morsels For Your Creative Soul', 'https://images.isbndb.com/covers/70/36/9780890877036.jpg'), + ('0684835975', 'We''ll Meet Again', 'https://images.isbndb.com/covers/59/76/9780684835976.jpg'), + ('0062516981', 'Son Of A Preacher Man: My Search For Grace In The Shadows', 'https://images.isbndb.com/covers/69/85/9780062516985.jpg'), + ('0380722704', 'Charms For The Easy Life', 'https://images.isbndb.com/covers/27/09/9780380722709.jpg'), + ('096533192X', 'The Secret Life Of Bees - Novel', 'https://images.isbndb.com/covers/19/20/9780965331920.jpg'), + ('0553114271', 'Scarlatti Inheritance', 'https://images.isbndb.com/covers/42/70/9780553114270.jpg'), + ('0671671499', 'A Twist In The Tale', 'https://images.isbndb.com/covers/14/95/9780671671495.jpg'), + ('0425123456', 'Frequent Flyer', 'https://images.isbndb.com/covers/34/54/9780425123454.jpg'), + ('0312957882', 'The Edge Of The City', 'https://images.isbndb.com/covers/78/89/9780312957889.jpg'), + ('0671725955', 'Perfume', 'https://images.isbndb.com/covers/59/52/9780671725952.jpg'), + ('0553263226', 'The Bourne Supremacy (Bourne Trilogy, Book 2)', 'https://images.isbndb.com/covers/32/20/9780553263220.jpg'), + ('0671525425', 'HEAVEN', 'https://images.isbndb.com/covers/54/22/9780671525422.jpg'), + ('0671542745', 'When The Snow Comes, They Will Take You Away', 'https://images.isbndb.com/covers/27/40/9780671542740.jpg'), + ('0671507397', 'Bonecrack', 'https://images.isbndb.com/covers/73/98/9780671507398.jpg'), + ('0451124685', 'Touch The Devil', 'https://images.isbndb.com/covers/46/85/9780451124685.jpg'), + ('0373194072', 'Wishes Waltzes And A Storybook Wedding (Do You Take This Stranger?) (Harlequin Romance)', 'https://images.isbndb.com/covers/40/70/9780373194070.jpg'), + ('0373218397', 'Summer Pleasures', 'https://images.isbndb.com/covers/83/94/9780373218394.jpg'), + ('0373441614', 'Cooking Up Trouble / Kiss The Cook', 'https://images.isbndb.com/covers/16/17/9780373441617.jpg'), + ('050552533X', 'Traveler (Wildside Romance)', 'https://images.isbndb.com/covers/53/38/9780505525338.jpg'), + ('0140257349', 'Haunted Places: The National Directory: Ghostly Abodes, Sacred Sites, UFO Landings And Other Supernatural Locations', 'https://images.isbndb.com/covers/73/42/9780140257342.jpg'), + ('0060504137', 'The Color Of Death', 'https://images.isbndb.com/covers/41/37/9780060504137.jpg'), + ('1558530983', 'Aunt Bee''s Mayberry Cookbook', 'https://images.isbndb.com/covers/09/80/9781558530980.jpg'), + ('0758205600', 'Return To Me', 'https://images.isbndb.com/covers/56/05/9780758205605.jpg'), + ('0345381718', 'Wildblossom', 'https://images.isbndb.com/covers/17/12/9780345381712.jpg'), + ('0843941987', 'Jake (The Cowboys)', 'https://images.isbndb.com/covers/19/82/9780843941982.jpg'), + ('082173718X', 'Caress Of Fire', 'https://images.isbndb.com/covers/71/87/9780821737187.jpg'), + ('0843941812', 'Encantadora', 'https://images.isbndb.com/covers/18/14/9780843941814.jpg'), + ('0821738453', 'Texas Touch', 'https://images.isbndb.com/covers/84/50/9780821738450.jpg'), + ('0821754866', 'The Mountain Rose', 'https://images.isbndb.com/covers/48/63/9780821754863.jpg'), + ('0373290160', 'Runaway (Harlequin Historical, 416)', 'https://images.isbndb.com/covers/01/61/9780373290161.jpg'), + ('0061084751', 'One Lonely Night', 'https://images.isbndb.com/covers/47/51/9780061084751.jpg'), + ('0821758683', 'Joseph''s Bride', 'https://images.isbndb.com/covers/86/87/9780821758687.jpg'), + ('082172679X', 'Tender Betrayal (Zebra Historical Romance)', 'https://images.isbndb.com/covers/67/92/9780821726792.jpg'), + ('0451405285', 'Dangerous Angel (Topaz Historical Romances)', 'https://images.isbndb.com/covers/52/89/9780451405289.jpg'), + ('0380785617', 'Heart Breaker', 'https://images.isbndb.com/covers/56/12/9780380785612.jpg'), + ('0380763435', 'Devil''s Delight', 'https://images.isbndb.com/covers/34/36/9780380763436.jpg'), + ('0380782529', 'A Tough Man''s Woman (Tough Man Series , No 3)', 'https://images.isbndb.com/covers/25/29/9780380782529.jpg'), + ('0312955057', 'The Bridled Groom', 'https://images.isbndb.com/covers/50/52/9780312955052.jpg'), + ('0140140859', 'Granta 49: Money', 'https://images.isbndb.com/covers/08/59/9780140140859.jpg'), + ('0385418213', 'The Beast, The Eunuch, And The Glass-Eyed Child: Television In The 80''s And Beyond', 'https://images.isbndb.com/covers/82/18/9780385418218.jpg'), + ('0060934425', 'The Binding Chair: Or, A Visit From The Foot Emancipation Society', 'https://images.isbndb.com/covers/44/22/9780060934422.jpg'), + ('0671631985', 'Teach Your Child To Read In 100 Easy Lessons', 'https://images.isbndb.com/covers/19/87/9780671631987.jpg'), + ('0671027409', 'The Stargazer', 'https://images.isbndb.com/covers/74/07/9780671027407.jpg'), + ('0671703617', 'Monkeys', 'https://images.isbndb.com/covers/36/15/9780671703615.jpg'), + ('1566190304', 'Collected Poems Of Emily Dickinson', 'https://images.isbndb.com/covers/03/05/9781566190305.jpg'), + ('0425179885', 'The Devil''s Code (Kidd)', 'https://images.isbndb.com/covers/98/88/9780425179888.jpg'), + ('0670883514', 'Jessica', 'https://images.isbndb.com/covers/35/16/9780670883516.jpg'), + ('0395798655', 'The Best American Short Stories 1997', 'https://images.isbndb.com/covers/86/52/9780395798652.jpg'), + ('0812578902', 'The Velveteen Rabbit Or How Toys Become Real', 'https://images.isbndb.com/covers/89/04/9780812578904.jpg'), + ('0020442203', 'The Lion, The Witch, And The Wardrobe', 'https://images.isbndb.com/covers/22/02/9780020442202.jpg'), + ('0553211374', 'Persuasion (Bantam Classic)', 'https://images.isbndb.com/covers/13/75/9780553211375.jpg'), + ('0140150706', 'The Portable Jung (Portable Library)', 'https://images.isbndb.com/covers/07/04/9780140150704.jpg'), + ('0553204572', 'All Things Wise And Wonderful', 'https://images.isbndb.com/covers/45/75/9780553204575.jpg'), + ('0425175111', 'A Stitch In Time (Needlecraft Mystery)', 'https://images.isbndb.com/covers/51/18/9780425175118.jpg'), + ('0671001132', 'Dead By Sunset', 'https://images.isbndb.com/covers/11/31/9780671001131.jpg'), + ('0671793535', 'A Rose For Her Grave & Other True Cases (Ann Rule''s Crime Files)', 'https://images.isbndb.com/covers/35/31/9780671793531.jpg'), + ('0671868691', 'Bitter Harvest', 'https://images.isbndb.com/covers/86/97/9780671868697.jpg'), + ('0671793543', 'You Belong To Me And Other True Cases (Ann Rule''s Crime Files: Vol. 2)', 'https://images.isbndb.com/covers/35/48/9780671793548.jpg'), + ('0671025341', 'A Rage To Kill And Other True Cases: Anne Rule''s Crime Files, Vol. 6 (Ann Rule''s Crime Files)', 'https://images.isbndb.com/covers/53/42/9780671025342.jpg'), + ('0375713484', 'Confess, Fletch', 'https://images.isbndb.com/covers/34/84/9780375713484.jpg'), + ('0812572122', 'A Stir Of Echoes', 'https://images.isbndb.com/covers/21/24/9780812572124.jpg'), + ('0762102543', 'Presumed Innocent', 'https://images.isbndb.com/covers/25/49/9780762102549.jpg'), + ('0446601977', 'Parable Of The Sower', 'https://images.isbndb.com/covers/19/79/9780446601979.jpg'), + ('0393307050', 'Master And Commander', 'https://images.isbndb.com/covers/70/54/9780393307054.jpg'), + ('0879735783', 'John Paul II''s Book Of Mary', 'https://images.isbndb.com/covers/57/84/9780879735784.jpg'), + ('0812550579', '7 Steps To Midnight', 'https://images.isbndb.com/covers/05/73/9780812550573.jpg'), + ('0672320967', 'XML Internationalization And Localization', 'https://images.isbndb.com/covers/09/65/9780672320965.jpg'), + ('0132267055', 'SGML: The Billion Dollar Secret', 'https://images.isbndb.com/covers/70/52/9780132267052.jpg'), + ('0773761969', 'A Bawdy Language: How A Second-Rate Language Slept Its Way To The Top', 'https://images.isbndb.com/covers/19/64/9780773761964.jpg'), + ('0452282934', 'Backpack', 'https://images.isbndb.com/covers/29/33/9780452282933.jpg'), + ('0451203526', 'The Mike Hammer Collection Volume 1', 'https://images.isbndb.com/covers/35/26/9780451203526.jpg'), + ('0316289124', 'Mr. Midshipman Hornblower (Hornblower Saga)', 'https://images.isbndb.com/covers/91/22/9780316289122.jpg'), + ('0743474724', 'Psycho II', 'https://images.isbndb.com/covers/47/26/9780743474726.jpg'), + ('0679722637', 'The Thin Man', 'https://images.isbndb.com/covers/26/32/9780679722632.jpg'), + ('0198607199', 'Einstein''s Luck: The Truth Behind Some Of The Greatest Scientific Discoveries', 'https://images.isbndb.com/covers/71/99/9780198607199.jpg'), + ('188455010X', 'Mathematical Scandals', 'https://images.isbndb.com/covers/01/02/9781884550102.jpg'), + ('0804109192', 'Sacrifice', 'https://images.isbndb.com/covers/91/92/9780804109192.jpg'), + ('0812548116', 'Now You See It . . .', 'https://images.isbndb.com/covers/81/12/9780812548112.jpg'), + ('0375414053', 'I Don''t Know How She Does It: The Life Of Kate Reddy, Working Mother', 'https://images.isbndb.com/covers/40/53/9780375414053.jpg'), + ('1400046610', 'Slander: Liberal Lies About The American Right', 'https://images.isbndb.com/covers/66/14/9781400046614.jpg'), + ('0312868855', 'Hell House', 'https://images.isbndb.com/covers/88/57/9780312868857.jpg'), + ('0812519329', 'Psycho', 'https://images.isbndb.com/covers/93/27/9780812519327.jpg'), + ('0446526665', 'The Up And Comer', 'https://images.isbndb.com/covers/66/61/9780446526661.jpg'), + ('1568655819', 'A Canticle For Leibowitz', 'https://images.isbndb.com/covers/58/19/9781568655819.jpg'), + ('0441001971', 'Circus Of The Damned (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/19/72/9780441001972.jpg'), + ('0684810395', 'Pretend You Don''t See Her', 'https://images.isbndb.com/covers/03/93/9780684810393.jpg'), + ('0399143874', 'Homeport', 'https://images.isbndb.com/covers/38/78/9780399143878.jpg'), + ('0070064601', 'Family: The Ties That Bind And Gag!', 'https://images.isbndb.com/covers/46/07/9780070064607.jpg'), + ('0373272820', 'The Perfect Target (Silhouette Intimate Moments No. 1212)', 'https://images.isbndb.com/covers/28/22/9780373272822.jpg'), + ('0373218117', 'Broken Silence (Family Secrets)', 'https://images.isbndb.com/covers/81/10/9780373218110.jpg'), + ('0373711050', 'The Healer: Deep In The Heart (Harlequin Superromance No. 1105)', 'https://images.isbndb.com/covers/10/55/9780373711055.jpg'), + ('0373711409', 'Taking A Chance : Under One Roof (Harlequin Superromance No. 1140)', 'https://images.isbndb.com/covers/14/06/9780373711406.jpg'), + ('0505524430', 'Lord Of The Mist', 'https://images.isbndb.com/covers/44/30/9780505524430.jpg'), + ('0373194919', 'His Special Delivery (Harlequin Romance)', 'https://images.isbndb.com/covers/49/19/9780373194919.jpg'), + ('0373227205', 'Sarah''s Secrets (Harlequin Intrigue #720)', 'https://images.isbndb.com/covers/72/04/9780373227204.jpg'), + ('0373218419', 'Blithe Images', 'https://images.isbndb.com/covers/84/17/9780373218417.jpg'), + ('0440222842', 'Five Days In Paris', 'https://images.isbndb.com/covers/28/42/9780440222842.jpg'), + ('0373272383', 'Love Under Fire (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/23/89/9780373272389.jpg'), + ('0373194714', 'Princess''S Proposal (The Carramer Crown) (Silhouette Romance)', 'https://images.isbndb.com/covers/47/11/9780373194711.jpg'), + ('0399141227', 'Montana Sky', 'https://images.isbndb.com/covers/12/25/9780399141225.jpg'), + ('3426619342', 'Sag Luder Zu Mir: Gute Mädchen Sagen Danke Schön, Böse Flüstern 1000 Heiße Worte', 'https://images.isbndb.com/covers/93/46/9783426619346.jpg'), + ('3426624680', 'Warum Männer So Schnell Kommen Und Frauen Nur So Tun Als Ob: Eine Gebrauchsanweisung Für Das Andere Geschlecht', 'https://images.isbndb.com/covers/46/85/9783426624685.jpg'), + ('3426273098', 'Der Weg Der Kriegerin', 'https://images.isbndb.com/covers/30/98/9783426273098.jpg'), + ('3810505153', 'Gute Mädchen Kommen In Den Himmel, Böse überall Hin: Warum Bravsein Uns Nicht Weiterbringt', 'https://images.isbndb.com/covers/51/56/9783810505156.jpg'), + ('3499134039', 'Schade, Daß Du Nicht Tot Bist', 'https://images.isbndb.com/covers/40/36/9783499134036.jpg'), + ('3518370081', 'Memoiren, Gefunden In Der Badewanne (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/00/87/9783518370087.jpg'), + ('3548359698', 'Warum Männer Nicht Zuhören Und Frauen Schlecht Einparken: Ganz Natürliche Erklärungen Für Eigentlich Unerklärliche Schwächen', 'https://images.isbndb.com/covers/96/94/9783548359694.jpg'), + ('0553379011', 'The Story Of B', 'https://images.isbndb.com/covers/90/13/9780553379013.jpg'), + ('0385319851', 'At Weddings And Wakes', 'https://images.isbndb.com/covers/98/50/9780385319850.jpg'), + ('0060958308', 'The Assistant (Perennial Classics)', 'https://images.isbndb.com/covers/83/05/9780060958305.jpg'), + ('0440418321', 'The Golden Compass (His Dark Materials, Book 1)', 'https://images.isbndb.com/covers/83/20/9780440418320.jpg'), + ('0316789976', 'The Weight Of Water', 'https://images.isbndb.com/covers/99/74/9780316789974.jpg'), + ('0394525280', 'World''s Fair', 'https://images.isbndb.com/covers/52/80/9780394525280.jpg'), + ('0020433115', 'Just One Friend', 'https://images.isbndb.com/covers/31/18/9780020433118.jpg'), + ('0671733397', 'Eyeballs For Breakfast', 'https://images.isbndb.com/covers/33/91/9780671733391.jpg'), + ('1568360428', 'The Delany Sisters'' Book Of Everyday Wisdom', 'https://images.isbndb.com/covers/04/23/9781568360423.jpg'), + ('0671519816', 'Inca Gold (Clive Cussler)', 'https://images.isbndb.com/covers/98/10/9780671519810.jpg'), + ('042518109X', 'Whispers', 'https://images.isbndb.com/covers/10/96/9780425181096.jpg'), + ('0061097861', 'Hunting Badger (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/78/67/9780061097867.jpg'), + ('0374513112', 'The Shackle', 'https://images.isbndb.com/covers/31/15/9780374513115.jpg'), + ('0446609145', 'Void Moon', 'https://images.isbndb.com/covers/91/42/9780446609142.jpg'), + ('0553575406', 'Murder On The Prowl', 'https://images.isbndb.com/covers/54/08/9780553575408.jpg'), + ('0380797631', 'Last Days Of Summer', 'https://images.isbndb.com/covers/76/39/9780380797639.jpg'), + ('0140161171', 'On The Side Of The Angels (Virago Modern Classics)', 'https://images.isbndb.com/covers/11/75/9780140161175.jpg'), + ('0141304677', 'James And The Giant Peach', 'https://images.isbndb.com/covers/46/70/9780141304670.jpg'), + ('0553213237', 'A Room With A View (Bantam Classics)', 'https://images.isbndb.com/covers/32/32/9780553213232.jpg'), + ('076791175X', 'Funny Letters From Famous People', 'https://images.isbndb.com/covers/17/57/9780767911757.jpg'), + ('0679433740', 'Paradise', 'https://images.isbndb.com/covers/37/43/9780679433743.jpg'), + ('0060501170', 'I''ll Take You There: A Novel', 'https://images.isbndb.com/covers/11/74/9780060501174.jpg'), + ('0375703063', 'A Virtuous Woman (Oprah''s Book Club)', 'https://images.isbndb.com/covers/30/65/9780375703065.jpg'), + ('0345343697', 'Off For The Sweet Hereafter', 'https://images.isbndb.com/covers/36/97/9780345343697.jpg'), + ('0838434762', 'Horizontes: Cultura Y Literatura (Spanish Edition)', 'https://images.isbndb.com/covers/47/65/9780838434765.jpg'), + ('0838434754', 'Horizontes: Gramatica Y Conversacion', 'https://images.isbndb.com/covers/47/58/9780838434758.jpg'), + ('0136155596', 'Appleton-Cuyas Spanish English/English Spanish Dictionary', 'https://images.isbndb.com/covers/55/91/9780136155591.jpg'), + ('0553351672', 'Doomsday Book', 'https://images.isbndb.com/covers/16/75/9780553351675.jpg'), + ('0140065407', 'Imaginary Crimes (The Penguin Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/54/04/9780140065404.jpg'), + ('0449244288', 'Not A Penny More, Not A Penny Less', 'https://images.isbndb.com/covers/42/89/9780449244289.jpg'), + ('1573222127', 'Miracle At St. Anna', 'https://images.isbndb.com/covers/21/29/9781573222129.jpg'), + ('0451523326', 'Jane Eyre (Signet Classics)', 'https://images.isbndb.com/covers/33/27/9780451523327.jpg'), + ('3492224466', 'Lexikon Der Populären Irrtümer', 'https://images.isbndb.com/covers/44/68/9783492224468.jpg'), + ('0140434003', 'Jane Eyre (Penguin Classics)', 'https://images.isbndb.com/covers/40/02/9780140434002.jpg'), + ('0756401100', 'Sorcery Rising (Fool''s Gold, Book 1)', 'https://images.isbndb.com/covers/11/08/9780756401108.jpg'), + ('038079439X', 'Expendable (League Of Peoples, Bk. 1)', 'https://images.isbndb.com/covers/43/93/9780380794393.jpg'), + ('0553577905', 'Windhaven', 'https://images.isbndb.com/covers/79/07/9780553577907.jpg'), + ('0451402391', 'The Search For The Green River Killer', 'https://images.isbndb.com/covers/23/94/9780451402394.jpg'), + ('0395877334', 'The Lost Language Of Cranes', 'https://images.isbndb.com/covers/73/33/9780395877333.jpg'), + ('274670238X', 'Cousins Par Alliance : Les Allemands En Notre Miroir', 'https://images.isbndb.com/covers/23/87/9782746702387.jpg'), + ('084770176X', 'La Segunda Hija (Spanish Edition)', 'https://images.isbndb.com/covers/17/66/9780847701766.jpg'), + ('0671028820', 'Celtika (Merlin Codex, Book 1)', 'https://images.isbndb.com/covers/88/24/9780671028824.jpg'), + ('2070404722', 'Prisonniers Du Paradis', 'https://images.isbndb.com/covers/47/28/9782070404728.jpg'), + ('2070415066', 'Geai', 'https://images.isbndb.com/covers/50/69/9782070415069.jpg'), + ('2841722171', 'Après-demains : Cent Vues Imprenables Sur Le Futur', 'https://images.isbndb.com/covers/21/74/9782841722174.jpg'), + ('2266091328', 'Le Cercle Des Loups', 'https://images.isbndb.com/covers/13/29/9782266091329.jpg'), + ('2845950470', 'Poésies', 'https://images.isbndb.com/covers/04/74/9782845950474.jpg'), + ('0671447807', 'Tales Of Power', 'https://images.isbndb.com/covers/78/09/9780671447809.jpg'), + ('9684113404', 'Movimiento Perpetuo (Spanish Edition)', 'https://images.isbndb.com/covers/34/04/9789684113404.jpg'), + ('0679409041', 'Queen Of The Turtle Derby And Other Southern Phenomena', 'https://images.isbndb.com/covers/90/45/9780679409045.jpg'), + ('0316782653', 'The Dangerous Husband: A Novel', 'https://images.isbndb.com/covers/26/54/9780316782654.jpg'), + ('0525945814', 'Falling Angels: A Novel', 'https://images.isbndb.com/covers/58/19/9780525945819.jpg'), + ('0140141499', 'The Drowning Room', 'https://images.isbndb.com/covers/14/98/9780140141498.jpg'), + ('0684870053', 'In The Gloaming: Stories', 'https://images.isbndb.com/covers/00/52/9780684870052.jpg'), + ('0060934913', 'Kitchen Confidential: Adventures In The Culinary Underbelly', 'https://images.isbndb.com/covers/49/10/9780060934910.jpg'), + ('0375814116', 'Pure Dead Wicked', 'https://images.isbndb.com/covers/41/12/9780375814112.jpg'), + ('0899193625', 'The Beans Of Egypt, Maine', 'https://images.isbndb.com/covers/36/25/9780899193625.jpg'), + ('0060974486', 'Immortality', 'https://images.isbndb.com/covers/44/80/9780060974480.jpg'), + ('0679736042', 'Toujours Provence', 'https://images.isbndb.com/covers/60/42/9780679736042.jpg'), + ('0679441247', 'Encore Provence', 'https://images.isbndb.com/covers/12/43/9780679441243.jpg'), + ('1558177604', 'The Mutilators: From The Files Of True Detective Magazine (Pinnacle True Crime)', 'https://images.isbndb.com/covers/76/04/9781558177604.jpg'), + ('0156005891', 'Eden Close', 'https://images.isbndb.com/covers/58/90/9780156005890.jpg'), + ('084395258X', 'They Wear What Under Their Kilts?', 'https://images.isbndb.com/covers/25/82/9780843952582.jpg'), + ('076790592X', 'Tuesdays With Morrie: An Old Man, A Young Man, And Life''s Greatest Lesson', 'https://images.isbndb.com/covers/59/23/9780767905923.jpg'), + ('0394711920', 'Appointment In Samarra', 'https://images.isbndb.com/covers/19/28/9780394711928.jpg'), + ('0618526412', 'The Heart Is A Lonely Hunter (Oprah''s Book Club)', 'https://images.isbndb.com/covers/64/13/9780618526413.jpg'), + ('0380815591', 'The Mermaids Singing', 'https://images.isbndb.com/covers/55/93/9780380815593.jpg'), + ('0060652934', 'The Screwtape Letters', 'https://images.isbndb.com/covers/29/37/9780060652937.jpg'), + ('1841953814', '69 Things To Do With A Dead Princess', 'https://images.isbndb.com/covers/38/16/9781841953816.jpg'), + ('1582341427', 'The Heart Is Deceitful Above All Things', 'https://images.isbndb.com/covers/14/22/9781582341422.jpg'), + ('0375709231', 'Observatory Mansions: A Novel', 'https://images.isbndb.com/covers/92/34/9780375709234.jpg'), + ('0688174035', 'More Than You Know: A Novel', 'https://images.isbndb.com/covers/40/33/9780688174033.jpg'), + ('0618246967', 'The Best American Nonrequired Reading 2003 (The Best American Series)', 'https://images.isbndb.com/covers/69/60/9780618246960.jpg'), + ('0758206135', 'Liar, Liar', 'https://images.isbndb.com/covers/61/38/9780758206138.jpg'), + ('0763617229', 'The Tale Of Despereaux: Being The Story Of A Mouse, A Princess, Some Soup, And A Spool Of Thread', 'https://images.isbndb.com/covers/72/26/9780763617226.jpg'), + ('0670032891', 'The Well Of Lost Plots: A Thursday Next Novel', 'https://images.isbndb.com/covers/28/91/9780670032891.jpg'), + ('068480445X', 'The Short Stories Of F. Scott Fitzgerald: A New Collection', 'https://images.isbndb.com/covers/44/53/9780684804453.jpg'), + ('1931520003', 'Stranger Things Happen: Stories', 'https://images.isbndb.com/covers/00/03/9781931520003.jpg'), + ('0595149782', 'Runaways: America''s Lost Youth', 'https://images.isbndb.com/covers/97/80/9780595149780.jpg'), + ('0595193021', 'The Man Who Loved Funerals', 'https://images.isbndb.com/covers/30/28/9780595193028.jpg'), + ('0967986508', 'Mother Teresa, Called To Love', 'https://images.isbndb.com/covers/65/00/9780967986500.jpg'), + ('0449216411', 'Legacy', 'https://images.isbndb.com/covers/64/15/9780449216415.jpg'), + ('0330319477', 'Toujours Provence', 'https://images.isbndb.com/covers/94/78/9780330319478.jpg'), + ('0812504593', 'The House Of The Seven Gables (Tor Classics)', 'https://images.isbndb.com/covers/45/90/9780812504590.jpg'), + ('9500406977', 'Eso / It (Spanish Edition)', 'https://images.isbndb.com/covers/69/70/9789500406970.jpg'), + ('1551110652', 'Heart Of Darkness (Broadview Literary Texts)', 'https://images.isbndb.com/covers/06/53/9781551110653.jpg'), + ('0552997706', 'Telling Liddy Pb', 'https://images.isbndb.com/covers/77/06/9780552997706.jpg'), + ('3442449898', 'Manila', 'https://images.isbndb.com/covers/98/97/9783442449897.jpg'), + ('3453108191', 'Schwarzes Eis', 'https://images.isbndb.com/covers/81/96/9783453108196.jpg'), + ('3442067855', 'Diamanten - Dynastie. Roman.', 'https://images.isbndb.com/covers/78/55/9783442067855.jpg'), + ('3442092639', 'Im Schatten Der Götter', 'https://images.isbndb.com/covers/26/35/9783442092635.jpg'), + ('3612275232', 'Der Tote Ist Immer Der Butler', 'https://images.isbndb.com/covers/52/33/9783612275233.jpg'), + ('3784427855', 'Die Internet-Generation', 'https://images.isbndb.com/covers/78/50/9783784427850.jpg'), + ('0945990049', 'Car-Free In Boston: The Guide To Public Transit In Greater Boston & New England (9th Ed)', 'https://images.isbndb.com/covers/00/48/9780945990048.jpg'), + ('0898620600', 'Weight, Sex, And Marriage: A Delicate Balance', 'https://images.isbndb.com/covers/06/03/9780898620603.jpg'), + ('0380807939', 'A Season Beyond A Kiss', 'https://images.isbndb.com/covers/79/32/9780380807932.jpg'), + ('0446602736', 'Border Music', 'https://images.isbndb.com/covers/27/30/9780446602730.jpg'), + ('0425098400', 'Celestial Navigation', 'https://images.isbndb.com/covers/84/00/9780425098400.jpg'), + ('0449904075', 'Overcoming Overeating', 'https://images.isbndb.com/covers/40/77/9780449904077.jpg'), + ('0446360589', 'The Burden Of Proof', 'https://images.isbndb.com/covers/05/86/9780446360586.jpg'), + ('0385315090', 'Mirror Image', 'https://images.isbndb.com/covers/50/98/9780385315098.jpg'), + ('0385319606', 'Irresistible Forces', 'https://images.isbndb.com/covers/96/07/9780385319607.jpg'), + ('0385311923', 'Lightning', 'https://images.isbndb.com/covers/19/22/9780385311922.jpg'), + ('0440500729', 'Star', 'https://images.isbndb.com/covers/07/28/9780440500728.jpg'), + ('0385297661', 'Daddy', 'https://images.isbndb.com/covers/76/60/9780385297660.jpg'), + ('0385306024', 'Accident', 'https://images.isbndb.com/covers/60/27/9780385306027.jpg'), + ('0345362721', 'Peachtree Road', 'https://images.isbndb.com/covers/27/28/9780345362728.jpg'), + ('0446802204', 'Master Of The Game', 'https://images.isbndb.com/covers/22/08/9780446802208.jpg'), + ('0446329894', 'IF TOMORROW COMES', 'https://images.isbndb.com/covers/98/97/9780446329897.jpg'), + ('0399144587', 'Hush Money (Spenser Mystery)', 'https://images.isbndb.com/covers/45/85/9780399144585.jpg'), + ('0671639218', 'Black Market', 'https://images.isbndb.com/covers/92/11/9780671639211.jpg'), + ('0679420649', 'Degree Of Guilt', 'https://images.isbndb.com/covers/06/44/9780679420644.jpg'), + ('0786889551', 'The Pied Piper', 'https://images.isbndb.com/covers/95/56/9780786889556.jpg'), + ('0312923856', 'Probable Cause: When One Man''s Passion For Justice Becomes An Obsession For Revenge', 'https://images.isbndb.com/covers/38/53/9780312923853.jpg'), + ('0786889667', 'The First Victim', 'https://images.isbndb.com/covers/96/62/9780786889662.jpg'), + ('0804111111', 'True Colors', 'https://images.isbndb.com/covers/11/19/9780804111119.jpg'), + ('055327032X', 'First Born', 'https://images.isbndb.com/covers/03/27/9780553270327.jpg'), + ('0821762532', 'Out Of Nowhere', 'https://images.isbndb.com/covers/25/30/9780821762530.jpg'), + ('044023574X', 'After The Fire', 'https://images.isbndb.com/covers/57/43/9780440235743.jpg'), + ('0304328464', 'Positive Lives-- Responses To HIV: A Photodocumentary (The Cassell Aids Awareness)', 'https://images.isbndb.com/covers/84/68/9780304328468.jpg'), + ('0345379020', 'Ghost King (Stones Of Power)', 'https://images.isbndb.com/covers/90/23/9780345379023.jpg'), + ('0310235561', 'The Prodigy', 'https://images.isbndb.com/covers/55/69/9780310235569.jpg'), + ('0743458168', 'Science Fiction: The Best Of 2002 (Science Fiction: The Best Of ... (Quality))', 'https://images.isbndb.com/covers/81/60/9780743458160.jpg'), + ('1586606735', 'A Treasure Deep (Perry Sachs Mystery Series #1)', 'https://images.isbndb.com/covers/67/32/9781586606732.jpg'), + ('1578565677', 'False Positive', 'https://images.isbndb.com/covers/56/72/9781578565672.jpg'), + ('0452284201', 'The Prodigal Project: Book 1: Genesis', 'https://images.isbndb.com/covers/42/03/9780452284203.jpg'), + ('349223562X', 'Tödliche Lügen: Roman', 'https://images.isbndb.com/covers/56/24/9783492235624.jpg'), + ('2890199029', 'Sage Comme Une Image', 'https://images.isbndb.com/covers/90/26/9782890199026.jpg'), + ('1889195162', 'Most Art Sucks: Coagula Art Journal And The Art Of The 1990''s', 'https://images.isbndb.com/covers/51/62/9781889195162.jpg'), + ('1904132073', 'The End Of Gay: (And The Death Of Heterosexuality)', 'https://images.isbndb.com/covers/20/73/9781904132073.jpg'), + ('2070408450', 'Saga', 'https://images.isbndb.com/covers/84/50/9782070408450.jpg'), + ('0312972954', 'Faithful Unto Death: A Chief Inspector Barnaby Novel (Chief Inspector Barnaby Mysteries)', 'https://images.isbndb.com/covers/29/50/9780312972950.jpg'), + ('0912333634', 'Ballykissangel: A Sense Of Place', 'https://images.isbndb.com/covers/36/32/9780912333632.jpg'), + ('0786702141', 'The Mammoth Book Of Historical Detectives', 'https://images.isbndb.com/covers/21/45/9780786702145.jpg'), + ('0446520837', 'The $100,000 Club: How To Make A Six-Figure Income', 'https://images.isbndb.com/covers/08/36/9780446520836.jpg'), + ('0937966185', 'Inside Vacationland: New Fiction From The Real Maine, 1st Edition', 'https://images.isbndb.com/covers/61/81/9780937966181.jpg'), + ('0141312556', 'The Pearl (Puffin Classics)', 'https://images.isbndb.com/covers/25/52/9780141312552.jpg'), + ('9871138016', 'Cronica De Una Muerte Anunciada (Spanish Edition)', 'https://images.isbndb.com/covers/80/12/9789871138012.jpg'), + ('0374503486', 'Memoirs Of Hadrian', 'https://images.isbndb.com/covers/34/82/9780374503482.jpg'), + ('2040162097', 'XVIe Siècle : Les Grands Auteurs Français Du Programme - Anthologie Et Histoire Littéraire', 'https://images.isbndb.com/covers/20/92/9782040162092.jpg'), + ('2080700324', 'Colomba', 'https://images.isbndb.com/covers/03/22/9782080700322.jpg'), + ('051722108X', 'The Adventures Of Tom Sawyer (The Illus Children''s Library)', 'https://images.isbndb.com/covers/10/82/9780517221082.jpg'), + ('0762414197', 'Robinson Crusoe', 'https://images.isbndb.com/covers/41/92/9780762414192.jpg'), + ('0854963782', 'Silence Of The Sea / Le Silence De La Mer: A Novel Of French Resistance During The Second World War By ''Vercors''', 'https://images.isbndb.com/covers/37/82/9780854963782.jpg'), + ('225303939X', 'Horace', 'https://images.isbndb.com/covers/93/96/9782253039396.jpg'), + ('1840020830', 'Britannicus', 'https://images.isbndb.com/covers/08/30/9781840020830.jpg'), + ('0152008675', 'The Bomb', 'https://images.isbndb.com/covers/86/73/9780152008673.jpg'), + ('0762405449', 'Edgar Allan Poe Reader (Courage Literary Classics)', 'https://images.isbndb.com/covers/54/42/9780762405442.jpg'), + ('0140386351', 'A Girl Named Disaster', 'https://images.isbndb.com/covers/63/56/9780140386356.jpg'), + ('359650533X', 'Der Plan', 'https://images.isbndb.com/covers/53/33/9783596505333.jpg'), + ('067102325X', 'Virus Ground Zero: Stalking The Killer Viruses With The Centers For Disease Control', 'https://images.isbndb.com/covers/32/56/9780671023256.jpg'), + ('0812213238', 'Anatomy Of A Crusade, 1213-1221 (The Middle Ages Series)', 'https://images.isbndb.com/covers/32/32/9780812213232.jpg'), + ('0679729976', 'The Stories Of Vladimir Nabokov', 'https://images.isbndb.com/covers/99/76/9780679729976.jpg'), + ('1562055089', 'Actually Useful Internet Security Techniques', 'https://images.isbndb.com/covers/50/80/9781562055080.jpg'), + ('0830645519', 'Troubleshooting & Repairing PC Drives & Memory Systems', 'https://images.isbndb.com/covers/55/10/9780830645510.jpg'), + ('0933121539', 'Black Genealogy', 'https://images.isbndb.com/covers/15/39/9780933121539.jpg'), + ('0373078811', 'Mary''S Child (Whose Child?) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/88/13/9780373078813.jpg'), + ('0373763808', 'In Bed With The Boss''S Daughter (Desire, 1380)', 'https://images.isbndb.com/covers/38/01/9780373763801.jpg'), + ('0452261457', 'The Making Of The African Queen', 'https://images.isbndb.com/covers/14/57/9780452261457.jpg'), + ('002031275X', 'TOLKIEN: The Illustrated Encyclopaedia', 'https://images.isbndb.com/covers/27/58/9780020312758.jpg'), + ('1565843525', 'Ethics: Subjectivity And Truth (Essential Works Of Foucault, 1954-1984, Vol. 1)', 'https://images.isbndb.com/covers/35/23/9781565843523.jpg'), + ('0140143459', 'Liar''s Poker: Rising Through The Wreckage On Wall Street', 'https://images.isbndb.com/covers/34/54/9780140143454.jpg'), + ('0864693257', 'Masculinities In Aotearoa/New Zealand', 'https://images.isbndb.com/covers/32/59/9780864693259.jpg'), + ('0070212147', 'Modern Epistemology: A New Introduction', 'https://images.isbndb.com/covers/21/45/9780070212145.jpg'), + ('0192853902', 'Judaism: A Very Short Introduction (Very Short Introductions)', 'https://images.isbndb.com/covers/39/05/9780192853905.jpg'), + ('0553580221', 'False Memory', 'https://images.isbndb.com/covers/02/28/9780553580228.jpg'), + ('0140442758', 'Phaedrus And Letters VII And VIII (Penguin Classics)', 'https://images.isbndb.com/covers/27/55/9780140442755.jpg'), + ('0679781358', 'The Hottest State: A Novel', 'https://images.isbndb.com/covers/13/56/9780679781356.jpg'), + ('0664246915', 'Situation Ethics: The New Morality', 'https://images.isbndb.com/covers/69/14/9780664246914.jpg'), + ('1879960400', 'Junglee Girl', 'https://images.isbndb.com/covers/04/04/9781879960404.jpg'), + ('0345370430', 'The Ruby Knight (Book Two Of The Elenium)', 'https://images.isbndb.com/covers/04/33/9780345370433.jpg'), + ('0553272616', 'The Unloved', 'https://images.isbndb.com/covers/26/11/9780553272611.jpg'), + ('1570621608', 'When Things Fall Apart: Heart Advice For Difficult Times', 'https://images.isbndb.com/covers/16/04/9781570621604.jpg'), + ('0743427084', 'How To Practice : The Way To A Meaningful Life', 'https://images.isbndb.com/covers/70/81/9780743427081.jpg'), + ('0712610847', 'The Buddhist Vision: Introduction To The Theory And Practice', 'https://images.isbndb.com/covers/08/41/9780712610841.jpg'), + ('1888375051', 'A Pebble For Your Pocket', 'https://images.isbndb.com/covers/50/53/9781888375053.jpg'), + ('0385492677', 'The Accidental Buddhist', 'https://images.isbndb.com/covers/26/76/9780385492676.jpg'), + ('0937938874', 'Open Heart, Clear Mind', 'https://images.isbndb.com/covers/88/74/9780937938874.jpg'), + ('0671039016', 'The Computer Connection', 'https://images.isbndb.com/covers/90/11/9780671039011.jpg'), + ('0020178506', 'Half A Life', 'https://images.isbndb.com/covers/85/07/9780020178507.jpg'), + ('0020198507', 'World Soul', 'https://images.isbndb.com/covers/85/05/9780020198505.jpg'), + ('068419001X', 'At Death''s Door', 'https://images.isbndb.com/covers/00/13/9780684190013.jpg'), + ('0140126422', 'Post No Bonds', 'https://images.isbndb.com/covers/64/26/9780140126426.jpg'), + ('0440162645', 'The Nantucket Diet Murders (Eugenia Potter Mysteries)', 'https://images.isbndb.com/covers/26/43/9780440162643.jpg'), + ('0450017095', 'Lord Peter Views The Body', 'https://images.isbndb.com/covers/70/94/9780450017094.jpg'), + ('0892965258', 'Wolf In The Shadows (A Sharon Mccone Mystery)', 'https://images.isbndb.com/covers/52/50/9780892965250.jpg'), + ('0140147381', 'The Very Last Gambado (Lovejoy Mystery)', 'https://images.isbndb.com/covers/73/84/9780140147384.jpg'), + ('0345333810', 'No Word From Winifred (Kate Fansler Novels)', 'https://images.isbndb.com/covers/38/10/9780345333810.jpg'), + ('0930031091', 'Automotive History Of Lucky Ke', 'https://images.isbndb.com/covers/10/91/9780930031091.jpg'), + ('0684814161', 'Eating Chinese Food Naked: A Novel', 'https://images.isbndb.com/covers/41/62/9780684814162.jpg'), + ('0671734601', 'The King Is Dead: A Samantha Adams Mystery', 'https://images.isbndb.com/covers/46/02/9780671734602.jpg'), + ('0449212750', 'Murder In The CIA (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/27/52/9780449212752.jpg'), + ('0425127230', 'Stardust (Spenser)', 'https://images.isbndb.com/covers/72/30/9780425127230.jpg'), + ('0451155580', 'Once On A Time (Signet)', 'https://images.isbndb.com/covers/55/80/9780451155580.jpg'), + ('0671884298', 'A Little Yellow Dog: An Easy Rawlins Mystery', 'https://images.isbndb.com/covers/42/91/9780671884291.jpg'), + ('0804108862', 'A Slipping-Down Life', 'https://images.isbndb.com/covers/88/67/9780804108867.jpg'), + ('0399139087', 'Second Nature', 'https://images.isbndb.com/covers/90/86/9780399139086.jpg'), + ('0385304374', 'All Our Yesterdays', 'https://images.isbndb.com/covers/43/75/9780385304375.jpg'), + ('0679438793', 'The Hippopotamus', 'https://images.isbndb.com/covers/87/93/9780679438793.jpg'), + ('0915801418', 'Entering Infinity', 'https://images.isbndb.com/covers/14/11/9780915801411.jpg'), + ('1559390476', 'Buddhism Through American Women''s Eyes', 'https://images.isbndb.com/covers/04/77/9781559390477.jpg'), + ('0064471047', 'The Lion, The Witch, And The Wardrobe (The Chronicles Of Narnia, Book 2)', 'https://images.isbndb.com/covers/10/46/9780064471046.jpg'), + ('0345441184', 'The Mists Of Avalon', 'https://images.isbndb.com/covers/11/88/9780345441188.jpg'), + ('0330491482', 'Whatever You Want', 'https://images.isbndb.com/covers/14/88/9780330491488.jpg'), + ('0767904141', 'Close To Shore: The Terrifying Shark Attacks Of 1916', 'https://images.isbndb.com/covers/41/48/9780767904148.jpg'), + ('0786868430', 'Madam Secretary: A Memoir', 'https://images.isbndb.com/covers/84/38/9780786868438.jpg'), + ('0394711556', 'Alone Of All Her Sex: The Myth And The Cult Of The Virgin Mary', 'https://images.isbndb.com/covers/15/53/9780394711553.jpg'), + ('2842190009', 'La Petite écuyère A Cafté', 'https://images.isbndb.com/covers/00/02/9782842190002.jpg'), + ('0060191538', 'Perfect Murder, Perfect Town: JonBenet And The City Of Boulder', 'https://images.isbndb.com/covers/15/35/9780060191535.jpg'), + ('0060191341', 'RealAge: Are You As Young As You Can Be?', 'https://images.isbndb.com/covers/13/44/9780060191344.jpg'), + ('0425166929', 'One Last Time: A Psychic Medium Speaks To Those We Have Loved And Lost', 'https://images.isbndb.com/covers/69/25/9780425166925.jpg'), + ('0425104044', 'The Gold''s Gym Weight Training Book', 'https://images.isbndb.com/covers/40/40/9780425104040.jpg'), + ('051509479X', 'What You Think Of Me Is None Of My Business', 'https://images.isbndb.com/covers/47/94/9780515094794.jpg'), + ('0312958129', 'Coming Home', 'https://images.isbndb.com/covers/81/21/9780312958121.jpg'), + ('0385336314', 'Dating Game', 'https://images.isbndb.com/covers/63/14/9780385336314.jpg'), + ('1891620452', 'Fortress America: The American Military And The Consequences Of Peace', 'https://images.isbndb.com/covers/04/54/9781891620454.jpg'), + ('0590477331', 'Mr Popper''s Penguins', 'https://images.isbndb.com/covers/73/38/9780590477338.jpg'), + ('3530267147', 'Die Götter Der Erde', 'https://images.isbndb.com/covers/71/43/9783530267143.jpg'), + ('3150000254', 'Das Fräulein Von Scuderi', 'https://images.isbndb.com/covers/02/50/9783150000250.jpg'), + ('3518100122', 'Tractatus Logico-philosophicus: Logisch-philosophische Abhandlung (edition Suhrkamp)', 'https://images.isbndb.com/covers/01/27/9783518100127.jpg'), + ('3518380338', 'Korrektur: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/03/38/9783518380338.jpg'), + ('074930152X', 'A Woman Named Jackie', 'https://images.isbndb.com/covers/15/21/9780749301521.jpg'), + ('3257232543', 'Doping. Roman', 'https://images.isbndb.com/covers/25/47/9783257232547.jpg'), + ('0140621466', 'The Water Babies', 'https://images.isbndb.com/covers/14/64/9780140621464.jpg'), + ('0345368754', 'Foucault''s Pendulum', 'https://images.isbndb.com/covers/87/51/9780345368751.jpg'), + ('3492260640', 'Zuflucht Im Teehaus: Roman', 'https://images.isbndb.com/covers/06/40/9783492260640.jpg'), + ('3627001028', 'Das Beste, Was Einem Croissant Passieren Kann', 'https://images.isbndb.com/covers/10/25/9783627001025.jpg'), + ('0553213164', 'Anne Of Windy Poplars (Anne Of Green Gables)', 'https://images.isbndb.com/covers/31/64/9780553213164.jpg'), + ('0446603929', 'See How They Run', 'https://images.isbndb.com/covers/39/28/9780446603928.jpg'), + ('067189787X', 'We Did It, Tara (The Paxton Cheerleaders #4)', 'https://images.isbndb.com/covers/78/71/9780671897871.jpg'), + ('0440431476', 'Active Enzyme Lemon-Freshened Junior High School Witch', 'https://images.isbndb.com/covers/14/73/9780440431473.jpg'), + ('0553213180', 'Anne''s House Of Dreams (Anne Of Green Gables, No. 5)', 'https://images.isbndb.com/covers/31/88/9780553213188.jpg'), + ('0061067318', 'Class Trip', 'https://images.isbndb.com/covers/73/10/9780061067310.jpg'), + ('037316243X', 'Party Of Two (American Romance)', 'https://images.isbndb.com/covers/24/37/9780373162437.jpg'), + ('0671745085', 'ROAD TO NOWHERE', 'https://images.isbndb.com/covers/50/80/9780671745080.jpg'), + ('014032724X', 'Hatchet', 'https://images.isbndb.com/covers/72/43/9780140327243.jpg'), + ('0312155204', 'El Sid: Saint Vicious', 'https://images.isbndb.com/covers/52/09/9780312155209.jpg'), + ('1569470170', 'Outsider In Amsterdam (Grijpstra & De Gier Mystery)', 'https://images.isbndb.com/covers/01/76/9781569470176.jpg'), + ('0440177049', 'Season Of Passion', 'https://images.isbndb.com/covers/70/43/9780440177043.jpg'), + ('0451528670', 'What To Listen For In Music', 'https://images.isbndb.com/covers/86/74/9780451528674.jpg'), + ('074347502X', 'Exploring The Matrix: Visions Of The Cyber Future', 'https://images.isbndb.com/covers/50/20/9780743475020.jpg'), + ('0590434616', 'The Dollhouse Murders', 'https://images.isbndb.com/covers/46/14/9780590434614.jpg'), + ('0812551702', 'Heartlight', 'https://images.isbndb.com/covers/17/09/9780812551709.jpg'), + ('0812551699', 'The Merlin Effect', 'https://images.isbndb.com/covers/16/93/9780812551693.jpg'), + ('0812536541', 'The Ancient One', 'https://images.isbndb.com/covers/65/46/9780812536546.jpg'), + ('0446518581', 'Border Music', 'https://images.isbndb.com/covers/85/81/9780446518581.jpg'), + ('0971181802', 'E-Wally And The Quest (Adventures Of E-Wally)', 'https://images.isbndb.com/covers/18/09/9780971181809.jpg'), + ('0380712040', 'Black Cherry Blues: A Dave Robicheaux Novel', 'https://images.isbndb.com/covers/20/45/9780380712045.jpg'), + ('0752837648', 'Lost Boy', 'https://images.isbndb.com/covers/76/42/9780752837642.jpg'), + ('0743225724', 'Good Harbor: A Novel', 'https://images.isbndb.com/covers/57/24/9780743225724.jpg'), + ('0553562401', 'Cry Of The Hawk: The Plainsmen (Scout)', 'https://images.isbndb.com/covers/24/08/9780553562408.jpg'), + ('0451523873', 'Madame Bovary (Signet Classics)', 'https://images.isbndb.com/covers/38/77/9780451523877.jpg'), + ('0553202960', 'Coming Currency Collapse', 'https://images.isbndb.com/covers/29/60/9780553202960.jpg'), + ('0060806389', 'She Shall Have Murder (Perennial Library, P638)', 'https://images.isbndb.com/covers/63/85/9780060806385.jpg'), + ('0553235605', 'The 13th Valley', 'https://images.isbndb.com/covers/56/09/9780553235609.jpg'), + ('0449243141', 'Restoring The American Dream', 'https://images.isbndb.com/covers/31/45/9780449243145.jpg'), + ('0553561057', 'Green Shadows, White Whale', 'https://images.isbndb.com/covers/10/50/9780553561050.jpg'), + ('0816627770', 'Starting And Running A Nonprofit Organization', 'https://images.isbndb.com/covers/77/76/9780816627776.jpg'), + ('0804461406', 'Discourse On Free Will (Milestones Of Thought)', 'https://images.isbndb.com/covers/14/05/9780804461405.jpg'), + ('0375756981', 'The Vagina Monologues: The V-Day Edition', 'https://images.isbndb.com/covers/69/86/9780375756986.jpg'), + ('068486729X', 'One Good Turn: A Natural History Of The Screwdriver And The Screw', 'https://images.isbndb.com/covers/72/98/9780684867298.jpg'), + ('0440504589', 'Migraine: The Complete Guide', 'https://images.isbndb.com/covers/45/80/9780440504580.jpg'), + ('0195014766', 'The Art Of War', 'https://images.isbndb.com/covers/47/61/9780195014761.jpg'), + ('0140440372', 'THE LAST DAYS OF SOCRATES', 'https://images.isbndb.com/covers/03/79/9780140440379.jpg'), + ('0844237809', 'Better Handwriting (Teach Yourself Series)', 'https://images.isbndb.com/covers/78/00/9780844237800.jpg'), + ('0394717023', 'The Hindu Tradition: Readings In Oriental Thought', 'https://images.isbndb.com/covers/70/29/9780394717029.jpg'), + ('0140442014', 'The Social Contract (Penguin Classics)', 'https://images.isbndb.com/covers/20/14/9780140442014.jpg'), + ('0765307596', 'Eastern Standard Tribe', 'https://images.isbndb.com/covers/75/90/9780765307590.jpg'), + ('0140258795', 'Longitude: The True Story Of A Lone Genius Who Solved The Greatest Scientific Problem Of His Time', 'https://images.isbndb.com/covers/87/90/9780140258790.jpg'), + ('0965063992', 'Oxford One-Volume Illustrated Encyclopedia', 'https://images.isbndb.com/covers/39/99/9780965063999.jpg'), + ('0898799767', 'Writer''s Digest Flip Dictionary', 'https://images.isbndb.com/covers/97/67/9780898799767.jpg'), + ('0812059379', 'Barron''s Student''s Concise Encyclopedia', 'https://images.isbndb.com/covers/93/73/9780812059373.jpg'), + ('0671850148', 'The New York Public Library Desk Reference, Second Edition', 'https://images.isbndb.com/covers/01/42/9780671850142.jpg'), + ('1559702141', 'Dictionary Of Word Origins: Histories Of More Than 8,000 English-Language Words', 'https://images.isbndb.com/covers/21/40/9781559702140.jpg'), + ('0395893380', 'The Big Book Of Beastly Mispronunciations : The Complete Opinionated Guide For The Careful Speaker', 'https://images.isbndb.com/covers/33/88/9780395893388.jpg'), + ('0060915765', 'Writing To Learn, 1st, First Edition', 'https://images.isbndb.com/covers/57/66/9780060915766.jpg'), + ('0380713926', 'The New Comprehensive American Rhyming Dictionary', 'https://images.isbndb.com/covers/39/29/9780380713929.jpg'), + ('0425117693', 'Roget''s II: The New Thesaurus', 'https://images.isbndb.com/covers/76/99/9780425117699.jpg'), + ('0877799156', 'The Official Scrabble Players Dictionary (Third Edition)', 'https://images.isbndb.com/covers/91/53/9780877799153.jpg'), + ('0804113491', 'The Random House Crossword Puzzle Dictionary', 'https://images.isbndb.com/covers/34/96/9780804113496.jpg'), + ('0521456932', 'Editing Fact And Fiction: A Concise Guide To Book Editing', 'https://images.isbndb.com/covers/69/37/9780521456937.jpg'), + ('0020474105', 'The Elements Of Editing: A Modern Guide For Editors And Journalists', 'https://images.isbndb.com/covers/41/04/9780020474104.jpg'), + ('0020154402', 'The Elements Of Grammar', 'https://images.isbndb.com/covers/44/02/9780020154402.jpg'), + ('0024182001', 'The Elements Of Style (with Index)', 'https://images.isbndb.com/covers/20/05/9780024182005.jpg'), + ('0312894708', 'Writing From Sources', 'https://images.isbndb.com/covers/47/02/9780312894702.jpg'), + ('0393320553', 'The Writer On Her Work, Volume 1', 'https://images.isbndb.com/covers/05/58/9780393320558.jpg'), + ('0226899152', 'Style: Toward Clarity And Grace (Chicago Guides To Writing, Editing, And Publishing)', 'https://images.isbndb.com/covers/91/52/9780226899152.jpg'), + ('0898794080', 'Handbook Of Magazine Article Writing', 'https://images.isbndb.com/covers/40/83/9780898794083.jpg'), + ('0062735233', 'On Writing Well: The Classic Guide To Writing Nonfiction', 'https://images.isbndb.com/covers/52/32/9780062735232.jpg'), + ('0596005059', '.Net Framework Essentials', 'https://images.isbndb.com/covers/50/54/9780596005054.jpg'), + ('0312422547', 'The Language Of Passion: Selected Commentary', 'https://images.isbndb.com/covers/25/47/9780312422547.jpg'), + ('067972754X', 'Dictionary Of The Khazars: A Lexicon Novel In 100,000 Words', 'https://images.isbndb.com/covers/75/45/9780679727545.jpg'), + ('0735619255', 'MCAD/MCSD Self-Paced Training Kit: Microsoft (2nd Edition) .NET Core Requirements, Exams 70-305, 70-315, 70-306, 70-316, 70-310, 70-320, And 70-300 Box Vol. Set', 'https://images.isbndb.com/covers/92/58/9780735619258.jpg'), + ('0596004893', 'Programming C#, Third Edition', 'https://images.isbndb.com/covers/48/97/9780596004897.jpg'), + ('0679727299', 'The Annotated Lolita: Revised And Updated', 'https://images.isbndb.com/covers/72/93/9780679727293.jpg'), + ('1400062535', 'The Best Of Gourmet: Featuring The Flavors Of Rome', 'https://images.isbndb.com/covers/25/39/9781400062539.jpg'), + ('0345464869', 'Saving Dinner: The Menus, Recipes, And Shopping Lists To Bring Your Family Back To The Table', 'https://images.isbndb.com/covers/48/66/9780345464866.jpg'), + ('0393051404', 'Monster Of God: The Man-Eating Predator In The Jungles Of History And The Mind', 'https://images.isbndb.com/covers/14/07/9780393051407.jpg'), + ('0385500696', 'The Fortress Of Solitude: A Novel', 'https://images.isbndb.com/covers/06/92/9780385500692.jpg'), + ('0898798736', 'The Writer''s Idea Book', 'https://images.isbndb.com/covers/87/39/9780898798739.jpg'), + ('0673522946', 'Technical Writing', 'https://images.isbndb.com/covers/29/48/9780673522948.jpg'), + ('0312203632', 'Sleeping Dogs Don''t Lay: Practical Advice For The Grammatically Challenged', 'https://images.isbndb.com/covers/36/34/9780312203634.jpg'), + ('0151003718', 'Words Fail Me: What Everyone Who Writes Should Know About Writing', 'https://images.isbndb.com/covers/37/16/9780151003716.jpg'), + ('0385509472', 'Diary: A Novel', 'https://images.isbndb.com/covers/94/73/9780385509473.jpg'), + ('0060988649', 'Lost: A Novel', 'https://images.isbndb.com/covers/86/47/9780060988647.jpg'), + ('0380725711', 'Say You Love Me (Malory, No. 5)', 'https://images.isbndb.com/covers/57/17/9780380725717.jpg'), + ('0380812959', 'Destiny: Book Three Of The Blending Enthroned', 'https://images.isbndb.com/covers/29/50/9780380812950.jpg'), + ('0061056278', 'Broken Blade (The Rune Blade Trilogy, Book 3)', 'https://images.isbndb.com/covers/62/77/9780061056277.jpg'), + ('0380788101', 'Betrayals (The Blending, Book 4)', 'https://images.isbndb.com/covers/81/01/9780380788101.jpg'), + ('0061056286', 'The Western King (The Rune Blade Trilogy, Book 2)', 'https://images.isbndb.com/covers/62/84/9780061056284.jpg'), + ('0380784157', 'Competitions (The Blending, Book 2)', 'https://images.isbndb.com/covers/41/58/9780380784158.jpg'), + ('0380788098', 'Challenges: Book Three Of The Blending', 'https://images.isbndb.com/covers/80/95/9780380788095.jpg'), + ('0671319930', 'Sidhe-Devil', 'https://images.isbndb.com/covers/99/39/9780671319939.jpg'), + ('0743471547', 'The Course Of Empire', 'https://images.isbndb.com/covers/15/41/9780743471541.jpg'), + ('0345392477', 'The Shaman (The Star Stone, Book 1)', 'https://images.isbndb.com/covers/24/73/9780345392473.jpg'), + ('0808572407', 'The Wishsong Of Shannara (Turtleback School & Library Binding Edition) (The Sword Of Shannara)', 'https://images.isbndb.com/covers/24/04/9780808572404.jpg'), + ('0595256368', 'Rhaeva', 'https://images.isbndb.com/covers/63/65/9780595256365.jpg'), + ('0425076490', '11 Harrowhouse', 'https://images.isbndb.com/covers/64/91/9780425076491.jpg'), + ('0061099708', 'Colony', 'https://images.isbndb.com/covers/97/00/9780061099700.jpg'), + ('0425182886', 'Potshot (Spenser)', 'https://images.isbndb.com/covers/28/88/9780425182888.jpg'), + ('0425179559', 'Hugger Mugger (Spenser)', 'https://images.isbndb.com/covers/95/50/9780425179550.jpg'), + ('0425174018', 'Hush Money (Spenser Mysteries)', 'https://images.isbndb.com/covers/40/12/9780425174012.jpg'), + ('0425157474', 'Chance (Spenser)', 'https://images.isbndb.com/covers/74/73/9780425157473.jpg'), + ('0425152901', 'Thin Air (Spenser)', 'https://images.isbndb.com/covers/29/04/9780425152904.jpg'), + ('0425147746', 'Walking Shadow (Spenser)', 'https://images.isbndb.com/covers/77/40/9780425147740.jpg'), + ('0425141551', 'Paper Doll (Spenser)', 'https://images.isbndb.com/covers/15/57/9780425141557.jpg'), + ('0425137937', 'Double Deuce (Spenser)', 'https://images.isbndb.com/covers/79/32/9780425137932.jpg'), + ('0425132935', 'Pastime (Spenser)', 'https://images.isbndb.com/covers/29/37/9780425132937.jpg'), + ('0425120015', 'Playmates (Spenser, No 16)', 'https://images.isbndb.com/covers/00/19/9780425120019.jpg'), + ('0440200040', 'Pale Kings And Princes (Spenser, No 14)', 'https://images.isbndb.com/covers/00/48/9780440200048.jpg'), + ('0440188415', 'Taming A Seahorse', 'https://images.isbndb.com/covers/84/14/9780440188414.jpg'), + ('0440111323', 'A Catskill Eagle (Spenser, Book 12)', 'https://images.isbndb.com/covers/13/20/9780440111320.jpg'), + ('0440195357', 'The Widening Gyre (Spenser Novels (Dell))', 'https://images.isbndb.com/covers/53/51/9780440195351.jpg'), + ('0440109930', 'Ceremony (Spenser Novels (Dell))', 'https://images.isbndb.com/covers/99/38/9780440109938.jpg'), + ('0440180953', 'A Savage Place', 'https://images.isbndb.com/covers/09/51/9780440180951.jpg'), + ('0440122147', 'Early Autumn', 'https://images.isbndb.com/covers/21/42/9780440122142.jpg'), + ('0440153166', 'Looking For Rachel Wallace', 'https://images.isbndb.com/covers/31/60/9780440153160.jpg'), + ('0671853864', 'Cow And Cow Parsley', 'https://images.isbndb.com/covers/38/60/9780671853860.jpg'), + ('0340750626', 'The Evidence Exposed', 'https://images.isbndb.com/covers/06/29/9780340750629.jpg'), + ('0440171970', 'Promised Land (A Spenser Novel)', 'https://images.isbndb.com/covers/19/73/9780440171973.jpg'), + ('0440157587', 'Mortal Stakes', 'https://images.isbndb.com/covers/75/88/9780440157588.jpg'), + ('0440129613', 'The Godwulf Manuscript', 'https://images.isbndb.com/covers/96/15/9780440129615.jpg'), + ('0874770475', 'The Apartment Farmer', 'https://images.isbndb.com/covers/04/76/9780874770476.jpg'), + ('0874770351', 'Postage Stamp Garden Book: How To Grow All The Food You Can Eat In Very Little Space', 'https://images.isbndb.com/covers/03/53/9780874770353.jpg'), + ('0917102258', 'All About Tomatoes', 'https://images.isbndb.com/covers/22/57/9780917102257.jpg'), + ('0878570950', 'The City People''s Book Of Raising Food', 'https://images.isbndb.com/covers/09/59/9780878570959.jpg'), + ('0812911520', 'New York Times Practical Traveler', 'https://images.isbndb.com/covers/15/27/9780812911527.jpg'), + ('0449215156', 'Mrs. Pollifax And The Golden Triangle', 'https://images.isbndb.com/covers/51/59/9780449215159.jpg'), + ('189400406X', 'When Do You Let The Animals Out?: A Field Guide To Rocky Mountain Humour', 'https://images.isbndb.com/covers/40/60/9781894004060.jpg'), + ('3746618363', 'Solange Du Da Bist: Roman', 'https://images.isbndb.com/covers/83/64/9783746618364.jpg'), + ('9722014862', 'Peregrinacao De Barnabe Das Indias: Romance (Coleccao Autores De Lingua Portuguesa) (Portuguese Edition)', 'https://images.isbndb.com/covers/48/61/9789722014861.jpg'), + ('345319926X', 'Unterland.', 'https://images.isbndb.com/covers/92/62/9783453199262.jpg'), + ('0451143752', 'Confessional', 'https://images.isbndb.com/covers/37/54/9780451143754.jpg'), + ('0670842702', 'The Gates Of Ivory', 'https://images.isbndb.com/covers/27/04/9780670842704.jpg'), + ('0140178260', 'Salaryman', 'https://images.isbndb.com/covers/82/65/9780140178265.jpg'), + ('0375758208', 'An Obvious Enchantment: A Novel', 'https://images.isbndb.com/covers/82/01/9780375758201.jpg'), + ('0385302304', 'Outlander', 'https://images.isbndb.com/covers/23/02/9780385302302.jpg'), + ('0375726241', 'Gob''s Grief: A Novel', 'https://images.isbndb.com/covers/62/48/9780375726248.jpg'), + ('344245073X', 'Streifzüge Durch Das Abendland: Europa Für Anfänger Und Fortgeschrittene', 'https://images.isbndb.com/covers/07/32/9783442450732.jpg'), + ('0515117234', 'Wild Horses', 'https://images.isbndb.com/covers/72/33/9780515117233.jpg'), + ('0805062858', 'Headlong: A Novel', 'https://images.isbndb.com/covers/28/54/9780805062854.jpg'), + ('0451158237', 'The Fountainhead', 'https://images.isbndb.com/covers/82/39/9780451158239.jpg'), + ('0393045986', 'Fearless Girls, Wise Women, And Beloved Sisters: Heroines In Folktales From Around The World', 'https://images.isbndb.com/covers/59/87/9780393045987.jpg'), + ('0452281881', 'E', 'https://images.isbndb.com/covers/18/82/9780452281882.jpg'), + ('0300029691', 'Picture Bride (Yale Series Of Younger Poets)', 'https://images.isbndb.com/covers/96/97/9780300029697.jpg'), + ('1555971148', 'The Graywolf Annual Five: Multi-Cultural Literacy (1-2, 4, 6-<8>: The Graywolf Short Fiction Series) (No.5)', 'https://images.isbndb.com/covers/11/44/9781555971144.jpg'), + ('0060163747', 'Return To Love: Reflections On The Principles Of A Course In Miracles', 'https://images.isbndb.com/covers/37/47/9780060163747.jpg'), + ('0553081209', 'Women''s Bodies, Women''s Wisdom', 'https://images.isbndb.com/covers/12/06/9780553081206.jpg'), + ('0684195488', 'Accordion Crimes', 'https://images.isbndb.com/covers/54/83/9780684195483.jpg'), + ('0931122422', 'The Death Of Long Steam Lady', 'https://images.isbndb.com/covers/24/22/9780931122422.jpg'), + ('0941831930', 'Men, Women And Relationships: Making Peace With The Opposite Sex', 'https://images.isbndb.com/covers/19/32/9780941831932.jpg'), + ('0446518425', 'Second Sight', 'https://images.isbndb.com/covers/84/20/9780446518420.jpg'), + ('9711004143', 'Squatters'' Rites', 'https://images.isbndb.com/covers/41/49/9789711004149.jpg'), + ('0932194400', 'Healing The Child Within: Discovery And Recovery For Adult Children Of Dysfunctional Families', 'https://images.isbndb.com/covers/44/04/9780932194404.jpg'), + ('0060961724', 'Her Wits About Her: Self-Defense Success Stories By Women', 'https://images.isbndb.com/covers/17/25/9780060961725.jpg'), + ('0140444300', 'Les Miserables (Penguin Classics)', 'https://images.isbndb.com/covers/43/08/9780140444308.jpg'), + ('0930377001', 'Linking Our Lives: Chinese American Women Of Los Angeles', 'https://images.isbndb.com/covers/70/07/9780930377007.jpg'), + ('0295968265', 'Fifth Chinese Daughter', 'https://images.isbndb.com/covers/82/61/9780295968261.jpg'), + ('0520007840', 'French Symbolist Poetry, Bilingual Edition (CAL 21)', 'https://images.isbndb.com/covers/78/40/9780520007840.jpg'), + ('039330678X', 'Every Person''s Life Is Worth A Novel', 'https://images.isbndb.com/covers/67/81/9780393306781.jpg'), + ('0312062346', 'The House Of Mirth (Case Studies In Contemporary Criticism)', 'https://images.isbndb.com/covers/23/47/9780312062347.jpg'), + ('0440220424', 'Having Our Say: The Delany Sisters'' First 100 Years', 'https://images.isbndb.com/covers/04/28/9780440220428.jpg'), + ('0679405135', 'Babel Tower', 'https://images.isbndb.com/covers/51/39/9780679405139.jpg'), + ('0060179228', 'River Of Darkness: A Novel Of Suspense', 'https://images.isbndb.com/covers/92/29/9780060179229.jpg'), + ('1557982414', 'Publication Manual Of The American Psychological Association', 'https://images.isbndb.com/covers/24/14/9781557982414.jpg'), + ('074321689X', 'Call Me Crazy: A Memoir (Lisa Drew Books)', 'https://images.isbndb.com/covers/68/90/9780743216890.jpg'), + ('0553057758', 'Skinny Legs And All', 'https://images.isbndb.com/covers/77/51/9780553057751.jpg'), + ('0060176873', 'Love, Again', 'https://images.isbndb.com/covers/68/77/9780060176877.jpg'), + ('0151255946', 'The Diary Of Anais Nin, Vol. 6: 1955-1966', 'https://images.isbndb.com/covers/59/48/9780151255948.jpg'), + ('0913175145', 'Seventeen Syllables And Other Stories', 'https://images.isbndb.com/covers/51/49/9780913175149.jpg'), + ('0871134799', 'Suicide Blonde', 'https://images.isbndb.com/covers/47/90/9780871134790.jpg'), + ('0060168536', 'The Real Thing: Stories And Sketches', 'https://images.isbndb.com/covers/85/37/9780060168537.jpg'), + ('0060149426', 'Touchstones: Letters Between Two Women, 1953-1964', 'https://images.isbndb.com/covers/94/20/9780060149420.jpg'), + ('0689817851', 'Go Ask Alice', 'https://images.isbndb.com/covers/78/54/9780689817854.jpg'), + ('044920846X', 'Love', 'https://images.isbndb.com/covers/84/65/9780449208465.jpg'), + ('0935710019', 'Awaken The Genius In Your Child', 'https://images.isbndb.com/covers/00/14/9780935710014.jpg'), + ('0807059056', 'Making Waves - An Anthology Of Writings By And About Asian American Women', 'https://images.isbndb.com/covers/90/50/9780807059050.jpg'), + ('0679723285', 'China Men', 'https://images.isbndb.com/covers/32/88/9780679723288.jpg'), + ('1561385751', 'Wonderplay', 'https://images.isbndb.com/covers/57/51/9781561385751.jpg'), + ('0140181997', 'Fantasia Of The Unconscious And Psychoanalysis And The Unconscious (Penguin Twentieth Century Classics)', 'https://images.isbndb.com/covers/19/99/9780140181999.jpg'), + ('0966691911', 'Virtual Memories (The Serena Wilcox Mysteries)', 'https://images.isbndb.com/covers/19/17/9780966691917.jpg'), + ('0970335555', 'You Shall Know Our Velocity', 'https://images.isbndb.com/covers/55/55/9780970335555.jpg'), + ('0755310721', 'The Kindness Of Strangers: The Autobiography', 'https://images.isbndb.com/covers/07/22/9780755310722.jpg'), + ('0553572431', 'Terminal Games: A Cyberthriller', 'https://images.isbndb.com/covers/24/38/9780553572438.jpg'), + ('0812549082', 'Mainline', 'https://images.isbndb.com/covers/90/89/9780812549089.jpg'), + ('006105691X', 'Maskerade', 'https://images.isbndb.com/covers/69/18/9780061056918.jpg'), + ('0553574604', 'Icon', 'https://images.isbndb.com/covers/46/09/9780553574609.jpg'), + ('0345388526', 'In The Balance: An Alternate History Of The Second World War (Worldwar, Volume 1)', 'https://images.isbndb.com/covers/85/20/9780345388520.jpg'), + ('0345402405', 'Upsetting The Balance (Worldwar Series, Volume 3)', 'https://images.isbndb.com/covers/24/00/9780345402400.jpg'), + ('0345389980', 'Tilting The Balance (Worldwar Series, Volume 2)', 'https://images.isbndb.com/covers/99/85/9780345389985.jpg'), + ('0373250207', 'Fishbowl', 'https://images.isbndb.com/covers/02/02/9780373250202.jpg'), + ('0671023934', 'The Anatomy Of Motive : The FBI''s Legendary Mindhunter Explores The Key To Understanding And Catching Violent Criminals', 'https://images.isbndb.com/covers/39/35/9780671023935.jpg'), + ('1571684115', 'Start With A Laugh: An Insider''s Guide To Roasts, Toasts, Eulogies, And Other Speeches', 'https://images.isbndb.com/covers/41/10/9781571684110.jpg'), + ('0312254199', 'Signposts In A Strange Land: Essays', 'https://images.isbndb.com/covers/41/93/9780312254193.jpg'), + ('0061000124', 'Yogi: It Ain''t Over', 'https://images.isbndb.com/covers/01/26/9780061000126.jpg'), + ('0671003941', 'Journey Into Darkness', 'https://images.isbndb.com/covers/39/44/9780671003944.jpg'), + ('0451523601', 'Far From The Madding Crowd (Signet Classics)', 'https://images.isbndb.com/covers/36/00/9780451523600.jpg'), + ('3453171837', 'Tom Clancys Net Force 3. Ehrenkodex.', 'https://images.isbndb.com/covers/18/31/9783453171831.jpg'), + ('345315195X', 'Tom Clancy''s Net Force 02. Fluchtpunkt.', 'https://images.isbndb.com/covers/19/56/9783453151956.jpg'), + ('3453147464', 'Tom Clancy''s Net Force 1, Intermafia', 'https://images.isbndb.com/covers/74/61/9783453147461.jpg'), + ('0241141788', 'Any Human Heart', 'https://images.isbndb.com/covers/17/86/9780241141786.jpg'), + ('0802131786', 'Tropic Of Cancer', 'https://images.isbndb.com/covers/17/82/9780802131782.jpg'), + ('0140075968', 'Stars And Bars', 'https://images.isbndb.com/covers/59/60/9780140075960.jpg'), + ('0385475195', 'Fly Fishing Through The Midlife Crisis', 'https://images.isbndb.com/covers/51/98/9780385475198.jpg'), + ('3473580309', 'Hautfarbe Nebensache', 'https://images.isbndb.com/covers/03/09/9783473580309.jpg'), + ('1558745041', 'Chicken Soup For The Mother''s Soul (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/50/49/9781558745049.jpg'), + ('076456174X', 'Cruise Vacations For Dummies 2001', 'https://images.isbndb.com/covers/17/40/9780764561740.jpg'), + ('0345386663', 'Garfield Pulls His Weight (No. 26)', 'https://images.isbndb.com/covers/66/63/9780345386663.jpg'), + ('0060594330', 'Cheaper By The Dozen', 'https://images.isbndb.com/covers/43/36/9780060594336.jpg'), + ('0812550773', 'Irish Lace: A Nuala Anne McGrail Novel (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/07/71/9780812550771.jpg'), + ('082175856X', 'Sara''s Song', 'https://images.isbndb.com/covers/85/64/9780821758564.jpg'), + ('044914982X', 'Serendipity', 'https://images.isbndb.com/covers/98/29/9780449149829.jpg'), + ('0671899597', 'Sleeping Beauty', 'https://images.isbndb.com/covers/95/92/9780671899592.jpg'), + ('038071616X', 'Fleetwood: My Life And Adventures In Fleetwood Mac', 'https://images.isbndb.com/covers/61/66/9780380716166.jpg'), + ('067179390X', 'WILD HONEY', 'https://images.isbndb.com/covers/39/06/9780671793906.jpg'), + ('0345365925', 'For All Their Lives: A Novel', 'https://images.isbndb.com/covers/59/27/9780345365927.jpg'), + ('0373834136', 'The O''Conners: Roses And Rain, Shadows In The Mist', 'https://images.isbndb.com/covers/41/36/9780373834136.jpg'), + ('0821772341', 'Kentucky Rich', 'https://images.isbndb.com/covers/23/48/9780821772348.jpg'), + ('0440237025', 'Journey', 'https://images.isbndb.com/covers/70/20/9780440237020.jpg'), + ('0316171476', 'Masquerade', 'https://images.isbndb.com/covers/14/72/9780316171472.jpg'), + ('034538170X', 'Garfield Takes His Licks (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/17/05/9780345381705.jpg'), + ('059098182X', 'Hatchet', 'https://images.isbndb.com/covers/18/28/9780590981828.jpg'), + ('0446603600', 'Puerto Vallarta Squeeze', 'https://images.isbndb.com/covers/36/07/9780446603607.jpg'), + ('0425180298', 'All Signs Point To Murder: First In The New Series!', 'https://images.isbndb.com/covers/02/97/9780425180297.jpg'), + ('0312986696', 'Blue Suede Clues: A Murder Mystery Featuring Elvis Presley (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/66/98/9780312986698.jpg'), + ('0345459679', 'Hulk', 'https://images.isbndb.com/covers/96/71/9780345459671.jpg'), + ('0312306326', 'Visions Of Sugar Plums: A Stephanie Plum Holiday Novel (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/63/28/9780312306328.jpg'), + ('0670852147', 'Strike Zone', 'https://images.isbndb.com/covers/21/47/9780670852147.jpg'), + ('0345442393', 'Peanuts 2000: The 50th Year Of The World''s Favorite Comic Strip', 'https://images.isbndb.com/covers/23/90/9780345442390.jpg'), + ('0061031550', 'Triggerfish Twist', 'https://images.isbndb.com/covers/15/57/9780061031557.jpg'), + ('0440214904', 'Lizard', 'https://images.isbndb.com/covers/49/08/9780440214908.jpg'), + ('0801678765', 'Basic Nursing: Theory And Practice', 'https://images.isbndb.com/covers/87/69/9780801678769.jpg'), + ('0451169522', 'Misery', 'https://images.isbndb.com/covers/95/25/9780451169525.jpg'), + ('0805054081', 'The Book Of Illusions: A Novel', 'https://images.isbndb.com/covers/40/88/9780805054088.jpg'), + ('0060927216', 'Paula', 'https://images.isbndb.com/covers/72/19/9780060927219.jpg'), + ('0064406962', 'Chasing Redbird (rpkg)', 'https://images.isbndb.com/covers/69/63/9780064406963.jpg'), + ('074324141X', 'Kaplan GRE Exam 2004', 'https://images.isbndb.com/covers/14/10/9780743241410.jpg'), + ('0812504305', 'Around The World In Eighty Days', 'https://images.isbndb.com/covers/43/09/9780812504309.jpg'), + ('0863040403', 'The Exploits Of The Incomparable Mulla Nasrudin / The Subtleties Of The Inimitable Mulla Nasrudin', 'https://images.isbndb.com/covers/04/05/9780863040405.jpg'), + ('0374172897', 'The Hours: A Novel', 'https://images.isbndb.com/covers/28/93/9780374172893.jpg'), + ('0140283404', 'Beloved: (Great Books Edition) (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/34/02/9780140283402.jpg'), + ('0380730774', 'Read This And Tell Me What It Says: Stories', 'https://images.isbndb.com/covers/07/73/9780380730773.jpg'), + ('0862418879', 'The Star Rover (A Rebel Inc. Classic)', 'https://images.isbndb.com/covers/88/78/9780862418878.jpg'), + ('340414645X', 'Die Keltennadel', 'https://images.isbndb.com/covers/64/51/9783404146451.jpg'), + ('3442730988', 'Tod In Der Datscha.', 'https://images.isbndb.com/covers/09/88/9783442730988.jpg'), + ('3404144783', 'Dunkel: Roman', 'https://images.isbndb.com/covers/47/85/9783404144785.jpg'), + ('0880707550', 'Whispers (Glenbrooke, Book 2)', 'https://images.isbndb.com/covers/75/58/9780880707558.jpg'), + ('068145413X', 'Cherished Moments', 'https://images.isbndb.com/covers/41/32/9780681454132.jpg'), + ('1569472793', 'Murder In Belleville (Aimee Leduc Investigations, No. 2)', 'https://images.isbndb.com/covers/27/98/9781569472798.jpg'), + ('0297829084', 'Child Star', 'https://images.isbndb.com/covers/90/89/9780297829089.jpg'), + ('1853406201', 'Semi-Perfect', 'https://images.isbndb.com/covers/62/01/9781853406201.jpg'), + ('0006551076', 'An Ocean In Iowa', 'https://images.isbndb.com/covers/10/72/9780006551072.jpg'), + ('1903650151', 'Spilt Milk', 'https://images.isbndb.com/covers/01/58/9781903650158.jpg'), + ('1852278951', 'Treasure Island According To Spike Milligan', 'https://images.isbndb.com/covers/89/53/9781852278953.jpg'), + ('1841153656', 'The Perfect Fool', 'https://images.isbndb.com/covers/36/50/9781841153650.jpg'), + ('0140178198', 'The Portable Jack Kerouac (Portable Library)', 'https://images.isbndb.com/covers/81/97/9780140178197.jpg'), + ('1877003034', 'Where In The World', 'https://images.isbndb.com/covers/30/35/9781877003035.jpg'), + ('3404144317', 'Wie Ein Lamm Unter Löwen: Historischer Roman', 'https://images.isbndb.com/covers/43/10/9783404144310.jpg'), + ('3453171861', 'Operation Rainbow: Roman', 'https://images.isbndb.com/covers/18/62/9783453171862.jpg'), + ('3852183219', 'Blumen Für Polt. Kriminalroman', 'https://images.isbndb.com/covers/32/13/9783852183213.jpg'), + ('3852182751', 'Polt Muß Weinen. Kriminalroman', 'https://images.isbndb.com/covers/27/59/9783852182759.jpg'), + ('2070408221', 'Ceux De La Soif', 'https://images.isbndb.com/covers/82/21/9782070408221.jpg'), + ('0792706250', 'The Corridors Of Fear (Curley Large Print Books)', 'https://images.isbndb.com/covers/62/50/9780792706250.jpg'), + ('0340568879', 'Anne Of Green Gables (Knight Books)', 'https://images.isbndb.com/covers/88/73/9780340568873.jpg'), + ('059040654X', 'Mostly Magic', 'https://images.isbndb.com/covers/65/43/9780590406543.jpg'), + ('0439557089', 'Barbie Mystery #5 (Barbie Mysteries)', 'https://images.isbndb.com/covers/70/85/9780439557085.jpg'), + ('0749707933', 'Astercote', 'https://images.isbndb.com/covers/79/34/9780749707934.jpg'), + ('0517189674', 'Heidi (Children''s Classics)', 'https://images.isbndb.com/covers/96/72/9780517189672.jpg'), + ('0810943980', 'Babar And The Ghost', 'https://images.isbndb.com/covers/39/88/9780810943988.jpg'), + ('0590248588', 'Money : Make It! Spend It! Save It!', 'https://images.isbndb.com/covers/85/87/9780590248587.jpg'), + ('0870449559', 'Pop-Up: Animal Acrobats', 'https://images.isbndb.com/covers/95/50/9780870449550.jpg'), + ('043910842X', 'Secret Codes For Kids (Mensa (Scholastic))', 'https://images.isbndb.com/covers/84/23/9780439108423.jpg'), + ('0749712295', 'The Nine Lives Of Montezuma', 'https://images.isbndb.com/covers/22/97/9780749712297.jpg'), + ('0749726881', 'Witch Repair Pb', 'https://images.isbndb.com/covers/68/81/9780749726881.jpg'), + ('0140309586', 'Pippi In The South Seas', 'https://images.isbndb.com/covers/95/84/9780140309584.jpg'), + ('0140319972', 'Lost And Found (Young Puffin Books)', 'https://images.isbndb.com/covers/99/72/9780140319972.jpg'), + ('156565269X', 'Super Math Tricks', 'https://images.isbndb.com/covers/26/99/9781565652699.jpg'), + ('0394839102', 'The Berenstain Bears And The Spooky Old Tree', 'https://images.isbndb.com/covers/91/03/9780394839103.jpg'), + ('0860201244', 'The KnowHow Book Of Detection', 'https://images.isbndb.com/covers/12/43/9780860201243.jpg'), + ('0395713250', 'Train To Somewhere', 'https://images.isbndb.com/covers/32/59/9780395713259.jpg'), + ('0894806149', 'The Bird Book & The Bird Feeder (Hand In Hand With Nature)', 'https://images.isbndb.com/covers/61/48/9780894806148.jpg'), + ('0140554556', 'Big Cat Dreaming', 'https://images.isbndb.com/covers/45/57/9780140554557.jpg'), + ('1563053179', 'Kids'' Best Dog Book And Field Guide To Neighborhood Dogs', 'https://images.isbndb.com/covers/31/77/9781563053177.jpg'), + ('039480967X', 'Bears On Wheels', 'https://images.isbndb.com/covers/96/70/9780394809670.jpg'), + ('0394800389', 'Fox In Socks (Beginner Books)', 'https://images.isbndb.com/covers/03/87/9780394800387.jpg'), + ('0802769756', 'A First Look At Ducks, Geese, And Swans (1st Look At Series)', 'https://images.isbndb.com/covers/97/56/9780802769756.jpg'), + ('0679823859', 'The Nutcracker Ballet (Step-Into-Reading, Step 3)', 'https://images.isbndb.com/covers/38/58/9780679823858.jpg'), + ('0064430227', 'Harold And The Purple Crayon 50th Anniversary Edition (Purple Crayon Books)', 'https://images.isbndb.com/covers/02/27/9780064430227.jpg'), + ('0030423910', 'Circus ABC', 'https://images.isbndb.com/covers/39/18/9780030423918.jpg'), + ('0140502076', 'Madeline''s Rescue', 'https://images.isbndb.com/covers/20/77/9780140502077.jpg'), + ('0843110406', 'Prince What-A-Mess', 'https://images.isbndb.com/covers/04/01/9780843110401.jpg'), + ('0843110430', 'What-A-Mess On The Beach', 'https://images.isbndb.com/covers/04/32/9780843110432.jpg'), + ('0881380199', 'Humands (A Star & Elephant Book)', 'https://images.isbndb.com/covers/01/94/9780881380194.jpg'), + ('1853261580', 'The Little Prince (Wordsworth Children''s Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/15/89/9781853261589.jpg'), + ('0307968219', 'Secret Of Nimh Storybook', 'https://images.isbndb.com/covers/82/10/9780307968210.jpg'), + ('0789495929', 'Sharks (DK Pockets)', 'https://images.isbndb.com/covers/59/21/9780789495921.jpg'), + ('0920236162', 'The Paper Bag Princess (Classic Munsch)', 'https://images.isbndb.com/covers/61/61/9780920236161.jpg'), + ('0140183515', 'Just-So Stories: For Little Children (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/35/11/9780140183511.jpg'), + ('0152014209', 'I Stay Near You: One Story In Three', 'https://images.isbndb.com/covers/42/09/9780152014209.jpg'), + ('0517556758', 'Weddings By Martha Stewart', 'https://images.isbndb.com/covers/67/57/9780517556757.jpg'), + ('0881660965', 'The Best Wedding Shower Book: A Complete Guide For Party Planners', 'https://images.isbndb.com/covers/09/68/9780881660968.jpg'), + ('188559304X', 'Vroom! Vroom!: Making ''Dozers, ''Copters, Trucks & More (Williamson Little Hands Book)', 'https://images.isbndb.com/covers/30/47/9781885593047.jpg'), + ('1557346755', 'Simple Science Fun: Hands-On Science Made Easy', 'https://images.isbndb.com/covers/67/59/9781557346759.jpg'), + ('155734678X', 'Creative Crafts For Clever Kids: Exciting Projects From Everyday Stuff', 'https://images.isbndb.com/covers/67/80/9781557346780.jpg'), + ('1557346763', 'Art For All Seasons: Simple, Fun Projects For Seasons And Holidays', 'https://images.isbndb.com/covers/67/66/9781557346766.jpg'), + ('0061093335', 'Nora, Nora: A Novel', 'https://images.isbndb.com/covers/33/33/9780061093333.jpg'), + ('0385479670', 'Catechism Of The Catholic Church', 'https://images.isbndb.com/covers/96/77/9780385479677.jpg'), + ('0786861924', 'The Beardstown Ladies'' Stitch-In-Time Guide To Growing Your Nest Egg: Step-By-Step Planning For A Comfortable Financial Future', 'https://images.isbndb.com/covers/19/27/9780786861927.jpg'), + ('0890430403', 'How To Buy A House, Condo, Or Co-Op', 'https://images.isbndb.com/covers/04/08/9780890430408.jpg'), + ('1551669021', 'Like Silk', 'https://images.isbndb.com/covers/90/21/9781551669021.jpg'), + ('076270327X', 'North Carolina Curiosities, 3rd: Jerry Bledsoe''s Guide To Outlandish Things To See And Do In North Carolina', 'https://images.isbndb.com/covers/32/72/9780762703272.jpg'), + ('0375504443', 'Double Fold: Libraries And The Assault On Paper', 'https://images.isbndb.com/covers/44/40/9780375504440.jpg'), + ('0618015841', 'Word Freak: Heartbreak, Triumph, Genius, And Obsession In The World Of Competitive Scrabble Players', 'https://images.isbndb.com/covers/58/49/9780618015849.jpg'), + ('0681403225', 'More Than Complete Hitchhiker''s Guide: Complete & Unabridged', 'https://images.isbndb.com/covers/32/22/9780681403222.jpg'), + ('0385316518', 'The Plague Tales', 'https://images.isbndb.com/covers/65/14/9780385316514.jpg'), + ('0440324971', 'The Feminine Mystique', 'https://images.isbndb.com/covers/49/73/9780440324973.jpg'), + ('0140168125', 'Big Sur', 'https://images.isbndb.com/covers/81/29/9780140168129.jpg'), + ('0192829068', 'The Masterpiece (The World''s Classics)', 'https://images.isbndb.com/covers/90/61/9780192829061.jpg'), + ('0688141862', 'The Yankee Way To Simplify Your Life: Old-Fashioned Wisdom For A New-fangled World', 'https://images.isbndb.com/covers/18/68/9780688141868.jpg'), + ('0446602450', 'Spencerville', 'https://images.isbndb.com/covers/24/57/9780446602457.jpg'), + ('0804113831', 'Sins Of The Wolf (William Monk Novels)', 'https://images.isbndb.com/covers/38/30/9780804113830.jpg'), + ('0061092193', 'Men At Arms', 'https://images.isbndb.com/covers/21/90/9780061092190.jpg'), + ('0061031321', 'Thief Of Time', 'https://images.isbndb.com/covers/13/28/9780061031328.jpg'), + ('0446359750', 'Devices And Desires (Adam Dalgliesh Mystery Series #8)', 'https://images.isbndb.com/covers/97/57/9780446359757.jpg'), + ('0380818604', 'The Curse Of Chalion', 'https://images.isbndb.com/covers/86/00/9780380818600.jpg'), + ('0812577833', 'The Far Shore Of Time (Eschaton Sequence)', 'https://images.isbndb.com/covers/78/39/9780812577839.jpg'), + ('0440208513', 'Evening News, The', 'https://images.isbndb.com/covers/85/18/9780440208518.jpg'), + ('0553299077', 'The Face Of The Waters', 'https://images.isbndb.com/covers/90/76/9780553299076.jpg'), + ('0061054895', 'Soul Music', 'https://images.isbndb.com/covers/48/91/9780061054891.jpg'), + ('0688177867', 'The Book Borrower: A Novel', 'https://images.isbndb.com/covers/78/67/9780688177867.jpg'), + ('0440458226', 'More Adventures Of The Great Brain', 'https://images.isbndb.com/covers/82/27/9780440458227.jpg'), + ('0767916069', 'Under The Tuscan Sun: At Home In Italy', 'https://images.isbndb.com/covers/60/66/9780767916066.jpg'), + ('067943299X', 'Talk Before Sleep', 'https://images.isbndb.com/covers/29/99/9780679432999.jpg'), + ('0156027119', 'Becoming Mona Lisa', 'https://images.isbndb.com/covers/71/13/9780156027113.jpg'), + ('0590065912', 'Karen''s Cooking Contest (Baby-Sitters Little Sister)', 'https://images.isbndb.com/covers/59/17/9780590065917.jpg'), + ('0966853016', 'Simon''s Hook; A Story About Teases And Put-downs', 'https://images.isbndb.com/covers/30/18/9780966853018.jpg'), + ('0689832133', 'Click, Clack, Moo: Cows That Type', 'https://images.isbndb.com/covers/21/30/9780689832130.jpg'), + ('0140179836', 'The Liars'' Club: A Memoir', 'https://images.isbndb.com/covers/98/35/9780140179835.jpg'), + ('0553580906', 'Claws And Effect (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/09/07/9780553580907.jpg'), + ('0300080301', 'Five Days In London, May 1940', 'https://images.isbndb.com/covers/03/08/9780300080308.jpg'), + ('044022103X', 'One True Thing: Love What You Have', 'https://images.isbndb.com/covers/10/36/9780440221036.jpg'), + ('0553581554', 'The Killing Game: A Novel (Eve Duncan)', 'https://images.isbndb.com/covers/15/53/9780553581553.jpg'), + ('0373834349', 'Mail-Order Marriages: Brides For Brothers/Marriage Risk (Midnight Sons 1-2)', 'https://images.isbndb.com/covers/43/41/9780373834341.jpg'), + ('0451179803', 'Spandau Phoenix: A Novel', 'https://images.isbndb.com/covers/98/07/9780451179807.jpg'), + ('0451203593', '24 Hours', 'https://images.isbndb.com/covers/35/95/9780451203595.jpg'), + ('0764223305', 'The Covenant (Abram''s Daughters #1)', 'https://images.isbndb.com/covers/33/03/9780764223303.jpg'), + ('0451207505', 'Trapped', 'https://images.isbndb.com/covers/75/00/9780451207500.jpg'), + ('1575666731', 'Plain Jane', 'https://images.isbndb.com/covers/67/30/9781575666730.jpg'), + ('0396080111', 'Secret Languages Of The Sea', 'https://images.isbndb.com/covers/01/14/9780396080114.jpg'), + ('0030476267', 'Inheritance', 'https://images.isbndb.com/covers/62/66/9780030476266.jpg'), + ('0812507436', 'People Of The River (The First North Americans Series, Book 4)', 'https://images.isbndb.com/covers/74/30/9780812507430.jpg'), + ('0201093804', 'Touchpoints The Essential Reference: Your Child''s Emotional And Behavioral Development', 'https://images.isbndb.com/covers/38/03/9780201093803.jpg'), + ('0671760602', 'Dr. Spock''s Baby And Child Care', 'https://images.isbndb.com/covers/06/01/9780671760601.jpg'), + ('0970634706', 'Heart Magic : Keeping Love Alive & Well', 'https://images.isbndb.com/covers/47/02/9780970634702.jpg'), + ('2020336480', 'Les Fous De Bassan', 'https://images.isbndb.com/covers/64/82/9782020336482.jpg'), + ('2070378306', 'La Maladie Humaine', 'https://images.isbndb.com/covers/83/02/9782070378302.jpg'), + ('2020315599', 'Un Secret Sans Importance', 'https://images.isbndb.com/covers/55/93/9782020315593.jpg'), + ('2080671618', 'On Dirait Des îles', 'https://images.isbndb.com/covers/16/15/9782080671615.jpg'), + ('2868697984', 'Un Chant D''amour', 'https://images.isbndb.com/covers/79/81/9782868697981.jpg'), + ('2253942723', 'Histoire De La Philosophie Moderne Et Contemporaine', 'https://images.isbndb.com/covers/27/26/9782253942726.jpg'), + ('2253942731', 'Histoire De La Philosophie Moderne Et Contemporaine', 'https://images.isbndb.com/covers/27/33/9782253942733.jpg'), + ('2070425266', 'Amours En Fuite', 'https://images.isbndb.com/covers/52/66/9782070425266.jpg'), + ('2070411729', 'Le Dieu Des Petits Riens', 'https://images.isbndb.com/covers/17/26/9782070411726.jpg'), + ('202009908X', 'La Vie Fantôme', 'https://images.isbndb.com/covers/90/80/9782020099080.jpg'), + ('2842190068', 'Nazis Dans Le Métro', 'https://images.isbndb.com/covers/00/64/9782842190064.jpg'), + ('2266023209', 'Le Chien Jaune', 'https://images.isbndb.com/covers/32/07/9782266023207.jpg'), + ('2264023481', 'La Bible De Néon', 'https://images.isbndb.com/covers/34/83/9782264023483.jpg'), + ('0345331397', 'I, Robot', 'https://images.isbndb.com/covers/13/97/9780345331397.jpg'), + ('2070361039', 'Zazie Dans Le Métro', 'https://images.isbndb.com/covers/10/38/9782070361038.jpg'), + ('207072333X', 'Aller Aux Mirabelles', 'https://images.isbndb.com/covers/33/31/9782070723331.jpg'), + ('2290328685', 'Je Vous Aime. : Les Plus Belles Lettres D''amour', 'https://images.isbndb.com/covers/86/82/9782290328682.jpg'), + ('2020281341', 'La Vie Me Fait Peur', 'https://images.isbndb.com/covers/13/48/9782020281348.jpg'), + ('2020323656', 'Kennedy Et Moi', 'https://images.isbndb.com/covers/36/59/9782020323659.jpg'), + ('2253037389', 'Le Bouc émissaire', 'https://images.isbndb.com/covers/73/85/9782253037385.jpg'), + ('2020094851', 'Sky My Husband ! : Guide Of The Running English', 'https://images.isbndb.com/covers/48/56/9782020094856.jpg'), + ('2020099136', 'Catalogue Des Idées Reçues Sur La Langue', 'https://images.isbndb.com/covers/91/34/9782020099134.jpg'), + ('2253023906', 'La Vie Mode D''emploi', 'https://images.isbndb.com/covers/39/06/9782253023906.jpg'), + ('2290045764', 'Extension Du Domaine De La Lutte', 'https://images.isbndb.com/covers/57/63/9782290045763.jpg'), + ('225314911X', 'Mercure', 'https://images.isbndb.com/covers/91/18/9782253149118.jpg'), + ('0679751750', 'Texaco: A Novel', 'https://images.isbndb.com/covers/17/55/9780679751755.jpg'), + ('0679751769', 'Solibo Magnificent', 'https://images.isbndb.com/covers/17/62/9780679751762.jpg'), + ('2070332748', 'Histoires Du Gaillard D''avant', 'https://images.isbndb.com/covers/27/48/9782070332748.jpg'), + ('2070369439', 'Le Marin De Gibraltar', 'https://images.isbndb.com/covers/94/30/9782070369430.jpg'), + ('2070426777', 'De La Vanité', 'https://images.isbndb.com/covers/67/75/9782070426775.jpg'), + ('2290302481', 'Le Maître Du Haut Château', 'https://images.isbndb.com/covers/24/84/9782290302484.jpg'), + ('0744302749', 'Gypsy Pie', 'https://images.isbndb.com/covers/27/45/9780744302745.jpg'), + ('3257231598', 'Schwesternliebe.', 'https://images.isbndb.com/covers/15/95/9783257231595.jpg'), + ('0751528498', 'The Ambassador', 'https://images.isbndb.com/covers/84/97/9780751528497.jpg'), + ('3478719615', 'Speed Reading. Schneller Lesen - Mehr Verstehen - Besser Behalten', 'https://images.isbndb.com/covers/96/12/9783478719612.jpg'), + ('3596137225', 'Verwandlungen / Transformations. Gedichte', 'https://images.isbndb.com/covers/72/20/9783596137220.jpg'), + ('0446341878', 'Bloodline', 'https://images.isbndb.com/covers/18/75/9780446341875.jpg'), + ('3257231180', 'Acqua Alta: Commissario Brunettis Fünfter Fall', 'https://images.isbndb.com/covers/11/82/9783257231182.jpg'), + ('3451048582', 'Das Etruskische Lächeln', 'https://images.isbndb.com/covers/85/86/9783451048586.jpg'), + ('0962655104', 'The Writings On The Wall: Peace At The Berlin Wall', 'https://images.isbndb.com/covers/51/04/9780962655104.jpg'), + ('3499228653', 'Das Bild Der Alten Dame', 'https://images.isbndb.com/covers/86/50/9783499228650.jpg'), + ('0451180232', 'Nightmares And Dreamscapes', 'https://images.isbndb.com/covers/02/30/9780451180230.jpg'), + ('1570671044', 'Spiritual Midwifery', 'https://images.isbndb.com/covers/10/43/9781570671043.jpg'), + ('0905712609', 'Stephen King: The Shining, Salems Lot, Night Shift, Carrie', 'https://images.isbndb.com/covers/26/04/9780905712604.jpg'), + ('0671625837', 'The Long Dark Tea-Time Of The Soul', 'https://images.isbndb.com/covers/58/32/9780671625832.jpg'), + ('0517693119', 'The More Than Complete Hitchhikers Guide', 'https://images.isbndb.com/covers/31/17/9780517693117.jpg'), + ('0452275350', 'Too Good To Leave, Too Bad To Stay: A Step-by-Step Guide To Help You Decide Whether To Stay In Or Get Out Of Your Relationship', 'https://images.isbndb.com/covers/53/55/9780452275355.jpg'), + ('0395584159', 'Myths Of Motherhood', 'https://images.isbndb.com/covers/41/56/9780395584156.jpg'), + ('0913028673', 'Psyche And Substance: Essays On Homoeopathy In The Light Of Jungian Psychology', 'https://images.isbndb.com/covers/86/74/9780913028674.jpg'), + ('0415040132', 'The Cultural Construction Of Sexuality', 'https://images.isbndb.com/covers/01/36/9780415040136.jpg'), + ('0836269640', '1,003 Great Things About Kids', 'https://images.isbndb.com/covers/96/42/9780836269642.jpg'), + ('1551667878', 'Night Heat', 'https://images.isbndb.com/covers/78/74/9781551667874.jpg'), + ('157566383X', 'Come The Morning', 'https://images.isbndb.com/covers/38/38/9781575663838.jpg'), + ('0380790718', 'The Dark Shore (The Dominions, Book 1)', 'https://images.isbndb.com/covers/07/15/9780380790715.jpg'), + ('0590462105', 'Jennie Garth (Star Shots Collector''s Book, 4)', 'https://images.isbndb.com/covers/21/05/9780590462105.jpg'), + ('0590462121', 'Tori Spelling (Star Shots Collector''s Book, 6)', 'https://images.isbndb.com/covers/21/29/9780590462129.jpg'), + ('0812022009', 'Basic Tips On The SAT', 'https://images.isbndb.com/covers/20/01/9780812022001.jpg'), + ('037321815X', 'Anything, Anywhere, Anytime', 'https://images.isbndb.com/covers/81/58/9780373218158.jpg'), + ('0373293143', 'West Of Heaven (Harlequin Historical)', 'https://images.isbndb.com/covers/31/48/9780373293148.jpg'), + ('0373293135', 'Fulk The Reluctant (Harlequin Historical)', 'https://images.isbndb.com/covers/31/31/9780373293131.jpg'), + ('0399145702', 'The Cat Who Robbed A Bank', 'https://images.isbndb.com/covers/57/04/9780399145704.jpg'), + ('0446346802', 'Brothers', 'https://images.isbndb.com/covers/68/01/9780446346801.jpg'), + ('0590483447', 'The Barking Ghost (Goosebumps #32)', 'https://images.isbndb.com/covers/34/45/9780590483445.jpg'), + ('0590453688', 'Say Cheese And Die! (Goosebumps)', 'https://images.isbndb.com/covers/36/84/9780590453684.jpg'), + ('0451137965', 'Thinner (Signet)', 'https://images.isbndb.com/covers/79/68/9780451137968.jpg'), + ('0553266578', 'The Unwanted', 'https://images.isbndb.com/covers/65/73/9780553266573.jpg'), + ('0449219550', 'Longshot', 'https://images.isbndb.com/covers/95/53/9780449219553.jpg'), + ('0425128164', 'The Voice Of The Night', 'https://images.isbndb.com/covers/81/69/9780425128169.jpg'), + ('0425107469', 'Watchers', 'https://images.isbndb.com/covers/74/61/9780425107461.jpg'), + ('0451162145', 'Koko', 'https://images.isbndb.com/covers/21/44/9780451162144.jpg'), + ('042510687X', 'Outbreak', 'https://images.isbndb.com/covers/68/77/9780425106877.jpg'), + ('0451451481', 'Stalkers', 'https://images.isbndb.com/covers/14/84/9780451451484.jpg'), + ('0440198577', 'When The Wind Blows', 'https://images.isbndb.com/covers/85/74/9780440198574.jpg'), + ('0553262645', 'Nathaniel', 'https://images.isbndb.com/covers/26/43/9780553262643.jpg'), + ('044018293X', 'Suffer The Children', 'https://images.isbndb.com/covers/29/31/9780440182931.jpg'), + ('0590568817', 'Say Cheese And Die-Again! (Goosebumps)', 'https://images.isbndb.com/covers/88/14/9780590568814.jpg'), + ('0553573616', 'My Point...And I Do Have One', 'https://images.isbndb.com/covers/36/19/9780553573619.jpg'), + ('0515101230', 'The Cat Who Went Underground', 'https://images.isbndb.com/covers/12/32/9780515101232.jpg'), + ('0515129941', 'The Cat Who Robbed A Bank', 'https://images.isbndb.com/covers/99/46/9780515129946.jpg'), + ('0590421174', 'How Spider Saved Halloween', 'https://images.isbndb.com/covers/11/71/9780590421171.jpg'), + ('089919463X', 'The Teeny-Tiny Woman', 'https://images.isbndb.com/covers/46/39/9780899194639.jpg'), + ('0590250841', 'Hyde And Go Shriek And Hunted (Tales From The Cryptkeeper)', 'https://images.isbndb.com/covers/08/49/9780590250849.jpg'), + ('0590250884', 'Tales From The Cryptkeeper', 'https://images.isbndb.com/covers/08/87/9780590250887.jpg'), + ('0743492919', 'Resident Evil: Genesis', 'https://images.isbndb.com/covers/29/11/9780743492911.jpg'), + ('0671039946', 'Ice (Shooting Stars)', 'https://images.isbndb.com/covers/99/43/9780671039943.jpg'), + ('0671039954', 'Rose (Shooting Stars, Bk. 3)', 'https://images.isbndb.com/covers/99/50/9780671039950.jpg'), + ('0671039962', 'Honey', 'https://images.isbndb.com/covers/99/67/9780671039967.jpg'), + ('0807554545', 'The Mystery Of The Pirate''s Map (The Boxcar Children Mysteries #70)', 'https://images.isbndb.com/covers/45/48/9780807554548.jpg'), + ('0807534374', 'The Hurricane Mystery (The Boxcar Children Mysteries #54)', 'https://images.isbndb.com/covers/43/73/9780807534373.jpg'), + ('0807530816', 'The Guide Dog Mystery (The Boxcar Children Mysteries #53)', 'https://images.isbndb.com/covers/08/18/9780807530818.jpg'), + ('0807554227', 'The Mystery Bookstore (The Boxcar Children Mysteries #48)', 'https://images.isbndb.com/covers/42/27/9780807554227.jpg'), + ('0807554200', 'The Mystery Of The Hot Air Balloon (The Boxcar Children Mysteries #47)', 'https://images.isbndb.com/covers/42/03/9780807554203.jpg'), + ('0671002031', 'Temptation', 'https://images.isbndb.com/covers/20/39/9780671002039.jpg'), + ('0872863077', 'Returning To A', 'https://images.isbndb.com/covers/30/71/9780872863071.jpg'), + ('0786014245', 'She Loves Me Not', 'https://images.isbndb.com/covers/42/48/9780786014248.jpg'), + ('0312312261', 'Are You Hungry, Dear?: Life, Laughs, And Lasagna', 'https://images.isbndb.com/covers/22/68/9780312312268.jpg'), + ('1574090356', 'Titanic Survivor', 'https://images.isbndb.com/covers/03/52/9781574090352.jpg'), + ('0142000221', 'Cause Celeb', 'https://images.isbndb.com/covers/02/29/9780142000229.jpg'), + ('014014773X', 'The Things They Carried (Contemporary American Fiction)', 'https://images.isbndb.com/covers/77/35/9780140147735.jpg'), + ('0060910690', 'Zelda: A Biography', 'https://images.isbndb.com/covers/06/93/9780060910693.jpg'), + ('0812925300', 'Where The Girls Are: Growing Up Female With The Mass Media', 'https://images.isbndb.com/covers/53/02/9780812925302.jpg'), + ('0312953496', 'Knowledge In A Nutshell', 'https://images.isbndb.com/covers/34/92/9780312953492.jpg'), + ('1858283434', 'The Rough Guide To The Internet 1999', 'https://images.isbndb.com/covers/34/32/9781858283432.jpg'), + ('0671732129', 'When All You Ever Wanted Isn''t Enough', 'https://images.isbndb.com/covers/21/27/9780671732127.jpg'), + ('0140041796', 'Switch Bitch', 'https://images.isbndb.com/covers/17/98/9780140041798.jpg'), + ('052594544X', 'On Secret Service', 'https://images.isbndb.com/covers/54/44/9780525945444.jpg'), + ('1567313590', 'Why People Believe Weird Things: Pseudo-Science, Superstition, And Bogus Notions Of Our Time', 'https://images.isbndb.com/covers/35/98/9781567313598.jpg'), + ('0812551478', 'Blood Of The Fold (Sword Of Truth, Book 3)', 'https://images.isbndb.com/covers/14/71/9780812551471.jpg'), + ('0765346524', 'Wizard''s First Rule', 'https://images.isbndb.com/covers/65/20/9780765346520.jpg'), + ('0345434676', 'Pegasus In Space', 'https://images.isbndb.com/covers/46/78/9780345434678.jpg'), + ('078670442X', 'The Drive-In: A Double-Feature Omnibus', 'https://images.isbndb.com/covers/44/22/9780786704422.jpg'), + ('0505525372', 'Spellbound In Seattle', 'https://images.isbndb.com/covers/53/76/9780505525376.jpg'), + ('055357339X', 'Assassin''s Apprentice (The Farseer Trilogy, Book 1)', 'https://images.isbndb.com/covers/33/98/9780553573398.jpg'), + ('0553209671', 'Sophie''s Choice', 'https://images.isbndb.com/covers/96/79/9780553209679.jpg'), + ('0440204208', 'Blood Shot (V.I. Warshawski Novels)', 'https://images.isbndb.com/covers/42/06/9780440204206.jpg'), + ('0140074511', 'How To Become Ridiculously Well-read In One Evening: A Collection Of Literary Encapsulations', 'https://images.isbndb.com/covers/45/12/9780140074512.jpg'), + ('0843952016', 'The Rising', 'https://images.isbndb.com/covers/20/18/9780843952018.jpg'), + ('0843951907', 'Dark Universe', 'https://images.isbndb.com/covers/19/05/9780843951905.jpg'), + ('0843949783', 'Island', 'https://images.isbndb.com/covers/97/80/9780843949780.jpg'), + ('0156252856', 'Der Kleine Prinz (A Harvest /HBJ Book) (German Edition)', 'https://images.isbndb.com/covers/28/50/9780156252850.jpg'), + ('1858286999', 'The Rough Guide To Japan 2 (Rough Guide Travel Guides)', 'https://images.isbndb.com/covers/69/90/9781858286990.jpg'), + ('1740591623', 'Lonely Planet Japan', 'https://images.isbndb.com/covers/16/21/9781740591621.jpg'), + ('3761400853', 'Silvestergespräche Eines Sechsecks: Ein Phantastischer Roman Von Gekrümmten Räumen Und Dem Sich Ausdehnenden Weltall', 'https://images.isbndb.com/covers/08/52/9783761400852.jpg'), + ('0864427557', 'Lonely Planet China', 'https://images.isbndb.com/covers/75/57/9780864427557.jpg'), + ('346202261X', 'American Psycho', 'https://images.isbndb.com/covers/26/12/9783462022612.jpg'), + ('3257217005', 'Meistererzählungen', 'https://images.isbndb.com/covers/70/01/9783257217001.jpg'), + ('0345315227', '3001 The Final Odyssey', 'https://images.isbndb.com/covers/52/29/9780345315229.jpg'), + ('0312871996', 'The Light Of Other Days', 'https://images.isbndb.com/covers/19/94/9780312871994.jpg'), + ('3455003273', 'Amerika', 'https://images.isbndb.com/covers/32/77/9783455003277.jpg'), + ('1571741119', 'The Books In My Life', 'https://images.isbndb.com/covers/11/10/9781571741110.jpg'), + ('0140620443', 'Hard Times (Penguin Popular Classics)', 'https://images.isbndb.com/covers/04/43/9780140620443.jpg'), + ('0517053616', 'William Shakespeare: The Complete Works, Deluxe Edition', 'https://images.isbndb.com/covers/36/14/9780517053614.jpg'), + ('0517147815', 'Lewis Carroll: The Complete, Fully Illustrated Works, Deluxe Edition', 'https://images.isbndb.com/covers/78/18/9780517147818.jpg'), + ('3453217314', 'Der Unmögliche Planet: Stories', 'https://images.isbndb.com/covers/73/17/9783453217317.jpg'), + ('0679436154', 'The Diagnosis: A Novel', 'https://images.isbndb.com/covers/61/57/9780679436157.jpg'), + ('345834277X', 'Das Dekameron (insel Taschenbuch)', 'https://images.isbndb.com/covers/27/79/9783458342779.jpg'), + ('0140135375', 'The Divided Self: An Existential Study In Sanity And Madness (Penguin Psychology)', 'https://images.isbndb.com/covers/53/74/9780140135374.jpg'), + ('0140442529', 'Notes From Underground; The Double (Penguin Classics)', 'https://images.isbndb.com/covers/25/26/9780140442526.jpg'), + ('3596258758', 'Die Verwandlung. Mit Einem Kommentar Von Vladimir Nabokov', 'https://images.isbndb.com/covers/87/58/9783596258758.jpg'), + ('3518068547', 'Von Seinen Lüsten Träumen', 'https://images.isbndb.com/covers/85/40/9783518068540.jpg'), + ('057106700X', 'Finnegans Wake (Faber Paper Covered Edition)', 'https://images.isbndb.com/covers/70/08/9780571067008.jpg'), + ('0140422161', 'Don Juan (Penguin Classics)', 'https://images.isbndb.com/covers/21/60/9780140422160.jpg'), + ('0006547834', 'Miss Smillas Feeling For Snow', 'https://images.isbndb.com/covers/78/39/9780006547839.jpg'), + ('1559706643', 'Black Dahlia Avenger: The True Story', 'https://images.isbndb.com/covers/66/43/9781559706643.jpg'), + ('3442724627', 'Doch Jeder Tötet, Was Er Liebt: Roman', 'https://images.isbndb.com/covers/46/28/9783442724628.jpg'), + ('0670822671', 'My Father''s Moon', 'https://images.isbndb.com/covers/26/76/9780670822676.jpg'), + ('972210585X', 'Cronicando (Uma Terra Sem Amos) (Portuguese Edition)', 'https://images.isbndb.com/covers/58/59/9789722105859.jpg'), + ('9726101794', 'As Mulheres Deviam Vir Com Livro De Instrucoes (Campo Da Literatura) (Portuguese Edition)', 'https://images.isbndb.com/covers/17/96/9789726101796.jpg'), + ('9722002171', 'A Costa DOS Murmurios (French Edition)', 'https://images.isbndb.com/covers/21/72/9789722002172.jpg'), + ('0345410017', 'Fahrenheit 451', 'https://images.isbndb.com/covers/00/16/9780345410016.jpg'), + ('0812550927', '20,000 Leagues Under The Sea', 'https://images.isbndb.com/covers/09/24/9780812550924.jpg'), + ('1577592735', 'THE LION AND THE MOUSE: An AESOP Fable', 'https://images.isbndb.com/covers/27/30/9781577592730.jpg'), + ('0553279300', 'Being There', 'https://images.isbndb.com/covers/93/06/9780553279306.jpg'), + ('0786702524', 'The Bloody Red Baron', 'https://images.isbndb.com/covers/25/27/9780786702527.jpg'), + ('0486414167', 'The Suicide Club (Dover Thrift Editions)', 'https://images.isbndb.com/covers/41/64/9780486414164.jpg'), + ('044100668X', 'The Lost Years Of Merlin (Lost Years Of Merlin, Bk. 1)', 'https://images.isbndb.com/covers/66/87/9780441006687.jpg'), + ('0826452450', 'Bret Easton Ellis''s American Psycho: A Reader''s Guide (Continuum Contemporaries)', 'https://images.isbndb.com/covers/24/50/9780826452450.jpg'), + ('0486270513', 'Songs Of Innocence And Songs Of Experience (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/17/9780486270517.jpg'), + ('0553274325', 'Johnny Got His Gun', 'https://images.isbndb.com/covers/43/25/9780553274325.jpg'), + ('0966505301', 'The Immortal', 'https://images.isbndb.com/covers/53/06/9780966505306.jpg'), + ('0375500936', 'The Silver Castle', 'https://images.isbndb.com/covers/09/30/9780375500930.jpg'), + ('034910171X', 'Canal Dreams', 'https://images.isbndb.com/covers/17/12/9780349101712.jpg'), + ('0385494238', 'Amsterdam', 'https://images.isbndb.com/covers/42/36/9780385494236.jpg'), + ('0671855670', 'Popcorn', 'https://images.isbndb.com/covers/56/73/9780671855673.jpg'), + ('3453152816', 'Frankreich', 'https://images.isbndb.com/covers/28/16/9783453152816.jpg'), + ('0333375114', '"Rolling Stone" Rock Almanac', 'https://images.isbndb.com/covers/51/12/9780333375112.jpg'), + ('0786861347', 'Don''t Stand Too Close To A Naked Man', 'https://images.isbndb.com/covers/13/47/9780786861347.jpg'), + ('1590889754', 'Shadows Of The Eclipse', 'https://images.isbndb.com/covers/97/56/9781590889756.jpg'), + ('0452283248', 'Leading The Revolution', 'https://images.isbndb.com/covers/32/44/9780452283244.jpg'), + ('0945320531', 'Understanding Variation: The Key To Managing Chaos', 'https://images.isbndb.com/covers/05/31/9780945320531.jpg'), + ('0425105334', 'The Talisman', 'https://images.isbndb.com/covers/53/37/9780425105337.jpg'), + ('0395878063', 'Fahrenheit 451: And Related Readings (Literature Connections)', 'https://images.isbndb.com/covers/80/64/9780395878064.jpg'), + ('0553580191', 'Seize The Night', 'https://images.isbndb.com/covers/01/98/9780553580198.jpg'), + ('0440442508', 'Johnny Tremain', 'https://images.isbndb.com/covers/25/09/9780440442509.jpg'), + ('0064400859', 'Dragonwings', 'https://images.isbndb.com/covers/08/55/9780064400855.jpg'), + ('0064400565', 'Stuart Little', 'https://images.isbndb.com/covers/05/65/9780064400565.jpg'), + ('0439049962', 'Captain Underpants And The Invasion Of The Incredibly Naughty Cafeteria Ladies From Outer Space (and The Subsequent Assault Of The Equally Evil Lunchroom Zombie Nerds)', 'https://images.isbndb.com/covers/99/62/9780439049962.jpg'), + ('0590846280', 'The Adventures Of Captain Underpants', 'https://images.isbndb.com/covers/62/88/9780590846288.jpg'), + ('0316358487', 'The Red Sea Sharks (The Adventures Of Tintin)', 'https://images.isbndb.com/covers/84/84/9780316358484.jpg'), + ('0316358452', 'Destination Moon (The Adventures Of Tintin)', 'https://images.isbndb.com/covers/84/53/9780316358453.jpg'), + ('0380787717', 'True Believers', 'https://images.isbndb.com/covers/77/15/9780380787715.jpg'), + ('0006485936', 'DUST', 'https://images.isbndb.com/covers/59/33/9780006485933.jpg'), + ('0671558684', 'The Awakening Heart: My Continuing Journey To Love', 'https://images.isbndb.com/covers/86/80/9780671558680.jpg'), + ('0345379365', 'Remember', 'https://images.isbndb.com/covers/93/68/9780345379368.jpg'), + ('0312855222', 'Beowulf''s Children', 'https://images.isbndb.com/covers/52/22/9780312855222.jpg'), + ('0345307615', 'Split Infinity (Apprentice Adept, Bk. 1)', 'https://images.isbndb.com/covers/76/13/9780345307613.jpg'), + ('0345315723', 'Dragonsbane', 'https://images.isbndb.com/covers/57/24/9780345315724.jpg'), + ('0201754703', 'The Little PC Book Windows XP Edition', 'https://images.isbndb.com/covers/47/04/9780201754704.jpg'), + ('0804119368', 'The Twisted Root (William Monk Novels)', 'https://images.isbndb.com/covers/93/68/9780804119368.jpg'), + ('0375759999', 'Dark Star: A Novel', 'https://images.isbndb.com/covers/99/94/9780375759994.jpg'), + ('0375758232', 'Paris To The Moon', 'https://images.isbndb.com/covers/82/32/9780375758232.jpg'), + ('0679413138', 'The World At Night', 'https://images.isbndb.com/covers/31/34/9780679413134.jpg'), + ('0525939105', 'Busy Bodies (Claire Malloy Mysteries, No. 10)', 'https://images.isbndb.com/covers/91/08/9780525939108.jpg'), + ('0375758275', 'The Polish Officer: A Novel', 'https://images.isbndb.com/covers/82/70/9780375758270.jpg'), + ('0451172817', 'Needful Things: The Last Castle Rock Story', 'https://images.isbndb.com/covers/28/15/9780451172815.jpg'), + ('0671886665', 'A Cry In The Night', 'https://images.isbndb.com/covers/66/60/9780671886660.jpg'), + ('0440487617', 'A Wind In The Door', 'https://images.isbndb.com/covers/76/16/9780440487616.jpg'), + ('0590109960', 'Last Stop (Watchers, No. 1)', 'https://images.isbndb.com/covers/99/63/9780590109963.jpg'), + ('0590462261', 'Back To The Titanic (Travelers Through Time, No. 1)', 'https://images.isbndb.com/covers/22/66/9780590462266.jpg'), + ('0440227194', 'Brian''s Winter', 'https://images.isbndb.com/covers/71/99/9780440227199.jpg'), + ('044021985X', 'Tomorrow, When The War Began (The Tomorrow Series #1)', 'https://images.isbndb.com/covers/98/59/9780440219859.jpg'), + ('0440220238', 'Kinship (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/02/37/9780440220237.jpg'), + ('0767915062', 'Bill Bryson''s African Diary', 'https://images.isbndb.com/covers/50/69/9780767915069.jpg'), + ('0062516930', 'The Dance: Moving To The Rhythms Of Your True Self', 'https://images.isbndb.com/covers/69/30/9780062516930.jpg'), + ('0679755047', 'Beard On Bread', 'https://images.isbndb.com/covers/50/43/9780679755043.jpg'), + ('0374173133', 'Housekeeping: A Novel', 'https://images.isbndb.com/covers/31/35/9780374173135.jpg'), + ('0060509171', 'City Of The Beasts', 'https://images.isbndb.com/covers/91/70/9780060509170.jpg'), + ('080506995X', 'Global Woman: Nannies, Maids, And Sex Workers In The New Economy', 'https://images.isbndb.com/covers/99/52/9780805069952.jpg'), + ('0809140586', 'Walking With Thomas Merton: Discovering His Poetry, Essays, And Journals', 'https://images.isbndb.com/covers/05/89/9780809140589.jpg'), + ('1583224890', '9-11', 'https://images.isbndb.com/covers/48/92/9781583224892.jpg'), + ('0809141353', 'Best Practices From America''s Best Churches', 'https://images.isbndb.com/covers/13/57/9780809141357.jpg'), + ('006008829X', 'Choices: Taking Control Of Your Life And Making It Matter', 'https://images.isbndb.com/covers/82/93/9780060088293.jpg'), + ('0764551620', 'Investing For Dummies, Second Edition', 'https://images.isbndb.com/covers/16/28/9780764551628.jpg'), + ('0553096087', 'The Mediterranean Diet Cookbook: A Delicious Alternative For Lifelong Health', 'https://images.isbndb.com/covers/60/88/9780553096088.jpg'), + ('0737003103', 'Papering & Painting (Time-Life Do-It-Yourself Factfiles, 4)', 'https://images.isbndb.com/covers/31/09/9780737003109.jpg'), + ('074322423X', 'Self Matters : Creating Your Life From The Inside Out', 'https://images.isbndb.com/covers/42/39/9780743224239.jpg'), + ('1572242396', 'Spiritual Housecleaning: Healing The Space Within By Beautifying The Space Around You', 'https://images.isbndb.com/covers/23/95/9781572242395.jpg'), + ('0312981589', 'Robert Ludlum''s The Cassandra Compact', 'https://images.isbndb.com/covers/15/87/9780312981587.jpg'), + ('006019328X', 'Plato, Not Prozac! Applying Philosophy To Everyday Problems', 'https://images.isbndb.com/covers/32/87/9780060193287.jpg'), + ('0399525009', 'Posture, Get It Straight!', 'https://images.isbndb.com/covers/50/01/9780399525001.jpg'), + ('0062508342', 'The Tibetan Book Of Living And Dying: The Spiritual Classic & International Bestseller', 'https://images.isbndb.com/covers/83/48/9780062508348.jpg'), + ('0140195874', 'One Continuous Mistake : Four Noble Truths For Writers', 'https://images.isbndb.com/covers/58/73/9780140195873.jpg'), + ('1591860008', 'Month-By-Month Gardening In The Desert Southwest', 'https://images.isbndb.com/covers/00/06/9781591860006.jpg'), + ('0874779685', 'Working Out, Working Within', 'https://images.isbndb.com/covers/96/84/9780874779684.jpg'), + ('0066214424', 'Communion: The Female Search For Love', 'https://images.isbndb.com/covers/44/29/9780066214429.jpg'), + ('0345394070', 'Living In Process : Basic Truths For Living The Path Of The Soul', 'https://images.isbndb.com/covers/40/71/9780345394071.jpg'), + ('0376017201', 'Ideas For Great Wall Systems', 'https://images.isbndb.com/covers/72/08/9780376017208.jpg'), + ('0376016760', 'Working With Tile', 'https://images.isbndb.com/covers/67/68/9780376016768.jpg'), + ('0696208180', 'Step-by-Step Tiling Projects (Better Homes & Gardens: Step By Step)', 'https://images.isbndb.com/covers/81/88/9780696208188.jpg'), + ('0060958014', 'Coastliners: A Novel', 'https://images.isbndb.com/covers/80/15/9780060958015.jpg'), + ('0312271247', 'When I Loved Myself Enough', 'https://images.isbndb.com/covers/12/44/9780312271244.jpg'), + ('1559706848', 'Galileo''s Mistake: A New Look At The Epic Confrontation Between Galileo And The Church', 'https://images.isbndb.com/covers/68/41/9781559706841.jpg'), + ('0848723716', '10-20-30 Minutes To Quilt (Sewing With Nancy)', 'https://images.isbndb.com/covers/37/12/9780848723712.jpg'), + ('1564145190', '100 Ways To Motivate Yourself', 'https://images.isbndb.com/covers/51/92/9781564145192.jpg'), + ('1573228354', 'A Woman''s Journey To God', 'https://images.isbndb.com/covers/83/50/9781573228350.jpg'), + ('1573222410', 'Almost There', 'https://images.isbndb.com/covers/24/19/9781573222419.jpg'), + ('1571780386', 'Beyond Fear: A Toltec Guide To Freedom And Joy - The Teachings Of Don Miguel Ruiz', 'https://images.isbndb.com/covers/03/86/9781571780386.jpg'), + ('0764586335', 'Taking And Sharing Digital Photographs (Cliffs Notes)', 'https://images.isbndb.com/covers/63/30/9780764586330.jpg'), + ('0937750123', 'Don Aslett''s Clutter-Free!: Finally & Forever', 'https://images.isbndb.com/covers/01/24/9780937750124.jpg'), + ('1583762027', 'Eat That Frog! 21 Great Ways To Stop Procrastinating And Get More Done In Less Time', 'https://images.isbndb.com/covers/20/28/9781583762028.jpg'), + ('2070403963', 'L''Allumeuse', 'https://images.isbndb.com/covers/39/67/9782070403967.jpg'), + ('2070392627', 'Les Vacances Du Petit Nicolas', 'https://images.isbndb.com/covers/26/29/9782070392629.jpg'), + ('0805071792', 'In Our Hands: A Hand Surgeon''s Tales Of The Body''s Most Exquisite Instrument', 'https://images.isbndb.com/covers/17/95/9780805071795.jpg'), + ('0316328197', 'Schrodinger''s Kittens And The Search For Reality: Solving The Quantum Mysteries', 'https://images.isbndb.com/covers/81/97/9780316328197.jpg'), + ('051513595X', 'The Arraignment (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/59/54/9780515135954.jpg'), + ('044021680X', 'Gai-Jin', 'https://images.isbndb.com/covers/68/03/9780440216803.jpg'), + ('3453092473', 'Nodus.', 'https://images.isbndb.com/covers/24/71/9783453092471.jpg'), + ('3453861825', 'Der Schattenkrieg', 'https://images.isbndb.com/covers/18/24/9783453861824.jpg'), + ('0345369416', 'Grumbles From The Grave', 'https://images.isbndb.com/covers/94/13/9780345369413.jpg'), + ('0440120500', 'The Dirty Duck', 'https://images.isbndb.com/covers/05/06/9780440120506.jpg'), + ('0743211375', 'From A Buick 8', 'https://images.isbndb.com/covers/13/76/9780743211376.jpg'), + ('0446606251', 'Snow In August', 'https://images.isbndb.com/covers/62/57/9780446606257.jpg'), + ('0521409047', 'A Midsummer Night''s Dream (Cambridge School Shakespeare)', 'https://images.isbndb.com/covers/90/49/9780521409049.jpg'), + ('0340682310', 'Lots Of Love', 'https://images.isbndb.com/covers/23/19/9780340682319.jpg'), + ('3518394045', 'Frauenleben: Ein Lesebuch (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/40/45/9783518394045.jpg'), + ('3426615355', 'How To Be Good', 'https://images.isbndb.com/covers/53/55/9783426615355.jpg'), + ('0446515078', 'Scarlett: The Sequel To Margaret Mitchell''s Gone With The Wind', 'https://images.isbndb.com/covers/50/78/9780446515078.jpg'), + ('185371545X', 'Vampyre', 'https://images.isbndb.com/covers/54/57/9781853715457.jpg'), + ('0446300152', 'Fit For Life', 'https://images.isbndb.com/covers/01/55/9780446300155.jpg'), + ('0671720147', 'The Vor Game', 'https://images.isbndb.com/covers/01/48/9780671720148.jpg'), + ('0060511508', 'The Further Observations Of Lady Whistledown', 'https://images.isbndb.com/covers/15/00/9780060511500.jpg'), + ('0140093060', 'Telling Of Lies: A Mystery', 'https://images.isbndb.com/covers/30/63/9780140093063.jpg'), + ('0671033085', 'Existenz', 'https://images.isbndb.com/covers/30/88/9780671033088.jpg'), + ('0684852144', 'Blonde Like Me: The Roots Of The Blonde Myth In Our Culture', 'https://images.isbndb.com/covers/21/40/9780684852140.jpg'), + ('0316787035', 'The Nightmare Years: 1930-1940, Vol. 2', 'https://images.isbndb.com/covers/70/31/9780316787031.jpg'), + ('156025307X', 'Cybershock: Surviving Hackers, Phreakers, Identity Thieves, Internet Terrorists And Weapons Of Mass Disruption', 'https://images.isbndb.com/covers/30/75/9781560253075.jpg'), + ('0452284139', 'Dangerous Waters: Modern Piracy And Terror On The High Seas', 'https://images.isbndb.com/covers/41/35/9780452284135.jpg'), + ('067145711X', 'The Great Bridge: The Epic Story Of The Building Of The Brooklyn Bridge', 'https://images.isbndb.com/covers/71/12/9780671457112.jpg'), + ('0553202308', 'The Last Mafioso: The Treacherous World Of Jimmy Fratianno', 'https://images.isbndb.com/covers/23/04/9780553202304.jpg'), + ('0385115784', 'Journeys Down The Line: Building The Trans-Alaska Pipeline', 'https://images.isbndb.com/covers/57/80/9780385115780.jpg'), + ('0684872889', 'Tuxedo Park : A Wall Street Tycoon And The Secret Palace Of Science That Changed The Course Of World War II', 'https://images.isbndb.com/covers/28/89/9780684872889.jpg'), + ('0802139604', 'Tobacco: A Cultural History Of How An Exotic Plant Seduced Civilization', 'https://images.isbndb.com/covers/96/03/9780802139603.jpg'), + ('0786881194', 'Edison: Inventing The Century', 'https://images.isbndb.com/covers/11/92/9780786881192.jpg'), + ('0140167455', 'Victorian Engineering', 'https://images.isbndb.com/covers/74/50/9780140167450.jpg'), + ('0385493258', 'Ingenious Pursuits: Building The Scientific Revolution', 'https://images.isbndb.com/covers/32/53/9780385493253.jpg'), + ('0767906039', 'The Nudist On The Late Shift: And Other True Tales Of Silicon Valley', 'https://images.isbndb.com/covers/60/36/9780767906036.jpg'), + ('0684835290', 'The INVENTION THAT CHANGED THE WORLD: HOW A SMALL GROUP OF RADAR PIONEERS WON THE SECOND WORLD WAR AND LAUNCHED A TECH', 'https://images.isbndb.com/covers/52/97/9780684835297.jpg'), + ('0451083709', 'Marie Curie', 'https://images.isbndb.com/covers/37/08/9780451083708.jpg'), + ('0871131455', 'Republican Party Reptile: Essays And Outrages', 'https://images.isbndb.com/covers/14/54/9780871131454.jpg'), + ('0425178838', 'Made In America: The True Stories Behind The Brand Names That Built A Na', 'https://images.isbndb.com/covers/88/36/9780425178836.jpg'), + ('077109972X', 'Apprenticeship Of Duddy Kravitz', 'https://images.isbndb.com/covers/97/24/9780771099724.jpg'), + ('0439386012', 'The Vile Village (A Series Of Unfortunate Events #7)', 'https://images.isbndb.com/covers/60/12/9780439386012.jpg'), + ('0451520882', 'Peter Pan: Centennial Edition (Signet Classics)', 'https://images.isbndb.com/covers/08/83/9780451520883.jpg'), + ('1841953229', 'Rembrandt''s Whore: A Novel', 'https://images.isbndb.com/covers/32/29/9781841953229.jpg'), + ('067943853X', 'Of Love And Other Demons', 'https://images.isbndb.com/covers/85/33/9780679438533.jpg'), + ('0349115222', 'The Bone Hunter', 'https://images.isbndb.com/covers/52/21/9780349115221.jpg'), + ('0060956135', 'The Cloud Sketcher: A Novel', 'https://images.isbndb.com/covers/61/34/9780060956134.jpg'), + ('0349111030', 'King Of The Ants', 'https://images.isbndb.com/covers/10/32/9780349111032.jpg'), + ('055214276X', 'Immediate Action', 'https://images.isbndb.com/covers/27/62/9780552142762.jpg'), + ('0330317490', 'The Twisted Sword (The Poldark Saga)', 'https://images.isbndb.com/covers/74/98/9780330317498.jpg'), + ('0552134759', 'The Negotiator', 'https://images.isbndb.com/covers/47/50/9780552134750.jpg'), + ('0425130711', 'Cold Fire', 'https://images.isbndb.com/covers/07/11/9780425130711.jpg'), + ('0575049804', 'Witches Abroad', 'https://images.isbndb.com/covers/98/02/9780575049802.jpg'), + ('0575047631', 'Moving Pictures (Discworld Novels)', 'https://images.isbndb.com/covers/76/31/9780575047631.jpg'), + ('0575046066', 'Guards! Guards!', 'https://images.isbndb.com/covers/60/61/9780575046061.jpg'), + ('0575044632', 'Pyramids', 'https://images.isbndb.com/covers/46/30/9780575044630.jpg'), + ('0575043636', 'Wyrd Sisters: Starring Three Witches, Also Kings, Daggers, Crowns', 'https://images.isbndb.com/covers/36/33/9780575043633.jpg'), + ('1593150229', 'Secrets Of The Code: The Unauthorized Guide To The Mysteries Behind The Da Vinci Code', 'https://images.isbndb.com/covers/02/28/9781593150228.jpg'), + ('0671787187', 'We Band Of Angels: The Untold Story Of American Nurses Trapped On Bataan By The Japanese', 'https://images.isbndb.com/covers/71/89/9780671787189.jpg'), + ('0449213013', 'Earth Abides', 'https://images.isbndb.com/covers/30/18/9780449213018.jpg'), + ('0385317093', 'Granny Dan', 'https://images.isbndb.com/covers/70/92/9780385317092.jpg'), + ('0451168089', 'Salem''s Lot', 'https://images.isbndb.com/covers/80/85/9780451168085.jpg'), + ('080411868X', 'Welcome To The World, Baby Girl!', 'https://images.isbndb.com/covers/86/82/9780804118682.jpg'), + ('0439420105', 'Harry Potter And The Chamber Of Secrets (Book 2)', 'https://images.isbndb.com/covers/01/05/9780439420105.jpg'), + ('1591824095', 'Chobits, Volume 8', 'https://images.isbndb.com/covers/40/91/9781591824091.jpg'), + ('039914417X', 'The Girl In The Photograph', 'https://images.isbndb.com/covers/41/72/9780399144172.jpg'), + ('0451163710', 'Strands Of Starlight (Signet)', 'https://images.isbndb.com/covers/37/14/9780451163714.jpg'), + ('0451158261', 'One Flew Over The Cuckoo''s Nest (Signet)', 'https://images.isbndb.com/covers/82/60/9780451158260.jpg'), + ('0671799584', 'Task Force Blue (Rogue Warrior ): Task Force Blue', 'https://images.isbndb.com/covers/95/88/9780671799588.jpg'), + ('1860465382', 'Long John Silver (Panther)', 'https://images.isbndb.com/covers/53/83/9781860465383.jpg'), + ('1591822580', 'Chobits, Volume 7', 'https://images.isbndb.com/covers/25/85/9781591822585.jpg'), + ('1591822572', 'Chobits, Volume 6', 'https://images.isbndb.com/covers/25/78/9781591822578.jpg'), + ('1591821533', 'Chobits, Volume 5', 'https://images.isbndb.com/covers/15/33/9781591821533.jpg'), + ('0765304686', 'Mistress Of Dragons', 'https://images.isbndb.com/covers/46/81/9780765304681.jpg'), + ('0786927402', 'Dragons Of A Vanished Moon (The War Of Souls, Vol. 3)', 'https://images.isbndb.com/covers/74/01/9780786927401.jpg'), + ('1591820073', 'Chobits, Volume 4', 'https://images.isbndb.com/covers/00/79/9781591820079.jpg'), + ('1591820065', 'Chobits, Volume 3', 'https://images.isbndb.com/covers/00/62/9781591820062.jpg'), + ('0812511751', 'The Elvenbane (Halfblood Chronicles, Bk. 1)', 'https://images.isbndb.com/covers/17/58/9780812511758.jpg'), + ('1591820057', 'Chobits, Volume 2', 'https://images.isbndb.com/covers/00/55/9781591820055.jpg'), + ('0345418263', 'The Princess Bride (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/82/65/9780345418265.jpg'), + ('1931514925', 'Chobits, Volume 1', 'https://images.isbndb.com/covers/49/27/9781931514927.jpg'), + ('034528349X', 'Dragon''s Egg', 'https://images.isbndb.com/covers/34/98/9780345283498.jpg'), + ('055309128X', 'Icon', 'https://images.isbndb.com/covers/12/81/9780553091281.jpg'), + ('0887621112', 'Salt Fish Girl: A Novel', 'https://images.isbndb.com/covers/11/16/9780887621116.jpg'), + ('0380775662', 'Guilty By Choice', 'https://images.isbndb.com/covers/56/68/9780380775668.jpg'), + ('0399124721', 'Wizard', 'https://images.isbndb.com/covers/47/23/9780399124723.jpg'), + ('0671876821', 'Chicks In Chainmail', 'https://images.isbndb.com/covers/68/21/9780671876821.jpg'), + ('0553141279', 'Dragonsinger', 'https://images.isbndb.com/covers/12/76/9780553141276.jpg'), + ('067172262X', 'Hamlet', 'https://images.isbndb.com/covers/26/23/9780671722623.jpg'), + ('0764226312', 'Arena', 'https://images.isbndb.com/covers/63/11/9780764226311.jpg'), + ('039304808X', 'Neurotica: Jewish Writers On Sex', 'https://images.isbndb.com/covers/80/87/9780393048087.jpg'), + ('0345445899', 'Vertical Burn', 'https://images.isbndb.com/covers/58/96/9780345445896.jpg'), + ('9681902548', 'La Historia Interminable (Osito/Little Bear) (Spanish Edition)', 'https://images.isbndb.com/covers/25/44/9789681902544.jpg'), + ('9681902068', 'El Profesor Ziper Y LA Fabulosa Guitarra Electrica (Infantil) (Spanish Edition)', 'https://images.isbndb.com/covers/20/63/9789681902063.jpg'), + ('0805052453', 'Under The Frog: A Novel', 'https://images.isbndb.com/covers/24/59/9780805052459.jpg'), + ('1841952338', 'Happiness', 'https://images.isbndb.com/covers/23/38/9781841952338.jpg'), + ('0330419560', 'Salmon Doubt', 'https://images.isbndb.com/covers/95/67/9780330419567.jpg'), + ('086611954X', 'The Call Of The Wild (Great Illustrated Classics)', 'https://images.isbndb.com/covers/95/42/9780866119542.jpg'), + ('0316877719', 'Under Sail', 'https://images.isbndb.com/covers/77/18/9780316877718.jpg'), + ('0747541140', 'Soft', 'https://images.isbndb.com/covers/11/41/9780747541141.jpg'), + ('0789426277', 'Forgotten Fire', 'https://images.isbndb.com/covers/62/77/9780789426277.jpg'), + ('0345449126', 'Take Me With You: A Round-the-World Journey To Invite A Stranger Home', 'https://images.isbndb.com/covers/91/22/9780345449122.jpg'), + ('055314300X', 'The Bourne Identity', 'https://images.isbndb.com/covers/30/03/9780553143003.jpg'), + ('0664225985', 'R Father N Hvn: Up 2 D8 Txts Frm D Bible', 'https://images.isbndb.com/covers/59/88/9780664225988.jpg'), + ('0671022202', 'Not Alan Clark''s Diary Pb', 'https://images.isbndb.com/covers/22/04/9780671022204.jpg'), + ('031217229X', 'Best Words, Best Order: Essays On Poetry', 'https://images.isbndb.com/covers/22/99/9780312172299.jpg'), + ('0060925752', 'Soul Mates: Honoring The Mystery Of Love And Relationship', 'https://images.isbndb.com/covers/57/58/9780060925758.jpg'), + ('038531177X', 'Rain Of Gold', 'https://images.isbndb.com/covers/17/79/9780385311779.jpg'), + ('0452264863', 'Night Of January 16th', 'https://images.isbndb.com/covers/48/61/9780452264861.jpg'), + ('1582341400', 'A Cook''s Tour: In Search Of The Perfect Meal', 'https://images.isbndb.com/covers/14/08/9781582341408.jpg'), + ('0515085995', 'The Mick', 'https://images.isbndb.com/covers/59/90/9780515085990.jpg'), + ('0449137465', 'East Of Desolation', 'https://images.isbndb.com/covers/74/68/9780449137468.jpg'), + ('0671887963', 'Ring Of Truth', 'https://images.isbndb.com/covers/79/64/9780671887964.jpg'), + ('0452273404', 'Two Or Three Things I Know For Sure', 'https://images.isbndb.com/covers/34/05/9780452273405.jpg'), + ('0965011615', 'The World''s Best Short Stories (of All Time)', 'https://images.isbndb.com/covers/16/17/9780965011617.jpg'), + ('0446404144', 'Open Season (Joe Gunther Mysteries)', 'https://images.isbndb.com/covers/41/43/9780446404143.jpg'), + ('0689859368', 'The Field Guide (The Spiderwick Chronicles, Book 1)', 'https://images.isbndb.com/covers/93/66/9780689859366.jpg'), + ('0440416655', 'A Straw For Two (Ink Drinker)', 'https://images.isbndb.com/covers/66/54/9780440416654.jpg'), + ('0440414857', 'The Ink Drinker (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/48/58/9780440414858.jpg'), + ('042518045X', 'Unraveled Sleeve (Needlecraft Mysteries, No. 4)', 'https://images.isbndb.com/covers/04/57/9780425180457.jpg'), + ('0959774661', 'Treat Your Own Back', 'https://images.isbndb.com/covers/46/65/9780959774665.jpg'), + ('0373259204', 'One Eager Bride To Go (The Wedding Ring) (Temptation 820)', 'https://images.isbndb.com/covers/92/05/9780373259205.jpg'), + ('0746016646', 'Starting Needle Craft (Usborne First Skills)', 'https://images.isbndb.com/covers/66/40/9780746016640.jpg'), + ('0373165218', 'Baby On The Doorstep (Harlequin American Romance)', 'https://images.isbndb.com/covers/52/16/9780373165216.jpg'), + ('0425145638', 'Fatal Cure', 'https://images.isbndb.com/covers/56/30/9780425145630.jpg'), + ('140003065X', 'A Fine Balance (Oprah''s Book Club)', 'https://images.isbndb.com/covers/06/51/9781400030651.jpg'), + ('0671708376', 'Perchance To Dream (Star Trek: The Next Generation, No. 19)', 'https://images.isbndb.com/covers/83/75/9780671708375.jpg'), + ('0671742647', 'Chains Of Command (Star Trek The Next Generation, No 21)', 'https://images.isbndb.com/covers/26/45/9780671742645.jpg'), + ('0671883410', 'Star Trek: The Next Generation No. 30: Debtors'' Planet', 'https://images.isbndb.com/covers/34/16/9780671883416.jpg'), + ('0671567993', 'The Garden (Star Trek Voyager, No 11)', 'https://images.isbndb.com/covers/79/96/9780671567996.jpg'), + ('0446345628', 'Dr. Ruth Guide To Marriage', 'https://images.isbndb.com/covers/56/20/9780446345620.jpg'), + ('0553260960', 'The Mammoth Hunters (Earth''s Children, Book 3)', 'https://images.isbndb.com/covers/09/60/9780553260960.jpg'), + ('0553801376', 'One Door Away From Heaven', 'https://images.isbndb.com/covers/13/78/9780553801378.jpg'), + ('0671733893', 'Q-In-Law (Star Trek The Next Generation, No 18)', 'https://images.isbndb.com/covers/38/96/9780671733896.jpg'), + ('0671700103', 'The Eyes Of The Beholders (Star Trek: The Next Generation, No. 13)', 'https://images.isbndb.com/covers/01/02/9780671700102.jpg'), + ('1551669447', 'The Christmas Basket', 'https://images.isbndb.com/covers/94/41/9781551669441.jpg'), + ('0552992062', 'Setting Free The Bears (Black Swan)', 'https://images.isbndb.com/covers/20/60/9780552992060.jpg'), + ('0684863308', 'ROWING AGAINST THE CURRENT: On Learning To Scull At Forty', 'https://images.isbndb.com/covers/33/06/9780684863306.jpg'), + ('0807508527', 'The Boxcar Children (The Boxcar Children, No. 1) (Boxcar Children Mysteries)', 'https://images.isbndb.com/covers/85/27/9780807508527.jpg'), + ('0590848860', 'Cyclops Doesn''t Roller-Skate (Adventures Of The Bailey School Kids)', 'https://images.isbndb.com/covers/88/62/9780590848862.jpg'), + ('037582233X', 'Stargirl', 'https://images.isbndb.com/covers/23/39/9780375822339.jpg'), + ('0842343318', 'Into The Storm (Left Behind: The Kids #11)', 'https://images.isbndb.com/covers/33/12/9780842343312.jpg'), + ('084234330X', 'On The Run (Left Behind: The Kids #10)', 'https://images.isbndb.com/covers/33/05/9780842343305.jpg'), + ('0842343326', 'Earthquake! (Left Behind: The Kids #12)', 'https://images.isbndb.com/covers/33/29/9780842343329.jpg'), + ('0842342974', 'Fire From Heaven: Deceiving The Enemy (Left Behind: The Kids)', 'https://images.isbndb.com/covers/29/71/9780842342971.jpg'), + ('0842321969', 'Facing The Future (Left Behind: The Kids #4)', 'https://images.isbndb.com/covers/19/69/9780842321969.jpg'), + ('0671021192', 'Harvest Moon (Sabrina, The Teenage Witch #15)', 'https://images.isbndb.com/covers/11/91/9780671021191.jpg'), + ('0671884492', 'Atlantis Station (Star Trek: The Next Generation: Starfleet Academy)', 'https://images.isbndb.com/covers/44/99/9780671884499.jpg'), + ('0380769557', 'Autumn Lover', 'https://images.isbndb.com/covers/95/51/9780380769551.jpg'), + ('0671028383', 'Grave Secrets', 'https://images.isbndb.com/covers/83/81/9780671028381.jpg'), + ('0671011367', 'Deja Dead (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/13/69/9780671011369.jpg'), + ('0091882087', 'One Hit Wonderland', 'https://images.isbndb.com/covers/20/82/9780091882082.jpg'), + ('0446670553', 'Maverick: The Success Story Behind The World''s Most Unusual Workplace', 'https://images.isbndb.com/covers/05/55/9780446670555.jpg'), + ('0671047485', 'Shallow Graves (Location Scout Mysteries)', 'https://images.isbndb.com/covers/74/81/9780671047481.jpg'), + ('0515136549', 'The Sherbrooke Twins (Bride Series)', 'https://images.isbndb.com/covers/65/48/9780515136548.jpg'), + ('0380814811', 'Home For The Holidays', 'https://images.isbndb.com/covers/48/17/9780380814817.jpg'), + ('0671019716', 'Shades Of Twilight', 'https://images.isbndb.com/covers/97/16/9780671019716.jpg'), + ('0671034057', 'Now You See Her', 'https://images.isbndb.com/covers/40/54/9780671034054.jpg'), + ('0373708718', 'Feel The Heat: America''s Bravest (Harlequin Superromance No. 871)', 'https://images.isbndb.com/covers/87/10/9780373708710.jpg'), + ('0671568841', 'All The Queen''s Men', 'https://images.isbndb.com/covers/88/49/9780671568849.jpg'), + ('0373289766', 'The Rogue''s Return (Most Unsuitable Men Trilogy, Book 3) (Harlequin Historicals #376)', 'https://images.isbndb.com/covers/97/69/9780373289769.jpg'), + ('0553581643', 'Come Back To Me', 'https://images.isbndb.com/covers/16/45/9780553581645.jpg'), + ('038078615X', 'Married At Midnight', 'https://images.isbndb.com/covers/61/52/9780380786152.jpg'), + ('0380781468', 'Beyond Scandal', 'https://images.isbndb.com/covers/14/61/9780380781461.jpg'), + ('0671027573', 'Mr. Perfect', 'https://images.isbndb.com/covers/75/75/9780671027575.jpg'), + ('0312962436', 'Nothing But Velvet', 'https://images.isbndb.com/covers/24/32/9780312962432.jpg'), + ('0312960891', 'Innocence Undone', 'https://images.isbndb.com/covers/08/96/9780312960896.jpg'), + ('055358068X', 'The Least Likely Bride', 'https://images.isbndb.com/covers/06/86/9780553580686.jpg'), + ('0440235510', 'Whirlwind Wedding', 'https://images.isbndb.com/covers/55/14/9780440235514.jpg'), + ('0451402049', 'Midsummer Magic (Magic Trilogy)', 'https://images.isbndb.com/covers/20/42/9780451402042.jpg'), + ('0521815819', 'Victorian Modernism: Pragmatism And The Varieties Of Aesthetic Experience', 'https://images.isbndb.com/covers/58/19/9780521815819.jpg'), + ('0553569910', 'The Ugly Duckling', 'https://images.isbndb.com/covers/99/19/9780553569919.jpg'), + ('0817235000', 'Let''s Take The Bus (Real Readers)', 'https://images.isbndb.com/covers/50/00/9780817235000.jpg'), + ('1576751511', 'Affluenza: The All-Consuming Epidemic', 'https://images.isbndb.com/covers/15/10/9781576751510.jpg'), + ('3442730368', 'Der Glaspalast: Roman', 'https://images.isbndb.com/covers/03/60/9783442730360.jpg'), + ('3442728266', 'Der Liebeswunsch: Roman', 'https://images.isbndb.com/covers/82/68/9783442728268.jpg'), + ('3442760771', 'Ein Leben Wird Besichtigt', 'https://images.isbndb.com/covers/07/70/9783442760770.jpg'), + ('3442729696', 'Das Buch Ruth.', 'https://images.isbndb.com/covers/96/92/9783442729692.jpg'), + ('3442729726', 'Die Geliebte Auf Dem Berg. Ein Lisi-Badichi-Roman', 'https://images.isbndb.com/covers/97/22/9783442729722.jpg'), + ('3442728312', 'Tod In Breslau.', 'https://images.isbndb.com/covers/83/12/9783442728312.jpg'), + ('350251884X', 'Treibjagd An Bord', 'https://images.isbndb.com/covers/88/46/9783502518846.jpg'), + ('3442429641', 'Liebling, Vergiss Die Socken Nicht!', 'https://images.isbndb.com/covers/96/46/9783442429646.jpg'), + ('3251004557', 'Holidays On Ice. Neue Geschichten', 'https://images.isbndb.com/covers/45/53/9783251004553.jpg'), + ('344254162X', 'Frische Goldjungs. Storys.', 'https://images.isbndb.com/covers/16/21/9783442541621.jpg'), + ('2253137243', 'Le Jour Des Fourmis', 'https://images.isbndb.com/covers/72/45/9782253137245.jpg'), + ('0345456335', 'Dragonflight', 'https://images.isbndb.com/covers/63/35/9780345456335.jpg'), + ('3404117476', 'Der Große Santini', 'https://images.isbndb.com/covers/74/75/9783404117475.jpg'), + ('0553578685', 'The Third Victim', 'https://images.isbndb.com/covers/86/83/9780553578683.jpg'), + ('0451409884', 'Dying To Have Her', 'https://images.isbndb.com/covers/98/81/9780451409881.jpg'), + ('0743418204', 'In Her Shoes : A Novel', 'https://images.isbndb.com/covers/82/01/9780743418201.jpg'), + ('0786863137', 'Brain Droppings', 'https://images.isbndb.com/covers/31/36/9780786863136.jpg'), + ('0553574639', 'The Main Corpse (Goldy Culinary Mysteries, Book 6)', 'https://images.isbndb.com/covers/46/30/9780553574630.jpg'), + ('0060512822', 'The Poisonwood Bible: A Novel', 'https://images.isbndb.com/covers/28/28/9780060512828.jpg'), + ('006097673X', 'Autobiography Of A Face', 'https://images.isbndb.com/covers/67/36/9780060976736.jpg'), + ('0805023232', 'More From The Gluten-Free Gourmet: Delicious Dining Without Wheat', 'https://images.isbndb.com/covers/32/37/9780805023237.jpg'), + ('0805039805', 'The Gluten-free Gourmet Cooks Fast And Healthy: Wheat-Free With Less Fuss And Fat', 'https://images.isbndb.com/covers/98/01/9780805039801.jpg'), + ('0805018352', 'The Gluten Free Gourmet: Living Well Without Wheat', 'https://images.isbndb.com/covers/83/56/9780805018356.jpg'), + ('0609608339', 'The Buffalo Soldier: A Novel By The Bestselling Author Of MIDWIVES', 'https://images.isbndb.com/covers/83/33/9780609608333.jpg'), + ('0871138433', 'Lost Nation', 'https://images.isbndb.com/covers/84/39/9780871138439.jpg'), + ('0446607681', 'The Disposable Man (Joe Gunther Mysteries)', 'https://images.isbndb.com/covers/76/81/9780446607681.jpg'), + ('1584650532', 'The Gore (Hardscrabble Books-Fiction Of New England)', 'https://images.isbndb.com/covers/05/39/9781584650539.jpg'), + ('1584650028', 'Guardian Angels (Hardscrabble Books-Fiction Of New England)', 'https://images.isbndb.com/covers/00/27/9781584650027.jpg'), + ('0874518849', 'Shadow Child (Hardscrabble Books-Fiction Of New England)', 'https://images.isbndb.com/covers/88/49/9780874518849.jpg'), + ('0786866845', 'Ice Bound: A Doctor''s Incredible Battle For Survival At The South Pole', 'https://images.isbndb.com/covers/68/47/9780786866847.jpg'), + ('0375757422', 'Emma (Modern Library Classics)', 'https://images.isbndb.com/covers/74/26/9780375757426.jpg'), + ('037570745X', 'In The Fall: A Novel', 'https://images.isbndb.com/covers/74/52/9780375707452.jpg'), + ('0553290533', 'Magic (Hennessey)', 'https://images.isbndb.com/covers/05/30/9780553290530.jpg'), + ('0312989393', 'Queen Bee Of Mimosa Branch: A Novel', 'https://images.isbndb.com/covers/93/92/9780312989392.jpg'), + ('0312273045', 'Second Thyme Around (Us)', 'https://images.isbndb.com/covers/30/40/9780312273040.jpg'), + ('1853261874', 'Rubaiyat Of Omar Khayyam (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/18/79/9781853261879.jpg'), + ('0836218310', 'The Far Side ® Gallery 3', 'https://images.isbndb.com/covers/83/12/9780836218312.jpg'), + ('0552146986', 'Inconceivable', 'https://images.isbndb.com/covers/69/82/9780552146982.jpg'), + ('0340818689', 'The Dog Catcher', 'https://images.isbndb.com/covers/86/88/9780340818688.jpg'), + ('0140059032', 'Life At Blandings (Omnibus)', 'https://images.isbndb.com/covers/90/38/9780140059038.jpg'), + ('0140011706', 'Pigs Have Wings: A Blandings Story', 'https://images.isbndb.com/covers/17/08/9780140011708.jpg'), + ('0552136492', 'Hungry', 'https://images.isbndb.com/covers/64/95/9780552136495.jpg'), + ('0330335278', 'Foetal Attraction', 'https://images.isbndb.com/covers/52/70/9780330335270.jpg'), + ('0743429044', 'Altered Land', 'https://images.isbndb.com/covers/90/47/9780743429047.jpg'), + ('1857027604', 'The Wrong Kind Of Shirts 2: More Curious Quips And Accusations From The Soccer World (Bk. 2)', 'https://images.isbndb.com/covers/76/00/9781857027600.jpg'), + ('1856354008', 'Its A Long Way From Penny Apples', 'https://images.isbndb.com/covers/40/04/9781856354004.jpg'), + ('0440501601', 'Do What You Love, The Money Will Follow: Discovering Your Right Livelihood', 'https://images.isbndb.com/covers/16/02/9780440501602.jpg'), + ('0952661020', 'Survival Of The Fattest 3 Pb (v. 3)', 'https://images.isbndb.com/covers/10/23/9780952661023.jpg'), + ('0952661012', 'Survival Of The Fattest 2 Pb (v. 2)', 'https://images.isbndb.com/covers/10/16/9780952661016.jpg'), + ('0952661004', 'Survival Of The Fattest Pb (v. 1)', 'https://images.isbndb.com/covers/10/09/9780952661009.jpg'), + ('0340660112', 'Kenny Dalglish Autobiography', 'https://images.isbndb.com/covers/01/19/9780340660119.jpg'), + ('0718146999', 'How Clean Is Your House?', 'https://images.isbndb.com/covers/69/93/9780718146993.jpg'), + ('0312135866', 'The Persian Pickle Club', 'https://images.isbndb.com/covers/58/67/9780312135867.jpg'), + ('0575065613', 'Jan The Man: From Anfield To Vetch Field', 'https://images.isbndb.com/covers/56/11/9780575065611.jpg'), + ('0752800442', 'Football Against The Enemy', 'https://images.isbndb.com/covers/04/48/9780752800448.jpg'), + ('1559704950', 'All Quiet On The Orient Express', 'https://images.isbndb.com/covers/49/53/9781559704953.jpg'), + ('0399141294', 'Before Women Had Wings', 'https://images.isbndb.com/covers/12/94/9780399141294.jpg'), + ('0312869932', 'White As Snow (Fairy Tale Series)', 'https://images.isbndb.com/covers/99/39/9780312869939.jpg'), + ('0425176789', 'The Squire''s Tale: A Dame Frevisse Medieval Mystery', 'https://images.isbndb.com/covers/67/88/9780425176788.jpg'), + ('0553580310', 'The Mentor', 'https://images.isbndb.com/covers/03/10/9780553580310.jpg'), + ('0679450742', 'The All-True Travels And Adventures Of Lidie Newton', 'https://images.isbndb.com/covers/07/40/9780679450740.jpg'), + ('0060391626', 'I Know This Much Is True', 'https://images.isbndb.com/covers/16/21/9780060391621.jpg'), + ('0374527229', 'Ex Libris: Confessions Of A Common Reader', 'https://images.isbndb.com/covers/72/28/9780374527228.jpg'), + ('0312253435', 'The Cassandra Compact: A Covert-One Novel', 'https://images.isbndb.com/covers/34/31/9780312253431.jpg'), + ('0385337477', 'Lord John And The Private Matter', 'https://images.isbndb.com/covers/74/72/9780385337472.jpg'), + ('0140431217', 'Adam Bede (Penguin Classics)', 'https://images.isbndb.com/covers/12/16/9780140431216.jpg'), + ('0312986319', 'The Last Temptation: A Novel (Dr. Tony Hill And Carol Jordan Mysteries)', 'https://images.isbndb.com/covers/63/15/9780312986315.jpg'), + ('0312989385', 'The Janson Directive', 'https://images.isbndb.com/covers/93/85/9780312989385.jpg'), + ('0345409329', 'Blood And Gold (Vampire Chronicles)', 'https://images.isbndb.com/covers/93/24/9780345409324.jpg'), + ('0451411056', 'Mind Catcher', 'https://images.isbndb.com/covers/10/51/9780451411051.jpg'), + ('0349115761', 'Things Snowball', 'https://images.isbndb.com/covers/57/64/9780349115764.jpg'), + ('0446603104', 'Seduction By Design', 'https://images.isbndb.com/covers/31/02/9780446603102.jpg'), + ('0553803220', 'Babylon Rising', 'https://images.isbndb.com/covers/32/28/9780553803228.jpg'), + ('1560232234', 'To The Edge', 'https://images.isbndb.com/covers/22/30/9781560232230.jpg'), + ('1883061318', 'One Summer Night', 'https://images.isbndb.com/covers/13/19/9781883061319.jpg'), + ('0060009462', 'No Lifeguard On Duty: The Accidental Life Of The World''s First Supermodel', 'https://images.isbndb.com/covers/94/65/9780060009465.jpg'), + ('0446519790', 'Unspeakable', 'https://images.isbndb.com/covers/97/93/9780446519793.jpg'), + ('2253146889', 'Attentat', 'https://images.isbndb.com/covers/68/89/9782253146889.jpg'), + ('0340629681', 'Secret Clues (Mystery Club)', 'https://images.isbndb.com/covers/96/80/9780340629680.jpg'), + ('0552998524', 'Elusive Truffle', 'https://images.isbndb.com/covers/85/29/9780552998529.jpg'), + ('074932483X', 'Ex-wives', 'https://images.isbndb.com/covers/48/34/9780749324834.jpg'), + ('014070714X', 'As You Like It (Penguin Shakespeare)', 'https://images.isbndb.com/covers/71/44/9780140707144.jpg'), + ('0140351140', 'Around The World In Eighty Days (Puffin Classics)', 'https://images.isbndb.com/covers/11/49/9780140351149.jpg'), + ('0340672250', 'Goodbye, Johnny Thunders', 'https://images.isbndb.com/covers/22/59/9780340672259.jpg'), + ('0563384514', 'The Nation''s Favourite Comic Poems: A Selection Of Humorous Verse', 'https://images.isbndb.com/covers/45/19/9780563384519.jpg'), + ('0060921161', 'None Died In Vain: The Saga Of The American Civil War', 'https://images.isbndb.com/covers/11/63/9780060921163.jpg'), + ('0330253603', 'Wilt', 'https://images.isbndb.com/covers/36/04/9780330253604.jpg'), + ('0553131605', 'The Amityville Horror', 'https://images.isbndb.com/covers/16/04/9780553131604.jpg'), + ('044011585X', 'Crossings', 'https://images.isbndb.com/covers/58/54/9780440115854.jpg'), + ('0440200563', 'Fine Things', 'https://images.isbndb.com/covers/05/67/9780440200567.jpg'), + ('0671774662', 'Roswell: The Outsider (TV Series)', 'https://images.isbndb.com/covers/46/60/9780671774660.jpg'), + ('0425075699', 'Darkfall', 'https://images.isbndb.com/covers/56/92/9780425075692.jpg'), + ('0425080021', 'Dune', 'https://images.isbndb.com/covers/00/23/9780425080023.jpg'), + ('0425085325', 'The Vision', 'https://images.isbndb.com/covers/53/25/9780425085325.jpg'), + ('042511984X', 'The Face Of Fear', 'https://images.isbndb.com/covers/98/46/9780425119846.jpg'), + ('0060393823', 'Lost: A Novel', 'https://images.isbndb.com/covers/38/23/9780060393823.jpg'), + ('0747517797', 'Secret Life Of Laszlo Count Dracula', 'https://images.isbndb.com/covers/77/95/9780747517795.jpg'), + ('0671431285', 'A Cry In The Night', 'https://images.isbndb.com/covers/12/80/9780671431280.jpg'), + ('0889627681', 'Killing Lana', 'https://images.isbndb.com/covers/76/80/9780889627680.jpg'), + ('0771058373', 'Daughters Of Earth And Other Stories', 'https://images.isbndb.com/covers/83/70/9780771058370.jpg'), + ('0875423086', 'Tea Leaf Reading (Llewellyn''s New Age Series)', 'https://images.isbndb.com/covers/30/81/9780875423081.jpg'), + ('0345349350', 'Get Off The Unicorn', 'https://images.isbndb.com/covers/93/54/9780345349354.jpg'), + ('156504875X', '*OP As One Dead (Vampire - The Masquerade)', 'https://images.isbndb.com/covers/87/51/9781565048751.jpg'), + ('1853267333', 'Count Of Monte Cristo (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/73/38/9781853267338.jpg'), + ('0061093998', 'Homebody: A Novel', 'https://images.isbndb.com/covers/39/99/9780061093999.jpg'), + ('0812508645', 'Pastwatch: The Redemption Of Christopher Columbus', 'https://images.isbndb.com/covers/86/42/9780812508642.jpg'), + ('0671743058', 'Boy''s Life', 'https://images.isbndb.com/covers/30/55/9780671743055.jpg'), + ('0048231398', 'The Silmarillion', 'https://images.isbndb.com/covers/13/90/9780048231390.jpg'), + ('0312932014', 'Walkers (Tor Horror)', 'https://images.isbndb.com/covers/20/15/9780312932015.jpg'), + ('0812580346', 'Flashforward', 'https://images.isbndb.com/covers/03/41/9780812580341.jpg'), + ('0671793152', 'MYSTERY ON MAKATUNK ISLAND (HARDY BOYS 125)', 'https://images.isbndb.com/covers/31/59/9780671793159.jpg'), + ('0671793128', 'Carnival Of Crime (Hardy Boys 122)', 'https://images.isbndb.com/covers/31/28/9780671793128.jpg'), + ('0671641379', 'Wings Of Fear (Nancy Drew Casefiles, Case 13)', 'https://images.isbndb.com/covers/13/75/9780671641375.jpg'), + ('0671568051', 'Going Home (Nancy Drew On Campus #16)', 'https://images.isbndb.com/covers/80/54/9780671568054.jpg'), + ('0671002112', 'Love On Line (Nancy Drew On Campus #19)', 'https://images.isbndb.com/covers/21/14/9780671002114.jpg'), + ('0671730886', 'Choosing Sides (The Nancy Drew Files 84)', 'https://images.isbndb.com/covers/08/88/9780671730888.jpg'), + ('0671794795', 'MOVING TARGET: (NANCY DREW FILES 87)', 'https://images.isbndb.com/covers/47/98/9780671794798.jpg'), + ('0393037606', 'The Commodore (Vol. Book 17) (Aubrey/Maturin Novels)', 'https://images.isbndb.com/covers/76/09/9780393037609.jpg'), + ('0205319149', 'Sociology: A Down-to-Earth Approach With SuperSite (5th Edition)', 'https://images.isbndb.com/covers/91/45/9780205319145.jpg'), + ('0316235024', 'The Gift Of Fear : Survival Signals That Protect Us From Violence', 'https://images.isbndb.com/covers/50/20/9780316235020.jpg'), + ('0060952970', 'Ophelia Speaks: Adolescent Girls Write About Their Search For Self', 'https://images.isbndb.com/covers/29/76/9780060952976.jpg'), + ('0836133471', 'On Troublesome Creek: A True Story About Christian Service In The Mountains Of Kentucky', 'https://images.isbndb.com/covers/34/79/9780836133479.jpg'), + ('0743203631', 'Gap Creek : The Story Of A Marriage (Oprah''s Book Club)', 'https://images.isbndb.com/covers/36/30/9780743203630.jpg'), + ('1567187072', 'A Kitchen Witch''s Cookbook', 'https://images.isbndb.com/covers/70/76/9781567187076.jpg'), + ('1551108496', 'The Essential Dessert Cookbook', 'https://images.isbndb.com/covers/84/90/9781551108490.jpg'), + ('0831711434', 'Dream Desserts: Spectacular Recipes For Delicious Desserts', 'https://images.isbndb.com/covers/14/36/9780831711436.jpg'), + ('0067575986', 'Provence: The Beautiful Cookbook', 'https://images.isbndb.com/covers/59/87/9780067575987.jpg'), + ('0023193913', 'The Range Of Religion: An Introductory Reader', 'https://images.isbndb.com/covers/39/10/9780023193910.jpg'), + ('0028639227', 'Rendezvous With Destiny A History Of Mod', 'https://images.isbndb.com/covers/92/22/9780028639222.jpg'), + ('0517159309', 'The Tarot And You: Book And Cards', 'https://images.isbndb.com/covers/93/09/9780517159309.jpg'), + ('1557866031', 'From Modernism To Postmodernism (Blackwell Philosophy Anthologies)', 'https://images.isbndb.com/covers/60/35/9781557866035.jpg'), + ('0931432820', 'The Complete Book Of Essential Oils And Aromatherapy: Over 600 Natural, Non-Toxic And Fragrant Recipes To Create Health - Beauty - A Safe Home Environment', 'https://images.isbndb.com/covers/28/28/9780931432828.jpg'), + ('0671528068', 'God And The New Physics', 'https://images.isbndb.com/covers/80/65/9780671528065.jpg'), + ('0800629701', 'Faith Of A Physicist (Theology & The Sciences)', 'https://images.isbndb.com/covers/97/00/9780800629700.jpg'), + ('0966496027', 'The Holy Man''s War (The Mystic Isle Legends, Book 1)', 'https://images.isbndb.com/covers/60/24/9780966496024.jpg'), + ('0966496019', 'The Tribulation (The Messiah Chronicles, Book 2)', 'https://images.isbndb.com/covers/60/17/9780966496017.jpg'), + ('0929661192', 'Johns Hopkins Symptoms And Remedies: The Complete Home Medical Reference', 'https://images.isbndb.com/covers/11/93/9780929661193.jpg'), + ('0922066434', 'German Step-by-Step: A Unique, Short-Cut Method To Learn And Speak German Fluently By One Of The World''s Master Language Teachers', 'https://images.isbndb.com/covers/64/38/9780922066438.jpg'), + ('0517025302', 'Relativity: The Special And The General Theory', 'https://images.isbndb.com/covers/53/07/9780517025307.jpg'), + ('0553344803', 'Beyond The Quantum', 'https://images.isbndb.com/covers/48/06/9780553344806.jpg'), + ('0060922583', 'The Holographic Universe', 'https://images.isbndb.com/covers/25/80/9780060922580.jpg'), + ('1580060218', 'The Curse Of Cain: The Untold Story Of John Wilkes Booth', 'https://images.isbndb.com/covers/02/19/9781580060219.jpg'), + ('0195113713', 'The Book Of The Rewards Of Life: Liber Vitae Meritorum', 'https://images.isbndb.com/covers/37/16/9780195113716.jpg'), + ('0452010136', 'The Italian Renaissance Reader (Meridian)', 'https://images.isbndb.com/covers/01/30/9780452010130.jpg'), + ('0345379586', 'Parapsychology', 'https://images.isbndb.com/covers/95/80/9780345379580.jpg'), + ('0192839071', 'The Meditations Of Marcus Aurelius Antoninus: And A Selection From The Letters Of Marcus And Fronto (Oxford World''s Classics)', 'https://images.isbndb.com/covers/90/77/9780192839077.jpg'), + ('0192834274', 'Symposium (Oxford World''s Classics)', 'https://images.isbndb.com/covers/42/70/9780192834270.jpg'), + ('0899548318', 'Romantic Delicacies', 'https://images.isbndb.com/covers/83/19/9780899548319.jpg'), + ('0374523835', 'Gilgamesh: A New Rendering In English Verse', 'https://images.isbndb.com/covers/38/31/9780374523831.jpg'), + ('0140585044', 'Shelley: Selected Poetry (Poetry Library, Penguin)', 'https://images.isbndb.com/covers/50/49/9780140585049.jpg'), + ('0899088236', 'Ethics Of World Religions (Opposing Viewpoints)', 'https://images.isbndb.com/covers/82/35/9780899088235.jpg'), + ('014130751X', 'Asking For Trouble', 'https://images.isbndb.com/covers/75/10/9780141307510.jpg'), + ('0140360468', 'Looking For Alibrandi (Puffin Books)', 'https://images.isbndb.com/covers/04/62/9780140360462.jpg'), + ('0140620842', 'Gulliver''s Travels (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/49/9780140620849.jpg'), + ('0590449389', 'Miriam''s Well', 'https://images.isbndb.com/covers/93/80/9780590449380.jpg'), + ('0553278002', 'The Icarus Agenda', 'https://images.isbndb.com/covers/80/02/9780553278002.jpg'), + ('0060198508', 'Extra Virgin: A Young Woman Discovers The Italian Riviera, Where Every Month Is Enchanted', 'https://images.isbndb.com/covers/85/03/9780060198503.jpg'), + ('0451187423', 'Deadly Care', 'https://images.isbndb.com/covers/74/20/9780451187420.jpg'), + ('0671750402', 'What Cops Know', 'https://images.isbndb.com/covers/04/04/9780671750404.jpg'), + ('080411109X', 'The Hundred Secret Senses', 'https://images.isbndb.com/covers/10/96/9780804111096.jpg'), + ('0425081818', 'The Talisman', 'https://images.isbndb.com/covers/18/15/9780425081815.jpg'), + ('0345369432', 'California Gold', 'https://images.isbndb.com/covers/94/37/9780345369437.jpg'), + ('0451206460', 'Hard Evidence', 'https://images.isbndb.com/covers/64/66/9780451206466.jpg'), + ('0552999954', 'High Society', 'https://images.isbndb.com/covers/99/53/9780552999953.jpg'), + ('0140287248', 'To The Edge Of The Sky', 'https://images.isbndb.com/covers/72/40/9780140287240.jpg'), + ('0590502077', 'You Can''t Eat Your Chicken Pox, Amber Brown', 'https://images.isbndb.com/covers/20/78/9780590502078.jpg'), + ('1590790510', 'Culture Clash: Managing The Global High-Performance Team (Global Leader Series)', 'https://images.isbndb.com/covers/05/19/9781590790519.jpg'), + ('1401040861', 'Angels And Bolters: Women''s Cancer Scripts', 'https://images.isbndb.com/covers/08/64/9781401040864.jpg'), + ('0310239397', 'Essential Christianity', 'https://images.isbndb.com/covers/93/90/9780310239390.jpg'), + ('0060652926', 'Mere Christianity', 'https://images.isbndb.com/covers/29/20/9780060652920.jpg'), + ('0786865482', 'Life Strategies: Doing What Works, Doing What Matters', 'https://images.isbndb.com/covers/54/82/9780786865482.jpg'), + ('084235266X', 'Bringing Up Boys: Practical Advice And Encouragement For Those Shaping The Next Generation Of Men', 'https://images.isbndb.com/covers/26/66/9780842352666.jpg'), + ('1557739579', 'A Vow To Keep', 'https://images.isbndb.com/covers/95/75/9781557739575.jpg'), + ('0140375988', 'Singularity', 'https://images.isbndb.com/covers/59/85/9780140375985.jpg'), + ('0451194721', 'Son Of Rosemary: The Sequel To Rosemary''s Baby', 'https://images.isbndb.com/covers/47/25/9780451194725.jpg'), + ('0679448608', 'A Firing Offense', 'https://images.isbndb.com/covers/86/00/9780679448600.jpg'), + ('0553089218', 'The Web', 'https://images.isbndb.com/covers/92/19/9780553089219.jpg'), + ('0312983379', 'In Harm''s Way: The Sinking Of The U.S.S. Indianapolis And The Extraordinary Story Of Its Survivors', 'https://images.isbndb.com/covers/33/76/9780312983376.jpg'), + ('140332557X', 'The Little Guide To Happiness: How To Smile Again', 'https://images.isbndb.com/covers/55/70/9781403325570.jpg'), + ('1562012541', 'Girl School', 'https://images.isbndb.com/covers/25/40/9781562012540.jpg'), + ('0330491970', 'Nip ''n'' Tuck', 'https://images.isbndb.com/covers/19/76/9780330491976.jpg'), + ('1858285453', 'The Rough Guide To Andalucia (3rd Edition)', 'https://images.isbndb.com/covers/54/50/9781858285450.jpg'), + ('0590487442', 'The Baby-Sitter IV (Point Horror Series)', 'https://images.isbndb.com/covers/74/43/9780590487443.jpg'), + ('0590431366', 'Missing Since Monday (Point)', 'https://images.isbndb.com/covers/13/61/9780590431361.jpg'), + ('0448060043', 'Alice In Wonderland And Through The Looking Glass (Illustrated Junior Library)', 'https://images.isbndb.com/covers/00/40/9780448060040.jpg'), + ('0553213172', 'Anne Of The Island (Anne Of Green Gables, Book 3)', 'https://images.isbndb.com/covers/31/71/9780553213171.jpg'), + ('0671722905', 'The Tempest (New Folger Library)', 'https://images.isbndb.com/covers/29/06/9780671722906.jpg'), + ('0397306938', 'A Little Princess', 'https://images.isbndb.com/covers/69/30/9780397306930.jpg'), + ('0345316452', 'Be Restored To Health', 'https://images.isbndb.com/covers/64/55/9780345316455.jpg'), + ('0590853112', 'It Takes Two', 'https://images.isbndb.com/covers/31/18/9780590853118.jpg'), + ('0517051516', 'Nature Library: Ocean Life', 'https://images.isbndb.com/covers/15/11/9780517051511.jpg'), + ('1562933493', 'The Boy Who Wouldn''t Eat Breakfast (Storytime Books)', 'https://images.isbndb.com/covers/34/94/9781562933494.jpg'), + ('0448343010', 'Little Toot (All Aboard Books)', 'https://images.isbndb.com/covers/30/13/9780448343013.jpg'), + ('0816715602', 'Heathcliff''s Halloween (Heathcliff)', 'https://images.isbndb.com/covers/56/02/9780816715602.jpg'), + ('0307117421', 'Puppies Are Special Friends (Look-Look)', 'https://images.isbndb.com/covers/74/27/9780307117427.jpg'), + ('0060931418', 'Their Eyes Were Watching God', 'https://images.isbndb.com/covers/14/14/9780060931414.jpg'), + ('051720679X', 'Sue Grafton: Three Complete Novels; A, B & C: A Is For Alibi; B Is For Burglar; C Is For Corpse', 'https://images.isbndb.com/covers/67/99/9780517206799.jpg'), + ('0451194772', 'Knock ''em Dead: A Murder, She Wrote Mystery', 'https://images.isbndb.com/covers/47/70/9780451194770.jpg'), + ('0679455884', 'Home Town', 'https://images.isbndb.com/covers/58/82/9780679455882.jpg'), + ('0142000981', 'Coal: A Human History', 'https://images.isbndb.com/covers/09/84/9780142000984.jpg'), + ('0971212309', 'The Light At The End Of The World', 'https://images.isbndb.com/covers/23/05/9780971212305.jpg'), + ('0060926198', 'A Valley In Italy', 'https://images.isbndb.com/covers/61/99/9780060926199.jpg'), + ('0310254752', 'The Case For Easter: Journalist Investigates The Evidence For The Resurrection', 'https://images.isbndb.com/covers/47/51/9780310254751.jpg'), + ('044990945X', 'A Walk Across France', 'https://images.isbndb.com/covers/94/54/9780449909454.jpg'), + ('0515136557', 'The Cat Who Brought Down The House', 'https://images.isbndb.com/covers/65/55/9780515136555.jpg'), + ('0449204324', 'Blue Highways', 'https://images.isbndb.com/covers/43/20/9780449204320.jpg'), + ('0747545545', 'Barca: A People''s Passion', 'https://images.isbndb.com/covers/55/45/9780747545545.jpg'), + ('0965455572', 'Fortunes Rocks', 'https://images.isbndb.com/covers/55/72/9780965455572.jpg'), + ('3492236014', 'Die Letzten Gäste Der Saison: Roman', 'https://images.isbndb.com/covers/60/10/9783492236010.jpg'), + ('3404147952', 'Kubanische Rhapsodie', 'https://images.isbndb.com/covers/79/53/9783404147953.jpg'), + ('3404146794', 'Sand Im Getriebe', 'https://images.isbndb.com/covers/67/96/9783404146796.jpg'), + ('3257227264', 'Die Häupter Meiner Lieben', 'https://images.isbndb.com/covers/72/60/9783257227260.jpg'), + ('3442429552', 'Die Puppenspieler: Roman', 'https://images.isbndb.com/covers/95/54/9783442429554.jpg'), + ('3596148731', 'Der Traum Vom Paradies.', 'https://images.isbndb.com/covers/87/38/9783596148738.jpg'), + ('349222962X', 'Das Winterhaus: Roman', 'https://images.isbndb.com/covers/96/23/9783492229623.jpg'), + ('3492235816', 'Das Achte Gebot: Kriminalroman (Hanne Wilhelmsen-Reihe)', 'https://images.isbndb.com/covers/58/15/9783492235815.jpg'), + ('0312320248', 'The Blessing Stone', 'https://images.isbndb.com/covers/02/49/9780312320249.jpg'), + ('3442726735', 'Der Wird Euch Mit Feuer Taufen: Roman', 'https://images.isbndb.com/covers/67/38/9783442726738.jpg'), + ('340414550X', 'Unter Verschluss: Thriller', 'https://images.isbndb.com/covers/55/08/9783404145508.jpg'), + ('3404148703', 'Mord Im Tal Der Könige.', 'https://images.isbndb.com/covers/87/07/9783404148707.jpg'), + ('3404145518', 'Patrick Von Irland', 'https://images.isbndb.com/covers/55/15/9783404145515.jpg'), + ('3404149122', 'Exponentialdrift: Roman', 'https://images.isbndb.com/covers/91/24/9783404149124.jpg'), + ('3596144868', 'Hannas Töchter', 'https://images.isbndb.com/covers/48/60/9783596144860.jpg'), + ('3426603136', 'Schuldlos Schuldig', 'https://images.isbndb.com/covers/31/30/9783426603130.jpg'), + ('3423026294', 'Die Verwandlung: Leipzig 1916', 'https://images.isbndb.com/covers/62/91/9783423026291.jpg'), + ('0804114498', 'American Tabloid', 'https://images.isbndb.com/covers/44/93/9780804114493.jpg'), + ('3442447038', 'Wellenbrecher', 'https://images.isbndb.com/covers/70/39/9783442447039.jpg'), + ('3442448336', 'Rühr Mich Nicht An, Sonderausgabe', 'https://images.isbndb.com/covers/83/33/9783442448333.jpg'), + ('3404144171', 'Der Geteilte Liebhaber', 'https://images.isbndb.com/covers/41/74/9783404144174.jpg'), + ('3404144694', 'Fackeln Des Teufels', 'https://images.isbndb.com/covers/46/93/9783404144693.jpg'), + ('3423201509', 'Die Weiße Löwin', 'https://images.isbndb.com/covers/15/06/9783423201506.jpg'), + ('3442442532', 'Falsetto', 'https://images.isbndb.com/covers/25/39/9783442442539.jpg'), + ('0020198906', 'Joshua: A Parable For Today', 'https://images.isbndb.com/covers/89/01/9780020198901.jpg'), + ('1578155584', '3 STEPHANIE PLUM NOVELS', 'https://images.isbndb.com/covers/55/83/9781578155583.jpg'), + ('0312082975', 'A Nation Of Victims: The Decay Of The American Character', 'https://images.isbndb.com/covers/29/70/9780312082970.jpg'), + ('0451527569', 'The House Of Mirth (Signet Classics)', 'https://images.isbndb.com/covers/75/61/9780451527561.jpg'), + ('0938317288', 'Keepers Of The Earth (Hell Yes, Texas Women''s Series)', 'https://images.isbndb.com/covers/72/89/9780938317289.jpg'), + ('0140089225', 'The Bone People: A Novel', 'https://images.isbndb.com/covers/92/26/9780140089226.jpg'), + ('0679449787', 'Neanderthal', 'https://images.isbndb.com/covers/97/82/9780679449782.jpg'), + ('0385425473', 'Wild Swans: Three Daughters Of China', 'https://images.isbndb.com/covers/54/76/9780385425476.jpg'), + ('0312959842', 'Murder In Scorpio (An Elizabeth Chase Mystery)', 'https://images.isbndb.com/covers/98/45/9780312959845.jpg'), + ('0312962940', 'The Cold Heart Of Capricorn', 'https://images.isbndb.com/covers/29/44/9780312962944.jpg'), + ('0061097152', 'Circles Of Confusion: A Claire Montrose Mystery (Claire Montrose Mysteries)', 'https://images.isbndb.com/covers/71/57/9780061097157.jpg'), + ('061812702X', 'Village School (The Fairacre Series #1)', 'https://images.isbndb.com/covers/70/23/9780618127023.jpg'), + ('082177364X', 'Finders Keepers', 'https://images.isbndb.com/covers/36/42/9780821773642.jpg'), + ('0440236878', 'An English Murder', 'https://images.isbndb.com/covers/68/70/9780440236870.jpg'), + ('0060963190', 'Making Sense Of Adoption: A Parent''s Guide', 'https://images.isbndb.com/covers/31/94/9780060963194.jpg'), + ('0743448642', 'Whispers And Lies', 'https://images.isbndb.com/covers/86/42/9780743448642.jpg'), + ('0553801449', 'Incriminating Evidence', 'https://images.isbndb.com/covers/14/46/9780553801446.jpg'), + ('0140263144', 'Rumpole And The Angel Of Death', 'https://images.isbndb.com/covers/31/45/9780140263145.jpg'), + ('0892813571', 'Women In Celtic Myth: Tales Of Extraordinary Women From The Ancient Celtic Tradition', 'https://images.isbndb.com/covers/35/75/9780892813575.jpg'), + ('0811214028', 'Cronopios And Famas', 'https://images.isbndb.com/covers/40/25/9780811214025.jpg'), + ('0679757899', 'East, West: Stories', 'https://images.isbndb.com/covers/78/94/9780679757894.jpg'), + ('157322877X', 'Light House', 'https://images.isbndb.com/covers/87/70/9781573228770.jpg'), + ('0385319525', 'The Pirate''s Daughter', 'https://images.isbndb.com/covers/95/22/9780385319522.jpg'), + ('0590418262', 'Sadie And The Snowman', 'https://images.isbndb.com/covers/82/63/9780590418263.jpg'), + ('0821769367', 'The Night Before', 'https://images.isbndb.com/covers/93/62/9780821769362.jpg'), + ('0743400399', 'Blood And Fog (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/03/98/9780743400398.jpg'), + ('0689866259', 'Buffy The Vampire Slayer: Chosen', 'https://images.isbndb.com/covers/62/58/9780689866258.jpg'), + ('0671042599', 'The Monster Book', 'https://images.isbndb.com/covers/25/92/9780671042592.jpg'), + ('0743427440', 'Tales Of The Slayer, Volume 2 (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/74/49/9780743427449.jpg'), + ('0743400453', 'Tales Of The Slayer, Volume 1 (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/04/59/9780743400459.jpg'), + ('0812564901', 'Dream A Little Dream: A Tale Of Myth And Moonshine', 'https://images.isbndb.com/covers/49/07/9780812564907.jpg'), + ('0812539265', 'Dream West', 'https://images.isbndb.com/covers/92/64/9780812539264.jpg'), + ('0440221919', 'The Blood Countess', 'https://images.isbndb.com/covers/19/13/9780440221913.jpg'), + ('1891153889', 'Buffy The Vampire Slayer: Core Rulebook (Buffy The Vampire Slayer Core Rulebooks)', 'https://images.isbndb.com/covers/38/84/9781891153884.jpg'), + ('068985918X', '"Once More, With Feeling": The Script Book', 'https://images.isbndb.com/covers/91/82/9780689859182.jpg'), + ('1569715416', 'Buffy The Vampire Slayer: Spike & Dru', 'https://images.isbndb.com/covers/54/13/9781569715413.jpg'), + ('0743418921', 'Spike And Dru: Pretty Maids All In A Row (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/89/28/9780743418928.jpg'), + ('0373482078', 'Silhouette Christmas Stories: Home For Christmas/ Let It Snow/ Starbright /Under The Mistletoe', 'https://images.isbndb.com/covers/20/78/9780373482078.jpg'), + ('0843129689', 'The Complete Murphy''s Law', 'https://images.isbndb.com/covers/96/87/9780843129687.jpg'), + ('0399525777', 'Writing The Wave: Inspired Rides For Aspiring Writers', 'https://images.isbndb.com/covers/57/73/9780399525773.jpg'), + ('0762401400', 'The Book Of The Sun', 'https://images.isbndb.com/covers/14/06/9780762401406.jpg'), + ('0762401397', 'The Book Of The Moon', 'https://images.isbndb.com/covers/13/90/9780762401390.jpg'), + ('0821223275', 'The Ancient Egypt Pack: A Three-Dimensional Celebration Of Egyptian Mythology, Culture, Art, Life And Afterlife', 'https://images.isbndb.com/covers/32/77/9780821223277.jpg'), + ('0785811338', 'Celtic Oracle', 'https://images.isbndb.com/covers/13/36/9780785811336.jpg'), + ('0316287555', 'Day Of Confession', 'https://images.isbndb.com/covers/75/55/9780316287555.jpg'), + ('0590433512', 'The Greek Gods', 'https://images.isbndb.com/covers/35/18/9780590433518.jpg'), + ('0345320530', 'Casino Gambling For The Winner', 'https://images.isbndb.com/covers/05/37/9780345320537.jpg'), + ('0486227456', 'The Illuminated Alphabet (Dover Children''s Activity Books)', 'https://images.isbndb.com/covers/74/50/9780486227450.jpg'), + ('0789709651', '10 Minute Guide To HTML 3.2', 'https://images.isbndb.com/covers/96/53/9780789709653.jpg'), + ('0141307129', 'The Road To El Dorado: Junior Novelization', 'https://images.isbndb.com/covers/71/21/9780141307121.jpg'), + ('0062732749', 'Cartoon Guide To The Environment', 'https://images.isbndb.com/covers/27/43/9780062732743.jpg'), + ('1586630326', 'Tutankhamun: The Eternal Splendor Of The Boy Pharaoh', 'https://images.isbndb.com/covers/03/24/9781586630324.jpg'), + ('0451458311', 'Out Of Avalon: An Anthology Of Old Magic & New Myths', 'https://images.isbndb.com/covers/83/15/9780451458315.jpg'), + ('0679885447', 'Witches & Magic-Makers (Eyewitness Books (Trade))', 'https://images.isbndb.com/covers/54/43/9780679885443.jpg'), + ('0762404590', 'Vampires 3-D Journal', 'https://images.isbndb.com/covers/45/99/9780762404599.jpg'), + ('051512558X', 'The Overseer', 'https://images.isbndb.com/covers/55/80/9780515125580.jpg'), + ('0743211995', 'An Hour Before Daylight : Memories Of A Rural Boyhood', 'https://images.isbndb.com/covers/19/94/9780743211994.jpg'), + ('0761530878', 'The Sims: Livin'' Large: Prima''s Official Strategy Guide', 'https://images.isbndb.com/covers/08/79/9780761530879.jpg'), + ('0761537295', 'The Sims: Hot Date: Prima''s Official Strategy Guide', 'https://images.isbndb.com/covers/72/98/9780761537298.jpg'), + ('0761539220', 'The Sims: Vacation (Prima''s Official Strategy Guide)', 'https://images.isbndb.com/covers/92/23/9780761539223.jpg'), + ('088038204X', 'Tower Of Darkness (Dungeons And Dragons Adventure Book)', 'https://images.isbndb.com/covers/20/45/9780880382045.jpg'), + ('0525463062', 'The Road To El Dorado', 'https://images.isbndb.com/covers/30/61/9780525463061.jpg'), + ('076071682X', 'Latin Stuff And Nonsense', 'https://images.isbndb.com/covers/68/23/9780760716823.jpg'), + ('0515132136', 'The Jury (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/21/37/9780515132137.jpg'), + ('076530127X', 'Daughter Of Ireland', 'https://images.isbndb.com/covers/12/77/9780765301277.jpg'), + ('0140431314', 'Jude The Obscure', 'https://images.isbndb.com/covers/13/15/9780140431315.jpg'), + ('0140430547', 'A Tale Of Two Cities (Penguin English Library)', 'https://images.isbndb.com/covers/05/47/9780140430547.jpg'), + ('0312154895', 'A Cab Called Reliable: A Novel', 'https://images.isbndb.com/covers/48/99/9780312154899.jpg'), + ('1410755568', 'Forever Yours, Tomcat', 'https://images.isbndb.com/covers/55/68/9781410755568.jpg'), + ('0316816531', 'Perfect Harmony', 'https://images.isbndb.com/covers/65/33/9780316816533.jpg'), + ('0156005492', 'Under The Black Flag: The Romance And The Reality Of Life Among The Pirates (Harvest Book)', 'https://images.isbndb.com/covers/54/94/9780156005494.jpg'), + ('038533446X', 'Lost Girls', 'https://images.isbndb.com/covers/44/64/9780385334464.jpg'), + ('0805059555', '"O" Is For Outlaw', 'https://images.isbndb.com/covers/95/57/9780805059557.jpg'), + ('0805036504', 'N Is For Noose (A Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/65/03/9780805036503.jpg'), + ('0060005009', 'Elvis The Rooster Almost Goes To Heaven (I Can Read Book 3)', 'https://images.isbndb.com/covers/50/09/9780060005009.jpg'), + ('0786831685', 'Simba''s A-Z (Disneys)', 'https://images.isbndb.com/covers/16/85/9780786831685.jpg'), + ('1578562589', 'Having A Mary Heart In A Martha World: Finding Intimacy With God In The Busyness Of Life (Revised Edition With New Bible Study)', 'https://images.isbndb.com/covers/25/89/9781578562589.jpg'), + ('0671024183', 'Morgan''s Run', 'https://images.isbndb.com/covers/41/85/9780671024185.jpg'), + ('0590448501', 'What Do You Do With A Kangaroo?', 'https://images.isbndb.com/covers/85/05/9780590448505.jpg'), + ('055305807X', 'Great Christmas Contest', 'https://images.isbndb.com/covers/80/79/9780553058079.jpg'), + ('0831746807', 'Hidden Pictures: Monster Madness', 'https://images.isbndb.com/covers/68/03/9780831746803.jpg'), + ('0373706863', 'The Water Baby: Family Man (Harlequin Superromance No. 686)', 'https://images.isbndb.com/covers/68/60/9780373706860.jpg'), + ('0671690558', 'Witch', 'https://images.isbndb.com/covers/05/57/9780671690557.jpg'), + ('0140173188', 'The Money Culture', 'https://images.isbndb.com/covers/31/85/9780140173185.jpg'), + ('1558172696', 'Working : My Life As A Prostitute', 'https://images.isbndb.com/covers/26/92/9781558172692.jpg'), + ('0399519483', 'A World Of Baby Names', 'https://images.isbndb.com/covers/94/82/9780399519482.jpg'), + ('1562650033', 'God''s Tribesman: The Rochunga Pudaite Story', 'https://images.isbndb.com/covers/00/32/9781562650032.jpg'), + ('0451173392', 'The Carbohydrate Addict''s Diet: The Lifelong Solution To Yo-Yo Dieting (Signet)', 'https://images.isbndb.com/covers/33/93/9780451173393.jpg'), + ('0679434046', 'In The Kitchen With Rosie: Oprah''s Favorite Recipes', 'https://images.isbndb.com/covers/40/47/9780679434047.jpg'), + ('1568846444', 'Gardening For Dummies', 'https://images.isbndb.com/covers/64/46/9781568846446.jpg'), + ('0895266067', 'Media Mischief And Misdeeds', 'https://images.isbndb.com/covers/60/64/9780895266064.jpg'), + ('0380004658', 'Bermuda Triangle', 'https://images.isbndb.com/covers/46/52/9780380004652.jpg'), + ('3462030531', 'Die Informanten', 'https://images.isbndb.com/covers/05/32/9783462030532.jpg'), + ('3442438799', 'Das Imperium', 'https://images.isbndb.com/covers/87/92/9783442438792.jpg'), + ('3442427983', 'Mein Ist Die Rache', 'https://images.isbndb.com/covers/79/87/9783442427987.jpg'), + ('0553155962', 'Bones On Black Spruce Mountain (A Bantam-Skylark Book)', 'https://images.isbndb.com/covers/59/69/9780553155969.jpg'), + ('0024080918', 'Psychology Work Today', 'https://images.isbndb.com/covers/09/12/9780024080912.jpg'), + ('027362198X', 'Key Management Solutions: 50 Leading Edge Solutions To Executive Problems (Financial Times Management Masterclass Series)', 'https://images.isbndb.com/covers/19/80/9780273621980.jpg'), + ('1885027060', 'Geezerhood: What To Expect From Life Now That You''re As Old As Dirt (Truth About Life Humor Books)', 'https://images.isbndb.com/covers/70/61/9781885027061.jpg'), + ('0312962185', 'The Cleveland Connection (Milan Jacovich Mysteries)', 'https://images.isbndb.com/covers/21/80/9780312962180.jpg'), + ('1932173102', 'My Brother''s Voice: How A Young Hungarian Boy Survived The Holocaust: A True Story', 'https://images.isbndb.com/covers/31/09/9781932173109.jpg'), + ('0373029578', 'The Cinderella Trap (Harlequin Romance, No 2957)', 'https://images.isbndb.com/covers/95/70/9780373029570.jpg'), + ('0380788500', 'Legends Walking: A Novel Of The Athanor', 'https://images.isbndb.com/covers/85/07/9780380788507.jpg'), + ('1558172297', 'Azarius', 'https://images.isbndb.com/covers/22/96/9781558172296.jpg'), + ('0373035039', 'Baby In A Million (Harlequin Romance , No 3503)', 'https://images.isbndb.com/covers/50/38/9780373035038.jpg'), + ('1878702033', 'Winterfire', 'https://images.isbndb.com/covers/20/36/9781878702036.jpg'), + ('0618124918', 'The Best American Mystery Stories 2001 (The Best American Series)', 'https://images.isbndb.com/covers/49/16/9780618124916.jpg'), + ('0380782332', 'Kiss An Angel', 'https://images.isbndb.com/covers/23/38/9780380782338.jpg'), + ('0553124773', 'Nebula Winners: 12', 'https://images.isbndb.com/covers/47/74/9780553124774.jpg'), + ('0698116844', 'The Cat Ate My Gymsuit', 'https://images.isbndb.com/covers/68/49/9780698116849.jpg'), + ('0440700132', 'Just As Long As Wer''e Together', 'https://images.isbndb.com/covers/01/35/9780440700135.jpg'), + ('0553278215', 'The Pearl', 'https://images.isbndb.com/covers/82/17/9780553278217.jpg'), + ('0743428625', 'Celeste (Gemini Series)', 'https://images.isbndb.com/covers/86/20/9780743428620.jpg'), + ('067174500X', 'Single White Female', 'https://images.isbndb.com/covers/50/04/9780671745004.jpg'), + ('0440213428', 'Who Killed My Daughter?', 'https://images.isbndb.com/covers/34/20/9780440213420.jpg'), + ('0671726587', 'What''s Wrong With Valerie?', 'https://images.isbndb.com/covers/65/84/9780671726584.jpg'), + ('0590679090', 'Jumanji', 'https://images.isbndb.com/covers/90/91/9780590679091.jpg'), + ('3453864050', 'Die überzeugende Bewerbungsmappe. Anschreiben. Lebenslauf. Zeugnisse.', 'https://images.isbndb.com/covers/40/54/9783453864054.jpg'), + ('3453864026', 'Die Optimale Bewerbung', 'https://images.isbndb.com/covers/40/23/9783453864023.jpg'), + ('0440406404', 'The Summer I Shrunk My Grandmother', 'https://images.isbndb.com/covers/64/02/9780440406402.jpg'), + ('0929923901', 'Wild Animals (Draw Science Series)', 'https://images.isbndb.com/covers/39/01/9780929923901.jpg'), + ('0446512478', 'Dear Stranger', 'https://images.isbndb.com/covers/24/73/9780446512473.jpg'), + ('0385417845', 'Woman Without A Past', 'https://images.isbndb.com/covers/78/46/9780385417846.jpg'), + ('0385312121', 'The Secret Of The Villa Mimosa', 'https://images.isbndb.com/covers/21/27/9780385312127.jpg'), + ('0553273280', 'Rich And Reckless', 'https://images.isbndb.com/covers/32/81/9780553273281.jpg'), + ('0425177351', 'Bio-Strike (Tom Clancy''s Power Plays, Book 4)', 'https://images.isbndb.com/covers/73/58/9780425177358.jpg'), + ('0312912153', 'Deadly Blessing', 'https://images.isbndb.com/covers/21/54/9780312912154.jpg'), + ('0671836862', 'Code Conquistador', 'https://images.isbndb.com/covers/68/63/9780671836863.jpg'), + ('1558020837', 'The Falstaff Cross', 'https://images.isbndb.com/covers/08/32/9781558020832.jpg'), + ('055311767X', 'Imperial 109', 'https://images.isbndb.com/covers/76/77/9780553117677.jpg'), + ('0312974256', 'Welcome To Temptation', 'https://images.isbndb.com/covers/42/51/9780312974251.jpg'), + ('0449222470', 'Justice For Some', 'https://images.isbndb.com/covers/24/78/9780449222478.jpg'), + ('052341899X', 'Hitler''s Daughter', 'https://images.isbndb.com/covers/89/95/9780523418995.jpg'), + ('0689846223', 'Anne Of Green Gables (Aladdin Classics)', 'https://images.isbndb.com/covers/62/29/9780689846229.jpg'), + ('0070504253', 'The McGraw-Hill Handbook Of Business Letters', 'https://images.isbndb.com/covers/42/57/9780070504257.jpg'), + ('067088782X', 'Woman''s Day Crafts For The Home', 'https://images.isbndb.com/covers/78/28/9780670887828.jpg'), + ('1893010023', 'Pot Stories For The Soul', 'https://images.isbndb.com/covers/00/24/9781893010024.jpg'), + ('0743456246', 'Hamlet II: Ophelia''s Revenge', 'https://images.isbndb.com/covers/62/41/9780743456241.jpg'), + ('0141439556', 'Wuthering Heights (Penguin Classics)', 'https://images.isbndb.com/covers/95/56/9780141439556.jpg'), + ('0679425268', 'Sole Survivor', 'https://images.isbndb.com/covers/52/67/9780679425267.jpg'), + ('0446608815', 'Pop Goes The Weasel', 'https://images.isbndb.com/covers/88/17/9780446608817.jpg'), + ('0515128546', 'Tears Of The Moon (Irish Trilogy, Book 2)', 'https://images.isbndb.com/covers/85/43/9780515128543.jpg'), + ('0440984696', 'Tiger Eyes', 'https://images.isbndb.com/covers/46/96/9780440984696.jpg'), + ('0515114006', 'Private Scandals', 'https://images.isbndb.com/covers/40/03/9780515114003.jpg'), + ('0375401601', 'Vittorio The Vampire: New Tales Of The Vampires', 'https://images.isbndb.com/covers/16/02/9780375401602.jpg'), + ('0446610348', 'Knight In My Bed', 'https://images.isbndb.com/covers/03/46/9780446610346.jpg'), + ('0517431491', 'The Historical Encyclopedia Of World War II', 'https://images.isbndb.com/covers/14/98/9780517431498.jpg'), + ('0300069766', 'Maps And History: Constructing Images Of The Past', 'https://images.isbndb.com/covers/97/61/9780300069761.jpg'), + ('0140178406', 'Aunt Dimity''s Death (Aunt Dimity Mystery)', 'https://images.isbndb.com/covers/84/01/9780140178401.jpg'), + ('0399149392', 'Chesapeake Blue (Quinn Brothers)', 'https://images.isbndb.com/covers/93/99/9780399149399.jpg'), + ('0312875681', 'Forests Of The Heart (Newford)', 'https://images.isbndb.com/covers/56/88/9780312875688.jpg'), + ('0385413041', 'Beach Music', 'https://images.isbndb.com/covers/30/46/9780385413046.jpg'), + ('0385308078', 'Midnight Lemonade', 'https://images.isbndb.com/covers/80/76/9780385308076.jpg'), + ('0395771382', 'So Far From The Bamboo Grove: Mcdougal Littell Literature Connections', 'https://images.isbndb.com/covers/13/89/9780395771389.jpg'), + ('0451523385', 'Wuthering Heights (Signet Classics)', 'https://images.isbndb.com/covers/33/89/9780451523389.jpg'), + ('0140440224', 'The Canterbury Tales: In Modern English (Penguin Classics)', 'https://images.isbndb.com/covers/02/25/9780140440225.jpg'), + ('0871138611', 'The Adventures Of Miles And Isabel', 'https://images.isbndb.com/covers/86/13/9780871138613.jpg'), + ('0380789663', 'Green Shadows, White Whale: A Novel Of Ray Bradbury''s Adventures Making Moby Dick With John Huston In Ireland', 'https://images.isbndb.com/covers/96/65/9780380789665.jpg'), + ('0380789590', 'Quicker Than The Eye', 'https://images.isbndb.com/covers/95/97/9780380789597.jpg'), + ('0316769495', 'Franny And Zooey', 'https://images.isbndb.com/covers/94/95/9780316769495.jpg'), + ('1551662809', 'Just For The Summer', 'https://images.isbndb.com/covers/28/00/9781551662800.jpg'), + ('1410784924', 'Myths Of The Super Parent: Finding The Power Of Real Parenting', 'https://images.isbndb.com/covers/49/26/9781410784926.jpg'), + ('0670880728', 'Bridget Jones''s Diary', 'https://images.isbndb.com/covers/07/20/9780670880720.jpg'), + ('0385472943', 'The Runaway Jury', 'https://images.isbndb.com/covers/29/44/9780385472944.jpg'), + ('0679452354', 'Still Me', 'https://images.isbndb.com/covers/23/55/9780679452355.jpg'), + ('0142003727', 'Revenge Of The Middle-Aged Woman: A Novel', 'https://images.isbndb.com/covers/37/25/9780142003725.jpg'), + ('2253036218', 'Nouveaux Contes De La Folie Ordinaire', 'https://images.isbndb.com/covers/62/10/9782253036210.jpg'), + ('2290308404', 'Différentes Saisons', 'https://images.isbndb.com/covers/84/00/9782290308400.jpg'), + ('2738107915', 'Les Nourritures Affectives', 'https://images.isbndb.com/covers/79/16/9782738107916.jpg'), + ('2844121578', 'Mersonne Ne M''aime', 'https://images.isbndb.com/covers/15/78/9782844121578.jpg'), + ('2264002190', 'Génération X', 'https://images.isbndb.com/covers/21/98/9782264002198.jpg'), + ('2266072242', 'L''Aliéniste', 'https://images.isbndb.com/covers/22/43/9782266072243.jpg'), + ('1591299357', 'Releasing The Demons', 'https://images.isbndb.com/covers/93/56/9781591299356.jpg'), + ('0373703384', 'Mariah', 'https://images.isbndb.com/covers/33/88/9780373703388.jpg'), + ('0671047515', 'Hell''s Kitchen', 'https://images.isbndb.com/covers/75/11/9780671047511.jpg'), + ('0553581767', 'Manhattan Is My Beat (Rune Trilogy)', 'https://images.isbndb.com/covers/17/68/9780553581768.jpg'), + ('039308700X', 'Helter Skelter: The True Story Of The Manson Murders (25th Anniversary Edition)', 'https://images.isbndb.com/covers/70/00/9780393087000.jpg'), + ('0553801341', 'From The Corner Of His Eye', 'https://images.isbndb.com/covers/13/47/9780553801347.jpg'), + ('0375803017', 'The Halloween Tree', 'https://images.isbndb.com/covers/30/17/9780375803017.jpg'), + ('0671039725', 'Carrie', 'https://images.isbndb.com/covers/97/21/9780671039721.jpg'), + ('0345389425', 'Violin', 'https://images.isbndb.com/covers/94/28/9780345389428.jpg'), + ('0671660209', 'Love Stinks: The Romantic''s Guide To Breaking Up Without Breaking Down', 'https://images.isbndb.com/covers/02/08/9780671660208.jpg'), + ('0345422317', 'The Genesis Code', 'https://images.isbndb.com/covers/23/16/9780345422316.jpg'), + ('0140169598', 'Naked Beneath My Clothes: Tales Of A Revealing Nature', 'https://images.isbndb.com/covers/95/91/9780140169591.jpg'), + ('0671883429', 'Recovery (Star Trek, Book 73)', 'https://images.isbndb.com/covers/34/23/9780671883423.jpg'), + ('0671722891', 'The Taming Of The Shrew (The New Folger Library)', 'https://images.isbndb.com/covers/28/90/9780671722890.jpg'), + ('0441115985', 'Conan 05: Conan The Adventurer', 'https://images.isbndb.com/covers/59/83/9780441115983.jpg'), + ('0553234706', 'Comp. Guide To/tarot', 'https://images.isbndb.com/covers/47/01/9780553234701.jpg'), + ('067153873X', 'Twilight''s End (Star Trek, Book 77)', 'https://images.isbndb.com/covers/87/36/9780671538736.jpg'), + ('0671869124', 'The Better Man (Star Trek, Book 72)', 'https://images.isbndb.com/covers/91/20/9780671869120.jpg'), + ('0451142934', 'Skeleton Crew (Signet)', 'https://images.isbndb.com/covers/29/31/9780451142931.jpg'), + ('068805935X', 'How Did They Do That?', 'https://images.isbndb.com/covers/93/54/9780688059354.jpg'), + ('0786862564', 'Make The Connection: Ten Steps To A Better Body And A Better Life', 'https://images.isbndb.com/covers/25/66/9780786862566.jpg'), + ('0967575613', 'Tales From The Dark Tower', 'https://images.isbndb.com/covers/56/12/9780967575612.jpg'), + ('0345388623', 'Elephants'' Graveyard', 'https://images.isbndb.com/covers/86/29/9780345388629.jpg'), + ('0445407158', 'Nobody''s Perfect', 'https://images.isbndb.com/covers/71/52/9780445407152.jpg'), + ('0553568787', 'Carriage Trade', 'https://images.isbndb.com/covers/87/83/9780553568783.jpg'), + ('0345382528', 'Highwayman And Mr. Dickens: An Account Of The Strange Events Of The Medusa Murderers', 'https://images.isbndb.com/covers/25/28/9780345382528.jpg'), + ('0446363049', 'Vortex', 'https://images.isbndb.com/covers/30/44/9780446363044.jpg'), + ('0671017241', 'Fountain Society', 'https://images.isbndb.com/covers/72/48/9780671017248.jpg'), + ('0849939518', 'Snowboarding ...to The Extreme: Rippin'' (Short Cuts Series)', 'https://images.isbndb.com/covers/95/18/9780849939518.jpg'), + ('0740738089', 'Blueprint For Disaster: A Get Fuzzy Collection', 'https://images.isbndb.com/covers/80/81/9780740738081.jpg'), + ('0451526929', 'Hamlet (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/69/22/9780451526922.jpg'), + ('0446676209', 'Bosom Buddies: Lessons And Laughter On Breast Health And Cancer', 'https://images.isbndb.com/covers/62/05/9780446676205.jpg'), + ('0747553327', 'The Bluebird Cafe', 'https://images.isbndb.com/covers/33/28/9780747553328.jpg'), + ('0571134173', 'The Burning Book', 'https://images.isbndb.com/covers/41/75/9780571134175.jpg'), + ('0865733279', 'Quilting (Seams Sew Easy)', 'https://images.isbndb.com/covers/32/75/9780865733275.jpg'), + ('0451408462', 'Drop Dead Gorgeous', 'https://images.isbndb.com/covers/84/64/9780451408464.jpg'), + ('0446517399', 'There Was A Little Girl', 'https://images.isbndb.com/covers/73/93/9780446517393.jpg'), + ('0440173922', 'The Ring', 'https://images.isbndb.com/covers/39/22/9780440173922.jpg'), + ('0061031992', 'A Theory Of Relativity', 'https://images.isbndb.com/covers/19/91/9780061031991.jpg'), + ('0156394014', 'A Haunted House And Other Short Stories', 'https://images.isbndb.com/covers/40/17/9780156394017.jpg'), + ('0517703858', 'Spiritual Parenting: A Guide To Understanding And Nurturing The Heart Of Your Child', 'https://images.isbndb.com/covers/38/54/9780517703854.jpg'), + ('0425159671', 'Dream Stalker (Wind River Reservation Mystery)', 'https://images.isbndb.com/covers/96/75/9780425159675.jpg'), + ('1551668084', 'Storm Warning', 'https://images.isbndb.com/covers/80/86/9781551668086.jpg'), + ('0843948892', 'Savage Honor (Savage (Leisure Paperback))', 'https://images.isbndb.com/covers/88/99/9780843948899.jpg'), + ('038081014X', 'The Last Good Man', 'https://images.isbndb.com/covers/01/47/9780380810147.jpg'), + ('344244991X', 'Cave Canem: Ein Felidae-Roman', 'https://images.isbndb.com/covers/99/10/9783442449910.jpg'), + ('051513306X', 'The Shape Of Snakes', 'https://images.isbndb.com/covers/30/66/9780515133066.jpg'), + ('0805065393', 'Awake', 'https://images.isbndb.com/covers/53/98/9780805065398.jpg'), + ('0764226770', 'Coming Home', 'https://images.isbndb.com/covers/67/79/9780764226779.jpg'), + ('0425195244', 'Beauty Queen (Lear Family Trilogy, Book 2)', 'https://images.isbndb.com/covers/52/46/9780425195246.jpg'), + ('0060527412', 'For The First Time', 'https://images.isbndb.com/covers/74/19/9780060527419.jpg'), + ('042519213X', 'On What Grounds (Coffeehouse Mysteries, No. 1)', 'https://images.isbndb.com/covers/21/39/9780425192139.jpg'), + ('0671042513', 'The Last Chance Cafe : A Novel', 'https://images.isbndb.com/covers/25/16/9780671042516.jpg'), + ('045121188X', 'A Distinction Of Blood: A Mystery Of Georgian England', 'https://images.isbndb.com/covers/18/80/9780451211880.jpg'), + ('0446611468', 'A Place Called Rainwater (Missouri, Book 3)', 'https://images.isbndb.com/covers/14/66/9780446611466.jpg'), + ('0451211790', 'Louisa And The Missing Heiress: The First Louisa May Alcott Mystery (Louisa May Alcott Mystery Series)', 'https://images.isbndb.com/covers/17/98/9780451211798.jpg'), + ('0451408020', 'Forbidden Magic', 'https://images.isbndb.com/covers/80/20/9780451408020.jpg'), + ('0373225628', 'Protecting His Own (Harlequin Intrigue 562)', 'https://images.isbndb.com/covers/56/20/9780373225620.jpg'), + ('0373289138', 'Man Of The Mist (Harlequin Historical)', 'https://images.isbndb.com/covers/91/34/9780373289134.jpg'), + ('0060531231', 'When He Was Wicked (Bridgerton Family Series)', 'https://images.isbndb.com/covers/12/32/9780060531232.jpg'), + ('037322558X', 'Never Too Late (Harlequin Intrigue #558, 43 Light St. #21)', 'https://images.isbndb.com/covers/55/83/9780373225583.jpg'), + ('0312990030', 'The Dragon King''s Palace: A Novel (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/00/39/9780312990039.jpg'), + ('0373224648', 'Heat Of Passion (Harlequin Intrigue)', 'https://images.isbndb.com/covers/46/47/9780373224647.jpg'), + ('0451211839', 'Skylark', 'https://images.isbndb.com/covers/18/35/9780451211835.jpg'), + ('0821760955', 'Highland Honor', 'https://images.isbndb.com/covers/09/56/9780821760956.jpg'), + ('0425104346', 'Darkfall', 'https://images.isbndb.com/covers/43/47/9780425104347.jpg'), + ('0425198057', 'The London Blitz Murders', 'https://images.isbndb.com/covers/80/56/9780425198056.jpg'), + ('0451210646', 'Undone', 'https://images.isbndb.com/covers/06/47/9780451210647.jpg'), + ('0440224551', 'Blood Of Roses', 'https://images.isbndb.com/covers/45/56/9780440224556.jpg'), + ('0843953780', 'Eyeliner Of The Gods', 'https://images.isbndb.com/covers/37/87/9780843953787.jpg'), + ('0440237556', 'The Dark Highlander (The Highlander Series, Book 5)', 'https://images.isbndb.com/covers/75/56/9780440237556.jpg'), + ('0373245025', 'Cattleman''s Honor (Winchester Brides) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/50/24/9780373245024.jpg'), + ('0373226667', 'The Duke''s Covert Mission (The Carradignes: A Royal Mystery) (Harlequin Intrigue # 666)', 'https://images.isbndb.com/covers/66/65/9780373226665.jpg'), + ('0373224613', 'Ransom My Heart (Home To Texas) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/46/16/9780373224616.jpg'), + ('0373226772', 'When Lightning Strikes (Sign Of The Gray Wolf #1) (Harlequin Intrigue #677)', 'https://images.isbndb.com/covers/67/71/9780373226771.jpg'), + ('0373226144', 'Familiar Lullaby (Fear Familiar, Book 13) (Harlequin Intrigue Series #614)', 'https://images.isbndb.com/covers/61/46/9780373226146.jpg'), + ('037312273X', 'To Marry McAllister (Bachelor Cousins) (Harlequin Presents)', 'https://images.isbndb.com/covers/27/38/9780373122738.jpg'), + ('0373225806', 'Little Boy Lost (Secret Identity) (Harlequin Intrigue, 580)', 'https://images.isbndb.com/covers/58/04/9780373225804.jpg'), + ('0373225857', 'The Agent''s Secret Child (Texas Confidential, Book 2) (Harlequin Intrigue Series #585)', 'https://images.isbndb.com/covers/58/59/9780373225859.jpg'), + ('0505522837', 'The Magic Of Christmas (Heartspell)', 'https://images.isbndb.com/covers/28/32/9780505522832.jpg'), + ('0061084476', 'Misbegotten', 'https://images.isbndb.com/covers/44/78/9780061084478.jpg'), + ('0061000205', 'Father & Son', 'https://images.isbndb.com/covers/02/01/9780061000201.jpg'), + ('0590251627', 'Claudia And Mean Janine (Baby-Sitters Club #7)', 'https://images.isbndb.com/covers/16/24/9780590251624.jpg'), + ('0590251619', 'Kristy''s Big Day (Baby-Sitters Club # 6)', 'https://images.isbndb.com/covers/16/17/9780590251617.jpg'), + ('0590251600', 'Dawn And The Impossible Three (The Baby-Sitters Club #5)', 'https://images.isbndb.com/covers/16/00/9780590251600.jpg'), + ('1551669420', 'Mad About The Man', 'https://images.isbndb.com/covers/94/27/9781551669427.jpg'), + ('0152017682', 'The Darkangel: The Darkangel Trilogy, Volume I', 'https://images.isbndb.com/covers/76/82/9780152017682.jpg'), + ('0425176614', 'Nightswimmer', 'https://images.isbndb.com/covers/66/10/9780425176610.jpg'), + ('1581960085', 'My Secret Boyfriend (Young Adult Fiction)', 'https://images.isbndb.com/covers/00/82/9781581960082.jpg'), + ('0515134511', 'The Killing Dance (Anita Blake, Vampire Hunter, Book 6)', 'https://images.isbndb.com/covers/45/13/9780515134513.jpg'), + ('0486277879', 'The Way Of The World (Dover Thrift Editions)', 'https://images.isbndb.com/covers/78/75/9780486277875.jpg'), + ('1932344268', 'Does God Have A Remote Control', 'https://images.isbndb.com/covers/42/64/9781932344264.jpg'), + ('0967024250', 'What Is Becoming Clearer To Me', 'https://images.isbndb.com/covers/42/57/9780967024257.jpg'), + ('096702420X', 'Angel On Board', 'https://images.isbndb.com/covers/42/02/9780967024202.jpg'), + ('0446520802', 'The Notebook', 'https://images.isbndb.com/covers/08/05/9780446520805.jpg'), + ('0375500995', 'What We Keep', 'https://images.isbndb.com/covers/09/92/9780375500992.jpg'), + ('0062502514', 'Healing Words: The Power Of Prayer And The Practice Of Medicine', 'https://images.isbndb.com/covers/25/13/9780062502513.jpg'), + ('0425168468', 'Practical Magic', 'https://images.isbndb.com/covers/84/62/9780425168462.jpg'), + ('0553227467', 'Red Dragon', 'https://images.isbndb.com/covers/74/68/9780553227468.jpg'), + ('0140372628', 'The Mysterious Adventures Of Sherlock Holmes (Puffin Classics)', 'https://images.isbndb.com/covers/26/25/9780140372625.jpg'), + ('0394728815', 'Blow-Up: And Other Stories', 'https://images.isbndb.com/covers/88/10/9780394728810.jpg'), + ('0963930400', 'Secrets To Running A Successful Business : How To Have Fun Getting More Business', 'https://images.isbndb.com/covers/04/08/9780963930408.jpg'), + ('0963930419', 'Living Life As You Always Dreamed', 'https://images.isbndb.com/covers/04/15/9780963930415.jpg'), + ('0515130966', 'Riptide (FBI Series)', 'https://images.isbndb.com/covers/09/66/9780515130966.jpg'), + ('1551667339', 'White Lies', 'https://images.isbndb.com/covers/73/31/9781551667331.jpg'), + ('1571430237', 'Treasure: The Trials Of A Teenage Terror And Her Mom', 'https://images.isbndb.com/covers/02/36/9781571430236.jpg'), + ('0590474804', 'Call Waiting (Point Horror Series)', 'https://images.isbndb.com/covers/48/01/9780590474801.jpg'), + ('0060152583', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/25/81/9780060152581.jpg'), + ('0374512647', 'The Ripening Seed', 'https://images.isbndb.com/covers/26/44/9780374512644.jpg'), + ('0394743040', 'Ravishing Of Lol Stein', 'https://images.isbndb.com/covers/30/42/9780394743042.jpg'), + ('0394623266', 'Destroy She Said', 'https://images.isbndb.com/covers/32/69/9780394623269.jpg'), + ('0020191200', 'A Night At The Movies: Or, You Must Remember This (Collier Fiction)', 'https://images.isbndb.com/covers/12/09/9780020191209.jpg'), + ('0394744756', 'Kiss Of The Spider Woman', 'https://images.isbndb.com/covers/47/59/9780394744759.jpg'), + ('0394552369', 'The War: A Memoir', 'https://images.isbndb.com/covers/23/61/9780394552361.jpg'), + ('0375757147', 'Shrub : The Short But Happy Political Life Of George W. Bush', 'https://images.isbndb.com/covers/71/43/9780375757143.jpg'), + ('0440206146', 'Black Sunday', 'https://images.isbndb.com/covers/61/49/9780440206149.jpg'), + ('0060392436', 'The Anti-Aging Zone', 'https://images.isbndb.com/covers/24/37/9780060392437.jpg'), + ('0805064222', 'The Good German: A Novel', 'https://images.isbndb.com/covers/42/23/9780805064223.jpg'), + ('0140274316', 'This (BBC)', 'https://images.isbndb.com/covers/43/18/9780140274318.jpg'), + ('0609607804', 'I''m Next: The Strange Journey Of America''s Most Unlikely Superhero', 'https://images.isbndb.com/covers/78/00/9780609607800.jpg'), + ('3548265383', 'Vom Kriege', 'https://images.isbndb.com/covers/53/84/9783548265384.jpg'), + ('0618129014', 'The Lord Of The Rings (Movie Art Cover)', 'https://images.isbndb.com/covers/90/10/9780618129010.jpg'), + ('055338189X', 'Love, Greg & Lauren', 'https://images.isbndb.com/covers/18/94/9780553381894.jpg'), + ('0385509529', 'You Are Not A Stranger Here (Today Show Book Club #2)', 'https://images.isbndb.com/covers/95/27/9780385509527.jpg'), + ('0821601806', 'Clotel: Or, The President''s Daughter : A Narrative Of Slave Life In The United States', 'https://images.isbndb.com/covers/18/08/9780821601808.jpg'), + ('0345329732', 'Final Payments', 'https://images.isbndb.com/covers/97/38/9780345329738.jpg'), + ('1563521083', 'If Forever Came Tomorrow: These Are The Things I''d Like To Do Today', 'https://images.isbndb.com/covers/10/89/9781563521089.jpg'), + ('0449200256', 'The Power Of Positive Thinking', 'https://images.isbndb.com/covers/02/54/9780449200254.jpg'), + ('0684195976', 'The Body Farm', 'https://images.isbndb.com/covers/59/71/9780684195971.jpg'), + ('042506073X', 'Great Entertainers', 'https://images.isbndb.com/covers/07/35/9780425060735.jpg'), + ('0312971494', 'Black And White: A Novel', 'https://images.isbndb.com/covers/14/96/9780312971496.jpg'), + ('0451112121', 'Kate: The Life Of Katharine Hepburn (Signet Book)', 'https://images.isbndb.com/covers/21/25/9780451112125.jpg'), + ('0515123536', 'Before I Wake', 'https://images.isbndb.com/covers/35/31/9780515123531.jpg'), + ('037324195X', 'Every Cowgirl''s Dream (Silhouette Special Edition , No 1195)', 'https://images.isbndb.com/covers/19/58/9780373241958.jpg'), + ('0312954700', 'Husband, Lover, Spy', 'https://images.isbndb.com/covers/47/03/9780312954703.jpg'), + ('0671672495', 'Symphony', 'https://images.isbndb.com/covers/24/92/9780671672492.jpg'), + ('0425092917', 'The Accidental Tourist', 'https://images.isbndb.com/covers/29/10/9780425092910.jpg'), + ('0449911519', 'The Secret History', 'https://images.isbndb.com/covers/15/18/9780449911518.jpg'), + ('0440236754', 'Sunset In St. Tropez', 'https://images.isbndb.com/covers/67/57/9780440236757.jpg'), + ('0881660949', 'Grandma Knows Best, But No One Ever Listens', 'https://images.isbndb.com/covers/09/44/9780881660944.jpg'), + ('0451173317', 'The Waste Lands (The Dark Tower, Book 3)', 'https://images.isbndb.com/covers/33/17/9780451173317.jpg'), + ('0451160525', 'The Dark Tower The Gunslinger', 'https://images.isbndb.com/covers/05/22/9780451160522.jpg'), + ('0743446593', 'Detour: My Bipolar Road Trip In 4-D', 'https://images.isbndb.com/covers/65/94/9780743446594.jpg'), + ('068483068X', 'Gone With The Wind', 'https://images.isbndb.com/covers/06/81/9780684830681.jpg'), + ('0759695377', 'Celestial Voices', 'https://images.isbndb.com/covers/53/75/9780759695375.jpg'), + ('0340512660', 'Pigs Ahoy!', 'https://images.isbndb.com/covers/26/61/9780340512661.jpg'), + ('0099623404', 'ROOFWORLD', 'https://images.isbndb.com/covers/34/03/9780099623403.jpg'), + ('014035008X', 'Little Women (Puffin Classics)', 'https://images.isbndb.com/covers/00/81/9780140350081.jpg'), + ('0684813440', 'Joshua In The Holy Land', 'https://images.isbndb.com/covers/34/48/9780684813448.jpg'), + ('0684813459', 'Joshua And The Children', 'https://images.isbndb.com/covers/34/55/9780684813455.jpg'), + ('0684813467', 'Joshua: A Parable For Today', 'https://images.isbndb.com/covers/34/62/9780684813462.jpg'), + ('0553283111', 'QUIET AS A NUN (Jemima Shore Mysteries)', 'https://images.isbndb.com/covers/31/12/9780553283112.jpg'), + ('0030448565', 'Doonesbury''s Greatest Hits', 'https://images.isbndb.com/covers/85/60/9780030448560.jpg'), + ('0140188479', 'Black Lamb And Grey Falcon: A Journey Through Yugoslavia (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/84/79/9780140188479.jpg'), + ('0446393681', 'The Theory Of Everything', 'https://images.isbndb.com/covers/36/83/9780446393683.jpg'), + ('067177879X', 'Cyberpunk: Outlaws And Hackers On The Computer Frontier', 'https://images.isbndb.com/covers/87/98/9780671778798.jpg'), + ('0553238744', 'How To Break Your Addiction To A Person', 'https://images.isbndb.com/covers/87/47/9780553238747.jpg'), + ('0020199600', 'The Great Gatsby', 'https://images.isbndb.com/covers/96/01/9780020199601.jpg'), + ('0553210211', 'Wuthering Heights', 'https://images.isbndb.com/covers/02/17/9780553210217.jpg'), + ('0743211227', 'The Prize Winner Of Defiance, Ohio : How My Mother Raised 10 Kids On 25 Words Or Less', 'https://images.isbndb.com/covers/12/22/9780743211222.jpg'), + ('0553560441', 'The Road To Omaha', 'https://images.isbndb.com/covers/04/42/9780553560442.jpg'), + ('0445405627', 'The Maul And The Pear Tree: The Ratcliffe Highway Murders, 1811', 'https://images.isbndb.com/covers/56/22/9780445405622.jpg'), + ('0440201705', 'Heaven And Hell', 'https://images.isbndb.com/covers/17/00/9780440201700.jpg'), + ('0061090565', 'Under Fire: An American Story', 'https://images.isbndb.com/covers/05/61/9780061090561.jpg'), + ('0553297422', 'The Deceiver', 'https://images.isbndb.com/covers/74/23/9780553297423.jpg'), + ('0515117617', 'Happy Are Those Who Mourn (Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/76/15/9780515117615.jpg'), + ('0449217264', 'Alaska: A Novel', 'https://images.isbndb.com/covers/72/69/9780449217269.jpg'), + ('0345298349', 'Gorky Park (Arkady Renko Novels)', 'https://images.isbndb.com/covers/83/48/9780345298348.jpg'), + ('0345372050', 'You Just Don''t Understand: Women And Men In Conversation', 'https://images.isbndb.com/covers/20/55/9780345372055.jpg'), + ('0809130157', 'Living Simply In An Anxious World: An Invitation To Perspective', 'https://images.isbndb.com/covers/01/53/9780809130153.jpg'), + ('0060919833', 'Love, Medicine And Miracles: Lessons Learned About Self-Healing From A Surgeon''s Experience With Exceptional Patients', 'https://images.isbndb.com/covers/98/32/9780060919832.jpg'), + ('0553199803', 'Day Of The Jackal', 'https://images.isbndb.com/covers/98/02/9780553199802.jpg'), + ('0553269100', 'Lighthouse', 'https://images.isbndb.com/covers/91/09/9780553269109.jpg'), + ('0345311183', 'C.B. Greenfield: The Piano Bird', 'https://images.isbndb.com/covers/11/84/9780345311184.jpg'), + ('0553236776', 'Last Respects', 'https://images.isbndb.com/covers/67/74/9780553236774.jpg'), + ('0553236687', 'Parting Breath', 'https://images.isbndb.com/covers/66/82/9780553236682.jpg'), + ('155369046X', 'Summer In A Red Mustang With Cookies', 'https://images.isbndb.com/covers/04/67/9781553690467.jpg'), + ('0312971303', 'Catch Me', 'https://images.isbndb.com/covers/13/04/9780312971304.jpg'), + ('067188414X', 'Foreign Foes (Star Trek The Next Generation, No 31)', 'https://images.isbndb.com/covers/41/47/9780671884147.jpg'), + ('0440215404', 'Sins Of The Blood', 'https://images.isbndb.com/covers/54/00/9780440215400.jpg'), + ('1863736522', 'Seasonal Adjustments', 'https://images.isbndb.com/covers/65/27/9781863736527.jpg'), + ('1869503368', 'Letters From The Fire', 'https://images.isbndb.com/covers/33/69/9781869503369.jpg'), + ('1589610024', 'The Pleasure Of His Company: A Kendra Clayton Mystery', 'https://images.isbndb.com/covers/00/26/9781589610026.jpg'), + ('0425195473', 'Remember When', 'https://images.isbndb.com/covers/54/75/9780425195475.jpg'), + ('0899681069', 'Pollyanna', 'https://images.isbndb.com/covers/10/61/9780899681061.jpg'), + ('0802707815', 'A Falcon For The Hawks', 'https://images.isbndb.com/covers/78/19/9780802707819.jpg'), + ('0241894840', 'Until The Colours Fade', 'https://images.isbndb.com/covers/48/42/9780241894842.jpg'), + ('0002219476', 'The Way To Dusty Death', 'https://images.isbndb.com/covers/94/71/9780002219471.jpg'), + ('1551660369', 'Desires & Deceptions', 'https://images.isbndb.com/covers/03/63/9781551660363.jpg'), + ('0778321150', 'Down To The Bone', 'https://images.isbndb.com/covers/11/56/9780778321156.jpg'), + ('0860207161', 'Find The Piglet (Find It Board Books)', 'https://images.isbndb.com/covers/71/60/9780860207160.jpg'), + ('0671955543', 'The Blue Poodle Mystery (Bobbsey Twins, No.1)', 'https://images.isbndb.com/covers/55/40/9780671955540.jpg'), + ('0140307532', 'THE DIDAKOI ( TV Tie-n To ''Kizzy'')', 'https://images.isbndb.com/covers/75/35/9780140307535.jpg'), + ('0140328335', 'The Ghost On The Hill (Plus)', 'https://images.isbndb.com/covers/83/32/9780140328332.jpg'), + ('0006716067', 'Harold And Bella, Jammy And Me (Lions)', 'https://images.isbndb.com/covers/60/68/9780006716068.jpg'), + ('000692347X', 'The Clue Of The Broken Locket (Nancy Drew, Book 11)', 'https://images.isbndb.com/covers/34/73/9780006923473.jpg'), + ('085079188X', 'Cartoons: 43rd Series', 'https://images.isbndb.com/covers/18/84/9780850791884.jpg'), + ('0723237840', 'Farmyard Noises: Shaped Board Book (Potter Shaped Board Book)', 'https://images.isbndb.com/covers/78/46/9780723237846.jpg'), + ('0001360469', 'Dressing (Collins Baby & Toddler: Babe Board Books)', 'https://images.isbndb.com/covers/04/64/9780001360464.jpg'), + ('0721406173', 'First Ladybird Key Words Picture Dictionary (Bk. 1)', 'https://images.isbndb.com/covers/61/76/9780721406176.jpg'), + ('0948535156', 'The Lettermen In The Garden', 'https://images.isbndb.com/covers/51/54/9780948535154.jpg'), + ('059070592X', 'Postman Pat''s Wet Day', 'https://images.isbndb.com/covers/59/29/9780590705929.jpg'), + ('0001374869', 'Baby Plays (Collins Baby & Toddler)', 'https://images.isbndb.com/covers/48/67/9780001374867.jpg'), + ('0861122488', 'Open And Say', 'https://images.isbndb.com/covers/24/86/9780861122486.jpg'), + ('0307122034', 'Thumpity Thump Gets Dressed', 'https://images.isbndb.com/covers/20/32/9780307122032.jpg'), + ('1852700483', 'Whose Dinner', 'https://images.isbndb.com/covers/04/85/9781852700485.jpg'), + ('0750009861', 'Clothes', 'https://images.isbndb.com/covers/98/67/9780750009867.jpg'), + ('0721407501', 'First Picture Book: Toys (First Picture Books)', 'https://images.isbndb.com/covers/75/00/9780721407500.jpg'), + ('1858282160', 'The Internet And World Wide Web: The Rough Guide, Version 2.0 (2nd Ed)', 'https://images.isbndb.com/covers/21/69/9781858282169.jpg'), + ('0140276904', 'Jemima J', 'https://images.isbndb.com/covers/69/09/9780140276909.jpg'), + ('3453868315', 'Black Hawk Down. Kein Mann Bleibt Zurück', 'https://images.isbndb.com/covers/83/11/9783453868311.jpg'), + ('3442450020', 'JR', 'https://images.isbndb.com/covers/00/22/9783442450022.jpg'), + ('3404148665', 'Illuminati', 'https://images.isbndb.com/covers/86/60/9783404148660.jpg'), + ('0967819946', 'Final Copy', 'https://images.isbndb.com/covers/99/45/9780967819945.jpg'), + ('3630869459', 'Die Asche Meiner Mutter. Irische Erinnerungen', 'https://images.isbndb.com/covers/94/52/9783630869452.jpg'), + ('1551666650', 'Hurricane Bay', 'https://images.isbndb.com/covers/66/55/9781551666655.jpg'), + ('1558745157', 'The Lost Boy: A Foster Child''s Search For The Love Of A Family', 'https://images.isbndb.com/covers/51/55/9781558745155.jpg'), + ('0802139612', 'Dumped', 'https://images.isbndb.com/covers/96/10/9780802139610.jpg'), + ('0812966627', '10th Grade: A Novel', 'https://images.isbndb.com/covers/66/26/9780812966626.jpg'), + ('0806943238', 'Two-In-One Crosswords: Hard And Easy Clues For Every Puzzle', 'https://images.isbndb.com/covers/32/37/9780806943237.jpg'), + ('096737930X', 'Rock Picker''s Guide To Lake Superior''s North Shore (North Woods Naturalist Guides)', 'https://images.isbndb.com/covers/93/02/9780967379302.jpg'), + ('0531162192', 'Storm Chasers (Watts Library)', 'https://images.isbndb.com/covers/21/94/9780531162194.jpg'), + ('0439083699', 'Franklin''s Neighborhood (Franklin (Scholastic Paperback))', 'https://images.isbndb.com/covers/36/90/9780439083690.jpg'), + ('0060739487', 'Wringer (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/85/9780060739485.jpg'), + ('0060739495', 'Walk Two Moons (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/92/9780060739492.jpg'), + ('0060739444', 'Julie Of The Wolves (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/47/9780060739447.jpg'), + ('0743437314', 'The Merchant Of Death (Pendragon Series #1)', 'https://images.isbndb.com/covers/73/18/9780743437318.jpg'), + ('006073941X', 'Bridge To Terabithia (Summer Reading Edition)', 'https://images.isbndb.com/covers/94/16/9780060739416.jpg'), + ('0439633737', 'Dragon''s Nest (Dragons Of Deltora, Book 1)', 'https://images.isbndb.com/covers/37/34/9780439633734.jpg'), + ('0439253233', 'The Forests Of Silence (Deltora Quest, 1)', 'https://images.isbndb.com/covers/32/39/9780439253239.jpg'), + ('034536208X', 'Fair And Tender Ladies', 'https://images.isbndb.com/covers/20/87/9780345362087.jpg'), + ('0553230212', 'The Parsifal Mosaic', 'https://images.isbndb.com/covers/02/15/9780553230215.jpg'), + ('1579903002', 'The Weekend Crafter: Rubber Stamp Carving: Techniques, Designs & Projects', 'https://images.isbndb.com/covers/30/08/9781579903008.jpg'), + ('0762727942', 'The Letterboxer''s Companion', 'https://images.isbndb.com/covers/79/40/9780762727940.jpg'), + ('1590591224', 'GeoCaching: Hike And Seek With Your GPS (Technology In Action Series)', 'https://images.isbndb.com/covers/12/22/9781590591222.jpg'), + ('0787108960', 'The Hitchhiker''s Guide To The Galaxy: Live In Concert', 'https://images.isbndb.com/covers/89/60/9780787108960.jpg'), + ('0812522133', 'Trouble And Her Friends', 'https://images.isbndb.com/covers/21/36/9780812522136.jpg'), + ('014028852X', 'Difficult Conversations: How To Discuss What Matters Most', 'https://images.isbndb.com/covers/85/20/9780140288520.jpg'), + ('1887424148', 'Attention Deficit Disorder : A Different Perception', 'https://images.isbndb.com/covers/41/41/9781887424141.jpg'), + ('0060928174', 'After The Affair: Healing The Pain And Rebuilding Trust When A Partner Has Been Unfaithful', 'https://images.isbndb.com/covers/81/79/9780060928179.jpg'), + ('0425063879', 'Northern Girl', 'https://images.isbndb.com/covers/38/73/9780425063873.jpg'), + ('1563890895', 'The Sandman Vol. 5: A Game Of You', 'https://images.isbndb.com/covers/08/95/9781563890895.jpg'), + ('0425064921', 'Dancers Of Arun', 'https://images.isbndb.com/covers/49/24/9780425064924.jpg'), + ('0425061957', 'Watchtower', 'https://images.isbndb.com/covers/19/54/9780425061954.jpg'), + ('1878424483', 'The Four Agreements Companion Book : Using The Four Agreements To Master The Dream Of Your Life', 'https://images.isbndb.com/covers/44/88/9781878424488.jpg'), + ('0789205106', 'Cats Up Close (Tiny Folios)', 'https://images.isbndb.com/covers/51/00/9780789205100.jpg'), + ('0679445358', 'If... (Questions For The Game Of Life)', 'https://images.isbndb.com/covers/53/57/9780679445357.jpg'), + ('1861870612', 'Words On Strength And Perserverance (Helen Exley Giftbook)', 'https://images.isbndb.com/covers/06/12/9781861870612.jpg'), + ('0804831904', 'The Code Of The Samurai: A Modern Translation Of The Bushido Shoshinshu Of Taira Shigesuke', 'https://images.isbndb.com/covers/19/01/9780804831901.jpg'), + ('0517163446', 'Meow Te Ching By Meow Tzu', 'https://images.isbndb.com/covers/34/43/9780517163443.jpg'), + ('1565123778', 'In Code: A Mathematical Journey', 'https://images.isbndb.com/covers/37/79/9781565123779.jpg'), + ('0553578731', 'I, Jedi (Star Wars)', 'https://images.isbndb.com/covers/87/37/9780553578737.jpg'), + ('0020292651', 'Be Expert With Map And Compass: The Complete Orienteering Handbook', 'https://images.isbndb.com/covers/26/54/9780020292654.jpg'), + ('0898866294', 'Wilderness Navigation: Finding Your Way Using Map, Compass, Altimeter, And GPS', 'https://images.isbndb.com/covers/62/92/9780898866292.jpg'), + ('1904492355', 'Matabele Gold', 'https://images.isbndb.com/covers/23/51/9781904492351.jpg'), + ('0440118700', 'Cry For The Strangers', 'https://images.isbndb.com/covers/87/01/9780440118701.jpg'), + ('0380710897', 'Among Schoolchildren', 'https://images.isbndb.com/covers/08/98/9780380710898.jpg'), + ('0615116426', 'Marching Through Culpeper : A Novel Of Culpeper, Virginia, Crossroads Of The Civil War', 'https://images.isbndb.com/covers/64/26/9780615116426.jpg'), + ('0590457241', 'You Be The Jury: Courtroom III', 'https://images.isbndb.com/covers/72/48/9780590457248.jpg'), + ('0553242172', 'Red Pony The', 'https://images.isbndb.com/covers/21/71/9780553242171.jpg'), + ('0553800949', 'Final Target', 'https://images.isbndb.com/covers/09/44/9780553800944.jpg'), + ('0330328913', 'Consider The Lily', 'https://images.isbndb.com/covers/89/13/9780330328913.jpg'), + ('0738867543', 'Tripping The Ballerina', 'https://images.isbndb.com/covers/75/40/9780738867540.jpg'), + ('0349105715', 'Complicity', 'https://images.isbndb.com/covers/57/10/9780349105710.jpg'), + ('057114456X', 'Immortality', 'https://images.isbndb.com/covers/45/63/9780571144563.jpg'), + ('3257205082', 'Maigret Und Die Junge Tote', 'https://images.isbndb.com/covers/50/84/9783257205084.jpg'), + ('0849955815', 'God''s Promises And Answers For Your Life', 'https://images.isbndb.com/covers/58/15/9780849955815.jpg'), + ('0590101129', 'War Of The Worlds', 'https://images.isbndb.com/covers/11/27/9780590101127.jpg'), + ('069811406X', 'Fat Chance', 'https://images.isbndb.com/covers/40/67/9780698114067.jpg'), + ('0373612605', 'Just One Look (Cooper''s Corner, Book 9)', 'https://images.isbndb.com/covers/26/04/9780373612604.jpg'), + ('0140430083', 'David Copperfield (Penguin Classics)', 'https://images.isbndb.com/covers/00/80/9780140430080.jpg'), + ('1582340722', 'Scepticism Inc.', 'https://images.isbndb.com/covers/07/22/9781582340722.jpg'), + ('0373822030', 'Stevie''s Chase (American Heroes Against All Odds: California #5)', 'https://images.isbndb.com/covers/20/34/9780373822034.jpg'), + ('0060000791', 'The Treasure Of Montsegur: A Novel Of The Cathars', 'https://images.isbndb.com/covers/07/90/9780060000790.jpg'), + ('006050918X', 'City Of The Beasts', 'https://images.isbndb.com/covers/91/87/9780060509187.jpg'), + ('0140124381', 'Red Dwarf: Better Than Life', 'https://images.isbndb.com/covers/43/85/9780140124385.jpg'), + ('039305747X', 'Crescent: A Novel', 'https://images.isbndb.com/covers/74/78/9780393057478.jpg'), + ('0689303173', 'The Dark Is Rising (The Dark Is Rising, Book 2)', 'https://images.isbndb.com/covers/31/73/9780689303173.jpg'), + ('0140441654', 'Utopia (Penguin Classics)', 'https://images.isbndb.com/covers/16/59/9780140441659.jpg'), + ('0140158014', 'Ramming The Shears', 'https://images.isbndb.com/covers/80/14/9780140158014.jpg'), + ('0140118047', 'Blindfold Horse Memoirs Of A Persian', 'https://images.isbndb.com/covers/80/49/9780140118049.jpg'), + ('0732264472', 'The World From Italy: Football, Food And Politics', 'https://images.isbndb.com/covers/44/75/9780732264475.jpg'), + ('0394759753', 'The Complete Book Of Massage', 'https://images.isbndb.com/covers/97/53/9780394759753.jpg'), + ('0910147140', 'World Treasury Of Great Poems', 'https://images.isbndb.com/covers/71/49/9780910147149.jpg'), + ('0895778742', 'The Complete Book Of Embroidery', 'https://images.isbndb.com/covers/87/41/9780895778741.jpg'), + ('0821723502', 'Abracadabra', 'https://images.isbndb.com/covers/35/00/9780821723500.jpg'), + ('0345418271', 'Foucault''s Pendulum', 'https://images.isbndb.com/covers/82/72/9780345418272.jpg'), + ('0534005411', 'Poems: Wadsworth Handbook And Anthology', 'https://images.isbndb.com/covers/54/12/9780534005412.jpg'), + ('0804114277', 'Prizes', 'https://images.isbndb.com/covers/42/71/9780804114271.jpg'), + ('0671795570', 'Foursome: Foursome', 'https://images.isbndb.com/covers/55/73/9780671795573.jpg'), + ('0312955006', 'The Concrete Blonde (Harry Bosch)', 'https://images.isbndb.com/covers/50/07/9780312955007.jpg'), + ('0440236169', 'Birdman', 'https://images.isbndb.com/covers/61/60/9780440236160.jpg'), + ('0425178552', 'Wake Up Little Susie', 'https://images.isbndb.com/covers/85/53/9780425178553.jpg'), + ('0312278284', 'The Easter Parade: A Novel', 'https://images.isbndb.com/covers/82/81/9780312278281.jpg'), + ('014071491X', 'Titus Andronicus (The Pelican Shakespeare)', 'https://images.isbndb.com/covers/49/13/9780140714913.jpg'), + ('1902825969', 'The Bluffer''s Guide To Rugby: Bluff Your Way In Rugby (Bluffers Guides)', 'https://images.isbndb.com/covers/59/60/9781902825960.jpg'), + ('0380803240', 'Talon Of The Silver Hawk (Conclave Of Shadows, Book 1)', 'https://images.isbndb.com/covers/32/48/9780380803248.jpg'), + ('0843952407', 'The Doorkeepers', 'https://images.isbndb.com/covers/24/07/9780843952407.jpg'), + ('0553235400', 'Pigman', 'https://images.isbndb.com/covers/54/01/9780553235401.jpg'), + ('0679723110', 'Grendel', 'https://images.isbndb.com/covers/31/10/9780679723110.jpg'), + ('0140430350', 'Vanity Fair: A Novel Without A Hero (Penguin English Library)', 'https://images.isbndb.com/covers/03/56/9780140430356.jpg'), + ('037325024X', 'Out Of The Blue (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/02/40/9780373250240.jpg'), + ('0743463544', 'The Man I Should Have Married', 'https://images.isbndb.com/covers/35/46/9780743463546.jpg'), + ('193152713X', 'A Journey To Hell And Back', 'https://images.isbndb.com/covers/71/32/9781931527132.jpg'), + ('1400060222', 'Getting Mother''s Body: A Novel', 'https://images.isbndb.com/covers/02/21/9781400060221.jpg'), + ('0061057908', 'Acorna''s Quest (Harper Prism SF)', 'https://images.isbndb.com/covers/79/08/9780061057908.jpg'), + ('0061050946', 'Acorna''s People', 'https://images.isbndb.com/covers/09/47/9780061050947.jpg'), + ('0061044431', 'The Salaryman''s Wife', 'https://images.isbndb.com/covers/44/34/9780061044434.jpg'), + ('0802140149', 'I, Lucifer: Finally, The Other Side Of The Story', 'https://images.isbndb.com/covers/01/42/9780802140142.jpg'), + ('006093140X', 'The Golden Notebook: Perennial Classics Edition', 'https://images.isbndb.com/covers/14/07/9780060931407.jpg'), + ('0345351878', 'Restoree', 'https://images.isbndb.com/covers/18/76/9780345351876.jpg'), + ('0441003389', 'Freedom''s Landing', 'https://images.isbndb.com/covers/33/89/9780441003389.jpg'), + ('0441005314', 'Freedom''s Choice', 'https://images.isbndb.com/covers/53/14/9780441005314.jpg'), + ('0061057894', 'Acorna: The Unicorn Girl', 'https://images.isbndb.com/covers/78/92/9780061057892.jpg'), + ('0380720868', 'Shadow Of A Dark Queen (The Serpentwar Saga, Book 1)', 'https://images.isbndb.com/covers/08/66/9780380720866.jpg'), + ('078670621X', 'Endurance: Shackleton''s Incredible Voyage', 'https://images.isbndb.com/covers/62/11/9780786706211.jpg'), + ('0393315606', 'Morality Play', 'https://images.isbndb.com/covers/56/08/9780393315608.jpg'), + ('0060936231', 'Soul Mountain', 'https://images.isbndb.com/covers/62/35/9780060936235.jpg'), + ('0156002108', 'Towing Jehovah (Harvest Book)', 'https://images.isbndb.com/covers/21/03/9780156002103.jpg'), + ('0786864400', 'The First Victim', 'https://images.isbndb.com/covers/44/09/9780786864409.jpg'), + ('0140178139', 'Leviathan', 'https://images.isbndb.com/covers/81/35/9780140178135.jpg'), + ('0440219930', 'Eyes Of A Stranger (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/99/34/9780440219934.jpg'), + ('0395640229', 'Pacific War Diary, 1942­-1945: The Secret Diary Of An American Sailor', 'https://images.isbndb.com/covers/02/27/9780395640227.jpg'), + ('0060178248', 'The Passion Dream Book (SIGNED)', 'https://images.isbndb.com/covers/82/46/9780060178246.jpg'), + ('1573220663', 'The Light Of The Falling Stars', 'https://images.isbndb.com/covers/06/68/9781573220668.jpg'), + ('0140139400', 'The Spectator Bird (Contemporary American Fiction)', 'https://images.isbndb.com/covers/94/02/9780140139402.jpg'), + ('0671682083', 'Terms Of Endearment', 'https://images.isbndb.com/covers/20/88/9780671682088.jpg'), + ('9151830485', 'Aprilhaxan (Swedish Edition)', 'https://images.isbndb.com/covers/04/83/9789151830483.jpg'), + ('0192816276', 'The Secret Agent: A Simple Tale (World''s Classics)', 'https://images.isbndb.com/covers/62/76/9780192816276.jpg'), + ('0330353713', 'Shuttlecock', 'https://images.isbndb.com/covers/37/17/9780330353717.jpg'), + ('0060503475', 'Isabel''s Daughter: A Novel', 'https://images.isbndb.com/covers/34/75/9780060503475.jpg'), + ('1400060117', 'A Round-Heeled Woman: My Late-Life Adventures In Sex And Romance', 'https://images.isbndb.com/covers/01/15/9781400060115.jpg'), + ('081296800X', 'Getting Mother''s Body: A Novel', 'https://images.isbndb.com/covers/80/02/9780812968002.jpg'), + ('0449908798', 'Duplicate Keys', 'https://images.isbndb.com/covers/87/92/9780449908792.jpg'), + ('0743255224', 'Name All The Animals: A Memoir', 'https://images.isbndb.com/covers/52/26/9780743255226.jpg'), + ('0399146113', 'It''s Not About The Bike: My Journey Back To Life', 'https://images.isbndb.com/covers/61/14/9780399146114.jpg'), + ('0312291523', 'The Dog Who Spoke With Gods', 'https://images.isbndb.com/covers/15/25/9780312291525.jpg'), + ('0446675059', 'The Honk And Holler Opening Soon', 'https://images.isbndb.com/covers/50/55/9780446675055.jpg'), + ('1558614621', 'The Girls In 3-B (Femmes Fatales : Women Write Pulp)', 'https://images.isbndb.com/covers/46/28/9781558614628.jpg'), + ('0753811251', 'Inge And Mira', 'https://images.isbndb.com/covers/12/52/9780753811252.jpg'), + ('0375411550', 'The Bluest Eye', 'https://images.isbndb.com/covers/15/57/9780375411557.jpg'), + ('0679774025', 'All Over But The Shoutin''', 'https://images.isbndb.com/covers/40/20/9780679774020.jpg'), + ('0380705648', 'Just Another Kid', 'https://images.isbndb.com/covers/56/41/9780380705641.jpg'), + ('0812968182', 'The Territory Of Men: A Memoir', 'https://images.isbndb.com/covers/81/87/9780812968187.jpg'), + ('0385318804', 'The Only Girl In The Car: A Memoir', 'https://images.isbndb.com/covers/88/08/9780385318808.jpg'), + ('0380652277', 'Murphy''s Boy', 'https://images.isbndb.com/covers/22/73/9780380652273.jpg'), + ('0375508627', 'Middletown, America: One Town''s Passage From Trauma To Hope', 'https://images.isbndb.com/covers/86/22/9780375508622.jpg'), + ('0452284937', 'Girl With A Pearl Earring (movie Tie-in Edition): A Novel', 'https://images.isbndb.com/covers/49/37/9780452284937.jpg'), + ('1573222267', 'Blue Shoe', 'https://images.isbndb.com/covers/22/66/9781573222266.jpg'), + ('0316781010', 'Fortune''s Rocks: A Novel', 'https://images.isbndb.com/covers/10/15/9780316781015.jpg'), + ('0865472807', 'Hard Laughter: A Novel', 'https://images.isbndb.com/covers/28/08/9780865472808.jpg'), + ('0345460359', 'Drowning Ruth', 'https://images.isbndb.com/covers/03/56/9780345460356.jpg'), + ('1885211929', 'Sand In My Bra And Other Misadventures: Funny Women Write From The Road (Travelers'' Tales Guides)', 'https://images.isbndb.com/covers/19/27/9781885211927.jpg'), + ('0743201027', 'Learning Joy From Dogs Without Collars : A Memoir', 'https://images.isbndb.com/covers/10/25/9780743201025.jpg'), + ('156292530X', 'America Out Of The Ashes: True Stories Of Courage And Heroism With Postcard', 'https://images.isbndb.com/covers/53/07/9781562925307.jpg'), + ('0684836556', 'The Accidental Activist', 'https://images.isbndb.com/covers/65/53/9780684836553.jpg'), + ('0842307419', 'The Teddy Bear Mystery (Elizabeth Gail Wind Rider Series #3)', 'https://images.isbndb.com/covers/74/13/9780842307413.jpg'), + ('1556612966', 'The Measure Of A Heart (Women Of The West #6)', 'https://images.isbndb.com/covers/29/61/9781556612961.jpg'), + ('0590465953', 'The Littles And The Trash Tinies (The Littles #7)', 'https://images.isbndb.com/covers/59/53/9780590465953.jpg'), + ('0671017276', 'To Cheat Or Not To Cheat (Full House Stephanie)', 'https://images.isbndb.com/covers/72/79/9780671017279.jpg'), + ('0895772175', 'The Adventures Of Tom Sawyer (The World''s Best Reading)', 'https://images.isbndb.com/covers/21/76/9780895772176.jpg'), + ('0064405109', 'Little Farm In The Ozarks (Little House, The Rocky Ridge Years)', 'https://images.isbndb.com/covers/51/02/9780064405102.jpg'), + ('0064405486', 'Grab Hands And Run', 'https://images.isbndb.com/covers/54/85/9780064405485.jpg'), + ('0064400018', 'Little House In The Big Woods (Little House, No 1)', 'https://images.isbndb.com/covers/00/15/9780064400015.jpg'), + ('1561797111', 'Gianna: Aborted...and Lived To Tell About It (Living Books)', 'https://images.isbndb.com/covers/71/10/9781561797110.jpg'), + ('0836217799', 'Bring Me The Head Of Willy The Mailboy!', 'https://images.isbndb.com/covers/77/97/9780836217797.jpg'), + ('083611714X', 'Rosanna Of The Amish', 'https://images.isbndb.com/covers/71/41/9780836117141.jpg'), + ('0440490995', 'The Saving Of P.S.', 'https://images.isbndb.com/covers/09/99/9780440490999.jpg'), + ('0380698714', 'Sideways Stories From Wayside School', 'https://images.isbndb.com/covers/87/14/9780380698714.jpg'), + ('0553481185', 'Jessica''s Mermaid (Sweet Valley Kids)', 'https://images.isbndb.com/covers/11/81/9780553481181.jpg'), + ('0689835744', 'Sheltie The Shetland Pony', 'https://images.isbndb.com/covers/57/42/9780689835742.jpg'), + ('0590450336', 'The Adventure Of The Backyard Sleep-Out', 'https://images.isbndb.com/covers/03/31/9780590450331.jpg'), + ('0316115568', 'Arthur Accused: A Marc Brown Arthur Chapter Book 5 (Arthur Chapter Books)', 'https://images.isbndb.com/covers/55/68/9780316115568.jpg'), + ('0590623516', 'Knight At Dawn', 'https://images.isbndb.com/covers/35/13/9780590623513.jpg'), + ('0140511008', 'Dictionary Of Microprocessors, The Penguin (Penguin Reference Books)', 'https://images.isbndb.com/covers/10/00/9780140511000.jpg'), + ('0609602438', 'The Love Poems Of Rumi', 'https://images.isbndb.com/covers/24/30/9780609602430.jpg'), + ('9723704552', 'O Medo (Documenta Poetica) (Portuguese Edition)', 'https://images.isbndb.com/covers/45/56/9789723704556.jpg'), + ('067177459X', 'The Intruder (Roswell High No. 5)', 'https://images.isbndb.com/covers/45/92/9780671774592.jpg'), + ('0618071784', 'Wild Health: How Animals Keep Themselves Well And What We Can Learn From Them', 'https://images.isbndb.com/covers/17/84/9780618071784.jpg'), + ('1550660160', 'Hyena Family (Jane Goodall''s Animal Series)', 'https://images.isbndb.com/covers/01/66/9781550660166.jpg'), + ('0876054440', 'Frogs And Toads: An Owner''s Guide To A Happy Healthy Pet', 'https://images.isbndb.com/covers/44/44/9780876054444.jpg'), + ('0882547593', 'Freshwater Aquarium Fish: A Color Guide', 'https://images.isbndb.com/covers/75/96/9780882547596.jpg'), + ('0316057517', 'The Trials Of Life: A Natural History Of Animal Behavior', 'https://images.isbndb.com/covers/75/16/9780316057516.jpg'), + ('0866220445', 'The Basset Hound/Ps-815', 'https://images.isbndb.com/covers/04/46/9780866220446.jpg'), + ('0517880539', 'Catwatching', 'https://images.isbndb.com/covers/05/31/9780517880531.jpg'), + ('0671449621', 'No Bad Dogs: The Woodhouse Way', 'https://images.isbndb.com/covers/96/29/9780671449629.jpg'), + ('3923880642', 'Dog Owners Guide To American And English Cocker Spaniels: Everything You Need To Know About Your Spaniel, Including Health Care, Training, Breeding A', 'https://images.isbndb.com/covers/06/45/9783923880645.jpg'), + ('0312104456', 'Critters: Adventures In Wildest Suburbia', 'https://images.isbndb.com/covers/44/50/9780312104450.jpg'), + ('0385314280', 'When Elephants Weep: The Emotional Lives Of Animals', 'https://images.isbndb.com/covers/42/82/9780385314282.jpg'), + ('0345285859', 'Shibumi', 'https://images.isbndb.com/covers/58/50/9780345285850.jpg'), + ('0872168255', 'Lion Of Ireland', 'https://images.isbndb.com/covers/82/51/9780872168251.jpg'), + ('0804102988', 'Sarum: The Novel Of England', 'https://images.isbndb.com/covers/29/88/9780804102988.jpg'), + ('0440150167', 'Love And War', 'https://images.isbndb.com/covers/01/69/9780440150169.jpg'), + ('0590988867', 'Tuck Everlasting (Literature Circle Edition)', 'https://images.isbndb.com/covers/88/65/9780590988865.jpg'), + ('059050214X', 'A Journey To The New World: The Diary Of Remember Patience Whipple, Mayflower, 1620 (Dear America Series)', 'https://images.isbndb.com/covers/21/46/9780590502146.jpg'), + ('0316286125', 'By The Great Horn Spoon!', 'https://images.isbndb.com/covers/61/21/9780316286121.jpg'), + ('0590053698', 'For Love Of A Horse', 'https://images.isbndb.com/covers/36/93/9780590053693.jpg'), + ('038523029X', 'Search For The Breed', 'https://images.isbndb.com/covers/02/92/9780385230292.jpg'), + ('0152177639', 'Maria: A Christmas Story', 'https://images.isbndb.com/covers/76/38/9780152177638.jpg'), + ('0380715635', 'One More River', 'https://images.isbndb.com/covers/56/33/9780380715633.jpg'), + ('0517667185', 'Andersen''s Fairy Tales', 'https://images.isbndb.com/covers/71/87/9780517667187.jpg'), + ('0316613231', 'Lonely Girls With Burning Eyes: A Wife Recalls Her Husband''s Journey Home From Vietnam', 'https://images.isbndb.com/covers/32/31/9780316613231.jpg'), + ('0140343865', 'Dear Mom, You''re Ruining My Life', 'https://images.isbndb.com/covers/38/61/9780140343861.jpg'), + ('0807593664', 'The Yellow House Mystery (The Boxcar Children, No. 3) (Boxcar Children Mysteries)', 'https://images.isbndb.com/covers/36/60/9780807593660.jpg'), + ('044021212X', 'A Candidate For Murder', 'https://images.isbndb.com/covers/21/26/9780440212126.jpg'), + ('0440411335', 'Mr. Tucket (The Francis Tucket Books)', 'https://images.isbndb.com/covers/13/38/9780440411338.jpg'), + ('0440497272', 'The Witches Of Worm', 'https://images.isbndb.com/covers/72/71/9780440497271.jpg'), + ('059042243X', 'Anne Of Green Gables', 'https://images.isbndb.com/covers/24/37/9780590422437.jpg'), + ('0140365826', 'A Different Beat', 'https://images.isbndb.com/covers/58/25/9780140365825.jpg'), + ('0671550748', 'Christopher Pikes Tales Of Terror (Book 1)', 'https://images.isbndb.com/covers/07/45/9780671550745.jpg'), + ('0821715186', 'Trivia Mania: Movies Volume II', 'https://images.isbndb.com/covers/51/85/9780821715185.jpg'), + ('0060233346', 'Walk Two Moons (Newbery Medal Book)', 'https://images.isbndb.com/covers/33/41/9780060233341.jpg'), + ('0590098535', 'New Adventures Of The Mad Scientists Club', 'https://images.isbndb.com/covers/85/33/9780590098533.jpg'), + ('0671866966', 'The Half Child', 'https://images.isbndb.com/covers/69/69/9780671866969.jpg'), + ('072324216X', 'Little Yellow Book (Flower Fairies)', 'https://images.isbndb.com/covers/21/61/9780723242161.jpg'), + ('0140314512', 'The Eighteenth Emergency (Camelot Book)', 'https://images.isbndb.com/covers/45/19/9780140314519.jpg'), + ('0590432664', 'The Book Of Time #3: Circle Of Gold', 'https://images.isbndb.com/covers/26/65/9780590432665.jpg'), + ('0440430712', 'The Great Brain', 'https://images.isbndb.com/covers/07/11/9780440430711.jpg'), + ('0590972154', 'Brain Stealers (Visitors, Book 3)', 'https://images.isbndb.com/covers/21/54/9780590972154.jpg'), + ('0380750260', 'Silver', 'https://images.isbndb.com/covers/02/69/9780380750269.jpg'), + ('0449219895', 'A Private Crime: A Lt. Norah Mulcahaney Mystery', 'https://images.isbndb.com/covers/98/98/9780449219898.jpg'), + ('0590399888', 'Cry Of The Cat (Goosebumps Series 2000, No 1)', 'https://images.isbndb.com/covers/98/83/9780590399883.jpg'), + ('0874067715', 'Come Home, Barkley', 'https://images.isbndb.com/covers/77/12/9780874067712.jpg'), + ('006440160X', 'A Dog On Barkham Street', 'https://images.isbndb.com/covers/16/09/9780064401609.jpg'), + ('0316142417', 'Skateboard Tough (Matt Christopher Sports Classics)', 'https://images.isbndb.com/covers/24/10/9780316142410.jpg'), + ('0786813563', 'Guests', 'https://images.isbndb.com/covers/35/68/9780786813568.jpg'), + ('0064470229', 'The Moves Make The Man', 'https://images.isbndb.com/covers/02/23/9780064470223.jpg'), + ('0590425560', '101 Silly Summertime Jokes', 'https://images.isbndb.com/covers/55/68/9780590425568.jpg'), + ('0590414356', '101 Super Sports Jokes', 'https://images.isbndb.com/covers/43/57/9780590414357.jpg'), + ('0910034532', 'Alateen: A Day At A Time', 'https://images.isbndb.com/covers/45/31/9780910034531.jpg'), + ('1591820324', 'GTO: Great Teacher Onizuka, Vol. 8', 'https://images.isbndb.com/covers/03/21/9781591820321.jpg'), + ('1591820316', 'GTO: Great Teacher Onizuka, Vol. 7', 'https://images.isbndb.com/covers/03/14/9781591820314.jpg'), + ('1591820308', 'GTO: Great Teacher Onizuka, Vol. 6', 'https://images.isbndb.com/covers/03/07/9781591820307.jpg'), + ('1591820286', 'GTO: Great Teacher Onizuka, Vol. 4', 'https://images.isbndb.com/covers/02/84/9781591820284.jpg'), + ('1931514496', 'GTO: Great Teacher Onizuka, Vol. 3', 'https://images.isbndb.com/covers/44/91/9781931514491.jpg'), + ('1931514968', 'GTO: Great Teacher Onizuka, Vol. 2', 'https://images.isbndb.com/covers/49/65/9781931514965.jpg'), + ('3426621657', 'Die Stimme Des Zwielichts', 'https://images.isbndb.com/covers/16/53/9783426621653.jpg'), + ('0312983336', 'I Think I Love You', 'https://images.isbndb.com/covers/33/38/9780312983338.jpg'), + ('0140714197', 'Romeo And Juliet (Shakespeare, Pelican)', 'https://images.isbndb.com/covers/41/97/9780140714197.jpg'), + ('0425154882', 'Carriers', 'https://images.isbndb.com/covers/48/85/9780425154885.jpg'), + ('0233981071', 'Moon Tiger', 'https://images.isbndb.com/covers/10/79/9780233981079.jpg'), + ('3453171489', 'Die Schöne Schrift', 'https://images.isbndb.com/covers/14/80/9783453171480.jpg'), + ('1550171348', 'The Whole Fam Damily', 'https://images.isbndb.com/covers/13/41/9781550171341.jpg'), + ('0345404769', 'Silent Witness', 'https://images.isbndb.com/covers/47/63/9780345404763.jpg'), + ('0425158594', 'Demon Seed', 'https://images.isbndb.com/covers/85/93/9780425158593.jpg'), + ('0099282194', 'Human Stain', 'https://images.isbndb.com/covers/21/98/9780099282198.jpg'), + ('0380806576', 'Veronica', 'https://images.isbndb.com/covers/65/77/9780380806577.jpg'), + ('0060508876', 'Beautiful Child', 'https://images.isbndb.com/covers/88/76/9780060508876.jpg'), + ('0967253535', 'Naked Through The Snow And Other Bits Of Silliness', 'https://images.isbndb.com/covers/35/34/9780967253534.jpg'), + ('0448095017', 'The Secret Of The Old Clock (Nancy Drew, Book 1)', 'https://images.isbndb.com/covers/50/11/9780448095011.jpg'), + ('0671038850', 'A Stitch In Time (Star Trek: Deep Space Nine #27)', 'https://images.isbndb.com/covers/88/54/9780671038854.jpg'), + ('345386722X', 'Spiegelkanon', 'https://images.isbndb.com/covers/72/22/9783453867222.jpg'), + ('0446359688', 'Red Phoenix', 'https://images.isbndb.com/covers/96/89/9780446359689.jpg'), + ('0892831189', 'Handbook To The Gospels: A Guide To The Gospel Writings And To The Life And Times Of Jesus', 'https://images.isbndb.com/covers/11/80/9780892831180.jpg'), + ('0449902927', 'Feel The Fear And Do It Anyway', 'https://images.isbndb.com/covers/29/29/9780449902929.jpg'), + ('1558745017', 'Chicken Soup For The Christian Soul: Stories To Open The Heart And Rekindle The Spirit (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/50/18/9781558745018.jpg'), + ('0671501283', '''Scuse Me While I Kiss This Guy: And Other Misheard Lyrics', 'https://images.isbndb.com/covers/12/80/9780671501280.jpg'), + ('033036197X', 'People Of Heaven', 'https://images.isbndb.com/covers/19/72/9780330361972.jpg'), + ('0767906780', 'Fatal Voyage: The Sinking Of The USS Indianapolis', 'https://images.isbndb.com/covers/67/84/9780767906784.jpg'), + ('0679744495', 'A Day At The Beach: Recollections', 'https://images.isbndb.com/covers/44/98/9780679744498.jpg'), + ('0440221099', 'Talk Before Sleep', 'https://images.isbndb.com/covers/10/98/9780440221098.jpg'), + ('0385319207', 'One True Thing', 'https://images.isbndb.com/covers/92/01/9780385319201.jpg'), + ('0449907635', 'The Cat Who Went To Paris', 'https://images.isbndb.com/covers/76/34/9780449907634.jpg'), + ('042518269X', 'Final Diagnosis', 'https://images.isbndb.com/covers/26/97/9780425182697.jpg'), + ('0060915749', 'The Knockout Artist', 'https://images.isbndb.com/covers/57/42/9780060915742.jpg'), + ('0553260618', '"B" IS FOR BURGLAR (Kinsey Millhone Mysteries (Paperback))', 'https://images.isbndb.com/covers/06/18/9780553260618.jpg'), + ('0671002783', 'God On A Harley', 'https://images.isbndb.com/covers/27/87/9780671002787.jpg'), + ('0671722794', 'A Midsummer Night''s Dream (Airmont Shakespeare Classics Series)', 'https://images.isbndb.com/covers/27/91/9780671722791.jpg'), + ('1893121119', 'Ticket To Everywhere : The Best Of "Detours" Travel Column', 'https://images.isbndb.com/covers/11/19/9781893121119.jpg'), + ('0804900078', 'Scarlet Letter', 'https://images.isbndb.com/covers/00/72/9780804900072.jpg'), + ('0385323905', 'Kaaterskill Falls', 'https://images.isbndb.com/covers/39/01/9780385323901.jpg'), + ('034540727X', 'The Killer Angels: The Classic Novel Of The Civil War', 'https://images.isbndb.com/covers/72/76/9780345407276.jpg'), + ('0786886625', 'Spilling Clarence', 'https://images.isbndb.com/covers/66/23/9780786886623.jpg'), + ('0375760504', 'Life After Death: A Novel', 'https://images.isbndb.com/covers/05/01/9780375760501.jpg'), + ('0312300530', 'The Last Jew', 'https://images.isbndb.com/covers/05/31/9780312300531.jpg'), + ('157322930X', 'High Maintenance', 'https://images.isbndb.com/covers/93/02/9781573229302.jpg'), + ('0805211020', 'A Good Enough Daughter: A Memoir', 'https://images.isbndb.com/covers/10/23/9780805211023.jpg'), + ('0679736891', 'Cambridge', 'https://images.isbndb.com/covers/68/99/9780679736899.jpg'), + ('0060915188', 'An American Childhood', 'https://images.isbndb.com/covers/51/86/9780060915186.jpg'), + ('0671792385', 'Reed''s Beach', 'https://images.isbndb.com/covers/23/81/9780671792381.jpg'), + ('0156008661', 'Ladies'' Night At Finbar''s Hotel', 'https://images.isbndb.com/covers/86/62/9780156008662.jpg'), + ('0609803247', 'The Red Devil : A Memoir About Beating The Odds', 'https://images.isbndb.com/covers/32/40/9780609803240.jpg'), + ('0425163407', 'Unnatural Exposure (Kay Scarpetta)', 'https://images.isbndb.com/covers/34/05/9780425163405.jpg'), + ('0671873199', 'The Corporate Raider''s Revenge (Silhouette Desire)', 'https://images.isbndb.com/covers/31/96/9780671873196.jpg'), + ('0812531353', 'The Boat Of A Million Years', 'https://images.isbndb.com/covers/13/50/9780812531350.jpg'), + ('0140281290', 'Over Hill And Dale', 'https://images.isbndb.com/covers/12/93/9780140281293.jpg'), + ('3596143500', 'Mannomann.', 'https://images.isbndb.com/covers/35/04/9783596143504.jpg'), + ('0451525027', 'Innocents Abroad (Signet Classics)', 'https://images.isbndb.com/covers/50/24/9780451525024.jpg'), + ('9074336329', 'Want Dit Is Mijn Lichaam (Dutch Edition)', 'https://images.isbndb.com/covers/63/21/9789074336321.jpg'), + ('3423704306', 'Heiße Spur Aus Afrika', 'https://images.isbndb.com/covers/43/04/9783423704304.jpg'), + ('0515099546', 'The Cat Who Sniffed Glue', 'https://images.isbndb.com/covers/95/46/9780515099546.jpg'), + ('0812542835', 'Reliquary (Pendergast, Book 2)', 'https://images.isbndb.com/covers/28/37/9780812542837.jpg'), + ('0373264208', 'Ransom At The Opera', 'https://images.isbndb.com/covers/42/09/9780373264209.jpg'), + ('0373264216', 'Keeping Silent', 'https://images.isbndb.com/covers/42/16/9780373264216.jpg'), + ('0425170306', 'The Lost Bird (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/03/04/9780425170304.jpg'), + ('042517025X', 'The Story Teller (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/02/50/9780425170250.jpg'), + ('0425180905', 'The Spirit Woman (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/09/07/9780425180907.jpg'), + ('0373263945', 'Lithium Murder (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/39/43/9780373263943.jpg'), + ('0425067769', 'The Big Four', 'https://images.isbndb.com/covers/77/65/9780425067765.jpg'), + ('0785278796', 'The Senator''s Agenda (Dead Air Series, Book 3)', 'https://images.isbndb.com/covers/87/95/9780785278795.jpg'), + ('1560431008', 'Woman, Thou Art Loosed!: Healing The Wounds Of The Past', 'https://images.isbndb.com/covers/10/08/9781560431008.jpg'), + ('1565076257', '15 Minutes Of Peace With God', 'https://images.isbndb.com/covers/62/59/9781565076259.jpg'), + ('0553575937', 'Jane And The Unpleasantness At Scargrave Manor: Being The First Jane Austen Mystery (Jane Austen Mysteries)', 'https://images.isbndb.com/covers/59/34/9780553575934.jpg'), + ('0571136117', 'Her Living Image', 'https://images.isbndb.com/covers/61/17/9780571136117.jpg'), + ('0856402915', 'Footprint Upon Water', 'https://images.isbndb.com/covers/29/13/9780856402913.jpg'), + ('0800714237', '13 Fatal Errors Managers Make, And How You Can Avoid Them', 'https://images.isbndb.com/covers/42/39/9780800714239.jpg'), + ('0140069453', 'Tirra Lirra By The River', 'https://images.isbndb.com/covers/94/57/9780140069457.jpg'), + ('0671852701', 'Fight The Best Fight', 'https://images.isbndb.com/covers/27/02/9780671852702.jpg'), + ('0553283588', 'Juffie Kane', 'https://images.isbndb.com/covers/35/87/9780553283587.jpg'), + ('055329508X', 'DREAMWEAVERS', 'https://images.isbndb.com/covers/50/85/9780553295085.jpg'), + ('0855616539', 'The Potato Factory: A Novel', 'https://images.isbndb.com/covers/65/33/9780855616533.jpg'), + ('0743410181', 'Temptation', 'https://images.isbndb.com/covers/01/82/9780743410182.jpg'), + ('0671502522', 'A Holiday Of Love : Miracles / Change Of Heart / Daniel And The Angel / Hark! The Herald', 'https://images.isbndb.com/covers/25/22/9780671502522.jpg'), + ('0373834292', 'Valentine Babies: Harlequin 3-Romance Novels: Goddess In Waiting; Gabe''s Special Delivery; My Man Valentine', 'https://images.isbndb.com/covers/42/97/9780373834297.jpg'), + ('0263819922', 'Marriage For Real (Presents)', 'https://images.isbndb.com/covers/99/22/9780263819922.jpg'), + ('0263823091', 'An Ardent Friendship (Mills & Boon Historical)', 'https://images.isbndb.com/covers/30/97/9780263823097.jpg'), + ('026382831X', 'This Time... Marriage', 'https://images.isbndb.com/covers/83/13/9780263828313.jpg'), + ('0671744623', 'The Heiress', 'https://images.isbndb.com/covers/46/25/9780671744625.jpg'), + ('0671025384', 'Imzadi II: Triangle (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/53/80/9780671025380.jpg'), + ('0671019228', 'Q-Strike (Star Trek The Next Generation, Book 49)', 'https://images.isbndb.com/covers/92/28/9780671019228.jpg'), + ('038073320X', 'The Gazebo: A Novel', 'https://images.isbndb.com/covers/32/00/9780380733200.jpg'), + ('0061044636', 'Mars And Venus On A Date: A Guide To Navigating The 5 Stages Of Dating To Create A Loving And Lasting Relationship', 'https://images.isbndb.com/covers/46/32/9780061044632.jpg'), + ('0553561049', 'Living In The Light: A Guide To Personal And Planetary Transformation', 'https://images.isbndb.com/covers/10/43/9780553561043.jpg'), + ('0263824683', 'Promise', 'https://images.isbndb.com/covers/46/81/9780263824681.jpg'), + ('0373047231', 'One Wedding Night (Montana Brides 07)', 'https://images.isbndb.com/covers/72/39/9780373047239.jpg'), + ('0373483872', 'Delivered By Christmas', 'https://images.isbndb.com/covers/38/77/9780373483877.jpg'), + ('3442438241', 'Der Magische Zirkel.', 'https://images.isbndb.com/covers/82/42/9783442438242.jpg'), + ('3596130417', 'Schiffsmeldungen', 'https://images.isbndb.com/covers/04/12/9783596130412.jpg'), + ('0552526150', 'Dreaming Of Larry', 'https://images.isbndb.com/covers/61/59/9780552526159.jpg'), + ('0307123332', 'Poky Little Puppy (Sturdy Shape Book)', 'https://images.isbndb.com/covers/33/36/9780307123336.jpg'), + ('0723245835', 'Peter Rabbit''s Giant Storybook (Potter)', 'https://images.isbndb.com/covers/58/34/9780723245834.jpg'), + ('3770156218', 'Der Fall Arbogast.', 'https://images.isbndb.com/covers/62/14/9783770156214.jpg'), + ('351828875X', 'Das Gehirn Und Seine Wirklichkeit: Kognitive Neurobiologie Und Ihre Philosophischen Konsequenzen (suhrkamp Taschenbuch Wissenschaft)', 'https://images.isbndb.com/covers/87/57/9783518288757.jpg'), + ('3453124502', 'Die Skulptur.', 'https://images.isbndb.com/covers/45/09/9783453124509.jpg'), + ('354835985X', 'Erste Person Plural', 'https://images.isbndb.com/covers/98/54/9783548359854.jpg'), + ('3404144449', 'Der Engel Mit Den Schwarzen Flügeln: Roman', 'https://images.isbndb.com/covers/44/40/9783404144440.jpg'), + ('3442420156', 'Die Werbung', 'https://images.isbndb.com/covers/01/55/9783442420155.jpg'), + ('0330294911', 'Man Who Mistook His Wife For A Hat (Picador)', 'https://images.isbndb.com/covers/49/11/9780330294911.jpg'), + ('3485008265', 'Ich Igelkind: Botschaften Aus Einer Autistischen Welt', 'https://images.isbndb.com/covers/82/66/9783485008266.jpg'), + ('0061053473', 'Goblins/Whirlwind', 'https://images.isbndb.com/covers/34/74/9780061053474.jpg'), + ('3792000261', 'Der Kleine Prinz', 'https://images.isbndb.com/covers/02/67/9783792000267.jpg'), + ('3257229305', 'Die Apothekerin', 'https://images.isbndb.com/covers/93/01/9783257229301.jpg'), + ('3499231689', 'Bélas Sünden', 'https://images.isbndb.com/covers/16/81/9783499231681.jpg'), + ('3423125071', 'Mein Herz So Weiß', 'https://images.isbndb.com/covers/50/79/9783423125079.jpg'), + ('0553239112', 'Heart Is A Lonely Hunter', 'https://images.isbndb.com/covers/91/19/9780553239119.jpg'), + ('0802141293', 'Troll: A Love Story', 'https://images.isbndb.com/covers/12/93/9780802141293.jpg'), + ('0451458915', 'Eternity Row: A Stardoc Novel', 'https://images.isbndb.com/covers/89/19/9780451458919.jpg'), + ('0451458559', 'Shockball: A Stardoc Novel', 'https://images.isbndb.com/covers/85/51/9780451458551.jpg'), + ('0451458141', 'Endurance (A Stardoc Novel)', 'https://images.isbndb.com/covers/81/48/9780451458148.jpg'), + ('0451457935', 'Beyond Varallan (Stardoc II)', 'https://images.isbndb.com/covers/79/36/9780451457936.jpg'), + ('0451457730', 'Stardoc', 'https://images.isbndb.com/covers/77/38/9780451457738.jpg'), + ('0142002798', 'Mary, Called Magdalene', 'https://images.isbndb.com/covers/27/97/9780142002797.jpg'), + ('0397300441', 'The Lost Queen Of Egypt', 'https://images.isbndb.com/covers/04/40/9780397300440.jpg'), + ('0451190955', 'Let The Drum Speak', 'https://images.isbndb.com/covers/09/56/9780451190956.jpg'), + ('0451160533', 'She Who Remembers (Signet)', 'https://images.isbndb.com/covers/05/39/9780451160539.jpg'), + ('0060530421', 'The Lady, The Chef, And The Courtesan', 'https://images.isbndb.com/covers/04/26/9780060530426.jpg'), + ('0395927218', 'The Namesake: A Novel', 'https://images.isbndb.com/covers/72/12/9780395927212.jpg'), + ('0345450302', 'The Mango Season', 'https://images.isbndb.com/covers/03/02/9780345450302.jpg'), + ('006039384X', 'Mirror Mirror: A Novel', 'https://images.isbndb.com/covers/38/47/9780060393847.jpg'), + ('037576092X', 'Autobiography Of A Fat Bride: True Tales Of A Pretend Adulthood', 'https://images.isbndb.com/covers/09/21/9780375760921.jpg'), + ('0874041872', 'Cynthia Ann Parker: The Life And The Legend (Southwestern Studies)', 'https://images.isbndb.com/covers/18/73/9780874041873.jpg'), + ('0515133876', 'Narcissus In Chains (Anita Blake, Vampire Hunter, Book 10)', 'https://images.isbndb.com/covers/38/75/9780515133875.jpg'), + ('0515134503', 'Obsidian Butterfly (An Anita Blake, Vampire Hunter, Book 9)', 'https://images.isbndb.com/covers/45/06/9780515134506.jpg'), + ('0515134457', 'Blue Moon (Anita Blake, Vampire Hunter, Book 8)', 'https://images.isbndb.com/covers/44/52/9780515134452.jpg'), + ('0515134473', 'Burnt Offerings (Anita Blake, Vampire Hunter, Book 7)', 'https://images.isbndb.com/covers/44/76/9780515134476.jpg'), + ('0810942631', 'Roman Sex: 100 B.C. To A.D. 250', 'https://images.isbndb.com/covers/26/39/9780810942639.jpg'), + ('0515134465', 'Bloody Bones (Anita Blake, Vampire Hunter, Book 5)', 'https://images.isbndb.com/covers/44/69/9780515134469.jpg'), + ('0142002593', 'A Mind Of Its Own: A Cultural History Of The Penis', 'https://images.isbndb.com/covers/25/99/9780142002599.jpg'), + ('051513452X', 'The Lunatic Cafe (Anita Blake, Vampire Hunter, Book 4)', 'https://images.isbndb.com/covers/45/20/9780515134520.jpg'), + ('0399150706', 'For Matrimonial Purposes', 'https://images.isbndb.com/covers/07/08/9780399150708.jpg'), + ('0515134481', 'Circus Of The Damned (Anita Blake, Vampire Hunter, Book 3)', 'https://images.isbndb.com/covers/44/83/9780515134483.jpg'), + ('038548237X', 'The Mistress Of Spices', 'https://images.isbndb.com/covers/23/70/9780385482370.jpg'), + ('051513449X', 'Guilty Pleasures (Anita Blake, Vampire Hunter: Book 1)', 'https://images.isbndb.com/covers/44/90/9780515134490.jpg'), + ('158567365X', 'Stone Heart: A Novel Of Sacajawea', 'https://images.isbndb.com/covers/36/50/9781585673650.jpg'), + ('0743456408', 'The Feast Of Roses: A Novel', 'https://images.isbndb.com/covers/64/01/9780743456401.jpg'), + ('0743427149', 'The Twentieth Wife: A Novel', 'https://images.isbndb.com/covers/71/42/9780743427142.jpg'), + ('1565113306', 'Fight Club', 'https://images.isbndb.com/covers/33/05/9781565113305.jpg'), + ('3442355907', 'Lasst Knochen Sprechen: Roman', 'https://images.isbndb.com/covers/59/07/9783442355907.jpg'), + ('3442448182', 'Monster: Roman', 'https://images.isbndb.com/covers/81/80/9783442448180.jpg'), + ('3442309646', 'Das Sexuelle Leben Der Catherine M.', 'https://images.isbndb.com/covers/96/41/9783442309641.jpg'), + ('3442541662', 'Der Simulant: Roman', 'https://images.isbndb.com/covers/16/69/9783442541669.jpg'), + ('3442451752', 'Dienstags Bei Morrie: Die Lehre Eines Lebens', 'https://images.isbndb.com/covers/17/53/9783442451753.jpg'), + ('9810023847', 'The Serpent And The Purple Moon (Windows Of Singapore Series)', 'https://images.isbndb.com/covers/38/43/9789810023843.jpg'), + ('081257558X', 'Winter''s Heart (The Wheel Of Time, Book 9)', 'https://images.isbndb.com/covers/55/83/9780812575583.jpg'), + ('0684859483', 'Ladies And Gentlemen Of The Jury: Greatest Closing Arguments In Modern Law', 'https://images.isbndb.com/covers/94/84/9780684859484.jpg'), + ('9810455674', 'A Leap Of Love: A Novella', 'https://images.isbndb.com/covers/56/75/9789810455675.jpg'), + ('0395971802', 'Salad Suppers', 'https://images.isbndb.com/covers/18/02/9780395971802.jpg'), + ('9810026595', 'Crystal Is Waiting (Window Of Singapore Series)', 'https://images.isbndb.com/covers/65/92/9789810026592.jpg'), + ('1853262439', 'The Comedy Of Errors (Wordsworth Classics)', 'https://images.isbndb.com/covers/24/32/9781853262432.jpg'), + ('1853262544', 'Much Ado About Nothing (Wordsworth Classics)', 'https://images.isbndb.com/covers/25/48/9781853262548.jpg'), + ('0971009902', 'The Colors Of The Rainbow : About Life And The Beauty Of Living', 'https://images.isbndb.com/covers/99/05/9780971009905.jpg'), + ('1840224002', 'The Hound Of The Baskervilles (Wordsworth Classics)', 'https://images.isbndb.com/covers/40/09/9781840224009.jpg'), + ('1853260339', 'Adventures Of Sherlock Holmes (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/03/39/9781853260339.jpg'), + ('0553212737', 'Emma (Bantam Classics)', 'https://images.isbndb.com/covers/27/30/9780553212730.jpg'), + ('2277301981', 'L''Accompagnatrice', 'https://images.isbndb.com/covers/19/81/9782277301981.jpg'), + ('0140106391', 'Glass Menagerie (Penguin Plays & Screenplays)', 'https://images.isbndb.com/covers/63/98/9780140106398.jpg'), + ('0345434110', 'Star Wars, Episode I - The Phantom Menace', 'https://images.isbndb.com/covers/41/11/9780345434111.jpg'), + ('0743456947', 'The New Revelations: A Conversation With God', 'https://images.isbndb.com/covers/69/44/9780743456944.jpg'), + ('1853265179', 'Flower In The Snow (Wordsworth Romance)', 'https://images.isbndb.com/covers/51/74/9781853265174.jpg'), + ('0671013777', 'The Goodnight Kiss (Fear Street Super Chillers, No. 3)', 'https://images.isbndb.com/covers/37/76/9780671013776.jpg'), + ('0446605700', 'He Say, She Say', 'https://images.isbndb.com/covers/57/00/9780446605700.jpg'), + ('0451186745', 'Lord Barry''s Dream House (Signet Regency Romance)', 'https://images.isbndb.com/covers/67/44/9780451186744.jpg'), + ('0553446282', 'Hunter In Disguise (Loveswept)', 'https://images.isbndb.com/covers/62/89/9780553446289.jpg'), + ('1857821173', 'Secrets Of The Street: My Life As Ivy Tilsley', 'https://images.isbndb.com/covers/11/78/9781857821178.jpg'), + ('0446531413', 'On A Night Like This', 'https://images.isbndb.com/covers/14/12/9780446531412.jpg'), + ('0061032476', 'Twelve Times Blessed', 'https://images.isbndb.com/covers/24/79/9780061032479.jpg'), + ('0373764405', 'Billionaire Bachelors: Garrett (Silhouette Desire)', 'https://images.isbndb.com/covers/44/02/9780373764402.jpg'), + ('0060533072', 'Unforgettable', 'https://images.isbndb.com/covers/30/76/9780060533076.jpg'), + ('055356983X', 'Anne Frank''s Tales From The Secret Annex', 'https://images.isbndb.com/covers/98/34/9780553569834.jpg'), + ('0330352695', 'Four Letters Of Love (Spanish Edition)', 'https://images.isbndb.com/covers/26/97/9780330352697.jpg'), + ('1860499627', 'Desert Dawn', 'https://images.isbndb.com/covers/96/23/9781860499623.jpg'), + ('0553492144', 'My Best Friend''s Girlfriend (Love Stories)', 'https://images.isbndb.com/covers/21/49/9780553492149.jpg'), + ('0553569228', 'Fire And Fog: A Fremont Jones Mystery (Fremont Jones Mysteries)', 'https://images.isbndb.com/covers/92/23/9780553569223.jpg'), + ('0061013714', 'Tidewater Blood', 'https://images.isbndb.com/covers/37/13/9780061013713.jpg'), + ('0345260791', 'Star Wars', 'https://images.isbndb.com/covers/07/96/9780345260796.jpg'), + ('0553493213', 'Andy & Andie (Love Stories)', 'https://images.isbndb.com/covers/32/14/9780553493214.jpg'), + ('0312274777', 'The Secret Wife Of King George IV', 'https://images.isbndb.com/covers/47/71/9780312274771.jpg'), + ('0140366709', 'King Arthur And His Knights Of The Round Table (Puffin Classics)', 'https://images.isbndb.com/covers/67/09/9780140366709.jpg'), + ('0060574216', 'Men Are From Mars, Women Are From Venus: The Classic Guide To Understanding The Opposite Sex', 'https://images.isbndb.com/covers/42/15/9780060574215.jpg'), + ('0060540591', 'Hitts & Mrs.', 'https://images.isbndb.com/covers/05/93/9780060540593.jpg'), + ('0553492942', 'The Dance (Love Stories)', 'https://images.isbndb.com/covers/29/41/9780553492941.jpg'), + ('1853262773', 'Pair Of Blue Eyes (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/27/77/9781853262777.jpg'), + ('0896380637', 'Do I Have To Give Up Me To Be Loved By You?', 'https://images.isbndb.com/covers/06/39/9780896380639.jpg'), + ('0752271687', 'How To Invest When You Don''t Have Any Money (The Motley Fool)', 'https://images.isbndb.com/covers/16/82/9780752271682.jpg'), + ('0899093655', 'Earl Proulx''s Yankee Home Hints: From Stains On The Rug To Squirrels In The Attic, Over 1,500 Ingenious Solutions To Everyday Household Problems', 'https://images.isbndb.com/covers/36/59/9780899093659.jpg'), + ('0312049994', 'The Sun In The Morning: My Early Years In India And England', 'https://images.isbndb.com/covers/99/97/9780312049997.jpg'), + ('0767914848', 'Cuba Diaries: An American Housewife In Havana', 'https://images.isbndb.com/covers/48/40/9780767914840.jpg'), + ('0684849690', 'The Secret Diary Of Anne Boleyn', 'https://images.isbndb.com/covers/96/90/9780684849690.jpg'), + ('0380731819', 'I Who Have Never Known Men', 'https://images.isbndb.com/covers/18/17/9780380731817.jpg'), + ('0505524902', 'The Magician', 'https://images.isbndb.com/covers/49/04/9780505524904.jpg'), + ('0515131679', 'The Gingerbread Man', 'https://images.isbndb.com/covers/16/73/9780515131673.jpg'), + ('0425195449', 'Naked Prey (Lucas Davenport, No. 14)', 'https://images.isbndb.com/covers/54/44/9780425195444.jpg'), + ('0446613851', 'A Body To Die For', 'https://images.isbndb.com/covers/38/59/9780446613859.jpg'), + ('034544227X', 'Just Friends', 'https://images.isbndb.com/covers/22/77/9780345442277.jpg'), + ('0451210611', 'Wish Come True (Carson Springs Novel)', 'https://images.isbndb.com/covers/06/16/9780451210616.jpg'), + ('0679438890', 'Original Sin (Adam Dalgliesh Mystery Series #9)', 'https://images.isbndb.com/covers/88/92/9780679438892.jpg'), + ('0399527826', 'Strong Women Eat Well', 'https://images.isbndb.com/covers/78/21/9780399527821.jpg'), + ('0767904095', 'All We Know Of Love: A Novel', 'https://images.isbndb.com/covers/40/94/9780767904094.jpg'), + ('0812929802', 'Expecting Adam: A True Story Of Birth, Rebirth, And Everyday Magic', 'https://images.isbndb.com/covers/98/05/9780812929805.jpg'), + ('0743400739', 'The Camino : A Journey Of The Spirit', 'https://images.isbndb.com/covers/07/32/9780743400732.jpg'), + ('2070424324', 'Le Jeûne Et Le Festin', 'https://images.isbndb.com/covers/43/20/9782070424320.jpg'), + ('2290311782', 'Je Voudrais Que Quelqu''un M''attende Quelque Part', 'https://images.isbndb.com/covers/17/83/9782290311783.jpg'), + ('2266031619', 'La Dame De Berlin', 'https://images.isbndb.com/covers/16/15/9782266031615.jpg'), + ('1550544683', 'The Jade Peony', 'https://images.isbndb.com/covers/46/88/9781550544688.jpg'), + ('0749717556', 'Falling Into Glory (Contents S.)', 'https://images.isbndb.com/covers/75/51/9780749717551.jpg'), + ('0881339512', 'The President', 'https://images.isbndb.com/covers/95/12/9780881339512.jpg'), + ('0140031189', 'The Wisdom Of Father Brown (Father Brown Mystery)', 'https://images.isbndb.com/covers/11/88/9780140031188.jpg'), + ('0871132648', 'A Fairy Tale Of New York (Donleavy, J. P.)', 'https://images.isbndb.com/covers/26/42/9780871132642.jpg'), + ('037575699X', 'Don Quixote (Modern Library Classics)', 'https://images.isbndb.com/covers/69/93/9780375756993.jpg'), + ('0141301104', 'The Witches', 'https://images.isbndb.com/covers/11/05/9780141301105.jpg'), + ('0714843377', 'It''s Not How Good You Are, Its How Good You Want To Be: The World''s Best Selling Book', 'https://images.isbndb.com/covers/33/77/9780714843377.jpg'), + ('3453150090', 'Diana-Taschenbücher, Nr.1, Das Grüne Akkordeon', 'https://images.isbndb.com/covers/00/96/9783453150096.jpg'), + ('0525944230', 'The Inheritance: A Novel', 'https://images.isbndb.com/covers/42/32/9780525944232.jpg'), + ('0425170500', 'White Horses', 'https://images.isbndb.com/covers/05/02/9780425170502.jpg'), + ('0399148248', 'Midnight Bayou', 'https://images.isbndb.com/covers/82/48/9780399148248.jpg'), + ('9500416387', 'Cerebro', 'https://images.isbndb.com/covers/63/82/9789500416382.jpg'), + ('9500704285', 'Cronica De Una Muerte Anunciada (Spanish Edition)', 'https://images.isbndb.com/covers/42/81/9789500704281.jpg'), + ('0425174344', 'Local Girls', 'https://images.isbndb.com/covers/43/40/9780425174340.jpg'), + ('0671027581', 'Open Season', 'https://images.isbndb.com/covers/75/82/9780671027582.jpg'), + ('0061015075', 'Divine Secrets Of The Ya-ya Sisterhood: A Novel', 'https://images.isbndb.com/covers/50/76/9780061015076.jpg'), + ('0224031457', 'Art And Lies Edition', 'https://images.isbndb.com/covers/14/55/9780224031455.jpg'), + ('0805066160', 'Bomber''s Law: A Novel (John MacRae Books)', 'https://images.isbndb.com/covers/61/66/9780805066166.jpg'), + ('0553564498', 'Fountain Of Death (Gregor Demarkian Series)', 'https://images.isbndb.com/covers/44/95/9780553564495.jpg'), + ('1883991145', 'Song Of Survival: Women Interned', 'https://images.isbndb.com/covers/11/42/9781883991142.jpg'), + ('0312970277', 'The Court', 'https://images.isbndb.com/covers/02/77/9780312970277.jpg'), + ('0449224627', 'Dress Her In Indigo (Travis Mcgee)', 'https://images.isbndb.com/covers/46/25/9780449224625.jpg'), + ('0060082194', 'Rum Punch', 'https://images.isbndb.com/covers/21/92/9780060082192.jpg'), + ('0618059458', 'The Human Stain', 'https://images.isbndb.com/covers/94/54/9780618059454.jpg'), + ('1573229725', 'Fingersmith', 'https://images.isbndb.com/covers/97/22/9781573229722.jpg'), + ('0786889306', 'Cimarron Rose (Billy Bob Holland)', 'https://images.isbndb.com/covers/93/03/9780786889303.jpg'), + ('325770044X', 'Warum Krieg? Ein Briefwechsel', 'https://images.isbndb.com/covers/04/42/9783257700442.jpg'), + ('0671534726', 'Heart Song (Logan Family Series, Bk. 2)', 'https://images.isbndb.com/covers/47/21/9780671534721.jpg'), + ('0671873202', 'Hidden Jewel (Landry Saga)', 'https://images.isbndb.com/covers/32/02/9780671873202.jpg'), + ('0671007637', 'Runaways (Orphans Series)', 'https://images.isbndb.com/covers/76/38/9780671007638.jpg'), + ('0671534734', 'Unfinished Symphony', 'https://images.isbndb.com/covers/47/38/9780671534738.jpg'), + ('0821745689', 'Creekers', 'https://images.isbndb.com/covers/56/87/9780821745687.jpg'), + ('0671534742', 'Music In The Night (Logan Family)', 'https://images.isbndb.com/covers/47/45/9780671534745.jpg'), + ('0380720973', 'Doll''s Eyes', 'https://images.isbndb.com/covers/09/72/9780380720972.jpg'), + ('0425136981', 'Shadowfires', 'https://images.isbndb.com/covers/69/80/9780425136980.jpg'), + ('2070381471', 'Aziyadé', 'https://images.isbndb.com/covers/14/70/9782070381470.jpg'), + ('0609607294', 'The Babel Effect', 'https://images.isbndb.com/covers/72/99/9780609607299.jpg'), + ('089733356X', 'In A Dark Wood Wandering: A Novel Of The Middle Ages', 'https://images.isbndb.com/covers/35/66/9780897333566.jpg'), + ('0375724397', 'The Abomination: A Novel', 'https://images.isbndb.com/covers/43/98/9780375724398.jpg'), + ('0226244962', 'The Life Of God (as Told By Himself)', 'https://images.isbndb.com/covers/49/69/9780226244969.jpg'), + ('0312965141', 'Strip Jack', 'https://images.isbndb.com/covers/51/43/9780312965143.jpg'), + ('0807612596', 'Janet Frame: An Autobiography; Volume One : To The Is-Land, Volume Two : An Angel At My Table, Volume Three : The Envoy From Mirror City/ 3 Volumes In One Book', 'https://images.isbndb.com/covers/25/90/9780807612590.jpg'), + ('0893819034', 'The Spirit Of Tibet: The Life And World Of Khyentse Rinpoche, Spiritual Teacher', 'https://images.isbndb.com/covers/90/33/9780893819033.jpg'), + ('0689848919', 'Fever 1793', 'https://images.isbndb.com/covers/89/19/9780689848919.jpg'), + ('3404161696', 'Die Männer Sind An Allem Schuld', 'https://images.isbndb.com/covers/16/90/9783404161690.jpg'), + ('0590436481', 'Karen''s Surprise (Baby-Sitters Little Sister, 13)', 'https://images.isbndb.com/covers/64/89/9780590436489.jpg'), + ('0671673653', 'ALL AROUND THE TOWN', 'https://images.isbndb.com/covers/36/59/9780671673659.jpg'), + ('1558746692', 'Taste Berries For Teens: Inspirational Short Stories And Encouragement On Life, Love, Friendship And Tough Issues', 'https://images.isbndb.com/covers/66/95/9781558746695.jpg'), + ('0140378278', 'Freud: Three Case Histories', 'https://images.isbndb.com/covers/82/76/9780140378276.jpg'), + ('0352332352', 'Feminine Wiles (Black Lace)', 'https://images.isbndb.com/covers/23/56/9780352332356.jpg'), + ('0452007380', 'Behind The Mask (Meridian)', 'https://images.isbndb.com/covers/73/83/9780452007383.jpg'), + ('0553133896', 'Midnight Whispers', 'https://images.isbndb.com/covers/38/99/9780553133899.jpg'), + ('0380599236', 'Spring Moon: A Novel Of China', 'https://images.isbndb.com/covers/92/33/9780380599233.jpg'), + ('0440224780', 'The Ranch', 'https://images.isbndb.com/covers/47/85/9780440224785.jpg'), + ('0446671002', 'The Celestine Prophecy', 'https://images.isbndb.com/covers/10/02/9780446671002.jpg'), + ('0590483404', 'A Shocker On Shock Street (Goosebumps)', 'https://images.isbndb.com/covers/34/07/9780590483407.jpg'), + ('0060930314', 'Identity: A Novel', 'https://images.isbndb.com/covers/03/18/9780060930318.jpg'), + ('0590453653', 'Welcome To Dead House (Goosebumps, No. 1)', 'https://images.isbndb.com/covers/36/53/9780590453653.jpg'), + ('059056885X', 'Attack Of The Jack-O''-Lanterns (Goosebumps)', 'https://images.isbndb.com/covers/88/52/9780590568852.jpg'), + ('038549842X', 'Remembering Blue: A Novel', 'https://images.isbndb.com/covers/84/25/9780385498425.jpg'), + ('0385246870', 'Up Through Water', 'https://images.isbndb.com/covers/68/73/9780385246873.jpg'), + ('0312869088', 'Conspiracy.Com: A Novel', 'https://images.isbndb.com/covers/90/83/9780312869083.jpg'), + ('0871312875', 'Second Sight: A Miraculous Story Of Vision Regained', 'https://images.isbndb.com/covers/28/77/9780871312877.jpg'), + ('0340415185', 'Blood And Sand', 'https://images.isbndb.com/covers/51/84/9780340415184.jpg'), + ('0684865491', 'Remembrance Day', 'https://images.isbndb.com/covers/54/92/9780684865492.jpg'), + ('0786862874', 'Where Serpents Lie', 'https://images.isbndb.com/covers/28/70/9780786862870.jpg'), + ('0679419454', 'Disclosure', 'https://images.isbndb.com/covers/94/57/9780679419457.jpg'), + ('0553057456', 'Confessions', 'https://images.isbndb.com/covers/74/54/9780553057454.jpg'), + ('0385298870', 'Bright Shark', 'https://images.isbndb.com/covers/88/72/9780385298872.jpg'), + ('0836252063', 'The Greatest Evil (Father Koesler Mystery)', 'https://images.isbndb.com/covers/20/64/9780836252064.jpg'), + ('1575662493', 'Presumption Of Guilt', 'https://images.isbndb.com/covers/24/97/9781575662497.jpg'), + ('1551668971', 'Hurricane Bay', 'https://images.isbndb.com/covers/89/70/9781551668970.jpg'), + ('1880909340', 'The Crawlspace Conspiracy', 'https://images.isbndb.com/covers/93/48/9781880909348.jpg'), + ('0517597152', 'The Sentry', 'https://images.isbndb.com/covers/71/56/9780517597156.jpg'), + ('0399149384', 'Light In Shadow', 'https://images.isbndb.com/covers/93/82/9780399149382.jpg'), + ('1559721162', 'Savage Justice: A Novel', 'https://images.isbndb.com/covers/11/65/9781559721165.jpg'), + ('0802733220', 'Malice In Miniature: A Dorothy Martin Mystery', 'https://images.isbndb.com/covers/32/21/9780802733221.jpg'), + ('0892967307', 'The Red Room', 'https://images.isbndb.com/covers/73/08/9780892967308.jpg'), + ('0446518859', 'The Juror', 'https://images.isbndb.com/covers/88/57/9780446518857.jpg'), + ('0688126731', 'Don''t Cry Now: A Novel', 'https://images.isbndb.com/covers/67/35/9780688126735.jpg'), + ('0684196549', 'All Shall Be Well (a Superintendent Duncan Kincaid/sergeant Gemma James Myster', 'https://images.isbndb.com/covers/65/41/9780684196541.jpg'), + ('0688158196', 'Kill The Shogun (Samurai Mysteries)', 'https://images.isbndb.com/covers/81/94/9780688158194.jpg'), + ('0345386299', 'The Shadow Man', 'https://images.isbndb.com/covers/62/98/9780345386298.jpg'), + ('0836278658', 'No Greater Love', 'https://images.isbndb.com/covers/86/51/9780836278651.jpg'), + ('0609602403', 'I''ll Be Watching You', 'https://images.isbndb.com/covers/24/09/9780609602409.jpg'), + ('1575663473', 'Chameleon', 'https://images.isbndb.com/covers/34/70/9781575663470.jpg'), + ('0525426701', 'The White Jade Fox', 'https://images.isbndb.com/covers/67/07/9780525426707.jpg'), + ('0689304420', 'Z FOR ZACHARIAH', 'https://images.isbndb.com/covers/44/22/9780689304422.jpg'), + ('0394473043', 'Summer Solstice', 'https://images.isbndb.com/covers/30/48/9780394473048.jpg'), + ('052593863X', 'Reckless Driver: A Novel', 'https://images.isbndb.com/covers/86/37/9780525938637.jpg'), + ('0385419457', 'Dreaming In Color', 'https://images.isbndb.com/covers/94/51/9780385419451.jpg'), + ('0060176539', 'Breakthrough: The Next Step', 'https://images.isbndb.com/covers/65/32/9780060176532.jpg'), + ('038530532X', 'Is Anyone Out There?', 'https://images.isbndb.com/covers/53/27/9780385305327.jpg'), + ('0385314124', 'Children Of The Vampire', 'https://images.isbndb.com/covers/41/21/9780385314121.jpg'), + ('0312112831', 'A Cardinal Offense: A Father Dowling Mystery', 'https://images.isbndb.com/covers/28/37/9780312112837.jpg'), + ('0618045678', 'Wild Decembers', 'https://images.isbndb.com/covers/56/79/9780618045679.jpg'), + ('0312263066', 'Daughter Mine: A Novel', 'https://images.isbndb.com/covers/30/65/9780312263065.jpg'), + ('038097729X', 'Paradise Lost (Joanna Brady Mysteries, Book 9)', 'https://images.isbndb.com/covers/72/91/9780380977291.jpg'), + ('0670854891', 'The Ghost Road', 'https://images.isbndb.com/covers/48/99/9780670854899.jpg'), + ('2266123254', 'Avis De Grand Frais', 'https://images.isbndb.com/covers/32/59/9782266123259.jpg'), + ('0439531640', 'Inkheart', 'https://images.isbndb.com/covers/16/41/9780439531641.jpg'), + ('0152045708', 'Troy', 'https://images.isbndb.com/covers/57/08/9780152045708.jpg'), + ('0812971043', 'The Dante Club: A Novel', 'https://images.isbndb.com/covers/10/40/9780812971040.jpg'), + ('0156319527', 'Flush: A Biography', 'https://images.isbndb.com/covers/95/22/9780156319522.jpg'), + ('0754807762', 'Home Makeovers In An Instant (Practical Handbook)', 'https://images.isbndb.com/covers/77/66/9780754807766.jpg'), + ('0060923288', 'Raising Your Spirited Child: A Guide For Parents Whose Child Is More Intense, Sensitive, Perceptive, Persistent, Energetic', 'https://images.isbndb.com/covers/32/80/9780060923280.jpg'), + ('1551669323', 'Crimson Rain', 'https://images.isbndb.com/covers/93/28/9781551669328.jpg'), + ('0330349112', 'Cross Channel', 'https://images.isbndb.com/covers/91/16/9780330349116.jpg'), + ('033035566X', 'Strange Places, Questionable People: Updated With A New Chapter On Kosovo', 'https://images.isbndb.com/covers/56/67/9780330355667.jpg'), + ('061805670X', 'A Dangerous Friend', 'https://images.isbndb.com/covers/67/05/9780618056705.jpg'), + ('0684860244', 'Derailed In Uncle Ho''s Victory Garden', 'https://images.isbndb.com/covers/02/44/9780684860244.jpg'), + ('0831731516', 'The Emperor''s New Clothes.', 'https://images.isbndb.com/covers/15/19/9780831731519.jpg'), + ('3453870212', 'Herbstwolken: Roman', 'https://images.isbndb.com/covers/02/15/9783453870215.jpg'), + ('3442355052', 'Der Gaukler Der Könige', 'https://images.isbndb.com/covers/50/51/9783442355051.jpg'), + ('0385509510', 'Under The Banner Of Heaven: A Story Of Violent Faith', 'https://images.isbndb.com/covers/95/10/9780385509510.jpg'), + ('3426616653', 'Der Ruf Des Meeres', 'https://images.isbndb.com/covers/66/59/9783426616659.jpg'), + ('0688169082', 'At The Entrance To The Garden Of Eden: A Jew''s Search For God With Christians And Muslims In The Holy Land', 'https://images.isbndb.com/covers/90/84/9780688169084.jpg'), + ('1570753881', 'Jesus Through Jewish Eyes: Rabbis And Scholars Engage An Ancient Brother In A New Conversation', 'https://images.isbndb.com/covers/38/86/9781570753886.jpg'), + ('0813339022', 'In The Shadow Of The Prophet: The Struggle For The Soul Of Islam', 'https://images.isbndb.com/covers/90/23/9780813339023.jpg'), + ('0465083668', 'Tales Of The Lavender Menace: A Memoir Of Liberation', 'https://images.isbndb.com/covers/36/64/9780465083664.jpg'), + ('0931779073', 'The Philosophy Of Humanism', 'https://images.isbndb.com/covers/90/77/9780931779077.jpg'), + ('0679757015', 'Gender Outlaw: On Men, Women And The Rest Of Us', 'https://images.isbndb.com/covers/70/16/9780679757016.jpg'), + ('0385239165', 'Betty White In Person', 'https://images.isbndb.com/covers/91/65/9780385239165.jpg'), + ('155896388X', 'The Unitarian Universalist Pocket Guide', 'https://images.isbndb.com/covers/38/87/9781558963887.jpg'), + ('0380771535', 'I Ching In Ten Minutes', 'https://images.isbndb.com/covers/15/30/9780380771530.jpg'), + ('0813526507', 'Pretty In Punk: Girl''s Gender Resistance In A Boy''s Subculture', 'https://images.isbndb.com/covers/65/08/9780813526508.jpg'), + ('0460873946', 'Travels In West Africa (Everyman''s Library (Paper))', 'https://images.isbndb.com/covers/39/49/9780460873949.jpg'), + ('0804115761', 'A Thousand Acres', 'https://images.isbndb.com/covers/57/66/9780804115766.jpg'), + ('0688118186', 'The Mayflower Murderer And Other Forgotten Firsts In American History', 'https://images.isbndb.com/covers/81/81/9780688118181.jpg'), + ('0671027328', 'The GOLD OF EXODUS', 'https://images.isbndb.com/covers/73/22/9780671027322.jpg'), + ('1863305955', 'Underground: Tales Of Hacking, Madness, And Obsession On The Electronic Frontier', 'https://images.isbndb.com/covers/59/52/9781863305952.jpg'), + ('0195090616', 'Islam And The West', 'https://images.isbndb.com/covers/06/11/9780195090611.jpg'), + ('0812513495', 'Ender''s Game (Enders)', 'https://images.isbndb.com/covers/34/93/9780812513493.jpg'), + ('0812971116', 'Why Are We At War?', 'https://images.isbndb.com/covers/11/18/9780812971118.jpg'), + ('0140481850', 'Equus (Penguin Plays)', 'https://images.isbndb.com/covers/18/53/9780140481853.jpg'), + ('3442449871', 'Falltür Ins Paradies.', 'https://images.isbndb.com/covers/98/73/9783442449873.jpg'), + ('3442450136', 'Joe Goulds Geheimnis', 'https://images.isbndb.com/covers/01/38/9783442450138.jpg'), + ('3442426030', 'Wilde Lupinen', 'https://images.isbndb.com/covers/60/34/9783442426034.jpg'), + ('0064406423', 'X Files #07 Fear (X Files Middle Grade)', 'https://images.isbndb.com/covers/64/20/9780064406420.jpg'), + ('0140249265', 'Away: A Novel', 'https://images.isbndb.com/covers/92/62/9780140249262.jpg'), + ('3462027697', 'Soloalbum.', 'https://images.isbndb.com/covers/76/93/9783462027693.jpg'), + ('0449147231', 'We Wish You A Merry Murder', 'https://images.isbndb.com/covers/72/38/9780449147238.jpg'), + ('0747258740', 'The Haunting (Paul Doherty Historical Mysteries)', 'https://images.isbndb.com/covers/87/42/9780747258742.jpg'), + ('0330351958', 'A Booke Of Days: A Journal Of The Crusade', 'https://images.isbndb.com/covers/19/59/9780330351959.jpg'), + ('0743419162', 'Fanning The Flame', 'https://images.isbndb.com/covers/91/61/9780743419161.jpg'), + ('0451205707', 'A Killing Sky (Frank Palvicek Mysteries)', 'https://images.isbndb.com/covers/57/04/9780451205704.jpg'), + ('0060179341', 'Downtown', 'https://images.isbndb.com/covers/93/42/9780060179342.jpg'), + ('0316152196', 'Angels Flight (Harry Bosch)', 'https://images.isbndb.com/covers/21/98/9780316152198.jpg'), + ('0312185863', 'Four To Score (Stephanie Plum, No. 4) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/58/62/9780312185862.jpg'), + ('0312865694', 'Irish Mist: A Nuala Anne McGrail Novel', 'https://images.isbndb.com/covers/56/96/9780312865696.jpg'), + ('0684193965', 'The Double Minded Men: A Martha''s Vineyard Mystery (Book 3 In Series)', 'https://images.isbndb.com/covers/39/60/9780684193960.jpg'), + ('0451206444', 'My Lady Notorious', 'https://images.isbndb.com/covers/64/42/9780451206442.jpg'), + ('0843947616', 'In The Shadow Of The Arch (Joe Keough Mysteries)', 'https://images.isbndb.com/covers/76/18/9780843947618.jpg'), + ('0689117353', 'Memoirs Of An Invisible Man', 'https://images.isbndb.com/covers/73/50/9780689117350.jpg'), + ('0787902314', 'A Voice Of Our Own: Leading American Women Celebrate The Right To Vote', 'https://images.isbndb.com/covers/23/15/9780787902315.jpg'), + ('0304328502', 'Found Wanting: Women, Christianity And Sexuality (Sexual Politics)', 'https://images.isbndb.com/covers/85/05/9780304328505.jpg'), + ('0745312187', 'Sisterhoods: Feminists In Film And Fiction (Film/Fiction Volume 3)', 'https://images.isbndb.com/covers/21/87/9780745312187.jpg'), + ('0889220603', 'Theme For Diverse Instruments', 'https://images.isbndb.com/covers/06/07/9780889220607.jpg'), + ('1558505164', 'The Book Of Women: 300 Notable Women History Passed By', 'https://images.isbndb.com/covers/51/62/9781558505162.jpg'), + ('1550221582', 'K.d. Lang: Carrying The Torch', 'https://images.isbndb.com/covers/15/89/9781550221589.jpg'), + ('0553380400', 'Bingo', 'https://images.isbndb.com/covers/04/08/9780553380408.jpg'), + ('1555838537', 'Stone Butch Blues: A Novel', 'https://images.isbndb.com/covers/85/39/9781555838539.jpg'), + ('0889223017', 'Desert Of The Heart', 'https://images.isbndb.com/covers/30/11/9780889223011.jpg'), + ('0449219399', 'Murder At The National Cathedral (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/93/93/9780449219393.jpg'), + ('0310248299', 'Cross And The Switchblade', 'https://images.isbndb.com/covers/82/93/9780310248293.jpg'), + ('006104296X', 'East Is East: A John Putnam Thatcher Mystery', 'https://images.isbndb.com/covers/29/66/9780061042966.jpg'), + ('0553803700', 'I, Robot (Bantam Spectra Book)', 'https://images.isbndb.com/covers/37/09/9780553803709.jpg'), + ('0553565079', 'Forward The Foundation (Foundation Novels)', 'https://images.isbndb.com/covers/50/72/9780553565072.jpg'), + ('0451524608', 'As You Like It (Signet Classics)', 'https://images.isbndb.com/covers/46/07/9780451524607.jpg'), + ('0451522869', 'Henry V: The Life Of (Signet Classics)', 'https://images.isbndb.com/covers/28/63/9780451522863.jpg'), + ('0451524101', 'King Lear', 'https://images.isbndb.com/covers/41/02/9780451524102.jpg'), + ('0451522990', 'King John And Henry VIII (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/29/93/9780451522993.jpg'), + ('0451522966', 'Coriolanus (Signet Classics)', 'https://images.isbndb.com/covers/29/62/9780451522962.jpg'), + ('0451524098', 'Measure For Measure (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/40/96/9780451524096.jpg'), + ('0451523113', 'The Comedy Of Errors', 'https://images.isbndb.com/covers/31/12/9780451523112.jpg'), + ('0451522664', 'Richard III (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/26/65/9780451522665.jpg'), + ('0451522974', 'Troilus And Cressida (Signet Classics)', 'https://images.isbndb.com/covers/29/79/9780451522979.jpg'), + ('0140707204', 'All''s Well That Ends Well (Shakespeare, Penguin)', 'https://images.isbndb.com/covers/72/05/9780140707205.jpg'), + ('0140707182', 'Henry IV, Part 1 (Penguin) (Shakespeare, Penguin) (Pt.1)', 'https://images.isbndb.com/covers/71/82/9780140707182.jpg'), + ('014070728X', 'Henry IV, Part 2 (The New Penguin Shakespeare) (Pt.2)', 'https://images.isbndb.com/covers/72/81/9780140707281.jpg'), + ('0441001416', 'Lyon''s Pride', 'https://images.isbndb.com/covers/14/15/9780441001415.jpg'), + ('0671025325', 'Triangle:Imzadi 11', 'https://images.isbndb.com/covers/53/28/9780671025328.jpg'), + ('0802850995', 'Maria Mitchell: The Soul Of An Astronomer (Women Of Spirit)', 'https://images.isbndb.com/covers/09/97/9780802850997.jpg'), + ('0804200637', 'The Bible Makes Sense', 'https://images.isbndb.com/covers/06/39/9780804200639.jpg'), + ('068700781X', 'Meditations To Make You Smile', 'https://images.isbndb.com/covers/78/13/9780687007813.jpg'), + ('0679730621', 'Bachelor Girls', 'https://images.isbndb.com/covers/06/20/9780679730620.jpg'), + ('1862044201', 'The Most Important Lessons In Life: Letters To A Young Girl', 'https://images.isbndb.com/covers/42/03/9781862044203.jpg'), + ('0345388879', 'Don''t Get Me Started', 'https://images.isbndb.com/covers/88/72/9780345388872.jpg'), + ('0316102334', 'Family Outing', 'https://images.isbndb.com/covers/23/39/9780316102339.jpg'), + ('0380792508', 'Outlaw School', 'https://images.isbndb.com/covers/25/04/9780380792504.jpg'), + ('0517552000', 'The Hitchhiker''s Trilogy, Omnibus Edition', 'https://images.isbndb.com/covers/20/01/9780517552001.jpg'), + ('0553564927', 'The Last Command (Star Wars: The Thrawn Trilogy, Vol. 3)', 'https://images.isbndb.com/covers/49/21/9780553564921.jpg'), + ('0064403149', 'The Last Of The Really Great Whangdoodles 30th Anniversary Edition', 'https://images.isbndb.com/covers/31/46/9780064403146.jpg'), + ('0446400718', 'The Piper On The Mountain', 'https://images.isbndb.com/covers/07/18/9780446400718.jpg'), + ('0786868848', 'What About The Big Stuff?: Finding Strength And Moving Forward When The Stakes Are High (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/88/41/9780786868841.jpg'), + ('0451410378', 'The Silent Bride (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/03/75/9780451410375.jpg'), + ('1573227889', 'Tipping The Velvet: A Novel', 'https://images.isbndb.com/covers/78/89/9781573227889.jpg'), + ('0446515272', 'Dixie Riggs', 'https://images.isbndb.com/covers/52/76/9780446515276.jpg'), + ('0425129039', 'Weird Ways To Die', 'https://images.isbndb.com/covers/90/36/9780425129036.jpg'), + ('0373240007', 'Pride Of Jared Mackade (The Mackade Brothers)', 'https://images.isbndb.com/covers/00/05/9780373240005.jpg'), + ('3596505275', 'Buddenbrooks. Jubiläums- Edition. Verfall Einer Familie.', 'https://images.isbndb.com/covers/52/72/9783596505272.jpg'), + ('3608934537', 'Der Rote Rock', 'https://images.isbndb.com/covers/45/33/9783608934533.jpg'), + ('0765304341', 'From A Whisper To A Scream (Key Books)', 'https://images.isbndb.com/covers/43/46/9780765304346.jpg'), + ('076530418X', 'Stories Of Your Life And Others', 'https://images.isbndb.com/covers/41/86/9780765304186.jpg'), + ('0312867808', 'Starlight 3 (Starlight (Tor Hardcover))', 'https://images.isbndb.com/covers/78/05/9780312867805.jpg'), + ('0812568850', 'Enemy Glory', 'https://images.isbndb.com/covers/88/51/9780812568851.jpg'), + ('0812575857', 'Starfish', 'https://images.isbndb.com/covers/58/59/9780812575859.jpg'), + ('0452263565', 'Annie John', 'https://images.isbndb.com/covers/35/67/9780452263567.jpg'), + ('0553285920', 'Silent Partner', 'https://images.isbndb.com/covers/59/25/9780553285925.jpg'), + ('0345346602', 'A Summons To Memphis', 'https://images.isbndb.com/covers/66/05/9780345346605.jpg'), + ('0679454748', 'The Autobiography Of Foudini M. Cat', 'https://images.isbndb.com/covers/47/48/9780679454748.jpg'), + ('0785280952', 'Jake', 'https://images.isbndb.com/covers/09/58/9780785280958.jpg'), + ('0345430514', 'Another City, Not My Own', 'https://images.isbndb.com/covers/05/19/9780345430519.jpg'), + ('0060933186', 'Little Altars Everywhere', 'https://images.isbndb.com/covers/31/80/9780060933180.jpg'), + ('0061097853', 'The First Eagle (Jim Chee Novels)', 'https://images.isbndb.com/covers/78/50/9780061097850.jpg'), + ('0552995770', 'Confessions Of Aubrey Beardsley', 'https://images.isbndb.com/covers/57/71/9780552995771.jpg'), + ('0718143051', 'The Safe House', 'https://images.isbndb.com/covers/30/53/9780718143053.jpg'), + ('1865083348', 'The Shape Of Snakes', 'https://images.isbndb.com/covers/33/46/9781865083346.jpg'), + ('3570206181', 'Schauergeschichten Doppeldecker 1: Gänsehaut', 'https://images.isbndb.com/covers/61/88/9783570206188.jpg'), + ('3570205932', 'Gänsehaut - Mein Unsichtbarer Freund', 'https://images.isbndb.com/covers/59/38/9783570205938.jpg'), + ('3473581720', 'Ich Knall Euch Ab!', 'https://images.isbndb.com/covers/17/26/9783473581726.jpg'), + ('349913943X', 'Blondinenträume', 'https://images.isbndb.com/covers/94/37/9783499139437.jpg'), + ('0553271369', 'The Lords Of Discipline', 'https://images.isbndb.com/covers/13/62/9780553271362.jpg'), + ('0671016733', 'Fork In The Road', 'https://images.isbndb.com/covers/67/39/9780671016739.jpg'), + ('0618145591', 'Grass Roof, Tin Roof', 'https://images.isbndb.com/covers/55/91/9780618145591.jpg'), + ('0307001377', 'This Is My Family (A Little Golden Book)', 'https://images.isbndb.com/covers/13/75/9780307001375.jpg'), + ('0140390227', 'The Awakening, And Selected Stories', 'https://images.isbndb.com/covers/02/23/9780140390223.jpg'), + ('0851129412', 'The Guinness Book Of British Hit Singles', 'https://images.isbndb.com/covers/94/19/9780851129419.jpg'), + ('0851128882', 'THE GUINNESS BOOK OF BRITISH HIT ALBUMS.', 'https://images.isbndb.com/covers/88/87/9780851128887.jpg'), + ('1852838892', '30 Years Of NME Album Charts', 'https://images.isbndb.com/covers/88/98/9781852838898.jpg'), + ('0743430344', 'BIG CHERRY HOLLER', 'https://images.isbndb.com/covers/03/40/9780743430340.jpg'), + ('0500091080', 'Hockney By Hockney', 'https://images.isbndb.com/covers/10/81/9780500091081.jpg'), + ('0851125794', 'The Guinness Who''s Who Of Indie And New Wave Music (The Guinness Who''s Who Of Popular Music Series)', 'https://images.isbndb.com/covers/57/94/9780851125794.jpg'), + ('0711930007', 'Morrissey & Marr: The Severed Alliance', 'https://images.isbndb.com/covers/00/01/9780711930001.jpg'), + ('034911319X', 'Park And Ride: Adventures In Suburbia', 'https://images.isbndb.com/covers/31/97/9780349113197.jpg'), + ('0688176461', 'Taking Lottie Home: A Novel', 'https://images.isbndb.com/covers/64/64/9780688176464.jpg'), + ('0373765207', 'Cinderella''s Millionaire (Dynasties: The Barones)', 'https://images.isbndb.com/covers/52/01/9780373765201.jpg'), + ('0439132266', 'Science Surprises', 'https://images.isbndb.com/covers/22/68/9780439132268.jpg'), + ('0195101685', 'One Nation, Underprivileged: Why American Poverty Affects Us All', 'https://images.isbndb.com/covers/16/83/9780195101683.jpg'), + ('0860202909', 'Usborne Book Of The Future', 'https://images.isbndb.com/covers/29/05/9780860202905.jpg'), + ('0743477553', 'Othello (Folger Shakespeare Library)', 'https://images.isbndb.com/covers/75/50/9780743477550.jpg'), + ('0451515927', 'The Red Badge Of Courage (Signet Classics)', 'https://images.isbndb.com/covers/59/26/9780451515926.jpg'), + ('0373169922', 'C.E.O. & The Cookie Queen (Harlequin American Romance)', 'https://images.isbndb.com/covers/99/24/9780373169924.jpg'), + ('0671867091', 'Remember Me', 'https://images.isbndb.com/covers/70/96/9780671867096.jpg'), + ('1575662728', 'Irish Magic II: The Changeling/ Earthly Magic/ To Recapture The Light/ Bride Price', 'https://images.isbndb.com/covers/27/25/9781575662725.jpg'), + ('0821758608', 'Highland Treasure (Zebra Historical Romance)', 'https://images.isbndb.com/covers/86/01/9780821758601.jpg'), + ('038072751X', 'The Legend Of Bagger Vance: A Novel Of Golf And The Game Of Life', 'https://images.isbndb.com/covers/75/13/9780380727513.jpg'), + ('0553207083', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/70/88/9780553207088.jpg'), + ('0590487922', 'Zlata''s Diary: A Child''s Life In Sarajevo', 'https://images.isbndb.com/covers/79/24/9780590487924.jpg'), + ('0590554093', 'Tris''s Book (Circle Of Magic #2)', 'https://images.isbndb.com/covers/40/91/9780590554091.jpg'), + ('0821756079', 'The First Mountain Man: Cheyenne Challenge', 'https://images.isbndb.com/covers/60/72/9780821756072.jpg'), + ('0886778905', 'The Black Swan (Fairy Tale Series, Book 2)', 'https://images.isbndb.com/covers/89/03/9780886778903.jpg'), + ('0425147517', 'The Key To Midnight', 'https://images.isbndb.com/covers/75/11/9780425147511.jpg'), + ('0345386108', 'Winter Moon', 'https://images.isbndb.com/covers/61/06/9780345386106.jpg'), + ('0671709607', 'Flight Of The Intruder', 'https://images.isbndb.com/covers/96/00/9780671709600.jpg'), + ('1881471578', 'Spiritland', 'https://images.isbndb.com/covers/15/78/9781881471578.jpg'), + ('3442725984', 'Das Falsche Urteil: Roman', 'https://images.isbndb.com/covers/59/84/9783442725984.jpg'), + ('0849942365', 'Falling In Love With Jesus Abandoning Yourself To The Greatest Romance Of Your Life', 'https://images.isbndb.com/covers/23/65/9780849942365.jpg'), + ('0895294958', 'Deaf Smith Country Cookbook', 'https://images.isbndb.com/covers/49/51/9780895294951.jpg'), + ('0028612671', 'Simply Heavenly!: The Monastery Vegetarian Cookbook', 'https://images.isbndb.com/covers/26/76/9780028612676.jpg'), + ('0395752833', 'Smart Eating', 'https://images.isbndb.com/covers/28/38/9780395752838.jpg'), + ('0061056154', 'Magazine Beach', 'https://images.isbndb.com/covers/61/54/9780061056154.jpg'), + ('0515130095', 'Secret Honor (Honor Bound)', 'https://images.isbndb.com/covers/00/96/9780515130096.jpg'), + ('0061099082', 'The Last Raven', 'https://images.isbndb.com/covers/90/83/9780061099083.jpg'), + ('0812531884', 'Time And Chance', 'https://images.isbndb.com/covers/18/86/9780812531886.jpg'), + ('0671795554', 'Remember When', 'https://images.isbndb.com/covers/55/59/9780671795559.jpg'), + ('0886775981', 'To Green Angel Tower, Part 1 (Memory, Sorrow, And Thorn, Book 3)', 'https://images.isbndb.com/covers/59/88/9780886775988.jpg'), + ('0515130044', 'The Attorney (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/00/41/9780515130041.jpg'), + ('1551665204', 'Baby Farm', 'https://images.isbndb.com/covers/52/07/9781551665207.jpg'), + ('0440217334', 'Last Sanctuary', 'https://images.isbndb.com/covers/73/36/9780440217336.jpg'), + ('0140287442', 'I Dreamed Of Africa', 'https://images.isbndb.com/covers/74/48/9780140287448.jpg'), + ('0425164152', 'Time''s Arrow: The Present (X-Men & Spider-Man, No 2)', 'https://images.isbndb.com/covers/41/50/9780425164150.jpg'), + ('038072118X', 'Where Is Joe Merchant?', 'https://images.isbndb.com/covers/11/84/9780380721184.jpg'), + ('0451407199', 'Valentine', 'https://images.isbndb.com/covers/71/91/9780451407191.jpg'), + ('0446608009', 'The Drowning People', 'https://images.isbndb.com/covers/80/08/9780446608008.jpg'), + ('0553576798', 'The Other Daughter', 'https://images.isbndb.com/covers/67/95/9780553576795.jpg'), + ('1558850767', 'Holy Radishes', 'https://images.isbndb.com/covers/07/67/9781558850767.jpg'), + ('0684871483', 'Kokology : The Game Of Self-Discovery', 'https://images.isbndb.com/covers/14/86/9780684871486.jpg'), + ('0446525537', 'A Walk To Remember', 'https://images.isbndb.com/covers/55/34/9780446525534.jpg'), + ('0385472978', 'Next Year In Cuba', 'https://images.isbndb.com/covers/29/75/9780385472975.jpg'), + ('0533133726', 'Care And Feeding Of The Chronologically Gifted Brain', 'https://images.isbndb.com/covers/37/27/9780533133727.jpg'), + ('1561708755', '10 Secrets For Success And Inner Peace', 'https://images.isbndb.com/covers/87/58/9781561708758.jpg'), + ('0375507639', 'A Long Way From Home: Growing Up In The American Heartland', 'https://images.isbndb.com/covers/76/32/9780375507632.jpg'), + ('0670894605', 'The Secret Life Of Bees', 'https://images.isbndb.com/covers/46/04/9780670894604.jpg'), + ('038550117X', 'Disobedience: A Novel', 'https://images.isbndb.com/covers/11/70/9780385501170.jpg'), + ('0684847450', 'MY SISTER FROM THE BLACK LAGOON : A Novel Of My Life', 'https://images.isbndb.com/covers/74/50/9780684847450.jpg'), + ('0886772796', 'Magicians Of Gor (Tarl Cabot Saga, Book 25)', 'https://images.isbndb.com/covers/27/96/9780886772796.jpg'), + ('0451451600', 'I Shudder At Your Touch', 'https://images.isbndb.com/covers/16/06/9780451451606.jpg'), + ('0752847732', 'Asterix And The Great Divide (Asterix (Orion Paperback))', 'https://images.isbndb.com/covers/77/33/9780752847733.jpg'), + ('0684865386', 'Namedropper: A Novel', 'https://images.isbndb.com/covers/53/86/9780684865386.jpg'), + ('1400030927', 'Jennifer Government', 'https://images.isbndb.com/covers/09/27/9781400030927.jpg'), + ('0340767065', 'Fractions Of Zero', 'https://images.isbndb.com/covers/70/61/9780340767061.jpg'), + ('0582327318', 'Understanding Immunology (Cell And Molecular Biology In Action)', 'https://images.isbndb.com/covers/73/13/9780582327313.jpg'), + ('0135605415', 'Mathematics And Statistics For The Bio-Sciences (Mathematics And Its Applications)', 'https://images.isbndb.com/covers/54/17/9780135605417.jpg'), + ('0395585686', 'Blue Highways: A Journey Into America', 'https://images.isbndb.com/covers/56/89/9780395585689.jpg'), + ('3442445078', 'Zeitbeben', 'https://images.isbndb.com/covers/50/73/9783442445073.jpg'), + ('0141012722', 'Late Season', 'https://images.isbndb.com/covers/27/28/9780141012728.jpg'), + ('0451208668', 'The Opposite Shore', 'https://images.isbndb.com/covers/86/68/9780451208668.jpg'), + ('0380976749', 'The Mermaids Singing', 'https://images.isbndb.com/covers/67/44/9780380976744.jpg'), + ('038549744X', 'English Passengers: A Novel', 'https://images.isbndb.com/covers/74/42/9780385497442.jpg'), + ('0316095648', 'A Question Of Blood: An Inspector Rebus Novel', 'https://images.isbndb.com/covers/56/48/9780316095648.jpg'), + ('1552781364', 'Moon Island', 'https://images.isbndb.com/covers/13/64/9781552781364.jpg'), + ('075530540X', 'My Lovers Lover', 'https://images.isbndb.com/covers/54/07/9780755305407.jpg'), + ('0590321579', 'The Girl With The Silver Eyes', 'https://images.isbndb.com/covers/15/70/9780590321570.jpg'), + ('0919926487', 'Queen Of The Headaches', 'https://images.isbndb.com/covers/64/86/9780919926486.jpg'), + ('090898801X', 'Wild At Heart: The South Island''s West Coast', 'https://images.isbndb.com/covers/80/13/9780908988013.jpg'), + ('0553275380', 'The Palace', 'https://images.isbndb.com/covers/53/84/9780553275384.jpg'), + ('0505522977', 'The Reluctant Viking (Timeswept)', 'https://images.isbndb.com/covers/29/79/9780505522979.jpg'), + ('3548256058', 'Der Golem', 'https://images.isbndb.com/covers/60/54/9783548256054.jpg'), + ('3404614887', 'Wo Keine Worte Sind, Da Ist Musik. Eine Junge Sängerin Bewältigt Ihre Vergangenheit.', 'https://images.isbndb.com/covers/48/82/9783404614882.jpg'), + ('2226133097', 'Chambre à Part', 'https://images.isbndb.com/covers/30/90/9782226133090.jpg'), + ('0684849046', 'The Deadhouse', 'https://images.isbndb.com/covers/90/41/9780684849041.jpg'), + ('0679752560', 'An Unspoken Hunger: Stories From The Field', 'https://images.isbndb.com/covers/25/61/9780679752561.jpg'), + ('0312270348', 'Let''s Go 2002: China (Let''s Go: China)', 'https://images.isbndb.com/covers/03/46/9780312270346.jpg'), + ('0345446666', 'Death In Holy Orders (Adam Dalgliesh Mystery Series #11)', 'https://images.isbndb.com/covers/66/64/9780345446664.jpg'), + ('0449207668', 'Bluegate Fields: A Charlotte And Thomas Pitt Novel', 'https://images.isbndb.com/covers/76/66/9780449207666.jpg'), + ('1877251038', 'Strawberries With The Fuhrer: A Journey From The Third Reich To New Zealand', 'https://images.isbndb.com/covers/10/30/9781877251030.jpg'), + ('0877734518', 'A Little Course In Dreams', 'https://images.isbndb.com/covers/45/12/9780877734512.jpg'), + ('1863305025', 'Homebush Boy', 'https://images.isbndb.com/covers/50/20/9781863305020.jpg'), + ('0460875523', '19th Century American Short Stories (Everyman''s Library (Paper))', 'https://images.isbndb.com/covers/55/23/9780460875523.jpg'), + ('0330359916', 'Night Letters', 'https://images.isbndb.com/covers/99/17/9780330359917.jpg'), + ('0553550020', 'A Home At The End Of The World', 'https://images.isbndb.com/covers/00/23/9780553550023.jpg'), + ('0881662089', 'Feed Me! I''m Yours: Baby Food Made Easy', 'https://images.isbndb.com/covers/20/85/9780881662085.jpg'), + ('0890875871', 'PMS: Premenstrual Syndrome Self-Help Book', 'https://images.isbndb.com/covers/58/72/9780890875872.jpg'), + ('0385423977', 'The Beauty Myth: How Images Of Beauty Are Used Against Women', 'https://images.isbndb.com/covers/39/77/9780385423977.jpg'), + ('0805031251', 'Food And Mood: The Complete Guide To Eating Well And Feeling Your Best (Henry Holt Reference Book)', 'https://images.isbndb.com/covers/12/56/9780805031256.jpg'), + ('0684859114', 'Damascus Gate', 'https://images.isbndb.com/covers/91/18/9780684859118.jpg'), + ('0812931378', 'Paris In The Fifties', 'https://images.isbndb.com/covers/13/72/9780812931372.jpg'), + ('042514321X', 'The Novice''s Tale (Sister Frevisse Medieval Mysteries)', 'https://images.isbndb.com/covers/32/16/9780425143216.jpg'), + ('0767904621', 'Play Like A Man, Win Like A Woman: What Men Know About Success That Women Need To Learn', 'https://images.isbndb.com/covers/46/29/9780767904629.jpg'), + ('0312205309', 'Dr. Laura: The Unauthorized Biography', 'https://images.isbndb.com/covers/53/00/9780312205300.jpg'), + ('0061008079', 'A Woman Of Substance', 'https://images.isbndb.com/covers/80/78/9780061008078.jpg'), + ('096843911X', 'Feng Shui : Going With The Flow', 'https://images.isbndb.com/covers/91/11/9780968439111.jpg'), + ('0553255762', 'Maya Angelou: Poems', 'https://images.isbndb.com/covers/57/68/9780553255768.jpg'), + ('1550460943', 'Daytripper 3: 50 Trips In And Around Eastern Ontario', 'https://images.isbndb.com/covers/09/40/9781550460940.jpg'), + ('067154683X', 'Anne Frank : The Diary Of A Young Girl', 'https://images.isbndb.com/covers/68/30/9780671546830.jpg'), + ('0671690094', 'Anne Frank: Diary Of A Young Girl', 'https://images.isbndb.com/covers/00/90/9780671690090.jpg'), + ('3492231489', 'Die Einsamkeit Des Managers. Ein Pepe-Carvalho-Roman', 'https://images.isbndb.com/covers/14/80/9783492231480.jpg'), + ('0618093974', 'My Life On A Plate', 'https://images.isbndb.com/covers/39/77/9780618093977.jpg'), + ('0060970421', 'Some Tame Gazelle', 'https://images.isbndb.com/covers/04/20/9780060970420.jpg'), + ('0440295556', 'The Partner', 'https://images.isbndb.com/covers/55/56/9780440295556.jpg'), + ('0590423827', 'Scared Silly', 'https://images.isbndb.com/covers/38/23/9780590423823.jpg'), + ('0440134056', 'Hackers', 'https://images.isbndb.com/covers/40/53/9780440134053.jpg'), + ('0399145419', 'Friendship With God: An Uncommon Dialogue', 'https://images.isbndb.com/covers/54/14/9780399145414.jpg'), + ('0553241443', 'Holiday For Murder,a', 'https://images.isbndb.com/covers/14/40/9780553241440.jpg'), + ('0425071588', 'Starship Troopers', 'https://images.isbndb.com/covers/15/88/9780425071588.jpg'), + ('0156004801', 'All The King''s Men', 'https://images.isbndb.com/covers/48/00/9780156004800.jpg'), + ('0380788802', 'Blood Red Roses', 'https://images.isbndb.com/covers/88/04/9780380788804.jpg'), + ('1853260975', 'Tender Is The Night (Wordsworth Classics)', 'https://images.isbndb.com/covers/09/71/9781853260971.jpg'), + ('0671047302', 'Venetian Dreaming', 'https://images.isbndb.com/covers/73/06/9780671047306.jpg'), + ('0843949465', 'Blood On The Arch', 'https://images.isbndb.com/covers/94/69/9780843949469.jpg'), + ('0099142309', 'Red Watch', 'https://images.isbndb.com/covers/23/00/9780099142300.jpg'), + ('0671640992', 'The Forest People', 'https://images.isbndb.com/covers/09/96/9780671640996.jpg'), + ('0312610556', 'Piece Of My Heart: The Life, Times And Legend Of Janis Joplin', 'https://images.isbndb.com/covers/05/55/9780312610555.jpg'), + ('0385493002', 'The Intuitionist: A Novel', 'https://images.isbndb.com/covers/30/00/9780385493000.jpg'), + ('0385418132', 'The Art Of Alfred Hitchcock: Fifty Years Of His Motion Pictures', 'https://images.isbndb.com/covers/81/33/9780385418133.jpg'), + ('0446611921', 'The Millionaires', 'https://images.isbndb.com/covers/19/23/9780446611923.jpg'), + ('006103018X', 'Coldheart Canyon', 'https://images.isbndb.com/covers/01/85/9780061030185.jpg'), + ('0525945725', 'The Darwin Awards: Evolution In Action', 'https://images.isbndb.com/covers/57/27/9780525945727.jpg'), + ('3351028253', 'Nirgends Und Zu Keiner Stunde', 'https://images.isbndb.com/covers/82/51/9783351028251.jpg'), + ('0140511687', 'Dictionary Of English Synonyms And Antonyms, The Penguin: Revised Edition (Reference)', 'https://images.isbndb.com/covers/16/80/9780140511680.jpg'), + ('0030291798', 'Business Marketing Management: A Strategic View Of Industrial And Organizational Markets', 'https://images.isbndb.com/covers/17/91/9780030291791.jpg'), + ('0060959541', 'From This Day Forward', 'https://images.isbndb.com/covers/95/48/9780060959548.jpg'), + ('0812967224', 'The Day I Turned Uncool: Confessions Of A Reluctant Grown-up', 'https://images.isbndb.com/covers/72/27/9780812967227.jpg'), + ('0374250995', 'Rivonia''s Children: Three Families And The Cost Of Conscience In White South Africa', 'https://images.isbndb.com/covers/09/97/9780374250997.jpg'), + ('0380710722', 'It''s Always Something', 'https://images.isbndb.com/covers/07/20/9780380710720.jpg'), + ('0006550576', 'Red Leaves', 'https://images.isbndb.com/covers/05/70/9780006550570.jpg'), + ('0743471555', '1633', 'https://images.isbndb.com/covers/15/58/9780743471558.jpg'), + ('0553101633', 'God Save The Queen', 'https://images.isbndb.com/covers/16/38/9780553101638.jpg'), + ('0743205820', 'Jinxed (Regan Reilly Mysteries, No. 6)', 'https://images.isbndb.com/covers/58/25/9780743205825.jpg'), + ('0061094226', 'Choke', 'https://images.isbndb.com/covers/42/24/9780061094224.jpg'), + ('0679776591', 'Fugitive Pieces: A Novel', 'https://images.isbndb.com/covers/65/98/9780679776598.jpg'), + ('3446177108', 'Das Kartengeheimnis', 'https://images.isbndb.com/covers/71/09/9783446177109.jpg'), + ('3426609568', 'Sturmwind', 'https://images.isbndb.com/covers/95/69/9783426609569.jpg'), + ('3453090578', 'Die Verurteilten', 'https://images.isbndb.com/covers/05/76/9783453090576.jpg'), + ('3442441188', 'Die Schiffe Der Kleopatra. Ein Krimi Aus Dem Alten Rom.', 'https://images.isbndb.com/covers/11/81/9783442441181.jpg'), + ('0679777423', 'Gut Symmetries', 'https://images.isbndb.com/covers/74/27/9780679777427.jpg'), + ('0553344234', 'Love Medicine', 'https://images.isbndb.com/covers/42/33/9780553344233.jpg'), + ('0060175796', 'The Bean Trees Anniversary Edition: A Novel', 'https://images.isbndb.com/covers/57/95/9780060175795.jpg'), + ('057121861X', 'Dart', 'https://images.isbndb.com/covers/86/15/9780571218615.jpg'), + ('0807004553', 'Sustainable Planet: Solutions For The Twenty-first Century', 'https://images.isbndb.com/covers/45/55/9780807004555.jpg'), + ('0140439072', 'The Sign Of Four (Penguin Classics)', 'https://images.isbndb.com/covers/90/76/9780140439076.jpg'), + ('0140288090', 'Looking For Maya', 'https://images.isbndb.com/covers/80/94/9780140288094.jpg'), + ('0679435549', 'Caramelo', 'https://images.isbndb.com/covers/55/49/9780679435549.jpg'), + ('3492044514', 'Balzac Und Die Kleine Chinesische Schneiderin', 'https://images.isbndb.com/covers/45/16/9783492044516.jpg'), + ('3442354722', 'Die Zwillingsschwester: Roman', 'https://images.isbndb.com/covers/47/26/9783442354726.jpg'), + ('3442356970', 'Der Zaubergarten.', 'https://images.isbndb.com/covers/69/73/9783442356973.jpg'), + ('3442442540', 'Der Verehrer', 'https://images.isbndb.com/covers/25/46/9783442442546.jpg'), + ('3442438659', 'Traumfrau Mit Nebenwirkungen: Roman', 'https://images.isbndb.com/covers/86/55/9783442438655.jpg'), + ('3499225964', 'Herz Dame Sticht', 'https://images.isbndb.com/covers/59/63/9783499225963.jpg'), + ('3492236324', 'Love-M@il: Roman', 'https://images.isbndb.com/covers/63/24/9783492236324.jpg'), + ('3426612828', 'Der Fluch Der Feuerfrau', 'https://images.isbndb.com/covers/28/28/9783426612828.jpg'), + ('3462030191', 'Paradies Der Ungeheuer: Ein Malaussene-Roman', 'https://images.isbndb.com/covers/01/98/9783462030198.jpg'), + ('3426622254', 'Panic Room, Film-Tie-In', 'https://images.isbndb.com/covers/22/54/9783426622254.jpg'), + ('3426048086', 'Gorillas Im Nebel. Mein Leben Mit Den Sanften Riesen.', 'https://images.isbndb.com/covers/80/85/9783426048085.jpg'), + ('3498006312', 'Berlin - Moskau. Eine Reise Zu Fuß', 'https://images.isbndb.com/covers/63/10/9783498006310.jpg'), + ('3746612160', 'Der Wilde Tanz Der Seidenröcke: Roman', 'https://images.isbndb.com/covers/21/64/9783746612164.jpg'), + ('3485008702', 'Ein Krokodil Für Mma Ramotswe. Der Erste Fall Der » No. 1 Ladies'' Detektive Agency «', 'https://images.isbndb.com/covers/87/09/9783485008709.jpg'), + ('3453195841', 'Das Süße Vermächtnis', 'https://images.isbndb.com/covers/58/44/9783453195844.jpg'), + ('340411566X', 'Der Club Der Toten Dichter: Roman', 'https://images.isbndb.com/covers/56/62/9783404115662.jpg'), + ('345307565X', 'Die Akte: Roman', 'https://images.isbndb.com/covers/56/58/9783453075658.jpg'), + ('3453177398', 'Ein Heißer Sommer Für Commissario Cataldo', 'https://images.isbndb.com/covers/73/90/9783453177390.jpg'), + ('0679020489', 'FODOR-HOLLAND''92 (Gold Guides)', 'https://images.isbndb.com/covers/04/86/9780679020486.jpg'), + ('0471526525', 'The Concierge''s Guide To Boston', 'https://images.isbndb.com/covers/65/20/9780471526520.jpg'), + ('0312263236', 'Four Mothers: A Novel', 'https://images.isbndb.com/covers/32/32/9780312263232.jpg'), + ('0670853097', 'The Stone Diaries', 'https://images.isbndb.com/covers/30/90/9780670853090.jpg'), + ('0140184325', 'The Aran Islands (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/43/27/9780140184327.jpg'), + ('0340424354', 'Mysteries Of Pittsburgh', 'https://images.isbndb.com/covers/43/53/9780340424353.jpg'), + ('1862045143', 'Lillian Too''s Little Book Of Feng Shui', 'https://images.isbndb.com/covers/51/49/9781862045149.jpg'), + ('0671000314', 'Flood Tide', 'https://images.isbndb.com/covers/03/18/9780671000318.jpg'), + ('0688170714', 'In The Family Way: An Urban Comedy', 'https://images.isbndb.com/covers/07/14/9780688170714.jpg'), + ('0375502114', 'In The Family Way: A Novel', 'https://images.isbndb.com/covers/21/18/9780375502118.jpg'), + ('0517703963', 'Midwives: A Novel', 'https://images.isbndb.com/covers/39/60/9780517703960.jpg'), + ('0786866500', 'Still Woman Enough: A Memoir', 'https://images.isbndb.com/covers/65/02/9780786866502.jpg'), + ('0062516086', 'The Measure Of A Man: A Spiritual Autobiography', 'https://images.isbndb.com/covers/60/84/9780062516084.jpg'), + ('0670879835', 'Orbiting The Giant Hairball: A Corporate Fool''s Guide To Surviving With Grace', 'https://images.isbndb.com/covers/98/30/9780670879830.jpg'), + ('1551920107', 'The Merchants Of Venus: Inside Harlequin And The Empire Of Romance', 'https://images.isbndb.com/covers/01/08/9781551920108.jpg'), + ('1591293049', 'Prisoner Of The Heart', 'https://images.isbndb.com/covers/30/40/9781591293040.jpg'), + ('087113795X', 'Peace Like A River', 'https://images.isbndb.com/covers/79/51/9780871137951.jpg'), + ('0446522597', 'The Winner', 'https://images.isbndb.com/covers/25/95/9780446522595.jpg'), + ('0375507876', 'Prague: A Novel', 'https://images.isbndb.com/covers/78/78/9780375507878.jpg'), + ('0671724800', 'Ski Weekend (Fear Street, No. 10)', 'https://images.isbndb.com/covers/48/01/9780671724801.jpg'), + ('0590446681', 'Home Alone', 'https://images.isbndb.com/covers/66/86/9780590446686.jpg'), + ('0590303805', '101 Pet Jokes', 'https://images.isbndb.com/covers/38/04/9780590303804.jpg'), + ('0590426257', '2 Sweet 2 B 4-Gotten (Friends 4-Ever Book #3)', 'https://images.isbndb.com/covers/62/51/9780590426251.jpg'), + ('0590426265', 'Yours Till The Meatball Bounces (Friends 4-Ever Book #2)', 'https://images.isbndb.com/covers/62/68/9780590426268.jpg'), + ('0671745069', 'Ancient Evil (Chain Letter 2)', 'https://images.isbndb.com/covers/50/66/9780671745066.jpg'), + ('0380710811', 'The First Man In Rome', 'https://images.isbndb.com/covers/08/12/9780380710812.jpg'), + ('0836226992', '1,003 Great Things About Getting Older', 'https://images.isbndb.com/covers/69/97/9780836226997.jpg'), + ('0066209773', 'The Master Butchers Singing Club: A Novel (Erdrich, Louise)', 'https://images.isbndb.com/covers/97/77/9780066209777.jpg'), + ('0140082255', 'Women And Self-Esteem: Understanding And Improving The Way We Think And Feel AboutOurselves', 'https://images.isbndb.com/covers/22/58/9780140082258.jpg'), + ('1558746226', 'A Second Chicken Soup For The Woman''s Soul: 101 More Stories To Open The Hearts And Rekindle The Spirits Of Women', 'https://images.isbndb.com/covers/62/20/9781558746220.jpg'), + ('0688167101', 'The Unspeakable: A Novel', 'https://images.isbndb.com/covers/71/03/9780688167103.jpg'), + ('0375502912', 'Seabiscuit: An American Legend', 'https://images.isbndb.com/covers/29/10/9780375502910.jpg'), + ('1400047714', 'Pigs At The Trough', 'https://images.isbndb.com/covers/77/10/9781400047710.jpg'), + ('1893224902', 'When You Ride Alone You Ride With Bin Laden: What The Government Should Be Telling Us To Help Fight The War On Terrorism', 'https://images.isbndb.com/covers/49/02/9781893224902.jpg'), + ('0811808424', 'Under The Tuscan Sun: At Home In Italy', 'https://images.isbndb.com/covers/84/22/9780811808422.jpg'), + ('0375506276', 'The Fourth Hand', 'https://images.isbndb.com/covers/62/77/9780375506277.jpg'), + ('0935300007', 'The Psychology Of Winning', 'https://images.isbndb.com/covers/00/00/9780935300000.jpg'), + ('905000105X', 'Het Huis Van De Zeven Zusters (Dutch Edition)', 'https://images.isbndb.com/covers/10/52/9789050001052.jpg'), + ('0898220785', 'DES Stories : Faces And Voices Of People Exposed To Diethylstilbestrol', 'https://images.isbndb.com/covers/07/80/9780898220780.jpg'), + ('207054351X', 'Harry Potter, Tome 4 : Harry Potter Et La Coupe De Feu', 'https://images.isbndb.com/covers/35/19/9782070543519.jpg'), + ('0440234700', 'The Bridegroom', 'https://images.isbndb.com/covers/47/08/9780440234708.jpg'), + ('0373075111', 'Dragonslayer (American Heroes) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/51/19/9780373075119.jpg'), + ('0451175190', 'Reversible Error (Signet)', 'https://images.isbndb.com/covers/51/99/9780451175199.jpg'), + ('0451181964', 'Corruption Of Blood', 'https://images.isbndb.com/covers/19/61/9780451181961.jpg'), + ('0886776686', 'The Ruins Of Ambrai (Exiles, Vol. 1)', 'https://images.isbndb.com/covers/66/88/9780886776688.jpg'), + ('1582340110', 'A Hard Time To Be A Father: Stories', 'https://images.isbndb.com/covers/01/11/9781582340111.jpg'), + ('1567920713', 'The Disobedience Of Water: Stories And Novellas', 'https://images.isbndb.com/covers/07/10/9781567920710.jpg'), + ('0743237196', 'Fall On Your Knees', 'https://images.isbndb.com/covers/71/92/9780743237192.jpg'), + ('0515136565', 'Final Justice (Badge Of Honor)', 'https://images.isbndb.com/covers/65/62/9780515136562.jpg'), + ('0312864124', 'The Young Savages', 'https://images.isbndb.com/covers/41/25/9780312864125.jpg'), + ('0684803968', 'Let Me Call You Sweetheart', 'https://images.isbndb.com/covers/39/68/9780684803968.jpg'), + ('0553582364', 'A Traitor To Memory', 'https://images.isbndb.com/covers/23/69/9780553582369.jpg'), + ('0446611476', 'Stone Kiss', 'https://images.isbndb.com/covers/14/73/9780446611473.jpg'), + ('0553284363', 'Payment In Blood', 'https://images.isbndb.com/covers/43/62/9780553284362.jpg'), + ('075151635X', 'Without Mercy', 'https://images.isbndb.com/covers/63/57/9780751516357.jpg'), + ('0515117420', 'The Murderers (Badge Of Honor) (Vol 4)', 'https://images.isbndb.com/covers/74/24/9780515117424.jpg'), + ('0515107476', 'The Witness (Badge Of Honor)', 'https://images.isbndb.com/covers/74/70/9780515107470.jpg'), + ('0515132489', 'Special Ops (Brotherhood Of War, Book 9)', 'https://images.isbndb.com/covers/24/89/9780515132489.jpg'), + ('0515103977', 'The Victim (Badge Of Honor) (Vol 3)', 'https://images.isbndb.com/covers/39/77/9780515103977.jpg'), + ('0515101486', 'Special Operations (Badge Of Honor)', 'https://images.isbndb.com/covers/14/85/9780515101485.jpg'), + ('0515097500', 'Men In Blue (Badge Of Honor)', 'https://images.isbndb.com/covers/75/04/9780515097504.jpg'), + ('0515111139', 'The Assassin: The Explosive Badge Of Honor Novel (Badge Of Honor 05)', 'https://images.isbndb.com/covers/11/32/9780515111132.jpg'), + ('0375500642', 'The Best Of Outside: The First 20 Years', 'https://images.isbndb.com/covers/06/40/9780375500640.jpg'), + ('0743219287', '8 Men And A Duck : An Improbable Voyage By Reed Boat To Easter Island', 'https://images.isbndb.com/covers/92/80/9780743219280.jpg'), + ('0451200152', 'The Town', 'https://images.isbndb.com/covers/01/50/9780451200150.jpg'), + ('0759239630', 'Live Girls', 'https://images.isbndb.com/covers/96/30/9780759239630.jpg'), + ('0812525647', 'Fright Night', 'https://images.isbndb.com/covers/56/49/9780812525649.jpg'), + ('0751500046', 'Captives', 'https://images.isbndb.com/covers/00/42/9780751500042.jpg'), + ('0684831708', 'One Two Buckle My Shoe', 'https://images.isbndb.com/covers/17/01/9780684831701.jpg'), + ('0446355917', 'Beastnights', 'https://images.isbndb.com/covers/59/19/9780446355919.jpg'), + ('0140390081', 'Two Years Before The Mast: A Personal Narrative Of Life At Sea (Penguin Classics)', 'https://images.isbndb.com/covers/00/87/9780140390087.jpg'), + ('0060168528', 'I Hope: Reminiscences And Reflections', 'https://images.isbndb.com/covers/85/20/9780060168520.jpg'), + ('0451522087', 'Ramona (Signet Classics)', 'https://images.isbndb.com/covers/20/85/9780451522085.jpg'), + ('0877953120', 'Murder On Capitol Hill: A Novel', 'https://images.isbndb.com/covers/31/28/9780877953128.jpg'), + ('0743411331', 'Never Change', 'https://images.isbndb.com/covers/13/32/9780743411332.jpg'), + ('044100914X', 'Castaways Of The Flying Dutchman', 'https://images.isbndb.com/covers/91/45/9780441009145.jpg'), + ('0553379194', 'Fortress Draconis (The DragonCrown War Cycle, Book 1)', 'https://images.isbndb.com/covers/91/98/9780553379198.jpg'), + ('0441008976', 'Channeling Cleopatra', 'https://images.isbndb.com/covers/89/71/9780441008971.jpg'), + ('0140386270', 'Vampire Heart', 'https://images.isbndb.com/covers/62/71/9780140386271.jpg'), + ('0451451430', 'Nightseer', 'https://images.isbndb.com/covers/14/39/9780451451439.jpg'), + ('0345444019', 'The Raven Warrior (Tales Of Guinevere)', 'https://images.isbndb.com/covers/40/11/9780345444011.jpg'), + ('0345444000', 'The Dragon Queen', 'https://images.isbndb.com/covers/40/04/9780345444004.jpg'), + ('0553103946', 'Prince Of Time', 'https://images.isbndb.com/covers/39/46/9780553103946.jpg'), + ('0345440781', 'The Redemption Of Althalus', 'https://images.isbndb.com/covers/07/85/9780345440785.jpg'), + ('0743431014', 'Songs Of The Humpback Whale: A Novel', 'https://images.isbndb.com/covers/10/19/9780743431019.jpg'), + ('0553381768', 'A Singular Hostage', 'https://images.isbndb.com/covers/17/64/9780553381764.jpg'), + ('051770739X', 'Downsize This!', 'https://images.isbndb.com/covers/73/95/9780517707395.jpg'), + ('0743227123', 'The Fabulist', 'https://images.isbndb.com/covers/71/24/9780743227124.jpg'), + ('0553370804', 'Parables From Other Planets', 'https://images.isbndb.com/covers/08/05/9780553370805.jpg'), + ('1550170759', 'A Whole Brass Band', 'https://images.isbndb.com/covers/07/57/9781550170757.jpg'), + ('0451203771', 'Scarlet Feather', 'https://images.isbndb.com/covers/37/79/9780451203779.jpg'), + ('0515124893', 'Homeport', 'https://images.isbndb.com/covers/48/97/9780515124897.jpg'), + ('0671528203', 'Stillwatch', 'https://images.isbndb.com/covers/82/01/9780671528201.jpg'), + ('0786860820', 'Burning Angel: A Novel (Dave Robicheaux Mysteries)', 'https://images.isbndb.com/covers/08/21/9780786860821.jpg'), + ('0394732928', 'The Kin Of Ata Are Waiting For You', 'https://images.isbndb.com/covers/29/23/9780394732923.jpg'), + ('0812540336', 'The Visitant (The Anasazi Mysteries, Book 1)', 'https://images.isbndb.com/covers/03/38/9780812540338.jpg'), + ('0061012165', 'Glimmering', 'https://images.isbndb.com/covers/21/67/9780061012167.jpg'), + ('0399504583', 'Pale Fire', 'https://images.isbndb.com/covers/45/87/9780399504587.jpg'), + ('0140351302', 'Great Expectations (Puffin Classics)', 'https://images.isbndb.com/covers/13/09/9780140351309.jpg'), + ('0195130928', 'Between Dignity And Despair: Jewish Life In Nazi Germany (Studies In Jewish History)', 'https://images.isbndb.com/covers/09/28/9780195130928.jpg'), + ('0553210793', 'The Adventures Of Huckleberry Finn (Bantam Classic)', 'https://images.isbndb.com/covers/07/98/9780553210798.jpg'), + ('0141180250', 'Passing (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/02/50/9780141180250.jpg'), + ('0385488181', 'Eiger Dreams: Ventures Among Men And Mountains', 'https://images.isbndb.com/covers/81/81/9780385488181.jpg'), + ('0590503111', 'The Librarian From The Black Lagoon', 'https://images.isbndb.com/covers/31/12/9780590503112.jpg'), + ('0879517034', 'Norwood', 'https://images.isbndb.com/covers/70/38/9780879517038.jpg'), + ('0790008696', 'The Whale Rider (Movie Cover Edition)', 'https://images.isbndb.com/covers/86/91/9780790008691.jpg'), + ('1885223331', 'Home Sweeter Home: Creating A Haven Of Simplicity And Spirit (Sweet Simplicity, Book 1)', 'https://images.isbndb.com/covers/33/33/9781885223333.jpg'), + ('0671522779', 'Out Of Harm''s Way: The Extraordinary True Story Of One Woman''s Lifelong Devotion To Animal Rescue', 'https://images.isbndb.com/covers/27/73/9780671522773.jpg'), + ('0451156455', 'The New Left: The Anti-Industrial Revolution', 'https://images.isbndb.com/covers/64/57/9780451156457.jpg'), + ('0373790953', 'All Tucked In... (Harlequin Blaze, 91)', 'https://images.isbndb.com/covers/09/51/9780373790951.jpg'), + ('1568655622', 'Wash Your Hair With Whipped Cream', 'https://images.isbndb.com/covers/56/28/9781568655628.jpg'), + ('0773731202', 'Eatons', 'https://images.isbndb.com/covers/12/02/9780773731202.jpg'), + ('0786867647', 'Lucky Man: A Memoir', 'https://images.isbndb.com/covers/76/46/9780786867646.jpg'), + ('1552782654', 'Letters From The Country IV', 'https://images.isbndb.com/covers/26/51/9781552782651.jpg'), + ('0515133973', 'Midnight Bayou', 'https://images.isbndb.com/covers/39/74/9780515133974.jpg'), + ('0771091591', 'Stone Angel', 'https://images.isbndb.com/covers/15/99/9780771091599.jpg'), + ('0802114970', 'The Six Wives Of Henry VIII', 'https://images.isbndb.com/covers/49/76/9780802114976.jpg'), + ('0771037457', 'The New Morningside Papers', 'https://images.isbndb.com/covers/74/50/9780771037450.jpg'), + ('044016205X', 'North And South (North And South Trilogy, Book 1)', 'https://images.isbndb.com/covers/20/56/9780440162056.jpg'), + ('0425097722', 'Fatherhood', 'https://images.isbndb.com/covers/77/24/9780425097724.jpg'), + ('067189109X', 'The Blessing', 'https://images.isbndb.com/covers/10/91/9780671891091.jpg'), + ('067162461X', 'Lonesome Dove M', 'https://images.isbndb.com/covers/46/13/9780671624613.jpg'), + ('0812580397', 'Mars Underground', 'https://images.isbndb.com/covers/03/96/9780812580396.jpg'), + ('0440229499', 'Gathering Blue (Readers Circle)', 'https://images.isbndb.com/covers/94/90/9780440229490.jpg'), + ('0446678619', 'Own Your Own Corporation: Why The Rich Own Their Own Companies And Everyone Else Works For Them (Rich Dad''s Advisors)', 'https://images.isbndb.com/covers/86/12/9780446678612.jpg'), + ('0671702513', 'The Prize', 'https://images.isbndb.com/covers/25/19/9780671702519.jpg'), + ('0679420428', 'Mrs. Dalloway (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/04/22/9780679420422.jpg'), + ('0273645919', 'Funky Business: Talent Makes Capital Dance', 'https://images.isbndb.com/covers/59/17/9780273645917.jpg'), + ('0449911594', 'Dinner At The Homesick Restaurant: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/15/94/9780449911594.jpg'), + ('0743255712', 'Winning Back America', 'https://images.isbndb.com/covers/57/14/9780743255714.jpg'), + ('1560255102', 'A Prayer For America (Nation Books)', 'https://images.isbndb.com/covers/51/09/9781560255109.jpg'), + ('0758203519', 'Al On America', 'https://images.isbndb.com/covers/35/19/9780758203519.jpg'), + ('0312287712', 'The Lecturer''s Tale: A Novel', 'https://images.isbndb.com/covers/77/19/9780312287719.jpg'), + ('0449703746', 'So Much To Tell You', 'https://images.isbndb.com/covers/37/48/9780449703748.jpg'), + ('0312872356', 'The Ring Of Five Dragons (Pearl)', 'https://images.isbndb.com/covers/23/59/9780312872359.jpg'), + ('0312872364', 'The Veil Of A Thousand Tears (The Pearl Saga, Book 2)', 'https://images.isbndb.com/covers/23/66/9780312872366.jpg'), + ('0969201745', 'Hans Christian Andersen - Tales And Stories For All Ages', 'https://images.isbndb.com/covers/17/48/9780969201748.jpg'), + ('0871133962', 'Gojiro', 'https://images.isbndb.com/covers/39/60/9780871133960.jpg'), + ('0312874413', 'A Sorcerer''s Treason: A Novel Of Isavalta (Isavalta, Book 1)', 'https://images.isbndb.com/covers/44/14/9780312874414.jpg'), + ('1551990393', 'Motion Sickness: A Memoir', 'https://images.isbndb.com/covers/03/92/9781551990392.jpg'), + ('0312890532', 'Temple Of The Winds (Sword Of Truth, Book 4)', 'https://images.isbndb.com/covers/05/37/9780312890537.jpg'), + ('0312861591', 'The Dragon In Lyonesse', 'https://images.isbndb.com/covers/15/99/9780312861599.jpg'), + ('0385496745', 'The Heartsong Of Charging Elk: A Novel', 'https://images.isbndb.com/covers/67/42/9780385496742.jpg'), + ('0393039307', 'Climbing Mount Improbable', 'https://images.isbndb.com/covers/93/06/9780393039306.jpg'), + ('0151002290', 'East Of The Mountains', 'https://images.isbndb.com/covers/22/90/9780151002290.jpg'), + ('0156013177', 'The Hole In The Universe: How Scientists Peered Over The Edge Of Emptiness And Found Everything', 'https://images.isbndb.com/covers/31/78/9780156013178.jpg'), + ('0880012528', 'Antaeus 64/65: Twentieth Anniversary Issue', 'https://images.isbndb.com/covers/25/22/9780880012522.jpg'), + ('0345296907', 'Seven Arrows', 'https://images.isbndb.com/covers/69/00/9780345296900.jpg'), + ('0192760319', 'Oxford Book Of Poetry For Children', 'https://images.isbndb.com/covers/03/19/9780192760319.jpg'), + ('1852304839', 'Holy Daring: An Outrageous Gift To Modern Spirituality From Saint Teresa, The Grand Wild Woman Of Avila', 'https://images.isbndb.com/covers/48/36/9781852304836.jpg'), + ('0934252238', 'In Praise Of Rumi', 'https://images.isbndb.com/covers/22/32/9780934252232.jpg'), + ('0875424953', 'Goddess Skhmt Hardcover', 'https://images.isbndb.com/covers/49/58/9780875424958.jpg'), + ('0806994754', 'The Illustrated Dream Dictionary', 'https://images.isbndb.com/covers/47/58/9780806994758.jpg'), + ('1880032074', 'Native Heart: An American Indian Odyssey', 'https://images.isbndb.com/covers/20/77/9781880032077.jpg'), + ('1889625035', 'Rumi: Fountain Of Fire', 'https://images.isbndb.com/covers/50/34/9781889625034.jpg'), + ('0060913312', 'Illywhacker: A Novel', 'https://images.isbndb.com/covers/33/11/9780060913311.jpg'), + ('0877732248', 'Space Time Medicine', 'https://images.isbndb.com/covers/22/42/9780877732242.jpg'), + ('0140126562', 'Gracie: A Love Story', 'https://images.isbndb.com/covers/65/63/9780140126563.jpg'), + ('0671673203', 'Man With A Gun', 'https://images.isbndb.com/covers/32/08/9780671673208.jpg'), + ('0312950098', 'Black Out (Law & Order)', 'https://images.isbndb.com/covers/00/95/9780312950095.jpg'), + ('0446892041', 'A Stranger In The Mirror', 'https://images.isbndb.com/covers/20/49/9780446892049.jpg'), + ('0142001309', 'The Olive Farm: A Memoir Of Life, Love, And Olive Oil In The South Of France', 'https://images.isbndb.com/covers/13/01/9780142001301.jpg'), + ('0802133347', 'Lady Chatterley''s Lover', 'https://images.isbndb.com/covers/33/42/9780802133342.jpg'), + ('0888992211', 'Ticket To Curlew', 'https://images.isbndb.com/covers/22/15/9780888992215.jpg'), + ('1553663950', 'Tell Time (Tell Me How)', 'https://images.isbndb.com/covers/39/59/9781553663959.jpg'), + ('0440401607', 'Pee Wee Scouts: Spring Sprouts (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/16/05/9780440401605.jpg'), + ('0440476399', 'Say "Cheese" (The Kids Of The Polk Street School #10)', 'https://images.isbndb.com/covers/63/99/9780440476399.jpg'), + ('067166641X', 'Surrender The Pink', 'https://images.isbndb.com/covers/64/15/9780671666415.jpg'), + ('1586212044', 'The Millionaires', 'https://images.isbndb.com/covers/20/49/9781586212049.jpg'), + ('1576739767', 'A Life God Rewards: Why Everything You Do Today Matters Forever', 'https://images.isbndb.com/covers/97/61/9781576739761.jpg'), + ('0448165384', 'Catch Me If You Can', 'https://images.isbndb.com/covers/53/87/9780448165387.jpg'), + ('0694523283', 'Legal Tender', 'https://images.isbndb.com/covers/32/83/9780694523283.jpg'), + ('0143017292', 'Beginning Of Was', 'https://images.isbndb.com/covers/72/95/9780143017295.jpg'), + ('1857997573', 'Tea And Biscuits (Phoenix 60p Paperbacks)', 'https://images.isbndb.com/covers/75/76/9781857997576.jpg'), + ('1570761418', 'The Crafter''s Pattern Sourcebook: 1,000 Classic Motifs For Every Craft From Around The World And Though The Ages', 'https://images.isbndb.com/covers/14/16/9781570761416.jpg'), + ('0968454402', 'Sailing Promise: Around The World On A Catamaran', 'https://images.isbndb.com/covers/44/04/9780968454404.jpg'), + ('0385333412', 'Dating Big Bird', 'https://images.isbndb.com/covers/34/12/9780385333412.jpg'), + ('1853261912', 'Mrs. Dalloway (Wordsworth Classics)', 'https://images.isbndb.com/covers/19/16/9781853261916.jpg'), + ('0060084405', 'Bread Alone: A Novel', 'https://images.isbndb.com/covers/44/00/9780060084400.jpg'), + ('0345367758', 'For All Their Lives', 'https://images.isbndb.com/covers/77/54/9780345367754.jpg'), + ('0783801157', 'Ellen Foster (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/11/55/9780783801155.jpg'), + ('1550135457', 'Coke Stop In Emo: Adventures Of A Long-Distance Paddler', 'https://images.isbndb.com/covers/54/59/9781550135459.jpg'), + ('0345445848', 'Big Cherry Holler: A Novel (Big Stone Gap Novels)', 'https://images.isbndb.com/covers/58/41/9780345445841.jpg'), + ('0375504036', 'Big Stone Gap', 'https://images.isbndb.com/covers/40/37/9780375504037.jpg'), + ('0453006264', 'Pearl', 'https://images.isbndb.com/covers/62/62/9780453006262.jpg'), + ('0375724850', 'An Italian Affair', 'https://images.isbndb.com/covers/48/55/9780375724855.jpg'), + ('1552781542', 'Prodigy', 'https://images.isbndb.com/covers/15/48/9781552781548.jpg'), + ('0140430016', 'Wuthering Heights (Penguin Classics)', 'https://images.isbndb.com/covers/00/11/9780140430011.jpg'), + ('0816158770', 'Pigs In Heaven (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/87/75/9780816158775.jpg'), + ('1862041318', 'Palmistry: Pocket Prophecy (The "Pocket Prophecy" Series)', 'https://images.isbndb.com/covers/13/18/9781862041318.jpg'), + ('0590203509', 'Little Women', 'https://images.isbndb.com/covers/35/00/9780590203500.jpg'), + ('0373708416', 'Winter Soldier: In Uniform (Harlequin Superromance No. 841)', 'https://images.isbndb.com/covers/84/13/9780373708413.jpg'), + ('0671734334', 'Sisters Long Ago', 'https://images.isbndb.com/covers/43/36/9780671734336.jpg'), + ('0399145052', 'Bagombo Snuff Box: Uncollected Short Fiction', 'https://images.isbndb.com/covers/50/56/9780399145056.jpg'), + ('0671883208', 'Finding You', 'https://images.isbndb.com/covers/32/01/9780671883201.jpg'), + ('0099740516', 'Fall On Your Knees', 'https://images.isbndb.com/covers/05/13/9780099740513.jpg'), + ('0747550867', 'Refugee Boy', 'https://images.isbndb.com/covers/08/60/9780747550860.jpg'), + ('0590453068', 'A House Is A House For Me', 'https://images.isbndb.com/covers/30/66/9780590453066.jpg'), + ('0064406113', 'To Race A Dream', 'https://images.isbndb.com/covers/61/16/9780064406116.jpg'), + ('0061056448', 'X-Files: Skin (The X-Files)', 'https://images.isbndb.com/covers/64/44/9780061056444.jpg'), + ('0689824750', 'Among The Hidden (Shadow Children #1)', 'https://images.isbndb.com/covers/47/53/9780689824753.jpg'), + ('0340577371', 'Four Scottish Journeys: An Identity Rediscovered', 'https://images.isbndb.com/covers/73/70/9780340577370.jpg'), + ('0345423623', 'Night Of The Wolf', 'https://images.isbndb.com/covers/36/27/9780345423627.jpg'), + ('0896731081', 'Dogs: An Exeter Leisure Guide', 'https://images.isbndb.com/covers/10/80/9780896731080.jpg'), + ('0804108897', 'Earthly Possessions', 'https://images.isbndb.com/covers/88/98/9780804108898.jpg'), + ('0399132007', 'Word For Word', 'https://images.isbndb.com/covers/20/01/9780399132001.jpg'), + ('0671003976', 'Singing Lessons: A Memoir Of Love, Loss, Hope, And Healing (with CD)', 'https://images.isbndb.com/covers/39/75/9780671003975.jpg'), + ('0553246895', 'The Heart Of A Woman', 'https://images.isbndb.com/covers/68/96/9780553246896.jpg'), + ('1567921892', 'The Woman In Black: A Ghost Story', 'https://images.isbndb.com/covers/18/92/9781567921892.jpg'), + ('0374181152', 'Border Crossing: A Novel', 'https://images.isbndb.com/covers/11/54/9780374181154.jpg'), + ('0385316577', 'Follow Your Heart', 'https://images.isbndb.com/covers/65/76/9780385316576.jpg'), + ('0330334182', 'Great Irish Detective Stories', 'https://images.isbndb.com/covers/41/81/9780330334181.jpg'), + ('0060012331', 'The Amazing Maurice And His Educated Rodents', 'https://images.isbndb.com/covers/23/35/9780060012335.jpg'), + ('0385501560', 'Choke', 'https://images.isbndb.com/covers/15/69/9780385501569.jpg'), + ('0066212448', 'Wittgenstein''s Poker: The Story Of A Ten-Minute Argument Between Two Great Philosophers', 'https://images.isbndb.com/covers/24/49/9780066212449.jpg'), + ('1932100024', 'Taking The Red Pill: Science, Philosophy And The Religion In The Matrix (Smart Pop Series)', 'https://images.isbndb.com/covers/00/20/9781932100020.jpg'), + ('0140264450', 'The Origins Of Virtue: Human Instincts And The Evolution Of Cooperation', 'https://images.isbndb.com/covers/44/56/9780140264456.jpg'), + ('0192632442', 'Darwinizing Culture: The Status Of Memetics As A Science', 'https://images.isbndb.com/covers/24/49/9780192632449.jpg'), + ('1400047838', 'Fugitives And Refugees: A Walk In Portland, Oregon (Crown Journeys)', 'https://images.isbndb.com/covers/78/33/9781400047833.jpg'), + ('0393045358', 'How The Mind Works', 'https://images.isbndb.com/covers/53/52/9780393045352.jpg'), + ('0486272702', 'Great Ghost Stories', 'https://images.isbndb.com/covers/27/02/9780486272702.jpg'), + ('0786864656', 'A Goose In Toulouse And Other Culinary Adventures In France', 'https://images.isbndb.com/covers/46/52/9780786864652.jpg'), + ('1400040752', 'Black Maps (John March Mysteries)', 'https://images.isbndb.com/covers/07/59/9781400040759.jpg'), + ('0446525774', 'Saving Faith', 'https://images.isbndb.com/covers/57/70/9780446525770.jpg'), + ('0385311133', 'Spirit Of The Season', 'https://images.isbndb.com/covers/11/37/9780385311137.jpg'), + ('0913428361', 'Blue Jacket: War Chief Of The Shawnees', 'https://images.isbndb.com/covers/83/68/9780913428368.jpg'), + ('0525945466', 'From Our House: A Memoir', 'https://images.isbndb.com/covers/54/68/9780525945468.jpg'), + ('0671795228', 'The Forms Of Water', 'https://images.isbndb.com/covers/52/21/9780671795221.jpg'), + ('1551668106', 'Granite Man (MacKenzie-Blackthorn, Book 4)', 'https://images.isbndb.com/covers/81/09/9781551668109.jpg'), + ('0440404975', 'Your Move, J.P.', 'https://images.isbndb.com/covers/49/72/9780440404972.jpg'), + ('0689713908', 'I Love You, Janie Tannenbaum', 'https://images.isbndb.com/covers/39/03/9780689713903.jpg'), + ('0590412485', 'Double Trouble', 'https://images.isbndb.com/covers/24/83/9780590412483.jpg'), + ('0440413729', 'Belle Prater''s Boy', 'https://images.isbndb.com/covers/37/21/9780440413721.jpg'), + ('044022747X', 'North By Night: A Story Of The Underground Railroad', 'https://images.isbndb.com/covers/74/72/9780440227472.jpg'), + ('006440630X', 'The Midwife''s Apprentice', 'https://images.isbndb.com/covers/63/07/9780064406307.jpg'), + ('0440407591', 'Year Of Impossible Goodbyes', 'https://images.isbndb.com/covers/75/91/9780440407591.jpg'), + ('0553244841', 'Journey To Stonehenge', 'https://images.isbndb.com/covers/48/47/9780553244847.jpg'), + ('0553231863', 'Mystery Of The Maya: Choose From 44 Possible Endings', 'https://images.isbndb.com/covers/18/61/9780553231861.jpg'), + ('0553233246', 'Hyperspace # 21', 'https://images.isbndb.com/covers/32/47/9780553233247.jpg'), + ('0552527742', 'Blood And Mortar (Freeway)', 'https://images.isbndb.com/covers/77/43/9780552527743.jpg'), + ('0553565060', 'Deception', 'https://images.isbndb.com/covers/50/65/9780553565065.jpg'), + ('050028251X', 'New Australia Style', 'https://images.isbndb.com/covers/25/19/9780500282519.jpg'), + ('0394533887', 'Poland', 'https://images.isbndb.com/covers/38/89/9780394533889.jpg'), + ('3492229697', 'Auf Der Suche Nach Marie.', 'https://images.isbndb.com/covers/96/92/9783492229692.jpg'), + ('0194226948', 'Oxford Bookworms Collection A Window On The Universe', 'https://images.isbndb.com/covers/69/43/9780194226943.jpg'), + ('0140034919', 'I''m The King Of The Castle', 'https://images.isbndb.com/covers/49/12/9780140034912.jpg'), + ('0879238526', 'In The Springtime Of The Year (Nonpareil Book)', 'https://images.isbndb.com/covers/85/20/9780879238520.jpg'), + ('1899293086', 'A Thing Apart', 'https://images.isbndb.com/covers/30/87/9781899293087.jpg'), + ('3257063199', 'Das Blaue Kleid', 'https://images.isbndb.com/covers/31/96/9783257063196.jpg'), + ('0345430573', 'A Certain Justice (Adam Dalgliesh Mysteries)', 'https://images.isbndb.com/covers/05/71/9780345430571.jpg'), + ('0892966505', 'While Other People Sleep (Sharon McCone Mysteries)', 'https://images.isbndb.com/covers/65/09/9780892966509.jpg'), + ('1559705884', 'The Little Girl Who Was Too Fond Of Matches: A Novel', 'https://images.isbndb.com/covers/58/82/9781559705882.jpg'), + ('0452284546', 'Swagbelly: A Novel For Today''s Gentleman', 'https://images.isbndb.com/covers/45/48/9780452284548.jpg'), + ('0743203232', 'The Nature Of Water And Air', 'https://images.isbndb.com/covers/32/34/9780743203234.jpg'), + ('0789300354', 'Growing Gardener', 'https://images.isbndb.com/covers/03/55/9780789300355.jpg'), + ('0451175867', 'A Cat With A Fiddle (An Alice Nestleton Mystery)', 'https://images.isbndb.com/covers/58/61/9780451175861.jpg'), + ('0812574923', '1916: A Novel Of The Irish Rebellion (Irish Century Novels)', 'https://images.isbndb.com/covers/49/20/9780812574920.jpg'), + ('0446600288', 'Bless The Child', 'https://images.isbndb.com/covers/02/86/9780446600286.jpg'), + ('0440208130', 'Paint The Wind', 'https://images.isbndb.com/covers/81/36/9780440208136.jpg'), + ('055337513X', 'Banana Rose', 'https://images.isbndb.com/covers/51/38/9780553375138.jpg'), + ('0671507036', 'Montana 1948: A Novel', 'https://images.isbndb.com/covers/70/39/9780671507039.jpg'), + ('0060930861', 'Cloudsplitter: A Novel', 'https://images.isbndb.com/covers/08/68/9780060930868.jpg'), + ('0821776037', 'Whispers', 'https://images.isbndb.com/covers/60/32/9780821776032.jpg'), + ('0345457005', 'Dirty Laundry (Charlotte Justice Novels)', 'https://images.isbndb.com/covers/70/04/9780345457004.jpg'), + ('0967404401', 'Hate Is My Neighbor', 'https://images.isbndb.com/covers/44/00/9780967404400.jpg'), + ('0140232990', 'Sister Stories: Taking The Journey Together', 'https://images.isbndb.com/covers/29/98/9780140232998.jpg'), + ('1582430349', 'East Into Upper East: Plain Tales From New York And New Delhi', 'https://images.isbndb.com/covers/03/48/9781582430348.jpg'), + ('1582430152', 'Heat And Dust', 'https://images.isbndb.com/covers/01/57/9781582430157.jpg'), + ('0345430808', 'Manifold: Origin', 'https://images.isbndb.com/covers/08/09/9780345430809.jpg'), + ('0140242058', 'Zlata''s Diary', 'https://images.isbndb.com/covers/20/58/9780140242058.jpg'), + ('0142001821', 'The Passion Of Artemisia: A Novel', 'https://images.isbndb.com/covers/18/20/9780142001820.jpg'), + ('0806511532', 'The Short Happy Life Of The Brown Oxford And Other Classic Stories (The Collected Stories Of Philip K. Dick, Vol. 1) (Vol 1)', 'https://images.isbndb.com/covers/15/35/9780806511535.jpg'), + ('0809001608', 'The Treasure Of The Sierra Madre', 'https://images.isbndb.com/covers/16/06/9780809001606.jpg'), + ('0380719185', 'Princess: A True Story Of Life Behind The Veil In Saudi Arabia', 'https://images.isbndb.com/covers/91/81/9780380719181.jpg'), + ('0452281903', 'A Man Named Dave: A Story Of Triumph And Forgiveness', 'https://images.isbndb.com/covers/19/05/9780452281905.jpg'), + ('0312983093', 'Breaking Point (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/30/93/9780312983093.jpg'), + ('0813511895', 'Pinelands Folklife', 'https://images.isbndb.com/covers/18/94/9780813511894.jpg'), + ('0671660705', 'Unknown Man: The Mysterious Birth Of A New Species', 'https://images.isbndb.com/covers/07/03/9780671660703.jpg'), + ('0671731874', 'Louise Nevelson', 'https://images.isbndb.com/covers/18/78/9780671731878.jpg'), + ('0385316917', 'Special Delivery', 'https://images.isbndb.com/covers/69/10/9780385316910.jpg'), + ('0385335431', 'Answered Prayers', 'https://images.isbndb.com/covers/54/30/9780385335430.jpg'), + ('0345435648', 'Indigo Slam: An Elvis Cole Novel', 'https://images.isbndb.com/covers/56/44/9780345435644.jpg'), + ('0385333463', 'His Bright Light', 'https://images.isbndb.com/covers/34/67/9780385333467.jpg'), + ('0440205573', 'Star', 'https://images.isbndb.com/covers/55/79/9780440205579.jpg'), + ('0440221501', 'Lightning', 'https://images.isbndb.com/covers/15/00/9780440221500.jpg'), + ('0385313012', 'Silent Honor', 'https://images.isbndb.com/covers/30/18/9780385313018.jpg'), + ('0385333064', 'The House On Hope Street', 'https://images.isbndb.com/covers/30/61/9780385333061.jpg'), + ('0446385077', 'In Search Of Excellence: Lessons From Americas Best Run Companies', 'https://images.isbndb.com/covers/50/77/9780446385077.jpg'), + ('0440201926', 'Kaleidoscope', 'https://images.isbndb.com/covers/19/22/9780440201922.jpg'), + ('0688141838', 'The Death Of An Irish Sea Wolf: A Peter McGarr Mystery', 'https://images.isbndb.com/covers/18/37/9780688141837.jpg'), + ('0671557378', 'Ariane', 'https://images.isbndb.com/covers/73/79/9780671557379.jpg'), + ('0440176484', 'Secrets', 'https://images.isbndb.com/covers/64/80/9780440176480.jpg'), + ('0373288689', 'The Saxon (The Viking Series, Book 2) (Harlequin Historical #268)', 'https://images.isbndb.com/covers/86/87/9780373288687.jpg'), + ('0753506483', 'Losing My Virginity: The Autobiography', 'https://images.isbndb.com/covers/64/86/9780753506486.jpg'), + ('0553576143', 'The Cry Of The Halidon', 'https://images.isbndb.com/covers/61/46/9780553576146.jpg'), + ('0446612731', 'The Black Echo (Harry Bosch)', 'https://images.isbndb.com/covers/27/39/9780446612739.jpg'), + ('0553252607', 'The Book Of Kells', 'https://images.isbndb.com/covers/26/06/9780553252606.jpg'), + ('2070323498', 'La Société De Consommation', 'https://images.isbndb.com/covers/34/94/9782070323494.jpg'), + ('0590448307', 'Karen''s Ducklings (Baby-Sitters Little Sister, No. 26)', 'https://images.isbndb.com/covers/83/07/9780590448307.jpg'), + ('0590424955', 'Claudia And Great Search (Baby-Sitters Club, 33)', 'https://images.isbndb.com/covers/49/50/9780590424950.jpg'), + ('0553573837', 'Boone', 'https://images.isbndb.com/covers/38/31/9780553573831.jpg'), + ('0590436457', 'Karen''s In Love (Baby-Sitters Little Sister, No. 15)', 'https://images.isbndb.com/covers/64/58/9780590436458.jpg'), + ('0590416677', 'Margaret''s Moves', 'https://images.isbndb.com/covers/66/72/9780590416672.jpg'), + ('0316139947', 'Face-Off', 'https://images.isbndb.com/covers/99/46/9780316139946.jpg'), + ('0570041945', 'Danger At Half Moon Lake (Adventure Quest Ser)', 'https://images.isbndb.com/covers/19/48/9780570041948.jpg'), + ('0440476968', 'Secret At Polk Street School (Polka Dot Private Eye)', 'https://images.isbndb.com/covers/69/62/9780440476962.jpg'), + ('0590435728', 'Stacey''s Emergency (Baby-Sitters Club, 43)', 'https://images.isbndb.com/covers/57/27/9780590435727.jpg'), + ('0590691821', 'Abby''s Book (Baby-Sitters Club Portrait Collection)', 'https://images.isbndb.com/covers/18/26/9780590691826.jpg'), + ('0345436733', 'Garfield Feeds The Kitty: #35 (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/67/33/9780345436733.jpg'), + ('0965866823', '300 Incredible Things For Sports Fans On The Internet (Powerfresh)', 'https://images.isbndb.com/covers/68/28/9780965866828.jpg'), + ('0965866807', '300 Incredible Things To Do On The Internet -- Vol. I', 'https://images.isbndb.com/covers/68/04/9780965866804.jpg'), + ('002708230X', 'Save Sirrushany! Also Agotha, Princess Gwyn, And All The Fearsome Beasts', 'https://images.isbndb.com/covers/23/02/9780027082302.jpg'), + ('0670894184', 'Back Roads (Oprah''s Book Club)', 'https://images.isbndb.com/covers/41/85/9780670894185.jpg'), + ('0373833458', 'Dr Texas (Heart Of Texas, No 4)', 'https://images.isbndb.com/covers/34/50/9780373833450.jpg'), + ('0316473049', 'The Pugilist At Rest: Stories', 'https://images.isbndb.com/covers/30/40/9780316473040.jpg'), + ('0449225925', 'Lady', 'https://images.isbndb.com/covers/59/29/9780449225929.jpg'), + ('0830713042', 'Christ, B.C.: Becoming Closer Friends With The Hidden Christ Of The Old Testament', 'https://images.isbndb.com/covers/30/42/9780830713042.jpg'), + ('0061092037', 'The Fourth Estate', 'https://images.isbndb.com/covers/20/39/9780061092039.jpg'), + ('0553275631', 'The Black Poets', 'https://images.isbndb.com/covers/56/36/9780553275636.jpg'), + ('0486270602', 'Young Goodman Brown And Other Short Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/09/9780486270609.jpg'), + ('0671669397', 'Silver Desoto', 'https://images.isbndb.com/covers/93/93/9780671669393.jpg'), + ('0486419274', 'Phèdre (Dover Thrift Editions)', 'https://images.isbndb.com/covers/92/75/9780486419275.jpg'), + ('0835918696', 'ADAP CLASSICS ALL QUIET WEST FRONT SE 96 (GLOBE ADAPTED CLASSICS)', 'https://images.isbndb.com/covers/86/95/9780835918695.jpg'), + ('0486270629', 'A Doll''s House (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/23/9780486270623.jpg'), + ('0486278026', 'Macbeth (Dover Thrift Editions)', 'https://images.isbndb.com/covers/80/25/9780486278025.jpg'), + ('0486297659', 'The Taming Of The Shrew (Dover Thrift Editions)', 'https://images.isbndb.com/covers/76/51/9780486297651.jpg'), + ('0836225902', 'Believing In Ourselves: The Wisdom Of Women (Ariel Quote-a-Page Books)', 'https://images.isbndb.com/covers/59/07/9780836225907.jpg'), + ('006273248X', 'All About Eve: The Complete Guide To Women''s Health And Well-Being', 'https://images.isbndb.com/covers/24/84/9780062732484.jpg'), + ('0440236053', 'Writ Of Execution', 'https://images.isbndb.com/covers/60/54/9780440236054.jpg'), + ('002920528X', 'Men Astutely Trained: A History Of The Jesuits In The American Century', 'https://images.isbndb.com/covers/52/80/9780029205280.jpg'), + ('1558003592', 'Pain And Medicine', 'https://images.isbndb.com/covers/35/90/9781558003590.jpg'), + ('0399144560', 'Field Of Thirteen', 'https://images.isbndb.com/covers/45/61/9780399144561.jpg'), + ('0553478206', 'Missing Pieces', 'https://images.isbndb.com/covers/82/04/9780553478204.jpg'), + ('0694523321', 'Nora, Nora', 'https://images.isbndb.com/covers/33/20/9780694523320.jpg'), + ('0060577479', 'Low Country', 'https://images.isbndb.com/covers/74/76/9780060577476.jpg'), + ('156740765X', 'The Pied Piper (Lou Boldt/Daphne Matthews Series)', 'https://images.isbndb.com/covers/76/55/9781567407655.jpg'), + ('0066621054', 'Longaberger: An American Success Story', 'https://images.isbndb.com/covers/10/50/9780066621050.jpg'), + ('1570721971', 'Haunting Refrain', 'https://images.isbndb.com/covers/19/77/9781570721977.jpg'), + ('0373706383', 'The Secret Years : Showcase (Harlequin Superromance No. 638)', 'https://images.isbndb.com/covers/63/89/9780373706389.jpg'), + ('037310734X', 'Brides Lace', 'https://images.isbndb.com/covers/73/46/9780373107346.jpg'), + ('1561290998', 'Sicilian Blood', 'https://images.isbndb.com/covers/09/94/9781561290994.jpg'), + ('0800784111', 'I Came To Love You Late', 'https://images.isbndb.com/covers/41/19/9780800784119.jpg'), + ('0802733662', 'Dead Ball : A Harvey Blissberg Mystery', 'https://images.isbndb.com/covers/36/65/9780802733665.jpg'), + ('0345426800', 'A Perfect Crime', 'https://images.isbndb.com/covers/68/02/9780345426802.jpg'), + ('0440216818', 'Daybreak', 'https://images.isbndb.com/covers/68/10/9780440216810.jpg'), + ('0440224330', 'Manhattan Nocturne', 'https://images.isbndb.com/covers/43/34/9780440224334.jpg'), + ('0446526126', 'Ten Things I Wish I''d Known Before I Went Out Into The Real World', 'https://images.isbndb.com/covers/61/28/9780446526128.jpg'), + ('0743242963', 'The Self Matters Companion : Helping You Create Your Life From The Inside Out', 'https://images.isbndb.com/covers/29/67/9780743242967.jpg'), + ('1401900844', 'Sylvia Browne''s Book Of Angels', 'https://images.isbndb.com/covers/08/47/9781401900847.jpg'), + ('0385319568', 'The Long Road Home', 'https://images.isbndb.com/covers/95/60/9780385319560.jpg'), + ('0062515845', 'The Invitation', 'https://images.isbndb.com/covers/58/41/9780062515841.jpg'), + ('0886779766', 'Shapechanger''s Song (Chronicles Of The Cheysuli, Bk. 1: Shapechangers And Bk. 2: The Song Of Homana)', 'https://images.isbndb.com/covers/97/64/9780886779764.jpg'), + ('0679454497', 'Blood And Gold (Vampire Chronicles)', 'https://images.isbndb.com/covers/44/96/9780679454496.jpg'), + ('0449906817', 'The Day The Rabbi Resigned', 'https://images.isbndb.com/covers/68/11/9780449906811.jpg'), + ('0505525178', 'Improper English', 'https://images.isbndb.com/covers/51/78/9780505525178.jpg'), + ('0671709569', 'Vampire', 'https://images.isbndb.com/covers/95/63/9780671709563.jpg'), + ('0061061778', 'Vampire''s Kiss', 'https://images.isbndb.com/covers/17/76/9780061061776.jpg'), + ('0671021826', 'The Beginning: The New Girl/The Surprise Party/The Overnight (Fear Street Collector''s Edition #1)', 'https://images.isbndb.com/covers/18/25/9780671021825.jpg'), + ('0553575414', 'Cat On The Scent (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/54/15/9780553575415.jpg'), + ('0312968973', 'Canapes For The Kitties', 'https://images.isbndb.com/covers/89/77/9780312968977.jpg'), + ('0441008658', 'Spindle''s End', 'https://images.isbndb.com/covers/86/50/9780441008650.jpg'), + ('0345368991', 'The Chronicles Of Pern: First Fall', 'https://images.isbndb.com/covers/89/97/9780345368997.jpg'), + ('0393309290', 'Mrs. Stevens Hears The Mermaids Singing', 'https://images.isbndb.com/covers/92/94/9780393309294.jpg'), + ('038542017X', 'Like Water For Chocolate: A Novel In Monthly Installments With Recipes, Romances, And Home Remedies', 'https://images.isbndb.com/covers/01/74/9780385420174.jpg'), + ('073943053X', 'I Brake For Bad Boys', 'https://images.isbndb.com/covers/05/38/9780739430538.jpg'), + ('0312958366', 'My Lady Caroline', 'https://images.isbndb.com/covers/83/67/9780312958367.jpg'), + ('0553582003', 'The Secret Swan', 'https://images.isbndb.com/covers/20/00/9780553582000.jpg'), + ('0515135305', 'Catching Midnight', 'https://images.isbndb.com/covers/53/05/9780515135305.jpg'), + ('0449140911', 'The Howling II', 'https://images.isbndb.com/covers/09/18/9780449140918.jpg'), + ('0451407695', 'Bittersweet', 'https://images.isbndb.com/covers/76/96/9780451407696.jpg'), + ('0451404793', 'White Rose (Topaz Historical Romances)', 'https://images.isbndb.com/covers/47/94/9780451404794.jpg'), + ('0345315499', 'Vengeance Of The Dancing Gods', 'https://images.isbndb.com/covers/54/96/9780345315496.jpg'), + ('0345308921', 'The River Of Dancing Gods', 'https://images.isbndb.com/covers/89/24/9780345308924.jpg'), + ('034530893X', 'Demons Of The Dancing Gods', 'https://images.isbndb.com/covers/89/31/9780345308931.jpg'), + ('0821773135', 'Luck Be A Lady (Zebra Encore)', 'https://images.isbndb.com/covers/31/30/9780821773130.jpg'), + ('0843943408', 'Bride Of The Dragon', 'https://images.isbndb.com/covers/34/05/9780843943405.jpg'), + ('0515130397', 'Very Truly Yours', 'https://images.isbndb.com/covers/03/93/9780515130393.jpg'), + ('0380414759', 'Tears Of Gold', 'https://images.isbndb.com/covers/47/58/9780380414758.jpg'), + ('0671556843', 'The Raider', 'https://images.isbndb.com/covers/68/46/9780671556846.jpg'), + ('0671779370', 'Chieftain', 'https://images.isbndb.com/covers/93/75/9780671779375.jpg'), + ('0821747479', 'Devil Moon (Lovegram Historical Romances)', 'https://images.isbndb.com/covers/74/76/9780821747476.jpg'), + ('0553571591', 'Mystique (Bantam Books Historical Romance)', 'https://images.isbndb.com/covers/15/92/9780553571592.jpg'), + ('0380807947', 'A Season Beyond A Kiss', 'https://images.isbndb.com/covers/79/49/9780380807949.jpg'), + ('0380005255', 'The Flame And The Flower', 'https://images.isbndb.com/covers/52/53/9780380005253.jpg'), + ('038079828X', 'Petals On The River', 'https://images.isbndb.com/covers/82/85/9780380798285.jpg'), + ('0380799383', 'Seventh Heaven', 'https://images.isbndb.com/covers/93/81/9780380799381.jpg'), + ('0446606227', 'Bed Of Roses', 'https://images.isbndb.com/covers/62/26/9780446606226.jpg'), + ('0843939427', 'Seduced', 'https://images.isbndb.com/covers/94/22/9780843939422.jpg'), + ('0671004123', 'Wonderful', 'https://images.isbndb.com/covers/41/25/9780671004125.jpg'), + ('0449006352', 'Prince Charming (Ascension Trilogy)', 'https://images.isbndb.com/covers/63/51/9780449006351.jpg'), + ('0671010085', 'One Pink Rose (Clayborne Brides)', 'https://images.isbndb.com/covers/00/89/9780671010089.jpg'), + ('0671010093', 'One White Rose', 'https://images.isbndb.com/covers/00/96/9780671010096.jpg'), + ('0881844365', 'Clans Of The Alphane Moon', 'https://images.isbndb.com/covers/43/68/9780881844368.jpg'), + ('0553572407', 'Interface', 'https://images.isbndb.com/covers/24/07/9780553572407.jpg'), + ('0345457641', 'A Thousand Days In Venice (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/76/46/9780345457646.jpg'), + ('0345423828', 'Cybergrrl! A Woman''s Guide To The World Wide Web', 'https://images.isbndb.com/covers/38/25/9780345423825.jpg'), + ('0312970129', 'If Loving You Is Wrong', 'https://images.isbndb.com/covers/01/23/9780312970123.jpg'), + ('1887128654', 'Why Things Burn: Poems', 'https://images.isbndb.com/covers/86/50/9781887128650.jpg'), + ('0345416430', 'The New York Diaries: Too-True Tales Of Urban Trauma', 'https://images.isbndb.com/covers/64/38/9780345416438.jpg'), + ('0688158234', 'Desert Flower: The Extraordinary Journey Of A Desert Nomad', 'https://images.isbndb.com/covers/82/31/9780688158231.jpg'), + ('0446608475', 'The Wild Swans', 'https://images.isbndb.com/covers/84/73/9780446608473.jpg'), + ('0435905260', 'Things Fall Apart', 'https://images.isbndb.com/covers/52/62/9780435905262.jpg'), + ('0965036022', 'Profiles In Courage', 'https://images.isbndb.com/covers/60/23/9780965036023.jpg'), + ('0590853015', 'The Chicken Doesn''t Skate', 'https://images.isbndb.com/covers/30/19/9780590853019.jpg'), + ('0671729330', 'SOUTHSIDE SLUGGERS: THE MISSING CHAMPSHIP RING', 'https://images.isbndb.com/covers/93/32/9780671729332.jpg'), + ('078686219X', 'Living The Simple Life: A Guide To Scaling Down And Enjoying More', 'https://images.isbndb.com/covers/21/91/9780786862191.jpg'), + ('0671769669', 'Teaching Your Children Values', 'https://images.isbndb.com/covers/96/66/9780671769666.jpg'), + ('0671741373', 'BEYOND SHYNESS: HOW TO CONQUER SOCIAL ANXIETY STEP BY STEP', 'https://images.isbndb.com/covers/13/72/9780671741372.jpg'), + ('0967851017', 'The Landlord', 'https://images.isbndb.com/covers/10/13/9780967851013.jpg'), + ('0385240716', 'My Husband Rock Hudson', 'https://images.isbndb.com/covers/07/10/9780385240710.jpg'), + ('0515111317', 'The Heiress Bride (Bride Series)', 'https://images.isbndb.com/covers/13/16/9780515111316.jpg'), + ('0451202902', 'Sweet Everlasting', 'https://images.isbndb.com/covers/29/01/9780451202901.jpg'), + ('0441005349', 'When Demons Walk (Sianim)', 'https://images.isbndb.com/covers/53/45/9780441005345.jpg'), + ('0446356611', 'Rage Of Angels', 'https://images.isbndb.com/covers/66/19/9780446356619.jpg'), + ('0446350109', 'Windmills Of The Gods', 'https://images.isbndb.com/covers/01/05/9780446350105.jpg'), + ('0671877992', 'Glenraven', 'https://images.isbndb.com/covers/79/96/9780671877996.jpg'), + ('0449216527', 'S', 'https://images.isbndb.com/covers/65/21/9780449216521.jpg'), + ('0671014757', 'Huntress Night World 7', 'https://images.isbndb.com/covers/47/59/9780671014759.jpg'), + ('0671014765', 'Black Dawn Night World', 'https://images.isbndb.com/covers/47/66/9780671014766.jpg'), + ('0671551361', 'DARK ANGEL NIGHT WORLD 4', 'https://images.isbndb.com/covers/13/60/9780671551360.jpg'), + ('0671551337', 'Secret Vampire (Night World, Book 1)', 'https://images.isbndb.com/covers/13/39/9780671551339.jpg'), + ('0671551388', 'Soulmate (Night World, Book 6)', 'https://images.isbndb.com/covers/13/84/9780671551384.jpg'), + ('0671551353', 'SPELLBINDER: NIGHTWORLD', 'https://images.isbndb.com/covers/13/53/9780671551353.jpg'), + ('0671014773', 'Witchlight Night World 9', 'https://images.isbndb.com/covers/47/73/9780671014773.jpg'), + ('0671551345', 'Night World: Daughters Of Darkness', 'https://images.isbndb.com/covers/13/46/9780671551346.jpg'), + ('0671721100', 'Born To Run', 'https://images.isbndb.com/covers/11/07/9780671721107.jpg'), + ('0553574574', 'Beach Music', 'https://images.isbndb.com/covers/45/79/9780553574579.jpg'), + ('0812534832', 'Demons Don''t Dream', 'https://images.isbndb.com/covers/48/32/9780812534832.jpg'), + ('0671721623', 'Fortress Of Frost And Fire (The Bard''s Tale, Book 2)', 'https://images.isbndb.com/covers/16/26/9780671721626.jpg'), + ('0671698850', 'Knight Of Ghosts & Shadows (Bedlam''s Bard, Bk. 1)', 'https://images.isbndb.com/covers/88/50/9780671698850.jpg'), + ('0671721542', 'When The Bough Breaks: A Novel Of The Serrated Edge', 'https://images.isbndb.com/covers/15/41/9780671721541.jpg'), + ('0671876155', 'Chrome Circle (The Serrated Edge, Bk. 4)', 'https://images.isbndb.com/covers/61/59/9780671876159.jpg'), + ('0140434895', 'Great Expectations (Penguin Classics)', 'https://images.isbndb.com/covers/48/97/9780140434897.jpg'), + ('0140180923', 'Lord Jim (Penguin Classics)', 'https://images.isbndb.com/covers/09/23/9780140180923.jpg'), + ('0393309282', 'Journal Of A Solitude', 'https://images.isbndb.com/covers/92/87/9780393309287.jpg'), + ('0060194790', 'Waiting : The True Confessions Of A Waitress', 'https://images.isbndb.com/covers/47/96/9780060194796.jpg'), + ('0452280397', 'Paradise (Oprah''s Book Club)', 'https://images.isbndb.com/covers/03/97/9780452280397.jpg'), + ('0886773318', 'The Last Wizard (Wizard Crystal)', 'https://images.isbndb.com/covers/33/11/9780886773311.jpg'), + ('0886775167', 'Winds Of Fate (The Mage Winds, Book 1)', 'https://images.isbndb.com/covers/51/62/9780886775162.jpg'), + ('0812521145', 'Jinx High', 'https://images.isbndb.com/covers/11/46/9780812521146.jpg'), + ('0671721259', 'Castle Of Deception (The Bard''s Tale, Book 1)', 'https://images.isbndb.com/covers/12/51/9780671721251.jpg'), + ('0671876287', 'The Robin & The Kestrel (Bardic Voices, Book 2)', 'https://images.isbndb.com/covers/62/89/9780671876289.jpg'), + ('0517543346', 'Out Of Season', 'https://images.isbndb.com/covers/33/44/9780517543344.jpg'), + ('0140265988', 'Falling Leaves: The True Story Of An Unwanted Chinese Daughter', 'https://images.isbndb.com/covers/59/89/9780140265989.jpg'), + ('0752271474', 'Purple Ronnie''s Love Poems', 'https://images.isbndb.com/covers/14/77/9780752271477.jpg'), + ('0751512966', 'Italian House', 'https://images.isbndb.com/covers/29/60/9780751512960.jpg'), + ('059049418X', 'The Change (Animorphs Ser., No. 13)', 'https://images.isbndb.com/covers/41/82/9780590494182.jpg'), + ('207038165X', 'L''insoutenable Légèreté De L''être', 'https://images.isbndb.com/covers/16/54/9782070381654.jpg'), + ('0531098745', 'How To Win A Pullet Surprise: The Pleasures And Pitfalls Of Our Language', 'https://images.isbndb.com/covers/87/45/9780531098745.jpg'), + ('0465026567', 'Gödel, Escher, Bach: An Eternal Golden Braid', 'https://images.isbndb.com/covers/65/62/9780465026562.jpg'), + ('0446674044', 'Drawing From Within: Unleashing Your Creative Potential', 'https://images.isbndb.com/covers/40/41/9780446674041.jpg'), + ('1592570801', 'The Complete Idiot''s Guide To Drawing, 2E', 'https://images.isbndb.com/covers/08/05/9781592570805.jpg'), + ('1582970807', 'Memoirs Of The Soul: Writing Your Spiritual Autobiography', 'https://images.isbndb.com/covers/08/06/9781582970806.jpg'), + ('158180119X', 'Watercolor Pencil Magic', 'https://images.isbndb.com/covers/11/94/9781581801194.jpg'), + ('1581802986', 'THE COMPLETE COLORED PENCIL BOOK', 'https://images.isbndb.com/covers/29/86/9781581802986.jpg'), + ('0891347208', 'Painting Houses, Cottages And Towns On Rocks', 'https://images.isbndb.com/covers/72/00/9780891347200.jpg'), + ('1581800320', 'Painting Pets On Rocks', 'https://images.isbndb.com/covers/03/26/9781581800326.jpg'), + ('0140390448', 'Walden And Civil Disobedience (Penguin American Library)', 'https://images.isbndb.com/covers/04/45/9780140390445.jpg'), + ('0004121120', 'Learn To Paint Watercolours (Collins Learn To Paint)', 'https://images.isbndb.com/covers/11/23/9780004121123.jpg'), + ('0861013743', 'The Creative Book Of Decorative Painting (Creative Book Of Homecrafts Series)', 'https://images.isbndb.com/covers/37/46/9780861013746.jpg'), + ('0525945407', 'Healing Grief : Reclaiming Life After Any Loss', 'https://images.isbndb.com/covers/54/06/9780525945406.jpg'), + ('0517654954', 'Dogs Of The World: An Illustrated Encyclopedia', 'https://images.isbndb.com/covers/49/58/9780517654958.jpg'), + ('0025294458', 'The Wild Lawn Handbook: Alternatives To The Traditional Front Lawn', 'https://images.isbndb.com/covers/44/55/9780025294455.jpg'), + ('0903505355', 'The House Plant Expert', 'https://images.isbndb.com/covers/53/52/9780903505352.jpg'), + ('0903505193', 'The Flower Expert (Expert Series)', 'https://images.isbndb.com/covers/51/92/9780903505192.jpg'), + ('1551050765', 'Lois Hole''s Perennial Favorites', 'https://images.isbndb.com/covers/07/68/9781551050768.jpg'), + ('0517693399', 'The Essential Gardener', 'https://images.isbndb.com/covers/33/91/9780517693391.jpg'), + ('1859671039', 'The Decorated Garden Room: Interior Design For Your Outside Living Space', 'https://images.isbndb.com/covers/10/30/9781859671030.jpg'), + ('0458921009', 'The Rutland Dirty Weekend Book', 'https://images.isbndb.com/covers/10/03/9780458921003.jpg'), + ('1842151126', 'Runes: For Divination, Protection And Healing (Guide For Life)', 'https://images.isbndb.com/covers/11/29/9781842151129.jpg'), + ('0920656404', 'Mammals Of The Canadian Wild', 'https://images.isbndb.com/covers/64/02/9780920656402.jpg'), + ('0399139206', 'Walking Shadow', 'https://images.isbndb.com/covers/92/08/9780399139208.jpg'), + ('0060163704', 'Coyote Waits', 'https://images.isbndb.com/covers/37/09/9780060163709.jpg'), + ('0920656080', 'The Architecture Of Animals: The Equinox Guide To Wildlife Structures', 'https://images.isbndb.com/covers/60/82/9780920656082.jpg'), + ('0920656943', 'Exploring The World Of Birds: An Equinox Guide To Avian Life', 'https://images.isbndb.com/covers/69/45/9780920656945.jpg'), + ('0835607771', 'Visual Journaling: Going Deeper Than Words', 'https://images.isbndb.com/covers/77/73/9780835607773.jpg'), + ('0345391373', 'An Incomplete Education, Revised Edition', 'https://images.isbndb.com/covers/13/77/9780345391377.jpg'), + ('0714836257', 'The Art Book', 'https://images.isbndb.com/covers/62/56/9780714836256.jpg'), + ('0920656269', 'Nightwatch: An Equinox Guide To Viewing The Universe', 'https://images.isbndb.com/covers/62/66/9780920656266.jpg'), + ('0345400577', 'A Book Of Angels: Reflections On Angels Past And Present And True Stories Of How They Touch Our Lives', 'https://images.isbndb.com/covers/05/74/9780345400574.jpg'), + ('0679419616', 'From Beginning To End:: The Rituals Of Our Lives', 'https://images.isbndb.com/covers/96/17/9780679419617.jpg'), + ('0201567792', 'Lighten Up: Survival Skills For People Under Pressure (A William Patrick Book)', 'https://images.isbndb.com/covers/77/93/9780201567793.jpg'), + ('0517331942', 'Meaning Of Masonry', 'https://images.isbndb.com/covers/19/41/9780517331941.jpg'), + ('1568361742', 'Off The Map: The Curious Histories Of Place-Names', 'https://images.isbndb.com/covers/17/41/9781568361741.jpg'), + ('0385315058', 'It''s Only Too Late If You Don''t Start Now : How To Create Your Second Life After Forty', 'https://images.isbndb.com/covers/50/50/9780385315050.jpg'), + ('9747315084', 'Bangkok : The Story Of A City', 'https://images.isbndb.com/covers/50/80/9789747315080.jpg'), + ('3453152891', 'Operation Rainbow', 'https://images.isbndb.com/covers/28/92/9783453152892.jpg'), + ('3442352983', 'Kopfüber In Die Kissen: Roman', 'https://images.isbndb.com/covers/29/82/9783442352982.jpg'), + ('3499101505', 'Der Richter Und Sein Henker.', 'https://images.isbndb.com/covers/15/02/9783499101502.jpg'), + ('3518382357', 'Von Liebe Und Schatten: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/23/56/9783518382356.jpg'), + ('3442446929', 'Der Keltische Ring.', 'https://images.isbndb.com/covers/69/26/9783442446926.jpg'), + ('3257218478', 'Indianersommer', 'https://images.isbndb.com/covers/84/73/9783257218473.jpg'), + ('0684854341', 'HEN FRIGATES: Passion And Peril, Nineteenth-Century Women At Sea', 'https://images.isbndb.com/covers/43/42/9780684854342.jpg'), + ('3453052544', 'Christine', 'https://images.isbndb.com/covers/25/43/9783453052543.jpg'), + ('3442724295', 'Warten Auf Kerouac', 'https://images.isbndb.com/covers/42/91/9783442724291.jpg'), + ('0821225685', 'Hand And Home: The Homes Of American Craftsmen', 'https://images.isbndb.com/covers/56/84/9780821225684.jpg'), + ('0449209881', 'Angle Of Repose', 'https://images.isbndb.com/covers/98/82/9780449209882.jpg'), + ('0375724443', 'Ava''s Man', 'https://images.isbndb.com/covers/44/42/9780375724442.jpg'), + ('0140282777', 'Big Fish: A Novel Of Mythic Proportions', 'https://images.isbndb.com/covers/27/71/9780140282771.jpg'), + ('034541005X', 'The Power Of One: A Novel', 'https://images.isbndb.com/covers/00/54/9780345410054.jpg'), + ('2894294247', 'Cat Lovers Companion', 'https://images.isbndb.com/covers/42/46/9782894294246.jpg'), + ('0553159445', 'Sarah''s Dad And Sophia''s Mom (Sweet Valley Twins And Friends, No 62)', 'https://images.isbndb.com/covers/94/48/9780553159448.jpg'), + ('0380713349', 'Polly Panic', 'https://images.isbndb.com/covers/33/49/9780380713349.jpg'), + ('059044333X', 'The Girlfriend (Point Horror Series)', 'https://images.isbndb.com/covers/33/33/9780590443333.jpg'), + ('0380614324', 'I Love You, Stupid', 'https://images.isbndb.com/covers/43/25/9780380614325.jpg'), + ('0440911257', 'The Castle Of Llyr', 'https://images.isbndb.com/covers/12/58/9780440911258.jpg'), + ('0671736795', 'The DANCE (FINAL FRIENDS 2): THE DANCE (Final Friends, Book 2)', 'https://images.isbndb.com/covers/67/98/9780671736798.jpg'), + ('0671529544', 'Forbidden Secrets: Fear Street Sagas #3', 'https://images.isbndb.com/covers/95/43/9780671529543.jpg'), + ('0671628410', 'Why Me?', 'https://images.isbndb.com/covers/84/13/9780671628413.jpg'), + ('0425133184', 'Sunset Reunion', 'https://images.isbndb.com/covers/31/87/9780425133187.jpg'), + ('0671888285', 'My Girl 2: A Novel', 'https://images.isbndb.com/covers/82/82/9780671888282.jpg'), + ('0425127729', 'Sunset Farewell (Sunset Island, 4)', 'https://images.isbndb.com/covers/77/28/9780425127728.jpg'), + ('0671894242', 'Bad Moonlight (Fear Street Super Chillers, No. 8)', 'https://images.isbndb.com/covers/42/45/9780671894245.jpg'), + ('0671529560', 'The Loudest Scream (Fear Street: Fear Park, No. 2)', 'https://images.isbndb.com/covers/95/67/9780671529567.jpg'), + ('059045370X', 'Let''s Get Invisible! (Goosebumps, No. 6)', 'https://images.isbndb.com/covers/37/07/9780590453707.jpg'), + ('0590453696', 'The Curse Of The Mummy''s Tomb (Goosebumps)', 'https://images.isbndb.com/covers/36/91/9780590453691.jpg'), + ('0590477382', 'One Day At Horrorland (Goosebumps #16)', 'https://images.isbndb.com/covers/73/83/9780590477383.jpg'), + ('0590466186', 'The Girl Who Cried Monster (Goosebumps, No. 8)', 'https://images.isbndb.com/covers/61/89/9780590466189.jpg'), + ('0446602558', 'Sweetwater', 'https://images.isbndb.com/covers/25/56/9780446602556.jpg'), + ('0316485187', 'How To Get What You Want In Life With The Money You Already Have', 'https://images.isbndb.com/covers/51/80/9780316485180.jpg'), + ('0890819858', 'Jerusalem The City Of God', 'https://images.isbndb.com/covers/98/52/9780890819852.jpg'), + ('0310539218', 'Armageddon, Oil, And The Middle East Crisis: What The Bible Says About The Future Of The MiddleEast And The End Of Western Civilization', 'https://images.isbndb.com/covers/92/16/9780310539216.jpg'), + ('156761583X', 'The Complete Idiot''s Guide To Buying And Upgrading PCs', 'https://images.isbndb.com/covers/58/38/9781567615838.jpg'), + ('0805042768', 'Debt Free!: Your Guide To Personal Bankruptcy Without Shame', 'https://images.isbndb.com/covers/27/64/9780805042764.jpg'), + ('0883964481', 'Always Believe In Yourself And Your Dreams (Blue Mountain Arts Collection)', 'https://images.isbndb.com/covers/44/84/9780883964484.jpg'), + ('0140432914', 'The Fall Of The House Of Usher And Other Writings: Poems, Tales, Essays, And Reviews (Penguin Classics)', 'https://images.isbndb.com/covers/29/16/9780140432916.jpg'), + ('0006742939', 'Weirdstone Of Brisingamen New Ed', 'https://images.isbndb.com/covers/29/37/9780006742937.jpg'), + ('1573222321', 'Journals', 'https://images.isbndb.com/covers/23/27/9781573222327.jpg'), + ('0688163165', 'Mystic River', 'https://images.isbndb.com/covers/31/67/9780688163167.jpg'), + ('0064400204', 'Sounder', 'https://images.isbndb.com/covers/02/06/9780064400206.jpg'), + ('0060557540', 'The Known World', 'https://images.isbndb.com/covers/75/46/9780060557546.jpg'), + ('0525947671', 'The Lady And The Unicorn', 'https://images.isbndb.com/covers/76/77/9780525947677.jpg'), + ('0151004439', 'Snow Falling On Cedars: Movie Tie-in Edition', 'https://images.isbndb.com/covers/44/30/9780151004430.jpg'), + ('0679642382', 'Possession: A Romance (Modern Library)', 'https://images.isbndb.com/covers/23/81/9780679642381.jpg'), + ('0804113475', 'Ladder Of Years', 'https://images.isbndb.com/covers/34/72/9780804113472.jpg'), + ('037576013X', 'Daniel Deronda (Modern Library Classics)', 'https://images.isbndb.com/covers/01/36/9780375760136.jpg'), + ('0679455612', 'A Lesson Before Dying', 'https://images.isbndb.com/covers/56/15/9780679455615.jpg'), + ('0553212435', 'Villette (Bantam Classics)', 'https://images.isbndb.com/covers/24/33/9780553212433.jpg'), + ('0440147956', 'Light A Penny Candle', 'https://images.isbndb.com/covers/79/54/9780440147954.jpg'), + ('0375415351', 'Sula (Oprah''s Book Club)', 'https://images.isbndb.com/covers/53/57/9780375415357.jpg'), + ('0763616052', 'Because Of Winn-Dixie', 'https://images.isbndb.com/covers/60/52/9780763616052.jpg'), + ('0380432811', 'Bridge To Terabithia', 'https://images.isbndb.com/covers/28/13/9780380432813.jpg'), + ('0440212359', 'London Transports', 'https://images.isbndb.com/covers/23/55/9780440212355.jpg'), + ('0670857459', 'Felicia''s Journey', 'https://images.isbndb.com/covers/74/56/9780670857456.jpg'), + ('1582344094', 'The Bobby Gold Stories: A Novel', 'https://images.isbndb.com/covers/40/96/9781582344096.jpg'), + ('0452285062', 'The Grits (Girls Raised In The South) Guide To Life', 'https://images.isbndb.com/covers/50/64/9780452285064.jpg'), + ('0805063315', 'Dr. Tatiana''s Sex Advice To All Creation: The Definitive Guide To The Evolutionary Biology Of Sex', 'https://images.isbndb.com/covers/33/18/9780805063318.jpg'), + ('0671507303', 'Dead Cert', 'https://images.isbndb.com/covers/73/05/9780671507305.jpg'), + ('0684844141', 'Fanny Kemble''s Civil Wars', 'https://images.isbndb.com/covers/41/45/9780684844145.jpg'), + ('0394722531', 'The Plantation Mistress: Woman''s World In The Old South', 'https://images.isbndb.com/covers/25/35/9780394722535.jpg'), + ('0375504184', 'I Knew A Woman: The Experience Of The Female Body', 'https://images.isbndb.com/covers/41/81/9780375504181.jpg'), + ('0671009443', 'Private Parts', 'https://images.isbndb.com/covers/94/41/9780671009441.jpg'), + ('0425165337', 'The Dream Stalker (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/53/31/9780425165331.jpg'), + ('0553579207', 'Ancient Ones', 'https://images.isbndb.com/covers/92/08/9780553579208.jpg'), + ('0060529148', 'Give Me A Break: How I Exposed Hucksters, Cheats, And Scam Artists And Became The Scourge Of The Liberal Media...', 'https://images.isbndb.com/covers/91/47/9780060529147.jpg'), + ('006104444X', 'Zen Attitude', 'https://images.isbndb.com/covers/44/41/9780061044441.jpg'), + ('1400034817', 'Red Meat Cures Cancer', 'https://images.isbndb.com/covers/48/19/9781400034819.jpg'), + ('0553378007', 'The Scalpel And The Silver Bear: The First Navajo Woman Surgeon Combines Western Medicine And Traditional Healing', 'https://images.isbndb.com/covers/80/09/9780553378009.jpg'), + ('0836226844', 'Forever, Erma: Best-Loved Writing From America''s Favorite Humorist', 'https://images.isbndb.com/covers/68/43/9780836226843.jpg'), + ('0515113328', 'The Cat Who Went Into The Closet', 'https://images.isbndb.com/covers/33/27/9780515113327.jpg'), + ('0345368436', 'Douglas Adams''s Starship Titanic', 'https://images.isbndb.com/covers/84/30/9780345368430.jpg'), + ('0515093203', 'The Cat Who Played Post Office', 'https://images.isbndb.com/covers/32/09/9780515093209.jpg'), + ('0446525731', 'The Christmas Train', 'https://images.isbndb.com/covers/57/32/9780446525732.jpg'), + ('0449212653', 'Flying Finish', 'https://images.isbndb.com/covers/26/53/9780449212653.jpg'), + ('0515107867', 'The Cat Who Knew A Cardinal', 'https://images.isbndb.com/covers/78/69/9780515107869.jpg'), + ('0140232257', 'Monster: The Autobiography Of An L.A. Gang Member', 'https://images.isbndb.com/covers/22/57/9780140232257.jpg'), + ('0449220273', 'Death And The Dogwalker', 'https://images.isbndb.com/covers/02/76/9780449220276.jpg'), + ('0312864876', 'Household Gods', 'https://images.isbndb.com/covers/48/73/9780312864873.jpg'), + ('0684813637', 'John Adams', 'https://images.isbndb.com/covers/36/39/9780684813639.jpg'), + ('0451192931', 'Just Plain Pickled To Death (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/29/36/9780451192936.jpg'), + ('0446400564', 'Dead Men''s Hearts', 'https://images.isbndb.com/covers/05/65/9780446400565.jpg'), + ('0446403083', 'Make No Bones', 'https://images.isbndb.com/covers/30/85/9780446403085.jpg'), + ('0445406836', 'The Corpse In Oozak''s Pond (Peter Shandy Mysteries)', 'https://images.isbndb.com/covers/68/34/9780445406834.jpg'), + ('0156003376', 'The Only Investment Guide You''ll Ever Need', 'https://images.isbndb.com/covers/33/77/9780156003377.jpg'), + ('0515132268', 'The Cat Who Smelled A Rat', 'https://images.isbndb.com/covers/22/67/9780515132267.jpg'), + ('0399524827', 'Dr. Jane''s Natural Care For A Healthier, Happier Dog', 'https://images.isbndb.com/covers/48/20/9780399524820.jpg'), + ('1563055619', 'Guerrillas Of Goodness Handbook', 'https://images.isbndb.com/covers/56/14/9781563055614.jpg'), + ('0451205685', 'Gruel And Unusual Punishment (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/56/81/9780451205681.jpg'), + ('0451190572', 'Green Mile Book 6: Coffey On The Mile: The Green Mile, Part 6', 'https://images.isbndb.com/covers/05/74/9780451190574.jpg'), + ('1555218067', 'History Of Witchcraft', 'https://images.isbndb.com/covers/80/65/9781555218065.jpg'), + ('0525940413', 'So Far...', 'https://images.isbndb.com/covers/04/18/9780525940418.jpg'), + ('0440411394', 'Under The Blood-Red Sun', 'https://images.isbndb.com/covers/13/90/9780440411390.jpg'), + ('0590425609', 'Stealing Home: The Story Of Jackie Robinson (Scholastic Biography)', 'https://images.isbndb.com/covers/56/05/9780590425605.jpg'), + ('0425187101', 'Canine Caper: Real-Life Tales Of A Female Pet Vigilante', 'https://images.isbndb.com/covers/71/04/9780425187104.jpg'), + ('1857026012', 'Wit & Wisdom Of Jane Austen', 'https://images.isbndb.com/covers/60/16/9781857026016.jpg'), + ('014007385X', 'Cafe Le Dog (Short Fiction)', 'https://images.isbndb.com/covers/38/50/9780140073850.jpg'), + ('0905762207', 'Frogs In A Well: Indian Women In Purdah', 'https://images.isbndb.com/covers/22/03/9780905762203.jpg'), + ('0771014813', 'The Wandering Soul Murders', 'https://images.isbndb.com/covers/48/19/9780771014819.jpg'), + ('0028610865', 'The Complete Idiot''s Guide To Managing Stress', 'https://images.isbndb.com/covers/08/63/9780028610863.jpg'), + ('0312862091', 'Preternatural', 'https://images.isbndb.com/covers/20/91/9780312862091.jpg'), + ('0312064330', 'Otherwhere', 'https://images.isbndb.com/covers/43/34/9780312064334.jpg'), + ('0312093586', 'Otherwise (Others Series, Vol 3)', 'https://images.isbndb.com/covers/35/87/9780312093587.jpg'), + ('0312866712', 'Preternatural Too: Gyre', 'https://images.isbndb.com/covers/67/16/9780312866716.jpg'), + ('0553229281', 'Majipoor Chronicles', 'https://images.isbndb.com/covers/92/88/9780553229288.jpg'), + ('0553244949', 'Valentine Pontifex (Majipoor: Lord Valentine, Book 3)', 'https://images.isbndb.com/covers/49/46/9780553244946.jpg'), + ('0441646611', 'Cat-a-Lyst', 'https://images.isbndb.com/covers/66/16/9780441646616.jpg'), + ('0441516645', 'Glory Lane', 'https://images.isbndb.com/covers/66/43/9780441516643.jpg'), + ('0671601075', 'Life, The Universe And Everything', 'https://images.isbndb.com/covers/10/72/9780671601072.jpg'), + ('067166493X', 'So Long And Thanks For All The Fish', 'https://images.isbndb.com/covers/49/30/9780671664930.jpg'), + ('0671532642', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/26/42/9780671532642.jpg'), + ('9681908244', 'La Piel Del Cielo (Spanish Edition)', 'https://images.isbndb.com/covers/82/49/9789681908249.jpg'), + ('0886772680', 'The Best Of Marion Zimmer Bradley (Daw Science Fiction)', 'https://images.isbndb.com/covers/26/80/9780886772680.jpg'), + ('0812511840', 'Knight Moves', 'https://images.isbndb.com/covers/18/40/9780812511840.jpg'), + ('0671865714', 'Here There Be Dragons (Star Trek The Next Generation, No 28)', 'https://images.isbndb.com/covers/57/19/9780671865719.jpg'), + ('0515105449', 'Few Die Well', 'https://images.isbndb.com/covers/54/45/9780515105445.jpg'), + ('0451404505', 'The Right Kind Of War', 'https://images.isbndb.com/covers/45/03/9780451404503.jpg'), + ('0515112461', 'Targets Of Opportunity', 'https://images.isbndb.com/covers/24/67/9780515112467.jpg'), + ('0451407504', 'Seaspell', 'https://images.isbndb.com/covers/75/04/9780451407504.jpg'), + ('0449206440', 'The Crystal Cave (The Arthurian Saga, Book 1)', 'https://images.isbndb.com/covers/64/47/9780449206447.jpg'), + ('0380809176', 'Meet Me At Midnight (With This Ring, Book 2)', 'https://images.isbndb.com/covers/91/72/9780380809172.jpg'), + ('0385506708', 'Death Match: A Novel (Child, Lincoln)', 'https://images.isbndb.com/covers/67/00/9780385506700.jpg'), + ('0515109509', 'The Cat Who Moved A Mountain', 'https://images.isbndb.com/covers/95/04/9780515109504.jpg'), + ('0446355569', 'The City Of Joy', 'https://images.isbndb.com/covers/55/68/9780446355568.jpg'), + ('0192838601', 'Sons And Lovers (Oxford World''s Classics)', 'https://images.isbndb.com/covers/86/05/9780192838605.jpg'), + ('0140255036', 'Digging', 'https://images.isbndb.com/covers/50/34/9780140255034.jpg'), + ('020717055X', 'Crocodile Fury', 'https://images.isbndb.com/covers/05/53/9780207170553.jpg'), + ('0060173092', 'Ecstasy Club: A Novel', 'https://images.isbndb.com/covers/30/98/9780060173098.jpg'), + ('0151001820', 'The Club Dumas', 'https://images.isbndb.com/covers/18/28/9780151001828.jpg'), + ('0553100890', 'Star Wars: Shadows Of The Empire', 'https://images.isbndb.com/covers/08/91/9780553100891.jpg'), + ('0679437851', 'An Anthropologist On Mars: Seven Paradoxical Tales', 'https://images.isbndb.com/covers/78/57/9780679437857.jpg'), + ('0385483260', 'A Tale Of Two Cities (Penguin Readers, Level 6)', 'https://images.isbndb.com/covers/32/61/9780385483261.jpg'), + ('0446522252', 'Reason For Hope: A Spiritual Journey', 'https://images.isbndb.com/covers/22/50/9780446522250.jpg'), + ('0030844924', 'The Vantage Point: Perspectives Of The Presidency, 1963-1969', 'https://images.isbndb.com/covers/49/28/9780030844928.jpg'), + ('0816029091', 'Encyclopedia Of Gods: Over 2,500 Deities Of The World', 'https://images.isbndb.com/covers/90/99/9780816029099.jpg'), + ('1578660343', 'Quilt Masterpieces', 'https://images.isbndb.com/covers/03/46/9781578660346.jpg'), + ('0801431611', 'Madness In America: Cultural And Medical Perceptions Of Mental Illness Before 1914 (Cornell Studies In The History Of Psychiatry)', 'https://images.isbndb.com/covers/16/16/9780801431616.jpg'), + ('0696207397', '101 Full-Size Quilt Blocks And Borders (Better Homes & Gardens)', 'https://images.isbndb.com/covers/73/96/9780696207396.jpg'), + ('1567994741', 'The Quilt: Beauty In Fabric And Thread', 'https://images.isbndb.com/covers/47/42/9781567994742.jpg'), + ('0714835420', 'The 20th Century Art Book', 'https://images.isbndb.com/covers/54/26/9780714835426.jpg'), + ('0517159635', 'Civil Rights Movement: An Illustrated History', 'https://images.isbndb.com/covers/96/37/9780517159637.jpg'), + ('0140237712', 'The Encyclopedia Of Embroidery Techniques: The Unique Visual Directory Of All The Major Embroidery Techniques...', 'https://images.isbndb.com/covers/77/19/9780140237719.jpg'), + ('1566195268', 'Mark Twain On The Damned Human Race', 'https://images.isbndb.com/covers/52/63/9781566195263.jpg'), + ('1888363576', 'Grand Central Winter: Stories From The Street', 'https://images.isbndb.com/covers/35/79/9781888363579.jpg'), + ('0449225046', 'Black Lightning', 'https://images.isbndb.com/covers/50/42/9780449225042.jpg'), + ('0938985000', 'Mountain Memories III', 'https://images.isbndb.com/covers/50/06/9780938985006.jpg'), + ('0140161163', 'The Lifted Veil (Virago Modern Classics)', 'https://images.isbndb.com/covers/11/68/9780140161168.jpg'), + ('0671675427', 'Marie Curie: A Life', 'https://images.isbndb.com/covers/54/24/9780671675424.jpg'), + ('9510119342', 'Kasialatiedon Opas (Finnish Edition)', 'https://images.isbndb.com/covers/93/41/9789510119341.jpg'), + ('0899670202', 'Lassie Come Home', 'https://images.isbndb.com/covers/02/01/9780899670201.jpg'), + ('055326026X', 'Twisting The Rope ( Black Dragon Series )', 'https://images.isbndb.com/covers/02/67/9780553260267.jpg'), + ('0312989474', 'A Fine And Bitter Snow: A Kate Shugak Novel (Kate Shugak Mysteries)', 'https://images.isbndb.com/covers/94/77/9780312989477.jpg'), + ('0821602039', 'Mrs. Byrne''s Dictionary Of Unusual, Obscure, And Preposterous Words', 'https://images.isbndb.com/covers/20/34/9780821602034.jpg'), + ('0765342227', 'The Sky So Big And Black', 'https://images.isbndb.com/covers/22/25/9780765342225.jpg'), + ('0553273817', 'A Canticle For Leibowitz', 'https://images.isbndb.com/covers/38/16/9780553273816.jpg'), + ('0812520157', 'Speaker For The Dead (Ender''s Game Series, No. 2)', 'https://images.isbndb.com/covers/01/56/9780812520156.jpg'), + ('0399133038', 'Just Another Kid', 'https://images.isbndb.com/covers/30/39/9780399133039.jpg'), + ('0836217241', 'The Far Side ® Gallery 4', 'https://images.isbndb.com/covers/72/47/9780836217247.jpg'), + ('0553349058', 'Wisdom Of The Heart', 'https://images.isbndb.com/covers/90/54/9780553349054.jpg'), + ('0671318578', 'Retief! (A Collection Of Stories)', 'https://images.isbndb.com/covers/85/74/9780671318574.jpg'), + ('0142000264', 'Murder At Monticello: A Homer Kelly Mystery (Homer Kelly Mysteries)', 'https://images.isbndb.com/covers/02/67/9780142000267.jpg'), + ('0449208281', 'The Unexpected Mrs. Pollifax', 'https://images.isbndb.com/covers/82/81/9780449208281.jpg'), + ('0689312024', 'Izzy, Willy-Nilly', 'https://images.isbndb.com/covers/20/21/9780689312021.jpg'), + ('0451199448', 'So Sure Of Death (Liam Campbell Mysteries)', 'https://images.isbndb.com/covers/94/47/9780451199447.jpg'), + ('0446405345', 'The Raven In The Foregate (Brother Cadfael Mysteries)', 'https://images.isbndb.com/covers/53/48/9780446405348.jpg'), + ('0440227437', 'Black Cauldron, The', 'https://images.isbndb.com/covers/74/34/9780440227434.jpg'), + ('1585671487', 'Islandia', 'https://images.isbndb.com/covers/14/89/9781585671489.jpg'), + ('0446672351', 'Reservation Blues', 'https://images.isbndb.com/covers/23/51/9780446672351.jpg'), + ('0425158497', 'A Cold-Blooded Business (Kate Shugak Mystery)', 'https://images.isbndb.com/covers/84/94/9780425158494.jpg'), + ('0768322413', 'Destiny', 'https://images.isbndb.com/covers/24/15/9780768322415.jpg'), + ('0380003856', 'Harold And Maude', 'https://images.isbndb.com/covers/38/53/9780380003853.jpg'), + ('0099272687', 'Patchwork Planet Uk Edition', 'https://images.isbndb.com/covers/26/87/9780099272687.jpg'), + ('1860465536', 'Seville Communion (Panther S.)', 'https://images.isbndb.com/covers/55/36/9781860465536.jpg'), + ('0525945784', 'Touch The Top Of The World: A Blind Man''s Journey To Climb Farther Than The Eye Can See', 'https://images.isbndb.com/covers/57/89/9780525945789.jpg'), + ('085572191X', '100 Walks In Tasmania', 'https://images.isbndb.com/covers/19/16/9780855721916.jpg'), + ('0061064866', 'The Forgotten Filly (Thoroughbred Club)', 'https://images.isbndb.com/covers/48/69/9780061064869.jpg'), + ('0140280499', 'The Farming Of Bones', 'https://images.isbndb.com/covers/04/94/9780140280494.jpg'), + ('0140259708', 'Anything Considered', 'https://images.isbndb.com/covers/97/04/9780140259704.jpg'), + ('0345338588', 'On A Pale Horse (Incarnations Of Immortality, Bk. 1)', 'https://images.isbndb.com/covers/85/87/9780345338587.jpg'), + ('0345318854', 'With A Tangled Skein (Incarnations Of Immortality, Book 3)', 'https://images.isbndb.com/covers/88/55/9780345318855.jpg'), + ('0140133496', 'Graves In Academe', 'https://images.isbndb.com/covers/34/93/9780140133493.jpg'), + ('0061097101', 'The Saving Graces: A Novel', 'https://images.isbndb.com/covers/71/02/9780061097102.jpg'), + ('2246650119', 'Chroniques De Los Angeles', 'https://images.isbndb.com/covers/01/19/9782246650119.jpg'), + ('0708832725', 'Seeds Of Love A', 'https://images.isbndb.com/covers/27/21/9780708832721.jpg'), + ('1843336162', 'The Beginner''s Guide To Self Hypnosis', 'https://images.isbndb.com/covers/61/67/9781843336167.jpg'), + ('1570621284', 'Shambhala: Sacred Path Of The Warrior (Shambhala Pocket Classics)', 'https://images.isbndb.com/covers/12/84/9781570621284.jpg'), + ('0812516257', 'Nightside The Long Sun (Book Of The Long Sun)', 'https://images.isbndb.com/covers/62/58/9780812516258.jpg'), + ('0140104321', 'Cadillac Desert', 'https://images.isbndb.com/covers/43/25/9780140104325.jpg'), + ('0140250824', 'Thin He Was And Filthy-Haired', 'https://images.isbndb.com/covers/08/24/9780140250824.jpg'), + ('2266104535', 'Et Si C''était Vrai...', 'https://images.isbndb.com/covers/45/31/9782266104531.jpg'), + ('2020352257', 'Vice-versa', 'https://images.isbndb.com/covers/22/53/9782020352253.jpg'), + ('2070417212', 'La Légende D''Alexandre', 'https://images.isbndb.com/covers/72/16/9782070417216.jpg'), + ('0902920049', 'Rhyming Cockney Slang', 'https://images.isbndb.com/covers/00/40/9780902920040.jpg'), + ('1858286794', 'The Mini Rough Guide To Paris', 'https://images.isbndb.com/covers/67/92/9781858286792.jpg'), + ('0140622306', 'Portrait Of The Artist As A Young Man (Penguin Popular Classics)', 'https://images.isbndb.com/covers/23/00/9780140622300.jpg'), + ('0440432960', 'HENRY AND RIBSY', 'https://images.isbndb.com/covers/29/68/9780440432968.jpg'), + ('0345380975', 'Stranger At The Wedding', 'https://images.isbndb.com/covers/09/75/9780345380975.jpg'), + ('067102261X', 'The Sum Of All Men (Runelords)', 'https://images.isbndb.com/covers/26/17/9780671022617.jpg'), + ('055327449X', 'The Illustrated Man (Grand Master Editions)', 'https://images.isbndb.com/covers/44/93/9780553274493.jpg'), + ('0425093328', 'The Cat Who Walks Through Walls', 'https://images.isbndb.com/covers/33/20/9780425093320.jpg'), + ('0312979533', 'A Place Of Execution', 'https://images.isbndb.com/covers/95/39/9780312979539.jpg'), + ('1569470154', 'Queen And I', 'https://images.isbndb.com/covers/01/52/9781569470152.jpg'), + ('0439228913', 'Wuthering Heights', 'https://images.isbndb.com/covers/89/16/9780439228916.jpg'), + ('0060951281', 'Eva Luna (Spanish Language Edition)', 'https://images.isbndb.com/covers/12/83/9780060951283.jpg'), + ('0679879269', 'The Amber Spyglass (His Dark Materials, Book 3)', 'https://images.isbndb.com/covers/92/68/9780679879268.jpg'), + ('0679879250', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/92/51/9780679879251.jpg'), + ('0060951303', 'La Casa De Los Espíritus', 'https://images.isbndb.com/covers/13/06/9780060951306.jpg'), + ('0439456983', 'Lucas', 'https://images.isbndb.com/covers/69/82/9780439456982.jpg'), + ('0813511704', 'Quicksand And Passing (American Women Writers Series)', 'https://images.isbndb.com/covers/17/02/9780813511702.jpg'), + ('0312890249', 'Prince Ombra', 'https://images.isbndb.com/covers/02/47/9780312890247.jpg'), + ('0393310396', 'Letters To A Young Poet', 'https://images.isbndb.com/covers/03/99/9780393310399.jpg'), + ('0312253737', 'The Basic Eight', 'https://images.isbndb.com/covers/37/38/9780312253738.jpg'), + ('0451159497', 'Sphinx', 'https://images.isbndb.com/covers/94/96/9780451159496.jpg'), + ('0446675792', 'Shagadelically Speaking: The Words And World Of Austin Powers', 'https://images.isbndb.com/covers/57/96/9780446675796.jpg'), + ('0425155404', 'Invasion', 'https://images.isbndb.com/covers/54/00/9780425155400.jpg'), + ('0671535552', 'This Side Of Paradise (Pocket Professor)', 'https://images.isbndb.com/covers/55/51/9780671535551.jpg'), + ('0299177742', 'The Complete Poetry Of Catullus (Wisconsin Studies In Classics)', 'https://images.isbndb.com/covers/77/44/9780299177744.jpg'), + ('0140231900', 'Mr. Vertigo', 'https://images.isbndb.com/covers/19/08/9780140231908.jpg'), + ('0762411554', '110%: 110 Strategies For Feeling Great Every Day', 'https://images.isbndb.com/covers/15/59/9780762411559.jpg'), + ('0747543259', 'Breaks Uk Edition', 'https://images.isbndb.com/covers/32/51/9780747543251.jpg'), + ('9875021245', 'Dracula/ Dracula (Spanish Edition)', 'https://images.isbndb.com/covers/12/42/9789875021242.jpg'), + ('0486405524', 'The War Of The Worlds (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/55/20/9780486405520.jpg'), + ('0863560237', 'The Crusades Through Arab Eyes (Saqi Essentials)', 'https://images.isbndb.com/covers/02/31/9780863560231.jpg'), + ('0674810511', 'Six Walks In The Fictional Woods', 'https://images.isbndb.com/covers/05/18/9780674810518.jpg'), + ('0151002177', 'Animal Farm: A Fairy Story', 'https://images.isbndb.com/covers/21/77/9780151002177.jpg'), + ('0451458222', 'The Summer Tree (The Fionavar Tapestry, Book 1)', 'https://images.isbndb.com/covers/82/23/9780451458223.jpg'), + ('0613072103', 'Airframe', 'https://images.isbndb.com/covers/21/06/9780613072106.jpg'), + ('067945540X', 'Lost World (Movie Tie-In Edition)', 'https://images.isbndb.com/covers/54/00/9780679455400.jpg'), + ('0618002243', 'The Return Of The King (The Lord Of The Rings, Part 3)', 'https://images.isbndb.com/covers/22/45/9780618002245.jpg'), + ('0618002235', 'The Two Towers (The Lord Of The Rings, Part 2)', 'https://images.isbndb.com/covers/22/38/9780618002238.jpg'), + ('0618002227', 'The Fellowship Of The Ring (The Lord Of The Rings, Part 1)', 'https://images.isbndb.com/covers/22/21/9780618002221.jpg'), + ('0001047973', 'Brave New World', 'https://images.isbndb.com/covers/79/76/9780001047976.jpg'), + ('0452262933', '1984: 60th-Anniversary Edition (Plume)', 'https://images.isbndb.com/covers/29/35/9780452262935.jpg'), + ('0684838087', 'Weird Like Us: My Bohemian America', 'https://images.isbndb.com/covers/80/83/9780684838083.jpg'), + ('0517488906', 'Alices Adventures In Wonderland', 'https://images.isbndb.com/covers/89/04/9780517488904.jpg'), + ('0679740678', 'The Man In The High Castle', 'https://images.isbndb.com/covers/06/74/9780679740674.jpg'), + ('0330346520', 'Hollywood Lies (Pb)', 'https://images.isbndb.com/covers/65/28/9780330346528.jpg'), + ('0679735747', 'Walden', 'https://images.isbndb.com/covers/57/48/9780679735748.jpg'), + ('0060294884', 'The Paper Doorway: Funny Verse And Nothing Worse', 'https://images.isbndb.com/covers/48/85/9780060294885.jpg'), + ('0440206324', 'The Island', 'https://images.isbndb.com/covers/63/23/9780440206323.jpg'), + ('0812536304', 'Mysteries Of Bizarre Animals And Freaks Of Nature (Strange Unsolved Mysteries)', 'https://images.isbndb.com/covers/63/00/9780812536300.jpg'), + ('3404612493', 'Draußen!', 'https://images.isbndb.com/covers/24/99/9783404612499.jpg'), + ('344242528X', 'Philadelphia. Roman.', 'https://images.isbndb.com/covers/52/80/9783442425280.jpg'), + ('006447108X', 'The Last Battle', 'https://images.isbndb.com/covers/10/84/9780064471084.jpg'), + ('0451409973', 'Julie And Romeo', 'https://images.isbndb.com/covers/99/73/9780451409973.jpg'), + ('0821773712', 'Autumn Leaves', 'https://images.isbndb.com/covers/37/10/9780821773710.jpg'), + ('0590477390', 'Why I''m Afraid Of Bees (Goosebumps)', 'https://images.isbndb.com/covers/73/90/9780590477390.jpg'), + ('0345368622', 'Wild Jasmine', 'https://images.isbndb.com/covers/86/21/9780345368621.jpg'), + ('0380816792', 'A Rose In Winter', 'https://images.isbndb.com/covers/67/98/9780380816798.jpg'), + ('0451404459', 'Petals In The Storm (Fallen Angels)', 'https://images.isbndb.com/covers/44/59/9780451404459.jpg'), + ('0553577379', 'The Perennial Killer: A Gardening Mystery', 'https://images.isbndb.com/covers/73/72/9780553577372.jpg'), + ('0373106939', 'No Other Chance (Harlequin Presents #693)', 'https://images.isbndb.com/covers/69/36/9780373106936.jpg'), + ('0373260024', 'In Remembrance Of Rose', 'https://images.isbndb.com/covers/00/27/9780373260027.jpg'), + ('0804101507', 'Mayflower Madam: The Secret Life Of Sydney Biddle Barrows', 'https://images.isbndb.com/covers/15/09/9780804101509.jpg'), + ('0449206610', 'The Brotherhood Of The Rose', 'https://images.isbndb.com/covers/66/14/9780449206614.jpg'), + ('1551660431', 'Full Bloom', 'https://images.isbndb.com/covers/04/31/9781551660431.jpg'), + ('0887291228', 'Langenscheidt''s Universal German Dictionary: German-English English-German (English And German Edition)', 'https://images.isbndb.com/covers/12/27/9780887291227.jpg'), + ('0486428427', 'Hans Brinker, Or The Silver Skates (Dover Children''s Evergreen Classics)', 'https://images.isbndb.com/covers/84/20/9780486428420.jpg'), + ('0345250559', 'Flora Sweet', 'https://images.isbndb.com/covers/05/51/9780345250551.jpg'), + ('0440209102', 'The Rose Of Blacksword', 'https://images.isbndb.com/covers/91/02/9780440209102.jpg'), + ('0446306177', 'Amanda Rose', 'https://images.isbndb.com/covers/61/71/9780446306171.jpg'), + ('067187098X', 'For The Roses', 'https://images.isbndb.com/covers/09/80/9780671870980.jpg'), + ('1557488371', 'Flower Of The North (Heartsong Presents #159)', 'https://images.isbndb.com/covers/83/74/9781557488374.jpg'), + ('0671676369', 'Lily And The Major (The Orphan Train Trilogy)', 'https://images.isbndb.com/covers/63/60/9780671676360.jpg'), + ('0380844001', 'A Rose In Winter', 'https://images.isbndb.com/covers/40/05/9780380844005.jpg'), + ('0140620753', 'Northanger Abbey (Penguin Popular Classics)', 'https://images.isbndb.com/covers/07/57/9780140620757.jpg'), + ('0689714335', 'The Cat Who Went To Heaven', 'https://images.isbndb.com/covers/43/37/9780689714337.jpg'), + ('1893224201', 'Barbs From The Bard', 'https://images.isbndb.com/covers/42/09/9781893224209.jpg'), + ('1892859084', 'Webster''s New Explorer Spanish-English Dictionary', 'https://images.isbndb.com/covers/90/82/9781892859082.jpg'), + ('1565122321', 'The Unexpected Salami: A Novel', 'https://images.isbndb.com/covers/23/21/9781565122321.jpg'), + ('0064401103', 'Heaven To Betsy (Betsy-Tacy)', 'https://images.isbndb.com/covers/11/04/9780064401104.jpg'), + ('0064400980', 'Betsy And Tacy Go Downtown (Harper Trophy Book)', 'https://images.isbndb.com/covers/09/85/9780064400985.jpg'), + ('0064400999', 'Betsy And Tacy Go Over The Big Hill (Betsy-Tacy Book)', 'https://images.isbndb.com/covers/09/92/9780064400992.jpg'), + ('0064408582', 'Emily Of Deep Valley', 'https://images.isbndb.com/covers/85/85/9780064408585.jpg'), + ('3423126299', 'Vogelbeerbaum', 'https://images.isbndb.com/covers/62/98/9783423126298.jpg'), + ('3404102800', 'Spiel Der Herzen. Roman.', 'https://images.isbndb.com/covers/28/08/9783404102808.jpg'), + ('3453870336', 'Helden. Wohin Die Liebe Geht, Wenn Sie Geht', 'https://images.isbndb.com/covers/03/38/9783453870338.jpg'), + ('0525946632', 'Thieves'' Paradise: A Novel', 'https://images.isbndb.com/covers/66/32/9780525946632.jpg'), + ('0345369025', 'Garfield''s Feline Fantasies', 'https://images.isbndb.com/covers/90/24/9780345369024.jpg'), + ('0375823255', 'Mahalia', 'https://images.isbndb.com/covers/32/51/9780375823251.jpg'), + ('2070424197', 'La Joueuse De Go - Prix Goncourt Des Lycéens 2001', 'https://images.isbndb.com/covers/41/91/9782070424191.jpg'), + ('0440295521', 'The Runaway Jury', 'https://images.isbndb.com/covers/55/25/9780440295525.jpg'), + ('0140389660', 'That Was Then, This Is Now', 'https://images.isbndb.com/covers/96/61/9780140389661.jpg'), + ('3423125195', 'América: Roman', 'https://images.isbndb.com/covers/51/92/9783423125192.jpg'), + ('0842365508', 'Sticky Situations: 365 Devotions For Kids And Families', 'https://images.isbndb.com/covers/55/05/9780842365505.jpg'), + ('0140363033', 'The Magic Finger', 'https://images.isbndb.com/covers/30/36/9780140363036.jpg'), + ('0440503310', 'Cold Moons, The', 'https://images.isbndb.com/covers/33/16/9780440503316.jpg'), + ('0671674005', 'Long Distances', 'https://images.isbndb.com/covers/40/07/9780671674007.jpg'), + ('0312961049', 'School Of Hard Knocks (Ginger Barnes Main Line Mysteries)', 'https://images.isbndb.com/covers/10/46/9780312961046.jpg'), + ('0590431692', 'Hurray For Ali Baba Bernstein', 'https://images.isbndb.com/covers/16/99/9780590431699.jpg'), + ('0590489410', 'Bug Off!', 'https://images.isbndb.com/covers/94/16/9780590489416.jpg'), + ('0786889322', 'I''M NOT REALLY HERE', 'https://images.isbndb.com/covers/93/27/9780786889327.jpg'), + ('3499232634', 'Herzort', 'https://images.isbndb.com/covers/26/33/9783499232633.jpg'), + ('346202812X', 'Die Dame In Blau.', 'https://images.isbndb.com/covers/81/26/9783462028126.jpg'), + ('1400030382', 'The Piano Tuner: A Novel', 'https://images.isbndb.com/covers/03/85/9781400030385.jpg'), + ('3518100319', 'Der Kaukasische Kreidekreis (edition Suhrkamp)', 'https://images.isbndb.com/covers/03/18/9783518100318.jpg'), + ('3499233347', 'Höchste Zeit', 'https://images.isbndb.com/covers/33/40/9783499233340.jpg'), + ('3150006597', 'Antigone', 'https://images.isbndb.com/covers/65/97/9783150006597.jpg'), + ('3548208975', 'Die Möwe Jonathan', 'https://images.isbndb.com/covers/89/78/9783548208978.jpg'), + ('3379015180', 'Schlafes Bruder', 'https://images.isbndb.com/covers/51/89/9783379015189.jpg'), + ('0451078721', 'The Shining (Signet)', 'https://images.isbndb.com/covers/87/28/9780451078728.jpg'), + ('0553484508', 'Eaten Alive (Star Wars: Galaxy Of Fear, Book 1)', 'https://images.isbndb.com/covers/45/02/9780553484502.jpg'), + ('0706366468', 'Investing In Pensions (You & Your Money)', 'https://images.isbndb.com/covers/64/64/9780706366464.jpg'), + ('0375411070', 'Basket Case', 'https://images.isbndb.com/covers/10/76/9780375411076.jpg'), + ('0679749020', 'The Anatomy Lesson', 'https://images.isbndb.com/covers/90/28/9780679749028.jpg'), + ('0525934553', 'Black Water', 'https://images.isbndb.com/covers/45/54/9780525934554.jpg'), + ('0312860129', 'Return To The House Of Usher', 'https://images.isbndb.com/covers/01/27/9780312860127.jpg'), + ('051743623X', 'The Complete Plays Of William Shakespeare And Selected Verse From The Plays (Chatham River Press Paperback Library)', 'https://images.isbndb.com/covers/62/33/9780517436233.jpg'), + ('0375726845', 'Our Gang', 'https://images.isbndb.com/covers/68/42/9780375726842.jpg'), + ('0312080824', 'Great Expectations (Case Studies In Contemporary Criticism)', 'https://images.isbndb.com/covers/08/22/9780312080822.jpg'), + ('0891979867', 'Spanish Drama Of The Golden Age: Twelve Plays', 'https://images.isbndb.com/covers/98/69/9780891979869.jpg'), + ('0812881176', 'The Arrangement', 'https://images.isbndb.com/covers/11/72/9780812881172.jpg'), + ('1850892237', 'One Fat Englishman (Transaction Large Print Books)', 'https://images.isbndb.com/covers/22/36/9781850892236.jpg'), + ('1880399679', 'Ibsen: Four Major Plays, Vol. I', 'https://images.isbndb.com/covers/96/75/9781880399675.jpg'), + ('0671525247', 'Dialogues Of Plato (Enriched Classics (Pocket))', 'https://images.isbndb.com/covers/52/48/9780671525248.jpg'), + ('0440343690', 'I Heard The Owl Call My Name', 'https://images.isbndb.com/covers/36/91/9780440343691.jpg'), + ('0899664016', 'Cass Timberlane', 'https://images.isbndb.com/covers/40/19/9780899664019.jpg'), + ('0151807027', 'Selected Prose Of T.S. Eliot', 'https://images.isbndb.com/covers/70/24/9780151807024.jpg'), + ('1853260231', 'Frankenstein (Wordsworth Classics)', 'https://images.isbndb.com/covers/02/30/9781853260230.jpg'), + ('0099478110', 'Unloved', 'https://images.isbndb.com/covers/81/19/9780099478119.jpg'), + ('0553214543', 'Women In Love', 'https://images.isbndb.com/covers/45/43/9780553214543.jpg'), + ('0394746295', 'The Good Terrorist', 'https://images.isbndb.com/covers/62/96/9780394746296.jpg'), + ('0449210901', 'Zuckerman Bound', 'https://images.isbndb.com/covers/09/01/9780449210901.jpg'), + ('0553256653', 'Flowers For Algernon', 'https://images.isbndb.com/covers/66/59/9780553256659.jpg'), + ('0099825201', 'Deception', 'https://images.isbndb.com/covers/52/03/9780099825203.jpg'), + ('0451528204', 'Madame Bovary: 150th Anniversary Edition (Signet Classics)', 'https://images.isbndb.com/covers/82/09/9780451528209.jpg'), + ('0802135226', 'The Passion', 'https://images.isbndb.com/covers/52/23/9780802135223.jpg'), + ('0679768203', 'Art Objects: Essays On Ecstasy And Effrontery', 'https://images.isbndb.com/covers/82/03/9780679768203.jpg'), + ('0679441816', 'Our Game', 'https://images.isbndb.com/covers/18/16/9780679441816.jpg'), + ('1557832307', 'Cyrano De Bergerac: By Edmund Rostand Translated By Anthony Burgess', 'https://images.isbndb.com/covers/23/06/9781557832306.jpg'), + ('0452276721', 'The Ghost Road (William Abrahams)', 'https://images.isbndb.com/covers/67/27/9780452276727.jpg'), + ('078711457X', 'Inventing Memory: A Novel Of Mothers And Daughters', 'https://images.isbndb.com/covers/45/72/9780787114572.jpg'), + ('0452274796', 'Fear Of Flying: New Introduction', 'https://images.isbndb.com/covers/47/92/9780452274792.jpg'), + ('0060927518', 'Testaments Betrayed: Essay In Nine Parts, An', 'https://images.isbndb.com/covers/75/16/9780060927516.jpg'), + ('0140096949', 'The Farewell Party: Revised Edition', 'https://images.isbndb.com/covers/69/41/9780140096941.jpg'), + ('0806133678', 'Circle Of Women: An Anthology Of Contemporary Western Women Writers', 'https://images.isbndb.com/covers/36/76/9780806133676.jpg'), + ('0691086192', 'Post-Modernism And The Social Sciences: Insights, Inroads, And Intrusions', 'https://images.isbndb.com/covers/61/94/9780691086194.jpg'), + ('0375410414', 'Friendship With God: An Uncommon Dialogue', 'https://images.isbndb.com/covers/04/13/9780375410413.jpg'), + ('1569246483', 'The Storyteller''s Goddess: Tales Of The Goddess And Her Wisdom From Around The World', 'https://images.isbndb.com/covers/64/81/9781569246481.jpg'), + ('1567184766', 'Death: Beginning Or End?: Methods For Immortality', 'https://images.isbndb.com/covers/47/61/9781567184761.jpg'), + ('0813519942', 'Yellow WallPaper (Women Writers)', 'https://images.isbndb.com/covers/99/44/9780813519944.jpg'), + ('0394497848', 'Song Of Solomon', 'https://images.isbndb.com/covers/78/46/9780394497846.jpg'), + ('0940322587', 'The Radiance Of The King (New York Review Books Classics)', 'https://images.isbndb.com/covers/25/85/9780940322585.jpg'), + ('0375712925', 'The Emperor Of Ocean Park', 'https://images.isbndb.com/covers/29/20/9780375712920.jpg'), + ('1582340331', 'Blood Ties', 'https://images.isbndb.com/covers/03/33/9781582340333.jpg'), + ('0446678457', 'Cane River (Oprah''s Book Club)', 'https://images.isbndb.com/covers/84/52/9780446678452.jpg'), + ('0345410998', 'Street Boys', 'https://images.isbndb.com/covers/09/93/9780345410993.jpg'), + ('0399149155', 'Q Is For Quarry (Kinsey Millhone Mystery)', 'https://images.isbndb.com/covers/91/53/9780399149153.jpg'), + ('0553264303', 'The Osterman Weekend', 'https://images.isbndb.com/covers/43/02/9780553264302.jpg'), + ('0553107003', 'Storm Warning', 'https://images.isbndb.com/covers/70/05/9780553107005.jpg'), + ('0440178002', 'Shogun', 'https://images.isbndb.com/covers/80/02/9780440178002.jpg'), + ('0717127516', 'Irish Legends', 'https://images.isbndb.com/covers/75/11/9780717127511.jpg'), + ('0385243022', 'Daphne Du Maurier''s Classics Of The Macabre', 'https://images.isbndb.com/covers/30/25/9780385243025.jpg'), + ('0446390895', 'That''s Not All Folks!', 'https://images.isbndb.com/covers/08/97/9780446390897.jpg'), + ('1573220167', 'High Fidelity', 'https://images.isbndb.com/covers/01/63/9781573220163.jpg'), + ('0060173211', 'Don''t Pee On My Leg And Tell Me It''s Raining', 'https://images.isbndb.com/covers/32/10/9780060173210.jpg'), + ('0316172006', 'The Damnable Question: A Study In Anglo-Irish Relations', 'https://images.isbndb.com/covers/20/04/9780316172004.jpg'), + ('0679415645', 'Cruising Paradise', 'https://images.isbndb.com/covers/56/40/9780679415640.jpg'), + ('0060976241', 'The Lone Ranger And Tonto Fistfight In Heaven', 'https://images.isbndb.com/covers/62/48/9780060976248.jpg'), + ('0767905202', 'Mr. Maybe: A Novel', 'https://images.isbndb.com/covers/52/06/9780767905206.jpg'), + ('315009951X', 'Die Lokalbahn: Komödie In Drei Akten', 'https://images.isbndb.com/covers/95/13/9783150099513.jpg'), + ('033034692X', 'The Cure: Faith', 'https://images.isbndb.com/covers/69/24/9780330346924.jpg'), + ('3442727952', 'Gefährliche Geliebte: Roman', 'https://images.isbndb.com/covers/79/57/9783442727957.jpg'), + ('1740590651', 'Lonely Planet Australia', 'https://images.isbndb.com/covers/06/55/9781740590655.jpg'), + ('1740590120', 'Lonely Planet East Coast Australia: Classic Overland Route', 'https://images.isbndb.com/covers/01/29/9781740590129.jpg'), + ('1863305130', 'Generation F: Sex, Power, And The Young Feminist', 'https://images.isbndb.com/covers/51/36/9781863305136.jpg'), + ('0140287698', '48 Shades Of Brown', 'https://images.isbndb.com/covers/76/91/9780140287691.jpg'), + ('0671034979', 'The Starr Evidence', 'https://images.isbndb.com/covers/49/79/9780671034979.jpg'), + ('1583225579', 'Information War: American Propaganda, Free Speech, And Opinion Control Since 9/11', 'https://images.isbndb.com/covers/55/78/9781583225578.jpg'), + ('0702228524', 'See Through', 'https://images.isbndb.com/covers/85/20/9780702228520.jpg'), + ('0330358561', 'Shooting Elvis', 'https://images.isbndb.com/covers/85/69/9780330358569.jpg'), + ('0702227218', 'Just A Prostitute (Uqp Paperbacks)', 'https://images.isbndb.com/covers/72/19/9780702227219.jpg'), + ('073225700X', 'The Onager (Moonstone)', 'https://images.isbndb.com/covers/70/02/9780732257002.jpg'), + ('0868246778', 'Passing Remarks', 'https://images.isbndb.com/covers/67/72/9780868246772.jpg'), + ('0671018280', 'Diana And Dodi: A Love Story Pb', 'https://images.isbndb.com/covers/82/83/9780671018283.jpg'), + ('0590603884', 'Blood Curse (Vampire''s Love No. 1)', 'https://images.isbndb.com/covers/38/81/9780590603881.jpg'), + ('0618131736', 'The Best American Short Stories 2002 (The Best American Series)', 'https://images.isbndb.com/covers/17/30/9780618131730.jpg'), + ('0060185252', 'Faithless: Tales Of Transgression', 'https://images.isbndb.com/covers/52/51/9780060185251.jpg'), + ('0688170528', 'The Pact: A Love Story', 'https://images.isbndb.com/covers/05/23/9780688170523.jpg'), + ('0743225082', 'Man And Boy: A Novel', 'https://images.isbndb.com/covers/50/83/9780743225083.jpg'), + ('0758201087', 'The Price Of Pleasure', 'https://images.isbndb.com/covers/10/89/9780758201089.jpg'), + ('0425184943', 'Blue Diary', 'https://images.isbndb.com/covers/49/43/9780425184943.jpg'), + ('0201570971', 'Dr. Susan Love''s Breast Book', 'https://images.isbndb.com/covers/09/77/9780201570977.jpg'), + ('067086014X', 'Songs In Ordinary Time (Oprah''s Book Club)', 'https://images.isbndb.com/covers/01/42/9780670860142.jpg'), + ('0864922108', 'Season Of Apples', 'https://images.isbndb.com/covers/21/06/9780864922106.jpg'), + ('0821765868', 'Border Fire', 'https://images.isbndb.com/covers/58/69/9780821765869.jpg'), + ('1551660733', 'Only Forever', 'https://images.isbndb.com/covers/07/38/9781551660738.jpg'), + ('0312977409', 'House Of Dreams', 'https://images.isbndb.com/covers/74/05/9780312977405.jpg'), + ('0843941774', 'The Forever Bride (Timeswept)', 'https://images.isbndb.com/covers/17/77/9780843941777.jpg'), + ('0515120626', 'Just Once', 'https://images.isbndb.com/covers/06/22/9780515120622.jpg'), + ('0440212308', 'Lions And Lace', 'https://images.isbndb.com/covers/23/00/9780440212300.jpg'), + ('038076766X', 'Almost A Lady', 'https://images.isbndb.com/covers/76/63/9780380767663.jpg'), + ('038075942X', 'Dream Fever', 'https://images.isbndb.com/covers/94/22/9780380759422.jpg'), + ('0515077437', 'Lawless Heart', 'https://images.isbndb.com/covers/74/38/9780515077438.jpg'), + ('067102177X', 'The Clayborne Brides: One Pink Rose / One White Rose / One Red Rose (3 Books In 1)', 'https://images.isbndb.com/covers/17/71/9780671021771.jpg'), + ('0380761327', 'Flowers From The Storm', 'https://images.isbndb.com/covers/13/26/9780380761326.jpg'), + ('055358183X', 'The Bride And The Beast', 'https://images.isbndb.com/covers/18/36/9780553581836.jpg'), + ('0843949848', 'My Fair Viking', 'https://images.isbndb.com/covers/98/41/9780843949841.jpg'), + ('0671867164', 'The Lottery Winner: Alvirah And Willy Stories', 'https://images.isbndb.com/covers/71/64/9780671867164.jpg'), + ('0060955635', 'Young Wives: A Novel', 'https://images.isbndb.com/covers/56/32/9780060955632.jpg'), + ('0688013929', 'A History Of The End Of The World (An Invisible Book)', 'https://images.isbndb.com/covers/39/29/9780688013929.jpg'), + ('1558748903', 'Chicken Soup For The Mother''s Soul 2: More Stories To Open The Hearts And Rekindle The Spirits Of Mothers', 'https://images.isbndb.com/covers/89/03/9781558748903.jpg'), + ('0684841371', 'Until Today!: Daily Devotions For Spiritual Growth And Peace Of Mind', 'https://images.isbndb.com/covers/13/73/9780684841373.jpg'), + ('0739405047', 'Lip Service', 'https://images.isbndb.com/covers/50/48/9780739405048.jpg'), + ('0804108412', 'Damage', 'https://images.isbndb.com/covers/84/16/9780804108416.jpg'), + ('0394589955', 'Vox', 'https://images.isbndb.com/covers/99/54/9780394589954.jpg'), + ('0385414250', 'Break The Heart Of Me', 'https://images.isbndb.com/covers/42/58/9780385414258.jpg'), + ('0312120001', 'Topping From Below', 'https://images.isbndb.com/covers/00/09/9780312120009.jpg'), + ('0060740450', 'One Hundred Years Of Solitude (Oprah''s Book Club)', 'https://images.isbndb.com/covers/04/50/9780060740450.jpg'), + ('0802111815', 'Wild At Heart: The Story Of Sailor And Lula', 'https://images.isbndb.com/covers/18/14/9780802111814.jpg'), + ('0836220498', 'Night Of The Crash-Test Dummies', 'https://images.isbndb.com/covers/04/90/9780836220490.jpg'), + ('0800781562', 'The Hiding Place', 'https://images.isbndb.com/covers/15/69/9780800781569.jpg'), + ('0881334588', 'Road Belong Cargo: A Study Of The Cargo Movement In The Southern Madang District, New Guinea', 'https://images.isbndb.com/covers/45/86/9780881334586.jpg'), + ('0679730680', 'Not Available In Any Store', 'https://images.isbndb.com/covers/06/82/9780679730682.jpg'), + ('0671420186', 'Songs Of The Doomed: More Notes On The Death Of The American Dream Gonzo Papers', 'https://images.isbndb.com/covers/01/85/9780671420185.jpg'), + ('0312081944', 'For The Love Of A Child', 'https://images.isbndb.com/covers/19/42/9780312081942.jpg'), + ('3499138956', 'Ein Bär Will Nach Oben', 'https://images.isbndb.com/covers/89/59/9783499138959.jpg'), + ('3426611457', 'Heimweg Nach Kilmoran', 'https://images.isbndb.com/covers/14/56/9783426611456.jpg'), + ('0702228230', 'After January (Uqp Young Adult Fiction)', 'https://images.isbndb.com/covers/82/30/9780702228230.jpg'), + ('0878579915', 'The Rodale Book Of Composting: Easy Methods For Every Gardener', 'https://images.isbndb.com/covers/99/14/9780878579914.jpg'), + ('156512281X', '100 Birds And How They Got Their Names', 'https://images.isbndb.com/covers/28/19/9781565122819.jpg'), + ('1551660717', 'Forbidden Fruit', 'https://images.isbndb.com/covers/07/14/9781551660714.jpg'), + ('0451199685', 'False Pretenses (Contemporary Romantic Thriller)', 'https://images.isbndb.com/covers/96/83/9780451199683.jpg'), + ('0385189508', 'Grimms'' Tales For Young And Old: The Complete Stories', 'https://images.isbndb.com/covers/95/07/9780385189507.jpg'), + ('0810933160', 'Flowers, Birds, And Unicorns: Medieval Needlepoint', 'https://images.isbndb.com/covers/31/63/9780810933163.jpg'), + ('1565121384', '100 Flowers And How They Got Their Names', 'https://images.isbndb.com/covers/13/86/9781565121386.jpg'), + ('0395653738', 'Noah''s Garden: Restoring The Ecology Of Our Own Backyards', 'https://images.isbndb.com/covers/37/39/9780395653739.jpg'), + ('0312170955', 'Fantastic Folds: Origami Projects', 'https://images.isbndb.com/covers/09/50/9780312170950.jpg'), + ('0152013415', 'Down To Earth', 'https://images.isbndb.com/covers/34/17/9780152013417.jpg'), + ('0679441018', 'Memnoch, The Devil. The Vampire Chronicles.', 'https://images.isbndb.com/covers/10/14/9780679441014.jpg'), + ('0345377648', 'Lasher (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/76/47/9780345377647.jpg'), + ('0201409429', '101 Corporate Haiku', 'https://images.isbndb.com/covers/94/20/9780201409420.jpg'), + ('0765107619', 'Dragonfly Beetle Butterfly Bee (Maryjo Koch Series)', 'https://images.isbndb.com/covers/76/19/9780765107619.jpg'), + ('0140052801', 'Dracula', 'https://images.isbndb.com/covers/28/00/9780140052800.jpg'), + ('1853687022', 'Make Your Own Patterns: An Easy Step-By-Step Guide To Making Over 60 Patterns', 'https://images.isbndb.com/covers/70/20/9781853687020.jpg'), + ('068815512X', 'The Purpose Of Your Life: Finding Your Place In The World Using Synchronicity, Intuition, And Uncommon Sense', 'https://images.isbndb.com/covers/51/24/9780688155124.jpg'), + ('155870406X', 'Stage Costume Step-By-Step: The Complete Guide To Designing And Making Stage Costumes For All Major Drama Periods And Genres From Classical Through The Twentieth Century', 'https://images.isbndb.com/covers/40/60/9781558704060.jpg'), + ('0679723005', 'The Book: On The Taboo Against Knowing Who You Are', 'https://images.isbndb.com/covers/30/04/9780679723004.jpg'), + ('1555830617', 'Choices', 'https://images.isbndb.com/covers/06/18/9781555830618.jpg'), + ('0312420048', 'Pages For You: A Novel', 'https://images.isbndb.com/covers/00/48/9780312420048.jpg'), + ('1578591473', 'The Fortune-Telling Book: The Encyclopedia Of Divination And Soothsaying', 'https://images.isbndb.com/covers/14/73/9781578591473.jpg'), + ('0062511173', 'Nothing Special', 'https://images.isbndb.com/covers/11/71/9780062511171.jpg'), + ('0394719999', 'Cloud-hidden, Whereabouts Unknown: A Mountain Journal', 'https://images.isbndb.com/covers/99/93/9780394719993.jpg'), + ('0135113385', 'The Joy Within: Step-by-step Guide To Meditation', 'https://images.isbndb.com/covers/33/87/9780135113387.jpg'), + ('0807032530', 'Drawing Down The Moon : Witches, Druids, Goddess-Worshippers, And Other Pagans In America Today', 'https://images.isbndb.com/covers/25/34/9780807032534.jpg'), + ('0449910172', 'Out Of The Garden: Women Writers On The Bible', 'https://images.isbndb.com/covers/01/77/9780449910177.jpg'), + ('0395353440', 'Zen Effects: The Life Of Alan Watts', 'https://images.isbndb.com/covers/34/48/9780395353448.jpg'), + ('0345310020', 'Chronicle Of A Death Foretold', 'https://images.isbndb.com/covers/00/26/9780345310026.jpg'), + ('0679891072', 'Rescue Party (Dinotopia, Book 9)', 'https://images.isbndb.com/covers/10/79/9780679891079.jpg'), + ('0394751019', 'The Persian Boy', 'https://images.isbndb.com/covers/10/16/9780394751016.jpg'), + ('0064403688', 'Jacob Have I Loved', 'https://images.isbndb.com/covers/36/89/9780064403689.jpg'), + ('0064472795', 'Princess In The Spotlight (The Princess Diaries, Vol. 2)', 'https://images.isbndb.com/covers/27/91/9780064472791.jpg'), + ('0679783598', 'The Seeker''s Guide (previously Published As The New American Spirituality)', 'https://images.isbndb.com/covers/35/96/9780679783596.jpg'), + ('0595271618', 'Words Like Weeds, Book One: Ring Around The Moon', 'https://images.isbndb.com/covers/16/10/9780595271610.jpg'), + ('031230093X', 'Savage Girls And Wild Boys: A History Of Feral Children', 'https://images.isbndb.com/covers/09/37/9780312300937.jpg'), + ('0140434941', 'David Copperfield (Penguin Classics)', 'https://images.isbndb.com/covers/49/41/9780140434941.jpg'), + ('0152380418', 'If I Should Die Before I Wake', 'https://images.isbndb.com/covers/04/10/9780152380410.jpg'), + ('0590467158', 'When She Hollers', 'https://images.isbndb.com/covers/71/55/9780590467155.jpg'), + ('0689835337', 'The Watcher', 'https://images.isbndb.com/covers/53/39/9780689835339.jpg'), + ('0374480095', 'Tuck Everlasting (A Sunburst Book)', 'https://images.isbndb.com/covers/00/97/9780374480097.jpg'), + ('3257056109', 'Das Parfum: Die Geschichte Eines Mörders', 'https://images.isbndb.com/covers/61/05/9783257056105.jpg'), + ('0425177432', 'Murder At Manasses (Harrison Raines Civil War Mysteries, Book 1)', 'https://images.isbndb.com/covers/74/33/9780425177433.jpg'), + ('0684859998', 'Every Day I Pray : Prayers For Awakening To The Grace Of Inner Communion', 'https://images.isbndb.com/covers/99/96/9780684859996.jpg'), + ('0688154395', 'Rose Daughter', 'https://images.isbndb.com/covers/43/94/9780688154394.jpg'), + ('0684848147', 'Imperfect Control: Our Lifelong Struggles With Power And Surrender', 'https://images.isbndb.com/covers/81/43/9780684848143.jpg'), + ('0684848120', 'The Motley Fools You Have More Than You Think: The Foolish Guide To Investing What You Have (Motley Fool Books)', 'https://images.isbndb.com/covers/81/29/9780684848129.jpg'), + ('0553210351', 'The Death Of Ivan Ilyich (Bantam Classics)', 'https://images.isbndb.com/covers/03/54/9780553210354.jpg'), + ('1567313965', 'Understanding Attention Deficit Disorder: Ground-Breaking Methods Of Diagnosis And Treatment', 'https://images.isbndb.com/covers/39/63/9781567313963.jpg'), + ('0375401458', 'Night Falls Fast: Understanding Suicide', 'https://images.isbndb.com/covers/14/59/9780375401459.jpg'), + ('0671528165', 'People Of The Lie: The Hope For Healing Human Evil', 'https://images.isbndb.com/covers/81/64/9780671528164.jpg'), + ('006251184X', 'Undercurrents: A Life Beneath The Surface', 'https://images.isbndb.com/covers/18/43/9780062511843.jpg'), + ('0515128325', 'After The Fall', 'https://images.isbndb.com/covers/83/21/9780515128321.jpg'), + ('0140276823', 'The Way Between The Worlds (View From The Mirror)', 'https://images.isbndb.com/covers/68/24/9780140276824.jpg'), + ('3596137306', 'Romeo Und Julia. Das Buch Zum Film.', 'https://images.isbndb.com/covers/73/05/9783596137305.jpg'), + ('3596237874', 'Beim Nächsten Mann Wird Alles Anders (Frau In Der Gesellschaft)', 'https://images.isbndb.com/covers/78/76/9783596237876.jpg'), + ('0380820757', 'My Brother Michael', 'https://images.isbndb.com/covers/07/57/9780380820757.jpg'), + ('0807062995', 'The Female Man (Bluestreak)', 'https://images.isbndb.com/covers/29/99/9780807062999.jpg'), + ('0786865148', 'A Long Way Home: Twelve Years Of Words', 'https://images.isbndb.com/covers/51/47/9780786865147.jpg'), + ('0345322061', 'Making Peace With Yourself (Formerly Titled : The Achilles Syndrome)', 'https://images.isbndb.com/covers/20/67/9780345322067.jpg'), + ('0764552988', 'Spirituality For Dummies', 'https://images.isbndb.com/covers/29/84/9780764552984.jpg'), + ('0811809935', 'How To Draw A Radish: And Other Fun Things To Do At Work', 'https://images.isbndb.com/covers/99/31/9780811809931.jpg'), + ('0943015073', 'The I Ching: The Book Of Changes And How To Use It', 'https://images.isbndb.com/covers/50/71/9780943015071.jpg'), + ('0140361219', 'Winnie-the-Pooh (Pooh Original Edition)', 'https://images.isbndb.com/covers/12/16/9780140361216.jpg'), + ('0553269631', 'The Heart Is A Lonely Hunter', 'https://images.isbndb.com/covers/96/35/9780553269635.jpg'), + ('0553272543', 'Ballad Of The Sad Cafe', 'https://images.isbndb.com/covers/25/43/9780553272543.jpg'), + ('0671887173', 'Daily Reflections For Highly Effective People: Living The 7 Habits Of Highly Effective People Every Day', 'https://images.isbndb.com/covers/71/79/9780671887179.jpg'), + ('0553285726', 'Journey Of Awakening: A Meditator''s Guidebook', 'https://images.isbndb.com/covers/57/27/9780553285727.jpg'), + ('0062552767', 'Daily Meditations For Practicing The Course', 'https://images.isbndb.com/covers/27/61/9780062552761.jpg'), + ('0671787004', 'New Book Of Rock Lists', 'https://images.isbndb.com/covers/70/04/9780671787004.jpg'), + ('0060919760', 'Your Erroneous Zones: Step-by-Step Advice For Escaping The Trap Of Negative Thinking And Taking Control Of Your Life', 'https://images.isbndb.com/covers/97/64/9780060919764.jpg'), + ('0060507233', 'Buddhism Is Not What You Think: Finding Freedom Beyond Beliefs', 'https://images.isbndb.com/covers/72/37/9780060507237.jpg'), + ('0915811006', 'Way Of The Peaceful Warrior: A Book That Changes Lives', 'https://images.isbndb.com/covers/10/07/9780915811007.jpg'), + ('1558744274', 'Bradshaw On: The Family: A New Way Of Creating Solid Self-Esteem', 'https://images.isbndb.com/covers/42/71/9781558744271.jpg'), + ('0192829823', 'Walden (Oxford World''s Classics)', 'https://images.isbndb.com/covers/98/25/9780192829825.jpg'), + ('1567314163', 'The 12 Secrets Of Highly Creative Women: A Portable Mentor', 'https://images.isbndb.com/covers/41/68/9781567314168.jpg'), + ('0743416996', 'Soul Prints: Your Path To Fulfillment', 'https://images.isbndb.com/covers/69/93/9780743416993.jpg'), + ('0786880708', 'Wherever You Go, There You Are: Mindfulness Meditation In Everyday Life', 'https://images.isbndb.com/covers/07/06/9780786880706.jpg'), + ('1561703753', 'Well Of Creativity (New Dimensions Books)', 'https://images.isbndb.com/covers/37/53/9781561703753.jpg'), + ('0452272041', 'Reinventing Your Life: The Breakthough Program To End Negative Behavior...and Feel Great Again', 'https://images.isbndb.com/covers/20/40/9780452272040.jpg'), + ('0316133175', 'The Thinker''s Way : 8 Steps To A Richer Life', 'https://images.isbndb.com/covers/31/73/9780316133173.jpg'), + ('0878331859', 'That''s Not In My American History Book: A Compilation Of Little-Known Events And Forgotten Heroes', 'https://images.isbndb.com/covers/18/57/9780878331857.jpg'), + ('0679600442', 'The Red Badge Of Courage (Modern Library Series)', 'https://images.isbndb.com/covers/04/42/9780679600442.jpg'), + ('1567314260', 'Imagine A Woman In Love With Herself: Embracing Your Wisdom And Wholeness', 'https://images.isbndb.com/covers/42/67/9781567314267.jpg'), + ('1573241172', 'The Book Of Awakening: Having The Life You Want By Being Present To The Life You Have', 'https://images.isbndb.com/covers/11/75/9781573241175.jpg'), + ('0345311000', 'HOW TO GET WHAT YOU REALLY WANT, A UNIQUE, STEP-BY-STEP PLAN TO PINPOINT YOUR GOALS AND MAKE YOUR DREAMS COM TRUE', 'https://images.isbndb.com/covers/10/09/9780345311009.jpg'), + ('0849916836', 'He Did This Just For You', 'https://images.isbndb.com/covers/68/30/9780849916830.jpg'), + ('0764553143', 'Accounting For Dummies', 'https://images.isbndb.com/covers/31/41/9780764553141.jpg'), + ('3462029592', 'Ich Glaube, Er Hat Schluss Gemacht', 'https://images.isbndb.com/covers/95/98/9783462029598.jpg'), + ('3499121581', 'Rubinroter Dschungel', 'https://images.isbndb.com/covers/15/86/9783499121586.jpg'), + ('3453210719', 'Ich Ein Tag Sprechen Hübsch', 'https://images.isbndb.com/covers/07/14/9783453210714.jpg'), + ('0380728249', 'Almost Adam', 'https://images.isbndb.com/covers/82/44/9780380728244.jpg'), + ('0380792648', 'Subterranean', 'https://images.isbndb.com/covers/26/41/9780380792641.jpg'), + ('0553242598', 'Tsunami', 'https://images.isbndb.com/covers/25/91/9780553242591.jpg'), + ('0385031149', 'Goethe''s Faust', 'https://images.isbndb.com/covers/11/41/9780385031141.jpg'), + ('0836982215', 'Critic''s Choice: New York Drama Critics'' Circle Prize Plays, 1935-55 (Play Anthology Reprint Series)', 'https://images.isbndb.com/covers/22/13/9780836982213.jpg'), + ('0451171128', 'Cat On A Hot Tin Roof (Signet)', 'https://images.isbndb.com/covers/11/22/9780451171122.jpg'), + ('0061052280', 'David Copperfield''s Tales Of The Impossible', 'https://images.isbndb.com/covers/22/86/9780061052286.jpg'), + ('0140620850', 'Vanity Fair (Penguin Popular Classics)', 'https://images.isbndb.com/covers/08/56/9780140620856.jpg'), + ('3462032208', '31 Songs', 'https://images.isbndb.com/covers/22/08/9783462032208.jpg'), + ('0060925795', 'Medieval Lives: Eight Charismatic Men And Women Of The Middle Ages', 'https://images.isbndb.com/covers/57/96/9780060925796.jpg'), + ('189162007X', 'Others Unknown : The Oklahoma City Bombing Conspiracy', 'https://images.isbndb.com/covers/00/72/9781891620072.jpg'), + ('0931580633', 'Do It! Let''s Get Off Our But''s (The Life 101 Series)', 'https://images.isbndb.com/covers/06/35/9780931580635.jpg'), + ('0684839873', 'Driving To Detroit : An Automotive Odyssey', 'https://images.isbndb.com/covers/98/75/9780684839875.jpg'), + ('0156006820', 'Be Sweet: A Conditional Love Story', 'https://images.isbndb.com/covers/68/28/9780156006828.jpg'), + ('068483295X', 'Mountain Time: A Novel', 'https://images.isbndb.com/covers/29/51/9780684832951.jpg'), + ('0670852627', 'The Magic Touch: A Novel', 'https://images.isbndb.com/covers/26/28/9780670852628.jpg'), + ('0871138018', 'The Absolutely True Diary Of A Part-Time Indian', 'https://images.isbndb.com/covers/80/19/9780871138019.jpg'), + ('0201877589', 'Unix System Programming (2nd Edition)', 'https://images.isbndb.com/covers/75/88/9780201877588.jpg'), + ('0596001967', 'Web Design In A Nutshell', 'https://images.isbndb.com/covers/19/64/9780596001964.jpg'), + ('1568654383', 'Year''s Best SF 2', 'https://images.isbndb.com/covers/43/86/9781568654386.jpg'), + ('0764551280', 'Landscaping For Dummies', 'https://images.isbndb.com/covers/12/84/9780764551284.jpg'), + ('0669164062', 'Calculus With Analytic Geometry', 'https://images.isbndb.com/covers/40/60/9780669164060.jpg'), + ('283151794X', 'Berlitz Essential Japanese', 'https://images.isbndb.com/covers/79/40/9782831517940.jpg'), + ('1556618123', 'Drums Of Change (Women Of The West #12)', 'https://images.isbndb.com/covers/81/23/9781556618123.jpg'), + ('0380812924', 'Hokkaido Popsicle', 'https://images.isbndb.com/covers/29/29/9780380812929.jpg'), + ('0812550293', 'The Path Of Daggers (The Wheel Of Time, Book 8)', 'https://images.isbndb.com/covers/02/90/9780812550290.jpg'), + ('0679751319', 'Dead Man Walking: An Eyewitness Account Of The Death Penalty In The United States', 'https://images.isbndb.com/covers/13/11/9780679751311.jpg'), + ('0316285269', 'White Oleander', 'https://images.isbndb.com/covers/52/61/9780316285261.jpg'), + ('0553277537', 'Dandelion Wine (Grand Master Editions)', 'https://images.isbndb.com/covers/75/31/9780553277531.jpg'), + ('0440502721', 'Boyd''s Curiosity Shop', 'https://images.isbndb.com/covers/27/22/9780440502722.jpg'), + ('207036805X', 'La Nausée', 'https://images.isbndb.com/covers/80/51/9782070368051.jpg'), + ('0553234161', 'Cannery Row', 'https://images.isbndb.com/covers/41/69/9780553234169.jpg'), + ('0812502841', 'The Vietnam Legacy', 'https://images.isbndb.com/covers/28/48/9780812502848.jpg'), + ('0671640585', 'Night Of Fox', 'https://images.isbndb.com/covers/05/83/9780671640583.jpg'), + ('1586480286', 'The King Of California: J.G. Boswell And The Making Of A Secret American Empire', 'https://images.isbndb.com/covers/02/88/9781586480288.jpg'), + ('1558596909', 'The Expectant Father: Facts, Tips, And Advice For Dads-To-Be', 'https://images.isbndb.com/covers/69/00/9781558596900.jpg'), + ('0449910237', 'Moo', 'https://images.isbndb.com/covers/02/38/9780449910238.jpg'), + ('0553235575', 'Mysterious Affair At Styles', 'https://images.isbndb.com/covers/55/79/9780553235579.jpg'), + ('0020519605', 'A Moveable Feast (Scribner Classic)', 'https://images.isbndb.com/covers/96/07/9780020519607.jpg'), + ('0140274375', 'The Underground Man', 'https://images.isbndb.com/covers/43/70/9780140274370.jpg'), + ('0140024018', 'Monkey Planet', 'https://images.isbndb.com/covers/40/12/9780140024012.jpg'), + ('0425138151', 'Breaking Blue', 'https://images.isbndb.com/covers/81/51/9780425138151.jpg'), + ('1550376284', 'After Hamelin', 'https://images.isbndb.com/covers/62/89/9781550376289.jpg'), + ('0375725202', 'Was This Man A Genius?: Talks With Andy Kaufman', 'https://images.isbndb.com/covers/52/03/9780375725203.jpg'), + ('0140306323', 'The Tombs Of Atuan (The Earthsea Cycle, Book 2)', 'https://images.isbndb.com/covers/63/23/9780140306323.jpg'), + ('0140048987', 'Gadget (Penguin Crime Fiction)', 'https://images.isbndb.com/covers/89/88/9780140048988.jpg'), + ('0671878549', 'The Ship Errant', 'https://images.isbndb.com/covers/85/42/9780671878542.jpg'), + ('0671730134', 'Forever''s Team', 'https://images.isbndb.com/covers/01/30/9780671730130.jpg'), + ('0446520667', 'Beyond The Horizon: Visions Of The New Millennium', 'https://images.isbndb.com/covers/06/69/9780446520669.jpg'), + ('0706406141', 'POPULAR ANTIQUES', 'https://images.isbndb.com/covers/61/46/9780706406146.jpg'), + ('087474945X', 'Magnificent Voyagers', 'https://images.isbndb.com/covers/94/58/9780874749458.jpg'), + ('0881149497', 'Healing Promises', 'https://images.isbndb.com/covers/94/94/9780881149494.jpg'), + ('0380726238', 'A Drink Before The War (Patrick Kenzie/Angela Gennaro Novels)', 'https://images.isbndb.com/covers/62/33/9780380726233.jpg'), + ('0806524154', 'The Perfect Soldier: Special Operations, Commandos, And The Future Of Us Warfare', 'https://images.isbndb.com/covers/41/53/9780806524153.jpg'), + ('0306811677', 'The Bedford Boys: One American Town''s Ultimate D-day Sacrifice', 'https://images.isbndb.com/covers/16/78/9780306811678.jpg'), + ('0425182703', 'Tentmaker', 'https://images.isbndb.com/covers/27/03/9780425182703.jpg'), + ('1566633370', 'The Burden Of Bad Ideas: How Modern Intellectuals Misshape Our Society', 'https://images.isbndb.com/covers/33/76/9781566633376.jpg'), + ('0399148701', 'Red Rabbit', 'https://images.isbndb.com/covers/87/05/9780399148705.jpg'), + ('0399131493', 'Red Storm Rising', 'https://images.isbndb.com/covers/14/93/9780399131493.jpg'), + ('0870212850', 'The Hunt For Red October', 'https://images.isbndb.com/covers/28/57/9780870212857.jpg'), + ('006009527X', 'Fire Lover: A True Story', 'https://images.isbndb.com/covers/52/77/9780060095277.jpg'), + ('0224030361', 'Man In Full', 'https://images.isbndb.com/covers/03/66/9780224030366.jpg'), + ('0679736395', 'Darkness Visible: A Memoir Of Madness', 'https://images.isbndb.com/covers/63/94/9780679736394.jpg'), + ('1568849168', 'Macromedia Director 4 For Macs For Dummies', 'https://images.isbndb.com/covers/91/64/9781568849164.jpg'), + ('0451403959', 'Grace Point (Signet)', 'https://images.isbndb.com/covers/39/57/9780451403957.jpg'), + ('014028088X', 'The Salon.com Reader''s Guide To Contemporary Authors', 'https://images.isbndb.com/covers/08/83/9780140280883.jpg'), + ('0394726251', 'The Discoverers', 'https://images.isbndb.com/covers/62/50/9780394726250.jpg'), + ('0887307396', 'Built To Last: Successful Habits Of Visionary Companies', 'https://images.isbndb.com/covers/73/93/9780887307393.jpg'), + ('0679735739', 'The Information', 'https://images.isbndb.com/covers/57/31/9780679735731.jpg'), + ('0834800799', 'Zen Mind, Beginner''s Mind: Informal Talks On Zen Meditation And Practice', 'https://images.isbndb.com/covers/07/93/9780834800793.jpg'), + ('0837850681', 'The Story Of Jonah (An Alice In Bibleland Storybook)', 'https://images.isbndb.com/covers/06/89/9780837850689.jpg'), + ('0671545140', 'Leadership Secrets Of The Rogue Warrior', 'https://images.isbndb.com/covers/51/47/9780671545147.jpg'), + ('0914457527', 'Paintball!: Strategies & Tactics', 'https://images.isbndb.com/covers/75/27/9780914457527.jpg'), + ('0786705833', 'The Mammoth Book Of 20th Century Ghost Stories', 'https://images.isbndb.com/covers/58/32/9780786705832.jpg'), + ('0807107808', 'Wildflowers Of Louisiana And Adjoining States', 'https://images.isbndb.com/covers/78/05/9780807107805.jpg'), + ('0385326521', 'Zigazak! A Magical Hanukkah Night', 'https://images.isbndb.com/covers/65/20/9780385326520.jpg'), + ('1588270475', 'My So Called Life In The Army', 'https://images.isbndb.com/covers/04/74/9781588270474.jpg'), + ('0425150143', 'Mirror Image (Tom Clancy''s Op-Center, Book 2)', 'https://images.isbndb.com/covers/01/46/9780425150146.jpg'), + ('0841914036', 'Escape Via Siberia: A Jewish Child''s Odyssey Of Survival', 'https://images.isbndb.com/covers/40/32/9780841914032.jpg'), + ('0809233169', 'Econoguide 1997 - Las Vegas, Reno, Laughlin, Lake Tahoe (1997 Edition)', 'https://images.isbndb.com/covers/31/68/9780809233168.jpg'), + ('0679446028', 'Imagining Atlantis', 'https://images.isbndb.com/covers/60/26/9780679446026.jpg'), + ('0671469975', 'Women Coming Of Age', 'https://images.isbndb.com/covers/99/79/9780671469979.jpg'), + ('0440506743', 'Your Six-Year-Old: Loving And Defiant', 'https://images.isbndb.com/covers/67/44/9780440506744.jpg'), + ('0743234693', 'The Footprints Of God : A Novel', 'https://images.isbndb.com/covers/46/96/9780743234696.jpg'), + ('019281513X', 'Jane Eyre (World''s Classics)', 'https://images.isbndb.com/covers/51/32/9780192815132.jpg'), + ('0399144803', 'Daring To Dream; Holding The Dream; Finding The Dream: Three Complete Novels (Dream Trilogy)', 'https://images.isbndb.com/covers/48/06/9780399144806.jpg'), + ('0702226009', 'Small Ecstasies (UQP Fiction)', 'https://images.isbndb.com/covers/60/07/9780702226007.jpg'), + ('0613361628', 'Snow Crash (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/16/20/9780613361620.jpg'), + ('0553586971', 'Thomas The Rhymer', 'https://images.isbndb.com/covers/69/78/9780553586978.jpg'), + ('158005059X', 'A Woman Alone: Travel Tales From Around The Globe', 'https://images.isbndb.com/covers/05/93/9781580050593.jpg'), + ('1551669188', 'Love In Bloom''s', 'https://images.isbndb.com/covers/91/82/9781551669182.jpg'), + ('0380728613', 'After Death: A New Future For Human Consciousness', 'https://images.isbndb.com/covers/86/19/9780380728619.jpg'), + ('0064406601', 'Harriet The Spy', 'https://images.isbndb.com/covers/66/04/9780064406604.jpg'), + ('0689868456', 'Code Name Cassandra (1-800-Where-R-You)', 'https://images.isbndb.com/covers/84/50/9780689868450.jpg'), + ('0061096113', 'Mistaken Identity', 'https://images.isbndb.com/covers/61/12/9780061096112.jpg'), + ('0812575970', 'The Bishop And The Beggar Girl Of St. Germain (A Father Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/59/72/9780812575972.jpg'), + ('006092330X', 'I Love Paul Revere, Whether He Rode Or Not', 'https://images.isbndb.com/covers/33/03/9780060923303.jpg'), + ('0316116726', 'Connections', 'https://images.isbndb.com/covers/67/25/9780316116725.jpg'), + ('0890877025', 'Sark''s Journal And Play!Book : A Place To Dream While Awake', 'https://images.isbndb.com/covers/70/29/9780890877029.jpg'), + ('0877284245', 'The Sea Priestess', 'https://images.isbndb.com/covers/42/46/9780877284246.jpg'), + ('1878825011', 'What Uncle Sam Really Wants (The Real Story Series)', 'https://images.isbndb.com/covers/50/18/9781878825018.jpg'), + ('0805029648', 'Dave Barry''s Bad Habits: A 100% Fact-Free Book', 'https://images.isbndb.com/covers/96/42/9780805029642.jpg'), + ('1888766034', 'Hologram Of Liberty: The Constitution''s Shocking Alliance With Big Government', 'https://images.isbndb.com/covers/60/35/9781888766035.jpg'), + ('0380728176', 'King Con: A Novel', 'https://images.isbndb.com/covers/81/76/9780380728176.jpg'), + ('0345409973', 'The Cobra Event', 'https://images.isbndb.com/covers/99/73/9780345409973.jpg'), + ('0671743074', 'Gone South', 'https://images.isbndb.com/covers/30/79/9780671743079.jpg'), + ('0345413865', 'Billy Straight', 'https://images.isbndb.com/covers/38/64/9780345413864.jpg'), + ('0380786974', 'Moonrise', 'https://images.isbndb.com/covers/69/78/9780380786978.jpg'), + ('1567312373', 'The Illuminatus! Trilogy: The Eye In The Pyramid, The Golden Apple, And Leviathan', 'https://images.isbndb.com/covers/23/79/9781567312379.jpg'), + ('0446609404', 'Cradle And All', 'https://images.isbndb.com/covers/94/01/9780446609401.jpg'), + ('1842230514', 'Upside Down, Inside Out', 'https://images.isbndb.com/covers/05/10/9781842230510.jpg'), + ('0864922302', 'Strange Heaven', 'https://images.isbndb.com/covers/23/04/9780864922304.jpg'), + ('0671785214', 'Home Town', 'https://images.isbndb.com/covers/52/15/9780671785215.jpg'), + ('0312111029', 'The Year''s Best Fantasy And Horror Seventh Annual Collection', 'https://images.isbndb.com/covers/10/21/9780312111021.jpg'), + ('0439219175', 'The Ark', 'https://images.isbndb.com/covers/91/74/9780439219174.jpg'), + ('0449203794', 'Space', 'https://images.isbndb.com/covers/37/98/9780449203798.jpg'), + ('0374522928', 'Call It Sleep: A Novel', 'https://images.isbndb.com/covers/29/26/9780374522926.jpg'), + ('0440219515', 'Letters From The Inside', 'https://images.isbndb.com/covers/95/14/9780440219514.jpg'), + ('1573221937', 'How To Be Good', 'https://images.isbndb.com/covers/19/31/9781573221931.jpg'), + ('0441002935', 'The Lunatic Cafe (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/29/31/9780441002931.jpg'), + ('0441000916', 'The Laughing Corpse (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/09/13/9780441000913.jpg'), + ('0306454114', 'The Loom Of God', 'https://images.isbndb.com/covers/41/10/9780306454110.jpg'), + ('0896087247', 'War Talk', 'https://images.isbndb.com/covers/72/48/9780896087248.jpg'), + ('0451523652', 'Pride And Prejudice', 'https://images.isbndb.com/covers/36/55/9780451523655.jpg'), + ('0140043128', 'One Flew Over The Cuckoo''s Nest', 'https://images.isbndb.com/covers/31/29/9780140043129.jpg'), + ('0841914060', 'The Royal Game & Other Stories', 'https://images.isbndb.com/covers/40/63/9780841914063.jpg'), + ('1870041364', 'Witches'' Rings (Series B (Norvik Press))', 'https://images.isbndb.com/covers/13/62/9781870041362.jpg'), + ('0060557257', 'Sushi For Beginners', 'https://images.isbndb.com/covers/72/56/9780060557256.jpg'), + ('0553582313', 'First Kiss', 'https://images.isbndb.com/covers/23/14/9780553582314.jpg'), + ('0373835876', 'Simply Sinful (The Simply Series, Book 1)', 'https://images.isbndb.com/covers/58/74/9780373835874.jpg'), + ('037383599X', 'Simply Sensual (The Simply Series, Book 3)', 'https://images.isbndb.com/covers/59/97/9780373835997.jpg'), + ('0373835795', 'Simply Scandalous (The Simply Series, Book 2)', 'https://images.isbndb.com/covers/57/99/9780373835799.jpg'), + ('0380794578', 'A Rake''s Vow (Cynster Novels)', 'https://images.isbndb.com/covers/45/77/9780380794577.jpg'), + ('0380805685', 'Scandal''s Bride (Cynster Novels)', 'https://images.isbndb.com/covers/56/86/9780380805686.jpg'), + ('0380812010', 'All About Love (Cynster Novels)', 'https://images.isbndb.com/covers/20/11/9780380812011.jpg'), + ('0312983301', 'Full Blast', 'https://images.isbndb.com/covers/33/07/9780312983307.jpg'), + ('006051762X', 'The Pursuit Of Marriage', 'https://images.isbndb.com/covers/76/25/9780060517625.jpg'), + ('0440236606', 'Slightly Sinful', 'https://images.isbndb.com/covers/66/03/9780440236603.jpg'), + ('0446610569', 'The Heartbreaker (The Chandler Brothers, Book 3)', 'https://images.isbndb.com/covers/05/68/9780446610568.jpg'), + ('0060582308', 'Love: Undercover', 'https://images.isbndb.com/covers/23/02/9780060582302.jpg'), + ('0553586203', 'The Wedding Game', 'https://images.isbndb.com/covers/62/06/9780553586206.jpg'), + ('0373790473', 'Hot On Her Tail (Harlequin Blaze, No 43)', 'https://images.isbndb.com/covers/04/70/9780373790470.jpg'), + ('0373790481', 'My Sexiest Mistake (Harlequin Blaze)', 'https://images.isbndb.com/covers/04/87/9780373790487.jpg'), + ('0373483694', 'Macgregor Grooms (Macgregors)', 'https://images.isbndb.com/covers/36/93/9780373483693.jpg'), + ('1551669374', 'Sisters Found', 'https://images.isbndb.com/covers/93/73/9781551669373.jpg'), + ('0821763431', 'Highland Spirits', 'https://images.isbndb.com/covers/34/38/9780821763438.jpg'), + ('0821767623', 'Border Storm (Zebra Historical Romance)', 'https://images.isbndb.com/covers/76/27/9780821767627.jpg'), + ('0373218478', 'The MacGregor Brides (Macgregors)', 'https://images.isbndb.com/covers/84/79/9780373218479.jpg'), + ('0380813017', 'When The Laird Returns: Book Two Of The Highland Lords', 'https://images.isbndb.com/covers/30/18/9780380813018.jpg'), + ('1551669226', 'The Hidden Heart', 'https://images.isbndb.com/covers/92/29/9781551669229.jpg'), + ('0380820552', 'Getting Her Man', 'https://images.isbndb.com/covers/05/59/9780380820559.jpg'), + ('0505525038', 'Ooh, La La!', 'https://images.isbndb.com/covers/50/31/9780505525031.jpg'), + ('0380791021', 'Simply Love', 'https://images.isbndb.com/covers/10/26/9780380791026.jpg'), + ('0553583913', 'Castles In The Mist', 'https://images.isbndb.com/covers/39/15/9780553583915.jpg'), + ('1551669234', 'Stonebrook Cottage', 'https://images.isbndb.com/covers/92/36/9781551669236.jpg'), + ('0804119538', 'The Defiant Hero (Troubleshooters, Book 2)', 'https://images.isbndb.com/covers/95/35/9780804119535.jpg'), + ('0440225299', 'Numbered Account', 'https://images.isbndb.com/covers/52/94/9780440225294.jpg'), + ('0931580501', 'Wealth 101: Getting What You Want-Enjoying What You''Ve Got', 'https://images.isbndb.com/covers/05/05/9780931580505.jpg'), + ('0553295101', 'Life 101: Everything We Wish We Had Learned In High School-But Didn''t', 'https://images.isbndb.com/covers/51/08/9780553295108.jpg'), + ('156276134X', 'PC Learning Labs Teaches Ami Pro 3.0: Logical Operations/Book And Disk', 'https://images.isbndb.com/covers/13/49/9781562761349.jpg'), + ('0716713616', 'Aha! Gotcha: Paradoxes To Puzzle And Delight', 'https://images.isbndb.com/covers/36/16/9780716713616.jpg'), + ('0886778581', 'Green Rider', 'https://images.isbndb.com/covers/85/83/9780886778583.jpg'), + ('0451140354', 'Maia', 'https://images.isbndb.com/covers/03/57/9780451140357.jpg'), + ('0380008238', 'Second Foundation', 'https://images.isbndb.com/covers/82/30/9780380008230.jpg'), + ('080912596X', 'Dealing With Difficult People', 'https://images.isbndb.com/covers/59/68/9780809125968.jpg'), + ('0375704051', 'Awakenings', 'https://images.isbndb.com/covers/40/55/9780375704055.jpg'), + ('0590509616', 'Gargoyles Don''t Drive School Buses (The Adventures Of The Bailey School Kids, #19)', 'https://images.isbndb.com/covers/96/19/9780590509619.jpg'), + ('0395544262', 'Fox In A Trap', 'https://images.isbndb.com/covers/42/66/9780395544266.jpg'), + ('0448095491', 'The Secret Of Mirror Bay (Nancy Drew Mystery Stories, No 49)', 'https://images.isbndb.com/covers/54/93/9780448095493.jpg'), + ('0448095432', 'The Mystery Of The 99 Steps (Nancy Drew Mystery Stories, No 43)', 'https://images.isbndb.com/covers/54/31/9780448095431.jpg'), + ('0590436465', 'Karen''s New Year (Baby-Sitters Little Sister, No. 14)', 'https://images.isbndb.com/covers/64/65/9780590436465.jpg'), + ('0448095157', 'The Haunted Bridge (Nancy Drew, Book 15)', 'https://images.isbndb.com/covers/51/58/9780448095158.jpg'), + ('0448095440', 'The Clue In The Crossword Cipher (Nancy Drew, Book 44)', 'https://images.isbndb.com/covers/54/48/9780448095448.jpg'), + ('0439130204', 'Coming Home (Heartland #1)', 'https://images.isbndb.com/covers/02/02/9780439130202.jpg'), + ('0439130220', 'After The Storm (Heartland #2)', 'https://images.isbndb.com/covers/02/26/9780439130226.jpg'), + ('0439130247', 'Breaking Free (Heartland #3)', 'https://images.isbndb.com/covers/02/40/9780439130240.jpg'), + ('0746022751', 'Riding (Usborne Hotshots)', 'https://images.isbndb.com/covers/27/57/9780746022757.jpg'), + ('0590300393', 'Horse For X.Y.Z.', 'https://images.isbndb.com/covers/03/91/9780590300391.jpg'), + ('0590944711', 'Return Of Santa Paws', 'https://images.isbndb.com/covers/47/17/9780590944717.jpg'), + ('0679836101', 'The Berenstain Bears And The Nerdy Nephew', 'https://images.isbndb.com/covers/61/00/9780679836100.jpg'), + ('0679866655', 'The Berenstain Bears And The Dress Code', 'https://images.isbndb.com/covers/66/57/9780679866657.jpg'), + ('0590673130', 'Ghost Horse (Phantom Rider)', 'https://images.isbndb.com/covers/31/36/9780590673136.jpg'), + ('0448148943', 'Thunder: Mighty Stallion To The Rescue', 'https://images.isbndb.com/covers/89/46/9780448148946.jpg'), + ('0671787136', 'Chelsey And The Green-Haired Kid: Chelsey And The Green-Haired Kid', 'https://images.isbndb.com/covers/71/34/9780671787134.jpg'), + ('038079537X', 'To The Summit', 'https://images.isbndb.com/covers/53/76/9780380795376.jpg'), + ('0440414911', 'Journey To Nowhere', 'https://images.isbndb.com/covers/49/19/9780440414919.jpg'), + ('0671183699', 'Horse & Rider: From Basics To Show Competition', 'https://images.isbndb.com/covers/36/91/9780671183691.jpg'), + ('0590957678', 'Riding Freedom', 'https://images.isbndb.com/covers/76/70/9780590957670.jpg'), + ('0439120470', 'Unicorns Of Balinor #05: Search For The Star', 'https://images.isbndb.com/covers/04/70/9780439120470.jpg'), + ('0439062837', 'By Fire, By Moonlight (Unicorns Of Balinor #4)', 'https://images.isbndb.com/covers/28/31/9780439062831.jpg'), + ('0439062829', 'Unicorns Of Balinor #03: Valley Of Fear', 'https://images.isbndb.com/covers/28/24/9780439062824.jpg'), + ('0439062802', 'The Road To Balinor (Unicorns Of Balinor #1)', 'https://images.isbndb.com/covers/28/00/9780439062800.jpg'), + ('0517208326', 'Instant Guide To Horses (Instant Guides)', 'https://images.isbndb.com/covers/83/28/9780517208328.jpg'), + ('0590416936', 'Ghost Abbey (Point)', 'https://images.isbndb.com/covers/69/31/9780590416931.jpg'), + ('0439056527', 'The Well', 'https://images.isbndb.com/covers/65/26/9780439056526.jpg'), + ('0936650087', 'Maggie And A Horse Named Devildust', 'https://images.isbndb.com/covers/00/81/9780936650081.jpg'), + ('0440219779', 'The Voice On The Radio', 'https://images.isbndb.com/covers/97/74/9780440219774.jpg'), + ('038072913X', 'The Maze', 'https://images.isbndb.com/covers/91/35/9780380729135.jpg'), + ('0425067750', 'Appointment With Death', 'https://images.isbndb.com/covers/77/58/9780425067758.jpg'), + ('0060805188', 'The Birthday Murder (Perennial Library Mystery Series)', 'https://images.isbndb.com/covers/51/80/9780060805180.jpg'), + ('0449200019', 'Athabasca', 'https://images.isbndb.com/covers/00/18/9780449200018.jpg'), + ('0441698859', 'Quiet As A Nun', 'https://images.isbndb.com/covers/88/51/9780441698851.jpg'), + ('0671600427', 'Shadows And Light', 'https://images.isbndb.com/covers/04/26/9780671600426.jpg'), + ('0425132358', 'Medical Treason', 'https://images.isbndb.com/covers/23/57/9780425132357.jpg'), + ('0671466801', 'The Best Science Fiction Of The Year #12', 'https://images.isbndb.com/covers/68/00/9780671466800.jpg'), + ('0140011528', 'The Purple Plain', 'https://images.isbndb.com/covers/15/24/9780140011524.jpg'), + ('0425108449', 'But Death Runs Faster', 'https://images.isbndb.com/covers/84/44/9780425108444.jpg'), + ('0671649469', 'In Pale Battalions: In Pale Battalions', 'https://images.isbndb.com/covers/94/63/9780671649463.jpg'), + ('0671642561', 'Fallen Hearts (Casteel, No. 3)', 'https://images.isbndb.com/covers/25/63/9780671642563.jpg'), + ('0671695126', 'Secrets Of The Morning (Cutler Series)', 'https://images.isbndb.com/covers/51/25/9780671695125.jpg'), + ('0671443283', 'Seeds Of Yesterday (Dollanganger, No. 4)', 'https://images.isbndb.com/covers/32/83/9780671443283.jpg'), + ('0373702213', 'Nightcap (Harlequin Superromance No. 221)', 'https://images.isbndb.com/covers/22/13/9780373702213.jpg'), + ('0380778009', 'On Maiden Lane', 'https://images.isbndb.com/covers/80/03/9780380778003.jpg'), + ('0425144372', 'Clear And Present Danger', 'https://images.isbndb.com/covers/43/74/9780425144374.jpg'), + ('055312997X', 'The Far Pavillions', 'https://images.isbndb.com/covers/99/77/9780553129977.jpg'), + ('0380785358', 'Hidden Assets', 'https://images.isbndb.com/covers/53/53/9780380785353.jpg'), + ('0872165272', 'The Love Token', 'https://images.isbndb.com/covers/52/74/9780872165274.jpg'), + ('055323336X', 'The God Project', 'https://images.isbndb.com/covers/33/60/9780553233360.jpg'), + ('0671672711', 'Hamlet Ultimatum', 'https://images.isbndb.com/covers/27/13/9780671672713.jpg'), + ('0671721143', 'Cobras Two', 'https://images.isbndb.com/covers/11/45/9780671721145.jpg'), + ('0131654233', 'Computer Data-Base Organization (Prentice-Hall Series In Automatic Computation)', 'https://images.isbndb.com/covers/42/35/9780131654235.jpg'), + ('0672315610', 'Microsoft Windows DNA Exposed', 'https://images.isbndb.com/covers/56/19/9780672315619.jpg'), + ('0137089171', 'Principles Of Data-Base Management', 'https://images.isbndb.com/covers/91/78/9780137089178.jpg'), + ('0136362346', 'Open Systems (Prentice Hall Series In Innovative Technology)', 'https://images.isbndb.com/covers/23/40/9780136362340.jpg'), + ('907219439X', 'A Conceptual Model Of A Business Transaction Management System', 'https://images.isbndb.com/covers/43/98/9789072194398.jpg'), + ('0471969478', 'Workflow Handbook 1997', 'https://images.isbndb.com/covers/94/71/9780471969471.jpg'), + ('0060256656', 'The Giving Tree', 'https://images.isbndb.com/covers/66/54/9780060256654.jpg'), + ('0152010289', 'Verdi', 'https://images.isbndb.com/covers/02/87/9780152010287.jpg'), + ('0698116151', 'Chicken Sunday', 'https://images.isbndb.com/covers/61/53/9780698116153.jpg'), + ('0060259078', 'A Little Prairie House (Little House)', 'https://images.isbndb.com/covers/90/75/9780060259075.jpg'), + ('0590568663', 'Miss Spider''s Wedding', 'https://images.isbndb.com/covers/86/61/9780590568661.jpg'), + ('0749933380', 'Safe Harbour', 'https://images.isbndb.com/covers/33/88/9780749933388.jpg'), + ('1859028519', 'Magpies', 'https://images.isbndb.com/covers/85/13/9781859028513.jpg'), + ('0142301655', 'Someone Like You / Keeping The Moon Flip Book', 'https://images.isbndb.com/covers/16/54/9780142301654.jpg'), + ('0948524588', 'Invincible', 'https://images.isbndb.com/covers/45/85/9780948524585.jpg'), + ('0349111863', 'Sex And The City', 'https://images.isbndb.com/covers/18/65/9780349111865.jpg'), + ('0749395389', 'Follow Your Heart', 'https://images.isbndb.com/covers/53/84/9780749395384.jpg'), + ('0140118470', 'Ah, Sweet Mystery Of Life (Penguin Fiction)', 'https://images.isbndb.com/covers/84/76/9780140118476.jpg'), + ('044024126X', 'Taken', 'https://images.isbndb.com/covers/12/63/9780440241263.jpg'), + ('1840225106', 'Tales Of Old Japan (Myth Legend & Folklore)', 'https://images.isbndb.com/covers/51/05/9781840225105.jpg'), + ('0340654163', 'Escape: The Love Story From Whirlwind', 'https://images.isbndb.com/covers/41/63/9780340654163.jpg'), + ('0380773309', 'Call Of The Deep', 'https://images.isbndb.com/covers/33/05/9780380773305.jpg'), + ('0812512774', 'The Wild', 'https://images.isbndb.com/covers/27/79/9780812512779.jpg'), + ('0671729403', 'Fallen Hearts (Casteel Saga)', 'https://images.isbndb.com/covers/94/00/9780671729400.jpg'), + ('0671729438', 'Gates Of Paradise (Casteel Saga)', 'https://images.isbndb.com/covers/94/31/9780671729431.jpg'), + ('0006749151', 'The Beast Is Waiting For You (Nightmares)', 'https://images.isbndb.com/covers/91/58/9780006749158.jpg'), + ('0425139697', 'Spring Break (Terror Academy Series Four)', 'https://images.isbndb.com/covers/96/91/9780425139691.jpg'), + ('0061062472', 'Bloodlines (Vampire Twins, Vol 1)', 'https://images.isbndb.com/covers/24/76/9780061062476.jpg'), + ('0380718758', 'Snow White, Blood Red', 'https://images.isbndb.com/covers/87/57/9780380718757.jpg'), + ('067172939X', 'Dark Angel (Casteel Saga)', 'https://images.isbndb.com/covers/93/94/9780671729394.jpg'), + ('0671729446', 'Heaven (Casteel Series)', 'https://images.isbndb.com/covers/94/48/9780671729448.jpg'), + ('1853264180', 'The Works Of Robert Browning (Wordsworth Poetry) (Wordsworth Poetry Library)', 'https://images.isbndb.com/covers/41/84/9781853264184.jpg'), + ('1585673382', 'Blandings Castle', 'https://images.isbndb.com/covers/33/84/9781585673384.jpg'), + ('1842157086', 'Action Origami: Over 25 Animated Paperfolding Projects (Import)', 'https://images.isbndb.com/covers/70/84/9781842157084.jpg'), + ('972708530X', 'Caes (Ficcao Portuguesa) (Portuguese Edition)', 'https://images.isbndb.com/covers/53/09/9789727085309.jpg'), + ('9722110500', 'A Varanda Do Frangipani: Romance (Uma Terra Sem Amos) (Portuguese Edition)', 'https://images.isbndb.com/covers/05/01/9789722110501.jpg'), + ('0002257580', 'Jesus And The Adman Hb', 'https://images.isbndb.com/covers/75/89/9780002257589.jpg'), + ('0375708049', 'Joe Gould''s Secret', 'https://images.isbndb.com/covers/80/46/9780375708046.jpg'), + ('0375701435', 'Little Kingdoms (Vintage Contemporaries)', 'https://images.isbndb.com/covers/14/36/9780375701436.jpg'), + ('9722100718', 'Cada Homem E Uma Raca: Estorias (Uma Terra Sem Amos) (Portuguese Edition)', 'https://images.isbndb.com/covers/07/17/9789722100717.jpg'), + ('9721030791', 'A Cidade E As Serras (Portuguese Edition)', 'https://images.isbndb.com/covers/07/94/9789721030794.jpg'), + ('0028604199', 'Once Upon A More Enlightened Time: More Politically Correct Bedtime Stories', 'https://images.isbndb.com/covers/41/90/9780028604190.jpg'), + ('0374202281', 'Man Or Mango? : A Lament', 'https://images.isbndb.com/covers/22/86/9780374202286.jpg'), + ('0874779111', 'The Cosmic Serpent', 'https://images.isbndb.com/covers/91/10/9780874779110.jpg'), + ('0345369491', 'Sheriff And The Folsom Man Murders', 'https://images.isbndb.com/covers/94/99/9780345369499.jpg'), + ('0525484272', 'Roger Caras'' Cat Stories', 'https://images.isbndb.com/covers/42/71/9780525484271.jpg'), + ('0671526022', 'The Color Purple', 'https://images.isbndb.com/covers/60/23/9780671526023.jpg'), + ('0060154969', 'Love, Medicine, And Miracles', 'https://images.isbndb.com/covers/49/67/9780060154967.jpg'), + ('0060930888', 'April 1865: The Month That Saved America', 'https://images.isbndb.com/covers/08/82/9780060930882.jpg'), + ('039585993X', 'An American Requiem: God, My Father, And The War That Came Between Us', 'https://images.isbndb.com/covers/99/33/9780395859933.jpg'), + ('3785538448', 'Fear Street. Teufelskreis: Es Gibt Kein Entkommen.', 'https://images.isbndb.com/covers/84/49/9783785538449.jpg'), + ('0385492707', 'A Love Of My Own: A Novel', 'https://images.isbndb.com/covers/27/06/9780385492706.jpg'), + ('0140369945', 'Spider Mansion Pb', 'https://images.isbndb.com/covers/99/46/9780140369946.jpg'), + ('1566191432', 'Pride & Prejudice', 'https://images.isbndb.com/covers/14/32/9781566191432.jpg'), + ('0874771501', 'The New Diary', 'https://images.isbndb.com/covers/15/03/9780874771503.jpg'), + ('0060645873', 'When The Heart Waits: Spiritual Direction For Life''s Sacred Questions', 'https://images.isbndb.com/covers/58/78/9780060645878.jpg'), + ('0768420350', 'Hinds Feet On High Places: Devotional', 'https://images.isbndb.com/covers/03/57/9780768420357.jpg'), + ('1557250537', 'Up On The Mountain', 'https://images.isbndb.com/covers/05/37/9781557250537.jpg'), + ('0877936250', 'The Cup Of Our Life: A Guide For Spiritual Growth', 'https://images.isbndb.com/covers/62/51/9780877936251.jpg'), + ('0867164301', 'Armchair Mystic: Easing Into Contemplative Prayer', 'https://images.isbndb.com/covers/43/05/9780867164305.jpg'), + ('1565070569', 'A Place Called Simplicity: The Quiet Beauty Of Simple Living', 'https://images.isbndb.com/covers/05/61/9781565070561.jpg'), + ('0896939758', 'What Happens When Women Pray', 'https://images.isbndb.com/covers/97/52/9780896939752.jpg'), + ('1401901484', 'Life Is Short, Wear Your Party Pants', 'https://images.isbndb.com/covers/14/86/9781401901486.jpg'), + ('0829419888', 'A Healing Walk With St. Ignatius: Discovering God''s Presence In Difficult Times', 'https://images.isbndb.com/covers/98/87/9780829419887.jpg'), + ('0062548689', 'A Tree Full Of Angels: Seeing The Holy In The Ordinary', 'https://images.isbndb.com/covers/86/89/9780062548689.jpg'), + ('0824519302', 'A New Set Of Eyes: Encountering The Hidden God', 'https://images.isbndb.com/covers/93/08/9780824519308.jpg'), + ('0451182006', 'Mortal Pursuit', 'https://images.isbndb.com/covers/20/05/9780451182005.jpg'), + ('0425186709', 'Mission Of Honor (Tom Clancy''s Op-Center, Book 9)', 'https://images.isbndb.com/covers/67/01/9780425186701.jpg'), + ('0671026682', 'Serpent: A Novel From The NUMA Files', 'https://images.isbndb.com/covers/66/84/9780671026684.jpg'), + ('0684846608', 'Fountain Society: A Novel', 'https://images.isbndb.com/covers/66/06/9780684846606.jpg'), + ('0399151613', 'The Jane Austen Book Club', 'https://images.isbndb.com/covers/16/13/9780399151613.jpg'), + ('0330314971', 'Foucault''s Pendulum', 'https://images.isbndb.com/covers/49/78/9780330314978.jpg'), + ('051788433X', 'Extraordinary Popular Delusions & The Madness Of Crowds', 'https://images.isbndb.com/covers/43/31/9780517884331.jpg'), + ('0688160999', 'Biomimicry: Innovation Inspired By Nature', 'https://images.isbndb.com/covers/09/99/9780688160999.jpg'), + ('1553662415', 'The Incidental Guru: Lessons In Healing From A Dog', 'https://images.isbndb.com/covers/24/19/9781553662419.jpg'), + ('1585421499', 'Hope''s Edge: The Next Diet For A Small Planet', 'https://images.isbndb.com/covers/14/97/9781585421497.jpg'), + ('0679729798', 'Sheltering Sky', 'https://images.isbndb.com/covers/97/92/9780679729792.jpg'), + ('0140127739', 'Lost In Translation: A Life In A New Language', 'https://images.isbndb.com/covers/77/37/9780140127737.jpg'), + ('1567315208', 'Letters To A Young Poet / The Possibility Of Being', 'https://images.isbndb.com/covers/52/02/9781567315202.jpg'), + ('0141182806', 'Ulysses (Modern Classics (Penguin))', 'https://images.isbndb.com/covers/28/03/9780141182803.jpg'), + ('0006143199', 'Snow Tiger', 'https://images.isbndb.com/covers/31/92/9780006143192.jpg'), + ('0140050000', 'Plague Dogs', 'https://images.isbndb.com/covers/00/04/9780140050004.jpg'), + ('0843949090', 'Bliss', 'https://images.isbndb.com/covers/90/94/9780843949094.jpg'), + ('1893224848', 'The Cat Who Killed Lilian Jackson Braun', 'https://images.isbndb.com/covers/48/41/9781893224841.jpg'), + ('0553586335', 'Gone To The Dogs', 'https://images.isbndb.com/covers/63/36/9780553586336.jpg'), + ('3551749612', 'Angelic Layer, Battle.1, Das Ist Das Ei, In Dem Die Träume Ruhen', 'https://images.isbndb.com/covers/96/11/9783551749611.jpg'), + ('3551749620', 'Angelic Layer, Battle.2, Gemeinsam Mit Hikaru Schaff Ich Es!', 'https://images.isbndb.com/covers/96/28/9783551749628.jpg'), + ('3551751846', 'Angel Sanctuary, Bd.4', 'https://images.isbndb.com/covers/18/43/9783551751843.jpg'), + ('3551745315', 'Bastard!!, Bd.1, Angriff Auf Metallicana: Das Heer Der Schatten - Angriff Auf Metallicana', 'https://images.isbndb.com/covers/53/16/9783551745316.jpg'), + ('3251003011', 'Wege Zum Ruhm. 13 Hilfestellungen Für Junge Künstler Und 1 Warnung', 'https://images.isbndb.com/covers/30/13/9783251003013.jpg'), + ('3870245123', 'Generation Golf', 'https://images.isbndb.com/covers/51/22/9783870245122.jpg'), + ('3150012198', 'Il Principe /Der Fürst: Ital. /Dt.: Italienisch/Deutsch', 'https://images.isbndb.com/covers/21/92/9783150012192.jpg'), + ('3858620203', 'New York Selbst Entdecken. Neuausgabe 2000', 'https://images.isbndb.com/covers/02/00/9783858620200.jpg'), + ('0553138758', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/87/57/9780553138757.jpg'), + ('0345344375', 'UFO''s In Space: Anatomy Of A Phenomenon', 'https://images.isbndb.com/covers/43/73/9780345344373.jpg'), + ('0553138596', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/85/97/9780553138597.jpg'), + ('0842345566', 'More Than A Carpenter', 'https://images.isbndb.com/covers/55/69/9780842345569.jpg'), + ('0802415881', 'If God Should Choose: The Authorized Story Of Jim And Roni Bowers', 'https://images.isbndb.com/covers/58/82/9780802415882.jpg'), + ('0684834731', 'The Locket', 'https://images.isbndb.com/covers/47/33/9780684834733.jpg'), + ('1565121465', 'Space: A Memoir', 'https://images.isbndb.com/covers/14/61/9781565121461.jpg'), + ('0312021690', 'Blossom Comes Home', 'https://images.isbndb.com/covers/16/96/9780312021696.jpg'), + ('0140465340', 'The Read-Aloud Handbook (Penguin Handbooks)', 'https://images.isbndb.com/covers/53/41/9780140465341.jpg'), + ('0312549059', 'Moses The Kitten', 'https://images.isbndb.com/covers/90/53/9780312549053.jpg'), + ('0671794248', 'Who Stole Feminism?: How Women Have Betrayed Women', 'https://images.isbndb.com/covers/42/48/9780671794248.jpg'), + ('0767901428', 'The Prodigal Spy', 'https://images.isbndb.com/covers/14/20/9780767901420.jpg'), + ('0060170832', 'The Things That Matter Most', 'https://images.isbndb.com/covers/08/37/9780060170837.jpg'), + ('0060928069', 'How Could You Do That?!: The Abdication Of Character, Courage, And Conscience', 'https://images.isbndb.com/covers/80/63/9780060928063.jpg'), + ('0875420087', 'How To Meet & Work With Spirit Guides (Llewellyn''s How To)', 'https://images.isbndb.com/covers/00/80/9780875420080.jpg'), + ('0373760639', 'Lucy And The Loner (Man Of The Month/ The Family Mccormick) (Silhouette Desire)', 'https://images.isbndb.com/covers/06/33/9780373760633.jpg'), + ('0816772045', '101 Best Cheers', 'https://images.isbndb.com/covers/20/49/9780816772049.jpg'), + ('1561797332', 'A Promise Is Forever (The Christy Miller Series #12)', 'https://images.isbndb.com/covers/73/32/9781561797332.jpg'), + ('1561797324', 'Sweet Dreams (The Christy Miller Series #11)', 'https://images.isbndb.com/covers/73/25/9781561797325.jpg'), + ('1561797316', 'A Time To Cherish (The Christy Miller Series #10)', 'https://images.isbndb.com/covers/73/18/9781561797318.jpg'), + ('1561797308', 'Seventeen Wishes (The Christy Miller Series #9)', 'https://images.isbndb.com/covers/73/01/9781561797301.jpg'), + ('1561797200', 'True Friends (The Christy Miller Series #7)', 'https://images.isbndb.com/covers/72/02/9781561797202.jpg'), + ('1561797197', 'A Heart Full Of Hope (The Christy Miller Series #6)', 'https://images.isbndb.com/covers/71/96/9781561797196.jpg'), + ('1561797189', 'Island Dreamer (The Christy Miller Series #5)', 'https://images.isbndb.com/covers/71/89/9781561797189.jpg'), + ('156179600X', 'Surprise Endings (The Christy Miller Series #4)', 'https://images.isbndb.com/covers/60/07/9781561796007.jpg'), + ('1561795992', 'Yours Forever (The Christy Miller Series #3)', 'https://images.isbndb.com/covers/59/94/9781561795994.jpg'), + ('1561795976', 'Summer Promise (The Christy Miller Series #1)', 'https://images.isbndb.com/covers/59/70/9781561795970.jpg'), + ('1561797219', 'Starry Night (The Christy Miller Series #8)', 'https://images.isbndb.com/covers/72/19/9781561797219.jpg'), + ('1561795984', 'A Whisper And A Wish (The Christy Miller Series #2)', 'https://images.isbndb.com/covers/59/87/9781561795987.jpg'), + ('0373037732', 'The Ordinary Princess High Society Brides (Harlequin Romance)', 'https://images.isbndb.com/covers/77/35/9780373037735.jpg'), + ('0395519519', 'Desire', 'https://images.isbndb.com/covers/95/16/9780395519516.jpg'), + ('0395735262', 'The Seven-Year Stretch: How Families Work Together To Grow Through Adolescence', 'https://images.isbndb.com/covers/52/68/9780395735268.jpg'), + ('0831710349', 'Step-By-Step 50 Cushions, Covers & Curtains (Step-By-Step Series)', 'https://images.isbndb.com/covers/03/47/9780831710347.jpg'), + ('093439573X', 'Dixie Ghosts (American Ghosts)', 'https://images.isbndb.com/covers/57/31/9780934395731.jpg'), + ('0689804466', 'Izzy, Willy-Nilly', 'https://images.isbndb.com/covers/44/65/9780689804465.jpg'), + ('0451409132', 'Biting The Moon', 'https://images.isbndb.com/covers/91/33/9780451409133.jpg'), + ('0425160424', 'Janine And Alex, Alex And Janine', 'https://images.isbndb.com/covers/04/28/9780425160428.jpg'), + ('0385297548', 'Blessings', 'https://images.isbndb.com/covers/75/47/9780385297547.jpg'), + ('0142301493', 'Leave Well Enough Alone', 'https://images.isbndb.com/covers/14/94/9780142301494.jpg'), + ('0140167153', 'Your Money Or Your Life: Transforming Your Relationship With Money And Achieving Financial MORE', 'https://images.isbndb.com/covers/71/53/9780140167153.jpg'), + ('014034912X', 'The Perilous Gard (Newbery Library, Puffin)', 'https://images.isbndb.com/covers/91/22/9780140349122.jpg'), + ('0060182687', 'Power Of A Woman', 'https://images.isbndb.com/covers/26/87/9780060182687.jpg'), + ('0743204832', 'Bitterroot', 'https://images.isbndb.com/covers/48/35/9780743204835.jpg'), + ('0786888741', 'Lucky Man: A Memoir', 'https://images.isbndb.com/covers/87/40/9780786888740.jpg'), + ('0446604682', 'Nathan''s Run', 'https://images.isbndb.com/covers/46/80/9780446604680.jpg'), + ('0399150552', 'McNally''s Dare', 'https://images.isbndb.com/covers/05/55/9780399150555.jpg'), + ('0312289901', 'Robert Ludlum''s The Altman Code: A Covert-One Novel', 'https://images.isbndb.com/covers/99/04/9780312289904.jpg'), + ('0553561723', 'Burning Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/17/22/9780553561722.jpg'), + ('0743426657', 'The Courtship Gift', 'https://images.isbndb.com/covers/66/57/9780743426657.jpg'), + ('0061098760', 'Law Of Gravity', 'https://images.isbndb.com/covers/87/65/9780061098765.jpg'), + ('0451204158', 'Black Sunday', 'https://images.isbndb.com/covers/41/58/9780451204158.jpg'), + ('0451171861', 'Immoral Certainty (Signet)', 'https://images.isbndb.com/covers/18/63/9780451171863.jpg'), + ('0142001384', 'The Quiet American (Now A Major Motion Picture From Miramax Films)', 'https://images.isbndb.com/covers/13/87/9780142001387.jpg'), + ('0440206685', 'Doc: The Rape Of The Town Of Lovell', 'https://images.isbndb.com/covers/66/82/9780440206682.jpg'), + ('0345373707', 'Cry To Heaven', 'https://images.isbndb.com/covers/37/00/9780345373700.jpg'), + ('0440376408', 'The Scarlet Letter', 'https://images.isbndb.com/covers/64/08/9780440376408.jpg'), + ('0440180090', 'Slapstick', 'https://images.isbndb.com/covers/00/98/9780440180098.jpg'), + ('0670839531', 'Needful Things: The Last Castle Rock Story', 'https://images.isbndb.com/covers/95/37/9780670839537.jpg'), + ('0446358584', 'The Talbot Odyssey', 'https://images.isbndb.com/covers/85/83/9780446358583.jpg'), + ('0374121230', 'Child Of My Heart', 'https://images.isbndb.com/covers/12/35/9780374121235.jpg'), + ('0671014218', 'The Mulberry Tree', 'https://images.isbndb.com/covers/42/16/9780671014216.jpg'), + ('0670856495', 'AN Imaginative Experience: A Novel', 'https://images.isbndb.com/covers/64/97/9780670856497.jpg'), + ('0812035844', 'A Midsummer Night''s Dream (Shakespeare Made Easy)', 'https://images.isbndb.com/covers/58/41/9780812035841.jpg'), + ('0385242719', 'Labyrinths Of Reason: Paradox, Puzzles, And The Frailty Of Knowledge', 'https://images.isbndb.com/covers/27/14/9780385242714.jpg'), + ('0553578529', 'Into The Wilderness', 'https://images.isbndb.com/covers/85/22/9780553578522.jpg'), + ('0671041800', 'Getting It Right: How Working Mothers Successfully Take Up The Challenge Of Life, Family, And Career', 'https://images.isbndb.com/covers/18/09/9780671041809.jpg'), + ('0471123005', 'Martha Inc.: The Incredible Story Of Martha Stewart Living Omnimedia', 'https://images.isbndb.com/covers/30/02/9780471123002.jpg'), + ('0553213768', 'The Phantom Of The Opera (Bantam Classics)', 'https://images.isbndb.com/covers/37/68/9780553213768.jpg'), + ('0316693707', 'Kiss The Girls', 'https://images.isbndb.com/covers/37/07/9780316693707.jpg'), + ('1852305606', 'The Encyclopaedia Of Celtic Wisdom : A Celtic Shaman''s Sourcebook', 'https://images.isbndb.com/covers/56/04/9781852305604.jpg'), + ('0375752501', 'The Magnificent Ambersons (Modern Library Classics)', 'https://images.isbndb.com/covers/25/06/9780375752506.jpg'), + ('1573226041', 'Sorrow Floats', 'https://images.isbndb.com/covers/60/42/9781573226042.jpg'), + ('0380013207', 'The Lathe Of Heaven', 'https://images.isbndb.com/covers/32/03/9780380013203.jpg'), + ('0451192575', 'Donnie Brasco', 'https://images.isbndb.com/covers/25/78/9780451192578.jpg'), + ('0966080521', 'Day Job: A Workplace Reader For The Restless Age', 'https://images.isbndb.com/covers/05/20/9780966080520.jpg'), + ('0385467958', 'Woman Of The Inner Sea, A', 'https://images.isbndb.com/covers/79/57/9780385467957.jpg'), + ('0515123447', 'Killing Floor (Jack Reacher, No. 1)', 'https://images.isbndb.com/covers/34/49/9780515123449.jpg'), + ('0441010512', 'Club Dead (Southern Vampire Mysteries, Book 3)', 'https://images.isbndb.com/covers/05/16/9780441010516.jpg'), + ('0887308589', 'The Dilbert Principle: A Cubicle''s-Eye View Of Bosses, Meetings, Management Fads & Other Workplace Afflictions', 'https://images.isbndb.com/covers/85/81/9780887308581.jpg'), + ('0140363386', 'The Letter, The Witch, And The Ring (Lewis Barnavelt)', 'https://images.isbndb.com/covers/33/88/9780140363388.jpg'), + ('0140363378', 'The Figure In The Shadows (Lewis Barnavelt)', 'https://images.isbndb.com/covers/33/71/9780140363371.jpg'), + ('0312854137', 'Letters To Jenny', 'https://images.isbndb.com/covers/41/33/9780312854133.jpg'), + ('0380727331', 'Memoir From Antproof Case', 'https://images.isbndb.com/covers/73/39/9780380727339.jpg'), + ('0440226236', 'The Death Pit', 'https://images.isbndb.com/covers/62/39/9780440226239.jpg'), + ('0393049701', 'No Great Mischief', 'https://images.isbndb.com/covers/97/01/9780393049701.jpg'), + ('0345441044', 'The Fan-Maker''s Inquisition: A Novel Of The Marquis De Sade (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/10/41/9780345441041.jpg'), + ('0374189870', 'Lives Of The Monster Dogs', 'https://images.isbndb.com/covers/98/77/9780374189877.jpg'), + ('0425161633', 'Second Nature', 'https://images.isbndb.com/covers/16/30/9780425161630.jpg'), + ('190415123X', 'Practical Intranet Development', 'https://images.isbndb.com/covers/12/34/9781904151234.jpg'), + ('1400002877', 'Hija Del Curandero (Spanish Edition)', 'https://images.isbndb.com/covers/28/70/9781400002870.jpg'), + ('0946395438', 'Continuity Planning', 'https://images.isbndb.com/covers/54/39/9780946395439.jpg'), + ('0874772095', 'Chop Wood, Carry Water: A Guide To Finding Spiritual Fulfillment In Everyday Life', 'https://images.isbndb.com/covers/20/98/9780874772098.jpg'), + ('0684853612', 'High Exposure: An Enduring Passion For Everest And Unforgiving Places', 'https://images.isbndb.com/covers/36/11/9780684853611.jpg'), + ('0312145357', 'Accustomed To The Dark', 'https://images.isbndb.com/covers/53/54/9780312145354.jpg'), + ('0595131700', 'Resurrection Angel (Denton Ward And Monty Crocetti Mysteries)', 'https://images.isbndb.com/covers/17/09/9780595131709.jpg'), + ('0399148876', 'Savage Run', 'https://images.isbndb.com/covers/88/73/9780399148873.jpg'), + ('0316442178', 'Raveling', 'https://images.isbndb.com/covers/21/76/9780316442176.jpg'), + ('0786708395', 'Garnethill: A Novel Of Crime', 'https://images.isbndb.com/covers/83/90/9780786708390.jpg'), + ('0446606928', 'Blue Light', 'https://images.isbndb.com/covers/69/29/9780446606929.jpg'), + ('0425177718', 'Angel Fire', 'https://images.isbndb.com/covers/77/16/9780425177716.jpg'), + ('0316110493', 'Arthur''s First Sleepover: An Arthur Adventure', 'https://images.isbndb.com/covers/04/95/9780316110495.jpg'), + ('0385503954', 'Atonement: A Novel', 'https://images.isbndb.com/covers/39/52/9780385503952.jpg'), + ('0375502947', 'Georgiana: Duchess Of Devonshire', 'https://images.isbndb.com/covers/29/41/9780375502941.jpg'), + ('0060959517', 'Elizabeth: The Struggle For The Throne', 'https://images.isbndb.com/covers/95/17/9780060959517.jpg'), + ('0671527967', 'Confusion (Volume Three Of The Cazalet Chronicle)', 'https://images.isbndb.com/covers/79/69/9780671527969.jpg'), + ('0312266499', 'The Spencers: A Personal History Of An English Family', 'https://images.isbndb.com/covers/64/93/9780312266493.jpg'), + ('0312242417', 'The Sisters Of Henry VIII: The Tumultuous Lives Of Margaret Of Scotland And Mary Of France', 'https://images.isbndb.com/covers/24/11/9780312242411.jpg'), + ('0881845973', 'Don''t Tell Alfred', 'https://images.isbndb.com/covers/59/76/9780881845976.jpg'), + ('0375718990', 'The Pursuit Of Love & Love In A Cold Climate: Two Novels', 'https://images.isbndb.com/covers/89/91/9780375718991.jpg'), + ('0674766911', 'The Return Of Martin Guerre', 'https://images.isbndb.com/covers/69/14/9780674766914.jpg'), + ('0316097500', 'The Gospel Of Judas : A Novel', 'https://images.isbndb.com/covers/75/05/9780316097505.jpg'), + ('088730866X', 'The Dilbert Future: Thriving On Stupidity In The 21st Century', 'https://images.isbndb.com/covers/86/66/9780887308666.jpg'), + ('0425185001', 'The Titian Committee (Jonathan Argyll Mysteries)', 'https://images.isbndb.com/covers/50/01/9780425185001.jpg'), + ('0741412896', 'Collateral Damage', 'https://images.isbndb.com/covers/28/98/9780741412898.jpg'), + ('0345396545', 'Ilse Witch (The Voyage Of The Jerle Shannara, Book 1)', 'https://images.isbndb.com/covers/65/49/9780345396549.jpg'), + ('0060008865', 'Do No Harm', 'https://images.isbndb.com/covers/88/64/9780060008864.jpg'), + ('0141309725', 'The Man In The Woods', 'https://images.isbndb.com/covers/97/29/9780141309729.jpg'), + ('044021646X', 'The Misbegotten Son: The True Story Of Arthur J. Shawcross', 'https://images.isbndb.com/covers/64/69/9780440216469.jpg'), + ('0006498035', 'Maid Of The Mist', 'https://images.isbndb.com/covers/80/32/9780006498032.jpg'), + ('0749390832', 'The Book Of Spells', 'https://images.isbndb.com/covers/08/39/9780749390839.jpg'), + ('0140132155', 'Lewis Percy', 'https://images.isbndb.com/covers/21/51/9780140132151.jpg'), + ('0140238131', 'In Custody', 'https://images.isbndb.com/covers/81/36/9780140238136.jpg'), + ('0385507607', 'The Probable Future', 'https://images.isbndb.com/covers/76/08/9780385507608.jpg'), + ('0743206061', 'The Second Time Around', 'https://images.isbndb.com/covers/60/68/9780743206068.jpg'), + ('006016249X', 'Outer Banks', 'https://images.isbndb.com/covers/24/98/9780060162498.jpg'), + ('0553802453', 'No One To Trust (Eve Duncan)', 'https://images.isbndb.com/covers/24/50/9780553802450.jpg'), + ('0345445910', 'Into The Inferno', 'https://images.isbndb.com/covers/59/19/9780345445919.jpg'), + ('0399148469', 'Hunting Season', 'https://images.isbndb.com/covers/84/60/9780399148460.jpg'), + ('089296765X', 'Dead Midnight (Sharon McCone Mysteries)', 'https://images.isbndb.com/covers/76/50/9780892967650.jpg'), + ('0553802461', 'Dead Aim', 'https://images.isbndb.com/covers/24/67/9780553802467.jpg'), + ('0440224071', 'Los Alamos', 'https://images.isbndb.com/covers/40/75/9780440224075.jpg'), + ('0679781307', 'The Reader', 'https://images.isbndb.com/covers/13/01/9780679781301.jpg'), + ('0440174643', 'Roots (Dell Book)', 'https://images.isbndb.com/covers/46/46/9780440174646.jpg'), + ('0449221393', 'Driving Force', 'https://images.isbndb.com/covers/13/96/9780449221396.jpg'), + ('0671652796', '13 French Street And The Red Scarf', 'https://images.isbndb.com/covers/27/91/9780671652791.jpg'), + ('068480378X', 'ROADKILL (Kinky Friedman Novels)', 'https://images.isbndb.com/covers/37/84/9780684803784.jpg'), + ('0380807203', 'Resort To Murder: A Henrie O Mystery', 'https://images.isbndb.com/covers/72/08/9780380807208.jpg'), + ('0449147282', 'Milk And Honey (A Peter Decker & Rina Lazarus Novel)', 'https://images.isbndb.com/covers/72/83/9780449147283.jpg'), + ('0451195981', 'Beware The Laughing Gull (Lucy Wayles Mysteries)', 'https://images.isbndb.com/covers/59/82/9780451195982.jpg'), + ('0425071871', 'Darkfall', 'https://images.isbndb.com/covers/18/78/9780425071878.jpg'), + ('0449218929', 'Quality Of Mercy', 'https://images.isbndb.com/covers/89/21/9780449218921.jpg'), + ('0671604082', 'A Quiver Full Of Arrows', 'https://images.isbndb.com/covers/40/80/9780671604080.jpg'), + ('0553275100', 'The Butcher''s Theater', 'https://images.isbndb.com/covers/51/00/9780553275100.jpg'), + ('0030598583', 'The Case Of The One-Penny Orange (A Masao Masuto Mystery)', 'https://images.isbndb.com/covers/85/86/9780030598586.jpg'), + ('0671660632', 'Dirk Gently''s Holistic Detective Agency (Dirk Gently, No. 1)', 'https://images.isbndb.com/covers/06/35/9780671660635.jpg'), + ('0440207460', 'Pious Deception', 'https://images.isbndb.com/covers/74/67/9780440207467.jpg'), + ('0345362667', 'Philly Stakes', 'https://images.isbndb.com/covers/26/67/9780345362667.jpg'), + ('0345323750', 'The Life And Loves Of A She Devil', 'https://images.isbndb.com/covers/37/50/9780345323750.jpg'), + ('0486280314', 'Nonsense Poems (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/03/18/9780486280318.jpg'), + ('0913866024', 'Tarot Cards For Fun And Fortune Telling: Illustrated Guide To The Spreading And Interpretation Of The Popular 78-Card Tarot I Jj Deck Of Muller & Cie, Switzerland', 'https://images.isbndb.com/covers/60/23/9780913866023.jpg'), + ('157297317X', 'Austin Powers: How To Be An International Man Of Mystery', 'https://images.isbndb.com/covers/31/76/9781572973176.jpg'), + ('0806519630', 'The Modern Witch''s Guide To Magic And Spells: A Remarkable Collection Of Over 100 Spells To Entice A Lover, Win Back One Who Strays, Protect Your ... Illness, Ward Off Evil Spirits And Much More', 'https://images.isbndb.com/covers/96/30/9780806519630.jpg'), + ('0399521577', 'Schmoozing: The Private Conversations Of American Jews', 'https://images.isbndb.com/covers/15/77/9780399521577.jpg'), + ('0312267126', 'BLOW: How A Small-Town Boy Made $100 Million With The Medellin Cocaine Cartel And Lost It All', 'https://images.isbndb.com/covers/71/24/9780312267124.jpg'), + ('0671870238', 'Aloha: A Novel Of The Near Future', 'https://images.isbndb.com/covers/02/32/9780671870232.jpg'), + ('0345346904', 'Gateway (Heechee Saga)', 'https://images.isbndb.com/covers/69/02/9780345346902.jpg'), + ('1591823641', 'Pet Shop Of Horrors, Vol. 2', 'https://images.isbndb.com/covers/36/43/9781591823643.jpg'), + ('1591823633', 'Pet Shop Of Horrors, Book 1', 'https://images.isbndb.com/covers/36/36/9781591823636.jpg'), + ('193248020X', 'Galaxy Angel, Vol. 1', 'https://images.isbndb.com/covers/02/07/9781932480207.jpg'), + ('1932480099', 'Aquarian Age - Juvenile Orion Volume 1', 'https://images.isbndb.com/covers/00/92/9781932480092.jpg'), + ('1591820162', 'Love Hina, Vol. 5', 'https://images.isbndb.com/covers/01/61/9781591820161.jpg'), + ('1569310491', 'Battle Angel Alita, Vol. 2: Tears Of An Angel (Viz Graphic Novel)', 'https://images.isbndb.com/covers/04/96/9781569310496.jpg'), + ('0743458206', 'The Ultimate Dracula', 'https://images.isbndb.com/covers/82/07/9780743458207.jpg'), + ('1591824729', 'Kare Kano: His And Her Circumstances, Vol. 7', 'https://images.isbndb.com/covers/47/25/9781591824725.jpg'), + ('0060530804', 'Dangerous Girls', 'https://images.isbndb.com/covers/08/08/9780060530808.jpg'), + ('0553493264', 'London: Kit & Robin: Year Abroad Trilogy 1 (Love Stories)', 'https://images.isbndb.com/covers/32/69/9780553493269.jpg'), + ('1591821819', 'Kare Kano: His And Her Circumstances, Vol. 6', 'https://images.isbndb.com/covers/18/16/9781591821816.jpg'), + ('1591820588', 'Kare Kano: His And Her Circumstances, Vol. 3', 'https://images.isbndb.com/covers/05/81/9781591820581.jpg'), + ('1560974109', 'Mail Order Bride', 'https://images.isbndb.com/covers/41/09/9781560974109.jpg'), + ('1591823951', 'Confidential Confessions, Book 3', 'https://images.isbndb.com/covers/39/57/9781591823957.jpg'), + ('1591823935', 'Confidential Confessions, Book 1', 'https://images.isbndb.com/covers/39/33/9781591823933.jpg'), + ('1591822246', 'Rising Stars Of Manga, Book 1', 'https://images.isbndb.com/covers/22/40/9781591822240.jpg'), + ('159182415X', '.hack//Legend Of The Twilight, Vol. 2', 'https://images.isbndb.com/covers/41/52/9781591824152.jpg'), + ('1591824141', '.Hack: //Legend Of The Twilight, Vol. 1', 'https://images.isbndb.com/covers/41/45/9781591824145.jpg'), + ('1931514186', 'Peach Girl, Book 8', 'https://images.isbndb.com/covers/41/87/9781931514187.jpg'), + ('1931514178', 'Peach Girl, Book 7', 'https://images.isbndb.com/covers/41/70/9781931514170.jpg'), + ('193151416X', 'Peach Girl #6', 'https://images.isbndb.com/covers/41/63/9781931514163.jpg'), + ('1931514151', 'Peach Girl #5', 'https://images.isbndb.com/covers/41/56/9781931514156.jpg'), + ('0872262278', 'Shakespeare''s Stories: Tragedies', 'https://images.isbndb.com/covers/22/70/9780872262270.jpg'), + ('082302377X', '"How To Draw Halloween, Christmas And Seasonal Characters" (How To Draw (Watson Guptill))', 'https://images.isbndb.com/covers/37/76/9780823023776.jpg'), + ('1591821800', 'Kare Kano: His And Her Circumstances, Vol. 5', 'https://images.isbndb.com/covers/18/09/9781591821809.jpg'), + ('1591820596', 'Kare Kano: His And Her Circumstances, Vol. 4', 'https://images.isbndb.com/covers/05/98/9781591820598.jpg'), + ('159182303X', 'Miyuki-chan In Wonderland', 'https://images.isbndb.com/covers/30/32/9781591823032.jpg'), + ('1931514798', 'Kare Kano: His And Her Circumstances, Vol. 1', 'https://images.isbndb.com/covers/47/98/9781931514798.jpg'), + ('1931514801', 'Kare Kano: His And Her Circumstances, Vol. 2', 'https://images.isbndb.com/covers/48/04/9781931514804.jpg'), + ('1591160502', 'X/1999, Vol. 8: Crescendo', 'https://images.isbndb.com/covers/05/02/9781591160502.jpg'), + ('156931568X', 'X/1999, Vol. 7: Rhapsody', 'https://images.isbndb.com/covers/56/82/9781569315682.jpg'), + ('1569314748', 'X/1999, Vol. 6: Duet', 'https://images.isbndb.com/covers/47/46/9781569314746.jpg'), + ('1569314071', 'X/1999, Vol. 5: Serenade', 'https://images.isbndb.com/covers/40/74/9781569314074.jpg'), + ('1569312648', 'X/1999, Vol. 4: Intermezzo', 'https://images.isbndb.com/covers/26/43/9781569312643.jpg'), + ('1569312273', 'X/1999, Volume 3: Sonata', 'https://images.isbndb.com/covers/22/78/9781569312278.jpg'), + ('1569311897', 'X/1999, Volume 2: Overture', 'https://images.isbndb.com/covers/18/99/9781569311899.jpg'), + ('1569311382', 'X/1999, Volume 1: Prelude', 'https://images.isbndb.com/covers/13/87/9781569311387.jpg'), + ('1591823455', 'Forbidden Dance, Book 1', 'https://images.isbndb.com/covers/34/52/9781591823452.jpg'), + ('1591825369', 'Rising Stars Of Manga, Book 2', 'https://images.isbndb.com/covers/53/64/9781591825364.jpg'), + ('1586649000', 'Aquarium', 'https://images.isbndb.com/covers/90/05/9781586649005.jpg'), + ('0224045814', 'Cloudland (A Tom Maschler Book)', 'https://images.isbndb.com/covers/58/10/9780224045810.jpg'), + ('0751505366', 'Dishonoured', 'https://images.isbndb.com/covers/53/68/9780751505368.jpg'), + ('1841640212', 'Mr Mole Gets Lost And Other Stories (Childrens Storytime Collection)', 'https://images.isbndb.com/covers/02/11/9781841640211.jpg'), + ('0553563971', 'Master Of Judo (Choose Your Own Adventure)', 'https://images.isbndb.com/covers/39/79/9780553563979.jpg'), + ('0571197418', 'The Spark Files: Dark Forces Bk. 6', 'https://images.isbndb.com/covers/74/15/9780571197415.jpg'), + ('0330482432', 'The Children''s Book Of Books 2000', 'https://images.isbndb.com/covers/24/31/9780330482431.jpg'), + ('0141307757', 'Chicken Run Novelisation', 'https://images.isbndb.com/covers/77/56/9780141307756.jpg'), + ('0750004088', 'The Little Vampire In Danger (Fiction: Little Vampire)', 'https://images.isbndb.com/covers/40/84/9780750004084.jpg'), + ('059013387X', 'Attack Of Killer Puzzles (Puzzle Books)', 'https://images.isbndb.com/covers/38/76/9780590133876.jpg'), + ('0746020899', 'Nightmare At Mystery Mansion (Spine Chillers)', 'https://images.isbndb.com/covers/08/90/9780746020890.jpg'), + ('0006751032', 'Butterfly Lion', 'https://images.isbndb.com/covers/10/38/9780006751038.jpg'), + ('1858811945', 'Ganging Up (Dolphin Books)', 'https://images.isbndb.com/covers/19/49/9781858811949.jpg'), + ('0330481355', 'The Worst Journey In The World: Antarctica 1910-13', 'https://images.isbndb.com/covers/13/59/9780330481359.jpg'), + ('0099769913', 'Songlines', 'https://images.isbndb.com/covers/99/10/9780099769910.jpg'), + ('3404143434', 'The Green Mile: Das Größte Geschenk überhaupt Ist Echte Freundscha: Der Grosse Roman Jetzt Verfilmt', 'https://images.isbndb.com/covers/34/36/9783404143436.jpg'), + ('3492107400', 'Herbstmilch. Lebenserinnerungen Einer Bäuerin', 'https://images.isbndb.com/covers/74/02/9783492107402.jpg'), + ('3453152271', 'Das Magische Messer', 'https://images.isbndb.com/covers/22/74/9783453152274.jpg'), + ('3404148932', 'Das Jesus Video. Filmbuch.', 'https://images.isbndb.com/covers/89/36/9783404148936.jpg'), + ('3257225350', 'Der Richter Und Sein Henker', 'https://images.isbndb.com/covers/53/58/9783257225358.jpg'), + ('3596113318', 'Virginia Woolf. Gesammelte Werke: Orlando', 'https://images.isbndb.com/covers/33/16/9783596113316.jpg'), + ('3150034914', 'Über Die Freiheit', 'https://images.isbndb.com/covers/49/10/9783150034910.jpg'), + ('3880220131', 'Im Schatten Des Friedens. Ein Bericht Aus Vietnam Und Kamputschea.', 'https://images.isbndb.com/covers/01/33/9783880220133.jpg'), + ('3150000912', 'Der Zerbrochne Krug', 'https://images.isbndb.com/covers/09/15/9783150000915.jpg'), + ('3499230755', 'Eine Seele Von Mörder.', 'https://images.isbndb.com/covers/07/52/9783499230752.jpg'), + ('3453137442', 'Der Goldene Kompass. His-Dark-Materials 01', 'https://images.isbndb.com/covers/74/48/9783453137448.jpg'), + ('3421051496', 'Mein Leben', 'https://images.isbndb.com/covers/14/93/9783421051493.jpg'), + ('3257008724', 'Weihnachtslied: Eine Gespenstergeschichte', 'https://images.isbndb.com/covers/87/22/9783257008722.jpg'), + ('1857025539', 'Dear London: Notes From The Big City', 'https://images.isbndb.com/covers/55/38/9781857025538.jpg'), + ('3426618303', 'London. Roman', 'https://images.isbndb.com/covers/83/01/9783426618301.jpg'), + ('3426611384', 'Selbstjustiz', 'https://images.isbndb.com/covers/13/88/9783426611388.jpg'), + ('3442447186', 'Träume Am Ufer Des Meeres: Roman', 'https://images.isbndb.com/covers/71/83/9783442447183.jpg'), + ('0553050680', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/06/84/9780553050684.jpg'), + ('1560761210', 'The Verdant Passage (Dark Sun World)', 'https://images.isbndb.com/covers/12/11/9781560761211.jpg'), + ('0747272522', 'Pastures Nouveaux', 'https://images.isbndb.com/covers/25/26/9780747272526.jpg'), + ('0385606990', 'Lyra''s Oxford', 'https://images.isbndb.com/covers/69/98/9780385606998.jpg'), + ('1843910500', 'With The Flow (Hesperus Classics)', 'https://images.isbndb.com/covers/05/03/9781843910503.jpg'), + ('0439288886', 'Treasure Island (Scholastic Classics)', 'https://images.isbndb.com/covers/88/80/9780439288880.jpg'), + ('1840221178', 'Chapman''s Homer: The Iliad And The Odyssey (Classics Of World Literature)', 'https://images.isbndb.com/covers/11/76/9781840221176.jpg'), + ('3791321641', 'Frida Kahlo And Diego Rivera (Pegasus Library)', 'https://images.isbndb.com/covers/16/46/9783791321646.jpg'), + ('1840225025', 'The Night Side Of Nature (Myth Legend & Folklore)', 'https://images.isbndb.com/covers/50/20/9781840225020.jpg'), + ('0340857382', 'Angela Carter: A Beginner''s Guide', 'https://images.isbndb.com/covers/73/80/9780340857380.jpg'), + ('057117857X', 'Freedom And Death', 'https://images.isbndb.com/covers/85/75/9780571178575.jpg'), + ('0345391837', 'So Long, And Thanks For All The Fish', 'https://images.isbndb.com/covers/18/34/9780345391834.jpg'), + ('0762413697', 'The Book Lover''s Kit', 'https://images.isbndb.com/covers/36/90/9780762413690.jpg'), + ('0141315741', 'The Magical Worlds Of The "Lord Of The Rings": An Unauthorised Guide - A Treasury Of Myths, Legends And Fascinating Facts', 'https://images.isbndb.com/covers/57/44/9780141315744.jpg'), + ('0711708770', 'Somerset, Wiltshire & The Mendips Walks (Pathfinder Guides)', 'https://images.isbndb.com/covers/87/78/9780711708778.jpg'), + ('0802139779', 'Young Adam', 'https://images.isbndb.com/covers/97/71/9780802139771.jpg'), + ('0297643347', 'Women In Purple: Three Byzantine Empresses', 'https://images.isbndb.com/covers/33/40/9780297643340.jpg'), + ('1900512440', 'Can Reindeer Fly?: The Science Of Christmas', 'https://images.isbndb.com/covers/24/42/9781900512442.jpg'), + ('0571081789', 'The Bell Jar', 'https://images.isbndb.com/covers/17/83/9780571081783.jpg'), + ('0156236001', 'The D. Case: Or The Truth About The Mystery Of Edwin Drood', 'https://images.isbndb.com/covers/60/03/9780156236003.jpg'), + ('1844130533', 'How To Read A Church', 'https://images.isbndb.com/covers/05/35/9781844130535.jpg'), + ('0310209307', 'The Case For Christ: A Journalist''s Personal Investigation Of The Evidence For Jesus', 'https://images.isbndb.com/covers/93/00/9780310209300.jpg'), + ('0060177888', 'All I Know About Animal Behavior I Learned In Loehmann''s Dressing Room', 'https://images.isbndb.com/covers/78/81/9780060177881.jpg'), + ('0440214114', 'Mixed Blessings', 'https://images.isbndb.com/covers/41/13/9780440214113.jpg'), + ('0671016652', 'Three Wishes', 'https://images.isbndb.com/covers/66/54/9780671016654.jpg'), + ('0515110132', 'Line Of Fire (The Corps, Book 5)', 'https://images.isbndb.com/covers/01/35/9780515110135.jpg'), + ('0446607827', 'Superstition', 'https://images.isbndb.com/covers/78/27/9780446607827.jpg'), + ('0613572742', 'Siddartha', 'https://images.isbndb.com/covers/27/43/9780613572743.jpg'), + ('0919924034', 'Driving Force Of Spiritual Powers', 'https://images.isbndb.com/covers/40/31/9780919924031.jpg'), + ('0448210339', 'Look Inside Your Body (Poke And Look)', 'https://images.isbndb.com/covers/03/39/9780448210339.jpg'), + ('0312099436', 'Women Of The Silk: A Novel', 'https://images.isbndb.com/covers/94/35/9780312099435.jpg'), + ('0451450442', 'Pyramids', 'https://images.isbndb.com/covers/04/49/9780451450449.jpg'), + ('0440987202', 'The Third Eye (Laurel-leaf Books)', 'https://images.isbndb.com/covers/72/08/9780440987208.jpg'), + ('0142301094', 'Origins (Sweep, No. 11)', 'https://images.isbndb.com/covers/10/98/9780142301098.jpg'), + ('0446357421', 'If Tomorrow Comes', 'https://images.isbndb.com/covers/74/25/9780446357425.jpg'), + ('0130314803', 'Mosaicos: Spanish As A World Language With CD-ROM (3rd Edition)', 'https://images.isbndb.com/covers/48/02/9780130314802.jpg'), + ('0812092821', '501 Spanish Verbs: Fully Conjugated In All The Tenses In A New Easy-to-Learn Format Alphabetically Arranged', 'https://images.isbndb.com/covers/28/20/9780812092820.jpg'), + ('0764551949', 'Spanish For Dummies', 'https://images.isbndb.com/covers/19/49/9780764551949.jpg'), + ('0312959249', 'Necessary Evil', 'https://images.isbndb.com/covers/92/41/9780312959241.jpg'), + ('1576739562', 'Tested By Fire (The Baxter Series #1)', 'https://images.isbndb.com/covers/95/63/9781576739563.jpg'), + ('0684868938', 'Don''t Make Me Stop This Car!: Adventures In Fatherhood', 'https://images.isbndb.com/covers/89/36/9780684868936.jpg'), + ('0312966814', 'Sleeping With The Crawfish (A St. Martin''s Dead Letter Mystery)', 'https://images.isbndb.com/covers/68/12/9780312966812.jpg'), + ('0399141065', 'Contagion', 'https://images.isbndb.com/covers/10/65/9780399141065.jpg'), + ('0425171272', 'Home Song', 'https://images.isbndb.com/covers/12/71/9780425171271.jpg'), + ('1880033100', 'Prayer Of The Warrior', 'https://images.isbndb.com/covers/31/04/9781880033104.jpg'), + ('0804900973', 'Adventures Of Sherlock Holmes', 'https://images.isbndb.com/covers/09/73/9780804900973.jpg'), + ('0449215571', 'Gone To Soldiers', 'https://images.isbndb.com/covers/55/79/9780449215579.jpg'), + ('0451516060', 'Robinson Crusoe (Signet Classics)', 'https://images.isbndb.com/covers/60/60/9780451516060.jpg'), + ('0764585932', 'Frankenstein (Cliffs Notes)', 'https://images.isbndb.com/covers/59/37/9780764585937.jpg'), + ('0553212478', 'Frankenstein', 'https://images.isbndb.com/covers/24/71/9780553212471.jpg'), + ('0671432427', 'Fathers Day', 'https://images.isbndb.com/covers/24/23/9780671432423.jpg'), + ('0517569620', 'Black Valentine', 'https://images.isbndb.com/covers/96/27/9780517569627.jpg'), + ('0671827944', 'Moviola', 'https://images.isbndb.com/covers/79/46/9780671827946.jpg'), + ('0671701363', 'Adventures Of Huckleberry Finn (Enriched Classic)', 'https://images.isbndb.com/covers/13/69/9780671701369.jpg'), + ('0553247727', 'Pritikin Program For Diet And Exercise', 'https://images.isbndb.com/covers/77/25/9780553247725.jpg'), + ('0842329242', 'Nicolae: The Rise Of Antichrist (Left Behind No. 3)', 'https://images.isbndb.com/covers/92/48/9780842329248.jpg'), + ('0553106333', 'Ashes To Ashes', 'https://images.isbndb.com/covers/63/36/9780553106336.jpg'), + ('0395683297', 'Silent Spring', 'https://images.isbndb.com/covers/32/93/9780395683293.jpg'), + ('0590451782', 'Jo''s Boys (Apple Classic)', 'https://images.isbndb.com/covers/17/89/9780590451789.jpg'), + ('0452270529', 'This Little Light Of Mine: The Life Of Fannie Lou Hamer', 'https://images.isbndb.com/covers/05/27/9780452270527.jpg'), + ('0425168298', 'Secret Prey (Lucas Davenport, No 9)', 'https://images.isbndb.com/covers/82/95/9780425168295.jpg'), + ('1566193087', 'Wuthering Heights', 'https://images.isbndb.com/covers/30/85/9781566193085.jpg'), + ('0553213423', 'Great Expectations (Bantam Classics)', 'https://images.isbndb.com/covers/34/23/9780553213423.jpg'), + ('0394713788', 'Is There No Place On Earth For Me?', 'https://images.isbndb.com/covers/37/86/9780394713786.jpg'), + ('0345433165', 'The Right Hand Of Evil', 'https://images.isbndb.com/covers/31/69/9780345433169.jpg'), + ('0785804714', 'All The Women Of The Bible', 'https://images.isbndb.com/covers/47/10/9780785804710.jpg'), + ('0002229544', 'Cold New Dawn', 'https://images.isbndb.com/covers/95/48/9780002229548.jpg'), + ('0140011307', 'The Thirty-Nine Steps (Classic Crime)', 'https://images.isbndb.com/covers/13/02/9780140011302.jpg'), + ('0671007343', 'At All Costs (Nancy Drew & Hardy Boys Super Mysteries #33)', 'https://images.isbndb.com/covers/73/48/9780671007348.jpg'), + ('067084943X', 'The Book Of Guys', 'https://images.isbndb.com/covers/94/37/9780670849437.jpg'), + ('0671799045', 'Evening Star', 'https://images.isbndb.com/covers/90/45/9780671799045.jpg'), + ('067178501X', 'Palmistry: How To Chart The Lines Of Your Life', 'https://images.isbndb.com/covers/50/17/9780671785017.jpg'), + ('0721406270', 'The Little Mermaid (Well Loved Tales)', 'https://images.isbndb.com/covers/62/75/9780721406275.jpg'), + ('0062508326', 'A Lover''s Alphabet: A Collection Of Aphrodisiac Recipes, Magic Formulae, Lovemaking Secrets And Erotic Miscellany From East And West (Pillow Book)', 'https://images.isbndb.com/covers/83/24/9780062508324.jpg'), + ('0486264661', 'Selected Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/46/60/9780486264660.jpg'), + ('0486272818', 'Miss Julie (Dover Thrift Editions)', 'https://images.isbndb.com/covers/28/18/9780486272818.jpg'), + ('0486272648', 'Beowulf (Dover Thrift Editions)', 'https://images.isbndb.com/covers/26/41/9780486272641.jpg'), + ('0486277836', 'My Last Duchess And Other Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/78/37/9780486277837.jpg'), + ('048627053X', 'Notes From The Underground (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/31/9780486270531.jpg'), + ('0064472531', 'Violet & Claire', 'https://images.isbndb.com/covers/25/31/9780064472531.jpg'), + ('0205131999', 'Perspectives On Personality', 'https://images.isbndb.com/covers/19/90/9780205131990.jpg'), + ('0451625781', 'A Primer Of Jungian Psychology (Mentor)', 'https://images.isbndb.com/covers/57/86/9780451625786.jpg'), + ('0441005004', 'Virus Clans: A Story Of Evolution', 'https://images.isbndb.com/covers/50/00/9780441005000.jpg'), + ('002346450X', 'The Consolation Of Philosophy: Boethius', 'https://images.isbndb.com/covers/45/08/9780023464508.jpg'), + ('0312280637', 'Ten Women Who Shook The World: Stories', 'https://images.isbndb.com/covers/06/35/9780312280635.jpg'), + ('0380017822', 'Animal Liberation: A New Ethics For Our Treatment Of Animals', 'https://images.isbndb.com/covers/78/29/9780380017829.jpg'), + ('0515129232', 'Second Wind', 'https://images.isbndb.com/covers/92/36/9780515129236.jpg'), + ('0345400011', 'It Wasn''t Always Easy, But I Sure Had Fun', 'https://images.isbndb.com/covers/00/17/9780345400017.jpg'), + ('0316898163', 'River, Cross My Heart : A Novel', 'https://images.isbndb.com/covers/81/64/9780316898164.jpg'), + ('0937611018', 'You Can Heal Your Life', 'https://images.isbndb.com/covers/10/12/9780937611012.jpg'), + ('0965834522', 'Hellspark', 'https://images.isbndb.com/covers/45/20/9780965834520.jpg'), + ('0671695347', 'About Face: The Odyssey Of An American Warrior', 'https://images.isbndb.com/covers/53/47/9780671695347.jpg'), + ('0671758748', 'Coping With Difficult People', 'https://images.isbndb.com/covers/87/45/9780671758745.jpg'), + ('0399147659', 'Isle Of Dogs (Andy Brazil)', 'https://images.isbndb.com/covers/76/54/9780399147654.jpg'), + ('0671869205', 'Truman', 'https://images.isbndb.com/covers/92/05/9780671869205.jpg'), + ('0374525102', 'Annie John: A Novel', 'https://images.isbndb.com/covers/51/01/9780374525101.jpg'), + ('0140003185', 'I, Claudius / Claudius The God (2 Volumes)', 'https://images.isbndb.com/covers/31/85/9780140003185.jpg'), + ('1853262412', '100 Selected Stories (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/24/18/9781853262418.jpg'), + ('1880656655', 'Ash', 'https://images.isbndb.com/covers/66/55/9781880656655.jpg'), + ('0812544196', 'Metamorphosis: The Sorcerer, Book 2 (The Camulod Chronicles, Book 6)', 'https://images.isbndb.com/covers/41/90/9780812544190.jpg'), + ('0446610526', 'The Legend', 'https://images.isbndb.com/covers/05/20/9780446610520.jpg'), + ('0385285965', 'Legends Of The Fall', 'https://images.isbndb.com/covers/59/64/9780385285964.jpg'), + ('0140017917', 'The Power And The Glory', 'https://images.isbndb.com/covers/79/15/9780140017915.jpg'), + ('0741409577', 'Chronicles Of Thanatos The Reaper', 'https://images.isbndb.com/covers/95/77/9780741409577.jpg'), + ('0380784130', 'Fair Peril', 'https://images.isbndb.com/covers/41/34/9780380784134.jpg'), + ('0345367693', 'The Diamond Throne', 'https://images.isbndb.com/covers/76/93/9780345367693.jpg'), + ('0345373529', 'The Ruby Knight (Book Two Of The Elenium)', 'https://images.isbndb.com/covers/35/26/9780345373526.jpg'), + ('096623460X', 'I Spit On Your Graves', 'https://images.isbndb.com/covers/46/02/9780966234602.jpg'), + ('0140165347', 'Jump And Other Short Stories', 'https://images.isbndb.com/covers/53/40/9780140165340.jpg'), + ('0446357448', 'Bloodline', 'https://images.isbndb.com/covers/74/49/9780446357449.jpg'), + ('0805209522', 'The Red Orchestra (Witnesses To War)', 'https://images.isbndb.com/covers/95/25/9780805209525.jpg'), + ('0385147635', 'Rogano: A Novel', 'https://images.isbndb.com/covers/76/37/9780385147637.jpg'), + ('0708905307', 'Kundu', 'https://images.isbndb.com/covers/53/02/9780708905302.jpg'), + ('0060510323', 'La Ciudad De Las Bestias (Spanish Edition)', 'https://images.isbndb.com/covers/03/29/9780060510329.jpg'), + ('0061008095', 'To Be The Best', 'https://images.isbndb.com/covers/80/92/9780061008092.jpg'), + ('0446606294', 'Perfect Harmony', 'https://images.isbndb.com/covers/62/95/9780446606295.jpg'), + ('0671689746', 'Sweet Liar', 'https://images.isbndb.com/covers/97/42/9780671689742.jpg'), + ('0060951273', 'El Plan Infinito (Spanish Edition)', 'https://images.isbndb.com/covers/12/76/9780060951276.jpg'), + ('0374523789', 'The Acts Of King Arthur And His Noble Knights: From The Winchester Manuscripts Of Thomas Malory & Other Sources', 'https://images.isbndb.com/covers/37/87/9780374523787.jpg'), + ('0449208885', 'Road To Paradise Island', 'https://images.isbndb.com/covers/88/85/9780449208885.jpg'), + ('0399136002', 'It Began In Vauxhall Gardens', 'https://images.isbndb.com/covers/60/09/9780399136009.jpg'), + ('067972768X', 'The Joy Luck Club: A Novel', 'https://images.isbndb.com/covers/76/82/9780679727682.jpg'), + ('0380723409', 'Virgins Of Paradise', 'https://images.isbndb.com/covers/34/09/9780380723409.jpg'), + ('0380790904', 'A Well Favored Gentleman', 'https://images.isbndb.com/covers/09/06/9780380790906.jpg'), + ('0800711246', 'Peace And Quiet And Other Hazards', 'https://images.isbndb.com/covers/12/45/9780800711245.jpg'), + ('0439104645', 'I Choose You (Pokemon Chapter Book #1)', 'https://images.isbndb.com/covers/46/47/9780439104647.jpg'), + ('0439160197', 'Powerpuff Girls Chapter Book #01: Powerful Professor (Powerpuff Girls, Chaper Book) (No. 1)', 'https://images.isbndb.com/covers/01/93/9780439160193.jpg'), + ('0439104661', 'Island Of The Giant Pokemon (Pokemon, No. 2)', 'https://images.isbndb.com/covers/46/61/9780439104661.jpg'), + ('0451401182', 'Dazzle (Onyx)', 'https://images.isbndb.com/covers/11/82/9780451401182.jpg'), + ('0345370139', 'Hollywood: A Novel Of America In The 1920s', 'https://images.isbndb.com/covers/01/36/9780345370136.jpg'), + ('0451145577', 'The Seventh Secret (Signet)', 'https://images.isbndb.com/covers/55/74/9780451145574.jpg'), + ('0440207428', 'The Minotaur', 'https://images.isbndb.com/covers/74/29/9780440207429.jpg'), + ('0446608106', 'Home Fires (Deborah Knott Mysteries)', 'https://images.isbndb.com/covers/81/07/9780446608107.jpg'), + ('0553562916', 'Better Homes And Gardens New Cook Book, 10th Edition', 'https://images.isbndb.com/covers/29/10/9780553562910.jpg'), + ('0345435907', 'Diana: The Secret Years', 'https://images.isbndb.com/covers/59/03/9780345435903.jpg'), + ('0385319215', 'Weep No More, My Lady', 'https://images.isbndb.com/covers/92/18/9780385319218.jpg'), + ('0684855135', 'The Last Dance: A Novel Of The 87th Precinct', 'https://images.isbndb.com/covers/51/34/9780684855134.jpg'), + ('0425160343', 'Connecticut Yankee In Criminal Court (Mark Twain Mystery)', 'https://images.isbndb.com/covers/03/43/9780425160343.jpg'), + ('0425155129', 'Death On The Mississippi (Mark Twain Mystery)', 'https://images.isbndb.com/covers/51/27/9780425155127.jpg'), + ('0425165671', 'The Prince And The Prosecuter (Mark Twain Mystery)', 'https://images.isbndb.com/covers/56/76/9780425165676.jpg'), + ('0553574566', 'A Monstrous Regiment Of Women', 'https://images.isbndb.com/covers/45/62/9780553574562.jpg'), + ('0394759842', 'Oscar Wilde', 'https://images.isbndb.com/covers/98/45/9780394759845.jpg'), + ('188845136X', 'Some Of The Parts', 'https://images.isbndb.com/covers/13/68/9781888451368.jpg'), + ('0553347756', 'Wild Mind: Living The Writer''s Life', 'https://images.isbndb.com/covers/77/53/9780553347753.jpg'), + ('3800015064', 'Das Rotweissrote Weltkugelbuch', 'https://images.isbndb.com/covers/50/61/9783800015061.jpg'), + ('3789129453', 'Die Kinder Aus Bullerbü', 'https://images.isbndb.com/covers/94/52/9783789129452.jpg'), + ('0452278384', 'The Carbohydrate Addict''s Lifespan Program : A Personalized Plan For Becoming Slim, Fit And Healthy In Your 40s, 50s, 60s And Beyond', 'https://images.isbndb.com/covers/83/87/9780452278387.jpg'), + ('0743250192', 'Chocolate For A Woman''s Soul Volume II : 77 Stories That Celebrate The Richness Of Life', 'https://images.isbndb.com/covers/01/91/9780743250191.jpg'), + ('1551664348', 'Montana', 'https://images.isbndb.com/covers/43/47/9781551664347.jpg'), + ('0061099732', 'Outer Banks', 'https://images.isbndb.com/covers/97/31/9780061099731.jpg'), + ('3453149793', 'Der Magier, Der Sand Der Zeit', 'https://images.isbndb.com/covers/97/93/9783453149793.jpg'), + ('3518404741', 'Amanda Herzlos: Roman', 'https://images.isbndb.com/covers/47/44/9783518404744.jpg'), + ('3442722357', 'Auf Den Schultern Meines Vaters. Eine Rückkehr Nach China.', 'https://images.isbndb.com/covers/23/58/9783442722358.jpg'), + ('3502151040', 'Sorge Dich Nicht, Lebe!', 'https://images.isbndb.com/covers/10/43/9783502151043.jpg'), + ('1570623392', 'A Troubadour''s Testament', 'https://images.isbndb.com/covers/33/94/9781570623394.jpg'), + ('0340590262', 'Children''s Children', 'https://images.isbndb.com/covers/02/63/9780340590263.jpg'), + ('3518366823', 'Siddhartha. Eine Indische Dichtung.', 'https://images.isbndb.com/covers/68/20/9783518366820.jpg'), + ('0452262380', 'Maxi-marketing: The New Direction In Advertising, Promotion, And Marketing Strategy', 'https://images.isbndb.com/covers/23/86/9780452262386.jpg'), + ('0688132464', 'The Customer Comes Second', 'https://images.isbndb.com/covers/24/60/9780688132460.jpg'), + ('0684834669', 'True Professionalism', 'https://images.isbndb.com/covers/46/65/9780684834665.jpg'), + ('1566471192', 'Teller Of Hawaiian Tales', 'https://images.isbndb.com/covers/11/90/9781566471190.jpg'), + ('0446393568', 'Successful Large Account Management: How To Hold On To Your Most Important Customers - And Keep Them Going Strong - In Today''s Marketplace', 'https://images.isbndb.com/covers/35/60/9780446393560.jpg'), + ('0425114686', 'How To Win Customers And Keep Them For Life', 'https://images.isbndb.com/covers/46/81/9780425114681.jpg'), + ('0515110396', 'Compelling Evidence (A Paul Madriani Novel)', 'https://images.isbndb.com/covers/03/95/9780515110395.jpg'), + ('0385335555', 'Tell No One', 'https://images.isbndb.com/covers/55/53/9780385335553.jpg'), + ('0385414587', 'Mrs. Pollifax And The Whirling Dervish', 'https://images.isbndb.com/covers/45/86/9780385414586.jpg'), + ('0449911373', 'Mrs. Pollifax, Innocent Tourist', 'https://images.isbndb.com/covers/13/72/9780449911372.jpg'), + ('0399142193', 'Executive Orders', 'https://images.isbndb.com/covers/21/92/9780399142192.jpg'), + ('0385729332', 'Sisterhood Of The Traveling Pants (The Sisterhood Of The Traveling Pants)', 'https://images.isbndb.com/covers/93/38/9780385729338.jpg'), + ('0140048944', 'North Of South: An African Journey', 'https://images.isbndb.com/covers/89/40/9780140048940.jpg'), + ('0385333005', 'Driving Mr. Albert: A Trip Across America With Einstein''s Brain', 'https://images.isbndb.com/covers/30/09/9780385333009.jpg'), + ('0671517635', 'Gumpisms: The Wit And Wisdom Of Forrest Gump', 'https://images.isbndb.com/covers/76/32/9780671517632.jpg'), + ('0812695313', 'Buffy The Vampire Slayer And Philosophy: Fear And Trembling In Sunnydale (Popular Culture And Philosophy, Vol. 4)', 'https://images.isbndb.com/covers/53/11/9780812695311.jpg'), + ('0671606832', 'White Hart', 'https://images.isbndb.com/covers/68/31/9780671606831.jpg'), + ('0345428919', 'Out Of The Blue', 'https://images.isbndb.com/covers/89/12/9780345428912.jpg'), + ('0553289314', 'Indiana Jones And The Peril At Delphi (Indiana Jones, No. 1)', 'https://images.isbndb.com/covers/93/12/9780553289312.jpg'), + ('0399134999', 'Beyond The Fall Of Night', 'https://images.isbndb.com/covers/49/99/9780399134999.jpg'), + ('0321130073', 'HTML For The World Wide Web With XHTML And CSS, Fifth Edition', 'https://images.isbndb.com/covers/00/75/9780321130075.jpg'), + ('0812523113', 'The Winter Of The World', 'https://images.isbndb.com/covers/31/19/9780812523119.jpg'), + ('0886775388', 'Guilt-edged Ivory (Daw Science Fiction)', 'https://images.isbndb.com/covers/53/84/9780886775384.jpg'), + ('0312853742', 'The Element Of Fire', 'https://images.isbndb.com/covers/37/47/9780312853747.jpg'), + ('0441010210', 'Channeling Cleopatra', 'https://images.isbndb.com/covers/02/19/9780441010219.jpg'), + ('0451454146', 'The Innkeeper''s Song', 'https://images.isbndb.com/covers/41/40/9780451454140.jpg'), + ('0684854422', 'The Exes: A Novel', 'https://images.isbndb.com/covers/44/27/9780684854427.jpg'), + ('0312877994', 'Gene Roddenberry''s Earth: Final Conflict--Augur''s Teacher', 'https://images.isbndb.com/covers/79/96/9780312877996.jpg'), + ('0505525542', 'Sex And The Single Vampire', 'https://images.isbndb.com/covers/55/43/9780505525543.jpg'), + ('0345448995', 'Regina''s Song', 'https://images.isbndb.com/covers/89/96/9780345448996.jpg'), + ('0061099155', 'People Of Darkness', 'https://images.isbndb.com/covers/91/51/9780061099151.jpg'), + ('0671878638', 'Bedlam''s Bard', 'https://images.isbndb.com/covers/86/34/9780671878634.jpg'), + ('0802139981', 'A Storm In Flanders: The Ypres Salient, 1914-1918: Tragedy And Triumph On The Western Front', 'https://images.isbndb.com/covers/99/86/9780802139986.jpg'), + ('0886778913', 'Sword And Sorceress XVII', 'https://images.isbndb.com/covers/89/10/9780886778910.jpg'), + ('0451198379', 'Leonard Maltin''s Movie And Video Guide 2000', 'https://images.isbndb.com/covers/83/72/9780451198372.jpg'), + ('0152337016', 'Helga''s Dowry: A Troll Love Story', 'https://images.isbndb.com/covers/70/18/9780152337018.jpg'), + ('0873585763', 'Goose And The Mountain Lion', 'https://images.isbndb.com/covers/57/67/9780873585767.jpg'), + ('0394546415', 'Minute By Minute...: The Story Of "60 Minutes"', 'https://images.isbndb.com/covers/64/14/9780394546414.jpg'), + ('051512768X', 'The Orchid Hunter', 'https://images.isbndb.com/covers/76/83/9780515127683.jpg'), + ('0312916671', 'Friends, Russians And Countrymen', 'https://images.isbndb.com/covers/66/71/9780312916671.jpg'), + ('0671218336', 'The Mote In God''s Eye', 'https://images.isbndb.com/covers/83/31/9780671218331.jpg'), + ('0449700895', 'Homecoming', 'https://images.isbndb.com/covers/08/91/9780449700891.jpg'), + ('031203833X', 'Flight To Yesterday', 'https://images.isbndb.com/covers/83/35/9780312038335.jpg'), + ('0688044816', 'I Never Played The Game', 'https://images.isbndb.com/covers/48/17/9780688044817.jpg'), + ('0688035418', 'The Resort', 'https://images.isbndb.com/covers/54/19/9780688035419.jpg'), + ('0679723250', 'The Postman Always Rings Twice', 'https://images.isbndb.com/covers/32/57/9780679723257.jpg'), + ('0441203981', 'Elric Of Melnibone 1', 'https://images.isbndb.com/covers/39/87/9780441203987.jpg'), + ('0441048854', 'The Bane Of The Black Sword (Elric Saga, Book 5)', 'https://images.isbndb.com/covers/88/54/9780441048854.jpg'), + ('0441787541', 'Storm Bringer (Elric Saga, Book 6)', 'https://images.isbndb.com/covers/75/48/9780441787548.jpg'), + ('0441888054', 'The Weird Of The White Wolf - (Book 3 Of The Elric Saga)', 'https://images.isbndb.com/covers/80/54/9780441888054.jpg'), + ('0441001068', 'The Revenge Of The Rose', 'https://images.isbndb.com/covers/10/64/9780441001064.jpg'), + ('0441860397', 'Vanishing Tower 4', 'https://images.isbndb.com/covers/03/95/9780441860395.jpg'), + ('0441748635', 'The Sailor On The Seas Of Fate 2 (Elric Saga) (Book 2)', 'https://images.isbndb.com/covers/86/31/9780441748631.jpg'), + ('0374455031', 'The Night Of Wishes', 'https://images.isbndb.com/covers/50/33/9780374455033.jpg'), + ('1582402159', 'Magdalena: Blood Divine', 'https://images.isbndb.com/covers/21/54/9781582402154.jpg'), + ('0140449132', 'Crime And Punishment (Penguin Classics)', 'https://images.isbndb.com/covers/91/36/9780140449136.jpg'), + ('0192823795', 'The Sign Of Four (The Oxford Sherlock Holmes)', 'https://images.isbndb.com/covers/37/93/9780192823793.jpg'), + ('0394758277', 'Farewell, My Lovely', 'https://images.isbndb.com/covers/82/75/9780394758275.jpg'), + ('0375405119', 'The Talented Mr. Ripley', 'https://images.isbndb.com/covers/51/12/9780375405112.jpg'), + ('0739307320', 'The Devil Wears Prada', 'https://images.isbndb.com/covers/73/28/9780739307328.jpg'), + ('014044629X', 'The Decameron: Second Edition (Penguin Classics)', 'https://images.isbndb.com/covers/62/96/9780140446296.jpg'), + ('0140184937', 'Our Man In Havana: An Entertainment (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/49/38/9780140184938.jpg'), + ('1587156865', 'The Black Tulip', 'https://images.isbndb.com/covers/68/61/9781587156861.jpg'), + ('1400100666', 'The Invisible Man', 'https://images.isbndb.com/covers/06/68/9781400100668.jpg'), + ('9505812760', 'Corsario Negro, El (Spanish Edition)', 'https://images.isbndb.com/covers/27/69/9789505812769.jpg'), + ('0451527461', 'The Prince (Signet Classics)', 'https://images.isbndb.com/covers/74/62/9780451527462.jpg'), + ('078688942X', 'The Book Of D''Ni (Myst, Book 3)', 'https://images.isbndb.com/covers/94/26/9780786889426.jpg'), + ('0553373854', 'Buddha''s Little Instruction Book', 'https://images.isbndb.com/covers/38/51/9780553373851.jpg'), + ('0688171451', 'Altar Ego', 'https://images.isbndb.com/covers/14/52/9780688171452.jpg'), + ('0942394577', 'New York, Images Of The Landscape', 'https://images.isbndb.com/covers/45/73/9780942394573.jpg'), + ('0345315715', 'The Robots Of Dawn (R. Daneel Olivaw, No. 3)', 'https://images.isbndb.com/covers/57/17/9780345315717.jpg'), + ('0345336275', 'Foundation, Book 1', 'https://images.isbndb.com/covers/62/79/9780345336279.jpg'), + ('0425115291', 'Silver Tower', 'https://images.isbndb.com/covers/52/99/9780425115299.jpg'), + ('1551667010', 'The Soul Catcher: A Maggie O''Dell Novel', 'https://images.isbndb.com/covers/70/10/9781551667010.jpg'), + ('0425168220', 'State Of Siege (Tom Clancy''s Op-Center, Book 6)', 'https://images.isbndb.com/covers/82/26/9780425168226.jpg'), + ('0440220793', 'The 13th Juror (Dismas Hardy)', 'https://images.isbndb.com/covers/07/94/9780440220794.jpg'), + ('0446301353', 'Grey Mask', 'https://images.isbndb.com/covers/13/50/9780446301350.jpg'), + ('0425146413', 'Night Prey', 'https://images.isbndb.com/covers/64/15/9780425146415.jpg'), + ('0553566075', 'Dead Man''s Island', 'https://images.isbndb.com/covers/60/79/9780553566079.jpg'), + ('0451409639', 'Pandora''s Curse (Philip Mercer)', 'https://images.isbndb.com/covers/96/38/9780451409638.jpg'), + ('0553580167', 'Gemini Man', 'https://images.isbndb.com/covers/01/67/9780553580167.jpg'), + ('0590341286', 'I Spy Super Challenger', 'https://images.isbndb.com/covers/12/88/9780590341288.jpg'), + ('0310535212', 'How To Survive Middle School A Humorous Guide To The Wonder Years: A Humorous Guide To The Wonder Years (Get ''em Growing)', 'https://images.isbndb.com/covers/52/18/9780310535218.jpg'), + ('0880385480', 'LEGEND OF HUMA (Dragonlance: Heroes)', 'https://images.isbndb.com/covers/54/80/9780880385480.jpg'), + ('0380793342', 'The Heir', 'https://images.isbndb.com/covers/33/41/9780380793341.jpg'), + ('0140285105', 'Equal Music', 'https://images.isbndb.com/covers/51/09/9780140285109.jpg'), + ('0486295729', 'The Double (Dover Thrift Editions)', 'https://images.isbndb.com/covers/57/25/9780486295725.jpg'), + ('0140622160', 'Selected Poems (Popular Classics)', 'https://images.isbndb.com/covers/21/64/9780140622164.jpg'), + ('0515094773', 'Vows', 'https://images.isbndb.com/covers/47/70/9780515094770.jpg'), + ('068803196X', 'Bloodline', 'https://images.isbndb.com/covers/19/61/9780688031961.jpg'), + ('060303294X', 'The Naughtiest Girl Is A Monitor (Rewards)', 'https://images.isbndb.com/covers/29/43/9780603032943.jpg'), + ('1551664445', 'To Love, Honor And Betray', 'https://images.isbndb.com/covers/44/46/9781551664446.jpg'), + ('0373271948', 'The Man Who Would Be King (Romancing The Crown) (Harlequin Romantic Suspense # 1124)', 'https://images.isbndb.com/covers/19/48/9780373271948.jpg'), + ('2080701142', 'Histoires Grotesques Et Sérieuses', 'https://images.isbndb.com/covers/11/45/9782080701145.jpg'), + ('158243140X', 'Deus Lo Volt!: A Chronicle Of The Crusades', 'https://images.isbndb.com/covers/14/06/9781582431406.jpg'), + ('0138153094', 'Soccer Drills For Individual And Team Play', 'https://images.isbndb.com/covers/30/90/9780138153090.jpg'), + ('0452011345', 'A Brief History Of The Caribbean: From The Arawak And The Carib To The Present', 'https://images.isbndb.com/covers/13/42/9780452011342.jpg'), + ('0764912518', 'Cryptorunes: Codes And Secret Writing', 'https://images.isbndb.com/covers/25/11/9780764912511.jpg'), + ('1588800296', 'CISSP Exam Cram', 'https://images.isbndb.com/covers/02/99/9781588800299.jpg'), + ('0486275574', 'Romeo And Juliet (Dover Thrift Editions)', 'https://images.isbndb.com/covers/55/74/9780486275574.jpg'), + ('1857933206', 'Clubbed Class Hb', 'https://images.isbndb.com/covers/32/08/9781857933208.jpg'), + ('0349107688', 'Whit', 'https://images.isbndb.com/covers/76/84/9780349107684.jpg'), + ('0868065951', 'Halfway To Eden (Contemporary Australian Poets)', 'https://images.isbndb.com/covers/59/53/9780868065953.jpg'), + ('0860682854', 'Literature Of Their Own', 'https://images.isbndb.com/covers/28/51/9780860682851.jpg'), + ('0811214575', 'A Far Cry From Kensington', 'https://images.isbndb.com/covers/45/75/9780811214575.jpg'), + ('1862053642', 'Fallen Angels: Paintings By Jack Vettriano', 'https://images.isbndb.com/covers/36/49/9781862053649.jpg'), + ('014043061X', 'Confessions Of An English Opium Eater (Penguin English Library)', 'https://images.isbndb.com/covers/06/15/9780140430615.jpg'), + ('0679738134', 'Look At Me', 'https://images.isbndb.com/covers/81/38/9780679738138.jpg'), + ('0140028668', 'The Sailor Who Fell From Grace With The Sea', 'https://images.isbndb.com/covers/86/69/9780140028669.jpg'), + ('0345255577', 'Star Trek Log Nine', 'https://images.isbndb.com/covers/55/70/9780345255570.jpg'), + ('0553121375', 'Vulcan!', 'https://images.isbndb.com/covers/13/77/9780553121377.jpg'), + ('0553252526', 'Star Trek 12', 'https://images.isbndb.com/covers/25/21/9780553252521.jpg'), + ('0553109782', 'The Price Of The Phoenix (Star Trek)', 'https://images.isbndb.com/covers/97/88/9780553109788.jpg'), + ('0671632663', 'Star Trek IV: The Voyage Home', 'https://images.isbndb.com/covers/26/63/9780671632663.jpg'), + ('0671501070', 'Dragon''s Honor (Star Trek: The Next Generation, No. 38)', 'https://images.isbndb.com/covers/10/75/9780671501075.jpg'), + ('081253221X', 'Gremlins Go Home', 'https://images.isbndb.com/covers/22/10/9780812532210.jpg'), + ('0671027514', 'Springwater', 'https://images.isbndb.com/covers/75/13/9780671027513.jpg'), + ('0451404327', 'The Rebel Bride (Coulter Historical Romance)', 'https://images.isbndb.com/covers/43/29/9780451404329.jpg'), + ('0310200059', 'The Book Of God: The Bible As A Novel', 'https://images.isbndb.com/covers/00/55/9780310200055.jpg'), + ('1576736261', 'African Skies (Palisades Pure Romance)', 'https://images.isbndb.com/covers/62/65/9781576736265.jpg'), + ('0345333926', 'Ringworld', 'https://images.isbndb.com/covers/39/26/9780345333926.jpg'), + ('0446603503', 'Superstitious', 'https://images.isbndb.com/covers/35/08/9780446603508.jpg'), + ('0345257502', 'A WORLD OUT OF TIME', 'https://images.isbndb.com/covers/75/05/9780345257505.jpg'), + ('0812510127', 'High Flight', 'https://images.isbndb.com/covers/01/26/9780812510126.jpg'), + ('0440225825', 'Move To Strike', 'https://images.isbndb.com/covers/58/29/9780440225829.jpg'), + ('0425191729', 'Golden Buddha (The Oregon Files)', 'https://images.isbndb.com/covers/17/29/9780425191729.jpg'), + ('0849396409', 'The CRC Concise Encyclopedia Of Mathematics', 'https://images.isbndb.com/covers/64/03/9780849396403.jpg'), + ('0879800429', 'A New Guide To Rational Living', 'https://images.isbndb.com/covers/04/20/9780879800420.jpg'), + ('0446349763', 'Edgar Cayce On Mysteries Of The Mind', 'https://images.isbndb.com/covers/97/65/9780446349765.jpg'), + ('0553227386', 'The Edgar Cayce Primer', 'https://images.isbndb.com/covers/73/83/9780553227383.jpg'), + ('0138094764', 'Simon & Schuster Handbook For Writers Second Edition', 'https://images.isbndb.com/covers/47/68/9780138094768.jpg'), + ('0471084263', 'How To Write Articles That Sell (General Trade)', 'https://images.isbndb.com/covers/42/66/9780471084266.jpg'), + ('0911654690', 'Sell Copy: How To Write It, How To Sell It, How To Buy It', 'https://images.isbndb.com/covers/46/91/9780911654691.jpg'), + ('0385484984', 'Visions', 'https://images.isbndb.com/covers/49/85/9780385484985.jpg'), + ('0878575707', 'Dave Barry''s Stay Fit And Healthy Until You''re Dead', 'https://images.isbndb.com/covers/57/01/9780878575701.jpg'), + ('0671832638', 'The Further Education Of Oversoul Seven', 'https://images.isbndb.com/covers/26/36/9780671832636.jpg'), + ('0449144585', 'Next Encounter', 'https://images.isbndb.com/covers/45/89/9780449144589.jpg'), + ('0449243583', 'Donahue: My Own Story', 'https://images.isbndb.com/covers/35/89/9780449243589.jpg'), + ('0394558332', 'Trust Me', 'https://images.isbndb.com/covers/83/32/9780394558332.jpg'), + ('0312977026', 'K-Pax', 'https://images.isbndb.com/covers/70/23/9780312977023.jpg'), + ('067346427X', 'Constellations: A Contextual Reader For Writers / [Ed. By] John Schilb.', 'https://images.isbndb.com/covers/42/79/9780673464279.jpg'), + ('044990668X', 'Cat-Dependent No More: Learning To Live Cat-Free In A Cat-Filled World', 'https://images.isbndb.com/covers/66/82/9780449906682.jpg'), + ('0465005594', 'The Physics Of Star Trek', 'https://images.isbndb.com/covers/55/98/9780465005598.jpg'), + ('044022330X', 'Rush Limbaugh Is A Big Fat Idiot', 'https://images.isbndb.com/covers/33/06/9780440223306.jpg'), + ('2211016529', 'Inspecteur Toutou', 'https://images.isbndb.com/covers/65/20/9782211016520.jpg'), + ('0752803409', 'Pavement For My Pillow Hb', 'https://images.isbndb.com/covers/34/01/9780752803401.jpg'), + ('0609800140', 'Anatomy Of The Spirit: The Seven Stages Of Power And Healing', 'https://images.isbndb.com/covers/01/40/9780609800140.jpg'), + ('1893732126', 'Everyday Simplicity: A Practical Guide To Spiritual Growth', 'https://images.isbndb.com/covers/21/24/9781893732124.jpg'), + ('3499231670', 'Masken Der Illuminaten.', 'https://images.isbndb.com/covers/16/74/9783499231674.jpg'), + ('3499222736', 'Illuminatus 03: Leviathan', 'https://images.isbndb.com/covers/27/33/9783499222733.jpg'), + ('3499222728', 'Illuminatus 02. Der Goldene Apfel', 'https://images.isbndb.com/covers/27/26/9783499222726.jpg'), + ('0375431403', 'The Smoke Jumper (Random House Large Print)', 'https://images.isbndb.com/covers/14/01/9780375431401.jpg'), + ('0553050044', 'Night Probe! (Dirk Pitt Adventure)', 'https://images.isbndb.com/covers/00/42/9780553050042.jpg'), + ('0911104674', 'Never Eat Anything Bigger Than Your Head & Other Drawings', 'https://images.isbndb.com/covers/46/77/9780911104677.jpg'), + ('0380725347', 'Even The Wicked: A Matthew Scudder Novel', 'https://images.isbndb.com/covers/53/42/9780380725342.jpg'), + ('0312978820', 'Hot Night In The City', 'https://images.isbndb.com/covers/88/22/9780312978822.jpg'), + ('0889951853', 'Restlessness (Fiction)', 'https://images.isbndb.com/covers/18/53/9780889951853.jpg'), + ('0002005395', 'Deafening', 'https://images.isbndb.com/covers/53/95/9780002005395.jpg'), + ('1551668076', 'Gathering Lies', 'https://images.isbndb.com/covers/80/79/9781551668079.jpg'), + ('0670892084', 'Welcome To My Planet', 'https://images.isbndb.com/covers/20/82/9780670892082.jpg'), + ('0888012748', 'Macaws Of Death (A Robyn Devara Mystery)', 'https://images.isbndb.com/covers/27/46/9780888012746.jpg'), + ('0889951918', 'Shield Country: The Life And Times Of The Oldest Piece Of The Planet (Anthologies)', 'https://images.isbndb.com/covers/19/14/9780889951914.jpg'), + ('0812534085', 'The Ivory And The Horn (Tor Fantasy)', 'https://images.isbndb.com/covers/40/85/9780812534085.jpg'), + ('0888012268', 'Hoot To Kill (Robyn Devara Mysteries)', 'https://images.isbndb.com/covers/22/65/9780888012265.jpg'), + ('0394740181', 'American Indian Myths And Legends (Pantheon Fairy Tale & Folklore Library)', 'https://images.isbndb.com/covers/01/88/9780394740188.jpg'), + ('0812589505', 'Song Of The Axe', 'https://images.isbndb.com/covers/95/04/9780812589504.jpg'), + ('076150592X', 'Small Business Toolkit - Marketing For The Self-Employed', 'https://images.isbndb.com/covers/59/21/9780761505921.jpg'), + ('077109969X', 'The Lost Salt Gift Of Blood', 'https://images.isbndb.com/covers/96/94/9780771099694.jpg'), + ('039304632X', 'The Voyage Of The Narwhal', 'https://images.isbndb.com/covers/63/28/9780393046328.jpg'), + ('1552631885', 'Walking Since Daybreak', 'https://images.isbndb.com/covers/18/81/9781552631881.jpg'), + ('0385475004', 'Joining The Tribe: Growing Up Gay And Lesbian In The ''90s', 'https://images.isbndb.com/covers/50/06/9780385475006.jpg'), + ('0553279580', 'The Valley Of Thunder (Philip Jose Farmer''s Dungeon, Book 3)', 'https://images.isbndb.com/covers/95/80/9780553279580.jpg'), + ('0553276409', 'The Dark Abyss ( The Dungeon, Volume 2)', 'https://images.isbndb.com/covers/64/04/9780553276404.jpg'), + ('0679731725', 'The Remains Of The Day', 'https://images.isbndb.com/covers/17/26/9780679731726.jpg'), + ('0886776287', 'Sing The Four Quarters', 'https://images.isbndb.com/covers/62/82/9780886776282.jpg'), + ('0385172419', 'The Politics Of Women''s Spirituality: Essays By Founding Mothers Of The Movement', 'https://images.isbndb.com/covers/24/17/9780385172417.jpg'), + ('0889223025', 'Les Belles Soeurs: (Revised)', 'https://images.isbndb.com/covers/30/28/9780889223028.jpg'), + ('0889221456', 'Balconville', 'https://images.isbndb.com/covers/14/51/9780889221451.jpg'), + ('0919591566', 'Rapid Transits And Other Stories', 'https://images.isbndb.com/covers/15/61/9780919591561.jpg'), + ('0064402754', 'The Best Christmas Pageant Ever', 'https://images.isbndb.com/covers/27/50/9780064402750.jpg'), + ('088001539X', '20th Century Pleasures', 'https://images.isbndb.com/covers/53/94/9780880015394.jpg'), + ('0380441071', 'Nosferatu The Vampire', 'https://images.isbndb.com/covers/10/75/9780380441075.jpg'), + ('0451210638', 'A Case Of Need', 'https://images.isbndb.com/covers/06/30/9780451210630.jpg'), + ('0345346890', 'For Love Of Mother-Not (Adventures Of Pip And Flinx)', 'https://images.isbndb.com/covers/68/96/9780345346896.jpg'), + ('0486290387', 'Looking Backward (Dover Thrift Editions)', 'https://images.isbndb.com/covers/03/86/9780486290386.jpg'), + ('0525938508', 'Life On The Color Line', 'https://images.isbndb.com/covers/85/07/9780525938507.jpg'), + ('0373052987', 'Destiny''s Daughter (Silhouette Desire, No 298)', 'https://images.isbndb.com/covers/29/81/9780373052981.jpg'), + ('0373052367', 'River Of Dreams (Silhouette Desire)', 'https://images.isbndb.com/covers/23/63/9780373052363.jpg'), + ('0373054742', 'Thin Ice (Desire)', 'https://images.isbndb.com/covers/47/49/9780373054749.jpg'), + ('0671570986', 'Midnight Wine (Silhouette Romance, No. 98)', 'https://images.isbndb.com/covers/09/89/9780671570989.jpg'), + ('0671571117', 'Vancouver Victoria Map', 'https://images.isbndb.com/covers/11/15/9780671571115.jpg'), + ('0373095287', 'If There Be Love (Silhouette Special Edition)', 'https://images.isbndb.com/covers/52/85/9780373095285.jpg'), + ('0440149843', 'Lost Letters (Ecstasy, No 311)', 'https://images.isbndb.com/covers/98/42/9780440149842.jpg'), + ('0440118891', 'Destiny''s Touch', 'https://images.isbndb.com/covers/88/93/9780440118893.jpg'), + ('0440173701', 'Remembrance', 'https://images.isbndb.com/covers/37/00/9780440173700.jpg'), + ('0373089899', 'Seeker (Silhouette Romance)', 'https://images.isbndb.com/covers/98/95/9780373089895.jpg'), + ('0906710618', 'Garfield-Who''s Talking? (Garfield Pocket Books)', 'https://images.isbndb.com/covers/06/16/9780906710616.jpg'), + ('0375432329', 'The Five People You Meet In Heaven (Random House Large Print)', 'https://images.isbndb.com/covers/23/23/9780375432323.jpg'), + ('0399151060', 'Remember When', 'https://images.isbndb.com/covers/10/64/9780399151064.jpg'), + ('0739437631', '311 Pelican Court (Cedar Cove Series #3)', 'https://images.isbndb.com/covers/76/36/9780739437636.jpg'), + ('0345456521', 'No Graves As Yet: A Novel Of World War I, 1st Edition', 'https://images.isbndb.com/covers/65/26/9780345456526.jpg'), + ('0842384065', 'Soon (Underground Zealot Series #1)', 'https://images.isbndb.com/covers/40/63/9780842384063.jpg'), + ('0842332340', 'Armageddon: The Cosmic Battle Of The Ages (Left Behind #11)', 'https://images.isbndb.com/covers/23/47/9780842332347.jpg'), + ('0425191796', 'Letter From Home', 'https://images.isbndb.com/covers/17/98/9780425191798.jpg'), + ('0449207005', 'A Morbid Taste For Bones (Brother Cadfael Mysteries)', 'https://images.isbndb.com/covers/70/00/9780449207000.jpg'), + ('0060809078', 'Gaudy Night', 'https://images.isbndb.com/covers/90/72/9780060809072.jpg'), + ('0446600768', 'Snagged (Regan Reilly Mystery Series, Book 2)', 'https://images.isbndb.com/covers/07/67/9780446600767.jpg'), + ('0451186729', 'Somebody Else''s Child', 'https://images.isbndb.com/covers/67/20/9780451186720.jpg'), + ('074341134X', 'True To Form : A Novel', 'https://images.isbndb.com/covers/13/49/9780743411349.jpg'), + ('0804103658', 'Radiant Way', 'https://images.isbndb.com/covers/36/57/9780804103657.jpg'), + ('0345347676', 'Camber Of Culdi (Legends Of Camber Of Culdi)', 'https://images.isbndb.com/covers/76/71/9780345347671.jpg'), + ('0553109332', 'The Things I Want Most: The Extraordinary Story Of A Boy''s Journey To A Family Of His Own', 'https://images.isbndb.com/covers/93/37/9780553109337.jpg'), + ('0764225170', 'Shadows Of The Canyon (Desert Roses #1)', 'https://images.isbndb.com/covers/51/78/9780764225178.jpg'), + ('0395636264', 'River-Horse: A Voyage Across America', 'https://images.isbndb.com/covers/62/68/9780395636268.jpg'), + ('0451402383', 'Fire Song (Song Novels)', 'https://images.isbndb.com/covers/23/87/9780451402387.jpg'), + ('0451402340', 'Secret Song (Song Novels)', 'https://images.isbndb.com/covers/23/49/9780451402349.jpg'), + ('0345284364', 'The Stories Of John Cheever', 'https://images.isbndb.com/covers/43/65/9780345284365.jpg'), + ('0671525751', 'Someone To Watch Over Me : A Novel', 'https://images.isbndb.com/covers/57/50/9780671525750.jpg'), + ('0743227611', 'The Silent Lady: A Novel', 'https://images.isbndb.com/covers/76/12/9780743227612.jpg'), + ('0670030511', 'Stones Of Jerusalem (Zion Legacy)', 'https://images.isbndb.com/covers/05/14/9780670030514.jpg'), + ('0670891797', 'Aunt Dimity Beats The Devil', 'https://images.isbndb.com/covers/17/95/9780670891795.jpg'), + ('015100692X', 'The Crimson Petal And The White', 'https://images.isbndb.com/covers/69/22/9780151006922.jpg'), + ('0802733794', 'Sins Out Of School (Dorothy Martin Mysteries, No. 8)', 'https://images.isbndb.com/covers/37/95/9780802733795.jpg'), + ('0609602497', 'On Mystic Lake', 'https://images.isbndb.com/covers/24/92/9780609602492.jpg'), + ('0312864833', 'The Crystal City (Tales Of Alvin Maker, Book 6)', 'https://images.isbndb.com/covers/48/35/9780312864835.jpg'), + ('1888363819', 'Parable Of The Talents: A Novel', 'https://images.isbndb.com/covers/38/14/9781888363814.jpg'), + ('0802713432', 'Galileo''s Daughter', 'https://images.isbndb.com/covers/34/38/9780802713438.jpg'), + ('0375431314', 'The World Below (Random House Large Print)', 'https://images.isbndb.com/covers/13/19/9780375431319.jpg'), + ('155166884X', 'Doing Good', 'https://images.isbndb.com/covers/88/40/9781551668840.jpg'), + ('0783889542', 'Galileo''s Daughter: A Historical Memoir Of Science, Faith, And Love', 'https://images.isbndb.com/covers/95/42/9780783889542.jpg'), + ('0156790157', 'The Roots Of Treason: Ezra Pound And The Secret Of St. Elizabeths', 'https://images.isbndb.com/covers/01/54/9780156790154.jpg'), + ('0312272197', 'The Wedding: A Novel', 'https://images.isbndb.com/covers/21/97/9780312272197.jpg'), + ('0312863462', 'Secret Passages', 'https://images.isbndb.com/covers/34/63/9780312863463.jpg'), + ('0743446496', 'The Right Words At The Right Time', 'https://images.isbndb.com/covers/64/95/9780743446495.jpg'), + ('0385502176', 'Open Secrets: A Spiritual Journey Through A Country Church', 'https://images.isbndb.com/covers/21/77/9780385502177.jpg'), + ('0060158638', 'The Bean Trees', 'https://images.isbndb.com/covers/86/37/9780060158637.jpg'), + ('0805056637', 'Are You Somebody?: The Accidental Memoir Of A Dublin Woman', 'https://images.isbndb.com/covers/66/31/9780805056631.jpg'), + ('0064407691', 'The Miserable Mill (A Series Of Unfortunate Events, Book 4)', 'https://images.isbndb.com/covers/76/94/9780064407694.jpg'), + ('0385314698', 'The Sixteen Pleasures: A Novel', 'https://images.isbndb.com/covers/46/95/9780385314695.jpg'), + ('0156000520', 'Clabbered Dirt, Sweet Grass', 'https://images.isbndb.com/covers/05/29/9780156000529.jpg'), + ('0553110004', 'All Things Bright And Beautiful', 'https://images.isbndb.com/covers/00/05/9780553110005.jpg'), + ('0881762024', 'Campbell''s Creative Cooking With Soup: Over 19,000 Delicious Mix And Match Recipes', 'https://images.isbndb.com/covers/20/20/9780881762020.jpg'), + ('0312208804', 'Biggie And The Meddlesome Mailman', 'https://images.isbndb.com/covers/88/06/9780312208806.jpg'), + ('076455168X', 'Weight Training For Dummies', 'https://images.isbndb.com/covers/16/80/9780764551680.jpg'), + ('087483435X', 'Storytelling Coach: How To Listen, Praise, And Bring Out People''s Best (American Storytelling)', 'https://images.isbndb.com/covers/43/52/9780874834352.jpg'), + ('0590415719', 'It''s Thanksgiving', 'https://images.isbndb.com/covers/57/12/9780590415712.jpg'), + ('0070540403', 'Presenting & Training With Magic : 53 Simple Magic Tricks You Can Use To Energize Any Audience', 'https://images.isbndb.com/covers/04/08/9780070540408.jpg'), + ('1563083701', 'Storytelling Professionally: The Nuts And Bolts Of A Working Performer', 'https://images.isbndb.com/covers/37/09/9781563083709.jpg'), + ('0938756370', 'The Ghost & I: Scary Stories For Paticipatory Telling', 'https://images.isbndb.com/covers/63/78/9780938756378.jpg'), + ('0917846494', 'Beyond Words: Great Stories For Hand And Voice', 'https://images.isbndb.com/covers/64/96/9780917846496.jpg'), + ('0874835909', 'Shake-It-Up Tales!', 'https://images.isbndb.com/covers/59/08/9780874835908.jpg'), + ('0385127685', 'Paul Harvey''s The Rest Of The Story', 'https://images.isbndb.com/covers/76/84/9780385127684.jpg'), + ('0874834473', 'Eleven Nature Tales: A Multicultural Journey (World Storytelling) (World Storytelling From August House)', 'https://images.isbndb.com/covers/44/75/9780874834475.jpg'), + ('0963870580', 'How To Make Money Performing In Schools: The Definitive Guide To Developing, Marketing, And Presenting School Assembly Programs', 'https://images.isbndb.com/covers/05/82/9780963870582.jpg'), + ('1566197198', 'A-Z Steps To A Richer Life', 'https://images.isbndb.com/covers/71/99/9781566197199.jpg'), + ('0945353863', 'Read It Again!: How To Read Aloud To Kids', 'https://images.isbndb.com/covers/38/67/9780945353867.jpg'), + ('0192761870', 'The Oxford Treasury Of Classic Poems (Oxford Treasury Classics)', 'https://images.isbndb.com/covers/18/73/9780192761873.jpg'), + ('0060193328', 'First They Killed My Father: A Daughter Of Cambodia Remembers', 'https://images.isbndb.com/covers/33/24/9780060193324.jpg'), + ('044900211X', 'The Marching Season', 'https://images.isbndb.com/covers/21/17/9780449002117.jpg'), + ('0786000511', 'Barbra Streisand: The Untold Story', 'https://images.isbndb.com/covers/05/17/9780786000517.jpg'), + ('0553373730', 'Fractured Fairy Tales', 'https://images.isbndb.com/covers/37/38/9780553373738.jpg'), + ('0671004239', 'The Locket', 'https://images.isbndb.com/covers/42/31/9780671004231.jpg'), + ('084236966X', 'Thieves', 'https://images.isbndb.com/covers/96/64/9780842369664.jpg'), + ('0843946954', 'You Come When I Call You', 'https://images.isbndb.com/covers/69/56/9780843946956.jpg'), + ('0786866020', 'Fish! A Remarkable Way To Boost Morale And Improve Results', 'https://images.isbndb.com/covers/60/21/9780786866021.jpg'), + ('0399146725', 'The Jury', 'https://images.isbndb.com/covers/67/25/9780399146725.jpg'), + ('0449006565', 'The Whitechapel Conspiracy', 'https://images.isbndb.com/covers/65/66/9780449006566.jpg'), + ('0345440048', 'Southampton Row (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/00/44/9780345440044.jpg'), + ('0345385071', 'Shadow Play', 'https://images.isbndb.com/covers/50/79/9780345385079.jpg'), + ('0553580337', 'House Corrino (Dune: House Trilogy, Book 3)', 'https://images.isbndb.com/covers/03/34/9780553580334.jpg'), + ('0425153088', 'Leave The Grave Green', 'https://images.isbndb.com/covers/30/86/9780425153086.jpg'), + ('0425166139', 'The Raphael Affair (Art History Mystery)', 'https://images.isbndb.com/covers/61/30/9780425166130.jpg'), + ('0140282513', 'A Clear Conscience (Helen West Mystery)', 'https://images.isbndb.com/covers/25/11/9780140282511.jpg'), + ('0345376579', 'The End Of The Pier', 'https://images.isbndb.com/covers/65/72/9780345376572.jpg'), + ('0451458540', 'Once Upon A Winter''s Night', 'https://images.isbndb.com/covers/85/44/9780451458544.jpg'), + ('0441007511', 'Out Of Time', 'https://images.isbndb.com/covers/75/16/9780441007516.jpg'), + ('0380791285', 'Sky Of Swords : A Tale Of The King''s Blades', 'https://images.isbndb.com/covers/12/86/9780380791286.jpg'), + ('0380791277', 'Lord Of The Fire Lands: A Tale Of The King''s Blades', 'https://images.isbndb.com/covers/12/79/9780380791279.jpg'), + ('0671629689', 'Dream Kinship', 'https://images.isbndb.com/covers/96/87/9780671629687.jpg'), + ('0671027212', 'Frontiers', 'https://images.isbndb.com/covers/72/16/9780671027216.jpg'), + ('075284413X', 'Dead Souls (Inspector Rebus)', 'https://images.isbndb.com/covers/41/38/9780752844138.jpg'), + ('0460878247', 'Poetry Please Eman Poet Lib #09 (Everyman Poetry)', 'https://images.isbndb.com/covers/82/41/9780460878241.jpg'), + ('0670899771', 'Our Lady Of The Lost And Found: A Novel Of Mary, Faith, And Friendship', 'https://images.isbndb.com/covers/97/77/9780670899777.jpg'), + ('0700606572', 'Founding Fathers: Brief Lives Of The Framers Of The United States Constitution', 'https://images.isbndb.com/covers/65/73/9780700606573.jpg'), + ('0874775191', 'The Healing Power Of Humor', 'https://images.isbndb.com/covers/51/98/9780874775198.jpg'), + ('0060391634', 'Slouching Towards Gomorrah', 'https://images.isbndb.com/covers/16/38/9780060391638.jpg'), + ('0374192030', 'The Lexus And The Olive Tree', 'https://images.isbndb.com/covers/20/37/9780374192037.jpg'), + ('345313138X', 'Das Amulett Von Ruwenda.', 'https://images.isbndb.com/covers/13/85/9783453131385.jpg'), + ('2038716633', 'L''École Des Femmes, Texte Intégral', 'https://images.isbndb.com/covers/66/34/9782038716634.jpg'), + ('1400001625', 'Sultana (Spanish Edition)', 'https://images.isbndb.com/covers/16/20/9781400001620.jpg'), + ('0192833901', 'A Tale Of Two Cities (Oxford World''s Classics)', 'https://images.isbndb.com/covers/39/07/9780192833907.jpg'), + ('0140432620', 'Daisy Miller (Penguin Classics)', 'https://images.isbndb.com/covers/26/26/9780140432626.jpg'), + ('0939218208', 'The Narrative Of The Captivity And Restoration Of Mrs. Mary Rowlandson', 'https://images.isbndb.com/covers/82/02/9780939218202.jpg'), + ('0679457526', 'Into Thin Air: A Personal Account Of The Mount Everest Disaster', 'https://images.isbndb.com/covers/75/27/9780679457527.jpg'), + ('037550298X', 'Geeks: How Two Lost Boys Rode The Internet Out Of Idaho', 'https://images.isbndb.com/covers/29/89/9780375502989.jpg'), + ('3423130989', 'Gegen Den Strich: Roman', 'https://images.isbndb.com/covers/09/81/9783423130981.jpg'), + ('3463403021', 'Der Boden Unter Ihren Füßen', 'https://images.isbndb.com/covers/30/21/9783463403021.jpg'), + ('1561451010', 'Out To Pasture: But Not Over The Hill', 'https://images.isbndb.com/covers/10/12/9781561451012.jpg'), + ('0385496052', 'What The Body Remembers: A Novel', 'https://images.isbndb.com/covers/60/56/9780385496056.jpg'), + ('006103066X', 'The Shark Mutiny (Harper Torch 103066)', 'https://images.isbndb.com/covers/06/66/9780061030666.jpg'), + ('0446610550', 'The Playboy (The Chandler Brothers, Book 2)', 'https://images.isbndb.com/covers/05/51/9780446610551.jpg'), + ('0399150412', 'White Death: A Novel From The Numa Files', 'https://images.isbndb.com/covers/04/18/9780399150418.jpg'), + ('0440207770', 'Silver Wedding', 'https://images.isbndb.com/covers/77/71/9780440207771.jpg'), + ('0861710649', 'Mindfulness In Plain English', 'https://images.isbndb.com/covers/06/45/9780861710645.jpg'), + ('0062585215', 'Northern Edge: A Novel Of Survival In Alaska''s Arctic', 'https://images.isbndb.com/covers/52/19/9780062585219.jpg'), + ('0553297945', 'The Wakefield Legacy (Sweet Valley High)', 'https://images.isbndb.com/covers/79/42/9780553297942.jpg'), + ('1901881555', 'Sweet Dreamer: A Guide For Young Dreamers (Cosmic Kits)', 'https://images.isbndb.com/covers/15/54/9781901881554.jpg'), + ('0440228352', 'Whirligig', 'https://images.isbndb.com/covers/83/56/9780440228356.jpg'), + ('0679894772', 'Seuss-isms For Success (Life Favors(TM))', 'https://images.isbndb.com/covers/47/73/9780679894773.jpg'), + ('0886776783', 'The Perfect Princess (Dragon Nimbus)', 'https://images.isbndb.com/covers/67/87/9780886776787.jpg'), + ('9500705117', 'Otona Del Patriarca (Spanish Edition)', 'https://images.isbndb.com/covers/51/10/9789500705110.jpg'), + ('0571206484', 'Prodigal Summer', 'https://images.isbndb.com/covers/64/83/9780571206483.jpg'), + ('0743201116', 'The Faeries'' Oracle', 'https://images.isbndb.com/covers/11/17/9780743201117.jpg'), + ('0316769509', 'Nine Stories', 'https://images.isbndb.com/covers/95/01/9780316769501.jpg'), + ('0553585509', 'Turning The Storm', 'https://images.isbndb.com/covers/55/06/9780553585506.jpg'), + ('0451150716', 'Carrie (Signet)', 'https://images.isbndb.com/covers/07/14/9780451150714.jpg'), + ('0380704161', 'Through A Glass Darkly', 'https://images.isbndb.com/covers/41/63/9780380704163.jpg'), + ('0812553861', 'Sofia', 'https://images.isbndb.com/covers/38/64/9780812553864.jpg'), + ('1403905843', 'Authoring A PhD Thesis: How To Plan, Draft, Write And Finish A Doctoral Dissertation', 'https://images.isbndb.com/covers/58/40/9781403905840.jpg'), + ('0399137920', 'Claude', 'https://images.isbndb.com/covers/79/21/9780399137921.jpg'), + ('0786814225', 'Wild Blood (Switchers)', 'https://images.isbndb.com/covers/42/20/9780786814220.jpg'), + ('0886775280', 'Christmas Bestiary', 'https://images.isbndb.com/covers/52/85/9780886775285.jpg'), + ('0061059056', 'Hogfather', 'https://images.isbndb.com/covers/90/56/9780061059056.jpg'), + ('0304353493', 'Tales From Kings African Rifles (Cassell Military Paperbacks)', 'https://images.isbndb.com/covers/34/91/9780304353491.jpg'), + ('3770149599', 'Ein Hinreissender Schrotthändler', 'https://images.isbndb.com/covers/95/99/9783770149599.jpg'), + ('344243761X', 'Das Hotel Am See.', 'https://images.isbndb.com/covers/76/10/9783442437610.jpg'), + ('3596129052', 'Briefe Einer Verhinderten Emanze', 'https://images.isbndb.com/covers/90/58/9783596129058.jpg'), + ('0738849901', 'Counterpoint', 'https://images.isbndb.com/covers/99/04/9780738849904.jpg'), + ('0739438573', 'Black Water (Book Club Edition)', 'https://images.isbndb.com/covers/85/72/9780739438572.jpg'), + ('037541178X', 'While I Was Gone', 'https://images.isbndb.com/covers/17/86/9780375411786.jpg'), + ('039914675X', 'The Cat Who Went Up The Creek', 'https://images.isbndb.com/covers/67/56/9780399146756.jpg'), + ('0061066079', 'Without Wonder (Thoroughbred Series #36)', 'https://images.isbndb.com/covers/60/78/9780061066078.jpg'), + ('0451522796', 'The Signet Classic Book Of American Short Stories', 'https://images.isbndb.com/covers/27/95/9780451522795.jpg'), + ('157748794X', 'Montana: A Legacy Of Faith And Love In Four Complete Novels (Autumn Love / Contagious Love / Inspired Love / Distant Love)', 'https://images.isbndb.com/covers/79/44/9781577487944.jpg'), + ('0671007610', 'Olivia (Logan Family)', 'https://images.isbndb.com/covers/76/14/9780671007614.jpg'), + ('0671534718', 'Melody (Logan)', 'https://images.isbndb.com/covers/47/14/9780671534714.jpg'), + ('0440904196', 'Are You There God? It''s Me, Margaret', 'https://images.isbndb.com/covers/41/99/9780440904199.jpg'), + ('1885840020', 'They''re Killing Our Children: Inside The Kidnapping & Child Murder Epidemic Sweeping America', 'https://images.isbndb.com/covers/00/28/9781885840028.jpg'), + ('0553273299', 'Flashback', 'https://images.isbndb.com/covers/32/98/9780553273298.jpg'), + ('0671741187', 'Where Are The Children?', 'https://images.isbndb.com/covers/11/81/9780671741181.jpg'), + ('0590568795', 'Egg Monsters From Mars (Goosebumps #42)', 'https://images.isbndb.com/covers/87/91/9780590568791.jpg'), + ('0590568825', 'Ghost Camp (Goosebumps, No 45)', 'https://images.isbndb.com/covers/88/21/9780590568821.jpg'), + ('0590568744', 'The Headless Ghost (Goosebumps, No 37)', 'https://images.isbndb.com/covers/87/46/9780590568746.jpg'), + ('0590483471', 'Monster Blood III (Goosebumps, No. 29)', 'https://images.isbndb.com/covers/34/76/9780590483476.jpg'), + ('0590483455', 'The Horror At Camp Jellyjam (Goosebumps)', 'https://images.isbndb.com/covers/34/52/9780590483452.jpg'), + ('0590483544', 'Phantom Of The Auditorium (Goosebumps #24)', 'https://images.isbndb.com/covers/35/44/9780590483544.jpg'), + ('059048351X', 'A Night In Terror Tower (Goosebumps # 27)', 'https://images.isbndb.com/covers/35/13/9780590483513.jpg'), + ('0590568752', 'The Abominable Snowman Of Pasadena (Goosebumps, No 38)', 'https://images.isbndb.com/covers/87/53/9780590568753.jpg'), + ('0590483552', 'GOOSEBUMPS ATTACK OF THE MUTANT', 'https://images.isbndb.com/covers/35/51/9780590483551.jpg'), + ('0590568760', 'How I Got My Shrunken Head (Goosebumps, No 39)', 'https://images.isbndb.com/covers/87/60/9780590568760.jpg'), + ('0590494503', 'You Can''t Scare Me! (Goosebumps)', 'https://images.isbndb.com/covers/45/02/9780590494502.jpg'), + ('0590483501', 'My Hairiest Adventure (Goosebumps)', 'https://images.isbndb.com/covers/35/06/9780590483506.jpg'), + ('0312110790', 'Three Squirt Dog', 'https://images.isbndb.com/covers/07/96/9780312110796.jpg'), + ('0517585154', 'Time''s Arrow', 'https://images.isbndb.com/covers/51/53/9780517585153.jpg'), + ('1585421359', 'The Fasting Girl: A True Victorian Medical Mystery', 'https://images.isbndb.com/covers/13/50/9781585421350.jpg'), + ('0805064478', 'Wrack: A Novel', 'https://images.isbndb.com/covers/44/76/9780805064476.jpg'), + ('9023405587', 'De Ergste Treitertrends (BB Literair) (Dutch Edition)', 'https://images.isbndb.com/covers/55/80/9789023405580.jpg'), + ('0743467329', 'Final Jeopardy', 'https://images.isbndb.com/covers/73/22/9780743467322.jpg'), + ('044900709X', 'Malice Downstream (Erskine Powell, Book 5)', 'https://images.isbndb.com/covers/70/99/9780449007099.jpg'), + ('0345453409', 'Dying To Please', 'https://images.isbndb.com/covers/34/02/9780345453402.jpg'), + ('0440147190', 'The Legacy (The Lavette Saga, No. 4)', 'https://images.isbndb.com/covers/71/90/9780440147190.jpg'), + ('0451456068', 'The Jigsaw Woman', 'https://images.isbndb.com/covers/60/69/9780451456069.jpg'), + ('0060521902', 'A Path Of Shadows', 'https://images.isbndb.com/covers/19/05/9780060521905.jpg'), + ('0743482212', 'Sugar Skull: An Eve Diamond Novel (Eve Diamond Novels)', 'https://images.isbndb.com/covers/22/19/9780743482219.jpg'), + ('0812520327', 'Psychamok (Psychomech Trilogy)', 'https://images.isbndb.com/covers/03/23/9780812520323.jpg'), + ('037321877X', 'Dangerous Affair: Dangerous Magic / Affair Of Honor', 'https://images.isbndb.com/covers/87/76/9780373218776.jpg'), + ('0440235154', 'Where You Belong', 'https://images.isbndb.com/covers/51/56/9780440235156.jpg'), + ('0964631601', 'Pierced By A Sword', 'https://images.isbndb.com/covers/16/01/9780964631601.jpg'), + ('0515136433', 'Man Eater', 'https://images.isbndb.com/covers/64/32/9780515136432.jpg'), + ('0786010126', 'Song Of Eagles (The Eagles)', 'https://images.isbndb.com/covers/01/27/9780786010127.jpg'), + ('0671452533', 'The Golden Swan', 'https://images.isbndb.com/covers/25/37/9780671452537.jpg'), + ('0373037716', 'Outback Bridegroom: Koomera Crossing (Harlequin Romance)', 'https://images.isbndb.com/covers/77/11/9780373037711.jpg'), + ('0345295463', 'Trouble Valley', 'https://images.isbndb.com/covers/54/60/9780345295460.jpg'), + ('0743424107', 'Deadly Embrace', 'https://images.isbndb.com/covers/41/03/9780743424103.jpg'), + ('0425190943', 'Justice Gun', 'https://images.isbndb.com/covers/09/44/9780425190944.jpg'), + ('0312984839', 'Dance With The Devil (Dark-Hunter, Book 4)', 'https://images.isbndb.com/covers/48/30/9780312984830.jpg'), + ('0446353957', 'Mirror Image', 'https://images.isbndb.com/covers/39/53/9780446353953.jpg'), + ('0373835922', 'Lawless (Loving Jack)', 'https://images.isbndb.com/covers/59/28/9780373835928.jpg'), + ('0449003302', 'Grievous Sin (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/33/05/9780449003305.jpg'), + ('0312987013', 'Minion (Vampire Huntress Legend)', 'https://images.isbndb.com/covers/70/15/9780312987015.jpg'), + ('0399140751', 'The Cat Who Said Cheese', 'https://images.isbndb.com/covers/07/54/9780399140754.jpg'), + ('0743479068', 'Dark Desire: A Vampire Novel', 'https://images.isbndb.com/covers/90/66/9780743479066.jpg'), + ('0671722131', 'Some Can Whistle', 'https://images.isbndb.com/covers/21/35/9780671722135.jpg'), + ('0812575393', 'Dead Hand', 'https://images.isbndb.com/covers/53/92/9780812575392.jpg'), + ('0451172507', 'Everlasting (Signet)', 'https://images.isbndb.com/covers/25/01/9780451172501.jpg'), + ('0312993536', 'Sons Of Fortune', 'https://images.isbndb.com/covers/35/35/9780312993535.jpg'), + ('0061056383', 'Foundation''s Fear (Foundation Trilogy)', 'https://images.isbndb.com/covers/63/83/9780061056383.jpg'), + ('0373222815', 'Hunter''S Moon (Harlequin Intrigue)', 'https://images.isbndb.com/covers/28/10/9780373222810.jpg'), + ('0451210972', 'Eating For Life: One Simple Diet For Total Health', 'https://images.isbndb.com/covers/09/75/9780451210975.jpg'), + ('3453177746', 'Hannibal', 'https://images.isbndb.com/covers/77/41/9783453177741.jpg'), + ('0747257833', 'Perfect Timing', 'https://images.isbndb.com/covers/78/37/9780747257837.jpg'), + ('0399129111', 'Twelve Apostles', 'https://images.isbndb.com/covers/91/17/9780399129117.jpg'), + ('0399131280', 'Her Father''s Daughter', 'https://images.isbndb.com/covers/12/88/9780399131288.jpg'), + ('0312059612', 'Shadow Of A Doubt', 'https://images.isbndb.com/covers/96/13/9780312059613.jpg'), + ('039915034X', 'Star Witness', 'https://images.isbndb.com/covers/03/40/9780399150340.jpg'), + ('0345428293', 'Trust Fund', 'https://images.isbndb.com/covers/82/95/9780345428295.jpg'), + ('0743411323', 'Never Change', 'https://images.isbndb.com/covers/13/25/9780743411325.jpg'), + ('0805053077', 'The Defense', 'https://images.isbndb.com/covers/30/74/9780805053074.jpg'), + ('0446527378', 'The Judgment', 'https://images.isbndb.com/covers/73/78/9780446527378.jpg'), + ('0312155581', 'The Judgment', 'https://images.isbndb.com/covers/55/82/9780312155582.jpg'), + ('0060177012', 'Death Penalty: A Novel', 'https://images.isbndb.com/covers/70/10/9780060177010.jpg'), + ('0312280661', 'Proof Of Intent: A Charley Sloan Courtroom Thriller', 'https://images.isbndb.com/covers/06/66/9780312280666.jpg'), + ('0446527386', 'The Legacy', 'https://images.isbndb.com/covers/73/85/9780446527385.jpg'), + ('0805071903', 'The Romantic: A Novel', 'https://images.isbndb.com/covers/19/00/9780805071900.jpg'), + ('0345443268', 'Silent Partner', 'https://images.isbndb.com/covers/32/67/9780345443267.jpg'), + ('0449908593', 'Prizes', 'https://images.isbndb.com/covers/85/94/9780449908594.jpg'), + ('0449911799', 'Clock Winder (1st Ballantine Books Trade Ed)', 'https://images.isbndb.com/covers/17/92/9780449911792.jpg'), + ('0449911721', 'Morgan''s Passing', 'https://images.isbndb.com/covers/17/23/9780449911723.jpg'), + ('0449911780', 'If Morning Ever Comes: A Novel', 'https://images.isbndb.com/covers/17/85/9780449911785.jpg'), + ('0449911896', 'The Tin Can Tree: A Novel (1st Ballantine Books Trade Ed)', 'https://images.isbndb.com/covers/18/91/9780449911891.jpg'), + ('0345410033', 'Games People Play: The Basic Handbook Of Transactional Analysis.', 'https://images.isbndb.com/covers/00/30/9780345410030.jpg'), + ('0345439600', 'The Black Rose', 'https://images.isbndb.com/covers/96/04/9780345439604.jpg'), + ('0030597862', 'An Unknown Woman: A Journey To Self-Discovery', 'https://images.isbndb.com/covers/78/62/9780030597862.jpg'), + ('0345353617', 'The Women''s Room', 'https://images.isbndb.com/covers/36/10/9780345353610.jpg'), + ('0061003964', 'The Watershed', 'https://images.isbndb.com/covers/39/67/9780061003967.jpg'), + ('0553561111', 'Scruples Two', 'https://images.isbndb.com/covers/11/11/9780553561111.jpg'), + ('0671024353', 'Until We Meet Again', 'https://images.isbndb.com/covers/43/52/9780671024352.jpg'), + ('0446601853', 'Charade', 'https://images.isbndb.com/covers/18/56/9780446601856.jpg'), + ('0758203896', 'Easy', 'https://images.isbndb.com/covers/38/92/9780758203892.jpg'), + ('0373121717', 'Seductive Revenge (Red Hot Revenge) (Harlequin Presents)', 'https://images.isbndb.com/covers/17/17/9780373121717.jpg'), + ('0385411235', 'Mommy Club, The', 'https://images.isbndb.com/covers/12/33/9780385411233.jpg'), + ('0060989238', 'Hunger Point: A Novel', 'https://images.isbndb.com/covers/92/31/9780060989231.jpg'), + ('0758206283', 'The Fabulous Emily Briggs', 'https://images.isbndb.com/covers/62/82/9780758206282.jpg'), + ('0060195460', 'Keep It Simple, Stupid: You''re Smarter Than You Look', 'https://images.isbndb.com/covers/54/65/9780060195465.jpg'), + ('0312992327', 'Public Displays Of Affection', 'https://images.isbndb.com/covers/23/23/9780312992323.jpg'), + ('0380727293', 'Dr. Atkins'' New Diet Revolution', 'https://images.isbndb.com/covers/72/92/9780380727292.jpg'), + ('0967303516', 'Mossy Creek', 'https://images.isbndb.com/covers/35/12/9780967303512.jpg'), + ('0553561375', 'The Jewels Of Tessa Kent', 'https://images.isbndb.com/covers/13/71/9780553561371.jpg'), + ('0449211584', 'Chesapeake', 'https://images.isbndb.com/covers/15/88/9780449211588.jpg'), + ('0452280192', 'You Must Remember This', 'https://images.isbndb.com/covers/01/99/9780452280199.jpg'), + ('0060186941', 'Leading With My Chin', 'https://images.isbndb.com/covers/69/44/9780060186944.jpg'), + ('0553110748', 'John Glenn: A Memoir', 'https://images.isbndb.com/covers/07/46/9780553110746.jpg'), + ('0786863269', 'Between Each Line Of Pain And Glory: My Life Story', 'https://images.isbndb.com/covers/32/66/9780786863266.jpg'), + ('0688110290', 'Gifts Of Time', 'https://images.isbndb.com/covers/02/91/9780688110291.jpg'), + ('0060196300', 'U.S.S. Seawolf', 'https://images.isbndb.com/covers/63/01/9780060196301.jpg'), + ('0684850737', 'The Prisoner''s Wife', 'https://images.isbndb.com/covers/07/33/9780684850733.jpg'), + ('0810931850', 'Cat Horoscopes: For Each Of Your Cat''s Nine Lives', 'https://images.isbndb.com/covers/18/55/9780810931855.jpg'), + ('0030463262', 'ROBERT FROST A Tribute To The Source', 'https://images.isbndb.com/covers/32/66/9780030463266.jpg'), + ('0449235998', 'Lucifer''s Hammer', 'https://images.isbndb.com/covers/59/97/9780449235997.jpg'), + ('0451524780', 'The Hound Of The Baskervilles (Signet Classics)', 'https://images.isbndb.com/covers/47/82/9780451524782.jpg'), + ('3499229935', 'Nur Nicht Unsichtbar Werden: Ein Irisches Leben', 'https://images.isbndb.com/covers/99/30/9783499229930.jpg'), + ('2871294011', 'Inu-Yasha, Tome 1', 'https://images.isbndb.com/covers/40/16/9782871294016.jpg'), + ('0312872836', 'Witch Hill', 'https://images.isbndb.com/covers/28/30/9780312872830.jpg'), + ('0140258175', 'Emma', 'https://images.isbndb.com/covers/81/72/9780140258172.jpg'), + ('1569312036', 'Ranma 1/2, Vol. 9', 'https://images.isbndb.com/covers/20/32/9781569312032.jpg'), + ('1569312028', 'Ranma 1/2, Vol. 8', 'https://images.isbndb.com/covers/20/25/9781569312025.jpg'), + ('1569311285', 'Ranma 1/2, Vol. 7', 'https://images.isbndb.com/covers/12/88/9781569311288.jpg'), + ('1569311374', 'Ranma 1/2, Vol. 6', 'https://images.isbndb.com/covers/13/70/9781569311370.jpg'), + ('1569310858', 'Ranma 1/2: Vol. 4', 'https://images.isbndb.com/covers/08/54/9781569310854.jpg'), + ('1569310203', 'Ranma 1/2, Vol. 3', 'https://images.isbndb.com/covers/02/05/9781569310205.jpg'), + ('1569310165', 'Ranma 1/2, Vol. 2', 'https://images.isbndb.com/covers/01/68/9781569310168.jpg'), + ('1569319626', 'Ranma 1/2, Vol. 1', 'https://images.isbndb.com/covers/96/28/9781569319628.jpg'), + ('1568361181', 'Sailor Moon, Friends And Foes', 'https://images.isbndb.com/covers/11/85/9781568361185.jpg'), + ('1568361173', 'Meet Sailor Moon', 'https://images.isbndb.com/covers/11/78/9781568361178.jpg'), + ('1892213974', 'Sailor Moon Stars # 3', 'https://images.isbndb.com/covers/39/76/9781892213976.jpg'), + ('159264029X', 'The Blessing Of A Broken Heart', 'https://images.isbndb.com/covers/02/94/9781592640294.jpg'), + ('0140074317', 'The Neverending Story', 'https://images.isbndb.com/covers/43/14/9780140074314.jpg'), + ('1874061688', 'Tanners Twelve Swingers', 'https://images.isbndb.com/covers/16/87/9781874061687.jpg'), + ('0670875953', 'White City Blue', 'https://images.isbndb.com/covers/59/55/9780670875955.jpg'), + ('1590580680', 'The Fig Tree Murder: A Mamur Zapt Mystery (Mamur Zapt Mysteries)', 'https://images.isbndb.com/covers/06/84/9781590580684.jpg'), + ('014026065X', 'The Little Book Of Calm', 'https://images.isbndb.com/covers/06/56/9780140260656.jpg'), + ('0714120022', 'Ancient Olympic Games Pb', 'https://images.isbndb.com/covers/00/27/9780714120027.jpg'), + ('0786810424', 'Nancy Kerrigan: In My Own Words', 'https://images.isbndb.com/covers/04/20/9780786810420.jpg'), + ('0740706020', 'Mia Hamm', 'https://images.isbndb.com/covers/60/28/9780740706028.jpg'), + ('0316142573', 'On The Ice With...Tara Lapinski (Athlete Biographies)', 'https://images.isbndb.com/covers/25/71/9780316142571.jpg'), + ('0789447649', 'Going For Gold! (DK Readers: Level 4: Proficient Readers)', 'https://images.isbndb.com/covers/76/47/9780789447647.jpg'), + ('0448431025', 'Sarah Hughes: Golden Girl (All Aboard Reading)', 'https://images.isbndb.com/covers/10/24/9780448431024.jpg'), + ('1876825251', 'Golden Girl: An Autobiography', 'https://images.isbndb.com/covers/52/56/9781876825256.jpg'), + ('1575727331', 'The Greeks (Crafts From The Past)', 'https://images.isbndb.com/covers/73/32/9781575727332.jpg'), + ('0141310979', 'It''s All Greek To Me (Time Warp Trio)', 'https://images.isbndb.com/covers/09/78/9780141310978.jpg'), + ('0394751027', 'The Praise Singer', 'https://images.isbndb.com/covers/10/23/9780394751023.jpg'), + ('0525470417', 'A Handbook Of Greek Mythology', 'https://images.isbndb.com/covers/04/10/9780525470410.jpg'), + ('0451628004', 'Gods, Heroes And Men Of Ancient Greece (Mentor)', 'https://images.isbndb.com/covers/80/08/9780451628008.jpg'), + ('0451198808', 'South: The Endurance Expedition', 'https://images.isbndb.com/covers/88/08/9780451198808.jpg'), + ('0446603422', 'STORMY WEATHER,', 'https://images.isbndb.com/covers/34/23/9780446603423.jpg'), + ('0672604426', 'Three Greek Romances', 'https://images.isbndb.com/covers/44/23/9780672604423.jpg'), + ('0915144182', 'Plato''s Phaedo', 'https://images.isbndb.com/covers/41/81/9780915144181.jpg'), + ('0316141631', 'Olympic Dream (Matt Christopher Sports Classics)', 'https://images.isbndb.com/covers/16/35/9780316141635.jpg'), + ('0449206092', 'Moon-Spinners', 'https://images.isbndb.com/covers/60/96/9780449206096.jpg'), + ('0876853904', 'Women', 'https://images.isbndb.com/covers/39/00/9780876853900.jpg'), + ('0553100017', 'Prime Cut', 'https://images.isbndb.com/covers/00/13/9780553100013.jpg'), + ('0553100009', 'The Grilling Season', 'https://images.isbndb.com/covers/00/06/9780553100006.jpg'), + ('0684195984', 'From Potter''s Field', 'https://images.isbndb.com/covers/59/88/9780684195988.jpg'), + ('0399141464', 'Cause Of Death (Patricia Cornwell)', 'https://images.isbndb.com/covers/14/61/9780399141461.jpg'), + ('0684195305', 'Cruel And Unusual', 'https://images.isbndb.com/covers/53/08/9780684195308.jpg'), + ('0941711420', 'Scarpetta''s Winter Table', 'https://images.isbndb.com/covers/14/25/9780941711425.jpg'), + ('0786866195', 'Buried Evidence', 'https://images.isbndb.com/covers/61/99/9780786866199.jpg'), + ('0553091735', 'Dead Man''s Island', 'https://images.isbndb.com/covers/17/31/9780553091731.jpg'), + ('0425177068', 'Family Honor (Sunny Randall)', 'https://images.isbndb.com/covers/70/68/9780425177068.jpg'), + ('0312198299', 'Aquarius Descending (Elizabeth Chase Mysteries)', 'https://images.isbndb.com/covers/82/99/9780312198299.jpg'), + ('0026125803', 'Rajac A Story', 'https://images.isbndb.com/covers/58/02/9780026125802.jpg'), + ('1585420093', 'The Right To Write: An Invitation And Initiation Into The Writing Life', 'https://images.isbndb.com/covers/00/94/9781585420094.jpg'), + ('0786904739', 'Blood Hostages (Blood Wars Trilogy)', 'https://images.isbndb.com/covers/47/30/9780786904730.jpg'), + ('0553276123', 'The Stainless Steel Rat For President', 'https://images.isbndb.com/covers/61/21/9780553276121.jpg'), + ('0812551079', 'The Stainless Steel Rat Goes To Hell', 'https://images.isbndb.com/covers/10/75/9780812551075.jpg'), + ('1560768983', 'Go Quest, Young Man', 'https://images.isbndb.com/covers/89/82/9781560768982.jpg'), + ('0441000541', 'Majyk By Hook Or Crook', 'https://images.isbndb.com/covers/05/48/9780441000548.jpg'), + ('0061054658', 'Ships Of Merior (Wars Of Light & Shadow, Vol. 2)', 'https://images.isbndb.com/covers/46/55/9780061054655.jpg'), + ('0886773849', 'The Dragonbone Chair: Book One Of Memory, Sorrow, And Thorn', 'https://images.isbndb.com/covers/38/47/9780886773847.jpg'), + ('0886775272', 'Black Sun Rising (The Coldfire Trilogy, Book 1)', 'https://images.isbndb.com/covers/52/78/9780886775278.jpg'), + ('0786905018', 'Abyssal Warriors (Planescape: Blood Wars Trilogy #2)', 'https://images.isbndb.com/covers/50/10/9780786905010.jpg'), + ('0821743279', 'I Am Dracula...Know Me.', 'https://images.isbndb.com/covers/32/70/9780821743270.jpg'), + ('006050675X', 'The Emerald Cavern (Fifth Ring)', 'https://images.isbndb.com/covers/67/59/9780060506759.jpg'), + ('0765305224', 'Naked Empire (Sword Of Truth, Book 8)', 'https://images.isbndb.com/covers/52/20/9780765305220.jpg'), + ('0786918179', 'Dragons Of A Lost Star (Dragonlance: The War Of Souls, Volume II)', 'https://images.isbndb.com/covers/81/71/9780786918171.jpg'), + ('0765300265', 'The Pillars Of Creation (Sword Of Truth, Book 7)', 'https://images.isbndb.com/covers/02/63/9780765300263.jpg'), + ('0060506512', 'The Fifth Ring', 'https://images.isbndb.com/covers/65/13/9780060506513.jpg'), + ('0553575651', 'Ship Of Destiny (The Liveship Traders, Book 3)', 'https://images.isbndb.com/covers/56/51/9780553575651.jpg'), + ('0756400996', 'Sword-Sworn (Tiger And Del)', 'https://images.isbndb.com/covers/09/96/9780756400996.jpg'), + ('0553575643', 'Mad Ship (The Liveship Traders, Book 2)', 'https://images.isbndb.com/covers/56/44/9780553575644.jpg'), + ('0061020575', 'Well Of Darkness (The Sovereign Stone Trilogy, Book 1)', 'https://images.isbndb.com/covers/05/75/9780061020575.jpg'), + ('0553575635', 'Ship Of Magic (The Liveship Traders, Book 1)', 'https://images.isbndb.com/covers/56/37/9780553575637.jpg'), + ('0886772885', 'Sword And Sorceress V (5)', 'https://images.isbndb.com/covers/28/88/9780886772888.jpg'), + ('0451456408', 'Crystal Sage (Salterton Trilogy)', 'https://images.isbndb.com/covers/64/03/9780451456403.jpg'), + ('0886779804', 'Villains Victorious', 'https://images.isbndb.com/covers/98/01/9780886779801.jpg'), + ('0812575237', 'Legends 2 : Short Novels By The Masters Of Modern Fantasy', 'https://images.isbndb.com/covers/52/31/9780812575231.jpg'), + ('078691808X', 'Thornhold (Forgotten Realms: Songs And Swords, Book 4)', 'https://images.isbndb.com/covers/80/89/9780786918089.jpg'), + ('0451452682', 'The Eye Of The Hunter (Mithgar)', 'https://images.isbndb.com/covers/26/89/9780451452689.jpg'), + ('0553110845', 'House Corrino (Dune: House Trilogy, Book 3)', 'https://images.isbndb.com/covers/08/45/9780553110845.jpg'), + ('0756400007', 'The Flightless Falcon', 'https://images.isbndb.com/covers/00/02/9780756400002.jpg'), + ('1930662513', 'Intelligence, Internment & Relocation: Roosevelt''s Executive Order 9066: How Top Secret "MAGIC" Intelligence Led To Evacuation', 'https://images.isbndb.com/covers/25/13/9781930662513.jpg'), + ('1903650267', 'Irish Girls About Town', 'https://images.isbndb.com/covers/02/64/9781903650264.jpg'), + ('3518398873', 'Nootebooms Hotel (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/88/76/9783518398876.jpg'), + ('0525935762', 'Shot On Location: 2 (Goodman-Bradley Mystery)', 'https://images.isbndb.com/covers/57/66/9780525935766.jpg'), + ('0345437829', 'Hanging Up', 'https://images.isbndb.com/covers/78/22/9780345437822.jpg'), + ('0862417031', 'Drinker''s Guide To The Middle East (Rebel Inc.)', 'https://images.isbndb.com/covers/70/31/9780862417031.jpg'), + ('157322135X', 'The Distance To The Moon: A Road Trip Into The American Dream', 'https://images.isbndb.com/covers/13/51/9781573221351.jpg'), + ('0812815904', 'Sappho Was A Right-On Woman: A Liberated View Of Lesbianism', 'https://images.isbndb.com/covers/59/00/9780812815900.jpg'), + ('0345333748', 'Simon''s Night', 'https://images.isbndb.com/covers/37/42/9780345333742.jpg'), + ('0740713906', 'Excuse Me While I Wag: A Dilbert Book (Dilbert Books (Paperback Andrews McMeel))', 'https://images.isbndb.com/covers/39/03/9780740713903.jpg'), + ('0670030295', 'Roscoe', 'https://images.isbndb.com/covers/02/93/9780670030293.jpg'), + ('0451211480', 'The Confessor (Gabriel Allon Novels)', 'https://images.isbndb.com/covers/14/84/9780451211484.jpg'), + ('0743245520', 'Hello, Darkness', 'https://images.isbndb.com/covers/55/24/9780743245524.jpg'), + ('0140440755', 'The Song Of Roland (Penguin Classics)', 'https://images.isbndb.com/covers/07/51/9780140440751.jpg'), + ('0449209733', 'Fraternity Of The Stone', 'https://images.isbndb.com/covers/97/38/9780449209738.jpg'), + ('0399142177', 'Rabin: Our Life, His Legacy', 'https://images.isbndb.com/covers/21/78/9780399142178.jpg'), + ('0140112847', 'Children Of The Holocaust: Conversations With Sons And Daughters Of Survivors', 'https://images.isbndb.com/covers/28/49/9780140112849.jpg'), + ('0812534271', 'World Without End', 'https://images.isbndb.com/covers/42/76/9780812534276.jpg'), + ('0375753788', 'I Will Bear Witness: A Diary Of The Nazi Years, 1933-1941 (Modern Library Paperbacks)', 'https://images.isbndb.com/covers/37/87/9780375753787.jpg'), + ('1590710088', 'All The Beautiful Sinners', 'https://images.isbndb.com/covers/00/81/9781590710081.jpg'), + ('0452281709', 'Jakob The Liar', 'https://images.isbndb.com/covers/17/07/9780452281707.jpg'), + ('000654861X', 'Life And Death In Shanghai', 'https://images.isbndb.com/covers/86/14/9780006548614.jpg'), + ('0452274427', 'In The Time Of The Butterflies', 'https://images.isbndb.com/covers/44/26/9780452274426.jpg'), + ('0836220870', 'Hound Of The Far Side ®', 'https://images.isbndb.com/covers/08/72/9780836220872.jpg'), + ('0130816795', 'Breaking Into Print (A Spectrum Book)', 'https://images.isbndb.com/covers/67/95/9780130816795.jpg'), + ('0399141960', 'Woe Is I: The Grammarphobe''s Guide To Better English In Plain English', 'https://images.isbndb.com/covers/19/66/9780399141966.jpg'), + ('0898796407', 'The Writer''s Digest Guide To Good Writing', 'https://images.isbndb.com/covers/64/07/9780898796407.jpg'), + ('0028613228', 'The New York Public Library American History Desk Reference', 'https://images.isbndb.com/covers/32/22/9780028613222.jpg'), + ('0898796342', 'Conflict, Action And Suspense (Elements Of Fiction Writing)', 'https://images.isbndb.com/covers/63/46/9780898796346.jpg'), + ('0425194515', 'Midnight', 'https://images.isbndb.com/covers/45/15/9780425194515.jpg'), + ('0688132286', 'Telling Lies For Fun & Profit: A Manual For Fiction Writers', 'https://images.isbndb.com/covers/22/86/9780688132286.jpg'), + ('0060198303', 'The Burglar On The Prowl (Block, Lawrence)', 'https://images.isbndb.com/covers/83/05/9780060198305.jpg'), + ('0679408193', 'Ablaze: The Story Of The Heroes And Victims Of Chernobyl', 'https://images.isbndb.com/covers/81/92/9780679408192.jpg'), + ('1931201080', 'Wolfpointe', 'https://images.isbndb.com/covers/10/87/9781931201087.jpg'), + ('0393951693', 'The Vanishing Hitchhiker: American Urban Legends And Their Meanings', 'https://images.isbndb.com/covers/16/91/9780393951691.jpg'), + ('0816727953', '50 Amazing U.S. Mazes', 'https://images.isbndb.com/covers/79/57/9780816727957.jpg'), + ('0446532215', 'The Elder Gods (The Dreamers, Book 1)', 'https://images.isbndb.com/covers/22/11/9780446532211.jpg'), + ('0312964293', 'I Have Lived In The Monster: Inside The Minds Of The World''s Most Notorious Serial Killers (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/42/90/9780312964290.jpg'), + ('0312956789', 'Titans', 'https://images.isbndb.com/covers/67/83/9780312956783.jpg'), + ('0380727544', 'The Plan', 'https://images.isbndb.com/covers/75/44/9780380727544.jpg'), + ('0345466632', 'The Demon In The Freezer', 'https://images.isbndb.com/covers/66/31/9780345466631.jpg'), + ('0440237246', 'Area 51: Nosferatu', 'https://images.isbndb.com/covers/72/42/9780440237242.jpg'), + ('0771087462', 'Much Depends On Dinner', 'https://images.isbndb.com/covers/74/62/9780771087462.jpg'), + ('0060973323', 'The Ginger Tree', 'https://images.isbndb.com/covers/33/22/9780060973322.jpg'), + ('0140065598', 'Six Feet Of The Country', 'https://images.isbndb.com/covers/55/96/9780140065596.jpg'), + ('0440359376', 'Meet My Maker The Mad Molecule & The Saddest Summer Of Samuel S', 'https://images.isbndb.com/covers/93/71/9780440359371.jpg'), + ('0553103105', 'Zen And The Art Of Motorcycle Maintenance : An Inquiry Into Values', 'https://images.isbndb.com/covers/31/06/9780553103106.jpg'), + ('0006135986', 'The Woman Destroyed', 'https://images.isbndb.com/covers/59/82/9780006135982.jpg'), + ('0553572202', 'Self-Defense (Alex Delaware Novels)', 'https://images.isbndb.com/covers/22/09/9780553572209.jpg'), + ('0898704448', 'The Everlasting Man', 'https://images.isbndb.com/covers/44/40/9780898704440.jpg'), + ('0399144714', 'Vector', 'https://images.isbndb.com/covers/47/14/9780399144714.jpg'), + ('0312859279', 'Issola (The Vlad Taltos Novels)', 'https://images.isbndb.com/covers/92/75/9780312859275.jpg'), + ('0812589173', 'Issola (Vlad Taltos)', 'https://images.isbndb.com/covers/91/77/9780812589177.jpg'), + ('0312866925', 'Dragon', 'https://images.isbndb.com/covers/69/21/9780312866921.jpg'), + ('0441001963', 'Orca', 'https://images.isbndb.com/covers/19/65/9780441001965.jpg'), + ('0441033423', 'Athyra', 'https://images.isbndb.com/covers/34/23/9780441033423.jpg'), + ('0441662250', 'Phoenix', 'https://images.isbndb.com/covers/22/58/9780441662258.jpg'), + ('0441182003', 'Taltos', 'https://images.isbndb.com/covers/20/08/9780441182008.jpg'), + ('0441799779', 'Teckla', 'https://images.isbndb.com/covers/97/70/9780441799770.jpg'), + ('0441944604', 'Yendi', 'https://images.isbndb.com/covers/46/06/9780441944606.jpg'), + ('0441385540', 'Jhereg', 'https://images.isbndb.com/covers/55/46/9780441385546.jpg'), + ('0553565699', 'Assassin''s Quest (The Farseer Trilogy, Book 3)', 'https://images.isbndb.com/covers/56/90/9780553565690.jpg'), + ('0553375636', 'Royal Assassin (The Farseer Trilogy, Book 2)', 'https://images.isbndb.com/covers/56/33/9780553375633.jpg'), + ('0553374451', 'Assassin''s Apprentice (The Farseer Trilogy, Book 1)', 'https://images.isbndb.com/covers/44/52/9780553374452.jpg'), + ('0553381709', 'A Storm Of Swords: A Song Of Ice And Fire: Book Three', 'https://images.isbndb.com/covers/17/02/9780553381702.jpg'), + ('0373195818', 'Trish''s Not-So-Little Secret (Silhouette Romance, No 1581)', 'https://images.isbndb.com/covers/58/17/9780373195817.jpg'), + ('0060962348', 'Courage To Heal: A Guide For Women Survivors Of Child Sexual Abuse', 'https://images.isbndb.com/covers/23/40/9780060962340.jpg'), + ('0446526924', 'Hidden Treasures: Searching For Masterpieces Of American Furniture', 'https://images.isbndb.com/covers/69/20/9780446526920.jpg'), + ('0312275714', 'Artistic License', 'https://images.isbndb.com/covers/57/16/9780312275716.jpg'), + ('2266025791', 'Les Choses', 'https://images.isbndb.com/covers/57/99/9782266025799.jpg'), + ('0440343194', 'Illusions', 'https://images.isbndb.com/covers/31/96/9780440343196.jpg'), + ('0449212645', 'For Kicks', 'https://images.isbndb.com/covers/26/46/9780449212646.jpg'), + ('0970566506', 'Dawning : The Next Great Move Of God', 'https://images.isbndb.com/covers/65/08/9780970566508.jpg'), + ('0553252704', 'The Parsifal Mosaic', 'https://images.isbndb.com/covers/27/05/9780553252705.jpg'), + ('0880117834', 'Acsm Fitness Book (American College Of Sports Med)', 'https://images.isbndb.com/covers/78/38/9780880117838.jpg'), + ('067082982X', 'The Dark Half', 'https://images.isbndb.com/covers/98/28/9780670829828.jpg'), + ('0919591051', 'Vancouver Fiction', 'https://images.isbndb.com/covers/10/59/9780919591059.jpg'), + ('0440164842', 'Noble House', 'https://images.isbndb.com/covers/48/45/9780440164845.jpg'), + ('0440226457', 'Time To Hunt', 'https://images.isbndb.com/covers/64/51/9780440226451.jpg'), + ('0140440232', 'Crime And Punishment (Classics)', 'https://images.isbndb.com/covers/02/32/9780140440232.jpg'), + ('0451204301', 'Impulse (Contemporary Romantic Thriller)', 'https://images.isbndb.com/covers/43/01/9780451204301.jpg'), + ('0842329269', 'Apollyon: The Destroyer Is Unleashed (Left Behind No. 5)', 'https://images.isbndb.com/covers/92/62/9780842329262.jpg'), + ('0786868155', 'Social Crimes', 'https://images.isbndb.com/covers/81/55/9780786868155.jpg'), + ('0156002523', 'Melancholy Of Rebirth: Essays From Post-Communist Central Europe, 1989-1994', 'https://images.isbndb.com/covers/25/23/9780156002523.jpg'), + ('0440507626', 'Nitpicker''s Guide For Deep Space Nine Trekkers', 'https://images.isbndb.com/covers/76/28/9780440507628.jpg'), + ('0380976307', 'Far Horizons:: All New Tales From The Greatest Worlds Of Science Fiction', 'https://images.isbndb.com/covers/63/00/9780380976300.jpg'), + ('0887306918', 'Cracking The Corporate Closet: The 200 Best (And Worst Companies To Work For, Buy From, And Invest In If You''re Gay Or Lesbian - And Even If You Ar)', 'https://images.isbndb.com/covers/69/14/9780887306914.jpg'), + ('0840791712', 'The Lord''s Blessings/Hope And Peace For Those In Recovery', 'https://images.isbndb.com/covers/17/19/9780840791719.jpg'), + ('0140380736', 'The Arkadians', 'https://images.isbndb.com/covers/07/36/9780140380736.jpg'), + ('0689828772', 'The Raging Quiet', 'https://images.isbndb.com/covers/87/75/9780689828775.jpg'), + ('0689313535', 'The Hideaway', 'https://images.isbndb.com/covers/35/30/9780689313530.jpg'), + ('0679411836', 'Jumping Ship And Other Stories', 'https://images.isbndb.com/covers/18/33/9780679411833.jpg'), + ('0151962960', 'Where Is Joe Merchant?: A Novel Tale', 'https://images.isbndb.com/covers/29/69/9780151962969.jpg'), + ('3404921178', 'Nur Der Tod Ist Ohne Makel: Fran Varadys Erster Fall', 'https://images.isbndb.com/covers/11/71/9783404921171.jpg'), + ('0451136330', 'Small World (Signet)', 'https://images.isbndb.com/covers/63/36/9780451136336.jpg'), + ('0061001023', 'Birthright', 'https://images.isbndb.com/covers/10/24/9780061001024.jpg'), + ('0843934557', 'The Lake', 'https://images.isbndb.com/covers/45/57/9780843934557.jpg'), + ('0312961006', 'The Trickster', 'https://images.isbndb.com/covers/10/08/9780312961008.jpg'), + ('2266041517', 'LE CHEVAL D''ORGUEIL. Mémoires D''un Breton Du Pays Bigouden', 'https://images.isbndb.com/covers/15/15/9782266041515.jpg'), + ('2290047155', 'Le Bois Aux Elfes', 'https://images.isbndb.com/covers/71/56/9782290047156.jpg'), + ('2226120467', 'Lettre Ouverte Aux Français Qui Se Croient Le Nombril Du Monde', 'https://images.isbndb.com/covers/04/65/9782226120465.jpg'), + ('0446523089', 'The Secret Of Shambhala : In Search Of The Eleventh Insight', 'https://images.isbndb.com/covers/30/80/9780446523080.jpg'), + ('0373226136', 'Someone''s Baby (Trueblood, Texas #1) (Harlequin Intrigue Series #613)', 'https://images.isbndb.com/covers/61/39/9780373226139.jpg'), + ('0688167810', 'Wonder When You''ll Miss Me', 'https://images.isbndb.com/covers/78/13/9780688167813.jpg'), + ('0373704526', 'Dangerous Loyalty (Harlequin Superromance No. 452)', 'https://images.isbndb.com/covers/45/21/9780373704521.jpg'), + ('0373484895', 'Captive Star (The Stars Of Mithra)', 'https://images.isbndb.com/covers/48/98/9780373484898.jpg'), + ('0451524497', 'Anna Karenina (A Signet Classic)', 'https://images.isbndb.com/covers/44/92/9780451524492.jpg'), + ('0449234576', 'Short Friday', 'https://images.isbndb.com/covers/45/70/9780449234570.jpg'), + ('014025773X', 'James The Brother Of Jesus: The Key To Unlocking The Secrets Of Early Christianity And The Dead Sea Scrolls', 'https://images.isbndb.com/covers/77/31/9780140257731.jpg'), + ('0395533627', 'COLLECTED WRITINGS PORTER PA', 'https://images.isbndb.com/covers/36/28/9780395533628.jpg'), + ('0393963039', 'Uncle Tom''s Cabin (Norton Critical Editions)', 'https://images.isbndb.com/covers/30/38/9780393963038.jpg'), + ('0941104311', 'Hot Licks (Real Comet Flipbooks)', 'https://images.isbndb.com/covers/43/19/9780941104319.jpg'), + ('0375401296', 'Building A Bridge To The 18th Century: How The Past Can Improve Our Future', 'https://images.isbndb.com/covers/12/99/9780375401299.jpg'), + ('0393322157', 'Glue', 'https://images.isbndb.com/covers/21/56/9780393322156.jpg'), + ('0060005424', 'Lirael: Daughter Of The Clayr', 'https://images.isbndb.com/covers/54/29/9780060005429.jpg'), + ('3404615131', 'Live Dabei: Erinnerungen Eines Journalisten', 'https://images.isbndb.com/covers/51/31/9783404615131.jpg'), + ('0449205878', 'Poland', 'https://images.isbndb.com/covers/58/77/9780449205877.jpg'), + ('0670813699', 'Man Who Fell From The Sky: The True Story Gaudy Life Bizarre Demise 20''s Tycoon Alfred Loewenstein Mod', 'https://images.isbndb.com/covers/36/98/9780670813698.jpg'), + ('0552996181', 'Behind The Scenes At The Museum', 'https://images.isbndb.com/covers/61/81/9780552996181.jpg'), + ('0451211561', 'Capital Crimes (Will Lee Novel)', 'https://images.isbndb.com/covers/15/69/9780451211569.jpg'), + ('3499420694', 'Gefährliche Neugier.', 'https://images.isbndb.com/covers/06/96/9783499420696.jpg'), + ('3257218362', 'Banshee, Die Todesfee', 'https://images.isbndb.com/covers/83/67/9783257218367.jpg'), + ('0380729407', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/94/01/9780380729401.jpg'), + ('0310214653', 'Fit To Be Tied', 'https://images.isbndb.com/covers/46/56/9780310214656.jpg'), + ('0486299929', 'Six Characters In Search Of An Author (Dover Thrift Editions)', 'https://images.isbndb.com/covers/99/21/9780486299921.jpg'), + ('0486278042', 'Antigone (Dover Thrift Editions)', 'https://images.isbndb.com/covers/80/49/9780486278049.jpg'), + ('0486282252', 'Lysistrata (Dover Thrift Editions)', 'https://images.isbndb.com/covers/22/51/9780486282251.jpg'), + ('0738807338', 'Queenmaker', 'https://images.isbndb.com/covers/73/31/9780738807331.jpg'), + ('0446523151', 'At All Costs', 'https://images.isbndb.com/covers/31/58/9780446523158.jpg'), + ('1558749209', 'Chicken Soup For The Soul', 'https://images.isbndb.com/covers/92/07/9781558749207.jpg'), + ('0446601020', 'The Judas Cross', 'https://images.isbndb.com/covers/10/23/9780446601023.jpg'), + ('3492238882', 'Die Meere Des Südens · Wenn Tote Baden: Zwei Pepe-Carvalho-Romane In Einem Band', 'https://images.isbndb.com/covers/88/85/9783492238885.jpg'), + ('3257205368', 'Topkapi', 'https://images.isbndb.com/covers/53/67/9783257205367.jpg'), + ('0749396547', 'Made In America', 'https://images.isbndb.com/covers/65/41/9780749396541.jpg'), + ('325130058X', 'Hühnerherbst. Ein Gonzo Krimi.', 'https://images.isbndb.com/covers/05/87/9783251300587.jpg'), + ('3794147286', 'Das Mag Elsa Entchen Gern', 'https://images.isbndb.com/covers/72/81/9783794147281.jpg'), + ('3548243746', 'Kelim-Connection', 'https://images.isbndb.com/covers/37/40/9783548243740.jpg'), + ('0670814458', 'In The Country Of Last Things', 'https://images.isbndb.com/covers/44/59/9780670814459.jpg'), + ('0816707987', 'Great American Short Stories (Wtm) (Watermill Classics)', 'https://images.isbndb.com/covers/79/80/9780816707980.jpg'), + ('3426617277', 'Die Frau Mit Den Regenhänden', 'https://images.isbndb.com/covers/72/74/9783426617274.jpg'), + ('185863864X', 'George: A 20th Century Miniature', 'https://images.isbndb.com/covers/86/45/9781858638645.jpg'), + ('3596294312', 'Buddenbrooks: Verfall Einer Familie. Roman', 'https://images.isbndb.com/covers/43/12/9783596294312.jpg'), + ('3453209419', 'Ocean''s Eleven. Roman Zum Film.', 'https://images.isbndb.com/covers/94/11/9783453209411.jpg'), + ('0595250955', 'In The Spirit Of Armorbearing: Being The Gift Of Support To God''s Leaders', 'https://images.isbndb.com/covers/09/50/9780595250950.jpg'), + ('0399135790', 'Cold Fire', 'https://images.isbndb.com/covers/57/98/9780399135798.jpg'), + ('0345356950', 'The Scions Of Shannara (The Heritage Of Shannara #1)', 'https://images.isbndb.com/covers/69/56/9780345356956.jpg'), + ('2253060224', 'Vingt-quatre Heures De La Vie D''une Femme', 'https://images.isbndb.com/covers/02/22/9782253060222.jpg'), + ('0312265859', 'Hard Eight (A Stephanie Plum Novel) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/58/54/9780312265854.jpg'), + ('0130421499', 'Secondary School Teaching: A Guide To Methods And Resources (2nd Edition)', 'https://images.isbndb.com/covers/14/94/9780130421494.jpg'), + ('0673980111', 'The Little, Brown Compact Handbook/Includes Mla Update', 'https://images.isbndb.com/covers/01/13/9780673980113.jpg'), + ('157029237X', 'Terrific Tips For Toddler Teachers', 'https://images.isbndb.com/covers/23/78/9781570292378.jpg'), + ('0935989870', 'Learning To Read And Write : Developmentally Appropriate Practices For Young Children', 'https://images.isbndb.com/covers/98/78/9780935989878.jpg'), + ('0876591063', 'Learning Letters Through All Five Senses: A Language Development Activity Book', 'https://images.isbndb.com/covers/10/62/9780876591062.jpg'), + ('0876591195', 'Story S-t-r-e-t-c-h-e-r-s: Activities To Expand Children''s Favorite Books (Pre-K And K)', 'https://images.isbndb.com/covers/11/92/9780876591192.jpg'), + ('0935989900', 'Much More Than The ABC''s: The Early Stages Of Reading And Writing', 'https://images.isbndb.com/covers/99/08/9780935989908.jpg'), + ('0553380303', 'Baby Minds: Brain-Building Games Your Baby Will Love', 'https://images.isbndb.com/covers/03/09/9780553380309.jpg'), + ('0316744441', 'From Aaron To Zoe: 15,000 Great Baby Names', 'https://images.isbndb.com/covers/44/47/9780316744447.jpg'), + ('0316779032', 'The Discipline Book: How To Have A Better-Behaved Child From Birth To Age Ten', 'https://images.isbndb.com/covers/90/36/9780316779036.jpg'), + ('089586763X', 'Pregnant/lovin It #2', 'https://images.isbndb.com/covers/76/36/9780895867636.jpg'), + ('0827348916', 'Understanding Child Development', 'https://images.isbndb.com/covers/89/12/9780827348912.jpg'), + ('0060406046', 'The Developing Child', 'https://images.isbndb.com/covers/60/42/9780060406042.jpg'), + ('0312636490', 'The Premature Baby Book: A Parents Guide To Coping And Caring In The First Years', 'https://images.isbndb.com/covers/64/94/9780312636494.jpg'), + ('0671739999', 'How To Raise A Brighter Child', 'https://images.isbndb.com/covers/99/97/9780671739997.jpg'), + ('0912500212', 'Becoming A Father: How To Nurture And Enjoy Your Family (Growing Family Series)', 'https://images.isbndb.com/covers/02/18/9780912500218.jpg'), + ('1576734587', 'On Becoming Baby Wise, Book 1: Learn How Over One Million Babies Were Trained To Sleep Through The Night The Natural Way', 'https://images.isbndb.com/covers/45/82/9781576734582.jpg'), + ('0786884525', 'Baby Days: Activities, Ideas, And Games For Enjoying Daily Life With A Child Under Three', 'https://images.isbndb.com/covers/45/20/9780786884520.jpg'), + ('0553347187', 'Before You Conceive: The Complete Pregnancy Guide', 'https://images.isbndb.com/covers/71/80/9780553347180.jpg'), + ('0671537628', 'Dr. Spock''s Baby And Childcare: Seventh Edition', 'https://images.isbndb.com/covers/76/23/9780671537623.jpg'), + ('0553226630', 'The Name Book: How Your Name Affects Your Life', 'https://images.isbndb.com/covers/66/38/9780553226638.jpg'), + ('0553580655', 'Better Homes And Gardens New Baby Book: The Complete Guide To Pregnancy, Childbirth, And Baby Care Revised', 'https://images.isbndb.com/covers/06/55/9780553580655.jpg'), + ('0440127092', 'Four Thousand Names For Your Baby', 'https://images.isbndb.com/covers/70/93/9780440127093.jpg'), + ('0671836285', 'Games Babies Play', 'https://images.isbndb.com/covers/62/83/9780671836283.jpg'), + ('0312969767', 'You Might As Well Laugh: Because Crying Will Only Smear Your Mascara', 'https://images.isbndb.com/covers/97/69/9780312969769.jpg'), + ('0440214475', '21st Century Dictionary Of Quotations (21st Century Reference)', 'https://images.isbndb.com/covers/44/72/9780440214472.jpg'), + ('0380790750', 'Make Your Medicine Safe: How To Prevent Side Effects From The Drugs You Take', 'https://images.isbndb.com/covers/07/53/9780380790753.jpg'), + ('0671027271', 'The Merck Manual Of Medical Information (Merck Manual Of Medical Information, Home Ed.)', 'https://images.isbndb.com/covers/72/78/9780671027278.jpg'), + ('0764561960', 'Arizona For Dummies', 'https://images.isbndb.com/covers/19/62/9780764561962.jpg'), + ('0831788356', 'South (American Traveler Series)', 'https://images.isbndb.com/covers/83/53/9780831788353.jpg'), + ('1566910838', 'Moon Handbooks Massachusetts', 'https://images.isbndb.com/covers/08/35/9781566910835.jpg'), + ('0803893728', 'Daytrips Italy (3rd Edition)', 'https://images.isbndb.com/covers/37/26/9780803893726.jpg'), + ('1558534334', 'The Annual Directory Of American And Canadian Bed & Breakfasts 1997 (Annual Directory Of American And Canadian Bed And Breakfasts)', 'https://images.isbndb.com/covers/43/39/9781558534339.jpg'), + ('0873374789', 'Trouble-Free Travel: And What To Do When Things Go Wrong', 'https://images.isbndb.com/covers/47/81/9780873374781.jpg'), + ('0395714060', 'Mastering Computer Typing: A Painless Course For Beginners And Professionals', 'https://images.isbndb.com/covers/40/65/9780395714065.jpg'), + ('0878570764', 'The Rodale Herb Book: How To Use, Grow, And Buy Nature''s Miracle Plants (An Organic Gardening And Farming Book)', 'https://images.isbndb.com/covers/07/68/9780878570768.jpg'), + ('0380758962', 'Dinosaur Data Book: The Definitive, Fully Illustrated Encyclopedia Of Dinosaurs', 'https://images.isbndb.com/covers/89/68/9780380758968.jpg'), + ('0553088122', 'The End Of Evolution', 'https://images.isbndb.com/covers/81/20/9780553088120.jpg'), + ('0879752408', 'In The Beginning: A Scientist Shows Why The Creationists Are Wrong', 'https://images.isbndb.com/covers/24/08/9780879752408.jpg'), + ('0425096505', 'Tom Brown''s Field Guide To Wilderness Survival', 'https://images.isbndb.com/covers/65/05/9780425096505.jpg'), + ('0822023016', 'Advanced Placement Biology Examination: Preparation Guide', 'https://images.isbndb.com/covers/30/12/9780822023012.jpg'), + ('0307336565', 'Birds Of North America', 'https://images.isbndb.com/covers/65/69/9780307336569.jpg'), + ('0486224570', 'My Bondage And My Freedom (Black Rediscovery)', 'https://images.isbndb.com/covers/45/72/9780486224572.jpg'), + ('0842346740', 'Mysteries And Intrigues Of The Bible Extraordinary Events And Fascinating People', 'https://images.isbndb.com/covers/67/40/9780842346740.jpg'), + ('0805061835', 'Real Boys : Rescuing Our Sons From The Myths Of Boyhood', 'https://images.isbndb.com/covers/18/33/9780805061833.jpg'), + ('0425165701', 'Ruthless.Com (Tom Clancy''s Power Plays, Book 2)', 'https://images.isbndb.com/covers/57/06/9780425165706.jpg'), + ('0451522273', 'Ethan Frome (Signet Classics)', 'https://images.isbndb.com/covers/22/76/9780451522276.jpg'), + ('0767900189', 'The Kingdom Of Shivas Irons', 'https://images.isbndb.com/covers/01/88/9780767900188.jpg'), + ('0060196661', 'A Stay Against Confusion: Essays On Faith And Fiction', 'https://images.isbndb.com/covers/66/60/9780060196660.jpg'), + ('344242366X', 'Der Rumpf', 'https://images.isbndb.com/covers/36/68/9783442423668.jpg'), + ('2070415708', 'Le Cycle De Fondation, Tome 1 : Fondation', 'https://images.isbndb.com/covers/57/00/9782070415700.jpg'), + ('2290316296', 'L''Assassin Royal, Tome 3 : La Nef Du Crépuscule', 'https://images.isbndb.com/covers/62/90/9782290316290.jpg'), + ('2290313238', 'L''Assassin Royal, Tome 2 : L''Assassin Du Roi', 'https://images.isbndb.com/covers/32/37/9782290313237.jpg'), + ('2290303607', 'L''Assassin Royal, Tome 1 : L''apprenti Assassin', 'https://images.isbndb.com/covers/36/03/9782290303603.jpg'), + ('2290304778', 'Night Océan Et Autres Nouvelles', 'https://images.isbndb.com/covers/47/78/9782290304778.jpg'), + ('2290042560', 'La Quête Onirique De Kadath L''inconnue', 'https://images.isbndb.com/covers/25/64/9782290042564.jpg'), + ('2290331341', 'Le Mythe De Cthulhu', 'https://images.isbndb.com/covers/13/47/9782290331347.jpg'), + ('2226135022', 'Oscar Et La Dame Rose', 'https://images.isbndb.com/covers/50/25/9782226135025.jpg'), + ('0449003213', 'Kingdom Come', 'https://images.isbndb.com/covers/32/13/9780449003213.jpg'), + ('0688046592', 'The Pillars Of The Earth', 'https://images.isbndb.com/covers/65/90/9780688046590.jpg'), + ('3548332374', 'Checkpoint Charlie And The Wall', 'https://images.isbndb.com/covers/23/76/9783548332376.jpg'), + ('2207304183', 'Maître De L''espace Et Du Temps', 'https://images.isbndb.com/covers/41/81/9782207304181.jpg'), + ('2207304132', 'Un Navire De Nulle Part', 'https://images.isbndb.com/covers/41/36/9782207304136.jpg'), + ('2207304116', 'Annales De Klepsis', 'https://images.isbndb.com/covers/41/12/9782207304112.jpg'), + ('2207304078', 'Kosmokrim', 'https://images.isbndb.com/covers/40/75/9782207304075.jpg'), + ('2207304027', 'Bonjour, Chaos', 'https://images.isbndb.com/covers/40/20/9782207304020.jpg'), + ('2207304019', 'Démon', 'https://images.isbndb.com/covers/40/13/9782207304013.jpg'), + ('2207304000', 'Démon', 'https://images.isbndb.com/covers/40/06/9782207304006.jpg'), + ('2207303993', 'Le Trône De Folie', 'https://images.isbndb.com/covers/39/93/9782207303993.jpg'), + ('2207303888', 'Janus', 'https://images.isbndb.com/covers/38/87/9782207303887.jpg'), + ('2207301656', 'Le Péril Vient De La Mer', 'https://images.isbndb.com/covers/16/54/9782207301654.jpg'), + ('2207250660', 'Les Machines à Bonheur', 'https://images.isbndb.com/covers/06/62/9782207250662.jpg'), + ('2742743537', 'La Treizième Cible', 'https://images.isbndb.com/covers/35/37/9782742743537.jpg'), + ('0399148779', 'Eleventh Hour', 'https://images.isbndb.com/covers/87/74/9780399148774.jpg'), + ('3442439019', 'Die Hornisse: Roman (Andy Brazil)', 'https://images.isbndb.com/covers/90/10/9783442439010.jpg'), + ('0452281725', 'The Quilter''s Apprentice (Elm Creek Quilts Series #1)', 'https://images.isbndb.com/covers/17/21/9780452281721.jpg'), + ('0385092148', 'The Country Of The Pointed Firs : And Other Stories', 'https://images.isbndb.com/covers/21/42/9780385092142.jpg'), + ('0745916147', 'The Transforming Friendship', 'https://images.isbndb.com/covers/61/49/9780745916149.jpg'), + ('0830727639', 'God''s Timing For Your Life: Seeing The Seasons Of Your Life Through God''s Eyes (Life Point)', 'https://images.isbndb.com/covers/76/36/9780830727636.jpg'), + ('0662174860', 'A Living Tradition: Penitentiary Chaplaincy', 'https://images.isbndb.com/covers/48/68/9780662174868.jpg'), + ('187963905X', 'Reclaiming Youth At Risk: Our Hope For The Future', 'https://images.isbndb.com/covers/90/58/9781879639058.jpg'), + ('0380795671', 'The Liberal Arts Advantage: How To Turn Your Degree Into A Great Job', 'https://images.isbndb.com/covers/56/73/9780380795673.jpg'), + ('1567181449', 'Charting Your Career: The Horoscope Reveals Your Life Purpose', 'https://images.isbndb.com/covers/14/49/9781567181449.jpg'), + ('0805047794', 'Achilles In The Quantum Universe: The Definitive History Of Infinity', 'https://images.isbndb.com/covers/77/90/9780805047790.jpg'), + ('0671542141', 'The Fire From Within', 'https://images.isbndb.com/covers/21/46/9780671542146.jpg'), + ('0553211161', 'Leaves Of Grass (Bantam Classics)', 'https://images.isbndb.com/covers/11/60/9780553211160.jpg'), + ('0812556070', 'The Hall Of The Mountain King (Volume One Of Avaryan Rising)', 'https://images.isbndb.com/covers/60/70/9780812556070.jpg'), + ('0812532597', 'The Memory Of Earth', 'https://images.isbndb.com/covers/25/93/9780812532593.jpg'), + ('0879050721', 'Wilderness Essays (Literature Of The American Wilderness)', 'https://images.isbndb.com/covers/07/26/9780879050726.jpg'), + ('0345339967', 'Foundation And Earth', 'https://images.isbndb.com/covers/99/66/9780345339966.jpg'), + ('3442089832', 'Der Kuß. Kunst Und Leben Der Camille Claudel', 'https://images.isbndb.com/covers/98/33/9783442089833.jpg'), + ('1414034563', 'WHEN IN DOUBT...BLAME A JEW!: A PERSONAL AND PEOPLE''S MEMOIR OF ANTI-SEMITISM', 'https://images.isbndb.com/covers/45/60/9781414034560.jpg'), + ('0880385871', 'Spellfire (Forgotten Realms: Shandril''s Saga, Book 1)', 'https://images.isbndb.com/covers/58/79/9780880385879.jpg'), + ('0141182253', 'Under The Volcano (Penguin Modern Classics)', 'https://images.isbndb.com/covers/22/54/9780141182254.jpg'), + ('0060526769', 'The Heart Of Christianity: Rediscovering A Life Of Faith', 'https://images.isbndb.com/covers/67/64/9780060526764.jpg'), + ('1858285283', 'The Rough Guide To Jazz 2 (Rough Guide Music Guides)', 'https://images.isbndb.com/covers/52/83/9781858285283.jpg'), + ('0385404859', 'The First Church Of The New Millennium', 'https://images.isbndb.com/covers/48/53/9780385404853.jpg'), + ('0375760520', 'Paris 1919: Six Months That Changed The World', 'https://images.isbndb.com/covers/05/25/9780375760525.jpg'), + ('0525945768', 'The Oath (Dismas Hardy)', 'https://images.isbndb.com/covers/57/65/9780525945765.jpg'), + ('1592400388', 'Almost French: Love And A New Life In Paris', 'https://images.isbndb.com/covers/03/86/9781592400386.jpg'), + ('0060589272', 'Eleven Minutes: A Novel', 'https://images.isbndb.com/covers/92/71/9780060589271.jpg'), + ('0553583158', 'Legacy Of The Dead (Inspector Ian Rutledge Mysteries)', 'https://images.isbndb.com/covers/31/51/9780553583151.jpg'), + ('0804102511', 'Intensive Care: The Story Of A Nurse', 'https://images.isbndb.com/covers/25/13/9780804102513.jpg'), + ('0137791577', 'Returning To School: Guide For Nurses', 'https://images.isbndb.com/covers/15/76/9780137791576.jpg'), + ('0804118213', 'Tending Lives: Nurses On The Medical Front', 'https://images.isbndb.com/covers/82/17/9780804118217.jpg'), + ('0425148297', 'Naked In Death (In Death, Book 1)', 'https://images.isbndb.com/covers/82/97/9780425148297.jpg'), + ('0670628301', 'Second Heaven', 'https://images.isbndb.com/covers/83/08/9780670628308.jpg'), + ('0312868278', 'Dark Cities Underground', 'https://images.isbndb.com/covers/82/77/9780312868277.jpg'), + ('0395752906', 'The Best American Short Stories 1996', 'https://images.isbndb.com/covers/29/06/9780395752906.jpg'), + ('0060523492', 'Force 5 Recon: Deployment: Pakistan', 'https://images.isbndb.com/covers/34/97/9780060523497.jpg'), + ('0451209443', 'Sphere Of Influence', 'https://images.isbndb.com/covers/94/43/9780451209443.jpg'), + ('0689311982', 'Kumquat May, I''ll Always Love You', 'https://images.isbndb.com/covers/19/87/9780689311987.jpg'), + ('0312039409', 'The Stone Veil', 'https://images.isbndb.com/covers/94/00/9780312039400.jpg'), + ('0451207947', 'Only By Your Touch', 'https://images.isbndb.com/covers/79/44/9780451207944.jpg'), + ('042519065X', 'Wings Of Fire', 'https://images.isbndb.com/covers/06/54/9780425190654.jpg'), + ('0060008369', 'The Shadows Of Power', 'https://images.isbndb.com/covers/83/69/9780060008369.jpg'), + ('0451208773', 'Punk''s Wing', 'https://images.isbndb.com/covers/87/74/9780451208774.jpg'), + ('0425190919', 'Sea Of Fire (Tom Clancy''s Op-Centre, Book 10)', 'https://images.isbndb.com/covers/09/13/9780425190913.jpg'), + ('006103181X', 'The Last Phoenix', 'https://images.isbndb.com/covers/18/16/9780061031816.jpg'), + ('0446612901', 'The Kingmaker', 'https://images.isbndb.com/covers/29/06/9780446612906.jpg'), + ('051513581X', 'Piranha (Dale Brown''s Dreamland)', 'https://images.isbndb.com/covers/58/17/9780515135817.jpg'), + ('0515119202', 'Daring To Dream: The Dream Trilogy #1', 'https://images.isbndb.com/covers/92/06/9780515119206.jpg'), + ('1551660504', 'Skin Deep (The O''hurleys)', 'https://images.isbndb.com/covers/05/09/9781551660509.jpg'), + ('0671013947', 'By Dawn''s Early Light: A Novel', 'https://images.isbndb.com/covers/39/43/9780671013943.jpg'), + ('042512164X', 'Capital Crimes', 'https://images.isbndb.com/covers/16/41/9780425121641.jpg'), + ('0451197534', 'Final Venture', 'https://images.isbndb.com/covers/75/35/9780451197535.jpg'), + ('0425188795', 'The Sentinel', 'https://images.isbndb.com/covers/87/98/9780425188798.jpg'), + ('0515134864', 'Turbulence', 'https://images.isbndb.com/covers/48/65/9780515134865.jpg'), + ('0312925778', 'Night Thoughts - Reflections Of A Sex Therapist', 'https://images.isbndb.com/covers/57/72/9780312925772.jpg'), + ('031228361X', 'Liberty: A Jake Grafton Novel', 'https://images.isbndb.com/covers/36/12/9780312283612.jpg'), + ('0786889845', 'Conflict Of Interest', 'https://images.isbndb.com/covers/98/46/9780786889846.jpg'), + ('0765341697', 'Against All Enemies', 'https://images.isbndb.com/covers/16/93/9780765341693.jpg'), + ('0060094397', 'Razor''s Edge (Dale Brown''s Dreamland)', 'https://images.isbndb.com/covers/43/93/9780060094393.jpg'), + ('0451410645', 'Dark Ambition', 'https://images.isbndb.com/covers/06/41/9780451410641.jpg'), + ('0446610402', 'Mirage', 'https://images.isbndb.com/covers/04/07/9780446610407.jpg'), + ('0061032425', 'The Family', 'https://images.isbndb.com/covers/24/24/9780061032424.jpg'), + ('0743405900', 'True Justice', 'https://images.isbndb.com/covers/59/04/9780743405904.jpg'), + ('0425163415', 'The President''s Daughter (Sean Dillon)', 'https://images.isbndb.com/covers/34/12/9780425163412.jpg'), + ('0425187721', 'Nerve Center (Dale Brown''s Dreamland, No. 2)', 'https://images.isbndb.com/covers/77/22/9780425187722.jpg'), + ('0553574035', 'Edge, The', 'https://images.isbndb.com/covers/40/36/9780553574036.jpg'), + ('044022473X', 'Breach Of Promise', 'https://images.isbndb.com/covers/47/30/9780440224730.jpg'), + ('0091833345', 'Something That Happens To Other People: Stories Of Women Growing Older', 'https://images.isbndb.com/covers/33/43/9780091833343.jpg'), + ('0899972020', '50 Best Short Hikes In California''s Central Coast', 'https://images.isbndb.com/covers/20/22/9780899972022.jpg'), + ('0553254502', 'Roll Of Thunder, Hear My Cry', 'https://images.isbndb.com/covers/45/01/9780553254501.jpg'), + ('0140097058', 'In The Country Of Last Things', 'https://images.isbndb.com/covers/70/54/9780140097054.jpg'), + ('0688155308', 'Naked Pictures Of Famous People', 'https://images.isbndb.com/covers/53/08/9780688155308.jpg'), + ('0688046606', 'Night Over Water', 'https://images.isbndb.com/covers/66/06/9780688046606.jpg'), + ('0451624769', 'The Double Helix (Mentor Series)', 'https://images.isbndb.com/covers/47/65/9780451624765.jpg'), + ('0441006949', 'Mariel Of Redwall (Redwall, Book 4)', 'https://images.isbndb.com/covers/69/46/9780441006946.jpg'), + ('0747265453', 'Unnatural Justice (Oz Blackstone Mysteries)', 'https://images.isbndb.com/covers/54/50/9780747265450.jpg'), + ('0747263884', 'Head Shot (Bob Skinner Mysteries)', 'https://images.isbndb.com/covers/38/83/9780747263883.jpg'), + ('0140137815', 'Opportunities: A Handbook Of Business Opportunity Search', 'https://images.isbndb.com/covers/78/11/9780140137811.jpg'), + ('0156767503', 'The Road To Wigan Pier', 'https://images.isbndb.com/covers/75/07/9780156767507.jpg'), + ('0380563908', 'The Thorn Birds', 'https://images.isbndb.com/covers/39/06/9780380563906.jpg'), + ('0345331176', 'Two Sisters', 'https://images.isbndb.com/covers/11/75/9780345331175.jpg'), + ('0241102634', 'Kindergarten', 'https://images.isbndb.com/covers/26/33/9780241102633.jpg'), + ('0786708069', 'Doris Lessing: A Biography', 'https://images.isbndb.com/covers/80/62/9780786708062.jpg'), + ('0743411447', 'Jolie Blon''s Bounce', 'https://images.isbndb.com/covers/14/48/9780743411448.jpg'), + ('0140432264', 'Washington Square (Penguin Classics)', 'https://images.isbndb.com/covers/22/68/9780140432268.jpg'), + ('0452276772', 'Kinflicks: 20th Anniversary Edition', 'https://images.isbndb.com/covers/67/72/9780452276772.jpg'), + ('0140185887', 'Cakes And Ale (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/58/81/9780140185881.jpg'), + ('0140008950', 'Zuleika Dobson: Or An Oxford Love Story (Penguin Modern Classics)', 'https://images.isbndb.com/covers/89/51/9780140008951.jpg'), + ('0743235053', 'Haunted Ground: A Novel', 'https://images.isbndb.com/covers/50/51/9780743235051.jpg'), + ('1561310271', 'The Greenhouse', 'https://images.isbndb.com/covers/02/72/9781561310272.jpg'), + ('0553210246', 'The Mayor Of Casterbridge (Bantam Classics)', 'https://images.isbndb.com/covers/02/48/9780553210248.jpg'), + ('0140054316', 'Tempest-tost (Salterton Trilogy)', 'https://images.isbndb.com/covers/43/16/9780140054316.jpg'), + ('0590372343', 'Trouble With Valentines', 'https://images.isbndb.com/covers/23/43/9780590372343.jpg'), + ('0595279171', 'God Is In Hell: Opening My Heart To The Holocaust', 'https://images.isbndb.com/covers/91/73/9780595279173.jpg'), + ('0312983417', 'Starting Over', 'https://images.isbndb.com/covers/34/13/9780312983413.jpg'), + ('0440238412', 'When Zachary Beaver Came To Town (New Readers Circle Editions)', 'https://images.isbndb.com/covers/84/16/9780440238416.jpg'), + ('006054564X', 'My Invented Country: A Nostalgic Journey Through Chile', 'https://images.isbndb.com/covers/56/42/9780060545642.jpg'), + ('0385502761', 'Look At Me', 'https://images.isbndb.com/covers/27/64/9780385502764.jpg'), + ('0440229081', 'Skellig', 'https://images.isbndb.com/covers/90/87/9780440229087.jpg'), + ('038550084X', 'Fraud', 'https://images.isbndb.com/covers/08/45/9780385500845.jpg'), + ('0553257749', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/77/48/9780553257748.jpg'), + ('0380005166', 'Shardik', 'https://images.isbndb.com/covers/51/61/9780380005161.jpg'), + ('0394309685', 'Light In August', 'https://images.isbndb.com/covers/96/82/9780394309682.jpg'), + ('0970141947', 'Just A Couple Of Days', 'https://images.isbndb.com/covers/19/41/9780970141941.jpg'), + ('0451516680', 'Heart Of Darkness And The Secret Sharer', 'https://images.isbndb.com/covers/66/88/9780451516688.jpg'), + ('0140367829', 'Aladdin And Other Tales From The Arabian Nights (Puffin Classics)', 'https://images.isbndb.com/covers/78/29/9780140367829.jpg'), + ('0345441788', 'The Forest', 'https://images.isbndb.com/covers/17/82/9780345441782.jpg'), + ('1853260207', 'Jane Eyre (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/02/09/9781853260209.jpg'), + ('0140620478', 'Far From The Madding Crowd (Penguin Popular Classics)', 'https://images.isbndb.com/covers/04/74/9780140620474.jpg'), + ('0679750150', 'The Sailor Who Fell From Grace With The Sea', 'https://images.isbndb.com/covers/01/54/9780679750154.jpg'), + ('0060930438', 'Kids, Parents, And Power Struggles: Winning For A Lifetime', 'https://images.isbndb.com/covers/04/31/9780060930431.jpg'), + ('0671796356', 'Meditations For Parents Who Do Too Much', 'https://images.isbndb.com/covers/63/58/9780671796358.jpg'), + ('0811841553', 'The Worst-Case Scenario Survival Handbook: Parenting', 'https://images.isbndb.com/covers/15/59/9780811841559.jpg'), + ('076070015X', 'The Age Of Innocence', 'https://images.isbndb.com/covers/01/50/9780760700150.jpg'), + ('0312261357', 'Claiming Kin: Confronting The History Of An African American Family', 'https://images.isbndb.com/covers/13/51/9780312261351.jpg'), + ('188090845X', 'Out Of The Past: Amish Traditon And Faith (Celebrating America)', 'https://images.isbndb.com/covers/84/57/9781880908457.jpg'), + ('0804818584', 'Japan Country Living', 'https://images.isbndb.com/covers/85/82/9780804818582.jpg'), + ('080482052X', 'Blue And White Japan', 'https://images.isbndb.com/covers/05/23/9780804820523.jpg'), + ('0440237424', 'The Best Revenge', 'https://images.isbndb.com/covers/74/26/9780440237426.jpg'), + ('2253030589', 'Mrs Dalloway', 'https://images.isbndb.com/covers/05/84/9782253030584.jpg'), + ('0425087700', 'Parker Pyne Investigates', 'https://images.isbndb.com/covers/77/01/9780425087701.jpg'), + ('2013218923', 'Le Crime De L''Orient-Express', 'https://images.isbndb.com/covers/89/24/9782013218924.jpg'), + ('0140286829', 'The Third Man', 'https://images.isbndb.com/covers/68/23/9780140286823.jpg'), + ('2290333697', 'Le Mystère De La Chambre Jaune', 'https://images.isbndb.com/covers/36/93/9782290333693.jpg'), + ('0679722610', 'Red Harvest', 'https://images.isbndb.com/covers/26/18/9780679722618.jpg'), + ('1592247938', 'The Red Badge Of Courage', 'https://images.isbndb.com/covers/79/36/9781592247936.jpg'), + ('958949479X', 'THE COUNT OF MONTECRISTO (Spanish Edition)', 'https://images.isbndb.com/covers/47/90/9789589494790.jpg'), + ('0553213296', 'The Last Of The Mohicans (Bantam Classics)', 'https://images.isbndb.com/covers/32/94/9780553213294.jpg'), + ('0812523016', 'Dracula', 'https://images.isbndb.com/covers/30/10/9780812523010.jpg'), + ('0553214209', 'From The Earth To The Moon (Bantam Classics)', 'https://images.isbndb.com/covers/42/08/9780553214208.jpg'), + ('0140367152', 'Journey To The Centre Of The Earth (Puffin Classics)', 'https://images.isbndb.com/covers/71/57/9780140367157.jpg'), + ('9500286327', 'Los Tres Mosqueteros (Spanish Edition)', 'https://images.isbndb.com/covers/63/29/9789500286329.jpg'), + ('0689810962', 'Michael Strogoff: A Courier Of The Czar (Scribner Illustrated Classics)', 'https://images.isbndb.com/covers/09/61/9780689810961.jpg'), + ('0062702475', 'Ordinary People, Extraordinary Wealth: The 8 Secrets Of How 5,000 Ordinary Americans Became Successful Investors--and How You Can Too', 'https://images.isbndb.com/covers/24/70/9780062702470.jpg'), + ('0385415613', 'CHRISTMAS OUT WEST (A Double D Western)', 'https://images.isbndb.com/covers/56/13/9780385415613.jpg'), + ('0449219771', 'The Rise And Fall Of The Third Reich : A History Of Nazi Germany', 'https://images.isbndb.com/covers/97/75/9780449219775.jpg'), + ('0195038630', 'Battle Cry Of Freedom: The Civil War Era (The Oxford History Of The United States)', 'https://images.isbndb.com/covers/86/37/9780195038637.jpg'), + ('0385418973', 'Decisive Day: The Battle For Bunker Hill', 'https://images.isbndb.com/covers/89/73/9780385418973.jpg'), + ('0345380746', 'Long Knife', 'https://images.isbndb.com/covers/07/46/9780345380746.jpg'), + ('1564963179', 'Type: Hot Designers Make Cool Fonts', 'https://images.isbndb.com/covers/31/78/9781564963178.jpg'), + ('156496518X', 'Web Site Graphics: Navigation: The Best Work From The Web', 'https://images.isbndb.com/covers/51/89/9781564965189.jpg'), + ('0891347739', 'Graphic Design: Inspirations & Innovations 2 (v. 2)', 'https://images.isbndb.com/covers/77/36/9780891347736.jpg'), + ('1566091888', 'A Blip In The Continuum (Macintosh Version)', 'https://images.isbndb.com/covers/18/86/9781566091886.jpg'), + ('0891346406', 'Graphic Design: Inspirations And Innovations', 'https://images.isbndb.com/covers/64/01/9780891346401.jpg'), + ('1573441244', 'Erotic Fairy Tales: A Romp Through The Classics', 'https://images.isbndb.com/covers/12/47/9781573441247.jpg'), + ('0140280243', 'A Treasury Of Royal Scandals: The Shocking True Stories History''s Wickedest, Weirdest, Most Wanton Kings, Queens, Tsars, Popes, And Emperors', 'https://images.isbndb.com/covers/02/41/9780140280241.jpg'), + ('1570716439', 'Zen Meditations On Being A Mother With CD (Audio)', 'https://images.isbndb.com/covers/64/30/9781570716430.jpg'), + ('076151340X', 'Smoothies For Life! Yummy, Fun, And Nutritious!', 'https://images.isbndb.com/covers/34/07/9780761513407.jpg'), + ('0345359925', 'The Power Of One', 'https://images.isbndb.com/covers/99/26/9780345359926.jpg'), + ('1562829254', 'The Ultimate Disney Trivia Quiz Book (Vol 2)', 'https://images.isbndb.com/covers/92/54/9781562829254.jpg'), + ('0688127258', 'The International Dictionary Of Desserts, Pastries, And Confections: A Comprehensive Guide With More Than 800 Definitions And 86 Classic Recipes For', 'https://images.isbndb.com/covers/72/51/9780688127251.jpg'), + ('0140109269', 'The Jaguar Smile: A Nicaraguan Journey', 'https://images.isbndb.com/covers/92/69/9780140109269.jpg'), + ('0452260302', 'The Universal Baseball Association, Inc., J. Henry Waugh, Prop.', 'https://images.isbndb.com/covers/03/06/9780452260306.jpg'), + ('0140116168', 'Dorothy Parker: What Fresh Hell Is This?', 'https://images.isbndb.com/covers/61/68/9780140116168.jpg'), + ('0449205061', 'Rabbit, Run', 'https://images.isbndb.com/covers/50/68/9780449205068.jpg'), + ('0886775361', 'Gatherer Of Clouds (The Initiate Brother, Book 2)', 'https://images.isbndb.com/covers/53/60/9780886775360.jpg'), + ('0061020672', 'Sourcery', 'https://images.isbndb.com/covers/06/74/9780061020674.jpg'), + ('0671664948', 'The Restaurant At The End Of The Universe', 'https://images.isbndb.com/covers/49/47/9780671664947.jpg'), + ('0345316509', 'Job: A Comedy Of Justice', 'https://images.isbndb.com/covers/65/09/9780345316509.jpg'), + ('0140185992', 'The Painted Veil (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/59/97/9780140185997.jpg'), + ('006440174X', 'Good Night, Mr. Tom', 'https://images.isbndb.com/covers/17/46/9780064401746.jpg'), + ('0385333862', 'The Running Mate', 'https://images.isbndb.com/covers/38/63/9780385333863.jpg'), + ('0330392611', 'Idea Of Perfection', 'https://images.isbndb.com/covers/26/17/9780330392617.jpg'), + ('0684822768', 'In Our Time', 'https://images.isbndb.com/covers/27/61/9780684822761.jpg'), + ('0374480133', 'Tuck Everlasting', 'https://images.isbndb.com/covers/01/34/9780374480134.jpg'), + ('1842124196', 'Ivan The Terrible', 'https://images.isbndb.com/covers/41/92/9781842124192.jpg'), + ('1559723475', 'The Titanic Conspiracy. Cover-ups And Mysteries Of The World''s Most Famous Sea Disaster', 'https://images.isbndb.com/covers/34/73/9781559723473.jpg'), + ('0812521463', 'Aztec', 'https://images.isbndb.com/covers/14/67/9780812521467.jpg'), + ('0394512669', '"Well, There''s Your Problem": Cartoons', 'https://images.isbndb.com/covers/26/62/9780394512662.jpg'), + ('0451192915', 'Murder On The QE2: Murder She Wrote', 'https://images.isbndb.com/covers/29/12/9780451192912.jpg'), + ('0553100343', 'Brightness Reef (Bantam Spectra Book)', 'https://images.isbndb.com/covers/03/41/9780553100341.jpg'), + ('0684172755', 'Death Of A Don', 'https://images.isbndb.com/covers/27/50/9780684172750.jpg'), + ('0811804844', 'Little Wisdoms: Mysticism (Little Wisdom Library)', 'https://images.isbndb.com/covers/48/44/9780811804844.jpg'), + ('0385483414', 'The 176 Stupidest Things Ever Done', 'https://images.isbndb.com/covers/34/14/9780385483414.jpg'), + ('0451194756', 'Murder, She Wrote: A Little Yuletide Murder', 'https://images.isbndb.com/covers/47/56/9780451194756.jpg'), + ('0449905950', 'Stalking Horse', 'https://images.isbndb.com/covers/59/51/9780449905951.jpg'), + ('0345342313', 'A Death For A Doctor', 'https://images.isbndb.com/covers/23/17/9780345342317.jpg'), + ('0448168324', 'Hagar: Sack Time', 'https://images.isbndb.com/covers/83/26/9780448168326.jpg'), + ('0805004602', '"F" Is For Fugitive (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/46/01/9780805004601.jpg'), + ('0590449036', 'Mom, You''re Fired!', 'https://images.isbndb.com/covers/90/38/9780590449038.jpg'), + ('0747232679', 'The Brothers Of Gwynedd Quartet: Comprising Sunrise In The West, The Dragon At Noonday, The Hounds Of Sunset, Afterglow And Nightfall', 'https://images.isbndb.com/covers/26/74/9780747232674.jpg'), + ('0133140547', 'Feeding Your Baby: A Parent''s Guide To Practical Nutrition', 'https://images.isbndb.com/covers/05/45/9780133140545.jpg'), + ('0671732277', 'Delusions Of Grandma', 'https://images.isbndb.com/covers/22/71/9780671732271.jpg'), + ('0451406176', 'The Duke (Coulter Historical Romance)', 'https://images.isbndb.com/covers/61/70/9780451406170.jpg'), + ('0345424115', 'Canine Crimes', 'https://images.isbndb.com/covers/41/12/9780345424112.jpg'), + ('0345302656', 'Satan: His Psychotherapy And Cure By The Unfortunate Dr. Kassler, J.S.P.S.', 'https://images.isbndb.com/covers/26/56/9780345302656.jpg'), + ('0140082565', 'The Scandal Of Father Brown (Father Brown Mystery)', 'https://images.isbndb.com/covers/25/62/9780140082562.jpg'), + ('0695808117', 'Survival Handbook For Children Of Aging Parents', 'https://images.isbndb.com/covers/81/12/9780695808112.jpg'), + ('0373152507', 'For Better For Worse', 'https://images.isbndb.com/covers/25/06/9780373152506.jpg'), + ('0394486986', 'Your Isadora: The Love Story Of Isadora Duncan & Gordon Craig', 'https://images.isbndb.com/covers/69/87/9780394486987.jpg'), + ('0440071240', 'Random Winds', 'https://images.isbndb.com/covers/12/42/9780440071242.jpg'), + ('0688078028', 'One (Silver Arrow Books)', 'https://images.isbndb.com/covers/80/27/9780688078027.jpg'), + ('0312285329', 'Feather Castles', 'https://images.isbndb.com/covers/53/26/9780312285326.jpg'), + ('0380785749', 'Happily Ever After (An Avon Romantic Treasure)', 'https://images.isbndb.com/covers/57/42/9780380785742.jpg'), + ('044920099X', 'Emerald', 'https://images.isbndb.com/covers/09/95/9780449200995.jpg'), + ('0345385209', 'Losers', 'https://images.isbndb.com/covers/52/08/9780345385208.jpg'), + ('055325555X', 'WHEN GRAVITY FAILS', 'https://images.isbndb.com/covers/55/53/9780553255553.jpg'), + ('084311861X', 'Should I Have Baby Te', 'https://images.isbndb.com/covers/86/12/9780843118612.jpg'), + ('0553249371', 'Wild Swan', 'https://images.isbndb.com/covers/93/78/9780553249378.jpg'), + ('0446911968', 'Superman: Miracle Monday', 'https://images.isbndb.com/covers/19/62/9780446911962.jpg'), + ('0440142326', 'Joan Embery''s Collection Of Amazing Animal Facts', 'https://images.isbndb.com/covers/23/24/9780440142324.jpg'), + ('0425077047', '...And Ladies Of The Club', 'https://images.isbndb.com/covers/70/47/9780425077047.jpg'), + ('0385278861', 'Fatal Obsession', 'https://images.isbndb.com/covers/88/67/9780385278867.jpg'), + ('0446602345', 'Original Sin (Adam Dalgliesh Mystery Series #9)', 'https://images.isbndb.com/covers/23/41/9780446602341.jpg'), + ('0671737775', 'Iceberg (Dirk Pitt, No. 3)', 'https://images.isbndb.com/covers/77/71/9780671737771.jpg'), + ('0553276328', 'Pacific Vortex (Dirk Pitt Adventure)', 'https://images.isbndb.com/covers/63/29/9780553276329.jpg'), + ('0446610232', 'The Ice Limit', 'https://images.isbndb.com/covers/02/30/9780446610230.jpg'), + ('0812564375', 'Mount Dragon', 'https://images.isbndb.com/covers/43/72/9780812564372.jpg'), + ('0812543262', 'Relic (Pendergast, Book 1)', 'https://images.isbndb.com/covers/32/61/9780812543261.jpg'), + ('0061014591', 'The Terrible Hours', 'https://images.isbndb.com/covers/45/98/9780061014598.jpg'), + ('0787103950', 'Morning Noon And Night', 'https://images.isbndb.com/covers/39/58/9780787103958.jpg'), + ('0451409744', 'Men Of Honor', 'https://images.isbndb.com/covers/97/44/9780451409744.jpg'), + ('0688147259', 'Notes From A Small Island', 'https://images.isbndb.com/covers/72/59/9780688147259.jpg'), + ('0446523364', 'Riptide', 'https://images.isbndb.com/covers/33/63/9780446523363.jpg'), + ('0761512195', 'Your First Year In Network Marketing: Overcome Your Fears, Experience Success, And Achieve Your Dreams!', 'https://images.isbndb.com/covers/21/96/9780761512196.jpg'), + ('0761504397', 'The Wave 3 Way To Building Your Downline', 'https://images.isbndb.com/covers/43/99/9780761504399.jpg'), + ('0963425900', 'The Greatest Networker In The World', 'https://images.isbndb.com/covers/59/04/9780963425904.jpg'), + ('0812571029', 'Uther (The Camulod Chronicles, Book 7)', 'https://images.isbndb.com/covers/10/28/9780812571028.jpg'), + ('0804109729', 'Russka: The Novel Of Russia', 'https://images.isbndb.com/covers/97/27/9780804109727.jpg'), + ('0553280643', 'The Gate To Women''s Country', 'https://images.isbndb.com/covers/06/47/9780553280647.jpg'), + ('0385480210', 'The Pocket Mirror Of Heroes', 'https://images.isbndb.com/covers/02/15/9780385480215.jpg'), + ('0345431901', 'The Finishing School (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/19/05/9780345431905.jpg'), + ('0385497105', 'Up In The Air', 'https://images.isbndb.com/covers/71/07/9780385497107.jpg'), + ('0465031358', 'The Origin Of Humankind (Science Masters Series)', 'https://images.isbndb.com/covers/13/51/9780465031351.jpg'), + ('0306808900', 'Hemingway: A Biography', 'https://images.isbndb.com/covers/89/06/9780306808906.jpg'), + ('031219904X', 'Jack London: A Life', 'https://images.isbndb.com/covers/90/43/9780312199043.jpg'), + ('0312980663', 'A Twist At The End', 'https://images.isbndb.com/covers/06/65/9780312980665.jpg'), + ('0062502891', 'The Chalice And The Blade: Our History, Our Future', 'https://images.isbndb.com/covers/28/96/9780062502896.jpg'), + ('1570612676', 'Best Places Portland', 'https://images.isbndb.com/covers/26/71/9781570612671.jpg'), + ('0451452313', 'Better Than Life (Red Dwarf)', 'https://images.isbndb.com/covers/23/13/9780451452313.jpg'), + ('0767912365', 'Ciao, America!: An Italian Discovers The U.S.', 'https://images.isbndb.com/covers/23/65/9780767912365.jpg'), + ('3293202047', 'Nana Plaza', 'https://images.isbndb.com/covers/20/47/9783293202047.jpg'), + ('0595319033', 'The Savior Of The Woods', 'https://images.isbndb.com/covers/90/39/9780595319039.jpg'), + ('0201626098', 'Digital Woes', 'https://images.isbndb.com/covers/60/94/9780201626094.jpg'), + ('0684868660', 'Altar Music: A Novel', 'https://images.isbndb.com/covers/86/60/9780684868660.jpg'), + ('0060194995', 'To Kill A Mockingbird', 'https://images.isbndb.com/covers/49/94/9780060194994.jpg'), + ('0805065415', 'Blue Latitudes: Boldly Going Where Captain Cook Has Gone Before', 'https://images.isbndb.com/covers/54/11/9780805065411.jpg'), + ('044023655X', 'Kiss Of The Highlander (The Highlander Series, Book 4)', 'https://images.isbndb.com/covers/65/59/9780440236559.jpg'), + ('0312979975', 'Fantasy Lover', 'https://images.isbndb.com/covers/99/73/9780312979973.jpg'), + ('0440236525', 'The Highlander''s Touch (Highlander, Book 3)', 'https://images.isbndb.com/covers/65/28/9780440236528.jpg'), + ('0312979983', 'Night Pleasures (Dark-Hunter, Book 2)', 'https://images.isbndb.com/covers/99/80/9780312979980.jpg'), + ('0743226844', 'Mama Gena''s School Of Womanly Arts: Using The Power Of Pleasure To Have Your Way With The World', 'https://images.isbndb.com/covers/68/44/9780743226844.jpg'), + ('0440234816', 'To Tame A Highland Warrior (Highlander, Book 2)', 'https://images.isbndb.com/covers/48/14/9780440234814.jpg'), + ('0671019740', 'Heart Of Fire (Pocket Books Romance)', 'https://images.isbndb.com/covers/97/47/9780671019747.jpg'), + ('0373691300', 'American Heroes: Riley', 'https://images.isbndb.com/covers/13/02/9780373691302.jpg'), + ('0425190927', 'The Wife Test', 'https://images.isbndb.com/covers/09/20/9780425190920.jpg'), + ('0446600814', 'Crystal Flame', 'https://images.isbndb.com/covers/08/11/9780446600811.jpg'), + ('0440234808', 'Beyond The Highland Mist (Highlander, Book 1)', 'https://images.isbndb.com/covers/48/07/9780440234807.jpg'), + ('0373806841', 'Devil To Pay', 'https://images.isbndb.com/covers/68/43/9780373806843.jpg'), + ('0373252579', 'Main Attraction', 'https://images.isbndb.com/covers/25/72/9780373252572.jpg'), + ('0373834683', 'Full Bloom/Compromising Positions (Harlequin Temptation 2-In-1 Collection)', 'https://images.isbndb.com/covers/46/86/9780373834686.jpg'), + ('084233193X', 'A New Graft On The Family Tree (GLH Library)', 'https://images.isbndb.com/covers/19/37/9780842331937.jpg'), + ('0061087130', 'Master Of Desire', 'https://images.isbndb.com/covers/71/34/9780061087134.jpg'), + ('0671019635', 'Family Man', 'https://images.isbndb.com/covers/96/31/9780671019631.jpg'), + ('0876664206', 'Cockatiels', 'https://images.isbndb.com/covers/42/09/9780876664209.jpg'), + ('0609605216', 'The Art Of Imperfection: Simple Ways To Make Peace With Yourself', 'https://images.isbndb.com/covers/52/19/9780609605219.jpg'), + ('0740723367', 'The Meaning Of Life', 'https://images.isbndb.com/covers/33/60/9780740723360.jpg'), + ('0380004801', 'Forgotten Beasts Of Eld', 'https://images.isbndb.com/covers/48/05/9780380004805.jpg'), + ('2277302686', 'Le Peuple Du Tapis', 'https://images.isbndb.com/covers/26/81/9782277302681.jpg'), + ('2070334430', 'Contes De Ma Mère L''Oye', 'https://images.isbndb.com/covers/44/38/9782070334438.jpg'), + ('2290045802', 'Les Chiennes Savantes', 'https://images.isbndb.com/covers/58/00/9782290045800.jpg'), + ('2070403734', 'Les Confessions: Livres I à IV', 'https://images.isbndb.com/covers/37/38/9782070403738.jpg'), + ('220730521X', 'L''Oeil De La Sibylle', 'https://images.isbndb.com/covers/52/18/9782207305218.jpg'), + ('2207306038', 'Le Faiseur De Veuves. Renaissance', 'https://images.isbndb.com/covers/60/31/9782207306031.jpg'), + ('2207248526', 'Contes De La Fée Verte', 'https://images.isbndb.com/covers/85/22/9782207248522.jpg'), + ('2207306046', 'Le Faiseur De Veuves.', 'https://images.isbndb.com/covers/60/48/9782207306048.jpg'), + ('2207304884', 'Le Nouveau Soleil De Teur', 'https://images.isbndb.com/covers/48/84/9782207304884.jpg'), + ('2207304892', 'Le Nouveau Soleil De Teur, Tome 2', 'https://images.isbndb.com/covers/48/91/9782207304891.jpg'), + ('2207303454', 'La Griffe Du Demi-dieu', 'https://images.isbndb.com/covers/34/50/9782207303450.jpg'), + ('2070326977', 'Théorie De L''art Moderne', 'https://images.isbndb.com/covers/69/76/9782070326976.jpg'), + ('2910932915', 'Où S''embrasser En France', 'https://images.isbndb.com/covers/29/16/9782910932916.jpg'), + ('2844850235', 'De La Bêtise', 'https://images.isbndb.com/covers/02/32/9782844850232.jpg'), + ('2846400539', 'Let''s Go Espagne - Côte Méditerranéenne 2003', 'https://images.isbndb.com/covers/05/34/9782846400534.jpg'), + ('2846400520', 'Let''s Go Espagne 2003', 'https://images.isbndb.com/covers/05/27/9782846400527.jpg'), + ('0061091790', 'After All These Years', 'https://images.isbndb.com/covers/17/97/9780061091797.jpg'), + ('039453896X', 'Psychotic Reactions And Carburetor Dung', 'https://images.isbndb.com/covers/89/69/9780394538969.jpg'), + ('0141006633', 'The Penguin Book Of Canadian Jokes', 'https://images.isbndb.com/covers/66/35/9780141006635.jpg'), + ('0803723547', 'Magpie Magic: A Tale Of Colorful Mischief', 'https://images.isbndb.com/covers/35/42/9780803723542.jpg'), + ('0440236851', 'The Wedding', 'https://images.isbndb.com/covers/68/56/9780440236856.jpg'), + ('0345397843', 'Double Jeopardy', 'https://images.isbndb.com/covers/78/43/9780345397843.jpg'), + ('0843925795', 'Demon Within', 'https://images.isbndb.com/covers/57/91/9780843925791.jpg'), + ('0425151867', 'Acceptable Risk', 'https://images.isbndb.com/covers/18/60/9780425151860.jpg'), + ('0395746566', 'Sector 7 (Caldecott Honor Book)', 'https://images.isbndb.com/covers/65/61/9780395746561.jpg'), + ('0345380193', 'Just Cause', 'https://images.isbndb.com/covers/01/97/9780345380197.jpg'), + ('0380715937', 'The Dreaming', 'https://images.isbndb.com/covers/59/30/9780380715930.jpg'), + ('0451188071', 'The Expert', 'https://images.isbndb.com/covers/80/76/9780451188076.jpg'), + ('0449704378', 'The Light In The Forest', 'https://images.isbndb.com/covers/43/70/9780449704370.jpg'), + ('0751370312', 'Dinotopia: The World Beneath', 'https://images.isbndb.com/covers/03/17/9780751370317.jpg'), + ('0340721480', 'Behind The Smile: My Story', 'https://images.isbndb.com/covers/14/83/9780340721483.jpg'), + ('0399127216', 'The White Plague', 'https://images.isbndb.com/covers/72/12/9780399127212.jpg'), + ('0843948760', 'The Lost', 'https://images.isbndb.com/covers/87/69/9780843948769.jpg'), + ('0385720211', 'In The Drink: A Novel', 'https://images.isbndb.com/covers/02/12/9780385720212.jpg'), + ('0671671421', 'Manhattan Cocktail And Other Irreverent Observations On Life, Taxes And Meter Maids', 'https://images.isbndb.com/covers/14/26/9780671671426.jpg'), + ('0961551453', 'Best Places To Kiss In North West (Best Places To Kiss In The Northwest: A Romantic Travel Guide)', 'https://images.isbndb.com/covers/14/52/9780961551452.jpg'), + ('0671024620', 'All Around Atlantis', 'https://images.isbndb.com/covers/46/28/9780671024628.jpg'), + ('0553256092', 'Princess Daisy', 'https://images.isbndb.com/covers/60/93/9780553256093.jpg'), + ('0553293761', 'Dazzle', 'https://images.isbndb.com/covers/37/60/9780553293760.jpg'), + ('067102096X', 'Lethal Seduction', 'https://images.isbndb.com/covers/09/65/9780671020965.jpg'), + ('0874830842', 'The Wreath Ribbon Quilt', 'https://images.isbndb.com/covers/08/42/9780874830842.jpg'), + ('1573225444', 'Loving Edith', 'https://images.isbndb.com/covers/54/41/9781573225441.jpg'), + ('0446311774', 'Innocent Blood (Adam Dalgliesh Mystery Series #7)', 'https://images.isbndb.com/covers/17/79/9780446311779.jpg'), + ('0553561367', 'Spring Collection', 'https://images.isbndb.com/covers/13/64/9780553561364.jpg'), + ('0882669842', 'Milk-Based Soaps: Making Natural, Skin-Nourishing Soap', 'https://images.isbndb.com/covers/98/47/9780882669847.jpg'), + ('0743206088', 'Flowers Are For Love: A Bouquet Of Inspirational Stories', 'https://images.isbndb.com/covers/60/82/9780743206082.jpg'), + ('0826307361', 'The Southwest', 'https://images.isbndb.com/covers/73/61/9780826307361.jpg'), + ('0312982518', 'The Sigma Protocol', 'https://images.isbndb.com/covers/25/15/9780312982515.jpg'), + ('074320218X', 'Change Me Into Zeus''s Daughter', 'https://images.isbndb.com/covers/21/83/9780743202183.jpg'), + ('0425180050', 'Line Of Control (Tom Clancy''s Op-Center, Book 8)', 'https://images.isbndb.com/covers/00/51/9780425180051.jpg'), + ('055347068X', 'The Brothers K', 'https://images.isbndb.com/covers/06/80/9780553470680.jpg'), + ('0394572726', 'Legacy', 'https://images.isbndb.com/covers/27/27/9780394572727.jpg'), + ('0553199609', 'Trevayne', 'https://images.isbndb.com/covers/96/04/9780553199604.jpg'), + ('0962546895', 'Making The Most Of Marin: A Best Selling Guide To The Most Stunning County On The California Coast', 'https://images.isbndb.com/covers/68/91/9780962546891.jpg'), + ('0553014803', 'The Turning Point: Science, Society, And The Rising Culture', 'https://images.isbndb.com/covers/48/08/9780553014808.jpg'), + ('0679439196', 'Being Digital', 'https://images.isbndb.com/covers/91/96/9780679439196.jpg'), + ('0140157352', 'Getting To Yes: Negotiating Agreement Without Giving In', 'https://images.isbndb.com/covers/73/52/9780140157352.jpg'), + ('0691083886', 'QED: The Strange Theory Of Light And Matter', 'https://images.isbndb.com/covers/38/89/9780691083889.jpg'), + ('0030211212', 'McClane''s Field Guide To Saltwater Fishes Of North America: A Project Of The Gamefish Research Association', 'https://images.isbndb.com/covers/12/18/9780030211218.jpg'), + ('0312950586', 'Every Living Thing', 'https://images.isbndb.com/covers/05/83/9780312950583.jpg'), + ('0380778130', 'Hostile Witness', 'https://images.isbndb.com/covers/81/33/9780380778133.jpg'), + ('0806107014', 'Indian Legends From The Northern Rockies', 'https://images.isbndb.com/covers/70/11/9780806107011.jpg'), + ('027522600X', 'Living With Cancer', 'https://images.isbndb.com/covers/60/08/9780275226008.jpg'), + ('039913087X', 'On The Road With Charles Kuralt', 'https://images.isbndb.com/covers/08/78/9780399130878.jpg'), + ('0679736646', 'Ubik', 'https://images.isbndb.com/covers/66/46/9780679736646.jpg'), + ('1904908004', 'Shakespeare My Butt', 'https://images.isbndb.com/covers/80/05/9781904908005.jpg'), + ('0091882109', 'One Hit Wonderland', 'https://images.isbndb.com/covers/21/05/9780091882105.jpg'), + ('0743406230', 'Grift Sense (Tony Valentine Novels)', 'https://images.isbndb.com/covers/62/39/9780743406239.jpg'), + ('0446609943', 'The Switch', 'https://images.isbndb.com/covers/99/44/9780446609944.jpg'), + ('0783884397', 'The Case Of The Caretaker''s Cat', 'https://images.isbndb.com/covers/43/94/9780783884394.jpg'), + ('0380017962', 'Dona Flor And Her Two Husbands', 'https://images.isbndb.com/covers/79/66/9780380017966.jpg'), + ('0316153990', 'Blood Work', 'https://images.isbndb.com/covers/39/97/9780316153997.jpg'), + ('0375411275', 'Pobby And Dingan', 'https://images.isbndb.com/covers/12/74/9780375411274.jpg'), + ('0375507760', 'The Nightspinners: A Novel', 'https://images.isbndb.com/covers/77/62/9780375507762.jpg'), + ('0152022686', 'Armageddon Summer', 'https://images.isbndb.com/covers/26/86/9780152022686.jpg'), + ('0060956860', 'Joy In The Morning (Perennial Classics)', 'https://images.isbndb.com/covers/68/68/9780060956868.jpg'), + ('0940642247', 'Angry Women (Re/Search ; 13)', 'https://images.isbndb.com/covers/22/49/9780940642249.jpg'), + ('0393316041', 'Surely You''re Joking, Mr. Feynman! (Adventures Of A Curious Character)', 'https://images.isbndb.com/covers/60/49/9780393316049.jpg'), + ('0440223970', 'A Rain Of Death', 'https://images.isbndb.com/covers/39/79/9780440223979.jpg'), + ('0345441109', 'White Rose: Una Rosa Blanca (A Ballantine Readers'' Circle Book)', 'https://images.isbndb.com/covers/11/02/9780345441102.jpg'), + ('0380725576', 'Charms For The Easy Life', 'https://images.isbndb.com/covers/55/71/9780380725571.jpg'), + ('3423104740', 'Früchte Des Zorns: Roman', 'https://images.isbndb.com/covers/47/46/9783423104746.jpg'), + ('3442455235', 'Geständnisse Eines Küchenchefs: Was Sie über Restaurants Nie Wissen Wollten', 'https://images.isbndb.com/covers/52/32/9783442455232.jpg'), + ('0679748253', 'Beautiful Losers', 'https://images.isbndb.com/covers/82/50/9780679748250.jpg'), + ('3499128381', 'Am Anfang War Das Wort. Texte Von 1969 Bis 1990. (rororo Aktuell / Essay).', 'https://images.isbndb.com/covers/83/87/9783499128387.jpg'), + ('3596235316', 'Sucht Ohne Drogen. Arbeiten, Spielen, Essen, Lieben...', 'https://images.isbndb.com/covers/53/15/9783596235315.jpg'), + ('3320013041', 'Herzlichst Ihre Rosa. Ausgewählte Briefe', 'https://images.isbndb.com/covers/30/42/9783320013042.jpg'), + ('343017581X', 'Niemand Hat Kolumbus Ausgelacht. Sonderausgabe. Fälschungen Und Legenden Der Geschichte Richtiggestellt', 'https://images.isbndb.com/covers/58/14/9783430175814.jpg'), + ('0671725017', 'The Examined Life: Philosophical Meditations', 'https://images.isbndb.com/covers/50/13/9780671725013.jpg'), + ('0062510533', 'Gardens From The Sand: A Story About Looking For Answers & Finding Miracles', 'https://images.isbndb.com/covers/05/32/9780062510532.jpg'), + ('1561710059', 'Surviving The Not So Golden Years: Vital Medical And Financial Strategies For Anyone Planning To Grow Old', 'https://images.isbndb.com/covers/00/58/9781561710058.jpg'), + ('0722535724', 'Seventy-Eight Degrees Of Wisdom', 'https://images.isbndb.com/covers/57/21/9780722535721.jpg'), + ('0966164202', 'Be Full Of Yourself!: The Journey From Self-Criticism To Self-Celebration', 'https://images.isbndb.com/covers/42/06/9780966164206.jpg'), + ('1852304960', 'Red Moon: Understanding And Using The Gifts Of The Menstrual Cycle (Women''s Health And Parenting)', 'https://images.isbndb.com/covers/49/66/9781852304966.jpg'), + ('0062514083', 'The Third Millennium: Living In The Posthistoric World', 'https://images.isbndb.com/covers/40/80/9780062514080.jpg'), + ('042518286X', 'Shock', 'https://images.isbndb.com/covers/28/64/9780425182864.jpg'), + ('0394712528', 'One Of Ours', 'https://images.isbndb.com/covers/25/29/9780394712529.jpg'), + ('0553250426', 'The Clan Of The Cave Bear (Earth''s Children, Book One)', 'https://images.isbndb.com/covers/04/28/9780553250428.jpg'), + ('0394714342', 'Sapphira And The Slave Girl', 'https://images.isbndb.com/covers/43/49/9780394714349.jpg'), + ('0821772287', 'The Awakening', 'https://images.isbndb.com/covers/22/87/9780821772287.jpg'), + ('0590130048', '101 Wacky Computer Jokes', 'https://images.isbndb.com/covers/00/42/9780590130042.jpg'), + ('0425136612', 'Night Of The Hawk', 'https://images.isbndb.com/covers/66/14/9780425136614.jpg'), + ('0446602698', 'The Juror', 'https://images.isbndb.com/covers/26/93/9780446602693.jpg'), + ('0312975112', 'Romancing The Rogue', 'https://images.isbndb.com/covers/51/11/9780312975111.jpg'), + ('0425060055', 'The Girl Of The Sea Of Cortez', 'https://images.isbndb.com/covers/00/56/9780425060056.jpg'), + ('0671039903', 'Willow (De Beers)', 'https://images.isbndb.com/covers/99/05/9780671039905.jpg'), + ('0373243286', 'Irish Rebel (Silhouette Special Edition No. 1328)', 'https://images.isbndb.com/covers/32/80/9780373243280.jpg'), + ('0425163865', 'Detective', 'https://images.isbndb.com/covers/38/63/9780425163863.jpg'), + ('0553252828', 'Sicilian, The', 'https://images.isbndb.com/covers/28/28/9780553252828.jpg'), + ('0812501756', 'Ark', 'https://images.isbndb.com/covers/17/59/9780812501759.jpg'), + ('0446604208', 'Annapolis', 'https://images.isbndb.com/covers/42/08/9780446604208.jpg'), + ('0345317386', 'Loo Sanction', 'https://images.isbndb.com/covers/73/84/9780345317384.jpg'), + ('0345311809', 'Shibumi', 'https://images.isbndb.com/covers/18/01/9780345311801.jpg'), + ('0425076717', 'Role Of Honor', 'https://images.isbndb.com/covers/67/12/9780425076712.jpg'), + ('0440169127', 'A Pinch Of Snuff', 'https://images.isbndb.com/covers/91/23/9780440169123.jpg'), + ('0706406974', 'Home Baking', 'https://images.isbndb.com/covers/69/79/9780706406979.jpg'), + ('0440117437', 'Now And Forever', 'https://images.isbndb.com/covers/74/38/9780440117438.jpg'), + ('038055111X', 'Saving The Queen', 'https://images.isbndb.com/covers/11/18/9780380551118.jpg'), + ('0446363251', 'Scarlett: The Sequel To Margaret Mitchell''s "Gone With The Wind"', 'https://images.isbndb.com/covers/32/59/9780446363259.jpg'), + ('0935312390', 'Life In The Iron Mills And Other Stories: Second Edition', 'https://images.isbndb.com/covers/23/93/9780935312393.jpg'), + ('0679785892', 'Fear And Loathing In Las Vegas: A Savage Journey To The Heart Of The American Dream', 'https://images.isbndb.com/covers/58/97/9780679785897.jpg'), + ('0020360754', 'Heart Songs And Other Stories', 'https://images.isbndb.com/covers/07/59/9780020360759.jpg'), + ('1586420232', 'Fighting Gravity: A Novel', 'https://images.isbndb.com/covers/02/39/9781586420239.jpg'), + ('0060974990', 'Savage Inequalities: Children In America''s Schools', 'https://images.isbndb.com/covers/49/92/9780060974992.jpg'), + ('0671797867', 'Scar Lover', 'https://images.isbndb.com/covers/78/67/9780671797867.jpg'), + ('0375701966', 'The Moviegoer', 'https://images.isbndb.com/covers/19/62/9780375701962.jpg'), + ('0802136346', 'Being There', 'https://images.isbndb.com/covers/63/43/9780802136343.jpg'), + ('0330282565', 'The Little Drummer Girl', 'https://images.isbndb.com/covers/25/67/9780330282567.jpg'), + ('0310480000', 'Dave Says...Well Done!: The Common Guy''s Guide To Everyday Success', 'https://images.isbndb.com/covers/00/06/9780310480006.jpg'), + ('006093056X', 'Mara And Dann: An Adventure', 'https://images.isbndb.com/covers/05/61/9780060930561.jpg'), + ('0060099062', 'Meant To Be', 'https://images.isbndb.com/covers/90/60/9780060099060.jpg'), + ('0312310439', 'The Marrying Game: A Novel', 'https://images.isbndb.com/covers/04/31/9780312310431.jpg'), + ('0310501016', 'Becoming A Contagious Christian Participant''s Guide', 'https://images.isbndb.com/covers/10/15/9780310501015.jpg'), + ('0812535707', 'On The Run', 'https://images.isbndb.com/covers/57/09/9780812535709.jpg'), + ('0553274074', 'A Fire In The Sun', 'https://images.isbndb.com/covers/40/73/9780553274073.jpg'), + ('0380754134', 'A More Perfect Union', 'https://images.isbndb.com/covers/41/37/9780380754137.jpg'), + ('0804112894', 'Tarnished Icons', 'https://images.isbndb.com/covers/28/95/9780804112895.jpg'), + ('0440526701', 'For Reading Out Loud', 'https://images.isbndb.com/covers/67/04/9780440526704.jpg'), + ('0743243307', 'Brick Lane: A Novel', 'https://images.isbndb.com/covers/33/08/9780743243308.jpg'), + ('0520223446', 'Gandhi''s Way: A Handbook Of Conflict Resolution', 'https://images.isbndb.com/covers/34/48/9780520223448.jpg'), + ('0440223806', 'The Cowboy', 'https://images.isbndb.com/covers/38/01/9780440223801.jpg'), + ('0399146032', 'The Barbarians Are Coming', 'https://images.isbndb.com/covers/60/39/9780399146039.jpg'), + ('0786885238', 'The Cider House Rules: A Screenplay', 'https://images.isbndb.com/covers/52/37/9780786885237.jpg'), + ('0880015233', 'A Nest Of Ninnies', 'https://images.isbndb.com/covers/52/33/9780880015233.jpg'), + ('0380820048', 'Smoke And Mirrors', 'https://images.isbndb.com/covers/00/47/9780380820047.jpg'), + ('0553288555', 'The Wind Dancer', 'https://images.isbndb.com/covers/85/51/9780553288551.jpg'), + ('0399149716', 'This Just In: What I Couldn''t Tell You On TV', 'https://images.isbndb.com/covers/97/19/9780399149719.jpg'), + ('0393049779', 'In The Snow Forest: Three Novellas', 'https://images.isbndb.com/covers/97/70/9780393049770.jpg'), + ('0849929660', 'Let''s Make A Memory : Great Ideas For Building Family Traditions And Togetherness', 'https://images.isbndb.com/covers/96/63/9780849929663.jpg'), + ('0374524602', 'Louisa May Alcott: A Modern Biography', 'https://images.isbndb.com/covers/46/09/9780374524609.jpg'), + ('1887166009', 'Pandemonium: Or Life With Kids: A Collection Of Parental Humor', 'https://images.isbndb.com/covers/60/03/9781887166003.jpg'), + ('0679420991', 'True North: A Memoir', 'https://images.isbndb.com/covers/09/96/9780679420996.jpg'), + ('0394574567', 'The Road From Coorain', 'https://images.isbndb.com/covers/45/61/9780394574561.jpg'), + ('0801865212', 'The 36-Hour Day: A Family Guide To Caring For Persons With Alzheimer Disease, Related Dementing Illnesses, And Memory Loss In Later Life (A Johns Hopkins Press Health Book)', 'https://images.isbndb.com/covers/52/13/9780801865213.jpg'), + ('1568651732', 'The Enchanted Forest Chronicles', 'https://images.isbndb.com/covers/17/36/9781568651736.jpg'), + ('060980877X', 'The Sweet Potato Queens'' Big-Ass Cookbook (and Financial Planner)', 'https://images.isbndb.com/covers/87/71/9780609808771.jpg'), + ('0671748408', 'Way Men Act', 'https://images.isbndb.com/covers/84/01/9780671748401.jpg'), + ('0449909557', 'Mrs. Pollifax And The Lion Killer', 'https://images.isbndb.com/covers/95/53/9780449909553.jpg'), + ('0020236107', 'The Funeral Makers', 'https://images.isbndb.com/covers/61/08/9780020236108.jpg'), + ('0465021182', 'Every Day Gets A Little Closer: A Twice-told Therapy', 'https://images.isbndb.com/covers/11/85/9780465021185.jpg'), + ('0446677507', 'Cat Haiku', 'https://images.isbndb.com/covers/75/09/9780446677509.jpg'), + ('055356949X', 'Dolley', 'https://images.isbndb.com/covers/94/90/9780553569490.jpg'), + ('0440223032', 'After All', 'https://images.isbndb.com/covers/30/30/9780440223030.jpg'), + ('1586480316', 'Blue Hearts', 'https://images.isbndb.com/covers/03/18/9781586480318.jpg'), + ('0553262386', 'Housekeeping', 'https://images.isbndb.com/covers/23/84/9780553262384.jpg'), + ('0060957271', 'Model Patient: My Life As An Incurable Wise-Ass', 'https://images.isbndb.com/covers/72/78/9780060957278.jpg'), + ('0028617274', 'The Tea Companion: A Connoisseur''s Guide', 'https://images.isbndb.com/covers/72/75/9780028617275.jpg'), + ('0446301582', 'Word Of Honor', 'https://images.isbndb.com/covers/15/89/9780446301589.jpg'), + ('1885171080', 'Girlfriends: Invisible Bonds, Enduring Ties', 'https://images.isbndb.com/covers/10/85/9781885171085.jpg'), + ('0425046605', 'Duke Of Deception: Memories Of My Father', 'https://images.isbndb.com/covers/66/09/9780425046609.jpg'), + ('0743457838', 'Blood On The Tongue', 'https://images.isbndb.com/covers/78/35/9780743457835.jpg'), + ('1841192538', 'Daemons And Angels', 'https://images.isbndb.com/covers/25/36/9781841192536.jpg'), + ('1559701501', 'Texas Summer', 'https://images.isbndb.com/covers/15/01/9781559701501.jpg'), + ('0060596325', 'Rice: A Novel', 'https://images.isbndb.com/covers/63/23/9780060596323.jpg'), + ('0449912116', 'Memories Of The Ford Administration', 'https://images.isbndb.com/covers/21/19/9780449912119.jpg'), + ('0140255893', 'In The Beauty Of The Lilies', 'https://images.isbndb.com/covers/58/98/9780140255898.jpg'), + ('0679446400', 'In The Beauty Of The Lilies', 'https://images.isbndb.com/covers/64/08/9780679446408.jpg'), + ('0449911632', 'Brazil', 'https://images.isbndb.com/covers/16/31/9780449911631.jpg'), + ('0552998478', 'What We Did On Our Holiday', 'https://images.isbndb.com/covers/84/75/9780552998475.jpg'), + ('0743469763', 'Strange Secrets: Real Government Files On The Unknown', 'https://images.isbndb.com/covers/97/60/9780743469760.jpg'), + ('0553584480', 'The Face: A Novel', 'https://images.isbndb.com/covers/44/86/9780553584486.jpg'), + ('0802139590', 'Gould''s Book Of Fish', 'https://images.isbndb.com/covers/95/97/9780802139597.jpg'), + ('0684852225', 'Close Range : Wyoming Stories', 'https://images.isbndb.com/covers/22/25/9780684852225.jpg'), + ('186207044X', 'Stalking Fiona', 'https://images.isbndb.com/covers/04/48/9781862070448.jpg'), + ('0449908585', 'Happy Isles Of Oceania: Paddling The Pacific', 'https://images.isbndb.com/covers/85/87/9780449908587.jpg'), + ('0156029987', 'Vernon God Little', 'https://images.isbndb.com/covers/99/88/9780156029988.jpg'), + ('1841955485', 'How The Light Gets In', 'https://images.isbndb.com/covers/54/83/9781841955483.jpg'), + ('0226743497', 'Staying On: A Novel (Phoenix Fiction)', 'https://images.isbndb.com/covers/34/93/9780226743493.jpg'), + ('0571179282', 'Interesting Facts About The State Of Arizona', 'https://images.isbndb.com/covers/92/82/9780571179282.jpg'), + ('0671032631', 'The Treatment', 'https://images.isbndb.com/covers/26/30/9780671032630.jpg'), + ('0340278269', 'Rings Of Sand', 'https://images.isbndb.com/covers/82/60/9780340278260.jpg'), + ('0684837242', 'Tumbling', 'https://images.isbndb.com/covers/72/46/9780684837246.jpg'), + ('0330328085', 'Carn Uk', 'https://images.isbndb.com/covers/80/81/9780330328081.jpg'), + ('0340750464', 'White Mice', 'https://images.isbndb.com/covers/04/69/9780340750469.jpg'), + ('0743203712', 'Shark Tales: True (and Amazing) Stories From America''s Lawyers', 'https://images.isbndb.com/covers/37/15/9780743203715.jpg'), + ('0393319296', 'Invisible Monsters: A Novel', 'https://images.isbndb.com/covers/92/93/9780393319293.jpg'), + ('0786861495', 'Kink: An Autobiography', 'https://images.isbndb.com/covers/14/91/9780786861491.jpg'), + ('0679410325', 'The Secret History', 'https://images.isbndb.com/covers/03/24/9780679410324.jpg'), + ('0671737996', 'Outrageous!: The Fine Life And Flagrant Good Times Of Basketball''s Irresistible Force', 'https://images.isbndb.com/covers/79/93/9780671737993.jpg'), + ('0609809431', 'Kick Me: Adventures In Adolescence', 'https://images.isbndb.com/covers/94/33/9780609809433.jpg'), + ('0449206211', 'Murder On Embassy Row (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/62/18/9780449206218.jpg'), + ('0759629625', 'Twenty-Five For The Road', 'https://images.isbndb.com/covers/96/22/9780759629622.jpg'), + ('0812521617', 'Double Fault', 'https://images.isbndb.com/covers/16/10/9780812521610.jpg'), + ('055320663X', 'Night Probe', 'https://images.isbndb.com/covers/66/30/9780553206630.jpg'), + ('0671631845', 'CYCLOPS', 'https://images.isbndb.com/covers/18/40/9780671631840.jpg'), + ('0671742760', 'Dragon', 'https://images.isbndb.com/covers/27/68/9780671742768.jpg'), + ('0671001809', 'The SEA HUNTERS', 'https://images.isbndb.com/covers/18/03/9780671001803.jpg'), + ('0670858692', 'Rose Madder', 'https://images.isbndb.com/covers/86/99/9780670858699.jpg'), + ('0740721909', 'God''s Debris: A Thought Experiment', 'https://images.isbndb.com/covers/19/08/9780740721908.jpg'), + ('0553814516', 'No Shitting In The Toilet: The Travel Guide For When You''Ve Really Lost It', 'https://images.isbndb.com/covers/45/14/9780553814514.jpg'), + ('0441000525', 'Dead Morn', 'https://images.isbndb.com/covers/05/24/9780441000524.jpg'), + ('0872235130', 'Signals', 'https://images.isbndb.com/covers/51/37/9780872235137.jpg'), + ('0441023622', 'Another Fine Myth (Myth, Book 1)', 'https://images.isbndb.com/covers/36/22/9780441023622.jpg'), + ('0759550182', 'In Translation', 'https://images.isbndb.com/covers/01/86/9780759550186.jpg'), + ('0786862572', 'I''m Not Really Here', 'https://images.isbndb.com/covers/25/73/9780786862573.jpg'), + ('0140282025', 'The Age Of Spiritual Machines: When Computers Exceed Human Intelligence', 'https://images.isbndb.com/covers/20/23/9780140282023.jpg'), + ('0446531316', 'Street Dreams', 'https://images.isbndb.com/covers/13/13/9780446531313.jpg'), + ('0380708353', 'Butterfly', 'https://images.isbndb.com/covers/83/52/9780380708352.jpg'), + ('0446356522', 'Rose Of Rapture', 'https://images.isbndb.com/covers/65/27/9780446356527.jpg'), + ('0380007762', 'Wicked Loving Lies', 'https://images.isbndb.com/covers/77/69/9780380007769.jpg'), + ('0553578936', 'A Valentine Wedding', 'https://images.isbndb.com/covers/89/35/9780553578935.jpg'), + ('0515124621', 'Then Came Heaven', 'https://images.isbndb.com/covers/46/20/9780515124620.jpg'), + ('0671737600', 'Double Standards', 'https://images.isbndb.com/covers/76/03/9780671737603.jpg'), + ('0671870963', 'Prince Charming', 'https://images.isbndb.com/covers/09/66/9780671870966.jpg'), + ('0553567756', 'Prince Of Wolves', 'https://images.isbndb.com/covers/77/55/9780553567755.jpg'), + ('0451138775', 'Parachutes & Kisses', 'https://images.isbndb.com/covers/87/74/9780451138774.jpg'), + ('0515121398', 'This Is All I Ask', 'https://images.isbndb.com/covers/13/91/9780515121391.jpg'), + ('0671744607', 'REMEMBRANCE', 'https://images.isbndb.com/covers/46/01/9780671744601.jpg'), + ('038071504X', 'Stars', 'https://images.isbndb.com/covers/50/46/9780380715046.jpg'), + ('0312954212', 'Tully', 'https://images.isbndb.com/covers/42/15/9780312954215.jpg'), + ('0451403673', 'Thunder And Roses (Onyx)', 'https://images.isbndb.com/covers/36/74/9780451403674.jpg'), + ('051512219X', 'Small Town Girl', 'https://images.isbndb.com/covers/21/90/9780515122190.jpg'), + ('0440216575', 'Legacy Of Secrets', 'https://images.isbndb.com/covers/65/75/9780440216575.jpg'), + ('0671525743', 'Night Whispers', 'https://images.isbndb.com/covers/57/43/9780671525743.jpg'), + ('0380757478', 'Fires Of Winter', 'https://images.isbndb.com/covers/74/73/9780380757473.jpg'), + ('0061094595', 'Calder Pride', 'https://images.isbndb.com/covers/45/90/9780061094590.jpg'), + ('067101417X', 'High Tide', 'https://images.isbndb.com/covers/41/79/9780671014179.jpg'), + ('0671742558', 'Almost Heaven', 'https://images.isbndb.com/covers/25/53/9780671742553.jpg'), + ('1551660571', 'Sweet Memories', 'https://images.isbndb.com/covers/05/78/9781551660578.jpg'), + ('0440217032', 'Desired', 'https://images.isbndb.com/covers/70/39/9780440217039.jpg'), + ('0671521438', 'Imagine', 'https://images.isbndb.com/covers/14/31/9780671521431.jpg'), + ('006108459X', 'Miranda', 'https://images.isbndb.com/covers/45/91/9780061084591.jpg'), + ('0440216907', 'Storyville', 'https://images.isbndb.com/covers/69/02/9780440216902.jpg'), + ('0671744186', 'Lady Boss', 'https://images.isbndb.com/covers/41/82/9780671744182.jpg'), + ('0553575244', 'The Silver Rose', 'https://images.isbndb.com/covers/52/48/9780553575248.jpg'), + ('0553582542', 'Seduction In Mind', 'https://images.isbndb.com/covers/25/43/9780553582543.jpg'), + ('044689270X', 'The Summer Day Is Done', 'https://images.isbndb.com/covers/27/04/9780446892704.jpg'), + ('0451162919', 'Garden Of Lies', 'https://images.isbndb.com/covers/29/15/9780451162915.jpg'), + ('0671737627', 'Once And Always', 'https://images.isbndb.com/covers/76/27/9780671737627.jpg'), + ('0763618292', 'Witch Child', 'https://images.isbndb.com/covers/82/92/9780763618292.jpg'), + ('0345442768', 'Swimming (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/27/65/9780345442765.jpg'), + ('0345396812', 'Women Who Run With The Wolves: Myths And Stories Of The Wild Woman Archetype', 'https://images.isbndb.com/covers/68/15/9780345396815.jpg'), + ('0375758682', 'Shutterbabe: Adventures In Love And War', 'https://images.isbndb.com/covers/86/83/9780375758683.jpg'), + ('0060518049', 'The Secret History', 'https://images.isbndb.com/covers/80/42/9780060518042.jpg'), + ('0340733950', 'Tinker Tailor Soldier Spy', 'https://images.isbndb.com/covers/39/50/9780340733950.jpg'), + ('034539643X', 'Alpine Icon (Emma Lord Mysteries)', 'https://images.isbndb.com/covers/64/33/9780345396433.jpg'), + ('0451198239', 'Burnout', 'https://images.isbndb.com/covers/82/35/9780451198235.jpg'), + ('0061099368', 'PALINDROME MM', 'https://images.isbndb.com/covers/93/66/9780061099366.jpg'), + ('0061097829', 'Who''s Afraid Of Virginia Ham?', 'https://images.isbndb.com/covers/78/29/9780061097829.jpg'), + ('0812584341', 'To Wear The White Cloak: A Catherine LeVendeur Mystery', 'https://images.isbndb.com/covers/43/49/9780812584349.jpg'), + ('3453071174', 'Die Firma: Roman', 'https://images.isbndb.com/covers/11/79/9783453071179.jpg'), + ('3404120604', 'Die Kinder Des Gral', 'https://images.isbndb.com/covers/06/04/9783404120604.jpg'), + ('0140258825', 'Sherlock Holmes And The Red Demon: A Sherlock Holmes Adventure In North America', 'https://images.isbndb.com/covers/88/20/9780140258820.jpg'), + ('1550590154', 'Canadians On Everest', 'https://images.isbndb.com/covers/01/59/9781550590159.jpg'), + ('0394536967', 'Winter: Love It Or Leave It', 'https://images.isbndb.com/covers/69/65/9780394536965.jpg'), + ('1895449553', 'Under NeWest Eyes: Stories From NeWest Review', 'https://images.isbndb.com/covers/95/56/9781895449556.jpg'), + ('1565049055', 'Tombs', 'https://images.isbndb.com/covers/90/55/9781565049055.jpg'), + ('031207090X', 'Success: New And Selected Stories', 'https://images.isbndb.com/covers/09/08/9780312070908.jpg'), + ('1568650922', 'Master Of The Game', 'https://images.isbndb.com/covers/09/20/9781568650920.jpg'), + ('0684810948', 'The Intruder', 'https://images.isbndb.com/covers/09/42/9780684810942.jpg'), + ('0399134239', 'Movieland Hollywood', 'https://images.isbndb.com/covers/42/34/9780399134234.jpg'), + ('0553053868', 'Journey To The Stars: Space Exploration Tomorrow And Beyond', 'https://images.isbndb.com/covers/38/69/9780553053869.jpg'), + ('0525939857', 'The Takeover', 'https://images.isbndb.com/covers/98/56/9780525939856.jpg'), + ('0312858817', 'Ghostlight', 'https://images.isbndb.com/covers/88/10/9780312858810.jpg'), + ('0399143122', 'Counterparts', 'https://images.isbndb.com/covers/31/20/9780399143120.jpg'), + ('068810973X', 'Flower Shadows: A Novel', 'https://images.isbndb.com/covers/97/38/9780688109738.jpg'), + ('0679425136', 'The Night Manager', 'https://images.isbndb.com/covers/51/37/9780679425137.jpg'), + ('0671679473', 'Cruel Doubt', 'https://images.isbndb.com/covers/94/77/9780671679477.jpg'), + ('0671692976', 'The Big Hype', 'https://images.isbndb.com/covers/29/71/9780671692971.jpg'), + ('1556112289', 'April Fools', 'https://images.isbndb.com/covers/22/87/9781556112287.jpg'), + ('0671870602', 'The Intruders', 'https://images.isbndb.com/covers/06/07/9780671870607.jpg'), + ('1895897653', 'Nine-Tenths Unseen', 'https://images.isbndb.com/covers/76/54/9781895897654.jpg'), + ('1897580193', 'This Side Of Brightness Edition U K', 'https://images.isbndb.com/covers/01/96/9781897580196.jpg'), + ('0060183039', 'Coming To Terms: A Novel', 'https://images.isbndb.com/covers/30/35/9780060183035.jpg'), + ('0688143679', 'Prayers For The Dead: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/36/71/9780688143671.jpg'), + ('0805059237', '30', 'https://images.isbndb.com/covers/92/36/9780805059236.jpg'), + ('0773728805', 'Yankee Doodle Dandy: Brian Mulroney And The American Agenda', 'https://images.isbndb.com/covers/88/06/9780773728806.jpg'), + ('0671864866', 'The Agenda: Inside The Clinton White House', 'https://images.isbndb.com/covers/48/66/9780671864866.jpg'), + ('0763615757', 'Ten In The Bed', 'https://images.isbndb.com/covers/57/58/9780763615758.jpg'), + ('0789420279', 'Children Just Like Me: Celebrations!', 'https://images.isbndb.com/covers/02/75/9780789420275.jpg'), + ('0789402017', 'Children Just Like Me: A Unique Celebration Of Children Around The World', 'https://images.isbndb.com/covers/20/11/9780789402011.jpg'), + ('0395898714', 'Roverandom', 'https://images.isbndb.com/covers/87/10/9780395898710.jpg'), + ('1929132123', 'I Want My Potty', 'https://images.isbndb.com/covers/21/26/9781929132126.jpg'), + ('0679600213', 'Out Of Africa (Modern Library)', 'https://images.isbndb.com/covers/02/13/9780679600213.jpg'), + ('0394827406', 'The Biggest House In The World', 'https://images.isbndb.com/covers/74/07/9780394827407.jpg'), + ('0451527046', 'Treasure Island (Signet Classics)', 'https://images.isbndb.com/covers/70/42/9780451527042.jpg'), + ('0486404277', 'Robinson Crusoe (Dover Thrift Editions)', 'https://images.isbndb.com/covers/42/71/9780486404271.jpg'), + ('0517189585', 'Black Beauty (Children''s Classics)', 'https://images.isbndb.com/covers/95/80/9780517189580.jpg'), + ('1859846815', 'Barbecued Husbands: And Other Stories From The Amazon', 'https://images.isbndb.com/covers/68/10/9781859846810.jpg'), + ('0261103431', 'Tales From The Perilous Realm', 'https://images.isbndb.com/covers/34/36/9780261103436.jpg'), + ('0060932678', 'The Autumn Of The Patriarch (Perennial Classics)', 'https://images.isbndb.com/covers/26/71/9780060932671.jpg'), + ('0156949601', 'The Waves', 'https://images.isbndb.com/covers/96/06/9780156949606.jpg'), + ('0664243916', 'Tales Of The Sacred And The Supernatural', 'https://images.isbndb.com/covers/39/13/9780664243913.jpg'), + ('0345442822', 'Angry Housewives Eating Bon Bons (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/28/26/9780345442826.jpg'), + ('0393322815', 'Daily Afflictions: The Agony Of Being Connected To Everything In The Universe', 'https://images.isbndb.com/covers/28/11/9780393322811.jpg'), + ('0671638688', 'It''s Always Something', 'https://images.isbndb.com/covers/86/89/9780671638689.jpg'), + ('0773517634', 'War And Society In Europe 1870-1970 (War & European Society)', 'https://images.isbndb.com/covers/76/39/9780773517639.jpg'), + ('1550546163', 'Frozen In Time: The Fate Of The Franklin Expedition', 'https://images.isbndb.com/covers/61/63/9781550546163.jpg'), + ('0670031372', 'Stolen (Women Of The Otherworld, Book 2)', 'https://images.isbndb.com/covers/13/75/9780670031375.jpg'), + ('0809468700', 'The Near Planets (Voyage Through The Universe)', 'https://images.isbndb.com/covers/87/06/9780809468706.jpg'), + ('0809468549', 'The Far Planets : Voyage Through The Universe', 'https://images.isbndb.com/covers/85/46/9780809468546.jpg'), + ('0805017224', 'The Complete Phantom Of The Opera (Owl Books)', 'https://images.isbndb.com/covers/72/29/9780805017229.jpg'), + ('0582438349', 'Motherland: Russia In The Twentieth Century', 'https://images.isbndb.com/covers/83/47/9780582438347.jpg'), + ('0192815970', 'The Canterbury Tales (Oxford Paperbacks)', 'https://images.isbndb.com/covers/59/72/9780192815972.jpg'), + ('0393967913', 'Mansfield Park (Norton Critical Editions)', 'https://images.isbndb.com/covers/79/13/9780393967913.jpg'), + ('1563893304', 'Kingdom Come', 'https://images.isbndb.com/covers/33/08/9781563893308.jpg'), + ('0670894710', 'Bitten (Women Of The Otherworld, Book 1)', 'https://images.isbndb.com/covers/47/10/9780670894710.jpg'), + ('0451627318', 'Child Of The Dark: The Diary Of Carolina Maria De Jesus (Mentor)', 'https://images.isbndb.com/covers/73/15/9780451627315.jpg'), + ('0836221362', 'It''s A Magical World: A Calvin And Hobbes Collection', 'https://images.isbndb.com/covers/13/67/9780836221367.jpg'), + ('0836217691', 'Homicidal Psycho Jungle Cat: A Calvin And Hobbes Collection', 'https://images.isbndb.com/covers/76/98/9780836217698.jpg'), + ('0806973404', 'Book Of Victorian Alphabets And Designs', 'https://images.isbndb.com/covers/34/01/9780806973401.jpg'), + ('0836218051', 'The Essential Calvin And Hobbes', 'https://images.isbndb.com/covers/80/53/9780836218053.jpg'), + ('0836218523', 'The Calvin And Hobbes Lazy Sunday Book', 'https://images.isbndb.com/covers/85/27/9780836218527.jpg'), + ('0836218833', 'Attack Of The Deranged Mutant Killer Monster Snow Goons (Calvin & Hobbes)', 'https://images.isbndb.com/covers/88/31/9780836218831.jpg'), + ('0836218787', 'Scientific Progress Goes ''Boink'': A Calvin And Hobbes Collection', 'https://images.isbndb.com/covers/87/87/9780836218787.jpg'), + ('0836218663', 'The Revenge Of The Baby-Sat', 'https://images.isbndb.com/covers/86/64/9780836218664.jpg'), + ('0836218620', 'Weirdos From Another Planet!', 'https://images.isbndb.com/covers/86/26/9780836218626.jpg'), + ('0836220889', 'Calvin And Hobbes', 'https://images.isbndb.com/covers/08/89/9780836220889.jpg'), + ('0374339716', 'The Juniper Tree: And Other Tales From Grimm', 'https://images.isbndb.com/covers/97/15/9780374339715.jpg'), + ('0394558235', 'The Queen Of The Damned (The Third Book In The Vampire Chronicles)', 'https://images.isbndb.com/covers/82/33/9780394558233.jpg'), + ('0517189682', 'Anne Of Green Gables (Children''s Classics)', 'https://images.isbndb.com/covers/96/89/9780517189689.jpg'), + ('1570981094', 'HOLLYWOOD IRISH: In Their Own Words: Illustrated Interviews With Gabriel Byrne, Liam Neeson, Pierce Brosnan, Stephen Rea, Aidan Quinn And Patrick Bergin', 'https://images.isbndb.com/covers/10/98/9781570981098.jpg'), + ('0140440046', 'Candide Or Optimism', 'https://images.isbndb.com/covers/00/41/9780140440041.jpg'), + ('1853260495', 'Last Of The Mohicans (Wadsworth Collection)', 'https://images.isbndb.com/covers/04/90/9781853260490.jpg'), + ('3426617463', 'Toujours Provence', 'https://images.isbndb.com/covers/74/65/9783426617465.jpg'), + ('3442357780', 'Auch Engel Mögen''s Heiß: Roman', 'https://images.isbndb.com/covers/77/89/9783442357789.jpg'), + ('3442133513', 'Ein Kleiner Tod / Weg In Die Nacht.', 'https://images.isbndb.com/covers/35/12/9783442133512.jpg'), + ('3442726840', 'Vertrauen Gegen Vertrauen', 'https://images.isbndb.com/covers/68/44/9783442726844.jpg'), + ('3404604989', 'Die Geheime Botschaft Unserer Speisen', 'https://images.isbndb.com/covers/49/82/9783404604982.jpg'), + ('344245204X', 'Livealbum', 'https://images.isbndb.com/covers/20/40/9783442452040.jpg'), + ('3404143744', 'Survivor, Die Überlebende.', 'https://images.isbndb.com/covers/37/40/9783404143740.jpg'), + ('3404132998', 'Der Werwolf Von Tarker Mills: Kalender-Geschichten', 'https://images.isbndb.com/covers/29/97/9783404132997.jpg'), + ('3453171721', 'Geschöpfe Der Nacht: Roman', 'https://images.isbndb.com/covers/17/25/9783453171725.jpg'), + ('3404141849', 'Intensity.', 'https://images.isbndb.com/covers/18/45/9783404141845.jpg'), + ('3404142187', 'Security. Unheimlicher Roman.', 'https://images.isbndb.com/covers/21/87/9783404142187.jpg'), + ('3453177541', 'Schattenbrüder.', 'https://images.isbndb.com/covers/75/43/9783453177543.jpg'), + ('3453162900', 'Tür Ins Dunkel', 'https://images.isbndb.com/covers/29/07/9783453162907.jpg'), + ('3453036972', 'Das Monstrum, Tommyknockers', 'https://images.isbndb.com/covers/69/70/9783453036970.jpg'), + ('3453088883', 'Abgrund', 'https://images.isbndb.com/covers/88/87/9783453088887.jpg'), + ('3404131606', 'Nachtschicht', 'https://images.isbndb.com/covers/16/00/9783404131600.jpg'), + ('340413088X', 'Katzenauge: Filmerzählungen: Quitters, Inc./Der Mauervorsprung: Erzählungen Vom Meister Des Horrors', 'https://images.isbndb.com/covers/08/87/9783404130887.jpg'), + ('3453021347', 'Im Morgengrauen. Unheimliche Geschichten.', 'https://images.isbndb.com/covers/13/41/9783453021341.jpg'), + ('3453003128', 'Der Fornit', 'https://images.isbndb.com/covers/31/25/9783453003125.jpg'), + ('3404130014', 'Feuerkind.', 'https://images.isbndb.com/covers/00/16/9783404130016.jpg'), + ('0451190750', 'Thinner', 'https://images.isbndb.com/covers/07/58/9780451190758.jpg'), + ('3453002393', 'Todesmarsch', 'https://images.isbndb.com/covers/23/95/9783453002395.jpg'), + ('0451524276', 'Silas Marner (Signet Classic)', 'https://images.isbndb.com/covers/42/70/9780451524270.jpg'), + ('0395193958', 'The Lord Of The Rings (Collector''s Edition)', 'https://images.isbndb.com/covers/39/52/9780395193952.jpg'), + ('1874166986', 'Introducing Cultural Studies', 'https://images.isbndb.com/covers/69/86/9781874166986.jpg'), + ('0671619829', 'Abc''s Of Chess', 'https://images.isbndb.com/covers/98/24/9780671619824.jpg'), + ('0704339927', 'Queen Of The States (The Women''s Press Science Fiction Series)', 'https://images.isbndb.com/covers/99/27/9780704339927.jpg'), + ('0843136170', 'Adventures Of Barbie: Wildhorse (Adventures With Barbie)', 'https://images.isbndb.com/covers/61/73/9780843136173.jpg'), + ('0816735662', 'Ufo Kids', 'https://images.isbndb.com/covers/56/62/9780816735662.jpg'), + ('0771056222', 'The Ghost Of The Stanley Cup (Screech Owls Series #11)', 'https://images.isbndb.com/covers/62/22/9780771056222.jpg'), + ('0771056281', 'The Screech Owls'' Northern Adventure (Screech Owls Series #3)', 'https://images.isbndb.com/covers/62/84/9780771056284.jpg'), + ('0679762698', 'Encore Provence: New Adventures In The South Of France', 'https://images.isbndb.com/covers/26/90/9780679762690.jpg'), + ('3546002474', 'In Alle Ewigkeit', 'https://images.isbndb.com/covers/24/79/9783546002479.jpg'), + ('0517701405', 'Unleashed: Poems By Writers'' Dogs', 'https://images.isbndb.com/covers/14/09/9780517701409.jpg'), + ('0679741151', 'The Vintage Book Of Contemporary World Poetry', 'https://images.isbndb.com/covers/11/52/9780679741152.jpg'), + ('0553210599', 'The Turn Of The Screw And Other Short Fiction (Bantam Classics)', 'https://images.isbndb.com/covers/05/90/9780553210590.jpg'), + ('0684873052', 'Excelsior! : The Amazing Life Of Stan Lee', 'https://images.isbndb.com/covers/30/53/9780684873053.jpg'), + ('0974218006', 'Obligate Carnivore: Cats, Dogs, And What It Really Means To Be Vegan', 'https://images.isbndb.com/covers/80/07/9780974218007.jpg'), + ('0441783600', 'Starseed', 'https://images.isbndb.com/covers/36/01/9780441783601.jpg'), + ('0140244816', 'What''s A Girl Gotta Do? (Robin Hudson, Book 1)', 'https://images.isbndb.com/covers/48/16/9780140244816.jpg'), + ('0812509250', 'Xenocide (Ender, Book 3)', 'https://images.isbndb.com/covers/92/50/9780812509250.jpg'), + ('0812532554', 'Songmaster', 'https://images.isbndb.com/covers/25/55/9780812532555.jpg'), + ('0061000116', 'Wyvern', 'https://images.isbndb.com/covers/01/19/9780061000119.jpg'), + ('088240041X', 'Richard Harrington''s Yukon', 'https://images.isbndb.com/covers/04/19/9780882400419.jpg'), + ('0140043888', 'The Manticore', 'https://images.isbndb.com/covers/38/84/9780140043884.jpg'), + ('0425068323', 'Lyonesse', 'https://images.isbndb.com/covers/83/28/9780425068328.jpg'), + ('0451523407', 'The Jungle Books (Signet Classics)', 'https://images.isbndb.com/covers/34/02/9780451523402.jpg'), + ('0425143945', 'Cleopatra Gold', 'https://images.isbndb.com/covers/39/40/9780425143940.jpg'), + ('0553278029', 'A Great Deliverance', 'https://images.isbndb.com/covers/80/26/9780553278026.jpg'), + ('0515133639', 'The Absence Of Nectar', 'https://images.isbndb.com/covers/36/39/9780515133639.jpg'), + ('0671868098', 'FLOATING CITY', 'https://images.isbndb.com/covers/80/93/9780671868093.jpg'), + ('0380804174', 'Elizabeth', 'https://images.isbndb.com/covers/41/77/9780380804177.jpg'), + ('0345417976', 'A Prayer For Owen Meany: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/79/78/9780345417978.jpg'), + ('0451525469', 'Tess Of The D''Urbervilles', 'https://images.isbndb.com/covers/54/68/9780451525468.jpg'), + ('0020199309', 'Tender Is The Night (Reissue)', 'https://images.isbndb.com/covers/93/04/9780020199304.jpg'), + ('0061031151', 'The Bride''s Kimono', 'https://images.isbndb.com/covers/11/51/9780061031151.jpg'), + ('0060921714', 'The Complete Stories', 'https://images.isbndb.com/covers/17/12/9780060921712.jpg'), + ('0439286034', 'Tangerine', 'https://images.isbndb.com/covers/60/39/9780439286039.jpg'), + ('0393324494', 'A Murder, A Mystery And A Marriage: A Story', 'https://images.isbndb.com/covers/44/95/9780393324495.jpg'), + ('0679722661', 'An Artist Of The Floating World', 'https://images.isbndb.com/covers/26/63/9780679722663.jpg'), + ('0673982432', 'Style: Ten Lessons In Clarity And Grace', 'https://images.isbndb.com/covers/24/38/9780673982438.jpg'), + ('0312980329', 'The Ten Thousand: A Novel Of Ancient Greece', 'https://images.isbndb.com/covers/03/20/9780312980320.jpg'), + ('3499180936', 'Stell Dir Vor. Kreativ Visualsieren', 'https://images.isbndb.com/covers/09/34/9783499180934.jpg'), + ('0451410823', 'Summer Secrets', 'https://images.isbndb.com/covers/08/25/9780451410825.jpg'), + ('0394579259', 'Jacob The Baker: Gentle Wisdom For A Complicated World', 'https://images.isbndb.com/covers/92/52/9780394579252.jpg'), + ('0385425627', 'Charity', 'https://images.isbndb.com/covers/56/29/9780385425629.jpg'), + ('0312984685', 'The Good Sister', 'https://images.isbndb.com/covers/46/87/9780312984687.jpg'), + ('1551667053', 'A Twist Of Fate', 'https://images.isbndb.com/covers/70/58/9781551667058.jpg'), + ('0440217466', 'Vanished: A Novel', 'https://images.isbndb.com/covers/74/66/9780440217466.jpg'), + ('0385720726', 'You Are Not A Stranger Here: Stories', 'https://images.isbndb.com/covers/07/24/9780385720724.jpg'), + ('0936728779', 'Living Water: The Power Of The Holy Spirit In Your Life', 'https://images.isbndb.com/covers/87/73/9780936728773.jpg'), + ('0936728787', 'Why Grace Changes Everything', 'https://images.isbndb.com/covers/87/80/9780936728780.jpg'), + ('0936728485', 'What The World Is Coming To: A Commentary On The Book Of Revelation Verse By Verse', 'https://images.isbndb.com/covers/84/83/9780936728483.jpg'), + ('0380719223', 'Mariel Of Redwall (Redwall, Book 4)', 'https://images.isbndb.com/covers/92/28/9780380719228.jpg'), + ('0345428811', 'Star Wars Episode II: Attack Of The Clones', 'https://images.isbndb.com/covers/88/13/9780345428813.jpg'), + ('3442434130', 'Die Vertraute', 'https://images.isbndb.com/covers/41/38/9783442434138.jpg'), + ('3442351588', 'Sternenmelodie', 'https://images.isbndb.com/covers/15/89/9783442351589.jpg'), + ('3453150147', 'Die Hüterin Der Gewürze', 'https://images.isbndb.com/covers/01/40/9783453150140.jpg'), + ('3404128397', 'Der Fluch Des Kopernikus: Ein Renaissance-Roman', 'https://images.isbndb.com/covers/83/96/9783404128396.jpg'), + ('3453151704', 'Die Alchimistin', 'https://images.isbndb.com/covers/17/03/9783453151703.jpg'), + ('3548245897', 'Hin Und Weg.', 'https://images.isbndb.com/covers/58/98/9783548245898.jpg'), + ('0898151953', 'Look Homeward Erotica', 'https://images.isbndb.com/covers/19/54/9780898151954.jpg'), + ('0140195831', 'If The Buddha Dated: A Handbook For Finding Love On A Spiritual Path', 'https://images.isbndb.com/covers/58/35/9780140195835.jpg'), + ('1568360487', 'The Forbidden Experiment (Kodansha Globe)', 'https://images.isbndb.com/covers/04/85/9781568360485.jpg'), + ('0375401466', 'Old School', 'https://images.isbndb.com/covers/14/66/9780375401466.jpg'), + ('0916890015', 'Mountaineering: The Freedom Of The Hills', 'https://images.isbndb.com/covers/00/18/9780916890018.jpg'), + ('0743202236', 'A Mind At A Time: America''s Top Learning Expert Shows How Every Child Can Succeed', 'https://images.isbndb.com/covers/22/37/9780743202237.jpg'), + ('0440412226', 'Anastasia Absolutely', 'https://images.isbndb.com/covers/22/29/9780440412229.jpg'), + ('038508854X', 'Astronomy Made Simple', 'https://images.isbndb.com/covers/85/41/9780385088541.jpg'), + ('1559718641', 'Everything Cat: What Kids Really Want To Know About Cats (Kids'' FAQs)', 'https://images.isbndb.com/covers/86/46/9781559718646.jpg'), + ('0590632744', 'Got Issues Much?: Celebrities Share Their Traumas And Triumphs', 'https://images.isbndb.com/covers/27/44/9780590632744.jpg'), + ('0439343518', 'Friend Or Foe? (Outernet #1)', 'https://images.isbndb.com/covers/35/10/9780439343510.jpg'), + ('0765345706', 'In The Land Of The Lawn Weenies: And Other Warped And Creepy Tales (Starscape)', 'https://images.isbndb.com/covers/57/07/9780765345707.jpg'), + ('0448416484', 'Who Is He Really?: Fun Quizzes About Guys And You!', 'https://images.isbndb.com/covers/64/89/9780448416489.jpg'), + ('0590477625', 'More Sideways Arithmetic From Wayside School', 'https://images.isbndb.com/covers/76/28/9780590477628.jpg'), + ('0590457268', 'Sideways Arithmetic From Wayside School', 'https://images.isbndb.com/covers/72/62/9780590457262.jpg'), + ('0590252372', 'The Moonlight Man', 'https://images.isbndb.com/covers/23/79/9780590252379.jpg'), + ('0671887351', 'Maniac', 'https://images.isbndb.com/covers/73/53/9780671887353.jpg'), + ('0679429948', 'The Death Of Common Sense: How Law Is Suffocating America', 'https://images.isbndb.com/covers/99/44/9780679429944.jpg'), + ('1570360421', 'My Life In ''Toons: From Flatbush To Bedrock In Under A Century', 'https://images.isbndb.com/covers/04/28/9781570360428.jpg'), + ('0613003225', 'Help! I''m Trapped In The President''s Body', 'https://images.isbndb.com/covers/32/23/9780613003223.jpg'), + ('0807281530', 'Wayside School Gets A Little Stranger', 'https://images.isbndb.com/covers/15/36/9780807281536.jpg'), + ('0786888067', 'The Snow Garden', 'https://images.isbndb.com/covers/80/61/9780786888061.jpg'), + ('3453213394', 'Hexenkessel', 'https://images.isbndb.com/covers/33/95/9783453213395.jpg'), + ('0375508112', 'Strand Of A Thousand Pearls: A Novel', 'https://images.isbndb.com/covers/81/10/9780375508110.jpg'), + ('0312254385', 'Werewolves In Their Youth: Stories', 'https://images.isbndb.com/covers/43/84/9780312254384.jpg'), + ('0425176169', 'From The Heart: Tonight And Always/A Matter Of Choice/Endings And Beginnings', 'https://images.isbndb.com/covers/61/60/9780425176160.jpg'), + ('0374423296', '5 Novels: Alan Mendelsohn, The Boy From Mars; Slaves Of Spiegel; The Last Guru; Young Adult Novel; The Snarkout Boys And The Avocado Of Death', 'https://images.isbndb.com/covers/32/92/9780374423292.jpg'), + ('0440223202', 'Evening Class', 'https://images.isbndb.com/covers/32/07/9780440223207.jpg'), + ('0802839061', 'A Charles Williams Reader', 'https://images.isbndb.com/covers/90/60/9780802839060.jpg'), + ('0156029030', 'Delta Of Venus', 'https://images.isbndb.com/covers/90/32/9780156029032.jpg'), + ('0316666335', 'House Of Women: A Novel', 'https://images.isbndb.com/covers/63/36/9780316666336.jpg'), + ('0670852945', 'Songs Of Innocence And Experience: Essays In Celebration Of The Ordinary', 'https://images.isbndb.com/covers/29/49/9780670852949.jpg'), + ('0761133208', 'I Do. I Did. Now What?!: Life After The Wedding Dress', 'https://images.isbndb.com/covers/32/09/9780761133209.jpg'), + ('0060915943', 'The Art Of Loving', 'https://images.isbndb.com/covers/59/40/9780060915940.jpg'), + ('0312300700', 'The Rich Part Of Life: A Novel', 'https://images.isbndb.com/covers/07/08/9780312300708.jpg'), + ('1928556221', 'Bless Your Heart, Tramp', 'https://images.isbndb.com/covers/62/20/9781928556220.jpg'), + ('0060172789', 'A Long Way Home', 'https://images.isbndb.com/covers/27/87/9780060172787.jpg'), + ('1556705069', 'The Life Of Saint Nicholas', 'https://images.isbndb.com/covers/50/69/9781556705069.jpg'), + ('0671441035', 'Heritage: Civilization And The Jews', 'https://images.isbndb.com/covers/10/36/9780671441036.jpg'), + ('2253153982', 'L''Ultime Secret', 'https://images.isbndb.com/covers/39/86/9782253153986.jpg'), + ('2253076996', 'Une Mort Sans Nom', 'https://images.isbndb.com/covers/69/95/9782253076995.jpg'), + ('2266127365', 'Taltos', 'https://images.isbndb.com/covers/73/63/9782266127363.jpg'), + ('2266128876', 'Les Enfants De La Terre, Tome 5 : Les Refuges De Pierres, Volume 1', 'https://images.isbndb.com/covers/88/72/9782266128872.jpg'), + ('157794304X', 'Jambalaya For The Soul: Humorous Stories And Cajun Recipes From The Bayou', 'https://images.isbndb.com/covers/30/44/9781577943044.jpg'), + ('0575072741', 'Devil In Green (Dark Age)', 'https://images.isbndb.com/covers/27/49/9780575072749.jpg'), + ('0373264429', 'Glare Ice (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/44/21/9780373264421.jpg'), + ('0451205367', 'The Richest Man In Babylon', 'https://images.isbndb.com/covers/53/60/9780451205360.jpg'), + ('0843953144', 'Deep In The Darkness', 'https://images.isbndb.com/covers/31/45/9780843953145.jpg'), + ('0380712202', 'How To Make Your Life Easier At Work', 'https://images.isbndb.com/covers/22/05/9780380712205.jpg'), + ('0590431978', 'Scary Stories To Tell In The Dark', 'https://images.isbndb.com/covers/19/72/9780590431972.jpg'), + ('0764551248', 'Workouts For Dummies', 'https://images.isbndb.com/covers/12/46/9780764551246.jpg'), + ('0764550780', 'Beauty Secrets For Dummies', 'https://images.isbndb.com/covers/07/82/9780764550782.jpg'), + ('1568848668', 'Fitness For Dummies', 'https://images.isbndb.com/covers/86/62/9781568848662.jpg'), + ('0764550136', 'Personal Finance For Dummies', 'https://images.isbndb.com/covers/01/33/9780764550133.jpg'), + ('0028613430', 'The Complete Idiot''s Guide To Getting Rich', 'https://images.isbndb.com/covers/34/37/9780028613437.jpg'), + ('0684870940', 'Dream Power: How To Use Your Night Dreams To Change Your Life', 'https://images.isbndb.com/covers/09/46/9780684870946.jpg'), + ('1882606256', 'Tai Chi Made Easy: A Step-By-Step Guide To Health And Relaxation', 'https://images.isbndb.com/covers/62/52/9781882606252.jpg'), + ('0830732586', 'Back On Track: A 16-Week Challenge To Help You Reach Your Weight-Loss Goals', 'https://images.isbndb.com/covers/25/86/9780830732586.jpg'), + ('0922729387', 'Creative Abundance: Keys To Spiritual And Material Prosperity (Pocket Guide To Practical Spirituality)', 'https://images.isbndb.com/covers/93/88/9780922729388.jpg'), + ('0062505378', 'Stake Your Claim: Exploring The Gold Mine Within', 'https://images.isbndb.com/covers/53/78/9780062505378.jpg'), + ('0671829777', 'Petals On The Wind', 'https://images.isbndb.com/covers/97/73/9780671829773.jpg'), + ('0708837085', 'Archon (Orbit Books)', 'https://images.isbndb.com/covers/70/85/9780708837085.jpg'), + ('0140042598', 'On The Road', 'https://images.isbndb.com/covers/25/97/9780140042597.jpg'), + ('0345459164', 'Star Wars: Survivor''s Quest', 'https://images.isbndb.com/covers/91/69/9780345459169.jpg'), + ('0553578790', 'Vision Of The Future (Star Wars: The Hand Of Thrawn, Book 2)', 'https://images.isbndb.com/covers/87/99/9780553578799.jpg'), + ('0553298046', 'Specter Of The Past (Star Wars: The Hand Of Thrawn #1)', 'https://images.isbndb.com/covers/80/48/9780553298048.jpg'), + ('3442442508', 'Dunkle Kammern.', 'https://images.isbndb.com/covers/25/08/9783442442508.jpg'), + ('0060083263', 'Sleeping Beauty (Margolin, Phillip)', 'https://images.isbndb.com/covers/32/67/9780060083267.jpg'), + ('0670032808', 'The Good Wife Strikes Back', 'https://images.isbndb.com/covers/28/08/9780670032808.jpg'), + ('1401300901', 'PS, I Love You', 'https://images.isbndb.com/covers/09/06/9781401300906.jpg'), + ('0743446291', 'Lost', 'https://images.isbndb.com/covers/62/97/9780743446297.jpg'), + ('0451210816', 'Murder Between The Covers (Dead-End Job Mysteries, Book 2)', 'https://images.isbndb.com/covers/08/14/9780451210814.jpg'), + ('0451208552', 'Shop Till You Drop', 'https://images.isbndb.com/covers/85/52/9780451208552.jpg'), + ('0399149848', 'Birthright', 'https://images.isbndb.com/covers/98/49/9780399149849.jpg'), + ('0066211220', 'Breathing Room: A Novel', 'https://images.isbndb.com/covers/12/20/9780066211220.jpg'), + ('0385335377', 'Lone Eagle', 'https://images.isbndb.com/covers/53/79/9780385335379.jpg'), + ('0060393408', 'The Case Against Hillary Clinton', 'https://images.isbndb.com/covers/34/03/9780060393403.jpg'), + ('1890957313', 'Free Stuff For Seniors', 'https://images.isbndb.com/covers/73/15/9781890957315.jpg'), + ('073882688X', 'Sizzle', 'https://images.isbndb.com/covers/68/82/9780738826882.jpg'), + ('0425183378', 'Cape Light (Cape Light Series, Book 1)', 'https://images.isbndb.com/covers/33/73/9780425183373.jpg'), + ('0684194201', 'The Fragile Species', 'https://images.isbndb.com/covers/42/02/9780684194202.jpg'), + ('0307060381', 'Sesame Street: Little Elmo''s Toy Box (Baby''s First Book)', 'https://images.isbndb.com/covers/03/89/9780307060389.jpg'), + ('0792218345', 'Pile Of Puppies (Little Learners Board Books)', 'https://images.isbndb.com/covers/83/40/9780792218340.jpg'), + ('0553292552', 'Quoth The Raven', 'https://images.isbndb.com/covers/25/58/9780553292558.jpg'), + ('0786807083', 'Daughters Of The Moon, Book #3: Night Shade', 'https://images.isbndb.com/covers/70/86/9780786807086.jpg'), + ('0425119920', 'Strangers', 'https://images.isbndb.com/covers/99/21/9780425119921.jpg'), + ('0805002707', 'Johnny Under Ground (Inspector Henry Tibbett Mystery)', 'https://images.isbndb.com/covers/27/06/9780805002706.jpg'), + ('0553566040', 'Missing Joseph', 'https://images.isbndb.com/covers/60/48/9780553566048.jpg'), + ('0451456521', 'Lady Of Avalon (Avalon, Book 3)', 'https://images.isbndb.com/covers/65/26/9780451456526.jpg'), + ('1551660202', 'The Last Honest Woman', 'https://images.isbndb.com/covers/02/02/9781551660202.jpg'), + ('0373764170', 'Playboy Sheikh (Man Of The Month/Sons Of The Desert) (Silhouette Desire)', 'https://images.isbndb.com/covers/41/74/9780373764174.jpg'), + ('0373763794', 'Sultan''s Heir (Sons Of The Desert: The Sultans) (Desire, 1379)', 'https://images.isbndb.com/covers/37/95/9780373763795.jpg'), + ('0373764243', 'The Sheikh Takes A Bride (Dynasties: The Connellys) (Silhouette Desire, No. 1424)', 'https://images.isbndb.com/covers/42/42/9780373764242.jpg'), + ('0821746286', 'Torment', 'https://images.isbndb.com/covers/62/88/9780821746288.jpg'), + ('0743431030', 'Mother Of Pearl', 'https://images.isbndb.com/covers/10/33/9780743431033.jpg'), + ('067187702X', 'WISHING SEASON', 'https://images.isbndb.com/covers/70/26/9780671877026.jpg'), + ('0812518624', 'The Hour Of The Oxrun Dead', 'https://images.isbndb.com/covers/86/27/9780812518627.jpg'), + ('0451192192', 'The Store', 'https://images.isbndb.com/covers/21/96/9780451192196.jpg'), + ('0886774209', 'Devil Worshipers (Daw Science Fiction)', 'https://images.isbndb.com/covers/42/02/9780886774202.jpg'), + ('0671045423', 'The Defense Is Ready', 'https://images.isbndb.com/covers/54/25/9780671045425.jpg'), + ('0449217124', 'Thornyhold', 'https://images.isbndb.com/covers/71/22/9780449217122.jpg'), + ('042512519X', 'The Second Deadly Sin', 'https://images.isbndb.com/covers/51/99/9780425125199.jpg'), + ('0425104273', 'The First Deadly Sin (The Deadly Sins Novels)', 'https://images.isbndb.com/covers/42/79/9780425104279.jpg'), + ('0307128539', 'Gemstones (The Golden Science Close-Up Series)', 'https://images.isbndb.com/covers/85/39/9780307128539.jpg'), + ('006020186X', 'Amelia Bedelia (I Can Read Book 2)', 'https://images.isbndb.com/covers/18/69/9780060201869.jpg'), + ('0823405796', 'The Castle In The Attic', 'https://images.isbndb.com/covers/57/94/9780823405794.jpg'), + ('225314696X', 'Contes De Fées à L''usage Des Moyennes Personnes', 'https://images.isbndb.com/covers/69/64/9782253146964.jpg'), + ('2070567842', 'L''Histoire De Monsieur Sommer', 'https://images.isbndb.com/covers/78/43/9782070567843.jpg'), + ('0446358592', 'By The Rivers Of Babylon', 'https://images.isbndb.com/covers/85/90/9780446358590.jpg'), + ('0446600466', 'Black Market', 'https://images.isbndb.com/covers/04/60/9780446600460.jpg'), + ('0425098834', 'If Morning Ever Comes', 'https://images.isbndb.com/covers/88/37/9780425098837.jpg'), + ('0345409051', 'Errands', 'https://images.isbndb.com/covers/90/58/9780345409058.jpg'), + ('0446600474', 'Season Of The Machete', 'https://images.isbndb.com/covers/04/77/9780446600477.jpg'), + ('0140272100', 'Vanished', 'https://images.isbndb.com/covers/21/09/9780140272109.jpg'), + ('0446364800', 'The General''s Daughter', 'https://images.isbndb.com/covers/48/05/9780446364805.jpg'), + ('0679450408', 'Silent Witness', 'https://images.isbndb.com/covers/04/05/9780679450405.jpg'), + ('0613028155', 'The Neverending Story (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/81/58/9780613028158.jpg'), + ('034543014X', 'The Princess Bride: S. Morgenstern''s Classic Tale Of True Love And High Adventure (The 25th Anniversary Edition)', 'https://images.isbndb.com/covers/01/44/9780345430144.jpg'), + ('1563895730', 'The Sandman: The Dream Hunters', 'https://images.isbndb.com/covers/57/39/9781563895739.jpg'), + ('1563890356', 'Season Of Mists (Sandman, Book 4)', 'https://images.isbndb.com/covers/03/52/9781563890352.jpg'), + ('0345294688', 'The Best Of H.P. Lovecraft : Bloodcurdling Tales Of Horror And The Macabre', 'https://images.isbndb.com/covers/46/85/9780345294685.jpg'), + ('1566197589', 'Lady Chatterley''s Lover', 'https://images.isbndb.com/covers/75/88/9781566197588.jpg'), + ('0871131811', 'Zodiac: The Eco Thriller', 'https://images.isbndb.com/covers/18/12/9780871131812.jpg'), + ('0375713549', 'Fletch', 'https://images.isbndb.com/covers/35/45/9780375713545.jpg'), + ('0061020699', 'Equal Rites', 'https://images.isbndb.com/covers/06/98/9780061020698.jpg'), + ('086140324X', 'The Colour Of Magic (Discworld Novels)', 'https://images.isbndb.com/covers/32/40/9780861403240.jpg'), + ('156389226X', 'Dream Country (Sandman, Book 3)', 'https://images.isbndb.com/covers/22/64/9781563892264.jpg'), + ('1401200893', 'The Sandman: Endless Nights', 'https://images.isbndb.com/covers/08/93/9781401200893.jpg'), + ('0373650132', 'Marriage By Contract (Harlequin 36 Hours)', 'https://images.isbndb.com/covers/01/32/9780373650132.jpg'), + ('0671786113', 'Fair Haven', 'https://images.isbndb.com/covers/61/13/9780671786113.jpg'), + ('0373822456', 'The Return Of Caine O''Halloran (American Heroes Against All Odds: Washington #47)', 'https://images.isbndb.com/covers/24/54/9780373822454.jpg'), + ('0061092819', 'Together Alone', 'https://images.isbndb.com/covers/28/17/9780061092817.jpg'), + ('0373224540', 'Watch Over Me (Rocky Mountain Rescue) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/45/48/9780373224548.jpg'), + ('0373825617', 'Contract: Paternity (Delta Justice, Book 1)', 'https://images.isbndb.com/covers/56/15/9780373825615.jpg'), + ('0373707711', 'Father Of Two', 'https://images.isbndb.com/covers/77/13/9780373707713.jpg'), + ('0373708130', 'Julia: Circle Of Friends (Harlequin Superromance No. 813)', 'https://images.isbndb.com/covers/81/30/9780373708130.jpg'), + ('0373241739', 'Stallion Tamer (Cowboys Of The Southwest) (Special Edition)', 'https://images.isbndb.com/covers/17/36/9780373241736.jpg'), + ('037326240X', 'Meadowlark', 'https://images.isbndb.com/covers/24/03/9780373262403.jpg'), + ('0373825692', 'For The Love Of Beau (Delta Justice, Book 9)', 'https://images.isbndb.com/covers/56/91/9780373825691.jpg'), + ('0373166613', 'Cowboy Groom (4 Brides For 4 Brothers) (American Romance)', 'https://images.isbndb.com/covers/66/19/9780373166619.jpg'), + ('0312869592', 'Jack Of Kinrowan: Jack The Giant-Killer And Drink Down The Moon', 'https://images.isbndb.com/covers/95/95/9780312869595.jpg'), + ('0140328734', 'Danny The Champion Of The World', 'https://images.isbndb.com/covers/87/38/9780140328738.jpg'), + ('1563892251', 'The Doll''s House (Sandman, Book 2)', 'https://images.isbndb.com/covers/22/57/9781563892257.jpg'), + ('1563892464', 'The Tragical Comedy Or Comical Tragedy Of Mr. Punch', 'https://images.isbndb.com/covers/24/62/9781563892462.jpg'), + ('038097827X', 'The Wolves In The Walls (New York Times Best Illustrated Books (Awards))', 'https://images.isbndb.com/covers/82/74/9780380978274.jpg'), + ('0312874014', 'Tapping The Dream Tree', 'https://images.isbndb.com/covers/40/18/9780312874018.jpg'), + ('0312873972', 'The Onion Girl', 'https://images.isbndb.com/covers/39/74/9780312873974.jpg'), + ('1565041992', 'The Day I Swapped My Dad For Two Goldfish', 'https://images.isbndb.com/covers/19/98/9781565041998.jpg'), + ('014143967X', 'Hard Times', 'https://images.isbndb.com/covers/96/79/9780141439679.jpg'), + ('038070174X', 'The Ambassador''s Women', 'https://images.isbndb.com/covers/17/42/9780380701742.jpg'), + ('0804108552', 'Dead In The Water', 'https://images.isbndb.com/covers/85/53/9780804108553.jpg'), + ('0373708149', 'O Little Town Of Glory: Men Of Glory (Harlequin Superromance No. 814)', 'https://images.isbndb.com/covers/81/47/9780373708147.jpg'), + ('0373242441', 'Dream Groom (Brides Of Bradley House) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/24/43/9780373242443.jpg'), + ('0451150244', 'Pet Sematary (Signet)', 'https://images.isbndb.com/covers/02/40/9780451150240.jpg'), + ('0385134681', 'Family Affairs', 'https://images.isbndb.com/covers/46/82/9780385134682.jpg'), + ('0553350072', 'Witness For The Prosecution (The Agatha Christie Mystery Collection)', 'https://images.isbndb.com/covers/00/74/9780553350074.jpg'), + ('0380973634', 'Neverwhere', 'https://images.isbndb.com/covers/36/37/9780380973637.jpg'), + ('0765300222', 'Into The Green', 'https://images.isbndb.com/covers/02/25/9780765300225.jpg'), + ('0441008615', 'Good Omens (Discworld)', 'https://images.isbndb.com/covers/86/12/9780441008612.jpg'), + ('0679405828', 'Jane Eyre (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/58/25/9780679405825.jpg'), + ('0140367470', 'The Three Musketeers (Puffin Classics)', 'https://images.isbndb.com/covers/74/78/9780140367478.jpg'), + ('0345434803', 'The Vampire Armand (The Vampire Chronicles) Book 6', 'https://images.isbndb.com/covers/48/07/9780345434807.jpg'), + ('037370951X', 'The First Family Of Texas (Harlequin Superromance, No. 951) (Home On The Ranch)', 'https://images.isbndb.com/covers/95/19/9780373709519.jpg'), + ('0373072430', 'Summer Of The Wolf (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/24/39/9780373072439.jpg'), + ('0671040480', 'This Calder Range Volume 1', 'https://images.isbndb.com/covers/04/82/9780671040482.jpg'), + ('0449005550', 'Candles On Bay Street', 'https://images.isbndb.com/covers/55/52/9780449005552.jpg'), + ('1551667894', 'Four Seasons', 'https://images.isbndb.com/covers/78/98/9781551667898.jpg'), + ('0373242077', 'A Family Kind Of Gal', 'https://images.isbndb.com/covers/20/78/9780373242078.jpg'), + ('0425177009', 'Lavender Lies: A China Bayles Mystery', 'https://images.isbndb.com/covers/70/06/9780425177006.jpg'), + ('0373834543', 'The First Man You Meet / Jacob''s Girls', 'https://images.isbndb.com/covers/45/49/9780373834549.jpg'), + ('0373707290', 'Another Man''s Child (9 Months Later) (Harlequin Superromance, No. 729)', 'https://images.isbndb.com/covers/72/94/9780373707294.jpg'), + ('0373226071', 'Nighttime Guardian (Harlequin Intrigue 607)', 'https://images.isbndb.com/covers/60/78/9780373226078.jpg'), + ('0451201914', 'Winter Raven', 'https://images.isbndb.com/covers/19/11/9780451201911.jpg'), + ('0373822405', 'Out Of Danger (American Heroes Against All Odds: Tennessee #42)', 'https://images.isbndb.com/covers/24/09/9780373822409.jpg'), + ('0373063040', 'Heart''s Command (Medical Romance, #4)', 'https://images.isbndb.com/covers/30/48/9780373063048.jpg'), + ('155166500X', 'An Independent Wife', 'https://images.isbndb.com/covers/50/09/9781551665009.jpg'), + ('0060502320', 'I''ve Got You, Babe', 'https://images.isbndb.com/covers/23/24/9780060502324.jpg'), + ('0821771949', 'A Country Courtship (Zebra Regency Romance)', 'https://images.isbndb.com/covers/19/45/9780821771945.jpg'), + ('0304345350', 'Dictionary Of Superstitions', 'https://images.isbndb.com/covers/53/59/9780304345359.jpg'), + ('0373835558', 'Arabella', 'https://images.isbndb.com/covers/55/53/9780373835553.jpg'), + ('0812542819', 'Divine Endurance', 'https://images.isbndb.com/covers/28/13/9780812542813.jpg'), + ('0590402129', 'Sounder', 'https://images.isbndb.com/covers/21/25/9780590402125.jpg'), + ('0671465376', 'Murder With Mirrors', 'https://images.isbndb.com/covers/53/77/9780671465377.jpg'), + ('0141301066', 'Matilda', 'https://images.isbndb.com/covers/10/68/9780141301068.jpg'), + ('0515095524', 'Burden', 'https://images.isbndb.com/covers/55/24/9780515095524.jpg'), + ('0451628276', 'Great Dialogues Of Plato (Mentor)', 'https://images.isbndb.com/covers/82/75/9780451628275.jpg'), + ('0449226182', 'Amethyst Dreams', 'https://images.isbndb.com/covers/61/86/9780449226186.jpg'), + ('1551660237', 'Tiger Prince', 'https://images.isbndb.com/covers/02/33/9781551660233.jpg'), + ('059043893X', 'Dogsong', 'https://images.isbndb.com/covers/89/33/9780590438933.jpg'), + ('0451408845', 'Moonspun Magic (Magic Trilogy)', 'https://images.isbndb.com/covers/88/46/9780451408846.jpg'), + ('0451088816', 'Fools Die (Signet)', 'https://images.isbndb.com/covers/88/19/9780451088819.jpg'), + ('0515090379', 'Seperate Beds', 'https://images.isbndb.com/covers/03/76/9780515090376.jpg'), + ('0373242034', 'From House Calls To Husband (Prescription: Marriage) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/20/30/9780373242030.jpg'), + ('0373707266', '40 Tons Of Trouble (Women Who Dare, Book 29) (Harlequin Superromance, No 726)', 'https://images.isbndb.com/covers/72/63/9780373707263.jpg'), + ('0373835493', 'The Foundling', 'https://images.isbndb.com/covers/54/92/9780373835492.jpg'), + ('0373835590', 'These Old Shades', 'https://images.isbndb.com/covers/55/91/9780373835591.jpg'), + ('0373835582', 'The Black Moth', 'https://images.isbndb.com/covers/55/84/9780373835584.jpg'), + ('0373834454', 'The Convenient Marriage', 'https://images.isbndb.com/covers/44/57/9780373834457.jpg'), + ('0373834446', 'The Nonesuch', 'https://images.isbndb.com/covers/44/40/9780373834440.jpg'), + ('0380810492', 'He Could Be The One', 'https://images.isbndb.com/covers/04/99/9780380810499.jpg'), + ('051510521X', 'Bitter Sweet', 'https://images.isbndb.com/covers/52/16/9780515105216.jpg'), + ('0895774011', 'The Return Of Sherlock Holmes (World''s Best Reading)', 'https://images.isbndb.com/covers/40/19/9780895774019.jpg'), + ('0590440675', 'Upstairs Room', 'https://images.isbndb.com/covers/06/77/9780590440677.jpg'), + ('0895775522', 'The Further Adventures Of Sherlock Holmes', 'https://images.isbndb.com/covers/55/28/9780895775528.jpg'), + ('0801957729', 'Tripping In America;: Off The Beaten Track', 'https://images.isbndb.com/covers/77/27/9780801957727.jpg'), + ('1931081727', 'The Devil You Know', 'https://images.isbndb.com/covers/17/26/9781931081726.jpg'), + ('0808520695', 'Cat''s Cradle (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/06/96/9780808520696.jpg'), + ('0449242765', 'Star Gate', 'https://images.isbndb.com/covers/27/66/9780449242766.jpg'), + ('0446329142', 'Bloodline', 'https://images.isbndb.com/covers/91/49/9780446329149.jpg'), + ('0446354678', 'Memories Of Midnight', 'https://images.isbndb.com/covers/46/77/9780446354677.jpg'), + ('0446341932', 'Stranger In The Mirror', 'https://images.isbndb.com/covers/19/36/9780446341936.jpg'), + ('0060934700', 'Smoke And Mirrors: Short Fictions And Illusions', 'https://images.isbndb.com/covers/47/05/9780060934705.jpg'), + ('0373834489', 'The Corinthian', 'https://images.isbndb.com/covers/44/88/9780373834488.jpg'), + ('0679409033', 'Love Always Remembers', 'https://images.isbndb.com/covers/90/38/9780679409038.jpg'), + ('0066238501', 'The Chronicles Of Narnia', 'https://images.isbndb.com/covers/85/00/9780066238500.jpg'), + ('0553265741', 'Sacred Sins', 'https://images.isbndb.com/covers/57/43/9780553265743.jpg'), + ('0380977281', 'Stardust', 'https://images.isbndb.com/covers/72/84/9780380977284.jpg'), + ('014100018X', 'Chocolat', 'https://images.isbndb.com/covers/01/83/9780141000183.jpg'), + ('1556520743', 'Assata: An Autobiography (Lawrence Hill & Co.)', 'https://images.isbndb.com/covers/07/47/9781556520747.jpg'), + ('088396452X', 'To My Daughter With Love On The Important Things In Life (More Family Titles)', 'https://images.isbndb.com/covers/45/21/9780883964521.jpg'), + ('1567310877', 'Shout!: The Beatles In Their Generation', 'https://images.isbndb.com/covers/08/70/9781567310870.jpg'), + ('0441172695', 'Dune Messiah (Dune Chronicles, Book 2)', 'https://images.isbndb.com/covers/26/96/9780441172696.jpg'), + ('0312865104', 'Greenmantle', 'https://images.isbndb.com/covers/51/08/9780312865108.jpg'), + ('088001380X', 'Worshipful Company Of Fletchers', 'https://images.isbndb.com/covers/38/02/9780880013802.jpg'), + ('0965834581', 'Candles For Elizabeth', 'https://images.isbndb.com/covers/45/82/9780965834582.jpg'), + ('0373834462', 'Cousin Kate', 'https://images.isbndb.com/covers/44/64/9780373834464.jpg'), + ('0345357019', 'Roofworld', 'https://images.isbndb.com/covers/70/14/9780345357014.jpg'), + ('0679433228', 'Erotic Poems (Everyman''s Library Pocket Poets)', 'https://images.isbndb.com/covers/32/24/9780679433224.jpg'), + ('0446529540', 'Futureland: Nine Stories Of An Imminent World', 'https://images.isbndb.com/covers/95/49/9780446529549.jpg'), + ('0681415207', 'The Immortal John Lennon: 1940-1980 (The Immortal Series)', 'https://images.isbndb.com/covers/52/01/9780681415201.jpg'), + ('1861870019', 'My Daughter, My Joy', 'https://images.isbndb.com/covers/00/18/9781861870018.jpg'), + ('0811826848', 'The Beatles Anthology', 'https://images.isbndb.com/covers/68/46/9780811826846.jpg'), + ('0375756469', 'Women', 'https://images.isbndb.com/covers/64/67/9780375756467.jpg'), + ('067164405X', 'Blood And Water And Other Tales', 'https://images.isbndb.com/covers/40/55/9780671644055.jpg'), + ('0575061596', 'About A Boy', 'https://images.isbndb.com/covers/15/90/9780575061590.jpg'), + ('0340718153', 'My Legendary Girlfriend', 'https://images.isbndb.com/covers/81/55/9780340718155.jpg'), + ('0380817845', 'Man At Work', 'https://images.isbndb.com/covers/78/49/9780380817849.jpg'), + ('0553560468', 'Wilderness Tips', 'https://images.isbndb.com/covers/04/66/9780553560466.jpg'), + ('0312868332', 'The Tooth Fairy', 'https://images.isbndb.com/covers/83/38/9780312868338.jpg'), + ('0446356832', 'The Sands Of Time', 'https://images.isbndb.com/covers/68/31/9780446356831.jpg'), + ('0553263633', 'Martian Chronicles', 'https://images.isbndb.com/covers/36/33/9780553263633.jpg'), + ('0060976977', 'Amazing Grace: The Lives Of Children And The Conscience Of A Nation', 'https://images.isbndb.com/covers/69/72/9780060976972.jpg'), + ('0553280325', 'Something Wicked This Way Comes', 'https://images.isbndb.com/covers/03/26/9780553280326.jpg'), + ('0373810431', 'Expiration Date (Men At Work: Doctor, Doctor #31)', 'https://images.isbndb.com/covers/04/37/9780373810437.jpg'), + ('0373810482', 'The Miracle (Men At Work: Doctor, Doctor #36)', 'https://images.isbndb.com/covers/04/82/9780373810482.jpg'), + ('0373033605', 'A Brief Encounter (Harlequin Romance, No. 3360)', 'https://images.isbndb.com/covers/36/07/9780373033607.jpg'), + ('0373162669', 'Always A Bridesmaid (Harlequin American Romance)', 'https://images.isbndb.com/covers/26/66/9780373162666.jpg'), + ('0373226063', 'Bayou Blood Brothers (Harlequin Intrigue, No. 606)(3 Stories) (Tyler, Nick, Jules)', 'https://images.isbndb.com/covers/60/61/9780373226061.jpg'), + ('0446363499', 'A Coral Kiss', 'https://images.isbndb.com/covers/34/95/9780446363495.jpg'), + ('1583140379', 'Fools Rush In (Arabesque)', 'https://images.isbndb.com/covers/03/76/9781583140376.jpg'), + ('0373810601', 'Hotshot (Men At Work: Magnificent Men #48)', 'https://images.isbndb.com/covers/06/04/9780373810604.jpg'), + ('037307848X', 'Overnight Alibi (Silhouette Intimate Moments, No 848)', 'https://images.isbndb.com/covers/84/86/9780373078486.jpg'), + ('0373075502', 'Uncertain Angels (Silhouette Intimate Moments No. 550)', 'https://images.isbndb.com/covers/55/08/9780373075508.jpg'), + ('0373707010', 'Hot And Bothered (Women Who Dare, Book 26) (Harlequin Superromance, No 701)', 'https://images.isbndb.com/covers/70/10/9780373707010.jpg'), + ('1551667959', '7b', 'https://images.isbndb.com/covers/79/59/9781551667959.jpg'), + ('0373031106', 'Fair Trial (Harlequin Romance)', 'https://images.isbndb.com/covers/11/08/9780373031108.jpg'), + ('0373030959', 'Unfriendly Proposition (Harlequin Romance #3095)', 'https://images.isbndb.com/covers/09/58/9780373030958.jpg'), + ('0671676245', 'Silver Linings', 'https://images.isbndb.com/covers/62/47/9780671676247.jpg'), + ('0373033923', 'Husband Material (Holding Out For A Hero) (Harlequin Romance)', 'https://images.isbndb.com/covers/39/28/9780373033928.jpg'), + ('051788139X', 'The Harmony Illustrated Encyclopedia Of Country Music: 3rd Edition', 'https://images.isbndb.com/covers/13/92/9780517881392.jpg'), + ('0141310685', 'Westmark (The Westmark Trilogy)', 'https://images.isbndb.com/covers/06/88/9780141310688.jpg'), + ('0373226276', 'His Only Desire (Harlequin Intrigue, # 627)', 'https://images.isbndb.com/covers/62/76/9780373226276.jpg'), + ('0373243952', 'Ties That Bind (A Family Bond) (Harlequin Special Edition)', 'https://images.isbndb.com/covers/39/52/9780373243952.jpg'), + ('0375503838', 'The Very Persistent Gappers Of Frip', 'https://images.isbndb.com/covers/38/32/9780375503832.jpg'), + ('0373243944', 'Do You Take This Rebel? (The Calamity Janes, Book 1)', 'https://images.isbndb.com/covers/39/45/9780373243945.jpg'), + ('0373709889', 'Now That You''re Here (Harlequin Superromance No. 988)', 'https://images.isbndb.com/covers/98/85/9780373709885.jpg'), + ('0373709625', 'Fully Engaged (Harlequin Superromance No. 962)', 'https://images.isbndb.com/covers/96/25/9780373709625.jpg'), + ('0373600739', 'Falling Angel (Rita Award)', 'https://images.isbndb.com/covers/07/31/9780373600731.jpg'), + ('0373243979', 'Race To The Altar (Harlequin Special Edition)', 'https://images.isbndb.com/covers/39/76/9780373243976.jpg'), + ('0345342445', 'Citizen Of The Galaxy', 'https://images.isbndb.com/covers/24/47/9780345342447.jpg'), + ('0345350596', 'The Star Beast', 'https://images.isbndb.com/covers/05/96/9780345350596.jpg'), + ('0375503269', 'Anonymous Rex: A Detective Story', 'https://images.isbndb.com/covers/32/69/9780375503269.jpg'), + ('0689711522', 'Silver On The Tree (The Dark Is Rising, Book 4)', 'https://images.isbndb.com/covers/15/27/9780689711527.jpg'), + ('0689710895', 'The Grey King (The Dark Is Rising Sequence)', 'https://images.isbndb.com/covers/08/96/9780689710896.jpg'), + ('0375815147', 'Colman', 'https://images.isbndb.com/covers/51/40/9780375815140.jpg'), + ('1557733856', 'A New Leash On Death', 'https://images.isbndb.com/covers/38/56/9781557733856.jpg'), + ('0553294849', 'Ruffly Speaking (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/48/42/9780553294842.jpg'), + ('0553297341', 'Gone To The Dogs (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/73/48/9780553297348.jpg'), + ('0898153778', 'Friendly Foods (Gourmet Vegetarian Cuisine)', 'https://images.isbndb.com/covers/37/74/9780898153774.jpg'), + ('0880117168', 'Strength Training Past 50: (Ageless Athlete)', 'https://images.isbndb.com/covers/71/66/9780880117166.jpg'), + ('0590462237', 'The Littles To The Rescue', 'https://images.isbndb.com/covers/22/35/9780590462235.jpg'), + ('0307115208', 'When I Grow Up (Look-Look)', 'https://images.isbndb.com/covers/52/01/9780307115201.jpg'), + ('0743260244', 'Against All Enemies: Inside America''s War On Terror', 'https://images.isbndb.com/covers/02/44/9780743260244.jpg'), + ('0425115844', 'The Crying Child', 'https://images.isbndb.com/covers/58/48/9780425115848.jpg'), + ('0553580523', 'Evil Breeding (Dog Lover''s Mystery)', 'https://images.isbndb.com/covers/05/25/9780553580525.jpg'), + ('0915368587', 'Ingathering: The Complete People Stories Of Zenna Henderson', 'https://images.isbndb.com/covers/85/87/9780915368587.jpg'), + ('0679833692', 'Juniper', 'https://images.isbndb.com/covers/36/97/9780679833697.jpg'), + ('0394825985', 'Wise Child', 'https://images.isbndb.com/covers/59/84/9780394825984.jpg'), + ('0759228086', 'Silver Sun', 'https://images.isbndb.com/covers/80/85/9780759228085.jpg'), + ('067144378X', 'SABLE MOON', 'https://images.isbndb.com/covers/37/88/9780671443788.jpg'), + ('0812502124', 'Prentice Alvin (Tales Of Alvin Maker, Book 3)', 'https://images.isbndb.com/covers/21/21/9780812502121.jpg'), + ('0812533593', 'Red Prophet: The Tales Of Alvin Maker, Volume II', 'https://images.isbndb.com/covers/35/90/9780812533590.jpg'), + ('0812533534', 'Seventh Son (Tales Of Alvin Maker, Vol. I)', 'https://images.isbndb.com/covers/35/38/9780812533538.jpg'), + ('0440236061', 'Unfit To Practice', 'https://images.isbndb.com/covers/60/61/9780440236061.jpg'), + ('0743444523', 'Sweet Dreams, Irene: An Irene Kelly Novel', 'https://images.isbndb.com/covers/45/21/9780743444521.jpg'), + ('0743474325', 'Judgment Of The Witch (Speaks The Nightbird, Vol. 1)', 'https://images.isbndb.com/covers/43/20/9780743474320.jpg'), + ('067102406X', 'Mosaic', 'https://images.isbndb.com/covers/40/62/9780671024062.jpg'), + ('0061094560', 'Flashpoint', 'https://images.isbndb.com/covers/45/69/9780061094569.jpg'), + ('0451210891', 'Suspicion Of Madness', 'https://images.isbndb.com/covers/08/90/9780451210890.jpg'), + ('0345447409', 'Until Dark', 'https://images.isbndb.com/covers/74/01/9780345447401.jpg'), + ('0553571842', 'After Caroline', 'https://images.isbndb.com/covers/18/44/9780553571844.jpg'), + ('0936034025', 'We''re In The Mountains, Not Over The Hill: Tales And Tips From Seasoned Women Backpackers', 'https://images.isbndb.com/covers/40/27/9780936034027.jpg'), + ('0553583441', 'Touching Evil', 'https://images.isbndb.com/covers/34/41/9780553583441.jpg'), + ('0425168948', 'Dove In The Window (Benni Harper Mystery)', 'https://images.isbndb.com/covers/89/43/9780425168943.jpg'), + ('0786817070', 'Artemis Fowl (Artemis Fowl, Book 1)', 'https://images.isbndb.com/covers/70/78/9780786817078.jpg'), + ('0140230165', 'The Te Of Piglet', 'https://images.isbndb.com/covers/01/61/9780140230161.jpg'), + ('0553258176', 'Light On The Mountain', 'https://images.isbndb.com/covers/81/72/9780553258172.jpg'), + ('0553575538', 'Stealing Shadows (Shadows Trilogy)', 'https://images.isbndb.com/covers/55/38/9780553575538.jpg'), + ('1557734909', 'A Bite Of Death (A Dog Lover''s Mystery, 3rd In The Series) (A Holly Winter Mystery)', 'https://images.isbndb.com/covers/49/07/9781557734907.jpg'), + ('034546074X', 'The Clinic (Alex Delaware)', 'https://images.isbndb.com/covers/07/45/9780345460745.jpg'), + ('0152325808', 'Growing Vegetable Soup (Voyager Books)', 'https://images.isbndb.com/covers/58/00/9780152325800.jpg'), + ('0439163099', 'The Mozart Season', 'https://images.isbndb.com/covers/30/95/9780439163095.jpg'), + ('0449000265', 'Eight Weeks To Optimum Health: A Proven Program For Taking Full Advantage Of Your Body''s Natural Healing Power', 'https://images.isbndb.com/covers/02/67/9780449000267.jpg'), + ('0307119424', 'The New Baby', 'https://images.isbndb.com/covers/94/21/9780307119421.jpg'), + ('0064400026', 'Little House On The Prairie (Little House, No 2)', 'https://images.isbndb.com/covers/00/22/9780064400022.jpg'), + ('0307117375', 'The Volcano Machine (Dino Riders)', 'https://images.isbndb.com/covers/73/73/9780307117373.jpg'), + ('0307128865', 'Disney''s Pocahontas (Golden Look-Look Book)', 'https://images.isbndb.com/covers/88/67/9780307128867.jpg'), + ('0816738556', 'Let''s Tell Time (First-Start Easy Readers)', 'https://images.isbndb.com/covers/85/57/9780816738557.jpg'), + ('0874065925', 'The Haunted Underwear', 'https://images.isbndb.com/covers/59/23/9780874065923.jpg'), + ('0440403553', 'Black Beauty', 'https://images.isbndb.com/covers/35/55/9780440403555.jpg'), + ('0439080967', 'Bad, Badder, Baddest (Bad Girls)', 'https://images.isbndb.com/covers/09/65/9780439080965.jpg'), + ('0821769340', 'Cold Blooded (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/93/48/9780821769348.jpg'), + ('0671885634', 'The Second Horror (99 Fear Street, No. 2)', 'https://images.isbndb.com/covers/56/32/9780671885632.jpg'), + ('0590442988', 'Karen''s Little Sister (Baby-Sitters Little Sister #6)', 'https://images.isbndb.com/covers/29/85/9780590442985.jpg'), + ('0553157124', 'Against Taffy Sinclair Club, The', 'https://images.isbndb.com/covers/71/23/9780553157123.jpg'), + ('0380724332', 'Skeleton Canyon (Joanna Brady Mysteries, Book 5)', 'https://images.isbndb.com/covers/43/38/9780380724338.jpg'), + ('0684196387', 'Two For The Dough (Stephanie Plum, No. 2) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/63/81/9780684196381.jpg'), + ('3596237262', 'Wie Meine Mutter', 'https://images.isbndb.com/covers/72/65/9783596237265.jpg'), + ('0140430091', 'The History Of Tom Jones (Penguin Classics)', 'https://images.isbndb.com/covers/00/97/9780140430097.jpg'), + ('0140620249', 'The Woman In White', 'https://images.isbndb.com/covers/02/45/9780140620245.jpg'), + ('3499179806', 'Werde Was Du Bist: Selbstverwirklichung Durch Psychosynthese: Selbstverwirklichung Durch Psychosynthese. (rororo Transformation)', 'https://images.isbndb.com/covers/98/08/9783499179808.jpg'), + ('3453188519', 'Beziehungskonferenz. Wege Zu Einem Konstruktiven Miteinander.', 'https://images.isbndb.com/covers/85/18/9783453188518.jpg'), + ('0140128107', 'The Courage Of Their Convictions: Sixteen Americans Who Fought Their Way To The Supreme Court', 'https://images.isbndb.com/covers/81/09/9780140128109.jpg'), + ('0060164662', '28 Barbary Lane: A "Tales Of The City" Omnibus', 'https://images.isbndb.com/covers/46/69/9780060164669.jpg'), + ('0385470819', 'A Time To Kill', 'https://images.isbndb.com/covers/08/10/9780385470810.jpg'), + ('0316779423', 'Barrel Fever: Stories And Essays', 'https://images.isbndb.com/covers/94/25/9780316779425.jpg'), + ('0679419624', 'The Palace Thief', 'https://images.isbndb.com/covers/96/24/9780679419624.jpg'), + ('0375400699', 'Love In The Time Of Cholera (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/06/98/9780375400698.jpg'), + ('0151000719', 'Last Watch Of The Night', 'https://images.isbndb.com/covers/07/15/9780151000715.jpg'), + ('1841950521', 'Seasons Of The Heart', 'https://images.isbndb.com/covers/05/25/9781841950525.jpg'), + ('0140366857', 'The Wind In The Willows', 'https://images.isbndb.com/covers/68/53/9780140366853.jpg'), + ('2909051196', 'Le Français : Cent Difficultés', 'https://images.isbndb.com/covers/11/92/9782909051192.jpg'), + ('2876916193', 'Le Petit Livre Des Tests Du Francais Correct', 'https://images.isbndb.com/covers/61/97/9782876916197.jpg'), + ('2253170127', 'Douce Nuit', 'https://images.isbndb.com/covers/01/29/9782253170129.jpg'), + ('2253170372', 'La Maison Du Clair De Lune', 'https://images.isbndb.com/covers/03/72/9782253170372.jpg'), + ('2253170569', 'Ni Vue Ni Connue', 'https://images.isbndb.com/covers/05/63/9782253170563.jpg'), + ('2253001457', 'Vipère Au Poing', 'https://images.isbndb.com/covers/14/54/9782253001454.jpg'), + ('2253140872', 'L''écume Des Jours', 'https://images.isbndb.com/covers/08/70/9782253140870.jpg'), + ('2070393577', 'Exercices De Style', 'https://images.isbndb.com/covers/35/72/9782070393572.jpg'), + ('2070375609', 'La Burlesque équipée Du Cycliste', 'https://images.isbndb.com/covers/56/08/9782070375608.jpg'), + ('2070375722', 'Enfants Des étoiles', 'https://images.isbndb.com/covers/57/21/9782070375721.jpg'), + ('2266002996', 'Le Secret Du Masque De Fer', 'https://images.isbndb.com/covers/29/98/9782266002998.jpg'), + ('2070322068', 'Les Orientales ; Les Feuilles D''automne', 'https://images.isbndb.com/covers/20/60/9782070322060.jpg'), + ('2253049417', 'Bilbo Le Hobbit', 'https://images.isbndb.com/covers/94/18/9782253049418.jpg'), + ('2253000868', 'Cri De La Chouette', 'https://images.isbndb.com/covers/08/60/9782253000860.jpg'), + ('2253006866', 'La Mort Du Petit Cheval', 'https://images.isbndb.com/covers/68/62/9782253006862.jpg'), + ('2253002895', 'Colline', 'https://images.isbndb.com/covers/28/95/9782253002895.jpg'), + ('2253051381', 'La Folle Journée, Ou, Le Mariage De Figaro', 'https://images.isbndb.com/covers/13/81/9782253051381.jpg'), + ('2253037796', 'Le Barbier De Séville', 'https://images.isbndb.com/covers/77/98/9782253037798.jpg'), + ('2857043821', 'Le Cycle Du Graal : La Naissance Du Roi Arthur', 'https://images.isbndb.com/covers/38/29/9782857043829.jpg'), + ('0061092606', 'Sacred Clowns (Joe Leaphorn/Jim Chee Novels)', 'https://images.isbndb.com/covers/26/02/9780061092602.jpg'), + ('0752804510', 'Evening Class Uk Edition', 'https://images.isbndb.com/covers/45/14/9780752804514.jpg'), + ('0373270089', 'Waiting For The Wolf Moon (Silhouette Shadows)', 'https://images.isbndb.com/covers/00/88/9780373270088.jpg'), + ('0373123205', 'The Forced Marriage (Italian Husbands) (Harlequin Presents #2320)', 'https://images.isbndb.com/covers/32/09/9780373123209.jpg'), + ('0373037481', 'The Marriage Market (9 To 5)', 'https://images.isbndb.com/covers/74/83/9780373037483.jpg'), + ('0373118333', 'Father Of Her Child (Top Author) (Harlequin Presents)', 'https://images.isbndb.com/covers/83/35/9780373118335.jpg'), + ('0373196725', 'Counterfeit Princess (Catching The Crown)', 'https://images.isbndb.com/covers/67/22/9780373196722.jpg'), + ('0373613601', 'The Last Bachelor (Lone Star Country Club, 9)', 'https://images.isbndb.com/covers/36/01/9780373613601.jpg'), + ('0373196679', 'Betrothed To The Prince (Catching The Crown)', 'https://images.isbndb.com/covers/66/78/9780373196678.jpg'), + ('0373123167', 'An Enigmatic Man (Do Not Disturb!)', 'https://images.isbndb.com/covers/31/62/9780373123162.jpg'), + ('0373036582', 'Twins Included (Harlequin Romance, No. 3658)', 'https://images.isbndb.com/covers/65/85/9780373036585.jpg'), + ('0399206868', 'Getting Into Radio-Controlled Sports', 'https://images.isbndb.com/covers/68/63/9780399206863.jpg'), + ('0060085444', 'She Went All The Way', 'https://images.isbndb.com/covers/54/45/9780060085445.jpg'), + ('0373122829', 'Marriage On Command (Wedlocked!) (Harlequin Presents)', 'https://images.isbndb.com/covers/28/20/9780373122820.jpg'), + ('037316971X', 'Prescription: Marry Her Immediately: The Babies Of Doctors Circle (Harlequin American Romance, No 971)', 'https://images.isbndb.com/covers/97/19/9780373169719.jpg'), + ('0373123248', 'His Convenient Proposal (The Australians)', 'https://images.isbndb.com/covers/32/47/9780373123247.jpg'), + ('0590431250', 'Blind Date', 'https://images.isbndb.com/covers/12/55/9780590431255.jpg'), + ('0373037449', 'The Venetian Playboy''s Bride (The Counts Of Calvani)', 'https://images.isbndb.com/covers/74/45/9780373037445.jpg'), + ('0821766066', 'Seducing Alicia (Zebra Bouquet)', 'https://images.isbndb.com/covers/60/64/9780821766064.jpg'), + ('0892964049', 'Flight Of A Witch', 'https://images.isbndb.com/covers/40/48/9780892964048.jpg'), + ('0618260307', 'The Hobbit', 'https://images.isbndb.com/covers/03/00/9780618260300.jpg'), + ('0849995299', 'One Incredible Moment Celebrating The Majesty Of The Manger', 'https://images.isbndb.com/covers/52/93/9780849995293.jpg'), + ('0553258656', 'The House Of The Spirits', 'https://images.isbndb.com/covers/86/53/9780553258653.jpg'), + ('067081976X', 'Leaving Home: A Collection Of Lake Wobegon Stories', 'https://images.isbndb.com/covers/97/68/9780670819768.jpg'), + ('0020435207', 'The House Of Dies Drear (Dies Drear Chronicle)', 'https://images.isbndb.com/covers/52/04/9780020435204.jpg'), + ('0151829756', 'The Slaying Of The Dragon: Modern Tales Of The Playful Imagination', 'https://images.isbndb.com/covers/97/50/9780151829750.jpg'), + ('0060971819', 'Dancing At The Rascal Fair: A Novel', 'https://images.isbndb.com/covers/18/16/9780060971816.jpg'), + ('096444724X', 'The Great Adventure', 'https://images.isbndb.com/covers/72/40/9780964447240.jpg'), + ('0140440399', 'The History Of The Peloponnesian War', 'https://images.isbndb.com/covers/03/93/9780140440393.jpg'), + ('0871564599', 'The War Against The Greens: The "Wise-Use" Movement, The New Right, And Anti-Environmental Violence', 'https://images.isbndb.com/covers/45/97/9780871564597.jpg'), + ('0553247921', 'Hiroshima', 'https://images.isbndb.com/covers/79/23/9780553247923.jpg'), + ('0671415948', 'Hickory Dickory Death', 'https://images.isbndb.com/covers/59/45/9780671415945.jpg'), + ('0440215234', 'At Weddings And Wakes', 'https://images.isbndb.com/covers/52/33/9780440215233.jpg'), + ('0553290207', 'In Lane Three, Alex Archer', 'https://images.isbndb.com/covers/02/02/9780553290202.jpg'), + ('0140149937', 'The Women Of Deh Koh: Lives In An Iranian Village', 'https://images.isbndb.com/covers/99/37/9780140149937.jpg'), + ('0140444750', 'Early Christian Writings: The Apostolic Fathers (Penguin Classics)', 'https://images.isbndb.com/covers/47/59/9780140444759.jpg'), + ('0140017151', 'The Flame Trees Of Thika: Memories Of An African Childhood', 'https://images.isbndb.com/covers/71/51/9780140017151.jpg'), + ('0062740083', 'Emily Post On Weddings: Revised Edition', 'https://images.isbndb.com/covers/00/83/9780062740083.jpg'), + ('0385491085', 'Lady Oracle', 'https://images.isbndb.com/covers/10/82/9780385491082.jpg'), + ('0670869902', 'How Stella Got Her Groove Back', 'https://images.isbndb.com/covers/99/09/9780670869909.jpg'), + ('0345334930', 'More Momilies', 'https://images.isbndb.com/covers/49/30/9780345334930.jpg'), + ('0553255851', 'Where The Red Fern Grows', 'https://images.isbndb.com/covers/58/50/9780553255850.jpg'), + ('1904301088', 'Raggy Boy Trilogy', 'https://images.isbndb.com/covers/10/80/9781904301080.jpg'), + ('0517556278', 'The Mammoth Hunters-Earth''s Children', 'https://images.isbndb.com/covers/62/76/9780517556276.jpg'), + ('0460876171', 'Wings Of The Dove (Everyman Paperback Classics)', 'https://images.isbndb.com/covers/61/79/9780460876179.jpg'), + ('0064401847', 'Bridge To Terabithia', 'https://images.isbndb.com/covers/18/45/9780064401845.jpg'), + ('0340188022', 'Across The Bitter Sea (Coronet Books)', 'https://images.isbndb.com/covers/80/26/9780340188026.jpg'), + ('0385315279', 'The Fiery Cross', 'https://images.isbndb.com/covers/52/72/9780385315272.jpg'), + ('051509465X', 'Dancing On My Grave', 'https://images.isbndb.com/covers/46/57/9780515094657.jpg'), + ('0684174685', 'THIS SIDE OF PARADISE (Scribner Classic)', 'https://images.isbndb.com/covers/46/86/9780684174686.jpg'), + ('0553569074', 'Wouldn''t Take Nothing For My Journey Now', 'https://images.isbndb.com/covers/90/70/9780553569070.jpg'), + ('1571740252', 'Conversations With God: An Uncommon Dialogue', 'https://images.isbndb.com/covers/02/50/9781571740250.jpg'), + ('0425082202', 'Mister Rogers Tr', 'https://images.isbndb.com/covers/22/01/9780425082201.jpg'), + ('039607412X', 'Masterpieces Of Murder', 'https://images.isbndb.com/covers/41/20/9780396074120.jpg'), + ('0671641778', 'The Firebrand', 'https://images.isbndb.com/covers/17/71/9780671641771.jpg'), + ('0671689711', 'The Duchess', 'https://images.isbndb.com/covers/97/11/9780671689711.jpg'), + ('0440514428', 'Cold Sassy Tree', 'https://images.isbndb.com/covers/44/28/9780440514428.jpg'), + ('0449230279', 'PEANUTS DOUBLE VOL 2', 'https://images.isbndb.com/covers/02/75/9780449230275.jpg'), + ('0440401224', 'The Peppermint Pig (Yearling Classic)', 'https://images.isbndb.com/covers/12/23/9780440401223.jpg'), + ('0553206575', 'The Crucible', 'https://images.isbndb.com/covers/65/79/9780553206579.jpg'), + ('0553211013', 'Madame Bovary', 'https://images.isbndb.com/covers/10/16/9780553211016.jpg'), + ('0553561278', 'For The Sake Of Elena', 'https://images.isbndb.com/covers/12/72/9780553561272.jpg'), + ('0449700712', 'Dicey''s Song', 'https://images.isbndb.com/covers/07/16/9780449700716.jpg'), + ('0440215978', 'Land Of Hope (Ellis Island)', 'https://images.isbndb.com/covers/59/74/9780440215974.jpg'), + ('0064402967', 'Mandy', 'https://images.isbndb.com/covers/29/65/9780064402965.jpg'), + ('0553272586', 'Farewell To Manzanar', 'https://images.isbndb.com/covers/25/81/9780553272581.jpg'), + ('0375507507', 'Don''t Let''s Go To The Dogs Tonight: An African Childhood', 'https://images.isbndb.com/covers/75/02/9780375507502.jpg'), + ('0898700744', 'Prayer', 'https://images.isbndb.com/covers/07/49/9780898700749.jpg'), + ('1576832899', 'The Message: The Bible In Contemporary Language', 'https://images.isbndb.com/covers/28/99/9781576832899.jpg'), + ('0380817705', 'The Sandman: Book Of Dreams', 'https://images.isbndb.com/covers/77/02/9780380817702.jpg'), + ('0060907894', 'Crossing The Water', 'https://images.isbndb.com/covers/78/91/9780060907891.jpg'), + ('014018371X', 'Nostromo: A Tale Of The Seaboard (Classic, 20th-Century, Penguin)', 'https://images.isbndb.com/covers/37/19/9780140183719.jpg'), + ('0785107649', 'X-Men 2 Backpack (Backpack Marvels)', 'https://images.isbndb.com/covers/76/44/9780785107644.jpg'), + ('1853261750', 'Idiot (Wordsworth Classics) (Wordsworth Collection)', 'https://images.isbndb.com/covers/17/56/9781853261756.jpg'), + ('0451197003', 'The Man In The Iron Mask', 'https://images.isbndb.com/covers/70/09/9780451197009.jpg'), + ('0551031085', 'Stress Family Robinson 2', 'https://images.isbndb.com/covers/10/81/9780551031081.jpg'), + ('0451139712', 'The Stand (Signet)', 'https://images.isbndb.com/covers/97/19/9780451139719.jpg'), + ('0553234811', 'The Valley Of The Horses (Book 2, Earth''s Children)', 'https://images.isbndb.com/covers/48/17/9780553234817.jpg'), + ('0394312066', 'Ordeal By Fire: The Civil War And Reconstruction', 'https://images.isbndb.com/covers/20/64/9780394312064.jpg'), + ('0226726770', 'The Cholera Years: The United States In 1832, 1849, And 1866', 'https://images.isbndb.com/covers/67/79/9780226726779.jpg'), + ('0880384514', 'Darkwalker On Moonshae (Forgotten Realms-Moonshae Trilogy, Book 1)', 'https://images.isbndb.com/covers/45/13/9780880384513.jpg'), + ('0671667815', 'Women On War: Essential Voices For The Nuclear Age From A Brilliant International Assembly', 'https://images.isbndb.com/covers/78/18/9780671667818.jpg'), + ('0553052268', 'The Renewal Factor: How The Best Get And Keep The Competitive Edge', 'https://images.isbndb.com/covers/22/68/9780553052268.jpg'), + ('0553268945', 'Forging The Darksword: The Darksword Trilogy, Volume 1', 'https://images.isbndb.com/covers/89/42/9780553268942.jpg'), + ('0345334515', 'From Sea To Shining Sea', 'https://images.isbndb.com/covers/45/10/9780345334510.jpg'), + ('0312140940', 'Wonder Boys: A Novel', 'https://images.isbndb.com/covers/09/46/9780312140946.jpg'), + ('0613117905', 'Little Beaver And The Echo (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/79/06/9780613117906.jpg'), + ('0862648092', 'What Do You Want To Be , Brian?', 'https://images.isbndb.com/covers/80/91/9780862648091.jpg'), + ('074603010X', 'Where''s Rusty (Farmyard Tales Flap Books Series)', 'https://images.isbndb.com/covers/01/03/9780746030103.jpg'), + ('0142300128', 'The Very Noisy Night (Picture Puffins)', 'https://images.isbndb.com/covers/01/21/9780142300121.jpg'), + ('0750003049', 'Six Dinner Sid (Picture Books)', 'https://images.isbndb.com/covers/30/49/9780750003049.jpg'), + ('0749720182', 'The Adventures Of Thomas: V. 4 (Thomas Photo Paperbacks)', 'https://images.isbndb.com/covers/01/86/9780749720186.jpg'), + ('0006642004', 'Life With Loopy', 'https://images.isbndb.com/covers/20/08/9780006642008.jpg'), + ('0006643094', 'Carrot Tops And Cotton Tails', 'https://images.isbndb.com/covers/30/98/9780006643098.jpg'), + ('0689853491', 'We''re Going On A Bear Hunt', 'https://images.isbndb.com/covers/34/94/9780689853494.jpg'), + ('0744530717', 'The Elephant Tree', 'https://images.isbndb.com/covers/07/11/9780744530711.jpg'), + ('0679883878', 'Hoot', 'https://images.isbndb.com/covers/38/76/9780679883876.jpg'), + ('058242092X', 'Dinosaurs And All That Rubbish (Storytime Giants)', 'https://images.isbndb.com/covers/09/22/9780582420922.jpg'), + ('0749725028', 'Miss Bilbery S New House Pb (Mam)', 'https://images.isbndb.com/covers/50/20/9780749725020.jpg'), + ('0434971383', 'Thomas And The Station Cat: Lift The Flap Book', 'https://images.isbndb.com/covers/13/81/9780434971381.jpg'), + ('0805067868', 'Humphrey''s Corner', 'https://images.isbndb.com/covers/78/66/9780805067866.jpg'), + ('0811828379', 'The Golden Egg (Templar)', 'https://images.isbndb.com/covers/83/76/9780811828376.jpg'), + ('0140563733', 'Spot Visits His Grandparents', 'https://images.isbndb.com/covers/37/33/9780140563733.jpg'), + ('2253009164', 'La Machine Infernale', 'https://images.isbndb.com/covers/91/60/9782253009160.jpg'), + ('2070412571', 'La Maison Du Sommeil', 'https://images.isbndb.com/covers/25/70/9782070412570.jpg'), + ('0440224837', 'The Long Road Home', 'https://images.isbndb.com/covers/48/39/9780440224839.jpg'), + ('0812520424', 'The Untold Legend Of The Batman', 'https://images.isbndb.com/covers/04/22/9780812520422.jpg'), + ('0451198247', 'Sprinter', 'https://images.isbndb.com/covers/82/42/9780451198242.jpg'), + ('2070362361', 'La Cantatrice Chauve Suivi De La Leçon', 'https://images.isbndb.com/covers/23/63/9782070362363.jpg'), + ('2253152064', 'Elle M''appelait Miette', 'https://images.isbndb.com/covers/20/64/9782253152064.jpg'), + ('0375726322', 'The Dark Room: A Novel', 'https://images.isbndb.com/covers/63/23/9780375726323.jpg'), + ('2290314110', 'La Métamorphose Suivi De "Dans La Colonie Pénitentiaire"', 'https://images.isbndb.com/covers/41/11/9782290314111.jpg'), + ('2723407381', 'Balade Au Bout Du Monde, Tome 3 : Le Bâtard', 'https://images.isbndb.com/covers/73/80/9782723407380.jpg'), + ('2723407403', 'Balade Au Bout Du Monde, Tome 2 : Grand Pays', 'https://images.isbndb.com/covers/74/03/9782723407403.jpg'), + ('2723407411', 'Balade Au Bout Du Monde, Tome 1 : La Prison', 'https://images.isbndb.com/covers/74/10/9782723407410.jpg'), + ('2070513726', 'Le Bon Gros Géant', 'https://images.isbndb.com/covers/37/27/9782070513727.jpg'), + ('2070544281', 'Sacrées Sorcières', 'https://images.isbndb.com/covers/42/88/9782070544288.jpg'), + ('2264027681', 'La Triste Fin Du Petit Enfant Huître Et Autres Histoires', 'https://images.isbndb.com/covers/76/89/9782264027689.jpg'), + ('2266120158', 'Le Silence Des Agneaux', 'https://images.isbndb.com/covers/01/59/9782266120159.jpg'), + ('0723206015', 'The Tale Of The Flopsy Bunnies (Potter 23 Tales)', 'https://images.isbndb.com/covers/60/19/9780723206019.jpg'), + ('0843110589', 'Paddington''s Shopping Adventure', 'https://images.isbndb.com/covers/05/86/9780843110586.jpg'), + ('014143984X', 'Dracula (Penguin Classics)', 'https://images.isbndb.com/covers/98/46/9780141439846.jpg'), + ('2290307831', 'La Parfaite Lumière', 'https://images.isbndb.com/covers/78/30/9782290307830.jpg'), + ('0671619055', 'Flood', 'https://images.isbndb.com/covers/90/53/9780671619053.jpg'), + ('2266022504', 'Si C''est Un Homme', 'https://images.isbndb.com/covers/25/07/9782266022507.jpg'), + ('2020291541', 'Je Suis Vivant Et Vous êtes Morts', 'https://images.isbndb.com/covers/15/45/9782020291545.jpg'), + ('2707318094', 'Qui A Tué Roger Ackroyd ?', 'https://images.isbndb.com/covers/80/91/9782707318091.jpg'), + ('2871294798', 'Lady Oscar : La Rose De Versailles, Tome 2', 'https://images.isbndb.com/covers/47/95/9782871294795.jpg'), + ('287129478X', 'Lady Oscar : La Rose De Versailles, Tome 1', 'https://images.isbndb.com/covers/47/88/9782871294788.jpg'), + ('226612269X', 'Où Es-tu ?', 'https://images.isbndb.com/covers/26/96/9782266122696.jpg'), + ('2070375161', 'La Ferme Des Animaux', 'https://images.isbndb.com/covers/51/65/9782070375165.jpg'), + ('0140274294', 'Lady Chatterley''s Lover (Essential Penguin)', 'https://images.isbndb.com/covers/42/95/9780140274295.jpg'), + ('2266085778', 'Les Châtiments', 'https://images.isbndb.com/covers/57/79/9782266085779.jpg'), + ('2253001295', 'Electre', 'https://images.isbndb.com/covers/12/94/9782253001294.jpg'), + ('273811167X', 'Le Voyage D''Hector Ou La Recherche Du Bonheur', 'https://images.isbndb.com/covers/16/78/9782738111678.jpg'), + ('2264028815', 'Ubik', 'https://images.isbndb.com/covers/88/15/9782264028815.jpg'), + ('0752853694', 'Unadulterated Cat', 'https://images.isbndb.com/covers/36/97/9780752853697.jpg'), + ('0971116288', 'Oogie Boogie Central', 'https://images.isbndb.com/covers/62/83/9780971116283.jpg'), + ('0679416781', 'The English Patient', 'https://images.isbndb.com/covers/67/84/9780679416784.jpg'), + ('0451528484', 'The Upanishads: Breath Of The Eternal', 'https://images.isbndb.com/covers/84/83/9780451528483.jpg'), + ('156476303X', 'The Little Quarterback (Shaun Gayle''s Sports Tales)', 'https://images.isbndb.com/covers/30/37/9781564763037.jpg'), + ('2207300838', 'Les Langages De Pao', 'https://images.isbndb.com/covers/08/31/9782207300831.jpg'), + ('0380603764', 'An Indecent Obsession', 'https://images.isbndb.com/covers/37/63/9780380603763.jpg'), + ('0345450515', 'Billie''s Kiss (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/05/17/9780345450517.jpg'), + ('0671640003', 'Winter In Jerusalem', 'https://images.isbndb.com/covers/00/02/9780671640002.jpg'), + ('033390785X', 'Ice Station', 'https://images.isbndb.com/covers/78/56/9780333907856.jpg'), + ('0156006332', 'Finbar''s Hotel: A Novel', 'https://images.isbndb.com/covers/63/30/9780156006330.jpg'), + ('0451526988', 'Immigrant Voices: Twenty-Four Voices On Becoming An American (Signet Classics)', 'https://images.isbndb.com/covers/69/84/9780451526984.jpg'), + ('0606006133', 'Ethan Frome', 'https://images.isbndb.com/covers/61/32/9780606006132.jpg'), + ('0375725296', 'Eclipse: A Novel', 'https://images.isbndb.com/covers/52/96/9780375725296.jpg'), + ('0312420366', 'The Debt To Pleasure: A Novel', 'https://images.isbndb.com/covers/03/69/9780312420369.jpg'), + ('0590673211', 'Under The Magician''s Spell (Give Yourself Goosebumps)', 'https://images.isbndb.com/covers/32/11/9780590673211.jpg'), + ('1875657320', 'Foxspell', 'https://images.isbndb.com/covers/73/22/9781875657322.jpg'), + ('0091832861', 'Bat Attack Pb (Hair-raisers)', 'https://images.isbndb.com/covers/28/65/9780091832865.jpg'), + ('1592247865', 'The Moonstone', 'https://images.isbndb.com/covers/78/68/9781592247868.jpg'), + ('0684852705', 'Hamlet''s Dresser: A Memoir', 'https://images.isbndb.com/covers/27/06/9780684852706.jpg'), + ('0752817051', 'Song Of Troy (OME)', 'https://images.isbndb.com/covers/70/57/9780752817057.jpg'), + ('0140176616', 'Asta''s Book', 'https://images.isbndb.com/covers/66/12/9780140176612.jpg'), + ('0330291610', 'Biggles: The Untold Story', 'https://images.isbndb.com/covers/16/13/9780330291613.jpg'), + ('1853260657', 'Secret Agent (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/06/50/9781853260650.jpg'), + ('0746020120', 'Storms And Hurricanes (Usborne Understanding Geography)', 'https://images.isbndb.com/covers/01/28/9780746020128.jpg'), + ('0954395913', 'A Revolution In Kindness', 'https://images.isbndb.com/covers/59/19/9780954395919.jpg'), + ('0446691216', 'Flash House', 'https://images.isbndb.com/covers/12/15/9780446691215.jpg'), + ('1862071624', 'Too True', 'https://images.isbndb.com/covers/16/29/9781862071629.jpg'), + ('0385336403', 'Cloud Of Sparrows', 'https://images.isbndb.com/covers/64/06/9780385336406.jpg'), + ('1400075637', 'I''m Not Scared', 'https://images.isbndb.com/covers/56/38/9781400075638.jpg'), + ('1860491235', 'Oyster', 'https://images.isbndb.com/covers/12/38/9781860491238.jpg'), + ('044652719X', 'The Lightstone (The Ea Cycle Series Book 1)', 'https://images.isbndb.com/covers/71/94/9780446527194.jpg'), + ('0881104086', 'Agent Arthur''s Arctic Adventure (Usborne Puzzle Adventures)', 'https://images.isbndb.com/covers/40/80/9780881104080.jpg'), + ('075350507X', 'To The Pole', 'https://images.isbndb.com/covers/50/76/9780753505076.jpg'), + ('2253152188', 'Le Cycle De Pendragon, Tome 1: Taliesin', 'https://images.isbndb.com/covers/21/87/9782253152187.jpg'), + ('0345439481', 'The High Flyer (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/94/82/9780345439482.jpg'), + ('3471794484', 'Quattrocento', 'https://images.isbndb.com/covers/44/87/9783471794487.jpg'), + ('0060000805', 'The Treasure Of Montsegur: A Novel Of The Cathars', 'https://images.isbndb.com/covers/08/06/9780060000806.jpg'), + ('0142003581', 'The Stone Carvers', 'https://images.isbndb.com/covers/35/89/9780142003589.jpg'), + ('156849663X', 'Empire Of The Sun', 'https://images.isbndb.com/covers/66/34/9781568496634.jpg'), + ('1400060648', 'The Bone Woman: A Forensic Anthropologist''s Search For Truth In The Mass Graves Of Rwanda, Bosnia, Croatia, And Kosovo', 'https://images.isbndb.com/covers/06/41/9781400060641.jpg'), + ('014100374X', 'Pants On Fire', 'https://images.isbndb.com/covers/37/40/9780141003740.jpg'), + ('0812541979', 'Tea From An Empty Cup', 'https://images.isbndb.com/covers/19/77/9780812541977.jpg'), + ('0679777377', 'The English Patient', 'https://images.isbndb.com/covers/73/73/9780679777373.jpg'), + ('1585672939', 'The Maharajah''s Box: An Imperial Story Of Conspiracy, Love, And A Guru''s Prophecy', 'https://images.isbndb.com/covers/29/36/9781585672936.jpg'), + ('0007119860', 'Colour Of Heaven', 'https://images.isbndb.com/covers/98/68/9780007119868.jpg'), + ('0061030015', 'The Rhythm Section', 'https://images.isbndb.com/covers/00/17/9780061030017.jpg'), + ('0531301427', 'Looking For Alibrandi', 'https://images.isbndb.com/covers/14/25/9780531301425.jpg'), + ('0140185844', 'The Tree Of Man (Penguin Classics)', 'https://images.isbndb.com/covers/58/43/9780140185843.jpg'), + ('0743234413', 'Cloudstreet : A Novel', 'https://images.isbndb.com/covers/44/12/9780743234412.jpg'), + ('0743228480', 'Dirt Music : A Novel', 'https://images.isbndb.com/covers/84/80/9780743228480.jpg'), + ('0743418735', 'Perfect Match', 'https://images.isbndb.com/covers/87/37/9780743418737.jpg'), + ('0671776134', 'Plain Truth: A Novel', 'https://images.isbndb.com/covers/61/38/9780671776138.jpg'), + ('0965881261', 'Geisha', 'https://images.isbndb.com/covers/12/65/9780965881265.jpg'), + ('0140104569', 'Ruth Park''s "Harp In The South" Novels: WITH Missus, Harp In The South AND Poor Man''s Orange', 'https://images.isbndb.com/covers/45/61/9780140104561.jpg'), + ('0330391763', 'Swan River', 'https://images.isbndb.com/covers/17/64/9780330391764.jpg'), + ('0330483013', 'The Fisher Child', 'https://images.isbndb.com/covers/30/18/9780330483018.jpg'), + ('0312421184', 'The Silence Of The Rain: An Inspector Espinosa Mystery', 'https://images.isbndb.com/covers/11/82/9780312421182.jpg'), + ('0747265097', 'Startling Moon', 'https://images.isbndb.com/covers/50/92/9780747265092.jpg'), + ('0618446877', 'Dark Star Safari: Overland From Cairo To Capetown', 'https://images.isbndb.com/covers/68/72/9780618446872.jpg'), + ('0679725229', 'Ada, Or Ardor: A Family Chronicle', 'https://images.isbndb.com/covers/52/20/9780679725220.jpg'), + ('0385418485', 'How The Irish Saved Civilization: The Untold Story Of Ireland''s Heroic Role From The Fall Of Rome To The Rise Of Medieval Europe', 'https://images.isbndb.com/covers/84/85/9780385418485.jpg'), + ('0385319452', 'A Cup Of Light', 'https://images.isbndb.com/covers/94/54/9780385319454.jpg'), + ('0156001314', 'The Name Of The Rose: Including The Author''s Postscript', 'https://images.isbndb.com/covers/13/11/9780156001311.jpg'), + ('1573229865', 'The Dream Of Scipio', 'https://images.isbndb.com/covers/98/69/9781573229869.jpg'), + ('0151004137', 'The Seven Storey Mountain: Fiftieth-Anniversary Edition', 'https://images.isbndb.com/covers/41/33/9780151004133.jpg'), + ('1841955469', 'Stargazing: Memoirs Of A Young Lighthouse Keeper', 'https://images.isbndb.com/covers/54/69/9781841955469.jpg'), + ('0316353299', 'Blue Highways: A Journey Into America', 'https://images.isbndb.com/covers/32/98/9780316353298.jpg'), + ('1869503171', 'Spirit Writing', 'https://images.isbndb.com/covers/31/78/9781869503178.jpg'), + ('0767903862', 'In A Sunburned Country', 'https://images.isbndb.com/covers/38/68/9780767903868.jpg'), + ('0060931671', 'The Crying Of Lot 49', 'https://images.isbndb.com/covers/16/74/9780060931674.jpg'), + ('0060730552', 'Touching The Void: The True Story Of One Man''s Miraculous Survival', 'https://images.isbndb.com/covers/05/50/9780060730550.jpg'), + ('009179319X', 'Neanderthal', 'https://images.isbndb.com/covers/31/97/9780091793197.jpg'), + ('0743444329', 'Geisha : A Life', 'https://images.isbndb.com/covers/43/23/9780743444323.jpg'), + ('0812563581', 'The Relic', 'https://images.isbndb.com/covers/35/80/9780812563580.jpg'), + ('1558850945', 'A Fire In The Earth', 'https://images.isbndb.com/covers/09/41/9781558850941.jpg'), + ('1575664550', 'Hanging Curve (Mickey Rawlings Baseball Mysteries)', 'https://images.isbndb.com/covers/45/52/9781575664552.jpg'), + ('0688145736', 'The Body In The Bog', 'https://images.isbndb.com/covers/57/36/9780688145736.jpg'), + ('1560796626', 'Runamok: A Novel About The Realities Of Small Business', 'https://images.isbndb.com/covers/66/26/9781560796626.jpg'), + ('0684191415', 'Postmortem: A Mystery Introducing Dr. Kay Scarpetta', 'https://images.isbndb.com/covers/14/16/9780684191416.jpg'), + ('0140092501', 'Chaos: Making A New Science', 'https://images.isbndb.com/covers/25/09/9780140092509.jpg'), + ('0553265520', 'Brain Child', 'https://images.isbndb.com/covers/55/21/9780553265521.jpg'), + ('074345300X', 'Bare Bones: A Novel (Temperance Brennan Novels)', 'https://images.isbndb.com/covers/30/04/9780743453004.jpg'), + ('1932270329', 'Johnny Cash: An American Legend', 'https://images.isbndb.com/covers/03/27/9781932270327.jpg'), + ('0425191362', 'Isle Of Palms: A Lowcountry Tale', 'https://images.isbndb.com/covers/13/61/9780425191361.jpg'), + ('0451401492', 'Bitter Blood: A True Story Of Southern Family Pride, Madness, And Multiple Murder (Onyx)', 'https://images.isbndb.com/covers/14/96/9780451401496.jpg'), + ('0425042715', 'The Sixth Commandment', 'https://images.isbndb.com/covers/27/17/9780425042717.jpg'), + ('0312304250', 'Vertical Coffin: A Shane Scully Novel (Shane Scully Novels)', 'https://images.isbndb.com/covers/42/56/9780312304256.jpg'), + ('0385508603', 'The Bug', 'https://images.isbndb.com/covers/86/05/9780385508605.jpg'), + ('0399133143', 'The Tommyknockers', 'https://images.isbndb.com/covers/31/45/9780399133145.jpg'), + ('0570060265', 'Three Men Who Walked In Fire (Arch Books)', 'https://images.isbndb.com/covers/02/60/9780570060260.jpg'), + ('1558007725', 'Even Cowgirls Get The Blues', 'https://images.isbndb.com/covers/77/27/9781558007727.jpg'), + ('0671882198', 'Beguiled', 'https://images.isbndb.com/covers/21/98/9780671882198.jpg'), + ('1893910245', 'Patient Heal Thyself: A Remarkable Health Program Combining Ancient Wisdom With', 'https://images.isbndb.com/covers/02/49/9781893910249.jpg'), + ('0425133516', 'The Hunt For Red October (Jack Ryan)', 'https://images.isbndb.com/covers/35/14/9780425133514.jpg'), + ('0553583298', 'Hard News (Rune Trilogy)', 'https://images.isbndb.com/covers/32/98/9780553583298.jpg'), + ('0375505547', 'I Love You, Ronnie: The Letters Of Ronald Reagan To Nancy Reagan', 'https://images.isbndb.com/covers/55/46/9780375505546.jpg'), + ('0899199089', 'Leaving Cold Sassy: The Unfinished Sequel To Cold Sassy Tree', 'https://images.isbndb.com/covers/90/85/9780899199085.jpg'), + ('0151881006', 'Thomas Gray: Philosopher Cat', 'https://images.isbndb.com/covers/10/00/9780151881000.jpg'), + ('0425174360', 'The Wedding Guide For The Grownup Bride: Getting Married When You''re Old Enough To Know What You''re Doing', 'https://images.isbndb.com/covers/43/64/9780425174364.jpg'), + ('0802713815', 'Sun, Moon And Earth (Wooden Books)', 'https://images.isbndb.com/covers/38/10/9780802713810.jpg'), + ('0875964125', 'Fat To Firm At Any Age : Weight Loss Strategies For Women Who Want To Slim Down, Shape Up, And Get Rid Of Annoying Bulges At 30, 40 And Beyond', 'https://images.isbndb.com/covers/41/26/9780875964126.jpg'), + ('0385325126', 'I Love You So Much', 'https://images.isbndb.com/covers/51/27/9780385325127.jpg'), + ('0486408760', 'Selected Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/67/9780486408767.jpg'), + ('039588408X', 'Without: Poems', 'https://images.isbndb.com/covers/40/89/9780395884089.jpg'), + ('1569021074', 'Blankets Of Sand: Poems Of War And Exile', 'https://images.isbndb.com/covers/10/71/9781569021071.jpg'), + ('044801582X', 'Marshmallow Worlds', 'https://images.isbndb.com/covers/58/28/9780448015828.jpg'), + ('0844239461', 'Zen: A Way Of Life (Teach Yourself Books)', 'https://images.isbndb.com/covers/94/60/9780844239460.jpg'), + ('0679439242', 'Phenomenal Woman: Four Poems Celebrating Women', 'https://images.isbndb.com/covers/92/40/9780679439240.jpg'), + ('0671017586', 'I Think Im Outta Here: A Memoir', 'https://images.isbndb.com/covers/75/83/9780671017583.jpg'), + ('0385140932', 'Lord, Let Me Love', 'https://images.isbndb.com/covers/09/35/9780385140935.jpg'), + ('0646286927', 'Success With Soul: New Insights To Achieving Success With Real Meaning', 'https://images.isbndb.com/covers/69/21/9780646286921.jpg'), + ('0385490615', 'Notes On The Kitchen Table', 'https://images.isbndb.com/covers/06/10/9780385490610.jpg'), + ('0887482570', 'Scattering The Ashes (Carnegie Mellon Poetry Series)', 'https://images.isbndb.com/covers/25/71/9780887482571.jpg'), + ('0800705246', 'Someone Cares', 'https://images.isbndb.com/covers/52/44/9780800705244.jpg'), + ('0929587227', 'Selected Short Stories Of Sinclair Lewis (Rep)', 'https://images.isbndb.com/covers/72/26/9780929587226.jpg'), + ('0684855631', 'The Empty Chair', 'https://images.isbndb.com/covers/56/39/9780684855639.jpg'), + ('0934971609', 'Switch', 'https://images.isbndb.com/covers/16/07/9780934971607.jpg'), + ('0345382544', 'Simple Passion', 'https://images.isbndb.com/covers/25/42/9780345382542.jpg'), + ('0679775471', 'Ka: Stories Of The Mind And Gods Of India', 'https://images.isbndb.com/covers/54/78/9780679775478.jpg'), + ('0156838389', 'Sophocles, The Oedipus Cycle: Oedipus Rex, Oedipus At Colonus, Antigone', 'https://images.isbndb.com/covers/83/82/9780156838382.jpg'), + ('0618129030', 'The Fellowship Of The Ring (The Lord Of The Rings, Part 1)', 'https://images.isbndb.com/covers/90/34/9780618129034.jpg'), + ('0451162463', 'Dear Theo: The Autobiography Of Vincent Van Gogh (Signet)', 'https://images.isbndb.com/covers/24/65/9780451162465.jpg'), + ('0060536705', 'Who Will Take This Man?', 'https://images.isbndb.com/covers/67/01/9780060536701.jpg'), + ('0373708300', 'The Wrong Bride (Harlequin SuperRomance, No. 830)', 'https://images.isbndb.com/covers/83/07/9780373708307.jpg'), + ('0373079621', 'The Admiral''s Bride ( Silhouette Intimate Moments Tall, Dark & Dangerous, #962)', 'https://images.isbndb.com/covers/96/29/9780373079629.jpg'), + ('0373196636', 'The Knight''s Kiss', 'https://images.isbndb.com/covers/66/30/9780373196630.jpg'), + ('0553562746', 'Fanta C', 'https://images.isbndb.com/covers/27/43/9780553562743.jpg'), + ('0373706901', 'The Baby Contract : 9 Months Later (Harlequin Superromance No. 690)', 'https://images.isbndb.com/covers/69/07/9780373706907.jpg'), + ('0373871864', 'Out Of The Shadows (Love Inspired #179)', 'https://images.isbndb.com/covers/18/65/9780373871865.jpg'), + ('0373706987', 'You Again: Showcase (Harlequin Superromance No. 698)', 'https://images.isbndb.com/covers/69/83/9780373706983.jpg'), + ('0373707959', 'The Want Ad (Harlequin Superromance No. 795)', 'https://images.isbndb.com/covers/79/59/9780373707959.jpg'), + ('037370836X', 'Her Secret, His Child: A Little Secret (Harlequin Superromance No. 836)', 'https://images.isbndb.com/covers/83/69/9780373708369.jpg'), + ('037324522X', 'There Goes The Bride (Kane''s Crossing)', 'https://images.isbndb.com/covers/52/22/9780373245222.jpg'), + ('037370822X', 'The Maine Man: By The Year 2000: Marriage (Harlequin Superromance No. 822)', 'https://images.isbndb.com/covers/82/22/9780373708222.jpg'), + ('0373259840', 'What''s Your Pleasure?: Heat (Harlequin Temptation)', 'https://images.isbndb.com/covers/98/47/9780373259847.jpg'), + ('0373708084', 'Deborah''s Son: 9 Months Later (Harlequin Superromance No. 808)', 'https://images.isbndb.com/covers/80/86/9780373708086.jpg'), + ('037330157X', 'Inheritance (Western Lovers: Hitched In Haste #9)', 'https://images.isbndb.com/covers/15/77/9780373301577.jpg'), + ('0061082945', 'Always', 'https://images.isbndb.com/covers/29/48/9780061082948.jpg'), + ('0771086776', 'Matters Of The Heart', 'https://images.isbndb.com/covers/67/79/9780771086779.jpg'), + ('0849938635', 'The Oath', 'https://images.isbndb.com/covers/86/34/9780849938634.jpg'), + ('0373706200', 'Safekeeping (Women Who Dare, Book 13) (Harlequin Superromance, No 620)', 'https://images.isbndb.com/covers/62/04/9780373706204.jpg'), + ('0373707061', 'Daniel: Return To Calloway Corners (Harlequin Superromance No. 706)', 'https://images.isbndb.com/covers/70/65/9780373707065.jpg'), + ('1551666030', 'Prodigal Daughter', 'https://images.isbndb.com/covers/60/37/9781551666037.jpg'), + ('0553107232', 'Tough Cookie', 'https://images.isbndb.com/covers/72/34/9780553107234.jpg'), + ('0778320138', 'Chieftain (Mira S.)', 'https://images.isbndb.com/covers/01/35/9780778320135.jpg'), + ('0743431367', 'Uplift : Secrets From The Sisterhood Of Breast Cancer Survivors', 'https://images.isbndb.com/covers/13/61/9780743431361.jpg'), + ('0689856644', 'Sanctuary (Angel)', 'https://images.isbndb.com/covers/66/48/9780689856648.jpg'), + ('0440168724', 'A Perfect Stranger', 'https://images.isbndb.com/covers/87/20/9780440168720.jpg'), + ('0446527130', 'Envy', 'https://images.isbndb.com/covers/71/32/9780446527132.jpg'), + ('0061096024', 'Charity', 'https://images.isbndb.com/covers/60/20/9780061096020.jpg'), + ('0345289420', 'Introducing C. B. Greenfield', 'https://images.isbndb.com/covers/94/21/9780345289421.jpg'), + ('0553576666', 'The Next President', 'https://images.isbndb.com/covers/66/65/9780553576665.jpg'), + ('0380787865', 'Power Curve', 'https://images.isbndb.com/covers/78/69/9780380787869.jpg'), + ('0671774514', 'The Quest (Sonnet Books)', 'https://images.isbndb.com/covers/45/16/9780671774516.jpg'), + ('0425060772', 'The Case Of Lucy Bending', 'https://images.isbndb.com/covers/07/73/9780425060773.jpg'), + ('0515129739', 'Love''s Labyrinth (Time Passages)', 'https://images.isbndb.com/covers/97/31/9780515129731.jpg'), + ('0843948698', 'Wire Mesh Mothers', 'https://images.isbndb.com/covers/86/91/9780843948691.jpg'), + ('0553584898', 'Almost A Princess', 'https://images.isbndb.com/covers/48/99/9780553584899.jpg'), + ('0505524236', 'Night Visitor (Timeswept)', 'https://images.isbndb.com/covers/42/32/9780505524232.jpg'), + ('0515130419', 'The Night The Stars Fell', 'https://images.isbndb.com/covers/04/16/9780515130416.jpg'), + ('0843948078', 'The Man Of Steel', 'https://images.isbndb.com/covers/80/73/9780843948073.jpg'), + ('0373192398', 'Groom For Maggie (Whirlwind Weddings) (Silhouette Romance)', 'https://images.isbndb.com/covers/23/97/9780373192397.jpg'), + ('0553267159', 'The Dark Druid', 'https://images.isbndb.com/covers/71/50/9780553267150.jpg'), + ('0671629972', 'By Love Divided', 'https://images.isbndb.com/covers/99/77/9780671629977.jpg'), + ('0380777304', 'Dazzled', 'https://images.isbndb.com/covers/73/03/9780380777303.jpg'), + ('0671039938', 'Cinnamon (Shooting Stars, Bk. 1)', 'https://images.isbndb.com/covers/99/36/9780671039936.jpg'), + ('0515118230', 'Home Song', 'https://images.isbndb.com/covers/82/30/9780515118230.jpg'), + ('0380806304', 'Surrender To Love', 'https://images.isbndb.com/covers/63/00/9780380806300.jpg'), + ('0515101222', 'Spring Fancy', 'https://images.isbndb.com/covers/12/25/9780515101225.jpg'), + ('0553285947', 'Surrender', 'https://images.isbndb.com/covers/59/49/9780553285949.jpg'), + ('0345447867', 'The Apprentice- Tess Gerritsen', 'https://images.isbndb.com/covers/78/69/9780345447869.jpg'), + ('0373512112', 'The Seventh Night', 'https://images.isbndb.com/covers/21/19/9780373512119.jpg'), + ('037328800X', 'The Viking (The Viking Series, Book 1) (Harlequin Historical #200)', 'https://images.isbndb.com/covers/80/07/9780373288007.jpg'), + ('0373700474', 'Dark Side Of Love (Harlequin Superromance No. 47)', 'https://images.isbndb.com/covers/04/79/9780373700479.jpg'), + ('0451207963', 'The Deepest Edge', 'https://images.isbndb.com/covers/79/68/9780451207968.jpg'), + ('0743467191', 'Wildest Hearts', 'https://images.isbndb.com/covers/71/93/9780743467193.jpg'), + ('038075620X', 'Night Fire', 'https://images.isbndb.com/covers/62/09/9780380756209.jpg'), + ('0373703023', 'It''s All In The Game (Harlequin Superromance No. 302)', 'https://images.isbndb.com/covers/30/29/9780373703029.jpg'), + ('0553574078', 'Affair', 'https://images.isbndb.com/covers/40/74/9780553574074.jpg'), + ('055329945X', 'The Beloved Scoundrel', 'https://images.isbndb.com/covers/94/58/9780553299458.jpg'), + ('0373511876', 'Dreamscapes: Dark Moon', 'https://images.isbndb.com/covers/18/77/9780373511877.jpg'), + ('0515107662', 'The Sherbrooke Bride (Bride Series, Book 1)', 'https://images.isbndb.com/covers/76/61/9780515107661.jpg'), + ('0380820056', 'Stuck On You', 'https://images.isbndb.com/covers/00/54/9780380820054.jpg'), + ('0802705499', 'Travels Around America', 'https://images.isbndb.com/covers/54/95/9780802705495.jpg'), + ('050552435X', 'Whispers On The Wind (Futuristic Romance)', 'https://images.isbndb.com/covers/43/55/9780505524355.jpg'), + ('0373224818', 'Married In Haste (Hidden Identity, Book 6) (Harlequin Intrigue Series #481)', 'https://images.isbndb.com/covers/48/14/9780373224814.jpg'), + ('0061083275', 'Second Chances', 'https://images.isbndb.com/covers/32/73/9780061083273.jpg'), + ('0373195036', 'Eligible Bachelor', 'https://images.isbndb.com/covers/50/39/9780373195039.jpg'), + ('0373121709', 'All Night Long (Harlequin Presents Passion #2170)', 'https://images.isbndb.com/covers/17/00/9780373121700.jpg'), + ('0505524333', 'Marry Me, Maddie (Time Of Your Life)', 'https://images.isbndb.com/covers/43/31/9780505524331.jpg'), + ('0373036485', 'The Man She''ll Marry (Cowboy Grooms Wanted!)', 'https://images.isbndb.com/covers/64/86/9780373036486.jpg'), + ('0373121601', 'Rafael''s Love-Child (Harlequin Presents #2160)', 'https://images.isbndb.com/covers/16/01/9780373121601.jpg'), + ('0373168438', 'Who Gets To Marry Max? (Harlequin American Romance, No. 843)', 'https://images.isbndb.com/covers/84/39/9780373168439.jpg'), + ('0373121857', 'Bride On Demand (Harlequin Presents: No. 2185)', 'https://images.isbndb.com/covers/18/54/9780373121854.jpg'), + ('0505522969', 'Faithless Angel (Love Spell)', 'https://images.isbndb.com/covers/29/62/9780505522962.jpg'), + ('0828003882', 'Song Of Eve', 'https://images.isbndb.com/covers/38/89/9780828003889.jpg'), + ('155166450X', 'Impetuous', 'https://images.isbndb.com/covers/45/07/9781551664507.jpg'), + ('0671737821', 'Honor''s Splendour', 'https://images.isbndb.com/covers/78/25/9780671737825.jpg'), + ('0451205189', 'Murder Can Cool Off Your Affair (Desiree Shapiro Mystery #9)', 'https://images.isbndb.com/covers/51/86/9780451205186.jpg'), + ('0821747703', 'Beloved', 'https://images.isbndb.com/covers/77/04/9780821747704.jpg'), + ('0440213290', 'The Copper Beech', 'https://images.isbndb.com/covers/32/91/9780440213291.jpg'), + ('0373226934', 'Undercover Wife (The Colby Agency: The Specialists, Book 9) (Harlequin Intrigue Series #693)', 'https://images.isbndb.com/covers/69/31/9780373226931.jpg'), + ('038076735X', 'Lady Legend', 'https://images.isbndb.com/covers/73/59/9780380767359.jpg'), + ('0821768107', 'Anne''s Wish (Ballad Romances)', 'https://images.isbndb.com/covers/81/05/9780821768105.jpg'), + ('0441791212', 'Sweet Love Survive', 'https://images.isbndb.com/covers/12/17/9780441791217.jpg'), + ('0373707169', 'Trouble At Lone Spur (Home On The Ranch, Book 7) (Harlequin Superromance, No 716)', 'https://images.isbndb.com/covers/71/64/9780373707164.jpg'), + ('0446346438', 'Cactus Flower', 'https://images.isbndb.com/covers/64/36/9780446346436.jpg'), + ('0373226950', 'McQueen''s Heat (Harlequin Intrigue #695)', 'https://images.isbndb.com/covers/69/55/9780373226955.jpg'), + ('0821740121', 'Golden Threads (Lucky In Love No. 14)', 'https://images.isbndb.com/covers/01/25/9780821740125.jpg'), + ('0671521446', 'Carried Away', 'https://images.isbndb.com/covers/14/48/9780671521448.jpg'), + ('0373169299', 'At The Rancher''s Bidding (Harlequin American Romance, No 929)', 'https://images.isbndb.com/covers/92/90/9780373169290.jpg'), + ('067179793X', 'Princess Annie', 'https://images.isbndb.com/covers/79/35/9780671797935.jpg'), + ('0821768441', 'Love To Love You Baby (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/84/40/9780821768440.jpg'), + ('0886777755', 'Olympus', 'https://images.isbndb.com/covers/77/53/9780886777753.jpg'), + ('0440225868', 'Priceless', 'https://images.isbndb.com/covers/58/67/9780440225867.jpg'), + ('0373222467', 'Spirit Warrior (Harlequin Intrigue)', 'https://images.isbndb.com/covers/24/69/9780373222469.jpg'), + ('0762406984', 'World''s Shortest Stories Of Love And Death', 'https://images.isbndb.com/covers/69/82/9780762406982.jpg'), + ('0717802418', 'The Communist Manifesto', 'https://images.isbndb.com/covers/24/18/9780717802418.jpg'), + ('477001970X', '弓道の精神と明心―Illuminated Spirit [英文書]', 'https://images.isbndb.com/covers/97/07/9784770019707.jpg'), + ('1882180887', 'Basic Guide To Archery 2nd Edition (Official U.S. Olympic Sports)', 'https://images.isbndb.com/covers/08/82/9781882180882.jpg'), + ('0345409663', 'Servant Of The Bones', 'https://images.isbndb.com/covers/96/69/9780345409669.jpg'), + ('1878257528', 'Stop! The Watch: A Book Of Everyday, Ordinary, Anybody Olympics With Other (Klutz)', 'https://images.isbndb.com/covers/75/29/9781878257529.jpg'), + ('0865714487', 'Dumbing Us Down: The Hidden Curriculum Of Compulsory Schooling', 'https://images.isbndb.com/covers/44/89/9780865714489.jpg'), + ('0679724494', 'Kiss Of The Spider Woman', 'https://images.isbndb.com/covers/44/90/9780679724490.jpg'), + ('0805059970', 'Anne Frank: The Biography', 'https://images.isbndb.com/covers/99/77/9780805059977.jpg'), + ('0071360166', 'The Undergroundtrader.com Guide To Electronic Trading: Day Trading Techniques Of A Master Guerrilla Trader', 'https://images.isbndb.com/covers/01/66/9780071360166.jpg'), + ('0300096860', 'One World: The Ethics Of Globalization', 'https://images.isbndb.com/covers/68/66/9780300096866.jpg'), + ('039472903X', 'Ogilvy On Advertising', 'https://images.isbndb.com/covers/90/39/9780394729039.jpg'), + ('0851706517', 'The Birds (BFI Film Classics)', 'https://images.isbndb.com/covers/65/11/9780851706511.jpg'), + ('0670031518', 'The Blank Slate: The Modern Denial Of Human Nature', 'https://images.isbndb.com/covers/15/11/9780670031511.jpg'), + ('0786864230', 'Joy Shtick Or What Is The Existential Vacuum And Does It Come With Attachments', 'https://images.isbndb.com/covers/42/32/9780786864232.jpg'), + ('1852424214', 'Break It Down (High Risk Books)', 'https://images.isbndb.com/covers/42/13/9781852424213.jpg'), + ('0465005225', 'The Atoms Of Language: The Mind''s Hidden Rules Of Grammar', 'https://images.isbndb.com/covers/52/22/9780465005222.jpg'), + ('0425104338', 'Stephen King''s Danse Macabre', 'https://images.isbndb.com/covers/43/30/9780425104330.jpg'), + ('0451191935', 'Bachman Books: 4 Early Novels By Richard Bachman, Author Of The Regulators', 'https://images.isbndb.com/covers/19/39/9780451191939.jpg'), + ('0671792288', 'Bad Or, The Dumbing Of America', 'https://images.isbndb.com/covers/22/82/9780671792282.jpg'), + ('0787955876', 'The Contrarian''s Guide To Leadership', 'https://images.isbndb.com/covers/58/78/9780787955878.jpg'), + ('0743242602', 'The Myth Of The First Three Years: A New Understanding Of Early Brain Development And Lifelong Learning', 'https://images.isbndb.com/covers/26/08/9780743242608.jpg'), + ('0520204514', 'The Future Of The Book', 'https://images.isbndb.com/covers/45/15/9780520204515.jpg'), + ('0205318088', 'Mastering Public Speaking, Fourth Edition', 'https://images.isbndb.com/covers/80/87/9780205318087.jpg'), + ('014118485X', 'Seize The Day (Penguin Modern Classics)', 'https://images.isbndb.com/covers/48/52/9780141184852.jpg'), + ('1570623449', 'When Things Fall Apart: Heart Advice For Difficult Times (Shambhala Classics)', 'https://images.isbndb.com/covers/34/48/9781570623448.jpg'), + ('0446672483', 'The Good Marriage: How And Why Love Lasts', 'https://images.isbndb.com/covers/24/81/9780446672481.jpg'), + ('1558681752', 'Culture Shock! Taiwan (Culture Shock! A Survival Guide To Customs & Etiquette)', 'https://images.isbndb.com/covers/17/50/9781558681750.jpg'), + ('0394743644', 'Sleeping On The Wing: An Anthology Of Modern Poetry With Essays On Reading And Writing', 'https://images.isbndb.com/covers/36/46/9780394743646.jpg'), + ('0380713810', 'Made In America: An Informal History Of The English Language In The United States', 'https://images.isbndb.com/covers/38/13/9780380713813.jpg'), + ('067162248X', 'People Skills: How To Assert Yourself, Listen To Others, And Resolve Conflicts', 'https://images.isbndb.com/covers/24/80/9780671622480.jpg'), + ('0767913973', '30 Things Everyone Should Know How To Do Before Turning 30', 'https://images.isbndb.com/covers/39/73/9780767913973.jpg'), + ('0684867486', 'Yesterday I Cried: Celebrating The Lessons Of Living And Loving', 'https://images.isbndb.com/covers/74/89/9780684867489.jpg'), + ('1864502118', 'Lonely Planet Taiwan (Lonely Planet Taiwan: Travel Survival Kit)', 'https://images.isbndb.com/covers/21/14/9781864502114.jpg'), + ('1587410133', 'The Hazards Of Being Male: Surviving The Myth Of Masculine Privilege', 'https://images.isbndb.com/covers/01/30/9781587410130.jpg'), + ('0968246907', 'Tuiavii''s Way : A South Sea Chief''s Comments On Western Society', 'https://images.isbndb.com/covers/69/00/9780968246900.jpg'), + ('0316441791', 'Set Your Voice Free', 'https://images.isbndb.com/covers/17/97/9780316441797.jpg'), + ('0140125086', 'Bad Language (Penguin Language And Linguistics)', 'https://images.isbndb.com/covers/50/85/9780140125085.jpg'), + ('0140260234', 'Language Myths', 'https://images.isbndb.com/covers/02/36/9780140260236.jpg'), + ('0415222818', 'Thinking From A To Z', 'https://images.isbndb.com/covers/28/15/9780415222815.jpg'), + ('1904048145', 'Hal Hartley (Pocket Essential Series)', 'https://images.isbndb.com/covers/81/45/9781904048145.jpg'), + ('1573922110', 'Think To Win: The Power Of Logic In Everyday Life', 'https://images.isbndb.com/covers/21/11/9781573922111.jpg'), + ('0300087152', 'Humanity: A Moral History Of The Twentieth Century', 'https://images.isbndb.com/covers/71/54/9780300087154.jpg'), + ('0679756450', 'Portnoy''s Complaint', 'https://images.isbndb.com/covers/64/53/9780679756453.jpg'), + ('0340802995', 'Chinese Language, Life And Culture (Teach Yourself)', 'https://images.isbndb.com/covers/29/91/9780340802991.jpg'), + ('0140140328', 'The Granta Book Of The American Short Story', 'https://images.isbndb.com/covers/03/23/9780140140323.jpg'), + ('1573228583', 'Speaking With The Angel', 'https://images.isbndb.com/covers/85/89/9781573228589.jpg'), + ('0330334360', 'Essays In Love/a Novel', 'https://images.isbndb.com/covers/43/65/9780330334365.jpg'), + ('0140286780', 'Your Money Or Your Life: Transforming Your Relationship With Money And Achieving Financial Independence', 'https://images.isbndb.com/covers/67/86/9780140286786.jpg'), + ('0803959907', 'Intercultural Interactions: A Practical Guide (Cross Cultural Research And Methodology)', 'https://images.isbndb.com/covers/99/03/9780803959903.jpg'), + ('0679734031', 'The Art Of Fiction: Notes On Craft For Young Writers', 'https://images.isbndb.com/covers/40/31/9780679734031.jpg'), + ('0761123695', 'The Introvert Advantage: How To Thrive In An Extrovert World', 'https://images.isbndb.com/covers/36/99/9780761123699.jpg'), + ('0060997028', 'Life Is Elsewhere', 'https://images.isbndb.com/covers/70/21/9780060997021.jpg'), + ('0060997001', 'Farewell Waltz: A Novel', 'https://images.isbndb.com/covers/70/07/9780060997007.jpg'), + ('0618219196', 'The Seven Sins Of Memory: How The Mind Forgets And Remembers', 'https://images.isbndb.com/covers/91/93/9780618219193.jpg'), + ('0140289216', 'Sociolinguistics: An Introduction To Language And Society, Fourth Edition', 'https://images.isbndb.com/covers/92/13/9780140289213.jpg'), + ('0415167914', 'The Articulate Mammal: An Introduction To Psycholinguistics', 'https://images.isbndb.com/covers/79/18/9780415167918.jpg'), + ('0140135154', 'Ways Of Seeing: Based On The BBC Television Series', 'https://images.isbndb.com/covers/51/52/9780140135152.jpg'), + ('0553211684', 'Tess Of The D''Urbervilles (Bantam Classics)', 'https://images.isbndb.com/covers/16/89/9780553211689.jpg'), + ('0375757325', 'Robinson Crusoe (Modern Library Classics)', 'https://images.isbndb.com/covers/73/27/9780375757327.jpg'), + ('0684866005', 'Can''t Buy My Love: How Advertising Changes The Way We Think And Feel', 'https://images.isbndb.com/covers/60/00/9780684866000.jpg'), + ('0451525914', 'Women In Love (Signet Classic)', 'https://images.isbndb.com/covers/59/18/9780451525918.jpg'), + ('185788292X', 'Survival Kit For Overseas Living: For Americans Planning To Live And Work Abroad', 'https://images.isbndb.com/covers/29/26/9781857882926.jpg'), + ('0345362322', 'Know It All!', 'https://images.isbndb.com/covers/23/22/9780345362322.jpg'), + ('0874779472', 'Deep Writing: 7 Principles That Bring Ideas To Life', 'https://images.isbndb.com/covers/94/79/9780874779479.jpg'), + ('0393324869', 'Naked Economics: Undressing The Dismal Science', 'https://images.isbndb.com/covers/48/60/9780393324860.jpg'), + ('0385722192', 'Lullaby', 'https://images.isbndb.com/covers/21/93/9780385722193.jpg'), + ('0743455967', 'On Writing', 'https://images.isbndb.com/covers/59/61/9780743455961.jpg'), + ('0679758941', 'Nonzero: The Logic Of Human Destiny', 'https://images.isbndb.com/covers/89/45/9780679758945.jpg'), + ('0151104212', 'Babbitt', 'https://images.isbndb.com/covers/42/15/9780151104215.jpg'), + ('0679430946', 'The Hot Zone', 'https://images.isbndb.com/covers/09/40/9780679430940.jpg'), + ('0688164080', 'The KGB Bar Reader', 'https://images.isbndb.com/covers/40/89/9780688164089.jpg'), + ('1565840968', '''I Won''t Learn From You'': And Other Thoughts On Creative Maladjustment', 'https://images.isbndb.com/covers/09/66/9781565840966.jpg'), + ('0385094027', 'The Presentation Of Self In Everyday Life', 'https://images.isbndb.com/covers/40/23/9780385094023.jpg'), + ('157322829X', 'Coercion: Why We Listen To What "They" Say', 'https://images.isbndb.com/covers/82/99/9781573228299.jpg'), + ('0130957011', 'Tested Advertising Methods (Prentice Hall Business Classics)', 'https://images.isbndb.com/covers/70/16/9780130957016.jpg'), + ('1840463503', 'Introducing Learning And Memory', 'https://images.isbndb.com/covers/35/07/9781840463507.jpg'), + ('0435240609', 'SOURCE BOOK TEACH ENG FORN LAN', 'https://images.isbndb.com/covers/06/08/9780435240608.jpg'), + ('0840339402', 'Creativity Is Forever', 'https://images.isbndb.com/covers/94/09/9780840339409.jpg'), + ('0879804211', 'The Knight In Rusty Armor', 'https://images.isbndb.com/covers/42/13/9780879804213.jpg'), + ('0130647608', 'Critical Thinking: Tools For Taking Charge Of Your Professional And Personal Life', 'https://images.isbndb.com/covers/76/03/9780130647603.jpg'), + ('0060931361', 'Plato, Not Prozac!: Applying Eternal Wisdom To Everyday Problems', 'https://images.isbndb.com/covers/13/60/9780060931360.jpg'), + ('0582037670', 'Alternatives Games Exercises And Conversations For The Language Classroom (Pilgrims Longman Resource Books)', 'https://images.isbndb.com/covers/76/70/9780582037670.jpg'), + ('0531110397', 'Caution: This May Be An Advertisement : A Teen Guide To Advertising', 'https://images.isbndb.com/covers/03/93/9780531110393.jpg'), + ('0345333152', 'The Straight Dope', 'https://images.isbndb.com/covers/31/55/9780345333155.jpg'), + ('0194315193', 'The Good Grammar Book With Answers', 'https://images.isbndb.com/covers/51/97/9780194315197.jpg'), + ('0024031216', 'Freedom To Learn (3rd Edition)', 'https://images.isbndb.com/covers/12/11/9780024031211.jpg'), + ('0140137793', 'Lateral Thinking', 'https://images.isbndb.com/covers/77/98/9780140137798.jpg'), + ('0953309819', 'Resourceful English Teacher (Professional Perspectives)', 'https://images.isbndb.com/covers/98/18/9780953309818.jpg'), + ('1555831753', 'The Trouble With Harry Hay: Founder Of The Modern Gay Movement', 'https://images.isbndb.com/covers/17/52/9781555831752.jpg'), + ('0062513982', 'By The River Piedra I Sat Down And Wept', 'https://images.isbndb.com/covers/39/84/9780062513984.jpg'), + ('006251279X', 'The Pilgrimage - A Contemporary Quest For Ancient Wisdom', 'https://images.isbndb.com/covers/27/96/9780062512796.jpg'), + ('0345453557', 'Vivian Lives', 'https://images.isbndb.com/covers/35/56/9780345453556.jpg'), + ('093077356X', 'The Remains Of River Names', 'https://images.isbndb.com/covers/35/64/9780930773564.jpg'), + ('0060191988', 'A Night Without Armor: Poems', 'https://images.isbndb.com/covers/19/86/9780060191986.jpg'), + ('068483992X', 'MAKING YOUR OWN DAYS: THE PLEASURES OF READING AND WRITING POETRY', 'https://images.isbndb.com/covers/99/29/9780684839929.jpg'), + ('0425133656', 'Deep Thoughts', 'https://images.isbndb.com/covers/36/51/9780425133651.jpg'), + ('0874221501', 'Valley Walking: Notes On The Land (Northwest Voices Essay Series)', 'https://images.isbndb.com/covers/15/03/9780874221503.jpg'), + ('0451525353', 'The Love Songs Of Sappho (Signet Classics)', 'https://images.isbndb.com/covers/53/52/9780451525352.jpg'), + ('1563054671', 'The Little Zen Companion', 'https://images.isbndb.com/covers/46/79/9781563054679.jpg'), + ('0345453549', 'The Autobiography Of Vivian', 'https://images.isbndb.com/covers/35/49/9780345453549.jpg'), + ('1580420079', 'Whiz Kids Teach Chess', 'https://images.isbndb.com/covers/00/75/9781580420075.jpg'), + ('0713440228', 'Sicilian-- E6 And-- D6 Systems (Tournament Player''s Repertoire Of Openings)', 'https://images.isbndb.com/covers/02/25/9780713440225.jpg'), + ('0441004997', 'Hero And The Crown', 'https://images.isbndb.com/covers/49/97/9780441004997.jpg'), + ('0698119509', 'Spindle''s End', 'https://images.isbndb.com/covers/95/05/9780698119505.jpg'), + ('0689821417', 'Tommy''s New Playmate (The Rugrats Movie 8 X 8)', 'https://images.isbndb.com/covers/14/17/9780689821417.jpg'), + ('067086935X', 'Dog Brain', 'https://images.isbndb.com/covers/93/50/9780670869350.jpg'), + ('0816743924', 'I Love You Stinky Face', 'https://images.isbndb.com/covers/39/26/9780816743926.jpg'), + ('0765341174', 'Sarah: Women Of Genesis', 'https://images.isbndb.com/covers/11/74/9780765341174.jpg'), + ('030768993X', 'The Mother Goose Book (A Golden Book For Early Childhood)', 'https://images.isbndb.com/covers/99/31/9780307689931.jpg'), + ('0679434054', 'The Scarlet Ruse', 'https://images.isbndb.com/covers/40/54/9780679434054.jpg'), + ('1570960305', 'The Tea Planter''s Bride/Cassette', 'https://images.isbndb.com/covers/03/07/9781570960307.jpg'), + ('0886777208', 'Sword Of Ice: And Other Tales Of Valdemar (Daw Book Collectors)', 'https://images.isbndb.com/covers/72/03/9780886777203.jpg'), + ('0886777550', 'Storm Breaking (The Mage Storms, Book 3)', 'https://images.isbndb.com/covers/75/55/9780886777555.jpg'), + ('0886777127', 'Storm Rising (Mage Storms, No 2)', 'https://images.isbndb.com/covers/71/28/9780886777128.jpg'), + ('0886776619', 'Storm Warning (The Mage Storms, Book 1)', 'https://images.isbndb.com/covers/66/19/9780886776619.jpg'), + ('0886776120', 'Winds Of Fury (The Mage Winds, Book 3)', 'https://images.isbndb.com/covers/61/21/9780886776121.jpg'), + ('0886775639', 'Winds Of Change (The Mage Winds, Book 2)', 'https://images.isbndb.com/covers/56/36/9780886775636.jpg'), + ('0886774632', 'By The Sword (Kerowyn''s Tale)', 'https://images.isbndb.com/covers/46/39/9780886774639.jpg'), + ('0886775043', 'Horse Fantastic', 'https://images.isbndb.com/covers/50/49/9780886775049.jpg'), + ('0886774144', 'The Oathbound (Vows And Honor, Book 1)', 'https://images.isbndb.com/covers/41/41/9780886774141.jpg'), + ('0886774543', 'Oathbreakers (Vows And Honor, Book 2)', 'https://images.isbndb.com/covers/45/47/9780886774547.jpg'), + ('0886777739', 'Oathblood (Vows And Honor, Book 3)', 'https://images.isbndb.com/covers/77/39/9780886777739.jpg'), + ('0886774004', 'Arrow''s Fall (The Heralds Of Valdemar, Book 3)', 'https://images.isbndb.com/covers/40/04/9780886774004.jpg'), + ('0886773776', 'Arrow''s Flight (The Heralds Of Valdemar, Book 2)', 'https://images.isbndb.com/covers/37/79/9780886773779.jpg'), + ('0671701843', 'Chessercizes: New Winning Techniques For Players Of All Levels', 'https://images.isbndb.com/covers/18/40/9780671701840.jpg'), + ('0812535219', 'Saints', 'https://images.isbndb.com/covers/52/11/9780812535211.jpg'), + ('0312921098', 'Treason', 'https://images.isbndb.com/covers/10/95/9780312921095.jpg'), + ('0812533313', 'The Worthing Saga', 'https://images.isbndb.com/covers/33/16/9780812533316.jpg'), + ('0812533577', 'Wyrms', 'https://images.isbndb.com/covers/35/76/9780812533576.jpg'), + ('0812500865', 'The Folk Of The Fringe', 'https://images.isbndb.com/covers/08/68/9780812500868.jpg'), + ('0812521358', 'Harts Hope', 'https://images.isbndb.com/covers/13/51/9780812521351.jpg'), + ('0812523679', 'Monkey Sonatas (Maps In A Mirror)', 'https://images.isbndb.com/covers/36/76/9780812523676.jpg'), + ('0812523040', 'Cruel Miracles', 'https://images.isbndb.com/covers/30/41/9780812523041.jpg'), + ('0812533658', 'The Changed Man: Short Fiction Of Orson Scott Card Vol 1 (Maps In A Mirror)', 'https://images.isbndb.com/covers/36/51/9780812533651.jpg'), + ('0812516850', 'Flux: Tales Of Human Futures', 'https://images.isbndb.com/covers/68/52/9780812516852.jpg'), + ('0669271896', 'The Second Rape: Society''s Continued Betrayal Of The Victim', 'https://images.isbndb.com/covers/18/98/9780669271898.jpg'), + ('0812532961', 'Earthfall (Homecoming)', 'https://images.isbndb.com/covers/29/68/9780812532968.jpg'), + ('0812532988', 'Earthborn (Homecoming)', 'https://images.isbndb.com/covers/29/82/9780812532982.jpg'), + ('0812532619', 'The Call Of Earth', 'https://images.isbndb.com/covers/26/16/9780812532616.jpg'), + ('0812532635', 'The Ships Of Earth: Homecoming: Volume 3', 'https://images.isbndb.com/covers/26/30/9780812532630.jpg'), + ('0886776589', 'Beyond Ragnarok (Renshai Chronicles)', 'https://images.isbndb.com/covers/65/89/9780886776589.jpg'), + ('0886777151', 'Prince Of Demons (Renshai Chronicles)', 'https://images.isbndb.com/covers/71/59/9780886777159.jpg'), + ('0886778603', 'The Children Of Wrath: The Renshai Chronicles, Volume 3', 'https://images.isbndb.com/covers/86/06/9780886778606.jpg'), + ('0886775493', 'Child Of Thunder (Renshai Trilogy)', 'https://images.isbndb.com/covers/54/90/9780886775490.jpg'), + ('0886775205', 'The Western Wizard (Renshai Trilogy)', 'https://images.isbndb.com/covers/52/09/9780886775209.jpg'), + ('0886775035', 'The Last Of The Renshai (Renshai Trilogy)', 'https://images.isbndb.com/covers/50/32/9780886775032.jpg'), + ('0380775123', 'Tiger Burning Bright', 'https://images.isbndb.com/covers/51/25/9780380775125.jpg'), + ('0061020427', 'Sword And Shadow (Sword In Exile, Book 3)', 'https://images.isbndb.com/covers/04/21/9780061020421.jpg'), + ('0061020419', 'King Of Shadows (Sword In Exile, Book 2)', 'https://images.isbndb.com/covers/04/14/9780061020414.jpg'), + ('0061059773', 'Cloudbearer''s Shadow (Sword In Exile, Book 1)', 'https://images.isbndb.com/covers/97/73/9780061059773.jpg'), + ('0061056294', 'Kingmaker''s Sword (The Rune Blade Trilogy, Book 1)', 'https://images.isbndb.com/covers/62/91/9780061056291.jpg'), + ('0451458028', 'The Invisible Ring (Black Jewels, Book 4)', 'https://images.isbndb.com/covers/80/25/9780451458025.jpg'), + ('0451459423', 'The House Of Gaian (Tir Alainn Trilogy)', 'https://images.isbndb.com/covers/94/28/9780451459428.jpg'), + ('0451458990', 'Shadows And Light', 'https://images.isbndb.com/covers/89/95/9780451458995.jpg'), + ('0451458508', 'The Pillars Of The World (Tir Alainn Trilogy)', 'https://images.isbndb.com/covers/85/06/9780451458506.jpg'), + ('0746030517', 'Living World Encyclopedia (Usborne Encyclopedia)', 'https://images.isbndb.com/covers/05/16/9780746030516.jpg'), + ('0874936225', 'Pediatric Basic Life Support, 1997-1999', 'https://images.isbndb.com/covers/62/23/9780874936223.jpg'), + ('0965987302', 'Birthing From Within: An Extra-Ordinary Guide To Childbirth Preparation', 'https://images.isbndb.com/covers/73/01/9780965987301.jpg'), + ('0688161162', 'Easy To Love, Difficult To Discipline: The 7 Basic Skills For Turning Conflict Into Cooperation', 'https://images.isbndb.com/covers/11/63/9780688161163.jpg'), + ('0875962432', 'Dr. Pitcairn''s Complete Guide To Natural Health For Dogs & Cats', 'https://images.isbndb.com/covers/24/36/9780875962436.jpg'), + ('0201632721', 'Mothering The Mother: How A Doula Can Help You Have A Shorter, Easier, And Healthier Birth', 'https://images.isbndb.com/covers/27/29/9780201632729.jpg'), + ('0553379534', 'Women''s Bodies, Women''s Wisdom: Creating Physical And Emotional Health And Healing', 'https://images.isbndb.com/covers/95/32/9780553379532.jpg'), + ('0894716174', 'Baby Games: The Joyful Guide To Child''s Play From Birth To Three Years', 'https://images.isbndb.com/covers/61/71/9780894716171.jpg'), + ('1556432151', 'The Vaccine Guide: Making An Informed Choice', 'https://images.isbndb.com/covers/21/56/9781556432156.jpg'), + ('1891400495', 'A Simple Choice : A Practical Guide For Saving Your Time, Money And Sanity', 'https://images.isbndb.com/covers/04/90/9781891400490.jpg'), + ('0671025554', 'What''s In A Name?', 'https://images.isbndb.com/covers/55/57/9780671025557.jpg'), + ('0316542377', 'Toilet Learning: The Picture Book Technique For Children And Parents', 'https://images.isbndb.com/covers/23/71/9780316542371.jpg'), + ('0912500867', 'Defining Your Own Success: Breastfeeding After Breast Reduction Surgery', 'https://images.isbndb.com/covers/08/67/9780912500867.jpg'), + ('1558506438', 'The Everything Games Book: Hundreds Of Classic Games For All Ages (Everything (Hobbies & Games))', 'https://images.isbndb.com/covers/64/35/9781558506435.jpg'), + ('0316779059', 'The Baby Book: Everything You Need To Know About Your Baby From Birth To Age Two', 'https://images.isbndb.com/covers/90/50/9780316779050.jpg'), + ('0764550039', 'Chess For Dummies', 'https://images.isbndb.com/covers/00/34/9780764550034.jpg'), + ('0192800493', 'The Oxford Companion To Chess', 'https://images.isbndb.com/covers/04/97/9780192800497.jpg'), + ('0375815260', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/52/63/9780375815263.jpg'), + ('0882710583', 'The Catholic Children''s Bible,', 'https://images.isbndb.com/covers/05/87/9780882710587.jpg'), + ('0060256737', 'A Light In The Attic', 'https://images.isbndb.com/covers/67/39/9780060256739.jpg'), + ('0060248025', 'Falling Up', 'https://images.isbndb.com/covers/80/24/9780060248024.jpg'), + ('0880887575', 'Flowers For My Friend With Bookmark (Peter Pauper Petite Ser)', 'https://images.isbndb.com/covers/75/71/9780880887571.jpg'), + ('0786880007', 'Simplify Your Life: 100 Ways To Slow Down And Enjoy The Things That Really Matter', 'https://images.isbndb.com/covers/00/03/9780786880003.jpg'), + ('0793800153', 'Your First Parakeet', 'https://images.isbndb.com/covers/01/55/9780793800155.jpg'), + ('0595006035', 'Banking On Torture: A Nina Steel Adventure (Nina Steel Adventures)', 'https://images.isbndb.com/covers/60/38/9780595006038.jpg'), + ('0595093019', 'Reunion: Nina Steel Adventures', 'https://images.isbndb.com/covers/30/14/9780595093014.jpg'), + ('0761107363', '97 Ways To Make A Baby Laugh', 'https://images.isbndb.com/covers/73/61/9780761107361.jpg'), + ('0515136379', 'Key Of Knowledge', 'https://images.isbndb.com/covers/63/71/9780515136371.jpg'), + ('0515136530', 'Key Of Valor', 'https://images.isbndb.com/covers/65/31/9780515136531.jpg'), + ('0553288202', 'The Fall Of Hyperion', 'https://images.isbndb.com/covers/82/09/9780553288209.jpg'), + ('0812545990', 'Starfarers', 'https://images.isbndb.com/covers/59/99/9780812545999.jpg'), + ('0671524313', 'The Girlfriends'' Guide To Pregnancy: Or Everything Your Doctor Won''t Tell You', 'https://images.isbndb.com/covers/43/19/9780671524319.jpg'), + ('051513628X', 'Key Of Light', 'https://images.isbndb.com/covers/62/89/9780515136289.jpg'), + ('0912500522', 'Mothering Your Nursing Toddler', 'https://images.isbndb.com/covers/05/22/9780912500522.jpg'), + ('0912500549', 'How Weaning Happens', 'https://images.isbndb.com/covers/05/46/9780912500546.jpg'), + ('0451529014', 'The Black Jewels: Trilogy: Daughter Of The Blood / Heir To The Shadows / Queen Of The Darkness', 'https://images.isbndb.com/covers/90/15/9780451529015.jpg'), + ('0886777593', 'Prince Of Demons (Renshai Chronicles Vol. 2)', 'https://images.isbndb.com/covers/75/93/9780886777593.jpg'), + ('0886777011', 'Beyond Ragnarok (Renshai Chronicles)', 'https://images.isbndb.com/covers/70/12/9780886777012.jpg'), + ('0385294638', 'Wanderlust', 'https://images.isbndb.com/covers/46/38/9780385294638.jpg'), + ('0486275728', 'Irish Fairy Tales (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/57/27/9780486275727.jpg'), + ('156402976X', 'Catkin', 'https://images.isbndb.com/covers/97/68/9781564029768.jpg'), + ('0895779129', 'Foods That Harm, Foods That Heal: An A - Z Guide To Safe And Healthy Eating', 'https://images.isbndb.com/covers/91/20/9780895779120.jpg'), + ('0060950536', 'Taking Charge Of Your Fertility: The Definitive Guide To Natural Birth Control And Pregnancy Achievement', 'https://images.isbndb.com/covers/05/38/9780060950538.jpg'), + ('0895295458', 'Smart Medicine For A Healthier Child: A Practical A-to-Z Reference Ot Natural And Conventional Treatments', 'https://images.isbndb.com/covers/54/53/9780895295453.jpg'), + ('0688117619', 'Mayo Clinic Complete Book Of Pregnancy & Baby''s First Year', 'https://images.isbndb.com/covers/76/10/9780688117610.jpg'), + ('0671027441', 'Natural Family Living: The Mothering Magazine Guide To Parenting', 'https://images.isbndb.com/covers/74/45/9780671027445.jpg'), + ('0590448293', 'Karen''s Big Joke (Baby-Sitters Little Sister, No. 27)', 'https://images.isbndb.com/covers/82/91/9780590448291.jpg'), + ('0590448285', 'Karen''s Tea Party (Baby-Sitters Little Sister)', 'https://images.isbndb.com/covers/82/84/9780590448284.jpg'), + ('059046597X', 'The Littles Give A Party', 'https://images.isbndb.com/covers/59/77/9780590465977.jpg'), + ('0590455788', 'The Littles And The Terrible Tiny Kid', 'https://images.isbndb.com/covers/57/87/9780590455787.jpg'), + ('0439222303', 'Abracadabra #01: Poof! Rabbits Everywhere (Abracadabra)', 'https://images.isbndb.com/covers/23/03/9780439222303.jpg'), + ('0786710330', 'Time Machines: The Best Time Travel Stories Ever Written', 'https://images.isbndb.com/covers/03/31/9780786710331.jpg'), + ('0786814241', 'Cheetah Girls, The: Woof, There It Is - Book #5', 'https://images.isbndb.com/covers/42/44/9780786814244.jpg'), + ('0439176824', 'The Fall (Seventh Tower #1)', 'https://images.isbndb.com/covers/68/28/9780439176828.jpg'), + ('0590956159', 'In The Time Of Dinosaurs (Animorphs Megamorphs, 2)', 'https://images.isbndb.com/covers/61/54/9780590956154.jpg'), + ('0590010891', 'Star Wars, Episode I - The Phantom Menace (Junior Novelization)', 'https://images.isbndb.com/covers/08/94/9780590010894.jpg'), + ('0142302163', 'The Ghost Sitter', 'https://images.isbndb.com/covers/21/63/9780142302163.jpg'), + ('038071907X', 'Nothing But The Truth: A Documentary Novel', 'https://images.isbndb.com/covers/90/75/9780380719075.jpg'), + ('1565111575', 'Return Of The Jedi: The Original Radio Drama', 'https://images.isbndb.com/covers/15/78/9781565111578.jpg'), + ('1567187293', 'Silver''s Spells For Protection', 'https://images.isbndb.com/covers/72/98/9781567187298.jpg'), + ('1561008931', 'Knee Deep In Paradise (Nova Audio Books)', 'https://images.isbndb.com/covers/89/33/9781561008933.jpg'), + ('0671038931', 'Isaac Asimov''s Robot City, Volumes 1 And 2', 'https://images.isbndb.com/covers/89/39/9780671038939.jpg'), + ('1570420564', 'A Dream Is A Wish Your Heart Makes: My Story', 'https://images.isbndb.com/covers/05/66/9781570420566.jpg'), + ('0373691653', 'Packing Heat (Harlequin Temptation)', 'https://images.isbndb.com/covers/16/54/9780373691654.jpg'), + ('0448426862', 'Who Was Harry Houdini?', 'https://images.isbndb.com/covers/68/60/9780448426860.jpg'), + ('059047054X', 'Claudia And The Clue In The Photograph (Baby-Sitters Club Mysteries)', 'https://images.isbndb.com/covers/05/44/9780590470544.jpg'), + ('0881848603', 'This Day In Rock: Day By Day Record Of Rock''s Biggest News Stories', 'https://images.isbndb.com/covers/86/01/9780881848601.jpg'), + ('0806512318', 'The Worst Rock N'' Roll Records Of All Time: A Fan''s Guide To The Stuff You Love To Hate', 'https://images.isbndb.com/covers/23/10/9780806512310.jpg'), + ('0394563131', 'One Size Doesn''t Fit All', 'https://images.isbndb.com/covers/31/38/9780394563138.jpg'), + ('0394553284', 'One Knee Equals Two Feet: And Everything Else You Need To Know About Football', 'https://images.isbndb.com/covers/32/83/9780394553283.jpg'), + ('0688047211', 'The Lives Of John Lennon', 'https://images.isbndb.com/covers/72/14/9780688047214.jpg'), + ('0151879834', 'Tales From Margaritaville: Fictional Facts And Factual Fictions', 'https://images.isbndb.com/covers/98/30/9780151879830.jpg'), + ('0345351738', '2061: Odyssey Three', 'https://images.isbndb.com/covers/17/39/9780345351739.jpg'), + ('0451125452', 'Salem''s Lot (Signet)', 'https://images.isbndb.com/covers/54/53/9780451125453.jpg'), + ('0451149513', 'It (A Signet Book)', 'https://images.isbndb.com/covers/95/10/9780451149510.jpg'), + ('037328960X', 'Outlaw Love (Debut Author) (Harlequin Historical)', 'https://images.isbndb.com/covers/96/08/9780373289608.jpg'), + ('093317490X', 'The Yucatan: A Guide To The Land Of Maya Mysteries (Tetra)', 'https://images.isbndb.com/covers/49/00/9780933174900.jpg'), + ('0764550349', 'Consulting For Dummies', 'https://images.isbndb.com/covers/03/48/9780764550348.jpg'), + ('0373638167', 'Savage Sun', 'https://images.isbndb.com/covers/81/61/9780373638161.jpg'), + ('0441693237', 'Quantum Leap: Too Close For Comfort', 'https://images.isbndb.com/covers/32/38/9780441693238.jpg'), + ('1572970944', 'Quantum Leap 00: The Novel', 'https://images.isbndb.com/covers/09/46/9781572970946.jpg'), + ('0441000762', 'Quantum Leap: Prelude', 'https://images.isbndb.com/covers/07/60/9780441000760.jpg'), + ('1559029897', 'Dorothy And The Wizard In OZ', 'https://images.isbndb.com/covers/98/96/9781559029896.jpg'), + ('0679805265', 'LONG SHOT (The 3 Investigators)', 'https://images.isbndb.com/covers/52/67/9780679805267.jpg'), + ('0394843509', 'REEL TROUBLE (The Three Investigators Crimebusters, Book 7)', 'https://images.isbndb.com/covers/35/06/9780394843506.jpg'), + ('0373765649', 'Breathless For The Bachelor (Silhouette Desire)', 'https://images.isbndb.com/covers/56/45/9780373765645.jpg'), + ('0373642970', 'Deadly Pursuit: The Moon Shadow Trilogy (Executioner)', 'https://images.isbndb.com/covers/29/77/9780373642977.jpg'), + ('0373642962', 'Nuclear Game (The Executioner #296)', 'https://images.isbndb.com/covers/29/60/9780373642960.jpg'), + ('0373642954', 'The Executioner: Hostile Alliance', 'https://images.isbndb.com/covers/29/53/9780373642953.jpg'), + ('0373642946', 'Scorpion Rising (The Executioner #294)', 'https://images.isbndb.com/covers/29/46/9780373642946.jpg'), + ('0373642938', 'Death Merchants (Executioner 293)', 'https://images.isbndb.com/covers/29/39/9780373642939.jpg'), + ('0373642911', 'Blood Trade (The Executioner #291)', 'https://images.isbndb.com/covers/29/15/9780373642915.jpg'), + ('0373642903', 'Pursued (The Executioner #290)', 'https://images.isbndb.com/covers/29/08/9780373642908.jpg'), + ('0373642857', 'Final Strike (Executioner #285)', 'https://images.isbndb.com/covers/28/54/9780373642854.jpg'), + ('0373642849', 'The Executioner: Devil''s Army', 'https://images.isbndb.com/covers/28/47/9780373642847.jpg'), + ('0373642822', 'Jungle Conflict (Executioner #282)', 'https://images.isbndb.com/covers/28/23/9780373642823.jpg'), + ('037364292X', 'Savage Game (Executioner #292)', 'https://images.isbndb.com/covers/29/22/9780373642922.jpg'), + ('0373614918', 'Mack Bolan: Line Of Control', 'https://images.isbndb.com/covers/49/12/9780373614912.jpg'), + ('0373632452', 'Waste Not, Want Not (Destroyer #130)', 'https://images.isbndb.com/covers/24/59/9780373632459.jpg'), + ('0440219035', 'Tunes For Bears To Dance To', 'https://images.isbndb.com/covers/90/33/9780440219033.jpg'), + ('0373619472', 'Freedom Watch (Stony Man #63)', 'https://images.isbndb.com/covers/94/74/9780373619474.jpg'), + ('0373619499', 'Stony Man: The Third Protocol', 'https://images.isbndb.com/covers/94/98/9780373619498.jpg'), + ('0373619502', 'Axis Of Conflict The Terror File', 'https://images.isbndb.com/covers/95/04/9780373619504.jpg'), + ('0373614896', 'Strike And Retrieve (Super Bolan #89)', 'https://images.isbndb.com/covers/48/99/9780373614899.jpg'), + ('0373638078', 'Earth Blood (Earthblood #1)', 'https://images.isbndb.com/covers/80/79/9780373638079.jpg'), + ('0803298145', 'When Worlds Collide (Bison Frontiers Of Imagination)', 'https://images.isbndb.com/covers/81/49/9780803298149.jpg'), + ('0743486625', 'Damnation Alley', 'https://images.isbndb.com/covers/66/20/9780743486620.jpg'), + ('034528710X', 'Han Solo And The Lost Legacy', 'https://images.isbndb.com/covers/71/06/9780345287106.jpg'), + ('0671803530', 'Apple To Core', 'https://images.isbndb.com/covers/35/37/9780671803537.jpg'), + ('037361490X', 'Age Of War (Super Bolan #90)', 'https://images.isbndb.com/covers/49/05/9780373614905.jpg'), + ('0590880748', 'Destination Unknown (Remnants #2)', 'https://images.isbndb.com/covers/07/49/9780590880749.jpg'), + ('0590879979', 'The Mayflower Project (Remnants, No 1)', 'https://images.isbndb.com/covers/99/72/9780590879972.jpg'), + ('0590880780', 'Them (Remnants, 3)', 'https://images.isbndb.com/covers/07/87/9780590880787.jpg'), + ('0679811761', 'The Secret Of Terror Castle (The Three Investigators #1)', 'https://images.isbndb.com/covers/17/63/9780679811763.jpg'), + ('0440920221', 'Dracula Go Home', 'https://images.isbndb.com/covers/02/29/9780440920229.jpg'), + ('0698119916', 'Time Stops For No Mouse (Hermux Tantamoq Adventures)', 'https://images.isbndb.com/covers/99/18/9780698119918.jpg'), + ('0441007732', 'The Legend Of Luke (Redwall, Book 12)', 'https://images.isbndb.com/covers/77/38/9780441007738.jpg'), + ('097089726X', 'Jasper', 'https://images.isbndb.com/covers/72/68/9780970897268.jpg'), + ('037379116X', 'Anything Goes (Harlequin Blaze)', 'https://images.isbndb.com/covers/11/63/9780373791163.jpg'), + ('0060506989', 'We Were Soldiers Once... And Young: Ia Drang--The Battle That Changed The War In Vietnam', 'https://images.isbndb.com/covers/69/88/9780060506988.jpg'), + ('0451191579', 'Rebound: The Odyssey Of Michael Jordan', 'https://images.isbndb.com/covers/15/71/9780451191571.jpg'), + ('0375706933', 'My Cat Spit McGee', 'https://images.isbndb.com/covers/69/36/9780375706936.jpg'), + ('0345423038', 'The Wild Road', 'https://images.isbndb.com/covers/30/30/9780345423030.jpg'), + ('0553073273', 'Star Wars: Heir To The Empire', 'https://images.isbndb.com/covers/32/70/9780553073270.jpg'), + ('038513097X', 'Mary Frampton And Friends: Rock And Roll Recipes', 'https://images.isbndb.com/covers/09/74/9780385130974.jpg'), + ('0394531094', 'Hey,Wait A Minute (I Wrote A Book!)', 'https://images.isbndb.com/covers/10/90/9780394531090.jpg'), + ('0786807555', 'Under A War-Torn Sky', 'https://images.isbndb.com/covers/75/50/9780786807550.jpg'), + ('0373614845', 'Mack Bolan: Dark Truth', 'https://images.isbndb.com/covers/48/44/9780373614844.jpg'), + ('0553290851', '22 Indigo Place', 'https://images.isbndb.com/covers/08/51/9780553290851.jpg'), + ('0886774829', 'Stronghold (Dragon Star, Book 1)', 'https://images.isbndb.com/covers/48/20/9780886774820.jpg'), + ('0886774500', 'Dragon Prince (Book 1)', 'https://images.isbndb.com/covers/45/09/9780886774509.jpg'), + ('0886775426', 'The Dragon Token (Dragon Star, Book 2)', 'https://images.isbndb.com/covers/54/21/9780886775421.jpg'), + ('0886775957', 'Skybowl (Dragon Star, Book 3)', 'https://images.isbndb.com/covers/59/57/9780886775957.jpg'), + ('0671693816', 'Wifey', 'https://images.isbndb.com/covers/38/17/9780671693817.jpg'), + ('0785276890', 'Surprised By Laughter: The Comic World Of C.S. Lewis', 'https://images.isbndb.com/covers/68/90/9780785276890.jpg'), + ('0743445813', 'Tea For Two', 'https://images.isbndb.com/covers/58/18/9780743445818.jpg'), + ('0843949856', 'To Burn', 'https://images.isbndb.com/covers/98/58/9780843949858.jpg'), + ('0440222109', 'The Border Hostage', 'https://images.isbndb.com/covers/21/01/9780440222101.jpg'), + ('1565928431', 'ASP In A Nutshell, 2nd Edition', 'https://images.isbndb.com/covers/84/35/9781565928435.jpg'), + ('1931836876', 'Stealing The Network: How To Own The Box', 'https://images.isbndb.com/covers/68/76/9781931836876.jpg'), + ('096265342X', 'Principia Discordia: How I Found Goddess And What I Did To Her When I Found Her', 'https://images.isbndb.com/covers/34/21/9780962653421.jpg'), + ('0596000588', 'XML In A Nutshell : A Desktop Quick Reference (Nutshell Handbook)', 'https://images.isbndb.com/covers/05/85/9780596000585.jpg'), + ('1565927206', 'VBScript In A Nutshell: A Desktop Quick Reference (In A Nutshell (O''Reilly))', 'https://images.isbndb.com/covers/72/09/9781565927209.jpg'), + ('1565926994', 'Programming The Perl DBI', 'https://images.isbndb.com/covers/69/98/9781565926998.jpg'), + ('0486211339', 'Odd John And Sirius', 'https://images.isbndb.com/covers/13/36/9780486211336.jpg'), + ('0914918346', 'Kahuna Magic', 'https://images.isbndb.com/covers/83/49/9780914918349.jpg'), + ('0835605728', 'Kahuna Healing (Quest Books)', 'https://images.isbndb.com/covers/57/24/9780835605724.jpg'), + ('0072131780', 'Cascading Style Sheets 2.0 Programmer''s Reference', 'https://images.isbndb.com/covers/17/89/9780072131789.jpg'), + ('042504842X', 'Crooked Tree', 'https://images.isbndb.com/covers/84/29/9780425048429.jpg'), + ('0441760066', 'Caught In Crystal (Lyra Series, No.1)', 'https://images.isbndb.com/covers/00/60/9780441760060.jpg'), + ('0553268546', 'The Shore Of Women (Spectra)', 'https://images.isbndb.com/covers/85/46/9780553268546.jpg'), + ('0671831593', 'Watchstar', 'https://images.isbndb.com/covers/15/92/9780671831592.jpg'), + ('0445201223', 'To The High Redoubt', 'https://images.isbndb.com/covers/12/24/9780445201224.jpg'), + ('0446912689', 'Dead And Buried', 'https://images.isbndb.com/covers/26/86/9780446912686.jpg'), + ('0671559060', 'The Zanzibar Cat', 'https://images.isbndb.com/covers/90/69/9780671559069.jpg'), + ('0671019813', 'Day Of Honor (Star Trek Voyager)', 'https://images.isbndb.com/covers/98/15/9780671019815.jpg'), + ('0061097195', 'Stop Struggling With Your Child', 'https://images.isbndb.com/covers/71/95/9780061097195.jpg'), + ('0441653162', 'The Patchwork Girl', 'https://images.isbndb.com/covers/31/64/9780441653164.jpg'), + ('0671440683', 'RITE OF PASSAGE', 'https://images.isbndb.com/covers/06/88/9780671440688.jpg'), + ('0441775578', 'The Sorcery Within', 'https://images.isbndb.com/covers/55/76/9780441775576.jpg'), + ('0671002570', 'Klingon: Star Trek', 'https://images.isbndb.com/covers/25/72/9780671002572.jpg'), + ('0671656597', 'DARK ANGEL', 'https://images.isbndb.com/covers/65/91/9780671656591.jpg'), + ('0380896354', 'Trumps Of Doom (Chronicles Of Amber)', 'https://images.isbndb.com/covers/63/56/9780380896356.jpg'), + ('0441091660', 'Cards Of Grief', 'https://images.isbndb.com/covers/16/69/9780441091669.jpg'), + ('0671698508', 'Time Gate', 'https://images.isbndb.com/covers/85/08/9780671698508.jpg'), + ('0451132319', 'Eyes Of Amber And Other Tales', 'https://images.isbndb.com/covers/23/14/9780451132314.jpg'), + ('0345370732', 'The Hunt (formerly 27)', 'https://images.isbndb.com/covers/07/30/9780345370730.jpg'), + ('0812525752', 'A Matter Of Taste (The Dracula Series)', 'https://images.isbndb.com/covers/57/55/9780812525755.jpg'), + ('0425074498', 'Witchdame', 'https://images.isbndb.com/covers/44/97/9780425074497.jpg'), + ('0345296052', 'THE FELLOWSHIP OF THE RING (Part One Of The Lord Of The Rings)', 'https://images.isbndb.com/covers/60/54/9780345296054.jpg'), + ('0523485263', 'The Swordswoman', 'https://images.isbndb.com/covers/52/63/9780523485263.jpg'), + ('0879977051', 'Hecate''s Cauldron', 'https://images.isbndb.com/covers/70/54/9780879977054.jpg'), + ('0446890359', 'Without Feathers', 'https://images.isbndb.com/covers/03/59/9780446890359.jpg'), + ('0441896448', 'Witch Blood', 'https://images.isbndb.com/covers/64/48/9780441896448.jpg'), + ('0380699575', 'What Do You Really Want For Your Children?', 'https://images.isbndb.com/covers/95/75/9780380699575.jpg'), + ('0942024001', 'The Hundredth Monkey', 'https://images.isbndb.com/covers/40/05/9780942024005.jpg'), + ('052547014X', 'The History Of The Kings Of Britain', 'https://images.isbndb.com/covers/01/44/9780525470144.jpg'), + ('0892131144', 'Coming Back: The Science Of Reincarnation', 'https://images.isbndb.com/covers/11/43/9780892131143.jpg'), + ('067183276X', 'The Klingon Gambit', 'https://images.isbndb.com/covers/27/66/9780671832766.jpg'), + ('0812533496', 'Merlin''s Bones', 'https://images.isbndb.com/covers/34/91/9780812533491.jpg'), + ('0345296044', 'The Hobbit', 'https://images.isbndb.com/covers/60/47/9780345296047.jpg'), + ('0671658131', 'Memory Prime (Star Trek, Book 42)', 'https://images.isbndb.com/covers/81/37/9780671658137.jpg'), + ('0441102573', 'Changeling (Changeling Saga, Bk. 1)', 'https://images.isbndb.com/covers/25/70/9780441102570.jpg'), + ('0553287737', 'The Bourne Ultimatum (Bourne Trilogy, Book 3)', 'https://images.isbndb.com/covers/77/38/9780553287738.jpg'), + ('0812521048', 'Burning Water (Diana Tregarde Investigation)', 'https://images.isbndb.com/covers/10/47/9780812521047.jpg'), + ('0345368959', 'The Dolphins Of Pern (Dragonriders Of Pern)', 'https://images.isbndb.com/covers/89/59/9780345368959.jpg'), + ('0345285980', 'Crystal Singer', 'https://images.isbndb.com/covers/59/80/9780345285980.jpg'), + ('0553248456', 'The Nature Of Personal Reality: A Seth Book', 'https://images.isbndb.com/covers/84/56/9780553248456.jpg'), + ('0451161343', 'Thinner (Signet)', 'https://images.isbndb.com/covers/13/45/9780451161345.jpg'), + ('0879977620', 'Hawkmistress! (Darkover: The Hundred Kingdoms)', 'https://images.isbndb.com/covers/76/27/9780879977627.jpg'), + ('0879979623', 'City Of Sorcery (Darkover)', 'https://images.isbndb.com/covers/96/21/9780879979621.jpg'), + ('044106857X', 'The Bloody Sun', 'https://images.isbndb.com/covers/85/79/9780441068579.jpg'), + ('0879978066', 'Darkover Landfall (Darkover, The Founding: Bk. 1)', 'https://images.isbndb.com/covers/80/68/9780879978068.jpg'), + ('0345315642', 'The Catch Trap', 'https://images.isbndb.com/covers/56/49/9780345315649.jpg'), + ('0886771854', 'The Other Side Of The Mirror (Darkover)', 'https://images.isbndb.com/covers/18/50/9780886771850.jpg'), + ('0451454081', 'Strands Of Sunlight', 'https://images.isbndb.com/covers/40/89/9780451454089.jpg'), + ('0886770963', 'Free Amazons Of Darkover', 'https://images.isbndb.com/covers/09/69/9780886770969.jpg'), + ('0886774519', 'The Heirs Of Hammerfell (Darkover)', 'https://images.isbndb.com/covers/45/16/9780886774516.jpg'), + ('0879978155', 'Greyhaven: An Anthology Of Fantasy', 'https://images.isbndb.com/covers/81/50/9780879978150.jpg'), + ('0345303067', '2010: Odyssey Two', 'https://images.isbndb.com/covers/30/66/9780345303066.jpg'), + ('0671448757', 'Web Of Light', 'https://images.isbndb.com/covers/87/52/9780671448752.jpg'), + ('0441892558', 'The Winds Of Darkover', 'https://images.isbndb.com/covers/25/56/9780441892556.jpg'), + ('0886770750', 'Warrior Woman', 'https://images.isbndb.com/covers/07/54/9780886770754.jpg'), + ('0812500067', 'Witch Hill (Light Series)', 'https://images.isbndb.com/covers/00/66/9780812500066.jpg'), + ('0879978570', 'Thendara House (Darkover: Renunciates Trilogy, Bk. 2)', 'https://images.isbndb.com/covers/85/70/9780879978570.jpg'), + ('0671440349', 'The Sword Is Forged', 'https://images.isbndb.com/covers/03/43/9780671440343.jpg'), + ('0671833073', 'The Covenant Of The Crown (Star Trek, No 4)', 'https://images.isbndb.com/covers/30/77/9780671833077.jpg'), + ('0671633295', 'Deep Domain (Star Trek, Book 33)', 'https://images.isbndb.com/covers/32/95/9780671633295.jpg'), + ('0553291165', 'Raising The Stones', 'https://images.isbndb.com/covers/11/62/9780553291162.jpg'), + ('0671632671', 'BATTLESTATIONS! (Star Trek #31)', 'https://images.isbndb.com/covers/26/70/9780671632670.jpg'), + ('0671618733', 'Dreadnought! (Start Trek, Book 29)', 'https://images.isbndb.com/covers/87/35/9780671618735.jpg'), + ('0441159354', 'The Door Through Space', 'https://images.isbndb.com/covers/93/52/9780441159352.jpg'), + ('0553231251', 'Focusing', 'https://images.isbndb.com/covers/12/50/9780553231250.jpg'), + ('0345288300', 'The House Between The Worlds', 'https://images.isbndb.com/covers/83/01/9780345288301.jpg'), + ('0671448773', 'The Colors Of Space', 'https://images.isbndb.com/covers/87/76/9780671448776.jpg'), + ('0879979283', 'Sword & Sorceress I', 'https://images.isbndb.com/covers/92/87/9780879979287.jpg'), + ('0886770416', 'Sword And Sorceress II (2)', 'https://images.isbndb.com/covers/04/19/9780886770419.jpg'), + ('0425058646', 'Cloudcry', 'https://images.isbndb.com/covers/86/40/9780425058640.jpg'), + ('0671465414', 'Mutiny On The Enterprise (Star Trek, No 12)', 'https://images.isbndb.com/covers/54/14/9780671465414.jpg'), + ('0671794264', 'The Devil''s Heart (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/42/62/9780671794262.jpg'), + ('044018178X', 'Songmaster', 'https://images.isbndb.com/covers/17/81/9780440181781.jpg'), + ('0441138764', 'Daughter Of The Bright Moon', 'https://images.isbndb.com/covers/87/60/9780441138760.jpg'), + ('0441918107', 'Worthing Chronicle', 'https://images.isbndb.com/covers/81/02/9780441918102.jpg'), + ('0061099643', 'Imajica', 'https://images.isbndb.com/covers/96/49/9780061099649.jpg'), + ('0451452941', 'Shroud Of Shadow', 'https://images.isbndb.com/covers/29/48/9780451452948.jpg'), + ('0451452305', 'Maze Of Moonlight', 'https://images.isbndb.com/covers/23/06/9780451452306.jpg'), + ('0451454499', 'O Greenest Branch! (Book I Of Water!)', 'https://images.isbndb.com/covers/44/92/9780451454492.jpg'), + ('0671832972', 'The Abode Of Life (Star Trek, No 6)', 'https://images.isbndb.com/covers/29/71/9780671832971.jpg'), + ('0671836323', 'Black Fire (Star Trek, No 8)', 'https://images.isbndb.com/covers/63/20/9780671836320.jpg'), + ('0441065848', 'The Black Flame', 'https://images.isbndb.com/covers/58/44/9780441065844.jpg'), + ('0425058190', 'Harts Hope', 'https://images.isbndb.com/covers/81/90/9780425058190.jpg'), + ('0786014652', 'Eye Of The Beholder', 'https://images.isbndb.com/covers/46/51/9780786014651.jpg'), + ('0743424387', 'The Meeting Of The Waters (Book One Of The Watchers)', 'https://images.isbndb.com/covers/43/87/9780743424387.jpg'), + ('0800758056', 'Neat Mom, Messie Kids: A Survival Guide', 'https://images.isbndb.com/covers/80/59/9780800758059.jpg'), + ('047121888X', 'Multiple Streams Of Internet Income', 'https://images.isbndb.com/covers/88/83/9780471218883.jpg'), + ('1588720284', 'Why Your Life Sucks: And What You Can Do About It', 'https://images.isbndb.com/covers/02/83/9781588720283.jpg'), + ('0345460693', 'Time Bomb (Alex Delaware)', 'https://images.isbndb.com/covers/06/91/9780345460691.jpg'), + ('0446613681', 'The Legacy', 'https://images.isbndb.com/covers/36/82/9780446613682.jpg'), + ('0886773199', 'Oathbreakers (Vows And Honor)', 'https://images.isbndb.com/covers/31/99/9780886773199.jpg'), + ('0553574582', 'With Child', 'https://images.isbndb.com/covers/45/86/9780553574586.jpg'), + ('0886772222', 'Arrow''s Flight (Heralds Of Valdemar)', 'https://images.isbndb.com/covers/22/22/9780886772222.jpg'), + ('0886772559', 'Arrow''s Fall (Heralds Of Valdemar)', 'https://images.isbndb.com/covers/25/50/9780886772550.jpg'), + ('0886771897', 'Arrows Of The Queen (Heralds Of Valdemar)', 'https://images.isbndb.com/covers/18/98/9780886771898.jpg'), + ('0886772850', 'The Oathbound (Vows And Honor)', 'https://images.isbndb.com/covers/28/57/9780886772857.jpg'), + ('0671578510', 'Telzey Amberdon (Telzey Amberdon (Baen))', 'https://images.isbndb.com/covers/85/10/9780671578510.jpg'), + ('0786006579', 'Ulterior Motive', 'https://images.isbndb.com/covers/65/71/9780786006571.jpg'), + ('0061098353', 'Twice Dying', 'https://images.isbndb.com/covers/83/52/9780061098352.jpg'), + ('0756400147', 'Child Of Flame (Crown Of Stars, Book 4)', 'https://images.isbndb.com/covers/01/49/9780756400149.jpg'), + ('0449007383', 'Murder At Ford''s Theatre', 'https://images.isbndb.com/covers/73/89/9780449007389.jpg'), + ('0802773524', 'The New Brainbooster: Six Hours To Rapid Learning And Remembering', 'https://images.isbndb.com/covers/35/24/9780802773524.jpg'), + ('0425170470', 'Pregnancy After A Loss: A Guide To Pregnancy After A Miscarriage, Stillbirth, Or Infant Death', 'https://images.isbndb.com/covers/04/72/9780425170472.jpg'), + ('0878331824', 'Trying Again: A Guide To Pregnancy After Miscarriage, Stillbirth, And Infant Loss', 'https://images.isbndb.com/covers/18/26/9780878331826.jpg'), + ('0060937645', 'Taking Charge Of Your Fertility: The Definitive Guide To Natural Birth Control, Pregnancy Achievement, And Reproductive Health (Revised Edition)', 'https://images.isbndb.com/covers/76/45/9780060937645.jpg'), + ('0789488914', 'Crime Scene: The Ultimate Guide To Forensic Science', 'https://images.isbndb.com/covers/89/16/9780789488916.jpg'), + ('0020960808', 'Natural Superiority Of Women', 'https://images.isbndb.com/covers/08/05/9780020960805.jpg'), + ('0449703274', 'Rumors And Whispers', 'https://images.isbndb.com/covers/32/74/9780449703274.jpg'), + ('0380542625', 'One Child', 'https://images.isbndb.com/covers/26/28/9780380542628.jpg'), + ('0312983220', 'Area 7', 'https://images.isbndb.com/covers/32/22/9780312983222.jpg'), + ('0515135747', 'Wrongful Death', 'https://images.isbndb.com/covers/57/49/9780515135749.jpg'), + ('0071414975', 'The Fat Flush Journal And Shopping Guide (Gittleman)', 'https://images.isbndb.com/covers/49/75/9780071414975.jpg'), + ('0071383832', 'The Fat Flush Plan', 'https://images.isbndb.com/covers/38/37/9780071383837.jpg'), + ('1855858320', 'Detox: Cleanse And Recharge Your Mind, Body And Soul', 'https://images.isbndb.com/covers/83/29/9781855858329.jpg'), + ('1400047064', 'Suzanne Somers'' Eat, Cheat, And Melt The Fat Away', 'https://images.isbndb.com/covers/70/62/9781400047062.jpg'), + ('1570671273', 'Apple Cider Vinegar: For Weight Loss And Good Health', 'https://images.isbndb.com/covers/12/72/9781570671272.jpg'), + ('0062517791', 'Power Healing: The Four Keys To Energizing Your Body, Mind, And Spirit', 'https://images.isbndb.com/covers/77/91/9780062517791.jpg'), + ('0062517821', 'The Secret Of The Shadow: The Power Of Owning Your Whole Story', 'https://images.isbndb.com/covers/78/21/9780062517821.jpg'), + ('089529768X', 'Lick The Sugar Habit', 'https://images.isbndb.com/covers/76/86/9780895297686.jpg'), + ('0071407944', 'The Fat Flush Cookbook (Gittleman)', 'https://images.isbndb.com/covers/79/46/9780071407946.jpg'), + ('0446521612', 'Fountain Of Youth: The Anti-Aging Weight-Loss Program', 'https://images.isbndb.com/covers/16/11/9780446521611.jpg'), + ('1562059513', 'Inside Adobe(R) Photoshop(R) 5 (Limited Edition)', 'https://images.isbndb.com/covers/95/14/9781562059514.jpg'), + ('0441116868', 'Conjure Wife', 'https://images.isbndb.com/covers/68/67/9780441116867.jpg'), + ('0425052990', 'The Beverly Hills Diet', 'https://images.isbndb.com/covers/29/90/9780425052990.jpg'), + ('0425062856', 'Floating Dragon', 'https://images.isbndb.com/covers/28/52/9780425062852.jpg'), + ('044921852X', 'Angel Eyes', 'https://images.isbndb.com/covers/85/25/9780449218525.jpg'), + ('0758201931', 'The Night We Met', 'https://images.isbndb.com/covers/19/35/9780758201935.jpg'), + ('0340182563', 'Creative Writing (Teach Yourself)', 'https://images.isbndb.com/covers/25/67/9780340182567.jpg'), + ('0385018681', 'How To Learn Astrology (A Doubleday Dolphin Book)', 'https://images.isbndb.com/covers/86/85/9780385018685.jpg'), + ('0446936383', 'The Tranquilizing Of America', 'https://images.isbndb.com/covers/63/85/9780446936385.jpg'), + ('0460016989', 'ARTHURIAN ROMANCES', 'https://images.isbndb.com/covers/69/88/9780460016988.jpg'), + ('0932870171', 'Rocking The Cradle Lesbian Mothers: A Challenge In Family Living', 'https://images.isbndb.com/covers/01/79/9780932870179.jpg'), + ('0394730526', 'Women Loving: A Journey Toward Becoming An Independent Woman (Bookworks)', 'https://images.isbndb.com/covers/05/23/9780394730523.jpg'), + ('0133143023', 'Female Sexual Slavery', 'https://images.isbndb.com/covers/30/27/9780133143027.jpg'), + ('0671795988', 'Stop The Insanity! Eat, Breathe, Move, Change The Way You Look And Feel--Forever', 'https://images.isbndb.com/covers/59/86/9780671795986.jpg'), + ('0801615194', 'Basic Processes In Adult Developmental Psychology', 'https://images.isbndb.com/covers/51/91/9780801615191.jpg'), + ('0139634479', 'The Word Processing Handbook', 'https://images.isbndb.com/covers/44/75/9780139634475.jpg'), + ('0679504885', 'Preparing For Parenthood: Understanding Your Feelings About Pregnancy, Childbirth, And Your Baby', 'https://images.isbndb.com/covers/48/87/9780679504887.jpg'), + ('0882293613', 'Johnny Deadline, Reporter: The Best Of Bob Greene', 'https://images.isbndb.com/covers/36/15/9780882293615.jpg'), + ('0030632366', 'Outrageous Acts And Everyday Rebellions', 'https://images.isbndb.com/covers/23/65/9780030632365.jpg'), + ('0882840185', 'Herstory: A Woman''s View Of American History', 'https://images.isbndb.com/covers/01/85/9780882840185.jpg'), + ('0897890272', 'Silent Knife: Cesarean Prevention And Vaginal Birth After Cesarean (VBAC)', 'https://images.isbndb.com/covers/02/74/9780897890274.jpg'), + ('0898620406', 'Ethnicity And Family Therapy (Guilford Family Therapy Series, The) (The Guilford Family Therapy Series)', 'https://images.isbndb.com/covers/04/05/9780898620405.jpg'), + ('0030589533', 'Conduct Of Social Research', 'https://images.isbndb.com/covers/95/39/9780030589539.jpg'), + ('0151712824', 'Passenger', 'https://images.isbndb.com/covers/28/23/9780151712823.jpg'), + ('0312191952', 'Demeter Flower', 'https://images.isbndb.com/covers/19/55/9780312191955.jpg'), + ('0312019009', 'The Mayor Of Castro Street: The Life And Times Of Harvey Milk (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/90/06/9780312019006.jpg'), + ('031209261X', 'Conduct Unbecoming: Lesbians And Gays In The U.S. Military, Vietnam To The Persian Gulf', 'https://images.isbndb.com/covers/26/10/9780312092610.jpg'), + ('0446518220', 'Out In All Directions: Almanac Of Gay And Lesbian America', 'https://images.isbndb.com/covers/82/22/9780446518222.jpg'), + ('0786861657', 'The Rise And Fall Of Gay Culture', 'https://images.isbndb.com/covers/16/51/9780786861651.jpg'), + ('0684803976', 'Penny Saved', 'https://images.isbndb.com/covers/39/75/9780684803975.jpg'), + ('0131953621', 'Cultural Awareness In The Human Services: A Multi-cultural Approach (Prentice-Hall Series In Social Work Practice)', 'https://images.isbndb.com/covers/36/28/9780131953628.jpg'), + ('0449903001', 'Remaking Motherhood: How Working Mothers Are Shaping Our Children''s Future', 'https://images.isbndb.com/covers/30/01/9780449903001.jpg'), + ('0895942402', 'Going Out Of Our Minds: The Metaphysics Of Liberation', 'https://images.isbndb.com/covers/24/01/9780895942401.jpg'), + ('0553052691', 'Coming Of The King (Spectra)', 'https://images.isbndb.com/covers/26/95/9780553052695.jpg'), + ('0671669583', 'COP HUNTER', 'https://images.isbndb.com/covers/95/84/9780671669584.jpg'), + ('0534129064', 'Grassroots Resistance: Social Movements In Twentieth Century America', 'https://images.isbndb.com/covers/90/64/9780534129064.jpg'), + ('1559723009', 'Martina: The Lives And Times Of Martina Navratilova', 'https://images.isbndb.com/covers/30/08/9781559723008.jpg'), + ('1556111401', 'Intimate Evil', 'https://images.isbndb.com/covers/14/02/9781556111402.jpg'), + ('0441515444', 'The Magic Goes Away', 'https://images.isbndb.com/covers/54/48/9780441515448.jpg'), + ('0553341014', 'Beloved Exile', 'https://images.isbndb.com/covers/10/10/9780553341010.jpg'), + ('0671808427', 'Psycho Squad', 'https://images.isbndb.com/covers/84/26/9780671808426.jpg'), + ('0812583361', 'God Game', 'https://images.isbndb.com/covers/33/66/9780812583366.jpg'), + ('0671523627', 'Medical Center Murders (A Whodunit Myster #2)', 'https://images.isbndb.com/covers/36/26/9780671523626.jpg'), + ('0812880145', 'The Diane Game', 'https://images.isbndb.com/covers/01/44/9780812880144.jpg'), + ('0449237842', 'At Wits End', 'https://images.isbndb.com/covers/78/47/9780449237847.jpg'), + ('0440980429', 'Some Kind Of Wonderful', 'https://images.isbndb.com/covers/04/21/9780440980421.jpg'), + ('0449243842', 'Casebook Of The Black Widowers', 'https://images.isbndb.com/covers/38/48/9780449243848.jpg'), + ('0804101787', 'Midwife''s Story', 'https://images.isbndb.com/covers/17/83/9780804101783.jpg'), + ('0441791131', 'Survey Ship', 'https://images.isbndb.com/covers/11/32/9780441791132.jpg'), + ('0931580366', 'Hypericum (St. John''s Wort) And Depression', 'https://images.isbndb.com/covers/03/69/9780931580369.jpg'), + ('0385054882', 'Future Kin; Eight Science Fiction Stories', 'https://images.isbndb.com/covers/48/81/9780385054881.jpg'), + ('0446360430', 'Catwoman', 'https://images.isbndb.com/covers/04/32/9780446360432.jpg'), + ('0312855486', 'Elvenblood: An Epic High Fantasy (The Halfblood Chronicles)', 'https://images.isbndb.com/covers/54/82/9780312855482.jpg'), + ('0930436024', 'The Wanderground: Stories Of The Hill Women', 'https://images.isbndb.com/covers/60/25/9780930436025.jpg'), + ('0840764049', 'Worlds Near And Far: Nine Stories Of Science Fiction And Fantasy', 'https://images.isbndb.com/covers/40/41/9780840764041.jpg'), + ('0671896776', 'Crossover (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/67/75/9780671896775.jpg'), + ('0345272463', 'Dinosaur Planet Survivors.', 'https://images.isbndb.com/covers/24/61/9780345272461.jpg'), + ('0345257448', 'Restoree', 'https://images.isbndb.com/covers/74/44/9780345257444.jpg'), + ('0441735762', 'The Rowan', 'https://images.isbndb.com/covers/57/61/9780441735761.jpg'), + ('0345273575', 'To Ride Pegasus', 'https://images.isbndb.com/covers/35/74/9780345273574.jpg'), + ('0345256662', 'Get Off The Unicorn', 'https://images.isbndb.com/covers/66/69/9780345256669.jpg'), + ('0671698702', 'Lunar Activity', 'https://images.isbndb.com/covers/87/06/9780671698706.jpg'), + ('0671464795', 'Web Of The Romulans (Star Trek, No 10)', 'https://images.isbndb.com/covers/47/90/9780671464790.jpg'), + ('0345272455', 'Dinosaur Planet #1', 'https://images.isbndb.com/covers/24/54/9780345272454.jpg'), + ('044173684X', 'Runes', 'https://images.isbndb.com/covers/68/43/9780441736843.jpg'), + ('0671721178', 'Liar''S Oath', 'https://images.isbndb.com/covers/11/76/9780671721176.jpg'), + ('0345379144', 'Zombies Of The Gene Pool', 'https://images.isbndb.com/covers/91/46/9780345379146.jpg'), + ('0345277406', 'Convergent Series', 'https://images.isbndb.com/covers/74/04/9780345277404.jpg'), + ('0441167128', 'The Barsoom Project (Dream Park Series, Book 2)', 'https://images.isbndb.com/covers/71/28/9780441167128.jpg'), + ('0671495003', 'Star Trek III: The Search For Spock (Star Trek #17)', 'https://images.isbndb.com/covers/50/08/9780671495008.jpg'), + ('0425056023', 'Dancers Of Arun', 'https://images.isbndb.com/covers/60/28/9780425056028.jpg'), + ('0671833987', 'Prometheus Design (Star Trek #5)', 'https://images.isbndb.com/covers/39/85/9780671833985.jpg'), + ('0553113925', 'Star Trek The New Voyages #2', 'https://images.isbndb.com/covers/39/21/9780553113921.jpg'), + ('034528643X', 'Alchemy And Academe', 'https://images.isbndb.com/covers/64/37/9780345286437.jpg'), + ('0425055272', 'Watchtower', 'https://images.isbndb.com/covers/52/74/9780425055274.jpg'), + ('0425047253', 'Northern Girl', 'https://images.isbndb.com/covers/72/55/9780425047255.jpg'), + ('0671833995', 'Triangle (Star Trek, Book 9)', 'https://images.isbndb.com/covers/39/92/9780671833992.jpg'), + ('0671836927', 'The Entropy Effect (Star Trek, No 2)', 'https://images.isbndb.com/covers/69/24/9780671836924.jpg'), + ('0671625810', 'Star Trek Enterprise: The First Adventure', 'https://images.isbndb.com/covers/58/18/9780671625818.jpg'), + ('0671635743', 'The IDIC Epidemic (Star Trek, Book 38)', 'https://images.isbndb.com/covers/57/49/9780671635749.jpg'), + ('0671547305', 'Uhura''s Song (Star Trek No 21)', 'https://images.isbndb.com/covers/73/01/9780671547301.jpg'), + ('0441889697', 'Wildraith''s Last Battle', 'https://images.isbndb.com/covers/96/93/9780441889693.jpg'), + ('0425055914', 'Frostflower And Windbourne', 'https://images.isbndb.com/covers/59/15/9780425055915.jpg'), + ('0425045404', 'Frostflower And Thorn', 'https://images.isbndb.com/covers/54/04/9780425045404.jpg'), + ('0345275497', 'Flight Of The Horse', 'https://images.isbndb.com/covers/54/93/9780345275493.jpg'), + ('0425030520', 'Unpleasant Prof. J. Hoag', 'https://images.isbndb.com/covers/05/23/9780425030523.jpg'), + ('0345260724', 'SPACE CADET', 'https://images.isbndb.com/covers/07/27/9780345260727.jpg'), + ('0671806769', 'Tales Of Power', 'https://images.isbndb.com/covers/67/67/9780671806767.jpg'), + ('0523419562', 'Every Secret Thing', 'https://images.isbndb.com/covers/95/65/9780523419565.jpg'), + ('0425050424', 'Muggable Mary', 'https://images.isbndb.com/covers/04/22/9780425050422.jpg'), + ('0425037967', 'Once And Future King', 'https://images.isbndb.com/covers/79/66/9780425037966.jpg'), + ('0671442260', 'The Eagle''s Gift', 'https://images.isbndb.com/covers/22/62/9780671442262.jpg'), + ('0671549952', 'The Second Ring Of Power', 'https://images.isbndb.com/covers/99/54/9780671549954.jpg'), + ('0451171845', 'Precious Victims (Penguin True Crime)', 'https://images.isbndb.com/covers/18/49/9780451171849.jpg'), + ('0312913435', 'Mother On Trial: The Mysterious Death Of An Outback Baby', 'https://images.isbndb.com/covers/34/34/9780312913434.jpg'), + ('0553236679', 'Nurse''s Story, The', 'https://images.isbndb.com/covers/66/75/9780553236675.jpg'), + ('0425050343', 'The Making Of A Woman Surgeon', 'https://images.isbndb.com/covers/03/47/9780425050347.jpg'), + ('0061030643', 'The Associate', 'https://images.isbndb.com/covers/06/42/9780061030642.jpg'), + ('0886779200', 'The Family: Special Effects, Book 1 (Family, Bk 1)', 'https://images.isbndb.com/covers/92/07/9780886779207.jpg'), + ('0515130125', 'Blackout', 'https://images.isbndb.com/covers/01/26/9780515130126.jpg'), + ('0345291158', 'The Image', 'https://images.isbndb.com/covers/11/58/9780345291158.jpg'), + ('0312974728', 'The Trophy Wife', 'https://images.isbndb.com/covers/47/25/9780312974725.jpg'), + ('0345298713', 'Forbidden Sanctuary', 'https://images.isbndb.com/covers/87/13/9780345298713.jpg'), + ('0345308476', 'The Girl From The Emeraline Island', 'https://images.isbndb.com/covers/84/74/9780345308474.jpg'), + ('0441370594', 'Infinity Concerto', 'https://images.isbndb.com/covers/05/97/9780441370597.jpg'), + ('0671473905', 'Corona (Star Trek # 15)', 'https://images.isbndb.com/covers/39/07/9780671473907.jpg'), + ('0451115481', 'Sleeping Beauty', 'https://images.isbndb.com/covers/54/85/9780451115485.jpg'), + ('0446327085', 'Happy Are The Clean Of Heart: A Father Blackie Ryan Story', 'https://images.isbndb.com/covers/70/84/9780446327084.jpg'), + ('0446349461', 'Happy Are Those Who Thirst For Justice (A Father Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/94/68/9780446349468.jpg'), + ('0446346829', 'Patience Of A Saint', 'https://images.isbndb.com/covers/68/25/9780446346825.jpg'), + ('0440204925', 'The Old Silent', 'https://images.isbndb.com/covers/49/23/9780440204923.jpg'), + ('0440145465', 'King Rat', 'https://images.isbndb.com/covers/54/62/9780440145462.jpg'), + ('0671797050', 'The First Wives Club', 'https://images.isbndb.com/covers/70/58/9780671797058.jpg'), + ('0553290797', 'The Black Trillium', 'https://images.isbndb.com/covers/07/90/9780553290790.jpg'), + ('0671653601', 'ANGELS IN HELL', 'https://images.isbndb.com/covers/36/06/9780671653606.jpg'), + ('0671721224', 'Summoned To Tourney', 'https://images.isbndb.com/covers/12/20/9780671721220.jpg'), + ('0425033260', 'Bionic Woman : Extracurricular Activities', 'https://images.isbndb.com/covers/32/65/9780425033265.jpg'), + ('088950900X', 'Seeds Of Change (Laser #00)', 'https://images.isbndb.com/covers/90/09/9780889509009.jpg'), + ('067155915X', 'Returning Creation (High Couch Of Silistra)', 'https://images.isbndb.com/covers/91/51/9780671559151.jpg'), + ('0441227449', 'Famine', 'https://images.isbndb.com/covers/74/40/9780441227440.jpg'), + ('087216683X', 'Rhea', 'https://images.isbndb.com/covers/68/37/9780872166837.jpg'), + ('0872168026', 'The Desecration Of Susan Browning', 'https://images.isbndb.com/covers/80/22/9780872168022.jpg'), + ('0345397371', 'Witch', 'https://images.isbndb.com/covers/73/79/9780345397379.jpg'), + ('0671531360', 'SUPERLUMINAL', 'https://images.isbndb.com/covers/13/62/9780671531362.jpg'), + ('0425084574', 'Moon Flash', 'https://images.isbndb.com/covers/45/71/9780425084571.jpg'), + ('0879977906', 'Red As Blood Or Tales From The Sisters Grimmer', 'https://images.isbndb.com/covers/79/00/9780879977900.jpg'), + ('0553204769', 'The Unborn', 'https://images.isbndb.com/covers/47/66/9780553204766.jpg'), + ('0449232085', 'Woman On Edge Of Time', 'https://images.isbndb.com/covers/20/88/9780449232088.jpg'), + ('0553246089', 'A Mother''s Trial', 'https://images.isbndb.com/covers/60/87/9780553246087.jpg'), + ('0440948754', 'Little Demonstration Of Affection', 'https://images.isbndb.com/covers/87/59/9780440948759.jpg'), + ('0425054578', 'Bless This House', 'https://images.isbndb.com/covers/45/74/9780425054574.jpg'), + ('0449236714', 'Small Changes', 'https://images.isbndb.com/covers/67/10/9780449236710.jpg'), + ('0446957402', 'The Next', 'https://images.isbndb.com/covers/74/03/9780446957403.jpg'), + ('0380482800', 'The Bad Sister', 'https://images.isbndb.com/covers/28/01/9780380482801.jpg'), + ('0449245284', 'Childsong', 'https://images.isbndb.com/covers/52/86/9780449245286.jpg'), + ('0380770210', 'All Fall Down', 'https://images.isbndb.com/covers/02/12/9780380770212.jpg'), + ('0440110602', 'Captain Newman, M.D.', 'https://images.isbndb.com/covers/06/06/9780440110606.jpg'), + ('0440128757', 'The Gift', 'https://images.isbndb.com/covers/87/55/9780440128755.jpg'), + ('0671415018', 'Pin', 'https://images.isbndb.com/covers/50/13/9780671415013.jpg'), + ('0451115589', 'Getting Better', 'https://images.isbndb.com/covers/55/84/9780451115584.jpg'), + ('0553260219', 'The Secrets Of Harry Bright', 'https://images.isbndb.com/covers/02/12/9780553260212.jpg'), + ('0671722026', 'Minerva Wakes', 'https://images.isbndb.com/covers/20/29/9780671722029.jpg'), + ('0812545540', 'Screwtop / The Girl Who Was Plugged In (Tor Double)', 'https://images.isbndb.com/covers/55/48/9780812545548.jpg'), + ('0425046648', 'Psi Hunt', 'https://images.isbndb.com/covers/66/47/9780425046647.jpg'), + ('0345275187', 'Thrice Upon A Time', 'https://images.isbndb.com/covers/51/89/9780345275189.jpg'), + ('0671832867', 'Chekov''s Enterprise: A Personal Journal Of The Making Of Star Trek, The Motion Picture', 'https://images.isbndb.com/covers/28/65/9780671832865.jpg'), + ('0345357620', 'The Steerswoman', 'https://images.isbndb.com/covers/76/25/9780345357625.jpg'), + ('0425040801', 'The Cylon Death Machine (Battlestar Galactica, Book 2)', 'https://images.isbndb.com/covers/08/05/9780425040805.jpg'), + ('0441003435', 'The Adept 1', 'https://images.isbndb.com/covers/34/33/9780441003433.jpg'), + ('0812545508', 'Prince Ombra', 'https://images.isbndb.com/covers/55/00/9780812545500.jpg'), + ('0345361407', 'Greenmagic', 'https://images.isbndb.com/covers/14/00/9780345361400.jpg'), + ('055323577X', 'The Seeding', 'https://images.isbndb.com/covers/57/77/9780553235777.jpg'), + ('0451401905', 'Soul/mate (Onyx)', 'https://images.isbndb.com/covers/19/08/9780451401908.jpg'), + ('0553249533', 'Fatal Dosage', 'https://images.isbndb.com/covers/95/38/9780553249538.jpg'), + ('0449238121', 'High Cost Of Living', 'https://images.isbndb.com/covers/81/27/9780449238127.jpg'), + ('0449201147', 'Dance The Eagle To Sleep', 'https://images.isbndb.com/covers/11/45/9780449201145.jpg'), + ('0425053008', 'Save Johanna', 'https://images.isbndb.com/covers/30/03/9780425053003.jpg'), + ('0345382447', 'The Child Queen: The Tale Of Guinevere And King Arthur', 'https://images.isbndb.com/covers/24/43/9780345382443.jpg'), + ('0441373879', 'Iseult', 'https://images.isbndb.com/covers/38/71/9780441373871.jpg'), + ('0380872625', 'Romancing The Stone', 'https://images.isbndb.com/covers/26/26/9780380872626.jpg'), + ('0446322563', 'August', 'https://images.isbndb.com/covers/25/60/9780446322560.jpg'), + ('082171306X', 'Personal Habits', 'https://images.isbndb.com/covers/30/68/9780821713068.jpg'), + ('0449240886', 'Other', 'https://images.isbndb.com/covers/08/85/9780449240885.jpg'), + ('0553258311', 'Sisters, The', 'https://images.isbndb.com/covers/83/18/9780553258318.jpg'), + ('1559702125', 'Letters To Sartre', 'https://images.isbndb.com/covers/21/26/9781559702126.jpg'), + ('0671622358', 'Who Rules America Now?: A View For The 80''s', 'https://images.isbndb.com/covers/23/50/9780671622350.jpg'), + ('0395247764', 'Woman Doctor', 'https://images.isbndb.com/covers/77/61/9780395247761.jpg'), + ('0393310477', 'The Diversity Of Life', 'https://images.isbndb.com/covers/04/74/9780393310474.jpg'), + ('0345326962', 'Confessions Of A Taoist On Wall St.', 'https://images.isbndb.com/covers/69/66/9780345326966.jpg'), + ('0553227041', 'Sisterhood', 'https://images.isbndb.com/covers/70/48/9780553227048.jpg'), + ('0446794031', 'Sybil.', 'https://images.isbndb.com/covers/40/39/9780446794039.jpg'), + ('0671658875', 'Letters From A Pregnant Coward', 'https://images.isbndb.com/covers/88/78/9780671658878.jpg'), + ('0394499026', 'Harry''s Game', 'https://images.isbndb.com/covers/90/24/9780394499024.jpg'), + ('0399129723', 'The Passion Of Molly T.', 'https://images.isbndb.com/covers/97/28/9780399129728.jpg'), + ('1555610889', 'Your Pregnancy After 30 (Your Pregnancy Series)', 'https://images.isbndb.com/covers/08/83/9781555610883.jpg'), + ('1556522347', 'Your Second Pregnancy: What To Expect This Time', 'https://images.isbndb.com/covers/23/45/9781556522345.jpg'), + ('0812585151', 'Bard: The Odyssey Of The Irish (Celtic World Of Morgan Llywelyn)', 'https://images.isbndb.com/covers/51/55/9780812585155.jpg'), + ('0312970617', 'Circle Of Stones: A Novel', 'https://images.isbndb.com/covers/06/11/9780312970611.jpg'), + ('0425039048', 'The First Deadly Sin', 'https://images.isbndb.com/covers/90/45/9780425039045.jpg'), + ('0671743872', 'In The Flesh', 'https://images.isbndb.com/covers/38/71/9780671743871.jpg'), + ('0684852802', 'The Hypochondriac''s Guide To Life. And Death.', 'https://images.isbndb.com/covers/28/05/9780684852805.jpg'), + ('0671468200', 'MY SWEET AUDRINA', 'https://images.isbndb.com/covers/82/00/9780671468200.jpg'), + ('0671428306', 'Brainchild', 'https://images.isbndb.com/covers/83/03/9780671428303.jpg'), + ('1573220000', 'Remarkable Recovery: What Extraordinary Healings Tell Us About Getting Well And Staying Well', 'https://images.isbndb.com/covers/00/02/9781573220002.jpg'), + ('0449209695', 'Murder In The Supreme Court (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/96/91/9780449209691.jpg'), + ('0449206181', 'Murder At The FBI (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/61/88/9780449206188.jpg'), + ('1551668467', 'The Deepest Water', 'https://images.isbndb.com/covers/84/68/9781551668468.jpg'), + ('0345254112', 'The West End Horror: A Posthumous Memoir Of John H. Watson, M.D.', 'https://images.isbndb.com/covers/41/15/9780345254115.jpg'), + ('0451204891', 'The Hearing', 'https://images.isbndb.com/covers/48/99/9780451204899.jpg'), + ('0743437888', 'Starfleet Year One (Star Trek)', 'https://images.isbndb.com/covers/78/82/9780743437882.jpg'), + ('0345423615', 'The Silver Wolf (Legends Of The Wolves, Book 1)', 'https://images.isbndb.com/covers/36/10/9780345423610.jpg'), + ('038072880X', 'High Crimes', 'https://images.isbndb.com/covers/88/00/9780380728800.jpg'), + ('0688143660', 'Flame War: A Cyberthriller', 'https://images.isbndb.com/covers/36/64/9780688143664.jpg'), + ('0380724987', 'Justice (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/49/87/9780380724987.jpg'), + ('0451205073', 'Last Breath', 'https://images.isbndb.com/covers/50/70/9780451205070.jpg'), + ('0756400619', 'The Serpent''s Shadow (Elemental Masters, Book 1)', 'https://images.isbndb.com/covers/06/13/9780756400613.jpg'), + ('006109918X', 'TALKING GOD MM (Jim Chee Novels)', 'https://images.isbndb.com/covers/91/82/9780061099182.jpg'), + ('0553576623', 'Miracle Cure', 'https://images.isbndb.com/covers/66/27/9780553576627.jpg'), + ('0812575962', 'The Bishop And The Missing L Train (A Father Blackie Ryan Mystery)', 'https://images.isbndb.com/covers/59/65/9780812575965.jpg'), + ('0553289640', 'Body Of Truth', 'https://images.isbndb.com/covers/96/40/9780553289640.jpg'), + ('0553262009', 'CAVERNS OF MORNAS (Escape From The Kingdom Of Frome)', 'https://images.isbndb.com/covers/20/01/9780553262001.jpg'), + ('0553564013', 'The Reality Machine (Choose Your Own Adventure No. 142)', 'https://images.isbndb.com/covers/40/13/9780553564013.jpg'), + ('0590403370', 'Destination: Brain (Explorer, No. 2)', 'https://images.isbndb.com/covers/33/75/9780590403375.jpg'), + ('0553155040', 'AMAZING BEN FRANKLIN (Time Traveler)', 'https://images.isbndb.com/covers/50/44/9780553155044.jpg'), + ('0064408655', 'The Vile Village (A Series Of Unfortunate Events, No. 7)', 'https://images.isbndb.com/covers/86/53/9780064408653.jpg'), + ('0385337116', 'The Rule Of Four', 'https://images.isbndb.com/covers/71/13/9780385337113.jpg'), + ('0373260776', 'Hooky Gets The Wooden Spoon', 'https://images.isbndb.com/covers/07/75/9780373260775.jpg'), + ('0671793225', 'Death Count (Star Trek, Book 62)', 'https://images.isbndb.com/covers/32/27/9780671793227.jpg'), + ('0425136191', 'Blindsight', 'https://images.isbndb.com/covers/61/95/9780425136195.jpg'), + ('044175046X', 'Satellite Night News', 'https://images.isbndb.com/covers/04/67/9780441750467.jpg'), + ('0446348287', 'A Mind To Murder (Adam Dalgliesh Mystery Series #2)', 'https://images.isbndb.com/covers/82/87/9780446348287.jpg'), + ('0373261071', 'Final Cut (Inspector Charlie Salter Mystery)', 'https://images.isbndb.com/covers/10/79/9780373261079.jpg'), + ('0394820304', 'A Tale Of Time City', 'https://images.isbndb.com/covers/03/09/9780394820309.jpg'), + ('0671502948', 'Islands Of Intrigue (Nancy Drew & Hardy Boys Super Mysteries #27)', 'https://images.isbndb.com/covers/29/42/9780671502942.jpg'), + ('0590408747', 'Stage Fright: It''s Role In Acting', 'https://images.isbndb.com/covers/87/45/9780590408745.jpg'), + ('0671746065', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/60/63/9780671746063.jpg'), + ('059033560X', 'Dear Dr. Dynamite', 'https://images.isbndb.com/covers/56/07/9780590335607.jpg'), + ('0449702766', 'Dicey''s Song (The Tillerman Series #2)', 'https://images.isbndb.com/covers/27/65/9780449702765.jpg'), + ('0441800106', 'Tek Lords', 'https://images.isbndb.com/covers/01/00/9780441800100.jpg'), + ('0451119932', 'Fever', 'https://images.isbndb.com/covers/99/33/9780451119933.jpg'), + ('0140291954', 'Perfectly Pure And Good', 'https://images.isbndb.com/covers/19/57/9780140291957.jpg'), + ('0425171973', 'Till Death Do Us Part', 'https://images.isbndb.com/covers/19/74/9780425171974.jpg'), + ('0765340054', 'Shadow Puppets (Ender, Book 7)', 'https://images.isbndb.com/covers/00/54/9780765340054.jpg'), + ('0345275861', 'Agatha', 'https://images.isbndb.com/covers/58/68/9780345275868.jpg'), + ('0451160312', 'I Never Promised You A Rose Garden', 'https://images.isbndb.com/covers/03/17/9780451160317.jpg'), + ('0786013567', 'Privileged Information', 'https://images.isbndb.com/covers/35/62/9780786013562.jpg'), + ('0812509145', 'The Copenhagen Connection', 'https://images.isbndb.com/covers/91/44/9780812509144.jpg'), + ('0812524608', 'Design For Great-Day', 'https://images.isbndb.com/covers/46/04/9780812524604.jpg'), + ('0446603775', 'Dawn (Xenogenesis, Bk. 1)', 'https://images.isbndb.com/covers/37/75/9780446603775.jpg'), + ('0451525299', 'The Rainbow (Signet Classics)', 'https://images.isbndb.com/covers/52/91/9780451525291.jpg'), + ('0064408663', 'The Hostile Hospital (A Series Of Unfortunate Events #8)', 'https://images.isbndb.com/covers/86/60/9780064408660.jpg'), + ('0671034251', 'Blind Spot', 'https://images.isbndb.com/covers/42/52/9780671034252.jpg'), + ('0937295221', 'Samantha''s Surprise (American Girl)', 'https://images.isbndb.com/covers/52/29/9780937295229.jpg'), + ('0937295477', 'Changes For Samantha (American Girl)', 'https://images.isbndb.com/covers/54/72/9780937295472.jpg'), + ('1562471171', 'Molly''s Cookbook: A Peek At Dining In The Past With Meals You Can Cook Today (American Girls Pastimes)', 'https://images.isbndb.com/covers/11/70/9781562471170.jpg'), + ('0141301058', 'The BFG', 'https://images.isbndb.com/covers/10/51/9780141301051.jpg'), + ('0439078059', 'Isabel: Jewel Of Castilla, Spain, 1466 (The Royal Diaries)', 'https://images.isbndb.com/covers/80/54/9780439078054.jpg'), + ('0916773752', 'The Littlest Christmas Tree: A Tale Of Growing And Becoming', 'https://images.isbndb.com/covers/37/55/9780916773755.jpg'), + ('0026890380', 'The Real Mother Goose', 'https://images.isbndb.com/covers/03/80/9780026890380.jpg'), + ('039922405X', 'Christina Katerina And The Time She Quit The Family', 'https://images.isbndb.com/covers/40/58/9780399224058.jpg'), + ('0679830006', 'The Berenstain Bears And The Trouble With Grownups', 'https://images.isbndb.com/covers/00/09/9780679830009.jpg'), + ('0679877061', 'The Berenstain Bears And Too Much Teasing', 'https://images.isbndb.com/covers/70/66/9780679877066.jpg'), + ('0307128385', 'Black Beauty (Golden Look-Look Book)', 'https://images.isbndb.com/covers/83/86/9780307128386.jpg'), + ('0060235330', 'A Pussycat''s Christmas', 'https://images.isbndb.com/covers/53/38/9780060235338.jpg'), + ('0679848053', 'The Berenstain Bears And The Bully', 'https://images.isbndb.com/covers/80/59/9780679848059.jpg'), + ('0395827418', 'Martha Calling', 'https://images.isbndb.com/covers/74/13/9780395827413.jpg'), + ('0679864342', 'The Berenstain Bears And The Green-Eyed Monster', 'https://images.isbndb.com/covers/43/49/9780679864349.jpg'), + ('0394873335', 'The Berenstain Bears Forget Their Manners', 'https://images.isbndb.com/covers/33/36/9780394873336.jpg'), + ('0312180624', 'Buster Midnight''s Cafe', 'https://images.isbndb.com/covers/06/21/9780312180621.jpg'), + ('0451171616', 'Sam Walton: The Inside Story Of America''s Richest Man (Signet)', 'https://images.isbndb.com/covers/16/10/9780451171610.jpg'), + ('0937295906', 'Happy Birthday, Molly!: A Springtime Story (American Girl)', 'https://images.isbndb.com/covers/59/08/9780937295908.jpg'), + ('0937295167', 'Molly Learns A Lesson (American Girls Collection)', 'https://images.isbndb.com/covers/51/68/9780937295168.jpg'), + ('0937295256', 'Molly''s Surprise: A Christmas Story, Book Three (The American Girls Collection)', 'https://images.isbndb.com/covers/52/50/9780937295250.jpg'), + ('0937295434', 'Molly Saves The Day (American Girls Collection)', 'https://images.isbndb.com/covers/54/34/9780937295434.jpg'), + ('0937295043', 'Meet Samantha (American Girl)', 'https://images.isbndb.com/covers/50/45/9780937295045.jpg'), + ('0590298356', 'California Diaries #1: Dawn', 'https://images.isbndb.com/covers/83/53/9780590298353.jpg'), + ('0374109990', 'Before And After', 'https://images.isbndb.com/covers/99/98/9780374109998.jpg'), + ('0345329163', 'Still River', 'https://images.isbndb.com/covers/91/65/9780345329165.jpg'), + ('0399137629', 'McNally''s Luck', 'https://images.isbndb.com/covers/76/24/9780399137624.jpg'), + ('0812568788', 'The Dark Side Of Nowhere', 'https://images.isbndb.com/covers/87/83/9780812568783.jpg'), + ('0307168409', 'Little Critter''s Read It Yourself Storybook', 'https://images.isbndb.com/covers/84/05/9780307168405.jpg'), + ('0723236658', 'Peter Rabbit Tales: Four Complete Stories', 'https://images.isbndb.com/covers/66/58/9780723236658.jpg'), + ('1570824304', 'Disney''s 101 Dalmatians: The Movie Storybook', 'https://images.isbndb.com/covers/43/02/9781570824302.jpg'), + ('0064440168', 'Come Back Amelia Bedelia An I Can Read (An I Can Read Book)', 'https://images.isbndb.com/covers/01/65/9780064440165.jpg'), + ('0156849097', 'The Star Thrower', 'https://images.isbndb.com/covers/90/98/9780156849098.jpg'), + ('0918956730', 'More Evidence That Demands A Verdict: Historical Evidences For The Christian Scriptures', 'https://images.isbndb.com/covers/67/36/9780918956736.jpg'), + ('0918956463', 'Evidence That Demands A Verdict: Historical Evidences For The Christian Faith', 'https://images.isbndb.com/covers/64/60/9780918956460.jpg'), + ('0970760094', 'Mendel''s Child', 'https://images.isbndb.com/covers/00/98/9780970760098.jpg'), + ('0440213029', 'The Lilac Bus', 'https://images.isbndb.com/covers/30/24/9780440213024.jpg'), + ('0025003305', 'Ten Philosophical Mistakes: Basic Errors In Modern Thought - How They Came About, Their Consequences, And How To Avoid Them', 'https://images.isbndb.com/covers/33/09/9780025003309.jpg'), + ('0449219372', 'Murder On The Potomac (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/93/79/9780449219379.jpg'), + ('0440223016', 'A Long Fatal Love Chase', 'https://images.isbndb.com/covers/30/16/9780440223016.jpg'), + ('0786867752', 'When You Come To A Fork In The Road, Take It!: Inspiration And Wisdom From One Of Baseball''s Greatest Heroes', 'https://images.isbndb.com/covers/77/52/9780786867752.jpg'), + ('1565073541', 'The Power Of A Praying Parent', 'https://images.isbndb.com/covers/35/48/9781565073548.jpg'), + ('0688031188', 'The Frugal Gourmet', 'https://images.isbndb.com/covers/11/83/9780688031183.jpg'), + ('1890437557', 'Crested Butte : A Novel', 'https://images.isbndb.com/covers/75/58/9781890437558.jpg'), + ('0671657135', 'The Society Of Mind', 'https://images.isbndb.com/covers/71/30/9780671657130.jpg'), + ('0745926290', 'At Home In Mitford (The Mitford Years, Book 1)', 'https://images.isbndb.com/covers/62/92/9780745926292.jpg'), + ('0451628330', 'Growing Up In The South: An Anthology Of Modern Southern Literature (Mentor)', 'https://images.isbndb.com/covers/83/36/9780451628336.jpg'), + ('014027684X', 'Daughter Of The Queen Of Sheba: A Memoir', 'https://images.isbndb.com/covers/68/48/9780140276848.jpg'), + ('0849942187', 'The Immortal', 'https://images.isbndb.com/covers/21/81/9780849942181.jpg'), + ('0446607339', 'Dead Even', 'https://images.isbndb.com/covers/73/39/9780446607339.jpg'), + ('0898157803', 'Menopaws: The Silent Meow', 'https://images.isbndb.com/covers/78/02/9780898157802.jpg'), + ('0140279288', 'Thirty Nothing', 'https://images.isbndb.com/covers/92/83/9780140279283.jpg'), + ('0805421351', 'Rich Mullins: An Arrow Pointing To Heaven', 'https://images.isbndb.com/covers/13/54/9780805421354.jpg'), + ('0967307902', 'Marley''s Ghost', 'https://images.isbndb.com/covers/79/09/9780967307909.jpg'), + ('0804111154', 'Maybe (Maybe Not) (Maybe Not : Second Thoughts From A Secret Life)', 'https://images.isbndb.com/covers/11/57/9780804111157.jpg'), + ('1556616120', 'The Bluebird And The Sparrow (Women Of The West #10)', 'https://images.isbndb.com/covers/61/29/9781556616129.jpg'), + ('155661456X', 'Too Long A Stranger (Women Of The West, Book 9)', 'https://images.isbndb.com/covers/45/69/9781556614569.jpg'), + ('0871915537', 'Paul Newman (Stars Of Stage And Screen)', 'https://images.isbndb.com/covers/55/35/9780871915535.jpg'), + ('1561797464', 'A Christmas Carol (Great Stories)', 'https://images.isbndb.com/covers/74/62/9781561797462.jpg'), + ('0380787814', 'Blues All Around Me: The Autobiography Of B. B. King', 'https://images.isbndb.com/covers/78/14/9780380787814.jpg'), + ('0736903054', 'Ice Cream As A Clue To The Meaning Of The Universe: A Journey Toward Eternal Delight', 'https://images.isbndb.com/covers/30/59/9780736903059.jpg'), + ('0874869870', 'She Said Yes: The Unlikely Martyrdom Of Cassie Bernall', 'https://images.isbndb.com/covers/98/73/9780874869873.jpg'), + ('0805029486', 'Twice In A Blue Moon: An Inspector Henry Tibbett Mystery (A Henry Holt Mystery)', 'https://images.isbndb.com/covers/94/82/9780805029482.jpg'), + ('0020869002', 'Perelandra (Space Trilogy, Bk. 2)', 'https://images.isbndb.com/covers/90/09/9780020869009.jpg'), + ('0684835525', 'Dog Love', 'https://images.isbndb.com/covers/55/25/9780684835525.jpg'), + ('0939431238', 'Great Day Hikes In & Around Napa Valley, 2d Ed.', 'https://images.isbndb.com/covers/12/36/9780939431236.jpg'), + ('0684852772', 'The Spirit Of St. Louis (Scribner Classic)', 'https://images.isbndb.com/covers/27/75/9780684852775.jpg'), + ('1576738590', 'Stories For A Woman''s Heart: Second Collection: Over One Hundred Treasures To Touch Your Soul (Stories For The Heart)', 'https://images.isbndb.com/covers/85/97/9781576738597.jpg'), + ('0806961740', 'The Little Giant Book Of Optical Illusions', 'https://images.isbndb.com/covers/17/43/9780806961743.jpg'), + ('1565121562', 'The Christmas Letters', 'https://images.isbndb.com/covers/15/60/9781565121560.jpg'), + ('0806624302', 'Prime Time Together-- With Kids: Creative Ideas, Activities, Games, And Projects', 'https://images.isbndb.com/covers/43/03/9780806624303.jpg'), + ('0345319672', 'Ballad Of Typhoid Mary', 'https://images.isbndb.com/covers/96/78/9780345319678.jpg'), + ('0689824351', 'Steal Away Home (Aladdin Historical Fiction)', 'https://images.isbndb.com/covers/43/57/9780689824357.jpg'), + ('0310322413', 'The Mommy Book', 'https://images.isbndb.com/covers/24/12/9780310322412.jpg'), + ('0684823772', 'Joyful Christian', 'https://images.isbndb.com/covers/37/75/9780684823775.jpg'), + ('0375410546', 'When We Were Orphans', 'https://images.isbndb.com/covers/05/43/9780375410543.jpg'), + ('0800786084', 'In His Steps', 'https://images.isbndb.com/covers/60/83/9780800786083.jpg'), + ('0812505123', 'White Fang (Tor Classics)', 'https://images.isbndb.com/covers/51/22/9780812505122.jpg'), + ('1564766047', 'We Are Sisters', 'https://images.isbndb.com/covers/60/45/9781564766045.jpg'), + ('1561794708', 'Sportin'' A ''Tude: What Your Attitude Says When You''re Not Looking', 'https://images.isbndb.com/covers/47/06/9781561794706.jpg'), + ('0786883375', 'Don''t Sweat The Small Stuff With Your Family: Simple Ways To Keep Daily Responsibilities And Household Chaos From Taking Over Your Life (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/33/70/9780786883370.jpg'), + ('0671753819', 'The Last Picture Show', 'https://images.isbndb.com/covers/38/18/9780671753818.jpg'), + ('0140094385', 'Amusing Ourselves To Death: Public Discourse In The Age Of Show Business', 'https://images.isbndb.com/covers/43/81/9780140094381.jpg'), + ('0373245076', 'Tall, Dark And Irresistible (The Baby Bet: McAllister''s Gifts)', 'https://images.isbndb.com/covers/50/79/9780373245079.jpg'), + ('0440766419', 'One Eyed Cat', 'https://images.isbndb.com/covers/64/14/9780440766414.jpg'), + ('0892838981', '101 Ways To Make Money At Home', 'https://images.isbndb.com/covers/89/81/9780892838981.jpg'), + ('0345439252', 'Trial By Ice: The True Story Of Murder And Survival On The 1871 Polaris Expedition', 'https://images.isbndb.com/covers/92/53/9780345439253.jpg'), + ('0671872672', 'Remember Me 3: The Last Story', 'https://images.isbndb.com/covers/26/70/9780671872670.jpg'), + ('0395070902', 'Shane', 'https://images.isbndb.com/covers/09/01/9780395070901.jpg'), + ('0440942500', 'Johnny Tremain', 'https://images.isbndb.com/covers/25/04/9780440942504.jpg'), + ('0061056987', 'I D4: Independence Day', 'https://images.isbndb.com/covers/69/87/9780061056987.jpg'), + ('0684835355', 'Cloud Chamber: A Novel', 'https://images.isbndb.com/covers/53/58/9780684835358.jpg'), + ('0451129040', 'Pat Widmer''s Cat Book', 'https://images.isbndb.com/covers/90/48/9780451129048.jpg'), + ('0310216222', 'Perennial: Meditations For The Seasons Of Life', 'https://images.isbndb.com/covers/62/23/9780310216223.jpg'), + ('0553211587', 'Pudd''nhead Wilson (Bantam Classics)', 'https://images.isbndb.com/covers/15/80/9780553211580.jpg'), + ('0310211883', 'Fresh Wind, Fresh Fire', 'https://images.isbndb.com/covers/18/84/9780310211884.jpg'), + ('1576737284', 'The Final Week Of Jesus', 'https://images.isbndb.com/covers/72/86/9781576737286.jpg'), + ('0060186860', 'The Blessing Of The Animals: True Stories Of Ginny, The Dog Who Rescues Cats', 'https://images.isbndb.com/covers/68/69/9780060186869.jpg'), + ('0843951141', 'Chase The Wind', 'https://images.isbndb.com/covers/11/41/9780843951141.jpg'), + ('0671643126', 'Not A Penny More Not A Penny Less', 'https://images.isbndb.com/covers/31/26/9780671643126.jpg'), + ('1567184855', 'Journey Of Souls: Case Studies Of Life Between Lives', 'https://images.isbndb.com/covers/48/53/9781567184853.jpg'), + ('0812521757', 'Burning Bright', 'https://images.isbndb.com/covers/17/57/9780812521757.jpg'), + ('0786813334', 'The Other Shepards', 'https://images.isbndb.com/covers/33/39/9780786813339.jpg'), + ('0449215296', 'Family - The Ties That Bind...And Gag!', 'https://images.isbndb.com/covers/52/96/9780449215296.jpg'), + ('0440498058', 'A Wrinkle In Time', 'https://images.isbndb.com/covers/80/56/9780440498056.jpg'), + ('0971290903', 'At The Manger: The Stories Of Those Who Were There', 'https://images.isbndb.com/covers/09/07/9780971290907.jpg'), + ('0141311908', 'Charlie & The Chocolate Factory', 'https://images.isbndb.com/covers/19/06/9780141311906.jpg'), + ('0310514916', 'Friendship: Skills For Having A Friend, Being A Friend', 'https://images.isbndb.com/covers/49/16/9780310514916.jpg'), + ('0064401324', 'Stone Fox', 'https://images.isbndb.com/covers/13/26/9780064401326.jpg'), + ('0671702262', 'Are You My Mommy?', 'https://images.isbndb.com/covers/22/67/9780671702267.jpg'), + ('0819310077', 'But No Elephants', 'https://images.isbndb.com/covers/00/71/9780819310071.jpg'), + ('0688025072', 'The Wicked Day', 'https://images.isbndb.com/covers/50/76/9780688025076.jpg'), + ('0140430113', 'Jane Eyre (Penguin Classics)', 'https://images.isbndb.com/covers/01/10/9780140430110.jpg'), + ('0849941768', 'Strengthening Your Grip', 'https://images.isbndb.com/covers/17/64/9780849941764.jpg'), + ('0156329301', 'The Four Loves', 'https://images.isbndb.com/covers/93/09/9780156329309.jpg'), + ('0387986065', 'The Observer''s Sky Atlas: With 50 Star Charts Covering The Entire Sky', 'https://images.isbndb.com/covers/60/67/9780387986067.jpg'), + ('0385066392', 'Peter And Veronica', 'https://images.isbndb.com/covers/63/96/9780385066396.jpg'), + ('0553212060', 'House Of The Seven Gables', 'https://images.isbndb.com/covers/20/68/9780553212068.jpg'), + ('0842345523', 'More Than A Carpenter', 'https://images.isbndb.com/covers/55/21/9780842345521.jpg'), + ('1556614373', 'Where Two Seas Met (Cheney & Shiloh: The Inheritance #1)', 'https://images.isbndb.com/covers/43/78/9781556614378.jpg'), + ('1556616996', 'Driven With The Wind (Cheney Duvall, M.D. Series #8)', 'https://images.isbndb.com/covers/69/90/9781556616990.jpg'), + ('1556616988', 'Island Of The Innocent (Cheney Duvall, M.D. Series #7) (Book 7)', 'https://images.isbndb.com/covers/69/83/9781556616983.jpg'), + ('0871237954', 'When Comes The Spring (Canadian West)', 'https://images.isbndb.com/covers/79/58/9780871237958.jpg'), + ('0380726815', 'Sights Unseen', 'https://images.isbndb.com/covers/68/13/9780380726813.jpg'), + ('0671729896', 'Good Earth', 'https://images.isbndb.com/covers/98/99/9780671729899.jpg'), + ('0064471098', 'The Silver Chair', 'https://images.isbndb.com/covers/10/91/9780064471091.jpg'), + ('1570361975', 'Hoop Dreams', 'https://images.isbndb.com/covers/19/75/9781570361975.jpg'), + ('0226500578', 'A River Runs Through It And Other Stories', 'https://images.isbndb.com/covers/05/77/9780226500577.jpg'), + ('0849910013', 'Flying Closer To The Flame: A Passion For The Holy Spirit', 'https://images.isbndb.com/covers/00/12/9780849910012.jpg'), + ('048626968X', 'White Fang (Dover Thrift Editions)', 'https://images.isbndb.com/covers/96/89/9780486269689.jpg'), + ('0849911672', 'Angels', 'https://images.isbndb.com/covers/16/75/9780849911675.jpg'), + ('0800717147', 'A Book Of Blessings', 'https://images.isbndb.com/covers/71/48/9780800717148.jpg'), + ('0880702753', 'Kids With Character: Preparing Children For A Lifetime Of Choices', 'https://images.isbndb.com/covers/27/51/9780880702751.jpg'), + ('1565073584', 'Fill My Cup, Lord... With The Peace Of Your Presence', 'https://images.isbndb.com/covers/35/86/9781565073586.jpg'), + ('071483839X', 'Portraits', 'https://images.isbndb.com/covers/83/97/9780714838397.jpg'), + ('0345301137', 'HELL''S ANGELS', 'https://images.isbndb.com/covers/11/30/9780345301130.jpg'), + ('1593080549', 'The Strange Case Of Dr. Jekyll And Mr. Hyde And Other Stories (Barnes & Noble Classics Series) (B&N Classics)', 'https://images.isbndb.com/covers/05/49/9781593080549.jpg'), + ('051788206X', 'Almost Vegetarian: A Primer For Cooks Who Are Eating Vegetarian Most Of The Time, Chicken & Fish Some Of The Time, & Altogether Well All Of The Time', 'https://images.isbndb.com/covers/20/61/9780517882061.jpg'), + ('0743442482', 'The Adventures Of Buckaroo Banzai : Across The Eighth Dimension', 'https://images.isbndb.com/covers/24/80/9780743442480.jpg'), + ('0375503897', 'A General Theory Of Love', 'https://images.isbndb.com/covers/38/94/9780375503894.jpg'), + ('0899198929', 'The Best American Essays, 1989', 'https://images.isbndb.com/covers/89/27/9780899198927.jpg'), + ('0671722654', 'Henry V (New Folger Library Shakespeare)', 'https://images.isbndb.com/covers/26/54/9780671722654.jpg'), + ('067084134X', 'Ravelstein - A Novel', 'https://images.isbndb.com/covers/13/49/9780670841349.jpg'), + ('0399525750', 'How We Choose To Be Happy: The 9 Choices Of Extremely Happy People, Their Secrets, Their Stories', 'https://images.isbndb.com/covers/57/59/9780399525759.jpg'), + ('0062554735', 'One More Day: Daily Meditations For People With Chronic Illness (Hazelden Medition Series)', 'https://images.isbndb.com/covers/47/34/9780062554734.jpg'), + ('0452282195', 'The Bluest Eye (Oprah''s Book Club)', 'https://images.isbndb.com/covers/21/93/9780452282193.jpg'), + ('0394742117', 'Out Of Africa & Shadows On The Grass', 'https://images.isbndb.com/covers/21/13/9780394742113.jpg'), + ('0618119809', 'A Tortoise For The Queen Of Tonga: Stories', 'https://images.isbndb.com/covers/98/06/9780618119806.jpg'), + ('0425097269', 'Shadowland', 'https://images.isbndb.com/covers/72/67/9780425097267.jpg'), + ('0060924179', 'The Real Thing: Stories And Sketches', 'https://images.isbndb.com/covers/41/71/9780060924171.jpg'), + ('1583225498', 'Our Media, Not Theirs: The Democratic Struggle Against Corporate Media (Open Media Series)', 'https://images.isbndb.com/covers/54/93/9781583225493.jpg'), + ('0195061675', 'Antigone (Greek Tragedy In New Translations)', 'https://images.isbndb.com/covers/16/73/9780195061673.jpg'), + ('0060929979', 'Inventing The Abbots And Other Stories', 'https://images.isbndb.com/covers/99/78/9780060929978.jpg'), + ('0962197963', 'Portals In A Northern Sky', 'https://images.isbndb.com/covers/79/63/9780962197963.jpg'), + ('1566190932', 'Pride And Prejudice', 'https://images.isbndb.com/covers/09/30/9781566190930.jpg'), + ('0451521250', 'The Tempest (Signet Classic Shakespeare)', 'https://images.isbndb.com/covers/12/55/9780451521255.jpg'), + ('0451521323', 'Othello', 'https://images.isbndb.com/covers/13/23/9780451521323.jpg'), + ('0061054887', 'The Dispossessed', 'https://images.isbndb.com/covers/48/84/9780061054884.jpg'), + ('0486270637', 'Five Great Short Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/30/9780486270630.jpg'), + ('0271007494', 'Who Is Black?: One Nation''s Definition', 'https://images.isbndb.com/covers/74/96/9780271007496.jpg'), + ('0060977205', 'The Transcendent Child: Tales Of Triumph Over The Past', 'https://images.isbndb.com/covers/72/07/9780060977207.jpg'), + ('0394172663', 'Casebook On Waiting For Godot', 'https://images.isbndb.com/covers/26/68/9780394172668.jpg'), + ('0679745424', 'Playing In The Dark: Whiteness And The Literary Imagination', 'https://images.isbndb.com/covers/54/26/9780679745426.jpg'), + ('0915943565', 'Cracking India', 'https://images.isbndb.com/covers/35/62/9780915943562.jpg'), + ('0140120491', 'The Great Indian Novel', 'https://images.isbndb.com/covers/04/93/9780140120493.jpg'), + ('1556151047', 'Mathematics And The Imagination (Tempus)', 'https://images.isbndb.com/covers/10/40/9781556151040.jpg'), + ('0804832560', 'Tale Of Genji (Tuttle Classics Of Japanese Literature)', 'https://images.isbndb.com/covers/25/64/9780804832564.jpg'), + ('1570613028', 'Rare Encounters With Ordinary Birds: Notes From A Northwest Year', 'https://images.isbndb.com/covers/30/29/9781570613029.jpg'), + ('044900483X', 'Children Of God (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/48/38/9780449004838.jpg'), + ('0679422188', 'A Woman''s Worth', 'https://images.isbndb.com/covers/21/81/9780679422181.jpg'), + ('0553206036', 'Feminist Papers', 'https://images.isbndb.com/covers/60/36/9780553206036.jpg'), + ('1582431485', 'Poets On The Peaks: Gary Snyder, Philip Whalen & Jack Kerouac In The Cascades', 'https://images.isbndb.com/covers/14/82/9781582431482.jpg'), + ('0071360638', 'The Quotable Scientist Words Of Wisdom From Charles Darwin, Albert Einstein, Richard Feynman, Galileo, Marie Curie, Rene Descartes, And More', 'https://images.isbndb.com/covers/06/30/9780071360630.jpg'), + ('039597707X', '3 Bowls : Vegetarian Recipes From An American Zen Buddhist Monastery', 'https://images.isbndb.com/covers/70/71/9780395977071.jpg'), + ('0918949165', 'When I Am An Old Woman I Shall Wear Purple', 'https://images.isbndb.com/covers/91/65/9780918949165.jpg'), + ('037540273X', 'Beloved: Gift Edition', 'https://images.isbndb.com/covers/27/39/9780375402739.jpg'), + ('0449227545', 'The Hammer Of Eden', 'https://images.isbndb.com/covers/75/41/9780449227541.jpg'), + ('0425171884', 'Shadow Watch (Tom Clancy''s Power Plays, Book 3)', 'https://images.isbndb.com/covers/18/82/9780425171882.jpg'), + ('0061003638', 'At Bertram''s Hotel', 'https://images.isbndb.com/covers/36/39/9780061003639.jpg'), + ('1561003913', 'Politically Correct Bedtime Stories', 'https://images.isbndb.com/covers/39/14/9781561003914.jpg'), + ('0393314812', 'Ar''n''t I A Woman?: Female Slaves In The Plantation South', 'https://images.isbndb.com/covers/48/16/9780393314816.jpg'), + ('0553279718', 'The Uplift War (The Uplift Saga, Book 3)', 'https://images.isbndb.com/covers/97/19/9780553279719.jpg'), + ('0553269828', 'Sundiver (The Uplift Saga, Book 1)', 'https://images.isbndb.com/covers/98/26/9780553269826.jpg'), + ('0425164829', 'The Magician''s Tale', 'https://images.isbndb.com/covers/48/22/9780425164822.jpg'), + ('0312006926', 'Technique In Fiction/Second Edition: Revised And Updated For A New Generation', 'https://images.isbndb.com/covers/69/21/9780312006921.jpg'), + ('0060830719', 'Great Short Works Of Leo Tolstoy (Perennial Library)', 'https://images.isbndb.com/covers/07/17/9780060830717.jpg'), + ('0553274872', 'Under The Influence: A Guide To The Myths And Realities Of Alcoholism', 'https://images.isbndb.com/covers/48/75/9780553274875.jpg'), + ('0874776953', 'When Someone You Love Has A Mental Illness', 'https://images.isbndb.com/covers/69/59/9780874776959.jpg'), + ('1886039224', 'Prescription Drug Abuse: The Hidden Epidemic : A Guide To Coping And Understanding', 'https://images.isbndb.com/covers/92/23/9781886039223.jpg'), + ('0935908315', 'Intervention: How To Help Someone Who Doesn''t Want Help', 'https://images.isbndb.com/covers/83/12/9780935908312.jpg'), + ('0231121989', 'Salt: Grain Of Life', 'https://images.isbndb.com/covers/19/89/9780231121989.jpg'), + ('0385094787', 'Archy And Mehitabel', 'https://images.isbndb.com/covers/47/88/9780385094788.jpg'), + ('0832903930', 'The McDougall Health-Supporting Cookbook: Volume One', 'https://images.isbndb.com/covers/39/39/9780832903939.jpg'), + ('0553214187', 'My Ántonia (Bantam Classic)', 'https://images.isbndb.com/covers/41/85/9780553214185.jpg'), + ('0312286236', 'Bombay Time: A Novel', 'https://images.isbndb.com/covers/62/31/9780312286231.jpg'), + ('0380726254', 'Serpent''s Tooth: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/62/57/9780380726257.jpg'), + ('0071387218', 'Occupational Outlook Handbook, 2002-2003 Edition', 'https://images.isbndb.com/covers/72/17/9780071387217.jpg'), + ('0062505319', 'The Woman''s Comfort Book: A Self-Nurturing Guide For Restoring Balance In Your Life', 'https://images.isbndb.com/covers/53/16/9780062505316.jpg'), + ('0679872027', 'Fuzzytail Farm (Chunky Flap Books)', 'https://images.isbndb.com/covers/20/23/9780679872023.jpg'), + ('0931580617', 'How To Heal Depression', 'https://images.isbndb.com/covers/06/11/9780931580611.jpg'), + ('0553238000', 'Mistral''s Daughter', 'https://images.isbndb.com/covers/80/06/9780553238006.jpg'), + ('087131794X', 'Dr. Atkins'' New Diet Cookbook', 'https://images.isbndb.com/covers/79/40/9780871317940.jpg'), + ('0786864680', 'The Secrets About Life Every Woman Should Know: Ten Principles For Total Emotional And Spiritual Fulfillment', 'https://images.isbndb.com/covers/46/83/9780786864683.jpg'), + ('1561703184', 'Confidence: Finding It And Living It', 'https://images.isbndb.com/covers/31/80/9781561703180.jpg'), + ('0931580242', 'You Can''t Afford The Luxury Of A Negative Thought (The Life 101 Series)', 'https://images.isbndb.com/covers/02/46/9780931580246.jpg'), + ('0440193567', 'The Von Bulow Affair', 'https://images.isbndb.com/covers/35/62/9780440193562.jpg'), + ('0380706512', 'Patty Hearst Her Story', 'https://images.isbndb.com/covers/65/18/9780380706518.jpg'), + ('0671707248', 'Reversal Of Fortune: Inside The Von Bulow Case', 'https://images.isbndb.com/covers/72/48/9780671707248.jpg'), + ('0895860724', 'Drawing', 'https://images.isbndb.com/covers/07/29/9780895860729.jpg'), + ('0882668870', 'How To Make Raffia Hats, Bags & Baskets', 'https://images.isbndb.com/covers/88/71/9780882668871.jpg'), + ('0609803387', 'Spice World: The Movie: The Official Book Of The Film', 'https://images.isbndb.com/covers/33/87/9780609803387.jpg'), + ('042518403X', 'A Murderous Yarn (Needlecraft Mystery)', 'https://images.isbndb.com/covers/40/35/9780425184035.jpg'), + ('1584855185', 'Cecile: Gates Of Gold (Girls Of Many Lands)', 'https://images.isbndb.com/covers/51/87/9781584855187.jpg'), + ('0451625552', 'Writing For Story (Mentor)', 'https://images.isbndb.com/covers/55/57/9780451625557.jpg'), + ('0786011661', 'Child''s Prey (Pinnacle True Crime)', 'https://images.isbndb.com/covers/16/67/9780786011667.jpg'), + ('0451157087', 'Lullaby And Good Night', 'https://images.isbndb.com/covers/70/89/9780451157089.jpg'), + ('0451405897', 'Lindbergh: The Crime', 'https://images.isbndb.com/covers/58/90/9780451405890.jpg'), + ('0395860032', 'Poems Of Akhmatova: Izbrannye Stikhi', 'https://images.isbndb.com/covers/00/38/9780395860038.jpg'), + ('0689821867', 'Just Ella (Aladdin Fantasy)', 'https://images.isbndb.com/covers/18/68/9780689821868.jpg'), + ('0619016620', 'Programming With Microsoft Visual Basic .Net', 'https://images.isbndb.com/covers/66/23/9780619016623.jpg'), + ('0914881655', 'No-Sew Applique: Holiday Magic', 'https://images.isbndb.com/covers/16/50/9780914881650.jpg'), + ('0877931003', 'Day By Day: The Notre Dame Prayerbook For Students', 'https://images.isbndb.com/covers/10/03/9780877931003.jpg'), + ('0374515360', 'The Complete Stories', 'https://images.isbndb.com/covers/53/62/9780374515362.jpg'), + ('0307617963', 'Meteor Monsters (Masters Of The Universe Super Adventure Books)', 'https://images.isbndb.com/covers/79/65/9780307617965.jpg'), + ('0060193387', 'A History Of The Wife', 'https://images.isbndb.com/covers/33/86/9780060193386.jpg'), + ('067950754X', 'History Of The SS', 'https://images.isbndb.com/covers/75/43/9780679507543.jpg'), + ('0517576988', 'Backlash: The Undeclared War Against Women', 'https://images.isbndb.com/covers/69/84/9780517576984.jpg'), + ('0747545847', 'The Mistress (Bloomsbury Paperbacks)', 'https://images.isbndb.com/covers/58/42/9780747545842.jpg'), + ('0385261764', '11 Edward Street', 'https://images.isbndb.com/covers/17/60/9780385261760.jpg'), + ('0887291058', 'Langenscheidt''s Pocket German Dictionary', 'https://images.isbndb.com/covers/10/50/9780887291050.jpg'), + ('0312157061', 'Twenty Years At Hull-House (Bedford Series In History & Culture)', 'https://images.isbndb.com/covers/70/67/9780312157067.jpg'), + ('0915811642', 'The Laws Of Spirit: Simple, Powerful Truths For Making Life Work', 'https://images.isbndb.com/covers/16/49/9780915811649.jpg'), + ('0393962873', 'The Norton Anthology Of English Literature, Vol. 1', 'https://images.isbndb.com/covers/28/71/9780393962871.jpg'), + ('0553207628', 'History Of Women In America', 'https://images.isbndb.com/covers/76/20/9780553207620.jpg'), + ('0752500260', 'Robert Burns (Illustrated Poets)', 'https://images.isbndb.com/covers/02/63/9780752500263.jpg'), + ('0871318903', 'Resurrection Of The Shroud: New Scientific, Medical, And Archeological Evidence', 'https://images.isbndb.com/covers/89/09/9780871318909.jpg'), + ('0140141510', 'Granta 59: France The Outsider', 'https://images.isbndb.com/covers/15/11/9780140141511.jpg'), + ('014005264X', 'Betrayal Of Innocence: Incest And Its Devastation', 'https://images.isbndb.com/covers/26/40/9780140052640.jpg'), + ('0451628667', 'Jews, God And History: Revised And Updated Edition', 'https://images.isbndb.com/covers/86/64/9780451628664.jpg'), + ('1884910009', 'Turning Life Into Fiction', 'https://images.isbndb.com/covers/00/05/9781884910005.jpg'), + ('0688075665', 'From Cradle To Grave: The Short Lives And Strange Deaths Of Marybeth Tinning''s Nine Children', 'https://images.isbndb.com/covers/56/68/9780688075668.jpg'), + ('0312194390', 'The Autobiography Of Henry VIII: With Notes By His Fool, Will Somers', 'https://images.isbndb.com/covers/43/90/9780312194390.jpg'), + ('0843711299', 'The Times Atlas Of World History', 'https://images.isbndb.com/covers/12/95/9780843711295.jpg'), + ('0451522923', 'David Copperfield (Signet Classics)', 'https://images.isbndb.com/covers/29/24/9780451522924.jpg'), + ('0696013908', 'Better Homes And Gardens Easy Bazaar Crafts', 'https://images.isbndb.com/covers/39/04/9780696013904.jpg'), + ('0696023644', 'Susan Winget''s The Changing Seasons (An American Sampler)', 'https://images.isbndb.com/covers/36/44/9780696023644.jpg'), + ('0800864166', 'The Portable Needlepoint Boutique', 'https://images.isbndb.com/covers/41/63/9780800864163.jpg'), + ('0781805899', 'Beginners Welsh (Beginner''s)', 'https://images.isbndb.com/covers/58/96/9780781805896.jpg'), + ('0201043823', 'Individual In A Social World: Essays And Experiments (Addison-Wesley Series In Social Psychology)', 'https://images.isbndb.com/covers/38/22/9780201043822.jpg'), + ('0631158189', 'Causal Attribution: From Cognitive Processes To Collective Beliefs', 'https://images.isbndb.com/covers/81/89/9780631158189.jpg'), + ('0205152074', 'Readings In Social Psychology: General, Classic, And Contemporary Selections', 'https://images.isbndb.com/covers/20/70/9780205152070.jpg'), + ('0205126987', 'Readings In Social Psychology: General, Classic And Contemporary Selections', 'https://images.isbndb.com/covers/69/89/9780205126989.jpg'), + ('0425171493', 'Framed In Lace (Needlecraft Mystery)', 'https://images.isbndb.com/covers/14/93/9780425171493.jpg'), + ('157224223X', 'The Anxiety & Phobia Workbook', 'https://images.isbndb.com/covers/22/34/9781572242234.jpg'), + ('0449704335', 'Shizuko''s Daughter', 'https://images.isbndb.com/covers/43/32/9780449704332.jpg'), + ('0864426488', 'Lonely Planet Europe On A Shoestring', 'https://images.isbndb.com/covers/64/82/9780864426482.jpg'), + ('0898798140', 'Writing Articles About The World Around You', 'https://images.isbndb.com/covers/81/42/9780898798142.jpg'), + ('0361074662', 'Tales From Bohemia', 'https://images.isbndb.com/covers/46/67/9780361074667.jpg'), + ('0140445587', 'The Koran (Penguin Classics)', 'https://images.isbndb.com/covers/55/89/9780140445589.jpg'), + ('0060830476', 'Giants In The Earth: A Saga Of The Prairie', 'https://images.isbndb.com/covers/04/72/9780060830472.jpg'), + ('0375708111', 'The Elegant Universe: Superstrings, Hidden Dimensions, And The Quest For The Ultimate Theory', 'https://images.isbndb.com/covers/81/14/9780375708114.jpg'), + ('0385477058', 'Hyperspace: A Scientific Odyssey Through Parallel Universes, Time Warps, And The 10th Dimens Ion', 'https://images.isbndb.com/covers/70/55/9780385477055.jpg'), + ('0517589818', 'Atomic Harvest: Hanford And The Lethal Toll Of America''s Nuclear Arsenal', 'https://images.isbndb.com/covers/98/16/9780517589816.jpg'), + ('0201340208', 'Introductory And Intermediate Algebra: A Combined Approach', 'https://images.isbndb.com/covers/02/04/9780201340204.jpg'), + ('0195017854', 'The American Woman: Her Changing Social, Economic, And Political Roles, 1920-1970 (Galaxy Books)', 'https://images.isbndb.com/covers/78/54/9780195017854.jpg'), + ('0892434090', 'Handbook For Today''s Catholic: Beliefs, Practices, Prayers (A Redemptorist Pastoral Publication)', 'https://images.isbndb.com/covers/40/91/9780892434091.jpg'), + ('0425187144', 'Hanging By A Thread', 'https://images.isbndb.com/covers/71/42/9780425187142.jpg'), + ('0151004943', 'Our Fathers: A Novel By The Author Of The Missing', 'https://images.isbndb.com/covers/49/42/9780151004942.jpg'), + ('0306811588', 'The London Monster: A Sanguinary Tale', 'https://images.isbndb.com/covers/15/86/9780306811586.jpg'), + ('0743234979', 'Think Of England: A Novel', 'https://images.isbndb.com/covers/49/79/9780743234979.jpg'), + ('0374106843', 'August 1914 (Avgust Chetyrnadtsatogo)', 'https://images.isbndb.com/covers/68/43/9780374106843.jpg'), + ('0394568354', 'S', 'https://images.isbndb.com/covers/83/55/9780394568355.jpg'), + ('0520063279', 'Veiled Sentiments: Honor And Poetry In A Bedouin Society', 'https://images.isbndb.com/covers/32/73/9780520063273.jpg'), + ('0394529383', 'Memoirs', 'https://images.isbndb.com/covers/93/87/9780394529387.jpg'), + ('0140441077', 'The Prince (Penguin Classics)', 'https://images.isbndb.com/covers/10/79/9780140441079.jpg'), + ('0764801422', 'The Spiritual Exercises Of Saint Ignatius: A New Translation From The Authorized Latin Text (A Triumph Classic)', 'https://images.isbndb.com/covers/14/26/9780764801426.jpg'), + ('0684195208', 'Constantine The Great: The Man And His Times', 'https://images.isbndb.com/covers/52/09/9780684195209.jpg'), + ('0553100793', 'Lenin In Zurich', 'https://images.isbndb.com/covers/07/92/9780553100792.jpg'), + ('0140055312', 'Boat People: An ''Age'' Investigation With Bruce Grant', 'https://images.isbndb.com/covers/53/13/9780140055313.jpg'), + ('0451522397', 'Ox Bow Incident', 'https://images.isbndb.com/covers/23/99/9780451522399.jpg'), + ('0906138213', 'In Conversation With God: Meditations For Each Day Of The Year, Vol. 2: Lent, Holy Week, Eastertide', 'https://images.isbndb.com/covers/82/12/9780906138212.jpg'), + ('3423078006', 'Damals War Es Friedrich', 'https://images.isbndb.com/covers/80/09/9783423078009.jpg'), + ('0895862530', 'Sewing', 'https://images.isbndb.com/covers/25/32/9780895862532.jpg'), + ('0895861682', 'Scrap Fabric Crafts', 'https://images.isbndb.com/covers/16/89/9780895861689.jpg'), + ('1551800713', 'Craft Business (Self-Counsel Business Series)', 'https://images.isbndb.com/covers/07/14/9781551800714.jpg'), + ('0882951017', 'Duchess Of Malfi (Crofts Classics)', 'https://images.isbndb.com/covers/10/10/9780882951010.jpg'), + ('0394752937', 'The Mistress Of Husaby: Kristin Lavransdatter, Vol. 2', 'https://images.isbndb.com/covers/29/38/9780394752938.jpg'), + ('0060653035', 'Lives Of The Popes: The Pontiffs From St. Peter To John Paul II', 'https://images.isbndb.com/covers/30/33/9780060653033.jpg'), + ('0801522315', 'Eleanor Of Aquitaine', 'https://images.isbndb.com/covers/23/14/9780801522314.jpg'), + ('0713990988', 'A History Of Wales', 'https://images.isbndb.com/covers/09/80/9780713990980.jpg'), + ('1568360290', 'The World Of The Shining Prince: Court Life In Ancient Japan (Kodansha Globe)', 'https://images.isbndb.com/covers/02/94/9781568360294.jpg'), + ('0385720254', 'The Unabridged Journals Of Sylvia Plath', 'https://images.isbndb.com/covers/02/50/9780385720250.jpg'), + ('0631133917', 'The Aristocracy In England, 1660-1914', 'https://images.isbndb.com/covers/39/19/9780631133919.jpg'), + ('0688024610', 'The White-Boned Demon: A Biography Of Madame Mao Zedong', 'https://images.isbndb.com/covers/46/11/9780688024611.jpg'), + ('0399123237', 'My House Has Two Doors', 'https://images.isbndb.com/covers/32/38/9780399123238.jpg'), + ('0452006228', 'The Germans (Meridian)', 'https://images.isbndb.com/covers/62/25/9780452006225.jpg'), + ('031210104X', 'The United States In The Twentieth Century: America 1900-1945', 'https://images.isbndb.com/covers/10/46/9780312101046.jpg'), + ('063118449X', 'Mary Tudor: A Life', 'https://images.isbndb.com/covers/44/92/9780631184492.jpg'), + ('0253204232', 'Beyond The Veil, Revised Edition: Male-Female Dynamics In Modern Muslim Society', 'https://images.isbndb.com/covers/42/33/9780253204233.jpg'), + ('0933932669', 'The Sadness Of Christ (Yale University Press Translation)', 'https://images.isbndb.com/covers/26/61/9780933932661.jpg'), + ('0155013459', 'The Human Perspective', 'https://images.isbndb.com/covers/34/52/9780155013452.jpg'), + ('006064205X', 'The Awakened One - The Life And Work Of Bhagwan Shree Rajneesh', 'https://images.isbndb.com/covers/20/51/9780060642051.jpg'), + ('1573225681', 'Living Buddha, Living Christ', 'https://images.isbndb.com/covers/56/87/9781573225687.jpg'), + ('0684856603', 'All Through The Night : A Suspense Story', 'https://images.isbndb.com/covers/66/05/9780684856605.jpg'), + ('0006329527', 'The Stuarts: A Study In English Kingship (British Monarchy Series)', 'https://images.isbndb.com/covers/95/27/9780006329527.jpg'), + ('0520011309', 'Henry VIII (English Monarchs Series)', 'https://images.isbndb.com/covers/13/04/9780520011304.jpg'), + ('0394752996', 'The Bridal Wreath: Kristin Lavransdatter, Vol.1', 'https://images.isbndb.com/covers/29/90/9780394752990.jpg'), + ('0030056284', 'Second Daughter: Growing Up In China 1930-1949', 'https://images.isbndb.com/covers/62/84/9780030056284.jpg'), + ('0312155948', 'Mrs Keppel And Her Daughter', 'https://images.isbndb.com/covers/59/40/9780312155940.jpg'), + ('0895261677', 'The Final Days: The Last, Desperate Abuses Of Power By The Clinton White House', 'https://images.isbndb.com/covers/16/70/9780895261670.jpg'), + ('0449209113', 'In The Beginning', 'https://images.isbndb.com/covers/91/10/9780449209110.jpg'), + ('0743204123', 'Maestro: Greenspan''s Fed And The American Boom', 'https://images.isbndb.com/covers/41/25/9780743204125.jpg'), + ('0061096962', 'Perfect Murder, Perfect Town : The Uncensored Story Of The JonBenet Murder And The Grand Jury''s Search For The Final Truth', 'https://images.isbndb.com/covers/69/69/9780061096969.jpg'), + ('0840795319', 'Woman On Death Row', 'https://images.isbndb.com/covers/53/11/9780840795311.jpg'), + ('1573228834', 'Ethics For The New Millennium', 'https://images.isbndb.com/covers/88/31/9781573228831.jpg'), + ('0553212486', 'House Of Mirth,the', 'https://images.isbndb.com/covers/24/88/9780553212488.jpg'), + ('0440237084', 'Left For Dead: My Journey Home From Everest', 'https://images.isbndb.com/covers/70/82/9780440237082.jpg'), + ('0486266907', 'Ethan Frome (Dover Thrift Editions)', 'https://images.isbndb.com/covers/69/09/9780486266909.jpg'), + ('0800871863', 'Silence', 'https://images.isbndb.com/covers/18/64/9780800871864.jpg'), + ('023399226X', 'Murder By Numbers', 'https://images.isbndb.com/covers/22/66/9780233992266.jpg'), + ('0060812494', 'Native Son: And How Bigger Was Born', 'https://images.isbndb.com/covers/24/92/9780060812492.jpg'), + ('0140044507', 'Eichmann In Jerusalem, A Report On The Banality Of Evil', 'https://images.isbndb.com/covers/45/08/9780140044508.jpg'), + ('1556520794', 'Our Sisters'' London: Feminist Walking Tours', 'https://images.isbndb.com/covers/07/92/9781556520792.jpg'), + ('0394717953', 'America At 1750: A Social Portrait', 'https://images.isbndb.com/covers/79/51/9780394717951.jpg'), + ('1894877233', 'Ghost Stories Of The Sea', 'https://images.isbndb.com/covers/72/37/9781894877237.jpg'), + ('0312118341', 'Jasmine Nights', 'https://images.isbndb.com/covers/83/41/9780312118341.jpg'), + ('0670886955', 'Berlin: The Downfall 1945', 'https://images.isbndb.com/covers/69/51/9780670886951.jpg'), + ('0385491077', 'Bodily Harm', 'https://images.isbndb.com/covers/10/75/9780385491075.jpg'), + ('0316355208', 'Pentimento', 'https://images.isbndb.com/covers/52/09/9780316355209.jpg'), + ('0425167801', 'Crewel World (Needlecraft Mystery)', 'https://images.isbndb.com/covers/78/09/9780425167809.jpg'), + ('0873326903', 'The Politics Of Disillusionment: The Chinese Communist Party Under Deng Xiapong, 1978-1989 (Studies On Contemporary China)', 'https://images.isbndb.com/covers/69/02/9780873326902.jpg'), + ('067975833X', 'Confederates In The Attic: Dispatches From The Unfinished Civil War', 'https://images.isbndb.com/covers/83/34/9780679758334.jpg'), + ('0786889624', 'The Hearse You Came In On (Hitchcock Sewell Mysteries)', 'https://images.isbndb.com/covers/96/24/9780786889624.jpg'), + ('0446343455', 'Tourist Season', 'https://images.isbndb.com/covers/34/59/9780446343459.jpg'), + ('0916410641', 'How Sharp Is Your Pencil?', 'https://images.isbndb.com/covers/06/43/9780916410643.jpg'), + ('0399131256', 'The Eighth Commandment', 'https://images.isbndb.com/covers/12/57/9780399131257.jpg'), + ('0671454056', 'River Lady', 'https://images.isbndb.com/covers/40/50/9780671454050.jpg'), + ('0553239813', 'Little Drummer Girl', 'https://images.isbndb.com/covers/98/12/9780553239812.jpg'), + ('0425045048', 'The Jesus Incident', 'https://images.isbndb.com/covers/50/46/9780425045046.jpg'), + ('0553234617', 'A Wizard Of Earthsea (The Earthsea Cycle, Book 1)', 'https://images.isbndb.com/covers/46/19/9780553234619.jpg'), + ('0380000547', 'The Science Fiction Hall Of Fame, Volume IIB', 'https://images.isbndb.com/covers/05/48/9780380000548.jpg'), + ('0453010105', 'The Wisdom Of Amish Folk Medicine: The Plain People''s Method On How To Cut Down On Doctor Bills', 'https://images.isbndb.com/covers/01/08/9780453010108.jpg'), + ('0671721755', 'If I Pay Thee Not In Gold', 'https://images.isbndb.com/covers/17/56/9780671721756.jpg'), + ('0345257189', 'The Power That Preserves', 'https://images.isbndb.com/covers/71/85/9780345257185.jpg'), + ('0345257170', 'The Illearth War: The Chronicles Of Thomas Covenant The Unbeliever Book Two', 'https://images.isbndb.com/covers/71/78/9780345257178.jpg'), + ('0345257162', 'Lord Foul''s Bane (The Chronicles Of Thomas Covenant The Unbeliever, Book 1)', 'https://images.isbndb.com/covers/71/61/9780345257161.jpg'), + ('0684825457', 'It Takes A Village: And Other Lessons Children Teach Us', 'https://images.isbndb.com/covers/54/58/9780684825458.jpg'), + ('0345335651', 'Queen Of Sorcery (The Belgariad, Book 2)', 'https://images.isbndb.com/covers/56/54/9780345335654.jpg'), + ('067170561X', 'Contamination (Star Trek: The Next Generation, No. 16)', 'https://images.isbndb.com/covers/56/19/9780671705619.jpg'), + ('0553109405', 'Black Sunday', 'https://images.isbndb.com/covers/94/05/9780553109405.jpg'), + ('0671735160', 'Strike Zone (Star Trek: The Next Generation, Book 5)', 'https://images.isbndb.com/covers/51/66/9780671735166.jpg'), + ('0345355237', 'The Surveillance (Intervention, Book 1)', 'https://images.isbndb.com/covers/52/32/9780345355232.jpg'), + ('0671894226', 'Federation (Star Trek)', 'https://images.isbndb.com/covers/42/21/9780671894221.jpg'), + ('0140296441', 'Sherlock Holmes And The Red Demon (Sherlock Holmes Mysteries (Penguin))', 'https://images.isbndb.com/covers/64/40/9780140296440.jpg'), + ('3518393421', 'Wo Ein Vogel Am Schönsten Singt', 'https://images.isbndb.com/covers/34/20/9783518393420.jpg'), + ('344272578X', 'Die Luftgängerin', 'https://images.isbndb.com/covers/57/86/9783442725786.jpg'), + ('3257231652', 'Top Job', 'https://images.isbndb.com/covers/16/56/9783257231656.jpg'), + ('3492220169', 'Die Felder Der Ehre.', 'https://images.isbndb.com/covers/01/63/9783492220163.jpg'), + ('3404123425', 'Weites, Wildes Land', 'https://images.isbndb.com/covers/34/21/9783404123421.jpg'), + ('3404122763', 'Das Fünfte Evangelium: Roman', 'https://images.isbndb.com/covers/27/69/9783404122769.jpg'), + ('3548252192', 'Der Schneefalke', 'https://images.isbndb.com/covers/21/93/9783548252193.jpg'), + ('3499233002', 'In Guten Wie In Schlechten Tagen.', 'https://images.isbndb.com/covers/30/05/9783499233005.jpg'), + ('3746650291', 'Narrenweisheit Oder Tod Und Verklärung Des Jean-Jacques Rousseau.', 'https://images.isbndb.com/covers/02/96/9783746650296.jpg'), + ('3458335684', 'Romane Und Erzählungen. 8 Bände: Die Versuchung Des Heiligen Antonius (insel Taschenbuch)', 'https://images.isbndb.com/covers/56/89/9783458335689.jpg'), + ('3442420970', 'Abgründig.', 'https://images.isbndb.com/covers/09/71/9783442420971.jpg'), + ('3442424747', 'Übermorgen', 'https://images.isbndb.com/covers/47/40/9783442424740.jpg'), + ('3404147596', 'Der Sohn Des Himmels', 'https://images.isbndb.com/covers/75/95/9783404147595.jpg'), + ('325720485X', 'Ediths Tagebuch', 'https://images.isbndb.com/covers/48/58/9783257204858.jpg'), + ('3453150244', 'Das Französische Testament. Roman', 'https://images.isbndb.com/covers/02/49/9783453150249.jpg'), + ('3423202823', 'Die Stürme Des Lebens', 'https://images.isbndb.com/covers/28/24/9783423202824.jpg'), + ('3627000927', 'Holzschnitte Von Frauen', 'https://images.isbndb.com/covers/09/29/9783627000929.jpg'), + ('3596141990', 'Das Geheimnis Der Maske', 'https://images.isbndb.com/covers/19/99/9783596141999.jpg'), + ('354824789X', 'Browns Grabgesang', 'https://images.isbndb.com/covers/78/92/9783548247892.jpg'), + ('349922710X', 'Die Prozedur', 'https://images.isbndb.com/covers/71/03/9783499227103.jpg'), + ('3423130199', 'Ein Job: Krininalroman', 'https://images.isbndb.com/covers/01/96/9783423130196.jpg'), + ('3499228548', 'Sehr Blaue Augen: Mit Einem Neuen Nachwort Der Autorin', 'https://images.isbndb.com/covers/85/44/9783499228544.jpg'), + ('3442728363', 'Die Abbildung', 'https://images.isbndb.com/covers/83/67/9783442728367.jpg'), + ('3596150531', 'Der Unschickliche Antrag.', 'https://images.isbndb.com/covers/05/33/9783596150533.jpg'), + ('0316358568', 'The Blue Lotus (The Adventures Of Tintin)', 'https://images.isbndb.com/covers/85/69/9780316358569.jpg'), + ('0836220676', 'Valley Of The Far Side ®', 'https://images.isbndb.com/covers/06/74/9780836220674.jpg'), + ('0688124887', 'Hexwood', 'https://images.isbndb.com/covers/48/85/9780688124885.jpg'), + ('044100895X', 'Ombria In Shadow', 'https://images.isbndb.com/covers/89/57/9780441008957.jpg'), + ('0441004385', 'Winter Rose', 'https://images.isbndb.com/covers/43/86/9780441004386.jpg'), + ('042507448X', 'Gods Of Riverworld (Riverworld Saga)', 'https://images.isbndb.com/covers/44/80/9780425074480.jpg'), + ('1853260096', 'Hamlet (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/00/94/9781853260094.jpg'), + ('0425132153', 'Good Omens', 'https://images.isbndb.com/covers/21/59/9780425132159.jpg'), + ('0064408086', 'Ascension (Water Trilogy, Book 1)', 'https://images.isbndb.com/covers/80/80/9780064408080.jpg'), + ('0345320115', 'Garfield Sits Around The House (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/01/17/9780345320117.jpg'), + ('0345328175', 'Day Of The Triffids', 'https://images.isbndb.com/covers/81/75/9780345328175.jpg'), + ('0312860684', 'Grimmy: Friends Don''t Let Friends Own Cats!', 'https://images.isbndb.com/covers/06/84/9780312860684.jpg'), + ('0441007961', 'The Chalice (The Sword, The Ring, And The Chalice, Book 3)', 'https://images.isbndb.com/covers/79/67/9780441007967.jpg'), + ('0441007570', 'The Ring (The Sword, The Ring, And The Chalice, Book 2)', 'https://images.isbndb.com/covers/75/78/9780441007578.jpg'), + ('0441007023', 'The Sword (The Sword, The Ring, And The Chalice, Book 1)', 'https://images.isbndb.com/covers/70/28/9780441007028.jpg'), + ('0441009972', 'The Queen''s Gambit', 'https://images.isbndb.com/covers/99/78/9780441009978.jpg'), + ('0345319656', 'The Time Of The Dark (The Darwath Trilogy, Book 1)', 'https://images.isbndb.com/covers/96/54/9780345319654.jpg'), + ('0345335805', 'Garfield Tips The Scales (#8) (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/58/07/9780345335807.jpg'), + ('0345296710', 'The Armies Of Daylight (Darwath, No. 3)', 'https://images.isbndb.com/covers/67/19/9780345296719.jpg'), + ('0345296702', 'The Walls Of Air (The Darwath Trilogy, Book 2)', 'https://images.isbndb.com/covers/67/02/9780345296702.jpg'), + ('1569316961', 'Ceres: Celestial Legend, Vol. 1: Aya', 'https://images.isbndb.com/covers/69/62/9781569316962.jpg'), + ('0394832205', 'Juniper', 'https://images.isbndb.com/covers/22/03/9780394832203.jpg'), + ('0451207246', 'How To Murder A Millionaire (Blackbird Sisters Mysteries, No. 1)', 'https://images.isbndb.com/covers/72/41/9780451207241.jpg'), + ('0823414566', 'My Own Worst Enemy', 'https://images.isbndb.com/covers/45/67/9780823414567.jpg'), + ('0803720947', 'Friends To Die For', 'https://images.isbndb.com/covers/09/47/9780803720947.jpg'), + ('0883659662', 'The Company Of Dogs', 'https://images.isbndb.com/covers/96/63/9780883659663.jpg'), + ('0893753688', 'The Story Of My Life', 'https://images.isbndb.com/covers/36/89/9780893753689.jpg'), + ('0521398266', 'The Pastons And Their England: Studies In An Age Of Transition (Canto Original Series)', 'https://images.isbndb.com/covers/82/68/9780521398268.jpg'), + ('0060936800', 'Girl Anatomy: A Novel', 'https://images.isbndb.com/covers/68/08/9780060936808.jpg'), + ('0060096195', 'The Boy Next Door', 'https://images.isbndb.com/covers/61/99/9780060096199.jpg'), + ('0373250533', 'The Matzo Ball Heiress (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/05/30/9780373250530.jpg'), + ('0375503846', '66 Laps A Novel', 'https://images.isbndb.com/covers/38/49/9780375503849.jpg'), + ('037325041X', 'The Solomon Sisters Wise Up (Red Dress Ink Novels)', 'https://images.isbndb.com/covers/04/17/9780373250417.jpg'), + ('0805064346', 'Cosmos Coyote And William The Nice', 'https://images.isbndb.com/covers/43/46/9780805064346.jpg'), + ('0376026138', 'Starbucks Passion For Coffee', 'https://images.isbndb.com/covers/61/32/9780376026132.jpg'), + ('051788268X', 'The Essential Vegetarian Cookbook: Your Guide To The Best Foods On Earth: What To Eat, Where To Get It, How To Prepare It', 'https://images.isbndb.com/covers/26/89/9780517882689.jpg'), + ('039470780X', 'The Victory Garden Cookbook', 'https://images.isbndb.com/covers/78/08/9780394707808.jpg'), + ('0140388419', 'Guests Of War Trilogy', 'https://images.isbndb.com/covers/84/11/9780140388411.jpg'), + ('1568361815', 'The Smoky Mountain Cage Bird Society: And Other Magical Tales From Everyday Life', 'https://images.isbndb.com/covers/18/19/9781568361819.jpg'), + ('0060509392', 'Mrs. Kimble: A Novel', 'https://images.isbndb.com/covers/93/92/9780060509392.jpg'), + ('0375507124', 'It''s My F---ing Birthday', 'https://images.isbndb.com/covers/71/20/9780375507120.jpg'), + ('0385322135', 'The Voice On The Radio', 'https://images.isbndb.com/covers/21/33/9780385322133.jpg'), + ('0027357813', 'A Long Way From Verona', 'https://images.isbndb.com/covers/78/13/9780027357813.jpg'), + ('0060235284', 'Julie (Julie Of The Wolves)', 'https://images.isbndb.com/covers/52/84/9780060235284.jpg'), + ('0688068677', 'After The Rain', 'https://images.isbndb.com/covers/86/77/9780688068677.jpg'), + ('0679886370', 'Stargirl', 'https://images.isbndb.com/covers/63/72/9780679886372.jpg'), + ('0374336644', 'Joey Pigza Swallowed The Key (Joey Pigza Books)', 'https://images.isbndb.com/covers/66/46/9780374336646.jpg'), + ('0439053870', 'Civil War Ghosts', 'https://images.isbndb.com/covers/38/77/9780439053877.jpg'), + ('0525459685', 'Dancer', 'https://images.isbndb.com/covers/96/82/9780525459682.jpg'), + ('039923389X', 'Getting Near To Baby (Newbery Honor Book)', 'https://images.isbndb.com/covers/38/90/9780399233890.jpg'), + ('0375726632', 'Oldest Living Confederate Widow Tells All: A Novel', 'https://images.isbndb.com/covers/66/37/9780375726637.jpg'), + ('1584790679', 'Your Friendship Means The World To Me (Sandra Magsamen)', 'https://images.isbndb.com/covers/06/79/9781584790679.jpg'), + ('0525946276', 'Sophie And The Rising Sun: A Novel', 'https://images.isbndb.com/covers/62/74/9780525946274.jpg'), + ('0374437165', 'Jack''s Black Book: What Happens When You Flunk An IQ Test? (Jack Henry) (Jack Henry Adventures)', 'https://images.isbndb.com/covers/71/69/9780374437169.jpg'), + ('0312284535', 'The Apprentice: A Novel', 'https://images.isbndb.com/covers/45/34/9780312284534.jpg'), + ('0060544260', 'Stone Garden: A Novel', 'https://images.isbndb.com/covers/42/63/9780060544263.jpg'), + ('1581570007', 'Country Inns And Back Roads Cookbook', 'https://images.isbndb.com/covers/00/07/9781581570007.jpg'), + ('0394555295', 'The Breakfast Book', 'https://images.isbndb.com/covers/52/94/9780394555294.jpg'), + ('0152167919', 'Once Upon A Marigold', 'https://images.isbndb.com/covers/79/12/9780152167912.jpg'), + ('0312046448', 'A Proper Breakfast', 'https://images.isbndb.com/covers/64/46/9780312046446.jpg'), + ('0894800159', 'What To Eat When You''re Expecting', 'https://images.isbndb.com/covers/01/53/9780894800153.jpg'), + ('1400032644', 'The Diary Of An American Au Pair: A Novel', 'https://images.isbndb.com/covers/26/48/9781400032648.jpg'), + ('0385721897', 'Disappearing Ingenue', 'https://images.isbndb.com/covers/18/99/9780385721899.jpg'), + ('0451209028', 'Coffee And Kung Fu', 'https://images.isbndb.com/covers/90/23/9780451209023.jpg'), + ('0373250258', 'Fashionistas (Red Dress Ink S.)', 'https://images.isbndb.com/covers/02/57/9780373250257.jpg'), + ('0517703777', 'Instructions To The Cook ~ A Zen Master''s Lessons In Living A Life That Matters', 'https://images.isbndb.com/covers/37/79/9780517703779.jpg'), + ('1560442956', 'Everyone''s Mandala Coloring Book Vol. 2', 'https://images.isbndb.com/covers/29/50/9781560442950.jpg'), + ('0373250487', 'Rescuing Rose (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/04/86/9780373250486.jpg'), + ('0525942254', 'Damned In Paradise: A Nathan Heller Novel (Nathan Heller Novels)', 'https://images.isbndb.com/covers/22/52/9780525942252.jpg'), + ('0399145362', 'The Attorney', 'https://images.isbndb.com/covers/53/60/9780399145360.jpg'), + ('038071082X', 'The Grass Crown', 'https://images.isbndb.com/covers/08/29/9780380710829.jpg'), + ('0060157992', 'Peachtree Road', 'https://images.isbndb.com/covers/79/99/9780060157999.jpg'), + ('0786710101', 'Resolution: A Novel Of Crime', 'https://images.isbndb.com/covers/01/02/9780786710102.jpg'), + ('0553801414', 'Special Circumstances (Mike Daley, Book 1)', 'https://images.isbndb.com/covers/14/15/9780553801415.jpg'), + ('0670850780', 'The Negative', 'https://images.isbndb.com/covers/07/85/9780670850785.jpg'), + ('0385320175', 'Numbered Account', 'https://images.isbndb.com/covers/01/77/9780385320177.jpg'), + ('0789308894', 'The Art Of Giving: Gift Ideas To Delight The Senses', 'https://images.isbndb.com/covers/88/94/9780789308894.jpg'), + ('0385501005', 'Mr. Commitment', 'https://images.isbndb.com/covers/10/02/9780385501002.jpg'), + ('0060290307', 'Angel On The Square', 'https://images.isbndb.com/covers/03/06/9780060290306.jpg'), + ('059055204X', 'A Little Princess', 'https://images.isbndb.com/covers/20/42/9780590552042.jpg'), + ('0374416842', 'Dance In The Desert', 'https://images.isbndb.com/covers/68/43/9780374416843.jpg'), + ('0881011126', 'Heidi (Gateway Classics)', 'https://images.isbndb.com/covers/11/28/9780881011128.jpg'), + ('0140322051', 'Friedrich (Puffin Books)', 'https://images.isbndb.com/covers/20/57/9780140322057.jpg'), + ('0195154991', 'Your Name Is Renée: Ruth Kapp Hartz''s Story As A Hidden Child In Nazi-Occupied France', 'https://images.isbndb.com/covers/49/93/9780195154993.jpg'), + ('0141308419', 'Witnesses To War', 'https://images.isbndb.com/covers/84/18/9780141308418.jpg'), + ('0805037152', 'We Remember The Holocaust', 'https://images.isbndb.com/covers/71/59/9780805037159.jpg'), + ('0515127485', 'Archangel', 'https://images.isbndb.com/covers/74/85/9780515127485.jpg'), + ('0789458063', 'Early Humans ( DK Eyewitness Books)', 'https://images.isbndb.com/covers/80/63/9780789458063.jpg'), + ('0609610031', 'Step Ball Change: A Novel', 'https://images.isbndb.com/covers/00/39/9780609610039.jpg'), + ('0743436695', 'Second Draft Of My Life : A Novel', 'https://images.isbndb.com/covers/66/94/9780743436694.jpg'), + ('0684856875', 'Ask A Nurse: From Home Remedies To Hospital Care', 'https://images.isbndb.com/covers/68/72/9780684856872.jpg'), + ('043916589X', 'The Beastly Arms', 'https://images.isbndb.com/covers/58/91/9780439165891.jpg'), + ('0689505868', 'Ratha''s Challenge', 'https://images.isbndb.com/covers/58/67/9780689505867.jpg'), + ('0060097469', 'Dancing In My Nuddy-Pants: Even Further Confessions Of Georgia Nicolson', 'https://images.isbndb.com/covers/74/62/9780060097462.jpg'), + ('1400060427', 'Girl Cook: A Novel', 'https://images.isbndb.com/covers/04/29/9781400060429.jpg'), + ('0439482682', 'Cold Tom', 'https://images.isbndb.com/covers/26/84/9780439482684.jpg'), + ('093872116X', 'Kiplinger''s Invest Your Way To Wealth: How Ordinary People Can Accumulate Extraordinary Amounts Of Money', 'https://images.isbndb.com/covers/11/61/9780938721161.jpg'), + ('0316699128', 'Common Cents: A Retiring Six-Term Congressman Reveals How Congress Really Works-And What We Must Do To Fix It', 'https://images.isbndb.com/covers/91/29/9780316699129.jpg'), + ('0761129774', 'Father To Daughter: Life Lessons On Raising A Girl', 'https://images.isbndb.com/covers/97/76/9780761129776.jpg'), + ('0375822739', 'The City Of Ember: The First Book Of Ember (Books Of Ember)', 'https://images.isbndb.com/covers/27/35/9780375822735.jpg'), + ('0684837226', 'Flaming Iguanas: An Illustrated All-Girl Road Novel Thing (Mad Dog Rodriguez Trilogy)', 'https://images.isbndb.com/covers/72/22/9780684837222.jpg'), + ('0688180728', 'Last Chance Saloon: A Novel', 'https://images.isbndb.com/covers/07/20/9780688180720.jpg'), + ('0373250282', 'Engaging Men', 'https://images.isbndb.com/covers/02/88/9780373250288.jpg'), + ('0060084456', 'Chasing Rumi: A Fable About Finding The Heart''s True Desire', 'https://images.isbndb.com/covers/44/55/9780060084455.jpg'), + ('0374404542', 'Aria Of The Sea', 'https://images.isbndb.com/covers/45/43/9780374404543.jpg'), + ('0142003484', 'Three Daughters', 'https://images.isbndb.com/covers/34/80/9780142003480.jpg'), + ('0618250735', 'Better Than Running At Night', 'https://images.isbndb.com/covers/07/38/9780618250738.jpg'), + ('0448190834', 'The Velveteen Rabbit (Reading Railroad)', 'https://images.isbndb.com/covers/08/39/9780448190839.jpg'), + ('0385416679', 'A Southern Belle Primer: Why Princess Margaret Will Never Be A Kappa Kappa Gamma', 'https://images.isbndb.com/covers/66/72/9780385416672.jpg'), + ('0812570626', 'The English Governess And The Siamese Court: The True Story Behind ''The King And I''', 'https://images.isbndb.com/covers/06/25/9780812570625.jpg'), + ('0316070211', 'What Every Girl (except Me) Knows', 'https://images.isbndb.com/covers/02/18/9780316070218.jpg'), + ('0395562333', 'Tacky The Penguin', 'https://images.isbndb.com/covers/23/38/9780395562338.jpg'), + ('0380709163', 'Ramona And Her Father', 'https://images.isbndb.com/covers/91/68/9780380709168.jpg'), + ('0590876120', 'The Littles And Their Amazing New Friend', 'https://images.isbndb.com/covers/61/24/9780590876124.jpg'), + ('0064406822', 'There''s An Owl In The Shower', 'https://images.isbndb.com/covers/68/26/9780064406826.jpg'), + ('0064406326', 'Absolutely Normal Chaos (rpkg)', 'https://images.isbndb.com/covers/63/21/9780064406321.jpg'), + ('0689813481', 'Who Invited Aliens To My Slumber Party (Scaredy Cats)', 'https://images.isbndb.com/covers/34/81/9780689813481.jpg'), + ('0689808585', 'The Day The Ants Got Really Mad (Scaredy Cats)', 'https://images.isbndb.com/covers/85/86/9780689808586.jpg'), + ('0894808605', 'The Bones Book & Skeleton (Hand In Hand With Nature)', 'https://images.isbndb.com/covers/86/09/9780894808609.jpg'), + ('0717218937', 'Chipmunks/Beavers (Getting To Know Nature''s Children Series)', 'https://images.isbndb.com/covers/89/36/9780717218936.jpg'), + ('0769612873', 'Grandpa''s Surprise (Bunny Bunch)', 'https://images.isbndb.com/covers/28/74/9780769612874.jpg'), + ('044040150X', 'Nate The Great Stalks Stupidweed', 'https://images.isbndb.com/covers/15/06/9780440401506.jpg'), + ('0316140074', 'The Hit-Away Kid (Peach Street Mudders Story)', 'https://images.isbndb.com/covers/00/72/9780316140072.jpg'), + ('0399215301', 'Going To The Hospital (Mr. Rogers)', 'https://images.isbndb.com/covers/53/08/9780399215308.jpg'), + ('0874498155', 'Rosie''s Two Left Feet', 'https://images.isbndb.com/covers/81/58/9780874498158.jpg'), + ('0689710550', 'Fireflies (Reading Rainbow)', 'https://images.isbndb.com/covers/05/51/9780689710551.jpg'), + ('0517613441', 'Frog And Dog Find A Treasure', 'https://images.isbndb.com/covers/34/43/9780517613443.jpg'), + ('0517613476', 'Frog And Dog At The Sea', 'https://images.isbndb.com/covers/34/74/9780517613474.jpg'), + ('0785279954', 'Sammy Discovers The Alphabet (Learn-With-Sammy)', 'https://images.isbndb.com/covers/99/52/9780785279952.jpg'), + ('0517703351', 'The Martha Stewart Cookbook: Collected Recipes For Every Day', 'https://images.isbndb.com/covers/33/59/9780517703359.jpg'), + ('0684856220', 'Cupid And Diana: A Novel', 'https://images.isbndb.com/covers/62/23/9780684856223.jpg'), + ('0345435257', 'Angel Fire East (The Word And The Void Trilogy, Book 3)', 'https://images.isbndb.com/covers/52/55/9780345435255.jpg'), + ('0783502370', 'Salads (Williams-Sonoma Kitchen Library)', 'https://images.isbndb.com/covers/23/73/9780783502373.jpg'), + ('0735100004', 'The Fruit Of The Tree', 'https://images.isbndb.com/covers/00/08/9780735100008.jpg'), + ('0679413383', 'The Arabian Nights (Everyman''s Library)', 'https://images.isbndb.com/covers/33/87/9780679413387.jpg'), + ('0964122804', 'Saltwater Adventure In The Florida Keys: An Introduction To Fishing For Kids', 'https://images.isbndb.com/covers/28/02/9780964122802.jpg'), + ('0553213776', 'Kilmeny Of The Orchard (L.M. Montgomery Books)', 'https://images.isbndb.com/covers/37/75/9780553213775.jpg'), + ('0553280503', 'A Tangled Web', 'https://images.isbndb.com/covers/05/00/9780553280500.jpg'), + ('0553280511', 'The Blue Castle', 'https://images.isbndb.com/covers/05/17/9780553280517.jpg'), + ('0553280465', 'Magic For Marigold (L.M. Montgomery Books)', 'https://images.isbndb.com/covers/04/63/9780553280463.jpg'), + ('0553264931', 'Emily''s Quest (Emily Novels)', 'https://images.isbndb.com/covers/49/37/9780553264937.jpg'), + ('0553262149', 'Emily Climbs (Emily Novels)', 'https://images.isbndb.com/covers/21/48/9780553262148.jpg'), + ('055323370X', 'Emily Of New Moon (Emily Novels)', 'https://images.isbndb.com/covers/37/04/9780553233704.jpg'), + ('1565970497', 'All But Love (Kismet Romance)', 'https://images.isbndb.com/covers/04/96/9781565970496.jpg'), + ('0373706421', 'Monday''s Child (Women Who Dare, Book 16) (Harlequin Superromance, No 642)', 'https://images.isbndb.com/covers/64/26/9780373706426.jpg'), + ('0373706448', 'Finding Father : Family Man (Harlequin Superromance No. 644)', 'https://images.isbndb.com/covers/64/40/9780373706440.jpg'), + ('1565970500', 'Midnight Sun', 'https://images.isbndb.com/covers/05/02/9781565970502.jpg'), + ('0316415022', 'Captain Saturday: A Novel', 'https://images.isbndb.com/covers/50/26/9780316415026.jpg'), + ('0061093890', 'Fashionably Late', 'https://images.isbndb.com/covers/38/90/9780061093890.jpg'), + ('078180583X', 'English Royal Cookbook: Favorite Court Recipes (Hippocrene International Cookbook Series)', 'https://images.isbndb.com/covers/58/34/9780781805834.jpg'), + ('0679445390', 'Wake Up And Smell The Coffee!:: Advice, Wisdom, And Uncommon Good Sense', 'https://images.isbndb.com/covers/53/95/9780679445395.jpg'), + ('0553800973', 'Body Of Lies (Eve Duncan)', 'https://images.isbndb.com/covers/09/75/9780553800975.jpg'), + ('0345435796', 'The First Horseman', 'https://images.isbndb.com/covers/57/98/9780345435798.jpg'), + ('0937721778', 'Convenience Food Facts: Help For Planning Quick, Healthy, And Convenient Meals (Wellness & Nutrition Library)', 'https://images.isbndb.com/covers/17/73/9780937721773.jpg'), + ('0805070834', 'Welcome Home Or Someplace Like It', 'https://images.isbndb.com/covers/08/35/9780805070835.jpg'), + ('0385730985', 'The Tears Of The Salamander', 'https://images.isbndb.com/covers/09/83/9780385730983.jpg'), + ('0803728468', 'A Cool Moonlight', 'https://images.isbndb.com/covers/84/62/9780803728462.jpg'), + ('0345450892', 'The Lake Of Dead Languages (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/08/90/9780345450890.jpg'), + ('0373250231', 'Spanish Disco (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/02/33/9780373250233.jpg'), + ('068486441X', 'Eating The Cheshire Cat: A Novel', 'https://images.isbndb.com/covers/44/19/9780684864419.jpg'), + ('0395966051', 'The Story Of A Million Years', 'https://images.isbndb.com/covers/60/51/9780395966051.jpg'), + ('0152167056', 'A Northern Light', 'https://images.isbndb.com/covers/70/59/9780152167059.jpg'), + ('0066213339', 'Who Killed Tiffany Jones?: A Novel', 'https://images.isbndb.com/covers/33/30/9780066213330.jpg'), + ('0689848641', 'Witch-Hunt: Mysteries Of The Salem Witch Trials', 'https://images.isbndb.com/covers/86/43/9780689848643.jpg'), + ('1557093334', 'A Little Maid Of Virginia', 'https://images.isbndb.com/covers/33/32/9781557093332.jpg'), + ('0805047379', 'The Sweetheart Season: A Novel', 'https://images.isbndb.com/covers/73/70/9780805047370.jpg'), + ('1879441845', 'Betty Groff Cookbook', 'https://images.isbndb.com/covers/18/42/9781879441842.jpg'), + ('0767913000', 'Fourplay: A Novel', 'https://images.isbndb.com/covers/30/03/9780767913003.jpg'), + ('051788576X', 'My Little Sister Ate One Hare (Dragonfly Books)', 'https://images.isbndb.com/covers/57/65/9780517885765.jpg'), + ('0698115597', 'The Reason For A Flower (World Of Nature)', 'https://images.isbndb.com/covers/55/90/9780698115590.jpg'), + ('1565124006', 'Boulevard', 'https://images.isbndb.com/covers/40/04/9781565124004.jpg'), + ('0373117515', 'Bride For The Taking (Harlequin Presents)', 'https://images.isbndb.com/covers/75/12/9780373117512.jpg'), + ('0373190255', 'Male Animal (Silhouette Romance)', 'https://images.isbndb.com/covers/02/56/9780373190256.jpg'), + ('0373031424', 'Lovespell (Harlequin Romance)', 'https://images.isbndb.com/covers/14/29/9780373031429.jpg'), + ('0373075944', 'The Devil And Jessie Webster (Silhouette Intimate Moments #594)', 'https://images.isbndb.com/covers/59/42/9780373075942.jpg'), + ('0373810199', 'Body And Soul (Men At Work: Tall, Dark & Smart #7)', 'https://images.isbndb.com/covers/01/92/9780373810192.jpg'), + ('037322138X', 'Carnival (Harlequin Intrigue)', 'https://images.isbndb.com/covers/13/87/9780373221387.jpg'), + ('0671527886', 'Possession', 'https://images.isbndb.com/covers/78/84/9780671527884.jpg'), + ('0440222826', 'The Mercy Rule (Dismas Hardy)', 'https://images.isbndb.com/covers/28/28/9780440222828.jpg'), + ('0446600830', 'Tainted Evidence', 'https://images.isbndb.com/covers/08/35/9780446600835.jpg'), + ('0783502508', 'Soups (Williams-Sonoma Kitchen Library)', 'https://images.isbndb.com/covers/25/02/9780783502502.jpg'), + ('0140265716', 'Memoirs Of An Ex-Prom Queen', 'https://images.isbndb.com/covers/57/12/9780140265712.jpg'), + ('1585421758', 'Callie''s Tally: An Accounting Of Baby''s First Year (Or, What My Daughter Owes Me)', 'https://images.isbndb.com/covers/17/56/9781585421756.jpg'), + ('0807506451', 'Benny Uncovers A Mystery (The Boxcar Children Mysteries #19)', 'https://images.isbndb.com/covers/64/55/9780807506455.jpg'), + ('0590731890', 'Kristy And The Secret Of Susan (Baby-Sitters Club)', 'https://images.isbndb.com/covers/18/98/9780590731898.jpg'), + ('0439050138', 'The Journal Of Scott Pendleton Collins: A World War II Soldier, Normandy, France, 1944 (My Name Is America: A Dear America Book)', 'https://images.isbndb.com/covers/01/35/9780439050135.jpg'), + ('0373250142', 'Dating Without Novocaine (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/01/41/9780373250141.jpg'), + ('0373250150', 'Confessions Of An Ex-Girlfriend', 'https://images.isbndb.com/covers/01/58/9780373250158.jpg'), + ('0345388968', 'How To Make An American Quilt', 'https://images.isbndb.com/covers/89/64/9780345388964.jpg'), + ('0743222261', 'The Runaway Quilt (Elm Creek Quilts Series #4)', 'https://images.isbndb.com/covers/22/66/9780743222266.jpg'), + ('0345453387', 'Dog Handling', 'https://images.isbndb.com/covers/33/89/9780345453389.jpg'), + ('0393315797', 'Capitol Cuisine: Recipes From The Hill: A Bipartisan Cookbook', 'https://images.isbndb.com/covers/57/90/9780393315790.jpg'), + ('051757702X', 'Martha Stewart''s Healthy Quick Cook', 'https://images.isbndb.com/covers/70/28/9780517577028.jpg'), + ('0060277491', 'Violet & Claire', 'https://images.isbndb.com/covers/74/99/9780060277499.jpg'), + ('044022313X', 'Black Light', 'https://images.isbndb.com/covers/31/39/9780440223139.jpg'), + ('0671526723', 'Audrey Hepburn''s Neck', 'https://images.isbndb.com/covers/67/26/9780671526726.jpg'), + ('0373250169', 'L. A. Woman (Red Dress Ink (Numbered Paperback))', 'https://images.isbndb.com/covers/01/65/9780373250165.jpg'), + ('0684857340', 'And The Horse He Rode In On', 'https://images.isbndb.com/covers/73/43/9780684857343.jpg'), + ('0609800256', 'Away For The Weekend (R): Southeast -- Revised And Updated Edition: Great Getaways For Every Season In Alabama, Georgia, North Carolina, South Carol Ina And Tennessee (Away For The Weekend Series)', 'https://images.isbndb.com/covers/02/56/9780609800256.jpg'), + ('0399142606', 'The Magician''s Tale', 'https://images.isbndb.com/covers/26/04/9780399142604.jpg'), + ('0385488440', 'Purple Cane Road', 'https://images.isbndb.com/covers/84/40/9780385488440.jpg'), + ('1886910553', 'Many Stones', 'https://images.isbndb.com/covers/05/53/9781886910553.jpg'), + ('0060513888', 'Important Things That Don''t Matter', 'https://images.isbndb.com/covers/38/87/9780060513887.jpg'), + ('0375706429', 'Otherwise Engaged: A Novel', 'https://images.isbndb.com/covers/64/24/9780375706424.jpg'), + ('0689855583', 'Leprechaun Luck: A Wee Book Of Irish Wisdom', 'https://images.isbndb.com/covers/55/80/9780689855580.jpg'), + ('0743205987', 'Stillwater: A Novel', 'https://images.isbndb.com/covers/59/86/9780743205986.jpg'), + ('0803725167', 'Fair Weather', 'https://images.isbndb.com/covers/51/64/9780803725164.jpg'), + ('0060191058', 'The Bachelor''s Cat: A Love Story', 'https://images.isbndb.com/covers/10/54/9780060191054.jpg'), + ('0060090367', 'Watermelon', 'https://images.isbndb.com/covers/03/64/9780060090364.jpg'), + ('0786863218', 'Don''t Worry, Make Money: Spiritual And Practical Ways To Create Abundance And More Fun In Your Life', 'https://images.isbndb.com/covers/32/11/9780786863211.jpg'), + ('0880014164', 'The Classic Of Tea: Origins & Rituals', 'https://images.isbndb.com/covers/41/68/9780880014168.jpg'), + ('0451183460', '50 Ways To Lower Your Fat And Cholesterol (Medical Book Of Remedies)', 'https://images.isbndb.com/covers/34/60/9780451183460.jpg'), + ('0451823192', 'Medical Book Of Home Remedies For People Over 40', 'https://images.isbndb.com/covers/31/99/9780451823199.jpg'), + ('0451192729', 'Alternative Medicine', 'https://images.isbndb.com/covers/27/21/9780451192721.jpg'), + ('0688173896', 'The Scandalous Summer Of Sissy LeBlanc: A Novel', 'https://images.isbndb.com/covers/38/90/9780688173890.jpg'), + ('0517162695', 'A Different Kind Of Christmas', 'https://images.isbndb.com/covers/26/99/9780517162699.jpg'), + ('0789426099', 'Saying It Out Loud', 'https://images.isbndb.com/covers/60/93/9780789426093.jpg'), + ('0140360042', 'Breaking The Fall (Plus)', 'https://images.isbndb.com/covers/00/42/9780140360042.jpg'), + ('0802788300', 'Jinx', 'https://images.isbndb.com/covers/83/06/9780802788306.jpg'), + ('038532331X', 'Gallows Hill', 'https://images.isbndb.com/covers/33/14/9780385323314.jpg'), + ('0671787209', 'Dreamworld', 'https://images.isbndb.com/covers/72/02/9780671787202.jpg'), + ('0425178234', 'Ladies With Options', 'https://images.isbndb.com/covers/82/32/9780425178232.jpg'), + ('0446531286', 'Blessed Are The Cheesemakers', 'https://images.isbndb.com/covers/12/83/9780446531283.jpg'), + ('0393038548', 'Recipes From The Dump', 'https://images.isbndb.com/covers/85/45/9780393038545.jpg'), + ('1567312497', 'Uppity Women Of Ancient Times', 'https://images.isbndb.com/covers/24/92/9781567312492.jpg'), + ('0316910333', 'Gossip Girl #1: A Novel (Gossip Girl Series)', 'https://images.isbndb.com/covers/03/30/9780316910330.jpg'), + ('0452272734', 'Some Girls', 'https://images.isbndb.com/covers/27/36/9780452272736.jpg'), + ('0934971722', 'The Inner Life Of Objects', 'https://images.isbndb.com/covers/17/20/9780934971720.jpg'), + ('0525946403', 'The Trouble With Catherine', 'https://images.isbndb.com/covers/64/03/9780525946403.jpg'), + ('0758204175', 'I Brake For Bad Boys', 'https://images.isbndb.com/covers/41/72/9780758204172.jpg'), + ('0373250118', 'See Jane Date (Red Dress Ink)', 'https://images.isbndb.com/covers/01/10/9780373250110.jpg'), + ('0375410767', 'The Family Orchard', 'https://images.isbndb.com/covers/07/65/9780375410765.jpg'), + ('0385501722', 'Juno And Juliet', 'https://images.isbndb.com/covers/17/29/9780385501729.jpg'), + ('0767905199', 'Mr. Maybe', 'https://images.isbndb.com/covers/51/90/9780767905190.jpg'), + ('0670879045', 'My Year Of Meats: A Novel', 'https://images.isbndb.com/covers/90/45/9780670879045.jpg'), + ('0385312431', 'The Good Mother', 'https://images.isbndb.com/covers/24/31/9780385312431.jpg'), + ('0385492243', 'An Invisible Sign Of My Own: A Novel', 'https://images.isbndb.com/covers/22/49/9780385492249.jpg'), + ('0786862335', 'Child Of Mine: Writers Talk About The First Year Of Motherhhod', 'https://images.isbndb.com/covers/23/37/9780786862337.jpg'), + ('0380720787', 'My Life As A Whale', 'https://images.isbndb.com/covers/07/81/9780380720781.jpg'), + ('0671737899', 'The Ragman''s Son', 'https://images.isbndb.com/covers/78/94/9780671737894.jpg'), + ('0553251473', 'Iacocca: An Autobiography', 'https://images.isbndb.com/covers/14/70/9780553251470.jpg'), + ('0515086991', 'Living With The Kennedys: The Joan Kennedy Story', 'https://images.isbndb.com/covers/69/97/9780515086997.jpg'), + ('0062517317', 'Friendship Cake: A Novel', 'https://images.isbndb.com/covers/73/19/9780062517319.jpg'), + ('0684811766', 'Making The Most Of Your Money', 'https://images.isbndb.com/covers/17/65/9780684811765.jpg'), + ('1551667932', 'The Devil''s Own', 'https://images.isbndb.com/covers/79/35/9781551667935.jpg'), + ('0345433319', 'Midnight Voices', 'https://images.isbndb.com/covers/33/12/9780345433312.jpg'), + ('0743442628', 'Tickled Pink: A Comic Novel', 'https://images.isbndb.com/covers/26/26/9780743442626.jpg'), + ('0673524299', 'The Little, Brown Reader', 'https://images.isbndb.com/covers/42/94/9780673524294.jpg'), + ('1551668394', 'Wedding Party', 'https://images.isbndb.com/covers/83/90/9781551668390.jpg'), + ('039595777X', 'Love Poems', 'https://images.isbndb.com/covers/77/76/9780395957776.jpg'), + ('0064407446', 'Echo', 'https://images.isbndb.com/covers/74/41/9780064407441.jpg'), + ('0399145079', 'Local Girls', 'https://images.isbndb.com/covers/50/70/9780399145070.jpg'), + ('0152021973', 'An Acquaintance With Darkness', 'https://images.isbndb.com/covers/19/79/9780152021979.jpg'), + ('0312203594', 'Alice''s Tulips: A Novel', 'https://images.isbndb.com/covers/35/97/9780312203597.jpg'), + ('068480302X', 'Exorcising Your Ex: How To Get Rid Of The Demons Of Relationships Past', 'https://images.isbndb.com/covers/30/29/9780684803029.jpg'), + ('0385486812', 'Mirror, Mirror On The Wall: Women Writers Explore Their Favorite Fairy Tales', 'https://images.isbndb.com/covers/68/11/9780385486811.jpg'), + ('0671015648', 'Isabel''s Bed', 'https://images.isbndb.com/covers/56/40/9780671015640.jpg'), + ('0395971179', 'Dare Truth Or Promise', 'https://images.isbndb.com/covers/11/78/9780395971178.jpg'), + ('0743205049', 'Cat''s Meow: A Novel', 'https://images.isbndb.com/covers/50/47/9780743205047.jpg'), + ('0385333757', 'Losing Julia', 'https://images.isbndb.com/covers/37/57/9780385333757.jpg'), + ('1567310362', 'The Healing Foods: The Easy-To-Use, One-Source Guide For Better Health Through Nutrition', 'https://images.isbndb.com/covers/03/68/9781567310368.jpg'), + ('067945778X', 'The Fortunate Pilgrim', 'https://images.isbndb.com/covers/77/87/9780679457787.jpg'), + ('0802137008', 'Pure', 'https://images.isbndb.com/covers/70/05/9780802137005.jpg'), + ('0688147364', '"More More More," Said The Baby (A Caldecott Honor Book)', 'https://images.isbndb.com/covers/73/65/9780688147365.jpg'), + ('0373250215', 'Burning The Map', 'https://images.isbndb.com/covers/02/19/9780373250219.jpg'), + ('0385323638', 'Pink Slip', 'https://images.isbndb.com/covers/36/35/9780385323635.jpg'), + ('1888338032', 'New Millennium Writings: A Journal For The 21st Century', 'https://images.isbndb.com/covers/80/34/9781888338034.jpg'), + ('0517139618', 'Aspen Gold', 'https://images.isbndb.com/covers/96/15/9780517139615.jpg'), + ('0141439564', 'Great Expectations (Penguin Classics)', 'https://images.isbndb.com/covers/95/63/9780141439563.jpg'), + ('0060194146', 'The Catsitters: A Novel', 'https://images.isbndb.com/covers/41/47/9780060194147.jpg'), + ('0306807203', 'Charles Sumner', 'https://images.isbndb.com/covers/72/06/9780306807206.jpg'), + ('0525947116', 'In Full Bloom', 'https://images.isbndb.com/covers/71/10/9780525947110.jpg'), + ('0553381121', 'Feeding Christine: A Novel', 'https://images.isbndb.com/covers/11/22/9780553381122.jpg'), + ('0316320277', 'Anarchy And Elegance: Confessions Of A Journalist At Yale Law School', 'https://images.isbndb.com/covers/02/76/9780316320276.jpg'), + ('0385318790', 'Morrie: In His Own Words', 'https://images.isbndb.com/covers/87/92/9780385318792.jpg'), + ('031227193X', 'Saving Agnes: A Novel', 'https://images.isbndb.com/covers/19/30/9780312271930.jpg'), + ('0451169026', 'What Happened When: A Chronology Of Life & Events In America (Signet)', 'https://images.isbndb.com/covers/90/20/9780451169020.jpg'), + ('0449005577', 'Catching Alice', 'https://images.isbndb.com/covers/55/76/9780449005576.jpg'), + ('0385722435', 'Ella Minnow Pea: A Novel In Letters', 'https://images.isbndb.com/covers/24/38/9780385722438.jpg'), + ('0425135012', 'Dave''s Way', 'https://images.isbndb.com/covers/50/13/9780425135013.jpg'), + ('0826212433', 'The Society Of Friends: Stories', 'https://images.isbndb.com/covers/24/36/9780826212436.jpg'), + ('0609807900', 'Sloppy Firsts: A Jessica Darling Novel', 'https://images.isbndb.com/covers/79/03/9780609807903.jpg'), + ('0786883367', 'Don''t Sweat The Small Stuff At Work', 'https://images.isbndb.com/covers/33/63/9780786883363.jpg'), + ('0890434573', 'The Mortgage Book', 'https://images.isbndb.com/covers/45/74/9780890434574.jpg'), + ('0525246398', 'Real World: 2', 'https://images.isbndb.com/covers/63/98/9780525246398.jpg'), + ('0896933466', 'Great Human Race', 'https://images.isbndb.com/covers/34/60/9780896933460.jpg'), + ('0842350128', 'Parenting Teens', 'https://images.isbndb.com/covers/01/29/9780842350129.jpg'), + ('0871202824', 'Education On The Edge Of Possibility', 'https://images.isbndb.com/covers/28/26/9780871202826.jpg'), + ('0830713573', 'The Travelers Guide To Life At Warp Speed', 'https://images.isbndb.com/covers/35/78/9780830713578.jpg'), + ('0830817220', 'Unlocking The Power Of God''s Word', 'https://images.isbndb.com/covers/72/21/9780830817221.jpg'), + ('1560790512', 'Making It On Your First Job', 'https://images.isbndb.com/covers/05/18/9781560790518.jpg'), + ('0310231612', 'What Ever Happened To Commitment', 'https://images.isbndb.com/covers/16/15/9780310231615.jpg'), + ('0875164358', 'Stop, Think, Start!: Steps To Change Your Head And Change Your Life', 'https://images.isbndb.com/covers/43/59/9780875164359.jpg'), + ('0802726216', 'Hagar (A Biblical Novel)', 'https://images.isbndb.com/covers/62/16/9780802726216.jpg'), + ('1560790555', 'Greetings From High School (Peterson''s H.S. Series)', 'https://images.isbndb.com/covers/05/56/9781560790556.jpg'), + ('0890813302', 'The Emotions Of A Man', 'https://images.isbndb.com/covers/33/00/9780890813300.jpg'), + ('0446520888', 'Mail', 'https://images.isbndb.com/covers/08/81/9780446520881.jpg'), + ('0312023022', 'Tough Stuff', 'https://images.isbndb.com/covers/30/27/9780312023027.jpg'), + ('0689821395', 'A Wolf At The Door And Other Retold Fairy Tales (13 Stories)', 'https://images.isbndb.com/covers/13/94/9780689821394.jpg'), + ('0446394580', '8 Steps To A Healthy Heart: The Complete Guide To Heart Disease Prevention And Recovery From Heart Attack And Bypass Surgery', 'https://images.isbndb.com/covers/45/81/9780446394581.jpg'), + ('0671521101', 'Sahara', 'https://images.isbndb.com/covers/11/03/9780671521103.jpg'), + ('1579540791', 'Bliss: 33 Simple Ways To Awaken Your Spiritual Self', 'https://images.isbndb.com/covers/07/91/9781579540791.jpg'), + ('0935180621', 'Maui''s Hana Highway', 'https://images.isbndb.com/covers/06/26/9780935180626.jpg'), + ('0380690543', 'The Celery Stalks At Midnight', 'https://images.isbndb.com/covers/05/41/9780380690541.jpg'), + ('0971700915', 'Under Fire: An American Story', 'https://images.isbndb.com/covers/09/18/9780971700918.jpg'), + ('0671894404', 'The Final Days', 'https://images.isbndb.com/covers/44/05/9780671894405.jpg'), + ('0345404440', 'Hanging Up', 'https://images.isbndb.com/covers/44/42/9780345404442.jpg'), + ('0446690155', 'Talking To Addison', 'https://images.isbndb.com/covers/01/57/9780446690157.jpg'), + ('0385319037', 'Animal Husbandry', 'https://images.isbndb.com/covers/90/34/9780385319034.jpg'), + ('0373250185', 'Strapless: Australia Or Bust: A Novel', 'https://images.isbndb.com/covers/01/89/9780373250189.jpg'), + ('0140282033', 'Chocolat', 'https://images.isbndb.com/covers/20/30/9780140282030.jpg'), + ('0671867407', 'Who Will Tell The People? : The Betrayal Of American Democracy', 'https://images.isbndb.com/covers/74/09/9780671867409.jpg'), + ('0684835819', 'My Story', 'https://images.isbndb.com/covers/58/15/9780684835815.jpg'), + ('1878448021', 'Worship Of The Common Heart: New And Selected Stories', 'https://images.isbndb.com/covers/80/26/9781878448026.jpg'), + ('0060529733', 'The Long Silence Of Mario Salviati: A Novel', 'https://images.isbndb.com/covers/97/34/9780060529734.jpg'), + ('067088698X', 'Before You Sleep', 'https://images.isbndb.com/covers/69/82/9780670886982.jpg'), + ('0156010887', 'The Blue Bedspread', 'https://images.isbndb.com/covers/08/87/9780156010887.jpg'), + ('0590424939', 'Baby-Sitters Island Adventure (Baby-Sitters Club Super Special, 4)', 'https://images.isbndb.com/covers/49/36/9780590424936.jpg'), + ('0394805720', 'There''s A Boy In The Girls'' Bathroom', 'https://images.isbndb.com/covers/57/26/9780394805726.jpg'), + ('0688152937', 'Thank You, Jackie Robinson', 'https://images.isbndb.com/covers/29/32/9780688152932.jpg'), + ('0590673890', 'Mallory And The Trouble With Twins (Baby-Sitters Club: Collector''s Edition #21)', 'https://images.isbndb.com/covers/38/91/9780590673891.jpg'), + ('0030442818', 'Creek Mary''s Blood: A Novel', 'https://images.isbndb.com/covers/28/10/9780030442810.jpg'), + ('0345320409', 'Rediscovering America''s Values', 'https://images.isbndb.com/covers/04/07/9780345320407.jpg'), + ('0684804433', 'Look Homeward, Angel', 'https://images.isbndb.com/covers/44/39/9780684804439.jpg'), + ('0517075032', 'The Fortune', 'https://images.isbndb.com/covers/50/36/9780517075036.jpg'), + ('1565123190', 'Traveling While Married', 'https://images.isbndb.com/covers/31/99/9781565123199.jpg'), + ('0312270801', 'The Perfect Elizabeth: A Tale Of Two Sisters', 'https://images.isbndb.com/covers/08/03/9780312270803.jpg'), + ('0452282659', 'The Green Suit', 'https://images.isbndb.com/covers/26/50/9780452282650.jpg'), + ('0943233828', 'More Random Acts Of Kindness', 'https://images.isbndb.com/covers/38/26/9780943233826.jpg'), + ('0945448619', 'Diabetes Meal Planning Made Easy : How To Put The Food Pyramid To Work For You', 'https://images.isbndb.com/covers/86/17/9780945448617.jpg'), + ('0761511032', 'Real Food For People With Diabetes', 'https://images.isbndb.com/covers/10/38/9780761511038.jpg'), + ('0375701230', 'A Death In The Family', 'https://images.isbndb.com/covers/12/38/9780375701238.jpg'), + ('0452281679', 'Simply Divine', 'https://images.isbndb.com/covers/16/77/9780452281677.jpg'), + ('0609603809', 'The Ladies Farm', 'https://images.isbndb.com/covers/38/02/9780609603802.jpg'), + ('0767906993', 'Geeks: How Two Lost Boys Rode The Internet Out Of Idaho', 'https://images.isbndb.com/covers/69/99/9780767906999.jpg'), + ('0060293152', 'The Two Princesses Of Bamarre', 'https://images.isbndb.com/covers/31/54/9780060293154.jpg'), + ('0446605336', 'My Sergei: A Love Story', 'https://images.isbndb.com/covers/53/35/9780446605335.jpg'), + ('0684802082', 'JOSLIN GUIDE TO DIABETES : A Program For Managing Your Treatment', 'https://images.isbndb.com/covers/20/84/9780684802084.jpg'), + ('0385312512', 'Midnight Lemonade', 'https://images.isbndb.com/covers/25/16/9780385312516.jpg'), + ('0312961324', 'The Shell Seekers', 'https://images.isbndb.com/covers/13/29/9780312961329.jpg'), + ('0671027646', 'The Christmas Box Collection: The Christmas Box, Timepiece, And The Letter', 'https://images.isbndb.com/covers/76/43/9780671027643.jpg'), + ('068810004X', 'Tag: A Diabetic Food System', 'https://images.isbndb.com/covers/00/49/9780688100049.jpg'), + ('1567312500', 'Uppity Women Of Medieval Times', 'https://images.isbndb.com/covers/25/08/9781567312508.jpg'), + ('0060294698', 'All-American Girl', 'https://images.isbndb.com/covers/46/94/9780060294694.jpg'), + ('0609606441', 'Barefoot Contessa Parties! Ideas And Recipes For Easy Parties That Are Really Fun', 'https://images.isbndb.com/covers/64/45/9780609606445.jpg'), + ('0613072111', 'Pegasus In Flight Pegasus In Flight', 'https://images.isbndb.com/covers/21/13/9780613072113.jpg'), + ('0831771348', 'Week By Week Guide To Your Pregnancy', 'https://images.isbndb.com/covers/13/48/9780831771348.jpg'), + ('0425113884', 'Mortal Fear', 'https://images.isbndb.com/covers/38/82/9780425113882.jpg'), + ('0679752617', 'Dr. Haggard''s Disease', 'https://images.isbndb.com/covers/26/15/9780679752615.jpg'), + ('0679764925', 'Quite A Year For Plums: A Novel', 'https://images.isbndb.com/covers/49/22/9780679764922.jpg'), + ('0679770151', 'Sleeping At The Starlite Motel: And Other Adventures On The Way Back Home', 'https://images.isbndb.com/covers/01/52/9780679770152.jpg'), + ('0962855022', 'Low Fat & Light Four Ingredient Cookbook (Vol. III)', 'https://images.isbndb.com/covers/50/23/9780962855023.jpg'), + ('0066236568', 'Knocked Out By My Nunga-Nungas: Further, Further Confessions Of Georgia Nicolson', 'https://images.isbndb.com/covers/65/68/9780066236568.jpg'), + ('0800717716', 'In My Father''s House: The Years Before "The Hiding Place" (Corrie Ten Boom Library)', 'https://images.isbndb.com/covers/77/11/9780800717711.jpg'), + ('0553213873', 'The Story Of My Life (Bantam Classic)', 'https://images.isbndb.com/covers/38/74/9780553213874.jpg'), + ('0618127038', 'Village Centenary (The Fairacre Series #15)', 'https://images.isbndb.com/covers/70/30/9780618127030.jpg'), + ('0060185287', 'Flight Lessons', 'https://images.isbndb.com/covers/52/82/9780060185282.jpg'), + ('0345356365', 'The Wishsong Of Shannara (The Sword Of Shannara)', 'https://images.isbndb.com/covers/63/69/9780345356369.jpg'), + ('0345336429', 'Family Linen', 'https://images.isbndb.com/covers/64/22/9780345336422.jpg'), + ('0671556835', 'Temptress', 'https://images.isbndb.com/covers/68/39/9780671556839.jpg'), + ('014017821X', 'The Bloody Chamber: And Other Stories', 'https://images.isbndb.com/covers/82/10/9780140178210.jpg'), + ('0425109240', 'The Timothy Files', 'https://images.isbndb.com/covers/92/43/9780425109243.jpg'), + ('0312146957', 'The Old Forest And Other Stories', 'https://images.isbndb.com/covers/69/55/9780312146955.jpg'), + ('1567182186', 'True Hauntings: Spirits With A Purpose', 'https://images.isbndb.com/covers/21/87/9781567182187.jpg'), + ('1558747060', 'Chicken Soup For The Single''s Soul', 'https://images.isbndb.com/covers/70/67/9781558747067.jpg'), + ('1558746463', 'Chicken Soup For The Couple''s Soul', 'https://images.isbndb.com/covers/64/66/9781558746466.jpg'), + ('1558746099', 'Chicken Soup For The Kid''s Soul: 101 Stories Of Courage, Hope And Laughter (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/60/91/9781558746091.jpg'), + ('1558747141', 'Chicken Soup For The Christian Family Soul : Stories To Open The Heart And Rekindle The Spirit (Chicken Soup For The Soul Series)', 'https://images.isbndb.com/covers/71/42/9781558747142.jpg'), + ('0316120863', 'All The Finest Girls: A Novel', 'https://images.isbndb.com/covers/08/69/9780316120869.jpg'), + ('0911379010', 'Out Of The Crisis', 'https://images.isbndb.com/covers/90/13/9780911379013.jpg'), + ('0345382919', 'Devil''s Dream', 'https://images.isbndb.com/covers/29/17/9780345382917.jpg'), + ('1556113854', 'Skylark''s Song: A Novel', 'https://images.isbndb.com/covers/38/57/9781556113857.jpg'), + ('0452266637', 'Beauty''s Release', 'https://images.isbndb.com/covers/66/36/9780452266636.jpg'), + ('155972126X', 'Father''s Day', 'https://images.isbndb.com/covers/12/64/9781559721264.jpg'), + ('006109028X', 'Sharpe''s Devil (Richard Sharpe''s Adventure Series #21)', 'https://images.isbndb.com/covers/02/88/9780061090288.jpg'), + ('0515113719', 'The Simeon Chamber', 'https://images.isbndb.com/covers/37/16/9780515113716.jpg'), + ('0757300243', 'Chicken Soup For The Sister''s Soul: Inspirational Stories About Sisters And Their Changing Relationships (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/02/40/9780757300240.jpg'), + ('1558744029', 'Chicken Soup For The Surviving Soul: 101 Healing Stories About Those Who Have Survived Cancer', 'https://images.isbndb.com/covers/40/28/9781558744028.jpg'), + ('1558743790', 'A 3rd Serving Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/37/93/9781558743793.jpg'), + ('084991437X', 'Jesus Among Other Gods: The Absolute Claims Of The Christian Message', 'https://images.isbndb.com/covers/43/79/9780849914379.jpg'), + ('1558748008', 'Chicken Soup For The Preteen Soul - 101 Stories Of Changes, Choices', 'https://images.isbndb.com/covers/80/02/9781558748002.jpg'), + ('1558745629', 'Chicken Soup For The Country Soul: Stories Served Up Country-Style And Straight From The Heart (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/56/29/9781558745629.jpg'), + ('1558747966', 'Chicken Soup For The Expectant Mother''s Soul', 'https://images.isbndb.com/covers/79/68/9781558747968.jpg'), + ('006447187X', 'Girl Goddess #9: Nine Stories', 'https://images.isbndb.com/covers/18/79/9780064471879.jpg'), + ('0375760628', 'Slave To Fashion: A Novel', 'https://images.isbndb.com/covers/06/24/9780375760624.jpg'), + ('0060287365', 'Hippolyta And The Curse Of The Amazons', 'https://images.isbndb.com/covers/73/68/9780060287368.jpg'), + ('0380727021', 'Come And Go, Molly Snow', 'https://images.isbndb.com/covers/70/25/9780380727025.jpg'), + ('0312187106', 'The Diary Of Mattie Spenser', 'https://images.isbndb.com/covers/71/01/9780312187101.jpg'), + ('0849952476', 'Life Lessons: Book Of John', 'https://images.isbndb.com/covers/24/70/9780849952470.jpg'), + ('0849952492', 'Life Lessons: Book Of Romans', 'https://images.isbndb.com/covers/24/94/9780849952494.jpg'), + ('0789405652', '101 Essential Tips: House Plants', 'https://images.isbndb.com/covers/56/54/9780789405654.jpg'), + ('1580172938', 'Melt & Mold Soap Crafting', 'https://images.isbndb.com/covers/29/36/9781580172936.jpg'), + ('0449910741', 'The Return Of Merlin', 'https://images.isbndb.com/covers/07/40/9780449910740.jpg'), + ('1591450055', 'Circle Of Honor (The Scottish Crown Series, Book 1)', 'https://images.isbndb.com/covers/00/54/9781591450054.jpg'), + ('038072152X', 'Hello Darling, Are You Working?', 'https://images.isbndb.com/covers/15/28/9780380721528.jpg'), + ('0440413869', 'A Traitor Among The Boys', 'https://images.isbndb.com/covers/38/68/9780440413868.jpg'), + ('0133349705', 'Frommer''s Hawaii ''92 On $70 A Day (Frommer''s Hawaii From $ A Day)', 'https://images.isbndb.com/covers/97/02/9780133349702.jpg'), + ('1577311108', 'You Can Be Happy No Matter What: Five Principles For Keeping Life In Perspective', 'https://images.isbndb.com/covers/11/02/9781577311102.jpg'), + ('0062740067', 'Emily Post On Entertaining', 'https://images.isbndb.com/covers/00/69/9780062740069.jpg'), + ('0439435242', 'The Seeing Stone', 'https://images.isbndb.com/covers/52/46/9780439435246.jpg'), + ('1563051818', 'Meditations For New Mothers', 'https://images.isbndb.com/covers/18/14/9781563051814.jpg'), + ('0671743686', 'For Love Alone', 'https://images.isbndb.com/covers/36/80/9780671743680.jpg'), + ('0818405422', 'Bodies Of Evidence: The True Story Of Judias Buenoano Florida''s Serial Murderess', 'https://images.isbndb.com/covers/54/26/9780818405426.jpg'), + ('1891105035', '30-Minute Meals', 'https://images.isbndb.com/covers/50/36/9781891105036.jpg'), + ('006621016X', 'Filthy Rich', 'https://images.isbndb.com/covers/01/62/9780066210162.jpg'), + ('0786865504', 'World Of Pies: A Novel', 'https://images.isbndb.com/covers/55/05/9780786865505.jpg'), + ('0679456937', 'The Inn At Lake Devine: A Novel', 'https://images.isbndb.com/covers/69/33/9780679456933.jpg'), + ('0380975580', 'Murder Gets A Life:: A Southern Sisters Mystery (Southern Sisters Mysteries)', 'https://images.isbndb.com/covers/55/87/9780380975587.jpg'), + ('0684853620', 'The Strangeness Of Beauty: A Novel', 'https://images.isbndb.com/covers/36/28/9780684853628.jpg'), + ('0060392827', 'Confessions Of An Ugly Stepsister', 'https://images.isbndb.com/covers/28/26/9780060392826.jpg'), + ('1551668157', 'About That Man', 'https://images.isbndb.com/covers/81/54/9781551668154.jpg'), + ('0553213156', 'Anne Of Ingleside (Anne Of Green Gables, No. 6)', 'https://images.isbndb.com/covers/31/57/9780553213157.jpg'), + ('0613225937', 'Welcome To The World Baby Gir Welcome To The World Baby Gir', 'https://images.isbndb.com/covers/59/39/9780613225939.jpg'), + ('1573221260', 'The Funnies', 'https://images.isbndb.com/covers/12/69/9781573221269.jpg'), + ('0345410092', 'Me : Stories Of My Life', 'https://images.isbndb.com/covers/00/92/9780345410092.jpg'), + ('0440124344', 'Family Album', 'https://images.isbndb.com/covers/43/44/9780440124344.jpg'), + ('014027927X', 'Ralph''s Party', 'https://images.isbndb.com/covers/92/76/9780140279276.jpg'), + ('078688360X', 'Don''t Worry, Make Money: Spiritual And Practical Ways To Create Abundance And More Fun In Your Life', 'https://images.isbndb.com/covers/36/08/9780786883608.jpg'), + ('0152008799', 'Finishing Becca: A Story About Peggy Shippen And Benedict Arnold', 'https://images.isbndb.com/covers/87/96/9780152008796.jpg'), + ('0805063781', 'The Gospel According To Larry', 'https://images.isbndb.com/covers/37/83/9780805063783.jpg'), + ('0064473023', 'Grecian Holiday: Or, How I Turned Down The Best Possible Thing Only To Have The Time Of My Life', 'https://images.isbndb.com/covers/30/26/9780064473026.jpg'), + ('0152001018', 'A Break With Charity: A Story About The Salem Witch Trials', 'https://images.isbndb.com/covers/10/18/9780152001018.jpg'), + ('0761316426', 'The Cannibals: Starring Tiffany Spratt (Single Titles)', 'https://images.isbndb.com/covers/64/28/9780761316428.jpg'), + ('0312209673', 'Man Or Mango?', 'https://images.isbndb.com/covers/96/74/9780312209674.jpg'), + ('1883523362', 'Those Jordan Girls', 'https://images.isbndb.com/covers/33/67/9781883523367.jpg'), + ('0060976497', 'Ten Stupid Things Women Do To Mess Up Their Lives', 'https://images.isbndb.com/covers/64/91/9780060976491.jpg'), + ('0312147015', 'The Persian Pickle Club', 'https://images.isbndb.com/covers/70/13/9780312147013.jpg'), + ('1558743545', 'Chicken Soup For The Soul Cookbook: 101 Stories With Recipes From The Heart', 'https://images.isbndb.com/covers/35/40/9781558743540.jpg'), + ('0452282128', 'Thirty Nothing', 'https://images.isbndb.com/covers/21/24/9780452282124.jpg'), + ('0767906543', 'Mr. Commitment', 'https://images.isbndb.com/covers/65/48/9780767906548.jpg'), + ('0374399891', 'Joey Pigza Loses Control (Newbery Honor Book)', 'https://images.isbndb.com/covers/98/94/9780374399894.jpg'), + ('0517100800', 'How Angels Get Their Wings', 'https://images.isbndb.com/covers/08/06/9780517100806.jpg'), + ('068485595X', 'Hundred Dollar Holiday: The Case For A More Joyful Christmas', 'https://images.isbndb.com/covers/59/50/9780684855950.jpg'), + ('0786884207', 'Don''t Sweat The Small Stuff In Love (Don''t Sweat The Small Stuff Series)', 'https://images.isbndb.com/covers/42/09/9780786884209.jpg'), + ('0375506187', 'Milk Glass Moon: A Big Stone Gap Novel (Big Stone Gap Novels)', 'https://images.isbndb.com/covers/61/85/9780375506185.jpg'), + ('0812524160', 'Nine Levels Down', 'https://images.isbndb.com/covers/41/61/9780812524161.jpg'), + ('0399135278', 'Night Secrets', 'https://images.isbndb.com/covers/52/79/9780399135279.jpg'), + ('0312908830', 'Night Of Error', 'https://images.isbndb.com/covers/88/36/9780312908836.jpg'), + ('0142000345', 'A Common Life: The Wedding Story (The Mitford Years #6)', 'https://images.isbndb.com/covers/03/42/9780142000342.jpg'), + ('1577488288', 'Colorado Wings: A Wing And A Prayer/Wings Like Eagles/Wings Of The Dawn/A Gift Of Wings (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/82/86/9781577488286.jpg'), + ('0800781724', 'Raptured', 'https://images.isbndb.com/covers/17/29/9780800781729.jpg'), + ('1577482158', 'A Funny Thing Happened On My Way Through The Bible', 'https://images.isbndb.com/covers/21/54/9781577482154.jpg'), + ('0882702637', 'The Christian Employee', 'https://images.isbndb.com/covers/26/36/9780882702636.jpg'), + ('0821723006', 'Pat Nixon: The Untold Story', 'https://images.isbndb.com/covers/30/05/9780821723005.jpg'), + ('0380796104', 'Lucy Sullivan Is Getting Married', 'https://images.isbndb.com/covers/61/06/9780380796106.jpg'), + ('1565120167', 'Music Of The Swamp (Front Porch Paperbacks)', 'https://images.isbndb.com/covers/01/67/9781565120167.jpg'), + ('1586603981', 'South Carolina: Southern Gentleman/After The Storm/Somewhere A Rainbow/Catch Of A Lifetime (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/39/84/9781586603984.jpg'), + ('031020755X', 'Relationships: An Open And Honest Guide To Making Bad Relationships Better And Good Relationships Great', 'https://images.isbndb.com/covers/75/59/9780310207559.jpg'), + ('0764501801', 'Windows 95 For Dummies', 'https://images.isbndb.com/covers/18/07/9780764501807.jpg'), + ('0399141855', 'To The Hilt', 'https://images.isbndb.com/covers/18/50/9780399141850.jpg'), + ('0140340831', 'Aldo Applesauce (Puffin Story Books)', 'https://images.isbndb.com/covers/08/39/9780140340839.jpg'), + ('0310213975', 'Touched By An Angel', 'https://images.isbndb.com/covers/39/70/9780310213970.jpg'), + ('0517588242', 'Making Your Own Gourmet Coffee Drinks: Espressos, Cappuccinos, Lattes, Mochas, And More!', 'https://images.isbndb.com/covers/82/46/9780517588246.jpg'), + ('0385485697', 'Joshua And The City (The Joshua Series)', 'https://images.isbndb.com/covers/56/92/9780385485692.jpg'), + ('1565075722', 'The Power Of A Praying Wife', 'https://images.isbndb.com/covers/57/26/9781565075726.jpg'), + ('0440415829', 'Piping Down The Valleys Wild', 'https://images.isbndb.com/covers/58/24/9780440415824.jpg'), + ('0064460932', 'Joyful Noise: Poems For Two Voices', 'https://images.isbndb.com/covers/09/34/9780064460934.jpg'), + ('0590959433', 'A Glory Of Unicorns', 'https://images.isbndb.com/covers/94/38/9780590959438.jpg'), + ('076422249X', 'The Sacred Shore (Song Of Acadia #2)', 'https://images.isbndb.com/covers/24/98/9780764222498.jpg'), + ('0816318050', 'Escape To God: How Our Family Left The Rat Race Behind To Search For Genuine Spirituality And The Simple Life', 'https://images.isbndb.com/covers/80/56/9780816318056.jpg'), + ('0142000477', 'More Than Enough: The Ten Keys To Changing Your Financial Destiny', 'https://images.isbndb.com/covers/04/72/9780142000472.jpg'), + ('1586602616', 'California: Golden Dreams/A Gift From Above/Better Than Friends/To Truly See (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/26/11/9781586602611.jpg'), + ('1586602772', 'Ozarks: A Sign Of Love/A Place For Love/The Hasty Heart/The Healing Promise (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/27/72/9781586602772.jpg'), + ('0395636477', 'The Call Of Service: A Witness To Idealism', 'https://images.isbndb.com/covers/64/73/9780395636473.jpg'), + ('0060617519', 'The Long Loneliness: The Autobiography Of The Legendary Catholic Social Activist', 'https://images.isbndb.com/covers/75/16/9780060617516.jpg'), + ('0446530115', 'The Shadow Women', 'https://images.isbndb.com/covers/01/18/9780446530118.jpg'), + ('0553581066', 'Neurotica', 'https://images.isbndb.com/covers/10/65/9780553581065.jpg'), + ('0671794493', 'Flavor Of The Month', 'https://images.isbndb.com/covers/44/91/9780671794491.jpg'), + ('0380978342', 'Ritual Of Proof', 'https://images.isbndb.com/covers/83/42/9780380978342.jpg'), + ('0312105231', 'Peckover Joins The Choir', 'https://images.isbndb.com/covers/52/35/9780312105235.jpg'), + ('0060179988', 'The Journeyman Tailor', 'https://images.isbndb.com/covers/99/84/9780060179984.jpg'), + ('013029604X', 'American Steel: Hot Metal Men And The Resurrection Of The Rust Belt (First Edition)', 'https://images.isbndb.com/covers/60/47/9780130296047.jpg'), + ('0380975351', 'Joining', 'https://images.isbndb.com/covers/53/58/9780380975358.jpg'), + ('034531221X', 'Lincoln', 'https://images.isbndb.com/covers/22/11/9780345312211.jpg'), + ('0849939585', 'The Princess Club: Christy Series #7', 'https://images.isbndb.com/covers/95/87/9780849939587.jpg'), + ('0849939593', 'Christy Series #8: Family Secrets', 'https://images.isbndb.com/covers/95/94/9780849939594.jpg'), + ('0849936888', 'Christy Series #3: The Angry Intruder', 'https://images.isbndb.com/covers/68/83/9780849936883.jpg'), + ('0849939194', 'Christy Series #6: Christy''s Choice', 'https://images.isbndb.com/covers/91/98/9780849939198.jpg'), + ('0590460560', 'A Stitch In Time (Quilt Trilogy, Volume 1)', 'https://images.isbndb.com/covers/05/69/9780590460569.jpg'), + ('0590460528', 'The Blue Door (Quilt Trilogy #3)', 'https://images.isbndb.com/covers/05/21/9780590460521.jpg'), + ('0590460544', 'Broken Days (Quilt Trilogy #2)', 'https://images.isbndb.com/covers/05/45/9780590460545.jpg'), + ('0830707360', 'Chronicles Of Mansoul: A John Bunyan Classic', 'https://images.isbndb.com/covers/73/62/9780830707362.jpg'), + ('1576738167', 'Redeeming Love', 'https://images.isbndb.com/covers/81/60/9781576738160.jpg'), + ('0915684012', 'Twelve Baskets Of Crumbs', 'https://images.isbndb.com/covers/40/14/9780915684014.jpg'), + ('0802404332', 'Amy Carmichael: Let The Little Children Come', 'https://images.isbndb.com/covers/43/36/9780802404336.jpg'), + ('1874508003', 'Bible Basics- Indonesian Version', 'https://images.isbndb.com/covers/80/07/9781874508007.jpg'), + ('155166576X', 'Dakota Born (Dakota Series #1)', 'https://images.isbndb.com/covers/57/64/9781551665764.jpg'), + ('0060926201', 'She Flew The Coop: A Novel Concerning Life, Death, Sex And Recipes In Limoges, Louisiana', 'https://images.isbndb.com/covers/62/05/9780060926205.jpg'), + ('0804108293', 'Crazy Ladies', 'https://images.isbndb.com/covers/82/94/9780804108294.jpg'), + ('0849953421', 'Let The Journey Begin God''s Roadmap For New Beginnings', 'https://images.isbndb.com/covers/34/22/9780849953422.jpg'), + ('0664254829', 'St. Paul At The Movies: The Apostle''s Dialogue With American Culture', 'https://images.isbndb.com/covers/48/27/9780664254827.jpg'), + ('0310515114', 'From The Claws Of The Dragon: A Story Of Deliverance From The Chinese Red Guards', 'https://images.isbndb.com/covers/51/11/9780310515111.jpg'), + ('1556615833', 'Please Give Me Another Chance, Lord: The Secret Of Prayer In A Teen''s Life', 'https://images.isbndb.com/covers/58/32/9781556615832.jpg'), + ('0816733082', 'Winni Allfours', 'https://images.isbndb.com/covers/30/88/9780816733088.jpg'), + ('0375811354', 'The Foot Book (Nifty Lift-and-Look)', 'https://images.isbndb.com/covers/13/57/9780375811357.jpg'), + ('0806984929', 'Windows On The World Complete Wine Course', 'https://images.isbndb.com/covers/49/26/9780806984926.jpg'), + ('067165845X', 'Night And Day', 'https://images.isbndb.com/covers/84/58/9780671658458.jpg'), + ('0060173084', 'Ten Stupid Things Men Do To Mess Up Their Lives', 'https://images.isbndb.com/covers/30/81/9780060173081.jpg'), + ('0451204123', 'The Association', 'https://images.isbndb.com/covers/41/27/9780451204127.jpg'), + ('0152006737', 'A Ride Into Morning: The Story Of Tempe Wick', 'https://images.isbndb.com/covers/67/30/9780152006730.jpg'), + ('0842319018', 'The Shoe Box', 'https://images.isbndb.com/covers/90/10/9780842319010.jpg'), + ('051734582X', 'Asimov''s Guide To The Bible: Two Volumes In One, The Old And New Testaments', 'https://images.isbndb.com/covers/58/25/9780517345825.jpg'), + ('1580082319', 'How Wal-Mart Is Destroying America And The World And What You Can Do About It', 'https://images.isbndb.com/covers/23/10/9781580082310.jpg'), + ('0345427297', 'The Milk Mustache Book: A Behind-The-Scenes Look At America''s Favorite Advertising Campaign', 'https://images.isbndb.com/covers/72/98/9780345427298.jpg'), + ('0140547533', 'The Funny Little Woman (Picture Puffins)', 'https://images.isbndb.com/covers/75/35/9780140547535.jpg'), + ('1578564719', 'What''s A Christian To Do With Harry Potter?', 'https://images.isbndb.com/covers/47/12/9781578564712.jpg'), + ('1576737810', 'What I Wish I''d Known Before I Got Married', 'https://images.isbndb.com/covers/78/11/9781576737811.jpg'), + ('0785270221', '10 Commandments Of Dating', 'https://images.isbndb.com/covers/02/25/9780785270225.jpg'), + ('1576737098', 'Boy Meets Girl: Say Hello To Courtship', 'https://images.isbndb.com/covers/70/95/9781576737095.jpg'), + ('1576730360', 'I Kissed Dating Goodbye: A New Attitude Toward Relationships And Romance', 'https://images.isbndb.com/covers/03/62/9781576730362.jpg'), + ('0786862262', 'Jesus In Blue Jeans: A Practical Guide To Everyday Spirituality', 'https://images.isbndb.com/covers/22/69/9780786862269.jpg'), + ('031023008X', 'Fresh Power: Experiencing The Vast Resources Of The Spirit Of God', 'https://images.isbndb.com/covers/00/83/9780310230083.jpg'), + ('0840771835', 'The Smoke Of A Thousand Villages...and Other Stories Of Real Life Heroes Of The Faith', 'https://images.isbndb.com/covers/18/34/9780840771834.jpg'), + ('0380975068', 'The Lust Lizard Of Melancholy Cove', 'https://images.isbndb.com/covers/50/68/9780380975068.jpg'), + ('0517118971', 'Earth, Water & Air (Snoopy''s World)', 'https://images.isbndb.com/covers/89/79/9780517118979.jpg'), + ('0394873416', 'The Berenstain Bears And The Bad Dream', 'https://images.isbndb.com/covers/34/11/9780394873411.jpg'), + ('059040024X', 'The Magic School Bus: Gets Ants In Its Pants: A Book About Ants', 'https://images.isbndb.com/covers/02/44/9780590400244.jpg'), + ('0590226517', 'Across The Wide And Lonesome Prairie: The Oregon Trail Diary Of Hattie Campbell, 1847 (Dear America Series)', 'https://images.isbndb.com/covers/65/16/9780590226516.jpg'), + ('1580626599', 'Laura: America''s First Lady, First Mother', 'https://images.isbndb.com/covers/65/90/9781580626590.jpg'), + ('0590543199', 'Mine Eyes Have Seen', 'https://images.isbndb.com/covers/31/94/9780590543194.jpg'), + ('067161276X', 'The Great Alone', 'https://images.isbndb.com/covers/27/64/9780671612764.jpg'), + ('0871316072', 'Nikrova''s Passion: An Evans Novel Of Romance', 'https://images.isbndb.com/covers/60/73/9780871316073.jpg'), + ('0671794507', 'Flavor Of The Month', 'https://images.isbndb.com/covers/45/07/9780671794507.jpg'), + ('0152164502', 'The Coffin Quilt: The Feud Between The Hatfields And The McCoys', 'https://images.isbndb.com/covers/45/08/9780152164508.jpg'), + ('0312959176', 'Beauty From Ashes (Georgia Trilogy)', 'https://images.isbndb.com/covers/91/73/9780312959173.jpg'), + ('1577361814', 'New Moon Rising (St. Simons Trilogy, Vol. 2)', 'https://images.isbndb.com/covers/18/17/9781577361817.jpg'), + ('0679867406', 'Glasses For D W', 'https://images.isbndb.com/covers/74/01/9780679867401.jpg'), + ('0394865871', 'Little Witch''s Big Night (Step-Into-Reading, Step 3)', 'https://images.isbndb.com/covers/58/74/9780394865874.jpg'), + ('0849942829', 'A Time To Dance', 'https://images.isbndb.com/covers/28/22/9780849942822.jpg'), + ('0764222120', 'The Crossroad (Amish Country Crossroads #2)', 'https://images.isbndb.com/covers/21/22/9780764222122.jpg'), + ('0764222112', 'The Postcard (Amish Country Crossroads #1)', 'https://images.isbndb.com/covers/21/15/9780764222115.jpg'), + ('0310201683', 'The Promise (The American Quilt Series #3)', 'https://images.isbndb.com/covers/16/87/9780310201687.jpg'), + ('0395251818', 'Chronicles Of Fairacre: Village School / Village Diary / Storm In The Village (The Fairacre Omnibus)', 'https://images.isbndb.com/covers/18/12/9780395251812.jpg'), + ('0440228611', 'The Last Silk Dress', 'https://images.isbndb.com/covers/86/15/9780440228615.jpg'), + ('0880701366', 'Imagination: Embracing A Theology Of Wonder', 'https://images.isbndb.com/covers/13/65/9780880701365.jpg'), + ('0590742590', 'The Second Bend In The River', 'https://images.isbndb.com/covers/25/97/9780590742597.jpg'), + ('0934395500', 'The American Country Inn And Bed & Breakfast Cookbook, Volume I: More Than 1,700 Crowd-pleasing Recipes From 500 American Inns (American Country Inn & Bed & Breakfast Cookbook)', 'https://images.isbndb.com/covers/55/02/9780934395502.jpg'), + ('0394872177', 'The Berenstain Bears And Too Much Junk Food', 'https://images.isbndb.com/covers/21/79/9780394872179.jpg'), + ('0590426230', 'Big Sarah''s Little Boots (A Blue Ribbon Book)', 'https://images.isbndb.com/covers/62/37/9780590426237.jpg'), + ('006446735X', 'Shark Swimathon (MathStart 3)', 'https://images.isbndb.com/covers/73/53/9780064467353.jpg'), + ('0679800921', 'Five Silly Fishermen (Step-Into-Reading, Step 2)', 'https://images.isbndb.com/covers/09/27/9780679800927.jpg'), + ('0590479172', 'The Gym Teacher From The Black Lagoon', 'https://images.isbndb.com/covers/91/72/9780590479172.jpg'), + ('0698116003', 'Chato''s Kitchen', 'https://images.isbndb.com/covers/60/09/9780698116009.jpg'), + ('068806518X', 'Feelings (Reading Rainbow Book)', 'https://images.isbndb.com/covers/51/88/9780688065188.jpg'), + ('1880000334', 'Zora Hurston And The Chinaberry Tree (Reading Rainbow Book)', 'https://images.isbndb.com/covers/03/35/9781880000335.jpg'), + ('0590480898', 'The Bunyans', 'https://images.isbndb.com/covers/08/95/9780590480895.jpg'), + ('0064402509', 'The Family Under The Bridge', 'https://images.isbndb.com/covers/25/07/9780064402507.jpg'), + ('0590934252', 'Amber Brown Goes Fourth', 'https://images.isbndb.com/covers/42/51/9780590934251.jpg'), + ('067988341X', 'Polar Bears Past Bedtime (Magic Tree House, No. 12)', 'https://images.isbndb.com/covers/34/18/9780679883418.jpg'), + ('0590449206', 'Lily And Miss Liberty', 'https://images.isbndb.com/covers/92/05/9780590449205.jpg'), + ('0590947168', 'Amber Brown Wants Extra Credit', 'https://images.isbndb.com/covers/71/69/9780590947169.jpg'), + ('0679824111', 'Dinosaurs Before Dark (Magic Tree House, No. 1)', 'https://images.isbndb.com/covers/41/14/9780679824114.jpg'), + ('0805002138', 'The Wind In The Willows', 'https://images.isbndb.com/covers/21/33/9780805002133.jpg'), + ('1587172046', 'The Wind In The Willows', 'https://images.isbndb.com/covers/20/45/9781587172045.jpg'), + ('0380719002', 'Stepping On The Cracks', 'https://images.isbndb.com/covers/90/06/9780380719006.jpg'), + ('0064440591', 'Frog And Toad All Year (I Can Read Book 2)', 'https://images.isbndb.com/covers/05/92/9780064440592.jpg'), + ('0141302283', 'The Giraffe And The Pelly And Me', 'https://images.isbndb.com/covers/22/87/9780141302287.jpg'), + ('0671677136', 'How To Survive Third Grade (American Sisters)', 'https://images.isbndb.com/covers/71/38/9780671677138.jpg'), + ('0440409411', 'The Castle In The Attic', 'https://images.isbndb.com/covers/94/10/9780440409410.jpg'), + ('0590543385', 'Runaway Pony (Pony Pals #7)', 'https://images.isbndb.com/covers/33/85/9780590543385.jpg'), + ('0060163097', '365 Easy Low-Calorie Recipes (365 Ways)', 'https://images.isbndb.com/covers/30/99/9780060163099.jpg'), + ('0440416248', 'Frozen Summer', 'https://images.isbndb.com/covers/62/41/9780440416241.jpg'), + ('0140349812', 'Lyddie (Puffin Books)', 'https://images.isbndb.com/covers/98/18/9780140349818.jpg'), + ('0140386742', 'Jip: His Story', 'https://images.isbndb.com/covers/67/45/9780140386745.jpg'), + ('0140365931', 'A Pocket Full Of Seeds (A Puffin Book)', 'https://images.isbndb.com/covers/59/31/9780140365931.jpg'), + ('0439099048', 'Katarina', 'https://images.isbndb.com/covers/90/42/9780439099042.jpg'), + ('0613177177', 'One Bird', 'https://images.isbndb.com/covers/71/77/9780613177177.jpg'), + ('1565121570', 'Yo!', 'https://images.isbndb.com/covers/15/77/9781565121577.jpg'), + ('1558746587', 'Chicken Soup For The Golfer''s Soul', 'https://images.isbndb.com/covers/65/89/9781558746589.jpg'), + ('0964095564', 'The Golfer''s Book Of Wisdom: Common Sense And Uncommon Genius From 101 Golfing Greats', 'https://images.isbndb.com/covers/55/64/9780964095564.jpg'), + ('0099133717', 'American Ghosts And Old World Wonders', 'https://images.isbndb.com/covers/37/11/9780099133711.jpg'), + ('0771068182', 'NOW City Guide To Toronto (Now City Guides)', 'https://images.isbndb.com/covers/81/88/9780771068188.jpg'), + ('2894641214', 'Toronto (anglais)', 'https://images.isbndb.com/covers/12/17/9782894641217.jpg'), + ('1858284147', 'The Rough Guide To Toronto', 'https://images.isbndb.com/covers/41/49/9781858284149.jpg'), + ('1558533311', 'Live And Learn And Pass It On: People Ages 5 To 95 Share What They''Ve Discovered About Life, Love, And Other Good Stuff (Live & Learn & Pass It On)', 'https://images.isbndb.com/covers/33/18/9781558533318.jpg'), + ('0394557212', 'I Touch The Future: The Story Of Christa McAuliffe', 'https://images.isbndb.com/covers/72/12/9780394557212.jpg'), + ('0590697692', 'Faith And The Electric Dogs', 'https://images.isbndb.com/covers/76/99/9780590697699.jpg'), + ('0590486691', 'At Her Majesty''s Request: An African Princess In Victorian England', 'https://images.isbndb.com/covers/66/99/9780590486699.jpg'), + ('0140376283', 'Phoenix Rising', 'https://images.isbndb.com/covers/62/89/9780140376289.jpg'), + ('0698118804', 'Lost Flower Children', 'https://images.isbndb.com/covers/88/05/9780698118805.jpg'), + ('0531087875', 'A Message From The Match Girl (Investigators Of The Unknown, Bk. 3)', 'https://images.isbndb.com/covers/78/79/9780531087879.jpg'), + ('0590439448', 'Afternoon Of The Elves', 'https://images.isbndb.com/covers/94/42/9780590439442.jpg'), + ('0684823799', 'Miracles: A Preliminary Study (C.S. Lewis Classics)', 'https://images.isbndb.com/covers/37/99/9780684823799.jpg'), + ('0679732187', 'Absalom, Absalom! The Corrected Text', 'https://images.isbndb.com/covers/21/81/9780679732181.jpg'), + ('0140344438', 'Nothing''s Fair In Fifth Grade', 'https://images.isbndb.com/covers/44/31/9780140344431.jpg'), + ('0451523954', 'The Signet Classic Book Of Southern Short Stories (Signet Classics)', 'https://images.isbndb.com/covers/39/52/9780451523952.jpg'), + ('0064406865', 'Pleasing The Ghost', 'https://images.isbndb.com/covers/68/64/9780064406864.jpg'), + ('0440430461', 'The Gift Of The Pirate Queen', 'https://images.isbndb.com/covers/04/69/9780440430469.jpg'), + ('0590117440', 'Amelia''s War', 'https://images.isbndb.com/covers/74/49/9780590117449.jpg'), + ('0689842945', 'Wenny Has Wings', 'https://images.isbndb.com/covers/29/48/9780689842948.jpg'), + ('1883672902', 'The Diary Of Chickabiddy Baby', 'https://images.isbndb.com/covers/29/04/9781883672904.jpg'), + ('0689842309', 'Double Dutch', 'https://images.isbndb.com/covers/23/06/9780689842306.jpg'), + ('0060281766', 'Freewill', 'https://images.isbndb.com/covers/17/62/9780060281762.jpg'), + ('0152003924', 'The Secret Of Sarah Revere', 'https://images.isbndb.com/covers/39/20/9780152003920.jpg'), + ('0380978636', 'Don''t You Know There''s A War On?', 'https://images.isbndb.com/covers/86/32/9780380978632.jpg'), + ('0809206196', 'Jamestown''s American Portraits: Corn Raid: A Story Of The Jamestown Settlement (Jamestown''s American Portraits)', 'https://images.isbndb.com/covers/61/93/9780809206193.jpg'), + ('0842300198', 'Alive (Campus Life Series)', 'https://images.isbndb.com/covers/01/93/9780842300193.jpg'), + ('0140236201', 'Paradise Of The Blind: A Novel', 'https://images.isbndb.com/covers/62/00/9780140236200.jpg'), + ('0140481877', 'Master Harold . . . And The Boys (Penguin Plays)', 'https://images.isbndb.com/covers/18/77/9780140481877.jpg'), + ('0486273008', 'Japanese Fairy Tales (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/30/06/9780486273006.jpg'), + ('0140108599', 'Clear Light Of Day', 'https://images.isbndb.com/covers/85/90/9780140108590.jpg'), + ('0195867866', 'From The Bluest Part Of The Harbour: Poems From Hong Kong (Oxford In Asia Paperbacks)', 'https://images.isbndb.com/covers/78/62/9780195867862.jpg'), + ('0451628454', 'Other Voices, Other Vistas: Short Stories From Africa, China, India, Japan And Latin America (Mentor)', 'https://images.isbndb.com/covers/84/59/9780451628459.jpg'), + ('0679887911', 'Knots In My Yo-Yo String', 'https://images.isbndb.com/covers/79/11/9780679887911.jpg'), + ('0674354427', 'The Girl With The Brown Crayon: How Childen Use Stories To Shape Their Lives', 'https://images.isbndb.com/covers/44/25/9780674354425.jpg'), + ('0440226848', 'What Child Is This?: A Christmas Story', 'https://images.isbndb.com/covers/68/40/9780440226840.jpg'), + ('0590319906', 'When She Was Good', 'https://images.isbndb.com/covers/99/04/9780590319904.jpg'), + ('0064470679', 'Gentlehands (Harper Keypoint Book)', 'https://images.isbndb.com/covers/06/74/9780064470674.jpg'), + ('0156004771', 'SPAM: A Biography: The Amazing True Story Of America''s "Miracle Meat!"', 'https://images.isbndb.com/covers/47/70/9780156004770.jpg'), + ('0061081116', 'Loss Of Innocence', 'https://images.isbndb.com/covers/11/18/9780061081118.jpg'), + ('0373483503', 'Macgregor Brides (Macgregors)', 'https://images.isbndb.com/covers/35/01/9780373483501.jpg'), + ('0380785757', 'Lion Heart (Avon Romantic Treasures)', 'https://images.isbndb.com/covers/57/59/9780380785759.jpg'), + ('0380785714', 'Lyon''s Gift', 'https://images.isbndb.com/covers/57/11/9780380785711.jpg'), + ('0553294091', 'Once An Angel', 'https://images.isbndb.com/covers/40/95/9780553294095.jpg'), + ('0590023888', 'Misty Of Chincoteague', 'https://images.isbndb.com/covers/38/87/9780590023887.jpg'), + ('0812544420', 'Summer At The Lake (Mysteries & Horror)', 'https://images.isbndb.com/covers/44/28/9780812544428.jpg'), + ('0373290853', 'Cooper''s Wife (Harlequin Historicals #485)', 'https://images.isbndb.com/covers/08/57/9780373290857.jpg'), + ('0671741268', 'Seasons Of Gold', 'https://images.isbndb.com/covers/12/66/9780671741266.jpg'), + ('0312033001', 'Can My Bridesmaids Wear Black?-- And 325 Other Most-Asked Etiquette Questions', 'https://images.isbndb.com/covers/30/02/9780312033002.jpg'), + ('0373270976', 'Night Shield (Silhouette Intimate Moments, #1027)', 'https://images.isbndb.com/covers/09/72/9780373270972.jpg'), + ('0812571762', 'The Senator''s Daughter', 'https://images.isbndb.com/covers/17/69/9780812571769.jpg'), + ('0671025708', 'The Last Dance', 'https://images.isbndb.com/covers/57/00/9780671025700.jpg'), + ('0812514092', 'Aristoi', 'https://images.isbndb.com/covers/40/94/9780812514094.jpg'), + ('0515122734', 'Sanctuary', 'https://images.isbndb.com/covers/27/32/9780515122732.jpg'), + ('0440224578', 'The Pride Of Lions', 'https://images.isbndb.com/covers/45/70/9780440224570.jpg'), + ('0440217857', 'Across A Moonlit Sea', 'https://images.isbndb.com/covers/78/55/9780440217855.jpg'), + ('0373705867', 'Single...with Children (Harlequin Superromance No. 586)', 'https://images.isbndb.com/covers/58/63/9780373705863.jpg'), + ('1551665794', 'Twelve Across', 'https://images.isbndb.com/covers/57/95/9781551665795.jpg'), + ('0061010995', 'Moment To Moment', 'https://images.isbndb.com/covers/09/96/9780061010996.jpg'), + ('0373762690', 'Dr. Mommy (From Here To Maternity) (Silhouette Desire, 1269) (Harlequin Desire)', 'https://images.isbndb.com/covers/26/99/9780373762699.jpg'), + ('0451407806', 'Something Wicked', 'https://images.isbndb.com/covers/78/01/9780451407801.jpg'), + ('0373484046', 'Soldiers Of Fortune', 'https://images.isbndb.com/covers/40/41/9780373484041.jpg'), + ('1854879820', 'That Cinderella Feeling (Scarlet)', 'https://images.isbndb.com/covers/98/20/9781854879820.jpg'), + ('0373168209', 'His-And-Hers Twins (Harlequin American Romance, No. 820)', 'https://images.isbndb.com/covers/82/00/9780373168200.jpg'), + ('0373290861', 'The Dreammaker (Harlequin Historical #486)', 'https://images.isbndb.com/covers/08/64/9780373290864.jpg'), + ('0743232933', 'Ruminations On College Life', 'https://images.isbndb.com/covers/29/37/9780743232937.jpg'), + ('0312305664', 'Let''s Go 2003: Britain & Ireland', 'https://images.isbndb.com/covers/56/66/9780312305666.jpg'), + ('1583486259', 'Imagined', 'https://images.isbndb.com/covers/62/52/9781583486252.jpg'), + ('0451160916', 'The Shining (Signet)', 'https://images.isbndb.com/covers/09/11/9780451160911.jpg'), + ('1551665077', 'Last Honest Woman (The O''hurleys)', 'https://images.isbndb.com/covers/50/78/9781551665078.jpg'), + ('0446607207', 'Tell Me Your Dreams', 'https://images.isbndb.com/covers/72/09/9780446607209.jpg'), + ('0373223587', 'The Renegade (Avenging Angels, Book 1) (Harlequin Intrigue Series #358)', 'https://images.isbndb.com/covers/35/89/9780373223589.jpg'), + ('0553581147', 'Lady Of Conquest', 'https://images.isbndb.com/covers/11/40/9780553581140.jpg'), + ('0553579231', 'The Legend Mackinnon', 'https://images.isbndb.com/covers/92/39/9780553579239.jpg'), + ('0440209412', 'Message From Nam', 'https://images.isbndb.com/covers/94/16/9780440209416.jpg'), + ('0553574310', 'Dream Stone', 'https://images.isbndb.com/covers/43/19/9780553574319.jpg'), + ('0060631317', 'Words For Your Wedding: The Wedding Service Book', 'https://images.isbndb.com/covers/13/14/9780060631314.jpg'), + ('0140375899', 'Over The Water', 'https://images.isbndb.com/covers/58/93/9780140375893.jpg'), + ('1885983212', 'Hotel Sarajevo', 'https://images.isbndb.com/covers/32/13/9781885983213.jpg'), + ('0380700670', 'Amelia Bedelia Goes Camping', 'https://images.isbndb.com/covers/06/77/9780380700677.jpg'), + ('0380725622', 'The Barn', 'https://images.isbndb.com/covers/56/25/9780380725625.jpg'), + ('0807510092', 'Caboose Mystery (Boxcar Children #11)', 'https://images.isbndb.com/covers/00/94/9780807510094.jpg'), + ('0842321950', 'Through The Flames (Left Behind: The Kids #3)', 'https://images.isbndb.com/covers/19/52/9780842321952.jpg'), + ('0440407125', 'Guts', 'https://images.isbndb.com/covers/71/26/9780440407126.jpg'), + ('0590312413', 'The Castaway', 'https://images.isbndb.com/covers/24/17/9780590312417.jpg'), + ('0141312424', 'My Side Of The Mountain', 'https://images.isbndb.com/covers/24/22/9780141312422.jpg'), + ('0816704058', 'The Tree House Detective Club (Easy To Read Mysteries)', 'https://images.isbndb.com/covers/40/57/9780816704057.jpg'), + ('0590481819', 'My Secret Valentine', 'https://images.isbndb.com/covers/18/16/9780590481816.jpg'), + ('0590228706', 'Dawn Schafer, Undercover Babysitter (Baby-Sitters Club Mysteries)', 'https://images.isbndb.com/covers/87/01/9780590228701.jpg'), + ('0439049989', 'Captain Underpants And The Perilous Plot Of Professor Poopypants', 'https://images.isbndb.com/covers/99/86/9780439049986.jpg'), + ('0590228773', 'Mary Anne And The Memory Garden (Baby-Sitters Club)', 'https://images.isbndb.com/covers/87/70/9780590228770.jpg'), + ('0439050006', 'Captain Underpants And The Wrath Of The Wicked Wedgie Woman', 'https://images.isbndb.com/covers/00/05/9780439050005.jpg'), + ('0671019376', 'The Great Escape (Upchuck And The Rotten Willy)', 'https://images.isbndb.com/covers/93/72/9780671019372.jpg'), + ('0590944770', 'The Berenstain Bear Scouts And The Run-amuck Robot (Berenstain Bear Scouts)', 'https://images.isbndb.com/covers/47/79/9780590944779.jpg'), + ('0871234408', 'Why Knock Rock? Is It Bad? Is It Good? Does It Really Matter?', 'https://images.isbndb.com/covers/44/07/9780871234407.jpg'), + ('0880296143', 'Haunted Heartland (Dorset Reprints Series)', 'https://images.isbndb.com/covers/61/44/9780880296144.jpg'), + ('0892741880', 'Jihad: The Holy War', 'https://images.isbndb.com/covers/18/85/9780892741885.jpg'), + ('0786864249', 'DON''T SWEAT THE SMALL STUFF AND IT''S ALL SMALL STUFF:Simple Ways To Keep The Little Things From Taking Over Your Life.', 'https://images.isbndb.com/covers/42/49/9780786864249.jpg'), + ('0449150011', 'Dead Duck (Sam And Hollis Mystery)', 'https://images.isbndb.com/covers/00/16/9780449150016.jpg'), + ('0842329250', 'Soul Harvest: The World Takes Sides (Left Behind No. 4)', 'https://images.isbndb.com/covers/92/55/9780842329255.jpg'), + ('0553102354', 'In Pursuit Of The Proper Sinner', 'https://images.isbndb.com/covers/23/52/9780553102352.jpg'), + ('0912111631', 'A Brief History Of Qi', 'https://images.isbndb.com/covers/16/36/9780912111636.jpg'), + ('0767903390', 'Chi Kung: The Way Of Healing', 'https://images.isbndb.com/covers/33/94/9780767903394.jpg'), + ('055334935X', 'Tao Te Ching', 'https://images.isbndb.com/covers/93/51/9780553349351.jpg'), + ('0060591706', 'Reino Del Dragon De Oro, El (Spanish Edition)', 'https://images.isbndb.com/covers/17/00/9780060591700.jpg'), + ('0679763384', 'La Sonrisa Etrusca (Spanish Edition)', 'https://images.isbndb.com/covers/33/83/9780679763383.jpg'), + ('1557042608', 'The Sense And Sensibility: Screenplay & Diaries : Bringing Jane Austen''s Novel To Film', 'https://images.isbndb.com/covers/26/06/9781557042606.jpg'), + ('0815410565', 'The Complete Bolivian Diaries Of Che Guevara, And Other Captured Documents', 'https://images.isbndb.com/covers/05/60/9780815410560.jpg'), + ('0060951311', 'Cuentos De Eva Luna', 'https://images.isbndb.com/covers/13/13/9780060951313.jpg'), + ('9682321557', 'Patas Arriba. La Escuela Del Mundo Al Reves', 'https://images.isbndb.com/covers/15/59/9789682321559.jpg'), + ('1878448900', 'Girl In Hyacinth Blue', 'https://images.isbndb.com/covers/89/03/9781878448903.jpg'), + ('155994806X', 'Alice In Wonderland And Through The Looking Glass Audio', 'https://images.isbndb.com/covers/80/67/9781559948067.jpg'), + ('9500723832', 'El Libro Negro De Las Marcas (Spanish Edition)', 'https://images.isbndb.com/covers/38/31/9789500723831.jpg'), + ('0198641583', 'The Oxford-Duden Pictorial Spanish-English Dictionary', 'https://images.isbndb.com/covers/15/82/9780198641582.jpg'), + ('0807281859', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/18/57/9780807281857.jpg'), + ('0140011749', 'THE BEST OF P.G. WOODHOUSE 6 VOLUME SET.: CARRY ON, JEEVES, LORD EMSWORTH AND OTHERS, VERY GOOD, JEEVES, THE LUCK OF THE BODKINS, THE INIMITABLE JEEVES, AND RIGHT HO, JEEVES.', 'https://images.isbndb.com/covers/17/46/9780140011746.jpg'), + ('9684322046', 'El Principe (Spanish Edition)', 'https://images.isbndb.com/covers/20/42/9789684322042.jpg'), + ('042509345X', 'Robot Dreams (Masterworks Of Science Fiction And Fantasy, No 5)', 'https://images.isbndb.com/covers/34/50/9780425093450.jpg'), + ('0743448782', 'Honor Lost: Love And Death In Modern-Day Jordan', 'https://images.isbndb.com/covers/87/89/9780743448789.jpg'), + ('0385471475', 'Child Of War, Woman Of Peace', 'https://images.isbndb.com/covers/14/73/9780385471473.jpg'), + ('0312983786', 'The Pillow Book Of Lady Wisteria (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/37/89/9780312983789.jpg'), + ('0525455205', 'Pooh And The Philosophers : In Which It Is Shown That All Of Western Philosophy Is Merely A Preamble To Winnie-The-Pooh', 'https://images.isbndb.com/covers/52/02/9780525455202.jpg'), + ('0747233667', 'A Bloody Field By Shrewsbury', 'https://images.isbndb.com/covers/36/64/9780747233664.jpg'), + ('0061091944', 'Stonehenge', 'https://images.isbndb.com/covers/19/40/9780061091940.jpg'), + ('0671003534', 'The Holland Suggestions: A Novel', 'https://images.isbndb.com/covers/35/31/9780671003531.jpg'), + ('0671003526', 'Deadline', 'https://images.isbndb.com/covers/35/24/9780671003524.jpg'), + ('0688134017', 'The Spellcoats (Dalemark Quartet, Book 3)', 'https://images.isbndb.com/covers/40/13/9780688134013.jpg'), + ('0688134009', 'Drowned Ammet (Dalemark Quartet)', 'https://images.isbndb.com/covers/40/06/9780688134006.jpg'), + ('0064473139', 'Cart And Cwidder (Dalemark Quartet, Vol. 1)', 'https://images.isbndb.com/covers/31/32/9780064473132.jpg'), + ('0553103032', 'Just An Ordinary Day', 'https://images.isbndb.com/covers/30/38/9780553103038.jpg'), + ('0553574418', 'Remake', 'https://images.isbndb.com/covers/44/18/9780553574418.jpg'), + ('037326237X', 'Caravaggio Books', 'https://images.isbndb.com/covers/23/73/9780373262373.jpg'), + ('0804116571', 'Malice In The Highlands (Erskine Powell Mysteries)', 'https://images.isbndb.com/covers/65/72/9780804116572.jpg'), + ('0449210529', 'More Tales Of The Black Widowers', 'https://images.isbndb.com/covers/05/29/9780449210529.jpg'), + ('0345441710', 'Dragonstar', 'https://images.isbndb.com/covers/17/13/9780345441713.jpg'), + ('0345414365', 'Merro Tree (Del Rey Discovery)', 'https://images.isbndb.com/covers/43/66/9780345414366.jpg'), + ('0441002617', 'The Shape-Changer''s Wife', 'https://images.isbndb.com/covers/26/10/9780441002610.jpg'), + ('015201800X', 'The Pearl Of The Soul Of The World: The Darkangel Trilogy, Volume III', 'https://images.isbndb.com/covers/80/09/9780152018009.jpg'), + ('0152018018', 'A Gathering Of Gargoyles: The Darkangel Trilogy, Volume II', 'https://images.isbndb.com/covers/80/16/9780152018016.jpg'), + ('0804107025', 'The Chymical Wedding', 'https://images.isbndb.com/covers/70/20/9780804107020.jpg'), + ('0142501433', 'The Hidden Land (The Secret Country Trilogy, Vol. 2)', 'https://images.isbndb.com/covers/14/36/9780142501436.jpg'), + ('0142501530', 'The Secret Country', 'https://images.isbndb.com/covers/15/35/9780142501535.jpg'), + ('0141311096', 'The Ear, The Eye And The Arm', 'https://images.isbndb.com/covers/10/98/9780141311098.jpg'), + ('0553568736', 'A Plague Of Angels', 'https://images.isbndb.com/covers/87/38/9780553568738.jpg'), + ('0792276868', 'Living With Cannibals And Other Womens Adventures', 'https://images.isbndb.com/covers/68/69/9780792276869.jpg'), + ('044144525X', 'Kings Blood Four (True Game, Vol. 1)', 'https://images.isbndb.com/covers/52/57/9780441445257.jpg'), + ('0441568572', 'Necromancer Nine', 'https://images.isbndb.com/covers/85/74/9780441568574.jpg'), + ('044190209X', 'Wizards Eleven', 'https://images.isbndb.com/covers/20/95/9780441902095.jpg'), + ('0375503641', 'Shutterbabe: Adventures In Love And War', 'https://images.isbndb.com/covers/36/41/9780375503641.jpg'), + ('0451171012', 'Mystery Cats (Signet)', 'https://images.isbndb.com/covers/10/16/9780451171016.jpg'), + ('0451456599', 'Mother Grimm', 'https://images.isbndb.com/covers/65/95/9780451456595.jpg'), + ('0394534433', 'The Vampire Lestat', 'https://images.isbndb.com/covers/44/35/9780394534435.jpg'), + ('0553573314', 'The Diamond Age', 'https://images.isbndb.com/covers/33/12/9780553573312.jpg'), + ('0553562614', 'Snow Crash', 'https://images.isbndb.com/covers/26/13/9780553562613.jpg'), + ('0553573861', 'Zodiac', 'https://images.isbndb.com/covers/38/62/9780553573862.jpg'), + ('0553095145', 'Shadow''s End', 'https://images.isbndb.com/covers/51/42/9780553095142.jpg'), + ('0802138578', 'Artemisia: A Novel', 'https://images.isbndb.com/covers/85/76/9780802138576.jpg'), + ('1579546137', 'Pilates For Every Body: Strengthen, Lengthen, And Tone-- With This Complete 3-Week Body Makeover', 'https://images.isbndb.com/covers/61/37/9781579546137.jpg'), + ('0152046976', 'Born Blue', 'https://images.isbndb.com/covers/69/72/9780152046972.jpg'), + ('0802131867', 'The Subterraneans', 'https://images.isbndb.com/covers/18/67/9780802131867.jpg'), + ('0786860219', 'In Search Of Stones: A Pilgrimage Of Faith, Reason, And Discovery', 'https://images.isbndb.com/covers/02/10/9780786860210.jpg'), + ('0452282438', 'In The Name Of Salome', 'https://images.isbndb.com/covers/24/38/9780452282438.jpg'), + ('0520222571', 'Pearl''s Secret: A Black Man''s Search For His White Family', 'https://images.isbndb.com/covers/25/71/9780520222571.jpg'), + ('0380723085', 'Durable Goods', 'https://images.isbndb.com/covers/30/89/9780380723089.jpg'), + ('0345410289', 'Oral History', 'https://images.isbndb.com/covers/02/83/9780345410283.jpg'), + ('0452280699', 'More Hot Chocolate For The Mystical Soul', 'https://images.isbndb.com/covers/06/94/9780452280694.jpg'), + ('0914913360', 'Confronting Silence: Selected Writings (Fallen Leaf Monographs On Contemporary Composers)', 'https://images.isbndb.com/covers/33/68/9780914913368.jpg'), + ('0679755624', 'Open Secrets: Stories', 'https://images.isbndb.com/covers/56/23/9780679755623.jpg'), + ('0679414614', 'How We Die: Reflections On Life''s Final Chapter', 'https://images.isbndb.com/covers/46/12/9780679414612.jpg'), + ('0060977191', 'White Rabbit', 'https://images.isbndb.com/covers/71/91/9780060977191.jpg'), + ('0345410424', 'Cakewalk', 'https://images.isbndb.com/covers/04/29/9780345410429.jpg'), + ('0679723692', 'Cathedral', 'https://images.isbndb.com/covers/36/91/9780679723691.jpg'), + ('0060956291', 'Clear Springs: A Family Story', 'https://images.isbndb.com/covers/62/95/9780060956295.jpg'), + ('0671748092', 'Sugar Cage', 'https://images.isbndb.com/covers/80/98/9780671748098.jpg'), + ('0609608738', 'Justice: Crimes, Trials, And Punishments', 'https://images.isbndb.com/covers/87/39/9780609608739.jpg'), + ('0805031871', 'Cry Me A River', 'https://images.isbndb.com/covers/18/74/9780805031874.jpg'), + ('1878067990', 'Nowle''s Passing (Forbes, Edith)', 'https://images.isbndb.com/covers/79/99/9781878067999.jpg'), + ('0345410394', 'Fancy Strut (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/03/99/9780345410399.jpg'), + ('0375500510', 'Black And Blue: A Novel', 'https://images.isbndb.com/covers/05/10/9780375500510.jpg'), + ('0425184757', 'The Drowning Season', 'https://images.isbndb.com/covers/47/52/9780425184752.jpg'), + ('0452283167', 'Glory Denied: The Saga Of Jim Thompson, America''s Longest-Held Prisoner Of War', 'https://images.isbndb.com/covers/31/69/9780452283169.jpg'), + ('1582340765', 'Sarah: A Novel', 'https://images.isbndb.com/covers/07/60/9781582340760.jpg'), + ('1571310169', 'The Empress Of One', 'https://images.isbndb.com/covers/01/63/9781571310163.jpg'), + ('0380820145', 'Friendship Cake (Hope Springs)', 'https://images.isbndb.com/covers/01/46/9780380820146.jpg'), + ('0385333293', 'A Bigamist''s Daughter', 'https://images.isbndb.com/covers/32/90/9780385333290.jpg'), + ('0060923202', 'The Enlightened Mind', 'https://images.isbndb.com/covers/32/04/9780060923204.jpg'), + ('0061054437', 'Waking The Moon', 'https://images.isbndb.com/covers/44/33/9780061054433.jpg'), + ('0312187343', 'The Lady Who Liked Clean Restrooms: The Chronicle Of One Of The Strangest Stories Ever To Be Rumoured About Around New York', 'https://images.isbndb.com/covers/73/47/9780312187347.jpg'), + ('0679416730', 'Sin', 'https://images.isbndb.com/covers/67/39/9780679416739.jpg'), + ('0380729768', 'Sister', 'https://images.isbndb.com/covers/97/60/9780380729760.jpg'), + ('0060926465', 'Guest Of A Sinner', 'https://images.isbndb.com/covers/64/65/9780060926465.jpg'), + ('0316691178', 'Exiting Nirvana: A Daughter''s Life With Autism', 'https://images.isbndb.com/covers/11/78/9780316691178.jpg'), + ('0871138328', 'Death At The Priory: Sex, Love, And Murder In Victorian England', 'https://images.isbndb.com/covers/83/23/9780871138323.jpg'), + ('1565122437', 'Tea: A Novel', 'https://images.isbndb.com/covers/24/37/9781565122437.jpg'), + ('0345386574', 'A Woman''s Worth', 'https://images.isbndb.com/covers/65/71/9780345386571.jpg'), + ('0156907399', 'To The Lighthouse', 'https://images.isbndb.com/covers/73/92/9780156907392.jpg'), + ('0395908728', 'Innocence', 'https://images.isbndb.com/covers/87/23/9780395908723.jpg'), + ('0066209463', 'Middle Age: A Romance', 'https://images.isbndb.com/covers/94/63/9780066209463.jpg'), + ('0802136265', 'Passing On', 'https://images.isbndb.com/covers/62/68/9780802136268.jpg'), + ('1559704640', 'A Short History Of Decay', 'https://images.isbndb.com/covers/46/49/9781559704649.jpg'), + ('0743227840', 'The Ice Beneath You: A Novel', 'https://images.isbndb.com/covers/78/41/9780743227841.jpg'), + ('0452271045', 'Pleasure In The Word: Writings By Latin American Women', 'https://images.isbndb.com/covers/10/43/9780452271043.jpg'), + ('0684867826', 'Blue Calhoun: A Novel', 'https://images.isbndb.com/covers/78/23/9780684867823.jpg'), + ('0060984333', 'American Pie: A Novel', 'https://images.isbndb.com/covers/43/35/9780060984335.jpg'), + ('0679723056', 'What We Talk About When We Talk About Love: Stories', 'https://images.isbndb.com/covers/30/59/9780679723059.jpg'), + ('0345389247', 'Crazy In Alabama', 'https://images.isbndb.com/covers/92/44/9780345389244.jpg'), + ('0375503315', 'Brothel: Mustang Ranch And Its Women', 'https://images.isbndb.com/covers/33/13/9780375503313.jpg'), + ('0393956539', 'The Scarlet Letter: An Authoritative Text Essays In Criticism And Scholarship (Norton Critical Editions)', 'https://images.isbndb.com/covers/65/35/9780393956535.jpg'), + ('0395977711', 'Homestead', 'https://images.isbndb.com/covers/77/12/9780395977712.jpg'), + ('0380728826', 'Recipes From The Dump', 'https://images.isbndb.com/covers/88/24/9780380728824.jpg'), + ('0452282098', 'City Of God', 'https://images.isbndb.com/covers/20/94/9780452282094.jpg'), + ('096521365X', 'Lo''s Diary', 'https://images.isbndb.com/covers/36/53/9780965213653.jpg'), + ('0380732149', 'On The Occasion Of My Last Afternoon', 'https://images.isbndb.com/covers/21/42/9780380732142.jpg'), + ('0312283474', 'So Far Back: A Novel', 'https://images.isbndb.com/covers/34/76/9780312283476.jpg'), + ('0385314256', 'When Elephants Weep: The Emotional Lives Of Animals', 'https://images.isbndb.com/covers/42/51/9780385314251.jpg'), + ('0394563158', 'The Pigeon', 'https://images.isbndb.com/covers/31/52/9780394563152.jpg'), + ('0786869011', 'My Forbidden Face: Growing Up Under The Taliban: A Young Woman''s Story', 'https://images.isbndb.com/covers/90/15/9780786869015.jpg'), + ('1573221511', 'Black Girl In Paris', 'https://images.isbndb.com/covers/15/11/9781573221511.jpg'), + ('0812968344', 'A Garden Of Earthly Delights (20th Century Rediscoveries Series)', 'https://images.isbndb.com/covers/83/47/9780812968347.jpg'), + ('0312243111', 'Love In The Ruins', 'https://images.isbndb.com/covers/31/11/9780312243111.jpg'), + ('0375726012', 'The Whore''s Child: Stories', 'https://images.isbndb.com/covers/60/19/9780375726019.jpg'), + ('0812968131', 'Ordinary Life: Stories', 'https://images.isbndb.com/covers/81/32/9780812968132.jpg'), + ('0345423097', 'Joy School (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/30/92/9780345423092.jpg'), + ('0743411358', 'True To Form : A Novel', 'https://images.isbndb.com/covers/13/56/9780743411356.jpg'), + ('0425176487', 'The Pull Of The Moon', 'https://images.isbndb.com/covers/64/81/9780425176481.jpg'), + ('0671441981', 'Ghost Story', 'https://images.isbndb.com/covers/19/82/9780671441982.jpg'), + ('0671673947', 'Seven Stairs: An Adventure Of The Heart (Touchstone Books)', 'https://images.isbndb.com/covers/39/49/9780671673949.jpg'), + ('0440507723', 'The Art Of Family: Rituals, Imagination, And Everyday Spirituality', 'https://images.isbndb.com/covers/77/27/9780440507727.jpg'), + ('0963634291', 'The Thru-hiker''s Handbook (Georgia To Maine 2001): #1 Guide For Long-Distance Hikes On The Appalachian Trail', 'https://images.isbndb.com/covers/42/90/9780963634290.jpg'), + ('0897322096', 'The New Appalachian Trail (Appalachian Hiker)', 'https://images.isbndb.com/covers/20/96/9780897322096.jpg'), + ('0812548051', 'Wizard''s First Rule (Sword Of Truth, Book 1)', 'https://images.isbndb.com/covers/80/51/9780812548051.jpg'), + ('0822011298', 'CliffsNotes On Plato''s The Republic', 'https://images.isbndb.com/covers/12/93/9780822011293.jpg'), + ('0140440488', 'The Republic (Penguin Classics)', 'https://images.isbndb.com/covers/04/85/9780140440485.jpg'), + ('0449215261', 'Ugly American', 'https://images.isbndb.com/covers/52/65/9780449215265.jpg'), + ('0786886471', 'Tin Cup Dreams: A Long Shot Makes It On The PGA Tour', 'https://images.isbndb.com/covers/64/70/9780786886470.jpg'), + ('055357325X', 'The Seventh Gate: A Death Gate Novel, Volume 7', 'https://images.isbndb.com/covers/32/51/9780553573251.jpg'), + ('0553290983', 'Elven Star (The Death Gate Cycle, Volume 2)', 'https://images.isbndb.com/covers/09/81/9780553290981.jpg'), + ('0553295411', 'Fire Sea (The Death Gate Cycle, Vol. 3)', 'https://images.isbndb.com/covers/54/12/9780553295412.jpg'), + ('0553561405', 'Serpent Mage (The Death Gate Cycle, Vol 4)', 'https://images.isbndb.com/covers/14/01/9780553561401.jpg'), + ('0006548180', 'A Cat Among The Pigeons', 'https://images.isbndb.com/covers/81/88/9780006548188.jpg'), + ('1857027051', 'Larrys Party', 'https://images.isbndb.com/covers/70/51/9781857027051.jpg'), + ('1857988027', 'Hope (Gollancz Sf S.)', 'https://images.isbndb.com/covers/80/24/9781857988024.jpg'), + ('0241100100', 'In His Image: Cloning Of A Man', 'https://images.isbndb.com/covers/01/03/9780241100103.jpg'), + ('0552995649', 'Just For The Summer', 'https://images.isbndb.com/covers/56/41/9780552995641.jpg'), + ('1840672013', 'Daughter Of The River', 'https://images.isbndb.com/covers/20/15/9781840672015.jpg'), + ('0575048360', 'Eric (Discworld Novels)', 'https://images.isbndb.com/covers/83/62/9780575048362.jpg'), + ('0753813823', 'Congress Of Rough Riders', 'https://images.isbndb.com/covers/38/29/9780753813829.jpg'), + ('0330354566', 'Love Like Hate Adore', 'https://images.isbndb.com/covers/45/61/9780330354561.jpg'), + ('0349115087', 'A Very English Agent', 'https://images.isbndb.com/covers/50/85/9780349115085.jpg'), + ('0146001788', 'The Judgement And In The Penal Colony (Penguin 60s Classics)', 'https://images.isbndb.com/covers/17/89/9780146001789.jpg'), + ('1857995457', 'High Waving Heather (Phoenix 60p Paperbacks)', 'https://images.isbndb.com/covers/54/59/9781857995459.jpg'), + ('0553288660', 'Pariah', 'https://images.isbndb.com/covers/86/67/9780553288667.jpg'), + ('0694520799', 'Chasing Down The Dawn', 'https://images.isbndb.com/covers/07/94/9780694520794.jpg'), + ('0310342023', 'Armageddon, Oil And The Middle East Crisis', 'https://images.isbndb.com/covers/20/21/9780310342021.jpg'), + ('0688143687', 'Serpent''s Tooth: A Peter Decker/rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/36/88/9780688143688.jpg'), + ('0394722191', 'Ake: The Years Of Childhood', 'https://images.isbndb.com/covers/21/91/9780394722191.jpg'), + ('0805001182', 'The Lynchers', 'https://images.isbndb.com/covers/11/81/9780805001181.jpg'), + ('0140006095', 'Winesburg, Ohio', 'https://images.isbndb.com/covers/60/94/9780140006094.jpg'), + ('006019345X', 'The Divine Secrets Of The Ya Ya Sisterhood', 'https://images.isbndb.com/covers/34/54/9780060193454.jpg'), + ('0394501691', 'Broca''s Brain: Reflections On The Romance Of Science', 'https://images.isbndb.com/covers/16/97/9780394501697.jpg'), + ('0441731538', 'Robot Dreams Tr', 'https://images.isbndb.com/covers/15/34/9780441731534.jpg'), + ('0394721683', 'Jakob Von Gunten: A Novel', 'https://images.isbndb.com/covers/16/82/9780394721682.jpg'), + ('0553210424', 'Metamorphosis', 'https://images.isbndb.com/covers/04/22/9780553210422.jpg'), + ('0140157913', 'It Was A Dark And Stormy Night: The Final Conflict: Yet More Of The Best (?) From The Bulwer-Lytton Fiction Contest (Bulwer-Lytton Contest)', 'https://images.isbndb.com/covers/79/18/9780140157918.jpg'), + ('0060912227', 'Jacques & His Master', 'https://images.isbndb.com/covers/22/22/9780060912222.jpg'), + ('0156997789', 'You Can''t Keep A Good Woman Down - Stories', 'https://images.isbndb.com/covers/77/82/9780156997782.jpg'), + ('1551669196', 'Twice Burned (Mira Romantic Suspense)', 'https://images.isbndb.com/covers/91/99/9781551669199.jpg'), + ('0826404286', 'Winners And Losers: The 1988 Race For The Presidency-One Candidate''s Perspective', 'https://images.isbndb.com/covers/42/82/9780826404282.jpg'), + ('0140096922', 'The Joke', 'https://images.isbndb.com/covers/69/27/9780140096927.jpg'), + ('0140064702', 'Life Is Elsewhere', 'https://images.isbndb.com/covers/47/04/9780140064704.jpg'), + ('0140088393', 'Son Of It Was A Dark And Stormy Night (Bulwer-Lytton Contest)', 'https://images.isbndb.com/covers/83/97/9780140088397.jpg'), + ('014010304X', 'Bride Of Dark And Stormy: Yet More Of The Best (?) From The Bulwer-Lytton Contest', 'https://images.isbndb.com/covers/30/45/9780140103045.jpg'), + ('0553203487', 'Franny And Zooey', 'https://images.isbndb.com/covers/34/86/9780553203486.jpg'), + ('0553123432', 'Snow Leopard', 'https://images.isbndb.com/covers/34/32/9780553123432.jpg'), + ('0140059245', 'The Book Of Laughter And Forgetting (Writers From The Other Europe)', 'https://images.isbndb.com/covers/92/43/9780140059243.jpg'), + ('0679724222', 'Holidays In Hell', 'https://images.isbndb.com/covers/42/23/9780679724223.jpg'), + ('0156970902', 'Wind, Sand And Stars', 'https://images.isbndb.com/covers/09/07/9780156970907.jpg'), + ('067973502X', 'Republic Of Fear: The Inside Story Of Saddam''s Iraq', 'https://images.isbndb.com/covers/50/21/9780679735021.jpg'), + ('0345335864', 'Christian''s Secret Of A Happy Life', 'https://images.isbndb.com/covers/58/69/9780345335869.jpg'), + ('0452011116', 'Breaking Down The Wall Of Silence: The Liberating Experience Of Facing Painful Truth', 'https://images.isbndb.com/covers/11/13/9780452011113.jpg'), + ('0385473079', 'The Return Of The Prodigal Son: A Story Of Homecoming', 'https://images.isbndb.com/covers/30/71/9780385473071.jpg'), + ('0345292340', 'Fahrenheit 451', 'https://images.isbndb.com/covers/23/46/9780345292346.jpg'), + ('0380003333', 'The Clown', 'https://images.isbndb.com/covers/33/34/9780380003334.jpg'), + ('080410378X', 'Love In The Ruins', 'https://images.isbndb.com/covers/37/87/9780804103787.jpg'), + ('0871563223', 'Track Of The Grizzly', 'https://images.isbndb.com/covers/32/24/9780871563224.jpg'), + ('1557783446', 'Stealing From America: A History Of Corruption From Jamestown To Reagan', 'https://images.isbndb.com/covers/34/48/9781557783448.jpg'), + ('0679442405', 'Traveling Mercies: Some Thoughts On Faith', 'https://images.isbndb.com/covers/24/00/9780679442400.jpg'), + ('0671250841', 'KARMA COLA P (A Touchstone Book)', 'https://images.isbndb.com/covers/08/43/9780671250843.jpg'), + ('3442723183', 'Längengrad', 'https://images.isbndb.com/covers/31/88/9783442723188.jpg'), + ('0373078056', 'Man To Trust (Trinity Street West) (Silhouette Intimate Moments, No 805)', 'https://images.isbndb.com/covers/80/59/9780373078059.jpg'), + ('1551660016', 'Devil''S Own (Astray & Devil)', 'https://images.isbndb.com/covers/00/11/9781551660011.jpg'), + ('0821746219', 'Bright Star''s Promise (Lovegram Historical Romances)', 'https://images.isbndb.com/covers/62/19/9780821746219.jpg'), + ('0373169264', 'A Baby For Lord Roderick (Royal Flash) (Harlequin American Romance)', 'https://images.isbndb.com/covers/92/69/9780373169269.jpg'), + ('0373169841', 'Montana Twins (Harlequin American Romance, No 984)', 'https://images.isbndb.com/covers/98/49/9780373169849.jpg'), + ('0821758969', 'A Mother''s Heart', 'https://images.isbndb.com/covers/89/60/9780821758960.jpg'), + ('084394272X', 'Purity (Dangerous Virtues Series)', 'https://images.isbndb.com/covers/27/29/9780843942729.jpg'), + ('0373222823', 'Dominoes (Harlequin Intrigue)', 'https://images.isbndb.com/covers/28/27/9780373222827.jpg'), + ('0843948884', 'Fallen (Leisure Historical Romance)', 'https://images.isbndb.com/covers/88/82/9780843948882.jpg'), + ('0373501757', 'Man With A Past', 'https://images.isbndb.com/covers/17/55/9780373501755.jpg'), + ('0380818078', 'When It''s Perfect (Avon Romantic Treasures)', 'https://images.isbndb.com/covers/80/75/9780380818075.jpg'), + ('0373031939', 'Wrong Kind Of Man (Harlequin Romance)', 'https://images.isbndb.com/covers/19/31/9780373031931.jpg'), + ('037310507X', 'South Of Capricorn (Harlequin Presents Series, No. 507)', 'https://images.isbndb.com/covers/50/76/9780373105076.jpg'), + ('0373482949', 'Honor Bound', 'https://images.isbndb.com/covers/29/48/9780373482948.jpg'), + ('0671469134', 'Sweet Rush Of April', 'https://images.isbndb.com/covers/91/39/9780671469139.jpg'), + ('0373288816', 'Magician''S Quest (Harlequin Historical)', 'https://images.isbndb.com/covers/88/16/9780373288816.jpg'), + ('037365054X', 'Rich , Rugged...Ruthless (Montana Mavericks)', 'https://images.isbndb.com/covers/05/45/9780373650545.jpg'), + ('0373706898', 'The Man From Blue River : Home On The Ranch (Harlequin Superromance No. 689)', 'https://images.isbndb.com/covers/68/91/9780373706891.jpg'), + ('0373885121', 'Someone Waiting (Western Lovers: Hitched In Haste #12)', 'https://images.isbndb.com/covers/51/21/9780373885121.jpg'), + ('0373098855', 'Vow To Love (Vows) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/88/59/9780373098859.jpg'), + ('0373076223', 'An Irresistible Man (Silhouette Intimate Moments, No 622)', 'https://images.isbndb.com/covers/62/22/9780373076222.jpg'), + ('0373821514', 'Mother Knows Best (Family Continuity Program Ser., No. 3)', 'https://images.isbndb.com/covers/15/18/9780373821518.jpg'), + ('0373288093', 'Honeyed Lies.. (Harlequin Historical)', 'https://images.isbndb.com/covers/80/90/9780373288090.jpg'), + ('155166531X', 'Tiger Prince', 'https://images.isbndb.com/covers/53/13/9781551665313.jpg'), + ('0373240899', 'The Wrong Man... The Right Time (Silhouette Special Edition)', 'https://images.isbndb.com/covers/08/90/9780373240890.jpg'), + ('0380815346', 'NO MARRIAGE CONVENIENCE MM (Avon Romantic Treasure)', 'https://images.isbndb.com/covers/53/40/9780380815340.jpg'), + ('037321703X', 'Big, Bad Wolfe, At The Altar! Big, Bad Wolfe, At The Altar! (Big, Bad Wolfe Omibus)', 'https://images.isbndb.com/covers/70/38/9780373217038.jpg'), + ('0446360732', 'A Treasure Worth Seeking', 'https://images.isbndb.com/covers/07/39/9780446360739.jpg'), + ('0373093829', 'In The Name Of Love (Silhouette Special Edition)', 'https://images.isbndb.com/covers/38/23/9780373093823.jpg'), + ('0373096828', 'Yours, Mine And ...Ours (Silhouette Special Edition)', 'https://images.isbndb.com/covers/68/24/9780373096824.jpg'), + ('0373099150', 'Bachelor Dad (Silhouette Special Edition)', 'https://images.isbndb.com/covers/91/53/9780373099153.jpg'), + ('0821718398', 'Defiant Mistress', 'https://images.isbndb.com/covers/83/91/9780821718391.jpg'), + ('0843946466', 'Hawk', 'https://images.isbndb.com/covers/64/68/9780843946468.jpg'), + ('0373168721', 'Have Baby, Need Beau (A Walk Down The Aisle: Wedding Celebration #4) (Harlequin American Romance, No 872)', 'https://images.isbndb.com/covers/87/29/9780373168729.jpg'), + ('0373164386', 'Father Knows Best (Harlequin American Romance, No. 438)', 'https://images.isbndb.com/covers/43/87/9780373164387.jpg'), + ('0373451903', 'The Last Frontier (Men Made In America: South Carolina #40)', 'https://images.isbndb.com/covers/19/06/9780373451906.jpg'), + ('0373169035', 'Her Passionate Pirate (Harlequin American Romance)', 'https://images.isbndb.com/covers/90/30/9780373169030.jpg'), + ('0743436466', 'The Nanotech War (Star Trek Voyager)', 'https://images.isbndb.com/covers/64/65/9780743436465.jpg'), + ('067178577X', 'Thin Air (Star Trek: New Earth, Book 5)', 'https://images.isbndb.com/covers/57/72/9780671785772.jpg'), + ('0373168411', 'The Bride Said, Finally! The Lockharts Of Texas (Harlequin American Romance, No. 841)', 'https://images.isbndb.com/covers/84/15/9780373168415.jpg'), + ('0553567683', 'Adam''s Fall', 'https://images.isbndb.com/covers/76/87/9780553567687.jpg'), + ('0446603090', 'Bittersweet Rain', 'https://images.isbndb.com/covers/30/96/9780446603096.jpg'), + ('0373099894', 'This Child Is Mine (Silhouette Special Edition)', 'https://images.isbndb.com/covers/98/94/9780373099894.jpg'), + ('0380774542', 'The Lady And The Outlaw', 'https://images.isbndb.com/covers/45/48/9780380774548.jpg'), + ('0061083402', 'The Bandit''s Lady (Harper Monogram)', 'https://images.isbndb.com/covers/34/02/9780061083402.jpg'), + ('0373451555', 'Deceptions (Men Made In America: California #5)', 'https://images.isbndb.com/covers/15/55/9780373451555.jpg'), + ('0373077289', 'Leader Of The Pack (Trinity Street West) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/72/81/9780373077281.jpg'), + ('0373168683', 'Montana Mail-Order Wife (Identity Swap) (Harlequin American Romance, No 868)', 'https://images.isbndb.com/covers/86/82/9780373168682.jpg'), + ('0373169493', 'Their Instant Baby: The Deveraux Legacy (Harlequin American Romance, No 949)', 'https://images.isbndb.com/covers/94/98/9780373169498.jpg'), + ('0373451806', 'Moments Harsh, Moments Gentle (Men Made In America: New Jersey #30)', 'https://images.isbndb.com/covers/18/07/9780373451807.jpg'), + ('0373168748', 'Cowboy With A Secret (Harlequin American Romance)', 'https://images.isbndb.com/covers/87/43/9780373168743.jpg'), + ('0373225202', 'Secret Lover (Harlequin Intrigue Series #520)', 'https://images.isbndb.com/covers/52/00/9780373225200.jpg'), + ('0373168527', 'The Marriage Portrait (Harlequin American Romance, No 852)', 'https://images.isbndb.com/covers/85/21/9780373168521.jpg'), + ('0373705247', 'String Of Miracles (Harlequin Super Romance)', 'https://images.isbndb.com/covers/52/45/9780373705245.jpg'), + ('0373118775', 'Final Proposal (The Marriage Maker) (Harlequin Presents)', 'https://images.isbndb.com/covers/87/79/9780373118779.jpg'), + ('0373168632', 'The Pregnant Ms. Potter (Harlequin American Romance, No 863)', 'https://images.isbndb.com/covers/86/37/9780373168637.jpg'), + ('0373169779', 'Frisco Joe''s Fiancee: Cowboys By The Dozen! (Harlequin American Romance, No 977)', 'https://images.isbndb.com/covers/97/71/9780373169771.jpg'), + ('055329783X', 'A Whole New Light', 'https://images.isbndb.com/covers/78/36/9780553297836.jpg'), + ('0373169760', 'Inherited: One Baby! (Harlequin American Romance, No 976)', 'https://images.isbndb.com/covers/97/64/9780373169764.jpg'), + ('0373166958', 'Quick Find A Ring (Three Weddings & A Hurricane) (Harlequin American Romance)', 'https://images.isbndb.com/covers/69/54/9780373166954.jpg'), + ('0671835645', 'Tanya', 'https://images.isbndb.com/covers/56/44/9780671835644.jpg'), + ('0373168675', 'Rent A Millionaire Groom (2001 Ways To Wed) (Harlequin American Romance)', 'https://images.isbndb.com/covers/86/75/9780373168675.jpg'), + ('0373451547', 'Another Kind Of Love (Men Made In America: Arkansas #4)', 'https://images.isbndb.com/covers/15/48/9780373451548.jpg'), + ('0373169620', 'Diagnosis: Expecting Boss''s Baby: The Babies Of Doctors Circle (Harlequin American Romance, No 962)', 'https://images.isbndb.com/covers/96/27/9780373169627.jpg'), + ('037316596X', 'Counterfeit Husband (Harlequin American Romance)', 'https://images.isbndb.com/covers/59/64/9780373165964.jpg'), + ('0373169736', 'Taking Over The Tycoon: The Deveraux Legacy (Harlequin American Romance, No 973)', 'https://images.isbndb.com/covers/97/33/9780373169733.jpg'), + ('037316954X', 'Commander''s Little Surprise: Grooms In Uniform (Harlequin American Romance, No 954)', 'https://images.isbndb.com/covers/95/42/9780373169542.jpg'), + ('0373650396', 'In The Arms Of A Hero (The Fortunes Of Texas)', 'https://images.isbndb.com/covers/03/92/9780373650392.jpg'), + ('0441023142', 'A Night In The Netherhells', 'https://images.isbndb.com/covers/31/41/9780441023141.jpg'), + ('0373257813', 'Manhunting In Miami (Manhunting ...) (Temptation)', 'https://images.isbndb.com/covers/78/12/9780373257812.jpg'), + ('0373201575', 'Sons Of Texas: Cowboys And Wedding Bells (By Request) (Harlequin By Request: Sons Of Texas)', 'https://images.isbndb.com/covers/15/70/9780373201570.jpg'), + ('0373030932', 'Master Of Glen Crannach (Harlequin Romance)', 'https://images.isbndb.com/covers/09/34/9780373030934.jpg'), + ('0451180143', 'A Regency Christmas VII', 'https://images.isbndb.com/covers/01/48/9780451180148.jpg'), + ('0373160011', 'Tomorrow''s Promise (Harlequin American Romance, #1)', 'https://images.isbndb.com/covers/00/13/9780373160013.jpg'), + ('0373898347', 'Lord Of The High Lonesome', 'https://images.isbndb.com/covers/83/43/9780373898343.jpg'), + ('0373201427', 'A Family Christmas', 'https://images.isbndb.com/covers/14/26/9780373201426.jpg'), + ('0373115113', 'Dark Heritage (Harlequin Presents)', 'https://images.isbndb.com/covers/51/12/9780373115112.jpg'), + ('037316968X', 'High-Tide Bride (Harlequin American Romance, No 968)', 'https://images.isbndb.com/covers/96/89/9780373169689.jpg'), + ('0373169531', 'Jackpot Baby: Millionaire, Montana (Harlequin American Romance, No 953)', 'https://images.isbndb.com/covers/95/35/9780373169535.jpg'), + ('0373168705', 'The Virgin Bride Said, "Wow!" (The Lockharts Of Texas) (Harlequin American Romance # 870)', 'https://images.isbndb.com/covers/87/05/9780373168705.jpg'), + ('0373169868', 'Ranger''s Wild Woman (Harlequin American Romance, No. 986)(Cowboys By The Dozen)', 'https://images.isbndb.com/covers/98/63/9780373169863.jpg'), + ('0671519077', 'INDIGO FIRE', 'https://images.isbndb.com/covers/90/70/9780671519070.jpg'), + ('0373108400', 'Fantasy (Harlequin Presents)', 'https://images.isbndb.com/covers/84/04/9780373108404.jpg'), + ('037316985X', 'Cowboy Lessons (Harlequin American Romance)', 'https://images.isbndb.com/covers/98/56/9780373169856.jpg'), + ('0373289871', 'Knights Of Christmas (Harlequin Historicals, No 387)', 'https://images.isbndb.com/covers/98/75/9780373289875.jpg'), + ('1878702823', 'Call Back Our Yesterdays', 'https://images.isbndb.com/covers/28/21/9781878702821.jpg'), + ('0373099169', 'Interrupted Marriage (Silhouette Special Edition)', 'https://images.isbndb.com/covers/91/60/9780373099160.jpg'), + ('0515087998', 'Her Man Of Affairs', 'https://images.isbndb.com/covers/79/94/9780515087994.jpg'), + ('0553220284', 'A Whole New Light', 'https://images.isbndb.com/covers/02/85/9780553220285.jpg'), + ('0373253184', 'Fulfillment', 'https://images.isbndb.com/covers/31/80/9780373253180.jpg'), + ('0373169566', 'Under Alaskan Skies (Harlequin American Romance, No 956)', 'https://images.isbndb.com/covers/95/66/9780373169566.jpg'), + ('0373290012', 'By King''S Decree (Harlequin Historical Romance)', 'https://images.isbndb.com/covers/00/17/9780373290017.jpg'), + ('0671535706', 'Beyond The Birds And The Bees', 'https://images.isbndb.com/covers/57/04/9780671535704.jpg'), + ('0373290438', 'Pride Of Lions (Harlequin Historical)', 'https://images.isbndb.com/covers/04/37/9780373290437.jpg'), + ('0061093343', 'Fault Lines', 'https://images.isbndb.com/covers/33/40/9780061093340.jpg'), + ('0373706871', 'The Cupid Chronicles (The Camerons Of Colorado, Book 3) (Harlequin Superromance, No 687)', 'https://images.isbndb.com/covers/68/77/9780373706877.jpg'), + ('0373106734', 'Caribbean Confusion', 'https://images.isbndb.com/covers/67/38/9780373106738.jpg'), + ('0373898339', 'That Carolina Summer (Americana, North Carolina #33)', 'https://images.isbndb.com/covers/83/36/9780373898336.jpg'), + ('0373169361', 'The Rich Girl Goes Wild (Harlequin American Romance, No 936)', 'https://images.isbndb.com/covers/93/68/9780373169368.jpg'), + ('0373169329', 'Stranded At Cupid''s Hideaway (Harlequin American Romance, No 932)', 'https://images.isbndb.com/covers/93/20/9780373169320.jpg'), + ('0373169191', 'The Blacksheep''s Arranged Marriage (Billion-Dollar Braddocks) (Harlequin American Romance)', 'https://images.isbndb.com/covers/91/91/9780373169191.jpg'), + ('0821767720', 'Valentine Rogues (Zebra Regency Romance)', 'https://images.isbndb.com/covers/77/26/9780821767726.jpg'), + ('0373025920', 'No Room In His Life (Harlequin Romance)', 'https://images.isbndb.com/covers/59/23/9780373025923.jpg'), + ('0373072422', 'More Than A Miracle (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/24/22/9780373072422.jpg'), + ('0440224454', 'The Pink Flamingo Murders', 'https://images.isbndb.com/covers/44/57/9780440224457.jpg'), + ('0312956762', 'Die Hard: With A Vengeance - A Novel', 'https://images.isbndb.com/covers/67/69/9780312956769.jpg'), + ('0373288646', 'Pearl Beyond Price (Harlequin Historical)', 'https://images.isbndb.com/covers/86/49/9780373288649.jpg'), + ('0373076746', 'Morning Side Of Dawn (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/67/41/9780373076741.jpg'), + ('037370643X', 'Every Move You Make : 4 Strong Men (Harlequin Superromance No. 643)', 'https://images.isbndb.com/covers/64/33/9780373706433.jpg'), + ('0373241437', 'Cop And The Cradle (Switched At Birth) (Harlequin Special Edition)', 'https://images.isbndb.com/covers/14/39/9780373241439.jpg'), + ('0373074808', 'Diamond Willow (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/48/08/9780373074808.jpg'), + ('0373765053', 'Billionaire Boss (Matched In Montana)', 'https://images.isbndb.com/covers/50/58/9780373765058.jpg'), + ('0061042331', 'Gemstone', 'https://images.isbndb.com/covers/23/31/9780061042331.jpg'), + ('0373093918', 'Some Warm Hunger (Silhouette Special Edition)', 'https://images.isbndb.com/covers/39/15/9780373093915.jpg'), + ('0786000139', 'Across Forever', 'https://images.isbndb.com/covers/01/35/9780786000135.jpg'), + ('0373114931', 'Dance For A Stranger (Harlequin Presents)', 'https://images.isbndb.com/covers/49/31/9780373114931.jpg'), + ('0440211352', 'Seduced', 'https://images.isbndb.com/covers/13/58/9780440211358.jpg'), + ('0425105156', 'Accent On Desire (Second Chance At Love)', 'https://images.isbndb.com/covers/51/53/9780425105153.jpg'), + ('0373074492', 'Conard County: Exile''s End ( Silhouette Intimate Moments #449)', 'https://images.isbndb.com/covers/44/95/9780373074495.jpg'), + ('0449223515', 'Lady Whilton''s Wedding', 'https://images.isbndb.com/covers/35/12/9780449223512.jpg'), + ('0886778212', 'Mob Magic', 'https://images.isbndb.com/covers/82/17/9780886778217.jpg'), + ('0373024665', 'Dark Enigma (Harlequin Romance #2466)', 'https://images.isbndb.com/covers/46/67/9780373024667.jpg'), + ('0373650159', 'Nine Months (Harlequin 36 Hours, No 10)', 'https://images.isbndb.com/covers/01/56/9780373650156.jpg'), + ('0671775235', 'The Valiant (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/52/30/9780671775230.jpg'), + ('0553279335', 'Star Trek The New Voyages 2 (Star Trek)', 'https://images.isbndb.com/covers/93/37/9780553279337.jpg'), + ('0425058247', 'Memory Of Lions/a', 'https://images.isbndb.com/covers/82/44/9780425058244.jpg'), + ('037329011X', 'Lion''S Lady (The Sutherland Series) (Historical)', 'https://images.isbndb.com/covers/01/16/9780373290116.jpg'), + ('055322039X', 'Gambling Lady (Dreamweavers)', 'https://images.isbndb.com/covers/03/91/9780553220391.jpg'), + ('0373704070', 'Streets Of Fire (Superromance)', 'https://images.isbndb.com/covers/40/71/9780373704071.jpg'), + ('0373097840', 'When Somebody Needs You (Silhouette Special Edition)', 'https://images.isbndb.com/covers/78/45/9780373097845.jpg'), + ('037319692X', 'Most Eligible Doctor (Silhouette Romance)', 'https://images.isbndb.com/covers/69/20/9780373196920.jpg'), + ('0373241224', 'Seven Reasons Why (Harlequin Special Edition)', 'https://images.isbndb.com/covers/12/24/9780373241224.jpg'), + ('0373291175', 'Bandera''s Bride (Harlequin Historicals, No 517)', 'https://images.isbndb.com/covers/11/75/9780373291175.jpg'), + ('0449232131', 'The Queen''s Confession', 'https://images.isbndb.com/covers/21/32/9780449232132.jpg'), + ('0449129047', 'Walk In Beauty', 'https://images.isbndb.com/covers/90/43/9780449129043.jpg'), + ('0671019147', 'Republic (Star Trek: My Brother''s Keeper, Book 1)', 'https://images.isbndb.com/covers/91/43/9780671019143.jpg'), + ('0373501749', 'Baby Wanted (Montana Mavericks #10)', 'https://images.isbndb.com/covers/17/48/9780373501748.jpg'), + ('0373079184', 'Mother Of His Child (Conveniently Wed) (Silhouette Intimate Moments No. 918)', 'https://images.isbndb.com/covers/91/86/9780373079186.jpg'), + ('037310667X', 'Forgotten Passion (Harlequin Presents # 667)', 'https://images.isbndb.com/covers/66/77/9780373106677.jpg'), + ('0373292155', 'The Texan (Harlequin Historical)', 'https://images.isbndb.com/covers/21/58/9780373292158.jpg'), + ('0373116373', 'Corsican Gambit (Harlequin Presents)', 'https://images.isbndb.com/covers/63/79/9780373116379.jpg'), + ('0373288050', 'Raven And The Swan (Harlequin Historical)', 'https://images.isbndb.com/covers/80/52/9780373288052.jpg'), + ('0345435419', 'Shadow Hunter (Star Wars: Darth Maul)', 'https://images.isbndb.com/covers/54/15/9780345435415.jpg'), + ('0373051921', 'More Than Promises', 'https://images.isbndb.com/covers/19/22/9780373051922.jpg'), + ('037329106X', 'Virgin Spring (Historical, 506)', 'https://images.isbndb.com/covers/10/69/9780373291069.jpg'), + ('0373114206', 'One Girl At A Time (Harlequin Presents #1420)', 'https://images.isbndb.com/covers/42/07/9780373114207.jpg'), + ('082173427X', 'Wild Wyoming Love (Heart Fire)', 'https://images.isbndb.com/covers/42/78/9780821734278.jpg'), + ('0373291205', 'Lady Of Lyonsbridge (Historical, 529)', 'https://images.isbndb.com/covers/12/05/9780373291205.jpg'), + ('0373254571', 'Stud (Harlequin Temptation)', 'https://images.isbndb.com/covers/45/76/9780373254576.jpg'), + ('0373163541', 'Humble Pie (Harlequin American Romance)', 'https://images.isbndb.com/covers/35/40/9780373163540.jpg'), + ('0373243022', 'Lonesome No More (Harlequin Special Edition)', 'https://images.isbndb.com/covers/30/20/9780373243020.jpg'), + ('0449125394', 'Stardust', 'https://images.isbndb.com/covers/53/97/9780449125397.jpg'), + ('0553219510', 'Long Time Coming', 'https://images.isbndb.com/covers/95/17/9780553219517.jpg'), + ('0373166575', 'Littlest Angel (Gift-Wrapped Grooms) (Harlequin American Romance)', 'https://images.isbndb.com/covers/65/72/9780373166572.jpg'), + ('0373168802', 'Family: The Secret Ingredient (Harlequin American Romance)', 'https://images.isbndb.com/covers/88/04/9780373168804.jpg'), + ('0821745085', 'Velvet Thunder (Heartfire Romance)', 'https://images.isbndb.com/covers/50/83/9780821745083.jpg'), + ('0553219928', 'JOKER''S WILD (Loveswept)', 'https://images.isbndb.com/covers/99/20/9780553219920.jpg'), + ('0553440136', 'SOPHISTICATED LADY', 'https://images.isbndb.com/covers/01/33/9780553440133.jpg'), + ('0373162510', 'Honeymoon Hotel (Harlequin American Romance, No. 251)', 'https://images.isbndb.com/covers/25/12/9780373162512.jpg'), + ('0445206608', 'The White Raven', 'https://images.isbndb.com/covers/66/01/9780445206601.jpg'), + ('051506162X', 'Lured Into Dawn', 'https://images.isbndb.com/covers/16/28/9780515061628.jpg'), + ('0373074123', 'Bad Moon Rising (Silhouette Intimate Moments # 412)', 'https://images.isbndb.com/covers/41/29/9780373074129.jpg'), + ('0373291213', 'Blushing Bride (Historical, 521)', 'https://images.isbndb.com/covers/12/12/9780373291212.jpg'), + ('0373286740', 'Mission Of Mercy (Harlequin Historical)', 'https://images.isbndb.com/covers/67/44/9780373286744.jpg'), + ('0373121369', 'Mistress Of The Sheikh', 'https://images.isbndb.com/covers/13/66/9780373121366.jpg'), + ('0373099568', 'A Secret And A Bridal Pledge (This Time Forever) (Silhouette Special Edition, No 956)', 'https://images.isbndb.com/covers/95/66/9780373099566.jpg'), + ('0671047574', 'Maximum Warp Book Two: Forever Dark (Star Trek The Next Generation, No 63)', 'https://images.isbndb.com/covers/75/73/9780671047573.jpg'), + ('0373071485', 'For Old Time''s Sake (Silhouette Intimate Moments, No 148)', 'https://images.isbndb.com/covers/14/87/9780373071487.jpg'), + ('037328926X', 'My Lady''S Champion (Harlequin Historical)', 'https://images.isbndb.com/covers/92/64/9780373289264.jpg'), + ('0373165676', 'Buffalo Mccloud (Harlequin American Romance)', 'https://images.isbndb.com/covers/56/74/9780373165674.jpg'), + ('0373118651', 'Mirror Bride (The Marriage Maker) (Harlequin Presents)', 'https://images.isbndb.com/covers/86/56/9780373118656.jpg'), + ('0373121482', 'The Baby Claim (Harlequin Presents, 2148)', 'https://images.isbndb.com/covers/14/89/9780373121489.jpg'), + ('0553220012', 'Temperatures Rising (Loveswept No. 336)', 'https://images.isbndb.com/covers/00/18/9780553220018.jpg'), + ('0553444433', 'IMAGINARY LOVER (Loveswept)', 'https://images.isbndb.com/covers/44/38/9780553444438.jpg'), + ('0373289537', 'Lady Thorn (Harlequin Historical)', 'https://images.isbndb.com/covers/95/30/9780373289530.jpg'), + ('0373162227', 'Summer''S Witness (Harlequin American Romance)', 'https://images.isbndb.com/covers/22/22/9780373162222.jpg'), + ('0373288212', 'Fourth Of Forever (Harlequin Historical)', 'https://images.isbndb.com/covers/82/12/9780373288212.jpg'), + ('0373098847', 'Dangerous Alliance (Men Of Courage) (Silhouette Special Edition, No 884)', 'https://images.isbndb.com/covers/88/42/9780373098842.jpg'), + ('0373710550', 'Fleet Hospital: In Uniform (Harlequin Superromance No. 1055)', 'https://images.isbndb.com/covers/05/53/9780373710553.jpg'), + ('0373151896', 'Christmas Magic', 'https://images.isbndb.com/covers/18/99/9780373151899.jpg'), + ('0373288727', 'Lion Of The North (Harlequin Historical)', 'https://images.isbndb.com/covers/87/24/9780373288724.jpg'), + ('0373077351', 'Bringing Benjy Home (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/73/59/9780373077359.jpg'), + ('0440169836', 'Playing With Fire (Candlelight Ecstasy Romance, No 427)', 'https://images.isbndb.com/covers/98/33/9780440169833.jpg'), + ('0373075367', 'Beyond All Reason (Wide Open Spaces) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/53/62/9780373075362.jpg'), + ('0440112907', 'Cactus Rose', 'https://images.isbndb.com/covers/29/07/9780440112907.jpg'), + ('0440173787', 'Restless Wind (Candlelight Ecstasy Romance)', 'https://images.isbndb.com/covers/37/86/9780440173786.jpg'), + ('0373032072', 'Man Of Truth (Harlequin Romance No. 3207)', 'https://images.isbndb.com/covers/20/75/9780373032075.jpg'), + ('0373097735', 'Tilt At Windmills (Silhouette Special Edition, #773)', 'https://images.isbndb.com/covers/77/39/9780373097739.jpg'), + ('0380897857', 'Splintered Moon (Velvet Glove)', 'https://images.isbndb.com/covers/78/58/9780380897858.jpg'), + ('0373106696', 'Trust In Summer Madness (Harlequin Presents No. 669)', 'https://images.isbndb.com/covers/66/91/9780373106691.jpg'), + ('037307638X', 'Out Of The Dark (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/63/83/9780373076383.jpg'), + ('0373099738', 'The Bride Price (That Special Woman) (Silhouette Special Edition, No 973)', 'https://images.isbndb.com/covers/97/33/9780373099733.jpg'), + ('0373707002', 'She Caught The Sheriff (Home On The Ranch, Book 5) (Harlequin Superromance, No 700)', 'https://images.isbndb.com/covers/70/03/9780373707003.jpg'), + ('0373111622', 'Exclusively Yours (Harlequin Presents, No. 1162)', 'https://images.isbndb.com/covers/16/26/9780373111626.jpg'), + ('0373162111', 'Second Harmony (Harlequin American Romance)', 'https://images.isbndb.com/covers/21/16/9780373162116.jpg'), + ('0373290055', 'Gabriel''s Heart (March Madness) (Harlequin Historical)', 'https://images.isbndb.com/covers/00/55/9780373290055.jpg'), + ('0373076932', 'Guarding Raine (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/69/32/9780373076932.jpg'), + ('0553445006', 'BAD TO THE BONE (Treasured Tales)', 'https://images.isbndb.com/covers/50/08/9780553445008.jpg'), + ('0553217771', '22 Indigo Place (Loveswept, #154)', 'https://images.isbndb.com/covers/77/73/9780553217773.jpg'), + ('0373243685', 'Expectant Bride-To-Be (Here Comes The Brides) (Silhouette Special Edition, No 1368)', 'https://images.isbndb.com/covers/36/86/9780373243686.jpg'), + ('0373167520', 'Doorstep Daddy (The Holiday Heart) (Harlequin American Romance)', 'https://images.isbndb.com/covers/75/24/9780373167524.jpg'), + ('0373076592', 'Hunted (Silhouette Sensation) (Silhouette Intimate Moments No. 659)', 'https://images.isbndb.com/covers/65/98/9780373076598.jpg'), + ('0373035101', 'Mail - Order Mother (Romance)', 'https://images.isbndb.com/covers/51/06/9780373035106.jpg'), + ('0373254547', 'Naughty Thoughts (Harlequin Temptation)', 'https://images.isbndb.com/covers/45/45/9780373254545.jpg'), + ('0373288506', 'Roarke''s Folly (Harlequin Historical, No 250)', 'https://images.isbndb.com/covers/85/02/9780373288502.jpg'), + ('0446606448', 'Ciara''s Song: A Chronicle Of The Witch World', 'https://images.isbndb.com/covers/64/48/9780446606448.jpg'), + ('0373107072', 'Illusion Of Love (Harlequin Presents No 707)', 'https://images.isbndb.com/covers/70/70/9780373107070.jpg'), + ('0445208848', 'Savage Tides (Lovestruck)', 'https://images.isbndb.com/covers/88/41/9780445208841.jpg'), + ('0821749374', 'Summer Wind', 'https://images.isbndb.com/covers/93/71/9780821749371.jpg'), + ('0821718053', 'Crimson Rapture', 'https://images.isbndb.com/covers/80/56/9780821718056.jpg'), + ('0312901925', 'The Fallen Angels', 'https://images.isbndb.com/covers/19/29/9780312901929.jpg'), + ('0553289993', 'The Wizard Of Seattle', 'https://images.isbndb.com/covers/99/92/9780553289992.jpg'), + ('0671460412', 'A Distant Castle', 'https://images.isbndb.com/covers/04/19/9780671460419.jpg'), + ('0373790538', 'Double The Pleasure: Twins (Harlequin Blaze)', 'https://images.isbndb.com/covers/05/31/9780373790531.jpg'), + ('0515058181', 'Intriguing Lady', 'https://images.isbndb.com/covers/81/85/9780515058185.jpg'), + ('0373224915', 'Spencer''s Secret (The Spencer Brothers) (Harlequin Intrigue)', 'https://images.isbndb.com/covers/49/13/9780373224913.jpg'), + ('0373709560', 'A Daughter''s Place (Harlequin Superromance No. 956)', 'https://images.isbndb.com/covers/95/64/9780373709564.jpg'), + ('0373105401', 'NOT FAR ENOUGH', 'https://images.isbndb.com/covers/54/03/9780373105403.jpg'), + ('0671495429', 'Out Of Bounds (Silhouette Desire, 118)', 'https://images.isbndb.com/covers/54/28/9780671495428.jpg'), + ('0061096156', 'Society Of The Mind: A Cyberthriller', 'https://images.isbndb.com/covers/61/50/9780061096150.jpg'), + ('0441007147', 'Wrapt In Crystal', 'https://images.isbndb.com/covers/71/41/9780441007141.jpg'), + ('0451161122', 'The War Birds (Signet)', 'https://images.isbndb.com/covers/11/23/9780451161123.jpg'), + ('0671032569', 'Vectors: Double Helix #2 (Star Trek Next Generation: Double Helix)', 'https://images.isbndb.com/covers/25/62/9780671032562.jpg'), + ('0553569651', 'On Wings Of Magic', 'https://images.isbndb.com/covers/96/50/9780553569650.jpg'), + ('0821744798', 'Wild Texas Blossom (Heartfire Romance)', 'https://images.isbndb.com/covers/47/96/9780821744796.jpg'), + ('0345379055', 'The King Beyond The Gate (Drenai Tales, Book 2)', 'https://images.isbndb.com/covers/90/54/9780345379054.jpg'), + ('0061083577', 'Chickadee (Harper Monogram)', 'https://images.isbndb.com/covers/35/70/9780061083570.jpg'), + ('0373161387', 'Edge Of Forever (Harlequin American Romance)', 'https://images.isbndb.com/covers/13/86/9780373161386.jpg'), + ('0373109040', 'An Unbreakable Bond (Harlequin Presents, No 904)', 'https://images.isbndb.com/covers/90/43/9780373109043.jpg'), + ('0451456823', 'Invasion America: A Novel', 'https://images.isbndb.com/covers/68/23/9780451456823.jpg'), + ('0345276353', 'Master Of The Five Magics', 'https://images.isbndb.com/covers/63/53/9780345276353.jpg'), + ('0671042092', 'Swordhunt (Star Trek, No. 95: Rihannsu, Book 3)', 'https://images.isbndb.com/covers/20/97/9780671042097.jpg'), + ('0312980353', 'Circle Of Stars', 'https://images.isbndb.com/covers/03/51/9780312980351.jpg'), + ('0373117949', 'Indiscretions (Bride''s Bay Resort, Book 2) (Harlequin Presents, No 1794)', 'https://images.isbndb.com/covers/79/49/9780373117949.jpg'), + ('0671473646', 'Sweetheart Contract (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/36/48/9780671473648.jpg'), + ('037370707X', 'Texas Standoff: Home On The Ranch (Harlequin Superromance No. 707)', 'https://images.isbndb.com/covers/70/72/9780373707072.jpg'), + ('0373166877', 'Daddy Warlock (Harlequin American Romance #687)', 'https://images.isbndb.com/covers/68/79/9780373166879.jpg'), + ('0553443976', 'SLOW HANDS (Loveswept)', 'https://images.isbndb.com/covers/39/74/9780553443974.jpg'), + ('0373118716', 'Meant To Marry (The Marriage Maker) (Harlequin Presents)', 'https://images.isbndb.com/covers/87/17/9780373118717.jpg'), + ('0743410645', 'Restoration (Star Trek New Frontier: Excalibur, Book 3)', 'https://images.isbndb.com/covers/06/49/9780743410649.jpg'), + ('0449140180', 'Storm Over Sabrehill', 'https://images.isbndb.com/covers/01/85/9780449140185.jpg'), + ('0553443119', 'PRIVATE LESSONS (Loveswept)', 'https://images.isbndb.com/covers/31/10/9780553443110.jpg'), + ('0821740296', 'Lone Star Loving', 'https://images.isbndb.com/covers/02/93/9780821740293.jpg'), + ('0373165544', 'Invisible Groom (Harlequin American Romance)', 'https://images.isbndb.com/covers/55/44/9780373165544.jpg'), + ('0373093799', 'Voyage Of The Nightingale (Silhouette Special Edition No. 379)', 'https://images.isbndb.com/covers/37/93/9780373093793.jpg'), + ('0373165595', 'Secret Agent Dad (Harlequin American Romance, No. 559)', 'https://images.isbndb.com/covers/55/99/9780373165599.jpg'), + ('0553219987', 'Simply Irresistible (Loveswept, No 334)', 'https://images.isbndb.com/covers/99/82/9780553219982.jpg'), + ('0373291183', 'Molly''S Hero', 'https://images.isbndb.com/covers/11/82/9780373291182.jpg'), + ('038076864X', 'Fortune''s Mistress (An Avon Romantic Treasure)', 'https://images.isbndb.com/covers/86/46/9780380768646.jpg'), + ('0373289421', 'Beauty And The Beast (Harlequin Historical)', 'https://images.isbndb.com/covers/94/24/9780373289424.jpg'), + ('037309437X', 'Candles In The Night', 'https://images.isbndb.com/covers/43/70/9780373094370.jpg'), + ('0373098987', 'Cowboy Daddy (Silhouette Special Edition No. 898)', 'https://images.isbndb.com/covers/89/89/9780373098989.jpg'), + ('0373165811', 'Operation: Husband (Harlequin American Romance)', 'https://images.isbndb.com/covers/58/10/9780373165810.jpg'), + ('0786005416', 'Cassandra (Pinnacle Historical Romance)', 'https://images.isbndb.com/covers/54/13/9780786005413.jpg'), + ('0373088701', 'Right Man For Loving (Silhouette Romance)', 'https://images.isbndb.com/covers/87/06/9780373088706.jpg'), + ('0553218298', 'NOT A MARRYING MAN (Loveswept)', 'https://images.isbndb.com/covers/82/99/9780553218299.jpg'), + ('0553218514', 'ONE STEP FROM PARADISE (Loveswept)', 'https://images.isbndb.com/covers/85/10/9780553218510.jpg'), + ('0373092741', 'Class Act (Silhouette Special Edition)', 'https://images.isbndb.com/covers/27/41/9780373092741.jpg'), + ('0553233688', 'Bowdrie', 'https://images.isbndb.com/covers/36/81/9780553233681.jpg'), + ('0373166931', 'Mission: Motherhood (Big Apple Babies) (Harlequin American Romance)', 'https://images.isbndb.com/covers/69/30/9780373166930.jpg'), + ('0821726382', 'Outlaw Ecstasy (Heartfire Romance)', 'https://images.isbndb.com/covers/63/89/9780821726389.jpg'), + ('037329056X', 'Tender Stranger (Harlequin Historical)', 'https://images.isbndb.com/covers/05/67/9780373290567.jpg'), + ('0553443763', 'Dancing In The Dark (Loveswept #609)', 'https://images.isbndb.com/covers/37/69/9780553443769.jpg'), + ('0821760459', 'Bright Morning Star (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/04/51/9780821760451.jpg'), + ('0931122651', 'The Unicorn Poems Of Flowers And Songs Of Sorrow', 'https://images.isbndb.com/covers/26/51/9780931122651.jpg'), + ('0739439065', 'Key Of Knowledge (The Key Trilogy, Book 2)', 'https://images.isbndb.com/covers/90/67/9780739439067.jpg'), + ('0345446100', 'Edge Of Victory II: Rebirth (Star Wars: The New Jedi Order, No. 8)', 'https://images.isbndb.com/covers/61/07/9780345446107.jpg'), + ('0688103324', 'Don''t Know Much About Geography: Everything You Need To Know About The World But Never Learned', 'https://images.isbndb.com/covers/33/23/9780688103323.jpg'), + ('0553213342', 'Sense And Sensibility (Bantam Classics)', 'https://images.isbndb.com/covers/33/48/9780553213348.jpg'), + ('0679885501', 'Crash', 'https://images.isbndb.com/covers/55/04/9780679885504.jpg'), + ('0385266294', 'Why In The World: Adventures In Geography', 'https://images.isbndb.com/covers/62/91/9780385266291.jpg'), + ('080707103X', 'The Passionate Nomad: The Diary Of Isabelle Eberhardt (Virago/Beacon Traveler Series)', 'https://images.isbndb.com/covers/10/38/9780807071038.jpg'), + ('0061064173', 'Wishbone Classic #07 Frankenstein (Wishbone Classics)', 'https://images.isbndb.com/covers/41/73/9780061064173.jpg'), + ('0671785699', 'Bad Dreams (Fear Street, No. 22)', 'https://images.isbndb.com/covers/56/97/9780671785697.jpg'), + ('044840172X', 'Jurassic Park (Junior Novelization)', 'https://images.isbndb.com/covers/17/20/9780448401720.jpg'), + ('0451143183', 'Passport To French (Signet)', 'https://images.isbndb.com/covers/31/81/9780451143181.jpg'), + ('0877282684', 'The Book Of Thoth: A Short Essay On The Tarot Of The Egyptians, Being The Equinox Volume III No. V', 'https://images.isbndb.com/covers/26/86/9780877282686.jpg'), + ('1561840092', 'Angel Tech: A Modern Shamans Guide To Reality Selection', 'https://images.isbndb.com/covers/00/90/9781561840090.jpg'), + ('0811202925', 'Siddhartha', 'https://images.isbndb.com/covers/29/23/9780811202923.jpg'), + ('0764153730', 'The Water Garden Design Book', 'https://images.isbndb.com/covers/37/30/9780764153730.jpg'), + ('0850307147', 'Magic: An Occult Primer', 'https://images.isbndb.com/covers/71/46/9780850307146.jpg'), + ('0316488356', 'The Fortune Telling Book: Reading Crystal Balls, Tea Leaves, Playing Cards, And Everyday Omens Of Love And Luck', 'https://images.isbndb.com/covers/83/58/9780316488358.jpg'), + ('0671704613', 'Magic Power Of Self-Image Psychology', 'https://images.isbndb.com/covers/46/12/9780671704612.jpg'), + ('0563551011', 'Changing Rooms', 'https://images.isbndb.com/covers/10/10/9780563551010.jpg'), + ('0743412346', 'Sir Apropos Of Nothing', 'https://images.isbndb.com/covers/23/46/9780743412346.jpg'), + ('0671629980', 'How Much For Just The Planet? (Star Trek, Book 36)', 'https://images.isbndb.com/covers/99/84/9780671629984.jpg'), + ('0812534077', 'Memory And Dream', 'https://images.isbndb.com/covers/40/78/9780812534078.jpg'), + ('0312964250', 'Overture To Death (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/42/52/9780312964252.jpg'), + ('0446400580', 'The Potter''s Field: The Seventeenth Chronicle Of Brother Cadfael', 'https://images.isbndb.com/covers/05/89/9780446400589.jpg'), + ('034531784X', 'HITLER(ABRIDGED ED)', 'https://images.isbndb.com/covers/78/41/9780345317841.jpg'), + ('0345346912', 'Midway: The Battle That Doomed Japan', 'https://images.isbndb.com/covers/69/19/9780345346919.jpg'), + ('0671008803', 'Spectre (Star Trek)', 'https://images.isbndb.com/covers/88/02/9780671008802.jpg'), + ('0345311639', 'Lando Calrissian And The Flamewind Of Oseon', 'https://images.isbndb.com/covers/16/34/9780345311634.jpg'), + ('0345283716', 'The Vicar Of Christ', 'https://images.isbndb.com/covers/37/19/9780345283719.jpg'), + ('0345329457', 'At The Mountains Of Madness: And Other Tales Of Terror', 'https://images.isbndb.com/covers/94/55/9780345329455.jpg'), + ('0935127291', 'The Only Way To Learn About Horary And Electional Astrology, Vol. 6', 'https://images.isbndb.com/covers/72/94/9780935127294.jpg'), + ('0671503618', 'Starship Haiku', 'https://images.isbndb.com/covers/36/11/9780671503611.jpg'), + ('0879801107', '1001 Brilliant Ways To Checkmate (Chess Lovers'' Library)', 'https://images.isbndb.com/covers/11/06/9780879801106.jpg'), + ('0887330045', 'Rhialto The Marvellous', 'https://images.isbndb.com/covers/00/49/9780887330049.jpg'), + ('1558172378', 'Destroyer 21-Deadly Seeds (The Destroyer)', 'https://images.isbndb.com/covers/23/71/9781558172371.jpg'), + ('094383208X', 'Devotions To The Saints', 'https://images.isbndb.com/covers/20/81/9780943832081.jpg'), + ('0879493046', 'Hindu Kush', 'https://images.isbndb.com/covers/30/42/9780879493042.jpg'), + ('0312958838', 'Mysterious Valley', 'https://images.isbndb.com/covers/88/31/9780312958831.jpg'), + ('0440100259', 'A Soldier Reports', 'https://images.isbndb.com/covers/02/56/9780440100256.jpg'), + ('0234770554', 'The Brains Of Earth', 'https://images.isbndb.com/covers/05/59/9780234770559.jpg'), + ('0394733312', 'Go For Beginners', 'https://images.isbndb.com/covers/33/19/9780394733319.jpg'), + ('0894872281', 'Scott 1998 Standard Postage Stamp Catalogue: United States And Affiliated Territories, United Nations, Countries Of The World, A-B (154th Ed. Vol 1)', 'https://images.isbndb.com/covers/22/80/9780894872280.jpg'), + ('0821717510', 'The Great Commanders Of World War II: The Americans', 'https://images.isbndb.com/covers/75/16/9780821717516.jpg'), + ('0821717529', 'The Great Commanders Of World War II: The Germans', 'https://images.isbndb.com/covers/75/23/9780821717523.jpg'), + ('0571130143', 'Bridge With Aunt Agatha: Technique Without Tears', 'https://images.isbndb.com/covers/01/46/9780571130146.jpg'), + ('1561840599', 'Urban Voodoo: A Beginners Guide To Afro-Caribbean Magic', 'https://images.isbndb.com/covers/05/95/9781561840595.jpg'), + ('1561841536', 'Rebels & Devils: The Psychology Of Liberation', 'https://images.isbndb.com/covers/15/30/9781561841530.jpg'), + ('0887330630', 'Bird Isle And Take My Face', 'https://images.isbndb.com/covers/06/36/9780887330636.jpg'), + ('0786703873', 'The Horror In The Museum And Other Revisions', 'https://images.isbndb.com/covers/38/76/9780786703876.jpg'), + ('0886776244', 'World Without End (Moontide Magic Rise)', 'https://images.isbndb.com/covers/62/44/9780886776244.jpg'), + ('0445204524', 'Cyteen: The Betrayal', 'https://images.isbndb.com/covers/45/22/9780445204522.jpg'), + ('0066210844', 'The Archer''s Tale (The Grail Quest, Book 1)', 'https://images.isbndb.com/covers/08/41/9780066210841.jpg'), + ('0345384210', 'Dreams Of Terror And Death: The Dream Cycle Of H. P. Lovecraft', 'https://images.isbndb.com/covers/42/18/9780345384218.jpg'), + ('0312909233', 'Zombie!', 'https://images.isbndb.com/covers/92/39/9780312909239.jpg'), + ('0879977388', 'The Dimensioneers (Daw UE1738)', 'https://images.isbndb.com/covers/73/82/9780879977382.jpg'), + ('0786706473', 'Vintage Science Fiction: Stories Inspired By Landmark Films', 'https://images.isbndb.com/covers/64/71/9780786706471.jpg'), + ('0743412419', 'The Book Of Fours (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/24/14/9780743412414.jpg'), + ('0425126021', 'The Roswell Incident', 'https://images.isbndb.com/covers/60/28/9780425126028.jpg'), + ('087542127X', 'The Truth About Witchcraft Today (Truth About Series)', 'https://images.isbndb.com/covers/12/78/9780875421278.jpg'), + ('0061057525', 'Dreams Of The Dark (Dark Shadows)', 'https://images.isbndb.com/covers/75/26/9780061057526.jpg'), + ('0140182926', 'Collected Dorothy Parker Pb (Penguin Twentieth-Century Clas)', 'https://images.isbndb.com/covers/29/27/9780140182927.jpg'), + ('0140261184', 'Bad Wisdom', 'https://images.isbndb.com/covers/11/89/9780140261189.jpg'), + ('0140139125', 'It Ends With Magic: A Milligan Family Story', 'https://images.isbndb.com/covers/91/29/9780140139129.jpg'), + ('1567184731', 'A Chakra & Kundalini Workbook: Psycho-Spiritual Techniques For Health, Rejuvenation, Psychic Powers & Spiritual Realization', 'https://images.isbndb.com/covers/47/30/9781567184730.jpg'), + ('1852278862', 'The Spike Milligan''s Family Album', 'https://images.isbndb.com/covers/88/61/9781852278861.jpg'), + ('0140035206', 'Adolf Hitler: My Part In His Downfall (War Memoirs Vol. 1)', 'https://images.isbndb.com/covers/52/09/9780140035209.jpg'), + ('0140023747', 'Puckoon', 'https://images.isbndb.com/covers/37/49/9780140023749.jpg'), + ('0007155093', 'The Essential Spike Milligan', 'https://images.isbndb.com/covers/50/95/9780007155095.jpg'), + ('0671037390', 'Only Dad', 'https://images.isbndb.com/covers/73/90/9780671037390.jpg'), + ('0671015850', 'The Last Lighthouse Keeper', 'https://images.isbndb.com/covers/58/55/9780671015855.jpg'), + ('0749930632', 'Fair Exchange', 'https://images.isbndb.com/covers/06/39/9780749930639.jpg'), + ('0553282182', 'Alicia', 'https://images.isbndb.com/covers/21/84/9780553282184.jpg'), + ('0671037382', 'Animal Instincts', 'https://images.isbndb.com/covers/73/83/9780671037383.jpg'), + ('0413519503', 'Lear (Methuen Student Editions)', 'https://images.isbndb.com/covers/95/04/9780413519504.jpg'), + ('0340693096', 'The Talk Of The Town', 'https://images.isbndb.com/covers/30/94/9780340693094.jpg'), + ('3426195593', 'Rache Kennt Kein Gebot', 'https://images.isbndb.com/covers/55/98/9783426195598.jpg'), + ('3404129490', 'Venezianisches Labyrinth', 'https://images.isbndb.com/covers/94/92/9783404129492.jpg'), + ('3596505151', 'Opernball. Jubiläums- Edition.', 'https://images.isbndb.com/covers/51/59/9783596505159.jpg'), + ('3518100734', 'Der Gute Mensch Von Sezuan: Parabelstück (edition Suhrkamp)', 'https://images.isbndb.com/covers/07/38/9783518100738.jpg'), + ('3596224284', 'Dear Doosie: Eine Liebesgeschichte In Briefen. Auch Eine Möglichkeit, Sein Englisch Spielend Aufzufrischen', 'https://images.isbndb.com/covers/42/89/9783596224289.jpg'), + ('340413348X', 'Der Mit Dem Wolf Tanzt', 'https://images.isbndb.com/covers/34/82/9783404133482.jpg'), + ('0749719745', 'The Mystery Of The Invisible Thief (The Mystery Series)', 'https://images.isbndb.com/covers/97/46/9780749719746.jpg'), + ('1841150770', 'Captain Bligh Portable', 'https://images.isbndb.com/covers/07/72/9781841150772.jpg'), + ('0099286572', 'Elizabeth: Apprenticeship', 'https://images.isbndb.com/covers/65/78/9780099286578.jpg'), + ('3125781108', 'The War Between The Classes. Englischsprachige Ausgabe.', 'https://images.isbndb.com/covers/11/08/9783125781108.jpg'), + ('312577540X', 'The Guardians', 'https://images.isbndb.com/covers/54/04/9783125775404.jpg'), + ('3518365010', 'Warten Auf Godot - En Attendant Godot - Waiting For Godot', 'https://images.isbndb.com/covers/50/14/9783518365014.jpg'), + ('3442161177', 'Endlich Wunschgewicht! Der Einfache Weg, Mit Gewichtsproblemen Schluss Zu Machen', 'https://images.isbndb.com/covers/11/71/9783442161171.jpg'), + ('3442139112', 'Die Markert-Diät', 'https://images.isbndb.com/covers/91/18/9783442139118.jpg'), + ('3404148657', 'Kerzenlicht Für Eine Leiche: Mitchell & Markbys Achter Fall: Mitchell Und Markbys Achter Fall', 'https://images.isbndb.com/covers/86/53/9783404148653.jpg'), + ('3746652618', 'L''Adultera: Novelle: (Berliner Frauenromane)', 'https://images.isbndb.com/covers/26/10/9783746652610.jpg'), + ('3502518998', 'Sarabande', 'https://images.isbndb.com/covers/89/90/9783502518990.jpg'), + ('3548256171', 'In Blindem Zorn', 'https://images.isbndb.com/covers/61/77/9783548256177.jpg'), + ('3426080648', 'Leben Will Ich. (7510 624). Roman. ( Frauen Und Literatur).', 'https://images.isbndb.com/covers/06/41/9783426080641.jpg'), + ('3442450322', 'Die Schwarze Schatulle: Roman', 'https://images.isbndb.com/covers/03/29/9783442450329.jpg'), + ('3453146972', 'Per Anhalter Durch Die Galaxis', 'https://images.isbndb.com/covers/69/76/9783453146976.jpg'), + ('3404118251', 'Grüne Tomaten', 'https://images.isbndb.com/covers/82/50/9783404118250.jpg'), + ('0752218751', 'Dawson''s Creek: Trouble In Paradise V.7 (Vol 7)', 'https://images.isbndb.com/covers/87/55/9780752218755.jpg'), + ('186046808X', 'Faceless Killers (A Kurt Wallander Mystery)', 'https://images.isbndb.com/covers/80/87/9781860468087.jpg'), + ('0684873753', 'Details At Ten', 'https://images.isbndb.com/covers/37/56/9780684873756.jpg'), + ('0152020683', 'Half Magic', 'https://images.isbndb.com/covers/06/82/9780152020682.jpg'), + ('0385503466', 'Shutterbug Follies: Graphic Novel (Doubleday Graphic Novels)', 'https://images.isbndb.com/covers/34/64/9780385503464.jpg'), + ('0767901843', 'Nuts! Southwest Airlines'' Crazy Recipe For Business And Personal Success', 'https://images.isbndb.com/covers/18/40/9780767901840.jpg'), + ('0671020110', 'Counterfeit Lady', 'https://images.isbndb.com/covers/01/18/9780671020118.jpg'), + ('0373484429', 'Reflections And Dreams', 'https://images.isbndb.com/covers/44/23/9780373484423.jpg'), + ('0671042920', 'Ride A Dark Horse', 'https://images.isbndb.com/covers/29/29/9780671042929.jpg'), + ('0446524999', 'The Arcanum: The Extraordinary True Story', 'https://images.isbndb.com/covers/49/95/9780446524995.jpg'), + ('0767908260', 'The Island Of Lost Maps: A True Story Of Cartographic Crime', 'https://images.isbndb.com/covers/82/69/9780767908269.jpg'), + ('0140434682', 'The Power Of Sympathy And The Coquette (Penguin Classics)', 'https://images.isbndb.com/covers/46/82/9780140434682.jpg'), + ('0140434127', 'Aurora Leigh And Other Poems (Penguin Classics)', 'https://images.isbndb.com/covers/41/25/9780140434125.jpg'), + ('0140154515', 'A Moment On The Earth: The Coming Age Of Environmental Optimism', 'https://images.isbndb.com/covers/45/11/9780140154511.jpg'), + ('0140432809', 'Grace Abounding To The Chief Of Sinners: Or Brief Faithful Relation Exceeding Mercy God Christ His Poor Servant John (Penguin Classics)', 'https://images.isbndb.com/covers/28/00/9780140432800.jpg'), + ('014051290X', 'Dictionary Of Music, The Penguin: Sixth Edition (Dictionary, Penguin)', 'https://images.isbndb.com/covers/29/08/9780140512908.jpg'), + ('0140445285', 'Crime And Punishment (Penguin Classics)', 'https://images.isbndb.com/covers/52/82/9780140445282.jpg'), + ('0140445625', 'A Short Account Of The Destruction Of The Indies', 'https://images.isbndb.com/covers/56/26/9780140445626.jpg'), + ('0140194886', 'The Book Of Chuang Tzu (Compass)', 'https://images.isbndb.com/covers/48/83/9780140194883.jpg'), + ('1573220922', 'Freak', 'https://images.isbndb.com/covers/09/27/9781573220927.jpg'), + ('0140466606', 'The Stanislavski System: The Professional Training Of An Actor; Second Revised Edition (Penguin Handbooks)', 'https://images.isbndb.com/covers/66/07/9780140466607.jpg'), + ('0140188517', 'Complete Poems', 'https://images.isbndb.com/covers/85/16/9780140188516.jpg'), + ('0060171928', 'Mutant Message Down Under', 'https://images.isbndb.com/covers/19/26/9780060171926.jpg'), + ('0140587489', 'Common Carnage (Poets, Penguin)', 'https://images.isbndb.com/covers/74/87/9780140587487.jpg'), + ('0310239729', 'A Step Further', 'https://images.isbndb.com/covers/97/27/9780310239727.jpg'), + ('0684717654', 'This Side Of Paradise (A Scribner Classic)', 'https://images.isbndb.com/covers/76/54/9780684717654.jpg'), + ('0786913339', 'Spectre Of The Black Rose (Ravenloft Terror Of Lord Soth, Vol. 2)', 'https://images.isbndb.com/covers/33/36/9780786913336.jpg'), + ('0515041858', 'Rebels', 'https://images.isbndb.com/covers/18/59/9780515041859.jpg'), + ('0515041866', 'Seekers', 'https://images.isbndb.com/covers/18/66/9780515041866.jpg'), + ('0515035084', 'The Bastard', 'https://images.isbndb.com/covers/50/87/9780515035087.jpg'), + ('0345409876', 'Women Who Run With The Wolves', 'https://images.isbndb.com/covers/98/74/9780345409874.jpg'), + ('0679724516', 'The Second Sex', 'https://images.isbndb.com/covers/45/13/9780679724513.jpg'), + ('0679763309', 'An Unquiet Mind: A Memoir Of Moods And Madness', 'https://images.isbndb.com/covers/33/07/9780679763307.jpg'), + ('0393027414', 'Cutting: Understanding And Overcoming Self-Mutilation', 'https://images.isbndb.com/covers/74/19/9780393027419.jpg'), + ('0813522137', 'Media Madness: Public Images Of Mental Illness', 'https://images.isbndb.com/covers/21/35/9780813522135.jpg'), + ('0375757295', 'Persuasion (Modern Library Classics)', 'https://images.isbndb.com/covers/72/97/9780375757297.jpg'), + ('0425183971', 'Reunion In Death', 'https://images.isbndb.com/covers/39/77/9780425183977.jpg'), + ('0582292190', 'The Media And Mental Distress', 'https://images.isbndb.com/covers/21/92/9780582292192.jpg'), + ('067973225X', 'As I Lay Dying: The Corrected Text', 'https://images.isbndb.com/covers/22/59/9780679732259.jpg'), + ('0060174900', 'The Bell Jar, 25th Anniversary Edition', 'https://images.isbndb.com/covers/49/03/9780060174903.jpg'), + ('1879237741', 'Living Without Depression And Manic Depression: A Workbook For Maintaining Mood Stability (New Harbinger Workbooks)', 'https://images.isbndb.com/covers/77/42/9781879237742.jpg'), + ('0375704469', 'The Colossus And Other Poems', 'https://images.isbndb.com/covers/44/68/9780375704468.jpg'), + ('0894803204', 'The Book Of Questions', 'https://images.isbndb.com/covers/32/08/9780894803208.jpg'), + ('093158079X', 'Do It! Let''s Get Off Our Buts', 'https://images.isbndb.com/covers/07/96/9780931580796.jpg'), + ('0486270521', 'Sonnets From The Portuguese And Other Poems (Dover Thrift Editions)', 'https://images.isbndb.com/covers/05/24/9780486270524.jpg'), + ('0449200248', 'Love: A Warm And Wonderful Book About The Largest Experience In Life', 'https://images.isbndb.com/covers/02/47/9780449200247.jpg'), + ('0937858668', 'Success Is The Quality Of Your Journey', 'https://images.isbndb.com/covers/86/60/9780937858660.jpg'), + ('0684839075', 'The Torrents Of Spring', 'https://images.isbndb.com/covers/90/73/9780684839073.jpg'), + ('0140266933', 'Prince Charming Isn''t Coming: How Women Get Smart About Money', 'https://images.isbndb.com/covers/69/31/9780140266931.jpg'), + ('0684818981', 'To Have And Have Not', 'https://images.isbndb.com/covers/89/86/9780684818986.jpg'), + ('1862042055', 'Writing For Self-Discovery: A Personal Approach To Creative Writing', 'https://images.isbndb.com/covers/20/56/9781862042056.jpg'), + ('068482499X', 'A Moveable Feast', 'https://images.isbndb.com/covers/49/94/9780684824994.jpg'), + ('0020199856', 'The Love Of The Last Tycoon', 'https://images.isbndb.com/covers/98/54/9780020199854.jpg'), + ('1558508473', 'The Everything After College Book; Real-World Advice For Surviving And Thriving On Your Own', 'https://images.isbndb.com/covers/84/77/9781558508477.jpg'), + ('0441007813', 'Obsidian Butterfly (Anita Blake, Vampire Hunter)', 'https://images.isbndb.com/covers/78/13/9780441007813.jpg'), + ('0804002800', 'Spy In House Of Love: V4 In Nin''S Continuous Novel (Vol IV)', 'https://images.isbndb.com/covers/28/06/9780804002806.jpg'), + ('0671680110', 'Little Birds', 'https://images.isbndb.com/covers/01/14/9780671680114.jpg'), + ('0446609048', 'Run Jane Run', 'https://images.isbndb.com/covers/90/43/9780446609043.jpg'), + ('0446606677', 'A.K.A. Jane', 'https://images.isbndb.com/covers/66/77/9780446606677.jpg'), + ('0380790963', 'The Promise', 'https://images.isbndb.com/covers/09/68/9780380790968.jpg'), + ('0380790947', 'The Passion', 'https://images.isbndb.com/covers/09/44/9780380790944.jpg'), + ('006093316X', 'The Great And Secret Show', 'https://images.isbndb.com/covers/31/66/9780060933166.jpg'), + ('0060909005', 'The Collected Poems', 'https://images.isbndb.com/covers/90/00/9780060909000.jpg'), + ('0062731009', 'The Cartoon Guide To Physics', 'https://images.isbndb.com/covers/10/05/9780062731005.jpg'), + ('0062731025', 'Cartoon Guide To Statistics', 'https://images.isbndb.com/covers/10/29/9780062731029.jpg'), + ('0804001480', 'House Of Incest', 'https://images.isbndb.com/covers/14/89/9780804001489.jpg'), + ('0441005748', 'Blue Moon (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/57/41/9780441005741.jpg'), + ('156333609X', 'White Stains', 'https://images.isbndb.com/covers/60/96/9781563336096.jpg'), + ('0812566688', 'Darksong Rising: The Third Book Of The Spellsong Cycle', 'https://images.isbndb.com/covers/66/80/9780812566680.jpg'), + ('0312860226', 'The Soprano Sorceress', 'https://images.isbndb.com/covers/02/26/9780312860226.jpg'), + ('0812540026', 'The Spellsong War (Spellsong Cycle #2)', 'https://images.isbndb.com/covers/00/24/9780812540024.jpg'), + ('0811824225', 'Sleeping With Random Beasts: A Novel', 'https://images.isbndb.com/covers/42/24/9780811824224.jpg'), + ('1889295000', 'Monsters From The Id (Brainstorm)', 'https://images.isbndb.com/covers/50/08/9781889295008.jpg'), + ('0786808012', 'Artemis Fowl (Artemis Fowl, Book 1)', 'https://images.isbndb.com/covers/80/14/9780786808014.jpg'), + ('0385285019', 'Illusions: The Adventures Of A Reluctant Messiah', 'https://images.isbndb.com/covers/50/18/9780385285018.jpg'), + ('1573245003', '365 Health & Happiness Boosters', 'https://images.isbndb.com/covers/50/05/9781573245005.jpg'), + ('0380802317', 'Where Dreams Begin', 'https://images.isbndb.com/covers/23/19/9780380802319.jpg'), + ('0821771418', 'You''re The One (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/14/19/9780821771419.jpg'), + ('0385484011', 'Bitch: In Praise Of Difficult Women', 'https://images.isbndb.com/covers/40/15/9780385484015.jpg'), + ('0452281458', 'Beauty''s Release: The Conclusion Of The Classic Erotic Trilogy Of Sleeping Beauty', 'https://images.isbndb.com/covers/14/55/9780452281455.jpg'), + ('0452281431', 'Beauty''s Punishment (Sleeping Beauty)', 'https://images.isbndb.com/covers/14/31/9780452281431.jpg'), + ('0440210038', 'Hot Property', 'https://images.isbndb.com/covers/00/30/9780440210030.jpg'), + ('1551668483', 'North Of Clever (Hannah Garvey Mysteries #3)', 'https://images.isbndb.com/covers/84/82/9781551668482.jpg'), + ('0380795736', 'Talking Rain: A Professo (Professor Teodora Morelli Mystery)', 'https://images.isbndb.com/covers/57/34/9780380795734.jpg'), + ('0312191189', 'Emma Who Saved My Life', 'https://images.isbndb.com/covers/11/84/9780312191184.jpg'), + ('074340596X', 'Married For A Month', 'https://images.isbndb.com/covers/59/66/9780743405966.jpg'), + ('0821771159', 'Husband Material (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/50/9780821771150.jpg'), + ('1551668289', 'Looking For Laura', 'https://images.isbndb.com/covers/82/84/9781551668284.jpg'), + ('0061014788', 'Smart Vs. Pretty', 'https://images.isbndb.com/covers/47/89/9780061014789.jpg'), + ('0345317211', 'The Cook', 'https://images.isbndb.com/covers/72/16/9780345317216.jpg'), + ('0451526120', 'The Age Of Innocence (Signet Classics)', 'https://images.isbndb.com/covers/61/20/9780451526120.jpg'), + ('0449215024', 'Sacred And Profane', 'https://images.isbndb.com/covers/50/29/9780449215029.jpg'), + ('0552142506', 'Sickness Of The Soul', 'https://images.isbndb.com/covers/25/02/9780552142502.jpg'), + ('0425176088', 'Airport', 'https://images.isbndb.com/covers/60/85/9780425176085.jpg'), + ('0440216974', 'Mortal Grace', 'https://images.isbndb.com/covers/69/71/9780440216971.jpg'), + ('0451170113', 'Night Shift (Signet)', 'https://images.isbndb.com/covers/01/18/9780451170118.jpg'), + ('0316153915', 'Chasing The Dime', 'https://images.isbndb.com/covers/39/11/9780316153911.jpg'), + ('0425155722', 'The Fool''s Run (Kidd)', 'https://images.isbndb.com/covers/57/21/9780425155721.jpg'), + ('0425189031', 'Portrait In Death', 'https://images.isbndb.com/covers/90/30/9780425189030.jpg'), + ('0671015443', 'Vulcan''s Heart (Star Trek)', 'https://images.isbndb.com/covers/54/42/9780671015442.jpg'), + ('0440236665', 'Lone Eagle', 'https://images.isbndb.com/covers/66/65/9780440236665.jpg'), + ('0425049264', 'Chthon', 'https://images.isbndb.com/covers/92/66/9780425049266.jpg'), + ('0812551486', 'Temple Of The Winds (Sword Of Truth, Book 4)', 'https://images.isbndb.com/covers/14/88/9780812551488.jpg'), + ('081257639X', 'Faith Of The Fallen (Sword Of Truth, Book 6)', 'https://images.isbndb.com/covers/63/99/9780812576399.jpg'), + ('0736618198', 'Devices And Desires (Adam Dalgliesh Mystery Series #8)', 'https://images.isbndb.com/covers/81/99/9780736618199.jpg'), + ('0061007153', 'A Quiver Full Of Arrows', 'https://images.isbndb.com/covers/71/56/9780061007156.jpg'), + ('0380011220', 'Creatures Of Light And Darkness', 'https://images.isbndb.com/covers/12/23/9780380011223.jpg'), + ('0451525884', 'Pride And Prejudice: New Edition', 'https://images.isbndb.com/covers/58/88/9780451525888.jpg'), + ('034539092X', 'The Great Train Robbery', 'https://images.isbndb.com/covers/09/29/9780345390929.jpg'), + ('0345323173', 'The Case Of The Velvet Claws', 'https://images.isbndb.com/covers/31/70/9780345323170.jpg'), + ('0345378784', 'The Case Of The Amorous Aunt (A Perry Mason Mystery)', 'https://images.isbndb.com/covers/87/81/9780345378781.jpg'), + ('0441703534', 'Jaguar', 'https://images.isbndb.com/covers/35/31/9780441703531.jpg'), + ('0345349520', 'Vanity Dies Hard', 'https://images.isbndb.com/covers/95/21/9780345349521.jpg'), + ('0886776554', 'Exile''s Return (Ghatti''s Tale)', 'https://images.isbndb.com/covers/65/58/9780886776558.jpg'), + ('0002243776', 'Visible Worlds: A Novel', 'https://images.isbndb.com/covers/37/73/9780002243773.jpg'), + ('0385491107', 'Life Before Man', 'https://images.isbndb.com/covers/11/05/9780385491105.jpg'), + ('0786209542', 'Marrying Mom: A Novel', 'https://images.isbndb.com/covers/95/45/9780786209545.jpg'), + ('0385720955', 'The Blind Assassin: A Novel', 'https://images.isbndb.com/covers/09/53/9780385720953.jpg'), + ('0751510610', 'Bizarre World', 'https://images.isbndb.com/covers/06/14/9780751510614.jpg'), + ('0743442245', 'The Road To Perdition', 'https://images.isbndb.com/covers/22/44/9780743442244.jpg'), + ('0571168639', 'Moon Palace', 'https://images.isbndb.com/covers/86/37/9780571168637.jpg'), + ('0142002003', 'Youth: Scenes From Provincial Life II', 'https://images.isbndb.com/covers/20/01/9780142002001.jpg'), + ('0330480952', 'Sleeping Partner', 'https://images.isbndb.com/covers/09/56/9780330480956.jpg'), + ('0758203888', 'Easy', 'https://images.isbndb.com/covers/38/85/9780758203885.jpg'), + ('3596282756', 'Tristan Und Isolde', 'https://images.isbndb.com/covers/27/53/9783596282753.jpg'), + ('006109868X', 'Pigs In Heaven', 'https://images.isbndb.com/covers/86/80/9780061098680.jpg'), + ('0451208846', 'The Puzzle Bark Tree', 'https://images.isbndb.com/covers/88/42/9780451208842.jpg'), + ('0684867427', 'Jukebox Queen Of Malta: A Novel', 'https://images.isbndb.com/covers/74/27/9780684867427.jpg'), + ('0060520507', 'Sushi For Beginners: A Novel', 'https://images.isbndb.com/covers/05/02/9780060520502.jpg'), + ('0425184498', 'The Boy Next Door', 'https://images.isbndb.com/covers/44/93/9780425184493.jpg'), + ('0767915593', 'Straight Talking: A Novel', 'https://images.isbndb.com/covers/55/95/9780767915595.jpg'), + ('0451196813', 'Breakfast At Madeline''s : A Jacob Burns Mystery ((Jacob Burns Mystery Series)', 'https://images.isbndb.com/covers/68/11/9780451196811.jpg'), + ('1889853038', 'The Nurse''s Story', 'https://images.isbndb.com/covers/30/31/9781889853031.jpg'), + ('0860681297', 'Edible Woman', 'https://images.isbndb.com/covers/12/98/9780860681298.jpg'), + ('0553212664', 'Modern Mephistopheles', 'https://images.isbndb.com/covers/26/62/9780553212662.jpg'), + ('0385319002', 'Animal Husbandry', 'https://images.isbndb.com/covers/90/03/9780385319003.jpg'), + ('0330482076', 'The Princess Diaries: Third Time Lucky', 'https://images.isbndb.com/covers/20/73/9780330482073.jpg'), + ('0060294655', 'Princess In The Spotlight (The Princess Diaries, Vol. 2)', 'https://images.isbndb.com/covers/46/56/9780060294656.jpg'), + ('0316057401', 'Vegetarian Express : Easy, Tasty, And Healthy Menus In 28 Minutes(or Less!)', 'https://images.isbndb.com/covers/74/00/9780316057400.jpg'), + ('0316777722', 'Me Talk Pretty One Day', 'https://images.isbndb.com/covers/77/28/9780316777728.jpg'), + ('0340682272', 'Snap Happy', 'https://images.isbndb.com/covers/22/72/9780340682272.jpg'), + ('0345376927', 'Horrors Of The Dancing Gods', 'https://images.isbndb.com/covers/69/23/9780345376923.jpg'), + ('0345347994', 'Songs Of The Dancing Gods: (#4)', 'https://images.isbndb.com/covers/79/92/9780345347992.jpg'), + ('0747230307', 'Afterglow And Nightfall (Brothers Of Gwynedd)', 'https://images.isbndb.com/covers/03/04/9780747230304.jpg'), + ('0399511156', 'The Professional Image', 'https://images.isbndb.com/covers/11/58/9780399511158.jpg'), + ('0870946595', 'Service America!: Doing Business In The New Economy', 'https://images.isbndb.com/covers/65/92/9780870946592.jpg'), + ('0070145121', 'Quality Is Free: The Art Of Making Quality Certain: How To Manage Quality - So That It Becomes A Source Of Profit For Your Business', 'https://images.isbndb.com/covers/51/22/9780070145122.jpg'), + ('007014530X', 'Quality Without Tears: The Art Of Hassle-Free Management', 'https://images.isbndb.com/covers/53/06/9780070145306.jpg'), + ('0767904427', 'Going After Cacciato', 'https://images.isbndb.com/covers/44/21/9780767904421.jpg'), + ('0679723161', 'Lolita', 'https://images.isbndb.com/covers/31/65/9780679723165.jpg'), + ('0618066136', 'Mr. Wroe''s Virgins', 'https://images.isbndb.com/covers/61/31/9780618066131.jpg'), + ('0451458478', 'Pride Of Kings', 'https://images.isbndb.com/covers/84/76/9780451458476.jpg'), + ('0805052046', 'A Place Of Greater Safety: A Novel', 'https://images.isbndb.com/covers/20/46/9780805052046.jpg'), + ('0345447212', 'Longing: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/72/10/9780345447210.jpg'), + ('0140276300', 'Before I Say Goodbye', 'https://images.isbndb.com/covers/63/05/9780140276305.jpg'), + ('0099143712', 'Fried Green Tomatoes At The Whistle Stop Cafe', 'https://images.isbndb.com/covers/37/10/9780099143710.jpg'), + ('0721401023', 'The Ladybird Book Of Trees (Nature, Series 536)', 'https://images.isbndb.com/covers/10/27/9780721401027.jpg'), + ('0140234209', 'I Believe In Angels', 'https://images.isbndb.com/covers/42/06/9780140234206.jpg'), + ('0140252525', 'Apprenticeship Of Duddy Kravitz Pb', 'https://images.isbndb.com/covers/25/21/9780140252521.jpg'), + ('1550541129', 'Bachelor Brothers'' Bed & Breakfast', 'https://images.isbndb.com/covers/11/20/9781550541120.jpg'), + ('0767903382', 'Tender At The Bone: Growing Up At The Table', 'https://images.isbndb.com/covers/33/87/9780767903387.jpg'), + ('156924703X', 'Amistad - A Novel', 'https://images.isbndb.com/covers/70/37/9781569247037.jpg'), + ('0156012022', 'Our Fathers', 'https://images.isbndb.com/covers/20/27/9780156012027.jpg'), + ('0767902041', 'Tomcat In Love', 'https://images.isbndb.com/covers/20/45/9780767902045.jpg'), + ('0312283377', 'The Northern Lights: A Novel', 'https://images.isbndb.com/covers/33/77/9780312283377.jpg'), + ('0671679430', 'VANISHED', 'https://images.isbndb.com/covers/94/39/9780671679439.jpg'), + ('0143033603', 'Downhill Chance', 'https://images.isbndb.com/covers/36/08/9780143033608.jpg'), + ('0140283641', 'Kits Law', 'https://images.isbndb.com/covers/36/48/9780140283648.jpg'), + ('0340728256', 'Oxygen : A Novel', 'https://images.isbndb.com/covers/82/53/9780340728253.jpg'), + ('0140285822', 'Notes From The Hyena''s Belly', 'https://images.isbndb.com/covers/58/26/9780140285826.jpg'), + ('0140277439', 'Home From The Vinyl Cafe', 'https://images.isbndb.com/covers/74/32/9780140277432.jpg'), + ('0684853868', 'The LAST PICTURE SHOW : A Novel', 'https://images.isbndb.com/covers/38/64/9780684853864.jpg'), + ('1894294424', 'Donovan''s Station: A Novel', 'https://images.isbndb.com/covers/44/23/9781894294423.jpg'), + ('0679767207', 'So Long, See You Tomorrow', 'https://images.isbndb.com/covers/72/06/9780679767206.jpg'), + ('0679455116', 'Chasing Cezanne', 'https://images.isbndb.com/covers/51/10/9780679455110.jpg'), + ('1552782395', 'Last Summer At Barebones', 'https://images.isbndb.com/covers/23/92/9781552782392.jpg'), + ('0771054602', 'Canoe Lake', 'https://images.isbndb.com/covers/46/00/9780771054600.jpg'), + ('0375724834', 'Motherless Brooklyn', 'https://images.isbndb.com/covers/48/31/9780375724831.jpg'), + ('0771095651', 'Sand Dance: By Camel Across Arabia''s Great Southern Desert', 'https://images.isbndb.com/covers/56/58/9780771095658.jpg'), + ('0679724362', 'The Road From Coorain', 'https://images.isbndb.com/covers/43/60/9780679724360.jpg'), + ('0312135092', 'Herb ''N'' Lorna: A Novel', 'https://images.isbndb.com/covers/50/96/9780312135096.jpg'), + ('015100658X', 'The Painter Of Birds', 'https://images.isbndb.com/covers/65/88/9780151006588.jpg'), + ('0385333641', 'From Here To Eternity', 'https://images.isbndb.com/covers/36/41/9780385333641.jpg'), + ('0345417941', 'The Cider House Rules', 'https://images.isbndb.com/covers/79/47/9780345417947.jpg'), + ('0385720467', 'Disobedience: A Novel', 'https://images.isbndb.com/covers/04/65/9780385720465.jpg'), + ('0771041837', 'Broken Ground', 'https://images.isbndb.com/covers/18/39/9780771041839.jpg'), + ('0684803356', 'For Whom The Bell Tolls', 'https://images.isbndb.com/covers/33/57/9780684803357.jpg'), + ('0684865726', 'True At First Light : A Fictional Memoir', 'https://images.isbndb.com/covers/57/20/9780684865720.jpg'), + ('0679731156', 'Floating In My Mother''s Palm', 'https://images.isbndb.com/covers/11/53/9780679731153.jpg'), + ('0006385370', 'Freedom''s Just Another Word', 'https://images.isbndb.com/covers/53/70/9780006385370.jpg'), + ('0676971997', 'The Wise And Foolish Virgins', 'https://images.isbndb.com/covers/19/96/9780676971996.jpg'), + ('074341005X', 'Give Me My Father''s Body: The Life Of Minik, The New York Eskimo', 'https://images.isbndb.com/covers/00/52/9780743410052.jpg'), + ('0140291091', 'The End Of The Affair: (movie Tie-in Edition)', 'https://images.isbndb.com/covers/10/94/9780140291094.jpg'), + ('1569471169', 'Falling Angels', 'https://images.isbndb.com/covers/11/66/9781569471166.jpg'), + ('0920897533', 'Chorus Of Mushrooms (Nunatak Fiction)', 'https://images.isbndb.com/covers/75/39/9780920897539.jpg'), + ('0312205546', 'THE JOURNAL OF MRS. PEPYS: Portrait Of A Marriage', 'https://images.isbndb.com/covers/55/46/9780312205546.jpg'), + ('0385333706', 'After Long Silence', 'https://images.isbndb.com/covers/37/02/9780385333702.jpg'), + ('1552634523', 'Making A Stone Of The Heart: A Novel', 'https://images.isbndb.com/covers/45/23/9781552634523.jpg'), + ('0802137849', 'Sound Of One Hand Clapping', 'https://images.isbndb.com/covers/78/45/9780802137845.jpg'), + ('0006480608', 'The Piano Man''s Daughter', 'https://images.isbndb.com/covers/06/00/9780006480600.jpg'), + ('0002244098', 'Dust To Dust: Stories', 'https://images.isbndb.com/covers/40/91/9780002244091.jpg'), + ('014029984X', 'Generica: A Novel', 'https://images.isbndb.com/covers/98/47/9780140299847.jpg'), + ('1550548409', 'Open Arms', 'https://images.isbndb.com/covers/84/02/9781550548402.jpg'), + ('0864922299', 'Man Of Bone', 'https://images.isbndb.com/covers/22/98/9780864922298.jpg'), + ('1895411416', 'April Raintree', 'https://images.isbndb.com/covers/14/16/9781895411416.jpg'), + ('1861590466', 'The Emerald Underground', 'https://images.isbndb.com/covers/04/66/9781861590466.jpg'), + ('1861591799', 'The Keepers Of Truth', 'https://images.isbndb.com/covers/17/91/9781861591791.jpg'), + ('0670872202', 'Boyhood: Scenes From Provincial Life', 'https://images.isbndb.com/covers/22/06/9780670872206.jpg'), + ('0141000252', 'Baroque-A-Nova', 'https://images.isbndb.com/covers/02/51/9780141000251.jpg'), + ('1551924579', 'A Sack Of Teeth', 'https://images.isbndb.com/covers/45/71/9781551924571.jpg'), + ('0771014902', 'Burying Ariel (Joanne Kilbourn Mysteries)', 'https://images.isbndb.com/covers/49/01/9780771014901.jpg'), + ('0385475772', 'Nine Parts Of Desire: The Hidden World Of Islamic Women', 'https://images.isbndb.com/covers/57/78/9780385475778.jpg'), + ('0771014538', 'The Chrome Suite', 'https://images.isbndb.com/covers/45/36/9780771014536.jpg'), + ('0679767770', 'To The Wedding', 'https://images.isbndb.com/covers/77/70/9780679767770.jpg'), + ('0452272726', 'The Eye In The Door', 'https://images.isbndb.com/covers/27/29/9780452272729.jpg'), + ('0525941916', 'The Ghost Road', 'https://images.isbndb.com/covers/19/10/9780525941910.jpg'), + ('0452270073', 'Regeneration', 'https://images.isbndb.com/covers/00/77/9780452270077.jpg'), + ('1552633470', 'Critical Injuries', 'https://images.isbndb.com/covers/34/72/9781552633472.jpg'), + ('1552630110', 'Getting Over Edgar', 'https://images.isbndb.com/covers/01/12/9781552630112.jpg'), + ('1550135570', 'Charlotte And Claudia Keeping In Touch: A Novel', 'https://images.isbndb.com/covers/55/72/9781550135572.jpg'), + ('0312301731', 'Kabul', 'https://images.isbndb.com/covers/17/36/9780312301736.jpg'), + ('0312267568', 'The Language Of Threads: A Novel', 'https://images.isbndb.com/covers/75/68/9780312267568.jpg'), + ('0521662605', 'Negotiating With The Dead: A Writer On Writing (The Empson Lectures)', 'https://images.isbndb.com/covers/26/04/9780521662604.jpg'), + ('0345419030', 'Tender', 'https://images.isbndb.com/covers/90/33/9780345419033.jpg'), + ('0684850273', 'The Fall Of A Sparrow', 'https://images.isbndb.com/covers/02/76/9780684850276.jpg'), + ('1573229717', 'Miracle At St. Anna', 'https://images.isbndb.com/covers/97/15/9781573229715.jpg'), + ('1573227749', 'The Tesseract', 'https://images.isbndb.com/covers/77/42/9781573227742.jpg'), + ('0440574862', 'Refiner''s Fire: The Life And Adventures Of Marshall Pearl, A Foundling', 'https://images.isbndb.com/covers/48/66/9780440574866.jpg'), + ('0312168675', 'How Long Has This Been Going On (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/86/74/9780312168674.jpg'), + ('0312144504', 'The Year''s Best Fantasy And Horror: Ninth Annual Collection (No.9)', 'https://images.isbndb.com/covers/45/00/9780312144500.jpg'), + ('0671726730', 'To Dance With The White Dog', 'https://images.isbndb.com/covers/67/37/9780671726737.jpg'), + ('0060275855', 'Red Scarf Girl: A Memoir Of The Cultural Revolution', 'https://images.isbndb.com/covers/58/53/9780060275853.jpg'), + ('067944999X', 'The Kiss: A Memoir', 'https://images.isbndb.com/covers/99/97/9780679449997.jpg'), + ('0061099058', 'I Want To Grow Hair, I Want To Grow Up, I Want To Go To Boise (Children Surviving Cancer)', 'https://images.isbndb.com/covers/90/52/9780061099052.jpg'), + ('0486268756', 'The Gold-Bug And Other Tales (Dover Thrift Editions)', 'https://images.isbndb.com/covers/87/50/9780486268750.jpg'), + ('0486270645', 'The Necklace And Other Short Stories (Dover Thrift Editions)', 'https://images.isbndb.com/covers/06/47/9780486270647.jpg'), + ('0553273353', 'Thomas Jefferson: An Intimate History', 'https://images.isbndb.com/covers/33/59/9780553273359.jpg'), + ('1566475961', 'Na Wahine', 'https://images.isbndb.com/covers/59/69/9781566475969.jpg'), + ('0399133453', 'The Cardinal Of The Kremlin', 'https://images.isbndb.com/covers/34/59/9780399133459.jpg'), + ('0380714752', 'The True Confessions Of Charlotte Doyle', 'https://images.isbndb.com/covers/47/59/9780380714759.jpg'), + ('0805401539', 'Our Sacred Honor: Words Of Advice From The Founders In Stories, Letters, Poems, And Speeches', 'https://images.isbndb.com/covers/15/30/9780805401530.jpg'), + ('0385054580', 'City: Rediscovering The Center', 'https://images.isbndb.com/covers/45/84/9780385054584.jpg'), + ('0812923634', 'The Jury: Trial And Error In The American Courtroom', 'https://images.isbndb.com/covers/36/36/9780812923636.jpg'), + ('0446341339', 'Dunn''s Conundrum', 'https://images.isbndb.com/covers/13/32/9780446341332.jpg'), + ('0671775464', 'Playing Away', 'https://images.isbndb.com/covers/54/69/9780671775469.jpg'), + ('0679454756', 'Gut Symmetries', 'https://images.isbndb.com/covers/47/55/9780679454755.jpg'), + ('0881441791', 'A Mother''s Love Is Made Up Of...', 'https://images.isbndb.com/covers/17/96/9780881441796.jpg'), + ('0684174715', 'The Snows Of Kilimanjaro And Other Stories', 'https://images.isbndb.com/covers/47/16/9780684174716.jpg'), + ('0849934176', 'Mama Get The Hammer! There''s A Fly On Papa''s Head!', 'https://images.isbndb.com/covers/41/79/9780849934179.jpg'), + ('0849937019', 'He''s Gonna Toot And I''m Gonna Scoot', 'https://images.isbndb.com/covers/70/19/9780849937019.jpg'), + ('042519485X', 'Undead And Unwed (Queen Betsy, Book 1)', 'https://images.isbndb.com/covers/48/50/9780425194850.jpg'), + ('0930117018', 'Wahiawa: From Dream To Community', 'https://images.isbndb.com/covers/70/16/9780930117016.jpg'), + ('0553269674', 'The Early Childhood Years: The 2 To 6 Year Old', 'https://images.isbndb.com/covers/96/73/9780553269673.jpg'), + ('0440227828', 'Nobody Else Has To Know (Laurel-Leaf Books)', 'https://images.isbndb.com/covers/78/23/9780440227823.jpg'), + ('0849906873', 'A Requiem For Love', 'https://images.isbndb.com/covers/68/79/9780849906879.jpg'), + ('067179342X', 'The PASSION OF AN ANGEL: THE PASSION OF AN ANGEL', 'https://images.isbndb.com/covers/34/25/9780671793425.jpg'), + ('0375702903', 'A Patchwork Planet: A Novel (Random House Large Print)', 'https://images.isbndb.com/covers/29/07/9780375702907.jpg'), + ('0689821719', 'Mrs Frisby And The Rats Of Nimh', 'https://images.isbndb.com/covers/17/14/9780689821714.jpg'), + ('0060172754', 'Rule Of The Bone', 'https://images.isbndb.com/covers/27/56/9780060172756.jpg'), + ('042517428X', 'The Burning Point', 'https://images.isbndb.com/covers/42/89/9780425174289.jpg'), + ('0446608041', 'Into The Thinking Kingdoms (Journeys Of The Catechist, Book 2)', 'https://images.isbndb.com/covers/80/46/9780446608046.jpg'), + ('0446609307', 'A Triumph Of Souls (Journeys Of The Catechist, Book 3)', 'https://images.isbndb.com/covers/93/02/9780446609302.jpg'), + ('1570649669', 'Dog Days Of The West', 'https://images.isbndb.com/covers/96/60/9781570649660.jpg'), + ('0312038208', 'Animating Maria (School For Manners, Book 5)', 'https://images.isbndb.com/covers/82/05/9780312038205.jpg'), + ('0743458311', 'W3 Women In Deep Time', 'https://images.isbndb.com/covers/83/13/9780743458313.jpg'), + ('0345414462', 'Angle Of Impact', 'https://images.isbndb.com/covers/44/65/9780345414465.jpg'), + ('0380786761', 'Tex And Molly In The Afterlife', 'https://images.isbndb.com/covers/67/63/9780380786763.jpg'), + ('0061094781', 'New York Dead', 'https://images.isbndb.com/covers/47/81/9780061094781.jpg'), + ('0425156745', 'Crimes Of The Heart', 'https://images.isbndb.com/covers/67/42/9780425156742.jpg'), + ('0451197143', 'Leonard Maltin''s Family Movie Guide', 'https://images.isbndb.com/covers/71/46/9780451197146.jpg'), + ('0451191986', 'Vengeance Is Hers', 'https://images.isbndb.com/covers/19/84/9780451191984.jpg'), + ('0812512766', 'Whoo?', 'https://images.isbndb.com/covers/27/62/9780812512762.jpg'), + ('0451458753', 'Angry Lead Skies: A Garrett, P.I., Novel', 'https://images.isbndb.com/covers/87/59/9780451458759.jpg'), + ('0451174976', 'The Mammoth Stone (Signet)', 'https://images.isbndb.com/covers/49/70/9780451174970.jpg'), + ('0425164101', 'Crime Through Time 2', 'https://images.isbndb.com/covers/41/05/9780425164105.jpg'), + ('0553577565', 'Men In Black: A Novel', 'https://images.isbndb.com/covers/75/63/9780553577563.jpg'), + ('0380778726', 'Ruby Slippers, Golden Tears', 'https://images.isbndb.com/covers/87/20/9780380778720.jpg'), + ('0553580256', 'Pawing Through The Past (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/02/59/9780553580259.jpg'), + ('0345362497', 'Magnificat (Galactic Milieu Trilogy)', 'https://images.isbndb.com/covers/24/90/9780345362490.jpg'), + ('0702220957', 'Amy''s Children', 'https://images.isbndb.com/covers/09/51/9780702220951.jpg'), + ('0786868104', 'Cosbyology: Essays And Observations From The Doctor Of Comedy', 'https://images.isbndb.com/covers/81/00/9780786868100.jpg'), + ('1557044791', 'Finding Forrester: A Novel', 'https://images.isbndb.com/covers/47/92/9781557044792.jpg'), + ('0679720227', 'The Fall', 'https://images.isbndb.com/covers/02/25/9780679720225.jpg'), + ('0452282276', 'Round Robin (Elm Creek Quilts Series #2)', 'https://images.isbndb.com/covers/22/78/9780452282278.jpg'), + ('006440031X', 'The First Four Years (Little House)', 'https://images.isbndb.com/covers/03/12/9780064400312.jpg'), + ('0590649191', 'The Firehouse Mystery: The Boxcar Children #56', 'https://images.isbndb.com/covers/91/93/9780590649193.jpg'), + ('0590462245', 'The Littles Have A Wedding (The Littles #4)', 'https://images.isbndb.com/covers/22/42/9780590462242.jpg'), + ('0374453071', 'Moominpappa''s Memoirs', 'https://images.isbndb.com/covers/30/77/9780374453077.jpg'), + ('0380725231', 'Coyote Blue', 'https://images.isbndb.com/covers/52/36/9780380725236.jpg'), + ('0836218817', 'Unnatural Selections', 'https://images.isbndb.com/covers/88/17/9780836218817.jpg'), + ('0553560077', 'Dinosaur Island (Choose Your Own Adventure #138)', 'https://images.isbndb.com/covers/00/77/9780553560077.jpg'), + ('0380800780', 'Legs Benedict:: A Bed-And-breakfast Mystery (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/07/80/9780380800780.jpg'), + ('0312962606', 'The Gourmet Detective (Culinary Mysteries)', 'https://images.isbndb.com/covers/26/09/9780312962609.jpg'), + ('0440944597', 'The Chocolate War', 'https://images.isbndb.com/covers/45/91/9780440944591.jpg'), + ('0451528417', 'The Reader''s Companion To World Literature', 'https://images.isbndb.com/covers/84/14/9780451528414.jpg'), + ('0553239759', 'Pardon Me Youre Stepping On My Eyeball', 'https://images.isbndb.com/covers/97/51/9780553239751.jpg'), + ('0380811804', 'Next Stop, Paradise', 'https://images.isbndb.com/covers/18/09/9780380811809.jpg'), + ('0440223253', 'Women On The Case', 'https://images.isbndb.com/covers/32/52/9780440223252.jpg'), + ('045120834X', 'Murder Of A Snake In The Grass (Scumble River Mysteries, Book 4)', 'https://images.isbndb.com/covers/83/47/9780451208347.jpg'), + ('0451210727', 'Murder Of A Barbie And Ken (Scumble River Mysteries, Book 5)', 'https://images.isbndb.com/covers/07/22/9780451210722.jpg'), + ('0886774616', 'Catfantastic 2 (Daw Book Collectors)', 'https://images.isbndb.com/covers/46/15/9780886774615.jpg'), + ('0061080969', 'Something''s Cooking: An Angie Amalfi Mystery (Angie Amalfi Mysteries)', 'https://images.isbndb.com/covers/09/68/9780061080968.jpg'), + ('082177512X', 'Say No To Joe? (Visitation, Book 1)', 'https://images.isbndb.com/covers/51/27/9780821775127.jpg'), + ('0553562835', 'Sam Walton: Made In America', 'https://images.isbndb.com/covers/28/35/9780553562835.jpg'), + ('0553572350', 'Murder At Monticello (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/23/53/9780553572353.jpg'), + ('0312104952', 'New Orleans Requiem', 'https://images.isbndb.com/covers/49/55/9780312104955.jpg'), + ('067087762X', 'Ranch Of Dreams', 'https://images.isbndb.com/covers/76/21/9780670877621.jpg'), + ('0670826472', 'We Are Still Married: Stories & Letters', 'https://images.isbndb.com/covers/64/76/9780670826476.jpg'), + ('067088796X', 'Me: By Jimmy (Big Boy) Valente', 'https://images.isbndb.com/covers/79/65/9780670887965.jpg'), + ('0446393746', 'Headlines III: Not The Movie, Still The Book', 'https://images.isbndb.com/covers/37/44/9780446393744.jpg'), + ('0312969228', 'The Concubine''s Tattoo (Sano Ichiro Mysteries)', 'https://images.isbndb.com/covers/92/26/9780312969226.jpg'), + ('0061096105', 'Rough Justice', 'https://images.isbndb.com/covers/61/05/9780061096105.jpg'), + ('0804118906', 'Before Women Had Wings', 'https://images.isbndb.com/covers/89/03/9780804118903.jpg'), + ('0807083054', 'Kindred (Black Women Writers Series)', 'https://images.isbndb.com/covers/30/55/9780807083055.jpg'), + ('0684824728', 'How To Talk So Kids Can Learn', 'https://images.isbndb.com/covers/47/27/9780684824727.jpg'), + ('1592980414', 'The Dance Of Trees', 'https://images.isbndb.com/covers/04/13/9781592980413.jpg'), + ('0312327188', 'Eddie Would Go: The Story Of Eddie Aikau, Hawaiian Hero And Pioneer Of Big Wave Surfing', 'https://images.isbndb.com/covers/71/87/9780312327187.jpg'), + ('0027582000', 'The Lion, The Witch And The Wardrobe (The Chronicles Of Narnia)', 'https://images.isbndb.com/covers/20/00/9780027582000.jpg'), + ('0670874914', 'The Veil Of Snows', 'https://images.isbndb.com/covers/49/10/9780670874910.jpg'), + ('0670868434', 'A City In Winter', 'https://images.isbndb.com/covers/84/38/9780670868438.jpg'), + ('0395498589', 'Swan Lake', 'https://images.isbndb.com/covers/85/83/9780395498583.jpg'), + ('1573220825', 'An Instance Of The Fingerpost', 'https://images.isbndb.com/covers/08/28/9781573220828.jpg'), + ('0140548572', 'Cats Know Best (Pied Piper Paperbacks)', 'https://images.isbndb.com/covers/85/70/9780140548570.jpg'), + ('0807563277', 'The Panther Mystery (The Boxcar Children Mysteries #66)', 'https://images.isbndb.com/covers/32/74/9780807563274.jpg'), + ('0345352491', 'How To Be A Financially Secure Woman', 'https://images.isbndb.com/covers/24/91/9780345352491.jpg'), + ('0395713730', 'NPR INTERVIEWS 1994', 'https://images.isbndb.com/covers/37/30/9780395713730.jpg'), + ('0385176228', 'The Neverending Story', 'https://images.isbndb.com/covers/62/24/9780385176224.jpg'), + ('0345335236', 'The Frugal Gourmet', 'https://images.isbndb.com/covers/52/34/9780345335234.jpg'), + ('0312112629', 'Depeche Mode: Some Great Reward', 'https://images.isbndb.com/covers/26/22/9780312112622.jpg'), + ('0156001128', 'Writers & Company', 'https://images.isbndb.com/covers/11/20/9780156001120.jpg'), + ('0688120202', 'Farewell To My Concubine: A Novel', 'https://images.isbndb.com/covers/02/07/9780688120207.jpg'), + ('156619945X', 'I Ching: The Classic Chinese Oracle Of Change [The First Complete Translation With Concordance]', 'https://images.isbndb.com/covers/94/52/9781566199452.jpg'), + ('0809117541', 'Hope For The Flowers', 'https://images.isbndb.com/covers/75/43/9780809117543.jpg'), + ('0451528212', 'The Bible''s Greatest Stories (Signet Classics)', 'https://images.isbndb.com/covers/82/16/9780451528216.jpg'), + ('0380794012', 'Twentynine Palms: A True Story Of Murder, Marines, And The Mojave', 'https://images.isbndb.com/covers/40/10/9780380794010.jpg'), + ('0439087171', 'Read To Your Bunny (Max & Ruby)', 'https://images.isbndb.com/covers/71/79/9780439087179.jpg'), + ('0020223722', 'How Green Was My Valley', 'https://images.isbndb.com/covers/37/26/9780020223726.jpg'), + ('0380009471', 'The Dollmaker', 'https://images.isbndb.com/covers/94/73/9780380009473.jpg'), + ('0156189216', 'The Collected Stories Of Eudora Welty', 'https://images.isbndb.com/covers/92/17/9780156189217.jpg'), + ('0743466527', 'Fall On Your Knees (Oprah''s Book Club)', 'https://images.isbndb.com/covers/65/23/9780743466523.jpg'), + ('0440218101', 'Elephantasm', 'https://images.isbndb.com/covers/81/04/9780440218104.jpg'), + ('0440404193', 'Are You There God? It''s Me, Margaret', 'https://images.isbndb.com/covers/41/94/9780440404194.jpg'), + ('0874832772', 'Raised Catholic (American Storytelling)', 'https://images.isbndb.com/covers/27/78/9780874832778.jpg'), + ('0061097667', 'Young Wives', 'https://images.isbndb.com/covers/76/69/9780061097669.jpg'), + ('0440229510', 'The Gadget', 'https://images.isbndb.com/covers/95/13/9780440229513.jpg'), + ('0671521500', 'Everlasting Love: Connecting Rooms / Resurrection / Lake Of Dreams / Role Of A Lifetime / Tricks Of Fate', 'https://images.isbndb.com/covers/15/09/9780671521509.jpg'), + ('1551668459', 'The Cabin', 'https://images.isbndb.com/covers/84/51/9781551668451.jpg'), + ('0934257507', 'Army Brat: A Memoir', 'https://images.isbndb.com/covers/75/03/9780934257503.jpg'), + ('0380817624', 'The Observatory: A Novel', 'https://images.isbndb.com/covers/76/27/9780380817627.jpg'), + ('0345422473', 'Gods And Generals', 'https://images.isbndb.com/covers/24/77/9780345422477.jpg'), + ('0394578074', 'Chili Dawgs Always Bark At Night', 'https://images.isbndb.com/covers/80/71/9780394578071.jpg'), + ('0060193700', 'Why She Left Us', 'https://images.isbndb.com/covers/37/06/9780060193706.jpg'), + ('0618033874', 'Into The Tangle Of Friendship : A Memoir Of The Things That Matter', 'https://images.isbndb.com/covers/38/74/9780618033874.jpg'), + ('034530263X', '187 Ways To Amuse A Bored Cat', 'https://images.isbndb.com/covers/26/32/9780345302632.jpg'), + ('0440495563', 'Wizard In The Tree, The', 'https://images.isbndb.com/covers/55/67/9780440495567.jpg'), + ('0945397542', 'Fashion Means Your Fur Hat Is Dead: A Guide To Good Manners And Social Survival In Alaska', 'https://images.isbndb.com/covers/75/40/9780945397540.jpg'), + ('034543885X', 'Redemption Song: A Novel', 'https://images.isbndb.com/covers/88/50/9780345438850.jpg'), + ('0740718770', 'Mikwright Family Style', 'https://images.isbndb.com/covers/87/79/9780740718779.jpg'), + ('0385304854', 'A Newbery Christmas', 'https://images.isbndb.com/covers/48/56/9780385304856.jpg'), + ('0767916220', 'A Christmas Story: The Book That Inspired The Hilarious Classic Film', 'https://images.isbndb.com/covers/62/26/9780767916226.jpg'), + ('0786863153', 'Pour Your Heart Into It: How Starbucks Built A Company One Cup At A Time', 'https://images.isbndb.com/covers/31/50/9780786863150.jpg'), + ('0141001976', 'Blanche Passes Go', 'https://images.isbndb.com/covers/19/75/9780141001975.jpg'), + ('0874779901', 'Everything In Its Place: My Trials And Triumphs With Obsessive Compulsive Disorder', 'https://images.isbndb.com/covers/99/05/9780874779905.jpg'), + ('0836230671', 'Witty Women: Wise, Wicked, And Wonderful Words', 'https://images.isbndb.com/covers/06/73/9780836230673.jpg'), + ('0836218655', 'Wiener Dog Art: A Far Side Collection', 'https://images.isbndb.com/covers/86/57/9780836218657.jpg'), + ('0836220986', 'The Far Side ® Observer', 'https://images.isbndb.com/covers/09/88/9780836220988.jpg'), + ('0836220730', 'It Came From The Far Side ®', 'https://images.isbndb.com/covers/07/35/9780836220735.jpg'), + ('0345330455', 'Garfield''s Halloween Adventure (Formerly Titled Garfield In Disguise)', 'https://images.isbndb.com/covers/04/51/9780345330451.jpg'), + ('0345326342', 'GARFIELD ROLLS ON, His Eleventh Book [11th]', 'https://images.isbndb.com/covers/63/48/9780345326348.jpg'), + ('0688108059', 'The Eentsy, Weentsy Spider: Fingerplays And Action Rhymes', 'https://images.isbndb.com/covers/80/52/9780688108052.jpg'), + ('0689818769', 'Frindle', 'https://images.isbndb.com/covers/87/69/9780689818769.jpg'), + ('0679006826', 'Fodor''s Exploring Hawaii, 3rd Edition (Exploring Guides)', 'https://images.isbndb.com/covers/68/24/9780679006824.jpg'), + ('0811801802', 'Sabine''s Notebook: In Which The Extraordinary Correspondence Of Griffin & Sabine Continues', 'https://images.isbndb.com/covers/18/05/9780811801805.jpg'), + ('0451167872', 'A Cat In The Manger (An Alice Nestleton Mystery)', 'https://images.isbndb.com/covers/78/73/9780451167873.jpg'), + ('0671008978', 'Timepiece', 'https://images.isbndb.com/covers/89/70/9780671008970.jpg'), + ('1569248281', 'The Tick: The Naked City', 'https://images.isbndb.com/covers/82/87/9781569248287.jpg'), + ('0684815990', 'Mine Eyes Have Seen: A First-Person History Of The Events That Shaped America', 'https://images.isbndb.com/covers/59/92/9780684815992.jpg'), + ('087754042X', 'The World Encyclopedia Of Comics', 'https://images.isbndb.com/covers/04/27/9780877540427.jpg'), + ('0877796130', 'What''s In A Name?: Reflections Of An Irrepressible Name Collector', 'https://images.isbndb.com/covers/61/38/9780877796138.jpg'), + ('038078047X', '20,001 Names For Baby', 'https://images.isbndb.com/covers/04/71/9780380780471.jpg'), + ('0671683829', 'Baby Name Personality Book', 'https://images.isbndb.com/covers/38/25/9780671683825.jpg'), + ('0345377702', 'Me: Stories Of My Life', 'https://images.isbndb.com/covers/77/08/9780345377708.jpg'), + ('0345433017', 'Creepy Susie: And 13 Other Tragic Tales For Troubled Children', 'https://images.isbndb.com/covers/30/15/9780345433015.jpg'), + ('0525938346', 'The African-American Kitchen: Cooking From Our Heritage', 'https://images.isbndb.com/covers/83/47/9780525938347.jpg'), + ('0060960833', 'Cheaper And Better: Homemade Alternatives', 'https://images.isbndb.com/covers/08/34/9780060960834.jpg'), + ('0809276984', 'Lexicon Of Jewish Cooking', 'https://images.isbndb.com/covers/69/81/9780809276981.jpg'), + ('0930878450', 'Lee Wade''s Korean Cookery', 'https://images.isbndb.com/covers/84/50/9780930878450.jpg'), + ('0767903617', 'The Minimalist Cooks At Home: Recipes That Give You More Flavor From Fewer Ingredients In Less Time', 'https://images.isbndb.com/covers/36/15/9780767903615.jpg'), + ('1563053462', 'Miami Spice: The New Florida Cuisine', 'https://images.isbndb.com/covers/34/67/9781563053467.jpg'), + ('1563052377', 'Sheila Lukins All Around The World Cookbook', 'https://images.isbndb.com/covers/23/78/9781563052378.jpg'), + ('0517881225', 'Great Good Food: Luscious Lower-Fat Cooking', 'https://images.isbndb.com/covers/12/24/9780517881224.jpg'), + ('0060955597', 'What To Cook When You Think There''s Nothing In The House To Eat: More Than 175 Easy Recipes And Meal Ideas', 'https://images.isbndb.com/covers/55/95/9780060955595.jpg'), + ('0696010976', 'Better Homes And Gardens Cooking Chinese', 'https://images.isbndb.com/covers/09/72/9780696010972.jpg'), + ('1556701799', 'Scandinavian Feasts', 'https://images.isbndb.com/covers/17/95/9781556701795.jpg'), + ('0912656506', 'Crepe Cookery', 'https://images.isbndb.com/covers/65/02/9780912656502.jpg'), + ('1859674801', 'A Flash In The Pan: 100 Fast And Furious Recipes For Wok And Stir-Fry', 'https://images.isbndb.com/covers/48/02/9781859674802.jpg'), + ('1579590225', 'Bread, Tomato, Garlic: Quick Cooking With 3 Main Ingredients', 'https://images.isbndb.com/covers/02/22/9781579590222.jpg'), + ('0316139289', 'The Ubiquitous Shrimp: From Simple To Exotic, From Feasts To Snacks, All The Wonderful Ways To Savor America''s Favorite Seafood', 'https://images.isbndb.com/covers/92/81/9780316139281.jpg'), + ('0688113133', 'Unplugged Kitchen: A Return To The Simple, Authentic Joys Of Cooking', 'https://images.isbndb.com/covers/31/31/9780688113131.jpg'), + ('0761106332', 'Rosie''s Bakery All-Butter, Fresh Cream, Sugar-Packed, No-Holds-Barred Baking Book', 'https://images.isbndb.com/covers/63/33/9780761106333.jpg'), + ('0762400072', 'White Dog Cafe Cookbook: Multicultural Recipes And Tales Of Adventure From Philadelphia''s Revolutionary Restaurant', 'https://images.isbndb.com/covers/00/72/9780762400072.jpg'), + ('0894802046', 'The Silver Palate Cookbook', 'https://images.isbndb.com/covers/20/41/9780894802041.jpg'), + ('0684818701', 'The 1997 Joy Of Cooking', 'https://images.isbndb.com/covers/87/02/9780684818702.jpg'), + ('0028610105', 'How To Cook Everything: Simple Recipes For Great Food', 'https://images.isbndb.com/covers/01/08/9780028610108.jpg'), + ('076110481X', 'Desperation Dinners', 'https://images.isbndb.com/covers/48/10/9780761104810.jpg'), + ('0894803921', 'The New Basics Cookbook', 'https://images.isbndb.com/covers/39/25/9780894803925.jpg'), + ('0785813640', 'Fiesta! A Celebration Of Latin Hospitality', 'https://images.isbndb.com/covers/36/44/9780785813644.jpg'), + ('1563051729', 'Terrific Pacific Cookbook', 'https://images.isbndb.com/covers/17/22/9781563051722.jpg'), + ('0024103411', 'Food For Fifty: 9th Edition', 'https://images.isbndb.com/covers/34/13/9780024103413.jpg'), + ('0898151899', 'White Trash Cooking (Jargon)', 'https://images.isbndb.com/covers/18/93/9780898151893.jpg'), + ('0836217268', 'Far Side Gallery 4', 'https://images.isbndb.com/covers/72/61/9780836217261.jpg'), + ('0896103145', 'Driving And Discovering Oahu (Driving And Discovering Books)', 'https://images.isbndb.com/covers/31/46/9780896103146.jpg'), + ('0882681265', 'Overcoming Migraines: A Comprehensive Guide To Treatment And Prevention By A Survivor', 'https://images.isbndb.com/covers/12/69/9780882681269.jpg'), + ('044652705X', 'Companions In Courage : Triumphant Tales Of Heroic Athletes', 'https://images.isbndb.com/covers/70/57/9780446527057.jpg'), + ('0786862343', 'No Shirt, No Shoes... No Problem!', 'https://images.isbndb.com/covers/23/44/9780786862344.jpg'), + ('1561792535', 'The Way They Learn', 'https://images.isbndb.com/covers/25/35/9781561792535.jpg'), + ('0684844001', 'The MOTLEY FOOL''S RULE BREAKERS, RULE MAKERS: THE FOOLISH GUIDE TO PICKING STOCKS', 'https://images.isbndb.com/covers/40/08/9780684844008.jpg'), + ('0316099813', 'Help Me To Help My Child: A Sourcebook For Parents Of Learning-Disabled Children', 'https://images.isbndb.com/covers/98/13/9780316099813.jpg'), + ('0060094745', 'Claws', 'https://images.isbndb.com/covers/47/44/9780060094744.jpg'), + ('0803709773', 'Ryan White: My Own Story', 'https://images.isbndb.com/covers/97/75/9780803709775.jpg'), + ('076790849X', 'The No Spin Zone: Confrontations With The Powerful And Famous In America', 'https://images.isbndb.com/covers/84/98/9780767908498.jpg'), + ('0452267072', 'The Challenge Of Parenthood (Plume)', 'https://images.isbndb.com/covers/70/77/9780452267077.jpg'), + ('0913589357', 'Parents Are Teachers, Too: Enriching Your Child''s First Six Years (Little Hands(r))', 'https://images.isbndb.com/covers/93/59/9780913589359.jpg'), + ('0894861611', 'Each Day A New Beginning: Daily Meditations For Women', 'https://images.isbndb.com/covers/16/11/9780894861611.jpg'), + ('0684867672', 'The Five Minute Iliad Other Instant Classics: Great Books For The Short Attention Span', 'https://images.isbndb.com/covers/76/70/9780684867670.jpg'), + ('0060977744', 'Crazy Ladies: A Novel', 'https://images.isbndb.com/covers/77/40/9780060977740.jpg'), + ('0060931221', 'The Last Report On The Miracles At Little No Horse: A Novel', 'https://images.isbndb.com/covers/12/23/9780060931223.jpg'), + ('014050639X', 'Each Peach Pear Plum (Picture Puffins)', 'https://images.isbndb.com/covers/63/96/9780140506396.jpg'), + ('0870679546', 'Whoreson: The Story Of A Ghetto Pimp', 'https://images.isbndb.com/covers/95/44/9780870679544.jpg'), + ('0618043012', 'Practical English Handbook Eleventh Edition', 'https://images.isbndb.com/covers/30/19/9780618043019.jpg'), + ('0590458981', 'The Glory Field', 'https://images.isbndb.com/covers/89/86/9780590458986.jpg'), + ('0679744398', 'All The Pretty Horses (The Border Trilogy, Book 1)', 'https://images.isbndb.com/covers/43/99/9780679744399.jpg'), + ('0140177388', 'Cannery Row', 'https://images.isbndb.com/covers/73/81/9780140177381.jpg'), + ('0439076668', 'Marie Antoinette: Princess Of Versailles, Austria-France, 1769 (The Royal Diaries)', 'https://images.isbndb.com/covers/66/61/9780439076661.jpg'), + ('0590819755', 'Cleopatra VII: Daughter Of The Nile, Egypt, 57 B.C. (The Royal Diaries)', 'https://images.isbndb.com/covers/97/56/9780590819756.jpg'), + ('0553251996', 'Singin'' And Swingin'' And Gettin'' Merry Like Christmas', 'https://images.isbndb.com/covers/19/99/9780553251999.jpg'), + ('0935180915', 'Pearl', 'https://images.isbndb.com/covers/09/16/9780935180916.jpg'), + ('0786000821', 'Rush To Us/Americans Hail Rush Limbaugh', 'https://images.isbndb.com/covers/08/21/9780786000821.jpg'), + ('0671563076', 'Gump & Co.', 'https://images.isbndb.com/covers/30/73/9780671563073.jpg'), + ('0441359175', 'I Will Fear No Evil', 'https://images.isbndb.com/covers/91/72/9780441359172.jpg'), + ('0671522663', 'Better Times Than These', 'https://images.isbndb.com/covers/26/67/9780671522667.jpg'), + ('0385185596', 'Laugh Book, The', 'https://images.isbndb.com/covers/55/92/9780385185592.jpg'), + ('0395866502', 'The Book Of Ruth (Oprah''s Book Club)', 'https://images.isbndb.com/covers/65/04/9780395866504.jpg'), + ('0849908280', 'One Life At A Time', 'https://images.isbndb.com/covers/82/86/9780849908286.jpg'), + ('0824816285', 'Twilight Over Burma: My Life As A Shan Princess (Kolowalu Books)', 'https://images.isbndb.com/covers/62/85/9780824816285.jpg'), + ('0399504877', 'Sound Of Waves', 'https://images.isbndb.com/covers/48/77/9780399504877.jpg'), + ('0060964073', 'Babycakes', 'https://images.isbndb.com/covers/40/78/9780060964078.jpg'), + ('0060964065', 'Further Tales Of The City', 'https://images.isbndb.com/covers/40/61/9780060964061.jpg'), + ('0060964057', 'More Tales Of The City: Volume Two In The Tales Of The City Series', 'https://images.isbndb.com/covers/40/54/9780060964054.jpg'), + ('1573061727', 'Christmas Talk Story (Book & CD)', 'https://images.isbndb.com/covers/17/28/9781573061728.jpg'), + ('093049248X', 'Oahu The Gathering Place', 'https://images.isbndb.com/covers/24/89/9780930492489.jpg'), + ('0689866976', 'Cats, Cats, Cats!', 'https://images.isbndb.com/covers/69/75/9780689866975.jpg'), + ('0743442911', 'Turning On The Girls', 'https://images.isbndb.com/covers/29/16/9780743442916.jpg'), + ('0060256680', 'Where The Sidewalk Ends: Poems And Drawings', 'https://images.isbndb.com/covers/66/85/9780060256685.jpg'), + ('0060256745', 'A Light In The Attic', 'https://images.isbndb.com/covers/67/46/9780060256746.jpg'), + ('0425166422', 'Evans Above (Constable Evans Mystery)', 'https://images.isbndb.com/covers/64/20/9780425166420.jpg'), + ('0312965478', 'Diamond Head (John Caine Mysteries)', 'https://images.isbndb.com/covers/54/71/9780312965471.jpg'), + ('0380778785', 'Auntie Mayhem (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/87/82/9780380778782.jpg'), + ('0374525234', 'It''s A Slippery Slope', 'https://images.isbndb.com/covers/52/31/9780374525231.jpg'), + ('0804816255', 'Even Monkeys Fall From Trees (P): The Wit And Wisdom Of Japanese Proverbs', 'https://images.isbndb.com/covers/62/50/9780804816250.jpg'), + ('0679411089', 'Talk: NPR''s Susan Stamberg Considers All Things', 'https://images.isbndb.com/covers/10/86/9780679411086.jpg'), + ('0871134942', 'A Single Tear: A Family''s Persecution, Love, And Endurance In Communist China', 'https://images.isbndb.com/covers/49/43/9780871134943.jpg'), + ('0374423075', 'Finn Family Moomintroll', 'https://images.isbndb.com/covers/30/70/9780374423070.jpg'), + ('0312959966', 'Cracker To Say I Love You', 'https://images.isbndb.com/covers/99/68/9780312959968.jpg'), + ('0060987510', 'These Is My Words: The Diary Of Sarah Agnes Prine, 1881-1901 Arizona Territories', 'https://images.isbndb.com/covers/75/10/9780060987510.jpg'), + ('0140468811', 'The New Read-aloud Handbook', 'https://images.isbndb.com/covers/88/16/9780140468816.jpg'), + ('0786885416', 'The Hungry Ocean: A Swordboat Captain''s Journey', 'https://images.isbndb.com/covers/54/11/9780786885411.jpg'), + ('0395860296', 'Kowloon Tong', 'https://images.isbndb.com/covers/02/98/9780395860298.jpg'), + ('0802115454', 'N.P.: A Novel', 'https://images.isbndb.com/covers/54/54/9780802115454.jpg'), + ('0451206363', 'Susie, Sadly, And The Black Torpedo Of Doom', 'https://images.isbndb.com/covers/63/67/9780451206367.jpg'), + ('0140148450', 'Dear Dad: Letters From An Adult Child', 'https://images.isbndb.com/covers/84/59/9780140148459.jpg'), + ('0020446500', 'Z For Zachariah', 'https://images.isbndb.com/covers/65/07/9780020446507.jpg'), + ('0736401954', 'Disney''s 102 Dalmatians : A Read-Aloud Storybook', 'https://images.isbndb.com/covers/19/51/9780736401951.jpg'), + ('0380731398', 'Blu''s Hanging', 'https://images.isbndb.com/covers/13/98/9780380731398.jpg'), + ('0435905554', 'So Long A Letter (African Writers)', 'https://images.isbndb.com/covers/55/52/9780435905552.jpg'), + ('031242258X', 'Dress Codes: Of Three Girlhoods--My Mother''s, My Father''s, And Mine', 'https://images.isbndb.com/covers/25/85/9780312422585.jpg'), + ('0740713957', 'Fresh For ''01... You Suckas: A Boondocks Collection', 'https://images.isbndb.com/covers/39/58/9780740713958.jpg'), + ('0609601032', 'Douglas Adams''s Starship Titanic', 'https://images.isbndb.com/covers/10/37/9780609601037.jpg'), + ('0760700761', 'The Constitution Of The United States Of America', 'https://images.isbndb.com/covers/07/61/9780760700761.jpg'), + ('0786882506', 'Sling Blade: A Screenplay', 'https://images.isbndb.com/covers/25/02/9780786882502.jpg'), + ('1880985020', 'High Adventure In The Great Outdoors', 'https://images.isbndb.com/covers/50/21/9781880985021.jpg'), + ('0871566230', 'Reweaving The World: The Emergence Of Ecofeminism', 'https://images.isbndb.com/covers/62/32/9780871566232.jpg'), + ('0807014133', 'Gyn/Ecology: The Metaethics Of Radical Feminism', 'https://images.isbndb.com/covers/41/34/9780807014134.jpg'), + ('0868614726', 'Daughters Of The Dreaming', 'https://images.isbndb.com/covers/47/24/9780868614724.jpg'), + ('0060924926', 'Further Tales Of The City (Tales Of The City Series, V. 3)', 'https://images.isbndb.com/covers/49/28/9780060924928.jpg'), + ('0394752910', 'The Cross: Kristin Lavransdatter, Vol. 3', 'https://images.isbndb.com/covers/29/14/9780394752914.jpg'), + ('0679734406', 'Room Temperature', 'https://images.isbndb.com/covers/44/06/9780679734406.jpg'), + ('0679451145', 'The Island Of The Colorblind', 'https://images.isbndb.com/covers/11/43/9780679451143.jpg'), + ('0385298293', 'Little Big Man', 'https://images.isbndb.com/covers/82/92/9780385298292.jpg'), + ('0684852756', 'Intimacy: A Novel', 'https://images.isbndb.com/covers/27/51/9780684852751.jpg'), + ('0671892614', 'SHADOW SONG', 'https://images.isbndb.com/covers/26/16/9780671892616.jpg'), + ('0525934197', 'Strange Days: My Life With And Without Jim Morrison', 'https://images.isbndb.com/covers/41/96/9780525934196.jpg'), + ('0440486971', 'The Smartest Bear And His Brother Oliver', 'https://images.isbndb.com/covers/69/78/9780440486978.jpg'), + ('0440401038', 'Dr. Dolittle''s Garden', 'https://images.isbndb.com/covers/10/32/9780440401032.jpg'), + ('0763611999', 'I Saw Esau: The Schoolchild''s Pocket Book', 'https://images.isbndb.com/covers/19/96/9780763611996.jpg'), + ('0515128872', 'Checkered Flag: Firewall', 'https://images.isbndb.com/covers/88/71/9780515128871.jpg'), + ('0671000721', 'SEAL FORCE ALPHA', 'https://images.isbndb.com/covers/07/21/9780671000721.jpg'), + ('0316460842', 'Just Plain Folks: Original Tales Of Living, Loving, Longing, And Learning, As Told By A Perfectly Ordinary, Quite Commonly Sensible, And Absolutely Awe-Inspiring Colore', 'https://images.isbndb.com/covers/08/42/9780316460842.jpg'), + ('0439162521', 'Clifford''s Schoolhouse', 'https://images.isbndb.com/covers/25/24/9780439162524.jpg'), + ('0809232057', 'Unbelievably Good Deals That You Absoultely Can''t Get Unless You''re A Parent (Unbelievably Good Deals That You Absolutely Can''t Get Unless You''re A Parent)', 'https://images.isbndb.com/covers/20/55/9780809232055.jpg'), + ('0590406205', 'Stuart Little', 'https://images.isbndb.com/covers/62/08/9780590406208.jpg'), + ('0590213113', 'P.S. Longer Letter Later', 'https://images.isbndb.com/covers/31/10/9780590213110.jpg'), + ('0688046266', 'Encyclopedia Brown And The Case Of The Mysterious Handprints', 'https://images.isbndb.com/covers/62/62/9780688046262.jpg'), + ('0446522570', 'Propeller One-Way Night Coach: A Fable For All Ages', 'https://images.isbndb.com/covers/25/71/9780446522571.jpg'), + ('0151006040', 'Odd Girl Out: The Hidden Culture Of Aggression In Girls', 'https://images.isbndb.com/covers/60/45/9780151006045.jpg'), + ('0060955694', 'I Don''t Know But I''ve Been Told: A Novel', 'https://images.isbndb.com/covers/56/94/9780060955694.jpg'), + ('0763615676', 'Burger Wuss', 'https://images.isbndb.com/covers/56/73/9780763615673.jpg'), + ('0152018255', 'No Mirrors In My Nana''s House', 'https://images.isbndb.com/covers/82/52/9780152018252.jpg'), + ('1564020703', 'Don Quixote', 'https://images.isbndb.com/covers/07/03/9781564020703.jpg'), + ('0375810838', 'You Read To Me & I''ll Read To You: Stories To Share From The 20th Century', 'https://images.isbndb.com/covers/08/31/9780375810831.jpg'), + ('0688106390', 'My Father Is In The Navy', 'https://images.isbndb.com/covers/63/93/9780688106393.jpg'), + ('0761121323', 'What To Expect When You''re Expecting', 'https://images.isbndb.com/covers/13/29/9780761121329.jpg'), + ('0023376627', 'The Conscious Reader', 'https://images.isbndb.com/covers/66/27/9780023376627.jpg'), + ('0062734547', 'Terms Of Adornment: The Ultimate Guide To Accessories', 'https://images.isbndb.com/covers/45/49/9780062734549.jpg'), + ('0060931213', 'Dreamland', 'https://images.isbndb.com/covers/12/16/9780060931216.jpg'), + ('0517093650', 'Ain''t I A Woman! A Book Of Women''s Poetry From Around The World', 'https://images.isbndb.com/covers/36/58/9780517093658.jpg'), + ('0307020460', 'Scuffy The Tugboat And His Adventures Down The River', 'https://images.isbndb.com/covers/04/68/9780307020468.jpg'), + ('0440412234', 'Child Of The Silent Night', 'https://images.isbndb.com/covers/22/36/9780440412236.jpg'), + ('0064402053', 'Sarah, Plain And Tall', 'https://images.isbndb.com/covers/20/57/9780064402057.jpg'), + ('0425095517', 'Mrs. Mike', 'https://images.isbndb.com/covers/55/15/9780425095515.jpg'), + ('0451163443', 'Brighton Beach Memoirs (Signet)', 'https://images.isbndb.com/covers/34/48/9780451163448.jpg'), + ('014017737X', 'The Pearl', 'https://images.isbndb.com/covers/73/74/9780140177374.jpg'), + ('0449130320', 'Dolly Hit Me Back!', 'https://images.isbndb.com/covers/03/22/9780449130322.jpg'), + ('0671041444', 'Angel: City Of (Angel)', 'https://images.isbndb.com/covers/14/41/9780671041441.jpg'), + ('1573061565', 'Honolulu Homicide: Murder And Mayhem In Paradise', 'https://images.isbndb.com/covers/15/68/9781573061568.jpg'), + ('1566473209', 'Obake: Ghost Stories In Hawaii (Mutual Publishing Paperback)', 'https://images.isbndb.com/covers/32/00/9781566473200.jpg'), + ('0440952522', 'Many Waters', 'https://images.isbndb.com/covers/25/27/9780440952527.jpg'), + ('188712876X', 'Get Your War On', 'https://images.isbndb.com/covers/87/66/9781887128766.jpg'), + ('0590981811', 'My Side Of The Mountain', 'https://images.isbndb.com/covers/18/11/9780590981811.jpg'), + ('0553274422', 'The Incredible Journey', 'https://images.isbndb.com/covers/44/24/9780553274424.jpg'), + ('0064403319', 'Harriet The Spy', 'https://images.isbndb.com/covers/33/13/9780064403313.jpg'), + ('0380818973', 'Asking For Trouble: A Novel', 'https://images.isbndb.com/covers/89/76/9780380818976.jpg'), + ('0440409683', 'The Grand Escape', 'https://images.isbndb.com/covers/96/87/9780440409687.jpg'), + ('1573229628', 'Prozac Nation (Movie Tie-In)', 'https://images.isbndb.com/covers/96/23/9781573229623.jpg'), + ('1888363363', 'Bloodchild And Other Stories', 'https://images.isbndb.com/covers/33/64/9781888363364.jpg'), + ('0525936327', 'Foxfire: Confessions Of A Girl Gang', 'https://images.isbndb.com/covers/63/29/9780525936329.jpg'), + ('0890876797', 'I Do: A Guide To Creating Your Own Wedding Ceremony', 'https://images.isbndb.com/covers/67/94/9780890876794.jpg'), + ('0201626705', 'Sleeping At The Starlight Motel: And Other Adventures On The Way Back Home', 'https://images.isbndb.com/covers/67/04/9780201626704.jpg'), + ('0671204971', 'Time And Again', 'https://images.isbndb.com/covers/49/76/9780671204976.jpg'), + ('0440322049', 'Ellis Island', 'https://images.isbndb.com/covers/20/47/9780440322047.jpg'), + ('0140328696', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/86/91/9780140328691.jpg'), + ('0156028778', 'The Crimson Petal And The White', 'https://images.isbndb.com/covers/87/76/9780156028776.jpg'), + ('0916291456', 'Everyone Poops (My Body Science)', 'https://images.isbndb.com/covers/14/57/9780916291457.jpg'), + ('0375826688', 'Eragon (Inheritance, Book 1)', 'https://images.isbndb.com/covers/66/89/9780375826689.jpg'), + ('0743244427', 'A Mighty Heart: The Brave Life And Death Of My Husband, Danny Pearl', 'https://images.isbndb.com/covers/44/28/9780743244428.jpg'), + ('0910043590', 'Intersecting Circles: The Voices Of Hapa Women In Poetry And Prose (Bamboo Ridge)', 'https://images.isbndb.com/covers/35/95/9780910043595.jpg'), + ('0451196856', 'The Most Wanted', 'https://images.isbndb.com/covers/68/59/9780451196859.jpg'), + ('0395304482', 'Jumanji', 'https://images.isbndb.com/covers/44/88/9780395304488.jpg'), + ('0590630954', 'Harvey Potters Balloon Farm', 'https://images.isbndb.com/covers/09/55/9780590630955.jpg'), + ('0899198546', 'The Owl And The Pussy-Cat', 'https://images.isbndb.com/covers/85/45/9780899198545.jpg'), + ('0201107120', 'Let''s Give Kitty A Bath', 'https://images.isbndb.com/covers/71/28/9780201107128.jpg'), + ('0812521021', 'Spectre', 'https://images.isbndb.com/covers/10/23/9780812521023.jpg'), + ('0446351709', 'One L: An Inside Account Of Life In The First Year At Harvard Law School', 'https://images.isbndb.com/covers/17/06/9780446351706.jpg'), + ('0140390316', 'The Jungle (The Penguin American Library)', 'https://images.isbndb.com/covers/03/15/9780140390315.jpg'), + ('0786704608', 'James Herriot: The Life Of A Country Vet', 'https://images.isbndb.com/covers/46/06/9780786704606.jpg'), + ('0684853779', 'Bobos In Paradise: The New Upper Class And How They Got There', 'https://images.isbndb.com/covers/37/72/9780684853772.jpg'), + ('0889104999', 'Better Than Life', 'https://images.isbndb.com/covers/49/90/9780889104990.jpg'), + ('1555913458', 'Diplomatic Dance: The New Embassy Life In America', 'https://images.isbndb.com/covers/34/58/9781555913458.jpg'), + ('0316548189', 'Long Walk To Freedom: The Autobiography Of Nelson Mandela', 'https://images.isbndb.com/covers/81/82/9780316548182.jpg'), + ('0385468628', 'We Who Believe In Freedom', 'https://images.isbndb.com/covers/86/26/9780385468626.jpg'), + ('0385336780', 'Broken Music: A Memoir', 'https://images.isbndb.com/covers/67/89/9780385336789.jpg'), + ('0399238794', 'The Sands Of Time: A Hermux Tantamoq Adventure (Hermux Tantamoq Adventures)', 'https://images.isbndb.com/covers/87/96/9780399238796.jpg'), + ('0374529035', 'Naked In Baghdad: The Iraq War As Seen By NPR''s Correspondent Anne Garrels', 'https://images.isbndb.com/covers/90/31/9780374529031.jpg'), + ('0385507836', 'Prisoners Of Hope: The Story Of Our Captivity And Freedom In Afghanistan', 'https://images.isbndb.com/covers/78/37/9780385507837.jpg'), + ('0060953225', 'More Mirth Of A Nation : The Best Contemporary Humor', 'https://images.isbndb.com/covers/32/25/9780060953225.jpg'), + ('0553151657', 'Roald Dahl''s James And The Giant Peach', 'https://images.isbndb.com/covers/16/57/9780553151657.jpg'), + ('0553150979', 'Charlie And The Chocolate Factory', 'https://images.isbndb.com/covers/09/71/9780553150971.jpg'), + ('1578400619', 'Typee (Classics Illustrated)', 'https://images.isbndb.com/covers/06/14/9781578400614.jpg'), + ('1578401860', 'Faust (Classics Illustrated)', 'https://images.isbndb.com/covers/18/64/9781578401864.jpg'), + ('1578400600', 'Uncle Tom''s Cabin (Classic Illustrated)', 'https://images.isbndb.com/covers/06/07/9781578400607.jpg'), + ('0385315511', 'Drinking: A Love Story', 'https://images.isbndb.com/covers/55/17/9780385315517.jpg'), + ('0877845824', 'Parents In Pain : Overcoming The Hurt And Frustration Of Problem Children', 'https://images.isbndb.com/covers/58/29/9780877845829.jpg'), + ('0813511690', 'Quicksand And Passing (American Women Writers)', 'https://images.isbndb.com/covers/16/96/9780813511696.jpg'), + ('0385471432', 'Wedding, The', 'https://images.isbndb.com/covers/14/35/9780385471435.jpg'), + ('067973743X', 'Bury Me Standing: The Gypsies And Their Journey', 'https://images.isbndb.com/covers/74/38/9780679737438.jpg'), + ('1574780255', 'Gone Fishin'': An Easy Rawlins Novel (Easy Rawlins Mysteries)', 'https://images.isbndb.com/covers/02/53/9781574780253.jpg'), + ('0679769781', 'We''re Right, They''re Wrong: A Handbook For Spirited Progressives', 'https://images.isbndb.com/covers/97/81/9780679769781.jpg'), + ('0525938850', 'So Good', 'https://images.isbndb.com/covers/88/59/9780525938859.jpg'), + ('0880291230', 'The Roald Dahl Omnibus: Perfect Bedtime Stories For Sleepless Nights', 'https://images.isbndb.com/covers/12/31/9780880291231.jpg'), + ('0440226198', 'The Gift Of Fear', 'https://images.isbndb.com/covers/61/92/9780440226192.jpg'), + ('0140055770', 'My Uncle Oswald', 'https://images.isbndb.com/covers/57/71/9780140055771.jpg'), + ('0394743180', 'A Room With A View', 'https://images.isbndb.com/covers/31/89/9780394743189.jpg'), + ('0449912744', 'Best Of Ann Landers: Her Favorite Letters Of All Time', 'https://images.isbndb.com/covers/27/44/9780449912744.jpg'), + ('1551667215', 'Book Club', 'https://images.isbndb.com/covers/72/18/9781551667218.jpg'), + ('0064402371', 'Journey To Jo''burg: A South African Story', 'https://images.isbndb.com/covers/23/78/9780064402378.jpg'), + ('0671521012', 'The JOURNAL OF CALLIE WADE', 'https://images.isbndb.com/covers/10/11/9780671521011.jpg'), + ('0671871390', 'A Spy In The House Of Love', 'https://images.isbndb.com/covers/13/90/9780671871390.jpg'), + ('0399233881', 'A Is For Salad', 'https://images.isbndb.com/covers/38/83/9780399233883.jpg'), + ('0307122379', 'Nothing To Do Puppy (Bedtime Stories)', 'https://images.isbndb.com/covers/23/77/9780307122377.jpg'), + ('067187893X', 'Chicka Chicka ABC', 'https://images.isbndb.com/covers/89/31/9780671878931.jpg'), + ('067943979X', 'The Lost Children Of Wilder : The Epic Struggle To Change Foster Care', 'https://images.isbndb.com/covers/97/90/9780679439790.jpg'), + ('1559720093', 'Diner Guys', 'https://images.isbndb.com/covers/00/90/9781559720090.jpg'), + ('1573420387', 'Day Hikes On Oahu, 3rd', 'https://images.isbndb.com/covers/03/89/9781573420389.jpg'), + ('0394849558', 'Lady And The Tramp (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/95/53/9780394849553.jpg'), + ('0375502025', 'The Greatest Generation', 'https://images.isbndb.com/covers/20/26/9780375502026.jpg'), + ('1566911605', 'Moon Handbooks: Hawaii', 'https://images.isbndb.com/covers/16/03/9781566911603.jpg'), + ('0451199634', 'New International Dictionary Of Quotations, 3rd Edition', 'https://images.isbndb.com/covers/96/38/9780451199638.jpg'), + ('0441007368', 'Titan A.E.: Novelization', 'https://images.isbndb.com/covers/73/63/9780441007363.jpg'), + ('1573241180', 'Stone Soup For The World: Life-Changing Stories Of Kindness & Courageous Acts Of Service', 'https://images.isbndb.com/covers/11/82/9781573241182.jpg'), + ('0743225961', 'The Biker Code: Wisdom For The Ride', 'https://images.isbndb.com/covers/59/60/9780743225960.jpg'), + ('0312161271', 'Advocacy In The Classroom: Problems And Possibilities', 'https://images.isbndb.com/covers/12/79/9780312161279.jpg'), + ('1890132322', 'The Man Who Planted Trees', 'https://images.isbndb.com/covers/23/23/9781890132323.jpg'), + ('0805002545', 'Dave Barry''s Bad Habits: A 100% Fact-Free Book', 'https://images.isbndb.com/covers/25/46/9780805002546.jpg'), + ('0452265169', 'A Wild Sheep Chase: A Novel (Contemporary Fiction, Plume)', 'https://images.isbndb.com/covers/51/65/9780452265165.jpg'), + ('0962307203', 'Kitty The Raccoon', 'https://images.isbndb.com/covers/72/01/9780962307201.jpg'), + ('0374413312', 'Comet In Moominland', 'https://images.isbndb.com/covers/33/16/9780374413316.jpg'), + ('0449218228', 'Everyday Is Father''s Day: The Best Things Ever Said About Dear Old Dad', 'https://images.isbndb.com/covers/82/28/9780449218228.jpg'), + ('1885167504', 'Marketing Outrageously: How To Increase Your Revenue By Staggering Amounts!', 'https://images.isbndb.com/covers/75/07/9781885167507.jpg'), + ('0711919518', 'The Cure: Songwords, 1978-1989', 'https://images.isbndb.com/covers/95/18/9780711919518.jpg'), + ('0399238786', 'Time Stops For No Mouse: A Hermux Tantamoq Adventure (Hermux Tantamoq Adventures)', 'https://images.isbndb.com/covers/87/89/9780399238789.jpg'), + ('0307021742', 'Tommy Visits The Doctor (A Little Golden Book)', 'https://images.isbndb.com/covers/17/48/9780307021748.jpg'), + ('030701021X', 'The Secret City Under The Sea (A Little Golden Book) (Disney''s Duck Tales)', 'https://images.isbndb.com/covers/02/16/9780307010216.jpg'), + ('0307001040', 'Peter Pan (A Golden Book)', 'https://images.isbndb.com/covers/10/47/9780307001047.jpg'), + ('0307001342', 'Little Red Riding Hood (Little Golden Book)', 'https://images.isbndb.com/covers/13/44/9780307001344.jpg'), + ('0307030717', 'The Tale Of Peter Rabbit (Little Golden Book)', 'https://images.isbndb.com/covers/07/19/9780307030719.jpg'), + ('0307302024', 'Walt Disney''s The Sorcerer''s Apprentice (A Little Golden Book)', 'https://images.isbndb.com/covers/20/21/9780307302021.jpg'), + ('0717288234', 'How To Catch A Heffalump (Disney''s Pooh) (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/82/36/9780717288236.jpg'), + ('0689804520', 'Twelve Snails To One Lizard: A Tale Of Mischief And Measurement', 'https://images.isbndb.com/covers/45/26/9780689804526.jpg'), + ('0439213614', 'Clifford And The Runaway Rabbit (Clifford The Big Red Dog) (Big Red Reader Series)', 'https://images.isbndb.com/covers/36/15/9780439213615.jpg'), + ('0439381282', 'The Powerpuff Girls Movie: Saving The World Before Bedtime!', 'https://images.isbndb.com/covers/12/84/9780439381284.jpg'), + ('0816714584', 'Red-Headed Gooseberry Ghost (Haunted House Storybook)', 'https://images.isbndb.com/covers/45/82/9780816714582.jpg'), + ('0590341952', 'Alligator Baby', 'https://images.isbndb.com/covers/19/50/9780590341950.jpg'), + ('0448343606', 'All Aboard Fire Trucks (Reading Railroad)', 'https://images.isbndb.com/covers/36/00/9780448343600.jpg'), + ('0590334271', 'The Great Egg Mystery (Who Did It? Sticker Mysteries)', 'https://images.isbndb.com/covers/42/73/9780590334273.jpg'), + ('0394851455', '500 Palabras Nuevas Para Ti / 500 Words To Grow On', 'https://images.isbndb.com/covers/14/57/9780394851457.jpg'), + ('0590689908', 'Dinofours: It''s Time For School!', 'https://images.isbndb.com/covers/99/08/9780590689908.jpg'), + ('0590738720', 'The Magic School Bus Going Batty: A Book About Bats', 'https://images.isbndb.com/covers/87/29/9780590738729.jpg'), + ('0590464639', 'The Biggest Pumpkin Ever', 'https://images.isbndb.com/covers/46/35/9780590464635.jpg'), + ('0590411853', 'The Twelve Dancing Princesses: A Folk Tale From The Brothers Grimm (Easy To Read Folktale)', 'https://images.isbndb.com/covers/18/51/9780590411851.jpg'), + ('0394840704', 'Do You Know? Pictback', 'https://images.isbndb.com/covers/07/03/9780394840703.jpg'), + ('0307020908', 'The Good-by Day (A Little Golden Book)', 'https://images.isbndb.com/covers/09/01/9780307020901.jpg'), + ('0307988384', 'Pooh Trick Or Treat! (Little Golden Book)', 'https://images.isbndb.com/covers/83/86/9780307988386.jpg'), + ('0307010309', 'Cookie Monster And The Cookie Tree (Little Golden Books)', 'https://images.isbndb.com/covers/03/08/9780307010308.jpg'), + ('0307002101', 'My Little Golden Book Of Cars And Trucks', 'https://images.isbndb.com/covers/21/05/9780307002105.jpg'), + ('0307010945', 'I Think That It Is Wonderful And Other Poems From Sesame Street ( Little Golden Book)', 'https://images.isbndb.com/covers/09/40/9780307010940.jpg'), + ('0307601900', 'Grover''s Own Alphabet (Sesame Street)', 'https://images.isbndb.com/covers/19/02/9780307601902.jpg'), + ('0307001369', 'Best Little Word Book Ever (Little Golden Book)', 'https://images.isbndb.com/covers/13/68/9780307001368.jpg'), + ('0307301400', 'Richard Scarry''s Busiest Firefighters Ever (Little Golden Books)', 'https://images.isbndb.com/covers/14/06/9780307301406.jpg'), + ('0307010856', 'The Monster At The End Of This Book (Sesame Street) (Little Golden Book)', 'https://images.isbndb.com/covers/08/58/9780307010858.jpg'), + ('0152420371', 'Kat Kong', 'https://images.isbndb.com/covers/03/76/9780152420376.jpg'), + ('088138044X', 'If You''re Afraid Of The Dark Remember The Rainbow', 'https://images.isbndb.com/covers/04/46/9780881380446.jpg'), + ('0141309199', 'Slam', 'https://images.isbndb.com/covers/91/94/9780141309194.jpg'), + ('0425153061', 'Maya''s First Rose: Diary Of A Very Special Love', 'https://images.isbndb.com/covers/30/62/9780425153062.jpg'), + ('0446674249', 'L.A. Confidential', 'https://images.isbndb.com/covers/42/49/9780446674249.jpg'), + ('0440400597', 'All-of-a-Kind Family', 'https://images.isbndb.com/covers/05/92/9780440400592.jpg'), + ('188521135X', 'Hawai''i: True Stories Of The Island Spirit (Travelers'' Tales Guides)', 'https://images.isbndb.com/covers/13/54/9781885211354.jpg'), + ('0865476268', 'Postmodern Pooh', 'https://images.isbndb.com/covers/62/64/9780865476264.jpg'), + ('0140274782', 'Wobegon Boy', 'https://images.isbndb.com/covers/47/83/9780140274783.jpg'), + ('0156717204', 'The Philosophy Of Andy Warhol : (From A To B And Back Again)', 'https://images.isbndb.com/covers/72/05/9780156717205.jpg'), + ('0307960374', 'Seven Little Postmen (A Little Golden Book)', 'https://images.isbndb.com/covers/03/75/9780307960375.jpg'), + ('0394837037', 'The Truck Book (Pictureback(R))', 'https://images.isbndb.com/covers/70/31/9780394837031.jpg'), + ('0380017199', 'Rehearsal''s Off!', 'https://images.isbndb.com/covers/71/95/9780380017195.jpg'), + ('1573060194', 'Pupus: An Island Tradition', 'https://images.isbndb.com/covers/01/96/9781573060196.jpg'), + ('0618164723', 'Fat Land: How Americans Became The Fattest People In The World', 'https://images.isbndb.com/covers/47/21/9780618164721.jpg'), + ('1400045088', 'The Salmon Of Doubt: Hitchhiking The Galaxy One Last Time', 'https://images.isbndb.com/covers/50/82/9781400045082.jpg'), + ('081120068X', 'Siddhartha', 'https://images.isbndb.com/covers/06/84/9780811200684.jpg'), + ('0380707799', 'Borrowed Time: An Aids Memoir', 'https://images.isbndb.com/covers/77/99/9780380707799.jpg'), + ('0061096164', 'True Love', 'https://images.isbndb.com/covers/61/67/9780061096167.jpg'), + ('1558538445', 'I Hope You Dance', 'https://images.isbndb.com/covers/84/43/9781558538443.jpg'), + ('0879236671', 'Bear (Nonpareil Books)', 'https://images.isbndb.com/covers/66/70/9780879236670.jpg'), + ('0312954468', 'River God: A Novel Of Ancient Egypt', 'https://images.isbndb.com/covers/44/68/9780312954468.jpg'), + ('0965574911', 'Daughter Of The Queen Of Sheba', 'https://images.isbndb.com/covers/49/14/9780965574914.jpg'), + ('0394889568', 'NOISY COUNTING BOOK (Tough Enough For Toddlers)', 'https://images.isbndb.com/covers/95/66/9780394889566.jpg'), + ('0064430677', 'William''s Doll', 'https://images.isbndb.com/covers/06/78/9780064430678.jpg'), + ('0689304374', 'The Church Mice And The Moon', 'https://images.isbndb.com/covers/43/78/9780689304378.jpg'), + ('0964335905', 'Family Traditions In Hawaii', 'https://images.isbndb.com/covers/59/05/9780964335905.jpg'), + ('0060812451', 'Tao Te Ching', 'https://images.isbndb.com/covers/24/54/9780060812454.jpg'), + ('0738861618', 'O Au No Keia: Voices From Hawai''i''s Mahu And Transgender Communities', 'https://images.isbndb.com/covers/16/16/9780738861616.jpg'), + ('0312167989', 'A Child''s Night Dream', 'https://images.isbndb.com/covers/79/81/9780312167981.jpg'), + ('0824813928', 'New Pocket Hawaiian Dictionary: With A Concise Grammar And Given Names In Hawaiian', 'https://images.isbndb.com/covers/39/25/9780824813925.jpg'), + ('0679781277', 'Martin Dressler: The Tale Of An American Dreamer', 'https://images.isbndb.com/covers/12/71/9780679781271.jpg'), + ('0865470545', 'Mr. Bridge', 'https://images.isbndb.com/covers/05/45/9780865470545.jpg'), + ('0345440145', 'I''m The One That I Want', 'https://images.isbndb.com/covers/01/43/9780345440143.jpg'), + ('0026098407', 'For Colored Girls Who Have Considered Suicide When The Rainbow Is Enuf', 'https://images.isbndb.com/covers/84/03/9780026098403.jpg'), + ('0060167688', 'After All These Years', 'https://images.isbndb.com/covers/76/84/9780060167684.jpg'), + ('0689846258', 'Jennifer, Hecate, MacBeth, William McKinley And Me, Elizabeth', 'https://images.isbndb.com/covers/62/50/9780689846250.jpg'), + ('0060812508', 'Black Boy (American Hunger : A Record Of Childhood And Youth)', 'https://images.isbndb.com/covers/25/08/9780060812508.jpg'), + ('0066211662', 'The Bitch In The House: 26 Women Tell The Truth About Sex, Solitude, Work, Motherhood, And Marriage', 'https://images.isbndb.com/covers/16/64/9780066211664.jpg'), + ('1401300014', 'The Essential 55: An Award-Winning Educator''s Rules For Discovering The Successful Student In Every Child', 'https://images.isbndb.com/covers/00/12/9781401300012.jpg'), + ('1561633259', 'To Afghanistan And Back: A Graphic Travelougue', 'https://images.isbndb.com/covers/32/58/9781561633258.jpg'), + ('055328942X', 'The Shelters Of Stone (Earth''s Children, Book 5)', 'https://images.isbndb.com/covers/94/28/9780553289428.jpg'), + ('0425167054', 'The Tick: Mighty Blue Justice', 'https://images.isbndb.com/covers/70/52/9780425167052.jpg'), + ('0140083049', 'Pooh''s Workout Book', 'https://images.isbndb.com/covers/30/40/9780140083040.jpg'), + ('0767900316', 'The Corner: A Year In The Life Of An Inner-City Neighborhood', 'https://images.isbndb.com/covers/03/17/9780767900317.jpg'), + ('0684863871', 'Random Family: Love, Drugs, Trouble, And Coming Of Age In The Bronx', 'https://images.isbndb.com/covers/38/70/9780684863870.jpg'), + ('0836236637', 'Send In The Stunt Mom: The Second Collection Of Committed', 'https://images.isbndb.com/covers/66/37/9780836236637.jpg'), + ('0316597058', 'On A Street Called Easy, In A Cottage Called Joye', 'https://images.isbndb.com/covers/70/50/9780316597050.jpg'), + ('0312922728', 'Modern Women', 'https://images.isbndb.com/covers/27/26/9780312922726.jpg'), + ('1551520559', 'Bad Jobs: My Last Shift At Albert Wong''s Pagoda And Other Ugly Tales Of The Workplace', 'https://images.isbndb.com/covers/05/51/9781551520551.jpg'), + ('0425103285', 'Mrs. Mike: The Story Of Katherine Mary Flannigan', 'https://images.isbndb.com/covers/32/89/9780425103289.jpg'), + ('0553342762', 'Jaguars Ripped My Flesh: Adventure Is A Risky Business', 'https://images.isbndb.com/covers/27/65/9780553342765.jpg'), + ('0553574086', 'Critical Judgment', 'https://images.isbndb.com/covers/40/81/9780553574081.jpg'), + ('0553287575', 'End Of The Road, The', 'https://images.isbndb.com/covers/75/78/9780553287578.jpg'), + ('0970159404', 'Flying Hawaii : A Pilot''s Guide To The Islands', 'https://images.isbndb.com/covers/94/03/9780970159403.jpg'), + ('0757300618', 'Chicken Soup From The Soul Of Hawaii: Stories Of Aloha To Create Paradise Wherever You Are', 'https://images.isbndb.com/covers/06/15/9780757300615.jpg'), + ('0445205377', 'Wild Seed (Patternist)', 'https://images.isbndb.com/covers/53/76/9780445205376.jpg'), + ('0446610798', 'Right As Rain (Derek Strange/Terry Quinn)', 'https://images.isbndb.com/covers/07/97/9780446610797.jpg'), + ('0307986241', 'Good Night, Little Bear (Little Golden Book)', 'https://images.isbndb.com/covers/62/45/9780307986245.jpg'), + ('0446611328', 'Hell To Pay', 'https://images.isbndb.com/covers/13/29/9780446611329.jpg'), + ('0761125493', 'What To Expect When You''re Expecting, 3rd Edition', 'https://images.isbndb.com/covers/54/95/9780761125495.jpg'), + ('1931686408', 'Escape From Fire Island!', 'https://images.isbndb.com/covers/64/02/9781931686402.jpg'), + ('039923392X', 'You Are My I Love You', 'https://images.isbndb.com/covers/39/20/9780399233920.jpg'), + ('0967418305', 'I Had A Dollar In Hawai''i', 'https://images.isbndb.com/covers/83/08/9780967418308.jpg'), + ('1566471575', 'A Pocket Guide To Oahu', 'https://images.isbndb.com/covers/15/72/9781566471572.jpg'), + ('0816704317', 'Home For A Dinosaur (Giant First Start Reader)', 'https://images.isbndb.com/covers/43/16/9780816704316.jpg'), + ('1556114753', 'Scarlet Women', 'https://images.isbndb.com/covers/47/55/9781556114755.jpg'), + ('0449908453', 'Brunswick Gardens', 'https://images.isbndb.com/covers/84/57/9780449908457.jpg'), + ('0553568779', 'Wild Kat (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/87/76/9780553568776.jpg'), + ('0061097489', 'The Abduction', 'https://images.isbndb.com/covers/74/85/9780061097485.jpg'), + ('0440221048', 'A Certain Justice (Abe Glitsky)', 'https://images.isbndb.com/covers/10/43/9780440221043.jpg'), + ('0345394267', 'Rainbow''s End', 'https://images.isbndb.com/covers/42/62/9780345394262.jpg'), + ('0385420951', 'Kat''s Cradle: A Perfect Crime Book (A Kat Colorado Mystery, No. 3)', 'https://images.isbndb.com/covers/09/52/9780385420952.jpg'), + ('0836261313', 'Call No Man Father', 'https://images.isbndb.com/covers/13/18/9780836261318.jpg'), + ('0449909360', 'House Of Blues', 'https://images.isbndb.com/covers/93/62/9780449909362.jpg'), + ('0892965711', 'The Odd Job (Sarah Kelling And Max Bittersohn Mysteries)', 'https://images.isbndb.com/covers/57/17/9780892965717.jpg'), + ('0679429883', 'Eyes Of A Child', 'https://images.isbndb.com/covers/98/83/9780679429883.jpg'), + ('0762102519', 'A Kiss Before Dying (The Best Mysteries Of All Time)', 'https://images.isbndb.com/covers/25/18/9780762102518.jpg'), + ('0385242395', 'Proving', 'https://images.isbndb.com/covers/23/94/9780385242394.jpg'), + ('0671003364', 'Ransom', 'https://images.isbndb.com/covers/33/64/9780671003364.jpg'), + ('0380714868', 'Katapult (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/48/65/9780380714865.jpg'), + ('0380711877', 'Katwalk (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/18/71/9780380711871.jpg'), + ('0345375351', 'Show Of Evil', 'https://images.isbndb.com/covers/53/53/9780345375353.jpg'), + ('0812568672', 'Y2k', 'https://images.isbndb.com/covers/86/77/9780812568677.jpg'), + ('0446515868', 'Night Train To Memphis', 'https://images.isbndb.com/covers/58/63/9780446515863.jpg'), + ('0446523186', 'Belladonna: A Novel Of Revenge', 'https://images.isbndb.com/covers/31/89/9780446523189.jpg'), + ('0553140175', 'The Simple Solution To Rubik''s Cube', 'https://images.isbndb.com/covers/01/70/9780553140170.jpg'), + ('0786860472', 'Suitable For Framing', 'https://images.isbndb.com/covers/04/70/9780786860470.jpg'), + ('0671694170', 'China White', 'https://images.isbndb.com/covers/41/73/9780671694173.jpg'), + ('0399132066', 'The Traveler', 'https://images.isbndb.com/covers/20/63/9780399132063.jpg'), + ('0070590826', 'Daydreams', 'https://images.isbndb.com/covers/08/23/9780070590823.jpg'), + ('0312983603', 'The Mermaids Singing (Dr. Tony Hill And Carol Jordan Mysteries)', 'https://images.isbndb.com/covers/36/04/9780312983604.jpg'), + ('0553106341', 'Dust To Dust', 'https://images.isbndb.com/covers/63/43/9780553106343.jpg'), + ('0399144927', 'The Breaker', 'https://images.isbndb.com/covers/49/29/9780399144929.jpg'), + ('0399143807', 'Judas Child', 'https://images.isbndb.com/covers/38/09/9780399143809.jpg'), + ('0345404785', 'Dark Lady', 'https://images.isbndb.com/covers/47/87/9780345404787.jpg'), + ('0425158608', 'Honky Tonk Kat (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/86/09/9780425158609.jpg'), + ('0380728168', 'Final Victim', 'https://images.isbndb.com/covers/81/69/9780380728169.jpg'), + ('0515121282', 'Cold Shoulder', 'https://images.isbndb.com/covers/12/85/9780515121285.jpg'), + ('068480297X', 'Shock Wave (Dirk Pitt Adventures)', 'https://images.isbndb.com/covers/29/78/9780684802978.jpg'), + ('0399139710', 'Acceptable Risk', 'https://images.isbndb.com/covers/97/10/9780399139710.jpg'), + ('0375704892', 'No More Dying Then: An Inspector Wexford Mystery', 'https://images.isbndb.com/covers/48/95/9780375704895.jpg'), + ('0671875817', 'A Gathering Of Saints', 'https://images.isbndb.com/covers/58/17/9780671875817.jpg'), + ('0553575260', 'A Free Man Of Color (Benjamin January, Book 1)', 'https://images.isbndb.com/covers/52/62/9780553575262.jpg'), + ('0553092650', 'In The Presence Of The Enemy', 'https://images.isbndb.com/covers/26/53/9780553092653.jpg'), + ('0385468520', 'Alley Kat Blues', 'https://images.isbndb.com/covers/85/27/9780385468527.jpg'), + ('0892965835', 'Serious Intent', 'https://images.isbndb.com/covers/58/30/9780892965830.jpg'), + ('0553264680', 'C IS FOR CORPSE (Kinsey Millhone Mysteries (Paperback))', 'https://images.isbndb.com/covers/46/85/9780553264685.jpg'), + ('0451191951', 'The Brimstone Wedding', 'https://images.isbndb.com/covers/19/53/9780451191953.jpg'), + ('0679429891', 'The Final Judgment', 'https://images.isbndb.com/covers/98/90/9780679429890.jpg'), + ('0061009881', 'Hostile Witness', 'https://images.isbndb.com/covers/98/84/9780061009884.jpg'), + ('0316693863', 'Hide & Seek', 'https://images.isbndb.com/covers/38/68/9780316693868.jpg'), + ('0449224392', 'Traitors Gate', 'https://images.isbndb.com/covers/43/97/9780449224397.jpg'), + ('0553575945', 'Requiem For A Glass Heart', 'https://images.isbndb.com/covers/59/41/9780553575941.jpg'), + ('0451184726', 'She Walks These Hills', 'https://images.isbndb.com/covers/47/26/9780451184726.jpg'), + ('0440237513', 'On Edge', 'https://images.isbndb.com/covers/75/18/9780440237518.jpg'), + ('0375709045', 'She''s Gone Country: Dispatches From A Lost Soul In The Heart Of Dixie', 'https://images.isbndb.com/covers/90/43/9780375709043.jpg'), + ('0345389409', 'Memnoch The Devil (Vampire Chronicles, Book 5)', 'https://images.isbndb.com/covers/94/04/9780345389404.jpg'), + ('0066210690', 'The Last Lone Inventor: A Tale Of Genius, Deceit, And The Birth Of Television', 'https://images.isbndb.com/covers/06/98/9780066210698.jpg'), + ('0743201957', 'Two O''Clock, Eastern Wartime', 'https://images.isbndb.com/covers/19/57/9780743201957.jpg'), + ('0425160920', 'Trick Question', 'https://images.isbndb.com/covers/09/23/9780425160923.jpg'), + ('0451404270', 'Dead Time (Signet)', 'https://images.isbndb.com/covers/42/75/9780451404275.jpg'), + ('0425173305', 'Slackjaw', 'https://images.isbndb.com/covers/33/05/9780425173305.jpg'), + ('0451409485', 'First Avenue', 'https://images.isbndb.com/covers/94/85/9780451409485.jpg'), + ('0399145850', 'Day Of Reckoning', 'https://images.isbndb.com/covers/58/58/9780399145858.jpg'), + ('0151003580', 'At End Of Day', 'https://images.isbndb.com/covers/35/87/9780151003587.jpg'), + ('037571412X', 'The Dying Animal', 'https://images.isbndb.com/covers/41/22/9780375714122.jpg'), + ('0446667900', 'A Darkness More Than Night (Harry Bosch)', 'https://images.isbndb.com/covers/79/06/9780446667906.jpg'), + ('0805056645', 'Are You Somebody?: The Accidental Memoir Of A Dublin Woman', 'https://images.isbndb.com/covers/66/48/9780805056648.jpg'), + ('0786881011', 'The Lost Get-Back Boogie', 'https://images.isbndb.com/covers/10/17/9780786881017.jpg'), + ('0380730820', 'Jupiter''s Bones: A Peter Decker/Rina Lazarus Novel (Peter Decker & Rina Lazarus Novels)', 'https://images.isbndb.com/covers/08/27/9780380730827.jpg'), + ('0821765957', 'Key West', 'https://images.isbndb.com/covers/59/51/9780821765951.jpg'), + ('0446604232', 'Exclusive', 'https://images.isbndb.com/covers/42/39/9780446604239.jpg'), + ('0060914289', 'The Egg And I', 'https://images.isbndb.com/covers/42/88/9780060914288.jpg'), + ('0345366395', 'Virginia Woolf: The Impact Of Childhood Sexual Abuse On Her Life And Work', 'https://images.isbndb.com/covers/63/99/9780345366399.jpg'), + ('0805208488', 'The Trial', 'https://images.isbndb.com/covers/84/81/9780805208481.jpg'), + ('0517084791', 'Three Complete Novels: The Andromeda Strain, The Terminal Man, And The Great Train Robbery', 'https://images.isbndb.com/covers/47/93/9780517084793.jpg'), + ('0312253974', 'Lazarus And The Hurricane: The Freeing Of Rubin "Hurricane" Carter', 'https://images.isbndb.com/covers/39/74/9780312253974.jpg'), + ('0517702134', 'True Crime', 'https://images.isbndb.com/covers/21/30/9780517702130.jpg'), + ('0312169345', 'The Moor: A Mary Russell Novel', 'https://images.isbndb.com/covers/93/43/9780312169343.jpg'), + ('0684837765', 'KILLING TIME: AN INSPECTOR BILL SLIDER MYSTERY (Inspector Bill Slider Mysteries)', 'https://images.isbndb.com/covers/77/65/9780684837765.jpg'), + ('0807070971', 'Breathless: An Asthma Journal', 'https://images.isbndb.com/covers/09/70/9780807070970.jpg'), + ('0020447019', 'Hot Type: Our Most Celebrated Writers Introduce The Next Word In Contemporary American Fiction (Collier Fiction)', 'https://images.isbndb.com/covers/70/16/9780020447016.jpg'), + ('0060916559', 'John Dollar: A Novel', 'https://images.isbndb.com/covers/65/58/9780060916558.jpg'), + ('0525939695', 'Ballad Of Frankie Silver', 'https://images.isbndb.com/covers/96/96/9780525939696.jpg'), + ('0312264143', 'The Woman In The Yard: A Novel', 'https://images.isbndb.com/covers/41/47/9780312264147.jpg'), + ('0446527912', 'Animosity : A Novel', 'https://images.isbndb.com/covers/79/10/9780446527910.jpg'), + ('0679762051', 'My Dark Places', 'https://images.isbndb.com/covers/20/58/9780679762058.jpg'), + ('0553578774', 'Night Dogs', 'https://images.isbndb.com/covers/87/75/9780553578775.jpg'), + ('0380790432', 'Ghost Dance', 'https://images.isbndb.com/covers/04/32/9780380790432.jpg'), + ('0553581481', 'Eleven Days', 'https://images.isbndb.com/covers/14/85/9780553581485.jpg'), + ('0553571702', 'Hard Frost', 'https://images.isbndb.com/covers/17/07/9780553571707.jpg'), + ('0061044393', 'Hocus', 'https://images.isbndb.com/covers/43/97/9780061044397.jpg'), + ('0446403237', 'Bootlegger''s Daughter (Deborah Knott Mysteries, No. 1)', 'https://images.isbndb.com/covers/32/38/9780446403238.jpg'), + ('0446604062', 'Up Jumps The Devil (Deborah Knott Mysteries)', 'https://images.isbndb.com/covers/40/62/9780446604062.jpg'), + ('0399146245', '24 Hours', 'https://images.isbndb.com/covers/62/44/9780399146244.jpg'), + ('0679753117', 'Dead Lagoon: An Aurelio Zen Mystery', 'https://images.isbndb.com/covers/31/17/9780679753117.jpg'), + ('0671708104', 'Right To Die', 'https://images.isbndb.com/covers/81/08/9780671708108.jpg'), + ('0671898744', 'Invasion Of Privacy (John Francis Cuddy Mystery)', 'https://images.isbndb.com/covers/87/48/9780671898748.jpg'), + ('0671898752', 'Rescue', 'https://images.isbndb.com/covers/87/55/9780671898755.jpg'), + ('0671695843', 'YESTERDAY''S NEWS', 'https://images.isbndb.com/covers/58/42/9780671695842.jpg'), + ('0671708120', 'SHALLOW GRAVES', 'https://images.isbndb.com/covers/81/22/9780671708122.jpg'), + ('0449223132', 'Brazil', 'https://images.isbndb.com/covers/31/30/9780449223130.jpg'), + ('0373710240', 'Shenandoah Christmas: You, Me & The Kids (Harlequin Superromance No. 1024)', 'https://images.isbndb.com/covers/02/49/9780373710249.jpg'), + ('0373710194', 'Substitute Father: Marriage Of Inconvenience (Harlequin Superromance No. 1019)', 'https://images.isbndb.com/covers/01/95/9780373710195.jpg'), + ('0373217250', 'All They Want For Christmas: Comfort And Joy / Merry Christmas, Baby', 'https://images.isbndb.com/covers/72/50/9780373217250.jpg'), + ('037371033X', 'Man With A Mission: The Men Of Maple Hill (Harlequin Superromance No. 1033)', 'https://images.isbndb.com/covers/03/31/9780373710331.jpg'), + ('0373709331', 'Hitched! The Taggarts Of Texas (Harlequin Superromance No. 933)', 'https://images.isbndb.com/covers/93/35/9780373709335.jpg'), + ('0373709870', 'Dear Maggie (Harlequin Superromance No. 987)', 'https://images.isbndb.com/covers/98/78/9780373709878.jpg'), + ('0373217242', 'Yuletide Brides (2 Novels In 1)', 'https://images.isbndb.com/covers/72/43/9780373217243.jpg'), + ('0373471599', 'Marriage By The Book (Silhouette, Born In The USA: Florida, No. 9)', 'https://images.isbndb.com/covers/15/91/9780373471591.jpg'), + ('0425067858', 'The Labors Of Hercules (Hercule Poirot)', 'https://images.isbndb.com/covers/78/57/9780425067857.jpg'), + ('0671036602', 'The Burning City', 'https://images.isbndb.com/covers/66/07/9780671036607.jpg'), + ('0553560980', 'Sideshow (One Last Wish)', 'https://images.isbndb.com/covers/09/85/9780553560985.jpg'), + ('0756401518', 'Moreau Omnibus (Daw Book Collectors)', 'https://images.isbndb.com/covers/15/11/9780756401511.jpg'), + ('0425174727', 'Poirot Investigates (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/47/22/9780425174722.jpg'), + ('0740721984', 'Fuzzy Logic Get Fuzzy 2', 'https://images.isbndb.com/covers/19/84/9780740721984.jpg'), + ('0061319481', 'We''re In The Money', 'https://images.isbndb.com/covers/94/88/9780061319488.jpg'), + ('0446526681', 'Lion''s Blood: A Novel Of Slavery And Freedom In An Alternate America', 'https://images.isbndb.com/covers/66/85/9780446526685.jpg'), + ('0312875568', 'The White Mare''s Daughter', 'https://images.isbndb.com/covers/55/65/9780312875565.jpg'), + ('0886779561', 'The Sand Wars, Volume One: Solar Kill, Lasertown Blues And Celestial Hit List (Sand Wars Omnibus)', 'https://images.isbndb.com/covers/95/66/9780886779566.jpg'), + ('0345361326', 'Those Who Hunt The Night (James Asher, Book 1)', 'https://images.isbndb.com/covers/13/25/9780345361325.jpg'), + ('0312971958', 'Tied Up In Tinsel', 'https://images.isbndb.com/covers/19/53/9780312971953.jpg'), + ('0312970978', 'When In Rome', 'https://images.isbndb.com/covers/09/70/9780312970970.jpg'), + ('1582340978', 'Prince And Other Dogs, 1850-1940', 'https://images.isbndb.com/covers/09/75/9781582340975.jpg'), + ('0789480646', 'Dynamic Yoga', 'https://images.isbndb.com/covers/06/44/9780789480644.jpg'), + ('0553276069', 'Death Of A Doxy (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/60/60/9780553276060.jpg'), + ('0451209850', 'The Chocolate Frog Frame-Up (Chocoholic Mysteries, No. 3)', 'https://images.isbndb.com/covers/98/56/9780451209856.jpg'), + ('0312968329', 'Death Of A Fool (St. Martin''s Dead Letter Mysteries)', 'https://images.isbndb.com/covers/83/28/9780312968328.jpg'), + ('0740723227', 'Zits Unzipped: Sketchbook #5 (Zits Collection Sketchbook)', 'https://images.isbndb.com/covers/32/23/9780740723223.jpg'), + ('0836282868', 'Yesh! (Mutts IV)', 'https://images.isbndb.com/covers/28/63/9780836282863.jpg'), + ('0140280898', 'Sherlock Holmes And The Ice Palace Murders: From The American Chronicles Of John H. Watson, M.D.', 'https://images.isbndb.com/covers/08/90/9780140280890.jpg'), + ('0060084022', 'The Big Bounce', 'https://images.isbndb.com/covers/40/28/9780060084028.jpg'), + ('0380784491', 'Murder Runs In The Family: A Southern Sisters Mystery', 'https://images.isbndb.com/covers/44/93/9780380784493.jpg'), + ('0790009072', 'Mists Of Time: Ngapuhi Myths And Legends', 'https://images.isbndb.com/covers/90/70/9780790009070.jpg'), + ('0140238530', 'The Singing Whakapapa', 'https://images.isbndb.com/covers/85/32/9780140238532.jpg'), + ('1878067125', 'Disappearing Moon Cafe', 'https://images.isbndb.com/covers/71/28/9781878067128.jpg'), + ('014025644X', 'Rice', 'https://images.isbndb.com/covers/64/44/9780140256444.jpg'), + ('1582343187', 'Prince And Other Dogs II', 'https://images.isbndb.com/covers/31/81/9781582343181.jpg'), + ('0553247468', 'One Police Plaza', 'https://images.isbndb.com/covers/74/66/9780553247466.jpg'), + ('0312966695', 'Spinsters In Jeopardy', 'https://images.isbndb.com/covers/66/90/9780312966690.jpg'), + ('0836268237', 'More Shtuff - Mutts III (Mutts)', 'https://images.isbndb.com/covers/82/32/9780836268232.jpg'), + ('140004832X', 'Ambulance Girl: How I Saved Myself By Becoming An EMT', 'https://images.isbndb.com/covers/83/28/9781400048328.jpg'), + ('0812514300', 'Good Night, Mr. Holmes: An Irene Adler Novel', 'https://images.isbndb.com/covers/43/08/9780812514308.jpg'), + ('0061057878', 'Deadly Legacy', 'https://images.isbndb.com/covers/78/78/9780061057878.jpg'), + ('0515081574', 'Sins Of The Fathers', 'https://images.isbndb.com/covers/15/72/9780515081572.jpg'), + ('0553581112', 'Justice Hall (Mary Russell Novels)', 'https://images.isbndb.com/covers/11/19/9780553581119.jpg'), + ('1567312292', 'The Left-Hander''s Handbook', 'https://images.isbndb.com/covers/22/94/9781567312294.jpg'), + ('0380806355', 'Fender Benders', 'https://images.isbndb.com/covers/63/55/9780380806355.jpg'), + ('0446611085', 'Suzanne''s Diary For Nicholas', 'https://images.isbndb.com/covers/10/84/9780446611084.jpg'), + ('0740704567', 'Our Mutts Five', 'https://images.isbndb.com/covers/45/67/9780740704567.jpg'), + ('0553581058', 'O Jerusalem (Mary Russell)', 'https://images.isbndb.com/covers/10/58/9780553581058.jpg'), + ('0515075019', 'A Wreath For Rivera', 'https://images.isbndb.com/covers/50/14/9780515075014.jpg'), + ('0345443128', 'A False Sense Of Well Being (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/31/20/9780345443120.jpg'), + ('0872863654', 'Postcards From The Underground: Portraits Of The Beat Era', 'https://images.isbndb.com/covers/36/51/9780872863651.jpg'), + ('0425144690', 'Died In The Wool', 'https://images.isbndb.com/covers/46/95/9780425144695.jpg'), + ('0908652658', 'Crimes Of Neglect', 'https://images.isbndb.com/covers/26/55/9780908652655.jpg'), + ('0908569734', 'All The Tenderness Left In The World Ppr', 'https://images.isbndb.com/covers/97/31/9780908569731.jpg'), + ('0740728946', 'Groovitude: A Get Fuzzy Treasury', 'https://images.isbndb.com/covers/89/45/9780740728945.jpg'), + ('0393325172', 'Master And Commander (Movie Tie-In Edition)', 'https://images.isbndb.com/covers/51/71/9780393325171.jpg'), + ('1892514877', 'Truelove And Homegrown Tomatoes', 'https://images.isbndb.com/covers/48/75/9781892514875.jpg'), + ('0140119507', 'If The River Was Whiskey: Stories (Contemporary American Fiction)', 'https://images.isbndb.com/covers/95/03/9780140119503.jpg'), + ('0140299939', 'World''s End (Contemporary American Fiction)', 'https://images.isbndb.com/covers/99/39/9780140299939.jpg'), + ('0140092862', 'Descent Of Man (Contemporary American Fiction)', 'https://images.isbndb.com/covers/28/68/9780140092868.jpg'), + ('0140081518', 'Budding Prospects (Contemporary American Fiction)', 'https://images.isbndb.com/covers/15/10/9780140081510.jpg'), + ('1841954608', 'Vernon God Little (Man Booker Prize)', 'https://images.isbndb.com/covers/46/08/9781841954608.jpg'), + ('0909486727', 'Dinkum Oil', 'https://images.isbndb.com/covers/67/23/9780909486723.jpg'), + ('0684856328', 'Uncle Boris In The Yukon And Other Shaggy Dog Stories', 'https://images.isbndb.com/covers/63/22/9780684856322.jpg'), + ('0312313810', 'The Dirty Girls Social Club: A Novel', 'https://images.isbndb.com/covers/38/14/9780312313814.jpg'), + ('0824817060', 'Grace: Potiki (Talanoa)', 'https://images.isbndb.com/covers/70/60/9780824817060.jpg'), + ('0375414290', 'When The Emperor Was Divine', 'https://images.isbndb.com/covers/42/99/9780375414299.jpg'), + ('0340401079', 'Rest For The Wicked Ppr NZ', 'https://images.isbndb.com/covers/10/71/9780340401071.jpg'), + ('0394537602', 'The Witches Of Eastwick', 'https://images.isbndb.com/covers/76/03/9780394537603.jpg'), + ('0806518561', 'The Philip K. Dick Reader', 'https://images.isbndb.com/covers/85/65/9780806518565.jpg'), + ('006051406X', 'Molly Moon''s Incredible Book Of Hypnotism', 'https://images.isbndb.com/covers/40/68/9780060514068.jpg'), + ('0375502971', 'A Dog Year: Twelve Months, Four Dogs, And Me', 'https://images.isbndb.com/covers/29/72/9780375502972.jpg'), + ('0670825212', 'With Thanks And Appreciation: Thoughts, Sentiments, Tokens And Traditions Of The Past (Sweet Nellie)', 'https://images.isbndb.com/covers/52/19/9780670825219.jpg'), + ('0618219153', 'Hotel Honolulu: A Novel', 'https://images.isbndb.com/covers/91/55/9780618219155.jpg'), + ('0892131012', 'The Science Of Self-Realization', 'https://images.isbndb.com/covers/10/13/9780892131013.jpg'), + ('0679722769', 'Ulysses', 'https://images.isbndb.com/covers/27/62/9780679722762.jpg'), + ('0380780879', 'Murder On A Bad Hair Day: A Southern Sisters Mystery', 'https://images.isbndb.com/covers/08/77/9780380780877.jpg'), + ('0786709324', 'The Complete History Of Jack The Ripper', 'https://images.isbndb.com/covers/93/28/9780786709328.jpg'), + ('0060503467', 'Isabel''s Daughter: A Novel', 'https://images.isbndb.com/covers/34/68/9780060503468.jpg'), + ('140004538X', 'Sins Of The Seventh Sister: A Novel Based On A True Story Of The Gothic South', 'https://images.isbndb.com/covers/53/89/9781400045389.jpg'), + ('0618246940', 'The Best American Nonrequired Reading 2002 (The Best American Series)', 'https://images.isbndb.com/covers/69/46/9780618246946.jpg'), + ('1570089949', 'Sarah: Women Of Genesis (Women Of Genesis (Forge))', 'https://images.isbndb.com/covers/99/47/9781570089947.jpg'), + ('0932379435', 'A Letter To Harvey Milk: Short Stories', 'https://images.isbndb.com/covers/94/36/9780932379436.jpg'), + ('0066212901', 'The Samurai''s Daughter', 'https://images.isbndb.com/covers/29/06/9780066212906.jpg'), + ('1558171665', 'The Revenge Of The Hound', 'https://images.isbndb.com/covers/16/64/9781558171664.jpg'), + ('0380728257', 'When The Sacred Ginmill Closes (Matthew Scudder Mysteries)', 'https://images.isbndb.com/covers/82/51/9780380728251.jpg'), + ('0141002166', 'Blue Ridge', 'https://images.isbndb.com/covers/21/63/9780141002163.jpg'), + ('0792265289', 'I Myself Have Seen It: The Myth Of Hawai''i', 'https://images.isbndb.com/covers/52/83/9780792265283.jpg'), + ('0156006898', 'The Wreck Of The Whaleship Essex', 'https://images.isbndb.com/covers/68/97/9780156006897.jpg'), + ('1570629137', 'Confessions Of A Pagan Nun: A Novel', 'https://images.isbndb.com/covers/91/36/9781570629136.jpg'), + ('0312252854', 'The Music Lesson: A Novel', 'https://images.isbndb.com/covers/28/54/9780312252854.jpg'), + ('0312287984', 'Rashomon Gate: A Mystery Of Ancient Japan', 'https://images.isbndb.com/covers/79/86/9780312287986.jpg'), + ('0312966717', 'Scales Of Justice (Inspector Roderick Alleyn Mysteries)', 'https://images.isbndb.com/covers/67/13/9780312966713.jpg'), + ('0312964285', 'Death And The Dancing Footman', 'https://images.isbndb.com/covers/42/83/9780312964283.jpg'), + ('0312969902', 'Dead Water', 'https://images.isbndb.com/covers/99/05/9780312969905.jpg'), + ('0312966059', 'Final Curtain', 'https://images.isbndb.com/covers/60/58/9780312966058.jpg'), + ('1563335506', 'Golden Age Of Promiscuity', 'https://images.isbndb.com/covers/55/01/9781563335501.jpg'), + ('0684850400', 'Finding The Boyfriend Within: A Practical Guide For Tapping Into Your Own Source Of Love, Happiness, And Respect', 'https://images.isbndb.com/covers/04/05/9780684850405.jpg'), + ('1575663783', 'Moving On: The Gay Man''s Guide For Coping When A Relationship Ends', 'https://images.isbndb.com/covers/37/84/9781575663784.jpg'), + ('0316107093', 'Toons For Our Times: A Bloom County Book Of Heavy Metal Rump ''N Roll', 'https://images.isbndb.com/covers/70/99/9780316107099.jpg'), + ('0395836220', 'Stern Men', 'https://images.isbndb.com/covers/62/24/9780395836224.jpg'), + ('0743422287', 'Amy''s Answering Machine: Messages From Mom', 'https://images.isbndb.com/covers/22/84/9780743422284.jpg'), + ('0380842939', 'Sacajawea (Lewis & Clark Expedition)', 'https://images.isbndb.com/covers/29/33/9780380842933.jpg'), + ('0061093084', 'Everville: The Second Book Of The Art', 'https://images.isbndb.com/covers/30/81/9780061093081.jpg'), + ('0061099015', 'The Great And Secret Show', 'https://images.isbndb.com/covers/90/14/9780061099014.jpg'), + ('0451197399', 'The Ballad Of Frankie Silver', 'https://images.isbndb.com/covers/73/99/9780451197399.jpg'), + ('0889104646', 'Mother Tongue (Passport Books No 3)', 'https://images.isbndb.com/covers/46/48/9780889104648.jpg'), + ('0152050167', 'The Whale Rider', 'https://images.isbndb.com/covers/01/60/9780152050160.jpg'), + ('0151003130', 'The Doubtful Guest', 'https://images.isbndb.com/covers/31/36/9780151003136.jpg'), + ('0312978863', 'Murder With Puffins (Meg Langslow Mysteries)', 'https://images.isbndb.com/covers/88/60/9780312978860.jpg'), + ('0525946578', 'The Virgin''s Knot', 'https://images.isbndb.com/covers/65/71/9780525946571.jpg'), + ('0312282664', 'The Dragon King''s Palace: A Novel', 'https://images.isbndb.com/covers/26/60/9780312282660.jpg'), + ('0380732343', 'Hammerhead Ranch Motel', 'https://images.isbndb.com/covers/23/40/9780380732340.jpg'), + ('0670031909', 'Lost In A Good Book: A Thursday Next Novel', 'https://images.isbndb.com/covers/19/00/9780670031900.jpg'), + ('0380978415', 'Fluke: Or, I Know Why The Winged Whale Sings', 'https://images.isbndb.com/covers/84/10/9780380978410.jpg'), + ('055356773X', 'The Cereal Murders (Goldy Culinary Mysteries, Book 3)', 'https://images.isbndb.com/covers/77/31/9780553567731.jpg'), + ('0790004062', 'Nights In The Gardens Of Spain', 'https://images.isbndb.com/covers/40/68/9780790004068.jpg'), + ('076271235X', 'Puerto Rico Off The Beaten Path, 2nd: A Guide To Unique Places', 'https://images.isbndb.com/covers/23/59/9780762712359.jpg'), + ('0679750533', 'The Elephant Vanishes: Stories', 'https://images.isbndb.com/covers/05/36/9780679750536.jpg'), + ('038000741X', 'Monkey Wrench Gang', 'https://images.isbndb.com/covers/74/17/9780380007417.jpg'), + ('0553251481', 'Jitterbug Perfume', 'https://images.isbndb.com/covers/14/87/9780553251487.jpg'), + ('0345326490', 'Desert Solitaire: A Season In The Wilderness', 'https://images.isbndb.com/covers/64/92/9780345326492.jpg'), + ('0451179285', 'The Stand', 'https://images.isbndb.com/covers/92/89/9780451179289.jpg'), + ('014003613X', 'Down Among The Women', 'https://images.isbndb.com/covers/61/38/9780140036138.jpg'), + ('0002712172', 'The Death Of The Body', 'https://images.isbndb.com/covers/21/70/9780002712170.jpg'), + ('0140099271', 'Oracles And Miracles', 'https://images.isbndb.com/covers/92/70/9780140099270.jpg'), + ('0553577808', 'A Letter Of Mary (Mary Russell Novels)', 'https://images.isbndb.com/covers/78/08/9780553577808.jpg'), + ('0812561864', 'Cat On A Hyacinth Hunt: A Midnight Louie Mystery (Midnight Louie Mysteries)', 'https://images.isbndb.com/covers/18/69/9780812561869.jpg'), + ('0790000458', 'Tangi (Pacific Writers)', 'https://images.isbndb.com/covers/04/59/9780790000459.jpg'), + ('1565120507', 'Night Of The Avenging Blowfish: A Novel Of Covert Operations, Love, And Luncheon Meat', 'https://images.isbndb.com/covers/05/01/9781565120501.jpg'), + ('0060936150', 'The Wise Women Of Havana', 'https://images.isbndb.com/covers/61/50/9780060936150.jpg'), + ('0399149562', 'Short & Tall Tales: Moose County Legends Collected By James Mackintosh Qwilleran', 'https://images.isbndb.com/covers/95/66/9780399149566.jpg'), + ('0312966849', 'Quaker Indictment (Quaker Sojourn)', 'https://images.isbndb.com/covers/68/43/9780312966843.jpg'), + ('0751501220', 'The Limits Of Detection: Ten Of The World''s Strangest Detective Stories', 'https://images.isbndb.com/covers/12/23/9780751501223.jpg'), + ('0684853043', 'The River Midnight', 'https://images.isbndb.com/covers/30/48/9780684853048.jpg'), + ('0688021174', 'The Highwayman', 'https://images.isbndb.com/covers/11/77/9780688021177.jpg'), + ('0718146298', 'Visions Of Sugar Plums', 'https://images.isbndb.com/covers/62/90/9780718146290.jpg'), + ('0946487758', 'Milk Treading', 'https://images.isbndb.com/covers/77/52/9780946487752.jpg'), + ('0446344672', 'Don''t Sit Under The Grits Tree With Anyone Else But Me', 'https://images.isbndb.com/covers/46/78/9780446344678.jpg'), + ('0425143538', 'Death Of A Peer', 'https://images.isbndb.com/covers/35/37/9780425143537.jpg'), + ('0743457471', 'A Lady Never Trifles With Thieves', 'https://images.isbndb.com/covers/74/77/9780743457477.jpg'), + ('0515077003', 'Death At The Bar', 'https://images.isbndb.com/covers/70/01/9780515077001.jpg'), + ('0515075345', 'Artists In Crime (Roderick Alleyn, Book 6)', 'https://images.isbndb.com/covers/53/42/9780515075342.jpg'), + ('0312966709', 'Enter A Murderer (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/67/06/9780312966706.jpg'), + ('0802135161', 'Oranges Are Not The Only Fruit', 'https://images.isbndb.com/covers/51/62/9780802135162.jpg'), + ('0312973144', 'Light Thickens', 'https://images.isbndb.com/covers/31/48/9780312973148.jpg'), + ('0515076279', 'Black As He''s Painted', 'https://images.isbndb.com/covers/62/71/9780515076271.jpg'), + ('0515078514', 'The Nursing Home Murder', 'https://images.isbndb.com/covers/85/10/9780515078510.jpg'), + ('0515075078', 'Night At The Vulcan', 'https://images.isbndb.com/covers/50/76/9780515075076.jpg'), + ('0515085928', 'Death In Ecstasy', 'https://images.isbndb.com/covers/59/21/9780515085921.jpg'), + ('0380780860', 'Murder On A Girls'' Night Out: A Southern Sisters Mystery', 'https://images.isbndb.com/covers/08/60/9780380780860.jpg'), + ('0060093595', 'The Conquest', 'https://images.isbndb.com/covers/35/94/9780060093594.jpg'), + ('0449004279', 'Saints And Villains (Fawcett Book)', 'https://images.isbndb.com/covers/42/72/9780449004272.jpg'), + ('0684844826', 'Salt Dancers', 'https://images.isbndb.com/covers/48/24/9780684844824.jpg'), + ('0061052582', 'Voyage', 'https://images.isbndb.com/covers/25/83/9780061052583.jpg'), + ('0802133525', 'Party Time And The New World Order', 'https://images.isbndb.com/covers/35/26/9780802133526.jpg'), + ('0880299193', 'The Jeeves Omnibus: Stiff Upper Lip / The Inimitable Jeeves / Carry On, Jeeves', 'https://images.isbndb.com/covers/91/90/9780880299190.jpg'), + ('0743243412', 'Wacky Chicks : Life Lessons From Fearlessly Inappropriate And Fabulously Eccentric Women', 'https://images.isbndb.com/covers/34/14/9780743243414.jpg'), + ('0316365521', 'Toot & Puddle', 'https://images.isbndb.com/covers/55/29/9780316365529.jpg'), + ('0684872536', 'December 6: A Novel', 'https://images.isbndb.com/covers/25/37/9780684872537.jpg'), + ('0743411943', 'The Book Of Fred: A Novel', 'https://images.isbndb.com/covers/19/43/9780743411943.jpg'), + ('0789305186', 'Overheard At The Bookstore', 'https://images.isbndb.com/covers/51/83/9780789305183.jpg'), + ('0515076066', 'Overture To Death', 'https://images.isbndb.com/covers/60/66/9780515076066.jpg'), + ('0553261096', 'Not Quite Dead Enough (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/10/97/9780553261097.jpg'), + ('0812574745', 'Swell Foop (Xanth, No. 25)', 'https://images.isbndb.com/covers/47/46/9780812574746.jpg'), + ('0380816547', 'Island Of The Sequined Love Nun', 'https://images.isbndb.com/covers/65/45/9780380816545.jpg'), + ('0316137251', 'Gentleman Junkie: The Life And Legacy Of William S. Burroughs', 'https://images.isbndb.com/covers/72/56/9780316137256.jpg'), + ('0151003378', 'Lost And Found: Dogs, Cats, And Everyday Heroes At A Country Animal Shelter', 'https://images.isbndb.com/covers/33/72/9780151003372.jpg'), + ('0060002433', 'Sons Of Heaven', 'https://images.isbndb.com/covers/24/35/9780060002435.jpg'), + ('0887300405', 'The E-Myth: Why Most Businesses Don''t Work And What To Do About It', 'https://images.isbndb.com/covers/04/00/9780887300400.jpg'), + ('0312042779', 'Catering To Nobody', 'https://images.isbndb.com/covers/27/76/9780312042776.jpg'), + ('0451182979', 'Parsley, Sage, Rosemary And Crime: A Pennsylvania Dutch Mystery With Recipes', 'https://images.isbndb.com/covers/29/75/9780451182975.jpg'), + ('0142000892', 'Miss Julia Takes Over', 'https://images.isbndb.com/covers/08/92/9780142000892.jpg'), + ('0553575295', 'Sold Down The River (Benjamin January, Book 4)', 'https://images.isbndb.com/covers/52/93/9780553575293.jpg'), + ('0679729771', 'Maus II: A Survivor''s Tale: And Here My Troubles Began', 'https://images.isbndb.com/covers/97/78/9780679729778.jpg'), + ('0066212545', 'The House Of Blue Mangoes: A Novel', 'https://images.isbndb.com/covers/25/48/9780066212548.jpg'), + ('0312119313', 'Voodoo Dreams: A Novel Of Marie Laveau', 'https://images.isbndb.com/covers/93/17/9780312119317.jpg'), + ('0345430948', 'Ripley Bogle (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/09/46/9780345430946.jpg'), + ('0553575287', 'Graveyard Dust (Benjamin January, Book 3)', 'https://images.isbndb.com/covers/52/86/9780553575286.jpg'), + ('0394735307', 'The Tale Of Genji', 'https://images.isbndb.com/covers/53/06/9780394735306.jpg'), + ('0060394366', 'Homesick: A Memoir', 'https://images.isbndb.com/covers/43/63/9780060394363.jpg'), + ('1565123352', 'Tamarind Woman', 'https://images.isbndb.com/covers/33/59/9781565123359.jpg'), + ('0375505172', 'April Witch: A Novel', 'https://images.isbndb.com/covers/51/71/9780375505171.jpg'), + ('0312282060', 'Murphy''s Law (A Molly Murphy Mystery)', 'https://images.isbndb.com/covers/20/66/9780312282066.jpg'), + ('0971263906', 'Saint Nick', 'https://images.isbndb.com/covers/39/01/9780971263901.jpg'), + ('0684831376', 'The Secret Of The Bulls', 'https://images.isbndb.com/covers/13/74/9780684831374.jpg'), + ('0385495420', 'The Colony Of Unrequited Dreams', 'https://images.isbndb.com/covers/54/24/9780385495424.jpg'), + ('0451186346', 'The Burglar Who Thought He Was Bogart: A Bernie Rhodenbarr Mystery', 'https://images.isbndb.com/covers/63/48/9780451186348.jpg'), + ('0394747232', 'Maus I: A Survivor''s Tale: My Father Bleeds History', 'https://images.isbndb.com/covers/72/31/9780394747231.jpg'), + ('0966086503', 'Vlad Dracula: The Dragon Prince', 'https://images.isbndb.com/covers/65/08/9780966086508.jpg'), + ('0061092002', 'Galilee', 'https://images.isbndb.com/covers/20/08/9780061092008.jpg'), + ('0451206002', 'Over The Edge (Alex Delaware)', 'https://images.isbndb.com/covers/60/08/9780451206008.jpg'), + ('0553234978', 'The Silent Speaker (Nero Wolfe Mysteries)', 'https://images.isbndb.com/covers/49/78/9780553234978.jpg'), + ('0684810972', 'Bloodsucking Fiends', 'https://images.isbndb.com/covers/09/73/9780684810973.jpg'), + ('0312951469', 'Practical Demonkeeping: A Comedy Of Horrors', 'https://images.isbndb.com/covers/14/67/9780312951467.jpg'), + ('0898866065', 'Kurt Diemberger Omnibus: Summits & Secrets, The Endless Knot, Spirits Of The Air', 'https://images.isbndb.com/covers/60/63/9780898866063.jpg'), + ('0140043519', 'Junky', 'https://images.isbndb.com/covers/35/18/9780140043518.jpg'), + ('0451165624', 'On The Road (Signet)', 'https://images.isbndb.com/covers/56/26/9780451165626.jpg'), + ('1850514496', 'Collecting Art Nouveau', 'https://images.isbndb.com/covers/44/97/9781850514497.jpg'), + ('0312969880', 'The Mango Opera (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/98/82/9780312969882.jpg'), + ('1892327988', 'Sunk Without A Sound : The Tragic Colorado River Honeymoon Of Glen And Bessie Hyde', 'https://images.isbndb.com/covers/79/87/9781892327987.jpg'), + ('0066214440', 'Enemy Women: A Novel', 'https://images.isbndb.com/covers/44/43/9780066214443.jpg'), + ('0671881884', 'Coyote Blue', 'https://images.isbndb.com/covers/18/87/9780671881887.jpg'), + ('0312273126', 'The Women Of Molise: An Italian Village, 1950', 'https://images.isbndb.com/covers/31/25/9780312273125.jpg'), + ('0553575279', 'Fever Season (Benjamin January, Book 2)', 'https://images.isbndb.com/covers/52/79/9780553575279.jpg'), + ('0966941411', 'Dreamer', 'https://images.isbndb.com/covers/14/18/9780966941418.jpg'), + ('0394741919', 'Late Night With David Letterman: The Book', 'https://images.isbndb.com/covers/19/18/9780394741918.jpg'), + ('055358281X', 'A Little Death', 'https://images.isbndb.com/covers/28/19/9780553582819.jpg'), + ('0066211239', 'The Wise Women Of Havana', 'https://images.isbndb.com/covers/12/37/9780066211237.jpg'), + ('0441363946', 'I Have No Mouth', 'https://images.isbndb.com/covers/39/40/9780441363940.jpg'), + ('0671042297', 'Dream Of The Walled City', 'https://images.isbndb.com/covers/22/95/9780671042295.jpg'), + ('0380978407', 'Lamb: The Gospel According To Biff, Christ''s Childhood Pal', 'https://images.isbndb.com/covers/84/03/9780380978403.jpg'), + ('0553109243', 'Die Upon A Kiss', 'https://images.isbndb.com/covers/92/45/9780553109245.jpg'), + ('0618012710', 'The Best American Mystery Stories Of The Century (The Best American Series)', 'https://images.isbndb.com/covers/27/18/9780618012718.jpg'), + ('0312282621', 'The Pillow Book Of Lady Wisteria (St. Martin''s Minotaur Mystery)', 'https://images.isbndb.com/covers/26/22/9780312282622.jpg'), + ('0374129851', 'The Englishman''s Daughter: A True Story Of Love And Betrayal In World War One', 'https://images.isbndb.com/covers/98/59/9780374129859.jpg'), + ('1569471568', 'Tattoo Murder Case (Soho Crime)', 'https://images.isbndb.com/covers/15/62/9781569471562.jpg'), + ('0060958111', 'Extra Virgin: A Young Woman Discovers The Italian Riviera, Where Every Month Is Enchanted', 'https://images.isbndb.com/covers/81/14/9780060958114.jpg'), + ('0312966679', 'The Toyotomi Blades: A Ken Tanaka Mystery', 'https://images.isbndb.com/covers/66/76/9780312966676.jpg'), + ('0312963238', 'Death In Little Tokyo (A Ken Tanaka Mystery)', 'https://images.isbndb.com/covers/32/31/9780312963231.jpg'), + ('0375709118', 'In The Pond', 'https://images.isbndb.com/covers/91/11/9780375709111.jpg'), + ('1558746927', 'The 60-Second Novelist - What 22,613 People Taught Me About Life', 'https://images.isbndb.com/covers/69/23/9781558746923.jpg'), + ('0679441239', 'Anything Considered', 'https://images.isbndb.com/covers/12/36/9780679441236.jpg'), + ('0345438817', 'Welcome To The Great Mysterious', 'https://images.isbndb.com/covers/88/12/9780345438812.jpg'), + ('0312198493', 'Crazy For You', 'https://images.isbndb.com/covers/84/97/9780312198497.jpg'), + ('0553261940', 'NEW PROMISE, A #3 (Caitlin: The Promise Trilogy)', 'https://images.isbndb.com/covers/19/43/9780553261943.jpg'), + ('0553261568', 'Promises Broken (Caitlin: The Promise Trilogy, Book 2)', 'https://images.isbndb.com/covers/15/61/9780553261561.jpg'), + ('0553258125', 'TENDER PROMISES/ (Caitlin: The Promise Trilogy)', 'https://images.isbndb.com/covers/81/27/9780553258127.jpg'), + ('055325295X', 'TRUE LOVE (Caitlin: Love Trilogy) (v. 3)', 'https://images.isbndb.com/covers/29/58/9780553252958.jpg'), + ('0553251309', 'LOVE LOST (Caitlin: Love Trilogy)', 'https://images.isbndb.com/covers/13/02/9780553251302.jpg'), + ('0553247166', 'LOVING (Caitlin: Love Trilogy)', 'https://images.isbndb.com/covers/71/69/9780553247169.jpg'), + ('055325944X', 'PRETTY IN PINK', 'https://images.isbndb.com/covers/94/45/9780553259445.jpg'), + ('0671682849', 'Dark Angel (Casteel Saga, Book 2)', 'https://images.isbndb.com/covers/28/42/9780671682842.jpg'), + ('067164257X', 'Garden Of Shadows (Dollanganger, No. 5)', 'https://images.isbndb.com/covers/25/70/9780671642570.jpg'), + ('0671656570', 'MY SWEET AUDRINA', 'https://images.isbndb.com/covers/65/77/9780671656577.jpg'), + ('0671640453', 'Flowers In The Attic', 'https://images.isbndb.com/covers/04/53/9780671640453.jpg'), + ('0440202558', 'The End Of Summer', 'https://images.isbndb.com/covers/25/54/9780440202554.jpg'), + ('0440202515', 'Another View', 'https://images.isbndb.com/covers/25/16/9780440202516.jpg'), + ('0060090383', 'Rachel''s Holiday', 'https://images.isbndb.com/covers/03/88/9780060090388.jpg'), + ('0425135020', 'The Empress File (Kidd)', 'https://images.isbndb.com/covers/50/20/9780425135020.jpg'), + ('0871138190', 'Four Blondes', 'https://images.isbndb.com/covers/81/94/9780871138194.jpg'), + ('006103004X', 'Blind Man''s Bluff: The Untold Story Of American Submarine Espionage', 'https://images.isbndb.com/covers/00/48/9780061030048.jpg'), + ('0446600458', 'The Thomas Berryman Number', 'https://images.isbndb.com/covers/04/53/9780446600453.jpg'), + ('055327824X', 'Of Mice And Men', 'https://images.isbndb.com/covers/82/48/9780553278248.jpg'), + ('0553211765', 'A Tale Of Two Cities (Bantam Classic)', 'https://images.isbndb.com/covers/17/64/9780553211764.jpg'), + ('0451403754', 'Sweet Everlasting (Topaz Historical Romances)', 'https://images.isbndb.com/covers/37/59/9780451403759.jpg'), + ('0553107240', 'Sticks & Scones', 'https://images.isbndb.com/covers/72/41/9780553107241.jpg'), + ('0517574985', 'Cleopatra Gold', 'https://images.isbndb.com/covers/49/80/9780517574980.jpg'), + ('0836221443', 'Camille''s Children: 31 Miracles And Counting', 'https://images.isbndb.com/covers/14/42/9780836221442.jpg'), + ('0312861230', 'In The Arms Of The Sky', 'https://images.isbndb.com/covers/12/30/9780312861230.jpg'), + ('0399142401', 'Sanctuary', 'https://images.isbndb.com/covers/24/06/9780399142406.jpg'), + ('0684872706', 'Waking Up In America: How One Doctor Brings Hope To Those Who Need It Most', 'https://images.isbndb.com/covers/27/04/9780684872704.jpg'), + ('0310231876', 'Forgiving The Dead Man Walking: Only One Woman Can Tell The Entire Story', 'https://images.isbndb.com/covers/18/75/9780310231875.jpg'), + ('0684871262', 'Speaking In Tongues : A Novel', 'https://images.isbndb.com/covers/12/64/9780684871264.jpg'), + ('0451188489', 'A Maiden''s Grave', 'https://images.isbndb.com/covers/84/89/9780451188489.jpg'), + ('0970816308', 'Channeling Biker Bob: Heart Of A Warrior', 'https://images.isbndb.com/covers/63/06/9780970816306.jpg'), + ('0312063571', 'Flowers In The Rain & Other Stories', 'https://images.isbndb.com/covers/35/73/9780312063573.jpg'), + ('0070064512', 'If Life Is A Bowl Of Cherries, What Am I Doing In The Pits?', 'https://images.isbndb.com/covers/45/15/9780070064515.jpg'), + ('0385499825', 'A Girl Named Zippy: Growing Up Small In Mooreland Indiana', 'https://images.isbndb.com/covers/98/28/9780385499828.jpg'), + ('0722536305', 'Hayfever: How To Beat Hayfever-Permanently (Thorsons Health)', 'https://images.isbndb.com/covers/63/08/9780722536308.jpg'), + ('0836270320', 'Love, Otto: The Legacy Of Anne Frank', 'https://images.isbndb.com/covers/03/27/9780836270327.jpg'), + ('1560438487', 'Lady In Waiting: Developing Your Love Relationships', 'https://images.isbndb.com/covers/84/89/9781560438489.jpg'), + ('1565075315', 'What To Do Until Love Finds You: Getting Ready For Mr. Right', 'https://images.isbndb.com/covers/53/13/9781565075313.jpg'), + ('0385315724', 'The Paperboy', 'https://images.isbndb.com/covers/57/22/9780385315722.jpg'), + ('0761517049', 'How We Met: Chance Encounters And Other True Love Stories Of Real-Life Couples', 'https://images.isbndb.com/covers/70/47/9780761517047.jpg'), + ('0739400614', 'A Child Called "It" And The Lost Boy - One Child''s Courage To Survive', 'https://images.isbndb.com/covers/06/16/9780739400616.jpg'), + ('1558746625', 'A 6th Bowl Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/66/26/9781558746626.jpg'), + ('1558744592', 'A 4th Course Of Chicken Soup For The Soul: 101 More Stories To Open The Heart And Rekindle The Spirit', 'https://images.isbndb.com/covers/45/92/9781558744592.jpg'), + ('0670032379', 'The Secret Life Of Bees', 'https://images.isbndb.com/covers/23/72/9780670032372.jpg'), + ('0425186326', 'Family Album', 'https://images.isbndb.com/covers/63/29/9780425186329.jpg'), + ('0446610674', 'On Bear Mountain', 'https://images.isbndb.com/covers/06/74/9780446610674.jpg'), + ('0440224594', 'The Return Journey', 'https://images.isbndb.com/covers/45/94/9780440224594.jpg'), + ('0553066684', 'Success Is A Choice', 'https://images.isbndb.com/covers/66/85/9780553066685.jpg'), + ('0739417991', 'Necessary Changes', 'https://images.isbndb.com/covers/79/97/9780739417997.jpg'), + ('0670878847', 'The Most Wanted', 'https://images.isbndb.com/covers/88/40/9780670878840.jpg'), + ('0688160344', 'When I Fall In Love', 'https://images.isbndb.com/covers/03/40/9780688160340.jpg'), + ('0060193751', 'Circle Of Three: A Novel', 'https://images.isbndb.com/covers/37/51/9780060193751.jpg'), + ('0446516953', 'Last Tango In Brooklyn', 'https://images.isbndb.com/covers/69/52/9780446516952.jpg'), + ('0375412336', 'Bare: On Women, Dancing, Sex, And Power', 'https://images.isbndb.com/covers/23/32/9780375412332.jpg'), + ('0553288105', 'The Gods Themselves', 'https://images.isbndb.com/covers/81/00/9780553288100.jpg'), + ('0586025944', 'THE REST OF THE ROBOTS', 'https://images.isbndb.com/covers/59/49/9780586025949.jpg'), + ('0586062009', 'Robots And Empire', 'https://images.isbndb.com/covers/20/05/9780586062005.jpg'), + ('055326981X', 'The Practice Effect (Bantam Spectra Book)', 'https://images.isbndb.com/covers/98/19/9780553269819.jpg'), + ('0946626820', 'The Diary Of A Chambermaid (Decadence From Dedalus)', 'https://images.isbndb.com/covers/68/23/9780946626823.jpg'), + ('0375755365', 'The Haunted Wood: Soviet Espionage In America--The Stalin Era (Modern Library Paperbacks)', 'https://images.isbndb.com/covers/53/61/9780375755361.jpg'), + ('1869414365', 'Belief', 'https://images.isbndb.com/covers/43/68/9781869414368.jpg'), + ('0684818442', 'From Time To Time', 'https://images.isbndb.com/covers/84/43/9780684818443.jpg'), + ('0890876517', 'A Creative Companion: How To Free Your Creative Spirit', 'https://images.isbndb.com/covers/65/10/9780890876510.jpg'), + ('0380766558', 'The Elusive Flame', 'https://images.isbndb.com/covers/65/50/9780380766550.jpg'), + ('0310217601', 'Trial By Fire (Newpointe 911 Series #4)', 'https://images.isbndb.com/covers/76/02/9780310217602.jpg'), + ('0803289065', 'Peder Victorious: A Tale Of The Pioneers Twenty Years Later', 'https://images.isbndb.com/covers/90/62/9780803289062.jpg'), + ('0805401725', 'The Lazarus Project', 'https://images.isbndb.com/covers/17/21/9780805401721.jpg'), + ('0708942008', 'The Call Of The Isles (Ulverscroft Large Print Series)', 'https://images.isbndb.com/covers/20/00/9780708942000.jpg'), + ('0310243882', 'Deadlock', 'https://images.isbndb.com/covers/38/85/9780310243885.jpg'), + ('0764220330', 'Honor''s Quest (Rocky Mountain Legacy #3)', 'https://images.isbndb.com/covers/03/33/9780764220333.jpg'), + ('0380812061', 'The Black Lyon', 'https://images.isbndb.com/covers/20/66/9780380812066.jpg'), + ('0890876789', 'Inspiration Sandwich: Stories To Inspire Our Creative Freedom', 'https://images.isbndb.com/covers/67/87/9780890876787.jpg'), + ('0836246047', 'Life Is Just A Chair Of Bowlies', 'https://images.isbndb.com/covers/60/49/9780836246049.jpg'), + ('0805210288', 'All Rivers Run To The Sea: Memoirs', 'https://images.isbndb.com/covers/02/86/9780805210286.jpg'), + ('0062512234', 'Boychiks In The Hood: Travels In The Hasidic Underground', 'https://images.isbndb.com/covers/22/39/9780062512239.jpg'), + ('0803298188', 'The Sleeper Awakes (Bison Frontiers Of Imagination)', 'https://images.isbndb.com/covers/81/87/9780803298187.jpg'), + ('082177462X', 'Kentucky Sunrise', 'https://images.isbndb.com/covers/46/25/9780821774625.jpg'), + ('0140149902', 'The Republic Of Love', 'https://images.isbndb.com/covers/99/06/9780140149906.jpg'), + ('0385334060', 'A Still Small Voice', 'https://images.isbndb.com/covers/40/68/9780385334068.jpg'), + ('039914983X', 'The Spinning Man', 'https://images.isbndb.com/covers/98/32/9780399149832.jpg'), + ('0743230191', 'The Falling Nun: And Other Stories', 'https://images.isbndb.com/covers/01/93/9780743230193.jpg'), + ('0679767185', 'The Country Ahead Of Us, The Country Behind', 'https://images.isbndb.com/covers/71/83/9780679767183.jpg'), + ('0060925582', 'How Does Aspirin Find A Headache?', 'https://images.isbndb.com/covers/55/81/9780060925581.jpg'), + ('037570177X', 'Day Of The Bees: A Novel', 'https://images.isbndb.com/covers/17/71/9780375701771.jpg'), + ('0380714647', 'Gift Of A Letter: Giving The Gift Of Ourselves-- Add Richness And Grace To Your Life Through The Art Of Letter-writing', 'https://images.isbndb.com/covers/46/43/9780380714643.jpg'), + ('0765305569', 'The Pixel Eye (Phil D''Amato)', 'https://images.isbndb.com/covers/55/65/9780765305565.jpg'), + ('0811831620', 'The Gryphon: In Which The Extraordinary Correspondence Of Griffin & Sabine Is Rediscovered', 'https://images.isbndb.com/covers/16/28/9780811831628.jpg'), + ('0886776430', 'The Black Gryphon (Mage Wars)', 'https://images.isbndb.com/covers/64/35/9780886776435.jpg'), + ('0553564935', 'Magician: Master (Riftwar Saga, Book 2)', 'https://images.isbndb.com/covers/49/38/9780553564938.jpg'), + ('0743422937', 'Bleeding Heart', 'https://images.isbndb.com/covers/29/32/9780743422932.jpg'), + ('0345338715', 'Enchanters'' End Game (The Belgariad, Book 5)', 'https://images.isbndb.com/covers/87/16/9780345338716.jpg'), + ('0435909592', 'God''s Bits Of Wood', 'https://images.isbndb.com/covers/95/98/9780435909598.jpg'), + ('0385413017', 'Fumblerules', 'https://images.isbndb.com/covers/30/15/9780385413015.jpg'), + ('0345403959', 'Belgarath The Sorcerer', 'https://images.isbndb.com/covers/39/57/9780345403957.jpg'), + ('0553285246', 'Prince Of The Blood (Spectra Fantasy)', 'https://images.isbndb.com/covers/52/46/9780553285246.jpg'), + ('0394178637', 'San Francisco At Your Feet: The Great Walks In A Walker''s Town (An Evergreen Book)', 'https://images.isbndb.com/covers/86/39/9780394178639.jpg'), + ('0380718839', 'Booked To Die', 'https://images.isbndb.com/covers/88/32/9780380718832.jpg'), + ('9974560004', 'Cadaveres Exquisitos (Biblioteca Del Sur) (Spanish Edition)', 'https://images.isbndb.com/covers/00/00/9789974560000.jpg'), + ('0679740074', 'No Heroics, Please: Uncollected Writings', 'https://images.isbndb.com/covers/00/70/9780679740070.jpg'), + ('0786648287', 'Swing Jazz Duets, Tenor Sax Edition', 'https://images.isbndb.com/covers/82/83/9780786648283.jpg'), + ('0679727124', 'The Debut', 'https://images.isbndb.com/covers/71/25/9780679727125.jpg'), + ('015640057X', 'Henry And June: From The Unexpurgated Diary Of Ana?s Nin, [1931-1932].', 'https://images.isbndb.com/covers/05/72/9780156400572.jpg'), + ('0140309594', 'Pippi Goes On Board (Pippi Longstocking)', 'https://images.isbndb.com/covers/95/91/9780140309591.jpg'), + ('0451205235', 'Cold Flat Junction (Emma Graham Mysteries)', 'https://images.isbndb.com/covers/52/30/9780451205230.jpg'), + ('0804120021', 'Out Of Sight (The Men Of T-FLAC: The Wrights, Book 5)', 'https://images.isbndb.com/covers/00/29/9780804120029.jpg'), + ('0449909433', 'Travels With Lizbeth: Three Years On The Road And On The Streets', 'https://images.isbndb.com/covers/94/30/9780449909430.jpg'), + ('0802137954', 'The Ginger Man', 'https://images.isbndb.com/covers/79/51/9780802137951.jpg'), + ('0684822652', 'Three To Get Deadly (Stephanie Plum, No. 3) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/26/55/9780684822655.jpg'), + ('038547640X', 'On A Bed Of Rice', 'https://images.isbndb.com/covers/64/09/9780385476409.jpg'), + ('1580291023', 'Elvis: Unknown Stories Behind The Legend', 'https://images.isbndb.com/covers/10/26/9781580291026.jpg'), + ('0316896586', 'Cut Numbers : A Novel', 'https://images.isbndb.com/covers/65/80/9780316896580.jpg'), + ('015600514X', 'St. Burl''s Obituary', 'https://images.isbndb.com/covers/51/42/9780156005142.jpg'), + ('0441005608', 'The Warlock In Spite Of Himself (Warlock Series)', 'https://images.isbndb.com/covers/56/04/9780441005604.jpg'), + ('0345371631', 'Shadow Leader (Tales Of The Wolves)', 'https://images.isbndb.com/covers/16/38/9780345371638.jpg'), + ('0380789833', 'Shards Of A Broken Crown (Serpentwar Saga, Book 4)', 'https://images.isbndb.com/covers/98/32/9780380789832.jpg'), + ('0689860064', 'Dragondrums (Harper Hall Trilogy)', 'https://images.isbndb.com/covers/00/65/9780689860065.jpg'), + ('0937295353', 'Happy Birthday, Samantha! (American Girls Collection)', 'https://images.isbndb.com/covers/53/59/9780937295359.jpg'), + ('1562475355', 'Josefina 1824: Meet Josefina, Josefina Learns A Lesson, Josefina''s Surprise', 'https://images.isbndb.com/covers/53/52/9781562475352.jpg'), + ('0937295418', 'Samantha Saves The Day (American Girl)', 'https://images.isbndb.com/covers/54/10/9780937295410.jpg'), + ('1562470078', 'Felicity Learns A Lesson (American Girl Collection)', 'https://images.isbndb.com/covers/00/74/9781562470074.jpg'), + ('0451524381', 'Romeo And Juliet, The Tragedy Of (Signet Classics)', 'https://images.isbndb.com/covers/43/86/9780451524386.jpg'), + ('0805066128', 'Before I Say Goodbye: Recollections And Observations From One Woman''s Final Year', 'https://images.isbndb.com/covers/61/28/9780805066128.jpg'), + ('068817163X', 'May I Kiss You On The Lips, Miss Sandra?', 'https://images.isbndb.com/covers/16/36/9780688171636.jpg'), + ('0553569155', 'Seinlanguage', 'https://images.isbndb.com/covers/91/55/9780553569155.jpg'), + ('0316735116', 'Playing The Bones', 'https://images.isbndb.com/covers/51/17/9780316735117.jpg'), + ('0060520825', 'The Hidden Life Of Otto Frank', 'https://images.isbndb.com/covers/08/23/9780060520823.jpg'), + ('0671517325', 'Love Me To Death: A Journalist''s Memoir Of The Hunt For Her Friend''s Killer', 'https://images.isbndb.com/covers/73/28/9780671517328.jpg'), + ('0316785644', 'The Fig Eater', 'https://images.isbndb.com/covers/56/48/9780316785648.jpg'), + ('0899193846', 'My Present Age', 'https://images.isbndb.com/covers/38/47/9780899193847.jpg'), + ('0425169871', 'Firebird', 'https://images.isbndb.com/covers/98/72/9780425169872.jpg'), + ('081296697X', 'Selected Short Stories Of John O''Hara (Modern Library Classics)', 'https://images.isbndb.com/covers/69/78/9780812966978.jpg'), + ('067974245X', 'Me (Random House Large Print)', 'https://images.isbndb.com/covers/24/56/9780679742456.jpg'), + ('0375506128', 'I Cannot Tell A Lie, Exactly', 'https://images.isbndb.com/covers/61/23/9780375506123.jpg'), + ('1573061425', 'Elvis In Hawaii', 'https://images.isbndb.com/covers/14/21/9781573061421.jpg'), + ('0879052651', 'Sudden Fiction: American Short-Short Stories', 'https://images.isbndb.com/covers/26/52/9780879052652.jpg'), + ('0688177026', 'Best Friends', 'https://images.isbndb.com/covers/70/27/9780688177027.jpg'), + ('1558612203', 'The Right Thing To Do', 'https://images.isbndb.com/covers/22/04/9781558612204.jpg'), + ('0684872730', 'The Vision Of Emma Blau', 'https://images.isbndb.com/covers/27/35/9780684872735.jpg'), + ('0393316580', 'The Shadow Of Desire', 'https://images.isbndb.com/covers/65/82/9780393316582.jpg'), + ('0449911438', 'Eating Fire And Drinking Water', 'https://images.isbndb.com/covers/14/33/9780449911433.jpg'), + ('0804117683', 'Moo', 'https://images.isbndb.com/covers/76/85/9780804117685.jpg'), + ('0836217012', 'Cows Of Our Planet: A Far Side Collection', 'https://images.isbndb.com/covers/70/18/9780836217018.jpg'), + ('0140447954', 'A Hero Of Our Time (Penguin Classics)', 'https://images.isbndb.com/covers/79/58/9780140447958.jpg'), + ('0446600660', 'Strip Tease', 'https://images.isbndb.com/covers/06/68/9780446600668.jpg'), + ('0399236260', 'Things Not Seen', 'https://images.isbndb.com/covers/62/66/9780399236266.jpg'), + ('1573220485', 'The Beach', 'https://images.isbndb.com/covers/04/84/9781573220484.jpg'), + ('0375757430', 'Shades Of Jade: A Novel (Strivers Row)', 'https://images.isbndb.com/covers/74/33/9780375757433.jpg'), + ('0880707232', 'One Small Sparrow: The Remarkable, Real-Life Drama Of One Community''s Response To Save A Little Boy ''s Life', 'https://images.isbndb.com/covers/72/37/9780880707237.jpg'), + ('0385491034', 'The Robber Bride', 'https://images.isbndb.com/covers/10/37/9780385491037.jpg'), + ('0380727943', 'Ain''t Gonna Be The Same Fool Twice', 'https://images.isbndb.com/covers/79/40/9780380727940.jpg'), + ('0374527075', 'A Small Place', 'https://images.isbndb.com/covers/70/75/9780374527075.jpg'), + ('0801855578', 'The Friday Book (Maryland Paperback Bookshelf)', 'https://images.isbndb.com/covers/55/73/9780801855573.jpg'), + ('0374134669', 'Dance Real Slow', 'https://images.isbndb.com/covers/46/62/9780374134662.jpg'), + ('0679772936', 'False Allegations: A Burke Novel', 'https://images.isbndb.com/covers/29/34/9780679772934.jpg'), + ('0312194404', 'Bachelor Brothers'' Bed & Breakfast Pillow Book', 'https://images.isbndb.com/covers/44/06/9780312194406.jpg'), + ('0064431290', 'George Shrinks (Reading Rainbow)', 'https://images.isbndb.com/covers/12/93/9780064431293.jpg'), + ('0684808943', 'A Good Life: Newspapering And Other Adventures', 'https://images.isbndb.com/covers/89/49/9780684808949.jpg'), + ('0380814110', 'Duty: A Father, His Son, And The Man Who Won The War', 'https://images.isbndb.com/covers/41/14/9780380814114.jpg'), + ('1580172466', 'North American Clone Brews: Homebrew Recipes For Your Favorite American And Canadian Beers', 'https://images.isbndb.com/covers/24/62/9781580172462.jpg'), + ('0446677388', 'Kiss The Girls (2nd Alex Cross Novel)', 'https://images.isbndb.com/covers/73/87/9780446677387.jpg'), + ('0679762108', 'The Sportswriter: Bascombe Trilogy (1)', 'https://images.isbndb.com/covers/21/02/9780679762102.jpg'), + ('0312315600', 'Big Lies: The Right-Wing Propaganda Machine And How It Distorts The Truth', 'https://images.isbndb.com/covers/56/03/9780312315603.jpg'), + ('0811214206', 'Midsummer Night', 'https://images.isbndb.com/covers/42/09/9780811214209.jpg'), + ('0553072455', 'Long Quiet Highway: Waking Up In America', 'https://images.isbndb.com/covers/24/57/9780553072457.jpg'), + ('0060914440', 'Skywriting By Word Of Mouth : And Other Writings, Including "The Ballad Of John And Yoko"', 'https://images.isbndb.com/covers/44/48/9780060914448.jpg'), + ('0385498055', 'The Daydreamer', 'https://images.isbndb.com/covers/80/50/9780385498050.jpg'), + ('0399518231', '1,401 More Things That P*Ss Me Off', 'https://images.isbndb.com/covers/82/32/9780399518232.jpg'), + ('0679749519', 'Remembering Babylon: A Novel', 'https://images.isbndb.com/covers/95/16/9780679749516.jpg'), + ('0761513116', 'The Wealthy Barber, Updated 3rd Edition: Everyone''s Commonsense Guide To Becoming Financially Independent', 'https://images.isbndb.com/covers/31/17/9780761513117.jpg'), + ('0679731946', 'Picturing Will', 'https://images.isbndb.com/covers/19/48/9780679731948.jpg'), + ('0679745327', 'Brightness Falls', 'https://images.isbndb.com/covers/53/27/9780679745327.jpg'), + ('7119020412', 'TALES FROM ANCIENT CHINA''S IMPERIAL HAREM', 'https://images.isbndb.com/covers/04/19/9787119020419.jpg'), + ('0130866172', 'Accent Of Success, The: A Practical Guide For International Students', 'https://images.isbndb.com/covers/61/72/9780130866172.jpg'), + ('0929701364', 'She Drove Without Stopping: A Novel', 'https://images.isbndb.com/covers/13/63/9780929701363.jpg'), + ('067975444X', 'Separation', 'https://images.isbndb.com/covers/44/42/9780679754442.jpg'), + ('0671028502', 'Home Before Dark (Contemporary Classics (Washington Square Press))', 'https://images.isbndb.com/covers/85/03/9780671028503.jpg'), + ('0671047426', 'Spanking Watson (Kinky Friedman Novels)', 'https://images.isbndb.com/covers/74/29/9780671047429.jpg'), + ('0385313152', 'Blown Sideways Through Life: A Hilarious Tour De Resume', 'https://images.isbndb.com/covers/31/55/9780385313155.jpg'), + ('0451202112', 'Wake Of The Perdido Star', 'https://images.isbndb.com/covers/21/16/9780451202116.jpg'), + ('059527059X', 'The Greenhouse Conspiracy', 'https://images.isbndb.com/covers/05/90/9780595270590.jpg'), + ('0345390016', 'Nurses', 'https://images.isbndb.com/covers/00/11/9780345390011.jpg'), + ('0449221431', 'The Novel', 'https://images.isbndb.com/covers/14/33/9780449221433.jpg'), + ('0140186832', 'A Portrait Of The Artist As A Young Man (Twentieth-Century Classics)', 'https://images.isbndb.com/covers/68/33/9780140186833.jpg'), + ('0060929855', 'Three Plays (Perennial Classics)', 'https://images.isbndb.com/covers/98/55/9780060929855.jpg'), + ('0380792478', 'Rattlesnake Crossing (Joanna Brady Mysteries, Book 6)', 'https://images.isbndb.com/covers/24/74/9780380792474.jpg'), + ('0670839809', 'Waiting To Exhale', 'https://images.isbndb.com/covers/98/03/9780670839803.jpg'), + ('0679426612', 'Rose', 'https://images.isbndb.com/covers/66/15/9780679426615.jpg'), + ('0471349976', 'The Professional Chef''s Knife Kit', 'https://images.isbndb.com/covers/99/76/9780471349976.jpg'), + ('0679769420', 'The Hundred Brothers', 'https://images.isbndb.com/covers/94/22/9780679769422.jpg'), + ('044990542X', 'Tales From Margaritaville', 'https://images.isbndb.com/covers/54/25/9780449905425.jpg'), + ('0152022341', 'Sacajawea', 'https://images.isbndb.com/covers/23/41/9780152022341.jpg'), + ('0816752087', 'My Cat Is Going To The Dogs (Wacky World Of Snarvey Gooper)', 'https://images.isbndb.com/covers/20/89/9780816752089.jpg'), + ('0001714600', 'I Want To Be Somebody New! (Beginner Series)', 'https://images.isbndb.com/covers/46/01/9780001714601.jpg'), + ('0395906954', 'See The Circus (Lift The Flap Series)', 'https://images.isbndb.com/covers/69/58/9780395906958.jpg'), + ('0689831803', 'Raggedy Ann And Andy And The Magic Potion', 'https://images.isbndb.com/covers/18/05/9780689831805.jpg'), + ('0880016620', 'The Palace', 'https://images.isbndb.com/covers/66/29/9780880016629.jpg'), + ('0758201885', 'Afterlife', 'https://images.isbndb.com/covers/18/81/9780758201881.jpg'), + ('0873492862', 'Motown : The Golden Years: The Stars And Music That Shaped A Generation', 'https://images.isbndb.com/covers/28/67/9780873492867.jpg'), + ('0688167241', 'Basic Baking: Everything You Need To Know To Start Baking Plus 101 Luscious Dessert Recipes That Anyone Can Make', 'https://images.isbndb.com/covers/72/40/9780688167240.jpg'), + ('1580083986', 'Foods Of The Southwest Indian Nations', 'https://images.isbndb.com/covers/39/80/9781580083980.jpg'), + ('1864503157', 'Catalunya & The Costa Brava (Lonely Planet Catalunya & Costa Brava)', 'https://images.isbndb.com/covers/31/59/9781864503159.jpg'), + ('0688167802', 'Circling The Drain: Stories', 'https://images.isbndb.com/covers/78/06/9780688167806.jpg'), + ('0688067700', 'Fat Tuesday', 'https://images.isbndb.com/covers/77/00/9780688067700.jpg'), + ('0446528595', 'Swimming Across: A Memoir', 'https://images.isbndb.com/covers/85/97/9780446528597.jpg'), + ('0140275010', 'Cod: A Biography Of The Fish That Changed The World', 'https://images.isbndb.com/covers/50/18/9780140275018.jpg'), + ('185585662X', 'Greetings From Earth: The Art Of Bob Eggleton', 'https://images.isbndb.com/covers/66/22/9781855856622.jpg'), + ('0140109595', 'A Place I''ve Never Been (Contemporary American Fiction)', 'https://images.isbndb.com/covers/95/97/9780140109597.jpg'), + ('0520206738', 'Golden Days (California Fiction)', 'https://images.isbndb.com/covers/67/31/9780520206731.jpg'), + ('0880015942', 'Spence And Lila', 'https://images.isbndb.com/covers/59/43/9780880015943.jpg'), + ('0394741188', 'Ransom', 'https://images.isbndb.com/covers/11/85/9780394741185.jpg'), + ('1566198798', 'Essays And Sketches Of Mark Twain', 'https://images.isbndb.com/covers/87/90/9781566198790.jpg'), + ('0060002093', 'Ignorance: A Novel', 'https://images.isbndb.com/covers/20/91/9780060002091.jpg'), + ('0807083178', 'Thousand Pieces Of Gold (Asian Voices)', 'https://images.isbndb.com/covers/31/78/9780807083178.jpg'), + ('0679722181', 'The Good Soldier', 'https://images.isbndb.com/covers/21/82/9780679722182.jpg'), + ('1896891063', 'Beans & Rice (Company''s Coming)', 'https://images.isbndb.com/covers/10/64/9781896891064.jpg'), + ('038089887X', 'Foreign Affairs', 'https://images.isbndb.com/covers/88/79/9780380898879.jpg'), + ('034540453X', 'Vanishing Smile (Thomas Black Mysteries)', 'https://images.isbndb.com/covers/45/34/9780345404534.jpg'), + ('1562827960', 'Coffee Will Make You Black', 'https://images.isbndb.com/covers/79/60/9781562827960.jpg'), + ('1567313736', 'Uppity Women Of Shakespearean Times', 'https://images.isbndb.com/covers/37/34/9781567313734.jpg'), + ('031202259X', 'Murder In The Oval Office', 'https://images.isbndb.com/covers/25/94/9780312022594.jpg'), + ('0762723742', 'Washington Off The Beaten Path, 5th: A Guide To Unique Places (Off The Beaten Path Series)', 'https://images.isbndb.com/covers/37/44/9780762723744.jpg'), + ('0684833840', 'KAPLAN SAT IN A WEEK (1996 Edition)', 'https://images.isbndb.com/covers/38/42/9780684833842.jpg'), + ('0805056084', 'Cruel As The Grave: A Medieval Mystery', 'https://images.isbndb.com/covers/60/82/9780805056082.jpg'), + ('0374153248', 'Family Man', 'https://images.isbndb.com/covers/32/43/9780374153243.jpg'), + ('0786863951', 'When You Eat At The Refrigerator, Pull Up A Chair: 50 Ways To Feel Thin, Gorgeous, And Happy (When You Feel Anything But)', 'https://images.isbndb.com/covers/39/52/9780786863952.jpg'), + ('185828869X', 'The Rough Guide To New York City', 'https://images.isbndb.com/covers/86/97/9781858288697.jpg'), + ('0684857022', 'MY DATE WITH SATAN: Stories', 'https://images.isbndb.com/covers/70/22/9780684857022.jpg'), + ('0440403790', 'My Name Is Not Angelica', 'https://images.isbndb.com/covers/37/91/9780440403791.jpg'), + ('0517220121', 'They Went Broke?!: Bankruptcies And Money Disaster Of The Rich & Famous', 'https://images.isbndb.com/covers/01/22/9780517220122.jpg'), + ('0805067922', 'Dancer: A Novel', 'https://images.isbndb.com/covers/79/27/9780805067927.jpg'), + ('0449907562', 'Engaged Woman''s Survival Guide', 'https://images.isbndb.com/covers/75/66/9780449907566.jpg'), + ('0878575103', 'Babies And Other Hazards Of Sex: How To Make A Tiny Person In Only 9 Months, With Tools You Probably Have Around The Home', 'https://images.isbndb.com/covers/51/07/9780878575107.jpg'), + ('1877988243', 'Best Places To Kiss In The Northwest : A Romantic Travel Guide (7th Rev Ed)', 'https://images.isbndb.com/covers/82/40/9781877988240.jpg'), + ('0785799524', 'Breathing Lessons', 'https://images.isbndb.com/covers/95/28/9780785799528.jpg'), + ('0877017883', 'Griffin & Sabine: An Extraordinary Correspondence', 'https://images.isbndb.com/covers/78/82/9780877017882.jpg'), + ('0446604100', 'The Broken Promise Land', 'https://images.isbndb.com/covers/41/09/9780446604109.jpg'), + ('0440222028', 'Simisola', 'https://images.isbndb.com/covers/20/26/9780440222026.jpg'), + ('0316199648', 'Jim The Boy: A Novel', 'https://images.isbndb.com/covers/96/43/9780316199643.jpg'), + ('1556522460', 'The Book Group Book: A Thoughtful Guide To Forming And Enjoying A Stimulating Book Discussion Group', 'https://images.isbndb.com/covers/24/68/9781556522468.jpg'), + ('0525485082', 'Painted Ladies Revisited: San Francisco''s Resplendent Victorians Inside And Out', 'https://images.isbndb.com/covers/50/87/9780525485087.jpg'), + ('1558748865', 'Chicken Soup For The Gardener''s Soul, 101 Stories To Sow Seeds Of Love, Hope And Laughter (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/88/66/9781558748866.jpg'), + ('1573223425', 'Blue Shoe', 'https://images.isbndb.com/covers/34/23/9781573223423.jpg'), + ('0679753761', 'Far Afield', 'https://images.isbndb.com/covers/37/66/9780679753766.jpg'), + ('0060081961', 'Once Upon A Town: The Miracle Of The North Platte Canteen', 'https://images.isbndb.com/covers/19/66/9780060081966.jpg'), + ('0486200701', 'The Book Of Tea', 'https://images.isbndb.com/covers/07/05/9780486200705.jpg'), + ('0553096060', 'Sein Language', 'https://images.isbndb.com/covers/60/64/9780553096064.jpg'), + ('0813525764', 'Transit Talk: New York''s Bus And Subway Workers Tell Their Stories', 'https://images.isbndb.com/covers/57/61/9780813525761.jpg'), + ('0380730200', 'The Giant''s House: A Romance', 'https://images.isbndb.com/covers/02/09/9780380730209.jpg'), + ('0451403800', 'Telling Lies (Maggie MacGowen Mystery)', 'https://images.isbndb.com/covers/38/03/9780451403803.jpg'), + ('0312290888', 'Jane Austen In Boca: A Novel', 'https://images.isbndb.com/covers/08/87/9780312290887.jpg'), + ('0679404864', 'Dave Barry''s Complete Guide To Guys: A Fairly Short Book', 'https://images.isbndb.com/covers/48/66/9780679404866.jpg'), + ('0062507583', 'Walking On Alligators: A Book Of Meditations For Writers', 'https://images.isbndb.com/covers/75/87/9780062507587.jpg'), + ('0449210502', 'Bridge At Andau', 'https://images.isbndb.com/covers/05/05/9780449210505.jpg'), + ('0316816884', 'The Hacienda: A Memoir', 'https://images.isbndb.com/covers/68/85/9780316816885.jpg'), + ('0931122562', 'The Girl', 'https://images.isbndb.com/covers/25/69/9780931122569.jpg'), + ('0312187688', 'Used And Rare: Travels In The Book World', 'https://images.isbndb.com/covers/76/82/9780312187682.jpg'), + ('0399519785', 'Book Finds: How To Find, Buy, And Sell Used And Rare Books', 'https://images.isbndb.com/covers/97/89/9780399519789.jpg'), + ('0060958294', 'The Natural (Perennial Classics)', 'https://images.isbndb.com/covers/82/99/9780060958299.jpg'), + ('0684827107', 'The End Of Alice', 'https://images.isbndb.com/covers/71/00/9780684827100.jpg'), + ('0609803875', 'A Gracious Plenty: A Novel', 'https://images.isbndb.com/covers/38/75/9780609803875.jpg'), + ('1882413768', 'One Stick Song', 'https://images.isbndb.com/covers/37/68/9781882413768.jpg'), + ('0871133741', 'A New Path To The Waterfall', 'https://images.isbndb.com/covers/37/48/9780871133748.jpg'), + ('0805068015', 'Eva Moves The Furniture: A Novel', 'https://images.isbndb.com/covers/80/16/9780805068016.jpg'), + ('0671793578', 'The End Of The Dream The Golden Boy Who Never Grew Up : Ann Rules Crime Files Volume 5', 'https://images.isbndb.com/covers/35/79/9780671793579.jpg'), + ('0375750525', 'The Vagina Monologues', 'https://images.isbndb.com/covers/05/26/9780375750526.jpg'), + ('0802133991', 'The Magic Of Blood', 'https://images.isbndb.com/covers/39/91/9780802133991.jpg'), + ('060960516X', 'Enchanted Night: A Novella', 'https://images.isbndb.com/covers/51/65/9780609605165.jpg'), + ('0316197475', 'Your Blue-Eyed Boy: A Novel', 'https://images.isbndb.com/covers/74/72/9780316197472.jpg'), + ('0140122060', 'Paris Trout (Contemporary American Fiction)', 'https://images.isbndb.com/covers/20/60/9780140122060.jpg'), + ('1555835821', 'Soon To Be A Major Motion Picture', 'https://images.isbndb.com/covers/58/28/9781555835828.jpg'), + ('0140133488', 'Crossing To Safety', 'https://images.isbndb.com/covers/34/86/9780140133486.jpg'), + ('0930773284', 'When Bobby Kennedy Was A Moving Man', 'https://images.isbndb.com/covers/32/81/9780930773281.jpg'), + ('0671729470', 'Petals On The Wind (Dollanganger Series)', 'https://images.isbndb.com/covers/94/79/9780671729479.jpg'), + ('0590865420', 'A Wizard''s Dozen: Stories Of The Fantastic', 'https://images.isbndb.com/covers/54/25/9780590865425.jpg'), + ('0771021828', 'Book Of Mercy', 'https://images.isbndb.com/covers/18/24/9780771021824.jpg'), + ('0156814161', 'The Shadow Of The Sun', 'https://images.isbndb.com/covers/41/64/9780156814164.jpg'), + ('0912310782', 'New Art Of Belly Dancing', 'https://images.isbndb.com/covers/07/87/9780912310787.jpg'), + ('0452276756', 'Alice In Bed', 'https://images.isbndb.com/covers/67/58/9780452276758.jpg'), + ('0676904955', 'Compass American Guides: Manhattan, 4th Edition', 'https://images.isbndb.com/covers/49/56/9780676904956.jpg'), + ('0028606736', 'Baedeker New York (Baedeker''s City Guides)', 'https://images.isbndb.com/covers/67/36/9780028606736.jpg'), + ('0970038704', 'Cut My Hair', 'https://images.isbndb.com/covers/87/08/9780970038708.jpg'), + ('0140248927', 'Aunt Julia And The Scriptwriter: A Novel', 'https://images.isbndb.com/covers/89/20/9780140248920.jpg'), + ('0767900340', 'Practical Intuition', 'https://images.isbndb.com/covers/03/48/9780767900348.jpg'), + ('0345385764', 'Night Manager', 'https://images.isbndb.com/covers/57/65/9780345385765.jpg'), + ('0060976993', 'The Assassination Of Jesse James By The Coward Robert Ford', 'https://images.isbndb.com/covers/69/96/9780060976996.jpg'), + ('0679740775', 'The Virgin And The Gipsy', 'https://images.isbndb.com/covers/07/73/9780679740773.jpg'), + ('052594642X', 'The Impressionist', 'https://images.isbndb.com/covers/64/27/9780525946427.jpg'), + ('0140147292', 'More Everyday Parenting', 'https://images.isbndb.com/covers/72/92/9780140147292.jpg'), + ('0553255282', 'Dare To Discipline', 'https://images.isbndb.com/covers/52/87/9780553255287.jpg'), + ('0688168248', 'The Book Borrower: A Novel', 'https://images.isbndb.com/covers/82/47/9780688168247.jpg'), + ('0684830922', 'Franco American Dreams', 'https://images.isbndb.com/covers/09/26/9780684830926.jpg'), + ('0714530603', 'De Sade''s Valet', 'https://images.isbndb.com/covers/06/04/9780714530604.jpg'), + ('0151489262', 'The Flanders Panel', 'https://images.isbndb.com/covers/92/68/9780151489268.jpg'), + ('015670160X', 'Orlando: A Biography', 'https://images.isbndb.com/covers/16/00/9780156701600.jpg'), + ('0385133448', 'Eye Winker, Tom Tinker', 'https://images.isbndb.com/covers/34/49/9780385133449.jpg'), + ('0345318145', 'How To Organize Your Kid''s Room', 'https://images.isbndb.com/covers/81/45/9780345318145.jpg'), + ('0440127068', 'Feed Your Kids Right', 'https://images.isbndb.com/covers/70/62/9780440127062.jpg'), + ('0312198647', 'Elegy For Iris', 'https://images.isbndb.com/covers/86/40/9780312198640.jpg'), + ('0804113629', 'Feline And Famous: Cat Crimes Goes Hollywood', 'https://images.isbndb.com/covers/36/25/9780804113625.jpg'), + ('0963608894', 'Simply Classic: A New Collection Of Recipes To Celebrate The Northwest', 'https://images.isbndb.com/covers/88/95/9780963608895.jpg'), + ('0590428837', 'Sixth Grade Can Really Kill You (An Apple Paperback)', 'https://images.isbndb.com/covers/88/35/9780590428835.jpg'), + ('0060932384', 'Immortality (Perennial Classics)', 'https://images.isbndb.com/covers/23/81/9780060932381.jpg'), + ('038071843X', 'Breach Of Duty: A J.P. Beaumont Mystery', 'https://images.isbndb.com/covers/84/36/9780380718436.jpg'), + ('0836218515', 'The PreHistory Of The Far Side ®:: A 10th Anniversary Exhibit', 'https://images.isbndb.com/covers/85/10/9780836218510.jpg'), + ('0395744415', 'Manhattan, When I Was Young', 'https://images.isbndb.com/covers/44/13/9780395744413.jpg'), + ('0385484275', 'Perfidia', 'https://images.isbndb.com/covers/42/75/9780385484275.jpg'), + ('0684848295', 'SCRIBNER''S BEST OF THE FICTION WORKSHOPS 1999', 'https://images.isbndb.com/covers/82/97/9780684848297.jpg'), + ('0373243790', 'Considering Kate (The Stanislaskis) (Silhouette Special Edition No. 1379)', 'https://images.isbndb.com/covers/37/92/9780373243792.jpg'), + ('0395528151', 'The Call Of Stories: Teaching And The Moral Imagination', 'https://images.isbndb.com/covers/81/50/9780395528150.jpg'), + ('1559240059', 'Happiness Is An Inside Job', 'https://images.isbndb.com/covers/00/55/9781559240055.jpg'), + ('0345346491', 'Walking Across Egypt', 'https://images.isbndb.com/covers/64/90/9780345346490.jpg'), + ('0385319401', 'Blue Italian', 'https://images.isbndb.com/covers/94/09/9780385319409.jpg'), + ('0060096772', 'Your Mouth Is Lovely: A Novel', 'https://images.isbndb.com/covers/67/79/9780060096779.jpg'), + ('1569470553', 'Adrian Mole: The Lost Years', 'https://images.isbndb.com/covers/05/58/9781569470558.jpg'), + ('0671892673', 'A Place Where The Sea Remembers (Scribner''s Paperback Fiction)', 'https://images.isbndb.com/covers/26/78/9780671892678.jpg'), + ('0836211499', 'Beyond The Far Side ®', 'https://images.isbndb.com/covers/14/98/9780836211498.jpg'), + ('0330294008', 'Less Than Zero (Picador)', 'https://images.isbndb.com/covers/40/03/9780330294003.jpg'), + ('0961655321', 'Monongahela National Forest Hiking Guide', 'https://images.isbndb.com/covers/53/27/9780961655327.jpg'), + ('0679759263', 'The Soloist', 'https://images.isbndb.com/covers/92/63/9780679759263.jpg'), + ('0393900401', 'Epicoene, Or The Silent Woman (New Mermaids)', 'https://images.isbndb.com/covers/04/08/9780393900408.jpg'), + ('0688177905', 'In The Family Way: An Urban Comedy', 'https://images.isbndb.com/covers/79/04/9780688177904.jpg'), + ('0140064834', 'To See You Again (The Penguin Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/48/34/9780140064834.jpg'), + ('0345336712', 'Lady''s Time', 'https://images.isbndb.com/covers/67/12/9780345336712.jpg'), + ('0345440129', 'Two Women: A Novel Of Friendship', 'https://images.isbndb.com/covers/01/29/9780345440129.jpg'), + ('067975556X', 'THE LAST GOOD TIME', 'https://images.isbndb.com/covers/55/62/9780679755562.jpg'), + ('0679783571', 'The Broke Diaries: The Completely True And Hilarious Misadventures Of A Good Girl Gone Broke', 'https://images.isbndb.com/covers/35/72/9780679783572.jpg'), + ('0553380672', 'Loose Lips', 'https://images.isbndb.com/covers/06/75/9780553380675.jpg'), + ('1885061781', 'Real Scandinavians Never Ask Directions', 'https://images.isbndb.com/covers/17/82/9781885061782.jpg'), + ('0679727256', 'The Gift', 'https://images.isbndb.com/covers/72/55/9780679727255.jpg'), + ('0679727272', 'Bend Sinister', 'https://images.isbndb.com/covers/72/79/9780679727279.jpg'), + ('031228425X', 'Winter Range: A Novel', 'https://images.isbndb.com/covers/42/51/9780312284251.jpg'), + ('0962054364', 'Beads And Threads: A New Technique For Fiber Jewelry', 'https://images.isbndb.com/covers/43/65/9780962054365.jpg'), + ('0670031542', 'The Story Of Lucy Gault', 'https://images.isbndb.com/covers/15/42/9780670031542.jpg'), + ('0399145672', 'Big Trouble', 'https://images.isbndb.com/covers/56/74/9780399145674.jpg'), + ('1864501936', 'Lonely Planet Portugal (Portugal, 3rd Ed)', 'https://images.isbndb.com/covers/19/33/9781864501933.jpg'), + ('0060976772', 'Family', 'https://images.isbndb.com/covers/67/74/9780060976774.jpg'), + ('0140280456', 'Secrets', 'https://images.isbndb.com/covers/04/56/9780140280456.jpg'), + ('0385499345', 'The Lexus And The Olive Tree: Understanding Globalization', 'https://images.isbndb.com/covers/93/47/9780385499347.jpg'), + ('0385334931', 'Sometimes I Dream In Italian', 'https://images.isbndb.com/covers/49/38/9780385334938.jpg'), + ('0688163769', 'The Mediterranean Kitchen', 'https://images.isbndb.com/covers/37/61/9780688163761.jpg'), + ('1860469345', 'The Fish Can Sing', 'https://images.isbndb.com/covers/93/43/9781860469343.jpg'), + ('0679742409', 'Through The Ivory Gate: A Novel', 'https://images.isbndb.com/covers/24/01/9780679742401.jpg'), + ('0912365307', 'Breakfast In Bed Cookbook: The Best B And B Recipes From Northern California To British Columbia', 'https://images.isbndb.com/covers/53/05/9780912365305.jpg'), + ('0295962194', 'During My Time Florence Edenshaw Davidso', 'https://images.isbndb.com/covers/21/91/9780295962191.jpg'), + ('0345419081', 'The Eight', 'https://images.isbndb.com/covers/90/88/9780345419088.jpg'), + ('0671663143', 'The Case Of The Disappearing Deejay (Nancy Drew 89)', 'https://images.isbndb.com/covers/31/48/9780671663148.jpg'), + ('015600464X', 'Ex Utero (Harvest American Writing)', 'https://images.isbndb.com/covers/46/40/9780156004640.jpg'), + ('156833186X', 'The Bodhran Makers', 'https://images.isbndb.com/covers/18/67/9781568331867.jpg'), + ('0375704248', 'Falling Slowly', 'https://images.isbndb.com/covers/42/46/9780375704246.jpg'), + ('0452282543', 'From Our House', 'https://images.isbndb.com/covers/25/44/9780452282544.jpg'), + ('0836221818', 'The Concrete Enema: And Other News Of The Weird Classics', 'https://images.isbndb.com/covers/18/17/9780836221817.jpg'), + ('0679432477', 'Empire Falls', 'https://images.isbndb.com/covers/24/70/9780679432470.jpg'), + ('0736900640', 'Someone To Belong To (Whispering Pine)', 'https://images.isbndb.com/covers/06/45/9780736900645.jpg'), + ('034539044X', 'Rose', 'https://images.isbndb.com/covers/04/48/9780345390448.jpg'), + ('0804109796', 'Cat Crimes', 'https://images.isbndb.com/covers/97/96/9780804109796.jpg'), + ('0060168609', 'Cloudsplitter: A Novel', 'https://images.isbndb.com/covers/86/05/9780060168605.jpg'), + ('0140131604', 'Leaving Home', 'https://images.isbndb.com/covers/16/04/9780140131604.jpg'), + ('0679735461', 'The Laughing Sutra', 'https://images.isbndb.com/covers/54/65/9780679735465.jpg'), + ('0940242737', 'The Five Thousand And One Nights (European Short Stories, No. 4)', 'https://images.isbndb.com/covers/27/39/9780940242739.jpg'), + ('1588370011', 'Rooster', 'https://images.isbndb.com/covers/00/13/9781588370013.jpg'), + ('0517595753', 'Dave Barry In Cyberspace', 'https://images.isbndb.com/covers/57/56/9780517595756.jpg'), + ('0609602330', 'Isaac''s Storm : A Man, A Time, And The Deadliest Hurricane In History', 'https://images.isbndb.com/covers/23/31/9780609602331.jpg'), + ('0679462988', 'The Bullfighter Checks Her Makeup: My Encounters With Extraordinary People', 'https://images.isbndb.com/covers/29/89/9780679462989.jpg'), + ('0517595532', 'New Times In The Old South: Or Why Scarlett''s In Therapy & Tara''s Going Condo', 'https://images.isbndb.com/covers/55/34/9780517595534.jpg'), + ('044020867X', 'Life Is Uncertain...Eat Dessert First!', 'https://images.isbndb.com/covers/86/79/9780440208679.jpg'), + ('0964303558', 'Positive Charges: 544 Ways To Stay Upbeat During Downbeat Times', 'https://images.isbndb.com/covers/35/53/9780964303553.jpg'), + ('068480123X', 'House Of Mirth', 'https://images.isbndb.com/covers/12/30/9780684801230.jpg'), + ('0679734589', 'The Rachel Papers', 'https://images.isbndb.com/covers/45/81/9780679734581.jpg'), + ('0679422587', 'IN THE CUT', 'https://images.isbndb.com/covers/25/87/9780679422587.jpg'), + ('0767902025', 'Tomcat In Love', 'https://images.isbndb.com/covers/20/21/9780767902021.jpg'), + ('0156006197', 'The Millstone', 'https://images.isbndb.com/covers/61/94/9780156006194.jpg'), + ('0375724842', 'Harm Done: A New Inspector Wexford Mystery', 'https://images.isbndb.com/covers/48/48/9780375724848.jpg'), + ('0385720408', 'Ali And Nino: A Love Story', 'https://images.isbndb.com/covers/04/03/9780385720403.jpg'), + ('0312143834', 'Objects In Mirror Are Closer Than They Appear: A Novel', 'https://images.isbndb.com/covers/38/31/9780312143831.jpg'), + ('0452279070', 'Ragtime', 'https://images.isbndb.com/covers/90/70/9780452279070.jpg'), + ('0553582801', 'The Man Who Ate The 747', 'https://images.isbndb.com/covers/28/02/9780553582802.jpg'), + ('0425137473', 'Women Of Mystery 1', 'https://images.isbndb.com/covers/74/75/9780425137475.jpg'), + ('0451407261', 'The Maggody Militia (Arly Hanks Mystery)', 'https://images.isbndb.com/covers/72/69/9780451407269.jpg'), + ('0060198133', 'Five Quarters Of The Orange', 'https://images.isbndb.com/covers/81/38/9780060198138.jpg'), + ('0030640075', 'Craig Claibornes: A Feast Made For Laughter', 'https://images.isbndb.com/covers/00/70/9780030640070.jpg'), + ('0345310799', 'Stallion Gate', 'https://images.isbndb.com/covers/07/98/9780345310798.jpg'), + ('0446391719', 'To Asmara', 'https://images.isbndb.com/covers/17/19/9780446391719.jpg'), + ('038077514X', 'Murder And Spies, Lovers And Lies: Settling The Great Controversies Of American History', 'https://images.isbndb.com/covers/51/49/9780380775149.jpg'), + ('006092411X', 'The Living: A Novel', 'https://images.isbndb.com/covers/41/19/9780060924119.jpg'), + ('0449912787', 'Your Oasis On Flame Lake', 'https://images.isbndb.com/covers/27/82/9780449912782.jpg'), + ('037550155X', 'The Handyman: A Novel', 'https://images.isbndb.com/covers/15/55/9780375501555.jpg'), + ('0670892742', 'Cherry: A Memoir', 'https://images.isbndb.com/covers/27/47/9780670892747.jpg'), + ('0449216241', 'Tending To Virginia', 'https://images.isbndb.com/covers/62/48/9780449216248.jpg'), + ('0316313076', 'Victory Over Japan: A Book Of Stories (Back Bay Books)', 'https://images.isbndb.com/covers/30/70/9780316313070.jpg'), + ('0345384237', 'Lempriere''s Dictionary: A Novel', 'https://images.isbndb.com/covers/42/32/9780345384232.jpg'), + ('0156007819', 'Eucalyptus: A Novel', 'https://images.isbndb.com/covers/78/18/9780156007818.jpg'), + ('1550171631', 'Dogless In Metchosin', 'https://images.isbndb.com/covers/16/31/9781550171631.jpg'), + ('0393311031', 'Hen''s Teeth And Horse''s Toes: Further Reflections In Natural History', 'https://images.isbndb.com/covers/10/37/9780393311037.jpg'), + ('0684849135', 'Why We Buy: The Science Of Shopping', 'https://images.isbndb.com/covers/91/33/9780684849133.jpg'), + ('0060928417', 'Slowness: A Novel', 'https://images.isbndb.com/covers/84/14/9780060928414.jpg'), + ('0140097112', 'What''s Bred In The Bone (Cornish Trilogy)', 'https://images.isbndb.com/covers/71/15/9780140097115.jpg'), + ('0156006340', 'The Flower In The Skull', 'https://images.isbndb.com/covers/63/47/9780156006347.jpg'), + ('0140119795', 'The Cape Ann (Contemporary American Fiction)', 'https://images.isbndb.com/covers/97/94/9780140119794.jpg'), + ('1573220280', 'The Cloister Walk', 'https://images.isbndb.com/covers/02/86/9781573220286.jpg'), + ('0880014857', 'Open Water', 'https://images.isbndb.com/covers/48/54/9780880014854.jpg'), + ('0452281202', 'The Evolution Of Jane', 'https://images.isbndb.com/covers/12/02/9780452281202.jpg'), + ('0671885332', 'At Paradise Gate', 'https://images.isbndb.com/covers/53/35/9780671885335.jpg'), + ('1571430148', 'I Should Have Stayed Home: The Worst Trips Of Great Writers (Travel Literature Series)', 'https://images.isbndb.com/covers/01/44/9781571430144.jpg'), + ('0140040188', 'American Fried: Adventures Of A Happy Eater', 'https://images.isbndb.com/covers/01/80/9780140040180.jpg'), + ('0330305336', 'Cannibal In Manhattan (Picador Books)', 'https://images.isbndb.com/covers/53/34/9780330305334.jpg'), + ('0843133805', 'How To Flirt', 'https://images.isbndb.com/covers/38/06/9780843133806.jpg'), + ('0671644076', 'Twilight', 'https://images.isbndb.com/covers/40/79/9780671644079.jpg'), + ('0553110438', 'Kids Say The Darndest Things', 'https://images.isbndb.com/covers/04/32/9780553110432.jpg'), + ('034536676X', 'The World According To Garp', 'https://images.isbndb.com/covers/67/64/9780345366764.jpg'), + ('0812217268', 'The House On The Strand', 'https://images.isbndb.com/covers/72/61/9780812217261.jpg'), + ('0451525116', 'Selected Stories (A Signet Classic)', 'https://images.isbndb.com/covers/51/16/9780451525116.jpg'), + ('0671640488', 'Three By Finney', 'https://images.isbndb.com/covers/04/84/9780671640484.jpg'), + ('0140284621', 'Uncle Fred In The Springtime (A Blandings Story)', 'https://images.isbndb.com/covers/46/21/9780140284621.jpg'), + ('0140030395', 'Piccadilly Jim (Penguin Books)', 'https://images.isbndb.com/covers/03/96/9780140030396.jpg'), + ('0394716310', 'Two Towns In Provence: Map Of Another Town And A Considerable Town', 'https://images.isbndb.com/covers/63/12/9780394716312.jpg'), + ('0843733756', 'European Detours: A Travel Guide To Unusual Sights', 'https://images.isbndb.com/covers/37/54/9780843733754.jpg'), + ('0449209105', 'The Promise', 'https://images.isbndb.com/covers/91/03/9780449209103.jpg'), + ('0679743839', 'Barcelona', 'https://images.isbndb.com/covers/38/35/9780679743835.jpg'), + ('1404306781', 'Haunted Bookshop, The', 'https://images.isbndb.com/covers/67/83/9781404306783.jpg'), + ('0140011722', 'LAUGHING GAS', 'https://images.isbndb.com/covers/17/22/9780140011722.jpg'), + ('0449908747', 'Barn Blind: A Novel', 'https://images.isbndb.com/covers/87/47/9780449908747.jpg'), + ('0915230151', 'The Mirror', 'https://images.isbndb.com/covers/01/50/9780915230150.jpg'), + ('0618127046', 'Summer At Fairacre', 'https://images.isbndb.com/covers/70/47/9780618127047.jpg'), + ('156305115X', 'You Know You''re Grown Up When . . .', 'https://images.isbndb.com/covers/11/59/9781563051159.jpg'), + ('0060972122', 'The Mysteries Of Pittsburgh', 'https://images.isbndb.com/covers/21/27/9780060972127.jpg'), + ('0671754629', 'Cats Of Thistle Hill: A Mostly Peaceable Kingdom', 'https://images.isbndb.com/covers/46/24/9780671754624.jpg'), + ('0394741714', 'Alice, Let''s Eat', 'https://images.isbndb.com/covers/17/10/9780394741710.jpg'), + ('0452261848', 'Lives Of Girls And Women (Plume)', 'https://images.isbndb.com/covers/18/46/9780452261846.jpg'), + ('0449910571', 'Ladder Of Years: A Novel', 'https://images.isbndb.com/covers/05/73/9780449910573.jpg'), + ('0671242954', 'Time And Again', 'https://images.isbndb.com/covers/29/54/9780671242954.jpg'), + ('0449214370', 'Golden Days', 'https://images.isbndb.com/covers/43/74/9780449214374.jpg'), + ('0553148923', 'Still Life With Woodpecker', 'https://images.isbndb.com/covers/89/23/9780553148923.jpg'), + ('0393048144', 'The Ladies Auxiliary: A Novel', 'https://images.isbndb.com/covers/81/48/9780393048148.jpg'), + ('0140046860', 'Reflections Marin: Reflections On A Marine Venus', 'https://images.isbndb.com/covers/68/61/9780140046861.jpg'), + ('0671254308', 'Number Our Days: A Triumph Of Continuity And Culture Among Jewish Old People In An Urban Ghetto', 'https://images.isbndb.com/covers/43/08/9780671254308.jpg'), + ('0679456945', 'The Ladies'' Man', 'https://images.isbndb.com/covers/69/40/9780679456940.jpg'), + ('0375400656', 'A Samba For Sherlock', 'https://images.isbndb.com/covers/06/50/9780375400650.jpg'), + ('0312252803', 'The Country Life: A Novel', 'https://images.isbndb.com/covers/28/09/9780312252809.jpg'), + ('078688908X', 'Chain Of Evidence', 'https://images.isbndb.com/covers/90/82/9780786889082.jpg'), + ('0452268427', 'Catholic Girls: Stories, Poems, And Memoirs (Plume)', 'https://images.isbndb.com/covers/84/25/9780452268425.jpg'), + ('0060970782', 'Jane', 'https://images.isbndb.com/covers/07/89/9780060970789.jpg'), + ('0671881604', 'ISABEL''S BED', 'https://images.isbndb.com/covers/16/03/9780671881603.jpg'), + ('0375501959', 'Comfort Me With Apples: More Adventures At The Table', 'https://images.isbndb.com/covers/19/51/9780375501951.jpg'), + ('0811202208', 'The Glass Menagerie (New Classics Series)', 'https://images.isbndb.com/covers/22/06/9780811202206.jpg'), + ('0446677922', 'The Bottoms', 'https://images.isbndb.com/covers/79/29/9780446677929.jpg'), + ('1568360266', 'The Heart Of The Sky: Travels Among The Maya', 'https://images.isbndb.com/covers/02/63/9781568360263.jpg'), + ('0767900057', 'Earth Angels', 'https://images.isbndb.com/covers/00/58/9780767900058.jpg'), + ('0312192037', 'Linda Goodman''s Star Signs', 'https://images.isbndb.com/covers/20/37/9780312192037.jpg'), + ('0316299235', 'Demon Of The Waters: The True Story Of The Mutiny On The Whaleship Globe', 'https://images.isbndb.com/covers/92/37/9780316299237.jpg'), + ('1842152130', 'Making Spells And Charms: A Practical Guide To Simple Spellweaving', 'https://images.isbndb.com/covers/21/33/9781842152133.jpg'), + ('1567180892', 'Coin Divination: Pocket Fortuneteller', 'https://images.isbndb.com/covers/08/93/9781567180893.jpg'), + ('0877286868', 'The Holy Books Of Thelema', 'https://images.isbndb.com/covers/68/68/9780877286868.jpg'), + ('0877283478', 'Tarot Divination', 'https://images.isbndb.com/covers/34/78/9780877283478.jpg'), + ('0743437802', 'The Stone Monkey (A Lincoln Rhyme Novel)', 'https://images.isbndb.com/covers/78/06/9780743437806.jpg'), + ('0771099940', 'Wild Geese (New Canadian Library)', 'https://images.isbndb.com/covers/99/46/9780771099946.jpg'), + ('0743410599', 'Scandalous (Banning Sisters Trilogy)', 'https://images.isbndb.com/covers/05/95/9780743410595.jpg'), + ('0316890642', 'Evening News: A Novel', 'https://images.isbndb.com/covers/06/49/9780316890649.jpg'), + ('0440224012', 'Heartwood (Billy Bob Boy Howdy)', 'https://images.isbndb.com/covers/40/13/9780440224013.jpg'), + ('0786012676', 'Blood Of Others', 'https://images.isbndb.com/covers/26/71/9780786012671.jpg'), + ('075153286X', 'Whistling For The Elephants', 'https://images.isbndb.com/covers/28/69/9780751532869.jpg'), + ('0349114021', 'Bilgewater', 'https://images.isbndb.com/covers/40/26/9780349114026.jpg'), + ('0552997803', 'Knowledge Of Angels', 'https://images.isbndb.com/covers/78/05/9780552997805.jpg'), + ('0566074184', 'The Goal', 'https://images.isbndb.com/covers/41/89/9780566074189.jpg'), + ('0140250409', 'No Night Is Too Long', 'https://images.isbndb.com/covers/04/04/9780140250404.jpg'), + ('034082607X', 'The Rice Mother', 'https://images.isbndb.com/covers/60/72/9780340826072.jpg'), + ('0753804549', 'Dream Woman And Other Stories (Phoenix Short Stories)', 'https://images.isbndb.com/covers/45/44/9780753804544.jpg'), + ('0722176082', 'Jenny Alone A', 'https://images.isbndb.com/covers/60/85/9780722176085.jpg'), + ('0006372570', 'Don''t Ask The Price: The Memoirs Of The President Of Marks & Spencer', 'https://images.isbndb.com/covers/25/78/9780006372578.jpg'), + ('0330293796', 'Lester: The Official Biography', 'https://images.isbndb.com/covers/37/92/9780330293792.jpg'), + ('034060977X', 'Dancing In The Moonlight Pb', 'https://images.isbndb.com/covers/97/74/9780340609774.jpg'), + ('0751511935', 'No Medals For The Major', 'https://images.isbndb.com/covers/19/32/9780751511932.jpg'), + ('0962500631', 'The Undutchables: A Observation Of The Netherlands : Its Culture And Its Inhabitants', 'https://images.isbndb.com/covers/06/33/9780962500633.jpg'), + ('0951980424', 'Living And Working In Spain: A Survival Handbook (Living And Working Guides)', 'https://images.isbndb.com/covers/04/22/9780951980422.jpg'), + ('0140071814', 'The Kingdom By The Sea: A Journey Around The Coast Of Great Britain', 'https://images.isbndb.com/covers/18/18/9780140071818.jpg'), + ('055299619X', 'Human Croquet', 'https://images.isbndb.com/covers/61/98/9780552996198.jpg'), + ('1857021037', 'Mortal Beings', 'https://images.isbndb.com/covers/10/35/9781857021035.jpg'), + ('014302812X', 'The Merlin And The Hibiscus: Contemporary Short Stories From Singapore And Malaysia', 'https://images.isbndb.com/covers/81/23/9780143028123.jpg'), + ('0345460391', 'The Saints And Sinners Of Okay County', 'https://images.isbndb.com/covers/03/94/9780345460394.jpg'), + ('0553566067', 'Virtual Light', 'https://images.isbndb.com/covers/60/62/9780553566062.jpg'), + ('0694016446', 'Spider-Man: I Am Spider-Man', 'https://images.isbndb.com/covers/64/40/9780694016440.jpg'), + ('0345433327', 'Black Creek Crossing', 'https://images.isbndb.com/covers/33/29/9780345433329.jpg'), + ('038550943X', 'Going To Bend: A Novel', 'https://images.isbndb.com/covers/94/35/9780385509435.jpg'), + ('0671519867', 'GRIEF STREET (Neil Hockaday Mystery)', 'https://images.isbndb.com/covers/98/65/9780671519865.jpg'), + ('0375811729', 'Cassie''s Runaway Kite (Jellybean Books(R))', 'https://images.isbndb.com/covers/17/22/9780375811722.jpg'), + ('0786015772', 'No Stone Unturned: The True Story Of The World''s Premier Forensic Investigators', 'https://images.isbndb.com/covers/57/71/9780786015771.jpg'), + ('0786880112', 'Two For Texas', 'https://images.isbndb.com/covers/01/19/9780786880119.jpg'), + ('0688174590', 'Kisscut: A Novel', 'https://images.isbndb.com/covers/45/90/9780688174590.jpg'), + ('0525947302', 'Family Trust', 'https://images.isbndb.com/covers/73/01/9780525947301.jpg'), + ('0525947132', 'The Room-Mating Season', 'https://images.isbndb.com/covers/71/34/9780525947134.jpg'), + ('0743229061', 'Absolute Certainty : A Crime Novel', 'https://images.isbndb.com/covers/90/67/9780743229067.jpg'), + ('0316102121', 'American Icon: A Novel', 'https://images.isbndb.com/covers/21/24/9780316102124.jpg'), + ('0312192428', 'Blind Items: A (Love) Story', 'https://images.isbndb.com/covers/24/26/9780312192426.jpg'), + ('0440220440', 'Deal Breaker: The First Myron Bolitar Novel (A Myron Bolitar Novel)', 'https://images.isbndb.com/covers/04/42/9780440220442.jpg'), + ('0440222702', 'Back Spin (Myron Bolitar Mysteries)', 'https://images.isbndb.com/covers/27/05/9780440222705.jpg'), + ('0440222680', 'Fade Away (Myron Bolitar Mysteries)', 'https://images.isbndb.com/covers/26/82/9780440222682.jpg'), + ('0440220459', 'Drop Shot (Myron Bolitar Mysteries)', 'https://images.isbndb.com/covers/04/59/9780440220459.jpg'), + ('0753700891', 'Worlds Greatest Serial Killers', 'https://images.isbndb.com/covers/08/91/9780753700891.jpg'), + ('0060509406', 'Mrs. Kimble: A Novel', 'https://images.isbndb.com/covers/94/08/9780060509408.jpg'), + ('1578566363', 'Garden Of Dreams', 'https://images.isbndb.com/covers/63/65/9781578566365.jpg'), + ('0743448677', 'Without Pity: Ann Rule''s Most Dangerous Killers', 'https://images.isbndb.com/covers/86/73/9780743448673.jpg'), + ('0060560754', 'The Dim Sum Of All Things', 'https://images.isbndb.com/covers/07/51/9780060560751.jpg'), + ('0451211200', 'I Never Promised You A Rose Garden', 'https://images.isbndb.com/covers/12/00/9780451211200.jpg'), + ('0849939372', 'The Family Manager', 'https://images.isbndb.com/covers/93/72/9780849939372.jpg'), + ('1892065444', 'Cats In Cyberspace', 'https://images.isbndb.com/covers/54/45/9781892065445.jpg'), + ('0330487949', 'Wow!: A Novel Of Dogs, Divas And Deviance', 'https://images.isbndb.com/covers/79/48/9780330487948.jpg'), + ('031225234X', 'Name Dropping', 'https://images.isbndb.com/covers/23/42/9780312252342.jpg'), + ('1583143203', 'Surviving Mr. Right (Sepia)', 'https://images.isbndb.com/covers/32/09/9781583143209.jpg'), + ('0060595620', 'The Sweetest Taboo', 'https://images.isbndb.com/covers/56/23/9780060595623.jpg'), + ('0312209517', 'Life Skills', 'https://images.isbndb.com/covers/95/13/9780312209513.jpg'), + ('0312284683', 'Faking It', 'https://images.isbndb.com/covers/46/88/9780312284688.jpg'), + ('0060595833', 'Almost Like Being In Love: A Novel', 'https://images.isbndb.com/covers/58/38/9780060595838.jpg'), + ('0345278666', 'Desert Solitaire', 'https://images.isbndb.com/covers/86/61/9780345278661.jpg'), + ('0380800373', 'Three Kisses', 'https://images.isbndb.com/covers/03/77/9780380800377.jpg'), + ('0373440081', 'Madcap Heiress (Harlequin Love And Laugher)', 'https://images.isbndb.com/covers/00/85/9780373440085.jpg'), + ('0385319347', 'Lost In Translation', 'https://images.isbndb.com/covers/93/48/9780385319348.jpg'), + ('0743229584', 'Wide Blue Yonder: A Novel', 'https://images.isbndb.com/covers/95/86/9780743229586.jpg'), + ('0451160436', 'The I-5 Killer (Signet)', 'https://images.isbndb.com/covers/04/30/9780451160430.jpg'), + ('0743454510', 'Second Glance: A Novel', 'https://images.isbndb.com/covers/45/13/9780743454513.jpg'), + ('037541388X', 'Her', 'https://images.isbndb.com/covers/38/89/9780375413889.jpg'), + ('0515126772', 'Jewels Of The Sun: The Gallaghers Of Ardmore Trilogy (Irish Trilogy, Book 1)', 'https://images.isbndb.com/covers/67/78/9780515126778.jpg'), + ('0060086386', 'Filthy Rich', 'https://images.isbndb.com/covers/63/81/9780060086381.jpg'), + ('0767903854', 'In A Sunburned Country', 'https://images.isbndb.com/covers/38/51/9780767903851.jpg'), + ('0446521507', 'Tails From The Barkside', 'https://images.isbndb.com/covers/15/05/9780446521505.jpg'), + ('0451407482', 'Mama''s Boy: The True Story Of A Serial Killer And His Mother', 'https://images.isbndb.com/covers/74/81/9780451407481.jpg'), + ('0060393149', 'The Summer Wind : Thomas Capano And The Murder Of Anne Marie Fahey', 'https://images.isbndb.com/covers/31/44/9780060393144.jpg'), + ('1899712186', 'Mind Bending Classic Logic Puzzles (Mind Bending Puzzle Books)', 'https://images.isbndb.com/covers/21/82/9781899712182.jpg'), + ('0316317713', 'The Courts Of Love: Stories', 'https://images.isbndb.com/covers/77/19/9780316317719.jpg'), + ('1902852427', 'Bend Sinister: The Gay Times Book Of Short Stories 3 (Gay Times Books)', 'https://images.isbndb.com/covers/24/23/9781902852423.jpg'), + ('0345367081', 'Chili Dawgs Always Bark At Night', 'https://images.isbndb.com/covers/70/82/9780345367082.jpg'), + ('042513749X', 'Dead In The Water (Kate Shugak Mystery)', 'https://images.isbndb.com/covers/74/99/9780425137499.jpg'), + ('0671042696', 'Candy Is Dandy (Nancy Drew Notebooks No. 38)', 'https://images.isbndb.com/covers/26/91/9780671042691.jpg'), + ('0394882695', 'Richard Scarry''s Bedtime Stories (Pictureback(R))', 'https://images.isbndb.com/covers/26/97/9780394882697.jpg'), + ('0590456601', 'Mallory Hates Boys And Gym (Baby-Sitters Club, 59)', 'https://images.isbndb.com/covers/66/09/9780590456609.jpg'), + ('0590425013', 'Welcome Back, Stacey (Baby-Sitters Club, 28)', 'https://images.isbndb.com/covers/50/18/9780590425018.jpg'), + ('0590424971', 'The Baby-Sitters Club Book 31: Dawn''s Wicked Stepsister', 'https://images.isbndb.com/covers/49/74/9780590424974.jpg'), + ('0590437208', 'Dawn And The Impossible Three (The Baby-Sitters Club, No. 5)', 'https://images.isbndb.com/covers/72/02/9780590437202.jpg'), + ('0590435124', 'Mary Anne Saves The Day (The Baby-Sitters Club #4)', 'https://images.isbndb.com/covers/51/23/9780590435123.jpg'), + ('0590401386', 'Little''s Give A Party', 'https://images.isbndb.com/covers/13/88/9780590401388.jpg'), + ('0590438999', 'Kristy''s Big Day (Baby-Sitters Club)', 'https://images.isbndb.com/covers/89/95/9780590438995.jpg'), + ('0140548130', 'There''s Something In My Attic', 'https://images.isbndb.com/covers/81/36/9780140548136.jpg'), + ('0060093412', 'The Case Of The Tattooed Cat', 'https://images.isbndb.com/covers/34/19/9780060093419.jpg'), + ('0590880144', 'The Case Of The Volcano Mystery: A Novelization (Adventures Of Mary-Kate & Ashley)', 'https://images.isbndb.com/covers/01/45/9780590880145.jpg'), + ('068984042X', 'Hall Monitor', 'https://images.isbndb.com/covers/04/25/9780689840425.jpg'), + ('0689841930', 'Sandy''s Rocket (Spongebob Squarepants Chapter Books)', 'https://images.isbndb.com/covers/19/34/9780689841934.jpg'), + ('0380491710', 'Good Work, Amelia Bedelia', 'https://images.isbndb.com/covers/17/11/9780380491711.jpg'), + ('0590442996', 'Karen''s Worst Day (Baby-Sitters Little Sister, No. 3)', 'https://images.isbndb.com/covers/29/92/9780590442992.jpg'), + ('0750012706', 'Drina Ballerina (Drina Books)', 'https://images.isbndb.com/covers/27/06/9780750012706.jpg'), + ('0396077897', 'Monsters You Never Heard Of', 'https://images.isbndb.com/covers/78/93/9780396077893.jpg'), + ('0590420070', 'Dawn On The Coast (The Baby-Sitters Club #23)', 'https://images.isbndb.com/covers/00/75/9780590420075.jpg'), + ('0590433466', 'The Secret Garden', 'https://images.isbndb.com/covers/34/64/9780590433464.jpg'), + ('0743423569', 'Not Guilty', 'https://images.isbndb.com/covers/35/64/9780743423564.jpg'), + ('1889186414', 'Mother Bitchfight', 'https://images.isbndb.com/covers/64/12/9781889186412.jpg'), + ('0451211189', 'A Night As Clear As Day', 'https://images.isbndb.com/covers/11/87/9780451211187.jpg'), + ('0451206355', 'Frontera Street', 'https://images.isbndb.com/covers/63/50/9780451206350.jpg'), + ('0312850514', 'Midnight Sun', 'https://images.isbndb.com/covers/05/17/9780312850517.jpg'), + ('0312269374', 'Coming Back To Me: A Novel', 'https://images.isbndb.com/covers/93/71/9780312269371.jpg'), + ('0425129551', 'Billy', 'https://images.isbndb.com/covers/95/55/9780425129555.jpg'), + ('0060565519', 'Take Me, Take Me With You: A Novel Of Suspense', 'https://images.isbndb.com/covers/55/10/9780060565510.jpg'), + ('1400060923', 'Lost Boy, Lost Girl', 'https://images.isbndb.com/covers/09/24/9781400060924.jpg'), + ('0843951710', 'Possessions', 'https://images.isbndb.com/covers/17/14/9780843951714.jpg'), + ('0399151273', 'Retribution', 'https://images.isbndb.com/covers/12/79/9780399151279.jpg'), + ('0316570826', 'Man In My Basement', 'https://images.isbndb.com/covers/08/24/9780316570824.jpg'), + ('0843951575', 'In This Skin', 'https://images.isbndb.com/covers/15/78/9780843951578.jpg'), + ('0743412761', 'Cameo Lake', 'https://images.isbndb.com/covers/27/66/9780743412766.jpg'), + ('0060199105', 'What''s The Girl Worth?', 'https://images.isbndb.com/covers/91/04/9780060199104.jpg'), + ('0451205758', 'The Matter Of Grace (Nal Accent Novels)', 'https://images.isbndb.com/covers/57/59/9780451205759.jpg'), + ('0385334370', 'Handyman', 'https://images.isbndb.com/covers/43/72/9780385334372.jpg'), + ('0972915710', 'Teratologist', 'https://images.isbndb.com/covers/57/17/9780972915717.jpg'), + ('0312983832', 'Nobody Knows', 'https://images.isbndb.com/covers/38/33/9780312983833.jpg'), + ('1557736154', 'Offspring', 'https://images.isbndb.com/covers/61/54/9781557736154.jpg'), + ('039915180X', 'Hidden Prey', 'https://images.isbndb.com/covers/18/04/9780399151804.jpg'), + ('0061032212', 'Sleepyhead', 'https://images.isbndb.com/covers/22/19/9780061032219.jpg'), + ('0451211197', 'One Small Thing', 'https://images.isbndb.com/covers/11/94/9780451211194.jpg'), + ('081296814X', 'Durable Goods: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/81/49/9780812968149.jpg'), + ('1401300189', 'The Bone Parade', 'https://images.isbndb.com/covers/01/80/9781401300180.jpg'), + ('1840680059', 'Cows', 'https://images.isbndb.com/covers/00/58/9781840680058.jpg'), + ('1892950138', 'The Bighead : Author''s Preferred Version', 'https://images.isbndb.com/covers/01/30/9781892950130.jpg'), + ('1887368698', 'Sleep Disorder', 'https://images.isbndb.com/covers/86/98/9781887368698.jpg'), + ('0312286449', 'Desert Places', 'https://images.isbndb.com/covers/64/46/9780312286446.jpg'), + ('0345445724', 'Entering Normal', 'https://images.isbndb.com/covers/57/28/9780345445728.jpg'), + ('0843953276', 'Black Fire', 'https://images.isbndb.com/covers/32/75/9780843953275.jpg'), + ('084395177X', 'Nightmare House', 'https://images.isbndb.com/covers/17/76/9780843951776.jpg'), + ('0553298186', 'Summer Of The Monkeys (Bantam Starfire Books)', 'https://images.isbndb.com/covers/81/85/9780553298185.jpg'), + ('0553298917', 'Shackled', 'https://images.isbndb.com/covers/89/18/9780553298918.jpg'), + ('0970998716', 'Three Complete Novels (Dark Rivers Of The Heart / Sole Survivor / Intensity)', 'https://images.isbndb.com/covers/87/12/9780970998712.jpg'), + ('055310666X', 'False Memory', 'https://images.isbndb.com/covers/66/64/9780553106664.jpg'), + ('0385335520', 'The Cottage', 'https://images.isbndb.com/covers/55/22/9780385335522.jpg'), + ('0385335490', 'Johnny Angel', 'https://images.isbndb.com/covers/54/92/9780385335492.jpg'), + ('0758205511', 'Bad Boys To Go (Watson Brothers)', 'https://images.isbndb.com/covers/55/13/9780758205513.jpg'), + ('0553801430', 'By The Light Of The Moon', 'https://images.isbndb.com/covers/14/39/9780553801439.jpg'), + ('0066212995', 'Sleepyhead', 'https://images.isbndb.com/covers/29/99/9780066212999.jpg'), + ('1402201478', 'The Last Noel', 'https://images.isbndb.com/covers/14/79/9781402201479.jpg'), + ('0425145662', 'Joyride', 'https://images.isbndb.com/covers/56/61/9780425145661.jpg'), + ('0312289510', 'The Christmas Shoes (Christmas Hope Series #1)', 'https://images.isbndb.com/covers/95/15/9780312289515.jpg'), + ('0786014555', 'Dark Masques (First Mountain Man)', 'https://images.isbndb.com/covers/45/52/9780786014552.jpg'), + ('0843952199', 'The WYRM', 'https://images.isbndb.com/covers/21/93/9780843952193.jpg'), + ('0843953292', 'In Silent Graves', 'https://images.isbndb.com/covers/32/99/9780843953299.jpg'), + ('0843951826', 'Body Rides', 'https://images.isbndb.com/covers/18/20/9780843951820.jpg'), + ('0843952571', 'Borrowed Flesh', 'https://images.isbndb.com/covers/25/75/9780843952575.jpg'), + ('0743242548', 'Stacking In Rivertown', 'https://images.isbndb.com/covers/25/47/9780743242547.jpg'), + ('1592861857', 'The Fire Within', 'https://images.isbndb.com/covers/18/59/9781592861859.jpg'), + ('189295012X', 'The Safety Of Unknown Cities', 'https://images.isbndb.com/covers/01/23/9781892950123.jpg'), + ('0553382527', 'Keeping Watch', 'https://images.isbndb.com/covers/25/25/9780553382525.jpg'), + ('0553573691', 'Venus', 'https://images.isbndb.com/covers/36/95/9780553573695.jpg'), + ('037324598X', 'Bluegrass Baby: Merlyn County Midwives (Silhouette Special Edition No. 1598)', 'https://images.isbndb.com/covers/59/87/9780373245987.jpg'), + ('1551662604', 'This Matter Of Marriage', 'https://images.isbndb.com/covers/26/02/9781551662602.jpg'), + ('0972930930', 'Poisoning Eros', 'https://images.isbndb.com/covers/09/32/9780972930932.jpg'), + ('1887368353', 'Ladies Night', 'https://images.isbndb.com/covers/83/53/9781887368353.jpg'), + ('1587670674', 'The Crossings', 'https://images.isbndb.com/covers/06/71/9781587670671.jpg'), + ('0312272758', 'Panic Snap: A Novel', 'https://images.isbndb.com/covers/27/53/9780312272753.jpg'), + ('0843950404', 'Red', 'https://images.isbndb.com/covers/04/03/9780843950403.jpg'), + ('0843950463', 'Night In The Lonesome October', 'https://images.isbndb.com/covers/04/65/9780843950465.jpg'), + ('0451194004', 'Rosemary''s Baby', 'https://images.isbndb.com/covers/40/08/9780451194008.jpg'), + ('0679753362', 'Born Bad: Collected Stories', 'https://images.isbndb.com/covers/33/60/9780679753360.jpg'), + ('0843952032', 'Infernal Angel', 'https://images.isbndb.com/covers/20/32/9780843952032.jpg'), + ('0743453468', 'Whispers At Midnight', 'https://images.isbndb.com/covers/34/62/9780743453462.jpg'), + ('0679735771', 'American Psycho', 'https://images.isbndb.com/covers/57/79/9780679735779.jpg'), + ('0843951036', 'No Sanctuary', 'https://images.isbndb.com/covers/10/35/9780843951035.jpg'), + ('0671014188', 'The Summerhouse', 'https://images.isbndb.com/covers/41/86/9780671014186.jpg'), + ('0345447832', 'The Surgeon', 'https://images.isbndb.com/covers/78/38/9780345447838.jpg'), + ('0345439007', 'All The Dead Were Strangers (Conrad Voort Novels)', 'https://images.isbndb.com/covers/90/00/9780345439000.jpg'), + ('0843951532', 'Four Dark Nights', 'https://images.isbndb.com/covers/15/30/9780843951530.jpg'), + ('0765345080', 'Hunted Past Reason', 'https://images.isbndb.com/covers/50/80/9780765345080.jpg'), + ('1551669730', 'This Matter Of Marriage (MIRA)', 'https://images.isbndb.com/covers/97/31/9781551669731.jpg'), + ('0843951818', 'Blood Games', 'https://images.isbndb.com/covers/18/13/9780843951813.jpg'), + ('0140620222', 'Pride And Prejudice (Penguin Popular Classics)', 'https://images.isbndb.com/covers/02/21/9780140620221.jpg'), + ('1894815351', 'Suffer The Flesh', 'https://images.isbndb.com/covers/53/52/9781894815352.jpg'), + ('0373230117', 'Yesterday''s Memories (By Request 2''s)', 'https://images.isbndb.com/covers/01/12/9780373230112.jpg'), + ('1889186384', 'Portrait Of The Psychopath As A Young Woman', 'https://images.isbndb.com/covers/63/82/9781889186382.jpg'), + ('1887368566', 'Right To Life: And 2 Stories', 'https://images.isbndb.com/covers/85/68/9781887368568.jpg'), + ('1892950618', 'The Girl Next Door', 'https://images.isbndb.com/covers/06/11/9781892950611.jpg'), + ('0385336306', 'Safe Harbour', 'https://images.isbndb.com/covers/63/07/9780385336307.jpg'), + ('0399151729', 'A Royal Duty', 'https://images.isbndb.com/covers/17/29/9780399151729.jpg'), + ('0671738763', 'Lie To Me', 'https://images.isbndb.com/covers/87/61/9780671738761.jpg'), + ('0892967269', 'Beneath The Skin', 'https://images.isbndb.com/covers/72/61/9780892967261.jpg'), + ('0679410554', 'Tap,Tap', 'https://images.isbndb.com/covers/05/53/9780679410553.jpg'), + ('0373785070', 'Hideaway (Hideaway, Book 1)', 'https://images.isbndb.com/covers/50/70/9780373785070.jpg'), + ('0786015578', 'Black Water (Tango Key Mysteries)', 'https://images.isbndb.com/covers/55/73/9780786015573.jpg'), + ('1551667207', 'Danger Zone', 'https://images.isbndb.com/covers/72/01/9781551667201.jpg'), + ('0843946903', 'One Rainy Night', 'https://images.isbndb.com/covers/69/01/9780843946901.jpg'), + ('0671886118', 'Bring Me Children', 'https://images.isbndb.com/covers/61/10/9780671886110.jpg'), + ('0679410562', 'Cul-de-Sac: A Novel', 'https://images.isbndb.com/covers/05/60/9780679410560.jpg'), + ('1551669676', 'Remember Me', 'https://images.isbndb.com/covers/96/70/9781551669670.jpg'), + ('0843948507', 'The Traveling Vampire Show', 'https://images.isbndb.com/covers/85/09/9780843948509.jpg'), + ('0373250304', 'The Thin Pink Line', 'https://images.isbndb.com/covers/03/01/9780373250301.jpg'), + ('0373218974', 'Temptation (Language Of Love)', 'https://images.isbndb.com/covers/89/74/9780373218974.jpg'), + ('0743445597', 'Deadly Honeymoon', 'https://images.isbndb.com/covers/55/97/9780743445597.jpg'), + ('0373245645', 'His Pretend Fiancee: Manhattan Multiples (Silhouette Special Edition)', 'https://images.isbndb.com/covers/56/42/9780373245642.jpg'), + ('0440224810', 'Special Delivery', 'https://images.isbndb.com/covers/48/15/9780440224815.jpg'), + ('1551667401', 'Out Of The Dark (Mira S.)', 'https://images.isbndb.com/covers/74/09/9781551667409.jpg'), + ('0446602159', 'Commitments', 'https://images.isbndb.com/covers/21/50/9780446602150.jpg'), + ('0156027127', 'The Life Before Her Eyes', 'https://images.isbndb.com/covers/71/20/9780156027120.jpg'), + ('0679412921', 'Mystery Ride', 'https://images.isbndb.com/covers/29/22/9780679412922.jpg'), + ('0373218966', 'Sullivan''s Woman', 'https://images.isbndb.com/covers/89/67/9780373218967.jpg'), + ('155166416X', 'Sweet Baby', 'https://images.isbndb.com/covers/41/63/9781551664163.jpg'), + ('0373239963', 'Waiting For Nick (Silhouette Special Edition, No 1088)', 'https://images.isbndb.com/covers/99/62/9780373239962.jpg'), + ('0440170796', 'The Promise', 'https://images.isbndb.com/covers/07/92/9780440170792.jpg'), + ('0767902238', 'Inc. Yourself (Inc. Yourself: How To Profit By Setting Up Your Own Corporation)', 'https://images.isbndb.com/covers/22/36/9780767902236.jpg'), + ('0670844527', 'Dolores Claiborne', 'https://images.isbndb.com/covers/45/24/9780670844524.jpg'), + ('0380731479', 'The Kiss', 'https://images.isbndb.com/covers/14/73/9780380731473.jpg'), + ('084395275X', 'Red Angel', 'https://images.isbndb.com/covers/27/59/9780843952759.jpg'), + ('0743223128', 'Ghost Image : A Novel', 'https://images.isbndb.com/covers/31/26/9780743223126.jpg'), + ('0843951958', 'Face', 'https://images.isbndb.com/covers/19/50/9780843951950.jpg'), + ('0061097748', 'Kill Me First', 'https://images.isbndb.com/covers/77/44/9780061097744.jpg'), + ('0451410963', 'Left To Die', 'https://images.isbndb.com/covers/09/62/9780451410962.jpg'), + ('0743474104', 'Going Home', 'https://images.isbndb.com/covers/41/08/9780743474108.jpg'), + ('0312984618', 'Black For Remembrance', 'https://images.isbndb.com/covers/46/18/9780312984618.jpg'), + ('048627165X', 'Best Remembered Poems', 'https://images.isbndb.com/covers/16/51/9780486271651.jpg'), + ('0312253079', 'Alexandra: The Last Tsarina', 'https://images.isbndb.com/covers/30/73/9780312253073.jpg'), + ('0811823555', 'Things Unspoken', 'https://images.isbndb.com/covers/35/55/9780811823555.jpg'), + ('006053429X', 'Couldn''t Keep It To Myself: Testimonies From Our Imprisoned Sisters', 'https://images.isbndb.com/covers/42/95/9780060534295.jpg'), + ('0345439244', 'Remembering Blue: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/92/46/9780345439246.jpg'), + ('0446360716', 'Shadows Of Yesterday', 'https://images.isbndb.com/covers/07/15/9780446360715.jpg'), + ('0345439155', 'The Outside Of August', 'https://images.isbndb.com/covers/91/54/9780345439154.jpg'), + ('031020707X', 'Never Again Good-Bye (Second Chances Series #1)', 'https://images.isbndb.com/covers/70/78/9780310207078.jpg'), + ('0786868139', 'The Snow Garden: A Novel', 'https://images.isbndb.com/covers/81/31/9780786868131.jpg'), + ('0312988249', 'Compulsion: A Novel (Frank Clevenger)', 'https://images.isbndb.com/covers/82/41/9780312988241.jpg'), + ('0812568729', 'Silent Children', 'https://images.isbndb.com/covers/87/21/9780812568721.jpg'), + ('0553582941', 'Sole Survivor', 'https://images.isbndb.com/covers/29/49/9780553582949.jpg'), + ('0425181928', 'A Century Of Great Suspense Stories', 'https://images.isbndb.com/covers/19/28/9780425181928.jpg'), + ('0671744690', 'Mama''s Boy', 'https://images.isbndb.com/covers/46/94/9780671744694.jpg'), + ('0446519537', 'Superstitious', 'https://images.isbndb.com/covers/95/33/9780446519533.jpg'), + ('0553578243', 'A Darker Place', 'https://images.isbndb.com/covers/82/49/9780553578249.jpg'), + ('0743412664', 'Fifth Born: A Novel', 'https://images.isbndb.com/covers/26/67/9780743412667.jpg'), + ('0380820498', 'Wednesday''s Child: An Inspector Banks Novel (Inspector Banks Novels)', 'https://images.isbndb.com/covers/04/98/9780380820498.jpg'), + ('1587670127', 'Once Upon A Halloween', 'https://images.isbndb.com/covers/01/21/9781587670121.jpg'), + ('1587670348', 'Friday Night In Beast House (Beast House Chronicles)', 'https://images.isbndb.com/covers/03/43/9781587670343.jpg'), + ('0373834365', 'The Last Two Bachelors: Falling For Him/Ending In Marriage (Midnight Sons Series 5-6)', 'https://images.isbndb.com/covers/43/65/9780373834365.jpg'), + ('0743219341', 'Baby Catcher: Chronicles Of A Modern Midwife', 'https://images.isbndb.com/covers/93/41/9780743219341.jpg'), + ('0553123904', 'The Guardian', 'https://images.isbndb.com/covers/39/06/9780553123906.jpg'), + ('031213150X', 'The Quake', 'https://images.isbndb.com/covers/15/00/9780312131500.jpg'), + ('0345396065', 'Sleepers', 'https://images.isbndb.com/covers/60/68/9780345396068.jpg'), + ('0881848581', 'Best New Horror 3 (Mammoth Book Of Best New Horror)', 'https://images.isbndb.com/covers/85/88/9780881848588.jpg'), + ('055308920X', 'Self-Defense', 'https://images.isbndb.com/covers/92/02/9780553089202.jpg'), + ('0553074741', 'Shadows', 'https://images.isbndb.com/covers/47/41/9780553074741.jpg'), + ('0553100335', 'Vertical Run', 'https://images.isbndb.com/covers/03/34/9780553100334.jpg'), + ('0671743066', 'Gone South', 'https://images.isbndb.com/covers/30/62/9780671743062.jpg'), + ('0671521705', 'Gump & Co.', 'https://images.isbndb.com/covers/17/07/9780671521707.jpg'), + ('0679419853', 'A Simple Plan', 'https://images.isbndb.com/covers/98/53/9780679419853.jpg'), + ('031205811X', 'Adams V. Texas', 'https://images.isbndb.com/covers/81/11/9780312058111.jpg'), + ('067940211X', 'Primal Fear', 'https://images.isbndb.com/covers/21/14/9780679402114.jpg'), + ('0891076182', 'Prophet', 'https://images.isbndb.com/covers/61/86/9780891076186.jpg'), + ('0553089196', 'Bad Love', 'https://images.isbndb.com/covers/91/96/9780553089196.jpg'), + ('0688088686', 'Tell Me No Secrets', 'https://images.isbndb.com/covers/86/82/9780688088682.jpg'), + ('067942525X', 'Intensity', 'https://images.isbndb.com/covers/52/50/9780679425250.jpg'), + ('0312968078', 'Tonight You''re Mine: A Novel Of Psychological Suspense', 'https://images.isbndb.com/covers/80/76/9780312968076.jpg'), + ('067100042X', 'Silent Night', 'https://images.isbndb.com/covers/04/24/9780671000424.jpg'), + ('0553291009', 'Someone''s Watching', 'https://images.isbndb.com/covers/10/01/9780553291001.jpg'), + ('0525939571', 'My Soul To Keep: 9A Novel', 'https://images.isbndb.com/covers/95/73/9780525939573.jpg'), + ('0786710829', 'The Snowman''s Children: A Novel', 'https://images.isbndb.com/covers/08/29/9780786710829.jpg'), + ('0525940456', 'Zombie', 'https://images.isbndb.com/covers/04/56/9780525940456.jpg'), + ('0802139280', 'An Honorable Profession: A Novel', 'https://images.isbndb.com/covers/92/83/9780802139283.jpg'), + ('0743446259', 'Whispers And Lies: A Novel', 'https://images.isbndb.com/covers/62/59/9780743446259.jpg'), + ('0451207874', 'When You Go Away (Nal Accent Novels)', 'https://images.isbndb.com/covers/78/76/9780451207876.jpg'), + ('0446531510', 'Land Of The Living', 'https://images.isbndb.com/covers/15/11/9780446531511.jpg'), + ('006000133X', 'The Creek', 'https://images.isbndb.com/covers/13/39/9780060001339.jpg'), + ('0060286881', 'Nightmare Hour: Time For Terror', 'https://images.isbndb.com/covers/68/80/9780060286880.jpg'), + ('0060531061', 'The Tattooed Girl: A Novel (Oates, Joyce Carol)', 'https://images.isbndb.com/covers/10/65/9780060531065.jpg'), + ('0385299087', 'Heartbeat', 'https://images.isbndb.com/covers/90/84/9780385299084.jpg'), + ('0425140032', 'Dragon Tears', 'https://images.isbndb.com/covers/00/31/9780425140031.jpg'), + ('0684829924', 'Dream Boy: A Novel', 'https://images.isbndb.com/covers/99/20/9780684829920.jpg'), + ('0060196572', 'The Girls Of Summer: The U.S. Women''s Soccer Team And How It Changed The World', 'https://images.isbndb.com/covers/65/78/9780060196578.jpg'), + ('0451202821', 'Her Daughter''s Eyes', 'https://images.isbndb.com/covers/28/26/9780451202826.jpg'), + ('055327998X', 'Book Of The Dead', 'https://images.isbndb.com/covers/99/86/9780553279986.jpg'), + ('068815333X', 'Prayers For Rain', 'https://images.isbndb.com/covers/33/35/9780688153335.jpg'), + ('0345422783', 'How Reading Changed My Life', 'https://images.isbndb.com/covers/27/81/9780345422781.jpg'), + ('0385497369', 'Midnight Sun', 'https://images.isbndb.com/covers/73/67/9780385497367.jpg'), + ('0345383826', 'Saints: The Chosen Few', 'https://images.isbndb.com/covers/38/22/9780345383822.jpg'), + ('1879402297', 'The Qur''an Translation', 'https://images.isbndb.com/covers/22/94/9781879402294.jpg'), + ('0553213520', 'The Idiot (Bantam Classic)', 'https://images.isbndb.com/covers/35/22/9780553213522.jpg'), + ('0062509586', 'The Essential Rumi', 'https://images.isbndb.com/covers/95/81/9780062509581.jpg'), + ('1855013592', 'The Sonnets', 'https://images.isbndb.com/covers/35/99/9781855013599.jpg'), + ('0151006261', 'Under The Skin', 'https://images.isbndb.com/covers/62/67/9780151006267.jpg'), + ('0345350685', 'The Autobiography Of Malcolm X: As Told To Alex Haley', 'https://images.isbndb.com/covers/06/88/9780345350688.jpg'), + ('0020631502', 'The MacMillan Book Of Organic Gardening (Collier Books)', 'https://images.isbndb.com/covers/15/07/9780020631507.jpg'), + ('0441644856', 'Out Of Time''s Abyss: The Lost Continent''s Most Startling Secret (Ace SF Classic, No. 64485)', 'https://images.isbndb.com/covers/48/58/9780441644858.jpg'), + ('0440234859', 'Losing Julia', 'https://images.isbndb.com/covers/48/52/9780440234852.jpg'), + ('0441468721', 'The Lad And The Lion', 'https://images.isbndb.com/covers/87/20/9780441468720.jpg'), + ('0345374053', 'The Moon Maid', 'https://images.isbndb.com/covers/40/59/9780345374059.jpg'), + ('0345427998', 'Eye Of The Beholder', 'https://images.isbndb.com/covers/79/91/9780345427991.jpg'), + ('0451451538', 'Vampire$: A Novel', 'https://images.isbndb.com/covers/15/38/9780451451538.jpg'), + ('0446608483', 'The Pledge', 'https://images.isbndb.com/covers/84/80/9780446608480.jpg'), + ('0553024248', 'The Great Train Robbery', 'https://images.isbndb.com/covers/42/41/9780553024241.jpg'), + ('043938074X', 'Dare To Draw In 3-d #3', 'https://images.isbndb.com/covers/07/44/9780439380744.jpg'), + ('043937989X', 'Dare To Draw In 3-D', 'https://images.isbndb.com/covers/98/92/9780439379892.jpg'), + ('0684833727', 'Drawing In 3-D', 'https://images.isbndb.com/covers/37/29/9780684833729.jpg'), + ('0823026906', 'Kids Draw Anime', 'https://images.isbndb.com/covers/69/06/9780823026906.jpg'), + ('0590603795', 'The Berenstain Bear Scouts In Giant Bat Cave (Bear Scouts)', 'https://images.isbndb.com/covers/37/99/9780590603799.jpg'), + ('0195283910', 'The Catholic Study Bible: New American Bible', 'https://images.isbndb.com/covers/39/14/9780195283914.jpg'), + ('055305614X', 'Mickey''s Birthday Surprise: Mickey''s Young Readers Library Vol. 1', 'https://images.isbndb.com/covers/61/43/9780553056143.jpg'), + ('0879733438', 'Before You Were Born (OSV Read-Along Book)', 'https://images.isbndb.com/covers/34/38/9780879733438.jpg'), + ('0590437747', 'Mary Had A Little Lamb', 'https://images.isbndb.com/covers/77/45/9780590437745.jpg'), + ('0060097825', 'Zoya''s Story: An Afghan Woman''s Struggle For Freedom', 'https://images.isbndb.com/covers/78/20/9780060097820.jpg'), + ('014017799X', 'Meditations For Cats Who Do Too Much', 'https://images.isbndb.com/covers/79/92/9780140177992.jpg'), + ('1553373405', 'ABC Of Canada', 'https://images.isbndb.com/covers/34/07/9781553373407.jpg'), + ('0689831935', 'Manneken Pis: A Simple Story Of A Boy Who Peed On A War', 'https://images.isbndb.com/covers/19/35/9780689831935.jpg'), + ('0375802975', 'Knights And Castles (Magic Tree House Research Guide, Paper)', 'https://images.isbndb.com/covers/29/73/9780375802973.jpg'), + ('0395440904', 'The Boy Of The Three-Year Nap', 'https://images.isbndb.com/covers/09/02/9780395440902.jpg'), + ('0394805666', 'The Berenstain Bears Get The Gimmies', 'https://images.isbndb.com/covers/56/65/9780394805665.jpg'), + ('0689823215', 'Roanoke: The Lost Colony--An Unsolved Mystery From History', 'https://images.isbndb.com/covers/32/13/9780689823213.jpg'), + ('0439625602', 'Coloring Book (Harry Potter)', 'https://images.isbndb.com/covers/56/09/9780439625609.jpg'), + ('0689831781', 'Maxwell''s Magic Mix-up', 'https://images.isbndb.com/covers/17/82/9780689831782.jpg'), + ('0696209063', 'Hey, Kids! Come Craft With ME', 'https://images.isbndb.com/covers/90/62/9780696209062.jpg'), + ('0345335082', 'Dragonquest (Dragonriders Of Pern #2)', 'https://images.isbndb.com/covers/50/81/9780345335081.jpg'), + ('0399146857', 'The Bonesetter''s Daughter', 'https://images.isbndb.com/covers/68/55/9780399146855.jpg'), + ('0590672975', 'M. C. Higgins: The Great', 'https://images.isbndb.com/covers/29/79/9780590672979.jpg'), + ('0553370227', 'The Warrior Maiden (Bank Street Level 3*)', 'https://images.isbndb.com/covers/02/25/9780553370225.jpg'), + ('0789429624', 'DK Readers: Beastly Tales (Level 3: Reading Alone)', 'https://images.isbndb.com/covers/96/29/9780789429629.jpg'), + ('0894809938', 'My World & Globe', 'https://images.isbndb.com/covers/99/34/9780894809934.jpg'), + ('0590403729', 'If You Lived At The Time Of The Great San Francisco Earthquake', 'https://images.isbndb.com/covers/37/26/9780590403726.jpg'), + ('0064400484', 'The Trumpet Of The Swan', 'https://images.isbndb.com/covers/04/80/9780064400480.jpg'), + ('0064441075', 'Sam The Minuteman (I Can Read Book 3)', 'https://images.isbndb.com/covers/10/70/9780064441070.jpg'), + ('055325605X', 'Belles On Their Toes', 'https://images.isbndb.com/covers/60/55/9780553256055.jpg'), + ('0440228956', 'The Headless Cupid', 'https://images.isbndb.com/covers/89/50/9780440228950.jpg'), + ('0452264030', 'Teaching Montessori In The Home: The School Years (Plume)', 'https://images.isbndb.com/covers/40/38/9780452264038.jpg'), + ('156138190X', 'Further Five-Minute Mysteries', 'https://images.isbndb.com/covers/19/06/9781561381906.jpg'), + ('0842359249', 'The Strong-Willed Child', 'https://images.isbndb.com/covers/92/45/9780842359245.jpg'), + ('0448095122', 'The Message In The Hollow Oak (Nancy Drew, Book 12)', 'https://images.isbndb.com/covers/51/27/9780448095127.jpg'), + ('0448095106', 'The Password To Larkspur Lane (Nancy Drew, Book 10)', 'https://images.isbndb.com/covers/51/03/9780448095103.jpg'), + ('0440417945', 'Dear Mr. Henshaw (A Dell Yearling Book)', 'https://images.isbndb.com/covers/79/41/9780440417941.jpg'), + ('0394800028', 'The Cat In The Hat Comes Back (Beginner Books(R))', 'https://images.isbndb.com/covers/00/28/9780394800028.jpg'), + ('0312491670', 'My Picture Atlas (Smart Kids)', 'https://images.isbndb.com/covers/16/73/9780312491673.jpg'), + ('1579121489', 'Story Of The Orchestra : Listen While You Learn About The Instruments, The Music And The Composers Who Wrote The Music!', 'https://images.isbndb.com/covers/14/88/9781579121488.jpg'), + ('0816713170', 'Charley Skedaddle', 'https://images.isbndb.com/covers/31/72/9780816713172.jpg'), + ('0064462080', 'Red Scarf Girl (rpkg): A Memoir Of The Cultural Revolution', 'https://images.isbndb.com/covers/20/82/9780064462082.jpg'), + ('0767915445', 'Andrea Immer''s 2004 Wine Buying Guide For Everyone (Andrea Robinson''s Wine Buying Guide For Everyone)', 'https://images.isbndb.com/covers/54/41/9780767915441.jpg'), + ('1931484198', 'Ruse V. 1: Enter The Detective', 'https://images.isbndb.com/covers/41/90/9781931484190.jpg'), + ('0140469710', 'The Read-Aloud Handbook: Third Revised Edition (Read-Aloud Handbook)', 'https://images.isbndb.com/covers/97/14/9780140469714.jpg'), + ('0940319004', 'A Home Start In Reading (Grades K-3)', 'https://images.isbndb.com/covers/90/04/9780940319004.jpg'), + ('0698119487', 'On My Way: A 26 Fairmount Avenue Book', 'https://images.isbndb.com/covers/94/82/9780698119482.jpg'), + ('0399234969', 'Here We All Are (A 26 Fairmount Avenue Book)', 'https://images.isbndb.com/covers/49/65/9780399234965.jpg'), + ('039923246X', '26 Fairmount Avenue', 'https://images.isbndb.com/covers/24/66/9780399232466.jpg'), + ('0060284773', 'Zlateh The Goat And Other Stories', 'https://images.isbndb.com/covers/47/70/9780060284770.jpg'), + ('0689844077', 'A Little Princess (Aladdin Classics)', 'https://images.isbndb.com/covers/40/72/9780689844072.jpg'), + ('0060278226', 'Our Only May Amelia (Newbery Honor Book, 2000)', 'https://images.isbndb.com/covers/82/29/9780060278229.jpg'), + ('0689831285', 'Just Ella (Aladdin Fantasy)', 'https://images.isbndb.com/covers/12/87/9780689831287.jpg'), + ('0590386336', 'The Library Card', 'https://images.isbndb.com/covers/63/33/9780590386333.jpg'), + ('0786817577', 'Bill Nye The Science Guy''s Big Blue Ocean', 'https://images.isbndb.com/covers/75/73/9780786817573.jpg'), + ('059042582X', '. . . If You Lived At The Time Of Martin Luther King', 'https://images.isbndb.com/covers/58/27/9780590425827.jpg'), + ('0425187012', 'Magical Worlds Of Harry Potter', 'https://images.isbndb.com/covers/70/12/9780425187012.jpg'), + ('0785258442', 'My First Catholic Bible For Catholic Children Who Want A Devotional Bible Of Their Very Own!', 'https://images.isbndb.com/covers/84/45/9780785258445.jpg'), + ('0553272500', 'Cheaper By The Dozen (A Bantam Starfire Book)', 'https://images.isbndb.com/covers/25/05/9780553272505.jpg'), + ('0395549701', 'The Samurai''s Tale', 'https://images.isbndb.com/covers/97/04/9780395549704.jpg'), + ('0395881560', 'Matilda Bone', 'https://images.isbndb.com/covers/15/69/9780395881569.jpg'), + ('0316454311', 'Twin Tales : The Magic And Mystery Of Multiple Birth', 'https://images.isbndb.com/covers/43/15/9780316454315.jpg'), + ('0840758634', 'The Confessions Of Saint Augustine: A New Translation With Introductions', 'https://images.isbndb.com/covers/86/37/9780840758637.jpg'), + ('0312277350', 'Julia''s Mother: Life Lessons In The Pediatric ER', 'https://images.isbndb.com/covers/73/52/9780312277352.jpg'), + ('1885593155', 'Boredom Busters!: The Curious Kids'' Activity Book (Williamson Kids Can Books)', 'https://images.isbndb.com/covers/31/53/9781885593153.jpg'), + ('0913589721', 'The Kids'' Multicultural Art Book: Art & Craft Experiences From Around The World (Williamson Kids Can!)', 'https://images.isbndb.com/covers/97/24/9780913589724.jpg'), + ('0785335927', '365 Holiday Craft And Activities', 'https://images.isbndb.com/covers/59/24/9780785335924.jpg'), + ('0156806797', 'The Seven Storey Mountain (Harvest/HBJ Book)', 'https://images.isbndb.com/covers/67/94/9780156806794.jpg'), + ('1584850388', 'Hair: Styling Tips And Tricks For Girls (American Girl Library)', 'https://images.isbndb.com/covers/03/80/9781584850380.jpg'), + ('0590623524', 'Dinosaurs Before Dark (Magic Tree House #1)', 'https://images.isbndb.com/covers/35/20/9780590623520.jpg'), + ('1889209023', 'A Charlotte Mason Companion: Personal Reflections On The Gentle Art Of Learning', 'https://images.isbndb.com/covers/90/29/9781889209029.jpg'), + ('1561384380', 'The Whole Christmas Catalogue: The Complete Compendium Of Christmas Traditions, Recipes, Crafts, Carols, Lore, And More', 'https://images.isbndb.com/covers/43/89/9781561384389.jpg'), + ('0942237129', 'Christmas Portraits', 'https://images.isbndb.com/covers/71/22/9780942237122.jpg'), + ('0942237080', 'Christmas Keepsakes', 'https://images.isbndb.com/covers/70/85/9780942237085.jpg'), + ('156476737X', 'Holidays: Family Nights Tool Chest', 'https://images.isbndb.com/covers/73/70/9781564767370.jpg'), + ('0812043650', 'Learn Japanese The Fast And Fun Way', 'https://images.isbndb.com/covers/36/55/9780812043655.jpg'), + ('0844283738', 'Beginner''s Kana Workbook', 'https://images.isbndb.com/covers/37/39/9780844283739.jpg'), + ('0844283460', 'Easy Japanese Crossword Puzzles: Using Roomaji', 'https://images.isbndb.com/covers/34/63/9780844283463.jpg'), + ('0812046439', 'Japanese Grammar (Grammar Series)', 'https://images.isbndb.com/covers/64/34/9780812046434.jpg'), + ('0517590662', 'Living Language Conversational Japanese (Living Language Coursebooks)', 'https://images.isbndb.com/covers/06/69/9780517590669.jpg'), + ('0517590670', 'Living Language Japanese Dictionary (English And Japanese Edition)', 'https://images.isbndb.com/covers/06/76/9780517590676.jpg'), + ('0679889337', 'Cezanne Pinto', 'https://images.isbndb.com/covers/93/35/9780679889335.jpg'), + ('0819310433', 'Alligator''s Song', 'https://images.isbndb.com/covers/04/39/9780819310439.jpg'), + ('1551050900', 'Animal Tracks Of Washington And Oregon (Animal Tracks Guides)', 'https://images.isbndb.com/covers/09/04/9781551050904.jpg'), + ('0312291450', 'If Chins Could Kill: Confessions Of A B Movie Actor', 'https://images.isbndb.com/covers/14/57/9780312291457.jpg'), + ('1565123085', 'How To Get Your Child To Love Reading: For Ravenous And Reluctant Readers Alike', 'https://images.isbndb.com/covers/30/83/9781565123083.jpg'), + ('1575724103', 'The Vikings (Crafts From The Past)', 'https://images.isbndb.com/covers/41/02/9781575724102.jpg'), + ('0688177484', 'Aztec Crafts From The Past', 'https://images.isbndb.com/covers/74/85/9780688177485.jpg'), + ('0881661775', 'Pregnancy, Childbirth And The Newborn: The Complete Guide', 'https://images.isbndb.com/covers/17/74/9780881661774.jpg'), + ('1562313010', 'Snip Your Snapshots & Trim Your Treasures', 'https://images.isbndb.com/covers/30/12/9781562313012.jpg'), + ('0679989560', 'The Berenstain Bears Lend A Helping Hand (First Time Books(R))', 'https://images.isbndb.com/covers/95/61/9780679989561.jpg'), + ('0764800582', 'Lift Up Your Heart: A Guide To Spiritual Peace (Triumph Classic)', 'https://images.isbndb.com/covers/05/80/9780764800580.jpg'), + ('0385029039', 'The Autobiography Of Saint Therese Of Lisieux: The Story Of A Soul', 'https://images.isbndb.com/covers/90/32/9780385029032.jpg'), + ('0451525264', 'Les Misérables (Signet Classics)', 'https://images.isbndb.com/covers/52/60/9780451525260.jpg'), + ('0760734046', 'Beautiful Stories From Shakespeare For Children', 'https://images.isbndb.com/covers/40/49/9780760734049.jpg'), + ('1888992042', 'Where We Got The Bible: Our Debt To The Catholic Church', 'https://images.isbndb.com/covers/20/45/9781888992045.jpg'), + ('0517562898', 'Robert Frost (The Great American Poets)', 'https://images.isbndb.com/covers/28/95/9780517562895.jpg'), + ('0805063331', 'The Easter Story: According To The Gospels Of Matthew, Luke And John From The King James Bible', 'https://images.isbndb.com/covers/33/32/9780805063332.jpg'), + ('0819830992', 'Saint Gianna Beretta Molta A Woman''s Life 1922-1962', 'https://images.isbndb.com/covers/09/99/9780819830999.jpg'), + ('1931709300', 'The Cross At Ground Zero', 'https://images.isbndb.com/covers/93/09/9781931709309.jpg'), + ('0963903209', 'Children Of Winter: How The Classroom Is Murdering The Innocence Of Your Child', 'https://images.isbndb.com/covers/32/04/9780963903204.jpg'), + ('0898706785', 'A Landscape With Dragons: The Battle For Your Child''s Mind', 'https://images.isbndb.com/covers/67/89/9780898706789.jpg'), + ('0689829507', 'Good Night, Blue (Blue''s Clues)', 'https://images.isbndb.com/covers/95/05/9780689829505.jpg'), + ('1851825924', 'Character Building: A Guide For Parents And Teachers', 'https://images.isbndb.com/covers/59/29/9781851825929.jpg'), + ('0898706602', 'Designing Your Own Classical Curriculum: A Guide To Catholic Home Education', 'https://images.isbndb.com/covers/66/04/9780898706604.jpg'), + ('0898704367', 'A Still, Small Voice: A Practical Guide On Reported Revelations', 'https://images.isbndb.com/covers/43/65/9780898704365.jpg'), + ('0590414488', 'Gods, Demigods, And Demons: An Encyclopedia Of Greek Mythology (Point)', 'https://images.isbndb.com/covers/44/87/9780590414487.jpg'), + ('0971412936', 'The Story Of The World: History For The Classical Child, Volume 2: The Middle Ages: From The Fall Of Rome To The Rise Of The Renaissance', 'https://images.isbndb.com/covers/29/34/9780971412934.jpg'), + ('0439141346', 'Favorite Medieval Tales', 'https://images.isbndb.com/covers/13/45/9780439141345.jpg'), + ('0842373624', 'The Passion: Photography From The Movie "The Passion Of The Christ"', 'https://images.isbndb.com/covers/36/23/9780842373623.jpg'), + ('193264542X', 'A Guide To The Passion: 100 Questions About The Passion Of The Christ', 'https://images.isbndb.com/covers/54/22/9781932645422.jpg'), + ('078681859X', 'The Amulet Of Samarkand (The Bartimaeus Trilogy, Book 1)', 'https://images.isbndb.com/covers/85/94/9780786818594.jpg'), + ('0553381075', 'New Mother''s Guide To Breastfeeding (American Academy Of Pediatrics)', 'https://images.isbndb.com/covers/10/78/9780553381078.jpg'), + ('0898707609', 'Bernadette: Our Lady''s Little Servant (Vision Books)', 'https://images.isbndb.com/covers/76/01/9780898707601.jpg'), + ('1570642389', 'Barney And BJ Go To The Police Station', 'https://images.isbndb.com/covers/23/88/9781570642388.jpg'), + ('0809256851', 'How To Draw Caricatures', 'https://images.isbndb.com/covers/68/53/9780809256853.jpg'), + ('078943413X', 'Illustrated Dictionary Of Mythology', 'https://images.isbndb.com/covers/41/35/9780789434135.jpg'), + ('0805068422', 'The Anti-Coloring Book: Creative Activities For Ages 6 And Up', 'https://images.isbndb.com/covers/84/29/9780805068429.jpg'), + ('0671882538', 'Saints: Who They Are And How They Help You', 'https://images.isbndb.com/covers/25/32/9780671882532.jpg'), + ('1569552924', 'Life-Giving Love : Embracing God''s Beautiful Design For Marriage', 'https://images.isbndb.com/covers/29/26/9781569552926.jpg'), + ('037312354X', 'The Italian''s Demand: Italians Husband (Harlequin Presents)', 'https://images.isbndb.com/covers/35/44/9780373123544.jpg'), + ('0829411739', 'An Empty Cradle, A Full Heart: Reflections For Mothers And Fathers After Miscarriage, Stillbirth, Or Infant Death', 'https://images.isbndb.com/covers/17/37/9780829411737.jpg'), + ('089870569X', 'Born Fundamentalist, Born Again Catholic', 'https://images.isbndb.com/covers/56/90/9780898705690.jpg'), + ('0879736739', 'Padre Pio: The True Story', 'https://images.isbndb.com/covers/67/36/9780879736736.jpg'), + ('089283756X', 'Catholics And The New Age', 'https://images.isbndb.com/covers/75/64/9780892837564.jpg'), + ('0879735775', 'Holding Hands With God: Catholic Women Share Their Stories Of Courage And Hope', 'https://images.isbndb.com/covers/57/77/9780879735777.jpg'), + ('1928832180', 'Surprised By Truth 2: 15 Men And Women Give The Biblical And Historical Reasons For Becoming Catholic. (v. 2)', 'https://images.isbndb.com/covers/21/88/9781928832188.jpg'), + ('0964261081', 'Surprised By Truth: 11 Converts Give The Biblical And Historical Reasons For Becoming Catholic', 'https://images.isbndb.com/covers/10/82/9780964261082.jpg'), + ('0312134517', 'Coming Home', 'https://images.isbndb.com/covers/45/18/9780312134518.jpg'), + ('1576581454', 'George Muller: The Guardian Of Bristol''s Orphans (Christian Heroes: Then & Now)', 'https://images.isbndb.com/covers/14/52/9781576581452.jpg'), + ('0439236398', 'Robin Hood Of Sherwood Forest (Scholastic Junior Classics)', 'https://images.isbndb.com/covers/63/93/9780439236393.jpg'), + ('0385319800', 'Homecoming', 'https://images.isbndb.com/covers/98/05/9780385319805.jpg'), + ('0618159789', 'The Place At The Edge Of The Earth', 'https://images.isbndb.com/covers/97/89/9780618159789.jpg'), + ('0740718665', 'Coast To Coast Ghosts: True Stories Of Hauntings Across America', 'https://images.isbndb.com/covers/86/63/9780740718663.jpg'), + ('0445408510', 'Games To Keep The Dark Away', 'https://images.isbndb.com/covers/85/17/9780445408517.jpg'), + ('0140350144', 'King Solomon''s Mines: Complete And Unabridged (Puffin Classics)', 'https://images.isbndb.com/covers/01/42/9780140350142.jpg'), + ('0553271717', 'Stalking Lamb, The', 'https://images.isbndb.com/covers/17/13/9780553271713.jpg'), + ('0060163402', 'The Perfect Murder: Five Great Mystery Writers Create The Perfect Crime', 'https://images.isbndb.com/covers/34/02/9780060163402.jpg'), + ('0671730762', 'Swiss Secrets (Passport To Romance Trilogy #1) (The Nancy Drew Files, Case 72)', 'https://images.isbndb.com/covers/07/65/9780671730765.jpg'), + ('0671730703', 'Tall, Dark And Deadly (Nancy Drew Casefiles, Case 66)', 'https://images.isbndb.com/covers/07/03/9780671730703.jpg'), + ('0671730711', 'NOBODY''S BUSINESS: NANCY DREW FILES #67', 'https://images.isbndb.com/covers/07/10/9780671730710.jpg'), + ('0553241346', 'The Hills Of Homicide', 'https://images.isbndb.com/covers/13/41/9780553241341.jpg'), + ('055321229X', 'Silas Marner (Bantam Classics)', 'https://images.isbndb.com/covers/22/97/9780553212297.jpg'), + ('0553210602', 'Ten Plays By Euripides', 'https://images.isbndb.com/covers/06/06/9780553210606.jpg'), + ('0385418957', 'Seven Pillars Of Wisdom: A Triumph', 'https://images.isbndb.com/covers/89/59/9780385418959.jpg'), + ('0395346355', 'The Practical Cogitator Or The Thinker''s Anthology', 'https://images.isbndb.com/covers/63/58/9780395346358.jpg'), + ('0871932148', 'The Enneagram : A Journey Of Self Discovery', 'https://images.isbndb.com/covers/21/43/9780871932143.jpg'), + ('0451521692', 'Les Liaisons Dangereuses', 'https://images.isbndb.com/covers/16/99/9780451521699.jpg'), + ('0380722658', 'The Man Who Understood Cats (John Thinnes/Jack Caleb Mysteries)', 'https://images.isbndb.com/covers/26/55/9780380722655.jpg'), + ('0316150460', 'Cats And Their Women', 'https://images.isbndb.com/covers/04/60/9780316150460.jpg'), + ('0822210940', 'Suddenly Last Summer.', 'https://images.isbndb.com/covers/09/48/9780822210948.jpg'), + ('0140436499', 'American Notes For General Circulation (Penguin Classics)', 'https://images.isbndb.com/covers/64/95/9780140436495.jpg'), + ('0553126121', 'Aeneid Of Virgil', 'https://images.isbndb.com/covers/61/29/9780553126129.jpg'), + ('0451526783', 'As You Like It (Signet Classics)', 'https://images.isbndb.com/covers/67/86/9780451526786.jpg'), + ('0553212818', 'Four Comedies: The Taming Of The Shrew, A Midsummer Night''s Dream, The Merchant Of Venice, Twelfth Night (Bantam Classics)', 'https://images.isbndb.com/covers/28/15/9780553212815.jpg'), + ('0819310395', 'Henry''s Awful Mistake', 'https://images.isbndb.com/covers/03/92/9780819310392.jpg'), + ('055357857X', 'The Dead Cat Bounce: A Home Repair Is Homicide Mystery', 'https://images.isbndb.com/covers/85/77/9780553578577.jpg'), + ('0345360354', 'Lovely In Her Bones', 'https://images.isbndb.com/covers/03/59/9780345360359.jpg'), + ('0312989741', 'Murder At The Cat Show', 'https://images.isbndb.com/covers/97/43/9780312989743.jpg'), + ('0816714630', 'Hard Times (A Watermill Classic)', 'https://images.isbndb.com/covers/46/36/9780816714636.jpg'), + ('0590934899', 'Escape From Camp Run-for-Your-Life (Give Yourself Goosebumps, No 19)', 'https://images.isbndb.com/covers/48/93/9780590934893.jpg'), + ('0307016277', 'Attack/Killer Tomatoes Pt N Mk', 'https://images.isbndb.com/covers/62/70/9780307016270.jpg'), + ('0440464854', 'Now We Are Six', 'https://images.isbndb.com/covers/48/53/9780440464853.jpg'), + ('0590262173', 'The Case Of The Chocolate Fingerprints (Clue Jr. #3)', 'https://images.isbndb.com/covers/21/70/9780590262170.jpg'), + ('0590847740', 'The Creepy Creations Of Professor Shock (Give Yourself Goosebumps, No 14)', 'https://images.isbndb.com/covers/77/42/9780590847742.jpg'), + ('0064401863', 'Graven Images: Three Stories (Newbery Honor Roll)', 'https://images.isbndb.com/covers/18/69/9780064401869.jpg'), + ('0020868308', 'Mere Christianity', 'https://images.isbndb.com/covers/83/09/9780020868309.jpg'), + ('0307302709', 'Daddies: All About The Work They Do (Little Golden Book)', 'https://images.isbndb.com/covers/27/00/9780307302700.jpg'), + ('0451410106', 'A Kiss Gone Bad', 'https://images.isbndb.com/covers/01/08/9780451410108.jpg'), + ('039470648X', 'MASSAGE AND MEDITATION (Bookworks)', 'https://images.isbndb.com/covers/64/81/9780394706481.jpg'), + ('0896380653', 'Hug Therapy Book', 'https://images.isbndb.com/covers/06/53/9780896380653.jpg'), + ('1575668335', 'Birthday Party Murder (Lucy Stone Mysteries, No. 9)', 'https://images.isbndb.com/covers/83/38/9781575668338.jpg'), + ('0590341502', 'The Borrowers', 'https://images.isbndb.com/covers/15/09/9780590341509.jpg'), + ('0449221059', 'Miss Melville Rides A Tiger', 'https://images.isbndb.com/covers/10/51/9780449221051.jpg'), + ('0449212599', 'Miss Melville Regrets', 'https://images.isbndb.com/covers/25/92/9780449212592.jpg'), + ('0449214990', 'Miss Melville Returns', 'https://images.isbndb.com/covers/49/92/9780449214992.jpg'), + ('0684808129', 'Five Sisters: The Langhornes Of Virginia', 'https://images.isbndb.com/covers/81/23/9780684808123.jpg'), + ('0840796560', '10,000 Things To Praise God For', 'https://images.isbndb.com/covers/65/61/9780840796561.jpg'), + ('0750926376', 'Edward VII''s Last Loves', 'https://images.isbndb.com/covers/63/79/9780750926379.jpg'), + ('0804101167', 'Grania: She-King Of The Irish Seas', 'https://images.isbndb.com/covers/11/65/9780804101165.jpg'), + ('0821748726', 'Dead In The Melon Patch (Amanda Hazard Mysteries)', 'https://images.isbndb.com/covers/87/25/9780821748725.jpg'), + ('0445407549', 'The Eighth Dwarf', 'https://images.isbndb.com/covers/75/41/9780445407541.jpg'), + ('0446602809', 'Romance', 'https://images.isbndb.com/covers/28/08/9780446602808.jpg'), + ('1575666278', 'High Seas Murder: A Lindy Haggerty Mystery', 'https://images.isbndb.com/covers/62/73/9781575666273.jpg'), + ('0553573004', 'Stud Rites', 'https://images.isbndb.com/covers/30/08/9780553573008.jpg'), + ('0515087122', 'The Cat Who Ate Danish Modern', 'https://images.isbndb.com/covers/71/23/9780515087123.jpg'), + ('0671700359', 'HOT PURSUIT (NANCY DREW FILES 58)', 'https://images.isbndb.com/covers/03/55/9780671700355.jpg'), + ('0380798565', 'The Ape Who Guards The Balance : An Amelia Peabody Mystery', 'https://images.isbndb.com/covers/85/68/9780380798568.jpg'), + ('1575663309', 'Back To School Murder (Lucy Stone Mysteries, No. 4)', 'https://images.isbndb.com/covers/33/02/9781575663302.jpg'), + ('1590600762', 'King Arthur And The Knights Of The Round Table (Illustrated Classics Editions)', 'https://images.isbndb.com/covers/07/64/9781590600764.jpg'), + ('0895269163', 'Euthypro, Crito, Apology, And Symposium', 'https://images.isbndb.com/covers/91/64/9780895269164.jpg'), + ('067173069X', 'Final Notes (Nancy Drew Files, No 65)', 'https://images.isbndb.com/covers/06/97/9780671730697.jpg'), + ('0671700375', 'POISON PEN (NANCY DREW FILES 60)', 'https://images.isbndb.com/covers/03/79/9780671700379.jpg'), + ('006091565X', 'The Dance Of Anger: A Woman''s Guide To Changing The Patterns Of Intimate Relationships', 'https://images.isbndb.com/covers/56/50/9780060915650.jpg'), + ('006104363X', 'The Five Red Herrings', 'https://images.isbndb.com/covers/36/35/9780061043635.jpg'), + ('0965608646', 'Been There Should''ve Done That: 505 Tips For Making The Most Of College', 'https://images.isbndb.com/covers/86/40/9780965608640.jpg'), + ('1575662191', 'Trick Or Treat Murder (Lucy Stone Mysteries, No. 3)', 'https://images.isbndb.com/covers/21/90/9781575662190.jpg'), + ('0449213323', 'Murder In Georgetown (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/33/22/9780449213322.jpg'), + ('0446314889', 'Murder In The White House', 'https://images.isbndb.com/covers/48/86/9780446314886.jpg'), + ('0449001725', 'Murder In The House (Capital Crime)', 'https://images.isbndb.com/covers/17/21/9780449001721.jpg'), + ('0345394380', 'Only Good Yankee (A Jordan Poteet Mystery)', 'https://images.isbndb.com/covers/43/85/9780345394385.jpg'), + ('0345389484', 'Do Unto Others', 'https://images.isbndb.com/covers/94/80/9780345389480.jpg'), + ('0671721097', 'PartnerShip (The Ship Who...)', 'https://images.isbndb.com/covers/10/91/9780671721091.jpg'), + ('038542406X', 'SEVEN FOR A SECRET', 'https://images.isbndb.com/covers/40/66/9780385424066.jpg'), + ('0449006700', 'Mrs. Pollifax Unveiled (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/67/02/9780449006702.jpg'), + ('0452263301', 'Metropolitan Life (Plume)', 'https://images.isbndb.com/covers/33/07/9780452263307.jpg'), + ('0932194540', 'Bradshaw On The Family: A Revolutionary Way Of Self Discovery', 'https://images.isbndb.com/covers/45/41/9780932194541.jpg'), + ('0030628822', 'Way Of The Bull', 'https://images.isbndb.com/covers/88/25/9780030628825.jpg'), + ('0380793474', 'Regarding The Fountain', 'https://images.isbndb.com/covers/34/71/9780380793471.jpg'), + ('0517093588', 'Shakespeare''s Stories: The Comedies', 'https://images.isbndb.com/covers/35/80/9780517093580.jpg'), + ('0425165698', 'Mrs. Jeffries Takes The Cake (Victorian Mystery)', 'https://images.isbndb.com/covers/56/90/9780425165690.jpg'), + ('0939149222', 'O Come Ye Back To Ireland: Our First Year In County Clare', 'https://images.isbndb.com/covers/92/23/9780939149223.jpg'), + ('0671509810', 'Romeo And Juliet', 'https://images.isbndb.com/covers/98/11/9780671509811.jpg'), + ('0671661590', 'Veil: The Secret Wars Of The CIA 1981-1987', 'https://images.isbndb.com/covers/15/95/9780671661595.jpg'), + ('0399136134', 'The Spy Wore Silk', 'https://images.isbndb.com/covers/61/39/9780399136139.jpg'), + ('0671435248', 'The Man In The Queue', 'https://images.isbndb.com/covers/52/40/9780671435240.jpg'), + ('0786880376', 'Organize Your Office!: Simple Routines For Managing Your Workspace', 'https://images.isbndb.com/covers/03/79/9780786880379.jpg'), + ('0674445449', 'In A Different Voice: Psychological Theory And Women''s Development', 'https://images.isbndb.com/covers/54/44/9780674445444.jpg'), + ('0517597985', 'All I Really Need To Know I Learned From Watching Star Trek', 'https://images.isbndb.com/covers/79/89/9780517597989.jpg'), + ('0312966199', 'All Things Bright And Beautiful', 'https://images.isbndb.com/covers/61/95/9780312966195.jpg'), + ('1579830021', 'Waking Up In Time: Finding Inner Peace In Times Of Accelerating Change', 'https://images.isbndb.com/covers/00/21/9781579830021.jpg'), + ('0449212238', 'The Pilgrim Of Hate (Chronicle Of Brother Cadfael)', 'https://images.isbndb.com/covers/22/33/9780449212233.jpg'), + ('0446522899', 'Working Wounded: Advice That Adds Insight To Injury', 'https://images.isbndb.com/covers/28/92/9780446522892.jpg'), + ('0316769517', 'Raise High The Roof Beam, Carpenters And Seymour: An Introduction', 'https://images.isbndb.com/covers/95/18/9780316769518.jpg'), + ('0523413920', 'Flying Colors: The Hornblower Saga #7', 'https://images.isbndb.com/covers/39/21/9780523413921.jpg'), + ('0831400889', 'Into The Dark For Gold', 'https://images.isbndb.com/covers/08/80/9780831400880.jpg'), + ('0375701214', 'The Diving Bell And The Butterfly: A Memoir Of Life In Death', 'https://images.isbndb.com/covers/12/14/9780375701214.jpg'), + ('0449239047', 'Plague Dogs', 'https://images.isbndb.com/covers/90/49/9780449239049.jpg'), + ('0515119520', 'Come To Grief', 'https://images.isbndb.com/covers/95/27/9780515119527.jpg'), + ('0553345745', 'Good-Bye To Guilt: Releasing Fear Through Forgiveness', 'https://images.isbndb.com/covers/57/42/9780553345742.jpg'), + ('0380008971', 'Whose Body?', 'https://images.isbndb.com/covers/89/71/9780380008971.jpg'), + ('0916392392', 'What You Think Of Me Is None Of My Business', 'https://images.isbndb.com/covers/23/90/9780916392390.jpg'), + ('0449205452', 'American Way Of Death', 'https://images.isbndb.com/covers/54/57/9780449205457.jpg'), + ('093033003X', 'Lady Molly Of Scotland Yard', 'https://images.isbndb.com/covers/00/33/9780930330033.jpg'), + ('0394724550', 'Gift From The Sea', 'https://images.isbndb.com/covers/45/53/9780394724553.jpg'), + ('0394562720', 'The Making Of The African Queen: Or How I Went To Africa With Bogart, Bacall And Huston And Almost Lost My Mind', 'https://images.isbndb.com/covers/27/28/9780394562728.jpg'), + ('0684847515', 'Miss Pym Disposes', 'https://images.isbndb.com/covers/75/11/9780684847511.jpg'), + ('0140063315', 'Rumpole And The Golden Thread', 'https://images.isbndb.com/covers/33/18/9780140063318.jpg'), + ('034529873X', 'Moreta: Dragonlady Of Pern', 'https://images.isbndb.com/covers/87/37/9780345298737.jpg'), + ('0061043494', 'Gaudy Night (Lord Peter Wimsey Mysteries)', 'https://images.isbndb.com/covers/34/99/9780061043499.jpg'), + ('0345370767', 'All The Crazy Winters', 'https://images.isbndb.com/covers/07/61/9780345370761.jpg'), + ('0590763563', 'Michelle Kwan: My Story - Heart Of A Champion', 'https://images.isbndb.com/covers/35/61/9780590763561.jpg'), + ('0061099813', 'When You Look Like Your Passport Photo, It''s Time To Go Home', 'https://images.isbndb.com/covers/98/16/9780061099816.jpg'), + ('1575665670', 'The Haunted Lady', 'https://images.isbndb.com/covers/56/72/9781575665672.jpg'), + ('0679742298', 'The Talented Mr. Ripley', 'https://images.isbndb.com/covers/22/96/9780679742296.jpg'), + ('038080722X', 'April Fool Dead (Death On Demand Mysteries, No. 13)', 'https://images.isbndb.com/covers/72/22/9780380807222.jpg'), + ('0802733670', 'To Perish In Penzance (Dorothy Martin Mysteries, No. 7)', 'https://images.isbndb.com/covers/36/72/9780802733672.jpg'), + ('0307103803', 'Walt Disney''s Bambi', 'https://images.isbndb.com/covers/38/02/9780307103802.jpg'), + ('0345343247', 'The Murder At Murder At The Mimosa Inn (Claire Malloy Mysteries, No. 2)', 'https://images.isbndb.com/covers/32/46/9780345343246.jpg'), + ('0345327772', 'Killing Orders', 'https://images.isbndb.com/covers/77/72/9780345327772.jpg'), + ('1557734534', 'Adjusted To Death', 'https://images.isbndb.com/covers/45/32/9781557734532.jpg'), + ('0515060712', 'Killer Dolphin', 'https://images.isbndb.com/covers/07/13/9780515060713.jpg'), + ('0345300785', 'Enchanter''s End Game (The Belgariad, Book 5)', 'https://images.isbndb.com/covers/07/82/9780345300782.jpg'), + ('0345300793', 'QUEEN OF SORCERY: Book II Of The Belgariad', 'https://images.isbndb.com/covers/07/99/9780345300799.jpg'), + ('0446602744', 'The Rules: Time-Tested Secrets For Capturing The Heart Of Mr. Right', 'https://images.isbndb.com/covers/27/47/9780446602747.jpg'), + ('1853262005', 'Crime And Punishment (Wordsworth Classics)', 'https://images.isbndb.com/covers/20/05/9781853262005.jpg'), + ('0312960743', 'Revenge Of The Barbeque Queens: At The Barbeque World Series, More Than Ribs Will Be Swimming In Sauce (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/07/42/9780312960742.jpg'), + ('0786881623', 'Moving Violations: War Zones, Wheelchairs, And Declarations Of Independence', 'https://images.isbndb.com/covers/16/28/9780786881628.jpg'), + ('0881763004', 'Selecting And Caring For Your Cat', 'https://images.isbndb.com/covers/30/03/9780881763003.jpg'), + ('0671730509', 'Mystery Of The Jade Tiger (Nancy Drew 104): Mystery Of The Jade Tiger', 'https://images.isbndb.com/covers/05/05/9780671730505.jpg'), + ('0671730541', 'Secret Of The Tibetan Treasure (Nancy Drew 108): Secret Of The Tibetan Treasure (Nancy Drew On Campus)', 'https://images.isbndb.com/covers/05/43/9780671730543.jpg'), + ('0449205320', 'To Dream Of Love', 'https://images.isbndb.com/covers/53/27/9780449205327.jpg'), + ('1575663740', 'A Pedigree To Die For', 'https://images.isbndb.com/covers/37/46/9781575663746.jpg'), + ('0595217354', 'The End Of Work As We Know It', 'https://images.isbndb.com/covers/73/59/9780595217359.jpg'), + ('0396036619', 'Good Morning, Miss Dove', 'https://images.isbndb.com/covers/66/16/9780396036616.jpg'), + ('0345377443', 'Women Who Run With The Wolves: Myths And Stories Of The Wild Woman Archetype', 'https://images.isbndb.com/covers/74/49/9780345377449.jpg'), + ('0449209377', 'Aunt Erma''s Cope Book', 'https://images.isbndb.com/covers/93/70/9780449209370.jpg'), + ('0816704589', 'Scarlet Pimpernel (Complete And Unabridged Classics)', 'https://images.isbndb.com/covers/45/83/9780816704583.jpg'), + ('0448095025', 'The Hidden Staircase (Nancy Drew Mystery Stories #2)', 'https://images.isbndb.com/covers/50/28/9780448095028.jpg'), + ('0448095033', 'The Bungalow Mystery (Nancy Drew Mystery Stories, Bk 3)', 'https://images.isbndb.com/covers/50/35/9780448095035.jpg'), + ('0448095068', 'The Secret Of Red Gate Farm (Nancy Drew, Book 6)', 'https://images.isbndb.com/covers/50/66/9780448095066.jpg'), + ('044809519X', 'The Quest Of The Missing Map (Nancy Drew, Book 19)', 'https://images.isbndb.com/covers/51/96/9780448095196.jpg'), + ('0448095238', 'The Mystery Of The Tolling Bell (Nancy Drew Mystery Stories, No 23)', 'https://images.isbndb.com/covers/52/33/9780448095233.jpg'), + ('0448095246', 'The Clue In The Old Album (Nancy Drew Mystery Stories, No 24)', 'https://images.isbndb.com/covers/52/40/9780448095240.jpg'), + ('044809522X', 'The Clue In The Crumbling Wall (Nancy Drew No. 22)', 'https://images.isbndb.com/covers/52/26/9780448095226.jpg'), + ('1576736792', 'Lord Foulgrin''s Letters', 'https://images.isbndb.com/covers/67/91/9781576736791.jpg'), + ('0553210416', 'The Aeneid Of Virgil (Bantam Classics)', 'https://images.isbndb.com/covers/04/15/9780553210415.jpg'), + ('0671223666', 'How Did I Get To Be 40 & Other Atrocities', 'https://images.isbndb.com/covers/36/63/9780671223663.jpg'), + ('0590494481', 'Piano Lessons Can Be Murder (Goosebumps #13)', 'https://images.isbndb.com/covers/44/89/9780590494489.jpg'), + ('156987025X', 'My First Book Of Opposites', 'https://images.isbndb.com/covers/02/59/9781569870259.jpg'), + ('0380793660', 'Murder Gets A Life (A Souther Sisters Mystery)', 'https://images.isbndb.com/covers/36/62/9780380793662.jpg'), + ('0553291955', 'The Thin Woman', 'https://images.isbndb.com/covers/19/57/9780553291957.jpg'), + ('0806519339', 'Beyond Mulder And Scully: The Mysterious Characters Of "the X-Files"', 'https://images.isbndb.com/covers/93/33/9780806519333.jpg'), + ('0761504370', 'Perimenopause - Preparing For The Change: A Guide To The Early Stages Of Menopause And Beyond', 'https://images.isbndb.com/covers/43/75/9780761504375.jpg'), + ('0393048136', 'The New New Thing : A Silicon Valley Story', 'https://images.isbndb.com/covers/81/31/9780393048131.jpg'), + ('0440459516', 'The Not-Just-Anybody Family (Yearling Book)', 'https://images.isbndb.com/covers/95/14/9780440459514.jpg'), + ('0590687247', 'Ramona Quimby, Age 8', 'https://images.isbndb.com/covers/72/49/9780590687249.jpg'), + ('0449149560', 'Mrs. Pollifax Pursued (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/95/60/9780449149560.jpg'), + ('0553156756', 'The Great Mom Swap', 'https://images.isbndb.com/covers/67/51/9780553156751.jpg'), + ('0812536339', 'Mysteries Of The Mind And Senses (Strange Unsolved Mysteries)', 'https://images.isbndb.com/covers/63/31/9780812536331.jpg'), + ('0448095211', 'The Secret In The Old Attic (Nancy Drew, Book 21)', 'https://images.isbndb.com/covers/52/19/9780448095219.jpg'), + ('0448095203', 'The Clue In The Jewel Box (Nancy Drew, Book 20)', 'https://images.isbndb.com/covers/52/02/9780448095202.jpg'), + ('0380801493', 'Murder Shoots The Bull: A Southern Sisters Mystery (Southern Sisters Mysteries)', 'https://images.isbndb.com/covers/14/97/9780380801497.jpg'), + ('0671722182', 'A Clear Case Of Murder', 'https://images.isbndb.com/covers/21/80/9780671722180.jpg'), + ('0590866338', 'The Case Of The Mystery Ghost (Clue Jr. #7)', 'https://images.isbndb.com/covers/63/30/9780590866330.jpg'), + ('0671034375', 'Southern Fried Makeover: Clueless', 'https://images.isbndb.com/covers/43/75/9780671034375.jpg'), + ('0716765144', 'Cave (One Small Square)', 'https://images.isbndb.com/covers/51/41/9780716765141.jpg'), + ('0670445800', 'Madeline', 'https://images.isbndb.com/covers/58/06/9780670445806.jpg'), + ('0439060435', 'The Case Of The Disappearing Princess (The New Adventures Of Mary-Kate & Ashley)', 'https://images.isbndb.com/covers/04/31/9780439060431.jpg'), + ('0307100820', 'The Fire Engine Book (Look-Look)', 'https://images.isbndb.com/covers/08/25/9780307100825.jpg'), + ('0861128273', 'Show Baby: 1 2 3 (Show Baby)', 'https://images.isbndb.com/covers/82/73/9780861128273.jpg'), + ('0789405784', 'Pop Out Drive: Diggers Dumpers', 'https://images.isbndb.com/covers/57/84/9780789405784.jpg'), + ('0679819770', 'A Cow On The Line And Other Thomas The Tank Engine Stories (Thomas & Friends) (Pictureback(R))', 'https://images.isbndb.com/covers/97/76/9780679819776.jpg'), + ('0345370295', 'Garfield Takes Up Space (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/02/97/9780345370297.jpg'), + ('0590444301', 'Strange Creatures That Really Lived', 'https://images.isbndb.com/covers/43/09/9780590444309.jpg'), + ('0395743427', 'Reginas Glasses, Reader Es Level 2 Book 17: Houghton Mifflin Early Success (Invitations To Literacy)', 'https://images.isbndb.com/covers/34/23/9780395743423.jpg'), + ('0590275232', 'Chocolate Chippo Hippo', 'https://images.isbndb.com/covers/52/31/9780590275231.jpg'), + ('0307101991', 'The Golden Ball (Super Fashion Books)', 'https://images.isbndb.com/covers/19/90/9780307101990.jpg'), + ('0590333194', 'Simon''s Book', 'https://images.isbndb.com/covers/31/91/9780590333191.jpg'), + ('0026885522', 'Alf: Mission To Mars', 'https://images.isbndb.com/covers/55/22/9780026885522.jpg'), + ('0891914927', 'Sometimes I Need To Be Hugged: Psalm 84 For Children (David And I Talk To God)', 'https://images.isbndb.com/covers/49/21/9780891914921.jpg'), + ('0140178414', 'Aunt Dimity And The Duke (Aunt Dimity Mystery)', 'https://images.isbndb.com/covers/84/18/9780140178418.jpg'), + ('0671649175', 'Double Crossing (Nancy Drew & Hardy Boys Super Mystery #1)', 'https://images.isbndb.com/covers/91/73/9780671649173.jpg'), + ('0553264842', 'Secret Of The Ninja (Choose Your Own Adventure #66)', 'https://images.isbndb.com/covers/48/45/9780553264845.jpg'), + ('0445402296', 'The Murders Of Richard III', 'https://images.isbndb.com/covers/22/94/9780445402294.jpg'), + ('1575663929', 'Tippy Toe Murder (Lucy Stone Mysteries, No. 2)', 'https://images.isbndb.com/covers/39/20/9781575663920.jpg'), + ('0393308804', 'Wide Sargasso Sea: A Novel', 'https://images.isbndb.com/covers/88/08/9780393308808.jpg'), + ('0449239799', 'My Enemy The Queen', 'https://images.isbndb.com/covers/97/97/9780449239797.jpg'), + ('0671006614', 'Tears Of Rage - From Grieving Father To Crusader For Justice: The Untold Story Of The Adam Walsh Case', 'https://images.isbndb.com/covers/66/17/9780671006617.jpg'), + ('0553074938', 'How To Murder Your Mother-In-Law', 'https://images.isbndb.com/covers/49/32/9780553074932.jpg'), + ('0312862083', 'The Abductors: Conspiracy', 'https://images.isbndb.com/covers/20/84/9780312862084.jpg'), + ('0394416457', 'The Honourable Schoolboy', 'https://images.isbndb.com/covers/64/58/9780394416458.jpg'), + ('0671727680', 'Romeo And Juliet', 'https://images.isbndb.com/covers/76/80/9780671727680.jpg'), + ('0451149939', 'Miss Fiona''s Fancy (Signet Regency Romance)', 'https://images.isbndb.com/covers/99/30/9780451149930.jpg'), + ('0380809389', 'Murder Carries A Torch (A Southern Sisters Mystery)', 'https://images.isbndb.com/covers/93/87/9780380809387.jpg'), + ('0140311645', 'Pippi In The South Seas Pb (Puffin Books)', 'https://images.isbndb.com/covers/16/48/9780140311648.jpg'), + ('0061098132', 'The Bachelor''s Cat: A Love Story', 'https://images.isbndb.com/covers/81/30/9780061098130.jpg'), + ('0440473519', 'RAMONA THE BRAVE', 'https://images.isbndb.com/covers/35/10/9780440473510.jpg'), + ('0590447742', 'The Wind In The Willows', 'https://images.isbndb.com/covers/77/44/9780590447744.jpg'), + ('0446361046', 'The 36-Hour Day: A Family Guide To Caring For Persons With Alzheimer Disease, Related Dementing Illnesses, And Memory Loss Later In Life', 'https://images.isbndb.com/covers/10/40/9780446361040.jpg'), + ('0440495555', 'Wind In The Willows, The', 'https://images.isbndb.com/covers/55/50/9780440495550.jpg'), + ('0373264011', 'Murder, Mayhem And Mistletoe: Four Crimes At Christmas', 'https://images.isbndb.com/covers/40/18/9780373264018.jpg'), + ('0671047345', 'Separation Of Power (Mitch Rapp Novels)', 'https://images.isbndb.com/covers/73/44/9780671047344.jpg'), + ('0380709546', 'Ramona The Pest (Ramona Quimby)', 'https://images.isbndb.com/covers/95/40/9780380709540.jpg'), + ('0440454115', 'Mitch & Amy', 'https://images.isbndb.com/covers/41/13/9780440454113.jpg'), + ('0930328787', 'KB IRELAND''99:INNS&ITIN (Karen Brown''s Country Inns Series)', 'https://images.isbndb.com/covers/87/88/9780930328788.jpg'), + ('1556380801', 'The Sacred Journey: You And Your Higher Self (English)', 'https://images.isbndb.com/covers/08/08/9781556380808.jpg'), + ('0380006456', 'Fletch', 'https://images.isbndb.com/covers/64/58/9780380006458.jpg'), + ('0441002692', 'The Godmother', 'https://images.isbndb.com/covers/26/96/9780441002696.jpg'), + ('0441873375', 'Warlock Spite Himself', 'https://images.isbndb.com/covers/33/71/9780441873371.jpg'), + ('0451525302', 'Spoon River Anthology (Signet Classics)', 'https://images.isbndb.com/covers/53/07/9780451525307.jpg'), + ('0553240838', 'A Most Contagious Game', 'https://images.isbndb.com/covers/08/32/9780553240832.jpg'), + ('0345274563', 'Her Majesty''s Wizard', 'https://images.isbndb.com/covers/45/64/9780345274564.jpg'), + ('0425179184', 'Crime Brulee (Culinary Food Writer)', 'https://images.isbndb.com/covers/91/85/9780425179185.jpg'), + ('0425185249', 'Death A L''Orange (A Culinary Mystery With Recipes)', 'https://images.isbndb.com/covers/52/47/9780425185247.jpg'), + ('042518272X', 'Truffled Feathers (Culinary Food Writer)', 'https://images.isbndb.com/covers/27/27/9780425182727.jpg'), + ('0743410068', 'War Letters: Extraordinary Correspondence From American Wars', 'https://images.isbndb.com/covers/00/69/9780743410069.jpg'), + ('0451198476', 'The Burglar In The Rye: The New Bernie Rhodenbarr Mystery (Bernie Rhodenbarr Mysteries)', 'https://images.isbndb.com/covers/84/71/9780451198471.jpg'), + ('0590448331', 'Karen''s Little Witch (Baby-Sitters Little Sister, No. 22)', 'https://images.isbndb.com/covers/83/38/9780590448338.jpg'), + ('0440442079', 'Jelly Belly', 'https://images.isbndb.com/covers/20/73/9780440442073.jpg'), + ('0553152017', 'Indian Trail (Skylark Choose Your Own Adventure)', 'https://images.isbndb.com/covers/20/12/9780553152012.jpg'), + ('0590482947', 'In The Line Of Fire: Eight Women War Spies', 'https://images.isbndb.com/covers/29/43/9780590482943.jpg'), + ('0590443607', 'The Slave Ship', 'https://images.isbndb.com/covers/36/09/9780590443609.jpg'), + ('0445085452', 'Tim - The Thorn Birds', 'https://images.isbndb.com/covers/54/59/9780445085459.jpg'), + ('0590407252', 'Nothing''s Fair In Fifth Grade', 'https://images.isbndb.com/covers/72/50/9780590407250.jpg'), + ('055348513X', 'Encyclopedia Brown And The Case Of Pablos Nose', 'https://images.isbndb.com/covers/51/34/9780553485134.jpg'), + ('0553157248', 'Encyclopedia Brown Boy Detective (Encyclopedia Brown #1)', 'https://images.isbndb.com/covers/72/46/9780553157246.jpg'), + ('0805000739', 'Death Of A Party Animal (A Doonesbury Book)', 'https://images.isbndb.com/covers/07/33/9780805000733.jpg'), + ('0671730738', 'RUNNING SCARED: NANCY DREW FILES #69', 'https://images.isbndb.com/covers/07/34/9780671730734.jpg'), + ('0312203039', 'High Five (Stephanie Plum, No. 5) (Stephanie Plum Novels)', 'https://images.isbndb.com/covers/30/30/9780312203030.jpg'), + ('0440422256', 'The Egypt Game', 'https://images.isbndb.com/covers/22/59/9780440422259.jpg'), + ('0060937793', 'The Red Dancer: The Life And Times Of Mata Hari', 'https://images.isbndb.com/covers/77/99/9780060937799.jpg'), + ('0446608270', 'The Last Victim: A True-Life Journey Into The Mind Of The Serial Killer', 'https://images.isbndb.com/covers/82/75/9780446608275.jpg'), + ('0449223558', 'Murdering Mr. Monti', 'https://images.isbndb.com/covers/35/50/9780449223550.jpg'), + ('0933488327', 'Treason In America: From Aaron Burr To Averell Harriman', 'https://images.isbndb.com/covers/83/28/9780933488328.jpg'), + ('0897330854', 'The Provincial Lady In London', 'https://images.isbndb.com/covers/08/55/9780897330855.jpg'), + ('0897330536', 'Diary Of A Provincial Lady (Provincial Lady Series)', 'https://images.isbndb.com/covers/05/34/9780897330534.jpg'), + ('0380794063', 'Malice Domestic 7', 'https://images.isbndb.com/covers/40/65/9780380794065.jpg'), + ('0061007358', 'Not A Penny More, Not A Penny Less', 'https://images.isbndb.com/covers/73/54/9780061007354.jpg'), + ('0812531167', 'Prostho Plus', 'https://images.isbndb.com/covers/11/69/9780812531169.jpg'), + ('0425140989', 'Thyme Of Death (China Bayles 1)', 'https://images.isbndb.com/covers/09/87/9780425140987.jpg'), + ('042515405X', 'Rosemary Remembered (China Bayles Mystery)', 'https://images.isbndb.com/covers/40/52/9780425154052.jpg'), + ('0425128482', 'Miss Seeton Paints The Town (Heron Carvic''s Miss Seeton)', 'https://images.isbndb.com/covers/84/80/9780425128480.jpg'), + ('0060524936', 'A Nose For Murder', 'https://images.isbndb.com/covers/49/37/9780060524937.jpg'), + ('0812576071', 'Irish Stew!: A Nuala Anne McGrail Novel (Nuala Anne McGrail Novels)', 'https://images.isbndb.com/covers/60/78/9780812576078.jpg'), + ('0062502972', 'Trevor''s Place: The Story Of The Boy Who Brings Hope To The Homeless', 'https://images.isbndb.com/covers/29/71/9780062502971.jpg'), + ('0440159415', 'My Wild World', 'https://images.isbndb.com/covers/94/14/9780440159414.jpg'), + ('0671450492', 'Green Grow Dollars', 'https://images.isbndb.com/covers/04/96/9780671450496.jpg'), + ('0812541529', 'A Wizard In A Feud', 'https://images.isbndb.com/covers/15/26/9780812541526.jpg'), + ('042518885X', 'The Wicked Flea (Dog Lover''s Mysteries)', 'https://images.isbndb.com/covers/88/59/9780425188859.jpg'), + ('0756400988', 'Wondrous Beginnings', 'https://images.isbndb.com/covers/09/89/9780756400989.jpg'), + ('0440840953', 'Tuck Everlasting', 'https://images.isbndb.com/covers/09/54/9780440840954.jpg'), + ('0425180042', 'Mrs. Jeffries Pinches The Post', 'https://images.isbndb.com/covers/00/44/9780425180044.jpg'), + ('0345374568', 'The Old Contemptibles', 'https://images.isbndb.com/covers/45/61/9780345374561.jpg'), + ('0140367683', 'At The Back Of The North Wind: Complete And Unabridged (Puffin Classics)', 'https://images.isbndb.com/covers/76/83/9780140367683.jpg'), + ('0440430909', 'A Girl Of The Limberlost (A Dell Yearling Classic)', 'https://images.isbndb.com/covers/09/02/9780440430902.jpg'), + ('038081563X', 'Silver Scream: A Bed-and-Breakfast Mystery (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/56/30/9780380815630.jpg'), + ('0060953675', 'The Sunday Tertulia: A Novel', 'https://images.isbndb.com/covers/36/76/9780060953676.jpg'), + ('0553153277', 'Anne Of Green Gables', 'https://images.isbndb.com/covers/32/79/9780553153279.jpg'), + ('0140088121', 'Saratoga Snapper: A Charlie Bradshaw Mystery', 'https://images.isbndb.com/covers/81/20/9780140088120.jpg'), + ('0802115160', 'Kitchen', 'https://images.isbndb.com/covers/51/64/9780802115164.jpg'), + ('0312201656', 'I Capture The Castle', 'https://images.isbndb.com/covers/16/54/9780312201654.jpg'), + ('0451519167', 'Pride And Prejudice', 'https://images.isbndb.com/covers/91/60/9780451519160.jpg'), + ('067173072X', 'CROSSCURRENTS (NANCY DREW FILES 68)', 'https://images.isbndb.com/covers/07/27/9780671730727.jpg'), + ('0603550622', 'Mysteries: "Mystery Of The Burnt Cottage", "Mystery Of The Disappearing Cat", "Mystery Of The Secret Room" V. 1', 'https://images.isbndb.com/covers/06/21/9780603550621.jpg'), + ('0312207662', 'Agatha Raisin And The Love From Hell (Agatha Raisin Mysteries, No. 11)', 'https://images.isbndb.com/covers/76/63/9780312207663.jpg'), + ('0679844074', 'Junie B. Jones And Her Big Fat Mouth (Junie B. Jones, No. 3)', 'https://images.isbndb.com/covers/40/75/9780679844075.jpg'), + ('0064410722', 'Four Stupid Cupids (The Hamlet Chronicles)', 'https://images.isbndb.com/covers/07/24/9780064410724.jpg'), + ('0380815605', 'Alice-by-Accident', 'https://images.isbndb.com/covers/56/09/9780380815609.jpg'), + ('0440204739', 'Missing Madonna, The', 'https://images.isbndb.com/covers/47/32/9780440204732.jpg'), + ('0553258915', 'The Two Mrs. Grenvilles', 'https://images.isbndb.com/covers/89/12/9780553258912.jpg'), + ('0553271954', 'The New Voyages (Star Trek)', 'https://images.isbndb.com/covers/19/59/9780553271959.jpg'), + ('055315723X', 'Encyclopedia Brown Takes The Case', 'https://images.isbndb.com/covers/72/39/9780553157239.jpg'), + ('0553157256', 'Encyclopedia Brown Finds The Clues (Book 3)', 'https://images.isbndb.com/covers/72/53/9780553157253.jpg'), + ('0553157353', 'Encyclopedia Brown Keeps The Peace', 'https://images.isbndb.com/covers/73/52/9780553157352.jpg'), + ('055314796X', 'Stalking The Perfect Tan', 'https://images.isbndb.com/covers/79/64/9780553147964.jpg'), + ('0553268120', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/81/26/9780553268126.jpg'), + ('0345448820', 'The Nine Emotional Lives Of Cats: A Journey Into The Feline Heart', 'https://images.isbndb.com/covers/88/28/9780345448828.jpg'), + ('0449237850', 'I Lost Everything In The Post-Natal Depression', 'https://images.isbndb.com/covers/78/54/9780449237854.jpg'), + ('0899197213', 'The Wednesday Surprise', 'https://images.isbndb.com/covers/72/10/9780899197210.jpg'), + ('0440486599', 'Then Again, Maybe I Won''t', 'https://images.isbndb.com/covers/65/96/9780440486596.jpg'), + ('0440495717', 'Winnie The Pooh', 'https://images.isbndb.com/covers/57/10/9780440495710.jpg'), + ('0380705672', 'A Dark Traveling', 'https://images.isbndb.com/covers/56/72/9780380705672.jpg'), + ('0446400408', 'Icy Clutches', 'https://images.isbndb.com/covers/04/04/9780446400404.jpg'), + ('0671455281', 'Murder Make The Wheels Go ''Round', 'https://images.isbndb.com/covers/52/86/9780671455286.jpg'), + ('0553157345', 'Encyclopedia Brown Saves The Day', 'https://images.isbndb.com/covers/73/45/9780553157345.jpg'), + ('1860421016', 'More Cats In The Belfry', 'https://images.isbndb.com/covers/10/13/9781860421013.jpg'), + ('0590431390', 'Twisted (Point)', 'https://images.isbndb.com/covers/13/92/9780590431392.jpg'), + ('0671738666', 'The Best Friend (Fear Street, No. 17)', 'https://images.isbndb.com/covers/86/62/9780671738662.jpg'), + ('0451110641', 'The Second Lady (Signet)', 'https://images.isbndb.com/covers/06/40/9780451110640.jpg'), + ('0374253536', 'The Saints'' Guide To Happiness', 'https://images.isbndb.com/covers/35/30/9780374253530.jpg'), + ('0006386369', 'Flowers On My Grave: How An Ojibwa Boy''s Death Helped Break The Silence On Child Abuse', 'https://images.isbndb.com/covers/63/60/9780006386360.jpg'), + ('0671456865', 'A Quiver Full Of Arrows', 'https://images.isbndb.com/covers/68/63/9780671456863.jpg'), + ('0836228995', 'Casual Day Has Gone Too Far', 'https://images.isbndb.com/covers/89/91/9780836228991.jpg'), + ('0345275306', 'Special People', 'https://images.isbndb.com/covers/53/01/9780345275301.jpg'), + ('0393025616', 'Widower''s House: A Study In Bereavement, Or How Margot And Mella Forced Me To Flee My Home', 'https://images.isbndb.com/covers/56/13/9780393025613.jpg'), + ('0849942195', 'The Island Of Heavenly Daze (Heavenly Daze Series #1)', 'https://images.isbndb.com/covers/21/98/9780849942198.jpg'), + ('0583300650', 'Fifth Formers Of St. Clare''s', 'https://images.isbndb.com/covers/06/50/9780583300650.jpg'), + ('0583300588', 'Claudine At St. Clare''s - Fifth Book In The St. Clare''s School Series', 'https://images.isbndb.com/covers/05/82/9780583300582.jpg'), + ('0583300359', 'Second Form ST Clares', 'https://images.isbndb.com/covers/03/53/9780583300353.jpg'), + ('0583300340', 'Summer Term At ST Clares', 'https://images.isbndb.com/covers/03/46/9780583300346.jpg'), + ('0583300332', 'The O"Sullivan Twins', 'https://images.isbndb.com/covers/03/39/9780583300339.jpg'), + ('0583300324', 'Twins At ST Clares', 'https://images.isbndb.com/covers/03/22/9780583300322.jpg'), + ('1573225312', 'Native Speaker', 'https://images.isbndb.com/covers/53/11/9781573225311.jpg'), + ('0671620193', 'The Murder Of Roger Ackroyd', 'https://images.isbndb.com/covers/01/96/9780671620196.jpg'), + ('0449219461', 'H Is For Homicide', 'https://images.isbndb.com/covers/94/61/9780449219461.jpg'), + ('0929638298', 'Working Woman''s Art Of War: Winning Without Confrontation', 'https://images.isbndb.com/covers/82/94/9780929638294.jpg'), + ('0440405157', 'Two Weirdos And A Ghost', 'https://images.isbndb.com/covers/51/53/9780440405153.jpg'), + ('0440441099', 'I, Trissy', 'https://images.isbndb.com/covers/10/90/9780440441090.jpg'), + ('0440154138', 'Don''t Say Yes When You Want To Say No: Making Life Right When It Feels All Wrong', 'https://images.isbndb.com/covers/41/36/9780440154136.jpg'), + ('0441006361', 'The Spell-Bound Scholar (Heirs To The Warlock)', 'https://images.isbndb.com/covers/63/66/9780441006366.jpg'), + ('0440420326', 'All-of-a-Kind Family Downtown', 'https://images.isbndb.com/covers/03/23/9780440420323.jpg'), + ('0451523555', 'The Adventures Of Tom Sawyer (Signet Classics)', 'https://images.isbndb.com/covers/35/56/9780451523556.jpg'), + ('0449217949', 'Miss Melville''s Revenge', 'https://images.isbndb.com/covers/79/48/9780449217948.jpg'), + ('0449007138', 'Till Death', 'https://images.isbndb.com/covers/71/36/9780449007136.jpg'), + ('0440237041', 'Died To Match (Carnegie Kincaid, Book 2)', 'https://images.isbndb.com/covers/70/44/9780440237044.jpg'), + ('0449907155', 'Lady''s Maid', 'https://images.isbndb.com/covers/71/53/9780449907153.jpg'), + ('0679741666', 'A Lesson Before Dying (Vintage Contemporaries)', 'https://images.isbndb.com/covers/16/64/9780679741664.jpg'), + ('0575400048', 'Hons And Rebels: The Classic Memoir Of One Of Last Century''s Most Extraordinary Families', 'https://images.isbndb.com/covers/00/47/9780575400047.jpg'), + ('0836236688', 'Seven Years Of Highly Defective People: Scott Adams'' Guided Tour Of The Evolution Of Dilbert', 'https://images.isbndb.com/covers/66/82/9780836236682.jpg'), + ('0836210263', 'Still Pumped From Using The Mouse', 'https://images.isbndb.com/covers/02/62/9780836210262.jpg'), + ('0809233479', 'Teachers! Teachers! Teachers!', 'https://images.isbndb.com/covers/34/72/9780809233472.jpg'), + ('1580170951', 'Herbal Remedy Gardens: 38 Plans For Your Health & Well-Being', 'https://images.isbndb.com/covers/09/56/9781580170956.jpg'), + ('0345431057', 'Slaves In The Family', 'https://images.isbndb.com/covers/10/59/9780345431059.jpg'), + ('0345458303', 'Beginner''s Luck: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/83/08/9780345458308.jpg'), + ('0929523288', 'How To Fight Back And Win: The Joy Of Self-Defense', 'https://images.isbndb.com/covers/32/86/9780929523286.jpg'), + ('0879850213', 'How To Make Good Pictures', 'https://images.isbndb.com/covers/02/10/9780879850210.jpg'), + ('0394725808', 'Parallel Lives: Five Victorian Marriages', 'https://images.isbndb.com/covers/58/02/9780394725802.jpg'), + ('0848714385', 'Southern Living Our Best One-Dish Meals', 'https://images.isbndb.com/covers/43/83/9780848714383.jpg'), + ('0670031054', 'Miss Julia Throws A Wedding', 'https://images.isbndb.com/covers/10/54/9780670031054.jpg'), + ('0670032077', 'Miss Julia Hits The Road (Southern Comedy Of Manners)', 'https://images.isbndb.com/covers/20/75/9780670032075.jpg'), + ('1575667347', 'Wedding Day Murder (Lucy Stone Mysteries, No. 8)', 'https://images.isbndb.com/covers/73/48/9781575667348.jpg'), + ('1575666855', 'Turkey Day Murder (Lucy Stone Mysteries, No. 7)', 'https://images.isbndb.com/covers/68/53/9781575666853.jpg'), + ('0449200817', 'Touch Not The Cat', 'https://images.isbndb.com/covers/08/10/9780449200810.jpg'), + ('0671443356', 'MURDER COMES FIRST (A Mr. & Mrs. North Mystery)', 'https://images.isbndb.com/covers/33/51/9780671443351.jpg'), + ('0590494457', 'The Ghost Next Door (Goosebumps)', 'https://images.isbndb.com/covers/44/58/9780590494458.jpg'), + ('0590294040', 'The Case Of The Missing Mummy (Adventures Of Mary-Kate And Ashley)', 'https://images.isbndb.com/covers/40/41/9780590294041.jpg'), + ('076241085X', 'Nancy Drew''s Guide To Life', 'https://images.isbndb.com/covers/08/59/9780762410859.jpg'), + ('0312911912', 'Man Of The House', 'https://images.isbndb.com/covers/19/11/9780312911911.jpg'), + ('0671438190', 'Going For Gold', 'https://images.isbndb.com/covers/81/97/9780671438197.jpg'), + ('0553247824', 'Paul Harvey''s Rest Of The Story', 'https://images.isbndb.com/covers/78/24/9780553247824.jpg'), + ('0553251961', 'When I Say No, I Feel Guilty', 'https://images.isbndb.com/covers/19/68/9780553251968.jpg'), + ('055325362X', 'Miss Silver Comes To Stay', 'https://images.isbndb.com/covers/36/27/9780553253627.jpg'), + ('0743200322', 'The Boilerplate Rhino: Nature In The Eye Of The Beholder', 'https://images.isbndb.com/covers/03/25/9780743200325.jpg'), + ('0590537733', 'Teach Us, Amelia Bedelia', 'https://images.isbndb.com/covers/77/35/9780590537735.jpg'), + ('0679883614', 'Babe: The Gallant Pig', 'https://images.isbndb.com/covers/36/16/9780679883616.jpg'), + ('0440475333', 'Rebecca Of Sunnybrook Farm (A Dell Yearling Classic)', 'https://images.isbndb.com/covers/53/30/9780440475330.jpg'), + ('0689831404', 'The Wind In The Willows (Aladdin Classics)', 'https://images.isbndb.com/covers/14/09/9780689831409.jpg'), + ('0064431789', 'Where The Wild Things Are', 'https://images.isbndb.com/covers/17/81/9780064431781.jpg'), + ('0486247791', 'Ozma Of Oz (Dover Children''s Classics)', 'https://images.isbndb.com/covers/77/93/9780486247793.jpg'), + ('0590316575', 'Changing Times (Treasured Horses)', 'https://images.isbndb.com/covers/65/76/9780590316576.jpg'), + ('0590484451', 'The Next Karate Kid', 'https://images.isbndb.com/covers/44/59/9780590484459.jpg'), + ('0590447432', 'Four Against The Odds: The Struggle To Save Our Environment (Scholastic Biography)', 'https://images.isbndb.com/covers/74/30/9780590447430.jpg'), + ('0195003640', 'The Republic Of Plato', 'https://images.isbndb.com/covers/36/42/9780195003642.jpg'), + ('0316784974', 'The Adams Chronicles: Four Generations Of Greatness', 'https://images.isbndb.com/covers/49/79/9780316784979.jpg'), + ('0449221776', 'Seven For A Secret', 'https://images.isbndb.com/covers/17/78/9780449221778.jpg'), + ('0449242625', 'Think About It Tomorrow, Snoopy', 'https://images.isbndb.com/covers/26/29/9780449242629.jpg'), + ('0553096036', 'Pay Dirt', 'https://images.isbndb.com/covers/60/33/9780553096033.jpg'), + ('0553288474', 'Deadly Valentine (Death On Demand Mysteries, No. 6)', 'https://images.isbndb.com/covers/84/76/9780553288476.jpg'), + ('0140340246', 'An Episode Of Sparrows', 'https://images.isbndb.com/covers/02/42/9780140340242.jpg'), + ('0812504488', 'Strange Case Of Doctor Jekyll And Mr. Hyde (Tor Classics)', 'https://images.isbndb.com/covers/44/84/9780812504484.jpg'), + ('0840741391', 'God''s Promises For The Graduate', 'https://images.isbndb.com/covers/13/94/9780840741394.jpg'), + ('0842346112', 'Mountains Of Spices', 'https://images.isbndb.com/covers/61/15/9780842346115.jpg'), + ('0380717832', 'Talking From 9 To 5: Women And Men At Work', 'https://images.isbndb.com/covers/78/35/9780380717835.jpg'), + ('0061093653', 'Twelve Red Herrings', 'https://images.isbndb.com/covers/36/54/9780061093654.jpg'), + ('0425104060', 'The Sittaford Mystery', 'https://images.isbndb.com/covers/40/64/9780425104064.jpg'), + ('0679761802', 'The Fran Lebowitz Reader', 'https://images.isbndb.com/covers/18/08/9780679761808.jpg'), + ('0590454412', 'Robin Hood Of Sherwood Forest (R)', 'https://images.isbndb.com/covers/44/14/9780590454414.jpg'), + ('0064401510', 'Mrs. Piggle-Wiggle''s Magic', 'https://images.isbndb.com/covers/15/17/9780064401517.jpg'), + ('0345255585', 'A Man Called Intrepid', 'https://images.isbndb.com/covers/55/87/9780345255587.jpg'), + ('0140280464', 'My Year Of Meats', 'https://images.isbndb.com/covers/04/63/9780140280463.jpg'), + ('0671722751', 'Macbeth (The New Folger Library)', 'https://images.isbndb.com/covers/27/53/9780671722753.jpg'), + ('0449146863', 'Wicked Slice', 'https://images.isbndb.com/covers/68/66/9780449146866.jpg'), + ('0061054003', 'Searoad: Chronicles Of Klatsand', 'https://images.isbndb.com/covers/40/06/9780061054006.jpg'), + ('0802730949', 'Murder Pluperfect', 'https://images.isbndb.com/covers/09/47/9780802730947.jpg'), + ('0446404039', 'The Dark Place', 'https://images.isbndb.com/covers/40/37/9780446404037.jpg'), + ('0380709473', 'Crows Can''t Count', 'https://images.isbndb.com/covers/94/72/9780380709472.jpg'), + ('0449214567', 'Across China', 'https://images.isbndb.com/covers/45/65/9780449214565.jpg'), + ('0345358031', 'Shining Through', 'https://images.isbndb.com/covers/80/35/9780345358035.jpg'), + ('0449213358', 'Hawaii', 'https://images.isbndb.com/covers/33/53/9780449213353.jpg'), + ('0553225650', 'Laurel''s Kitchen: A Handbook For Vegetarian Cookery And Nutrition', 'https://images.isbndb.com/covers/56/55/9780553225655.jpg'), + ('0553111507', 'The People''s Almanac Presents The Book Of Lists', 'https://images.isbndb.com/covers/15/07/9780553111507.jpg'), + ('0879237848', 'A Little Princess', 'https://images.isbndb.com/covers/78/44/9780879237844.jpg'), + ('0553213202', 'The House Of Mirth (Bantam Classics)', 'https://images.isbndb.com/covers/32/01/9780553213201.jpg'), + ('0385474903', 'Dead Men Do Tell Tales: The Strange And Fascinating Cases Of A Forensic Anthropologist', 'https://images.isbndb.com/covers/49/00/9780385474900.jpg'), + ('0770420842', 'And No Birds Sang', 'https://images.isbndb.com/covers/08/40/9780770420840.jpg'), + ('0553282166', 'Press On!: Further Adventures In The Good Life', 'https://images.isbndb.com/covers/21/60/9780553282160.jpg'), + ('0553154400', 'SHER/BONE MYSTERY 3 (Sherluck Bones Mystery)', 'https://images.isbndb.com/covers/44/05/9780553154405.jpg'), + ('0380001411', 'Christy', 'https://images.isbndb.com/covers/14/15/9780380001415.jpg'), + ('0679766766', 'Jane Austen: A Life', 'https://images.isbndb.com/covers/67/66/9780679766766.jpg'), + ('0310218039', 'Eli', 'https://images.isbndb.com/covers/80/36/9780310218036.jpg'), + ('0452283736', 'Legally Blonde', 'https://images.isbndb.com/covers/37/32/9780452283732.jpg'), + ('0385506686', 'Utopia: A Thriller', 'https://images.isbndb.com/covers/66/87/9780385506687.jpg'), + ('0821744526', 'The Murder Game', 'https://images.isbndb.com/covers/45/29/9780821744529.jpg'), + ('0553569368', 'BLEEDING HEARTS (The Gregor Demarkian Holiday Series)', 'https://images.isbndb.com/covers/93/60/9780553569360.jpg'), + ('0688179444', 'Ballerina!', 'https://images.isbndb.com/covers/94/41/9780688179441.jpg'), + ('0380006286', '101 Dalmatians', 'https://images.isbndb.com/covers/62/81/9780380006281.jpg'), + ('0440447682', 'Little Women', 'https://images.isbndb.com/covers/76/89/9780440447689.jpg'), + ('0671727184', 'The Life Of King Henry The Fifth', 'https://images.isbndb.com/covers/71/85/9780671727185.jpg'), + ('0440760755', 'Mouse And The Motorcycle, The', 'https://images.isbndb.com/covers/07/57/9780440760757.jpg'), + ('0451141083', 'Mindbend', 'https://images.isbndb.com/covers/10/88/9780451141088.jpg'), + ('0307215873', 'Trixie Belden And The Mystery Of The Blinking Eye', 'https://images.isbndb.com/covers/58/71/9780307215871.jpg'), + ('0671415085', 'If There Be Thorns (Dollanganger Series, Bk. 3)', 'https://images.isbndb.com/covers/50/82/9780671415082.jpg'), + ('0553282980', 'Dead Poets Society', 'https://images.isbndb.com/covers/29/86/9780553282986.jpg'), + ('0440383145', 'The Storytelling Stone (Laurel Original)', 'https://images.isbndb.com/covers/31/47/9780440383147.jpg'), + ('0060912596', 'A Hog On Ice (Harper Colophon Books)', 'https://images.isbndb.com/covers/25/98/9780060912598.jpg'), + ('0385315546', 'Drinking: A Love Story', 'https://images.isbndb.com/covers/55/48/9780385315548.jpg'), + ('0373833865', 'Gem Of A Girl', 'https://images.isbndb.com/covers/38/63/9780373833863.jpg'), + ('0345356535', 'Sick Of Shadows', 'https://images.isbndb.com/covers/65/36/9780345356536.jpg'), + ('0380731630', 'Skeleton Dance (Gideon Oliver Mysteries)', 'https://images.isbndb.com/covers/16/33/9780380731633.jpg'), + ('0590944738', 'The Berenstain Bear Scouts And The Sinister Smoke Ring (Berenstain Bear Scouts)', 'https://images.isbndb.com/covers/47/31/9780590944731.jpg'), + ('089577481X', 'How Many Animals Down Ladybug Lane (A Little Look Around Book)', 'https://images.isbndb.com/covers/48/11/9780895774811.jpg'), + ('0590426915', 'The Adventures Of Milo And Otis', 'https://images.isbndb.com/covers/69/16/9780590426916.jpg'), + ('0060507772', 'The Last Hero: A Discworld Fable', 'https://images.isbndb.com/covers/77/70/9780060507770.jpg'), + ('0842335935', 'SoulShaping', 'https://images.isbndb.com/covers/59/35/9780842335935.jpg'), + ('0449149986', 'If I''d Killed Him When I Met Him (Elizabeth MacPherson, Bk 8)', 'https://images.isbndb.com/covers/99/80/9780449149980.jpg'), + ('0449223450', 'Recessional', 'https://images.isbndb.com/covers/34/51/9780449223451.jpg'), + ('0449238601', 'Fires Of Spring -3', 'https://images.isbndb.com/covers/86/08/9780449238608.jpg'), + ('0316364517', 'Buzz Beamer''s Out Of This World Series', 'https://images.isbndb.com/covers/45/15/9780316364515.jpg'), + ('0828891591', 'Gigi (French Language Edition)', 'https://images.isbndb.com/covers/15/92/9780828891592.jpg'), + ('0451518519', 'A Midsummer Night''s Dream (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/85/14/9780451518514.jpg'), + ('0515121746', 'Christmas Spirits', 'https://images.isbndb.com/covers/17/42/9780515121742.jpg'), + ('0345326210', 'Cooking School Murders', 'https://images.isbndb.com/covers/62/18/9780345326218.jpg'), + ('0345428307', 'Trust Fund', 'https://images.isbndb.com/covers/83/01/9780345428301.jpg'), + ('0345307593', 'Dr. Zhivago', 'https://images.isbndb.com/covers/75/90/9780345307590.jpg'), + ('0449238040', 'IBERIA -3', 'https://images.isbndb.com/covers/80/42/9780449238042.jpg'), + ('0449238520', 'TALES OF S PACIFIC-3', 'https://images.isbndb.com/covers/85/23/9780449238523.jpg'), + ('0553212982', 'Macbeth (Bantam Classic)', 'https://images.isbndb.com/covers/29/83/9780553212983.jpg'), + ('0312421036', 'Eva Moves The Furniture: A Novel', 'https://images.isbndb.com/covers/10/38/9780312421038.jpg'), + ('0446363278', 'Beaches II: I''ll Be There', 'https://images.isbndb.com/covers/32/73/9780446363273.jpg'), + ('157566108X', 'Underdog: A Melanie Travis Mystery', 'https://images.isbndb.com/covers/10/87/9781575661087.jpg'), + ('1575663562', 'Hair Of The Dog: A Melanie Travis Mystery', 'https://images.isbndb.com/covers/35/62/9781575663562.jpg'), + ('0375712992', 'The Best American Crime Writing: 2002 Edition: The Year''s Best True Crime Reporting', 'https://images.isbndb.com/covers/29/99/9780375712999.jpg'), + ('1575664992', 'Valentine Murder (Lucy Stone Mysteries, No. 6)', 'https://images.isbndb.com/covers/49/96/9781575664996.jpg'), + ('039331393X', 'No Ordinary Genius: The Illustrated Richard Feynman', 'https://images.isbndb.com/covers/39/32/9780393313932.jpg'), + ('0345336003', 'Split Infinity (Apprentice Adept, No. 1)', 'https://images.isbndb.com/covers/60/02/9780345336002.jpg'), + ('0345282280', 'The Emerald City Of Oz', 'https://images.isbndb.com/covers/22/86/9780345282286.jpg'), + ('0312963963', 'Death Of An Angel: A Sister Mary Helen Mystery (Sister Mary Helen Mysteries)', 'https://images.isbndb.com/covers/39/65/9780312963965.jpg'), + ('0380709244', 'The Mouse And The Motorcycle', 'https://images.isbndb.com/covers/92/43/9780380709243.jpg'), + ('0671897861', 'A Dragon In The Family', 'https://images.isbndb.com/covers/78/64/9780671897864.jpg'), + ('0064400468', 'Freaky Friday', 'https://images.isbndb.com/covers/04/66/9780064400466.jpg'), + ('0312978650', 'Skeleton Key: A Gregor Demarkian Novel (Gregor Demarkian Novels)', 'https://images.isbndb.com/covers/86/55/9780312978655.jpg'), + ('0312925581', 'James Herriot''s Dog Stories: Warm And Wonderful Stories About The Animals Herriot Loves Best', 'https://images.isbndb.com/covers/55/81/9780312925581.jpg'), + ('0380603926', 'When Bad Things Happen To Good People', 'https://images.isbndb.com/covers/39/23/9780380603923.jpg'), + ('0425152898', 'Mind Prey', 'https://images.isbndb.com/covers/28/98/9780425152898.jpg'), + ('067172942X', 'Garden Of Shadows (Dollanganger Series)', 'https://images.isbndb.com/covers/94/24/9780671729424.jpg'), + ('0316850950', 'How To Prepare For Your High School Reunion And Other Midlife Musings', 'https://images.isbndb.com/covers/09/57/9780316850957.jpg'), + ('0451521269', 'The Taming Of The Shrew (Signet Classic, Shakespeare)', 'https://images.isbndb.com/covers/12/62/9780451521262.jpg'), + ('0446352470', 'Three Days For Emeralds', 'https://images.isbndb.com/covers/24/75/9780446352475.jpg'), + ('0061030597', 'Moment Of Truth', 'https://images.isbndb.com/covers/05/98/9780061030598.jpg'), + ('039458872X', 'Secrets Of The Flesh: A Life Of Colette', 'https://images.isbndb.com/covers/87/28/9780394588728.jpg'), + ('0761109196', 'Children Learn What They Live', 'https://images.isbndb.com/covers/91/98/9780761109198.jpg'), + ('0449235637', 'The Elusive Mrs. Pollifax', 'https://images.isbndb.com/covers/56/38/9780449235638.jpg'), + ('0671497596', 'Daughter Of Time', 'https://images.isbndb.com/covers/75/90/9780671497590.jpg'), + ('0140432787', 'Discourses (Penguin Classics)', 'https://images.isbndb.com/covers/27/87/9780140432787.jpg'), + ('1575663708', 'Mistletoe Murder (Lucy Stone Mysteries, No. 1)', 'https://images.isbndb.com/covers/37/08/9781575663708.jpg'), + ('0394717740', 'The Thin Man V774', 'https://images.isbndb.com/covers/77/46/9780394717746.jpg'), + ('0345314484', 'Dragonquest', 'https://images.isbndb.com/covers/44/82/9780345314482.jpg'), + ('0553234595', 'Dragonsinger', 'https://images.isbndb.com/covers/45/96/9780553234596.jpg'), + ('0440986311', 'There''s A Bat In Bunk Five', 'https://images.isbndb.com/covers/63/17/9780440986317.jpg'), + ('0345331907', 'Deadline For A Critic', 'https://images.isbndb.com/covers/19/08/9780345331908.jpg'), + ('0553275224', 'Red Dragon', 'https://images.isbndb.com/covers/52/23/9780553275223.jpg'), + ('0380423901', 'A Woman Of Independent Means', 'https://images.isbndb.com/covers/39/03/9780380423903.jpg'), + ('0881843903', 'Highland Fling', 'https://images.isbndb.com/covers/39/03/9780881843903.jpg'), + ('0671534645', 'Apollo 13: Lost Moon', 'https://images.isbndb.com/covers/46/46/9780671534646.jpg'), + ('0060974443', 'Vanishing Point: A Miss Silver Mystery', 'https://images.isbndb.com/covers/44/42/9780060974442.jpg'), + ('0060974435', 'Miss Silver Deals With Death: A Miss Silver Mystery', 'https://images.isbndb.com/covers/44/35/9780060974435.jpg'), + ('0345341678', 'The White Dragon (Dragonriders Of Pern Vol 3)', 'https://images.isbndb.com/covers/16/79/9780345341679.jpg'), + ('0553211285', 'The Adventures Of Tom Sawyer (Bantam Classics)', 'https://images.isbndb.com/covers/12/83/9780553211283.jpg'), + ('0553242954', 'ANNE OF GREEN GABLES (Bantam Starfire Book)', 'https://images.isbndb.com/covers/29/59/9780553242959.jpg'), + ('0688040330', 'Millie''s Book: As Dictated To Barbara Bush', 'https://images.isbndb.com/covers/03/38/9780688040338.jpg'), + ('078688505X', 'Pure Drivel', 'https://images.isbndb.com/covers/50/53/9780786885053.jpg'), + ('0449149587', 'Shore To Die', 'https://images.isbndb.com/covers/95/84/9780449149584.jpg'), + ('044040407X', 'One Of The Third Grade Thonkers', 'https://images.isbndb.com/covers/40/71/9780440404071.jpg'), + ('044042299X', 'Ellen Tebbits', 'https://images.isbndb.com/covers/29/90/9780440422990.jpg'), + ('0440432952', 'Henry And Beezus (Henry Huggins)', 'https://images.isbndb.com/covers/29/51/9780440432951.jpg'), + ('0307215598', 'Trixie Belden The Mystery Of The Antique Doll', 'https://images.isbndb.com/covers/55/98/9780307215598.jpg'), + ('0440201322', 'Spycatcher', 'https://images.isbndb.com/covers/13/28/9780440201328.jpg'), + ('0451186796', 'The Crime Lover''s Casebook', 'https://images.isbndb.com/covers/67/99/9780451186799.jpg'), + ('0440772109', 'RAMONA FOREVER', 'https://images.isbndb.com/covers/21/01/9780440772101.jpg'), + ('0440472415', 'Ramona And Her Father (Ramona Quimby (Paperback))', 'https://images.isbndb.com/covers/24/14/9780440472414.jpg'), + ('044040665X', 'Beezus And Ramona', 'https://images.isbndb.com/covers/66/55/9780440406655.jpg'), + ('044096895X', 'The Pistachio Prescription', 'https://images.isbndb.com/covers/89/55/9780440968955.jpg'), + ('0590433563', 'Family Picture', 'https://images.isbndb.com/covers/35/63/9780590433563.jpg'), + ('0380978954', 'The Truth: A Novel Of Discworld', 'https://images.isbndb.com/covers/89/53/9780380978953.jpg'), + ('0140568123', 'Miss Fannie''s Hat (Picture Puffins)', 'https://images.isbndb.com/covers/81/27/9780140568127.jpg'), + ('0380706490', 'I, Houdini: The Amazing Story Of An Escape-Artist Hamster', 'https://images.isbndb.com/covers/64/95/9780380706495.jpg'), + ('0837885043', 'The Night Before Christmas', 'https://images.isbndb.com/covers/50/49/9780837885049.jpg'), + ('0380759489', 'Question Quest (Xanth, No. 14)', 'https://images.isbndb.com/covers/94/84/9780380759484.jpg'), + ('0380793253', 'White Elephant Dead (Death On Demand Mysteries, No. 11)', 'https://images.isbndb.com/covers/32/59/9780380793259.jpg'), + ('0399139141', 'Night Prey', 'https://images.isbndb.com/covers/91/47/9780399139147.jpg'), + ('0345337484', 'Castle Roogna', 'https://images.isbndb.com/covers/74/81/9780345337481.jpg'), + ('0898657512', 'The People Of Pern', 'https://images.isbndb.com/covers/75/17/9780898657517.jpg'), + ('0393001660', 'Pamela', 'https://images.isbndb.com/covers/16/62/9780393001662.jpg'), + ('0345318862', 'Golem In The Gears (The Magic Of Xanth, Book 9)', 'https://images.isbndb.com/covers/88/62/9780345318862.jpg'), + ('0345311078', 'Dragon On A Pedestal (The Magic Of Xanth, No. 7)', 'https://images.isbndb.com/covers/10/78/9780345311078.jpg'), + ('0345313216', 'The Source Of Magic (The Magic Of Xanth, No. 2)', 'https://images.isbndb.com/covers/32/18/9780345313218.jpg'), + ('0345317718', 'A Spell For Chameleon', 'https://images.isbndb.com/covers/77/11/9780345317711.jpg'), + ('0345327861', 'Crystal Singer', 'https://images.isbndb.com/covers/78/64/9780345327864.jpg'), + ('0553250671', 'Poison In The Pen', 'https://images.isbndb.com/covers/06/71/9780553250671.jpg'), + ('0553252542', 'The Final Deduction', 'https://images.isbndb.com/covers/25/45/9780553252545.jpg'), + ('0812510992', 'The Girl Who Heard Dragons', 'https://images.isbndb.com/covers/09/97/9780812510997.jpg'), + ('0671540882', 'CORONER', 'https://images.isbndb.com/covers/08/83/9780671540883.jpg'), + ('044900161X', 'Ruff Way To Go (Allie Finkle''s Rules For Girls)', 'https://images.isbndb.com/covers/16/15/9780449001615.jpg'), + ('0553294229', 'Untimely Guest', 'https://images.isbndb.com/covers/42/24/9780553294224.jpg'), + ('0425101088', 'Good Girl Syndrome', 'https://images.isbndb.com/covers/10/87/9780425101087.jpg'), + ('034530456X', 'Night Mare (The Magic Of Xanth, No. 6)', 'https://images.isbndb.com/covers/45/68/9780345304568.jpg'), + ('0345335090', 'Ogre, Ogre', 'https://images.isbndb.com/covers/50/98/9780345335098.jpg'), + ('0802725228', 'God At Eventide', 'https://images.isbndb.com/covers/52/26/9780802725226.jpg'), + ('0671473204', 'Wired: The Short Life And Fast Times Of John Belushi', 'https://images.isbndb.com/covers/32/04/9780671473204.jpg'), + ('089081015X', 'Living Without Losing: A Practical Guide To Successful Living', 'https://images.isbndb.com/covers/01/56/9780890810156.jpg'), + ('0446370126', 'Sidetracked Sisters Happiness File', 'https://images.isbndb.com/covers/01/27/9780446370127.jpg'), + ('055322509X', 'The Book Of Five Rings (Gorin No Sho): The Real Art Of Japanese Management', 'https://images.isbndb.com/covers/50/99/9780553225099.jpg'), + ('089622662X', 'The Soul Of Celtic Spirituality: In The Lives Of Its Saints', 'https://images.isbndb.com/covers/66/23/9780896226623.jpg'), + ('0961551445', 'Blue Eyeshadow Should Still Be Illegal: The World After Retin-A: What Do You Do Now?', 'https://images.isbndb.com/covers/14/45/9780961551445.jpg'), + ('0425114511', 'We Don''t Die: George Anderson''s Conversations With The Other Side', 'https://images.isbndb.com/covers/45/13/9780425114513.jpg'), + ('0446360082', 'A Fool For Murder: A Mystery', 'https://images.isbndb.com/covers/00/81/9780446360081.jpg'), + ('0307122239', 'Freckles (A Golden Illustrated Classic)', 'https://images.isbndb.com/covers/22/30/9780307122230.jpg'), + ('0879058161', 'The Peregrine Reader', 'https://images.isbndb.com/covers/81/66/9780879058166.jpg'), + ('0671038869', 'The Long Program: Skating Toward Life''s Victories', 'https://images.isbndb.com/covers/88/61/9780671038861.jpg'), + ('0609601008', 'Another City, Not My Own: A Novel In The Form Of A Memoir', 'https://images.isbndb.com/covers/10/06/9780609601006.jpg'), + ('0805058664', 'The Last Resort: A Novel', 'https://images.isbndb.com/covers/86/66/9780805058666.jpg'), + ('0399143939', 'Trick Of Light', 'https://images.isbndb.com/covers/39/39/9780399143939.jpg'), + ('0553094653', 'Scandal In Fair Haven', 'https://images.isbndb.com/covers/46/57/9780553094657.jpg'), + ('0517588455', 'Babywatching', 'https://images.isbndb.com/covers/84/51/9780517588451.jpg'), + ('0345354648', 'Five Patients', 'https://images.isbndb.com/covers/46/48/9780345354648.jpg'), + ('0312107935', 'Pemberley: Or Pride And Prejudice Continued', 'https://images.isbndb.com/covers/79/32/9780312107932.jpg'), + ('0553294636', 'The Pill Book', 'https://images.isbndb.com/covers/46/37/9780553294637.jpg'), + ('0449213439', 'Pretty Polly', 'https://images.isbndb.com/covers/34/38/9780449213438.jpg'), + ('042513265X', 'Miss Seeton By Moonlight', 'https://images.isbndb.com/covers/26/54/9780425132654.jpg'), + ('0061020648', 'Guards! Guards!', 'https://images.isbndb.com/covers/06/43/9780061020643.jpg'), + ('088138013X', 'Mr. Death And The Redheaded Woman (A Star & Elephant Book)', 'https://images.isbndb.com/covers/01/32/9780881380132.jpg'), + ('0553228412', 'Dare To Discipline', 'https://images.isbndb.com/covers/84/10/9780553228410.jpg'), + ('0804111146', 'From Beginning To End', 'https://images.isbndb.com/covers/11/40/9780804111140.jpg'), + ('0060675187', 'Rescuing The Bible From Fundamentalism: A Bishop Rethinks The Meaning Of Scripture', 'https://images.isbndb.com/covers/51/89/9780060675189.jpg'), + ('0061056014', 'Cat Under Fire: A Joe Grey Mystery', 'https://images.isbndb.com/covers/60/17/9780061056017.jpg'), + ('0060183136', 'Wouldn''t It Be Nice: My Own Story', 'https://images.isbndb.com/covers/31/34/9780060183134.jpg'), + ('0712674527', 'Simple Path', 'https://images.isbndb.com/covers/45/22/9780712674522.jpg'), + ('0394846664', 'Alfred Hitchcock And The Three Investigators In The Mystery Of The Coughing Dragon', 'https://images.isbndb.com/covers/66/68/9780394846668.jpg'), + ('0380792036', 'Deadly Shaker Spring (Sister Rose Callahan Mystery)', 'https://images.isbndb.com/covers/20/30/9780380792030.jpg'), + ('0609608533', 'Piranha To Scurfy: And Other Stories', 'https://images.isbndb.com/covers/85/31/9780609608531.jpg'), + ('0316678104', 'Fortune''s Rocks: A Novel', 'https://images.isbndb.com/covers/81/00/9780316678100.jpg'), + ('0448060191', 'Little Women (Illustrated Junior Library)', 'https://images.isbndb.com/covers/01/94/9780448060194.jpg'), + ('0449200558', 'The Judas Kiss', 'https://images.isbndb.com/covers/05/51/9780449200551.jpg'), + ('0380636778', 'Eighth Moon: The True Story Of A Young Girl''s Life In Communist China', 'https://images.isbndb.com/covers/67/78/9780380636778.jpg'), + ('0764150987', 'The Book Of Spells: Over 40 Secret Recipes To Get Your Own Way In Love, Work, And Play', 'https://images.isbndb.com/covers/09/82/9780764150982.jpg'), + ('0060514698', 'XXX', 'https://images.isbndb.com/covers/46/93/9780060514693.jpg'), + ('1578591147', 'The Witch Book: The Encyclopedia Of Witchcraft, Wicca, And Neo-paganism', 'https://images.isbndb.com/covers/11/45/9781578591145.jpg'), + ('0812882776', 'The Girl Who Passed For Normal', 'https://images.isbndb.com/covers/27/73/9780812882773.jpg'), + ('0671416367', 'Spellbinder', 'https://images.isbndb.com/covers/63/62/9780671416362.jpg'), + ('1578564271', 'Beneath A Southern Sky (Beneath A Southern Sky Series #1)', 'https://images.isbndb.com/covers/42/79/9781578564279.jpg'), + ('0812516389', 'Influence', 'https://images.isbndb.com/covers/63/88/9780812516388.jpg'), + ('0590466771', 'Driver''s Dead', 'https://images.isbndb.com/covers/67/76/9780590466776.jpg'), + ('034537536X', 'Show Of Evil', 'https://images.isbndb.com/covers/53/60/9780345375360.jpg'), + ('089296426X', 'The Blue Sense: Psychic Detectives And Crime', 'https://images.isbndb.com/covers/42/60/9780892964260.jpg'), + ('0812932064', 'Dead Run: The Untold Story Of Dennis Stockton And America''s Only Mass Escape From Death Row', 'https://images.isbndb.com/covers/20/65/9780812932065.jpg'), + ('0140020845', 'A Zoo In My Luggage', 'https://images.isbndb.com/covers/08/47/9780140020847.jpg'), + ('0919345174', 'What Witches Do', 'https://images.isbndb.com/covers/51/71/9780919345171.jpg'), + ('1567184006', 'Tarot Plain And Simple', 'https://images.isbndb.com/covers/40/06/9781567184006.jpg'), + ('0671741195', 'The Cradle Will Fall', 'https://images.isbndb.com/covers/11/98/9780671741198.jpg'), + ('0345386132', 'Eyes Of A Child', 'https://images.isbndb.com/covers/61/37/9780345386137.jpg'), + ('0201489376', 'Dreams Of Trespass: Tales Of A Harem Girlhood', 'https://images.isbndb.com/covers/93/78/9780201489378.jpg'), + ('1566890861', 'The Old Ballerina: Novel', 'https://images.isbndb.com/covers/08/61/9781566890861.jpg'), + ('0373441533', 'Meant For Trent / Leigh''s For Me) (Harlequin Duets, No. 87)', 'https://images.isbndb.com/covers/15/32/9780373441532.jpg'), + ('0961696702', 'Scandinavian Humor And Other Myths', 'https://images.isbndb.com/covers/67/02/9780961696702.jpg'), + ('1566260272', '52 Wisconsin Weekends', 'https://images.isbndb.com/covers/02/75/9781566260275.jpg'), + ('1576734161', 'Pursuit And Persuasion (Ben Reese Mystery)', 'https://images.isbndb.com/covers/41/62/9781576734162.jpg'), + ('0312871880', 'Irish Stew!', 'https://images.isbndb.com/covers/18/88/9780312871888.jpg'), + ('0595096751', 'Doin'' Jimmy', 'https://images.isbndb.com/covers/67/56/9780595096756.jpg'), + ('0805237739', 'When Bad Things Happen To Good People', 'https://images.isbndb.com/covers/77/33/9780805237733.jpg'), + ('087875539X', 'The Paper Chase', 'https://images.isbndb.com/covers/53/94/9780878755394.jpg'), + ('039332298X', 'Socrates Cafe: A Fresh Taste Of Philosophy', 'https://images.isbndb.com/covers/29/89/9780393322989.jpg'), + ('185715133X', 'Lolita (Everyman''s Library Classics)', 'https://images.isbndb.com/covers/13/36/9781857151336.jpg'), + ('0395083567', 'My Antonia', 'https://images.isbndb.com/covers/35/67/9780395083567.jpg'), + ('0425157180', 'The Choir', 'https://images.isbndb.com/covers/71/83/9780425157183.jpg'), + ('0553578375', 'Jane And The Stillroom Maid: Being The Fifth Jane Austen Mystery (Being A Jane Austen Mystery)', 'https://images.isbndb.com/covers/83/79/9780553578379.jpg'), + ('0684179962', 'A Moveable Feast', 'https://images.isbndb.com/covers/99/64/9780684179964.jpg'), + ('0425171094', 'A Village Affair', 'https://images.isbndb.com/covers/10/97/9780425171097.jpg'), + ('0449214427', 'Cardington Crescent', 'https://images.isbndb.com/covers/44/28/9780449214428.jpg'), + ('0345333756', 'Staggerford: A Novel', 'https://images.isbndb.com/covers/37/59/9780345333759.jpg'), + ('0345350162', 'Grand Opening', 'https://images.isbndb.com/covers/01/69/9780345350169.jpg'), + ('038072362X', 'A Superior Death', 'https://images.isbndb.com/covers/36/21/9780380723621.jpg'), + ('1400031028', 'Paris In Mind', 'https://images.isbndb.com/covers/10/23/9781400031023.jpg'), + ('0345333721', 'A Green Journey', 'https://images.isbndb.com/covers/37/28/9780345333728.jpg'), + ('0670910279', 'The Magic Of Ordinary Days', 'https://images.isbndb.com/covers/02/74/9780670910274.jpg'), + ('0310978912', 'Promises For You From The New International Version', 'https://images.isbndb.com/covers/89/16/9780310978916.jpg'), + ('067167739X', 'The Empty Nest Symphony', 'https://images.isbndb.com/covers/73/98/9780671677398.jpg'), + ('0931674042', 'Classic Minnesota Fishing Stories: A Rare Collection Of First-Hand Accounts, Anecdotes, And Reports', 'https://images.isbndb.com/covers/40/44/9780931674044.jpg'), + ('1887166491', 'Red Hot Mamas Do Menopause With Style', 'https://images.isbndb.com/covers/64/92/9781887166492.jpg'), + ('0688065317', 'Father Melancholy''s Daughter', 'https://images.isbndb.com/covers/53/17/9780688065317.jpg'), + ('0345433262', 'Slaves Of Obsession (William Monk Novels)', 'https://images.isbndb.com/covers/32/68/9780345433268.jpg'), + ('0866835024', 'The Promise Of A New Day (Hazelden Meditations)', 'https://images.isbndb.com/covers/50/22/9780866835022.jpg'), + ('0807119563', 'Last Of The Southern Girls (Voices Of The South)', 'https://images.isbndb.com/covers/95/63/9780807119563.jpg'), + ('0064640353', 'Of Irish Ways', 'https://images.isbndb.com/covers/03/50/9780064640350.jpg'), + ('0446603651', 'Where The Heart Is', 'https://images.isbndb.com/covers/36/52/9780446603652.jpg'), + ('0156004070', 'Tennis And The Meaning Of Life: A Literary Anthology Of The Game', 'https://images.isbndb.com/covers/40/77/9780156004077.jpg'), + ('0486275639', 'Civil Disobedience And Other Essays (Dover Thrift Editions)', 'https://images.isbndb.com/covers/56/35/9780486275635.jpg'), + ('0688032079', 'Zen And The Art Of Motorcycle Maintenance', 'https://images.isbndb.com/covers/20/74/9780688032074.jpg'), + ('0446674931', 'Four Letters Of Love', 'https://images.isbndb.com/covers/49/35/9780446674935.jpg'), + ('081120099X', 'New Seeds Of Contemplation', 'https://images.isbndb.com/covers/09/98/9780811200998.jpg'), + ('1577485033', 'A Gentle Spirit: Devotional Selections For Today''s Christian Woman (Inspirational Library)', 'https://images.isbndb.com/covers/50/32/9781577485032.jpg'), + ('0451176820', 'Saint Mudd: A Novel Of Gangsters And Saints', 'https://images.isbndb.com/covers/68/20/9780451176820.jpg'), + ('0140092846', 'How To Talk Minnesotan: A Visitor''s Guide', 'https://images.isbndb.com/covers/28/44/9780140092844.jpg'), + ('088029700X', 'True Irish Ghost Stories', 'https://images.isbndb.com/covers/70/04/9780880297004.jpg'), + ('0865476004', 'Paris Trance: A Romance', 'https://images.isbndb.com/covers/60/04/9780865476004.jpg'), + ('1573241482', 'The Community Of Kindness', 'https://images.isbndb.com/covers/14/89/9781573241489.jpg'), + ('0866835040', 'Today''s Gift', 'https://images.isbndb.com/covers/50/46/9780866835046.jpg'), + ('0451200861', 'I Ain''t Got Time To Bleed: Reworking The Body Politic From The Bottom Up', 'https://images.isbndb.com/covers/08/60/9780451200860.jpg'), + ('0446387878', 'A Yellow Raft In Blue Water', 'https://images.isbndb.com/covers/78/73/9780446387873.jpg'), + ('0385301499', 'Circle Of Friends', 'https://images.isbndb.com/covers/14/97/9780385301497.jpg'), + ('0385336764', 'The Fiery Cross (Outlander)', 'https://images.isbndb.com/covers/67/65/9780385336765.jpg'), + ('0060956445', 'The Monkey Wrench Gang (Perennial Classics)', 'https://images.isbndb.com/covers/64/48/9780060956448.jpg'), + ('0062502239', '365 Tao: Daily Meditations', 'https://images.isbndb.com/covers/22/30/9780062502230.jpg'), + ('096612880X', 'Walking On The Edge: A Journey Through The Psychic Pain Of Mental Illness : Poems', 'https://images.isbndb.com/covers/88/02/9780966128802.jpg'), + ('0806982276', 'Lateral Thinking Puzzlers', 'https://images.isbndb.com/covers/22/74/9780806982274.jpg'), + ('0060185147', 'Courting Trouble', 'https://images.isbndb.com/covers/51/45/9780060185145.jpg'), + ('0805010270', 'Fatal Flowers: On Sin, Sex And Suicide In The Deep South', 'https://images.isbndb.com/covers/02/75/9780805010275.jpg'), + ('0425184307', 'Murder On Washington Square (Gaslight Mystery)', 'https://images.isbndb.com/covers/43/01/9780425184301.jpg'), + ('0345409043', 'Errands', 'https://images.isbndb.com/covers/90/41/9780345409041.jpg'), + ('0440110653', 'A Cry In The Night', 'https://images.isbndb.com/covers/06/51/9780440110651.jpg'), + ('0553574701', 'A Song For The Asking', 'https://images.isbndb.com/covers/47/08/9780553574708.jpg'), + ('0380732084', 'The Devil Riding', 'https://images.isbndb.com/covers/20/81/9780380732081.jpg'), + ('0385335121', 'Tara Road: Oprah Selection #26', 'https://images.isbndb.com/covers/51/26/9780385335126.jpg'), + ('0671016970', 'Iron Lake (Cork O''Connor)', 'https://images.isbndb.com/covers/69/75/9780671016975.jpg'), + ('0449225666', 'Pentecost Alley (Charlotte & Thomas Pitt Novels)', 'https://images.isbndb.com/covers/56/60/9780449225660.jpg'), + ('0373263937', 'Milwaukee Summers Can Be Deadly (Worldwide Library Mysteries)', 'https://images.isbndb.com/covers/39/36/9780373263936.jpg'), + ('0312093616', 'Paid And Loving Eyes', 'https://images.isbndb.com/covers/36/17/9780312093617.jpg'), + ('1586602950', 'City Dreams: Beneath Heaven''s Curtain/A World Of Difference/In The Heart Of The Storm/The Arrow Of God (Inspirational Romance Collection)', 'https://images.isbndb.com/covers/29/56/9781586602956.jpg'), + ('0764563556', 'Frommer''s Scandinavia', 'https://images.isbndb.com/covers/35/53/9780764563553.jpg'), + ('1573229601', 'God''s Mountain', 'https://images.isbndb.com/covers/96/09/9781573229609.jpg'), + ('0590452991', 'Ghost Eye', 'https://images.isbndb.com/covers/29/91/9780590452991.jpg'), + ('0860209261', 'The Usborne Book Of Car Travel Games: Puzzles, Games And Things To Do On A Journey-Or At Home (The Usborne Book Of Series)', 'https://images.isbndb.com/covers/92/63/9780860209263.jpg'), + ('0452264510', 'The Prime Of Miss Jean Brodie (Plume)', 'https://images.isbndb.com/covers/45/19/9780452264519.jpg'), + ('0786869445', 'Hope Through Heartsongs', 'https://images.isbndb.com/covers/94/42/9780786869442.jpg'), + ('0380819597', 'The Last Convertible', 'https://images.isbndb.com/covers/95/91/9780380819591.jpg'), + ('1575667614', 'Kentucky Rich', 'https://images.isbndb.com/covers/76/14/9781575667614.jpg'), + ('0877935637', 'All Will Be Well: Based On The Classic Spirituality Of Julian Of Norwich (30 Days With A Great Spiritual Teacher)', 'https://images.isbndb.com/covers/56/36/9780877935636.jpg'), + ('0684856077', 'Tales Of Passion, Tales Of Woe', 'https://images.isbndb.com/covers/60/70/9780684856070.jpg'), + ('0517597977', 'Beaming Sonny Home', 'https://images.isbndb.com/covers/79/72/9780517597972.jpg'), + ('0671567713', 'White Crosses', 'https://images.isbndb.com/covers/77/12/9780671567712.jpg'), + ('0671537512', 'Sabrina', 'https://images.isbndb.com/covers/75/17/9780671537517.jpg'), + ('0718143515', 'Field Of 13', 'https://images.isbndb.com/covers/35/10/9780718143510.jpg'), + ('0373441517', 'A Royal Mess / Her Knight To Remember (Harlequin Duets: Red-Hot Royals)', 'https://images.isbndb.com/covers/15/18/9780373441518.jpg'), + ('1551666219', 'Savage Desire (Mira)', 'https://images.isbndb.com/covers/62/11/9781551666211.jpg'), + ('0380710854', 'Caesar: Let The Dice Fly (Masters Of Rome, Book 5)', 'https://images.isbndb.com/covers/08/50/9780380710850.jpg'), + ('0140012664', 'The Bafut Beagles', 'https://images.isbndb.com/covers/26/68/9780140012668.jpg'), + ('0773752102', 'Five Minute Mysteries', 'https://images.isbndb.com/covers/21/08/9780773752108.jpg'), + ('0441731546', 'Robot Dreams (Remembering Tomorrow)', 'https://images.isbndb.com/covers/15/41/9780441731541.jpg'), + ('0553204343', 'All Creatures Great And Small', 'https://images.isbndb.com/covers/43/46/9780553204346.jpg'), + ('0201112159', 'Problem Solving Pascal', 'https://images.isbndb.com/covers/21/53/9780201112153.jpg'), + ('0782122221', 'MCSE: NT Server 4 Study Guide, 2nd Ed.', 'https://images.isbndb.com/covers/22/20/9780782122220.jpg'), + ('078212223X', 'McSe: Nt Workstation 4 Study Guide', 'https://images.isbndb.com/covers/22/37/9780782122237.jpg'), + ('0782122213', 'McSe: Nt Server 4 In The Enterprise Study Guide', 'https://images.isbndb.com/covers/22/13/9780782122213.jpg'), + ('0345316576', 'Who Needs Enemies?', 'https://images.isbndb.com/covers/65/78/9780345316578.jpg'), + ('0770109047', 'Jade And Fire', 'https://images.isbndb.com/covers/90/42/9780770109042.jpg'), + ('0060139145', 'The Gulag Archipelago, 1918-1956: An Experiment In Literary Investigation', 'https://images.isbndb.com/covers/91/48/9780060139148.jpg'), + ('0345372328', 'Into The Dark Lands (The Sundered, Book 1)', 'https://images.isbndb.com/covers/23/21/9780345372321.jpg'), + ('0671769057', 'Voyage Of The Storm', 'https://images.isbndb.com/covers/90/55/9780671769055.jpg'), + ('0670220264', 'Christine', 'https://images.isbndb.com/covers/02/67/9780670220267.jpg'), + ('0517422840', 'Three Complete Novels', 'https://images.isbndb.com/covers/28/47/9780517422847.jpg'), + ('0671229427', 'The Second Ring Of Power', 'https://images.isbndb.com/covers/94/29/9780671229429.jpg'), + ('0671230875', 'The Eagle''s Gift', 'https://images.isbndb.com/covers/08/76/9780671230876.jpg'), + ('0671673238', 'The Power Of Silence', 'https://images.isbndb.com/covers/32/39/9780671673239.jpg'), + ('0671492055', 'Fire From Within', 'https://images.isbndb.com/covers/20/52/9780671492052.jpg'), + ('0671218581', 'Tales Of Power', 'https://images.isbndb.com/covers/85/84/9780671218584.jpg'), + ('0671502549', 'Hotel New Hampshire', 'https://images.isbndb.com/covers/25/46/9780671502546.jpg'), + ('0380379783', 'Fletch''s Fortune', 'https://images.isbndb.com/covers/97/81/9780380379781.jpg'), + ('0553566032', 'The Scorpio Illusion', 'https://images.isbndb.com/covers/60/31/9780553566031.jpg'), + ('042507272X', 'God Emperor Dune (Dune Chronicles, Book 4)', 'https://images.isbndb.com/covers/27/21/9780425072721.jpg'), + ('042507160X', 'Dune', 'https://images.isbndb.com/covers/16/01/9780425071601.jpg'), + ('051770689X', 'Gifts From Nature: Ideas & Projects For Every Season', 'https://images.isbndb.com/covers/68/93/9780517706893.jpg'), + ('0440107016', 'Beggarman Thief', 'https://images.isbndb.com/covers/70/19/9780440107019.jpg'), + ('081253073X', 'Tales Of The Flying Mountains', 'https://images.isbndb.com/covers/07/35/9780812530735.jpg'), + ('0671655892', 'Revolt In 2100', 'https://images.isbndb.com/covers/58/91/9780671655891.jpg'), + ('0451452739', '2001: A Space Odyssey', 'https://images.isbndb.com/covers/27/33/9780451452733.jpg'), + ('0553569570', 'The Apocalypse Watch', 'https://images.isbndb.com/covers/95/75/9780553569575.jpg'), + ('0671877410', 'Tran', 'https://images.isbndb.com/covers/74/15/9780671877415.jpg'), + ('0553281798', 'Trevayne', 'https://images.isbndb.com/covers/17/98/9780553281798.jpg'), + ('0156729156', 'The Ponder Heart', 'https://images.isbndb.com/covers/91/54/9780156729154.jpg'), + ('0440500303', 'The Splendid Outcast: Beryl Markham''s African Stories', 'https://images.isbndb.com/covers/03/08/9780440500308.jpg'), + ('1400031257', 'Longitudes And Attitudes: The World In The Age Of Terrorism', 'https://images.isbndb.com/covers/12/52/9781400031252.jpg'), + ('0860917886', 'I, Rigoberta Menchu: An Indian Woman In Guatemala', 'https://images.isbndb.com/covers/78/85/9780860917885.jpg'), + ('0805210474', 'Anti-Semite And Jew: An Exploration Of The Etiology Of Hate', 'https://images.isbndb.com/covers/04/77/9780805210477.jpg'), + ('1931561168', 'Clara Mondschein''s Melancholia', 'https://images.isbndb.com/covers/11/67/9781931561167.jpg'), + ('1573229539', 'Picasso, My Grandfather', 'https://images.isbndb.com/covers/95/31/9781573229531.jpg'), + ('1578194547', 'Happiness', 'https://images.isbndb.com/covers/45/44/9781578194544.jpg'), + ('0684869497', 'The Gardens Of Kyoto: A Novel', 'https://images.isbndb.com/covers/94/90/9780684869490.jpg'), + ('0060937556', 'The Sweetest Dream: A Novel', 'https://images.isbndb.com/covers/75/53/9780060937553.jpg'), + ('0805072772', 'A Death In Texas: A Story Of Race, Murder, And A Small Town''s Struggle For Redemption', 'https://images.isbndb.com/covers/27/78/9780805072778.jpg'), + ('0671224387', 'Blind Ambition: The White House Years', 'https://images.isbndb.com/covers/43/87/9780671224387.jpg'), + ('0805207457', 'On Being A Jewish Feminist', 'https://images.isbndb.com/covers/74/53/9780805207453.jpg'), + ('0767904605', 'Going On Being: Buddhism And The Way Of Change', 'https://images.isbndb.com/covers/46/05/9780767904605.jpg'), + ('1560254505', 'Nothing Sacred: Women Respond To Religious Fundamentalism And Terror (Nation Books)', 'https://images.isbndb.com/covers/45/08/9781560254508.jpg'), + ('081293217X', 'Finding Your Own North Star: Claiming The Life You Were Meant To Live', 'https://images.isbndb.com/covers/21/71/9780812932171.jpg'), + ('0141802812', 'In The Heart Of The Sea', 'https://images.isbndb.com/covers/28/17/9780141802817.jpg'), + ('0679732233', 'The Red Badge Of Courage (Library Of America)', 'https://images.isbndb.com/covers/22/35/9780679732235.jpg'), + ('0375417206', 'Corelli''s Mandolin', 'https://images.isbndb.com/covers/72/07/9780375417207.jpg'), + ('0192815539', 'The Picture Of Dorian Gray (World''s Classics)', 'https://images.isbndb.com/covers/55/38/9780192815538.jpg'), + ('0679735011', 'THE ADVENTURES OF TOM SAWYER', 'https://images.isbndb.com/covers/50/14/9780679735014.jpg'), + ('0875425925', 'Kundalini & The Chakras: Evolution In This Lifetime (Llewellyn''s New Age Series)', 'https://images.isbndb.com/covers/59/24/9780875425924.jpg'), + ('0393087913', 'China Revisited, After Forty-Two Years', 'https://images.isbndb.com/covers/79/18/9780393087918.jpg'), + ('0252062825', 'Studs Lonigan (Prairie State Books)', 'https://images.isbndb.com/covers/28/27/9780252062827.jpg'), + ('0375420762', 'Bayou Farewell: The Rich Life And Tragic Death Of Louisiana''s Cajun Coast', 'https://images.isbndb.com/covers/07/64/9780375420764.jpg'), + ('0877957215', 'Washington Wives', 'https://images.isbndb.com/covers/72/18/9780877957218.jpg'), + ('0802139914', 'Goodbye Tsugumi', 'https://images.isbndb.com/covers/99/17/9780802139917.jpg'), + ('0738205702', 'Ever Is A Long Time: A Journey Into Mississippi''s Dark Past A Memoir', 'https://images.isbndb.com/covers/57/00/9780738205700.jpg'), + ('0743222245', 'Living History', 'https://images.isbndb.com/covers/22/42/9780743222242.jpg'), + ('0971156905', 'The Secret Of The Yamas: A Spiritual Guide To Yoga', 'https://images.isbndb.com/covers/69/06/9780971156906.jpg'), + ('0804106436', 'Oldest Living Confederate Widow Tells All', 'https://images.isbndb.com/covers/64/36/9780804106436.jpg'), + ('0395519462', 'BODY & SOUL', 'https://images.isbndb.com/covers/94/62/9780395519462.jpg'), + ('0452270251', 'The Lost Beatles Interviews', 'https://images.isbndb.com/covers/02/51/9780452270251.jpg'), + ('0449219402', 'Murder At The Pentagon (Capital Crime Mysteries)', 'https://images.isbndb.com/covers/94/09/9780449219409.jpg'), + ('0934211477', 'Tales Of Two Cities: A Persian Memoir', 'https://images.isbndb.com/covers/14/75/9780934211475.jpg'), + ('0385491239', 'Only Twice I''ve Wished For Heaven', 'https://images.isbndb.com/covers/12/35/9780385491235.jpg'), + ('0156027453', 'Sunday Jews', 'https://images.isbndb.com/covers/74/58/9780156027458.jpg'), + ('069452350X', 'Blue Latitudes', 'https://images.isbndb.com/covers/35/04/9780694523504.jpg'), + ('0446691798', 'Nights In Rodanthe', 'https://images.isbndb.com/covers/17/96/9780446691796.jpg'), + ('1883642434', 'My Home Is Far Away: An Autobiographical Novel', 'https://images.isbndb.com/covers/24/33/9781883642433.jpg'), + ('0140086412', 'Later The Same Day (Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/64/16/9780140086416.jpg'), + ('0961035269', 'A Walking Tour Of The Shambles', 'https://images.isbndb.com/covers/52/66/9780961035266.jpg'), + ('0452283906', 'Snow Island', 'https://images.isbndb.com/covers/39/09/9780452283909.jpg'), + ('0060952652', 'Lighten Up!: Free Yourself From Clutter', 'https://images.isbndb.com/covers/26/55/9780060952655.jpg'), + ('0449006581', 'Brothel: Mustang Ranch And Its Women', 'https://images.isbndb.com/covers/65/80/9780449006580.jpg'), + ('185799597X', 'A Guide To Happiness (Phoenix 60p Paperbacks)', 'https://images.isbndb.com/covers/59/78/9781857995978.jpg'), + ('1585670227', 'The Last Kabbalist Of Lisbon', 'https://images.isbndb.com/covers/02/22/9781585670222.jpg'), + ('0743206371', 'Soul Stories', 'https://images.isbndb.com/covers/63/72/9780743206372.jpg'), + ('0814402860', 'SuperMotivation: A Blueprint For Energizing Your Organization From Top To Bottom', 'https://images.isbndb.com/covers/28/63/9780814402863.jpg'), + ('0671526065', 'Forrest Gump', 'https://images.isbndb.com/covers/60/61/9780671526061.jpg'), + ('0446671304', 'Deadline Poet: My Life As A Doggerelist', 'https://images.isbndb.com/covers/13/09/9780446671309.jpg'), + ('038547167X', 'Minding The Body: Women Writers On Body And Soul', 'https://images.isbndb.com/covers/16/71/9780385471671.jpg'), + ('0060913983', 'Proud Shoes: The Story Of An American Family', 'https://images.isbndb.com/covers/39/84/9780060913984.jpg'), + ('0874411033', 'As A Driven Leaf', 'https://images.isbndb.com/covers/10/34/9780874411034.jpg'), + ('0345434471', 'L.A. Requiem (Elvis Cole Novels)', 'https://images.isbndb.com/covers/44/70/9780345434470.jpg'), + ('044661078X', 'Passing Through Paradise', 'https://images.isbndb.com/covers/07/80/9780446610780.jpg'), + ('1575667266', 'Sour Grapes: A Savannah Reid Mystery (Savannah Reid Mysteries)', 'https://images.isbndb.com/covers/72/63/9781575667263.jpg'), + ('1551669412', 'Hot Shot (Stp - Mira)', 'https://images.isbndb.com/covers/94/10/9781551669410.jpg'), + ('1400047943', 'The 5 Patterns Of Extraordinary Careers: The Guide For Achieving Success And Satisfaction (Crown Business Briefings)', 'https://images.isbndb.com/covers/79/49/9781400047949.jpg'), + ('0451205448', 'Bubbles Unbound', 'https://images.isbndb.com/covers/54/45/9780451205445.jpg'), + ('0877142912', 'Ellie''s Choice', 'https://images.isbndb.com/covers/29/11/9780877142911.jpg'), + ('0452284295', 'Cheet (Plume Books)', 'https://images.isbndb.com/covers/42/96/9780452284296.jpg'), + ('0425190749', 'Keepsake Crimes (A Scrapbooking Mystery)', 'https://images.isbndb.com/covers/07/46/9780425190746.jpg'), + ('0060517212', 'If The Slipper Fits', 'https://images.isbndb.com/covers/72/12/9780060517212.jpg'), + ('0060548215', 'If Cooks Could Kil (Angie Amalfi Mysteries)', 'https://images.isbndb.com/covers/82/16/9780060548216.jpg'), + ('0451197550', 'The Hand That Rocks The Ladle (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/75/59/9780451197559.jpg'), + ('159184021X', 'Purple Cow: Transform Your Business By Being Remarkable', 'https://images.isbndb.com/covers/02/13/9781591840213.jpg'), + ('0743442652', 'The Pink Magnolia Club', 'https://images.isbndb.com/covers/26/57/9780743442657.jpg'), + ('0345434137', 'Chicks Rule: The Story Of The Dixie Chicks', 'https://images.isbndb.com/covers/41/35/9780345434135.jpg'), + ('082176845X', 'On Thin Ice', 'https://images.isbndb.com/covers/84/57/9780821768457.jpg'), + ('1575664798', 'Cooked Goose: A Savanna Reid Mystery (Savannah Reid Mysteries)', 'https://images.isbndb.com/covers/47/98/9781575664798.jpg'), + ('0312970757', 'Death In Texas: A True Story Of Marriage, Money, And Murder (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/07/58/9780312970758.jpg'), + ('1575667223', 'Blueberry Muffin Murder (Hannah Swensen Mysteries)', 'https://images.isbndb.com/covers/72/25/9781575667225.jpg'), + ('1575667215', 'Strawberry Shortcake Murder (Hannah Swensen Mysteries)', 'https://images.isbndb.com/covers/72/18/9781575667218.jpg'), + ('0739302213', 'The King Of Torts', 'https://images.isbndb.com/covers/22/17/9780739302217.jpg'), + ('038081918X', 'Getting Lucky (Marine, Book 2)', 'https://images.isbndb.com/covers/91/88/9780380819188.jpg'), + ('037370920X', 'And Baby Makes Six: 9 Months Later (Harlequin Superromance No. 920)', 'https://images.isbndb.com/covers/92/05/9780373709205.jpg'), + ('0373243146', 'Good Morning Stranger (Special Edition, 1314)', 'https://images.isbndb.com/covers/31/43/9780373243143.jpg'), + ('0380816830', 'Something Wild', 'https://images.isbndb.com/covers/68/35/9780380816835.jpg'), + ('0373708513', 'Jessie''s Father (Harlequin Superromance No. 851)', 'https://images.isbndb.com/covers/85/12/9780373708512.jpg'), + ('0425184315', 'Just Desserts', 'https://images.isbndb.com/covers/43/18/9780425184318.jpg'), + ('0380814390', 'Lola Carlyle Reveals All', 'https://images.isbndb.com/covers/43/98/9780380814398.jpg'), + ('0312978723', 'Falling For You', 'https://images.isbndb.com/covers/87/23/9780312978723.jpg'), + ('0380793806', 'Funeral Food (Tory Bauer Mystery)', 'https://images.isbndb.com/covers/38/08/9780380793808.jpg'), + ('1551666189', 'Manhunting (Mira Romance)', 'https://images.isbndb.com/covers/61/81/9781551666181.jpg'), + ('0743219333', 'Baby Catcher: Chronicles Of A Modern Midwife', 'https://images.isbndb.com/covers/93/34/9780743219334.jpg'), + ('0373708661', 'A Message For Abby: Patton''s Daughters (Harlequin Superromance No. 866)', 'https://images.isbndb.com/covers/86/66/9780373708666.jpg'), + ('0373708408', 'If He Could See Me Now (Harlequin Superromance No. 840)', 'https://images.isbndb.com/covers/84/06/9780373708406.jpg'), + ('0671786601', 'To Trust A Stranger', 'https://images.isbndb.com/covers/66/01/9780671786601.jpg'), + ('0446609188', 'Then Comes Marriage', 'https://images.isbndb.com/covers/91/80/9780446609180.jpg'), + ('037344155X', 'Cindy And The Fella / Calling All Glass Slippers', 'https://images.isbndb.com/covers/15/56/9780373441556.jpg'), + ('0505524228', 'Stuck With You (Time Of Your Life)', 'https://images.isbndb.com/covers/42/25/9780505524225.jpg'), + ('0747266395', 'Jinnie', 'https://images.isbndb.com/covers/63/96/9780747266396.jpg'), + ('0553578758', 'A Ghost For Maggie', 'https://images.isbndb.com/covers/87/51/9780553578751.jpg'), + ('0380782340', 'Nobody''s Baby But Mine', 'https://images.isbndb.com/covers/23/45/9780380782345.jpg'), + ('0373166125', 'Wanted: Christmas Mommy Christmas Is For Kids', 'https://images.isbndb.com/covers/61/21/9780373166121.jpg'), + ('0373195419', 'This Kiss (Destiny, Texas) (Harlequin Romance)', 'https://images.isbndb.com/covers/54/11/9780373195411.jpg'), + ('0373291027', 'A Bride For McCain (Harlequin Historicals)', 'https://images.isbndb.com/covers/10/21/9780373291021.jpg'), + ('0849935369', 'The Exchange Student''s Secret (Heather Reed Mystery Series Book 6)', 'https://images.isbndb.com/covers/53/67/9780849935367.jpg'), + ('0373169043', 'Cinderella''s Shoe Size (Harlequin American Romance)', 'https://images.isbndb.com/covers/90/47/9780373169047.jpg'), + ('0373441568', 'Hitched For The Holidays / A Groom In Her Stocking (Harlequin Duets, No. 90)', 'https://images.isbndb.com/covers/15/63/9780373441563.jpg'), + ('0373825412', 'Bride For Daddy (Weddings By Dewilde)', 'https://images.isbndb.com/covers/54/17/9780373825417.jpg'), + ('0671039350', 'Sunflower', 'https://images.isbndb.com/covers/93/56/9780671039356.jpg'), + ('1890768030', 'Secret''s Shadow: The First Cassidy McCabe Mystery', 'https://images.isbndb.com/covers/80/34/9781890768034.jpg'), + ('0312966369', 'Death At Every Stop (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/63/62/9780312966362.jpg'), + ('0312956436', 'Like Mother, Like Son', 'https://images.isbndb.com/covers/64/31/9780312956431.jpg'), + ('0671526677', 'All She Wanted', 'https://images.isbndb.com/covers/66/72/9780671526672.jpg'), + ('0671731866', 'Unfinished Murder: The Capture Of A Serial Rapist', 'https://images.isbndb.com/covers/18/61/9780671731861.jpg'), + ('0821771175', 'Be My Baby Tonight (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/74/9780821771174.jpg'), + ('037316680X', 'Daddy Factor (Harlequin American Romance)', 'https://images.isbndb.com/covers/68/00/9780373166800.jpg'), + ('0373707053', 'The Trouble With Texans: Family Man (Harlequin Superromance No. 705)', 'https://images.isbndb.com/covers/70/58/9780373707058.jpg'), + ('0312971370', 'Soap Opera', 'https://images.isbndb.com/covers/13/73/9780312971373.jpg'), + ('0505524279', 'Baby, Oh Baby! (Time Of Your Life)', 'https://images.isbndb.com/covers/42/70/9780505524270.jpg'), + ('050552497X', 'The Last Male Virgin', 'https://images.isbndb.com/covers/49/73/9780505524973.jpg'), + ('0312981848', 'Record Time', 'https://images.isbndb.com/covers/18/46/9780312981846.jpg'), + ('0373272006', 'The Princess And The Mercenary (Romancing The Crown) (Harlequin Romantic Suspense)', 'https://images.isbndb.com/covers/20/06/9780373272006.jpg'), + ('0373226586', 'Scarlet Vows (Moriah''s Landing, Book 3) (Harlequin Intrigue Series #658)', 'https://images.isbndb.com/covers/65/80/9780373226580.jpg'), + ('0515133868', 'Once Upon A Kiss', 'https://images.isbndb.com/covers/38/68/9780515133868.jpg'), + ('0373217218', 'Mom''s Main Man: Some Kind Of Hero/Cowboy''s Kiss (Harlequin Romance 2-in-1)', 'https://images.isbndb.com/covers/72/12/9780373217212.jpg'), + ('0373710763', 'Child Of Her Dreams (Harlequin Superromance No. 1076)', 'https://images.isbndb.com/covers/07/68/9780373710768.jpg'), + ('1551668270', 'Cold Tea On A Hot Day', 'https://images.isbndb.com/covers/82/77/9781551668277.jpg'), + ('0804119686', 'I Got You, Babe', 'https://images.isbndb.com/covers/96/89/9780804119689.jpg'), + ('037322608X', 'To Protect Their Child (Harlequin Intrigue 608)', 'https://images.isbndb.com/covers/60/85/9780373226085.jpg'), + ('0373226055', 'The Hunt For Hawke''s Daughter (Top Secret Babies, Book 3) (Harlequin Intrigue Series #605)', 'https://images.isbndb.com/covers/60/54/9780373226054.jpg'), + ('0373259786', 'Her Perfect Stranger (The Wrong Bed) (Harlequin Temptation)', 'https://images.isbndb.com/covers/97/86/9780373259786.jpg'), + ('0373790554', 'Take Me (Harlequin Blaze)', 'https://images.isbndb.com/covers/05/55/9780373790555.jpg'), + ('0373226470', 'Accessory To Marriage (Harlequin Intrigue)', 'https://images.isbndb.com/covers/64/74/9780373226474.jpg'), + ('0821773402', 'Reconsidering Riley', 'https://images.isbndb.com/covers/34/06/9780821773406.jpg'), + ('0373834853', 'Meant To Be', 'https://images.isbndb.com/covers/48/53/9780373834853.jpg'), + ('037371047X', 'Babes In Arms: Four Seasons In Firefly Glen (Harlequin Superromance No. 1047)', 'https://images.isbndb.com/covers/04/78/9780373710478.jpg'), + ('0821765221', 'Can''t Take My Eyes Off Of You (Zebra Book)', 'https://images.isbndb.com/covers/52/27/9780821765227.jpg'), + ('0553575066', 'The Scotsman Wore Spurs', 'https://images.isbndb.com/covers/50/64/9780553575064.jpg'), + ('0446403830', 'Wolf In The Shadows (A Sharon Mccone Mystery)', 'https://images.isbndb.com/covers/38/32/9780446403832.jpg'), + ('074342347X', 'The Wildflowers (omnibus): Misty--Star--Jade--Cat', 'https://images.isbndb.com/covers/34/72/9780743423472.jpg'), + ('0312955421', 'Whatever Mother Says...: A True Story Of A Mother, Madness And Murder (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/54/27/9780312955427.jpg'), + ('0373037147', 'The Pregnancy Plan (Maybe Baby)', 'https://images.isbndb.com/covers/71/48/9780373037148.jpg'), + ('0446609005', 'Word', 'https://images.isbndb.com/covers/90/05/9780446609005.jpg'), + ('0671729454', 'If There Be Thorns (Dollanganger Series)', 'https://images.isbndb.com/covers/94/55/9780671729455.jpg'), + ('0671007718', 'Into The Garden (Wildflowers)', 'https://images.isbndb.com/covers/77/13/9780671007713.jpg'), + ('0804117438', 'Fatal Reaction', 'https://images.isbndb.com/covers/74/32/9780804117432.jpg'), + ('1551665506', 'Escape From Cabriz', 'https://images.isbndb.com/covers/55/04/9781551665504.jpg'), + ('0446364819', 'The Stork Club', 'https://images.isbndb.com/covers/48/12/9780446364812.jpg'), + ('0373226780', 'Prince Under Cover (Chicago Confidential #3; Harlequin Intrigue #678)', 'https://images.isbndb.com/covers/67/88/9780373226788.jpg'), + ('0373194870', 'Hunter''S Vow (Harlequin Romance)', 'https://images.isbndb.com/covers/48/72/9780373194872.jpg'), + ('0373226802', 'The Night In Question (Harlequin Intrigue)', 'https://images.isbndb.com/covers/68/01/9780373226801.jpg'), + ('0373441436', 'Anything You Can Do...! / Anchor That Man! (Duets, 77)', 'https://images.isbndb.com/covers/14/33/9780373441433.jpg'), + ('0373441452', 'Duets 2 - In - 1 #79 (Sexy, Single And Searching / Eager, Eligible & Alaskan) (Harlequin Duets)', 'https://images.isbndb.com/covers/14/57/9780373441457.jpg'), + ('0380781565', 'Home Again, Home Again (E. J. Pugh Mysteries)', 'https://images.isbndb.com/covers/15/60/9780380781560.jpg'), + ('9871106181', 'El Club Dumas (Punto De Lectura) (Spanish Edition)', 'https://images.isbndb.com/covers/61/89/9789871106189.jpg'), + ('9507682074', 'El Retrato De Dorian Gray / The Picture Of Dorian Gray (Spanish Edition)', 'https://images.isbndb.com/covers/20/70/9789507682070.jpg'), + ('0451528522', 'The Invisible Man (Signet Classics)', 'https://images.isbndb.com/covers/85/20/9780451528520.jpg'), + ('0803728719', 'Get On Out Of Here, Philip Hall', 'https://images.isbndb.com/covers/87/14/9780803728714.jpg'), + ('0803760965', 'Philip Hall Likes Me, I Reckon Maybe', 'https://images.isbndb.com/covers/09/67/9780803760967.jpg'), + ('0553482939', 'RUMORS AT THE RINK (Silver Blades)', 'https://images.isbndb.com/covers/29/35/9780553482935.jpg'), + ('0553483579', 'A New Move (Silver Blades)', 'https://images.isbndb.com/covers/35/74/9780553483574.jpg'), + ('0553482890', 'The Ice Princess (Silver Blades)', 'https://images.isbndb.com/covers/28/98/9780553482898.jpg'), + ('0061062081', 'Graduation Day (Beverly Hills, 90210)', 'https://images.isbndb.com/covers/20/87/9780061062087.jpg'), + ('0061067865', 'Beverly Hills 90210: ''Tis The Season', 'https://images.isbndb.com/covers/78/60/9780061067860.jpg'), + ('0061061441', 'Beverly Hills 90210: Two Hearts', 'https://images.isbndb.com/covers/14/48/9780061061448.jpg'), + ('006106727X', 'Beverly Hills 90210: Fantasies', 'https://images.isbndb.com/covers/72/73/9780061067273.jpg'), + ('0440943930', 'The Kestrel', 'https://images.isbndb.com/covers/39/38/9780440943938.jpg'), + ('0440997313', 'Westmark (The Westmark Trilogy)', 'https://images.isbndb.com/covers/73/13/9780440997313.jpg'), + ('0553264753', 'Shadow Of A Unicorn', 'https://images.isbndb.com/covers/47/53/9780553264753.jpg'), + ('0393311465', 'Voyage In The Dark (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/14/64/9780393311464.jpg'), + ('0140183078', 'The Go-Between (Penguin Twentieth-Century Classics)', 'https://images.isbndb.com/covers/30/78/9780140183078.jpg'), + ('0192815555', 'Robinson Crusoe (World''s Classics)', 'https://images.isbndb.com/covers/55/52/9780192815552.jpg'), + ('0449208648', 'A Palm For Mrs. Pollifax', 'https://images.isbndb.com/covers/86/49/9780449208649.jpg'), + ('0449214281', 'Ragtime', 'https://images.isbndb.com/covers/42/82/9780449214282.jpg'), + ('044918336X', 'Mrs. Pollifax, Innocent Tourist (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/33/66/9780449183366.jpg'), + ('0449150046', 'Mrs. Pollifax And The Lion Killer (Mrs. Pollifax Mysteries)', 'https://images.isbndb.com/covers/00/47/9780449150047.jpg'), + ('0140104771', 'The Suspect (Crime, Penguin)', 'https://images.isbndb.com/covers/47/76/9780140104776.jpg'), + ('0671827774', 'Happy All The Time', 'https://images.isbndb.com/covers/77/79/9780671827779.jpg'), + ('0393000567', 'Wide Sargasso Sea: A Novel', 'https://images.isbndb.com/covers/05/66/9780393000566.jpg'), + ('0030074312', 'The Prydain Chronicles', 'https://images.isbndb.com/covers/43/18/9780030074318.jpg'), + ('0553211668', 'Candide (Bantam Classics)', 'https://images.isbndb.com/covers/16/65/9780553211665.jpg'), + ('0394550846', 'Perfume: The Story Of A Murderer', 'https://images.isbndb.com/covers/08/48/9780394550848.jpg'), + ('0679737383', 'Anywhere But Here', 'https://images.isbndb.com/covers/73/84/9780679737384.jpg'), + ('1878424084', 'The 12 Stages Of Healing: A Network Approach To Wholeness', 'https://images.isbndb.com/covers/40/82/9781878424082.jpg'), + ('0140430032', 'Great Expectations', 'https://images.isbndb.com/covers/00/35/9780140430035.jpg'), + ('0670032670', 'The Forest Lover', 'https://images.isbndb.com/covers/26/79/9780670032679.jpg'), + ('0060929952', 'Five Fortunes', 'https://images.isbndb.com/covers/99/54/9780060929954.jpg'), + ('0141001682', 'Life Is So Good: One Man''s Extraordinary Journey Through The 20th Century And How He Learned To Read At Age 98', 'https://images.isbndb.com/covers/16/85/9780141001685.jpg'), + ('0060937742', 'In The Country Of The Young', 'https://images.isbndb.com/covers/77/44/9780060937744.jpg'), + ('0060913568', 'The Dance Of Anger: A Woman''s Guide To Changing The Patterns Of Intimate Relationships', 'https://images.isbndb.com/covers/35/64/9780060913564.jpg'), + ('0345439163', 'How Much Joy Can You Stand : A Creative Guide To Facing Your Fears And Making Your Dreams Come True (Revised, Updated, And With New Chapters)', 'https://images.isbndb.com/covers/91/61/9780345439161.jpg'), + ('0972100539', 'The Miracle Of Death', 'https://images.isbndb.com/covers/05/33/9780972100533.jpg'), + ('1580632068', 'Be Loved For Who You Really Are: How The Differences Between Men And Women Can Be Turned Into The Source Of The Very Best Romance You''ll Ever Know', 'https://images.isbndb.com/covers/20/65/9781580632065.jpg'), + ('0425140040', 'For My Ladys Heart', 'https://images.isbndb.com/covers/00/48/9780425140048.jpg'), + ('0062701649', 'Never Call Your Broker On Monday', 'https://images.isbndb.com/covers/16/40/9780062701640.jpg'), + ('0553277944', 'The Widow''s Club', 'https://images.isbndb.com/covers/79/44/9780553277944.jpg'), + ('1591251478', 'Empire: A Tale Of Obsession, Betrayal, And The Battle For An American Icon (Wiley Audio)', 'https://images.isbndb.com/covers/14/77/9781591251477.jpg'), + ('0887307876', 'The Dilbert Principle: A Cubicle''s-Eye View Of Bosses, Meetings, Management Fads & Other Workplace Afflictions', 'https://images.isbndb.com/covers/78/74/9780887307874.jpg'), + ('1556521952', 'The Book Group Book: A Thoughtful Guide To Forming And Enjoying A Stimulating Book Discussion Group', 'https://images.isbndb.com/covers/19/59/9781556521959.jpg'), + ('1582700230', 'The Holistic Animal Handbook: A Guidebook To Nutrition, Health, And Communication', 'https://images.isbndb.com/covers/02/36/9781582700236.jpg'), + ('1567403263', 'Cloud Nine', 'https://images.isbndb.com/covers/32/68/9781567403268.jpg'), + ('0449002268', 'News Of The Spirit (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/22/61/9780449002261.jpg'), + ('0205187382', 'Guide To Rapid Revision', 'https://images.isbndb.com/covers/73/86/9780205187386.jpg'), + ('0553345834', 'What They Don''t Teach You At Harvard Business School: Notes From A Street-Smart Executive', 'https://images.isbndb.com/covers/58/34/9780553345834.jpg'), + ('0970866402', 'The Cancer Breakthrough You''ve Never Heard Of', 'https://images.isbndb.com/covers/64/00/9780970866400.jpg'), + ('039592684X', 'The Best American Short Stories 1999', 'https://images.isbndb.com/covers/68/40/9780395926840.jpg'), + ('159129021X', 'Triangular Reflections', 'https://images.isbndb.com/covers/02/16/9781591290216.jpg'), + ('0805058001', 'Aveda Rituals : A Daily Guide To Natural Health And Beauty', 'https://images.isbndb.com/covers/80/00/9780805058000.jpg'), + ('0684848376', 'FOOD AND WHINE: Confessions Of A New Millennium Mom', 'https://images.isbndb.com/covers/83/72/9780684848372.jpg'), + ('0761119396', 'Three Black Skirts : All You Need To Survive', 'https://images.isbndb.com/covers/93/95/9780761119395.jpg'), + ('0836279077', 'The Best Of Dear Abby', 'https://images.isbndb.com/covers/90/78/9780836279078.jpg'), + ('0938756605', 'The Disobedience Of The Daughter Of The Sun: Ecstasy And Time', 'https://images.isbndb.com/covers/66/06/9780938756606.jpg'), + ('0452282691', 'Motiba''s Tattoos', 'https://images.isbndb.com/covers/26/98/9780452282698.jpg'), + ('0679752927', 'My Own Country: A Doctor''s Story', 'https://images.isbndb.com/covers/29/29/9780679752929.jpg'), + ('1580631797', 'Linda McCartney: A Portrait', 'https://images.isbndb.com/covers/17/92/9781580631792.jpg'), + ('006091646X', 'The Dance Of Intimacy', 'https://images.isbndb.com/covers/64/66/9780060916466.jpg'), + ('0883964368', 'Light A Candle: A Whimsical & Uplifting Look At Life From The Pen & Brush Of Kristin', 'https://images.isbndb.com/covers/43/61/9780883964361.jpg'), + ('0970351704', 'Making Scenes', 'https://images.isbndb.com/covers/17/08/9780970351708.jpg'), + ('031220387X', 'The Third Heiress', 'https://images.isbndb.com/covers/38/70/9780312203870.jpg'), + ('0452281636', 'Ralph''s Party: A Novel', 'https://images.isbndb.com/covers/16/39/9780452281639.jpg'), + ('0425111911', 'Billion Dollar Sure', 'https://images.isbndb.com/covers/19/18/9780425111918.jpg'), + ('080410946X', 'Object Lessons', 'https://images.isbndb.com/covers/94/68/9780804109468.jpg'), + ('0312289189', 'Queenmaker: A Novel Of King David''s Queen', 'https://images.isbndb.com/covers/91/88/9780312289188.jpg'), + ('0743422449', 'Mercy', 'https://images.isbndb.com/covers/24/44/9780743422444.jpg'), + ('0425176339', 'The Brass Dolphin', 'https://images.isbndb.com/covers/63/37/9780425176337.jpg'), + ('0446359203', 'Carrion Comfort', 'https://images.isbndb.com/covers/92/07/9780446359207.jpg'), + ('1893705153', 'Ordering From The Cosmic Kitchen: The Essential Guide To Powerful, Nourishing Affirmations', 'https://images.isbndb.com/covers/51/59/9781893705159.jpg'), + ('0440206529', 'Blessings', 'https://images.isbndb.com/covers/65/21/9780440206521.jpg'), + ('0312962258', 'Red Leaves', 'https://images.isbndb.com/covers/22/58/9780312962258.jpg'), + ('0972051007', 'And Howls For Us To Follow: A Book Of Poems', 'https://images.isbndb.com/covers/10/02/9780972051002.jpg'), + ('0970997582', 'The Other Side Of The Moon', 'https://images.isbndb.com/covers/75/86/9780970997586.jpg'), + ('0525933654', 'Franklin''s Crossing: 2', 'https://images.isbndb.com/covers/36/56/9780525933656.jpg'), + ('0030554381', 'Things Fall Apart: With Connections', 'https://images.isbndb.com/covers/43/84/9780030554384.jpg'), + ('0741408155', 'Curtain Call', 'https://images.isbndb.com/covers/81/50/9780741408150.jpg'), + ('0811813401', 'Beauty', 'https://images.isbndb.com/covers/34/02/9780811813402.jpg'), + ('0452279593', 'The Magician''s Wife (A William Abrahams Book)', 'https://images.isbndb.com/covers/95/99/9780452279599.jpg'), + ('096146206X', 'Luna Yoga : Vital Fertility And Sexuality', 'https://images.isbndb.com/covers/20/62/9780961462062.jpg'), + ('0671795694', 'Indecent Proposal: Indecent Proposal', 'https://images.isbndb.com/covers/56/96/9780671795696.jpg'), + ('1552790401', 'The Total Man: A Complete Guide To Marital Bliss', 'https://images.isbndb.com/covers/04/03/9781552790403.jpg'), + ('0800757769', 'Whirlpool (Julesburg Mystery Series #1)', 'https://images.isbndb.com/covers/77/62/9780800757762.jpg'), + ('0312978383', 'Winter Solstice', 'https://images.isbndb.com/covers/83/89/9780312978389.jpg'), + ('051511779X', 'Born In Shame (Born In Trilogy, Book 3)', 'https://images.isbndb.com/covers/77/90/9780515117790.jpg'), + ('055358264X', 'Dream Country', 'https://images.isbndb.com/covers/26/42/9780553582642.jpg'), + ('0380978091', 'The House Of Gentle Men', 'https://images.isbndb.com/covers/80/90/9780380978090.jpg'), + ('0452271657', 'Singing Songs: A Novel', 'https://images.isbndb.com/covers/16/54/9780452271654.jpg'), + ('0451175123', 'The Fountainhead: 50th Anniversary Edition', 'https://images.isbndb.com/covers/51/20/9780451175120.jpg'), + ('0380756250', 'Once A Princess', 'https://images.isbndb.com/covers/62/54/9780380756254.jpg'), + ('0312420323', 'A Good House: A Novel', 'https://images.isbndb.com/covers/03/21/9780312420321.jpg'), + ('0972386602', 'Divinely Inspired: Spiritual Awakening Of A Soul.', 'https://images.isbndb.com/covers/66/09/9780972386609.jpg'), + ('0060924802', 'Tales Of The City (Tales Of The City Series)', 'https://images.isbndb.com/covers/48/05/9780060924805.jpg'), + ('037570910X', 'The Feast Of Love: A Novel', 'https://images.isbndb.com/covers/91/04/9780375709104.jpg'), + ('0142003514', 'Coffee, Tea Or Me? The Uninhibited Memoirs Of Two Airline Stewardesses', 'https://images.isbndb.com/covers/35/10/9780142003510.jpg'), + ('0394561120', 'Sleeping Arrangements', 'https://images.isbndb.com/covers/11/27/9780394561127.jpg'), + ('1574900684', 'A Cottage In Portugal', 'https://images.isbndb.com/covers/06/82/9781574900682.jpg'), + ('0312186924', 'The Jade Peony', 'https://images.isbndb.com/covers/69/20/9780312186920.jpg'), + ('0440123747', 'The Exiles (The Australians, Vol. 1)', 'https://images.isbndb.com/covers/37/43/9780440123743.jpg'), + ('0688158129', 'The Pact: A Love Story', 'https://images.isbndb.com/covers/81/25/9780688158125.jpg'), + ('0312119305', 'The Palace Thief', 'https://images.isbndb.com/covers/93/00/9780312119300.jpg'), + ('087905283X', 'Wearing Dad''s Head', 'https://images.isbndb.com/covers/28/36/9780879052836.jpg'), + ('0316895245', 'In The Hand Of Dante: A Novel', 'https://images.isbndb.com/covers/52/48/9780316895248.jpg'), + ('0393308499', 'The Miracle Game', 'https://images.isbndb.com/covers/84/95/9780393308495.jpg'), + ('0312270933', 'Shame: A Novel', 'https://images.isbndb.com/covers/09/33/9780312270933.jpg'), + ('0679744665', 'The Moor''s Last Sigh', 'https://images.isbndb.com/covers/46/65/9780679744665.jpg'), + ('0452269865', 'Black Water (Contemporary Fiction, Plume)', 'https://images.isbndb.com/covers/98/66/9780452269866.jpg'), + ('0385264666', 'Palace Walk: The Cairo Trilogy, Volume 1', 'https://images.isbndb.com/covers/46/62/9780385264662.jpg'), + ('0060927569', 'High Tide In Tucson: Essays From Now Or Never', 'https://images.isbndb.com/covers/75/61/9780060927561.jpg'), + ('0140424385', 'The Canterbury Tales (Penguin Classics)', 'https://images.isbndb.com/covers/43/86/9780140424386.jpg'), + ('0679457852', 'Visitors: A Novel', 'https://images.isbndb.com/covers/78/55/9780679457855.jpg'), + ('0440167361', 'The Other', 'https://images.isbndb.com/covers/73/65/9780440167365.jpg'), + ('0140157379', 'Haroun And The Sea Of Stories', 'https://images.isbndb.com/covers/73/76/9780140157376.jpg'), + ('0140442618', 'Timaeus And Critias (Penguin Classics)', 'https://images.isbndb.com/covers/26/18/9780140442618.jpg'), + ('0884191338', 'Bruchko', 'https://images.isbndb.com/covers/13/39/9780884191339.jpg'), + ('0340165634', 'Nethergate', 'https://images.isbndb.com/covers/56/38/9780340165638.jpg'), + ('0891902309', 'The Town House', 'https://images.isbndb.com/covers/23/00/9780891902300.jpg'), + ('0449237923', 'The House At Old Vine', 'https://images.isbndb.com/covers/79/22/9780449237922.jpg'), + ('0064473511', 'A Tale Of Time City', 'https://images.isbndb.com/covers/35/14/9780064473514.jpg'), + ('0786704799', 'Oscar Wilde : Including My Memories Of Oscar Wilde By George Bernard Shaw', 'https://images.isbndb.com/covers/47/98/9780786704798.jpg'), + ('0385721765', 'Swimming Toward The Ocean: A Novel', 'https://images.isbndb.com/covers/17/69/9780385721769.jpg'), + ('0394736656', 'Herland: A Lost Feminist Utopian Novel', 'https://images.isbndb.com/covers/66/55/9780394736655.jpg'), + ('0316196614', 'This Body: A Novel Of Reincarnation', 'https://images.isbndb.com/covers/66/11/9780316196611.jpg'), + ('0451526562', 'A Tale Of Two Cities (Signet Classics)', 'https://images.isbndb.com/covers/65/64/9780451526564.jpg'), + ('0553210165', 'Hard Times (Bantam Classics)', 'https://images.isbndb.com/covers/01/63/9780553210163.jpg'), + ('0787119784', 'Alice In Wonderland: Including Alice''s Adventures In Wonderland And Through The Looking-glass', 'https://images.isbndb.com/covers/97/82/9780787119782.jpg'), + ('0060912529', 'Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/25/29/9780060912529.jpg'), + ('0393314073', 'The Eleven Million Mile High Dancer (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/40/76/9780393314076.jpg'), + ('0672520885', 'Sanya: My Life With Aleksandr Solzhenitsyn', 'https://images.isbndb.com/covers/08/84/9780672520884.jpg'), + ('1577656954', 'Moby Dick (Great Illustrated Classics (Abdo))', 'https://images.isbndb.com/covers/69/51/9781577656951.jpg'), + ('0451521897', 'Treasure Island (Signet Classics)', 'https://images.isbndb.com/covers/18/97/9780451521897.jpg'), + ('0553273221', 'April Morning', 'https://images.isbndb.com/covers/32/29/9780553273229.jpg'), + ('0590422677', 'Avalanche', 'https://images.isbndb.com/covers/26/73/9780590422673.jpg'), + ('0671646990', 'High Marks For Malice (Nancy Drew Files, Case 32)', 'https://images.isbndb.com/covers/69/98/9780671646998.jpg'), + ('0679445102', 'A Long Fatal Love Chase', 'https://images.isbndb.com/covers/51/04/9780679445104.jpg'), + ('0440156998', 'Mazes & Monsters', 'https://images.isbndb.com/covers/69/94/9780440156994.jpg'), + ('0425158632', 'Executive Orders (Jack Ryan)', 'https://images.isbndb.com/covers/86/30/9780425158630.jpg'), + ('0449237575', 'Menfreya In Morning', 'https://images.isbndb.com/covers/75/71/9780449237571.jpg'), + ('0140444270', 'On War (Penguin Classics)', 'https://images.isbndb.com/covers/42/78/9780140444278.jpg'), + ('0742628191', 'The Phantom ''Rickshaw And Other Tales (Collected Works Of Rudyard Kipling)', 'https://images.isbndb.com/covers/81/99/9780742628199.jpg'), + ('0812963741', 'Troublemaker:: One Man''s Crusade Against China''s Cruelty', 'https://images.isbndb.com/covers/37/48/9780812963748.jpg'), + ('0192825232', 'The Mysteries Of Udolpho (Oxford World''s Classics)', 'https://images.isbndb.com/covers/52/30/9780192825230.jpg'), + ('042511306X', 'The Sea King''s Daughter', 'https://images.isbndb.com/covers/30/66/9780425113066.jpg'), + ('2830202813', 'Bride Of Pendorric', 'https://images.isbndb.com/covers/28/16/9782830202816.jpg'), + ('0030119502', 'Castle Of Otranto', 'https://images.isbndb.com/covers/95/07/9780030119507.jpg'), + ('0380017997', 'Lady Oracle', 'https://images.isbndb.com/covers/79/97/9780380017997.jpg'), + ('0449207439', 'Dream Of Orchids', 'https://images.isbndb.com/covers/74/37/9780449207437.jpg'), + ('0671755064', 'Shampoo Planet', 'https://images.isbndb.com/covers/50/65/9780671755065.jpg'), + ('0590424564', 'Trick Or Treat', 'https://images.isbndb.com/covers/45/61/9780590424561.jpg'), + ('0380775506', 'Promise Me Heaven', 'https://images.isbndb.com/covers/55/07/9780380775507.jpg'), + ('0515116386', 'Texas Kiss (Wildflower)', 'https://images.isbndb.com/covers/63/80/9780515116380.jpg'), + ('0380754029', 'Renegade Love', 'https://images.isbndb.com/covers/40/21/9780380754021.jpg'), + ('1557739404', 'Heaven On Earth (Diamond)', 'https://images.isbndb.com/covers/94/07/9781557739407.jpg'), + ('0843941790', 'Golden Derams', 'https://images.isbndb.com/covers/17/91/9780843941791.jpg'), + ('0440206499', 'All My Heart Can Hold', 'https://images.isbndb.com/covers/64/91/9780440206491.jpg'), + ('0843935391', 'Treasures Of The Heart', 'https://images.isbndb.com/covers/53/94/9780843935394.jpg'), + ('0821754084', 'Endless Night', 'https://images.isbndb.com/covers/40/85/9780821754085.jpg'), + ('0843935405', 'Reluctant Lovers', 'https://images.isbndb.com/covers/54/00/9780843935400.jpg'), + ('0380778335', 'Promise Me', 'https://images.isbndb.com/covers/83/31/9780380778331.jpg'), + ('0821746545', 'Tender Heart (Zebra Lovegram Historical Romance)', 'https://images.isbndb.com/covers/65/47/9780821746547.jpg'), + ('0446365262', 'The Searching Hearts', 'https://images.isbndb.com/covers/52/60/9780446365260.jpg'), + ('0821766430', 'My Angel', 'https://images.isbndb.com/covers/64/39/9780821766439.jpg'), + ('0380775794', 'Wildfire', 'https://images.isbndb.com/covers/57/98/9780380775798.jpg'), + ('0380898802', 'Reckless Yearning', 'https://images.isbndb.com/covers/88/00/9780380898800.jpg'), + ('0425132048', 'Eyes Of Prey', 'https://images.isbndb.com/covers/20/43/9780425132043.jpg'), + ('0061083259', 'Dreamcatcher', 'https://images.isbndb.com/covers/32/59/9780061083259.jpg'), + ('0446613665', 'License To Thrill', 'https://images.isbndb.com/covers/36/68/9780446613668.jpg'), + ('0671786466', 'Paradise County', 'https://images.isbndb.com/covers/64/65/9780671786465.jpg'), + ('0446606189', 'Cat & Mouse (Alex Cross)', 'https://images.isbndb.com/covers/61/89/9780446606189.jpg'), + ('0743456181', 'Almost Like Being In Love (Lost Texas Hearts, Book 2)', 'https://images.isbndb.com/covers/61/80/9780743456180.jpg'), + ('0380819201', 'Shadow Dance', 'https://images.isbndb.com/covers/92/01/9780380819201.jpg'), + ('0821769332', 'In Too Deep (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/93/31/9780821769331.jpg'), + ('1551665042', 'More Than You Know', 'https://images.isbndb.com/covers/50/47/9781551665047.jpg'), + ('0515127108', 'Sweet Hearts', 'https://images.isbndb.com/covers/71/02/9780515127102.jpg'), + ('0440215994', 'The Senator''s Wife', 'https://images.isbndb.com/covers/59/98/9780440215998.jpg'), + ('0440235782', 'My Spy', 'https://images.isbndb.com/covers/57/81/9780440235781.jpg'), + ('0449146448', 'Picture Postcard', 'https://images.isbndb.com/covers/64/46/9780449146446.jpg'), + ('0440237602', 'Code Name: Nanny', 'https://images.isbndb.com/covers/76/00/9780440237600.jpg'), + ('0425196852', 'Dangerous Curves (Berkley Sensation)', 'https://images.isbndb.com/covers/68/54/9780425196854.jpg'), + ('0373218095', 'Two By Twilight (2 Novels In 1)', 'https://images.isbndb.com/covers/80/97/9780373218097.jpg'), + ('0446612944', 'Tall Dark And Cajun', 'https://images.isbndb.com/covers/29/44/9780446612944.jpg'), + ('0445206578', 'Gift Of Fire', 'https://images.isbndb.com/covers/65/71/9780445206571.jpg'), + ('0786889691', 'The Blue Hour', 'https://images.isbndb.com/covers/96/93/9780786889693.jpg'), + ('0380780038', 'Taken By Storm', 'https://images.isbndb.com/covers/00/37/9780380780037.jpg'), + ('0380793393', 'The Mackenzies: Jake (Mackenzies, #6)', 'https://images.isbndb.com/covers/33/96/9780380793396.jpg'), + ('155166951X', 'What The Lady Wants', 'https://images.isbndb.com/covers/95/19/9781551669519.jpg'), + ('0786016418', 'Kiss Her Goodbye', 'https://images.isbndb.com/covers/64/19/9780786016419.jpg'), + ('0804119503', 'The Trouble With Mary', 'https://images.isbndb.com/covers/95/04/9780804119504.jpg'), + ('0380711532', 'Don''t Cry Now', 'https://images.isbndb.com/covers/15/36/9780380711536.jpg'), + ('0440222877', 'Missing Pieces', 'https://images.isbndb.com/covers/28/73/9780440222873.jpg'), + ('0821772228', 'Green Calder Grass (Calder Family Saga)', 'https://images.isbndb.com/covers/22/25/9780821772225.jpg'), + ('0061044407', 'Liar: An Irene Kelly Mystery', 'https://images.isbndb.com/covers/44/03/9780061044403.jpg'), + ('0821746170', 'Illusions', 'https://images.isbndb.com/covers/61/72/9780821746172.jpg'), + ('0445409169', 'The Shape Of Dread', 'https://images.isbndb.com/covers/91/63/9780445409163.jpg'), + ('0380792206', 'Night Kills', 'https://images.isbndb.com/covers/22/07/9780380792207.jpg'), + ('0590673203', 'Beware Of The Purple Peanut Butter (Give Yourself Goosebumps, No 6)', 'https://images.isbndb.com/covers/32/04/9780590673204.jpg'), + ('059067319X', 'Night In Werewolf Woods (Give Yourself Goosebumps)', 'https://images.isbndb.com/covers/31/98/9780590673198.jpg'), + ('0446612812', 'Have You Seen Her?', 'https://images.isbndb.com/covers/28/14/9780446612814.jpg'), + ('0821770802', 'Can''t Stop Loving You (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/08/01/9780821770801.jpg'), + ('0821772139', 'Lady Killer', 'https://images.isbndb.com/covers/21/33/9780821772133.jpg'), + ('1551666960', 'The Delaney Woman', 'https://images.isbndb.com/covers/69/69/9781551666969.jpg'), + ('0743477294', 'French Twist', 'https://images.isbndb.com/covers/72/91/9780743477291.jpg'), + ('1551664267', 'Eleventh Hour', 'https://images.isbndb.com/covers/42/62/9781551664262.jpg'), + ('0553803409', 'Firestorm', 'https://images.isbndb.com/covers/34/02/9780553803402.jpg'), + ('074320607X', 'Nighttime Is My Time', 'https://images.isbndb.com/covers/60/75/9780743206075.jpg'), + ('0060514930', 'Dead Ringer', 'https://images.isbndb.com/covers/49/38/9780060514938.jpg'), + ('0446612510', 'The Fourth Perimeter', 'https://images.isbndb.com/covers/25/17/9780446612517.jpg'), + ('1551669455', 'Deadly Grace', 'https://images.isbndb.com/covers/94/58/9781551669458.jpg'), + ('0553581023', 'Follow The Stars Home', 'https://images.isbndb.com/covers/10/27/9780553581027.jpg'), + ('0425192784', 'Witching Moon (The Moon Series, Book 3)', 'https://images.isbndb.com/covers/27/88/9780425192788.jpg'), + ('0345319281', 'Garfield Makes It Big (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/92/89/9780345319289.jpg'), + ('0345318056', 'Garfield Loses His Feet (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/80/53/9780345318053.jpg'), + ('0345312716', 'Garfield Tips The Scales (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/27/16/9780345312716.jpg'), + ('0345312260', 'Garfield Sits Around The House', 'https://images.isbndb.com/covers/22/66/9780345312266.jpg'), + ('034530912X', 'Garfield Eats His Heart Out', 'https://images.isbndb.com/covers/91/29/9780345309129.jpg'), + ('0345307127', 'Garfield Takes The Cake', 'https://images.isbndb.com/covers/71/25/9780345307125.jpg'), + ('0345302621', 'Garfield Weighs In: His Fourth Book', 'https://images.isbndb.com/covers/26/25/9780345302625.jpg'), + ('0345287797', 'Garfield At Large', 'https://images.isbndb.com/covers/77/93/9780345287793.jpg'), + ('0440225043', 'The Midnight Hour', 'https://images.isbndb.com/covers/50/41/9780440225041.jpg'), + ('0373255632', 'Manhunting (Harlequin Temptation)', 'https://images.isbndb.com/covers/56/34/9780373255634.jpg'), + ('1551661535', 'Midnight Rainbow', 'https://images.isbndb.com/covers/15/37/9781551661537.jpg'), + ('0671000527', 'The Secret Of Candlelight Inn (Nancy Drew Mystery #139)', 'https://images.isbndb.com/covers/05/23/9780671000523.jpg'), + ('0553802542', 'Thursday''s Child', 'https://images.isbndb.com/covers/25/42/9780553802542.jpg'), + ('0671786539', 'To Trust A Stranger', 'https://images.isbndb.com/covers/65/33/9780671786533.jpg'), + ('0671034421', 'Open Season', 'https://images.isbndb.com/covers/44/29/9780671034429.jpg'), + ('0802775829', 'Nothing But The Night', 'https://images.isbndb.com/covers/58/25/9780802775825.jpg'), + ('0380807122', 'Baby, Don''t Go', 'https://images.isbndb.com/covers/71/23/9780380807123.jpg'), + ('1551665867', 'Sacred Trust', 'https://images.isbndb.com/covers/58/63/9781551665863.jpg'), + ('0380807149', 'All Shook Up', 'https://images.isbndb.com/covers/71/47/9780380807147.jpg'), + ('0821771450', 'Night Moves (Zebra Romantic Suspense)', 'https://images.isbndb.com/covers/14/57/9780821771457.jpg'), + ('0380795116', 'Baby, I''m Yours', 'https://images.isbndb.com/covers/51/16/9780380795116.jpg'), + ('0380795124', 'Be My Baby', 'https://images.isbndb.com/covers/51/23/9780380795123.jpg'), + ('0060539836', 'Kill The Competition', 'https://images.isbndb.com/covers/98/32/9780060539832.jpg'), + ('0671567705', 'White Hot (Pocket Books Romance)', 'https://images.isbndb.com/covers/77/05/9780671567705.jpg'), + ('0590448862', 'Fabulous Facts About The 50 States', 'https://images.isbndb.com/covers/88/64/9780590448864.jpg'), + ('0671019295', 'The Nancy Drew Files: The Wrong Chemistry / Out Of Bounds / Flirting With Danger', 'https://images.isbndb.com/covers/92/97/9780671019297.jpg'), + ('0380800381', 'Sleepless In Montana', 'https://images.isbndb.com/covers/03/84/9780380800384.jpg'), + ('0373072937', 'Borrowed Angel (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/29/34/9780373072934.jpg'), + ('1551665360', 'Trust No One', 'https://images.isbndb.com/covers/53/68/9781551665368.jpg'), + ('0553237667', 'Member Of The Wedding', 'https://images.isbndb.com/covers/76/65/9780553237665.jpg'), + ('1879960109', 'Making Face, Making Soul/Haciendo Caras: Creative And Critical Perspectives By Feminists Of Color', 'https://images.isbndb.com/covers/01/07/9781879960107.jpg'), + ('0684865114', 'The Restraint Of Beasts', 'https://images.isbndb.com/covers/51/19/9780684865119.jpg'), + ('0465015328', 'The Custody Wars: Why Children Are Losing The Legal Battle--and What We Can Do About It', 'https://images.isbndb.com/covers/53/20/9780465015320.jpg'), + ('0553272470', 'Summer Of My German Soldier', 'https://images.isbndb.com/covers/24/75/9780553272475.jpg'), + ('0316955256', 'The Glory: A Novel', 'https://images.isbndb.com/covers/52/56/9780316955256.jpg'), + ('0446603392', 'Strange Highways', 'https://images.isbndb.com/covers/33/93/9780446603393.jpg'), + ('055321490X', 'Jacob''s Room', 'https://images.isbndb.com/covers/49/01/9780553214901.jpg'), + ('0064407713', 'Buried Onions', 'https://images.isbndb.com/covers/77/17/9780064407717.jpg'), + ('0374525080', 'Messages From My Father: A Memoir', 'https://images.isbndb.com/covers/50/88/9780374525088.jpg'), + ('0399139540', 'Debt Of Honor', 'https://images.isbndb.com/covers/95/43/9780399139543.jpg'), + ('0385315236', 'The Horse Whisperer', 'https://images.isbndb.com/covers/52/34/9780385315234.jpg'), + ('0446520950', 'Total Control', 'https://images.isbndb.com/covers/09/59/9780446520959.jpg'), + ('014005829X', 'East Of Eden', 'https://images.isbndb.com/covers/82/91/9780140058291.jpg'), + ('0312186142', 'Death In Cyprus', 'https://images.isbndb.com/covers/61/42/9780312186142.jpg'), + ('0446523437', 'Any Given Day: The Life And Times Of Jessie Lee Brown Foveaux', 'https://images.isbndb.com/covers/34/31/9780446523431.jpg'), + ('0064471861', 'Parrot In The Oven: Mi Vida', 'https://images.isbndb.com/covers/18/62/9780064471862.jpg'), + ('006095129X', 'De Amor Y De Sombra', 'https://images.isbndb.com/covers/12/90/9780060951290.jpg'), + ('0553256130', 'Goodbye, Mr. Chips', 'https://images.isbndb.com/covers/61/30/9780553256130.jpg'), + ('059042792X', 'My Brother Sam Is Dead (A Newberry Honor Book)', 'https://images.isbndb.com/covers/79/20/9780590427920.jpg'), + ('060980149X', 'La Ley Del Amor', 'https://images.isbndb.com/covers/14/99/9780609801499.jpg'), + ('0671502336', 'Catch-22', 'https://images.isbndb.com/covers/23/31/9780671502331.jpg'), + ('0671504371', 'The Good Earth', 'https://images.isbndb.com/covers/43/73/9780671504373.jpg'), + ('0449911446', 'Before Women Had Wings (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/14/40/9780449911440.jpg'), + ('0451527550', 'The Sport Of The Gods (Signet Classics)', 'https://images.isbndb.com/covers/75/54/9780451527554.jpg'), + ('074343756X', 'Electric God', 'https://images.isbndb.com/covers/75/61/9780743437561.jpg'), + ('0743222628', 'The Best American Erotica 2004', 'https://images.isbndb.com/covers/26/24/9780743222624.jpg'), + ('0141439513', 'Pride And Prejudice (Penguin Classics)', 'https://images.isbndb.com/covers/95/18/9780141439518.jpg'), + ('0743225422', 'The Shipping News : A Novel', 'https://images.isbndb.com/covers/54/27/9780743225427.jpg'), + ('0374278784', 'Travels With A Medieval Queen', 'https://images.isbndb.com/covers/87/86/9780374278786.jpg'), + ('159308059X', 'The Importance Of Being Earnest And Four Other Plays (Barnes & Noble Classics)', 'https://images.isbndb.com/covers/05/94/9781593080594.jpg'), + ('0060558121', 'American Gods: A Novel', 'https://images.isbndb.com/covers/81/23/9780060558123.jpg'), + ('1573221767', 'Sister India', 'https://images.isbndb.com/covers/17/64/9781573221764.jpg'), + ('0374199698', 'Middlesex: A Novel', 'https://images.isbndb.com/covers/96/92/9780374199692.jpg'), + ('0373250460', 'You Have To Kiss A Lot Of Frogs', 'https://images.isbndb.com/covers/04/62/9780373250462.jpg'), + ('0375828192', 'Lyra''s Oxford (Paperback)', 'https://images.isbndb.com/covers/81/95/9780375828195.jpg'), + ('0399132821', 'Illumination Night', 'https://images.isbndb.com/covers/28/27/9780399132827.jpg'), + ('1573220876', 'About A Boy', 'https://images.isbndb.com/covers/08/73/9781573220873.jpg'), + ('044041833X', 'The Subtle Knife (His Dark Materials, Book 2)', 'https://images.isbndb.com/covers/83/37/9780440418337.jpg'), + ('0374516812', 'The Lottery And Other Stories', 'https://images.isbndb.com/covers/68/19/9780374516819.jpg'), + ('0156027399', 'The Woman Who Gave Birth To Rabbits: Stories', 'https://images.isbndb.com/covers/73/97/9780156027397.jpg'), + ('0380793334', 'Joining', 'https://images.isbndb.com/covers/33/34/9780380793334.jpg'), + ('0553284169', 'Rightfully Mine', 'https://images.isbndb.com/covers/41/64/9780553284164.jpg'), + ('0399146695', 'Lost And Found', 'https://images.isbndb.com/covers/66/95/9780399146695.jpg'), + ('0425047075', 'Whispers', 'https://images.isbndb.com/covers/70/71/9780425047071.jpg'), + ('0345384377', 'Sole Survivor', 'https://images.isbndb.com/covers/43/79/9780345384379.jpg'), + ('1558740872', 'Learning To Say No: Establishing Healthy Boundaries', 'https://images.isbndb.com/covers/08/77/9781558740877.jpg'), + ('0425097773', 'The Mask', 'https://images.isbndb.com/covers/77/79/9780425097779.jpg'), + ('0312119070', 'To Play The Fool', 'https://images.isbndb.com/covers/90/72/9780312119072.jpg'), + ('0553580884', 'The Undertaker''s Widow', 'https://images.isbndb.com/covers/08/84/9780553580884.jpg'), + ('0553574957', 'The Burning Man', 'https://images.isbndb.com/covers/49/51/9780553574951.jpg'), + ('0671891685', 'Zeke And Ned', 'https://images.isbndb.com/covers/16/88/9780671891688.jpg'), + ('0399146229', 'The Mineral Palace', 'https://images.isbndb.com/covers/62/20/9780399146220.jpg'), + ('0553299468', 'Midnight Warrior', 'https://images.isbndb.com/covers/94/65/9780553299465.jpg'), + ('0449221229', 'Mystical Paths', 'https://images.isbndb.com/covers/12/28/9780449221228.jpg'), + ('0449214362', 'Glittering Images', 'https://images.isbndb.com/covers/43/67/9780449214367.jpg'), + ('0679428887', 'Archangel: A Novel', 'https://images.isbndb.com/covers/88/86/9780679428886.jpg'), + ('0399145885', 'Atlantis Found (Dirk Pitt Novel)', 'https://images.isbndb.com/covers/58/89/9780399145889.jpg'), + ('0446602620', 'Blood Work', 'https://images.isbndb.com/covers/26/24/9780446602624.jpg'), + ('0553271989', 'The Odessa File', 'https://images.isbndb.com/covers/19/80/9780553271980.jpg'), + ('0375753834', 'Georgiana: Duchess Of Devonshire', 'https://images.isbndb.com/covers/38/31/9780375753831.jpg'), + ('0446522996', 'The Letter Of The Law', 'https://images.isbndb.com/covers/29/91/9780446522991.jpg'), + ('0671546031', 'Lace II', 'https://images.isbndb.com/covers/60/38/9780671546038.jpg'), + ('0517701766', 'A Place Called Freedom', 'https://images.isbndb.com/covers/17/68/9780517701768.jpg'), + ('087795223X', 'Triple', 'https://images.isbndb.com/covers/22/37/9780877952237.jpg'), + ('1853260851', 'Les Miserables Volume One (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/08/58/9781853260858.jpg'), + ('1853260509', 'Les Miserables Volume Two (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/05/06/9781853260506.jpg'), + ('0451202732', 'The Second Silence', 'https://images.isbndb.com/covers/27/34/9780451202734.jpg'), + ('0553266306', 'The Day Of The Jackal', 'https://images.isbndb.com/covers/63/06/9780553266306.jpg'), + ('3829028784', 'De Ribera (Masters Of Spanish Art)', 'https://images.isbndb.com/covers/87/83/9783829028783.jpg'), + ('0439286239', 'Harry Potter And The Sorcerer''s Stone Movie Poster Book', 'https://images.isbndb.com/covers/62/37/9780439286237.jpg'), + ('0140180206', 'The Plague', 'https://images.isbndb.com/covers/02/06/9780140180206.jpg'), + ('2040160434', 'Contes : Scènes De La Vie De Province', 'https://images.isbndb.com/covers/04/32/9782040160432.jpg'), + ('225303987X', 'Lorenzaccio', 'https://images.isbndb.com/covers/98/77/9782253039877.jpg'), + ('2253006203', 'Le Rouge Et Le Noir', 'https://images.isbndb.com/covers/62/06/9782253006206.jpg'), + ('2843370744', 'Manuel Du Guerrier De La Lumière', 'https://images.isbndb.com/covers/07/48/9782843370748.jpg'), + ('1853260908', 'Around The World In Eighty Days: 5 Weeks In A Balloon (Wordsworth Classics) (Wadsworth Collection)', 'https://images.isbndb.com/covers/09/02/9781853260902.jpg'), + ('2080706195', 'Armance Ou "Quelques Scènes D''un Salon De Paris En 1827"', 'https://images.isbndb.com/covers/61/95/9782080706195.jpg'), + ('0595014283', 'A Study In Scarlet (New Millennium Library)', 'https://images.isbndb.com/covers/42/86/9780595014286.jpg'), + ('2246567629', '14.99 Euro', 'https://images.isbndb.com/covers/76/22/9782246567622.jpg'), + ('2080701819', 'Les Confessions, Tome 1', 'https://images.isbndb.com/covers/18/17/9782080701817.jpg'), + ('0439284031', 'Harry Potter Schoolbooks: Quidditch Through The Ages And Fantastic Beasts And Where To Find Them', 'https://images.isbndb.com/covers/40/35/9780439284035.jpg'), + ('2266127756', 'Fables', 'https://images.isbndb.com/covers/77/52/9782266127752.jpg'), + ('9504910017', 'La Cancion De Dorotea (Spanish Edition)', 'https://images.isbndb.com/covers/00/15/9789504910015.jpg'), + ('2070383652', 'La Peau D''un Lion', 'https://images.isbndb.com/covers/36/58/9782070383658.jpg'), + ('0192838679', 'Les Liaisons Dangereuses (Oxford World''s Classics)', 'https://images.isbndb.com/covers/86/74/9780192838674.jpg'), + ('2070368165', 'Rhinocéros', 'https://images.isbndb.com/covers/81/67/9782070368167.jpg'), + ('2070363619', 'Le Roi Se Meurt', 'https://images.isbndb.com/covers/36/12/9782070363612.jpg'), + ('0375700528', 'The Lover', 'https://images.isbndb.com/covers/05/21/9780375700521.jpg'), + ('0393323668', 'The Animal-Lover''s Book Of Beastly Murder', 'https://images.isbndb.com/covers/36/65/9780393323665.jpg'), + ('0786930705', 'Dragons Of Spring Dawning (Dragonlance Chronicles, Vol. 3)', 'https://images.isbndb.com/covers/07/08/9780786930708.jpg'), + ('0880386525', 'The Dragonlance Chronicles/Dragons Of Autumn Twilight/Dragons Of Winter Night/Dragons Of Spring Dawning (Collectors Edition)', 'https://images.isbndb.com/covers/65/24/9780880386524.jpg'), + ('1843500728', 'Carmilla', 'https://images.isbndb.com/covers/07/28/9781843500728.jpg'), + ('1843430215', 'Lizard Tails', 'https://images.isbndb.com/covers/02/16/9781843430216.jpg'), + ('0330305735', 'Bonfire Of The Vanities (Picador Books)', 'https://images.isbndb.com/covers/57/30/9780330305730.jpg'), + ('157270120X', 'Nemesis (Cover To Cover Classics)', 'https://images.isbndb.com/covers/12/05/9781572701205.jpg'), + ('207036240X', 'Le Hussard Sur Le Toit', 'https://images.isbndb.com/covers/24/00/9782070362400.jpg'), + ('2702408648', 'Cartes Sur Table', 'https://images.isbndb.com/covers/86/43/9782702408643.jpg'), + ('0425093255', 'Five Little Pigs (Also Published As Murder In Retrospect)', 'https://images.isbndb.com/covers/32/52/9780425093252.jpg'), + ('2702426328', 'Le Vallon', 'https://images.isbndb.com/covers/63/26/9782702426326.jpg'), + ('2702413722', 'La Maison Biscornue', 'https://images.isbndb.com/covers/37/22/9782702413722.jpg'), + ('2253009199', 'Le Crime Du Golf', 'https://images.isbndb.com/covers/91/91/9782253009191.jpg'), + ('225302001X', 'L''Affaire Protheroe', 'https://images.isbndb.com/covers/00/11/9782253020011.jpg'), + ('2841110664', 'Le Moine Et Le Philosophe', 'https://images.isbndb.com/covers/06/67/9782841110667.jpg'), + ('186046310X', 'Silk', 'https://images.isbndb.com/covers/31/05/9781860463105.jpg'), + ('2070516504', 'Livres A Ecouter: Le Lion', 'https://images.isbndb.com/covers/65/06/9782070516506.jpg'), + ('2895400644', 'J''étais Si Timide Que J''ai Mordu La Maîtresse', 'https://images.isbndb.com/covers/06/46/9782895400646.jpg'), + ('0340551194', 'Time To Dance', 'https://images.isbndb.com/covers/11/96/9780340551196.jpg'), + ('0440505941', 'The Weekend Novelist', 'https://images.isbndb.com/covers/59/45/9780440505945.jpg'), + ('188491036X', 'Writing Life Stories', 'https://images.isbndb.com/covers/03/64/9781884910364.jpg'), + ('0374119163', 'Letters To A Young Novelist', 'https://images.isbndb.com/covers/91/64/9780374119164.jpg'), + ('0312242727', 'A Writer''s Workbook: Daily Exercises For The Writing Life', 'https://images.isbndb.com/covers/27/25/9780312242725.jpg'), + ('1884910394', 'Fiction Writer''s Workshop', 'https://images.isbndb.com/covers/03/95/9781884910395.jpg'), + ('0062734725', 'A Writer''s Companion : A Handy Compendium Of Useful But Hard-To-Find Information On History, Literature, Art, Science, Travel, Philosophy And Much More', 'https://images.isbndb.com/covers/47/23/9780062734723.jpg'), + ('0811814815', 'The Observation Deck: A Tool Kit For Writers (Past & Present)', 'https://images.isbndb.com/covers/48/12/9780811814812.jpg'), + ('0393320030', 'On Becoming A Novelist', 'https://images.isbndb.com/covers/00/39/9780393320039.jpg'), + ('0673181731', 'The Writer''s Craft: A Process Reader', 'https://images.isbndb.com/covers/17/32/9780673181732.jpg'), + ('0192813897', 'Oxford Fowler''s Modern English Usage Dictionary', 'https://images.isbndb.com/covers/38/93/9780192813893.jpg'), + ('0312010443', 'How To Write A Damn Good Novel: A Step-by-Step No Nonsense Guide To Dramatic Storytelling', 'https://images.isbndb.com/covers/04/47/9780312010447.jpg'), + ('0767903080', 'Sin And Syntax: How To Craft Wickedly Effective Prose', 'https://images.isbndb.com/covers/30/80/9780767903080.jpg'), + ('0874778867', 'The Artist''s Way Morning Pages Journal', 'https://images.isbndb.com/covers/88/61/9780874778861.jpg'), + ('1884910408', 'Creating Fiction: Instructions And Insights From Teachers Of The Associated Writing Programs', 'https://images.isbndb.com/covers/04/01/9781884910401.jpg'), + ('0226103897', 'The Chicago Manual Of Style: The Essential Guide For Writers, Editors, And Publishers (14th Edition)', 'https://images.isbndb.com/covers/38/91/9780226103891.jpg'), + ('1884910459', 'The Art & Craft Of The Short Story', 'https://images.isbndb.com/covers/04/56/9781884910456.jpg'), + ('1582970599', 'The Marshall Plan Workbook : Writing Your Novel From Start To Finish', 'https://images.isbndb.com/covers/05/92/9781582970592.jpg'), + ('1582970033', 'Get Organized, Get Published!: 225 Ways To Make Time For Success', 'https://images.isbndb.com/covers/00/35/9781582970035.jpg'), + ('1582970688', 'Keeping A Journal You Love', 'https://images.isbndb.com/covers/06/84/9781582970684.jpg'), + ('0385499191', 'Beyond The Writers'' Workshop: New Ways To Write Creative Nonfiction', 'https://images.isbndb.com/covers/91/94/9780385499194.jpg'), + ('0312166907', 'Handbook Of Technical Writing', 'https://images.isbndb.com/covers/69/08/9780312166908.jpg'), + ('0898796334', 'The Art And Craft Of Poetry', 'https://images.isbndb.com/covers/63/39/9780898796339.jpg'), + ('0395489326', 'The Lord Of The Rings', 'https://images.isbndb.com/covers/93/21/9780395489321.jpg'), + ('0802132758', 'Rosencrantz And Guildenstern Are Dead', 'https://images.isbndb.com/covers/27/58/9780802132758.jpg'), + ('0312421303', 'In Praise Of The Stepmother: A Novel', 'https://images.isbndb.com/covers/13/04/9780312421304.jpg'), + ('1932360239', 'The Pornographer''s Poem: A Novel', 'https://images.isbndb.com/covers/02/33/9781932360233.jpg'), + ('0517064596', 'Anne Tyler: A New Collection:Three Complete Novels: The Accidental Tourist; Breathing Lessons; Searching For Caleb', 'https://images.isbndb.com/covers/45/97/9780517064597.jpg'), + ('0312420285', 'The Storyteller: A Novel', 'https://images.isbndb.com/covers/02/84/9780312420284.jpg'), + ('0375404538', 'Jimmy Corrigan: The Smartest Kid On Earth', 'https://images.isbndb.com/covers/45/35/9780375404535.jpg'), + ('037540600X', 'Horse Heaven', 'https://images.isbndb.com/covers/60/03/9780375406003.jpg'), + ('0679451501', 'The Sparrow: A Novel', 'https://images.isbndb.com/covers/15/01/9780679451501.jpg'), + ('0198117477', 'William Shakespeare: The Complete Works (The Oxford Shakespeare)', 'https://images.isbndb.com/covers/74/76/9780198117476.jpg'), + ('0786706562', 'A House In Sicily', 'https://images.isbndb.com/covers/65/63/9780786706563.jpg'), + ('014027281X', 'In The Memory Of The Forest', 'https://images.isbndb.com/covers/28/19/9780140272819.jpg'), + ('080231323X', 'Last Love In Constantinople: A Tarot Novel For Divination', 'https://images.isbndb.com/covers/32/32/9780802313232.jpg'), + ('0679420851', 'The Inner Side Of The Wind, Or The Novel Of Hero And Leander', 'https://images.isbndb.com/covers/08/59/9780679420859.jpg'), + ('0151002835', 'The Seville Communion', 'https://images.isbndb.com/covers/28/32/9780151002832.jpg'), + ('0151001812', 'The Fencing Master', 'https://images.isbndb.com/covers/18/11/9780151001811.jpg'), + ('0521576229', 'Under This Blazing Light (Canto Original Series)', 'https://images.isbndb.com/covers/62/22/9780521576222.jpg'), + ('0156001438', 'Fima', 'https://images.isbndb.com/covers/14/34/9780156001434.jpg'), + ('0688145744', 'The Body In The Fjord', 'https://images.isbndb.com/covers/57/43/9780688145743.jpg'), + ('0312205503', 'Hemingway''s Chair', 'https://images.isbndb.com/covers/55/08/9780312205508.jpg'), + ('0374280355', 'The Unburied', 'https://images.isbndb.com/covers/03/52/9780374280352.jpg'), + ('0345404351', 'Betrayals', 'https://images.isbndb.com/covers/43/50/9780345404350.jpg'), + ('0140275673', 'A Book Of Memories', 'https://images.isbndb.com/covers/56/74/9780140275674.jpg'), + ('0395544181', 'Pablo Neruda: Selected Poems (Edición Bilingüe)', 'https://images.isbndb.com/covers/41/81/9780395544181.jpg'), + ('0385491832', 'Motherless Brooklyn', 'https://images.isbndb.com/covers/18/39/9780385491839.jpg'), + ('0805052054', 'A Change Of Climate: A Novel', 'https://images.isbndb.com/covers/20/53/9780805052053.jpg'), + ('080505202X', 'An Experiment In Love: A Novel', 'https://images.isbndb.com/covers/20/22/9780805052022.jpg'), + ('1568655800', 'Bimbos & Zombies : Bimbos Of The Death Sun / Zombies Of The Gene Pool', 'https://images.isbndb.com/covers/58/02/9781568655802.jpg'), + ('0060652861', 'A Live Coal In The Sea', 'https://images.isbndb.com/covers/28/69/9780060652869.jpg'), + ('0670896764', 'A Day Late And A Dollar Short', 'https://images.isbndb.com/covers/67/69/9780670896769.jpg'), + ('0140239375', 'The Discovery Of Heaven', 'https://images.isbndb.com/covers/93/79/9780140239379.jpg'), + ('0394744209', 'The Assault', 'https://images.isbndb.com/covers/42/09/9780394744209.jpg'), + ('0140156011', 'Last Call', 'https://images.isbndb.com/covers/60/10/9780140156010.jpg'), + ('067972723X', 'The Eye', 'https://images.isbndb.com/covers/72/31/9780679727231.jpg'), + ('0679727264', 'The Real Life Of Sebastian Knight', 'https://images.isbndb.com/covers/72/62/9780679727262.jpg'), + ('0679723439', 'Despair', 'https://images.isbndb.com/covers/34/31/9780679723431.jpg'), + ('0679726209', 'Mary', 'https://images.isbndb.com/covers/62/03/9780679726203.jpg'), + ('0679727221', 'The Luzhin Defense', 'https://images.isbndb.com/covers/72/24/9780679727224.jpg'), + ('0679726098', 'Strong Opinions', 'https://images.isbndb.com/covers/60/98/9780679726098.jpg'), + ('0679723390', 'Speak, Memory: An Autobiography Revisited', 'https://images.isbndb.com/covers/33/94/9780679723394.jpg'), + ('0679727280', 'Look At The Harlequins!', 'https://images.isbndb.com/covers/72/86/9780679727286.jpg'), + ('0679728864', 'The Enchanter', 'https://images.isbndb.com/covers/88/63/9780679728863.jpg'), + ('0679725415', 'Transparent Things', 'https://images.isbndb.com/covers/54/11/9780679725411.jpg'), + ('0679410775', 'Pale Fire (Everyman''s Library Classics & Contemporary Classics)', 'https://images.isbndb.com/covers/07/75/9780679410775.jpg'), + ('0253212340', 'Riddley Walker, Expanded Edition', 'https://images.isbndb.com/covers/23/44/9780253212344.jpg'), + ('0374292035', 'The Woman And The Ape', 'https://images.isbndb.com/covers/20/34/9780374292034.jpg'), + ('1559704012', 'The File On H.: A Novel', 'https://images.isbndb.com/covers/40/14/9781559704014.jpg'), + ('1559704160', 'The Palace Of Dreams', 'https://images.isbndb.com/covers/41/68/9781559704168.jpg'), + ('0060926597', 'The Complete Fiction: The Bean Trees, Homeland, Animal Dreams, Pigs In Heaven', 'https://images.isbndb.com/covers/65/95/9780060926595.jpg'), + ('081011514X', 'Encyclopedia Of The Dead (European Classics)', 'https://images.isbndb.com/covers/51/49/9780810115149.jpg'), + ('0375500804', 'Chaos Theory: A Novel', 'https://images.isbndb.com/covers/08/00/9780375500800.jpg'), + ('0877798079', 'Merriam-Webster''s Collegiate Dictionary (Laminated Cover)', 'https://images.isbndb.com/covers/80/71/9780877798071.jpg'), + ('089879658X', 'Roget''s Super Thesaurus', 'https://images.isbndb.com/covers/65/82/9780898796582.jpg'), + ('1582972540', 'Roget’s Super Thesaurus (Rogets)', 'https://images.isbndb.com/covers/25/41/9781582972541.jpg'), + ('156389629X', 'The Sandman: The Dream Hunters', 'https://images.isbndb.com/covers/62/93/9781563896293.jpg'), + ('1563890119', 'The Sandman Vol. 1: Preludes And Nocturnes', 'https://images.isbndb.com/covers/01/16/9781563890116.jpg'), + ('0930289595', 'The Sandman Vol. 2: The Doll''s House', 'https://images.isbndb.com/covers/95/91/9780930289591.jpg'), + ('156389016X', 'The Sandman Library, Volume 3: Dream Country', 'https://images.isbndb.com/covers/01/61/9781563890161.jpg'), + ('1563890410', 'The Sandman, Season Of Mists, Volume Four', 'https://images.isbndb.com/covers/04/13/9781563890413.jpg'), + ('0006511767', 'Virgin Earth', 'https://images.isbndb.com/covers/17/62/9780006511762.jpg'), + ('0440204399', 'Catch-22', 'https://images.isbndb.com/covers/43/98/9780440204398.jpg'), + ('0385485247', 'A Toast Before Dying: A Mali Anderson Mystery', 'https://images.isbndb.com/covers/52/41/9780385485241.jpg'), + ('006019197X', 'Pilgrim', 'https://images.isbndb.com/covers/19/79/9780060191979.jpg'), + ('0963094432', 'Angels And Visitations: A Miscellany', 'https://images.isbndb.com/covers/44/38/9780963094438.jpg'), + ('0375700137', 'The War Of Don Emmanuel''s Nether Parts', 'https://images.isbndb.com/covers/01/32/9780375700132.jpg'), + ('081956298X', 'Trouble On Triton: An Ambiguous Heterotopia', 'https://images.isbndb.com/covers/29/82/9780819562982.jpg'), + ('0517707861', 'Death Is Now My Neighbor', 'https://images.isbndb.com/covers/78/69/9780517707869.jpg'), + ('0517799928', 'Morse''s Greatest Mystery', 'https://images.isbndb.com/covers/99/25/9780517799925.jpg'), + ('0679738290', 'The Virgin In The Garden', 'https://images.isbndb.com/covers/82/99/9780679738299.jpg'), + ('0312871937', 'The Marriage Of Sticks', 'https://images.isbndb.com/covers/19/32/9780312871932.jpg'), + ('0312202318', 'A Home At The End Of The World: A Novel', 'https://images.isbndb.com/covers/23/16/9780312202316.jpg'), + ('0312119240', 'Gospel: A Novel', 'https://images.isbndb.com/covers/92/49/9780312119249.jpg'), + ('006028644X', 'Wasteland', 'https://images.isbndb.com/covers/64/46/9780060286446.jpg'), + ('0553377892', 'Bodily Harm', 'https://images.isbndb.com/covers/78/97/9780553377897.jpg'), + ('0553377922', 'The Edible Woman', 'https://images.isbndb.com/covers/79/27/9780553377927.jpg'), + ('0679737995', 'Doctor Copernicus', 'https://images.isbndb.com/covers/79/95/9780679737995.jpg'), + ('0679447954', 'Hometown Brew', 'https://images.isbndb.com/covers/79/55/9780679447955.jpg'), + ('0811819167', 'The Flower In The Skull: A Novel', 'https://images.isbndb.com/covers/91/69/9780811819169.jpg'), + ('0312203241', 'Emotionally Weird', 'https://images.isbndb.com/covers/32/45/9780312203245.jpg'), + ('0312186886', 'Human Croquet: A Novel', 'https://images.isbndb.com/covers/68/83/9780312186883.jpg'), + ('0802139558', 'The Return Of The Caravels (Antunes, Antonio Lobo)', 'https://images.isbndb.com/covers/95/59/9780802139559.jpg'), + ('0449911535', 'Handmaid''s Tale', 'https://images.isbndb.com/covers/15/32/9780449911532.jpg'), + ('1563050757', 'The Boomer Bible', 'https://images.isbndb.com/covers/07/56/9781563050756.jpg'), + ('0670693812', 'Cut Stones And Crossroads: A Journey In The Two Worlds Of Peru', 'https://images.isbndb.com/covers/38/18/9780670693818.jpg'), + ('055310943X', 'Kissed A Sad Goodbye (Duncan Kincaid/Gemma James Novels)', 'https://images.isbndb.com/covers/94/36/9780553109436.jpg'), + ('0684801418', 'Dreaming Of The Bones', 'https://images.isbndb.com/covers/14/14/9780684801414.jpg'), + ('0449001180', 'The Chymical Wedding', 'https://images.isbndb.com/covers/11/89/9780449001189.jpg'), + ('1594200092', 'Alexander Hamilton', 'https://images.isbndb.com/covers/00/90/9781594200090.jpg'), + ('0195170342', 'Washington''s Crossing (Pivotal Moments In American History)', 'https://images.isbndb.com/covers/03/44/9780195170344.jpg'), + ('0156007533', 'The Riddle Of The Compass: The Invention That Changed The World', 'https://images.isbndb.com/covers/75/35/9780156007535.jpg'), + ('1565926161', 'Database Programming With JDBC And Java', 'https://images.isbndb.com/covers/61/65/9781565926165.jpg'), + ('0471213020', 'Mastering Jakarta Struts', 'https://images.isbndb.com/covers/30/24/9780471213024.jpg'), + ('0596003846', 'Java Enterprise Best Practices', 'https://images.isbndb.com/covers/38/45/9780596003845.jpg'), + ('0596005229', 'Java Database Best Practices', 'https://images.isbndb.com/covers/52/21/9780596005221.jpg'), + ('0618138927', 'The Secrets Of Baking: Simple Techniques For Sophisticated Desserts', 'https://images.isbndb.com/covers/89/20/9780618138920.jpg'), + ('0375727612', 'True Notebooks: A Writer''s Year At Juvenile Hall', 'https://images.isbndb.com/covers/76/10/9780375727610.jpg'), + ('0375506160', 'Mountains Beyond Mountains: Healing The World: The Quest Of Dr. Paul Farmer', 'https://images.isbndb.com/covers/61/61/9780375506161.jpg'), + ('1583913580', 'ADD-Friendly Ways To Organize Your Life', 'https://images.isbndb.com/covers/35/81/9781583913581.jpg'), + ('1886941343', 'What Does Everybody Else Know That I Don''t?: Social Skills Help For Adults With Attention Deficit/Hyperactivity Disorder', 'https://images.isbndb.com/covers/13/42/9781886941342.jpg'), + ('0195160770', 'Seven Myths Of The Spanish Conquest', 'https://images.isbndb.com/covers/07/72/9780195160772.jpg'), + ('068482390X', 'REPORT FROM IRON MOUNTAIN: On The Possibility And Desirability Of Peace', 'https://images.isbndb.com/covers/39/04/9780684823904.jpg'), + ('014019469X', 'Zen And The Art Of Making A Living: A Practical Guide To Creative Career Design', 'https://images.isbndb.com/covers/46/92/9780140194692.jpg'), + ('0965731286', '1421 THE YEAR CHINA DISCOVERED AMERICA', 'https://images.isbndb.com/covers/12/87/9780965731287.jpg'), + ('0060569662', 'Autobiography Of A Face', 'https://images.isbndb.com/covers/96/62/9780060569662.jpg'), + ('076113185X', 'Celebrate!', 'https://images.isbndb.com/covers/18/54/9780761131854.jpg'), + ('0452285658', 'Thieves In High Places: They''ve Stolen Our Country And It''s Time To Take It Back', 'https://images.isbndb.com/covers/56/51/9780452285651.jpg'), + ('0060006765', 'Dresden: Tuesday, February 13, 1945', 'https://images.isbndb.com/covers/67/61/9780060006761.jpg'), + ('074323572X', 'Operatives, Spies, And Saboteurs: The Unknown Story Of The Men And Women Of World War II''s OSS', 'https://images.isbndb.com/covers/57/23/9780743235723.jpg'), + ('1585673552', 'The White Rock: An Exploration Of The Inca Heartland', 'https://images.isbndb.com/covers/35/51/9781585673551.jpg'), + ('0716732106', 'Why Zebras Don''t Get Ulcers: An Updated Guide To Stress, Stress Related Diseases, And Coping (2nd Edition)', 'https://images.isbndb.com/covers/21/05/9780716732105.jpg'), + ('0375703160', 'Beyond Belief: The Secret Gospel Of Thomas', 'https://images.isbndb.com/covers/31/64/9780375703164.jpg'), + ('0684802031', 'First Things First', 'https://images.isbndb.com/covers/20/39/9780684802039.jpg'), + ('0812911016', 'The Transitive Vampire', 'https://images.isbndb.com/covers/10/15/9780812911015.jpg'), + ('0670877638', 'On Borrowed Words: A Memoir Of Language', 'https://images.isbndb.com/covers/76/38/9780670877638.jpg'), + ('0425062430', 'The Shroud', 'https://images.isbndb.com/covers/24/32/9780425062432.jpg'), + ('0441366104', 'Isles Of The Blest', 'https://images.isbndb.com/covers/61/01/9780441366101.jpg'), + ('0671705245', 'The State Of The Earth Atlas', 'https://images.isbndb.com/covers/52/44/9780671705244.jpg'), + ('0553349481', 'Another Roadside Attraction', 'https://images.isbndb.com/covers/94/81/9780553349481.jpg'), + ('0375700943', 'The Three-Arched Bridge', 'https://images.isbndb.com/covers/09/41/9780375700941.jpg'), + ('0156005573', 'Don''t Call It Night (Harvest In Translation)', 'https://images.isbndb.com/covers/55/79/9780156005579.jpg'), + ('0425183270', 'Healing ADD: The Breakthrough Program That Allows You To See And Heal The 6 Types Of ADD', 'https://images.isbndb.com/covers/32/74/9780425183274.jpg'), + ('055337821X', 'Answers To Distraction', 'https://images.isbndb.com/covers/82/14/9780553378214.jpg'), + ('0684801280', 'Driven To Distraction : Recognizing And Coping With Attention Deficit Disorder From Childhood Through Adulthood', 'https://images.isbndb.com/covers/12/85/9780684801285.jpg'), + ('087833209X', 'A.D.D. & Romance: Finding Fulfillment In Love, Sex, & Relationships', 'https://images.isbndb.com/covers/20/90/9780878332090.jpg'), + ('1887424377', 'Healing ADD : Simple Exercises That Will Change Your Daily Life', 'https://images.isbndb.com/covers/43/70/9781887424370.jpg'), + ('1887424032', 'ADD Success Stories: A Guide To Fulfillment For Families With Attention Deficit Disorder', 'https://images.isbndb.com/covers/40/35/9781887424035.jpg'), + ('0684815311', 'You Mean I''m Not Lazy, Stupid Or Crazy?! A Self-Help Book For Adults With Attention Deficit Disorder', 'https://images.isbndb.com/covers/53/12/9780684815312.jpg'), + ('0452279631', 'Scattered: How Attention Deficit Disorder Originates And What You Can Do About It', 'https://images.isbndb.com/covers/96/36/9780452279636.jpg'), + ('0876308000', 'Adventures In Fast Forward: Life, Love, And Work For The ADD Adult', 'https://images.isbndb.com/covers/80/04/9780876308004.jpg'), + ('0375701079', 'A User''s Guide To The Brain: Perception, Attention, And The Four Theaters Of The Brain', 'https://images.isbndb.com/covers/10/78/9780375701078.jpg'), + ('0878339604', 'A.D.D. And Creativity: Tapping Your Inner Muse', 'https://images.isbndb.com/covers/96/00/9780878339600.jpg'), + ('080186822X', 'ADHD In Adulthood: A Guide To Current Theory, Diagnosis, And Treatment', 'https://images.isbndb.com/covers/82/21/9780801868221.jpg'), + ('0878339175', 'A.D.D. On The Job: Making Your A.D.D. Work For You', 'https://images.isbndb.com/covers/91/74/9780878339174.jpg'), + ('0878339795', 'Attention Deficit Disorder In Adults: Practical Help And Understanding', 'https://images.isbndb.com/covers/97/92/9780878339792.jpg'), + ('0802713769', 'Journeys Through ADDulthood', 'https://images.isbndb.com/covers/37/66/9780802713766.jpg'), + ('1887424059', 'Women With Attention Deficit Disorder: Embracing Disorganization At Home And In The Workplace', 'https://images.isbndb.com/covers/40/59/9781887424059.jpg'), + ('0785812814', 'Edgar Allen Poe Poems (American Poetry)', 'https://images.isbndb.com/covers/28/14/9780785812814.jpg'), + ('1887424520', 'Thom Hartmann''s Complete Guide To ADHD: Help For Your Family At Home, School And Work', 'https://images.isbndb.com/covers/45/23/9781887424523.jpg'), + ('0140262156', 'Death In The Andes', 'https://images.isbndb.com/covers/21/55/9780140262155.jpg'), + ('0140283595', 'The Notebooks Of Don Rigoberto', 'https://images.isbndb.com/covers/35/94/9780140283594.jpg'), + ('0879518340', 'Last Kabbalist Of Lisbon', 'https://images.isbndb.com/covers/83/49/9780879518349.jpg'), + ('0375407561', 'Embers', 'https://images.isbndb.com/covers/75/67/9780375407567.jpg'), + ('0451208188', 'The English Assassin', 'https://images.isbndb.com/covers/81/87/9780451208187.jpg'), + ('044900371X', 'The Orchid Thief: A True Story Of Beauty And Obsession (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/37/18/9780449003718.jpg'), + ('081664179X', 'The Conscience Of A Liberal: Reclaiming The Compassionate Agenda', 'https://images.isbndb.com/covers/17/96/9780816641796.jpg'), + ('0451211103', 'Sunlight And Shadow', 'https://images.isbndb.com/covers/11/01/9780451211101.jpg'), + ('1568581491', 'Evolution''s Darling', 'https://images.isbndb.com/covers/14/91/9781568581491.jpg'), + ('0743422082', 'The Immaculate Deception', 'https://images.isbndb.com/covers/20/86/9780743422086.jpg'), + ('0425177424', 'Death And Restoration (Art History Mystery)', 'https://images.isbndb.com/covers/74/26/9780425177426.jpg'), + ('0425173585', 'Giotto''s Hand (Art History Mystery)', 'https://images.isbndb.com/covers/35/89/9780425173589.jpg'), + ('0425168956', 'The Titian Committee (Art History Mystery)', 'https://images.isbndb.com/covers/89/50/9780425168950.jpg'), + ('0385491026', 'Cat''s Eye', 'https://images.isbndb.com/covers/10/20/9780385491020.jpg'), + ('0140441131', 'Dead Souls (Penguin Classics)', 'https://images.isbndb.com/covers/11/30/9780140441130.jpg'), + ('0451523881', 'The Brothers Karamazov (Signet Classics)', 'https://images.isbndb.com/covers/38/84/9780451523884.jpg'), + ('0451513355', 'Hard Times', 'https://images.isbndb.com/covers/33/59/9780451513359.jpg'), + ('0449208109', 'Things Fall Apart', 'https://images.isbndb.com/covers/81/06/9780449208106.jpg'), + ('014044470X', 'The Fiancee And Other Stories (Penguin Classics)', 'https://images.isbndb.com/covers/47/04/9780140444704.jpg'), + ('093831713X', 'The Famous Thing About Death: And Other Stories', 'https://images.isbndb.com/covers/71/35/9780938317135.jpg'), + ('0918273420', 'American Earthquakes', 'https://images.isbndb.com/covers/34/20/9780918273420.jpg'), + ('0767901592', 'Eat Me', 'https://images.isbndb.com/covers/15/98/9780767901598.jpg'), + ('0440211697', 'Phantom', 'https://images.isbndb.com/covers/16/93/9780440211693.jpg'), + ('0679727248', 'Glory', 'https://images.isbndb.com/covers/72/48/9780679727248.jpg'), + ('0679724508', 'Laughter In The Dark', 'https://images.isbndb.com/covers/45/06/9780679724506.jpg'), + ('0151002584', 'Ingenious Pain', 'https://images.isbndb.com/covers/25/80/9780151002580.jpg'), + ('0451407229', 'In The Cut', 'https://images.isbndb.com/covers/72/21/9780451407221.jpg'), + ('0030037166', 'The Breast', 'https://images.isbndb.com/covers/71/60/9780030037160.jpg'), + ('0671567659', 'The Moon And The Sun', 'https://images.isbndb.com/covers/76/51/9780671567651.jpg'), + ('055356921X', 'The Strange Files Of Fremont Jones: A Fremont Jones Mystery (Fremont Jones Mysteries)', 'https://images.isbndb.com/covers/92/16/9780553569216.jpg'), + ('0802134580', 'The Last World', 'https://images.isbndb.com/covers/45/85/9780802134585.jpg'), + ('0140143491', 'The Storyteller', 'https://images.isbndb.com/covers/34/92/9780140143492.jpg'), + ('0345423607', 'The Silver Wolf', 'https://images.isbndb.com/covers/36/03/9780345423603.jpg'), + ('0380715430', 'The Mother Tongue', 'https://images.isbndb.com/covers/54/35/9780380715435.jpg'), + ('0553253905', 'Pritikin/weight Loss', 'https://images.isbndb.com/covers/39/00/9780553253900.jpg'), + ('0140106464', 'MOON SPENDER', 'https://images.isbndb.com/covers/64/66/9780140106466.jpg'), + ('0840790813', 'Why Suicide?', 'https://images.isbndb.com/covers/08/11/9780840790811.jpg'), + ('0060191015', 'Lipshtick', 'https://images.isbndb.com/covers/10/16/9780060191016.jpg'), + ('1877741094', 'Zen In The Art Of Writing: Essays On Creativity', 'https://images.isbndb.com/covers/10/98/9781877741098.jpg'), + ('0030419964', 'Pathway To Ecstasy: The Way Of The Dream Mandala', 'https://images.isbndb.com/covers/99/66/9780030419966.jpg'), + ('0399150749', 'The Opposite Of Fate', 'https://images.isbndb.com/covers/07/46/9780399150746.jpg'), + ('0380804883', 'I Wish I Had A Red Dress', 'https://images.isbndb.com/covers/48/87/9780380804887.jpg'), + ('0449219232', 'Jasmine', 'https://images.isbndb.com/covers/92/32/9780449219232.jpg'), + ('0898152399', 'P.M.S. Attacks And Other Inconveniences Of Life', 'https://images.isbndb.com/covers/23/95/9780898152395.jpg'), + ('1877988235', 'Don''t Go To The Cosmetics Counter Without Me: An Eye-Opening Guide To Brand-Name Cosmetics (Don''t Go To The Cosmetic Counter Without Me)', 'https://images.isbndb.com/covers/82/33/9781877988233.jpg'), + ('0553227750', 'Clan Of The Cave Bear', 'https://images.isbndb.com/covers/77/58/9780553227758.jpg'), + ('0525946896', 'Hornet Flight', 'https://images.isbndb.com/covers/68/92/9780525946892.jpg'), + ('0671023411', 'CRASH (Cyberseries)', 'https://images.isbndb.com/covers/34/16/9780671023416.jpg'), + ('0671023403', 'CONNECT (Griffin & Sabine For The ''90s)', 'https://images.isbndb.com/covers/34/09/9780671023409.jpg'), + ('067102339X', 'Chat (Griffin & Sabine For The ''90s)', 'https://images.isbndb.com/covers/33/93/9780671023393.jpg'), + ('039913929X', 'Brothers And Sisters', 'https://images.isbndb.com/covers/92/91/9780399139291.jpg'), + ('156138450X', 'Sisters', 'https://images.isbndb.com/covers/45/01/9781561384501.jpg'), + ('0312997108', 'Planet Of The Umps: A Baseball Life From Behind The Plate', 'https://images.isbndb.com/covers/71/06/9780312997106.jpg'), + ('0764534238', 'Teach Yourself Visually HTML', 'https://images.isbndb.com/covers/42/32/9780764534232.jpg'), + ('0380732130', 'Aaron, Approximately', 'https://images.isbndb.com/covers/21/35/9780380732135.jpg'), + ('1879682737', 'Uncle John''s Absolutely Absorbing Bathroom Reader (Uncle John''s Bathroom Reader #12)', 'https://images.isbndb.com/covers/27/33/9781879682733.jpg'), + ('1879682699', 'Uncle John''s Great Big Bathroom Reader', 'https://images.isbndb.com/covers/26/96/9781879682696.jpg'), + ('1879682656', 'Uncle John''s Ultimate Bathroom Reader (Uncle John''s Bathroom Reader #8)', 'https://images.isbndb.com/covers/26/58/9781879682658.jpg'), + ('0809225050', 'And Then The Shark Told Justin . . . : A Collection Of The Greatest True Golf Stories Ever Told', 'https://images.isbndb.com/covers/50/57/9780809225057.jpg'), + ('0786888911', 'The Don''t Sweat Guide To Holidays: Enjoying The Festivities And Letting Go Of The Tension (Don''t Sweat Guides)', 'https://images.isbndb.com/covers/89/17/9780786888917.jpg'), + ('0425180034', 'Dead Water', 'https://images.isbndb.com/covers/00/37/9780425180037.jpg'), + ('0446364495', 'The Bridges Of Madison County', 'https://images.isbndb.com/covers/44/92/9780446364492.jpg'), + ('0811831310', 'The Worst Case Scenario Survival Handbook: Travel', 'https://images.isbndb.com/covers/13/14/9780811831314.jpg'), + ('006109286X', 'The Pardon (Jack Swyteck)', 'https://images.isbndb.com/covers/28/62/9780061092862.jpg'), + ('0806972742', 'Best Of Gravestone Humor', 'https://images.isbndb.com/covers/27/49/9780806972749.jpg'), + ('0836218426', 'Wildlife Preserves', 'https://images.isbndb.com/covers/84/28/9780836218428.jpg'), + ('0679311149', 'Walter Gretzky: On Family, Hockey And Healing', 'https://images.isbndb.com/covers/11/40/9780679311140.jpg'), + ('0061030848', 'Bell, Cook, And Candle: An Angie Amalfi Mystery', 'https://images.isbndb.com/covers/08/40/9780061030840.jpg'), + ('1575001438', 'Survivor : The Ultimate Game', 'https://images.isbndb.com/covers/14/32/9781575001432.jpg'), + ('0553150510', 'The Wonderful Story Of Henry Sugar And Six More', 'https://images.isbndb.com/covers/05/13/9780553150513.jpg'), + ('0590907239', 'Memories Of Anne Frank: Reflections Of A Childhood Friend', 'https://images.isbndb.com/covers/72/31/9780590907231.jpg'), + ('157145697X', 'Uncle John''s Bathroom Reader: Plunges Into History', 'https://images.isbndb.com/covers/69/77/9781571456977.jpg'), + ('1571454942', 'Uncle John''s All-Purpose Extra-Strength Bathroom Reader (Uncle John''s Bathroom Reader #13)', 'https://images.isbndb.com/covers/49/42/9781571454942.jpg'), + ('1571456988', 'Uncle John''s Supremely Satisfying Bathroom Reader', 'https://images.isbndb.com/covers/69/84/9781571456984.jpg'), + ('1551053020', 'Canadian Ghost Stories', 'https://images.isbndb.com/covers/30/28/9781551053028.jpg'), + ('0919433820', 'Birds Of Calgary (Canadian City Bird Guides)', 'https://images.isbndb.com/covers/38/23/9780919433823.jpg'), + ('1551051737', 'Birds Of Alberta (Lone Pine Field Guides)', 'https://images.isbndb.com/covers/17/34/9781551051734.jpg'), + ('0451457994', '2001: A Space Odyssey', 'https://images.isbndb.com/covers/79/98/9780451457998.jpg'), + ('0740713930', 'Motherhood Is Not For Wimps', 'https://images.isbndb.com/covers/39/34/9780740713934.jpg'), + ('0375756663', 'The Travel Detective: How To Get The Best Service And The Best Deals From Airlines, Hotels, Cruise Ships, And Car Rental Agencies', 'https://images.isbndb.com/covers/66/65/9780375756665.jpg'), + ('0793559847', 'The Rock And Roll Collection: Easy Guitar (Paperback Songs)', 'https://images.isbndb.com/covers/98/48/9780793559848.jpg'), + ('1858283329', 'Numbering The People', 'https://images.isbndb.com/covers/33/26/9781858283326.jpg'), + ('0743403541', 'The Narrowback', 'https://images.isbndb.com/covers/35/42/9780743403542.jpg'), + ('0312978588', 'The Carrier', 'https://images.isbndb.com/covers/85/87/9780312978587.jpg'), + ('0380788438', 'Safe Harbor', 'https://images.isbndb.com/covers/84/39/9780380788439.jpg'), + ('0740726765', 'Sherman''s Lagoon 1991 To 2001: Greatest Hits And Near Misses', 'https://images.isbndb.com/covers/67/67/9780740726767.jpg'), + ('006052510X', 'Happiness: A Novel', 'https://images.isbndb.com/covers/51/01/9780060525101.jpg'), + ('0451409361', 'The Lamorna Wink', 'https://images.isbndb.com/covers/93/62/9780451409362.jpg'), + ('0941263177', 'If You Didn''t Want Grits, How Come You Ordered Breakfast? (The Best Of That''s Jake)', 'https://images.isbndb.com/covers/31/77/9780941263177.jpg'), + ('078689007X', 'Hard Fall', 'https://images.isbndb.com/covers/00/71/9780786890071.jpg'), + ('0356105180', 'Food Repair Handbook', 'https://images.isbndb.com/covers/51/85/9780356105185.jpg'), + ('0740704540', 'Think Ifruity: A Foxtrot Collection', 'https://images.isbndb.com/covers/45/43/9780740704543.jpg'), + ('002862615X', 'The Unofficial Guide To Disneyland 1999 (Serial)', 'https://images.isbndb.com/covers/61/54/9780028626154.jpg'), + ('0670886610', 'Rumours Of A Hurricane', 'https://images.isbndb.com/covers/66/16/9780670886616.jpg'), + ('0785340467', 'How To Be A TV Quiz Show Millionaire', 'https://images.isbndb.com/covers/04/61/9780785340461.jpg'), + ('185326119X', 'The Jungle Book & Second Jungle Book (Wordsworth Childern''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/11/90/9781853261190.jpg'), + ('0233997660', 'What Do You Call A Gorilla With A Banana', 'https://images.isbndb.com/covers/76/67/9780233997667.jpg'), + ('0451528654', 'Black Beauty', 'https://images.isbndb.com/covers/86/50/9780451528650.jpg'), + ('0333493400', 'The Church Cat Abroad (Picturemac)', 'https://images.isbndb.com/covers/34/03/9780333493403.jpg'), + ('0064400034', 'Farmer Boy (Little House)', 'https://images.isbndb.com/covers/00/39/9780064400039.jpg'), + ('089009683X', 'The River Bank - Tales From The Wind In The Willows', 'https://images.isbndb.com/covers/68/33/9780890096833.jpg'), + ('0333493427', 'The Church Mice At Bay', 'https://images.isbndb.com/covers/34/27/9780333493427.jpg'), + ('0333493389', 'THE CHURCH MICE AND THE MOON', 'https://images.isbndb.com/covers/33/80/9780333493380.jpg'), + ('0753451131', 'Cats (Single Subject References)', 'https://images.isbndb.com/covers/11/37/9780753451137.jpg'), + ('1577490185', 'Itty Bitty Kitty Makes A Big Splash', 'https://images.isbndb.com/covers/01/80/9781577490180.jpg'), + ('1577490177', 'Itty Bitty Kitty (The Adventures Of Itty Bitty Kitty)', 'https://images.isbndb.com/covers/01/73/9781577490173.jpg'), + ('0753452243', 'In The Light Of The Moon And Other Bedtime Stories', 'https://images.isbndb.com/covers/22/40/9780753452240.jpg'), + ('1552633845', 'The Cat And The Wizard', 'https://images.isbndb.com/covers/38/47/9781552633847.jpg'), + ('1550372289', 'Hide And Sneak', 'https://images.isbndb.com/covers/22/81/9781550372281.jpg'), + ('1550372556', 'Purple, Green And Yellow (Classic Munsch)', 'https://images.isbndb.com/covers/25/57/9781550372557.jpg'), + ('0786822864', 'William Wegman''s Farm Days', 'https://images.isbndb.com/covers/28/67/9780786822867.jpg'), + ('0786804106', 'My Town', 'https://images.isbndb.com/covers/41/08/9780786804108.jpg'), + ('0679864415', 'Cat Traps (Step-Into-Reading, Step 1)', 'https://images.isbndb.com/covers/44/17/9780679864417.jpg'), + ('086611873X', 'Alice In Wonderland Great Illustrated CL', 'https://images.isbndb.com/covers/87/36/9780866118736.jpg'), + ('0394800168', 'Green Eggs And Ham (I Can Read It All By Myself Beginner Books)', 'https://images.isbndb.com/covers/01/65/9780394800165.jpg'), + ('0064441555', 'Amelia Bedelia (I Can Read Book Level 2)', 'https://images.isbndb.com/covers/15/51/9780064441551.jpg'), + ('0316813079', 'Look-Alikes Jr. : Find More Than 700 Hidden Everyday Objects', 'https://images.isbndb.com/covers/30/75/9780316813075.jpg'), + ('0679892478', 'Ten Apples Up On Top! (Bright & Early Board Books(TM))', 'https://images.isbndb.com/covers/24/72/9780679892472.jpg'), + ('0694003611', 'Goodnight Moon', 'https://images.isbndb.com/covers/36/17/9780694003617.jpg'), + ('0525444440', 'The House At Pooh Corner (Pooh Original Edition)', 'https://images.isbndb.com/covers/44/42/9780525444442.jpg'), + ('014036739X', 'The Phoenix And The Carpet (Puffin Classics)', 'https://images.isbndb.com/covers/73/93/9780140367393.jpg'), + ('1853261246', 'Five Children And It (Wordsworth Children''s Classics) (Wordsworth Classics)', 'https://images.isbndb.com/covers/12/44/9781853261244.jpg'), + ('0394829131', 'Great Day For Up (Bright & Early Books(R))', 'https://images.isbndb.com/covers/91/35/9780394829135.jpg'), + ('0920236936', 'Millicent And The Wind (Classic Munsch)', 'https://images.isbndb.com/covers/69/32/9780920236932.jpg'), + ('0525444459', 'When We Were Very Young (Pooh Original Edition)', 'https://images.isbndb.com/covers/44/59/9780525444459.jpg'), + ('0525444467', 'Now We Are Six (Pooh Original Edition)', 'https://images.isbndb.com/covers/44/66/9780525444466.jpg'), + ('2070728951', 'Le Secret', 'https://images.isbndb.com/covers/89/54/9782070728954.jpg'), + ('2012002439', 'Mini Se Déguise', 'https://images.isbndb.com/covers/24/32/9782012002432.jpg'), + ('2070357023', 'La Pomme', 'https://images.isbndb.com/covers/70/24/9782070357024.jpg'), + ('2253076252', 'Le Tableau Du Maître Flamand', 'https://images.isbndb.com/covers/62/54/9782253076254.jpg'), + ('2253006181', 'Pavillon De Femmes', 'https://images.isbndb.com/covers/61/83/9782253006183.jpg'), + ('2908957515', 'Un Thé Bien Fort Et Trois Tasses', 'https://images.isbndb.com/covers/75/18/9782908957518.jpg'), + ('2070412741', 'La Cliente', 'https://images.isbndb.com/covers/27/47/9782070412747.jpg'), + ('2266070592', 'Le Seigneur Des Anneaux, Tome 3 : Le Retour Du Roi', 'https://images.isbndb.com/covers/05/91/9782266070591.jpg'), + ('2266070606', 'Le Seigneur Des Anneaux, Tome 2 : Les Deux Tours', 'https://images.isbndb.com/covers/06/07/9782266070607.jpg'), + ('207042314X', 'L''Homme à L''affût', 'https://images.isbndb.com/covers/31/49/9782070423149.jpg'), + ('2070422070', 'Makhno Et Sa Juive', 'https://images.isbndb.com/covers/20/74/9782070422074.jpg'), + ('2070422097', 'Psychopolis Et Autres Nouvelles', 'https://images.isbndb.com/covers/20/98/9782070422098.jpg'), + ('2070425533', 'Gibiers D''élevage', 'https://images.isbndb.com/covers/55/32/9782070425532.jpg'), + ('2070422089', 'Histoire De Ma Vie', 'https://images.isbndb.com/covers/20/81/9782070422081.jpg'), + ('2070425509', 'Une Page D''histoire Et Autres Nouvelles', 'https://images.isbndb.com/covers/55/01/9782070425501.jpg'), + ('2070408019', 'Mygale', 'https://images.isbndb.com/covers/80/16/9782070408016.jpg'), + ('2856164129', 'Hurlevent', 'https://images.isbndb.com/covers/41/29/9782856164129.jpg'), + ('2226001344', 'Moi Un Comédien', 'https://images.isbndb.com/covers/13/44/9782226001344.jpg'), + ('2070369390', 'Elise Ou La Vraie Vie', 'https://images.isbndb.com/covers/93/93/9782070369393.jpg'), + ('2742718737', 'Café Nostalgia', 'https://images.isbndb.com/covers/87/33/9782742718733.jpg'), + ('2879293073', 'Ianto L''enragé', 'https://images.isbndb.com/covers/30/73/9782879293073.jpg'), + ('2253005266', 'La Chartreuse De Parme', 'https://images.isbndb.com/covers/52/61/9782253005261.jpg'), + ('2253028274', 'Le Jardin D''Acclimatation', 'https://images.isbndb.com/covers/82/77/9782253028277.jpg'), + ('2253046701', 'Lettres D''amour D''un Soldat De Vingt Ans', 'https://images.isbndb.com/covers/67/07/9782253046707.jpg'), + ('2253002933', 'Le Loup Des Steppes', 'https://images.isbndb.com/covers/29/32/9782253002932.jpg'), + ('2290303097', 'Treize Minutes', 'https://images.isbndb.com/covers/30/92/9782290303092.jpg'), + ('2253002887', 'Le Portrait De Dorian Gray', 'https://images.isbndb.com/covers/28/88/9782253002888.jpg'), + ('2020349140', 'Les Chroniques De L''oiseau à Ressort', 'https://images.isbndb.com/covers/91/47/9782020349147.jpg'), + ('2258047803', 'Calvin Et Hobbes, Tome 20 : Il Y A Des Trésors Partout !', 'https://images.isbndb.com/covers/78/08/9782258047808.jpg'), + ('222889401X', 'L''usage Du Monde', 'https://images.isbndb.com/covers/40/12/9782228894012.jpg'), + ('207070906X', 'Rive Gauche', 'https://images.isbndb.com/covers/90/69/9782070709069.jpg'), + ('2070386902', 'La Transparence Des Choses', 'https://images.isbndb.com/covers/69/01/9782070386901.jpg'), + ('2264027312', 'Roman Avec Cocaine', 'https://images.isbndb.com/covers/73/13/9782264027313.jpg'), + ('2070370003', 'Les Fleurs Bleues', 'https://images.isbndb.com/covers/00/09/9782070370009.jpg'), + ('057120631X', 'Requiem For A Dream (Screenplay)', 'https://images.isbndb.com/covers/63/15/9780571206315.jpg'), + ('2070425479', 'Les Exploits D''un Jeune Don Juan', 'https://images.isbndb.com/covers/54/71/9782070425471.jpg'), + ('2869596103', 'La Mouette Juive', 'https://images.isbndb.com/covers/61/08/9782869596108.jpg'), + ('2253010693', 'L''éducation Sentimentale', 'https://images.isbndb.com/covers/06/92/9782253010692.jpg'), + ('2910686078', 'L''occupation Et Autres Textes', 'https://images.isbndb.com/covers/60/79/9782910686079.jpg'), + ('2258047811', 'Calvin Et Hobbes, Tome 21 : Je Suis Trop Génial', 'https://images.isbndb.com/covers/78/15/9782258047815.jpg'), + ('2070377199', 'L''oeuvre De Chair', 'https://images.isbndb.com/covers/71/90/9782070377190.jpg'), + ('2253056383', 'Hotel Styx', 'https://images.isbndb.com/covers/63/86/9782253056386.jpg'), + ('2253047848', 'Fête Des Mères', 'https://images.isbndb.com/covers/78/41/9782253047841.jpg'), + ('2253040940', 'Cinna', 'https://images.isbndb.com/covers/09/41/9782253040941.jpg'), + ('2846710457', 'Les Grands Philosophes Et Leur Philosophie : Une Histoire Mouvementée Et Belliqueuse', 'https://images.isbndb.com/covers/04/59/9782846710459.jpg'), + ('2738112420', 'Pourquoi Le Monde Est-il Mathématique ?', 'https://images.isbndb.com/covers/24/22/9782738112422.jpg'), + ('273810858X', 'L''estime De Soi : S''aimer Pour Mieux Vivre Avec Les Autres', 'https://images.isbndb.com/covers/85/86/9782738108586.jpg'), + ('2843040612', 'Corps De Femme', 'https://images.isbndb.com/covers/06/10/9782843040610.jpg'), + ('2070764702', 'Ben Laden Secret De Famille De L''Amérique', 'https://images.isbndb.com/covers/47/09/9782070764709.jpg'), + ('2746500582', 'En Amour, Sommes-nous Des Bêtes ?', 'https://images.isbndb.com/covers/05/87/9782746500587.jpg'), + ('2264035951', 'Le Tueur Aveugle', 'https://images.isbndb.com/covers/59/50/9782264035950.jpg'), + ('2020301016', 'Hier', 'https://images.isbndb.com/covers/10/15/9782020301015.jpg'), + ('2020259109', 'Pourquoi Lire Les Classiques', 'https://images.isbndb.com/covers/91/01/9782020259101.jpg'), + ('2070373630', 'Exercices De Style', 'https://images.isbndb.com/covers/36/35/9782070373635.jpg'), + ('2264027789', 'Les Oiseaux De Fra Angelico', 'https://images.isbndb.com/covers/77/88/9782264027788.jpg'), + ('2020479915', 'La Taupe', 'https://images.isbndb.com/covers/99/12/9782020479912.jpg'), + ('2070422135', 'Leurre De Vérité Et Autres Nouvelles', 'https://images.isbndb.com/covers/21/35/9782070422135.jpg'), + ('2070423530', 'Le Capitaine Fracasse', 'https://images.isbndb.com/covers/35/38/9782070423538.jpg'), + ('2253004014', 'Les Liaisons Dangereuses', 'https://images.isbndb.com/covers/40/11/9782253004011.jpg'), + ('2070400557', 'L''Ecriture Ou La Vie', 'https://images.isbndb.com/covers/05/53/9782070400553.jpg'), + ('2253051209', 'Samarcande', 'https://images.isbndb.com/covers/12/06/9782253051206.jpg'), + ('2869309651', 'Correspondance', 'https://images.isbndb.com/covers/96/54/9782869309654.jpg'), + ('2253043982', 'L''un Est L''autre : Des Relations Entre Hommes Et Femmes', 'https://images.isbndb.com/covers/39/80/9782253043980.jpg'), + ('2020309610', 'De Si Jolis Chevaux', 'https://images.isbndb.com/covers/96/15/9782020309615.jpg'), + ('2264034769', 'Marcovaldo', 'https://images.isbndb.com/covers/47/62/9782264034762.jpg'), + ('2867447763', 'Dans Ces Bras-là - Prix Renaudot Des Lycéens 2000', 'https://images.isbndb.com/covers/77/61/9782867447761.jpg'), + ('2070371700', 'Mangeclous', 'https://images.isbndb.com/covers/17/09/9782070371709.jpg'), + ('2742740945', 'Préméditation', 'https://images.isbndb.com/covers/09/49/9782742740949.jpg'), + ('2742706372', 'La Grosse Femme D''à Côté Est Enceinte', 'https://images.isbndb.com/covers/63/72/9782742706372.jpg'), + ('2020067447', 'Les Fous De Bassan', 'https://images.isbndb.com/covers/74/47/9782020067447.jpg'), + ('2070376702', 'Désert', 'https://images.isbndb.com/covers/67/04/9782070376704.jpg'), + ('2070368726', 'Le Chant Du Monde', 'https://images.isbndb.com/covers/87/23/9782070368723.jpg'), + ('2070322793', 'Manifestes Du Surréalisme', 'https://images.isbndb.com/covers/27/94/9782070322794.jpg'), + ('2070324303', 'Par-delà Bien Et Mal', 'https://images.isbndb.com/covers/43/09/9782070324309.jpg'), + ('2070362841', 'Le Château', 'https://images.isbndb.com/covers/28/44/9782070362844.jpg'), + ('2070372162', 'MOBY DICK T 1', 'https://images.isbndb.com/covers/21/64/9782070372164.jpg'), + ('2020126540', 'Je Suis Né', 'https://images.isbndb.com/covers/65/40/9782020126540.jpg'), + ('270731028X', 'La Salle De Bain', 'https://images.isbndb.com/covers/02/86/9782707310286.jpg'), + ('2213006180', 'Le Kôan Zen : Essai Sur Le Bouddhisme Zen', 'https://images.isbndb.com/covers/61/85/9782213006185.jpg'), + ('2707301108', 'Le Mythe De L''intériorité', 'https://images.isbndb.com/covers/11/09/9782707301109.jpg'), + ('202005924X', 'Patience Dans L''azur', 'https://images.isbndb.com/covers/92/44/9782020059244.jpg'), + ('2707126934', 'L''Intelligence Collective : Pour Une Anthropologie Du Cyberspace', 'https://images.isbndb.com/covers/69/31/9782707126931.jpg'), + ('2707126926', 'Nous N''Avons Jamais Ete Modernes', 'https://images.isbndb.com/covers/69/24/9782707126924.jpg'), + ('2020088959', 'L''Univers Ambidextre : Les Miroirs De L''espace-temps', 'https://images.isbndb.com/covers/89/54/9782020088954.jpg'), + ('2020325276', 'Trois Défis Pour Un Droit Mondial', 'https://images.isbndb.com/covers/52/71/9782020325271.jpg'), + ('273810228X', 'Les Nouveaux Visages De La Folie', 'https://images.isbndb.com/covers/22/87/9782738102287.jpg'), + ('2738104134', 'Comment Gérer Les Personnalités Difficiles', 'https://images.isbndb.com/covers/41/37/9782738104137.jpg'), + ('2738102158', 'Les Nourritures Affectives', 'https://images.isbndb.com/covers/21/57/9782738102157.jpg'), + ('286930756X', 'Introduction à L''oeuvre De Freud, Ferenczi...', 'https://images.isbndb.com/covers/75/68/9782869307568.jpg'), + ('0684803534', 'Life On The Screen', 'https://images.isbndb.com/covers/35/31/9780684803531.jpg'), + ('2904299106', 'Aie, Mes Aieux! Liens Transgenerationnels, Sectrets De Familie, Syndrome D Anniversaire Transmission Des Traumatismes Et Pratique Du Genosociogramme.', 'https://images.isbndb.com/covers/91/00/9782904299100.jpg'), + ('2253150371', 'Sac D''os', 'https://images.isbndb.com/covers/03/74/9782253150374.jpg'), + ('207071781X', 'Papiers Collés', 'https://images.isbndb.com/covers/78/11/9782070717811.jpg'), + ('225306386X', 'Le Gai Savoir', 'https://images.isbndb.com/covers/38/65/9782253063865.jpg'), + ('284205007X', 'Mon Enfance', 'https://images.isbndb.com/covers/00/78/9782842050078.jpg'), + ('274272494X', 'Nord Perdu, Suivi De Douze France', 'https://images.isbndb.com/covers/49/49/9782742724949.jpg'), + ('2742730486', 'Limbes - Limbo : Un Hommage à Samuel Beckett', 'https://images.isbndb.com/covers/04/83/9782742730483.jpg'), + ('2715219512', 'Ceci N''est Pas Un Conte', 'https://images.isbndb.com/covers/95/19/9782715219519.jpg'), + ('2070378411', 'L''Enchanteur', 'https://images.isbndb.com/covers/84/18/9782070378418.jpg'), + ('2290303054', 'Les Particules élémentaires', 'https://images.isbndb.com/covers/30/54/9782290303054.jpg'), + ('2070388638', 'La Mécanique Des Femmes', 'https://images.isbndb.com/covers/86/39/9782070388639.jpg'), + ('2070409848', 'Naissance Des Fantômes', 'https://images.isbndb.com/covers/98/46/9782070409846.jpg'), + ('2020309629', 'Suttree', 'https://images.isbndb.com/covers/96/22/9782020309622.jpg'), + ('2070385698', 'Portrait De L''artiste En Jeune Homme', 'https://images.isbndb.com/covers/56/90/9782070385690.jpg'), + ('2020374277', 'Nu Couché', 'https://images.isbndb.com/covers/42/79/9782020374279.jpg'), + ('2020403412', 'La Conférence De Cintegabelle', 'https://images.isbndb.com/covers/34/12/9782020403412.jpg'), + ('2020352850', 'La Compagnie Des Spectres', 'https://images.isbndb.com/covers/28/57/9782020352857.jpg'), + ('229030879X', 'Baise-moi', 'https://images.isbndb.com/covers/87/90/9782290308790.jpg'), + ('2020551306', 'La Vie Sexuelle De Catherine M., Précédé De "Pourquoi Et Comment"', 'https://images.isbndb.com/covers/13/04/9782020551304.jpg'), + ('207037467X', 'Les Cerfs-volants', 'https://images.isbndb.com/covers/46/70/9782070374670.jpg'), + ('2070362426', 'Les Racines Du Ciel', 'https://images.isbndb.com/covers/24/24/9782070362424.jpg'), + ('2867446821', 'L''Adversaire', 'https://images.isbndb.com/covers/68/25/9782867446825.jpg'), + ('2264024976', 'Désobéir', 'https://images.isbndb.com/covers/49/78/9782264024978.jpg'), + ('2221078306', 'LA MORT INTIME. : Ceux Qui Vont Mourir Nous Apprennent à Vivre', 'https://images.isbndb.com/covers/83/03/9782221078303.jpg'), + ('2842050525', 'Le Surmâle', 'https://images.isbndb.com/covers/05/28/9782842050528.jpg'), + ('2266064975', 'Nuits D''encre', 'https://images.isbndb.com/covers/49/72/9782266064972.jpg'), + ('207038781X', 'The Dunwich Horror - L''Horreur De Dunwich', 'https://images.isbndb.com/covers/78/16/9782070387816.jpg'), + ('2746500655', 'L''Incandescent', 'https://images.isbndb.com/covers/06/55/9782746500655.jpg'), + ('2070400867', 'Lambeaux', 'https://images.isbndb.com/covers/08/67/9782070400867.jpg'), + ('2844120644', 'Effroyables Jardins', 'https://images.isbndb.com/covers/06/49/9782844120649.jpg'), + ('2020395886', 'La Culture Expliquée à Ma Fille', 'https://images.isbndb.com/covers/58/85/9782020395885.jpg'), + ('2253012556', 'Mémoires D''outre-tombe, Tome 1', 'https://images.isbndb.com/covers/25/59/9782253012559.jpg'), + ('2020068079', 'Traite Du Zen Et De L''Entretie', 'https://images.isbndb.com/covers/80/79/9782020068079.jpg'), + ('2260012078', 'Atlas', 'https://images.isbndb.com/covers/20/78/9782260012078.jpg'), + ('2876860791', 'Letiers-instruit', 'https://images.isbndb.com/covers/07/97/9782876860797.jpg'), + ('2876860414', 'Le Contrat Naturel', 'https://images.isbndb.com/covers/04/14/9782876860414.jpg'), + ('2876860783', 'Eclaircissements', 'https://images.isbndb.com/covers/07/80/9782876860780.jpg'), + ('2876860031', 'Statues : Le Second Livre Des Fondations', 'https://images.isbndb.com/covers/00/32/9782876860032.jpg'), + ('2082115178', 'Détachement', 'https://images.isbndb.com/covers/51/79/9782082115179.jpg'), + ('208211533X', 'L''hermaphrodite', 'https://images.isbndb.com/covers/53/39/9782082115339.jpg'), + ('2246275512', 'Genèse', 'https://images.isbndb.com/covers/55/10/9782246275510.jpg'), + ('2246334314', 'Les Cinq Sens', 'https://images.isbndb.com/covers/43/16/9782246334316.jpg'), + ('2707303208', 'Hermès V : Le Passage Du Nord-Ouest', 'https://images.isbndb.com/covers/32/02/9782707303202.jpg'), + ('2020385856', 'Bouquiner : Autobiobibliographie', 'https://images.isbndb.com/covers/58/55/9782020385855.jpg'), + ('2869304870', 'Changement De Décor', 'https://images.isbndb.com/covers/48/71/9782869304871.jpg'), + ('2070372391', 'Berlin, Alexanderplatz', 'https://images.isbndb.com/covers/23/93/9782070372393.jpg'), + ('2070374556', 'Confession D''un Masque', 'https://images.isbndb.com/covers/45/57/9782070374557.jpg'), + ('2070377865', 'Portrait Du Joueur', 'https://images.isbndb.com/covers/78/62/9782070377862.jpg'), + ('2070363511', 'Au-dessous Du Volcan', 'https://images.isbndb.com/covers/35/13/9782070363513.jpg'), + ('2070386023', 'Le Lièvre De Vatanen', 'https://images.isbndb.com/covers/60/24/9782070386024.jpg'), + ('224648751X', 'Le Désir D''être Un Volcan', 'https://images.isbndb.com/covers/75/17/9782246487517.jpg'), + ('2742720073', 'Triste Vie', 'https://images.isbndb.com/covers/00/71/9782742720071.jpg'), + ('2070360784', 'L''Exil Et Le Royaume', 'https://images.isbndb.com/covers/07/89/9782070360789.jpg'), + ('2070419584', 'Océan Mer', 'https://images.isbndb.com/covers/95/86/9782070419586.jpg'), + ('2070378233', 'La Guerre De La Fin Du Monde', 'https://images.isbndb.com/covers/82/34/9782070378234.jpg'), + ('2742714448', 'De Beaux Lendemains', 'https://images.isbndb.com/covers/44/45/9782742714445.jpg'), + ('2743608846', 'Les Quatre Verites', 'https://images.isbndb.com/covers/88/42/9782743608842.jpg'), + ('2246616115', 'La Joueuse De Go - Prix Goncourt Des Lycéens 2001', 'https://images.isbndb.com/covers/61/15/9782246616115.jpg'), + ('2070393453', 'Le Choix De Sophie', 'https://images.isbndb.com/covers/34/59/9782070393459.jpg'), + ('2290053945', 'Lettres Parisiennes : Histoires D''exil', 'https://images.isbndb.com/covers/39/42/9782290053942.jpg'), + ('2742718877', 'Histoire D''Omaya', 'https://images.isbndb.com/covers/88/70/9782742718870.jpg'), + ('2742722688', 'Prodige', 'https://images.isbndb.com/covers/26/86/9782742722686.jpg'), + ('2844121152', 'Aimer à Peine', 'https://images.isbndb.com/covers/11/58/9782844121158.jpg'), + ('2742713352', 'Grâce Et Dénuement', 'https://images.isbndb.com/covers/33/56/9782742713356.jpg'), + ('2912517168', 'Jeune Fille à La Perle', 'https://images.isbndb.com/covers/71/66/9782912517166.jpg'), + ('2070767000', 'La Petite Chartreuse : Prix Du Livre Inter 2003', 'https://images.isbndb.com/covers/70/07/9782070767007.jpg'), + ('2070757811', 'La Nouvelle Pornographie', 'https://images.isbndb.com/covers/78/17/9782070757817.jpg'), + ('2210422701', 'Petite Fabrique De Littérature', 'https://images.isbndb.com/covers/27/04/9782210422704.jpg'), + ('2742727329', 'La Sacoche', 'https://images.isbndb.com/covers/73/22/9782742727322.jpg'), + ('2743608765', 'Pensées Secrètes', 'https://images.isbndb.com/covers/87/67/9782743608767.jpg'), + ('220725092X', 'La Douce Empoisonneuse', 'https://images.isbndb.com/covers/09/21/9782207250921.jpg'), + ('2867449375', 'L''Amour, Roman', 'https://images.isbndb.com/covers/93/76/9782867449376.jpg'), + ('2226116745', 'L''Evangile Selon Pilate', 'https://images.isbndb.com/covers/67/41/9782226116741.jpg'), + ('2226116494', 'Le Concile De Pierre', 'https://images.isbndb.com/covers/64/99/9782226116499.jpg'), + ('2867447143', 'Berg Et Beck', 'https://images.isbndb.com/covers/71/43/9782867447143.jpg'), + ('2842630254', 'Je Voudrais Que Quelqu''un M''attende Quelque Part', 'https://images.isbndb.com/covers/02/56/9782842630256.jpg'), + ('2742722629', 'Tombouctou', 'https://images.isbndb.com/covers/26/24/9782742722624.jpg'), + ('2742701729', 'Mr Vertigo', 'https://images.isbndb.com/covers/17/28/9782742701728.jpg'), + ('2868699529', 'L''attachée', 'https://images.isbndb.com/covers/95/27/9782868699527.jpg'), + ('2742700064', 'La Véritable Histoire Du Dernier Roi Socialiste', 'https://images.isbndb.com/covers/00/66/9782742700066.jpg'), + ('2742728759', 'La Conversation Amoureuse', 'https://images.isbndb.com/covers/87/56/9782742728756.jpg'), + ('2742734929', 'Le Monde Du Livre En Question :Au Commencement était La Lettre...', 'https://images.isbndb.com/covers/49/24/9782742734924.jpg'), + ('2070417611', 'Romain Gary', 'https://images.isbndb.com/covers/76/12/9782070417612.jpg'), + ('2070408957', 'L''Avenir', 'https://images.isbndb.com/covers/89/55/9782070408955.jpg'), + ('2070408582', 'Mille Six Cents Ventres - Prix Goncourt Des Lycéens 1998', 'https://images.isbndb.com/covers/85/80/9782070408580.jpg'), + ('2266062344', 'Fortitude', 'https://images.isbndb.com/covers/23/43/9782266062343.jpg'), + ('2020385805', 'Neige', 'https://images.isbndb.com/covers/58/00/9782020385800.jpg'), + ('2070714489', 'Lettres à Son Frère Théo', 'https://images.isbndb.com/covers/44/83/9782070714483.jpg'), + ('2020257785', 'L''épopée Du Buveur D''eau', 'https://images.isbndb.com/covers/77/87/9782020257787.jpg'), + ('2020062143', 'La Barbare', 'https://images.isbndb.com/covers/21/45/9782020062145.jpg'), + ('2868698921', 'Moon Palace', 'https://images.isbndb.com/covers/89/26/9782868698926.jpg'), + ('222613624X', 'L''Empire Des Loups', 'https://images.isbndb.com/covers/62/44/9782226136244.jpg'), + ('2020375060', 'Tigre En Papier', 'https://images.isbndb.com/covers/50/61/9782020375061.jpg'), + ('2020490668', 'Une Rivière Verte Et Silencieuse', 'https://images.isbndb.com/covers/06/65/9782020490665.jpg'), + ('2070301028', 'Quelqu''un D''autre', 'https://images.isbndb.com/covers/10/27/9782070301027.jpg'), + ('2070259811', 'La Guerre De La Fin Du Monde', 'https://images.isbndb.com/covers/98/16/9782070259816.jpg'), + ('2228128007', 'Dire Et Interdire : Eléments De Jurologie', 'https://images.isbndb.com/covers/80/01/9782228128001.jpg'), + ('2869305583', 'Un Tout Petit Monde', 'https://images.isbndb.com/covers/55/88/9782869305588.jpg'), + ('2869304560', 'Jeu De Société', 'https://images.isbndb.com/covers/45/67/9782869304567.jpg'), + ('2869302940', 'Le Dictionnaire Du Diable', 'https://images.isbndb.com/covers/29/45/9782869302945.jpg'), + ('2743603291', 'Thérapie', 'https://images.isbndb.com/covers/32/98/9782743603298.jpg'), + ('2253151017', 'Le Dit De Tianyi - Prix Femina 1998', 'https://images.isbndb.com/covers/10/12/9782253151012.jpg'), + ('2742723951', 'TROIS FOIS SEPTEMBRE', 'https://images.isbndb.com/covers/39/59/9782742723959.jpg'), + ('2742708715', 'Instruments Des Ténèbres', 'https://images.isbndb.com/covers/87/10/9782742708710.jpg'), + ('2742701826', 'Les Variations Goldberg', 'https://images.isbndb.com/covers/18/27/9782742701827.jpg'), + ('2742717730', 'L''Empreinte De L''ange', 'https://images.isbndb.com/covers/77/36/9782742717736.jpg'), + ('2742743510', 'Une Adoration', 'https://images.isbndb.com/covers/35/13/9782742743513.jpg'), + ('2070757625', 'Balzac Et La Petite Tailleuse Chinoise', 'https://images.isbndb.com/covers/76/26/9782070757626.jpg'), + ('2070422437', 'Trois Chevaux', 'https://images.isbndb.com/covers/24/32/9782070422432.jpg'), + ('2070414167', 'Naissances', 'https://images.isbndb.com/covers/41/61/9782070414161.jpg'), + ('0812590465', 'Ariadne''s Web ( Book Of The Gods, Vol. II )', 'https://images.isbndb.com/covers/04/63/9780812590463.jpg'), + ('0807511455', 'The Chocolate Sundae Mystery (The Boxcar Children Mysteries #46)', 'https://images.isbndb.com/covers/14/59/9780807511459.jpg'), + ('080751604X', 'The Dinosaur Mystery (The Boxcar Children Mysteries #44)', 'https://images.isbndb.com/covers/60/41/9780807516041.jpg'), + ('0807554065', 'The Mystery Of The Missing Cat (The Boxcar Children Mysteries #42)', 'https://images.isbndb.com/covers/40/67/9780807554067.jpg'), + ('0807528552', 'The Ghost Ship Mystery (The Boxcar Children Mysteries #39)', 'https://images.isbndb.com/covers/85/56/9780807528556.jpg'), + ('0807510793', 'The Castle Mystery (The Boxcar Children Mysteries #36)', 'https://images.isbndb.com/covers/07/97/9780807510797.jpg'), + ('0807553980', 'The Mystery Of The Singing Ghost (Boxcar Children #31)', 'https://images.isbndb.com/covers/39/85/9780807553985.jpg'), + ('0807553689', 'The Mystery Cruise (The Boxcar Children Mysteries #29)', 'https://images.isbndb.com/covers/36/88/9780807553688.jpg'), + ('0807553859', 'The Mystery Of The Mixed-up Zoo (The Boxcar Children, No. 26)', 'https://images.isbndb.com/covers/38/55/9780807553855.jpg'), + ('0807531782', 'The Haunted Cabin Mystery (The Boxcar Children Mysteries #20)', 'https://images.isbndb.com/covers/17/85/9780807531785.jpg'), + ('0807553670', 'Mystery Behind The Wall (The Boxcar Children Mysteries #17)', 'https://images.isbndb.com/covers/36/71/9780807553671.jpg'), + ('0807507091', 'Bicycle Mystery (The Boxcar Children Mysteries #15)', 'https://images.isbndb.com/covers/70/94/9780807507094.jpg'), + ('0807507946', 'Blue Bay Mystery (The Boxcar Children Mysteries #6)', 'https://images.isbndb.com/covers/79/40/9780807507940.jpg'), + ('0807551414', 'Mike''s Mystery (The Boxcar Children Mysteries #5)', 'https://images.isbndb.com/covers/14/17/9780807551417.jpg'), + ('0807576743', 'Surprise Island (The Boxcar Children Mysteries #2)', 'https://images.isbndb.com/covers/67/48/9780807576748.jpg'), + ('0807576239', 'The Mystery Of The Stolen Sword (The Boxcar Children Mysteries #67)', 'https://images.isbndb.com/covers/62/36/9780807576236.jpg'), + ('0807554189', 'The Mystery On Stage (Boxcar Children Mysteries #43)', 'https://images.isbndb.com/covers/41/80/9780807554180.jpg'), + ('0807554014', 'The Mystery Of The Lost Village (The Boxcar Children Mysteries #37)', 'https://images.isbndb.com/covers/40/12/9780807554012.jpg'), + ('0807553948', 'The Mystery At The Dog Show (The Boxcar Children Mysteries #35)', 'https://images.isbndb.com/covers/39/47/9780807553947.jpg'), + ('0807553395', 'The Mystery Horse (The Boxcar Children Mysteries #34)', 'https://images.isbndb.com/covers/33/98/9780807553398.jpg'), + ('0807565350', 'The Pizza Mystery (The Boxcar Children Mysteries #33)', 'https://images.isbndb.com/covers/53/53/9780807565353.jpg'), + ('0807503193', 'The Amusement Park Mystery (The Boxcar Children Mysteries #25)', 'https://images.isbndb.com/covers/31/95/9780807503195.jpg'), + ('0807553794', 'The Mystery Of The Hidden Painting (The Boxcar Children Mysteries #24)', 'https://images.isbndb.com/covers/37/94/9780807553794.jpg'), + ('0807503673', 'The Animal Shelter Mystery (The Boxcar Children Mysteries #22)', 'https://images.isbndb.com/covers/36/76/9780807503676.jpg'), + ('0807515604', 'The Deserted Library Mystery (The Boxcar Children Mysteries #21)', 'https://images.isbndb.com/covers/56/00/9780807515600.jpg'), + ('0807509760', 'The Bus Station Mystery (The Boxcar Children Mysteries #18)', 'https://images.isbndb.com/covers/97/60/9780807509760.jpg'), + ('0807553727', 'Mystery In The Sand (The Boxcar Children Mysteries #16)', 'https://images.isbndb.com/covers/37/25/9780807553725.jpg'), + ('0807580872', 'Tree House Mystery (The Boxcar Children Mysteries #14)', 'https://images.isbndb.com/covers/08/75/9780807580875.jpg'), + ('080757516X', 'Snowbound Mystery (The Boxcar Children Mysteries #13)', 'https://images.isbndb.com/covers/51/61/9780807575161.jpg'), + ('0807572632', 'Schoolhouse Mystery (The Boxcar Children Mysteries #10)', 'https://images.isbndb.com/covers/26/34/9780807572634.jpg'), + ('0807534137', 'Houseboat Mystery (The Boxcar Children Mysteries #12)', 'https://images.isbndb.com/covers/41/37/9780807534137.jpg'), + ('0590494465', 'The Haunted Mask (Goosebumps)', 'https://images.isbndb.com/covers/44/65/9780590494465.jpg'), + ('0590568930', 'The Curse Of Camp Cold Lake (Goosebumps)', 'https://images.isbndb.com/covers/89/37/9780590568937.jpg'), + ('0590047116', 'Hangin'' With The Backstreet Boys: An Unauthorized Biography', 'https://images.isbndb.com/covers/71/11/9780590047111.jpg'), + ('1561441279', 'Modern Publishing''s Unauthorized Biography Of Jason Priestley', 'https://images.isbndb.com/covers/12/73/9781561441273.jpg'), + ('0590479083', 'The Case Of The Stolen Jewel (Clue Jr. #2)', 'https://images.isbndb.com/covers/90/80/9780590479080.jpg'), + ('0590479075', 'The Case Of The Secret Message (Clue Jr. #1)', 'https://images.isbndb.com/covers/90/73/9780590479073.jpg'), + ('0061067563', 'Beverly Hills 90210: Summer Love', 'https://images.isbndb.com/covers/75/63/9780061067563.jpg'), + ('0061061468', 'More Than Words (Beverly Hills, 90210)', 'https://images.isbndb.com/covers/14/62/9780061061462.jpg'), + ('0205086802', 'The Pageant Of World History', 'https://images.isbndb.com/covers/68/01/9780205086801.jpg'), + ('039489118X', 'The Landmark History Of The American People:Vol. 1', 'https://images.isbndb.com/covers/11/87/9780394891187.jpg'), + ('0385174837', 'English Made Simple, Revised Edition: A Complete, Step-by-Step Guide To Better Language Skills (Made Simple (Broadway Books))', 'https://images.isbndb.com/covers/48/31/9780385174831.jpg'), + ('0441007740', 'Blood To Blood: The Dracula Story Continues', 'https://images.isbndb.com/covers/77/45/9780441007745.jpg'), + ('0965072444', 'The Tao Of Birth Days: Using The I-Ching To Become Who You Were Born To Be', 'https://images.isbndb.com/covers/24/41/9780965072441.jpg'), + ('0451404432', 'Touch Of Night (Dreamspun)', 'https://images.isbndb.com/covers/44/35/9780451404435.jpg'), + ('0553282123', 'The Oat And Wheat Bran Health Plan: The Delicious Way To Lower Cholesterol...', 'https://images.isbndb.com/covers/21/22/9780553282122.jpg'), + ('0842317112', 'In Touch (Deluxe Gift Edition)', 'https://images.isbndb.com/covers/71/15/9780842317115.jpg'), + ('0380762609', 'All I Need Is You', 'https://images.isbndb.com/covers/26/06/9780380762606.jpg'), + ('0440237009', 'The House On Hope Street', 'https://images.isbndb.com/covers/70/06/9780440237006.jpg'), + ('0310214599', 'Think Big: Unleashing Your Potential For Excellence', 'https://images.isbndb.com/covers/45/95/9780310214595.jpg'), + ('0671749412', 'Going Home', 'https://images.isbndb.com/covers/94/15/9780671749415.jpg'), + ('0440186560', 'To Love Again', 'https://images.isbndb.com/covers/65/64/9780440186564.jpg'), + ('0440184053', 'Summer''s End', 'https://images.isbndb.com/covers/40/58/9780440184058.jpg'), + ('0440185327', 'Thurston House', 'https://images.isbndb.com/covers/53/21/9780440185321.jpg'), + ('0440217547', 'Accident', 'https://images.isbndb.com/covers/75/41/9780440217541.jpg'), + ('0515115630', 'Family Blessings', 'https://images.isbndb.com/covers/56/35/9780515115635.jpg'), + ('0671667653', 'The Gathering Storm (Men At Arms, Book 1)', 'https://images.isbndb.com/covers/76/58/9780671667658.jpg'), + ('0449132307', 'Come Sunrise', 'https://images.isbndb.com/covers/23/02/9780449132302.jpg'), + ('055357602X', 'In A Class By Itself', 'https://images.isbndb.com/covers/60/23/9780553576023.jpg'), + ('0451196716', 'The Long Walk', 'https://images.isbndb.com/covers/67/12/9780451196712.jpg'), + ('0671533983', 'Diana: Her New Life', 'https://images.isbndb.com/covers/39/84/9780671533984.jpg'), + ('0312963173', 'Here, Kitty, Kitty', 'https://images.isbndb.com/covers/31/70/9780312963170.jpg'), + ('1551662779', 'The Best Of Enemies: Who Would You Trust With Your Life? Think Again.', 'https://images.isbndb.com/covers/27/70/9781551662770.jpg'), + ('1551668181', 'Innocents Club', 'https://images.isbndb.com/covers/81/85/9781551668185.jpg'), + ('1551660482', 'Guilt By Silence', 'https://images.isbndb.com/covers/04/86/9781551660486.jpg'), + ('1551661551', 'Common Passions', 'https://images.isbndb.com/covers/15/51/9781551661551.jpg'), + ('0451201744', 'The Walking', 'https://images.isbndb.com/covers/17/44/9780451201744.jpg'), + ('0515090166', 'The Cat Who Saw Red', 'https://images.isbndb.com/covers/01/61/9780515090161.jpg'), + ('0515087947', 'The Cat Who Turned On And Off', 'https://images.isbndb.com/covers/79/49/9780515087949.jpg'), + ('0453004687', 'Thinner', 'https://images.isbndb.com/covers/46/88/9780453004688.jpg'), + ('067103975X', 'Salem''s Lot', 'https://images.isbndb.com/covers/97/52/9780671039752.jpg'), + ('0670868361', 'Desperation', 'https://images.isbndb.com/covers/83/60/9780670868360.jpg'), + ('0452262143', 'The Drawing Of The Three (The Dark Tower II) ISBN 0452262143', 'https://images.isbndb.com/covers/21/40/9780452262140.jpg'), + ('0451167805', 'Firestarter', 'https://images.isbndb.com/covers/78/04/9780451167804.jpg'), + ('0451132378', 'Pet Sematary', 'https://images.isbndb.com/covers/23/76/9780451132376.jpg'), + ('0451190564', 'The Night Journey (The Green Mile, Part 5)', 'https://images.isbndb.com/covers/05/67/9780451190567.jpg'), + ('0451190556', 'Green Mile Book 4: The Bad Death Of Eduard Delacroix: The Green Mile, Part 4', 'https://images.isbndb.com/covers/05/50/9780451190550.jpg'), + ('0140258574', 'Green Mile Pb Vol 2', 'https://images.isbndb.com/covers/85/78/9780140258578.jpg'), + ('055357227X', 'The Web', 'https://images.isbndb.com/covers/22/78/9780553572278.jpg'), + ('055329170X', 'Time Bomb (Alex Delaware Novels)', 'https://images.isbndb.com/covers/17/04/9780553291704.jpg'), + ('0425174271', 'Certain Prey', 'https://images.isbndb.com/covers/42/72/9780425174272.jpg'), + ('039914613X', 'Easy Prey', 'https://images.isbndb.com/covers/61/38/9780399146138.jpg'), + ('0399143823', 'Secret Prey', 'https://images.isbndb.com/covers/38/23/9780399143823.jpg'), + ('0849936373', 'Rebel Glory (Lightning On Ice)', 'https://images.isbndb.com/covers/63/71/9780849936371.jpg'), + ('0679873066', 'In Leo''s Lair (Zodiac Chillers)', 'https://images.isbndb.com/covers/30/68/9780679873068.jpg'), + ('0425126064', 'Shadow Prey', 'https://images.isbndb.com/covers/60/66/9780425126066.jpg'), + ('0765191121', 'Postmortem / Body Of Evidence / All That Remains (Kay Scarpetta)', 'https://images.isbndb.com/covers/11/20/9780765191120.jpg'), + ('0446328413', 'The Goonies', 'https://images.isbndb.com/covers/84/18/9780446328418.jpg'), + ('0440986524', 'That Was Then, This Is Now', 'https://images.isbndb.com/covers/65/22/9780440986522.jpg'), + ('0590440012', 'The Call Of The Wild (Apple Classics)', 'https://images.isbndb.com/covers/00/11/9780590440011.jpg'), + ('1551664313', 'Random Acts: Does It Take A Killer To Catch A Killer?', 'https://images.isbndb.com/covers/43/16/9781551664316.jpg'), + ('0590443305', 'The Accident', 'https://images.isbndb.com/covers/33/02/9780590443302.jpg'), + ('0671002937', 'Daughters Of Silence (Fear Street, No. 6)', 'https://images.isbndb.com/covers/29/30/9780671002930.jpg'), + ('0061061573', 'The Attic (Nightmare Inn)', 'https://images.isbndb.com/covers/15/78/9780061061578.jpg'), + ('0743475488', 'Kill And Tell: A Novel', 'https://images.isbndb.com/covers/54/88/9780743475488.jpg'), + ('0061042935', 'Everywhere That Mary Went', 'https://images.isbndb.com/covers/29/35/9780061042935.jpg'), + ('0778320057', 'Scent Of A Killer (Mira)', 'https://images.isbndb.com/covers/00/50/9780778320050.jpg'), + ('0425189864', 'Mortal Prey (Lucas Davenport, No. 13)', 'https://images.isbndb.com/covers/98/63/9780425189863.jpg'), + ('0451202287', 'Tracking Time (April Woo Suspense Novels)', 'https://images.isbndb.com/covers/22/84/9780451202284.jpg'), + ('0821766775', 'Present Danger', 'https://images.isbndb.com/covers/67/74/9780821766774.jpg'), + ('0451168623', 'When The Bough Breaks', 'https://images.isbndb.com/covers/86/27/9780451168627.jpg'), + ('0451176898', 'More Mystery Cats (Signet)', 'https://images.isbndb.com/covers/68/99/9780451176899.jpg'), + ('0595129838', 'Rules For Roommates: The Ultimate Guide To Reclaiming Your Space And Your Sanity', 'https://images.isbndb.com/covers/98/36/9780595129836.jpg'), + ('0965735974', 'Some Things You Should Know (A Collection Of Stories)', 'https://images.isbndb.com/covers/59/71/9780965735971.jpg'), + ('0151002908', 'Cruel Banquet: The Life And Loves Of Frida Strindberg', 'https://images.isbndb.com/covers/29/00/9780151002900.jpg'), + ('1564145549', 'Hollywood Urban Legends: The Truth Behind All Those Delightfully Persistent Myths Of Film Television, And Music', 'https://images.isbndb.com/covers/55/43/9781564145543.jpg'), + ('0375703845', 'Glamorama (Vintage Contemporaries)', 'https://images.isbndb.com/covers/38/43/9780375703843.jpg'), + ('3821834250', 'How To Use Dirty Words', 'https://images.isbndb.com/covers/42/52/9783821834252.jpg'), + ('3499105810', 'Der Ekel', 'https://images.isbndb.com/covers/58/14/9783499105814.jpg'), + ('3499133164', 'Gesammelte Werke In Einzelausgaben. Philosophische Schriften Band 3: Das Sein Und Das Nichts. Versuch Einer Phänomenologischen Ontologie', 'https://images.isbndb.com/covers/31/69/9783499133169.jpg'), + ('3404241185', 'Das Neue Buch Hiob', 'https://images.isbndb.com/covers/11/87/9783404241187.jpg'), + ('3404232011', 'Tunnel Zu Den Sternen.', 'https://images.isbndb.com/covers/20/17/9783404232017.jpg'), + ('0300084730', 'The Computer And The Brain: Second Edition (Mrs. Hepsa Ely Silliman Memorial Lectures)', 'https://images.isbndb.com/covers/47/33/9780300084733.jpg'), + ('3596124433', 'Der Proceß. Roman In Der Fassung Der Handschrift: Der Proze?', 'https://images.isbndb.com/covers/44/35/9783596124435.jpg'), + ('3499193140', 'Die Logik Des Mißlingens Strategisches Denken In Komplexen Situationen', 'https://images.isbndb.com/covers/31/49/9783499193149.jpg'), + ('3548346839', 'Mein Weltbild', 'https://images.isbndb.com/covers/68/30/9783548346830.jpg'), + ('0140231943', 'The Edge Of Infinity: Beyond The Black Hole (Penguin Science)', 'https://images.isbndb.com/covers/19/46/9780140231946.jpg'), + ('346202731X', 'Im Westen Nichts Neues', 'https://images.isbndb.com/covers/73/10/9783462027310.jpg'), + ('3518115243', 'Finnegans Wake: Gesammelte Annäherungen (edition Suhrkamp)', 'https://images.isbndb.com/covers/52/44/9783518115244.jpg'), + ('3453099826', 'Der Tiefere Sinn Des Labenz', 'https://images.isbndb.com/covers/98/21/9783453099821.jpg'), + ('3404242866', 'Farmer Im All', 'https://images.isbndb.com/covers/28/63/9783404242863.jpg'), + ('1857984986', 'The Stainless Steel Rat', 'https://images.isbndb.com/covers/49/89/9781857984989.jpg'), + ('3423123877', 'Faktotum: Roman', 'https://images.isbndb.com/covers/38/77/9783423123877.jpg'), + ('3423002565', 'Der Untertan.', 'https://images.isbndb.com/covers/25/61/9783423002561.jpg'), + ('3492224431', 'Denkste!: Trugschlüsse Aus Der Welt Des Zufalls Und Der Zahlen: Trugschlüsse Aus Der Welt Der Zahlen Und Des Zufalls', 'https://images.isbndb.com/covers/44/37/9783492224437.jpg'), + ('0380708213', 'The Forever War', 'https://images.isbndb.com/covers/82/15/9780380708215.jpg'), + ('006080985X', 'Island', 'https://images.isbndb.com/covers/98/50/9780060809850.jpg'), + ('3453173309', 'Die Gelehrten Der Scheibenwelt', 'https://images.isbndb.com/covers/33/09/9783453173309.jpg'), + ('3423124288', 'Das Kristall-Ei', 'https://images.isbndb.com/covers/42/87/9783423124287.jpg'), + ('3404242386', 'Ringwelt: Der Ringwelt-Zyklus, Bd. 1', 'https://images.isbndb.com/covers/23/82/9783404242382.jpg'), + ('3404231910', 'Von Stern Zu Stern', 'https://images.isbndb.com/covers/19/11/9783404231911.jpg'), + ('3453164105', 'Die Neuromancer-Trilogie. Drei Romane: Neuromancer / Biochips / Mona Lisa Overdrive', 'https://images.isbndb.com/covers/41/09/9783453164109.jpg'), + ('3453164156', 'Die Linke Hand Der Dunkelheit.', 'https://images.isbndb.com/covers/41/54/9783453164154.jpg'), + ('3453164121', 'Fahrenheit 451', 'https://images.isbndb.com/covers/41/23/9783453164123.jpg'), + ('3453164180', 'Der Brennende Mann', 'https://images.isbndb.com/covers/41/85/9783453164185.jpg'), + ('3404232208', 'Weltraumkadetten', 'https://images.isbndb.com/covers/22/08/9783404232208.jpg'), + ('345316413X', 'Clockwork Orange: Roman', 'https://images.isbndb.com/covers/41/30/9783453164130.jpg'), + ('349922271X', 'Illuminatus 01. Das Auge In Der Pyramide.', 'https://images.isbndb.com/covers/27/19/9783499222719.jpg'), + ('3499122146', 'Der Archipel GULAG.', 'https://images.isbndb.com/covers/21/49/9783499122149.jpg'), + ('3453164164', 'Sternenflut.', 'https://images.isbndb.com/covers/41/61/9783453164161.jpg'), + ('3817132336', 'Philosophischer Versuch über Die Wahrscheinlichkeit', 'https://images.isbndb.com/covers/23/31/9783817132331.jpg'), + ('3453164199', 'Lobgesang Auf Leibowitz', 'https://images.isbndb.com/covers/41/92/9783453164192.jpg'), + ('3453164113', 'Das Orakel Vom Berge', 'https://images.isbndb.com/covers/41/16/9783453164116.jpg'), + ('3404242750', 'Freitag', 'https://images.isbndb.com/covers/27/57/9783404242757.jpg'), + ('3423301244', 'Nietzsche Für Anfänger: Also Sprach Zarathustra: Eine Lese-Einführung', 'https://images.isbndb.com/covers/12/44/9783423301244.jpg'), + ('3499110008', 'Die Wörter. Autobiographische Schriften.', 'https://images.isbndb.com/covers/00/09/9783499110009.jpg'), + ('0861300238', 'The Gas', 'https://images.isbndb.com/covers/02/35/9780861300235.jpg'), + ('3518102079', 'Probleme Der Philosophie (edition Suhrkamp)', 'https://images.isbndb.com/covers/20/77/9783518102077.jpg'), + ('3499142813', 'Wer Die Nachtigall Stört...', 'https://images.isbndb.com/covers/28/19/9783499142819.jpg'), + ('3423300205', 'Die Philosophische Hintertreppe: Die Großen Philosophen In Alltag Und Denken', 'https://images.isbndb.com/covers/02/09/9783423300209.jpg'), + ('0898705525', 'Orthodoxy', 'https://images.isbndb.com/covers/55/22/9780898705522.jpg'), + ('3492200133', 'Einführung In Die Philosophie. Zwölf Radiovorträge', 'https://images.isbndb.com/covers/01/34/9783492200134.jpg'), + ('3506500104', 'Bibelausgaben, Das Neue Testament', 'https://images.isbndb.com/covers/01/06/9783506500106.jpg'), + ('0062732765', 'Flatland/Sphereland (Everyday Handbook)', 'https://images.isbndb.com/covers/27/67/9780062732767.jpg'), + ('3817132352', 'Die Elemente, Buch 1-13', 'https://images.isbndb.com/covers/23/55/9783817132355.jpg'), + ('3150090342', 'American Short Stories Of The 19th Century. (Lernmaterialien)', 'https://images.isbndb.com/covers/03/43/9783150090343.jpg'), + ('3453092414', 'Und Immer Wieder Die Zeit. Einstein''s Dreams.', 'https://images.isbndb.com/covers/24/19/9783453092419.jpg'), + ('0253306752', 'On Aging: Revolt And Resignation', 'https://images.isbndb.com/covers/67/53/9780253306753.jpg'), + ('0691024170', 'QED: The Strange Theory Of Light And Matter', 'https://images.isbndb.com/covers/41/72/9780691024172.jpg'), + ('0140261494', 'The Penguin Book Of Curious And Interesting Numbers: Revised Edition (Penguin Press Science)', 'https://images.isbndb.com/covers/14/93/9780140261493.jpg'), + ('0140296085', 'Blackadder: The Whole Damn Dynasty, 1485-1917', 'https://images.isbndb.com/covers/60/82/9780140296082.jpg'), + ('0094660409', 'Mensa: The Society For The Highly Intelligent', 'https://images.isbndb.com/covers/04/03/9780094660403.jpg'), + ('3518392573', 'In Der Gruft Und Andere Makabre Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/25/77/9783518392577.jpg'), + ('3492221661', 'Kümmert Sie, Was Andere Leute Denken?: Neue Abenteuer Eines Neugierigen Physikers', 'https://images.isbndb.com/covers/16/65/9783492221665.jpg'), + ('3492200540', 'Serie Piper, Bd.54, Kleine Schule Des Philosophischen Denkens', 'https://images.isbndb.com/covers/05/47/9783492200547.jpg'), + ('3492221009', 'Anleitung Zum Unglücklichsein', 'https://images.isbndb.com/covers/10/09/9783492221009.jpg'), + ('3880598800', 'Die Sprachen Der Welt. Geschichte - Grammatik - Wortschatz In Vergleichender Darstellung.', 'https://images.isbndb.com/covers/88/05/9783880598805.jpg'), + ('3423202068', 'Das Ultimative Handbuch Des Nutzlosen Wissens.', 'https://images.isbndb.com/covers/20/60/9783423202060.jpg'), + ('0262560038', 'The Character Of Physical Law (Messenger Lectures, 1964)', 'https://images.isbndb.com/covers/00/30/9780262560030.jpg'), + ('0521777526', 'Calendrical Calculations Millennium Edition', 'https://images.isbndb.com/covers/75/20/9780521777520.jpg'), + ('0471404217', 'Marking Time: The Epic Quest To Invent The Perfect Calendar', 'https://images.isbndb.com/covers/42/17/9780471404217.jpg'), + ('3518276255', 'Die Struktur Wissenschaftlicher Revolutionen (suhrkamp Taschenbuch Wissenschaft)', 'https://images.isbndb.com/covers/62/59/9783518276259.jpg'), + ('0060901918', 'The Perennial Philosophy', 'https://images.isbndb.com/covers/19/12/9780060901912.jpg'), + ('0375706348', 'The F-Word: Second Edition', 'https://images.isbndb.com/covers/63/49/9780375706349.jpg'), + ('3379015776', 'Ein Paar Leute Suchen Das Glück Und Lachen Sich Tot.', 'https://images.isbndb.com/covers/57/76/9783379015776.jpg'), + ('3458329072', 'Der Fürst.', 'https://images.isbndb.com/covers/90/77/9783458329077.jpg'), + ('3423120398', 'Wie Man Mit Einem Lachs Verreist Und Andere Nützliche Ratschläge', 'https://images.isbndb.com/covers/03/95/9783423120395.jpg'), + ('345504431X', 'Zeit Für Die Sterne', 'https://images.isbndb.com/covers/43/17/9783455044317.jpg'), + ('3821839171', 'Doktorspiele. Geständnisse Eines Hochstaplers', 'https://images.isbndb.com/covers/91/72/9783821839172.jpg'), + ('382183594X', 'Darum Nerven Japaner!: Der Ungeschminkte Wahnsinn Des Japanischen Alltags', 'https://images.isbndb.com/covers/59/45/9783821835945.jpg'), + ('0201150255', 'Six Not-so-easy Pieces: Lectures On Symmetry, Relativity, And Space-time (Helix Books)', 'https://images.isbndb.com/covers/02/54/9780201150254.jpg'), + ('342330426X', 'Metamagicum', 'https://images.isbndb.com/covers/42/69/9783423304269.jpg'), + ('3608917586', 'Die FARGonauten: Über Analogie Und Kreativität', 'https://images.isbndb.com/covers/75/81/9783608917581.jpg'), + ('3776621923', 'Lexikon Des Überlebens. Das Survival- Handbuch Für Krisenzeiten.', 'https://images.isbndb.com/covers/19/21/9783776621921.jpg'), + ('0674637526', 'On The Origin Of Species: A Facsimile Of The First Edition (Harvard Paperbacks)', 'https://images.isbndb.com/covers/75/28/9780674637528.jpg'), + ('3520377020', 'Discorsi. Gedanken über Politik Und Staatsführung', 'https://images.isbndb.com/covers/70/29/9783520377029.jpg'), + ('3257700474', 'Brief An Den Vater', 'https://images.isbndb.com/covers/04/73/9783257700473.jpg'), + ('0965139808', 'Bad Words Dictionary : And Even Worse Expressions', 'https://images.isbndb.com/covers/98/09/9780965139809.jpg'), + ('0394733525', 'Dot And The Line: Romance In Lower Mathematics', 'https://images.isbndb.com/covers/35/24/9780394733524.jpg'), + ('3426774291', 'Houdini, Moretti & Co.', 'https://images.isbndb.com/covers/42/98/9783426774298.jpg'), + ('3817134010', 'Die Hilbertschen Probleme: Vortrag ''Mathematische Probleme'' - Gehalten Auf Dem 2. Internationalen Mathematikerkongress Paris 1900', 'https://images.isbndb.com/covers/40/14/9783817134014.jpg'), + ('3596259347', 'Professor Unrat Oder Das Ende Eines Tyrannen. Roman. (Studienausgabe In Einzelbänden).', 'https://images.isbndb.com/covers/93/42/9783596259342.jpg'), + ('3379001252', 'LTI ( Lingua Tertii Imperii). Notizbuch Eines Philologen', 'https://images.isbndb.com/covers/12/50/9783379001250.jpg'), + ('351818802X', 'Siddhartha: Eine Indische Dichtung (Suhrkamp BasisBibliothek)', 'https://images.isbndb.com/covers/80/26/9783518188026.jpg'), + ('3150096561', 'Gespräche (Lun-yu)', 'https://images.isbndb.com/covers/65/67/9783150096567.jpg'), + ('351838922X', 'Die Literatur Der Angst: Zur Geschichte Der Phantastik (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/92/25/9783518389225.jpg'), + ('3518371703', 'Picknick Am Wegesrand: Utopische Erzählung (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/17/01/9783518371701.jpg'), + ('3518384465', 'Die Bewohnte Insel: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/44/66/9783518384466.jpg'), + ('3518389521', 'Montag Beginnt Am Samstag', 'https://images.isbndb.com/covers/95/22/9783518389522.jpg'), + ('0553293354', 'Foundation (Foundation Novels)', 'https://images.isbndb.com/covers/33/57/9780553293357.jpg'), + ('3404230663', 'Wenn Der Wind Sich Dreht: Roman', 'https://images.isbndb.com/covers/06/62/9783404230662.jpg'), + ('3404241134', 'Best Of Asimov', 'https://images.isbndb.com/covers/11/32/9783404241132.jpg'), + ('3453025652', '2061 Odyssee III', 'https://images.isbndb.com/covers/56/53/9783453025653.jpg'), + ('351838645X', 'Der Mensch Vom Mars: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/64/53/9783518386453.jpg'), + ('3518377663', 'Also Sprach GOLEM (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/76/66/9783518377666.jpg'), + ('3518396749', 'Fiasko: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/67/42/9783518396742.jpg'), + ('3518372297', 'Mondnacht: Hör- Und Fernsehspiele (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/22/96/9783518372296.jpg'), + ('3518386999', 'Vom Nutzen Des Drachen: Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/69/96/9783518386996.jpg'), + ('3518383906', 'Irrläufer: Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/39/02/9783518383902.jpg'), + ('3518370707', 'Der Schnupfen: Kriminalroman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/07/04/9783518370704.jpg'), + ('3518372408', 'Terminus Und Andere Geschichten Vom Piloten Pirx.', 'https://images.isbndb.com/covers/24/01/9783518372401.jpg'), + ('351839293X', 'Das Hospital Der Verklärung: Roman (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/29/35/9783518392935.jpg'), + ('3518368567', 'Nacht Und Schimmel: Erzählungen (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/85/65/9783518368565.jpg'), + ('3518380745', 'Frieden Auf Erden: Roman: Science-fiction-Roman. (Phantastische Bibliothek, 220) (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/07/41/9783518380741.jpg'), + ('3518374559', 'Eine Minute Der Menschheit: Eine Momentaufnahme: Eine Momentaufnahme. Aus Lems Bibliothek Des 21. Jahrhunderts (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/45/59/9783518374559.jpg'), + ('3492213472', ''' Sie Belieben Wohl Zu Scherzen, Mr. Feynman!''. Abenteuer Eines Neugierigen Physikers.', 'https://images.isbndb.com/covers/34/79/9783492213479.jpg'), + ('3492226221', 'Die Kunst Zu überleben, Survival', 'https://images.isbndb.com/covers/62/26/9783492226226.jpg'), + ('3492227171', 'Medizin Survival: Überleben Ohne Arzt', 'https://images.isbndb.com/covers/71/79/9783492227179.jpg'), + ('0672604043', 'Dialogues Concerning Natural Religion', 'https://images.isbndb.com/covers/40/41/9780672604041.jpg'), + ('3787311556', 'Philosophische Bibliothek, Bd.35, Eine Untersuchung über Den Menschlichen Verstand: Mit Deutsch-englischem Und Englisch-deutschem Begriffsregister', 'https://images.isbndb.com/covers/15/52/9783787311552.jpg'), + ('3423122870', 'Im Wald Der Fiktionen: Sechs Streifzüge Durch Die Literatur', 'https://images.isbndb.com/covers/28/70/9783423122870.jpg'), + ('3499196654', 'Der Fremdling Im Glas Und Weitere Anlässe Zur Skepsis, Entdeckt Im "Skeptical Inquirer".', 'https://images.isbndb.com/covers/66/52/9783499196652.jpg'), + ('3446163670', 'Zeit Und Wissen', 'https://images.isbndb.com/covers/36/76/9783446163676.jpg'), + ('3492230555', 'Survival-Lexikon', 'https://images.isbndb.com/covers/05/51/9783492230551.jpg'), + ('3746655153', 'Und So Ist Alles Schwankend. Tagebücher Juni Bis Dezember 1945.', 'https://images.isbndb.com/covers/51/54/9783746655154.jpg'), + ('3499195356', 'Mein Paranormales Fahrrad', 'https://images.isbndb.com/covers/53/58/9783499195358.jpg'), + ('3442115361', 'Deutsch Für Profis. Wege Zu Gutem Stil. ( Stern- Bücher).', 'https://images.isbndb.com/covers/53/65/9783442115365.jpg'), + ('080213422X', 'The Painted Bird', 'https://images.isbndb.com/covers/42/26/9780802134226.jpg'), + ('0738203491', 'The Pleasure Of Finding Things Out: The Best Short Works Of Richard P. Feynman', 'https://images.isbndb.com/covers/34/92/9780738203492.jpg'), + ('0060900075', 'The Doors Of Perception And Heaven And Hell', 'https://images.isbndb.com/covers/00/76/9780060900076.jpg'), + ('3499609339', 'Stimmt''s? Noch Mehr Moderne Legenden Im Test: Moderne Legenden Im Test - Folge 2', 'https://images.isbndb.com/covers/93/36/9783499609336.jpg'), + ('349960728X', 'Stimmt''s?: Moderne Legenden Im Test', 'https://images.isbndb.com/covers/72/88/9783499607288.jpg'), + ('344275500X', 'Hitlers Willige Vollstrecker. Ganz Gewöhnliche Deutsche Und Der Holocaust', 'https://images.isbndb.com/covers/50/04/9783442755004.jpg'), + ('3426606488', 'Die Satanischen Verse', 'https://images.isbndb.com/covers/64/83/9783426606483.jpg'), + ('3492049885', 'Gebrauchsanweisung Für Amerika', 'https://images.isbndb.com/covers/98/87/9783492049887.jpg'), + ('0345430727', 'Tales From The White Hart', 'https://images.isbndb.com/covers/07/24/9780345430724.jpg'), + ('0376011831', 'Furniture Upholstery (Sunset Books)', 'https://images.isbndb.com/covers/18/31/9780376011831.jpg'), + ('0553375334', 'Gardening For The Future Of The Earth', 'https://images.isbndb.com/covers/53/36/9780553375336.jpg'), + ('1879159376', 'Grace Unfolding: The Art Of Living A Surrendered Life', 'https://images.isbndb.com/covers/93/72/9781879159372.jpg'), + ('1880281139', 'Growing Herbs (Step-By-Step Visual Guide)', 'https://images.isbndb.com/covers/11/30/9781880281130.jpg'), + ('0943574447', 'Happy Endings : Finishing The Edges Of Your Quilt', 'https://images.isbndb.com/covers/44/48/9780943574448.jpg'), + ('0764551418', 'Household Hints For Dummies', 'https://images.isbndb.com/covers/14/13/9780764551413.jpg'), + ('086573190X', 'How To Paint: A Complete Guide To Painting Your Home (House Beautiful)', 'https://images.isbndb.com/covers/19/05/9780865731905.jpg'), + ('0764506765', 'Internet All In One Desk Reference For Dummies: 9 Books In 1. (with CD-ROM)', 'https://images.isbndb.com/covers/67/65/9780764506765.jpg'), + ('1893361764', 'Journeys Of Simplicity: Traveling Light With Thomas Merton, Basho, Edward Abbey, Annie Dillard & Others', 'https://images.isbndb.com/covers/17/68/9781893361768.jpg'), + ('0762100699', 'Just Junk New Looks For Old Furniture', 'https://images.isbndb.com/covers/06/99/9780762100699.jpg'), + ('0875968864', 'Lasagna Gardening For Small Spaces: A Layering System For Big Results In Small Gardens And Containers (Rodale Organic Gardening Book)', 'https://images.isbndb.com/covers/88/65/9780875968865.jpg'), + ('0811827151', 'Learn To Remember', 'https://images.isbndb.com/covers/71/57/9780811827157.jpg'), + ('0937750239', 'Lose 200 Lbs This Weekend: It''s Time To Declutter Your Life', 'https://images.isbndb.com/covers/02/30/9780937750230.jpg'), + ('1569473307', 'Maisie Dobbs', 'https://images.isbndb.com/covers/33/06/9781569473306.jpg'), + ('0877735506', 'Meditation In Action (Shambhala Pocket Classics)', 'https://images.isbndb.com/covers/55/02/9780877735502.jpg'), + ('0385335210', 'Moon Women', 'https://images.isbndb.com/covers/52/18/9780385335218.jpg'), + ('0062505157', 'Ocean Of Wisdom: Guidelines For Living', 'https://images.isbndb.com/covers/51/56/9780062505156.jpg'), + ('1585420859', 'Point Zero: Creativity Without Limits', 'https://images.isbndb.com/covers/08/58/9781585420858.jpg'), + ('0861711459', 'Polishing The Diamond, Enlightening The Mind: Reflections Of A Korean Buddhist Master', 'https://images.isbndb.com/covers/14/51/9780861711451.jpg'), + ('0312973055', 'Robert Ludlum''s The Hades Factor', 'https://images.isbndb.com/covers/30/56/9780312973056.jpg'), + ('0696211785', 'Roses (Better Homes & Gardens)', 'https://images.isbndb.com/covers/17/82/9780696211782.jpg'), + ('140004684X', 'See No Evil: The True Story Of A Ground Soldier In The CIA''s War On Terrorism', 'https://images.isbndb.com/covers/68/43/9781400046843.jpg'), + ('0801986311', 'Slipcover Magic', 'https://images.isbndb.com/covers/63/14/9780801986314.jpg'), + ('0922705380', 'Quilt In A Day Sunbonnet Sue Visits Quilt In A Day', 'https://images.isbndb.com/covers/53/82/9780922705382.jpg'), + ('0440235014', 'The Cleaning Encyclopedia', 'https://images.isbndb.com/covers/50/19/9780440235019.jpg'), + ('0801980801', 'The Complete Step-By-Step Guide To Home Sewing', 'https://images.isbndb.com/covers/08/00/9780801980800.jpg'), + ('0679725997', 'The Complete Upholsterer', 'https://images.isbndb.com/covers/59/92/9780679725992.jpg'), + ('1567998712', 'The Country Cupboard: Herbs : Imaginative Tips & Sensible Advice For Cooking, Growing, And Enjoying', 'https://images.isbndb.com/covers/87/19/9781567998719.jpg'), + ('1573227358', 'The Dark Side Of The Light Chasers: Reclaiming Your Power, Creativity, Brilliance, And Dreams', 'https://images.isbndb.com/covers/73/53/9781573227353.jpg'), + ('0806958235', 'The Filet Crochet Book: More Than 100 Elegant But Simple Country Lace Projects', 'https://images.isbndb.com/covers/82/31/9780806958231.jpg'), + ('0722539320', 'The Heart Of The Buddha''s Path', 'https://images.isbndb.com/covers/93/23/9780722539323.jpg'), + ('089721255X', 'The Ortho Home Gardener''s Problem Solver', 'https://images.isbndb.com/covers/25/57/9780897212557.jpg'), + ('0877739706', 'The Path Is The Goal (Dharma Ocean Series)', 'https://images.isbndb.com/covers/97/08/9780877739708.jpg'), + ('0786862270', 'The Path: Creating Your Mission Statement For Work And For Life', 'https://images.isbndb.com/covers/22/76/9780786862276.jpg'), + ('0961475455', 'The Perils And Pitfalls Of Practice: Responses To Questions About Meditation', 'https://images.isbndb.com/covers/54/51/9780961475451.jpg'), + ('0765760355', 'The Place Where You Are Standing Is Holy: A Jewish Theology On Human Relationships', 'https://images.isbndb.com/covers/03/57/9780765760357.jpg'), + ('0935278184', 'The Serger Idea Book: A Collection Of Inspiring Ideas From Palmer/Pletsch', 'https://images.isbndb.com/covers/81/87/9780935278187.jpg'), + ('0674007913', 'To Be The Poet (William E. Massey Sr. Lectures In The History Of American Civilization)', 'https://images.isbndb.com/covers/79/18/9780674007918.jpg'), + ('0840752873', 'Tough Times Never Last, But Tough People Do', 'https://images.isbndb.com/covers/28/71/9780840752871.jpg'), + ('0722540302', 'Transforming The Mind', 'https://images.isbndb.com/covers/03/05/9780722540305.jpg'), + ('1567994288', 'Uncluttered: Storage Room By Room', 'https://images.isbndb.com/covers/42/85/9781567994285.jpg'), + ('0897210875', 'Upholstering And Recovering', 'https://images.isbndb.com/covers/08/74/9780897210874.jpg'), + ('0688144713', 'Victoria: At Home With White: Celebrating The Intimate Home', 'https://images.isbndb.com/covers/47/15/9780688144715.jpg'), + ('0688097391', 'Victoria: Intimate Home: Creating A Private World', 'https://images.isbndb.com/covers/73/94/9780688097394.jpg'), + ('1573225754', 'Wake Up And Cook: Kitchen Buddhism In Words And Recipes', 'https://images.isbndb.com/covers/57/55/9781573225755.jpg'), + ('0802130313', 'What The Buddha Taught: Revised And Expanded Edition With Texts From Suttas And Dhammapada', 'https://images.isbndb.com/covers/03/10/9780802130310.jpg'), + ('0814623581', 'A Life-Giving Way: A Commentary On The Rule Of St. Benedict', 'https://images.isbndb.com/covers/35/89/9780814623589.jpg'), + ('038549436X', 'Beyond The Walls: Monastic Wisdom For Everyday Life', 'https://images.isbndb.com/covers/43/66/9780385494366.jpg'), + ('0743226208', 'Energy Breakthrough : Jump-start Your Weight Loss And Feel Great', 'https://images.isbndb.com/covers/62/02/9780743226202.jpg'), + ('0553382179', 'Sink Reflections', 'https://images.isbndb.com/covers/21/74/9780553382174.jpg'), + ('0743418301', 'Talking Dirty With The Queen Of Clean', 'https://images.isbndb.com/covers/83/00/9780743418300.jpg'), + ('006064589X', 'The Dance Of The Dissident Daughter: A Woman''s Journey From Christian Tradition To The Sacred Feminine', 'https://images.isbndb.com/covers/58/92/9780060645892.jpg'), + ('0385497903', 'The Diamond Cutter: The Buddha On Strategies For Managing Your Business And Your Life', 'https://images.isbndb.com/covers/79/09/9780385497909.jpg'), + ('0767902998', 'The Direct Path: Creating A Journey To The Divine Using The World''s Mystical Traditions', 'https://images.isbndb.com/covers/29/91/9780767902991.jpg'), + ('0738204102', 'The Way Of Transition: Embracing Life''s Most Difficult Moments', 'https://images.isbndb.com/covers/41/09/9780738204109.jpg'), + ('1567997686', 'Potting Places', 'https://images.isbndb.com/covers/76/82/9781567997682.jpg'), + ('0765307154', 'The Last Jihad (Political Thrillers Series #1)', 'https://images.isbndb.com/covers/71/56/9780765307156.jpg'), + ('0060502304', 'The Great Train Robbery', 'https://images.isbndb.com/covers/23/00/9780060502300.jpg'), + ('0345456343', 'The Vampire Chronicles Collection, Volume 1', 'https://images.isbndb.com/covers/63/42/9780345456342.jpg'), + ('1576104192', 'Linux System Administration Black Book: The Definitive Guide To Deploying And Configuring The Leading Open Source Operating System', 'https://images.isbndb.com/covers/41/94/9781576104194.jpg'), + ('0752221892', 'Station X: The Codebreakers Of Bletchley Park', 'https://images.isbndb.com/covers/18/92/9780752221892.jpg'), + ('0446518549', 'Encounter With Tiber', 'https://images.isbndb.com/covers/85/43/9780446518543.jpg'), + ('1565924878', 'Java In A Nutshell : A Desktop Quick Reference (Java Series) (3rd Edition)', 'https://images.isbndb.com/covers/48/71/9781565924871.jpg'), + ('1565922204', 'Advanced Perl Programming', 'https://images.isbndb.com/covers/22/04/9781565922204.jpg'), + ('0072129409', 'Linux: The Complete Reference', 'https://images.isbndb.com/covers/94/03/9780072129403.jpg'), + ('0130843709', 'Data & Computer Communications (6th Edition)', 'https://images.isbndb.com/covers/37/08/9780130843708.jpg'), + ('0782126472', 'CCNA Cisco Certified Network Associate : Study Guide (with CD-ROM)', 'https://images.isbndb.com/covers/64/71/9780782126471.jpg'), + ('0130173231', 'Information Security: Protecting The Global Enterprise', 'https://images.isbndb.com/covers/32/32/9780130173232.jpg'), + ('0451457595', 'The River''s Gift', 'https://images.isbndb.com/covers/75/92/9780451457592.jpg'), + ('0786881887', 'The Book Of Atrus (Myst, Book 1)', 'https://images.isbndb.com/covers/18/88/9780786881888.jpg'), + ('0786889209', 'The Book Of Ti''Ana (Myst, Book 2)', 'https://images.isbndb.com/covers/92/04/9780786889204.jpg'), + ('055357681X', 'The Seeds Of Time (Bantam Spectra Book--T.P. Verso)', 'https://images.isbndb.com/covers/68/18/9780553576818.jpg'), + ('0448407264', 'The Flintstones: The Novelization', 'https://images.isbndb.com/covers/72/65/9780448407265.jpg'), + ('051511054X', 'Bygones', 'https://images.isbndb.com/covers/05/48/9780515110548.jpg'), + ('0156030209', 'Life Of Pi', 'https://images.isbndb.com/covers/02/05/9780156030205.jpg'), + ('0140275428', 'The Other Side Of The Dale', 'https://images.isbndb.com/covers/54/21/9780140275421.jpg'), + ('0553813714', 'Life Makeovers', 'https://images.isbndb.com/covers/37/15/9780553813715.jpg'), + ('0752837613', 'Lost Boy', 'https://images.isbndb.com/covers/76/11/9780752837611.jpg'), + ('0684803852', 'Brat Farrar', 'https://images.isbndb.com/covers/38/52/9780684803852.jpg'), + ('067164193X', 'Secrets Can Kill (The Nancy Drew Files, No. 1)', 'https://images.isbndb.com/covers/19/31/9780671641931.jpg'), + ('0517320908', '6200 Wisecracks, Witty Remarks & Epigrams For All Occasions', 'https://images.isbndb.com/covers/09/07/9780517320907.jpg'), + ('0774712619', 'Julius Caesar (Nouveau Siecle)', 'https://images.isbndb.com/covers/26/13/9780774712613.jpg'), + ('0553089226', 'The Clinic', 'https://images.isbndb.com/covers/92/26/9780553089226.jpg'), + ('0670829390', 'Dear Dad: Letters From An Adult Child', 'https://images.isbndb.com/covers/93/92/9780670829392.jpg'), + ('0786000848', 'David Letterman: On Stage&off', 'https://images.isbndb.com/covers/08/45/9780786000845.jpg'), + ('0671578820', 'Simply Human', 'https://images.isbndb.com/covers/88/24/9780671578824.jpg'), + ('0446364789', 'The Snake, The Crocodile & The Dog (Amelia Peabody Mysteries)', 'https://images.isbndb.com/covers/47/82/9780446364782.jpg'), + ('0812514432', 'After The King: Stories In Honor Of J.R.R. Tolkien', 'https://images.isbndb.com/covers/44/38/9780812514438.jpg'), + ('0451151224', 'The Running Man', 'https://images.isbndb.com/covers/12/23/9780451151223.jpg'), + ('0425054535', 'E.T. The Extra-Terrestrial', 'https://images.isbndb.com/covers/45/36/9780425054536.jpg'), + ('044021498X', 'Strange Angels', 'https://images.isbndb.com/covers/49/84/9780440214984.jpg'), + ('0821724045', 'Devil''s Moon', 'https://images.isbndb.com/covers/40/40/9780821724040.jpg'), + ('042512245X', 'Last Rampage: The Shocking, True Story Of An Escaped Convict', 'https://images.isbndb.com/covers/24/57/9780425122457.jpg'), + ('0451080157', 'Twins', 'https://images.isbndb.com/covers/01/58/9780451080158.jpg'), + ('0312928408', 'The Jeffrey Dahmer Story: An American Nightmare (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/84/07/9780312928407.jpg'), + ('0812551664', 'Wes Craven''s New Nightmare: A Novel', 'https://images.isbndb.com/covers/16/62/9780812551662.jpg'), + ('0425109720', 'Patriot Games (Jack Ryan)', 'https://images.isbndb.com/covers/97/24/9780425109724.jpg'), + ('0671670646', 'GATES OF PARADISE', 'https://images.isbndb.com/covers/06/41/9780671670641.jpg'), + ('0345425596', 'The Spice Girls: The Uncensored Story Behind Pop''s Biggest Phenomenon', 'https://images.isbndb.com/covers/55/91/9780345425591.jpg'), + ('0671028006', 'Misty (Wildflowers, Bk. 1)', 'https://images.isbndb.com/covers/80/08/9780671028008.jpg'), + ('0590412264', 'Spaceballs: The Book', 'https://images.isbndb.com/covers/22/61/9780590412261.jpg'), + ('0886771722', 'Sword Of Chaos (Darkover)', 'https://images.isbndb.com/covers/17/20/9780886771720.jpg'), + ('0345309197', 'The Ladies Of Mandrigyn (Sun Wolf And Starhawk, No. 1)', 'https://images.isbndb.com/covers/91/98/9780345309198.jpg'), + ('0886772249', 'Fever Season (Merovingen Nights)', 'https://images.isbndb.com/covers/22/46/9780886772246.jpg'), + ('0380818418', 'Year''s Best Fantasy 2', 'https://images.isbndb.com/covers/84/19/9780380818419.jpg'), + ('0345300777', 'Magician''s Gambit (Eddings, David; The Belgariad, Bk. 3.)', 'https://images.isbndb.com/covers/07/75/9780345300775.jpg'), + ('0345309979', 'PAWN OF PROPHECY (The Belgariad)', 'https://images.isbndb.com/covers/99/76/9780345309976.jpg'), + ('0345335708', 'Castle Of Wizardry (The Belgariad, Book 4)', 'https://images.isbndb.com/covers/57/08/9780345335708.jpg'), + ('0886774691', 'Renunciates Of Darkover', 'https://images.isbndb.com/covers/46/91/9780886774691.jpg'), + ('0786901136', 'F.R.E.E.Lancers (Tsr Books, Special F/Sf)', 'https://images.isbndb.com/covers/11/35/9780786901135.jpg'), + ('0425173089', 'The Moche Warrior (Archaeological Mysteries, No. 3)', 'https://images.isbndb.com/covers/30/84/9780425173084.jpg'), + ('0440237343', 'High Wire', 'https://images.isbndb.com/covers/73/41/9780440237341.jpg'), + ('0786890053', 'Pearl Harbor (Movie Tie-In)', 'https://images.isbndb.com/covers/00/57/9780786890057.jpg'), + ('0140053166', 'Shadow Of The Moon', 'https://images.isbndb.com/covers/31/66/9780140053166.jpg'), + ('0425142868', 'McNally''s Risk (Archy McNally Novels)', 'https://images.isbndb.com/covers/28/68/9780425142868.jpg'), + ('0425137457', 'McNally''s Luck (Archy McNally)', 'https://images.isbndb.com/covers/74/51/9780425137451.jpg'), + ('042514755X', 'McNally''s Trial (Archy McNally Novels)', 'https://images.isbndb.com/covers/75/59/9780425147559.jpg'), + ('0886772346', 'Darkover Landfall', 'https://images.isbndb.com/covers/23/45/9780886772345.jpg'), + ('0425103633', 'Murder In Mesopotamia (Hercule Poirot)', 'https://images.isbndb.com/covers/36/30/9780425103630.jpg'), + ('0812570936', 'Colors Of Chaos (Saga Of Recluce)', 'https://images.isbndb.com/covers/09/39/9780812570939.jpg'), + ('0671759345', 'Ruby (Landry Series)', 'https://images.isbndb.com/covers/93/46/9780671759346.jpg'), + ('0440475821', 'Ralph S. Mouse', 'https://images.isbndb.com/covers/58/28/9780440475828.jpg'), + ('0671670662', 'Web Of Dreams (Casteel Saga)', 'https://images.isbndb.com/covers/06/65/9780671670665.jpg'), + ('0312962177', 'Long Shadows In Victory (Dead Letter Mysteries)', 'https://images.isbndb.com/covers/21/73/9780312962173.jpg'), + ('0446344281', 'Angels Of September', 'https://images.isbndb.com/covers/42/89/9780446344289.jpg'), + ('0446601829', 'Black Phoenix', 'https://images.isbndb.com/covers/18/25/9780446601825.jpg'), + ('0944276040', 'Royale', 'https://images.isbndb.com/covers/60/44/9780944276044.jpg'), + ('042511872X', 'Stolen Blessings', 'https://images.isbndb.com/covers/87/26/9780425118726.jpg'), + ('0688037852', 'Ramona Forever (Ramona Series)', 'https://images.isbndb.com/covers/78/57/9780688037857.jpg'), + ('0425116417', 'Timothy''s Game', 'https://images.isbndb.com/covers/64/18/9780425116418.jpg'), + ('0446602175', 'Batman Forever: The Novelization', 'https://images.isbndb.com/covers/21/74/9780446602174.jpg'), + ('0451402707', 'Never Too Rich (Onyx)', 'https://images.isbndb.com/covers/27/07/9780451402707.jpg'), + ('1558175555', 'Sex, Money, And Murder In Daytona Beach', 'https://images.isbndb.com/covers/55/56/9781558175556.jpg'), + ('0312927789', 'Adams V. Texas', 'https://images.isbndb.com/covers/77/83/9780312927783.jpg'), + ('0312927614', 'Deadly Lessons (True Crime Library)', 'https://images.isbndb.com/covers/76/15/9780312927615.jpg'), + ('0451171640', 'Buried Secrets: A True Story Of Serial Murder', 'https://images.isbndb.com/covers/16/41/9780451171641.jpg'), + ('0451402847', 'Too Good To Be True: The Story Of Denise Redlick''s Murder (Onyx)', 'https://images.isbndb.com/covers/28/44/9780451402844.jpg'), + ('0380722526', 'Molly Donnelly', 'https://images.isbndb.com/covers/25/25/9780380722525.jpg'), + ('0451117905', 'Ziggy Faces Life Again (Signet)', 'https://images.isbndb.com/covers/79/08/9780451117908.jpg'), + ('0821717448', 'Jade', 'https://images.isbndb.com/covers/74/48/9780821717448.jpg'), + ('0440203856', 'Zoya', 'https://images.isbndb.com/covers/38/58/9780440203858.jpg'), + ('0440146844', 'Loving', 'https://images.isbndb.com/covers/68/41/9780440146841.jpg'), + ('0440126894', 'Full Circle', 'https://images.isbndb.com/covers/68/98/9780440126898.jpg'), + ('0553264079', 'I''ll Take Manhattan', 'https://images.isbndb.com/covers/40/74/9780553264074.jpg'), + ('0451403053', 'Buried Mistakes (Onyx)', 'https://images.isbndb.com/covers/30/56/9780451403056.jpg'), + ('0553256211', 'HOLD THE DREAM', 'https://images.isbndb.com/covers/62/15/9780553256215.jpg'), + ('0451153952', 'White Slave (Signet)', 'https://images.isbndb.com/covers/39/51/9780451153951.jpg'), + ('0425130894', 'Robin Hood', 'https://images.isbndb.com/covers/08/96/9780425130896.jpg'), + ('088038672X', 'Streams Of Silver (Forgotten Realms: The Icewind Dale Trilogy, Book 2)', 'https://images.isbndb.com/covers/67/22/9780880386722.jpg'), + ('0843938269', 'Thirst', 'https://images.isbndb.com/covers/82/65/9780843938265.jpg'), + ('0385279140', 'Alfred Hitchcock''s Fatal Attractions', 'https://images.isbndb.com/covers/91/47/9780385279147.jpg'), + ('0394859111', 'Witch''s Brew-Hitchcock', 'https://images.isbndb.com/covers/91/18/9780394859118.jpg'), + ('0553271091', 'The Road To Gandolfo', 'https://images.isbndb.com/covers/10/96/9780553271096.jpg'), + ('1572972912', 'Smoke And Mirrors', 'https://images.isbndb.com/covers/29/19/9781572972919.jpg'), + ('0451159896', 'Dead Ringers (Signet)', 'https://images.isbndb.com/covers/98/92/9780451159892.jpg'), + ('3426015463', 'Der Rabbi. Roman.', 'https://images.isbndb.com/covers/54/69/9783426015469.jpg'), + ('3442750547', 'Leuchttürme, Landeinwärts', 'https://images.isbndb.com/covers/05/42/9783442750542.jpg'), + ('3423085304', 'Gefährliche Praxis', 'https://images.isbndb.com/covers/53/04/9783423085304.jpg'), + ('3455024947', 'Die Kammer', 'https://images.isbndb.com/covers/49/44/9783455024944.jpg'), + ('345387319X', 'Naked.', 'https://images.isbndb.com/covers/31/93/9783453873193.jpg'), + ('3499146983', 'Tod Im Weißen Häubchen.', 'https://images.isbndb.com/covers/69/85/9783499146985.jpg'), + ('3426013347', 'Ihres Vaters Haus. Roman.', 'https://images.isbndb.com/covers/33/42/9783426013342.jpg'), + ('3596151945', 'Gefährliche Träume', 'https://images.isbndb.com/covers/19/43/9783596151943.jpg'), + ('0060080841', 'The Stepford Wives', 'https://images.isbndb.com/covers/08/46/9780060080846.jpg'), + ('0679816607', 'The Great Atlas Of Discovery', 'https://images.isbndb.com/covers/66/07/9780679816607.jpg'), + ('0441005241', 'Burnt Offerings (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/52/46/9780441005246.jpg'), + ('0441004520', 'The Killing Dance (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/45/22/9780441004522.jpg'), + ('0441003745', 'Bloody Bones (Anita Blake Vampire Hunter)', 'https://images.isbndb.com/covers/37/47/9780441003747.jpg'), + ('0553577255', 'Traitor''s Moon (Nightrunner, Vol. 3)', 'https://images.isbndb.com/covers/72/59/9780553577259.jpg'), + ('0553575430', 'Stalking Darkness (Nightrunner, Vol. 2)', 'https://images.isbndb.com/covers/54/39/9780553575439.jpg'), + ('0884481492', 'In The Palm Of Your Hand: The Poet''s Portable Workshop', 'https://images.isbndb.com/covers/14/92/9780884481492.jpg'), + ('0553575422', 'Luck In The Shadows (Nightrunner, Vol. 1)', 'https://images.isbndb.com/covers/54/22/9780553575422.jpg'), + ('0843949945', 'Dark Guardian', 'https://images.isbndb.com/covers/99/40/9780843949940.jpg'), + ('0486292886', 'The Archaeology Of Weapons: Arms And Armour From Prehistory To The Age Of Chivalry', 'https://images.isbndb.com/covers/28/85/9780486292885.jpg'), + ('006090674X', 'Life In A Medieval Castle', 'https://images.isbndb.com/covers/67/40/9780060906740.jpg'), + ('0871968789', 'Counterattack : The West''s Battle Against The Terrorists', 'https://images.isbndb.com/covers/87/84/9780871968784.jpg'), + ('0912608951', 'Phantom Of The Pines: More Tales Of The Jersey Devil', 'https://images.isbndb.com/covers/89/52/9780912608952.jpg'), + ('0912608110', 'The Jersey Devil', 'https://images.isbndb.com/covers/81/12/9780912608112.jpg'), + ('0373076312', 'Return Of Rafe Mackade (Heartbreakers) (The Mackade Brothers)', 'https://images.isbndb.com/covers/63/14/9780373076314.jpg'), + ('0743403495', 'The Place Of Truth (The Stone Of Light, Vol. 4)', 'https://images.isbndb.com/covers/34/98/9780743403498.jpg'), + ('0743403487', 'Paneb The Ardent (The Stone Of Light, Volume III)', 'https://images.isbndb.com/covers/34/81/9780743403481.jpg'), + ('0743403479', 'The Wise Woman (The Stone Of Light, Vol. 2)', 'https://images.isbndb.com/covers/34/74/9780743403474.jpg'), + ('0743403460', 'Nefer The Silent (The Stone Of Light, Vol. 1)', 'https://images.isbndb.com/covers/34/67/9780743403467.jpg'), + ('0812517164', 'The Forever King (Arthur Legend 1)', 'https://images.isbndb.com/covers/71/63/9780812517163.jpg'), + ('1575667274', 'Peaches And Screams: A Savannah Reid Mystery (Savannah Reid Mysteries)', 'https://images.isbndb.com/covers/72/70/9781575667270.jpg'), + ('0385306040', 'Malice', 'https://images.isbndb.com/covers/60/41/9780385306041.jpg'), + ('0385316879', 'Journey', 'https://images.isbndb.com/covers/68/73/9780385316873.jpg'), + ('0942237285', 'Christmas Cheer: Recipes And Party Ideas (Memories In The Making Series)', 'https://images.isbndb.com/covers/72/83/9780942237283.jpg'), + ('0743457269', 'A Knight In Shining Armor', 'https://images.isbndb.com/covers/72/62/9780743457262.jpg'), + ('0330334026', 'Mad Cows', 'https://images.isbndb.com/covers/40/20/9780330334020.jpg'), + ('0446527041', 'The Crush', 'https://images.isbndb.com/covers/70/40/9780446527040.jpg'), + ('0471528889', 'Straight Talk For Monday Morning: Creating Values, Vision, And Vitality At Work', 'https://images.isbndb.com/covers/88/83/9780471528883.jpg'), + ('0836217578', 'Build A Better Life By Stealing Office Supplies, Dogbert''s Big Book Of Business', 'https://images.isbndb.com/covers/75/75/9780836217575.jpg'), + ('0385334710', 'Looking Back : A Novel', 'https://images.isbndb.com/covers/47/16/9780385334716.jpg'), + ('1575665727', 'Listen To Your Heart', 'https://images.isbndb.com/covers/57/26/9781575665726.jpg'), + ('0399146741', 'Summer Of Storms', 'https://images.isbndb.com/covers/67/49/9780399146749.jpg'), + ('078710339X', 'Nicole Brown Simpson: The Private Diary Of A Life Interrupted', 'https://images.isbndb.com/covers/33/92/9780787103392.jpg'), + ('0312179405', 'Tell Me Lies', 'https://images.isbndb.com/covers/94/03/9780312179403.jpg'), + ('0440211891', 'Heartbeat', 'https://images.isbndb.com/covers/18/91/9780440211891.jpg'), + ('0821737902', 'Small Town Girls', 'https://images.isbndb.com/covers/79/03/9780821737903.jpg'), + ('0451204956', 'Bad Boy', 'https://images.isbndb.com/covers/49/50/9780451204950.jpg'), + ('0373255241', 'Taylor Made (Harlequin Temptation)', 'https://images.isbndb.com/covers/52/45/9780373255245.jpg'), + ('0373241755', 'The Paternity Question (Double Wedding) (Silhouette Special Edition #1175)', 'https://images.isbndb.com/covers/17/50/9780373241750.jpg'), + ('037322513X', 'The Stranger She Knew (Men Of Mystery) (Harlequin Intrigue #513)', 'https://images.isbndb.com/covers/51/32/9780373225132.jpg'), + ('0373079281', 'Tough Guy And The Toddler (Men In Blue) (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/92/85/9780373079285.jpg'), + ('0515124214', 'Inner Harbor (The Chesapeake Bay Saga, Book 3)', 'https://images.isbndb.com/covers/42/17/9780515124217.jpg'), + ('0380820889', 'Blindsighted (Grant County)', 'https://images.isbndb.com/covers/08/87/9780380820887.jpg'), + ('0061053716', 'Imajica', 'https://images.isbndb.com/covers/37/19/9780061053719.jpg'), + ('0440213282', 'No Greater Love', 'https://images.isbndb.com/covers/32/84/9780440213284.jpg'), + ('0451407431', 'Matinee', 'https://images.isbndb.com/covers/74/36/9780451407436.jpg'), + ('0316313203', 'The Anna Papers: A Novel', 'https://images.isbndb.com/covers/32/09/9780316313209.jpg'), + ('0452277809', 'One Deadly Summer', 'https://images.isbndb.com/covers/78/09/9780452277809.jpg'), + ('0030149061', 'The Doonesbury Chronicles / G. B. Trudeau ; With An Introduction By Garry Wills', 'https://images.isbndb.com/covers/90/61/9780030149061.jpg'), + ('0312942192', 'Huysman''s Pets', 'https://images.isbndb.com/covers/21/99/9780312942199.jpg'), + ('0879830689', 'The Healing Benefits Of Acupressure: Acupuncture Without Needles', 'https://images.isbndb.com/covers/06/87/9780879830687.jpg'), + ('0671027972', 'Single & Single', 'https://images.isbndb.com/covers/79/71/9780671027971.jpg'), + ('0312970307', 'Burned Alive: A Shocking True Story Of Betrayal, Kidnapping, And Murder (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/03/07/9780312970307.jpg'), + ('0380802252', 'Baroque And Desperate (A Den Of Antiquity Mystery)', 'https://images.isbndb.com/covers/22/58/9780380802258.jpg'), + ('0553574795', 'Dangerous To Hold', 'https://images.isbndb.com/covers/47/91/9780553574791.jpg'), + ('0385260075', 'Cat''s Eye', 'https://images.isbndb.com/covers/00/77/9780385260077.jpg'), + ('0895770695', 'Animals Can Be Almost Human', 'https://images.isbndb.com/covers/06/91/9780895770691.jpg'), + ('0517554399', 'So Long, And Thanks For All The Fish', 'https://images.isbndb.com/covers/43/95/9780517554395.jpg'), + ('0736421300', 'Finding Nemo Junior Novelization', 'https://images.isbndb.com/covers/13/00/9780736421300.jpg'), + ('0451457528', 'Flesh And Silver', 'https://images.isbndb.com/covers/75/23/9780451457523.jpg'), + ('0385425074', 'Backlash: The Undeclared War Against American Women', 'https://images.isbndb.com/covers/50/70/9780385425070.jpg'), + ('0689704208', 'The Dark Is Rising', 'https://images.isbndb.com/covers/42/08/9780689704208.jpg'), + ('0689704488', 'The Grey King (Dark Is Rising Sequence)', 'https://images.isbndb.com/covers/44/82/9780689704482.jpg'), + ('0689704674', 'Silver On The Tree (The Dark Is Rising, Bk 5)', 'https://images.isbndb.com/covers/46/73/9780689704673.jpg'), + ('1551665816', 'Expose (Mira)', 'https://images.isbndb.com/covers/58/18/9781551665818.jpg'), + ('0394828054', 'The Chocolate War', 'https://images.isbndb.com/covers/80/53/9780394828053.jpg'), + ('0590431242', 'A Band Of Angels', 'https://images.isbndb.com/covers/12/48/9780590431248.jpg'), + ('0373482345', 'Silhouette Christmas Stories 1991', 'https://images.isbndb.com/covers/23/44/9780373482344.jpg'), + ('0373196660', 'Pregnant By The Boss!', 'https://images.isbndb.com/covers/66/61/9780373196661.jpg'), + ('0517554550', 'Martha Stewart''s Hors D''Oeuvres', 'https://images.isbndb.com/covers/45/55/9780517554555.jpg'), + ('0440116139', 'The Complete Handbook Of Nutrition', 'https://images.isbndb.com/covers/61/34/9780440116134.jpg'), + ('0671872680', 'Red Dice (The Last Vampire 3)', 'https://images.isbndb.com/covers/26/87/9780671872687.jpg'), + ('0812536169', 'Bridgehead', 'https://images.isbndb.com/covers/61/64/9780812536164.jpg'), + ('0800786866', 'In His Steps', 'https://images.isbndb.com/covers/68/61/9780800786861.jpg'), + ('0671724169', 'ENTROPY EFFECT (CLASSIC STAR TREK 2)', 'https://images.isbndb.com/covers/41/60/9780671724160.jpg'), + ('0373290136', 'The Wilder Wedding (Historical , No 413)', 'https://images.isbndb.com/covers/01/30/9780373290130.jpg'), + ('0380753022', 'Gentle Rogue (Malory Novels)', 'https://images.isbndb.com/covers/30/24/9780380753024.jpg'), + ('0373289510', 'Wyoming Renegade (Harlequin Historical)', 'https://images.isbndb.com/covers/95/16/9780373289516.jpg'), + ('0679853065', 'A Day No Pigs Would Die', 'https://images.isbndb.com/covers/30/60/9780679853060.jpg'), + ('1558171118', 'Warbots', 'https://images.isbndb.com/covers/11/14/9781558171114.jpg'), + ('0020412401', 'Little Women', 'https://images.isbndb.com/covers/24/03/9780020412403.jpg'), + ('067152609X', 'The Return (Star Trek)', 'https://images.isbndb.com/covers/60/92/9780671526092.jpg'), + ('0767913701', 'The Thoroughly Modern Married Girl: Staying Sensational After Saying "I Do"', 'https://images.isbndb.com/covers/37/06/9780767913706.jpg'), + ('0671674358', 'The Prometheus Design (Star Trek, No 5)', 'https://images.isbndb.com/covers/43/59/9780671674359.jpg'), + ('0671658662', 'My Enemy, My Ally (Star Trek: The Original Series, No. 18)', 'https://images.isbndb.com/covers/86/63/9780671658663.jpg'), + ('0451159233', 'Mort (Discworld)', 'https://images.isbndb.com/covers/92/36/9780451159236.jpg'), + ('1572242132', 'Conscious Bride (Women Talk About)', 'https://images.isbndb.com/covers/21/35/9781572242135.jpg'), + ('0618055819', 'Gathering Blue', 'https://images.isbndb.com/covers/58/14/9780618055814.jpg'), + ('078688262X', 'What No One Tells The Bride: Surviving The Wedding, Sex After The Honeymoon, Second Thoughts, Wedding Cake Freezer Burn, Becoming Your Mother, Screaming About Money, Screaming About In-Laws, Etc.', 'https://images.isbndb.com/covers/26/25/9780786882625.jpg'), + ('0192827618', 'Sense And Sensibility (World''s Classics)', 'https://images.isbndb.com/covers/76/16/9780192827616.jpg'), + ('0671502239', 'E Pluribus Unicorn', 'https://images.isbndb.com/covers/22/32/9780671502232.jpg'), + ('1853260630', 'Candide (Wordsworth Classics)', 'https://images.isbndb.com/covers/06/36/9781853260636.jpg'), + ('0002550563', 'Black & White Cats', 'https://images.isbndb.com/covers/05/67/9780002550567.jpg'), + ('0451524551', 'Moby Dick (Signet Classics)', 'https://images.isbndb.com/covers/45/53/9780451524553.jpg'), + ('1889392022', 'Bridal Bargains: Secrets To Throwing A Fantastic Wedding On A Realistic Budget', 'https://images.isbndb.com/covers/20/28/9781889392028.jpg'), + ('1889392030', 'Bridal Gown Guide 1999', 'https://images.isbndb.com/covers/20/35/9781889392035.jpg'), + ('0060171626', 'What Your Mother Couldn''t Tell You And Your Father Didn''t Know: Advanced Relationship Skills For Better Communication And Lasting Intimacy', 'https://images.isbndb.com/covers/16/29/9780060171629.jpg'), + ('0441518095', 'The Man In The High Castle', 'https://images.isbndb.com/covers/80/98/9780441518098.jpg'), + ('082175565X', 'Warrior''s Prize', 'https://images.isbndb.com/covers/56/55/9780821755655.jpg'), + ('1551662671', 'Too Hot To Handle', 'https://images.isbndb.com/covers/26/71/9781551662671.jpg'), + ('0380802309', 'Someone To Watch Over Me (Bow Street, Book 1)', 'https://images.isbndb.com/covers/23/02/9780380802302.jpg'), + ('037348383X', 'Conard County: Boots & Badges', 'https://images.isbndb.com/covers/38/39/9780373483839.jpg'), + ('0671569031', 'Amaryllis', 'https://images.isbndb.com/covers/90/37/9780671569037.jpg'), + ('0140621792', 'Madame Bovary (Penguin Popular Classics)', 'https://images.isbndb.com/covers/17/92/9780140621792.jpg'), + ('0061092177', 'Small Gods', 'https://images.isbndb.com/covers/21/76/9780061092176.jpg'), + ('0843941219', 'An Old-Fashioned Southern Christmas', 'https://images.isbndb.com/covers/12/10/9780843941210.jpg'), + ('0373224729', 'Runaway Heart (Harlequin Intrigue, No. 472)', 'https://images.isbndb.com/covers/47/22/9780373224722.jpg'), + ('0373118864', 'An Incovenient Husband (Harlequin Presents, No 1886)', 'https://images.isbndb.com/covers/88/61/9780373118861.jpg'), + ('0671868322', 'The Secret (Fear Street Saga Trilogy, No. 2)', 'https://images.isbndb.com/covers/83/21/9780671868321.jpg'), + ('0440983568', 'Stranger With My Face', 'https://images.isbndb.com/covers/35/69/9780440983569.jpg'), + ('0671868330', 'The Burning (The Fear Street Saga #3)', 'https://images.isbndb.com/covers/83/38/9780671868338.jpg'), + ('0671738232', 'The Goodnight Kiss (Fear Street Super Chillers, No. 3)', 'https://images.isbndb.com/covers/82/35/9780671738235.jpg'), + ('067189434X', 'The Dark Secret (Fear Street: Cataluna Chronicles, No. 2)', 'https://images.isbndb.com/covers/43/44/9780671894344.jpg'), + ('0671745115', 'The Wicked Heart', 'https://images.isbndb.com/covers/51/10/9780671745110.jpg'), + ('0671690590', 'Master Of Murder', 'https://images.isbndb.com/covers/05/95/9780671690595.jpg'), + ('0671724851', 'The Prom Queen (Fear Street, No. 15)', 'https://images.isbndb.com/covers/48/56/9780671724856.jpg'), + ('0590430149', 'Slumber Party (Point Paperback)', 'https://images.isbndb.com/covers/01/42/9780590430142.jpg'), + ('0671724819', 'The Fire Game (Fear Street, No. 11)', 'https://images.isbndb.com/covers/48/18/9780671724818.jpg'), + ('0590403214', 'Aliens In The Family', 'https://images.isbndb.com/covers/32/14/9780590403214.jpg'), + ('0671745107', 'The Immortal', 'https://images.isbndb.com/covers/51/03/9780671745103.jpg'), + ('0671894331', 'The Evil Moon (Fear Street: Cataluna Chronicles, No. 1)', 'https://images.isbndb.com/covers/43/37/9780671894337.jpg'), + ('0671702432', 'Halloween Party (Fear Street, No. 8)', 'https://images.isbndb.com/covers/24/34/9780671702434.jpg'), + ('0671550551', 'Execution Of Innocence Paperback', 'https://images.isbndb.com/covers/05/54/9780671550554.jpg'), + ('0671726498', 'A Gift Of Magic', 'https://images.isbndb.com/covers/64/92/9780671726492.jpg'), + ('0440918642', 'Daughters Of Eve', 'https://images.isbndb.com/covers/86/46/9780440918646.jpg'), + ('0345274539', 'She', 'https://images.isbndb.com/covers/45/33/9780345274533.jpg'), + ('0671676563', 'Scavenger Hunt', 'https://images.isbndb.com/covers/65/68/9780671676568.jpg'), + ('0590433105', 'Christmas Killer (Point)', 'https://images.isbndb.com/covers/31/05/9780590433105.jpg'), + ('0441515339', 'Magicats 2', 'https://images.isbndb.com/covers/53/32/9780441515332.jpg'), + ('0689829833', 'The Dark Is Rising (The Dark Is Rising Sequence)', 'https://images.isbndb.com/covers/98/33/9780689829833.jpg'), + ('0441515304', 'Magicats!', 'https://images.isbndb.com/covers/53/01/9780441515301.jpg'), + ('078600312X', 'Prey', 'https://images.isbndb.com/covers/31/29/9780786003129.jpg'), + ('0883632012', 'The Jungle Books', 'https://images.isbndb.com/covers/20/17/9780883632017.jpg'), + ('0786889063', 'The Codicil: A Novel', 'https://images.isbndb.com/covers/90/68/9780786889068.jpg'), + ('0316290238', 'The Collector (Back Bay Books)', 'https://images.isbndb.com/covers/02/34/9780316290234.jpg'), + ('0374386137', 'A Wrinkle In Time (Madeleine L''Engle''s Time Quintet)', 'https://images.isbndb.com/covers/61/39/9780374386139.jpg'), + ('0425065553', 'The White Plague', 'https://images.isbndb.com/covers/55/56/9780425065556.jpg'), + ('0192834347', 'Little Women (Oxford World''s Classics)', 'https://images.isbndb.com/covers/43/48/9780192834348.jpg'), + ('0373226691', 'Familiar Mirage (Fear Familiar #14) (Harlequin Intrigue #669)', 'https://images.isbndb.com/covers/66/96/9780373226696.jpg'), + ('050552385X', 'Sixpence Bride (Timeswept)', 'https://images.isbndb.com/covers/38/53/9780505523853.jpg'), + ('0553801619', 'Whisker Of Evil: A Mrs. Murphy Mystery', 'https://images.isbndb.com/covers/16/13/9780553801613.jpg'), + ('0060004703', 'Engaged To Die (Death On Demand Mysteries, No. 14)', 'https://images.isbndb.com/covers/47/05/9780060004705.jpg'), + ('0553582852', 'The Tail Of The Tip-Off (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/28/57/9780553582857.jpg'), + ('0743482247', 'Arson And Old Lace (Far Wychwood Mysteries, No. 1)', 'https://images.isbndb.com/covers/22/40/9780743482240.jpg'), + ('0451211715', 'Dying To Retire (Murder She Wrote, No. 21)', 'https://images.isbndb.com/covers/17/12/9780451211712.jpg'), + ('0821769286', 'Knight Triumphant (Zebra Historical Romance)', 'https://images.isbndb.com/covers/92/87/9780821769287.jpg'), + ('0843937335', 'Sweet Chance', 'https://images.isbndb.com/covers/73/36/9780843937336.jpg'), + ('0380753014', 'Warrior''s Woman (Avon)', 'https://images.isbndb.com/covers/30/17/9780380753017.jpg'), + ('0505525313', 'The Selkie', 'https://images.isbndb.com/covers/53/14/9780505525314.jpg'), + ('0821772279', 'Realm Of Shadows', 'https://images.isbndb.com/covers/22/70/9780821772270.jpg'), + ('0380767597', 'Forget Me Not', 'https://images.isbndb.com/covers/75/95/9780380767595.jpg'), + ('0380897393', 'When Love Awaits', 'https://images.isbndb.com/covers/73/91/9780380897391.jpg'), + ('0553561537', 'Desire', 'https://images.isbndb.com/covers/15/31/9780553561531.jpg'), + ('0380811987', 'Rules Of Engagement (Governess Brides, Book 2)', 'https://images.isbndb.com/covers/19/84/9780380811984.jpg'), + ('0312987846', 'The Spy (Liars Club, Book 3)', 'https://images.isbndb.com/covers/78/48/9780312987848.jpg'), + ('0380761483', 'So Worthy My Love', 'https://images.isbndb.com/covers/14/87/9780380761487.jpg'), + ('0743460537', 'Beauty', 'https://images.isbndb.com/covers/05/38/9780743460538.jpg'), + ('0451208072', 'St. Raven', 'https://images.isbndb.com/covers/80/71/9780451208071.jpg'), + ('0553574108', 'I Thee Wed', 'https://images.isbndb.com/covers/41/04/9780553574104.jpg'), + ('0671689738', 'Sweet Liar', 'https://images.isbndb.com/covers/97/35/9780671689735.jpg'), + ('0743478967', 'Holly (Deveraux, Jude)', 'https://images.isbndb.com/covers/89/60/9780743478960.jpg'), + ('1568655878', 'Petals On The River', 'https://images.isbndb.com/covers/58/71/9781568655871.jpg'), + ('0743467221', 'Legends Lake', 'https://images.isbndb.com/covers/72/23/9780743467223.jpg'), + ('0373286716', 'Sun Woman (Harlequin Historical, No. 71)', 'https://images.isbndb.com/covers/67/13/9780373286713.jpg'), + ('0061031534', 'The Reluctant Suitor', 'https://images.isbndb.com/covers/15/33/9780061031533.jpg'), + ('0451205804', 'Hazard', 'https://images.isbndb.com/covers/58/03/9780451205803.jpg'), + ('0821774166', 'All I Ever Needed (Zebra Historical Romance)', 'https://images.isbndb.com/covers/41/68/9780821774168.jpg'), + ('0553580280', 'Catch As Cat Can (Mrs. Murphy Mysteries)', 'https://images.isbndb.com/covers/02/80/9780553580280.jpg'), + ('1565073193', 'Emilie''s Creative Home Organizer', 'https://images.isbndb.com/covers/31/97/9781565073197.jpg'), + ('050552516X', 'Ravyn''s Flight (Jarved 9, Book 1)', 'https://images.isbndb.com/covers/51/61/9780505525161.jpg'), + ('0451623142', 'With Malice Toward None (Mentor Series)', 'https://images.isbndb.com/covers/31/40/9780451623140.jpg'), + ('0451523024', 'Uncle Tom''s Cabin', 'https://images.isbndb.com/covers/30/20/9780451523020.jpg'), + ('0399151079', 'The Cat Who Talked Turkey', 'https://images.isbndb.com/covers/10/71/9780399151071.jpg'), + ('0553442856', 'LORD OF THE ISLAND (Loveswept)', 'https://images.isbndb.com/covers/28/54/9780553442854.jpg'), + ('0373241062', 'Cowboy''S Lady (Silhouette Special Edition)', 'https://images.isbndb.com/covers/10/64/9780373241064.jpg'), + ('0671644483', 'Wishes', 'https://images.isbndb.com/covers/44/82/9780671644482.jpg'), + ('0671446886', 'The Endearment', 'https://images.isbndb.com/covers/68/88/9780671446888.jpg'), + ('0373153309', 'Circle Of Gold (SR)', 'https://images.isbndb.com/covers/33/05/9780373153305.jpg'), + ('0373701217', 'Winter Roses (Harlequin Superromance No. 121)', 'https://images.isbndb.com/covers/12/16/9780373701216.jpg'), + ('0373098596', 'Hardhearted (That Special Woman!) (Silhouette Special Edition #859)', 'https://images.isbndb.com/covers/85/90/9780373098590.jpg'), + ('0373097360', 'Liberation Of Layla (Silhouette Special Edition)', 'https://images.isbndb.com/covers/73/64/9780373097364.jpg'), + ('084232920X', 'Assassins (Left Behind, Book 6)', 'https://images.isbndb.com/covers/92/00/9780842329200.jpg'), + ('0373706766', 'The Texas Way: Home On The Ranch #1 (Harlequin Superromance, No 676)', 'https://images.isbndb.com/covers/67/61/9780373706761.jpg'), + ('0373707657', 'One More Rodeo (Harlequin Superromance No. 765)', 'https://images.isbndb.com/covers/76/52/9780373707652.jpg'), + ('0553266926', 'The Rapture', 'https://images.isbndb.com/covers/69/24/9780553266924.jpg'), + ('0880705760', 'No Wonder They Call Him Savior: Chronicles Of The Cross', 'https://images.isbndb.com/covers/57/69/9780880705769.jpg'), + ('0380806290', 'The Wedding Bargain', 'https://images.isbndb.com/covers/62/94/9780380806294.jpg'), + ('0451408772', 'Calypso Magic (Magic Trilogy)', 'https://images.isbndb.com/covers/87/78/9780451408778.jpg'), + ('0842329161', 'Apollyon: The Destroyer Is Unleashed (Left Behind #5)', 'https://images.isbndb.com/covers/91/63/9780842329163.jpg'), + ('038075911X', 'The Black Lyon: The Magnificent Love Story Of A Fearless Lord And The Woman Who Tamed Him', 'https://images.isbndb.com/covers/91/18/9780380759118.jpg'), + ('0060675233', 'Born Of A Woman: A Bishop Rethinks The Virgin Birth And The Treatment Of Women By A Male-Dominated Church', 'https://images.isbndb.com/covers/52/33/9780060675233.jpg'), + ('0380897342', 'Ambrosia', 'https://images.isbndb.com/covers/73/46/9780380897346.jpg'), + ('0373119194', 'Untouched (Harlequin Presents)', 'https://images.isbndb.com/covers/91/96/9780373119196.jpg'), + ('0060185708', 'The Reluctant Suitor', 'https://images.isbndb.com/covers/57/01/9780060185701.jpg'), + ('0842329285', 'The Indwelling: The Beast Takes Possession (Left Behind #7)', 'https://images.isbndb.com/covers/92/86/9780842329286.jpg'), + ('0892749482', 'Enjoying Where You Are On The Way To Where You Are Going', 'https://images.isbndb.com/covers/94/85/9780892749485.jpg'), + ('1586608010', 'Texas Belles: One More Chance/Courtin'' Patience/Susannah''s Secret/The Sheriff And The Outlaw (Heartsong Novella Collection)', 'https://images.isbndb.com/covers/80/19/9781586608019.jpg'), + ('0345275128', 'Touch The Sun', 'https://images.isbndb.com/covers/51/27/9780345275127.jpg'), + ('0060571454', 'The Princess Masquerade', 'https://images.isbndb.com/covers/14/50/9780060571450.jpg'), + ('0373291515', 'Highland Wife (Harlequin Historical)', 'https://images.isbndb.com/covers/15/19/9780373291519.jpg'), + ('0380777312', 'Mischief', 'https://images.isbndb.com/covers/73/10/9780380777310.jpg'), + ('0380811979', 'Rules Of Surrender (Governess Brides, Book 1)', 'https://images.isbndb.com/covers/19/77/9780380811977.jpg'), + ('0553567772', 'Prince Of Shadows', 'https://images.isbndb.com/covers/77/79/9780553567779.jpg'), + ('0380385880', 'Shanna', 'https://images.isbndb.com/covers/58/81/9780380385881.jpg'), + ('0060560789', 'Your Wicked Ways', 'https://images.isbndb.com/covers/07/82/9780060560782.jpg'), + ('0821775472', 'When We Touch (Zebra Historical Romance)', 'https://images.isbndb.com/covers/54/79/9780821775479.jpg'), + ('0312982305', 'The Wedding Night', 'https://images.isbndb.com/covers/23/00/9780312982300.jpg'), + ('0505524945', 'A Love To Cherish', 'https://images.isbndb.com/covers/49/42/9780505524942.jpg'), + ('0553565044', 'False Dawn', 'https://images.isbndb.com/covers/50/41/9780553565041.jpg'), + ('0425194833', 'Miss Wonderful (Carsington Family Series)', 'https://images.isbndb.com/covers/48/36/9780425194836.jpg'), + ('0425194868', 'The Seduction (Berkley Sensation)', 'https://images.isbndb.com/covers/48/67/9780425194867.jpg'), + ('0743470036', 'A Deal With The Devil', 'https://images.isbndb.com/covers/00/32/9780743470032.jpg'), + ('067100333X', 'Come The Spring', 'https://images.isbndb.com/covers/33/33/9780671003333.jpg'), + ('071671017X', 'Aha! Insight', 'https://images.isbndb.com/covers/01/72/9780716710172.jpg'), + ('0736907734', 'Speak To My Heart, God: For Every Need, For Every Moment. . .', 'https://images.isbndb.com/covers/77/36/9780736907736.jpg'), + ('0451409094', 'The Dragon Hour', 'https://images.isbndb.com/covers/90/96/9780451409096.jpg'), + ('0515127213', 'The Courtship', 'https://images.isbndb.com/covers/72/18/9780515127218.jpg'), + ('0553212281', 'The Tell-Tale Heart (Bantam Classics)', 'https://images.isbndb.com/covers/22/80/9780553212280.jpg'), + ('0553379623', 'Caring For Your Baby And Young Child: Birth To Age 5', 'https://images.isbndb.com/covers/96/24/9780553379624.jpg'), + ('1575665646', 'Dating Bootcamp: Conquering The Dating Obstacle Course', 'https://images.isbndb.com/covers/56/41/9781575665641.jpg'), + ('1576739627', 'The Prayer Of Jabez For Women', 'https://images.isbndb.com/covers/96/24/9781576739624.jpg'), + ('068985482X', 'A Day At The Beach', 'https://images.isbndb.com/covers/48/28/9780689854828.jpg'), + ('0786004509', 'All Fall Down', 'https://images.isbndb.com/covers/45/08/9780786004508.jpg'), + ('0786006285', 'Quicksand', 'https://images.isbndb.com/covers/62/81/9780786006281.jpg'), + ('0553584901', 'Shady Lady', 'https://images.isbndb.com/covers/49/05/9780553584905.jpg'), + ('0821758942', 'Exquisite', 'https://images.isbndb.com/covers/89/46/9780821758946.jpg'), + ('0743465067', 'Highlander Unbound', 'https://images.isbndb.com/covers/50/69/9780743465069.jpg'), + ('0440225884', 'The Damsel: The Bride Quest #2', 'https://images.isbndb.com/covers/58/81/9780440225881.jpg'), + ('0061059471', 'Cat In The Dark: A Joe Grey Mystery (Joe Grey Mysteries)', 'https://images.isbndb.com/covers/94/76/9780061059476.jpg'), + ('0425191230', 'Material Girl (Berkley Sensation)', 'https://images.isbndb.com/covers/12/31/9780425191231.jpg'), + ('0553268481', 'New Moon Rising', 'https://images.isbndb.com/covers/84/85/9780553268485.jpg'), + ('0394551540', 'Alaska', 'https://images.isbndb.com/covers/15/48/9780394551548.jpg'), + ('0688065716', 'The Sands Of Time', 'https://images.isbndb.com/covers/57/13/9780688065713.jpg'), + ('0449221873', 'Mexico', 'https://images.isbndb.com/covers/18/77/9780449221877.jpg'), + ('0515061786', 'Grave Mistake', 'https://images.isbndb.com/covers/17/89/9780515061789.jpg'), + ('0515070742', 'Final Curtain', 'https://images.isbndb.com/covers/07/43/9780515070743.jpg'), + ('0515075051', 'Photo Finish', 'https://images.isbndb.com/covers/50/52/9780515075052.jpg'), + ('0688066631', 'Whirlwind', 'https://images.isbndb.com/covers/66/35/9780688066635.jpg'), + ('034525385X', 'Sybil Leek''s Book Of The Curious And The Occult', 'https://images.isbndb.com/covers/38/59/9780345253859.jpg'), + ('0891098623', 'The Message Of Hope', 'https://images.isbndb.com/covers/86/21/9780891098621.jpg'), + ('014004891X', 'Of Mice And Men / Cannery Row (2 Books In 1)', 'https://images.isbndb.com/covers/89/19/9780140048919.jpg'), + ('0449219569', 'Comeback', 'https://images.isbndb.com/covers/95/60/9780449219560.jpg'), + ('0449206521', 'Tales Of The South Pacific', 'https://images.isbndb.com/covers/65/22/9780449206522.jpg'), + ('0446404462', 'Something In The Water (Peter Shandy Mysteries)', 'https://images.isbndb.com/covers/44/64/9780446404464.jpg'), + ('0449206394', 'A Death At St. Anselm''s', 'https://images.isbndb.com/covers/63/93/9780449206393.jpg'), + ('0553564994', 'Homeland: The Crown Family Saga, 1890-1900', 'https://images.isbndb.com/covers/49/90/9780553564990.jpg'), + ('0821767089', 'If She Only Knew', 'https://images.isbndb.com/covers/70/85/9780821767085.jpg'), + ('0804112258', 'Cat Crimes 3', 'https://images.isbndb.com/covers/22/53/9780804112253.jpg'), + ('0515075035', 'Death Of A Fool', 'https://images.isbndb.com/covers/50/38/9780515075038.jpg'), + ('0515077356', 'Singing In The Shrouds', 'https://images.isbndb.com/covers/73/53/9780515077353.jpg'), + ('0684832291', 'My Gal Sunday', 'https://images.isbndb.com/covers/22/96/9780684832296.jpg'), + ('0515061662', 'Death In Ecstasy', 'https://images.isbndb.com/covers/16/66/9780515061666.jpg'), + ('0445407808', 'Vane Pursuit (A Peter Shandy Mystery)', 'https://images.isbndb.com/covers/78/00/9780445407800.jpg'), + ('0515120278', 'The Cat Who Said Cheese', 'https://images.isbndb.com/covers/02/71/9780515120271.jpg'), + ('0449904962', 'Indian Givers: How The Indians Of The Americas Transformed The World', 'https://images.isbndb.com/covers/49/61/9780449904961.jpg'), + ('0028604202', 'Politically Correct Holiday Stories: For An Enlightened Yuletide Season', 'https://images.isbndb.com/covers/42/06/9780028604206.jpg'), + ('0020199082', 'The Shepherd', 'https://images.isbndb.com/covers/90/83/9780020199083.jpg'), + ('0553240951', 'Out On A Limb', 'https://images.isbndb.com/covers/09/55/9780553240955.jpg'), + ('0515074438', 'Tied Up In Tinsel', 'https://images.isbndb.com/covers/44/37/9780515074437.jpg'), + ('051507506X', 'Died In The Wool', 'https://images.isbndb.com/covers/50/69/9780515075069.jpg'), + ('0515071056', 'Clutch Of Constables', 'https://images.isbndb.com/covers/10/54/9780515071054.jpg'), + ('0451197690', 'A Cat Of One''s Own (Alice Nestleton Mysteries)', 'https://images.isbndb.com/covers/76/96/9780451197696.jpg'), + ('0451204344', 'Murder, She Wrote: Murder In A Minor Key', 'https://images.isbndb.com/covers/43/49/9780451204349.jpg'), + ('0201517205', 'Iron John: A Book About Men', 'https://images.isbndb.com/covers/72/00/9780201517200.jpg'), + ('0333517628', 'My First Look At Summer', 'https://images.isbndb.com/covers/76/28/9780333517628.jpg'), + ('0746012721', 'The New Baby (Usborne First Experiences)', 'https://images.isbndb.com/covers/27/27/9780746012727.jpg'), + ('0192752685', 'Match Of Death', 'https://images.isbndb.com/covers/26/80/9780192752680.jpg'), + ('0517147270', 'Victorian Cat', 'https://images.isbndb.com/covers/72/76/9780517147276.jpg'), + ('0330288393', 'Flying Visits (Picador Books)', 'https://images.isbndb.com/covers/83/92/9780330288392.jpg'), + ('0671029088', 'Improvising Carla', 'https://images.isbndb.com/covers/90/81/9780671029081.jpg'), + ('2253076287', 'L''Homme De Saint-Pétersbourg', 'https://images.isbndb.com/covers/62/85/9782253076285.jpg'), + ('0140621296', 'Lorna Doone Pb (Penguin Popular Classics)', 'https://images.isbndb.com/covers/12/97/9780140621297.jpg'), + ('0216927781', 'The Teddy Bear Anthology', 'https://images.isbndb.com/covers/77/80/9780216927780.jpg'), + ('1853045586', 'The Xenophobe''s Guide To The French', 'https://images.isbndb.com/covers/55/85/9781853045585.jpg'), + ('0751511919', 'Small Hours Of The Morning', 'https://images.isbndb.com/covers/19/18/9780751511918.jpg'), + ('0312966776', 'Black And Blue: An Inspector Rebus Mystery (Black & Blue)', 'https://images.isbndb.com/covers/67/75/9780312966775.jpg'), + ('0747258090', 'Take These Broken Wings', 'https://images.isbndb.com/covers/80/94/9780747258094.jpg'), + ('0749732687', 'Coram Boy (Contents)', 'https://images.isbndb.com/covers/26/84/9780749732684.jpg'), + ('0600400409', 'Chess Move By Move', 'https://images.isbndb.com/covers/04/00/9780600400400.jpg'), + ('0746000561', 'German For Beginners (Language Guides)', 'https://images.isbndb.com/covers/05/64/9780746000564.jpg'), + ('0140511849', 'Dictionary Of Sociology, The Penguin: Second Edition (Reference)', 'https://images.isbndb.com/covers/18/40/9780140511840.jpg'), + ('0563371110', '"Have I Got News For You?": The Shameless Cash-in Book', 'https://images.isbndb.com/covers/11/13/9780563371113.jpg'), + ('0316734500', 'The Bookseller Of Kabul', 'https://images.isbndb.com/covers/45/09/9780316734509.jpg'), + ('0752848151', 'Stovold''s Mornington Crescent Almanac 2002', 'https://images.isbndb.com/covers/81/50/9780752848150.jpg'), + ('1854790420', 'Old Man And Mr. Smith', 'https://images.isbndb.com/covers/04/22/9781854790422.jpg'), + ('0723216371', 'The Observer''s Book Of Kitchen Antiques (Observer''s Pocket)', 'https://images.isbndb.com/covers/63/77/9780723216377.jpg'), + ('1860192599', 'How To Book Of Fitness And Exercise', 'https://images.isbndb.com/covers/25/93/9781860192593.jpg'), + ('0140059776', 'The Penguin Complete Father Brown (Father Brown Mystery)', 'https://images.isbndb.com/covers/97/79/9780140059779.jpg'), + ('1853043427', 'Fishing Mania (The Mania Series)', 'https://images.isbndb.com/covers/34/20/9781853043420.jpg'), + ('1850510881', 'Microwave Cooking', 'https://images.isbndb.com/covers/08/88/9781850510888.jpg'), + ('0704339986', 'Busy About The Tree Of Life: Collected Stories', 'https://images.isbndb.com/covers/99/89/9780704339989.jpg'), + ('1887166734', 'The Quotable Cat: A Collection Of Quotes, Facts, And Lore For Feline Fanciers', 'https://images.isbndb.com/covers/67/37/9781887166737.jpg'), + ('0439010705', 'Flying Blind (Point Crime)', 'https://images.isbndb.com/covers/07/02/9780439010702.jpg'), + ('1870451090', 'Mission Earth 3: The Enemy Within', 'https://images.isbndb.com/covers/10/93/9781870451093.jpg'), + ('0805004610', '"G" Is For Gumshoe (Kinsey Millhone Mysteries)', 'https://images.isbndb.com/covers/46/18/9780805004618.jpg'), + ('0671874594', 'Test Your I.Q. (Arco Test-Prep Your IQ)', 'https://images.isbndb.com/covers/45/99/9780671874599.jpg'), + ('1563898810', '9-11: Artists Respond, Volume 1', 'https://images.isbndb.com/covers/88/15/9781563898815.jpg'), + ('1563898780', '9-11: September 11, 2001 (Stories To Remember, Volume 2)', 'https://images.isbndb.com/covers/87/85/9781563898785.jpg'), + ('080502669X', 'The Old Man And The Boy', 'https://images.isbndb.com/covers/66/96/9780805026696.jpg'), + ('0553100637', 'Antarctica', 'https://images.isbndb.com/covers/06/31/9780553100631.jpg'), + ('0385415109', 'Raising The Stones', 'https://images.isbndb.com/covers/51/01/9780385415101.jpg'), + ('1878734601', 'Problem-oriented Policing: Crime-specific Problems, Critical Issues, And Making POP Work', 'https://images.isbndb.com/covers/46/00/9781878734600.jpg'), + ('157965116X', 'Values Of The Game', 'https://images.isbndb.com/covers/11/69/9781579651169.jpg'), + ('0374514852', 'A Sense Of Where You Are: Bill Bradley At Princeton', 'https://images.isbndb.com/covers/48/53/9780374514853.jpg'), + ('0312890222', 'The Awakeners: Northshore & Southshore', 'https://images.isbndb.com/covers/02/23/9780312890223.jpg'), + ('0380821001', 'The Visitor', 'https://images.isbndb.com/covers/10/06/9780380821006.jpg'), + ('038078405X', 'TOGETHER', 'https://images.isbndb.com/covers/40/59/9780380784059.jpg'), + ('0452281229', 'The Chisellers', 'https://images.isbndb.com/covers/12/26/9780452281226.jpg'), + ('0452281849', 'The Granny', 'https://images.isbndb.com/covers/18/44/9780452281844.jpg'), + ('0684824175', 'Dogspeak: How To Learn It, Speak It, And Use It To Have A Happy, Healthy, Well-Behaved Dog', 'https://images.isbndb.com/covers/41/78/9780684824178.jpg'), + ('0743411366', 'Say When : A Novel', 'https://images.isbndb.com/covers/13/63/9780743411363.jpg'), + ('0786890371', 'Cranberry Queen', 'https://images.isbndb.com/covers/03/78/9780786890378.jpg'), + ('1551665999', 'Driving Lessons (Mira)', 'https://images.isbndb.com/covers/59/93/9781551665993.jpg'), + ('0670032069', 'Revenge Of The Middle-Aged Woman', 'https://images.isbndb.com/covers/20/68/9780670032068.jpg'), + ('0525943064', 'Nothing But The Rent', 'https://images.isbndb.com/covers/30/68/9780525943068.jpg'), + ('0385491808', 'Crooked Little Heart: A Novel', 'https://images.isbndb.com/covers/18/08/9780385491808.jpg'), + ('052594558X', 'Bad Boy', 'https://images.isbndb.com/covers/55/81/9780525945581.jpg'), + ('1573229350', 'Best Friends', 'https://images.isbndb.com/covers/93/57/9781573229357.jpg'), + ('0446607177', 'Riptide', 'https://images.isbndb.com/covers/71/79/9780446607179.jpg'), + ('0553575465', 'Positive Match', 'https://images.isbndb.com/covers/54/60/9780553575460.jpg'), + ('0553573926', 'Vertical Run', 'https://images.isbndb.com/covers/39/23/9780553573923.jpg'), + ('0061097624', 'Found Money', 'https://images.isbndb.com/covers/76/21/9780061097621.jpg'), + ('0553576089', 'In The Presence Of The Enemy', 'https://images.isbndb.com/covers/60/85/9780553576085.jpg'), + ('0061097306', 'Act Of Revenge', 'https://images.isbndb.com/covers/73/00/9780061097300.jpg'), + ('0515124060', 'The Investigators (Badge Of Honor No. 7)', 'https://images.isbndb.com/covers/40/64/9780515124064.jpg'), + ('0451185498', 'Against The Law', 'https://images.isbndb.com/covers/54/95/9780451185495.jpg'), + ('0451192222', 'Witness For The Defense', 'https://images.isbndb.com/covers/22/26/9780451192226.jpg'), + ('0446609617', 'Standoff', 'https://images.isbndb.com/covers/96/16/9780446609616.jpg'), + ('0446608033', 'The Color Of Night', 'https://images.isbndb.com/covers/80/39/9780446608039.jpg'), + ('1575663643', 'Final Seconds', 'https://images.isbndb.com/covers/36/47/9781575663647.jpg'), + ('0307128199', 'Walt Disney''s 101 Dalmatians (Look-Look)', 'https://images.isbndb.com/covers/81/95/9780307128195.jpg'), + ('044022571X', 'Legal Briefs', 'https://images.isbndb.com/covers/57/13/9780440225713.jpg'), + ('0448117487', 'Welcome Is A Wonderful Word', 'https://images.isbndb.com/covers/74/85/9780448117485.jpg'), + ('0843108118', 'Mr. Silly (Mr. Men Books)', 'https://images.isbndb.com/covers/81/18/9780843108118.jpg'), + ('0446608912', 'Heart Breaker', 'https://images.isbndb.com/covers/89/16/9780446608916.jpg'), + ('0446608319', 'The Visionary', 'https://images.isbndb.com/covers/83/12/9780446608312.jpg'), + ('0345427696', 'Of Time And Memory: My Parents'' Love Story', 'https://images.isbndb.com/covers/76/94/9780345427694.jpg'), + ('0375500723', 'The Heart Of A Woman (Oprah''s Book Club)', 'https://images.isbndb.com/covers/07/25/9780375500725.jpg'), + ('0316803480', 'The Cliff Walk: A Memoir Of A Job Lost And A Life Found', 'https://images.isbndb.com/covers/34/89/9780316803489.jpg'), + ('0312278306', 'Half A Heart', 'https://images.isbndb.com/covers/83/04/9780312278304.jpg'), + ('0345428080', 'Crisis Four', 'https://images.isbndb.com/covers/80/80/9780345428080.jpg'), + ('0140264795', 'Rosie', 'https://images.isbndb.com/covers/47/91/9780140264791.jpg'), + ('0060974621', 'Someday: The Story Of A Mother And Her Son', 'https://images.isbndb.com/covers/46/26/9780060974626.jpg'), + ('0312970897', 'On The Edge', 'https://images.isbndb.com/covers/08/95/9780312970895.jpg'), + ('0452282535', 'Katie.com: My Story', 'https://images.isbndb.com/covers/25/37/9780452282537.jpg'), + ('0913780146', 'In Her Day', 'https://images.isbndb.com/covers/01/45/9780913780145.jpg'), + ('0670857661', 'Queer And Loathing: Rants And Raves Of A Raging AIDS Clone', 'https://images.isbndb.com/covers/76/61/9780670857661.jpg'), + ('1567314295', 'Love And Fate', 'https://images.isbndb.com/covers/42/98/9781567314298.jpg'), + ('0670899836', 'Married For Better, Not Worse: The Fourteen Secrets To A Happy Marriage', 'https://images.isbndb.com/covers/98/38/9780670899838.jpg'), + ('0330331698', 'All The Pretty Horses (UK Edition)', 'https://images.isbndb.com/covers/16/92/9780330331692.jpg'), + ('0737000465', 'Letters To Harry: A True Story Of A Daughter''s Love And A Mother''s Final Journey', 'https://images.isbndb.com/covers/04/67/9780737000467.jpg'), + ('0374248613', 'The Rehearsal', 'https://images.isbndb.com/covers/86/11/9780374248611.jpg'), + ('0807072125', 'All Souls: A Family Story From Southie', 'https://images.isbndb.com/covers/21/27/9780807072127.jpg'), + ('1931514933', 'GTO: Great Teacher Onizuka, Vol. 1', 'https://images.isbndb.com/covers/49/34/9781931514934.jpg'), + ('1591823692', 'Vampire Game, Vol. 1', 'https://images.isbndb.com/covers/36/98/9781591823698.jpg'), + ('1892213087', 'Magic Knight Rayearth, Book 2', 'https://images.isbndb.com/covers/30/82/9781892213082.jpg'), + ('1892213001', 'Magic Knight Rayearth 1', 'https://images.isbndb.com/covers/30/06/9781892213006.jpg'), + ('1586648756', 'Record Of Lodoss War Deedlit''s Tale Volume 2: Forest Of No Return', 'https://images.isbndb.com/covers/87/56/9781586648756.jpg'), + ('1586648969', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 6', 'https://images.isbndb.com/covers/89/61/9781586648961.jpg'), + ('1586648950', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 5 (Record Of Lodoss War (Graphic Novels))', 'https://images.isbndb.com/covers/89/54/9781586648954.jpg'), + ('1586648624', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 4', 'https://images.isbndb.com/covers/86/26/9781586648626.jpg'), + ('1586648616', 'Record Of Lodoss War (Chronicles Of The Heroic Knight, Book 3)', 'https://images.isbndb.com/covers/86/19/9781586648619.jpg'), + ('1586648500', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 2', 'https://images.isbndb.com/covers/85/03/9781586648503.jpg'), + ('1562199455', 'Record Of Lodoss War Chronicles Of The Heroic Knight Book 1', 'https://images.isbndb.com/covers/94/56/9781562199456.jpg'), + ('0385477155', 'The Singular Mark Twain: A Biography', 'https://images.isbndb.com/covers/71/54/9780385477154.jpg'), + ('0385730918', 'Left For Dead: A Young Man''s Search For Justice For The USS Indianapolis', 'https://images.isbndb.com/covers/09/14/9780385730914.jpg'), + ('0739408461', 'Unexplained Mysteries Of World War II', 'https://images.isbndb.com/covers/84/69/9780739408469.jpg'), + ('0486212688', 'The History Of The Lewis And Clark Expedition, Vol. 1', 'https://images.isbndb.com/covers/26/85/9780486212685.jpg'), + ('0451210875', 'Wizard And Glass (The Dark Tower, Book 4)', 'https://images.isbndb.com/covers/08/76/9780451210876.jpg'), + ('0451210867', 'The Waste Lands (The Dark Tower, Book 3)', 'https://images.isbndb.com/covers/08/69/9780451210869.jpg'), + ('0451210859', 'The Drawing Of The Three (The Dark Tower, Book 2)', 'https://images.isbndb.com/covers/08/52/9780451210852.jpg'), + ('1591822092', 'Ragnarok, Book 10', 'https://images.isbndb.com/covers/20/97/9781591822097.jpg'), + ('1591822084', 'Ragnarok #9', 'https://images.isbndb.com/covers/20/80/9781591822080.jpg'), + ('1591822076', 'Ragnarok #8', 'https://images.isbndb.com/covers/20/73/9781591822073.jpg'), + ('1591822068', 'Ragnarok, Vol. 7', 'https://images.isbndb.com/covers/20/66/9781591822066.jpg'), + ('193151478X', 'Midnight''s Masters (Ragnarok 6)', 'https://images.isbndb.com/covers/47/81/9781931514781.jpg'), + ('1931514771', 'Twilight Of Terror (Ragnarok, Vol. 5)', 'https://images.isbndb.com/covers/47/74/9781931514774.jpg'), + ('1931514763', 'Dawn Of Destruction (Ragnarok, Book 4)', 'https://images.isbndb.com/covers/47/67/9781931514767.jpg'), + ('1931514755', 'Ragnarok: Night Of Blood, Vol. 3', 'https://images.isbndb.com/covers/47/50/9781931514750.jpg'), + ('1931514747', 'Ragnarok # 2', 'https://images.isbndb.com/covers/47/43/9781931514743.jpg'), + ('1931514739', 'RAGNAROK #1', 'https://images.isbndb.com/covers/47/36/9781931514736.jpg'), + ('159182107X', 'Samurai Girl: Real Bout High School, Book 5', 'https://images.isbndb.com/covers/10/76/9781591821076.jpg'), + ('1591820219', 'Real Bout High School, Book 4', 'https://images.isbndb.com/covers/02/15/9781591820215.jpg'), + ('1591820200', 'Samurai Girl: Real Bout High School, Book 3', 'https://images.isbndb.com/covers/02/08/9781591820208.jpg'), + ('1931514461', 'Samurai Girl: Real Bout High School #2', 'https://images.isbndb.com/covers/44/60/9781931514460.jpg'), + ('193151495X', 'Real Bout High School #1', 'https://images.isbndb.com/covers/49/58/9781931514958.jpg'), + ('1591820146', 'Love Hina, Vol. 3', 'https://images.isbndb.com/covers/01/47/9781591820147.jpg'), + ('1931514976', 'Love Hina, Volume 2', 'https://images.isbndb.com/covers/49/72/9781931514972.jpg'), + ('1931514941', 'Love Hina, Vol. 1', 'https://images.isbndb.com/covers/49/41/9781931514941.jpg'), + ('1591161932', 'Flame Of Recca, Vol. 5', 'https://images.isbndb.com/covers/19/36/9781591161936.jpg'), + ('1591161258', 'Flame Of Recca, Vol. 4', 'https://images.isbndb.com/covers/12/57/9781591161257.jpg'), + ('1591160944', 'Flame Of Recca, Vol. 3', 'https://images.isbndb.com/covers/09/46/9781591160946.jpg'), + ('1591160677', 'Flame Of Recca, Vol. 2', 'https://images.isbndb.com/covers/06/70/9781591160670.jpg'), + ('1591160669', 'Flame Of Recca, Vol. 1', 'https://images.isbndb.com/covers/06/63/9781591160663.jpg'), + ('1591823978', 'FLCL, Vol. 2', 'https://images.isbndb.com/covers/39/71/9781591823971.jpg'), + ('159182396X', 'FLCL, Vol. 1', 'https://images.isbndb.com/covers/39/64/9781591823964.jpg'), + ('0060177241', 'The Thief Of Always: A Fable', 'https://images.isbndb.com/covers/72/49/9780060177249.jpg'), + ('0141308109', 'The Boxes', 'https://images.isbndb.com/covers/81/04/9780141308104.jpg'), + ('0345450051', 'Spider-Man', 'https://images.isbndb.com/covers/00/50/9780345450050.jpg'), + ('0441002846', 'The Engines Of God', 'https://images.isbndb.com/covers/28/49/9780441002849.jpg'), + ('0880382791', 'Artifact Of Evil (Greyhawk Adventures Novels, Book 2)', 'https://images.isbndb.com/covers/27/93/9780880382793.jpg'), + ('0966961706', 'Game Over Press Start To Continue', 'https://images.isbndb.com/covers/17/06/9780966961706.jpg'), + ('0451160959', 'The Stand (Signet)', 'https://images.isbndb.com/covers/09/59/9780451160959.jpg'), + ('156931778X', 'Battle Royale', 'https://images.isbndb.com/covers/77/85/9781569317785.jpg'), + ('0671700294', 'NANCY DREW FILES #52:DANGER FOR HIRE', 'https://images.isbndb.com/covers/02/94/9780671700294.jpg'), + ('0060924640', 'Hank & Chloe', 'https://images.isbndb.com/covers/46/45/9780060924645.jpg'), + ('0385497954', 'The Tale Of Murasaki: A Novel', 'https://images.isbndb.com/covers/79/54/9780385497954.jpg'), + ('080411188X', 'Defend And Betray (William Monk Novels)', 'https://images.isbndb.com/covers/18/81/9780804111881.jpg'), + ('0505525224', 'Whispers In The Stars', 'https://images.isbndb.com/covers/52/22/9780505525222.jpg'), + ('0062513095', 'Fairy Tales: Traditional Stories Retold For Gay Men', 'https://images.isbndb.com/covers/30/90/9780062513090.jpg'), + ('1556611102', 'Song Of The Silent Harp (An Emerald Ballad #1)', 'https://images.isbndb.com/covers/11/00/9781556611100.jpg'), + ('0446305693', 'Odd Woman', 'https://images.isbndb.com/covers/56/93/9780446305693.jpg'), + ('0380624060', 'Dream Children', 'https://images.isbndb.com/covers/40/65/9780380624065.jpg'), + ('0938410563', 'Requiem For A Dream: A Novel (Classic Reprint Series)', 'https://images.isbndb.com/covers/05/60/9780938410560.jpg'), + ('0345354575', 'Homeplace', 'https://images.isbndb.com/covers/45/70/9780345354570.jpg'), + ('0312152949', 'We Are Gathered Here: A Novel', 'https://images.isbndb.com/covers/29/49/9780312152949.jpg'), + ('044630798X', 'And More By Andy Rooney', 'https://images.isbndb.com/covers/79/87/9780446307987.jpg'), + ('0553212230', 'Bleak House (Bantam Classics)', 'https://images.isbndb.com/covers/22/35/9780553212235.jpg'), + ('0201489392', 'A Year In The Maine Woods', 'https://images.isbndb.com/covers/93/92/9780201489392.jpg'), + ('068485970X', 'An OCEAN IN IOWA: A NOVEL', 'https://images.isbndb.com/covers/97/05/9780684859705.jpg'), + ('0873513193', 'Emigrants: The Emigrant Novels Book 1 (The Emigrant Novels / Vilhelm Moberg, Book 1)', 'https://images.isbndb.com/covers/31/97/9780873513197.jpg'), + ('0679762892', 'The Catcher Was A Spy: The Mysterious Life Of Moe Berg', 'https://images.isbndb.com/covers/28/98/9780679762898.jpg'), + ('0449904067', 'Dave Barry''s Greatest Hits', 'https://images.isbndb.com/covers/40/60/9780449904060.jpg'), + ('0679415610', 'The Children', 'https://images.isbndb.com/covers/56/19/9780679415619.jpg'), + ('0152012702', 'Heart And Soul', 'https://images.isbndb.com/covers/27/00/9780152012700.jpg'), + ('1568360096', 'Tracing It Home: A Chinese Journey (Kodansha Globe Series)', 'https://images.isbndb.com/covers/00/96/9781568360096.jpg'), + ('0380698692', 'The Finishing School', 'https://images.isbndb.com/covers/86/91/9780380698691.jpg'), + ('0380703149', 'Father Melancholy''s Daughter', 'https://images.isbndb.com/covers/31/42/9780380703142.jpg'), + ('0380703130', 'A Southern Family', 'https://images.isbndb.com/covers/31/35/9780380703135.jpg'), + ('0380615983', 'A Mother And Two Daughters', 'https://images.isbndb.com/covers/59/88/9780380615988.jpg'), + ('0375401946', 'MotherKind', 'https://images.isbndb.com/covers/19/47/9780375401947.jpg'), + ('0061059900', 'Sailing To Sarantium (Sarantine Mosaic, Book 1)', 'https://images.isbndb.com/covers/99/02/9780061059902.jpg'), + ('0380792990', 'The Invisible Country', 'https://images.isbndb.com/covers/29/93/9780380792993.jpg'), + ('0385272170', 'The Semi-Attached Couple & The Semi-Detached House (Virago Modern Classics)', 'https://images.isbndb.com/covers/21/79/9780385272179.jpg'), + ('0140139419', 'Joe Hill', 'https://images.isbndb.com/covers/94/19/9780140139419.jpg'), + ('0060171324', 'The Blue Jay''s Dance: A Birth Year', 'https://images.isbndb.com/covers/13/22/9780060171322.jpg'), + ('1555612423', 'Dads Toddlers & Chicken Dance', 'https://images.isbndb.com/covers/24/29/9781555612429.jpg'), + ('0452277698', 'Picturing The Wreck', 'https://images.isbndb.com/covers/76/94/9780452277694.jpg'), + ('0452279097', 'Teaching Montessori In The Home: Pre-School Years: The Pre-School Years', 'https://images.isbndb.com/covers/90/94/9780452279094.jpg'), + ('0440213355', 'A Woman''s Eye', 'https://images.isbndb.com/covers/33/52/9780440213352.jpg'), + ('0553569376', 'The Courtship Of Princess Leia (Star Wars)', 'https://images.isbndb.com/covers/93/77/9780553569377.jpg'), + ('0804108854', 'The Clock Winder', 'https://images.isbndb.com/covers/88/50/9780804108850.jpg'), + ('0385319444', 'Lost In Translation', 'https://images.isbndb.com/covers/94/47/9780385319447.jpg'), + ('0316418927', 'Home Fires Burning', 'https://images.isbndb.com/covers/89/28/9780316418928.jpg'), + ('038547721X', 'The Other Side Of The River: A Story Of Two Towns, A Death, And America''s Dilemma', 'https://images.isbndb.com/covers/72/15/9780385477215.jpg'), + ('0446607401', 'At All Costs', 'https://images.isbndb.com/covers/74/07/9780446607407.jpg'), + ('0385336489', 'Niagara Falls All Over Again', 'https://images.isbndb.com/covers/64/82/9780385336482.jpg'), + ('0934601941', 'In-Laws, Outlaws And Other Theories Of Relativity', 'https://images.isbndb.com/covers/19/48/9780934601948.jpg'), + ('0963355554', 'Among Friends', 'https://images.isbndb.com/covers/55/53/9780963355553.jpg'), + ('0931948932', 'Oh, Lord, I Sound Just Like Mama', 'https://images.isbndb.com/covers/89/30/9780931948930.jpg'), + ('0375709215', 'The Mark Of The Angel: A Novel', 'https://images.isbndb.com/covers/92/10/9780375709210.jpg'), + ('0805060367', 'The White Bone: A Novel', 'https://images.isbndb.com/covers/03/62/9780805060362.jpg'), + ('0816148708', 'We Are Still Married: Stories And Letters', 'https://images.isbndb.com/covers/87/07/9780816148707.jpg'), + ('0399141200', 'That Camden Summer', 'https://images.isbndb.com/covers/12/01/9780399141201.jpg'), + ('0688166083', '101 Uses For A Bridesmaid Dress', 'https://images.isbndb.com/covers/60/83/9780688166083.jpg'), + ('0440212235', 'Hardware: A Carlotta Carlyle Mystery', 'https://images.isbndb.com/covers/22/32/9780440212232.jpg'), + ('0395633206', 'Dakota - A Spiritual Geography', 'https://images.isbndb.com/covers/32/05/9780395633205.jpg'), + ('0345273494', 'Treasures Of Tutankhamun', 'https://images.isbndb.com/covers/34/99/9780345273499.jpg'), + ('0312309635', 'The Waiting Child: How The Faith And Love Of One Orphan Saved The Life Of Another', 'https://images.isbndb.com/covers/96/33/9780312309633.jpg'), + ('0809321297', 'Chicago: With The Chicago Tribune Articles That Inspired It', 'https://images.isbndb.com/covers/12/92/9780809321292.jpg'), + ('0690048246', 'The Egyptian Cinderella (Trophy Picture Books)', 'https://images.isbndb.com/covers/82/47/9780690048247.jpg'), + ('0345456688', 'Tatooine Ghost (Star Wars)', 'https://images.isbndb.com/covers/66/87/9780345456687.jpg'), + ('1880823233', 'Dear Cara : Letters From Otto Frank; Anne''s Father Shares His Wisdom', 'https://images.isbndb.com/covers/32/31/9781880823231.jpg'), + ('055306102X', 'Biografía De Ana Frank', 'https://images.isbndb.com/covers/10/24/9780553061024.jpg'), + ('0609609459', 'Queen Bees And Wannabes: Helping Your Daughter Survive Cliques, Gossip, Boyfriends, And Other Realities Of Adolescence', 'https://images.isbndb.com/covers/94/53/9780609609453.jpg'), + ('0767913019', 'Veiled Courage: Inside The Afghan Women''s Resistance', 'https://images.isbndb.com/covers/30/10/9780767913010.jpg'), + ('0345435400', 'Star Wars: Rogue Planet', 'https://images.isbndb.com/covers/54/08/9780345435408.jpg'), + ('0684834308', 'Michael And Natasha: The Life And Love Of Michael Ll The Last Of The Romanov Tsars', 'https://images.isbndb.com/covers/43/06/9780684834306.jpg'), + ('038549727X', 'The Unknown Errors Of Our Lives', 'https://images.isbndb.com/covers/72/75/9780385497275.jpg'), + ('0385497296', 'The Vine Of Desire: A Novel', 'https://images.isbndb.com/covers/72/99/9780385497299.jpg'), + ('0345428609', 'Agents Of Chaos I: Hero''s Trial (Star Wars: The New Jedi Order, Book 4)', 'https://images.isbndb.com/covers/86/08/9780345428608.jpg'), + ('0140187642', 'My Antonia (Penguin Classics)', 'https://images.isbndb.com/covers/76/49/9780140187649.jpg'), + ('0345428560', 'Dark Tide II: Ruin (Star Wars: The New Jedi Order, Book 3)', 'https://images.isbndb.com/covers/85/61/9780345428561.jpg'), + ('0425149625', 'The Grass Dancer', 'https://images.isbndb.com/covers/96/21/9780425149621.jpg'), + ('0446530255', 'Pharaoh (Kleopatra, Volume II)', 'https://images.isbndb.com/covers/02/55/9780446530255.jpg'), + ('0446679178', 'Kleopatra', 'https://images.isbndb.com/covers/91/76/9780446679176.jpg'), + ('0345443004', 'The Approaching Storm (Star Wars)', 'https://images.isbndb.com/covers/30/07/9780345443007.jpg'), + ('0345442989', 'Star Wars: Cloak Of Deception', 'https://images.isbndb.com/covers/29/87/9780345442987.jpg'), + ('0670030651', 'Testimony Of An Irish Slave Girl', 'https://images.isbndb.com/covers/06/51/9780670030651.jpg'), + ('037542055X', 'They Went Whistling : Women Wayfarers, Warriors, Runaways, And Renegades', 'https://images.isbndb.com/covers/05/59/9780375420559.jpg'), + ('038550098X', 'Last Of The Amazons: A Novel', 'https://images.isbndb.com/covers/09/82/9780385500982.jpg'), + ('1875989048', 'The Oz Files : The Australian UFO Story : Government Files Reveal The Inside Story Of Australian UFO Sightings', 'https://images.isbndb.com/covers/90/41/9781875989041.jpg'), + ('1590250001', 'It Had To Be Us', 'https://images.isbndb.com/covers/00/06/9781590250006.jpg'), + ('0061081558', 'Chance McCall (Harper Monograms)', 'https://images.isbndb.com/covers/15/52/9780061081552.jpg'), + ('0671028014', 'Star (Wildflowers)', 'https://images.isbndb.com/covers/80/15/9780671028015.jpg'), + ('0553563084', 'College Girls (Sweet Valley University(R))', 'https://images.isbndb.com/covers/30/85/9780553563085.jpg'), + ('0553570560', 'The Boys Of Summer (Sweet Valley University(R))', 'https://images.isbndb.com/covers/05/64/9780553570564.jpg'), + ('0553570587', 'Spy Girl (Sweet Valley University) (Book 34)', 'https://images.isbndb.com/covers/05/88/9780553570588.jpg'), + ('0671694979', 'Phone Calls: Phone Calls', 'https://images.isbndb.com/covers/49/75/9780671694975.jpg'), + ('1591132207', 'Chance Place', 'https://images.isbndb.com/covers/22/02/9781591132202.jpg'), + ('0446400173', 'Rainbow''s End (An Inspector George Felse Mystery)', 'https://images.isbndb.com/covers/01/76/9780446400176.jpg'), + ('0684813580', 'The Homo Handbook: Getting In Touch With Your Inner Homo: A Survival Guide For Lesbians And Gay Men (1996 Lambda Literary Award Best Humor Book)', 'https://images.isbndb.com/covers/35/85/9780684813585.jpg'), + ('094148307X', 'The Other Side Of Venus', 'https://images.isbndb.com/covers/30/70/9780941483070.jpg'), + ('0939416611', 'Queer And Pleasant Danger: Writing Out My Life', 'https://images.isbndb.com/covers/66/15/9780939416615.jpg'), + ('0385480377', 'The History Of Lesbian Hair', 'https://images.isbndb.com/covers/03/76/9780385480376.jpg'), + ('0446400696', 'Nice Derangement Of Epitaphs (Inspector George Felse Mystery)', 'https://images.isbndb.com/covers/06/95/9780446400695.jpg'), + ('0425129608', 'Evil Under The Sun (Hercule Poirot)', 'https://images.isbndb.com/covers/96/09/9780425129609.jpg'), + ('0425099148', 'Death In The Clouds/Death In The Air (Hercule Poirot)', 'https://images.isbndb.com/covers/91/48/9780425099148.jpg'), + ('0813190355', 'Yates Paul, His Grand Flights, His Tootings', 'https://images.isbndb.com/covers/03/58/9780813190358.jpg'), + ('0743464273', 'The Lamplighter', 'https://images.isbndb.com/covers/42/77/9780743464277.jpg'), + ('0312979738', 'The Witness For The Prosecution (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/97/37/9780312979737.jpg'), + ('0451201132', 'N Or M? (Tommy And Tuppence)', 'https://images.isbndb.com/covers/11/33/9780451201133.jpg'), + ('0425129632', 'Hallowe''en Party (Hercule Poirot)', 'https://images.isbndb.com/covers/96/30/9780425129630.jpg'), + ('0425173917', 'The Clocks (Hercule Poirot)', 'https://images.isbndb.com/covers/39/16/9780425173916.jpg'), + ('0451199898', 'The Mirror Crack''d (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/98/98/9780451199898.jpg'), + ('0451201191', 'A Murder Is Announced (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/11/95/9780451201195.jpg'), + ('0312981600', 'The Mysterious Mr. Quin', 'https://images.isbndb.com/covers/16/00/9780312981600.jpg'), + ('0451200187', 'Nemesis (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/01/81/9780451200181.jpg'), + ('0060926945', 'Masters Of Deception: The Gang That Ruled Cyberspace', 'https://images.isbndb.com/covers/69/46/9780060926946.jpg'), + ('0393093883', 'Leaves Of Grass: Authoritative Texts, Prefaces, Whitman On His Art, Criticism (Norton Critical Edition)', 'https://images.isbndb.com/covers/38/89/9780393093889.jpg'), + ('0486290735', 'The Autobiography Of Benjamin Franklin (Dover Thrift Editions)', 'https://images.isbndb.com/covers/07/37/9780486290737.jpg'), + ('0060929804', 'Native Son', 'https://images.isbndb.com/covers/98/00/9780060929800.jpg'), + ('0812504321', 'The Call Of The Wild', 'https://images.isbndb.com/covers/43/23/9780812504323.jpg'), + ('0812504380', 'Captains Courageous (Tor Classics)', 'https://images.isbndb.com/covers/43/85/9780812504385.jpg'), + ('0142437174', 'The Adventures Of Huckleberry Finn (Penguin Classics)', 'https://images.isbndb.com/covers/71/79/9780142437179.jpg'), + ('1561481858', '20 Most Asked Questions About The Amish & Mennonites (People''s Place Book, No 1)', 'https://images.isbndb.com/covers/18/59/9781561481859.jpg'), + ('0312979819', 'The Sittaford Mystery (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/98/12/9780312979812.jpg'), + ('0671685112', 'Zero At The Bone', 'https://images.isbndb.com/covers/51/19/9780671685119.jpg'), + ('0394721039', 'Money Game', 'https://images.isbndb.com/covers/10/33/9780394721033.jpg'), + ('0380729865', 'Father Melancholy''s Daughter', 'https://images.isbndb.com/covers/98/69/9780380729869.jpg'), + ('044020495X', 'A Dinner To Die For (Jill Smith Mystery)', 'https://images.isbndb.com/covers/49/54/9780440204954.jpg'), + ('0425175456', 'Mrs. McGinty''s Dead: A Hercule Poirot Novel (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/54/53/9780425175453.jpg'), + ('0312981651', 'Parker Pyne Investigates', 'https://images.isbndb.com/covers/16/55/9780312981655.jpg'), + ('042506803X', 'Taken At The Flood (aka There Is A Tide...)', 'https://images.isbndb.com/covers/80/38/9780425068038.jpg'), + ('0425091805', 'Three Act Tragedy (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/18/07/9780425091807.jpg'), + ('0425098540', 'Dumb Witness (Hercule Poirot)', 'https://images.isbndb.com/covers/85/47/9780425098547.jpg'), + ('0312981686', 'Destination Unknown (St. Martin''s Minotaur Mysteries)', 'https://images.isbndb.com/covers/16/86/9780312981686.jpg'), + ('0425173909', 'After The Funeral (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/39/09/9780425173909.jpg'), + ('0451200535', 'Postern Of Fate', 'https://images.isbndb.com/covers/05/32/9780451200532.jpg'), + ('042509961X', 'Lord Edgware Dies', 'https://images.isbndb.com/covers/96/12/9780425099612.jpg'), + ('0440159229', 'Murder After Hours', 'https://images.isbndb.com/covers/92/23/9780440159223.jpg'), + ('0441240984', 'The Floating Admiral', 'https://images.isbndb.com/covers/09/82/9780441240982.jpg'), + ('0941483428', 'Chris', 'https://images.isbndb.com/covers/34/21/9780941483421.jpg'), + ('1573441252', 'Beebo Brinker', 'https://images.isbndb.com/covers/12/54/9781573441254.jpg'), + ('0786886099', 'A Field Guide To The Yettie: America''s Young, Entreprenurial Technocrats', 'https://images.isbndb.com/covers/60/98/9780786886098.jpg'), + ('0345351959', 'Willow: A Novel', 'https://images.isbndb.com/covers/19/51/9780345351951.jpg'), + ('0446400157', 'A Morbid Taste For Bones: The First Chronicle Of Brother Cadfael', 'https://images.isbndb.com/covers/01/52/9780446400152.jpg'), + ('0451199863', 'A Pocket Full Of Rye (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/98/67/9780451199867.jpg'), + ('0312330731', 'Howard Dean In His Own Words', 'https://images.isbndb.com/covers/07/36/9780312330736.jpg'), + ('034541215X', 'Bimbos Of The Death Sun', 'https://images.isbndb.com/covers/21/57/9780345412157.jpg'), + ('0061099481', 'Magic Hour', 'https://images.isbndb.com/covers/94/89/9780061099489.jpg'), + ('0743234901', 'Out Of The Silent Planet (Space Trilogy, Book One)', 'https://images.isbndb.com/covers/49/00/9780743234900.jpg'), + ('0671724738', 'Postcards From The Edge', 'https://images.isbndb.com/covers/47/33/9780671724733.jpg'), + ('0451201205', 'The Secret Adversary', 'https://images.isbndb.com/covers/12/01/9780451201201.jpg'), + ('0440152305', 'Man In The Brown Suit', 'https://images.isbndb.com/covers/23/09/9780440152309.jpg'), + ('0399146601', 'Shattered', 'https://images.isbndb.com/covers/66/02/9780399146602.jpg'), + ('0671542125', 'Third Girl', 'https://images.isbndb.com/covers/21/22/9780671542122.jpg'), + ('0451521595', 'Much Ado About Nothing (Shakespeare, Signet Classic)', 'https://images.isbndb.com/covers/15/90/9780451521590.jpg'), + ('0713994606', 'Anna Karenina (Penguin Classics)', 'https://images.isbndb.com/covers/46/05/9780713994605.jpg'), + ('0812503058', 'The Woman Who Loved Reindeer', 'https://images.isbndb.com/covers/30/50/9780812503050.jpg'), + ('0380705486', 'The Forge In The Forest (Winter Of The World, Vol 2)', 'https://images.isbndb.com/covers/54/81/9780380705481.jpg'), + ('0316702757', 'Keeping You A Secret', 'https://images.isbndb.com/covers/27/51/9780316702751.jpg'), + ('0425130258', 'Peril At End House (Hercule Poirot Mysteries)', 'https://images.isbndb.com/covers/02/54/9780425130254.jpg'), + ('0374517835', 'A Severed Wasp: A Novel', 'https://images.isbndb.com/covers/78/30/9780374517830.jpg'), + ('0425169251', 'One, Two, Buckle My Shoe', 'https://images.isbndb.com/covers/92/54/9780425169254.jpg'), + ('0449210006', 'Sunday The Rabbi Stayed Home', 'https://images.isbndb.com/covers/00/00/9780449210000.jpg'), + ('0345253736', 'The White Dragon', 'https://images.isbndb.com/covers/37/36/9780345253736.jpg'), + ('0345362861', 'Dragonsdawn (Dragonriders Of Pern Series)', 'https://images.isbndb.com/covers/28/65/9780345362865.jpg'), + ('0020868804', 'Out Of The Silent Planet', 'https://images.isbndb.com/covers/88/04/9780020868804.jpg'), + ('9960340112', 'English Translation Of The Meanings Of The Holy Quran', 'https://images.isbndb.com/covers/01/11/9789960340111.jpg'), + ('0060935405', 'Source: Poems', 'https://images.isbndb.com/covers/54/05/9780060935405.jpg'), + ('0374522812', 'John Berryman: Collected Poems 1937-1971', 'https://images.isbndb.com/covers/28/10/9780374522810.jpg'), + ('1557282048', 'JOINER (University Of Arkansas Press Reprint Series)', 'https://images.isbndb.com/covers/20/40/9781557282040.jpg'), + ('0060956739', 'Continental Drift (Perennial Classics)', 'https://images.isbndb.com/covers/67/38/9780060956738.jpg'), + ('0553293362', 'Second Foundation (Foundation Novels)', 'https://images.isbndb.com/covers/33/64/9780553293364.jpg'), + ('0441089348', 'Burning Chrome', 'https://images.isbndb.com/covers/93/45/9780441089345.jpg'), + ('0446519766', 'Mirage', 'https://images.isbndb.com/covers/97/62/9780446519762.jpg'), + ('0743457633', 'Slave Trade', 'https://images.isbndb.com/covers/76/37/9780743457637.jpg'), + ('0345407601', 'The Quotable Star Wars', 'https://images.isbndb.com/covers/76/03/9780345407603.jpg'), + ('0743509447', 'Star Trek Gateways : What Lay Beyond', 'https://images.isbndb.com/covers/94/42/9780743509442.jpg'), + ('0836250877', 'Little Sip Of Chicken Soup For The Soul: Inspiring Stories Of Self-Affirmation', 'https://images.isbndb.com/covers/08/79/9780836250879.jpg'), + ('0440425360', 'The Foundling', 'https://images.isbndb.com/covers/53/66/9780440425366.jpg'), + ('0440435749', 'The High King (Prydain Chronicles)', 'https://images.isbndb.com/covers/57/47/9780440435747.jpg'), + ('0440484839', 'Taran Wanderer (Prydain Chronicles)', 'https://images.isbndb.com/covers/48/37/9780440484837.jpg'), + ('0440411254', 'The Castle Of Llyr (Pyrdain Chronicles)', 'https://images.isbndb.com/covers/12/53/9780440411253.jpg'), + ('0440406498', 'The Black Cauldron (Prydain Chronicles)', 'https://images.isbndb.com/covers/64/95/9780440406495.jpg'), + ('0440407028', 'The Book Of Three (Prydain Chronicles)', 'https://images.isbndb.com/covers/70/27/9780440407027.jpg'), + ('0440381142', 'Solo: Women On Woman Alone', 'https://images.isbndb.com/covers/11/43/9780440381143.jpg'), + ('0553261258', 'High Hearts', 'https://images.isbndb.com/covers/12/57/9780553261257.jpg'), + ('0553149075', 'Take Back The Night', 'https://images.isbndb.com/covers/90/74/9780553149074.jpg'), + ('0425080005', 'The Golden Ball And Other Stories', 'https://images.isbndb.com/covers/00/09/9780425080009.jpg'), + ('0425103528', 'Partners In Crime (Agatha Christie Mysteries Collection)', 'https://images.isbndb.com/covers/35/24/9780425103524.jpg'), + ('0440192285', 'The Under Dog And Other Stories', 'https://images.isbndb.com/covers/22/82/9780440192282.jpg'), + ('0425100413', 'The Regatta Mystery And Other Stories (Hercule Poirot)', 'https://images.isbndb.com/covers/04/17/9780425100417.jpg'), + ('0451199928', 'A Caribbean Mystery (Miss Marple Mysteries)', 'https://images.isbndb.com/covers/99/28/9780451199928.jpg'), + ('0425177416', 'Hercule Poirot''s Christmas', 'https://images.isbndb.com/covers/74/19/9780425177419.jpg'), + ('0061003786', 'Passenger To Frankfurt', 'https://images.isbndb.com/covers/37/83/9780061003783.jpg'), + ('0061003689', 'Death Comes As The End', 'https://images.isbndb.com/covers/36/84/9780061003684.jpg'), + ('0425174735', 'Dead Man''s Folly (Hercule Poirot)', 'https://images.isbndb.com/covers/47/39/9780425174739.jpg'), + ('0743423763', 'Bill The Galactic Hero', 'https://images.isbndb.com/covers/37/62/9780743423762.jpg'), + ('067163822X', 'The SECRET OF THE OLD LACE NANCY DREW #59', 'https://images.isbndb.com/covers/82/21/9780671638221.jpg'), + ('1400060265', 'Honku: The Zen Antidote To Road Rage', 'https://images.isbndb.com/covers/02/69/9781400060269.jpg'), + ('0061052043', 'Caliban''s Hour', 'https://images.isbndb.com/covers/20/40/9780061052040.jpg'), + ('0380781042', 'Grail (The Pendragon Cycle, Book 5)', 'https://images.isbndb.com/covers/10/41/9780380781041.jpg'), + ('067142095X', 'Pale Horse', 'https://images.isbndb.com/covers/09/56/9780671420956.jpg'), + ('0393322963', 'The Bush Dyslexicon: Observations On A National Disorder', 'https://images.isbndb.com/covers/29/65/9780393322965.jpg'), + ('0375411119', 'The PowerBook', 'https://images.isbndb.com/covers/11/13/9780375411113.jpg'), + ('0345365399', 'Wolfwalker', 'https://images.isbndb.com/covers/53/92/9780345365392.jpg'), + ('0671701592', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/15/98/9780671701598.jpg'), + ('0140361227', 'The House At Pooh Corner (Pooh Original Edition)', 'https://images.isbndb.com/covers/12/23/9780140361223.jpg'), + ('0140231595', 'Serving In Silence', 'https://images.isbndb.com/covers/15/95/9780140231595.jpg'), + ('1853260282', 'Emma (Wadsworth Collection)', 'https://images.isbndb.com/covers/02/85/9781853260285.jpg'), + ('0396073735', 'Sleeping Murder', 'https://images.isbndb.com/covers/37/34/9780396073734.jpg'), + ('0671552228', 'Ten Little Indians', 'https://images.isbndb.com/covers/22/20/9780671552220.jpg'), + ('0440957761', 'The Moon By Night (Austin Family, Book 2)', 'https://images.isbndb.com/covers/77/68/9780440957768.jpg'), + ('0451515048', 'The Jungle', 'https://images.isbndb.com/covers/50/49/9780451515049.jpg'), + ('0451527097', 'One Day In The Life Of Ivan Denisovitch (Signet Classics)', 'https://images.isbndb.com/covers/70/97/9780451527097.jpg'), + ('0451181441', 'Heir Condition', 'https://images.isbndb.com/covers/14/42/9780451181442.jpg'), + ('0425159612', 'The Ghost Walker (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/96/13/9780425159613.jpg'), + ('0425154637', 'The Eagle Catcher (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/46/32/9780425154632.jpg'), + ('0441008631', 'The Telling', 'https://images.isbndb.com/covers/86/36/9780441008636.jpg'), + ('0553269291', 'Rubyfruit Jungle', 'https://images.isbndb.com/covers/92/91/9780553269291.jpg'), + ('0743427947', 'Progenitor (Star Trek: Stargazer, Book 2)', 'https://images.isbndb.com/covers/79/44/9780743427944.jpg'), + ('068482504X', 'Joshua And The Shepherd', 'https://images.isbndb.com/covers/50/45/9780684825045.jpg'), + ('1565071875', 'To My Dear Slimeball', 'https://images.isbndb.com/covers/18/72/9781565071872.jpg'), + ('0671019163', 'Planet X (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/91/67/9780671019167.jpg'), + ('0671464965', 'The Body In The Library (A Jane Marple Murder Mystery)', 'https://images.isbndb.com/covers/49/67/9780671464967.jpg'), + ('0425163830', 'Murder To Music', 'https://images.isbndb.com/covers/38/32/9780425163832.jpg'), + ('0812518055', 'Lovelock (Mayflower Trilogy)', 'https://images.isbndb.com/covers/80/54/9780812518054.jpg'), + ('0671701622', 'Shadows On The Mirror', 'https://images.isbndb.com/covers/16/28/9780671701628.jpg'), + ('0440917190', 'Dragons In The Waters (Laurel-Leaf Mystery)', 'https://images.isbndb.com/covers/71/99/9780440917199.jpg'), + ('0441783295', 'Starbridge', 'https://images.isbndb.com/covers/32/98/9780441783298.jpg'), + ('042507255X', 'Last Starfighter', 'https://images.isbndb.com/covers/25/54/9780425072554.jpg'), + ('0440906490', 'The Black Cauldron (The Chronicles Of Prydain)', 'https://images.isbndb.com/covers/64/90/9780440906490.jpg'), + ('0373261896', 'Death Prone', 'https://images.isbndb.com/covers/18/95/9780373261895.jpg'), + ('0441001467', 'Earth 2', 'https://images.isbndb.com/covers/14/60/9780441001460.jpg'), + ('0671823337', 'Towards Zero', 'https://images.isbndb.com/covers/33/37/9780671823337.jpg'), + ('0671437968', 'I Hate Preppies Handbook', 'https://images.isbndb.com/covers/79/61/9780671437961.jpg'), + ('0140064826', 'Happy To Be Here', 'https://images.isbndb.com/covers/48/27/9780140064827.jpg'), + ('0671568310', 'Infiltrator (Star Trek: The Next Generation, Book 42)', 'https://images.isbndb.com/covers/83/13/9780671568313.jpg'), + ('0425108589', 'Appointment With Death (A Hercule Poirot Mystery)', 'https://images.isbndb.com/covers/85/81/9780425108581.jpg'), + ('0553276514', 'Exiled To Earth (Choose Your Own Adventure, No 87)', 'https://images.isbndb.com/covers/65/10/9780553276510.jpg'), + ('0886773865', 'Gate Of Darkness, Circle Of Light', 'https://images.isbndb.com/covers/38/61/9780886773861.jpg'), + ('0380011077', 'Clouds Of Witness', 'https://images.isbndb.com/covers/10/70/9780380011070.jpg'), + ('0449207021', 'One Corpse Too Many', 'https://images.isbndb.com/covers/70/24/9780449207024.jpg'), + ('0590416243', 'The Captive (Apple Paperbacks)', 'https://images.isbndb.com/covers/62/45/9780590416245.jpg'), + ('0679890998', 'Robin''s Country', 'https://images.isbndb.com/covers/09/97/9780679890997.jpg'), + ('0446403180', 'Fallen Into The Pit (An Inspector George Felse Mystery)', 'https://images.isbndb.com/covers/31/84/9780446403184.jpg'), + ('0060244755', 'Deliver Us From Evie', 'https://images.isbndb.com/covers/47/50/9780060244750.jpg'), + ('0812579410', 'Jupiter: A Novel (Grand Tour)', 'https://images.isbndb.com/covers/94/13/9780812579413.jpg'), + ('0812540379', 'Maximum Light', 'https://images.isbndb.com/covers/03/76/9780812540376.jpg'), + ('0451185129', 'Martinis & Mayhem: A Murder, She Wrote Mystery', 'https://images.isbndb.com/covers/51/29/9780451185129.jpg'), + ('1573182036', 'L. Ron Hubbard Presents Writers Of The Future Vol. 16', 'https://images.isbndb.com/covers/20/34/9781573182034.jpg'), + ('0807846465', 'Lift Up Your Voice Like A Trumpet: White Clergy And The Civil Rights And Antiwar Movements, 1954-1973', 'https://images.isbndb.com/covers/64/69/9780807846469.jpg'), + ('093871628X', 'Reject Me - I Love It!: 21 Secrets For Turning Rejection Into Direction (Personal Development Series)', 'https://images.isbndb.com/covers/62/80/9780938716280.jpg'), + ('0762702265', 'Hiking Virginia''s National Forests: Hikes Along The Big Blue Trail, Laurel Fork Trail, Shenandoah Mountain Trail, Appalacian Trail, And Many Others', 'https://images.isbndb.com/covers/22/68/9780762702268.jpg'), + ('0743427920', 'Gauntlet (Star Trek: Stargazer, Book 1)', 'https://images.isbndb.com/covers/79/20/9780743427920.jpg'), + ('0836283430', 'Strip Search: Revealing Today''s Best College Cartoonists', 'https://images.isbndb.com/covers/34/33/9780836283433.jpg'), + ('0449214958', 'Rose Rent', 'https://images.isbndb.com/covers/49/54/9780449214954.jpg'), + ('0671738623', 'Delusions Of Grandma', 'https://images.isbndb.com/covers/86/24/9780671738624.jpg'), + ('084237356X', '5-Minute New Testament NLT', 'https://images.isbndb.com/covers/35/62/9780842373562.jpg'), + ('1576739759', 'Secrets Of The Vine: Breaking Through To Abundance', 'https://images.isbndb.com/covers/97/54/9781576739754.jpg'), + ('039303853X', 'Ship Fever And Other Stories', 'https://images.isbndb.com/covers/85/38/9780393038538.jpg'), + ('0312927746', 'Flowers In The Rain: & Other Stories', 'https://images.isbndb.com/covers/77/45/9780312927745.jpg'), + ('068484897X', 'Chocolate For A Woman''s Spirit: 77 Stories Of Inspiration To Life Your Heart And Sooth Your Soul', 'https://images.isbndb.com/covers/89/76/9780684848976.jpg'), + ('0679449434', 'Joy School', 'https://images.isbndb.com/covers/94/30/9780679449430.jpg'), + ('0842371893', 'The Sister Circle (The Sister Circle Series #1)', 'https://images.isbndb.com/covers/18/96/9780842371896.jpg'), + ('1551664992', 'Lost Highways', 'https://images.isbndb.com/covers/49/96/9781551664996.jpg'), + ('067147071X', 'Mr. Clemens And Mark Twain: A Biography', 'https://images.isbndb.com/covers/07/15/9780671470715.jpg'), + ('0375405356', 'The Best Of Jackson Payne', 'https://images.isbndb.com/covers/53/58/9780375405358.jpg'), + ('0399142983', 'Singing In The Comeback Choir', 'https://images.isbndb.com/covers/29/87/9780399142987.jpg'), + ('0385485212', 'Missing Pieces', 'https://images.isbndb.com/covers/52/10/9780385485210.jpg'), + ('0684845261', 'A DARKER SHADE OF CRIMSON (Ivy League Mysteries)', 'https://images.isbndb.com/covers/52/65/9780684845265.jpg'), + ('0440210178', 'Trial', 'https://images.isbndb.com/covers/01/77/9780440210177.jpg'), + ('055334501X', 'DANCING GIRLS AND OTHER STORIES', 'https://images.isbndb.com/covers/50/18/9780553345018.jpg'), + ('039450965X', 'Robert Lowell: A Biography', 'https://images.isbndb.com/covers/96/55/9780394509655.jpg'), + ('0877900507', 'How To Keep The Heart And Cardio-Vascular Healthy And Fit', 'https://images.isbndb.com/covers/05/04/9780877900504.jpg'), + ('0486411915', 'Modern Artists On Art: Second Enlarged Edition', 'https://images.isbndb.com/covers/19/10/9780486411910.jpg'), + ('0738204048', 'Dark Remedy: The Impact Of Thalidomide And Its Revival As A Vital Medicine', 'https://images.isbndb.com/covers/40/48/9780738204048.jpg'), + ('0425110427', 'Team Yankee', 'https://images.isbndb.com/covers/04/23/9780425110423.jpg'), + ('0060639059', 'Retreat: Time Apart For Silence And Solitude', 'https://images.isbndb.com/covers/90/51/9780060639051.jpg'), + ('0553257439', 'If You Meet The Buddha On The Road, Kill Him!', 'https://images.isbndb.com/covers/74/34/9780553257434.jpg'), + ('0892131187', 'Chant And Be Happy: The Power Of Mantra Meditation (Contemporary Vedic Library Series)', 'https://images.isbndb.com/covers/11/81/9780892131181.jpg'), + ('089256265X', 'Know Your Own Mind', 'https://images.isbndb.com/covers/26/57/9780892562657.jpg'), + ('0671463195', 'The Winds Of War', 'https://images.isbndb.com/covers/31/99/9780671463199.jpg'), + ('0670383295', 'How To Draw The Human Figure: An Anatomical Approach (A Studio Book)', 'https://images.isbndb.com/covers/32/90/9780670383290.jpg'), + ('014046560X', 'How To Draw The Human Head: Techniques And Anatomy', 'https://images.isbndb.com/covers/56/00/9780140465600.jpg'), + ('0823030970', 'Modeling The Figure In Clay: A Sculptor''s Guide To Anatomy', 'https://images.isbndb.com/covers/09/72/9780823030972.jpg'), + ('0425075826', 'Pieces Of Dreams', 'https://images.isbndb.com/covers/58/21/9780425075821.jpg'), + ('0451136039', 'Switch', 'https://images.isbndb.com/covers/60/39/9780451136039.jpg'), + ('0140272801', 'Live-away Dads: Staying A Part Of Your Children''s Lives When They Aren''t A Part Of Your Home', 'https://images.isbndb.com/covers/28/02/9780140272802.jpg'), + ('0425137465', 'The Businessman: A Tale Of Terror', 'https://images.isbndb.com/covers/74/68/9780425137468.jpg'), + ('0425092038', 'To See Your Face Again', 'https://images.isbndb.com/covers/20/33/9780425092033.jpg'), + ('0373484836', 'Cordina''s Royal Family', 'https://images.isbndb.com/covers/48/36/9780373484836.jpg'), + ('0373244487', 'Cordina''s Crown Jewel (Silhouette Special Edition No. 1448)', 'https://images.isbndb.com/covers/44/85/9780373244485.jpg'), + ('0140277293', 'The Inheritance', 'https://images.isbndb.com/covers/72/96/9780140277296.jpg'), + ('0380007002', 'George Sand: A Biography', 'https://images.isbndb.com/covers/70/04/9780380007004.jpg'), + ('0380700999', 'A Woman Of Means (Southern Writers Series)', 'https://images.isbndb.com/covers/09/98/9780380700998.jpg'), + ('0375507477', 'A Song Flung Up To Heaven', 'https://images.isbndb.com/covers/74/72/9780375507472.jpg'), + ('1558701311', 'The First Whole Rehab Catalog: A Comprehensive Guide To Products And Services For The Physically Disadvantaged', 'https://images.isbndb.com/covers/13/11/9781558701311.jpg'), + ('1887911510', 'Z Is For Zorglub (Spirou And Fantasio)', 'https://images.isbndb.com/covers/15/11/9781887911511.jpg'), + ('0670878812', 'Riven Rock', 'https://images.isbndb.com/covers/88/19/9780670878819.jpg'), + ('1564651622', 'A Fishkeeper''s Guide To Fancy Goldfishes', 'https://images.isbndb.com/covers/16/24/9781564651624.jpg'), + ('0553203630', 'The Big Sky', 'https://images.isbndb.com/covers/36/39/9780553203639.jpg'), + ('0394564324', 'Legacy', 'https://images.isbndb.com/covers/43/26/9780394564326.jpg'), + ('0345362500', 'They Went That-A-Way: How The Famous, The Infamous, And The Great Died', 'https://images.isbndb.com/covers/25/06/9780345362506.jpg'), + ('0940159147', 'In Search Of Ghosts: Haunted Places In The Delaware Valley', 'https://images.isbndb.com/covers/91/43/9780940159143.jpg'), + ('0399145427', 'See You On The Radio', 'https://images.isbndb.com/covers/54/21/9780399145421.jpg'), + ('0523421214', 'Torn Lace Curtain', 'https://images.isbndb.com/covers/12/16/9780523421216.jpg'), + ('0609800906', 'Time Management For The Creative Person: Right-Brain Strategies For Stopping Procrastination, Getting Control Of The Clock And Calendar, And Freeing Up Your Time And Your Life', 'https://images.isbndb.com/covers/09/04/9780609800904.jpg'), + ('0515120871', 'Finding The Dream: The Dream Trilogy #3', 'https://images.isbndb.com/covers/08/75/9780515120875.jpg'), + ('0966443004', 'Drug Lord: The Life & Death Of A Mexican Kingpin-A True Story', 'https://images.isbndb.com/covers/30/04/9780966443004.jpg'), + ('0743410602', 'Irresistible (Banning Sisters Trilogy)', 'https://images.isbndb.com/covers/06/01/9780743410601.jpg'), + ('158234096X', 'Five Mile House', 'https://images.isbndb.com/covers/09/68/9781582340968.jpg'), + ('1587210975', 'Loyalty', 'https://images.isbndb.com/covers/09/76/9781587210976.jpg'), + ('0135814219', 'Microeconomics: A Programmed Book', 'https://images.isbndb.com/covers/42/15/9780135814215.jpg'), + ('0140068929', 'One Fell Soup: Or I''m Just A Bug On The Windshield Of Life', 'https://images.isbndb.com/covers/89/24/9780140068924.jpg'), + ('0312045239', 'Anything Can Happen', 'https://images.isbndb.com/covers/52/34/9780312045234.jpg'), + ('0394724372', 'Murder Gone Mad', 'https://images.isbndb.com/covers/43/79/9780394724379.jpg'), + ('0517704803', 'Simisola Autographed Edition', 'https://images.isbndb.com/covers/48/06/9780517704806.jpg'), + ('0689813279', 'Yolonda''s Genius', 'https://images.isbndb.com/covers/32/76/9780689813276.jpg'), + ('1574882295', 'Baseball''s Most Wanted(TM): The Top 10 Book Of The National Pastime''s Outrageous Offenders, Lucky Bounces, And Other Oddities', 'https://images.isbndb.com/covers/22/92/9781574882292.jpg'), + ('0064401758', 'In The Year Of The Boar And Jackie Robinson', 'https://images.isbndb.com/covers/17/53/9780064401753.jpg'), + ('0141310871', 'Rundown', 'https://images.isbndb.com/covers/08/79/9780141310879.jpg'), + ('0156011549', 'Home Run (Harvest Original)', 'https://images.isbndb.com/covers/15/49/9780156011549.jpg'), + ('0879612312', 'Ishi''s Journey: From The Center To The Edge Of The World', 'https://images.isbndb.com/covers/23/13/9780879612313.jpg'), + ('1558176756', 'The Copeland Killings/the Bizarre True Account Of Ray And Faye Copeland,the Oldest Couple Ever Sentenced To Death In America!', 'https://images.isbndb.com/covers/67/51/9781558176751.jpg'), + ('038072099X', 'The Immortals', 'https://images.isbndb.com/covers/09/96/9780380720996.jpg'), + ('0821771167', 'When I Think Of You (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/11/67/9780821771167.jpg'), + ('0689863632', 'Fuzzy Fuzzy Fuzzy!: A Touch, Skritch, & Tickle Book (Boynton Board Books)', 'https://images.isbndb.com/covers/36/39/9780689863639.jpg'), + ('0761319417', 'The Hidden Alphabet (Ala Notable Children''s Books. Younger Readers (Awards))', 'https://images.isbndb.com/covers/94/12/9780761319412.jpg'), + ('0449218201', 'A Perfect Match', 'https://images.isbndb.com/covers/82/04/9780449218204.jpg'), + ('0345417739', 'Passing Remarks', 'https://images.isbndb.com/covers/77/32/9780345417732.jpg'), + ('0671025864', 'Was It Something I Said', 'https://images.isbndb.com/covers/58/61/9780671025861.jpg'), + ('1883523133', 'Silent Words', 'https://images.isbndb.com/covers/31/38/9781883523138.jpg'), + ('0385495056', 'Any Way The Wind Blows', 'https://images.isbndb.com/covers/50/59/9780385495059.jpg'), + ('1556591241', 'Beautiful Signor', 'https://images.isbndb.com/covers/12/42/9781556591242.jpg'), + ('0140057935', 'World''s End And Other Stories', 'https://images.isbndb.com/covers/79/35/9780140057935.jpg'), + ('0515131733', 'The Winston Brothers', 'https://images.isbndb.com/covers/17/34/9780515131734.jpg'), + ('0751531294', 'The Moon''s Our Nearest Neighbour', 'https://images.isbndb.com/covers/12/99/9780751531299.jpg'), + ('0821769391', 'Baby, Baby', 'https://images.isbndb.com/covers/93/93/9780821769393.jpg'), + ('0140093281', 'Not Exactly What I Had In Mind', 'https://images.isbndb.com/covers/32/85/9780140093285.jpg'), + ('0440191238', 'Unforgiven, The', 'https://images.isbndb.com/covers/12/30/9780440191230.jpg'), + ('014007600X', 'Face (Contemporary American Fiction)', 'https://images.isbndb.com/covers/60/04/9780140076004.jpg'), + ('0553578294', 'Smoker', 'https://images.isbndb.com/covers/82/94/9780553578294.jpg'), + ('0669217360', 'Can Mom Live Alone?: Practical Advice On Helping Aging Parents Stay In Their Own Home', 'https://images.isbndb.com/covers/73/60/9780669217360.jpg'), + ('0912238259', 'Manna: Foods Of The Frontier', 'https://images.isbndb.com/covers/82/58/9780912238258.jpg'), + ('0743457463', 'Irish Girls About Town: An Anthology Of Short Stories', 'https://images.isbndb.com/covers/74/60/9780743457460.jpg'), + ('0684844958', 'Necessary Losses: The Loves, Illusions, Dependencies, And Impossible Expectations That All Of Us Have To Give Up In Order To Grow', 'https://images.isbndb.com/covers/49/54/9780684844954.jpg'), + ('0449200981', 'Demon Lover', 'https://images.isbndb.com/covers/09/88/9780449200988.jpg'), + ('0449200361', 'Bear Island', 'https://images.isbndb.com/covers/03/60/9780449200360.jpg'), + ('1902881842', 'The Clowns Of God', 'https://images.isbndb.com/covers/18/43/9781902881843.jpg'), + ('0395281601', 'The Establishment', 'https://images.isbndb.com/covers/16/04/9780395281604.jpg'), + ('0884111431', 'Answer As A Man', 'https://images.isbndb.com/covers/14/36/9780884111436.jpg'), + ('0671203576', 'MURDER TO GO M (An Inner Sanctum Mystery)', 'https://images.isbndb.com/covers/35/73/9780671203573.jpg'), + ('0451163516', 'The Man From St. Petersburg (Signet)', 'https://images.isbndb.com/covers/35/16/9780451163516.jpg'), + ('0075536226', 'Social Policy And Social Services', 'https://images.isbndb.com/covers/62/22/9780075536222.jpg'), + ('044991089X', 'Greenlanders', 'https://images.isbndb.com/covers/08/94/9780449910894.jpg'), + ('0553226347', 'The Amityville Horror: A True Story', 'https://images.isbndb.com/covers/63/48/9780553226348.jpg'), + ('0440121418', 'The English Heiress (The Heiress Series: Book One)', 'https://images.isbndb.com/covers/14/11/9780440121411.jpg'), + ('0831754087', 'LA Cucina: The Complete Book Of Italian Cooking', 'https://images.isbndb.com/covers/40/82/9780831754082.jpg'), + ('0871137771', 'Self-Help Nation: The Long Overdue, Entirely Justified, Delightfully Hostile Guide To The Snake-Oil Peddlers Who Are Sapping Our Nation''s Soul', 'https://images.isbndb.com/covers/77/77/9780871137777.jpg'), + ('038531700X', 'The Loop', 'https://images.isbndb.com/covers/70/09/9780385317009.jpg'), + ('0805055452', 'I Wouldn''t Thank You For A Valentine: Poems For Young Feminists', 'https://images.isbndb.com/covers/54/50/9780805055450.jpg'), + ('0590433644', 'Agnes The Sheep', 'https://images.isbndb.com/covers/36/48/9780590433648.jpg'), + ('1582343497', 'Schott''s Original Miscellany', 'https://images.isbndb.com/covers/34/95/9781582343495.jpg'), + ('1562472305', 'Help!: An Absolutely Indispensable Guide To Life For Girls (American Girl Library)', 'https://images.isbndb.com/covers/23/06/9781562472306.jpg'), + ('0789432331', 'Spanish Phrase Book (Eyewitness Travel Guides)', 'https://images.isbndb.com/covers/23/39/9780789432339.jpg'), + ('1572972939', 'Penn & Teller''s How To Play In Traffic', 'https://images.isbndb.com/covers/29/33/9781572972933.jpg'), + ('0688048315', 'The Web She Weaves', 'https://images.isbndb.com/covers/83/10/9780688048310.jpg'), + ('0449910261', 'Dave Barry''s Complete Guide To Guys', 'https://images.isbndb.com/covers/02/69/9780449910269.jpg'), + ('0394555287', 'Trump : The Art Of The Deal', 'https://images.isbndb.com/covers/52/87/9780394555287.jpg'), + ('0816038465', 'The Encyclopedia Of TV Game Shows', 'https://images.isbndb.com/covers/84/66/9780816038466.jpg'), + ('0002179687', 'Christmas In America: Images Of The Holiday Season By 100 Of America''s Leading Photographers', 'https://images.isbndb.com/covers/96/83/9780002179683.jpg'), + ('0446519782', 'Exclusive', 'https://images.isbndb.com/covers/97/86/9780446519786.jpg'), + ('0449208184', 'Ladies', 'https://images.isbndb.com/covers/81/82/9780449208182.jpg'), + ('0140150447', 'The Portable Milton (Portable Library)', 'https://images.isbndb.com/covers/04/45/9780140150445.jpg'), + ('0064401871', 'A Little Princess', 'https://images.isbndb.com/covers/18/76/9780064401876.jpg'), + ('1579620604', 'Bloodlines', 'https://images.isbndb.com/covers/06/08/9781579620608.jpg'), + ('039914630X', 'Saving Elijah', 'https://images.isbndb.com/covers/63/05/9780399146305.jpg'), + ('0972022104', 'The Official Hottie Hunting Field Guide', 'https://images.isbndb.com/covers/21/01/9780972022101.jpg'), + ('0826321143', 'CrashBoomLove: A Novel In Verse (Mary Burritt Christiansen Poetry)', 'https://images.isbndb.com/covers/11/45/9780826321145.jpg'), + ('1931243328', 'Book Of Reincarnation (Green Integer)', 'https://images.isbndb.com/covers/33/22/9781931243322.jpg'), + ('0380759500', 'Firefly', 'https://images.isbndb.com/covers/95/07/9780380759507.jpg'), + ('0671722778', 'Merchant Of Venice (Folger Shakespeare Library)', 'https://images.isbndb.com/covers/27/77/9780671722777.jpg'), + ('0671722646', 'Henry IV Part 2', 'https://images.isbndb.com/covers/26/47/9780671722647.jpg'), + ('0970310501', 'On Hardened Ground', 'https://images.isbndb.com/covers/05/07/9780970310507.jpg'), + ('0060910496', 'The Castle Story (Harper Colophon Books)', 'https://images.isbndb.com/covers/04/95/9780060910495.jpg'), + ('0312929277', 'Life''s Little Destruction Book: Everyday Rescue For Beauty, Fashion, Relationships, And Life', 'https://images.isbndb.com/covers/92/75/9780312929275.jpg'), + ('0809434903', 'Cleaning', 'https://images.isbndb.com/covers/49/09/9780809434909.jpg'), + ('006091601X', 'Dateline Soweto: Travels With Black South African Reporters', 'https://images.isbndb.com/covers/60/15/9780060916015.jpg'), + ('0314040536', 'Mediation: Principles And Practice', 'https://images.isbndb.com/covers/05/34/9780314040534.jpg'), + ('0314260439', 'Constitutional Law In A Nutshell (Hornbooks)', 'https://images.isbndb.com/covers/04/37/9780314260437.jpg'), + ('0393000699', 'The House By The Sea', 'https://images.isbndb.com/covers/06/96/9780393000696.jpg'), + ('1851680659', 'On Being A Teacher', 'https://images.isbndb.com/covers/06/58/9781851680658.jpg'), + ('0316547336', 'Merry Christmas, Baby: Holiday Music From Bing To Sting', 'https://images.isbndb.com/covers/73/38/9780316547338.jpg'), + ('0415908078', 'Teaching To Transgress', 'https://images.isbndb.com/covers/80/78/9780415908078.jpg'), + ('0395674379', 'Gathering Of Pearls', 'https://images.isbndb.com/covers/43/76/9780395674376.jpg'), + ('0446394572', 'Hug Dancing', 'https://images.isbndb.com/covers/45/74/9780446394574.jpg'), + ('0020518706', 'The Sun Also Rises (Scribner Classics)', 'https://images.isbndb.com/covers/87/09/9780020518709.jpg'), + ('0446513644', 'Great American Cakes', 'https://images.isbndb.com/covers/36/47/9780446513647.jpg'), + ('1562477587', 'Hoofbeats Of Danger (American Girl History Mysteries)', 'https://images.isbndb.com/covers/75/85/9781562477585.jpg'), + ('039300158X', 'Letters To A Young Poet', 'https://images.isbndb.com/covers/15/87/9780393001587.jpg'), + ('0802773877', 'Chucaro: Wild Pony Of The Pampa (The Newbery Honor Roll)', 'https://images.isbndb.com/covers/38/76/9780802773876.jpg'), + ('0805006923', 'Fort Bragg And Other Points South: Poems', 'https://images.isbndb.com/covers/69/26/9780805006926.jpg'), + ('0385192401', 'Growing Up Catholic: An Infinitely Funny Guide For The Faithful, The Fallen, And Everyone In-Between', 'https://images.isbndb.com/covers/24/08/9780385192408.jpg'), + ('0767903595', 'Clear Your Clutter With Feng Shui', 'https://images.isbndb.com/covers/35/92/9780767903592.jpg'), + ('0140119698', 'A Theft', 'https://images.isbndb.com/covers/96/95/9780140119695.jpg'), + ('0894803220', 'Golfing', 'https://images.isbndb.com/covers/32/22/9780894803222.jpg'), + ('0962341053', 'Transformed By Love', 'https://images.isbndb.com/covers/10/52/9780962341052.jpg'), + ('0891093699', 'Caring Without Wearing', 'https://images.isbndb.com/covers/36/95/9780891093695.jpg'), + ('0941483096', 'Last September', 'https://images.isbndb.com/covers/30/94/9780941483094.jpg'), + ('0886875269', 'True And Tacky: Weird Stories From The Worlds Newswires', 'https://images.isbndb.com/covers/52/68/9780886875268.jpg'), + ('0963557572', 'How To Hire A Nanny: A Complete Step By Step Guide For Parents', 'https://images.isbndb.com/covers/75/75/9780963557575.jpg'), + ('0876091729', 'Minority Rights In Europe (Chatham House Papers)', 'https://images.isbndb.com/covers/17/22/9780876091722.jpg'), + ('0439135230', 'Samir And Yonatan', 'https://images.isbndb.com/covers/52/38/9780439135238.jpg'), + ('0446671223', 'The Celestine Prophecy: An Experiential Guide', 'https://images.isbndb.com/covers/12/24/9780446671224.jpg'), + ('0937295132', 'Samantha Learns A Lesson (American Girl)', 'https://images.isbndb.com/covers/51/37/9780937295137.jpg'), + ('0345349040', 'Ballad Of The False Messiah', 'https://images.isbndb.com/covers/90/40/9780345349040.jpg'), + ('0060972947', 'Waiting For Prime Time: The Women Of Television News', 'https://images.isbndb.com/covers/29/43/9780060972943.jpg'), + ('0446611751', 'The Nine Month Plan', 'https://images.isbndb.com/covers/17/56/9780446611756.jpg'), + ('0486277852', 'O Pioneers! (Dover Thrift Editions)', 'https://images.isbndb.com/covers/78/51/9780486277851.jpg'), + ('1561384798', 'Philadelphia Magazine''s Best Of Philly: The Ultimate Guide : Where To Find The Best Food, Shopping, Culture, And Fun In The Delaware Valley', 'https://images.isbndb.com/covers/47/92/9781561384792.jpg'), + ('1566395305', 'Hikes Around Philadelphia', 'https://images.isbndb.com/covers/53/04/9781566395304.jpg'), + ('0895297310', 'Chromium Picolinate', 'https://images.isbndb.com/covers/73/10/9780895297310.jpg'), + ('0934878420', 'The Book Of Kisses', 'https://images.isbndb.com/covers/84/25/9780934878425.jpg'), + ('1592799175', 'Agents And Adepts', 'https://images.isbndb.com/covers/91/76/9781592799176.jpg'), + ('0486240304', 'Small Patchwork Projects With Step-by-Step Instructions And Full-Size Templates', 'https://images.isbndb.com/covers/03/05/9780486240305.jpg'), + ('1573221252', 'The Courage To Be Rich: Creating A Life Of Material And Spiritual Abundance', 'https://images.isbndb.com/covers/12/52/9781573221252.jpg'), + ('0066211484', 'Another Planet: A Year In The Life Of A Suburban High School', 'https://images.isbndb.com/covers/14/80/9780066211480.jpg'), + ('1575842793', 'New Baby''S Prayers (First Bible Collection)', 'https://images.isbndb.com/covers/27/90/9781575842790.jpg'), + ('094463432X', 'The Journey Of Becoming A Mother: Tools For A New Mother''s Emotional Growth & Development', 'https://images.isbndb.com/covers/43/25/9780944634325.jpg'), + ('1576730409', 'When Mothers Pray: Bringing God''s Power And Blessing To Your Children''s Lives', 'https://images.isbndb.com/covers/04/09/9781576730409.jpg'), + ('0812921828', 'Catching My Breath: An Asthmatic Explores His Illness', 'https://images.isbndb.com/covers/18/23/9780812921823.jpg'), + ('0714827363', 'A History Of The Theater (Performing Arts)', 'https://images.isbndb.com/covers/73/60/9780714827360.jpg'), + ('1576732533', 'The Church: What We Are Meant To Be', 'https://images.isbndb.com/covers/25/33/9781576732533.jpg'), + ('0830724923', 'Sisters & Brothers Forever', 'https://images.isbndb.com/covers/49/25/9780830724925.jpg'), + ('037602478X', 'Low-Fat Mexican Cook Book: Recipes For Healthy Eating (Low Fat Ways To Cook)', 'https://images.isbndb.com/covers/47/87/9780376024787.jpg'), + ('0805065989', 'The Friends Of Eddie Coyle: A Novel (John MacRae Books)', 'https://images.isbndb.com/covers/59/85/9780805065985.jpg'), + ('0743218035', 'The Keepers Of Truth: A Novel', 'https://images.isbndb.com/covers/80/30/9780743218030.jpg'), + ('0874173515', 'Ostrich', 'https://images.isbndb.com/covers/35/12/9780874173512.jpg'), + ('1558502874', 'Knock ''em Dead: The Ultimate Job Seeker''s Handbook', 'https://images.isbndb.com/covers/28/71/9781558502871.jpg'), + ('1558500502', 'Cover Letters That Knock ''Em Dead', 'https://images.isbndb.com/covers/05/01/9781558500501.jpg'), + ('0135085322', 'Mid-Career Job Hunting: Official Handbook Of The Forty Plus Club', 'https://images.isbndb.com/covers/53/25/9780135085325.jpg'), + ('0312265611', 'Bloodroot: A Novel', 'https://images.isbndb.com/covers/56/18/9780312265618.jpg'), + ('0395979366', 'Night Hoops', 'https://images.isbndb.com/covers/93/65/9780395979365.jpg'), + ('0312268033', 'Mr. Mee', 'https://images.isbndb.com/covers/80/39/9780312268039.jpg'), + ('0684850796', 'Inspired Sleep: A Novel', 'https://images.isbndb.com/covers/07/95/9780684850795.jpg'), + ('088162280X', 'Teddy Bear Knits', 'https://images.isbndb.com/covers/28/05/9780881622805.jpg'), + ('0688165273', 'Wild Horses: A Novel', 'https://images.isbndb.com/covers/52/77/9780688165277.jpg'), + ('0380975440', 'Mosaic', 'https://images.isbndb.com/covers/54/40/9780380975440.jpg'), + ('0395430976', 'The Fourth Codex', 'https://images.isbndb.com/covers/09/72/9780395430972.jpg'), + ('0785272399', 'A Woman''s Journey To The Heart Of God', 'https://images.isbndb.com/covers/23/97/9780785272397.jpg'), + ('1841950955', 'Misadventures', 'https://images.isbndb.com/covers/09/52/9781841950952.jpg'), + ('0385141041', 'A Voice From The Living', 'https://images.isbndb.com/covers/10/48/9780385141048.jpg'), + ('0967370167', 'Ella Minnow Pea: A Progressively Lipogrammatic Epistolary Fable', 'https://images.isbndb.com/covers/01/63/9780967370163.jpg'), + ('0785268766', 'Rise Above: God Can Set You Free From Your Weight Problems Forever', 'https://images.isbndb.com/covers/87/65/9780785268765.jpg'), + ('0312263015', 'Capital Queers: An Alex Reynolds Mystery (Alex Reynolds Mysteries)', 'https://images.isbndb.com/covers/30/10/9780312263010.jpg'), + ('0805056211', 'Biting The Moon', 'https://images.isbndb.com/covers/62/11/9780805056211.jpg'), + ('0380975920', 'VIOLET HOUR H', 'https://images.isbndb.com/covers/59/21/9780380975921.jpg'), + ('0446524484', 'A Little Love', 'https://images.isbndb.com/covers/44/83/9780446524483.jpg'), + ('0446519901', 'The Last Best Hope (Matthew Hope Mysteries)', 'https://images.isbndb.com/covers/99/08/9780446519908.jpg'), + ('0451168364', 'Nectar In A Sieve (Signet)', 'https://images.isbndb.com/covers/83/68/9780451168368.jpg'), + ('0877735441', 'Seven Taoist Masters: A Folk Novel Of China', 'https://images.isbndb.com/covers/54/41/9780877735441.jpg'), + ('0961475439', 'The Depression Book: Depression As An Opportunity For Spiritual Practice', 'https://images.isbndb.com/covers/54/37/9780961475437.jpg'), + ('0963625543', 'The Key: And The Name Of The Key Is Willingness', 'https://images.isbndb.com/covers/55/40/9780963625540.jpg'), + ('1559722754', 'The Sewing Circle: Hollywood''s Greatest Secret: Female Stars Who Loved Other Women', 'https://images.isbndb.com/covers/27/59/9781559722759.jpg'), + ('0807009539', 'Courage To Hope: From Black Suffering To Human Redemption', 'https://images.isbndb.com/covers/95/36/9780807009536.jpg'), + ('0451526708', 'Uncle Tom''s Cabin: Or, Life Among The Lowly (Signet Classics)', 'https://images.isbndb.com/covers/67/00/9780451526700.jpg'), + ('0310217067', 'Do Not Lose Heart: Meditations Of Encouragement And Comfort', 'https://images.isbndb.com/covers/70/60/9780310217060.jpg'), + ('0875964818', 'Food Smart: Savory Strategies To Defy Disease (Women''s Edge Health Enhancement Guides)', 'https://images.isbndb.com/covers/48/12/9780875964812.jpg'), + ('047116917X', 'Health Psychology: Biopsychosocial Interactions (3rd Edition)', 'https://images.isbndb.com/covers/91/78/9780471169178.jpg'), + ('0786866764', 'The Temple Of Optimism', 'https://images.isbndb.com/covers/67/62/9780786866762.jpg'), + ('0060805420', 'Murder At The Flea Club', 'https://images.isbndb.com/covers/54/25/9780060805425.jpg'), + ('0156027860', 'The Company She Keeps', 'https://images.isbndb.com/covers/78/61/9780156027861.jpg'), + ('0689856741', 'The Call Of The Wild (Aladdin Classics)', 'https://images.isbndb.com/covers/67/47/9780689856747.jpg'), + ('0671677217', 'The Way Of The Sword: Musashi Book 3', 'https://images.isbndb.com/covers/72/13/9780671677213.jpg'), + ('0671677209', 'The Art Of War: Musashi Book 2', 'https://images.isbndb.com/covers/72/06/9780671677206.jpg'), + ('0802754309', 'Suicide Most Foul', 'https://images.isbndb.com/covers/43/01/9780802754301.jpg'), + ('0385311044', 'Daybreak', 'https://images.isbndb.com/covers/10/45/9780385311045.jpg'), + ('0472060953', 'The March Up Country: A Translation Of Xenophon''s Anabasis (Ann Arbor Paperbacks)', 'https://images.isbndb.com/covers/09/55/9780472060955.jpg'), + ('0743205626', 'Maestro : Greenspan''s Fed And The American Boom', 'https://images.isbndb.com/covers/56/27/9780743205627.jpg'), + ('0671524097', 'SHARP EDGES', 'https://images.isbndb.com/covers/40/98/9780671524098.jpg'), + ('0393009165', 'I Knew A Phoenix: Sketches For An Autobiography', 'https://images.isbndb.com/covers/91/63/9780393009163.jpg'), + ('0471496421', 'ECFO: Sustaining Value In The New Corporation', 'https://images.isbndb.com/covers/64/27/9780471496427.jpg'), + ('0044409001', 'Women, Sex And Rock ''n'' Roll: In Their Own Words (A Pandora Book)', 'https://images.isbndb.com/covers/90/07/9780044409007.jpg'), + ('0553578251', 'Night Work (Kate Martinelli Mysteries)', 'https://images.isbndb.com/covers/82/56/9780553578256.jpg'), + ('0679741917', 'The Immoralist', 'https://images.isbndb.com/covers/19/16/9780679741916.jpg'), + ('0312253419', 'America: A Jake Grafton Novel', 'https://images.isbndb.com/covers/34/17/9780312253417.jpg'), + ('006019832X', 'Hope To Die (Matthew Scudder Mysteries)', 'https://images.isbndb.com/covers/83/29/9780060198329.jpg'), + ('089480619X', 'The Book Of Questions: Love & Sex', 'https://images.isbndb.com/covers/61/93/9780894806193.jpg'), + ('0679764399', 'Winchell: Gossip, Power, And The Culture Of Celebrity', 'https://images.isbndb.com/covers/43/97/9780679764397.jpg'), + ('0520088794', 'The Women''s Companion To International Film', 'https://images.isbndb.com/covers/87/95/9780520088795.jpg'), + ('0060932139', 'The Unbearable Lightness Of Being', 'https://images.isbndb.com/covers/21/38/9780060932138.jpg'), + ('0449912337', 'I''ll Always Have Paris', 'https://images.isbndb.com/covers/23/31/9780449912331.jpg'), + ('0671734598', 'The King Is Dead', 'https://images.isbndb.com/covers/45/96/9780671734596.jpg'), + ('031286129X', 'Eden''s Gate', 'https://images.isbndb.com/covers/12/92/9780312861292.jpg'), + ('0962295701', 'Beyond IBM: Leadership Marketing And Finance For The 1990s', 'https://images.isbndb.com/covers/57/06/9780962295706.jpg'), + ('158234311X', 'Ghosty Men: The Strange But True Story Of The Collyer Brothers And My Uncle Arthur, New York''s Greatest Hoarders (An Urban Historical)', 'https://images.isbndb.com/covers/31/12/9781582343112.jpg'), + ('0679870423', 'Jacob Two-Two & The Dinosaur', 'https://images.isbndb.com/covers/04/25/9780679870425.jpg'), + ('0553279114', 'Waiting For The Rain', 'https://images.isbndb.com/covers/91/15/9780553279115.jpg'), + ('0345345053', 'A Sand County Almanac (Outdoor Essays & Reflections)', 'https://images.isbndb.com/covers/50/59/9780345345059.jpg'), + ('0671028294', 'Miami Twilight', 'https://images.isbndb.com/covers/82/99/9780671028299.jpg'), + ('0961000805', 'Ghost Stories Of Berks County (Ghost Stories Of Berks County (Pennsylvania))', 'https://images.isbndb.com/covers/08/06/9780961000806.jpg'), + ('0316105163', 'Vic Braden''s Mental Tennis: How To Psych Yourself To A Winning Game', 'https://images.isbndb.com/covers/51/63/9780316105163.jpg'), + ('0376024852', 'Low Fat Italian Cookbook: Recipes For Healthy Eating (Low Fat Ways To Cook)', 'https://images.isbndb.com/covers/48/55/9780376024855.jpg'), + ('0376024763', 'Low-Fat Stir Fry Cookbook: Recipes For Healthy Eating (Low Fat Ways To Cook)', 'https://images.isbndb.com/covers/47/63/9780376024763.jpg'), + ('0425064506', 'Summer', 'https://images.isbndb.com/covers/45/04/9780425064504.jpg'), + ('1929156006', 'Rebel Without Applause : Tales From The Castro Renaissance', 'https://images.isbndb.com/covers/60/09/9781929156009.jpg'), + ('0553268724', 'Strange Toys', 'https://images.isbndb.com/covers/87/20/9780553268720.jpg'), + ('1582431264', 'Breakfast With Scot', 'https://images.isbndb.com/covers/12/60/9781582431260.jpg'), + ('1883642442', 'Hero', 'https://images.isbndb.com/covers/24/40/9781883642440.jpg'), + ('1573221686', 'Laura Blundy', 'https://images.isbndb.com/covers/16/89/9781573221689.jpg'), + ('0395984165', 'The Fall Of The Year (.)', 'https://images.isbndb.com/covers/41/61/9780395984161.jpg'), + ('0805066667', 'Afterimage', 'https://images.isbndb.com/covers/66/61/9780805066661.jpg'), + ('0590465880', 'Daniel''s Story', 'https://images.isbndb.com/covers/58/85/9780590465885.jpg'), + ('039594113X', 'Hunts In Dreams', 'https://images.isbndb.com/covers/11/33/9780395941133.jpg'), + ('0060282320', 'The Color Of My Words', 'https://images.isbndb.com/covers/23/25/9780060282325.jpg'), + ('0312876610', 'Vivienne', 'https://images.isbndb.com/covers/66/16/9780312876616.jpg'), + ('0060194170', 'About The Author', 'https://images.isbndb.com/covers/41/78/9780060194178.jpg'), + ('0385492979', 'In The Presence Of Horses', 'https://images.isbndb.com/covers/29/73/9780385492973.jpg'), + ('0395945151', 'Like Normal People', 'https://images.isbndb.com/covers/51/55/9780395945155.jpg'), + ('0375402721', 'Original Bliss', 'https://images.isbndb.com/covers/27/22/9780375402722.jpg'), + ('0316472409', 'Sonny Liston Was A Friend Of Mine: Stories', 'https://images.isbndb.com/covers/24/01/9780316472401.jpg'), + ('0944072917', 'Soon: Tales From Hospice', 'https://images.isbndb.com/covers/29/12/9780944072912.jpg'), + ('1582430225', 'First Snow On Fuji', 'https://images.isbndb.com/covers/02/25/9781582430225.jpg'), + ('0385478194', 'Glass, Paper, Beans: Revelations On The Nature And Value Of Ordinary Things', 'https://images.isbndb.com/covers/81/99/9780385478199.jpg'), + ('0060926066', 'Animal Happiness', 'https://images.isbndb.com/covers/60/69/9780060926069.jpg'), + ('0865342695', 'Beyond The Brooklyn Bridge', 'https://images.isbndb.com/covers/26/99/9780865342699.jpg'), + ('0380762951', 'Just Desserts (Bed-And-Breakfast Mysteries)', 'https://images.isbndb.com/covers/29/58/9780380762958.jpg'), + ('0505525054', 'Lord Of The Dark Sun', 'https://images.isbndb.com/covers/50/55/9780505525055.jpg'), + ('0044409575', 'No Angels: Women Who Commit Violence', 'https://images.isbndb.com/covers/95/71/9780044409571.jpg'), + ('1559360739', 'Angels In America, Part Two: Perestroika', 'https://images.isbndb.com/covers/07/39/9781559360739.jpg'), + ('1559360615', 'Angels In America, Part One: Millennium Approaches', 'https://images.isbndb.com/covers/06/16/9781559360616.jpg'), + ('0679722068', 'Death In Venice: And Seven Other Stories', 'https://images.isbndb.com/covers/20/69/9780679722069.jpg'), + ('038070336X', 'Terrible Tide', 'https://images.isbndb.com/covers/33/64/9780380703364.jpg'), + ('0810980991', 'Maasai', 'https://images.isbndb.com/covers/09/90/9780810980990.jpg'), + ('0448192187', 'Animals And Where They Live (Windows On The World)', 'https://images.isbndb.com/covers/21/85/9780448192185.jpg'), + ('0141312181', 'A Face In Every Window', 'https://images.isbndb.com/covers/21/87/9780141312187.jpg'), + ('0706431642', 'Bio Of A Space Tyrant', 'https://images.isbndb.com/covers/16/43/9780706431643.jpg'), + ('0671019961', 'Public Enemies: The Host Of America''s Most Wanted Targets The Nation''s Most Notorious Criminals', 'https://images.isbndb.com/covers/99/69/9780671019969.jpg'), + ('0449217493', 'Caribbean', 'https://images.isbndb.com/covers/74/98/9780449217498.jpg'), + ('0449214192', 'Centennial', 'https://images.isbndb.com/covers/41/90/9780449214190.jpg'), + ('1878580450', 'The Gothic Twilight: Stories', 'https://images.isbndb.com/covers/04/50/9781878580450.jpg'), + ('0679437037', 'Education On The Edge Of Possibility', 'https://images.isbndb.com/covers/70/31/9780679437031.jpg'), + ('0375707409', 'A Boy''s Own Story', 'https://images.isbndb.com/covers/74/07/9780375707407.jpg'), + ('0471155454', 'Bloomberg By Bloomberg', 'https://images.isbndb.com/covers/54/54/9780471155454.jpg'), + ('0446605964', 'Never Street (The Amos Walker Series #12)', 'https://images.isbndb.com/covers/59/60/9780446605960.jpg'), + ('0374309302', 'The Boy In The Burning House', 'https://images.isbndb.com/covers/93/05/9780374309305.jpg'), + ('0449206513', 'The Bridges At Toko-Ri', 'https://images.isbndb.com/covers/65/15/9780449206515.jpg'), + ('037581177X', 'Anne Frank In The World', 'https://images.isbndb.com/covers/17/77/9780375811777.jpg'), + ('0385480334', 'The Diary Of A Young Girl', 'https://images.isbndb.com/covers/03/38/9780385480338.jpg'), + ('0061092614', 'Finding Moon', 'https://images.isbndb.com/covers/26/19/9780061092619.jpg'), + ('0451133129', 'Growing Up (Signet)', 'https://images.isbndb.com/covers/31/20/9780451133120.jpg'), + ('0684858266', 'Black Cabs', 'https://images.isbndb.com/covers/82/65/9780684858265.jpg'), + ('0449244741', 'The Covenant', 'https://images.isbndb.com/covers/47/46/9780449244746.jpg'), + ('0449238598', 'Source', 'https://images.isbndb.com/covers/85/92/9780449238592.jpg'), + ('0140093451', 'Natural Enemy (Penguin Crime Fiction)', 'https://images.isbndb.com/covers/34/52/9780140093452.jpg'), + ('0317532901', 'Machine Dreams', 'https://images.isbndb.com/covers/29/06/9780317532906.jpg'), + ('0380755408', 'The Grub-And-Stakers Spin A Yarn', 'https://images.isbndb.com/covers/54/00/9780380755400.jpg'), + ('067168079X', 'Smokescreen', 'https://images.isbndb.com/covers/07/94/9780671680794.jpg'), + ('0449147452', 'All Hallows'' Evil (A Susan Henshaw Mystery #4)', 'https://images.isbndb.com/covers/74/50/9780449147450.jpg'), + ('0380704056', 'Murder At The Palace', 'https://images.isbndb.com/covers/40/57/9780380704057.jpg'), + ('038070529X', 'Murder In The Rose Garden', 'https://images.isbndb.com/covers/52/90/9780380705290.jpg'), + ('0879052686', 'Walks In Gertrude Stein''s Paris', 'https://images.isbndb.com/covers/26/83/9780879052683.jpg'), + ('0449234940', 'Centennial', 'https://images.isbndb.com/covers/49/45/9780449234945.jpg'), + ('0671680765', 'Bone-Crack', 'https://images.isbndb.com/covers/07/63/9780671680763.jpg'), + ('042518904X', 'Widow''s Walk (Spenser)', 'https://images.isbndb.com/covers/90/47/9780425189047.jpg'), + ('0553284134', 'Journey Into Madness', 'https://images.isbndb.com/covers/41/33/9780553284133.jpg'), + ('0451166876', 'Lust Killer: Updated Edition (Signet True Crime)', 'https://images.isbndb.com/covers/68/76/9780451166876.jpg'), + ('0446670332', 'Touched By Angels', 'https://images.isbndb.com/covers/03/33/9780446670333.jpg'), + ('0812527259', 'Black Wind', 'https://images.isbndb.com/covers/72/54/9780812527254.jpg'), + ('0440212049', 'Threat Case', 'https://images.isbndb.com/covers/20/41/9780440212041.jpg'), + ('0553199552', 'Trevayne', 'https://images.isbndb.com/covers/95/50/9780553199550.jpg'), + ('0449220923', 'Creatures Of The Kingdom', 'https://images.isbndb.com/covers/09/24/9780449220924.jpg'), + ('0375758771', 'The Glass Palace: A Novel', 'https://images.isbndb.com/covers/87/75/9780375758775.jpg'), + ('0899669611', 'The Green Hat', 'https://images.isbndb.com/covers/96/18/9780899669618.jpg'), + ('0060924799', 'More Tales Of The City (Tales Of The City, Volume Two)', 'https://images.isbndb.com/covers/47/99/9780060924799.jpg'), + ('0399122702', 'Born With The Century', 'https://images.isbndb.com/covers/27/05/9780399122705.jpg'), + ('0449210928', 'Texas', 'https://images.isbndb.com/covers/09/25/9780449210925.jpg'), + ('0812534379', 'My Lost Mexico', 'https://images.isbndb.com/covers/43/75/9780812534375.jpg'), + ('0449239594', 'Caravans 1', 'https://images.isbndb.com/covers/95/99/9780449239599.jpg'), + ('0140036636', 'The Open House', 'https://images.isbndb.com/covers/66/33/9780140036633.jpg'), + ('0553272934', 'Hunger Of Memory : The Education Of Richard Rodriguez', 'https://images.isbndb.com/covers/29/32/9780553272932.jpg'), + ('0451409655', 'Mob Over Miami', 'https://images.isbndb.com/covers/96/52/9780451409652.jpg'), + ('1555972403', 'Otherwise: New And Selected Poems', 'https://images.isbndb.com/covers/24/00/9781555972400.jpg'), + ('0521425042', 'The Merchant Of Venice (Cambridge School Shakespeare)', 'https://images.isbndb.com/covers/50/49/9780521425049.jpg'), + ('0345343727', 'Familiar Spirits (Elizabethan Mystery)', 'https://images.isbndb.com/covers/37/27/9780345343727.jpg'), + ('0804113645', 'The Daughters Of Cain', 'https://images.isbndb.com/covers/36/49/9780804113649.jpg'), + ('0671664824', 'Bethany''s Sin', 'https://images.isbndb.com/covers/48/24/9780671664824.jpg'), + ('038072121X', 'In The Electric Mist With Confederate Dead', 'https://images.isbndb.com/covers/12/14/9780380721214.jpg'), + ('067172018X', 'Falkenberg''s Legion', 'https://images.isbndb.com/covers/01/86/9780671720186.jpg'), + ('0345388747', 'Stricken Field (A Handful Of Men, Part 3)', 'https://images.isbndb.com/covers/87/42/9780345388742.jpg'), + ('055329010X', 'UNDER THE EYE OF GOD', 'https://images.isbndb.com/covers/01/03/9780553290103.jpg'), + ('0553262815', 'River Of Time, The', 'https://images.isbndb.com/covers/28/10/9780553262810.jpg'), + ('0812502701', 'The Boat Of A Million Years', 'https://images.isbndb.com/covers/27/01/9780812502701.jpg'), + ('0786705337', 'The Mammoth Book Of Comic Fantasy', 'https://images.isbndb.com/covers/53/37/9780786705337.jpg'), + ('0812532236', 'Privateers', 'https://images.isbndb.com/covers/22/34/9780812532234.jpg'), + ('0425086577', 'Exiles Trilogy', 'https://images.isbndb.com/covers/65/75/9780425086575.jpg'), + ('0812532082', 'Test Of Fire', 'https://images.isbndb.com/covers/20/81/9780812532081.jpg'), + ('0812532368', 'Voyagers III: Star Brothers (Voyagers (Tor))', 'https://images.isbndb.com/covers/23/64/9780812532364.jpg'), + ('0812500768', 'Voyagers', 'https://images.isbndb.com/covers/07/69/9780812500769.jpg'), + ('0553249355', 'West Of Eden (Eden, No. 1)', 'https://images.isbndb.com/covers/93/54/9780553249354.jpg'), + ('0553277006', 'Return To Eden', 'https://images.isbndb.com/covers/70/05/9780553277005.jpg'), + ('0441007910', 'Phule Me Twice (Phule''s Company)', 'https://images.isbndb.com/covers/79/12/9780441007912.jpg'), + ('0441132456', 'Cyber Way', 'https://images.isbndb.com/covers/24/54/9780441132454.jpg'), + ('0446341819', 'Spellsinger #02: The Hour Of The Gate', 'https://images.isbndb.com/covers/18/13/9780446341813.jpg'), + ('0671746340', 'The Activist''s Almanac: The Concerned Citizen''s Guide To The Leading Advocacy Organizations In America', 'https://images.isbndb.com/covers/63/46/9780671746346.jpg'), + ('0671899007', 'Warriors Don''t Cry', 'https://images.isbndb.com/covers/90/04/9780671899004.jpg'), + ('1878067265', 'In Love And In Danger: A Teen''s Guide To Breaking Free Of Abusive Relationships', 'https://images.isbndb.com/covers/72/65/9781878067265.jpg'), + ('0553266640', 'Across The Sea Of Suns', 'https://images.isbndb.com/covers/66/41/9780553266641.jpg'), + ('0553290053', 'Against Infinity', 'https://images.isbndb.com/covers/00/59/9780553290059.jpg'), + ('0380790521', 'Cosm', 'https://images.isbndb.com/covers/05/24/9780380790524.jpg'), + ('0553573322', 'Sailing Bright Eternity', 'https://images.isbndb.com/covers/33/29/9780553573329.jpg'), + ('0345326008', 'The Wounded Land', 'https://images.isbndb.com/covers/60/03/9780345326003.jpg'), + ('0273637371', 'High Finance In The Euro-Zone: Competing In The New European Capital Market', 'https://images.isbndb.com/covers/73/70/9780273637370.jpg'), + ('087584877X', 'Blown To Bits: How The New Economics Of Information Transforms Strategy', 'https://images.isbndb.com/covers/87/78/9780875848778.jpg'), + ('0553298178', 'The Garden Of Rama', 'https://images.isbndb.com/covers/81/78/9780553298178.jpg'), + ('0812520629', 'The Last Aerie (Vampire World)', 'https://images.isbndb.com/covers/06/20/9780812520620.jpg'), + ('0446350982', 'Presumed Innocent', 'https://images.isbndb.com/covers/09/83/9780446350983.jpg'), + ('0590419668', 'Othello (Point Signature Editions)', 'https://images.isbndb.com/covers/96/66/9780590419666.jpg'), + ('0886774926', 'Relic Of Empire (Forbidden Borders #2)', 'https://images.isbndb.com/covers/49/29/9780886774929.jpg'), + ('039472366X', 'WHITE MISCHIEF', 'https://images.isbndb.com/covers/36/62/9780394723662.jpg'), + ('0671720791', 'Man-Kzin Wars IV', 'https://images.isbndb.com/covers/07/97/9780671720797.jpg'), + ('0449206505', 'Return To Paradise', 'https://images.isbndb.com/covers/65/08/9780449206508.jpg'), + ('0449214206', 'The Covenant', 'https://images.isbndb.com/covers/42/06/9780449214206.jpg'), + ('0812513010', 'The Eagle And The Raven', 'https://images.isbndb.com/covers/30/11/9780812513011.jpg'), + ('0684859017', 'South Mountain Road: A Daughter''s Journey Of Discovery', 'https://images.isbndb.com/covers/90/19/9780684859019.jpg'), + ('0671654047', 'Ardneh''s World (Empire Of The East, Vol 3)', 'https://images.isbndb.com/covers/40/47/9780671654047.jpg'), + ('0394450779', 'The Voice Of Asia', 'https://images.isbndb.com/covers/07/73/9780394450773.jpg'), + ('0743434870', 'Friday The Rabbi Slept Late (Rabbi Small Mystery)', 'https://images.isbndb.com/covers/48/74/9780743434874.jpg'), + ('1850180490', 'The Eastenders, The: Good Intentions Bk. 3', 'https://images.isbndb.com/covers/04/94/9781850180494.jpg'), + ('0425187403', 'Body Of Intuition', 'https://images.isbndb.com/covers/74/01/9780425187401.jpg'), + ('0449232042', 'SPORTS IN AMERICA', 'https://images.isbndb.com/covers/20/40/9780449232040.jpg'), + ('0679781420', 'Down These Mean Streets', 'https://images.isbndb.com/covers/14/24/9780679781424.jpg'), + ('0684864185', 'Manchild In The Promised Land', 'https://images.isbndb.com/covers/41/81/9780684864181.jpg'), + ('034535933X', 'The Saracen: The Holy War', 'https://images.isbndb.com/covers/93/39/9780345359339.jpg'), + ('0345373480', 'Warrior', 'https://images.isbndb.com/covers/34/89/9780345373489.jpg'), + ('0671809385', 'Plague Ship', 'https://images.isbndb.com/covers/93/86/9780671809386.jpg'), + ('0312924291', 'The Westies: Inside New York''s Irish Mob', 'https://images.isbndb.com/covers/42/94/9780312924294.jpg'), + ('1565846567', 'Hard Times: An Oral History Of The Great Depression', 'https://images.isbndb.com/covers/65/62/9781565846562.jpg'), + ('0061003425', 'The Call Of The Canyon', 'https://images.isbndb.com/covers/34/24/9780061003424.jpg'), + ('0451174186', 'A Cast Of Killers (Signet)', 'https://images.isbndb.com/covers/41/85/9780451174185.jpg'), + ('0140171673', 'The Snapper', 'https://images.isbndb.com/covers/16/79/9780140171679.jpg'), + ('0804103712', 'The Body In The Volvo', 'https://images.isbndb.com/covers/37/18/9780804103718.jpg'), + ('0380722607', 'Contents Under Pressure (Avon Twilight Mystery) (1st In Britt Montero Mystery Series)', 'https://images.isbndb.com/covers/26/00/9780380722600.jpg'), + ('1558173331', 'Scorpion''s Dance', 'https://images.isbndb.com/covers/33/30/9781558173330.jpg'), + ('044921849X', 'French Kiss', 'https://images.isbndb.com/covers/84/95/9780449218495.jpg'), + ('0345343263', 'THE STONE ARROW (Pagans Trilogy, Book 1)', 'https://images.isbndb.com/covers/32/60/9780345343260.jpg'), + ('0671559044', 'The Golden People', 'https://images.isbndb.com/covers/90/45/9780671559045.jpg'), + ('0345312015', 'Hooligans', 'https://images.isbndb.com/covers/20/13/9780345312013.jpg'), + ('0375757643', 'The Last Of The Mohicans (Modern Library Classics)', 'https://images.isbndb.com/covers/76/48/9780375757648.jpg'), + ('0449205983', 'Shan', 'https://images.isbndb.com/covers/59/83/9780449205983.jpg'), + ('0451158717', 'Who''s Afraid Of Virginia Woolf?', 'https://images.isbndb.com/covers/87/10/9780451158710.jpg'), + ('0671677225', 'Musashi No. 4 : Bushido Code', 'https://images.isbndb.com/covers/72/20/9780671677220.jpg'), + ('0821738976', 'Kisaeng', 'https://images.isbndb.com/covers/89/79/9780821738979.jpg'), + ('0836218981', 'The Indispensable Calvin And Hobbes (Calvin & Hobbes)', 'https://images.isbndb.com/covers/89/85/9780836218985.jpg'), + ('0810913038', 'Maasai', 'https://images.isbndb.com/covers/30/35/9780810913035.jpg'), + ('006028739X', 'Boston Jane Series: An Adventure', 'https://images.isbndb.com/covers/73/99/9780060287399.jpg'), + ('0375761225', 'Washington Square (Modern Library Classics)', 'https://images.isbndb.com/covers/12/25/9780375761225.jpg'), + ('0066211697', 'Bonjour Tristesse', 'https://images.isbndb.com/covers/16/95/9780066211695.jpg'), + ('080500503X', 'Curious Affair Of The Third Dog: An Inspector Henry Tibbett Mystery', 'https://images.isbndb.com/covers/50/35/9780805005035.jpg'), + ('0345340418', 'Death In A Tenured Position (Kate Fansler Novels)', 'https://images.isbndb.com/covers/04/12/9780345340412.jpg'), + ('0671455257', 'Murder Against The Grain', 'https://images.isbndb.com/covers/52/55/9780671455255.jpg'), + ('0802138039', 'Priority', 'https://images.isbndb.com/covers/80/33/9780802138033.jpg'), + ('0060907967', 'Lowell Offering: Writings By New England Mill Women, 1840-1845', 'https://images.isbndb.com/covers/79/69/9780060907969.jpg'), + ('0449211479', 'SOURCE', 'https://images.isbndb.com/covers/14/72/9780449211472.jpg'), + ('0449134040', 'The Dreadful Lemon Sky', 'https://images.isbndb.com/covers/40/47/9780449134047.jpg'), + ('1569800677', 'Hollywood Lesbians', 'https://images.isbndb.com/covers/06/76/9781569800676.jpg'), + ('0345330145', 'Puppet Masters', 'https://images.isbndb.com/covers/01/47/9780345330147.jpg'), + ('0671720082', 'Man Kzin Wars III', 'https://images.isbndb.com/covers/00/87/9780671720087.jpg'), + ('0449237613', 'Hawaii', 'https://images.isbndb.com/covers/76/18/9780449237618.jpg'), + ('0345332857', 'Bloodhype', 'https://images.isbndb.com/covers/28/51/9780345332851.jpg'), + ('0671698516', 'The Lizard War', 'https://images.isbndb.com/covers/85/15/9780671698515.jpg'), + ('0812536460', 'King And Emperor (Hammer And The Cross)', 'https://images.isbndb.com/covers/64/61/9780812536461.jpg'), + ('0385333781', 'Player Piano: A Novel', 'https://images.isbndb.com/covers/37/88/9780385333788.jpg'), + ('0380720884', 'Rage Of A Demon King: Book Three Of The Serpentwar Saga (Serpentwar Saga , Vol 3)', 'https://images.isbndb.com/covers/08/80/9780380720880.jpg'), + ('0671644211', 'Way Of The Samurai (Musashi, Book 1)', 'https://images.isbndb.com/covers/42/15/9780671644215.jpg'), + ('0553158899', 'Zorba The Hutt''s Revenge (Star Wars)', 'https://images.isbndb.com/covers/88/92/9780553158892.jpg'), + ('0441908721', 'The Woods Out Back (The Spearwielder''s Tale)', 'https://images.isbndb.com/covers/87/21/9780441908721.jpg'), + ('0515126985', 'In Danger''s Path (The Corps, Book 8)', 'https://images.isbndb.com/covers/69/83/9780515126983.jpg'), + ('0671578553', 'Worlds Of Honor (Honorverse)', 'https://images.isbndb.com/covers/85/58/9780671578558.jpg'), + ('0345371976', 'The World At The End Of Time', 'https://images.isbndb.com/covers/19/73/9780345371973.jpg'), + ('0886775647', 'Countermeasures (Forbidden Borders #3)', 'https://images.isbndb.com/covers/56/43/9780886775643.jpg'), + ('0802313167', 'The Great Irish Famine (Thomas Davis Lecture Series)', 'https://images.isbndb.com/covers/31/64/9780802313164.jpg'), + ('0312088353', 'Latin Moon In Manhattan: A Novel (Stonewall Inn Editions)', 'https://images.isbndb.com/covers/83/54/9780312088354.jpg'), + ('0553232894', 'Bodily Harm', 'https://images.isbndb.com/covers/28/99/9780553232899.jpg'), + ('0060932902', 'Genome: The Autobiography Of A Species In 23 Chapters', 'https://images.isbndb.com/covers/29/09/9780060932909.jpg'), + ('0609606077', 'Life And Def : Sex, Drugs, Money, And God', 'https://images.isbndb.com/covers/60/70/9780609606070.jpg'), + ('0306804751', 'Murder, Inc.: The Story Of The Syndicate', 'https://images.isbndb.com/covers/47/55/9780306804755.jpg'), + ('0394505050', 'The Covenant: A Novel', 'https://images.isbndb.com/covers/50/53/9780394505053.jpg'), + ('0878579109', 'Pilgrimage: A Memoir Of Poland And Rome', 'https://images.isbndb.com/covers/91/05/9780878579105.jpg'), + ('0743205677', 'The Heart Of The Soul : Emotional Awareness', 'https://images.isbndb.com/covers/56/72/9780743205672.jpg'), + ('0805047360', 'Go The Way Your Blood Beats: An Anthology Of Lesbian And Gay Fiction By African-American Writers', 'https://images.isbndb.com/covers/73/63/9780805047363.jpg'), + ('0743222946', 'At Swim, Two Boys', 'https://images.isbndb.com/covers/29/45/9780743222945.jpg'), + ('0439376068', 'The Adventures Of Super Diaper Baby', 'https://images.isbndb.com/covers/60/68/9780439376068.jpg'), + ('0525457453', 'Dogs Have The Strangest Friends: & Other True Stories Of Animal Feelings', 'https://images.isbndb.com/covers/74/59/9780525457459.jpg'), + ('0060960809', 'The Movie Lover''s Guide To New York: The Ultimate Guide To Movie New York- An Inside Look At Over 25 Attractions From Motion Picture Past And Present', 'https://images.isbndb.com/covers/08/03/9780060960803.jpg'), + ('0375801766', 'I Was A Rat!', 'https://images.isbndb.com/covers/17/61/9780375801761.jpg'), + ('0805054537', 'This Side Of Brightness: A Novel', 'https://images.isbndb.com/covers/45/38/9780805054538.jpg'), + ('0312110529', 'Sacred Lips Of The Bronx', 'https://images.isbndb.com/covers/05/29/9780312110529.jpg'), + ('0525093303', 'The Dione Lucas Book Of Natural French Cooking', 'https://images.isbndb.com/covers/33/05/9780525093305.jpg'), + ('0671633635', 'Early Summer Garden (Burpee''s American Harvest Cookbooks)', 'https://images.isbndb.com/covers/36/39/9780671633639.jpg'), + ('0671678051', 'Kathy Cooks: Vegetarian, Low Cholesterol (Art Of Dieting Without Dieting)', 'https://images.isbndb.com/covers/80/50/9780671678050.jpg'), + ('0452262704', 'Sports Illustrated Backpacking: A Complete Guide (Sports Illustrated Winner''s Circle Books)', 'https://images.isbndb.com/covers/27/06/9780452262706.jpg'), + ('0688155162', 'Taming It Down: A Novel', 'https://images.isbndb.com/covers/51/62/9780688155162.jpg'), + ('0060959622', 'You Just Don''t Understand: Women And Men In Conversation', 'https://images.isbndb.com/covers/96/23/9780060959623.jpg'), + ('0385266367', 'A Fire In The Mind: The Life Of Joseph Campbell', 'https://images.isbndb.com/covers/63/69/9780385266369.jpg'), + ('0140178724', 'Was', 'https://images.isbndb.com/covers/87/22/9780140178722.jpg'), + ('0195030680', 'Abroad: British Literary Traveling Between The Wars', 'https://images.isbndb.com/covers/06/86/9780195030686.jpg'), + ('0670882070', 'Blood Acre', 'https://images.isbndb.com/covers/20/76/9780670882076.jpg'), + ('0395957826', 'The Long Falling', 'https://images.isbndb.com/covers/78/20/9780395957820.jpg'), + ('0156505150', 'Let The Dead Bury Their Dead (Harvest American Writing Series)', 'https://images.isbndb.com/covers/51/54/9780156505154.jpg'), + ('0854491872', 'The Colonist', 'https://images.isbndb.com/covers/18/72/9780854491872.jpg'), + ('0451623797', 'From Bonsai To Levis: When West Meets East (Mentor)', 'https://images.isbndb.com/covers/37/99/9780451623799.jpg'), + ('1568362641', 'Good Morning, Miffy', 'https://images.isbndb.com/covers/26/49/9781568362649.jpg'), + ('0393039870', 'How To Care For Your Parents: A Practical Guide To Eldercare', 'https://images.isbndb.com/covers/98/70/9780393039870.jpg'), + ('0140077715', 'Emily Dickinson Is Dead: A Homer Kelly Mystery', 'https://images.isbndb.com/covers/77/11/9780140077711.jpg'), + ('0425153797', 'Men In Black', 'https://images.isbndb.com/covers/37/96/9780425153796.jpg'), + ('0671740504', 'DEVIL IN A BLUE DRESS: An Easy Rawlins Mystery', 'https://images.isbndb.com/covers/05/04/9780671740504.jpg'), + ('0553293915', 'Kat''s Cradle (Kat Colorado Mysteries)', 'https://images.isbndb.com/covers/39/13/9780553293913.jpg'), + ('0671016717', 'Blue Blood (Ivy League Mysteries)', 'https://images.isbndb.com/covers/67/15/9780671016715.jpg'), + ('0394710932', 'Kind And Usual Punishment', 'https://images.isbndb.com/covers/09/38/9780394710938.jpg'), + ('0449203158', 'Chesapeake', 'https://images.isbndb.com/covers/31/56/9780449203156.jpg'), + ('0156806754', 'E.E.Cummings: A Selection Of Poems', 'https://images.isbndb.com/covers/67/56/9780156806756.jpg'), + ('0671746480', 'Power Hungry (Star Trek The Next Generation, No 6)', 'https://images.isbndb.com/covers/64/83/9780671746483.jpg'), + ('0671743880', 'Encounter At Farpoint (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/38/88/9780671743888.jpg'), + ('0671739182', 'A Flag Full Of Stars (Star Trek, Book 54)', 'https://images.isbndb.com/covers/91/88/9780671739188.jpg'), + ('067152044X', 'Ragnarok (Star Trek Voyager, No 3)', 'https://images.isbndb.com/covers/04/41/9780671520441.jpg'), + ('0553241745', 'World Without End', 'https://images.isbndb.com/covers/17/47/9780553241747.jpg'), + ('0671880306', 'The Big Game (Star Trek Deep Space Nine, No 4)', 'https://images.isbndb.com/covers/03/09/9780671880309.jpg'), + ('0553121111', 'Star Trek 9', 'https://images.isbndb.com/covers/11/17/9780553121117.jpg'), + ('0671709704', 'Boogeymen (Star Trek: The Next Generation, No. 17)', 'https://images.isbndb.com/covers/97/09/9780671709709.jpg'), + ('0671520466', 'Violations (Star Trek Voyager, No 4)', 'https://images.isbndb.com/covers/04/65/9780671520465.jpg'), + ('0671506048', 'The Search (Star Trek Deep Space Nine)', 'https://images.isbndb.com/covers/60/49/9780671506049.jpg'), + ('0451129474', 'The Best Of Trek, No. 5 (Star Trek)', 'https://images.isbndb.com/covers/94/75/9780451129475.jpg'), + ('0671882678', 'Descent (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/26/79/9780671882679.jpg'), + ('0671520962', 'The Escape (Star Trek Voyager, No 2)', 'https://images.isbndb.com/covers/09/60/9780671520960.jpg'), + ('0671520482', 'Incident At Arbuk (Star Trek Voyager, No 5)', 'https://images.isbndb.com/covers/04/89/9780671520489.jpg'), + ('0671797042', 'Sins Of Commission (Star Trek The Next Generation, No 29)', 'https://images.isbndb.com/covers/70/41/9780671797041.jpg'), + ('0671453580', 'The Klingon Gambit (Star Trek, No 3)', 'https://images.isbndb.com/covers/35/89/9780671453589.jpg'), + ('0671537830', 'The Murdered Sun (Star Trek Voyager, No 6)', 'https://images.isbndb.com/covers/78/38/9780671537838.jpg'), + ('0671881167', 'Warchild (Star Trek Deep Space Nine, No 7)', 'https://images.isbndb.com/covers/11/60/9780671881160.jpg'), + ('0671872753', 'Bloodletter (Star Trek Deep Space Nine, No 3)', 'https://images.isbndb.com/covers/27/55/9780671872755.jpg'), + ('0671568116', 'Objective: Bajor (Star Trek: Deep Space Nine)', 'https://images.isbndb.com/covers/81/15/9780671568115.jpg'), + ('0671549170', 'Rogue Saucer (Star Trek The Next Generation, No. 39)', 'https://images.isbndb.com/covers/91/76/9780671549176.jpg'), + ('0671520474', 'The Captain''s Daughter (Star Trek, Book 76)', 'https://images.isbndb.com/covers/04/72/9780671520472.jpg'), + ('0671658158', 'The Pandora Principle (Star Trek, Book 49)', 'https://images.isbndb.com/covers/81/51/9780671658151.jpg'), + ('0671741403', 'The Captain''s Honor (Star Trek The Next Generation, No 8)', 'https://images.isbndb.com/covers/14/02/9780671741402.jpg'), + ('067151914X', 'Caretaker (Star Trek Voyager, No 1)', 'https://images.isbndb.com/covers/91/48/9780671519148.jpg'), + ('0553241702', 'The Galactic Whirlpool (Star Trek)', 'https://images.isbndb.com/covers/17/09/9780553241709.jpg'), + ('067179065X', 'Probe (Star Trek)', 'https://images.isbndb.com/covers/06/53/9780671790653.jpg'), + ('0345272129', 'Star Trek Log Ten / 10', 'https://images.isbndb.com/covers/21/26/9780345272126.jpg'), + ('0671705601', 'Exiles (Star Trek The Next Generation, No 14)', 'https://images.isbndb.com/covers/56/02/9780671705602.jpg'), + ('0671501054', 'The Last Stand (Star Trek: The Next Generation, No. 37)', 'https://images.isbndb.com/covers/10/51/9780671501051.jpg'), + ('0671746472', 'Strike Zone (Star Trek The Next Generation, No 5)', 'https://images.isbndb.com/covers/64/76/9780671746476.jpg'), + ('0671524887', 'Killing Time (Star Trek, No 24)', 'https://images.isbndb.com/covers/48/83/9780671524883.jpg'), + ('0671798588', 'Emissary (Star Trek Deep Space Nine, No 1)', 'https://images.isbndb.com/covers/85/81/9780671798581.jpg'), + ('0671879979', 'The Romulan Stratagem (Star Trek The Next Generation, No 35)', 'https://images.isbndb.com/covers/99/76/9780671879976.jpg'), + ('0060916095', 'Think On These Things', 'https://images.isbndb.com/covers/60/91/9780060916091.jpg'), + ('0449005127', 'Eyes', 'https://images.isbndb.com/covers/51/25/9780449005125.jpg'), + ('0374520763', 'A Meeting By The River', 'https://images.isbndb.com/covers/07/62/9780374520762.jpg'), + ('0671741438', 'Gulliver''s Fugitives (Star Trek: The Next Generation, No. 11)', 'https://images.isbndb.com/covers/14/33/9780671741433.jpg'), + ('0671666622', 'Home Is The Hunter (Star Trek, No 52)', 'https://images.isbndb.com/covers/66/20/9780671666620.jpg'), + ('0671465430', 'The Trellisane Confrontation (Star Trek, No 14)', 'https://images.isbndb.com/covers/54/38/9780671465438.jpg'), + ('1884907873', 'A Heritage Of Passion', 'https://images.isbndb.com/covers/78/76/9781884907876.jpg'), + ('0449221202', 'Aftershock', 'https://images.isbndb.com/covers/12/04/9780449221204.jpg'), + ('034536998X', 'The Players Come Again (Kate Fansler Novels)', 'https://images.isbndb.com/covers/99/87/9780345369987.jpg'), + ('0671864165', 'Acts Of Faith: Daily Meditations For People Of Color', 'https://images.isbndb.com/covers/41/63/9780671864163.jpg'), + ('158613101X', 'Zhuan Falun (Revolving The Law Wheel)', 'https://images.isbndb.com/covers/10/12/9781586131012.jpg'), + ('0767905040', 'The Case Against Lawyers', 'https://images.isbndb.com/covers/50/46/9780767905046.jpg'), + ('0802131379', 'Last Exit To Brooklyn (An Evergreen Book)', 'https://images.isbndb.com/covers/13/79/9780802131379.jpg'), + ('0380788756', 'Baltimore Blues (Tess Monaghan Mysteries)', 'https://images.isbndb.com/covers/87/50/9780380788750.jpg'), + ('0553560727', 'Brilliant Madness: Living With Manic Depressive Illness', 'https://images.isbndb.com/covers/07/25/9780553560725.jpg'), + ('0515113522', 'Backstage Passes', 'https://images.isbndb.com/covers/35/25/9780515113525.jpg'), + ('0451452356', 'A Sword For A Dragon (Bazil Broketail)', 'https://images.isbndb.com/covers/23/51/9780451452351.jpg'), + ('0689835558', 'Nell Dunne: Ellis Island, 1904', 'https://images.isbndb.com/covers/55/51/9780689835551.jpg'), + ('0752843753', 'Making The Cut (Carl McCadden Mysteries)', 'https://images.isbndb.com/covers/37/59/9780752843759.jpg'), + ('0874777992', 'Caring For Your Aging Parents', 'https://images.isbndb.com/covers/79/94/9780874777994.jpg'), + ('0061007072', 'Sotah', 'https://images.isbndb.com/covers/70/71/9780061007071.jpg'), + ('0811205967', 'Sweet Bird Of Youth', 'https://images.isbndb.com/covers/59/62/9780811205962.jpg'), + ('0679750304', 'The Culture Of Desire: Paradox And Perversity In Gay Lives Today', 'https://images.isbndb.com/covers/03/07/9780679750307.jpg'), + ('0921912951', 'Going To Town: Architectural Walking Tours In Southern Ontario', 'https://images.isbndb.com/covers/29/58/9780921912958.jpg'), + ('0486287599', 'A Modest Proposal And Other Satirical Works (Dover Thrift Editions)', 'https://images.isbndb.com/covers/75/91/9780486287591.jpg'), + ('0312963157', 'The Last Girl', 'https://images.isbndb.com/covers/31/56/9780312963156.jpg'), + ('0691003122', 'Painting In Florence And Siena After The Black Death', 'https://images.isbndb.com/covers/31/22/9780691003122.jpg'), + ('067088460X', 'Bemelmans: The Life And Art Of Madeline''s Creator', 'https://images.isbndb.com/covers/46/05/9780670884605.jpg'), + ('0887307361', 'The Reengineering Revolution: A Handbook', 'https://images.isbndb.com/covers/73/62/9780887307362.jpg'), + ('0688089054', 'One Page Management: Success Through Access! How To Get The Key Facts You Need To Get The Job Done', 'https://images.isbndb.com/covers/90/54/9780688089054.jpg'), + ('0399522662', 'Buy Book, Get Guy', 'https://images.isbndb.com/covers/26/66/9780399522666.jpg'), + ('0062548662', 'Meditations For Women Who Do Too Much', 'https://images.isbndb.com/covers/86/65/9780062548665.jpg'), + ('0804112657', 'How To Handle Trouble', 'https://images.isbndb.com/covers/26/59/9780804112659.jpg'), + ('1561704059', 'Being: How To Increase Your Awareness Of Oneness', 'https://images.isbndb.com/covers/40/57/9781561704057.jpg'), + ('0446525685', 'Business @ The Speed Of Thought : Using A Digital Nervous System', 'https://images.isbndb.com/covers/56/88/9780446525688.jpg'), + ('0061011886', 'Enter Whining', 'https://images.isbndb.com/covers/18/87/9780061011887.jpg'), + ('034536225X', 'I''ll Take It', 'https://images.isbndb.com/covers/22/54/9780345362254.jpg'), + ('0380728753', 'The Escape From Home (Beyond The Western Sea, Book 1)', 'https://images.isbndb.com/covers/87/56/9780380728756.jpg'), + ('0740729497', '1,003 Great Things About America', 'https://images.isbndb.com/covers/94/92/9780740729492.jpg'), + ('0140046941', 'Black Odyssey: The Case Of The Slave Ship `Amistad''', 'https://images.isbndb.com/covers/69/46/9780140046946.jpg'), + ('0684837455', 'Black-Eyed Peas For The Soul: Tales To Strengthen The African American Spirit And Encourage The Heart', 'https://images.isbndb.com/covers/74/51/9780684837451.jpg'), + ('0312022808', 'Sherlock Holmes And The Mysterious Friend Of Oscar Wilde', 'https://images.isbndb.com/covers/28/08/9780312022808.jpg'), + ('0828869782', 'Pour Toi (French Edition Of "For You With Love."', 'https://images.isbndb.com/covers/97/82/9780828869782.jpg'), + ('055321392X', 'Of Human Bondage (Bantam Classics)', 'https://images.isbndb.com/covers/39/28/9780553213928.jpg'), + ('0881844632', 'High Rising', 'https://images.isbndb.com/covers/46/34/9780881844634.jpg'), + ('2710300257', 'Antigone', 'https://images.isbndb.com/covers/02/50/9782710300250.jpg'), + ('0375507914', 'Invisible Man: A Novel', 'https://images.isbndb.com/covers/79/15/9780375507915.jpg'), + ('0486220370', 'Indian Boyhood', 'https://images.isbndb.com/covers/03/76/9780486220376.jpg'), + ('0839828500', 'High, Wide And Lonesome: Growing Up On The Colorado Frontier', 'https://images.isbndb.com/covers/85/01/9780839828501.jpg'), + ('0394408853', 'A Very Young Dancer', 'https://images.isbndb.com/covers/88/59/9780394408859.jpg'), + ('0310219345', 'Following Christ', 'https://images.isbndb.com/covers/93/47/9780310219347.jpg'), + ('0394565614', 'Caribbean', 'https://images.isbndb.com/covers/56/13/9780394565613.jpg'), + ('0192834320', 'Barchester Towers (Oxford World''s Classics)', 'https://images.isbndb.com/covers/43/24/9780192834324.jpg'), + ('0684839571', 'The Girls Next Door', 'https://images.isbndb.com/covers/95/78/9780684839578.jpg'), + ('156476768X', 'A Woman''s Journey Through 1 Peter: 8 Lessons On Confidence Exclusively For Women', 'https://images.isbndb.com/covers/76/84/9781564767684.jpg'), + ('0440123925', 'Exit To Eden', 'https://images.isbndb.com/covers/39/27/9780440123927.jpg'), + ('0385264860', 'Raging Hormones', 'https://images.isbndb.com/covers/48/60/9780385264860.jpg'), + ('006109921X', 'Up Island', 'https://images.isbndb.com/covers/92/12/9780061099212.jpg'), + ('0870119206', 'Salad Anniversary', 'https://images.isbndb.com/covers/92/00/9780870119200.jpg'), + ('0394741722', 'American Fried V172', 'https://images.isbndb.com/covers/17/27/9780394741727.jpg'), + ('0140437908', 'Major Barbara (Penguin Classics)', 'https://images.isbndb.com/covers/79/04/9780140437904.jpg'), + ('0060975466', 'The Measure Of Our Success: A Letter To My Children And Yours', 'https://images.isbndb.com/covers/54/63/9780060975463.jpg'), + ('0671578588', 'Hokas Pokas!', 'https://images.isbndb.com/covers/85/89/9780671578589.jpg'), + ('0671653989', 'Falling Free', 'https://images.isbndb.com/covers/39/89/9780671653989.jpg'), + ('0886777119', 'Catfantastic 4', 'https://images.isbndb.com/covers/71/11/9780886777111.jpg'), + ('0886777410', 'Sword And Sorceress XIV', 'https://images.isbndb.com/covers/74/18/9780886777418.jpg'), + ('0671577743', 'Hoka! Hoka! Hoka!', 'https://images.isbndb.com/covers/77/42/9780671577742.jpg'), + ('067087485X', 'Out To Canaan (The Mitford Years, Book 4)', 'https://images.isbndb.com/covers/48/59/9780670874859.jpg'), + ('0553349155', '184 Businesses Anyone Can Start', 'https://images.isbndb.com/covers/91/53/9780553349153.jpg'), + ('0156227258', 'The Crafts Business Encyclopedia: Marketing, Management, And Money (A Harvest/HBJ Book)', 'https://images.isbndb.com/covers/72/54/9780156227254.jpg'), + ('1578511933', 'Digital Capital: Harnessing The Power Of Business Webs', 'https://images.isbndb.com/covers/19/38/9781578511938.jpg'), + ('0684815753', 'Follow The Wind', 'https://images.isbndb.com/covers/57/56/9780684815756.jpg'), + ('039952276X', 'Extraordinary Golf: The Art Of The Possible (Perigee)', 'https://images.isbndb.com/covers/27/65/9780399522765.jpg'), + ('0385475985', 'Leslie Nielson''s Stupid Little Golf Book', 'https://images.isbndb.com/covers/59/83/9780385475983.jpg'), + ('1561382477', 'Constellations: Glimpses Of Infinity In Fact, Myth, And Legend (Miniature Editions)', 'https://images.isbndb.com/covers/24/77/9781561382477.jpg'), + ('1567312950', 'Spiritual Notes To Myself: Essential Wisdom For The 21st Century', 'https://images.isbndb.com/covers/29/59/9781567312959.jpg'), + ('0382091175', 'In Search Of Ancient Crete (In Search Of Series)', 'https://images.isbndb.com/covers/11/79/9780382091179.jpg'), + ('0553560204', 'The Lesson Of Her Death', 'https://images.isbndb.com/covers/02/06/9780553560206.jpg'), + ('0345332784', 'Bt-Sweater Connection', 'https://images.isbndb.com/covers/27/83/9780345332783.jpg'), + ('0824910591', 'Valentine Ideals', 'https://images.isbndb.com/covers/05/94/9780824910594.jpg'), + ('0670838101', 'Christmas Tales', 'https://images.isbndb.com/covers/81/03/9780670838103.jpg'), + ('0689812744', 'Reptar To The Rescue! (Rugrats (Simon & Schuster Paperback))', 'https://images.isbndb.com/covers/27/43/9780689812743.jpg'), + ('0140542388', 'Trigwater Did It (Picture Puffins)', 'https://images.isbndb.com/covers/23/87/9780140542387.jpg'), + ('0394530195', 'Chief Joseph Of The Nez Perce', 'https://images.isbndb.com/covers/01/92/9780394530192.jpg'), + ('1556113307', 'Inadmissible Evidence', 'https://images.isbndb.com/covers/33/07/9781556113307.jpg'), + ('0156093103', 'AT THE CHELSEA.', 'https://images.isbndb.com/covers/31/01/9780156093101.jpg'), + ('0395486173', 'Extraordinary Lives: The Art And Craft Of American Biography (The Writer''s Craft)', 'https://images.isbndb.com/covers/61/77/9780395486177.jpg'), + ('0064407470', 'Dave At Night', 'https://images.isbndb.com/covers/74/72/9780064407472.jpg'), + ('0060952423', 'The Mother-Daughter Book Club: How Ten Busy Mothers And Daughters Came Together To Talk, Laugh And Learn Through Their Love Of Reading', 'https://images.isbndb.com/covers/24/26/9780060952426.jpg'), + ('0060957182', '100 Books For Girls To Grow On', 'https://images.isbndb.com/covers/71/86/9780060957186.jpg'), + ('0870540947', 'Wind From A Burning Woman', 'https://images.isbndb.com/covers/09/43/9780870540943.jpg'), + ('0743452631', 'Strength Of Stones', 'https://images.isbndb.com/covers/26/32/9780743452632.jpg'), + ('0380812002', 'A Graveyard For Lunatics: Another Tale Of Two Cities', 'https://images.isbndb.com/covers/20/04/9780380812004.jpg'), + ('0553293877', 'Ghost From The Grand Banks, The', 'https://images.isbndb.com/covers/38/76/9780553293876.jpg'), + ('0553573330', 'Richter 10', 'https://images.isbndb.com/covers/33/36/9780553573336.jpg'), + ('0670030031', 'Lake Wobegon Summer 1956', 'https://images.isbndb.com/covers/00/33/9780670030033.jpg'), + ('002963900X', 'Dutch For Travellers', 'https://images.isbndb.com/covers/90/09/9780029639009.jpg'), + ('0679430679', 'Diary Of A Lost Boy: A Novel', 'https://images.isbndb.com/covers/06/74/9780679430674.jpg'), + ('0525943625', 'The Rules For Cats: 4,000 Year-Old Secrets For Controlling Your Owner: An Unauthorized Parody', 'https://images.isbndb.com/covers/36/24/9780525943624.jpg'), + ('0060985011', 'Black Feathers: Erotic Dreams', 'https://images.isbndb.com/covers/50/11/9780060985011.jpg'), + ('0399512330', 'Break The Dealer: Winning Strategies For Today''s Blackjack', 'https://images.isbndb.com/covers/23/39/9780399512339.jpg'), + ('1555253903', 'Hidden Agendas', 'https://images.isbndb.com/covers/39/05/9781555253905.jpg'), + ('0440415942', 'The Swiss Family Robinson', 'https://images.isbndb.com/covers/59/47/9780440415947.jpg'), + ('0671892258', 'Food', 'https://images.isbndb.com/covers/22/58/9780671892258.jpg'), + ('0316693715', 'Jack & Jill (Alex Cross)', 'https://images.isbndb.com/covers/37/14/9780316693714.jpg'), + ('0440203244', 'Daughters', 'https://images.isbndb.com/covers/32/47/9780440203247.jpg'), + ('0440505984', 'Living With Loss (Days Of Healing, Days Of Change)', 'https://images.isbndb.com/covers/59/83/9780440505983.jpg'), + ('0688118852', 'Rainbow Rising From A Stream: The Natural Way To Well-being', 'https://images.isbndb.com/covers/88/53/9780688118853.jpg'), + ('0395470439', 'Smart Exercise: Burning Fat, Getting Fit', 'https://images.isbndb.com/covers/04/35/9780395470435.jpg'), + ('0374184232', 'The Laws Of Our Fathers', 'https://images.isbndb.com/covers/42/30/9780374184230.jpg'), + ('0671541390', 'The Book Of Massage: The Complete Step-by-Step Guide To Eastern And Western Techniques', 'https://images.isbndb.com/covers/13/92/9780671541392.jpg'), + ('1852307927', 'The Complete Book Of Tai Chi Chuan: A Comprehensive Guide To The Principles And Practice', 'https://images.isbndb.com/covers/79/29/9781852307929.jpg'), + ('0451406273', 'Gal: A True Life', 'https://images.isbndb.com/covers/62/79/9780451406279.jpg'), + ('0060192240', 'The Collected Short Stories: Jeffrey Archer''s Previously Published Stories, Compiled For The First Time In One Definitive Volume', 'https://images.isbndb.com/covers/22/42/9780060192242.jpg'), + ('0312146310', 'James H Fav Dog Stories', 'https://images.isbndb.com/covers/63/13/9780312146313.jpg'), + ('0393087972', 'The Finest Kind: The Fishermen Of Gloucester', 'https://images.isbndb.com/covers/79/70/9780393087970.jpg'), + ('0679456821', 'American Tragedy: The Uncensored Story Of The Simpson Defense', 'https://images.isbndb.com/covers/68/27/9780679456827.jpg'), + ('0679454799', 'Into The West: The Story Of Its People', 'https://images.isbndb.com/covers/47/93/9780679454793.jpg'), + ('1575661381', 'Vegas Heat', 'https://images.isbndb.com/covers/13/84/9781575661384.jpg'), + ('0380802112', 'Zoey Fools Around (Making Out, Book 1)', 'https://images.isbndb.com/covers/21/11/9780380802111.jpg'), + ('055308576X', 'Dying For Chocolate', 'https://images.isbndb.com/covers/57/61/9780553085761.jpg'), + ('0679456317', 'Slow Motion: A True Story', 'https://images.isbndb.com/covers/63/15/9780679456315.jpg'), + ('0553095870', 'Last Suppers, The', 'https://images.isbndb.com/covers/58/76/9780553095876.jpg'), + ('0679738142', 'Providence', 'https://images.isbndb.com/covers/81/45/9780679738145.jpg'), + ('0876857446', 'Emerald Ice: Selected Poems 1962-1987', 'https://images.isbndb.com/covers/74/41/9780876857441.jpg'), + ('037601556X', 'Sunset Ideas For Storage', 'https://images.isbndb.com/covers/55/63/9780376015563.jpg'), + ('0376011998', 'Garage, Attic & Basement Storage', 'https://images.isbndb.com/covers/19/92/9780376011992.jpg'), + ('0553581929', 'Special Circumstances (Mike Daley, Book 1)', 'https://images.isbndb.com/covers/19/28/9780553581928.jpg'), + ('0451200284', 'Scavenger', 'https://images.isbndb.com/covers/02/80/9780451200280.jpg'), + ('0425183025', 'A Murder Of Honor', 'https://images.isbndb.com/covers/30/21/9780425183021.jpg'), + ('1551668599', 'Trust Me Once', 'https://images.isbndb.com/covers/85/98/9781551668598.jpg'), + ('0671036564', 'Run For Your Life', 'https://images.isbndb.com/covers/65/60/9780671036560.jpg'), + ('0449224260', 'A Certain Smile', 'https://images.isbndb.com/covers/42/67/9780449224267.jpg'), + ('0449149900', 'Mr. X', 'https://images.isbndb.com/covers/99/04/9780449149904.jpg'), + ('0395765285', 'The Latino Reader: An American Literary Tradition From 1542 To The Present', 'https://images.isbndb.com/covers/52/89/9780395765289.jpg'), + ('0380975343', 'All I Need Is You', 'https://images.isbndb.com/covers/53/41/9780380975341.jpg'), + ('0916180018', 'Labor''s Untold Story: The Adventure Story Of The Battles, Betrayals And Victories Of American Working Men And Women', 'https://images.isbndb.com/covers/00/10/9780916180010.jpg'), + ('0679768149', 'Santa Evita', 'https://images.isbndb.com/covers/81/42/9780679768142.jpg'), + ('0316812404', 'Readings In Child Behavior And Development', 'https://images.isbndb.com/covers/24/05/9780316812405.jpg'), + ('0684834723', 'The Letter (The Christmas Box Trilogy)', 'https://images.isbndb.com/covers/47/26/9780684834726.jpg'), + ('1556155689', 'The Way Computers And M. S.-DOS Work: The Ultimate All-Color Beginners'' Guide (WYSIWYG)', 'https://images.isbndb.com/covers/56/80/9781556155680.jpg'), + ('0553581937', 'Incriminating Evidence (Mike Daley, Book 2)', 'https://images.isbndb.com/covers/19/35/9780553581935.jpg'), + ('0451202317', 'Beyond Eden (Contemporary Romantic Thriller)', 'https://images.isbndb.com/covers/23/14/9780451202314.jpg'), + ('0465019803', 'Spoiled (HEALTH, FOOD)', 'https://images.isbndb.com/covers/98/09/9780465019809.jpg'), + ('0671661353', 'Home Movie', 'https://images.isbndb.com/covers/13/59/9780671661359.jpg'), + ('0534178081', 'Environmental Science: Sustaining The Earth (Wadsworth Biology Series)', 'https://images.isbndb.com/covers/80/86/9780534178086.jpg'), + ('1551669153', 'Split Second (Maggie O''Dell Novels)', 'https://images.isbndb.com/covers/91/51/9781551669151.jpg'), + ('0140250948', 'In The Lake Of The Woods', 'https://images.isbndb.com/covers/09/47/9780140250947.jpg'), + ('0393960129', 'Wide Sargasso Sea (Norton Critical Editions)', 'https://images.isbndb.com/covers/01/29/9780393960129.jpg'), + ('0312155476', 'House Arrest', 'https://images.isbndb.com/covers/54/76/9780312155476.jpg'), + ('0393950344', 'Tristram Shandy (Norton Critical Editions)', 'https://images.isbndb.com/covers/03/42/9780393950342.jpg'), + ('039309412X', 'Moll Flanders (Norton Critical Editions Series)', 'https://images.isbndb.com/covers/41/21/9780393094121.jpg'), + ('0821766570', 'The Guest List', 'https://images.isbndb.com/covers/65/76/9780821766576.jpg'), + ('0451180755', 'The Burglar Who Liked To Quote Kipling (Bernie Rhodenbarr Mystery)', 'https://images.isbndb.com/covers/07/59/9780451180759.jpg'), + ('0312974507', 'China Sea (Dan Lenson Novels)', 'https://images.isbndb.com/covers/45/03/9780312974503.jpg'), + ('0316115924', 'Why I Write: Thoughts On The Craft Of Fiction (A Back Bay Book)', 'https://images.isbndb.com/covers/59/26/9780316115926.jpg'), + ('0449202917', 'Portnoy''s Complaint', 'https://images.isbndb.com/covers/29/13/9780449202913.jpg'), + ('0393959031', 'Tess Of The D''Urbervilles (Norton Critical Editions)', 'https://images.isbndb.com/covers/90/31/9780393959031.jpg'), + ('0821223496', 'The Art Of Fine Cigars', 'https://images.isbndb.com/covers/34/99/9780821223499.jpg'), + ('0312979398', 'The Eye Of The Tiger', 'https://images.isbndb.com/covers/93/93/9780312979393.jpg'), + ('0812590252', 'A Midwinter''s Tale (O''Malley Novels)', 'https://images.isbndb.com/covers/02/58/9780812590258.jpg'), + ('0786889608', 'Middle Of Nowhere', 'https://images.isbndb.com/covers/96/00/9780786889600.jpg'), + ('0471985813', 'The Intelligent Guide To Stock Market Investment', 'https://images.isbndb.com/covers/58/15/9780471985815.jpg'), + ('0822953560', 'The Spencers Of Amberson Ave: A Turn-of-the-Century Memoir', 'https://images.isbndb.com/covers/35/62/9780822953562.jpg'), + ('0671553038', 'Life Support', 'https://images.isbndb.com/covers/30/36/9780671553036.jpg'), + ('0060175184', 'The Fourth Estate', 'https://images.isbndb.com/covers/51/84/9780060175184.jpg'), + ('0786889756', 'Red Light', 'https://images.isbndb.com/covers/97/54/9780786889754.jpg'), + ('0446605050', 'The Intruder', 'https://images.isbndb.com/covers/50/52/9780446605052.jpg'), + ('0345428285', 'The Insider', 'https://images.isbndb.com/covers/82/88/9780345428288.jpg'), + ('0140155058', 'Dubliners (Viking Critical Library)', 'https://images.isbndb.com/covers/50/51/9780140155051.jpg'), + ('0553571834', 'Haunting Rachel', 'https://images.isbndb.com/covers/18/37/9780553571837.jpg'), + ('0440235219', 'Swept Away', 'https://images.isbndb.com/covers/52/17/9780440235217.jpg'), + ('042517140X', 'Loyalty In Death', 'https://images.isbndb.com/covers/14/00/9780425171400.jpg'), + ('0425184242', 'Uncommon Justice', 'https://images.isbndb.com/covers/42/40/9780425184240.jpg'), + ('1551668246', 'A Perfect Evil (Maggie O''Dell Novels)', 'https://images.isbndb.com/covers/82/46/9781551668246.jpg'), + ('0671523090', 'Flash', 'https://images.isbndb.com/covers/30/91/9780671523091.jpg'), + ('0425160394', 'Vengeance In Death', 'https://images.isbndb.com/covers/03/98/9780425160398.jpg'), + ('0812928342', 'Cyber Rights : Defending Free Speech In The Digital Age', 'https://images.isbndb.com/covers/83/41/9780812928341.jpg'), + ('0385471289', 'Sister To Sister: Women Write About The Unbreakable Bond', 'https://images.isbndb.com/covers/12/82/9780385471282.jpg'), + ('0451205413', 'L.A. Justice', 'https://images.isbndb.com/covers/54/14/9780451205414.jpg'), + ('0440235812', 'A Criminal Appeal', 'https://images.isbndb.com/covers/58/11/9780440235811.jpg'), + ('0515126519', 'Blood Sport', 'https://images.isbndb.com/covers/65/18/9780515126518.jpg'), + ('0380818655', 'Another Summer', 'https://images.isbndb.com/covers/86/55/9780380818655.jpg'), + ('0743430999', 'The Looking Glass', 'https://images.isbndb.com/covers/09/99/9780743430999.jpg'), + ('0671019554', 'Cold Hit (Alexandra Cooper Mysteries)', 'https://images.isbndb.com/covers/95/56/9780671019556.jpg'), + ('0312112874', 'If You Ask Me', 'https://images.isbndb.com/covers/28/75/9780312112875.jpg'), + ('0679760660', 'Down In The Zero', 'https://images.isbndb.com/covers/06/65/9780679760665.jpg'), + ('0140094601', 'Eleanor Roosevelt, Vol. 1: 1884-1933', 'https://images.isbndb.com/covers/46/02/9780140094602.jpg'), + ('0385494246', 'Amsterdam: A Novel', 'https://images.isbndb.com/covers/42/43/9780385494243.jpg'), + ('0451519485', 'The Signet Classic Book Of British Short Stories (Signet Classics)', 'https://images.isbndb.com/covers/94/81/9780451519481.jpg'), + ('0812576403', 'The Light Of Other Days', 'https://images.isbndb.com/covers/64/05/9780812576405.jpg'), + ('0375706690', 'Babel-17/Empire Star', 'https://images.isbndb.com/covers/66/91/9780375706691.jpg'), + ('0452011876', 'Atlas Shrugged', 'https://images.isbndb.com/covers/18/78/9780452011878.jpg'), + ('0553109588', 'More Letters From A Nut', 'https://images.isbndb.com/covers/95/80/9780553109580.jpg'), + ('0964411911', 'Dr. Koop''s Self-Care Advisor: The Essential Home Health Guide For You And Your Family', 'https://images.isbndb.com/covers/19/13/9780964411913.jpg'), + ('087243169X', 'Henri Nouwen (The Modern Spirituality Series)', 'https://images.isbndb.com/covers/16/90/9780872431690.jpg'), + ('0785264280', 'The Traveler''s Gift: Seven Decisions That Determine Personal Success', 'https://images.isbndb.com/covers/42/86/9780785264286.jpg'), + ('1881471322', 'Mouths Of Shadows: Hamlet''s Ghosts Perform Hamlet & Sunspots', 'https://images.isbndb.com/covers/13/25/9781881471325.jpg'), + ('0573690219', 'Social Security', 'https://images.isbndb.com/covers/02/11/9780573690211.jpg'), + ('0374102058', 'Afterburn: A Novel', 'https://images.isbndb.com/covers/20/50/9780374102050.jpg'), + ('0060950773', 'Shopping For Health: A Nutritionist''s Aisle-By-Aisle Guide To Smart, Low-Fat Choices At The Supermarket', 'https://images.isbndb.com/covers/07/74/9780060950774.jpg'), + ('0819143847', 'Dilemma And Destiny: The Democratic Party In America', 'https://images.isbndb.com/covers/38/46/9780819143846.jpg'), + ('1885492200', 'The New York Book Of Coffee And Cake', 'https://images.isbndb.com/covers/22/03/9781885492203.jpg'), + ('067152836X', 'Nixon, Vol. 1: The Education Of A Politician 1913-1962', 'https://images.isbndb.com/covers/83/62/9780671528362.jpg'), + ('0679720219', 'The Plague', 'https://images.isbndb.com/covers/02/18/9780679720218.jpg'), + ('0446670197', 'Working Men', 'https://images.isbndb.com/covers/01/97/9780446670197.jpg'), + ('0786885882', 'Birthday Girl: A Screenplay', 'https://images.isbndb.com/covers/58/86/9780786885886.jpg'), + ('0747259526', 'Squire Throwleigh''s Heir (Knights Templar)', 'https://images.isbndb.com/covers/95/27/9780747259527.jpg'), + ('0886779774', 'Sea Of Silver Light (Otherland #4)', 'https://images.isbndb.com/covers/97/71/9780886779771.jpg'), + ('0804115729', 'Death Is Now My Neighbor (Inspector Morse)', 'https://images.isbndb.com/covers/57/28/9780804115728.jpg'), + ('0520209109', 'Loose Change: Three Women Of The Sixties', 'https://images.isbndb.com/covers/91/07/9780520209107.jpg'), + ('0812568680', 'Shooting Chant: A Ella Clah Novel (Ella Clah Novels)', 'https://images.isbndb.com/covers/86/84/9780812568684.jpg'), + ('0425164357', 'Death At Bishop''s Keep (Robin Paige Victorian Mysteries, No. 1)', 'https://images.isbndb.com/covers/43/58/9780425164358.jpg'), + ('0804114897', 'The Secret Of Annexe 3 (Inspector Morse Mysteries)', 'https://images.isbndb.com/covers/48/99/9780804114899.jpg'), + ('0449221113', 'Smokescreen', 'https://images.isbndb.com/covers/11/12/9780449221112.jpg'), + ('0380774992', 'Death At Gallows Green', 'https://images.isbndb.com/covers/49/99/9780380774999.jpg'), + ('1551664305', 'High Stakes', 'https://images.isbndb.com/covers/43/09/9781551664309.jpg'), + ('0345397819', 'Lasher (Lives Of The Mayfair Witches)', 'https://images.isbndb.com/covers/78/12/9780345397812.jpg'), + ('0871132095', 'The Two Faces Of January (Highsmith, Patricia)', 'https://images.isbndb.com/covers/20/93/9780871132093.jpg'), + ('0451406893', 'Rebel (Florida Civil War)', 'https://images.isbndb.com/covers/68/97/9780451406897.jpg'), + ('0553576232', 'Shadows And Lace', 'https://images.isbndb.com/covers/62/38/9780553576238.jpg'), + ('0425181979', 'My Heart Stood Still', 'https://images.isbndb.com/covers/19/73/9780425181973.jpg'), + ('0553294083', 'Whisper Of Roses', 'https://images.isbndb.com/covers/40/88/9780553294088.jpg'), + ('0312966210', 'The Rival', 'https://images.isbndb.com/covers/62/18/9780312966218.jpg'), + ('0821742841', 'Lady Of The Forest', 'https://images.isbndb.com/covers/28/46/9780821742846.jpg'), + ('0312152841', 'The Arthritis Cure', 'https://images.isbndb.com/covers/28/40/9780312152840.jpg'), + ('0671624830', 'Heartburn', 'https://images.isbndb.com/covers/48/35/9780671624835.jpg'), + ('1564265536', 'Vegetarian Gourmet Cookery (101 Productions Series)', 'https://images.isbndb.com/covers/55/31/9781564265531.jpg'), + ('0380781484', 'Captive', 'https://images.isbndb.com/covers/14/85/9780380781485.jpg'), + ('0812544161', 'The Saxon Shore (The Camulod Chronicles, Book 4)', 'https://images.isbndb.com/covers/41/69/9780812544169.jpg'), + ('1559724307', 'The Rise And Rise Of David Geffen', 'https://images.isbndb.com/covers/43/02/9781559724302.jpg'), + ('0140062785', 'Waldo Emerson', 'https://images.isbndb.com/covers/27/86/9780140062786.jpg'), + ('0553573705', 'Almost Innocent', 'https://images.isbndb.com/covers/37/01/9780553573701.jpg'), + ('006107361X', 'Jerry Springer''s Wildest Shows Ever!: The Official Jerry Springer Show Companion', 'https://images.isbndb.com/covers/36/18/9780061073618.jpg'), + ('0671413678', 'The Commanders', 'https://images.isbndb.com/covers/36/75/9780671413675.jpg'), + ('006096510X', 'The Power Of Judyism', 'https://images.isbndb.com/covers/51/05/9780060965105.jpg'), + ('0385248253', 'Lose Weight Through Great Sex With Celebrities: The Elvis Way', 'https://images.isbndb.com/covers/82/59/9780385248259.jpg'), + ('0394754271', 'The Stars At Noon', 'https://images.isbndb.com/covers/42/77/9780394754277.jpg'), + ('1885492030', 'The New York Cat Owner''s Guide: Everything You And Your Cat Need To Know About Life In The City', 'https://images.isbndb.com/covers/20/36/9781885492036.jpg'), + ('0917657462', 'The Last Nazi: The Life And Times Of Dr. Joseph Mengele', 'https://images.isbndb.com/covers/74/67/9780917657467.jpg'), + ('0385503636', 'At The Altar Of Speed: The Fast Life And Tragic Death Of Dale Earnhardt', 'https://images.isbndb.com/covers/36/31/9780385503631.jpg'), + ('1558211853', 'Nop''s Trials', 'https://images.isbndb.com/covers/18/58/9781558211858.jpg'), + ('0671755056', 'Shampoo Planet', 'https://images.isbndb.com/covers/50/58/9780671755058.jpg'), + ('0812929136', 'Between Hope And History', 'https://images.isbndb.com/covers/91/33/9780812929133.jpg'), + ('0679735186', 'Independence Day: Bascombe Trilogy (2)', 'https://images.isbndb.com/covers/51/82/9780679735182.jpg'), + ('0449906566', 'Wonders Of The West', 'https://images.isbndb.com/covers/65/69/9780449906569.jpg'), + ('0060170808', 'The Bingo Palace', 'https://images.isbndb.com/covers/08/06/9780060170806.jpg'), + ('055324518X', 'Love Is Letting Go Of Fear', 'https://images.isbndb.com/covers/51/89/9780553245189.jpg'), + ('0452268737', 'Ready To Catch Him Should He Fall: A Novel (Plume)', 'https://images.isbndb.com/covers/87/39/9780452268739.jpg'), + ('0896223337', 'Healing Wounded Emotions: Overcoming Life''s Hurts (Inspirational Reading For Every Catholic)', 'https://images.isbndb.com/covers/33/32/9780896223332.jpg'), + ('0451185145', 'Murder Can Stunt Your Growth (Desiree Shapiro Mystery #3)', 'https://images.isbndb.com/covers/51/43/9780451185143.jpg'), + ('0385494335', 'The Innocent: A Novel', 'https://images.isbndb.com/covers/43/35/9780385494335.jpg'), + ('0070371628', 'Miriam In Her Forties', 'https://images.isbndb.com/covers/16/20/9780070371620.jpg'), + ('0394559584', 'Remember', 'https://images.isbndb.com/covers/95/82/9780394559582.jpg'), + ('0385245793', 'To Be The Best', 'https://images.isbndb.com/covers/57/91/9780385245791.jpg'), + ('0380973170', 'Amber Beach', 'https://images.isbndb.com/covers/31/70/9780380973170.jpg'), + ('0192816861', 'The Shadow-Line: A Confession: Worthy Of My Undying Regard (World''s Classics)', 'https://images.isbndb.com/covers/68/63/9780192816863.jpg'), + ('0440226406', 'Legacy Of Silence', 'https://images.isbndb.com/covers/64/06/9780440226406.jpg'), + ('0060924675', 'How To Live Between Office Visits: A Guide To Life, Love And Health', 'https://images.isbndb.com/covers/46/76/9780060924676.jpg'), + ('0892966882', 'A Walk Through The Fire', 'https://images.isbndb.com/covers/68/82/9780892966882.jpg'), + ('0679721746', 'The Commitments', 'https://images.isbndb.com/covers/17/41/9780679721741.jpg'), + ('0684815095', 'The Last Shot: City Streets, Basketball Dreams', 'https://images.isbndb.com/covers/50/91/9780684815091.jpg'), + ('0156153955', 'Captain''s Death Bed & Other Essays: And Other Essays', 'https://images.isbndb.com/covers/39/59/9780156153959.jpg'), + ('0451180224', 'Criminal Seduction', 'https://images.isbndb.com/covers/02/23/9780451180223.jpg'), + ('0553572512', 'Playing For The Ashes', 'https://images.isbndb.com/covers/25/13/9780553572513.jpg'), + ('0449912639', 'Girls: A Novel (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/26/38/9780449912638.jpg'), + ('0804107513', 'Blossom', 'https://images.isbndb.com/covers/75/18/9780804107518.jpg'), + ('0837820464', 'Becoming: Touchstones For A Growing Person', 'https://images.isbndb.com/covers/04/60/9780837820460.jpg'), + ('0486415848', 'Poems Of Solace And Remembrance (Dover Thrift Editions)', 'https://images.isbndb.com/covers/58/40/9780486415840.jpg'), + ('1575252929', 'Scenes I''Ve Seen...: A Casting Director''s Original Scenes And Interpretive Notes (Monologue And Scene Series)', 'https://images.isbndb.com/covers/29/26/9781575252926.jpg'), + ('1561893978', 'Cat Characters - A To Z', 'https://images.isbndb.com/covers/39/73/9781561893973.jpg'), + ('1557043035', 'Fly Away Home: The Novelization And Story Behind The Film', 'https://images.isbndb.com/covers/30/30/9781557043030.jpg'), + ('1562823485', 'Cinderella (Fay''s Fairy Tales)', 'https://images.isbndb.com/covers/34/81/9781562823481.jpg'), + ('0684854759', 'Floating In My Mother''s Palm', 'https://images.isbndb.com/covers/47/55/9780684854755.jpg'), + ('0684824892', 'Wait Till Next Year: A Memoir', 'https://images.isbndb.com/covers/48/95/9780684824895.jpg'), + ('0664501168', 'Presbyterians: A Spiritual Journey', 'https://images.isbndb.com/covers/11/67/9780664501167.jpg'), + ('0811823601', 'Shaving Lessons: A Memoir Of Father And Son', 'https://images.isbndb.com/covers/36/09/9780811823609.jpg'), + ('0449901556', 'Toddler Taming: A Survival Guide For Parents', 'https://images.isbndb.com/covers/15/57/9780449901557.jpg'), + ('0060933151', 'Everville', 'https://images.isbndb.com/covers/31/59/9780060933159.jpg'), + ('0679766669', 'The Final Judgment: A Novel (Random House Large Print)', 'https://images.isbndb.com/covers/66/67/9780679766667.jpg'), + ('0684847957', 'WAIT TILL NEXT YEAR: A MEMOIR', 'https://images.isbndb.com/covers/79/55/9780684847955.jpg'), + ('0345386817', 'Days Of Grace', 'https://images.isbndb.com/covers/68/16/9780345386816.jpg'), + ('0590453874', 'The Dead Girlfriend (Point Horror Series)', 'https://images.isbndb.com/covers/38/75/9780590453875.jpg'), + ('0875346197', 'Valyra And The Dragons And Other Fanciful Adventure Stories', 'https://images.isbndb.com/covers/61/99/9780875346199.jpg'), + ('0939680491', 'Midnight Song: Quest For The Vanished Ones', 'https://images.isbndb.com/covers/04/98/9780939680498.jpg'), + ('0812550978', 'Echoes Of Issel', 'https://images.isbndb.com/covers/09/79/9780812550979.jpg'), + ('0345395107', 'Perseus Spur (Rampart Worlds Series Volume 1)', 'https://images.isbndb.com/covers/51/08/9780345395108.jpg'), + ('0684169401', 'The Nick Adams Stories', 'https://images.isbndb.com/covers/94/08/9780684169408.jpg'), + ('0440219248', 'Whatever Happened To Janie?', 'https://images.isbndb.com/covers/92/48/9780440219248.jpg'), + ('0451524705', 'Idylls Of The King And A Selection Of Poems (Signet Classics)', 'https://images.isbndb.com/covers/47/06/9780451524706.jpg'), + ('091651532X', 'Poor Dear Charlotte', 'https://images.isbndb.com/covers/53/24/9780916515324.jpg'), + ('0609602489', 'Beyond Obedience: Training With Awareness For You And Your Dog', 'https://images.isbndb.com/covers/24/85/9780609602485.jpg'), + ('0451402537', 'Mischief In Maggody (Arly Hanks Mystery)', 'https://images.isbndb.com/covers/25/30/9780451402530.jpg'), + ('0345370570', 'Deadly Safari', 'https://images.isbndb.com/covers/05/70/9780345370570.jpg'), + ('0671770438', 'DEVIL''S HEAVEN (Neil Hockaday Mystery)', 'https://images.isbndb.com/covers/04/33/9780671770433.jpg'), + ('0395442567', 'Best American Short Stories, 1988', 'https://images.isbndb.com/covers/25/62/9780395442562.jpg'), + ('0446313033', 'Shroud For A Nightingale (Adam Dalgliesh Mystery Series #4)', 'https://images.isbndb.com/covers/30/32/9780446313032.jpg'), + ('0553291203', 'The Wench Is Dead', 'https://images.isbndb.com/covers/12/09/9780553291209.jpg'), + ('0786707550', 'The Fear Sign (Allingham, Margery)', 'https://images.isbndb.com/covers/75/53/9780786707553.jpg'), + ('0380813734', 'A Dance At The Slaughterhouse: A Matthew Scudder Crime Novel', 'https://images.isbndb.com/covers/37/35/9780380813735.jpg'), + ('0425148211', 'Murder On The Cliff (Charlotte Graham Mystery Series)', 'https://images.isbndb.com/covers/82/11/9780425148211.jpg'), + ('0345346866', 'The James Joyce Murder (A Kate Fansler Mystery)', 'https://images.isbndb.com/covers/68/65/9780345346865.jpg'), + ('0345352548', 'Sweet Death, Kind Death (A Kate Fansler Novel)', 'https://images.isbndb.com/covers/25/45/9780345352545.jpg'), + ('0671455265', 'A Stitch In Time', 'https://images.isbndb.com/covers/52/62/9780671455262.jpg'), + ('067168356X', 'Something In The Air', 'https://images.isbndb.com/covers/35/66/9780671683566.jpg'), + ('0425169669', 'Steak In Murder (Hemlock Falls Mysteries)', 'https://images.isbndb.com/covers/96/67/9780425169667.jpg'), + ('0425146383', 'A Dash Of Death', 'https://images.isbndb.com/covers/63/85/9780425146385.jpg'), + ('0425163970', 'A Touch Of The Grape (Hemlock Falls Mysteries)', 'https://images.isbndb.com/covers/39/79/9780425163979.jpg'), + ('0425153363', 'Murder Well-Done (Hemlock Falls Mysteries)', 'https://images.isbndb.com/covers/33/69/9780425153369.jpg'), + ('0345371267', 'A Radical Departure', 'https://images.isbndb.com/covers/12/63/9780345371263.jpg'), + ('0804102813', 'Cable Car Murder', 'https://images.isbndb.com/covers/28/10/9780804102810.jpg'), + ('038077030X', 'Miss Zukas And The Library Murders (Miss Zukas Mysteries)', 'https://images.isbndb.com/covers/03/04/9780380770304.jpg'), + ('0449007111', 'In The Last Analysis (Kate Fansler Novels)', 'https://images.isbndb.com/covers/71/12/9780449007112.jpg'), + ('0345354893', 'The Question Of Max (Kate Fansler Novels)', 'https://images.isbndb.com/covers/48/91/9780345354891.jpg'), + ('0449007065', 'The Theban Mysteries (Kate Fansler Novels)', 'https://images.isbndb.com/covers/70/68/9780449007068.jpg'), + ('0553286161', 'The Last Coincidence (Rex Stout''s Nero Wolfe)', 'https://images.isbndb.com/covers/61/68/9780553286168.jpg'), + ('0312141890', 'The It-Doesn''t-Matter Suit', 'https://images.isbndb.com/covers/18/99/9780312141899.jpg'), + ('0553272373', 'The Dead Of Jericho', 'https://images.isbndb.com/covers/23/76/9780553272376.jpg'), + ('0671678949', 'The Crosskiller', 'https://images.isbndb.com/covers/89/44/9780671678944.jpg'), + ('038075908X', 'Werewolf Come Home (Fifth Grade Monsters)', 'https://images.isbndb.com/covers/90/88/9780380759088.jpg'), + ('0671870890', 'There''s A Snake In The Toilet: There''s A Snake In The Toilet', 'https://images.isbndb.com/covers/08/98/9780671870898.jpg'), + ('0140340203', 'The Witches', 'https://images.isbndb.com/covers/02/04/9780140340204.jpg'), + ('0553481800', 'The Dollhouse', 'https://images.isbndb.com/covers/18/08/9780553481808.jpg'), + ('0964102404', 'Pregnant Fathers: Entering Parenthood Together', 'https://images.isbndb.com/covers/24/08/9780964102408.jpg'), + ('0385292090', 'Infants And Mothers: Differences In Development', 'https://images.isbndb.com/covers/20/92/9780385292092.jpg'), + ('1558320547', 'You And Your Newborn Baby: A Guide To The First Months After Birth (Non)', 'https://images.isbndb.com/covers/05/43/9781558320543.jpg'), + ('0394553756', 'The First Six Months', 'https://images.isbndb.com/covers/37/57/9780394553757.jpg'), + ('0890875197', 'You Are Your Child''s First Teacher', 'https://images.isbndb.com/covers/51/93/9780890875193.jpg'), + ('0440506344', 'Great Beginnings', 'https://images.isbndb.com/covers/63/48/9780440506348.jpg'), + ('0689823908', 'Camp Out (Rug Rats Ready-to-Read, Level 1)', 'https://images.isbndb.com/covers/39/09/9780689823909.jpg'), + ('0671747827', 'Jeremy Thatcher, Dragon Hatcher', 'https://images.isbndb.com/covers/78/24/9780671747824.jpg'), + ('0553542311', 'April Ghouls'' Day', 'https://images.isbndb.com/covers/23/18/9780553542318.jpg'), + ('0440418283', 'Dr. Dolittle 2 Novelization', 'https://images.isbndb.com/covers/82/83/9780440418283.jpg'), + ('0684803860', 'The Daughter Of Time', 'https://images.isbndb.com/covers/38/69/9780684803869.jpg'), + ('0671826786', 'Glendower Legacy', 'https://images.isbndb.com/covers/67/89/9780671826789.jpg'), + ('0671464809', 'Murder Makes The Wheels Go Round', 'https://images.isbndb.com/covers/48/06/9780671464806.jpg'), + ('0671455303', 'Banking On Death', 'https://images.isbndb.com/covers/53/09/9780671455309.jpg'), + ('0671455273', 'Sweet And Low', 'https://images.isbndb.com/covers/52/79/9780671455279.jpg'), + ('0671464140', 'Accounting For Murder', 'https://images.isbndb.com/covers/41/41/9780671464141.jpg'), + ('0671456393', 'Pick Up Sticks', 'https://images.isbndb.com/covers/63/99/9780671456399.jpg'), + ('067145529X', 'Murder To Go', 'https://images.isbndb.com/covers/52/93/9780671455293.jpg'), + ('0671464817', 'By Hook Or By Crook', 'https://images.isbndb.com/covers/48/13/9780671464813.jpg'), + ('0451156234', 'The Midwife (Signet)', 'https://images.isbndb.com/covers/62/35/9780451156235.jpg'), + ('0140108718', 'Being Invisible (Contemporary American Fiction)', 'https://images.isbndb.com/covers/87/12/9780140108712.jpg'), + ('034537682X', 'Everything You Have Is Mine', 'https://images.isbndb.com/covers/68/24/9780345376824.jpg'), + ('0345382692', 'I''ll Be Leaving You Always', 'https://images.isbndb.com/covers/26/96/9780345382696.jpg'), + ('0440414555', 'Moving Mama To Town', 'https://images.isbndb.com/covers/45/51/9780440414551.jpg'), + ('0783890036', 'Henrietta Who (Thorndike British Favorites)', 'https://images.isbndb.com/covers/00/36/9780783890036.jpg'), + ('1572701625', 'The Stately Home Murder (An Inspector C. D. Sloan Mystery)', 'https://images.isbndb.com/covers/16/25/9781572701625.jpg'), + ('0440160162', 'Murder In The Title', 'https://images.isbndb.com/covers/01/68/9780440160168.jpg'), + ('0002215810', 'Lord Of The Far Island', 'https://images.isbndb.com/covers/58/17/9780002215817.jpg'), + ('0440207452', 'The Sirens Sang Of Murder', 'https://images.isbndb.com/covers/74/50/9780440207450.jpg'), + ('0425084736', 'The Loves Of Harry Dancer', 'https://images.isbndb.com/covers/47/31/9780425084731.jpg'), + ('042510429X', 'The Third Deadly Sin (The Deadly Sins Novels)', 'https://images.isbndb.com/covers/42/93/9780425104293.jpg'), + ('0425079600', 'The Passion Of Molly T.', 'https://images.isbndb.com/covers/96/07/9780425079607.jpg'), + ('0425094731', 'The Dream Lover', 'https://images.isbndb.com/covers/47/30/9780425094730.jpg'), + ('0425104303', 'The Sixth Commandment', 'https://images.isbndb.com/covers/43/09/9780425104309.jpg'), + ('0380751453', 'Tales Of The Wolf', 'https://images.isbndb.com/covers/14/57/9780380751457.jpg'), + ('0425100057', 'The Eighth Commandment', 'https://images.isbndb.com/covers/00/59/9780425100059.jpg'), + ('0679861807', 'ONE SLIMY SUMMER (Shadow Zone)', 'https://images.isbndb.com/covers/18/05/9780679861805.jpg'), + ('0440402263', 'The Pee Wee Jubilee (Pee Wee Scouts)', 'https://images.isbndb.com/covers/22/68/9780440402268.jpg'), + ('0440400104', 'Pee Wee Scouts: Cookies And Crutches (A Stepping Stone Book(TM))', 'https://images.isbndb.com/covers/01/03/9780440400103.jpg'), + ('0440400635', 'Lucky Dog Days (Pee Wee Scouts)', 'https://images.isbndb.com/covers/06/39/9780440400639.jpg'), + ('0590226363', 'Zombies Don''t Play Soccer (The Adventures Of The Bailey School Kids, #15)', 'https://images.isbndb.com/covers/63/63/9780590226363.jpg'), + ('006440840X', 'The Imp That Ate My Homework', 'https://images.isbndb.com/covers/84/00/9780064408400.jpg'), + ('1561560936', 'Moby Dick', 'https://images.isbndb.com/covers/09/36/9781561560936.jpg'), + ('0802115330', 'Editors On Editing: What Writers Need To Know About What Editors Do', 'https://images.isbndb.com/covers/53/31/9780802115331.jpg'), + ('0345443802', 'Murder On Capitol Hill (Capital Crimes)', 'https://images.isbndb.com/covers/38/09/9780345443809.jpg'), + ('0393317013', 'Lamb (Norton Paperback Fiction)', 'https://images.isbndb.com/covers/70/15/9780393317015.jpg'), + ('0140177361', 'The Red Pony (Penguin Great Books Of The 20th Century)', 'https://images.isbndb.com/covers/73/67/9780140177367.jpg'), + ('1886746370', 'Harry S. Truman And The Modern American Presidency (Library Of American Biography)', 'https://images.isbndb.com/covers/63/74/9781886746374.jpg'), + ('0449148718', 'The Christening Day Murder (Christine Bennett Mysteries)', 'https://images.isbndb.com/covers/87/16/9780449148716.jpg'), + ('0671206710', 'Backward Shadow', 'https://images.isbndb.com/covers/67/10/9780671206710.jpg'), + ('0679807748', 'Sesame Street Book Of Poetry', 'https://images.isbndb.com/covers/77/42/9780679807742.jpg'), + ('0689821514', 'Blue''s Big Birthday (Blue''s Clues (Simon & Schuster Hardcover))', 'https://images.isbndb.com/covers/15/16/9780689821516.jpg'), + ('0399207589', 'Where''s Spot?', 'https://images.isbndb.com/covers/75/87/9780399207587.jpg'), + ('0525447091', 'Eeyore Has A Birthday', 'https://images.isbndb.com/covers/70/92/9780525447092.jpg'), + ('0886778441', 'River Of Blue Fire (Otherland, Volume 2)', 'https://images.isbndb.com/covers/84/46/9780886778446.jpg'), + ('0883623382', 'Pocket Pal: A Graphic Arts Production Handbook', 'https://images.isbndb.com/covers/33/81/9780883623381.jpg'), + ('0517541998', 'Curators Choice Midwestern', 'https://images.isbndb.com/covers/19/99/9780517541999.jpg'), + ('0916103544', 'Food & Wine Magazine''s Official Wine Guide 2000', 'https://images.isbndb.com/covers/35/45/9780916103545.jpg'), + ('0684837927', 'Angels From Hell: Almost Totally True Tales Of Infernal, And Otherwise Inexplicable, Intervention', 'https://images.isbndb.com/covers/79/25/9780684837925.jpg'), + ('0393301583', 'Civilization And Its Discontents', 'https://images.isbndb.com/covers/15/88/9780393301588.jpg'), + ('0671447610', 'A Certain People: American Jews And Their Lives Today', 'https://images.isbndb.com/covers/76/18/9780671447618.jpg'), + ('0812882962', 'The Word Of A Gentleman', 'https://images.isbndb.com/covers/29/64/9780812882964.jpg'), + ('0374319693', 'The Education Of Robert Nifkin', 'https://images.isbndb.com/covers/96/94/9780374319694.jpg'), + ('087596480X', 'Fight Fat: Secrets To Successful Weight Loss (Women''s Edge Health Enhancement Guides)', 'https://images.isbndb.com/covers/48/05/9780875964805.jpg'), + ('1579545637', 'Growing Younger: Breakthrough Age-Defying Secrets', 'https://images.isbndb.com/covers/56/35/9781579545635.jpg'), + ('0449909549', 'Mrs. Pollifax Pursued', 'https://images.isbndb.com/covers/95/46/9780449909546.jpg'), + ('0345309049', 'Making Peace With Your Parents', 'https://images.isbndb.com/covers/90/44/9780345309044.jpg'), + ('0451197011', 'American Dreams', 'https://images.isbndb.com/covers/70/16/9780451197016.jpg'), + ('0805779612', 'The Red Badge Of Courage: Redefining The Hero (Twayne''s Masterwork Studies)', 'https://images.isbndb.com/covers/96/15/9780805779615.jpg'), + ('0802130798', 'Four Plays: The Bald Soprano; The Lesson; Jack, Or The Submission; The Chairs', 'https://images.isbndb.com/covers/07/92/9780802130792.jpg'), + ('0316769576', 'Raise High The Roof Beam, Carpenters And Seymour: An Introduction', 'https://images.isbndb.com/covers/95/70/9780316769570.jpg'), + ('0316769029', 'Franny And Zooey', 'https://images.isbndb.com/covers/90/20/9780316769020.jpg'), + ('0785728473', 'Hawaii Hawaii', 'https://images.isbndb.com/covers/84/74/9780785728474.jpg'), + ('0802730191', 'Suicide Most Foul', 'https://images.isbndb.com/covers/01/90/9780802730190.jpg'), + ('0452272580', 'A Not Entirely Benign Procedure: Four Years As A Medical Student', 'https://images.isbndb.com/covers/25/83/9780452272583.jpg'), + ('0192833588', 'Sense And Sensibility (World''s Classics)', 'https://images.isbndb.com/covers/35/87/9780192833587.jpg'), + ('0449909174', 'Conduct Unbecoming', 'https://images.isbndb.com/covers/91/71/9780449909171.jpg'), + ('0684802678', 'How To Avoid Housework: Tips, Hints, And Secrets On How To Have A Spotless Home', 'https://images.isbndb.com/covers/26/71/9780684802671.jpg'), + ('0671007858', 'Poetry Of John Keats (Monarch Notes)', 'https://images.isbndb.com/covers/78/50/9780671007850.jpg'), + ('067100610X', 'Charles Dicken''s Great Expectations (Monarch Notes)', 'https://images.isbndb.com/covers/61/05/9780671006105.jpg'), + ('0671005022', 'Homer''s Odyssey (Monarch Notes)', 'https://images.isbndb.com/covers/50/23/9780671005023.jpg'), + ('0671007238', 'Man And Superman (Monarch Notes)', 'https://images.isbndb.com/covers/72/32/9780671007232.jpg'), + ('0822010933', 'Machiavelli''s The Prince (Cliffs Notes)', 'https://images.isbndb.com/covers/09/37/9780822010937.jpg'), + ('0822007088', 'Oedipus The King, Oedipus At Colonus, And Antigone (Cliffs Notes)', 'https://images.isbndb.com/covers/70/81/9780822007081.jpg'), + ('0452256178', 'Deliciously Low: Low-Sodium, Low-Fat, Low Cholesterol, Low-Sugar Cooking (Plume)', 'https://images.isbndb.com/covers/61/70/9780452256170.jpg'), + ('0399510737', 'Hold The Fat, Sugar And Salt', 'https://images.isbndb.com/covers/07/31/9780399510731.jpg'), + ('0802135501', 'Meeting The Master: Stories About Mastery, Slavery And The Darker Side Of Desire', 'https://images.isbndb.com/covers/55/06/9780802135506.jpg'), + ('1556708556', 'Portraits Of Hope: Conquering Breast Cancer : 52 Inspirational Stories Of Strength', 'https://images.isbndb.com/covers/85/58/9781556708558.jpg'), + ('0140251383', 'Murder In A Hot Flash: A Charlie Greene Mystery', 'https://images.isbndb.com/covers/13/88/9780140251388.jpg'), + ('0688155502', 'Cromartie V. The God Shiva: Acting Through The Government Of India', 'https://images.isbndb.com/covers/55/06/9780688155506.jpg'), + ('1860462588', 'Silk', 'https://images.isbndb.com/covers/25/80/9781860462580.jpg'), + ('0440226937', 'For Mike', 'https://images.isbndb.com/covers/69/32/9780440226932.jpg'), + ('0312155638', 'The Lady Who Liked Clean Restrooms: The Chronicle Of One Of The Strangest Stories Ever To Be Rumoured About Around New York', 'https://images.isbndb.com/covers/56/36/9780312155636.jpg'), + ('0446525596', 'Let''s Go To The Videotape: All The Plays And Replays From My Life In Sports', 'https://images.isbndb.com/covers/55/96/9780446525596.jpg'), + ('089281781X', 'Gesundheit!: Bringing Good Health To You, The Medical System, And Society Through Physician Service, Complementary Therapies, Humor, And Joy', 'https://images.isbndb.com/covers/78/18/9780892817818.jpg'), + ('0140246142', 'Snapshots', 'https://images.isbndb.com/covers/61/48/9780140246148.jpg'), + ('0394726421', 'The Bushwhacked Piano', 'https://images.isbndb.com/covers/64/27/9780394726427.jpg'), + ('0312968892', 'Evil Twins: Chilling True Stories Of Twins, Killing And Insanity (St. Martin''s True Crime Library)', 'https://images.isbndb.com/covers/88/92/9780312968892.jpg'), + ('0671010123', 'Final Jeopardy (Alexandra Cooper Mysteries)', 'https://images.isbndb.com/covers/01/26/9780671010126.jpg'), + ('0425143570', 'Thunder Point (Sean Dillon)', 'https://images.isbndb.com/covers/35/75/9780425143575.jpg'), + ('0517524171', 'Cut: The Unseen Cinema', 'https://images.isbndb.com/covers/41/76/9780517524176.jpg'), + ('0553351370', 'Fire In The Belly: On Being A Man', 'https://images.isbndb.com/covers/13/78/9780553351378.jpg'), + ('0345381645', 'The Vanished Child', 'https://images.isbndb.com/covers/16/44/9780345381644.jpg'), + ('0789200015', 'Men Without Ties', 'https://images.isbndb.com/covers/00/13/9780789200013.jpg'), + ('1582431108', 'Here But Not Here: My Life With William Shawn And The New Yorker', 'https://images.isbndb.com/covers/11/09/9781582431109.jpg'), + ('0061011843', 'Driving Under The Affluence', 'https://images.isbndb.com/covers/18/49/9780061011849.jpg'), + ('0786011386', 'Help Wanted/Aviso Oportuno (Encanto)', 'https://images.isbndb.com/covers/13/84/9780786011384.jpg'), + ('0786010576', 'Faith In You/Tengo Fe En Ti (Encanto (English))', 'https://images.isbndb.com/covers/05/78/9780786010578.jpg'), + ('970690042X', 'Diario De Tlauhquechol: La Magia De La Vida En Tenochtitlan En Voz De Una Joven Mexica (Diarios Mexicanos) (Spanish Edition)', 'https://images.isbndb.com/covers/04/25/9789706900425.jpg'), + ('0812928423', 'The Secret Language Of Eating Disorders: How You Can Understand And Work To Cure Anorexia And Bulimia', 'https://images.isbndb.com/covers/84/26/9780812928426.jpg'), + ('0609801880', 'The Politically Correct Guide To American History', 'https://images.isbndb.com/covers/18/88/9780609801888.jpg'), + ('0679725768', 'The Mezzanine', 'https://images.isbndb.com/covers/57/63/9780679725763.jpg'), + ('0140366679', 'White Fang (Puffin Classics)', 'https://images.isbndb.com/covers/66/79/9780140366679.jpg'), + ('031211933X', 'Zombification: Stories From National Public Radio', 'https://images.isbndb.com/covers/93/31/9780312119331.jpg'), + ('0671686216', 'Spellbound: Growing Up In God''s Country', 'https://images.isbndb.com/covers/62/15/9780671686215.jpg'), + ('0553282611', 'The Girl In The Box', 'https://images.isbndb.com/covers/26/10/9780553282610.jpg'), + ('0809254999', 'Bodybuilding For Beginners', 'https://images.isbndb.com/covers/49/96/9780809254996.jpg'), + ('0140243917', 'Whores Of Lost Atlantis: A Novel', 'https://images.isbndb.com/covers/39/18/9780140243918.jpg'), + ('0385315147', 'Smilla''s Sense Of Snow', 'https://images.isbndb.com/covers/51/42/9780385315142.jpg'), + ('0373832877', 'Lone Wolf (Stolen Moments)', 'https://images.isbndb.com/covers/28/73/9780373832873.jpg'), + ('0684832860', 'SANCTUARY: A Tale Of Life In The Woods', 'https://images.isbndb.com/covers/28/69/9780684832869.jpg'), + ('067176960X', 'The Commanders', 'https://images.isbndb.com/covers/96/04/9780671769604.jpg'), + ('0030195160', 'A Plan For Writing', 'https://images.isbndb.com/covers/51/67/9780030195167.jpg'), + ('0553212257', 'The Sea Wolf', 'https://images.isbndb.com/covers/22/59/9780553212259.jpg'), + ('0070439915', 'The Short Prose Reader', 'https://images.isbndb.com/covers/99/17/9780070439917.jpg'), + ('0393091198', 'The Norton Introduction To Literature', 'https://images.isbndb.com/covers/11/99/9780393091199.jpg'), + ('0449219615', 'Farriers'' Lane', 'https://images.isbndb.com/covers/96/14/9780449219614.jpg'), + ('0139705821', 'Writing Themes About Literature', 'https://images.isbndb.com/covers/58/23/9780139705823.jpg'), + ('0688052398', 'A Rhetoric And Composition Handbook: (original Title, A Rhetoric And Handbook)', 'https://images.isbndb.com/covers/23/93/9780688052393.jpg'), + ('0140131558', 'The New York Trilogy: City Of Glass; Ghosts; The Locked Room (Contemporary American Fiction Series)', 'https://images.isbndb.com/covers/15/50/9780140131550.jpg'), + ('066991066X', 'The Shape Of Fiction', 'https://images.isbndb.com/covers/06/67/9780669910667.jpg'), + ('0393090477', 'Basic College Writing', 'https://images.isbndb.com/covers/04/75/9780393090475.jpg'), + ('0380811995', 'Rules Of Attraction (Governess Brides, Book 3)', 'https://images.isbndb.com/covers/19/91/9780380811991.jpg'), + ('0449003884', 'The Bride Finder', 'https://images.isbndb.com/covers/38/86/9780449003886.jpg'), + ('0380794802', 'One True Love', 'https://images.isbndb.com/covers/48/05/9780380794805.jpg'), + ('0449222802', 'Ask Me No Questions', 'https://images.isbndb.com/covers/28/05/9780449222805.jpg'), + ('0515105910', 'Jade', 'https://images.isbndb.com/covers/59/19/9780515105919.jpg'), + ('0875427391', 'The Crafted Cup: Ritual Mysteries Of The Goddess And The Grail', 'https://images.isbndb.com/covers/73/93/9780875427393.jpg'), + ('0446360945', 'Cardinal Virtues', 'https://images.isbndb.com/covers/09/44/9780446360944.jpg'), + ('0553581856', 'A Kiss To Remember', 'https://images.isbndb.com/covers/18/50/9780553581850.jpg'), + ('038082079X', 'An Affair To Remember (Talisman Ring)', 'https://images.isbndb.com/covers/07/95/9780380820795.jpg'), + ('0671873164', 'Pirates', 'https://images.isbndb.com/covers/31/65/9780671873165.jpg'), + ('0515129747', 'Prince Of Charming (Magical Love)', 'https://images.isbndb.com/covers/97/48/9780515129748.jpg'), + ('0380809273', 'The Dangerous Lord (Lord Trilogy, Book 3)', 'https://images.isbndb.com/covers/92/71/9780380809271.jpg'), + ('0380809281', 'A Dangerous Love (Swanlea Spinsters, Book 1)', 'https://images.isbndb.com/covers/92/88/9780380809288.jpg'), + ('0380818043', 'After The Abduction (Swanlea Spinsters, Book 3)', 'https://images.isbndb.com/covers/80/44/9780380818044.jpg'), + ('0380818035', 'A Notorious Love (Swanlea Spinsters, Book 2)', 'https://images.isbndb.com/covers/80/37/9780380818037.jpg'), + ('0380797488', 'The Forbidden Lord (Lord Trilogy, Book 2)', 'https://images.isbndb.com/covers/74/86/9780380797486.jpg'), + ('0060514051', 'How To Treat A Lady (Talisman Ring)', 'https://images.isbndb.com/covers/40/51/9780060514051.jpg'), + ('0380820803', 'Confessions Of A Scoundrel', 'https://images.isbndb.com/covers/08/01/9780380820801.jpg'), + ('0380815265', 'The Seduction Of Sara', 'https://images.isbndb.com/covers/52/65/9780380815265.jpg'), + ('0380798867', 'Taming Rafe', 'https://images.isbndb.com/covers/88/65/9780380798865.jpg'), + ('0380810719', 'The Abduction Of Julia', 'https://images.isbndb.com/covers/07/10/9780380810710.jpg'), + ('0515133620', 'Tapestry', 'https://images.isbndb.com/covers/36/22/9780515133622.jpg'), + ('0821765744', 'Like No Other (Zebra Splendor Historical Romances)', 'https://images.isbndb.com/covers/57/46/9780821765746.jpg'), + ('0380820838', 'London''s Perfect Scoundrel (Lessons In Love, Book 2)', 'https://images.isbndb.com/covers/08/32/9780380820832.jpg'), + ('0380809168', 'Reforming A Rake (With This Ring, Book 1)', 'https://images.isbndb.com/covers/91/65/9780380809165.jpg'), + ('0380818507', 'A Matter Of Scandal (With This Ring, Book 3) (Vol 3)', 'https://images.isbndb.com/covers/85/01/9780380818501.jpg'), + ('038082082X', 'The Rake (Lessons In Love, Book 1)', 'https://images.isbndb.com/covers/08/25/9780380820825.jpg'), + ('0394571819', 'Don''t Bend Over In The Garden, Granny, You Know Them Taters Got Eyes', 'https://images.isbndb.com/covers/18/12/9780394571812.jpg'), + ('0380802902', 'Never Kiss A Duke', 'https://images.isbndb.com/covers/29/06/9780380802906.jpg'), + ('0441153135', 'Door In The Hedge', 'https://images.isbndb.com/covers/31/38/9780441153138.jpg'), + ('0451166027', 'The Rogue And The Runaway (Signet Regency Romance)', 'https://images.isbndb.com/covers/60/29/9780451166029.jpg'), + ('0380767848', 'Lord Of My Heart', 'https://images.isbndb.com/covers/78/47/9780380767847.jpg'), + ('0590402803', 'Birth Of The Firebringer', 'https://images.isbndb.com/covers/28/04/9780590402804.jpg'), + ('006050353X', 'Her Scandalous Intentions', 'https://images.isbndb.com/covers/35/36/9780060503536.jpg'), + ('0671744216', 'The Secret', 'https://images.isbndb.com/covers/42/12/9780671744212.jpg'), + ('0445209402', 'Firedrake: The Dragonrealm', 'https://images.isbndb.com/covers/94/04/9780445209404.jpg'), + ('0380789337', 'Everything And The Moon', 'https://images.isbndb.com/covers/93/37/9780380789337.jpg'), + ('0312998368', 'Night Pleasures (Dark-Hunter, Book 2)', 'https://images.isbndb.com/covers/83/63/9780312998363.jpg'), + ('0553252836', 'Summer Of Unicorn', 'https://images.isbndb.com/covers/28/35/9780553252835.jpg'), + ('0345353676', 'Last Unicorn', 'https://images.isbndb.com/covers/36/72/9780345353672.jpg'), + ('0449210235', 'Property Of', 'https://images.isbndb.com/covers/02/39/9780449210239.jpg'), + ('0802135412', 'Briar Rose (Coover, Robert)', 'https://images.isbndb.com/covers/54/14/9780802135414.jpg'), + ('0393323145', 'The Seven Daughters Of Eve: The Science That Reveals Our Genetic Ancestry', 'https://images.isbndb.com/covers/31/46/9780393323146.jpg'), + ('0670892475', 'Treasure At The Heart Of The Tanglewood (Action Packs)', 'https://images.isbndb.com/covers/24/71/9780670892471.jpg'), + ('0425118312', 'Witch', 'https://images.isbndb.com/covers/83/13/9780425118313.jpg'), + ('0441006256', 'Freedom''s Challenge', 'https://images.isbndb.com/covers/62/50/9780441006250.jpg'), + ('0439062810', 'Sunchaser''s Quest (Unicorns Of Balinor)', 'https://images.isbndb.com/covers/28/17/9780439062817.jpg'), + ('0812558251', 'Snow White And Rose Red (The Fairy Tale Series)', 'https://images.isbndb.com/covers/82/58/9780812558258.jpg'), + ('0812564170', 'Encyclopedia Of Xanth (A Crossroads Adventure In The World Of Piers Anthony''s Xanth)', 'https://images.isbndb.com/covers/41/74/9780812564174.jpg'), + ('0449149579', 'Kiss Of The Vampire', 'https://images.isbndb.com/covers/95/77/9780449149577.jpg'), + ('0345379845', 'Crystal Line (Crystal, Vol. 3)', 'https://images.isbndb.com/covers/98/49/9780345379849.jpg'), + ('0684811138', 'Good Cats, Bad Habits: The Complete A To Z Guide For When Your Cat Misbehaves', 'https://images.isbndb.com/covers/11/30/9780684811130.jpg'), + ('0441005837', 'Rose Daughter', 'https://images.isbndb.com/covers/58/33/9780441005833.jpg'), + ('0671753673', 'Hottest Blood', 'https://images.isbndb.com/covers/36/72/9780671753672.jpg'), + ('0380702878', 'Unicorn Variations', 'https://images.isbndb.com/covers/28/79/9780380702879.jpg'), + ('0152008691', 'The Forgotten Beasts Of Eld', 'https://images.isbndb.com/covers/86/97/9780152008697.jpg'), + ('0879516976', 'The Book Of The Damned (Secret Books Of Paradys)', 'https://images.isbndb.com/covers/69/70/9780879516970.jpg'), + ('0879516984', 'The Book Of The Beast', 'https://images.isbndb.com/covers/69/87/9780879516987.jpg'), + ('0843947470', 'High Intensity', 'https://images.isbndb.com/covers/74/72/9780843947472.jpg'), + ('0505525526', 'Single White Vampire (Argeneau Vampires, Book 3)', 'https://images.isbndb.com/covers/55/29/9780505525529.jpg'), + ('0380776170', 'The Last Hellion', 'https://images.isbndb.com/covers/61/77/9780380776177.jpg'), + ('0440236746', 'Bridal Favors', 'https://images.isbndb.com/covers/67/40/9780440236740.jpg'), + ('0536597073', 'The Masai: A Proud People', 'https://images.isbndb.com/covers/70/76/9780536597076.jpg'), + ('0030226864', 'The Cheyennes: Indians Of The Great Plains (Case Studies In Cultural Anthropology)', 'https://images.isbndb.com/covers/68/61/9780030226861.jpg'), + ('0155053272', 'Yanomamo - Yanomamö (Case Studies In Cultural Anthropology)', 'https://images.isbndb.com/covers/32/74/9780155053274.jpg'), + ('0875650546', 'The Day The Cowboys Quit (Texas Tradition Series)', 'https://images.isbndb.com/covers/05/48/9780875650548.jpg'), + ('0321090934', 'Charles A. Lindbergh: Lone Eagle (2nd Edition)', 'https://images.isbndb.com/covers/09/35/9780321090935.jpg'), + ('0072822805', 'Taking Sides: Clashing Views On Controversial Political Issues', 'https://images.isbndb.com/covers/28/09/9780072822809.jpg'), + ('0843948167', 'Lady Pirate', 'https://images.isbndb.com/covers/81/65/9780843948165.jpg'), + ('0671865846', 'Perfect Soldier', 'https://images.isbndb.com/covers/58/49/9780671865849.jpg'), + ('0886779227', 'Single White Vampire Seeks Same', 'https://images.isbndb.com/covers/92/21/9780886779221.jpg'), + ('0060098538', 'Black Silk', 'https://images.isbndb.com/covers/85/37/9780060098537.jpg'), + ('038081806X', 'Someone Irresistible (Avon Romantic Treasure)', 'https://images.isbndb.com/covers/80/68/9780380818068.jpg'), + ('044900516X', 'Silver Lining', 'https://images.isbndb.com/covers/51/63/9780449005163.jpg'), + ('0671664247', 'Hot Blood: Tales Of Provocative Horror', 'https://images.isbndb.com/covers/42/44/9780671664244.jpg'), + ('0375806776', 'The Castle In The Attic', 'https://images.isbndb.com/covers/67/73/9780375806773.jpg'), + ('0345328396', 'Red Fox', 'https://images.isbndb.com/covers/83/97/9780345328397.jpg'), + ('0451407105', 'The Angel''s Crime', 'https://images.isbndb.com/covers/71/08/9780451407108.jpg'), + ('0505522551', 'The Last Viking', 'https://images.isbndb.com/covers/25/59/9780505522559.jpg'), + ('0380761505', 'Only In Your Arms', 'https://images.isbndb.com/covers/15/00/9780380761500.jpg'), + ('038077013X', 'Then Came You', 'https://images.isbndb.com/covers/01/37/9780380770137.jpg'), + ('0451149203', 'Point Blank (Signet)', 'https://images.isbndb.com/covers/92/06/9780451149206.jpg'), + ('0425140946', 'Terminal', 'https://images.isbndb.com/covers/09/49/9780425140949.jpg'), + ('0425093891', 'The Sentinel (Masterworks Of Science Fiction And Fantasy)', 'https://images.isbndb.com/covers/38/94/9780425093894.jpg'), + ('0451149378', 'The Other Side Of The Sky', 'https://images.isbndb.com/covers/93/74/9780451149374.jpg'), + ('0671793896', 'Rules Of Evidence', 'https://images.isbndb.com/covers/38/90/9780671793890.jpg'), + ('0385469608', 'Earth Song, Sky Spirit', 'https://images.isbndb.com/covers/96/09/9780385469609.jpg'), + ('0919891276', 'Book Of Alternative Services Of The Anglican Church Of Canada', 'https://images.isbndb.com/covers/12/72/9780919891272.jpg'), + ('0138876541', 'Nature''s Prozac', 'https://images.isbndb.com/covers/65/48/9780138876548.jpg'), + ('0853980055', 'Christ And Baha''u''llah', 'https://images.isbndb.com/covers/00/56/9780853980056.jpg'), + ('0316507415', 'How Good Do We Have To Be?: A New Understanding Of Guilt And Forgiveness', 'https://images.isbndb.com/covers/74/17/9780316507417.jpg'), + ('0307136566', 'Guide To Field Identification Of The Birds Of North America', 'https://images.isbndb.com/covers/65/65/9780307136565.jpg'), + ('0451163095', 'Hoyle''s Rules Of Games: Second Revised Edition (Signet)', 'https://images.isbndb.com/covers/30/97/9780451163097.jpg'), + ('0394504321', 'National Audubon Society Field Guide To North American Wildflowers (Eastern Region)', 'https://images.isbndb.com/covers/43/22/9780394504322.jpg'), + ('0060972920', 'Getting The Love You Want: A Guide For Couples', 'https://images.isbndb.com/covers/29/29/9780060972929.jpg'), + ('0394800869', 'Thidwick The Big-Hearted Moose (Classic Seuss)', 'https://images.isbndb.com/covers/08/68/9780394800868.jpg'), + ('0553353896', 'Homecoming: Reclaiming And Championing Your Inner Child', 'https://images.isbndb.com/covers/38/91/9780553353891.jpg'), + ('068483720X', 'Your Mental Health: A Layman''s Guide To The Psychiatrist''s Bible', 'https://images.isbndb.com/covers/72/08/9780684837208.jpg'), + ('1889461024', 'The Last Word: Tombstone Wit And Wisdom', 'https://images.isbndb.com/covers/10/21/9781889461021.jpg'), + ('0306802538', 'The 900 Days: The Siege Of Leningrad (A Da Capo Paperback)', 'https://images.isbndb.com/covers/25/39/9780306802539.jpg'), + ('0898621283', 'Mind Over Mood: Change How You Feel By Changing The Way You Think', 'https://images.isbndb.com/covers/12/80/9780898621280.jpg'), + ('0771033737', 'I Am A Sensation', 'https://images.isbndb.com/covers/37/35/9780771033735.jpg'), + ('0062701908', 'The Highly Selective Dictionary For The Extraordinarily Literate', 'https://images.isbndb.com/covers/19/09/9780062701909.jpg'), + ('0062700162', 'The Highly Selective Thesaurus For The Extraordinarily Literate', 'https://images.isbndb.com/covers/01/62/9780062700162.jpg'), + ('0345339428', 'I Never Know What To Say: How To Help Your Family And Friends Cope With Tragedy', 'https://images.isbndb.com/covers/94/23/9780345339423.jpg'), + ('0394700058', 'The Sound And The Fury', 'https://images.isbndb.com/covers/00/52/9780394700052.jpg'), + ('0316507350', 'To Life!: A Celebration Of Jewish Being And Thinking', 'https://images.isbndb.com/covers/73/56/9780316507356.jpg'), + ('0425132110', 'Conquering Bad Dreams & Nightmares : A Guide To Understanding, Interpretation & Cure', 'https://images.isbndb.com/covers/21/11/9780425132111.jpg'), + ('0671680277', 'Who Needs God', 'https://images.isbndb.com/covers/02/75/9780671680275.jpg'), + ('1572231408', 'Garish Gardens Outlandish Lawns', 'https://images.isbndb.com/covers/14/05/9781572231405.jpg'), + ('0375500316', 'Even The Stars Look Lonesome', 'https://images.isbndb.com/covers/03/12/9780375500312.jpg'), + ('059084475X', 'We Are Witnesses: Five Diaries Of Teenagers Who Died In The Holocaust', 'https://images.isbndb.com/covers/47/58/9780590844758.jpg'), + ('0553374524', 'The Intelligence Of Dogs: A Guide To The Thoughts, Emotions, And Inner Lives Of Our Canine Companions', 'https://images.isbndb.com/covers/45/20/9780553374520.jpg'), + ('0394712390', 'Flags In The Dust: The Complete Text Of Faulkner''s Third Novel, Which Appeared In A Cut Version As Sartoris', 'https://images.isbndb.com/covers/23/90/9780394712390.jpg'), + ('3548254152', 'Duddits: Dreamcatcher', 'https://images.isbndb.com/covers/41/59/9783548254159.jpg'), + ('3203751046', 'Das Schicksal Der Pamir', 'https://images.isbndb.com/covers/10/47/9783203751047.jpg'), + ('0140154078', 'The Music Of Chance', 'https://images.isbndb.com/covers/40/78/9780140154078.jpg'), + ('3596147239', 'Daheim Unterwegs', 'https://images.isbndb.com/covers/72/36/9783596147236.jpg'), + ('3499131706', 'Sieben Sekunden', 'https://images.isbndb.com/covers/17/07/9783499131707.jpg'), + ('3499136899', 'Die Namen', 'https://images.isbndb.com/covers/68/94/9783499136894.jpg'), + ('3466343755', 'Die Kunst Der Ayurvedischen Massage: Vitalität Und Entspannung Für Körper Und Seele', 'https://images.isbndb.com/covers/37/51/9783466343751.jpg'), + ('3442723302', 'Die Rote Couch', 'https://images.isbndb.com/covers/33/00/9783442723300.jpg'), + ('3442446783', 'Das Lazaruskind.', 'https://images.isbndb.com/covers/67/80/9783442446780.jpg'), + ('3596121477', 'Die Sieben Dämonen', 'https://images.isbndb.com/covers/14/72/9783596121472.jpg'), + ('325721605X', 'Eine Mittelgewichts - Ehe', 'https://images.isbndb.com/covers/60/59/9783257216059.jpg'), + ('0671853414', 'Trauma Pb', 'https://images.isbndb.com/covers/34/19/9780671853419.jpg'), + ('0446341754', 'Other Side Of Midnight', 'https://images.isbndb.com/covers/17/52/9780446341752.jpg'), + ('0446341851', 'Master Of The Game', 'https://images.isbndb.com/covers/18/51/9780446341851.jpg'), + ('0553249169', 'The Sound Of Thunder', 'https://images.isbndb.com/covers/91/63/9780553249163.jpg'), + ('0671464043', 'Whip Hand', 'https://images.isbndb.com/covers/40/42/9780671464042.jpg'), + ('067150732X', 'TRIAL RUN', 'https://images.isbndb.com/covers/73/29/9780671507329.jpg'), + ('0439354951', 'Scooby-Doo The Movie!', 'https://images.isbndb.com/covers/49/50/9780439354950.jpg'), + ('0553487728', 'Wings Of War (Justice League)', 'https://images.isbndb.com/covers/77/25/9780553487725.jpg'), + ('0515115649', 'The Cat Who Came To Breakfast', 'https://images.isbndb.com/covers/56/42/9780515115642.jpg'), + ('0812564596', 'The Enemy Way: An Ella Clah Novel (Ella Clah Novels)', 'https://images.isbndb.com/covers/45/94/9780812564594.jpg'), + ('0451192303', 'Between A Wok And A Hard Place (Pennsylvania Dutch Mystery)', 'https://images.isbndb.com/covers/23/01/9780451192301.jpg'), + ('0425185788', 'The Thunder Keeper (A Wind River Reservation Myste)', 'https://images.isbndb.com/covers/57/80/9780425185780.jpg'), + ('0446405264', 'Twenty Blue Devils (Gideon Oliver Mysteries)', 'https://images.isbndb.com/covers/52/63/9780446405263.jpg'), + ('0380792540', 'So Faux, So Good (A Den Of Antiquity Mystery)', 'https://images.isbndb.com/covers/25/42/9780380792542.jpg'), + ('0671222473', 'Simon & Schuster''s Guide To Plants And Flowers', 'https://images.isbndb.com/covers/24/75/9780671222475.jpg'), + ('0812585658', 'The Year Of The Lucy', 'https://images.isbndb.com/covers/56/50/9780812585650.jpg'), + ('0671674269', 'Star Trek II: Wrath Of Khan', 'https://images.isbndb.com/covers/42/67/9780671674267.jpg'), + ('0553285084', 'The T-Factor Diet', 'https://images.isbndb.com/covers/50/86/9780553285086.jpg'), + ('0590030205', 'Great Unsolved Crimes', 'https://images.isbndb.com/covers/02/05/9780590030205.jpg'), + ('0425155501', 'Murder In Grub Street (Sir John Fielding)', 'https://images.isbndb.com/covers/55/09/9780425155509.jpg'), + ('0445408642', 'Curses!', 'https://images.isbndb.com/covers/86/47/9780445408647.jpg'), + ('0449149005', 'Deceptive Clarity', 'https://images.isbndb.com/covers/90/03/9780449149003.jpg'), + ('0425191273', 'The Shadow Dancer (A Wind River Reservation Mystery)', 'https://images.isbndb.com/covers/12/79/9780425191279.jpg'), + ('0517146789', 'Barbara Cartland: Three Complete Novels: Marquises & Their Ladies', 'https://images.isbndb.com/covers/67/81/9780517146781.jpg'), + ('0156006510', 'Killing The Dream: James Earl Ray And The Assassination Of Martin Luther King, Jr.', 'https://images.isbndb.com/covers/65/14/9780156006514.jpg'), + ('0449148297', 'A Glancing Light (Chris Norgren Mysteries)', 'https://images.isbndb.com/covers/82/97/9780449148297.jpg'), + ('067152819X', 'Look Away', 'https://images.isbndb.com/covers/81/95/9780671528195.jpg'), + ('0743417038', 'The Wonder Of Girls : Understanding The Hidden Nature Of Our Daughters', 'https://images.isbndb.com/covers/70/37/9780743417037.jpg'), + ('0684838923', 'Dog Eat Dog: A Very Human Book About Dogs And Dog Shows', 'https://images.isbndb.com/covers/89/22/9780684838922.jpg'), + ('1582341338', 'Typhoid Mary: An Urban Historical', 'https://images.isbndb.com/covers/13/30/9781582341330.jpg'), + ('0806943424', 'The Encyclopedia Of Two-Hour Craft Projects', 'https://images.isbndb.com/covers/34/28/9780806943428.jpg'), + ('1414051999', 'The Sea Shack', 'https://images.isbndb.com/covers/19/94/9781414051994.jpg'), + ('0525946535', 'One-Hit Wonder', 'https://images.isbndb.com/covers/65/33/9780525946533.jpg'), + ('1565845609', 'A Transatlantic Love Affair: Letters To Nelson Algren', 'https://images.isbndb.com/covers/56/02/9781565845602.jpg'), + ('1567315267', 'Brush Up Your Poetry!: A Many-Splendoured Tour Of The World''s Best-Loved Verse', 'https://images.isbndb.com/covers/52/64/9781567315264.jpg'), + ('0446530190', 'Cancer Schmancer', 'https://images.isbndb.com/covers/01/94/9780446530194.jpg'), + ('087351288X', 'The Spirit Of St. Louis', 'https://images.isbndb.com/covers/28/86/9780873512886.jpg'), + ('1556610351', 'Love Takes Wing (Love Comes Softly)', 'https://images.isbndb.com/covers/03/56/9781556610356.jpg'), + ('0517575019', 'Dazzle', 'https://images.isbndb.com/covers/50/17/9780517575017.jpg'), + ('0385417926', 'Lady''s Maid', 'https://images.isbndb.com/covers/79/21/9780385417921.jpg'), + ('0671437933', 'What Do Women Want?', 'https://images.isbndb.com/covers/79/30/9780671437930.jpg'), + ('067122591X', 'Attachments', 'https://images.isbndb.com/covers/59/19/9780671225919.jpg'), + ('0312373082', 'The Hills Are Eternal', 'https://images.isbndb.com/covers/30/85/9780312373085.jpg'), + ('0679415793', 'Virgins Of Paradise', 'https://images.isbndb.com/covers/57/94/9780679415794.jpg'), + ('0060153016', 'Brave Brush-Tail Possum (Weekly Reader Children''s Book Club Presents)', 'https://images.isbndb.com/covers/30/14/9780060153014.jpg'), + ('0395339707', 'August', 'https://images.isbndb.com/covers/97/01/9780395339701.jpg'), + ('0446512362', 'The Cardinal Sins', 'https://images.isbndb.com/covers/23/67/9780446512367.jpg'), + ('0800714113', 'Before You Call, I Will Answer', 'https://images.isbndb.com/covers/41/16/9780800714116.jpg'), + ('1557482101', 'For Each New Day', 'https://images.isbndb.com/covers/21/05/9781557482105.jpg'), + ('0890814449', 'The Longing To Be Free', 'https://images.isbndb.com/covers/44/44/9780890814444.jpg'), + ('0840756178', 'Creative Counterpart', 'https://images.isbndb.com/covers/61/76/9780840756176.jpg'), + ('0835806219', 'Living The Psalms: A Confidence For All Seasons', 'https://images.isbndb.com/covers/62/13/9780835806213.jpg'), + ('1561790613', 'Prodigals And Those Who Love Them: Study Guide', 'https://images.isbndb.com/covers/06/16/9781561790616.jpg'), + ('0310372712', 'Lord, I Can Resist Anything But Temptation', 'https://images.isbndb.com/covers/27/14/9780310372714.jpg'), + ('0890815038', 'Out On A Broken Limb', 'https://images.isbndb.com/covers/50/38/9780890815038.jpg'), + ('0892837101', 'The Nazarene: Intimate Insights Into The Savior''s Life', 'https://images.isbndb.com/covers/71/06/9780892837106.jpg'), + ('0890817715', 'Heavenly Fun', 'https://images.isbndb.com/covers/77/11/9780890817711.jpg'), + ('0800751248', 'Christ, The Healer', 'https://images.isbndb.com/covers/12/41/9780800751241.jpg'), + ('0912106344', 'The Holy Spirit And You : A Study-Guide To The Spirit-Filled Life', 'https://images.isbndb.com/covers/63/42/9780912106342.jpg'), + ('0917726405', 'How To Heal The Sick', 'https://images.isbndb.com/covers/64/08/9780917726408.jpg'), + ('0890814317', 'A Forgiving God In An Unforgiving World', 'https://images.isbndb.com/covers/43/14/9780890814314.jpg'), + ('1555131085', 'You Gotta Keep Dancin''', 'https://images.isbndb.com/covers/10/81/9781555131081.jpg'), + ('0891094202', 'Her Name Is Woman, Book 1: 24 Women Of The Bible', 'https://images.isbndb.com/covers/42/03/9780891094203.jpg'), + ('0892744421', 'Unique Woman', 'https://images.isbndb.com/covers/44/28/9780892744428.jpg'), + ('0882077112', 'You Can Be The Wife Of A Happy Husband (An Input Book)', 'https://images.isbndb.com/covers/71/16/9780882077116.jpg'), + ('0912376376', 'My Friend, The Bible', 'https://images.isbndb.com/covers/63/70/9780912376370.jpg'), + ('1576736512', 'Lifestyle Evangelism: Learning To Open Your Life To Those Around You', 'https://images.isbndb.com/covers/65/17/9781576736517.jpg'), + ('0883680912', 'Abide In Christ', 'https://images.isbndb.com/covers/09/19/9780883680919.jpg'), + ('0840732422', 'Good Morning, Holy Spirit', 'https://images.isbndb.com/covers/24/22/9780840732422.jpg'), + ('080246808X', 'Prayer Power Unlimited', 'https://images.isbndb.com/covers/80/86/9780802468086.jpg'), + ('0802403336', 'Overcoming The Adversary: Warfare Praying Against Demon Activity', 'https://images.isbndb.com/covers/33/39/9780802403339.jpg'), + ('0449236129', 'You Can If You Think You Can', 'https://images.isbndb.com/covers/61/23/9780449236123.jpg'), + ('0840734581', 'I Can''T, God Can I Think I''ll Let Him: Daily Devotions For Girls (Serenity Meditation Series For Teens)', 'https://images.isbndb.com/covers/45/87/9780840734587.jpg'), + ('0896938174', 'Spice Up Your Life With Joy', 'https://images.isbndb.com/covers/81/75/9780896938175.jpg'), + ('0310313414', 'Share My Pleasant Stones', 'https://images.isbndb.com/covers/34/10/9780310313410.jpg'), + ('0802413978', 'Christ''s Call To Discipleship', 'https://images.isbndb.com/covers/39/70/9780802413970.jpg'), + ('0896935477', 'Be Victorious (Revelation): In Christ You Are An Overcomer (The BE Series Commentary)', 'https://images.isbndb.com/covers/54/71/9780896935471.jpg'), + ('0307120007', 'Pat The Bunny (Touch And Feel Book)', 'https://images.isbndb.com/covers/00/07/9780307120007.jpg'), + ('0840753608', 'The New Strong''s Exhaustive Concordance Of The Bible: With Main Concordance, Appendix To The Main Concordance, Key Verse Comparison Chart, Dictionary ... Bible, Dictionary Of The Greek Testament', 'https://images.isbndb.com/covers/36/01/9780840753601.jpg'), + ('068481465X', 'Home Comforts: The Art And Science Of Keeping House', 'https://images.isbndb.com/covers/46/50/9780684814650.jpg'), + ('0895775506', 'Reader''s Digest Legal Problem Solver: A Quick-and-Easy Action Guide To The Law', 'https://images.isbndb.com/covers/55/04/9780895775504.jpg'), + ('0877795096', 'Webster''s Ninth New Collegiate Dictionary', 'https://images.isbndb.com/covers/50/94/9780877795094.jpg'), + ('0062700782', 'Emily Post''s Etiquette (16th Edition)', 'https://images.isbndb.com/covers/07/80/9780062700780.jpg'), + ('0800700899', 'An Expository Dictionary Of New Testament Words: With Their Precise Meanings For English Readers,', 'https://images.isbndb.com/covers/08/98/9780800700898.jpg'), + ('0028702506', 'Schirmer Pronouncing Pocket Manual Of Musical Terms', 'https://images.isbndb.com/covers/25/06/9780028702506.jpg'), + ('0801010705', 'Family Celebrations For Christmas', 'https://images.isbndb.com/covers/07/05/9780801010705.jpg'), + ('0840775776', 'From Ashes To Glory: Conflicts And Victories On And Beyond The Football Field', 'https://images.isbndb.com/covers/57/71/9780840775771.jpg'), + ('1551563452', 'Handstiched Book Of Kells Lined Quoniam', 'https://images.isbndb.com/covers/34/59/9781551563459.jpg'), + ('0618446885', 'The Book Of Salt: A Novel', 'https://images.isbndb.com/covers/68/89/9780618446889.jpg'), + ('0373218575', 'Rafe And Jared: The MacKade Brothers', 'https://images.isbndb.com/covers/85/78/9780373218578.jpg'), + ('0373218850', 'The MacKade Brothers: Devin And Shane: The Heart Of Devin MacKade\The Fall Of Shane MacKade', 'https://images.isbndb.com/covers/88/51/9780373218851.jpg'), + ('0064400972', 'Betsy-Tacy And Tib (Betsy-Tacy Books)', 'https://images.isbndb.com/covers/09/78/9780064400978.jpg'), + ('0064400964', 'Betsy-Tacy (Betsy-Tacy Books)', 'https://images.isbndb.com/covers/09/61/9780064400961.jpg'), + ('0800711807', 'Norman Vincent Peale''s Treasury Of Joy And Enthusiasm', 'https://images.isbndb.com/covers/18/01/9780800711801.jpg'), + ('0891094229', 'Meditation: The Bible Tells You How', 'https://images.isbndb.com/covers/42/27/9780891094227.jpg'), + ('0877844860', 'Cost Of Commitment', 'https://images.isbndb.com/covers/48/60/9780877844860.jpg'), + ('080241544X', 'The Church In Gods Program (Handbook Of Bible Doctrine)', 'https://images.isbndb.com/covers/54/48/9780802415448.jpg'), + ('089109072X', 'Philippians (LifeChange Series)', 'https://images.isbndb.com/covers/07/24/9780891090724.jpg'), + ('0871235625', 'Telling Yourself The Truth', 'https://images.isbndb.com/covers/56/26/9780871235626.jpg'), + ('066908669X', 'The Heath Handbook (College)', 'https://images.isbndb.com/covers/66/90/9780669086690.jpg'), + ('0805453318', 'Only The Beginning', 'https://images.isbndb.com/covers/33/17/9780805453317.jpg'), + ('0896933024', 'Husbands And Wives', 'https://images.isbndb.com/covers/30/26/9780896933026.jpg'), + ('0070615373', 'Bridges Not Walls: A Book About Interpersonal Communication', 'https://images.isbndb.com/covers/53/73/9780070615373.jpg'), + ('0840790694', 'Restoring Your Spiritual Passion', 'https://images.isbndb.com/covers/06/99/9780840790699.jpg'), + ('0310269512', 'Dynamics Of Personal Follow Up', 'https://images.isbndb.com/covers/95/19/9780310269519.jpg'), + ('031037281X', 'The Lost Art Of Disciple Making', 'https://images.isbndb.com/covers/28/13/9780310372813.jpg'), + ('0842350233', 'The Prisoner In The Third Cell (Inspirational)', 'https://images.isbndb.com/covers/02/35/9780842350235.jpg'), + ('084740739X', 'Principles Of Spiritual Growth', 'https://images.isbndb.com/covers/73/92/9780847407392.jpg'), + ('1555136591', 'Should My Child Listen To Rock Music? (Helping Families Grow)', 'https://images.isbndb.com/covers/65/98/9781555136598.jpg'), + ('080245982X', 'Now That I Believe', 'https://images.isbndb.com/covers/98/24/9780802459824.jpg'), + ('0802487874', 'Toward A Growing Marriage: Building The Love Relationship Of Your Dreams', 'https://images.isbndb.com/covers/78/72/9780802487872.jpg'), + ('0801082447', 'Men Made New: An Exposition Of Romans 5-8', 'https://images.isbndb.com/covers/24/43/9780801082443.jpg'), + ('0310347017', 'Bible And Future Events, The', 'https://images.isbndb.com/covers/70/19/9780310347019.jpg'), + ('0891911375', 'When I Relax I Feel Guilty', 'https://images.isbndb.com/covers/13/71/9780891911371.jpg'), + ('0891091432', 'First Love', 'https://images.isbndb.com/covers/14/31/9780891091431.jpg'), + ('0802473695', 'The Role Relationship Of Men And Women: New Testament Teaching', 'https://images.isbndb.com/covers/36/91/9780802473691.jpg'), + ('0842315071', 'How Come It''s Taking Me So Long To Get Better?', 'https://images.isbndb.com/covers/50/74/9780842315074.jpg'), + ('0802489710', 'Answering The Tough Ones', 'https://images.isbndb.com/covers/97/15/9780802489715.jpg'), + ('0310459311', 'From Jerusalem To Irian Jaya', 'https://images.isbndb.com/covers/93/16/9780310459316.jpg'), + ('0891091815', 'Wealth And Wisdom', 'https://images.isbndb.com/covers/18/13/9780891091813.jpg'), + ('0830703454', 'Let Justice Roll Down', 'https://images.isbndb.com/covers/34/56/9780830703456.jpg'), + ('0310225795', 'Chonda Pierce On Her Soapbox', 'https://images.isbndb.com/covers/57/99/9780310225799.jpg'), + ('0893756113', 'Pride And Prejudice', 'https://images.isbndb.com/covers/61/16/9780893756116.jpg'), + ('1576731863', 'Redeeming Love', 'https://images.isbndb.com/covers/18/64/9781576731864.jpg'), + ('0345452690', 'Aunties: Thirty-Five Writers Celebrate Their Other Mother', 'https://images.isbndb.com/covers/26/96/9780345452696.jpg'), + ('0771020139', 'The New Modern: In Today''s Decorating The Magic Is In The Mix (Chatelaine Home Decor)', 'https://images.isbndb.com/covers/01/31/9780771020131.jpg'), + ('0384242146', 'Sometimes God Has A Kid''s Face', 'https://images.isbndb.com/covers/21/42/9780384242142.jpg'), + ('0754091392', 'Extra Virgin: Amongst The Olive Groves Of Liguria (Paragon Softcover Large Print Books)', 'https://images.isbndb.com/covers/13/94/9780754091394.jpg'), + ('0451626109', 'The Screwtape Letters (Mentor Series)', 'https://images.isbndb.com/covers/61/03/9780451626103.jpg'), + ('1556610343', 'The Key To Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/03/49/9781556610349.jpg'), + ('0871239906', 'A Light In Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/99/07/9780871239907.jpg'), + ('0871239396', 'The Return To Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/93/96/9780871239396.jpg'), + ('087123940X', 'A Daughter Of Zion (Zion Chronicles)', 'https://images.isbndb.com/covers/94/02/9780871239402.jpg'), + ('0871238705', 'Gates Of Zion (Zion Chronicles, Bk. 1.)', 'https://images.isbndb.com/covers/87/02/9780871238702.jpg'), + ('0064430170', 'Goodnight Moon', 'https://images.isbndb.com/covers/01/73/9780064430173.jpg'), + ('0570060192', 'House On The Rock', 'https://images.isbndb.com/covers/01/92/9780570060192.jpg'), + ('0570060753', 'The Queen Who Saved Her People', 'https://images.isbndb.com/covers/07/58/9780570060758.jpg'), + ('0570060850', 'Clem, The Clumsy Camel: Matthew 2:1-12 For Children (Arch Book)', 'https://images.isbndb.com/covers/08/57/9780570060857.jpg'), + ('0020868901', 'The Great Divorce', 'https://images.isbndb.com/covers/89/03/9780020868903.jpg'), + ('0020442300', 'The Magician''s Nephew', 'https://images.isbndb.com/covers/23/01/9780020442301.jpg'), + ('0688121160', 'The Good Housekeeping Illustrated Guide To Women''s Health', 'https://images.isbndb.com/covers/11/67/9780688121167.jpg'), + ('0890438439', 'How To Clean Practically Anything', 'https://images.isbndb.com/covers/84/35/9780890438435.jpg'), + ('0743246128', 'What I Know Now : Simple Lessons Learned The Hard Way', 'https://images.isbndb.com/covers/61/25/9780743246125.jpg'), + ('0460875965', 'Jane Eyre (The Everyman Library)', 'https://images.isbndb.com/covers/59/67/9780460875967.jpg'), + ('0960394621', 'Creme De Colorado Cookbook', 'https://images.isbndb.com/covers/46/23/9780960394623.jpg'), + ('0960394648', 'Colorado Collage', 'https://images.isbndb.com/covers/46/47/9780960394647.jpg'), + ('0679893342', 'Berenstain Baby Bears My Trusty Car Seat', 'https://images.isbndb.com/covers/33/49/9780679893349.jpg'), + ('0883965054', 'The Language Of Marriage: A Blue Mountain Arts Collection (Language Of-- Series)', 'https://images.isbndb.com/covers/50/54/9780883965054.jpg'), + ('0805047905', 'Brown Bear, Brown Bear, What Do You See?', 'https://images.isbndb.com/covers/79/05/9780805047905.jpg'), + ('0399501517', 'Man Who Was Thursday', 'https://images.isbndb.com/covers/15/17/9780399501517.jpg'), + ('0849914965', 'Deeper Than Tears: Promises Of Comfort And Hope', 'https://images.isbndb.com/covers/49/66/9780849914966.jpg'), + ('0842335994', 'Unafraid: Mary (The Lineage Of Grace Series #5)', 'https://images.isbndb.com/covers/59/97/9780842335997.jpg'), + ('0842335978', 'Unshaken: Ruth (The Lineage Of Grace Series #3)', 'https://images.isbndb.com/covers/59/73/9780842335973.jpg'), + ('084233596X', 'Unashamed: Rahab (The Lineage Of Grace Series #2)', 'https://images.isbndb.com/covers/59/66/9780842335966.jpg'), + ('0842335986', 'Unspoken: Bathsheba (The Lineage Of Grace Series #4)', 'https://images.isbndb.com/covers/59/80/9780842335980.jpg'), + ('0886873428', 'Rose Is Rose: It Takes Two To Tickle', 'https://images.isbndb.com/covers/34/24/9780886873424.jpg'), + ('1850155011', 'To My Daughter, With Love (Suedels)', 'https://images.isbndb.com/covers/50/10/9781850155010.jpg'), + ('0397300069', 'The Story Of Little Black Sambo', 'https://images.isbndb.com/covers/00/68/9780397300068.jpg'), + ('0830729135', 'The Unquenchable Worshipper: Coming Back To The Heart Of Worship (Worship Series)', 'https://images.isbndb.com/covers/91/35/9780830729135.jpg'), + ('0871238829', 'When Breaks The Dawn (Canadian West)', 'https://images.isbndb.com/covers/88/25/9780871238825.jpg'), + ('0871236117', 'When Calls The Heart (Canadian West #1)', 'https://images.isbndb.com/covers/61/11/9780871236111.jpg'), + ('1556610866', 'Love Finds A Home (Love Comes Softly Series #8)', 'https://images.isbndb.com/covers/08/68/9781556610868.jpg'), + ('0871239795', 'Love''s Unfolding Dream (Love Comes Softly Series #6)', 'https://images.isbndb.com/covers/97/92/9780871239792.jpg'), + ('0871236168', 'Love''s Unending Legacy (Love Comes Softly Series #5)', 'https://images.isbndb.com/covers/61/66/9780871236166.jpg'), + ('0871234017', 'Love''s Abiding Joy (Love Comes Softly Series #4)', 'https://images.isbndb.com/covers/40/18/9780871234018.jpg'), + ('0871233150', 'Love''s Long Journey (Love Comes Softly Series #3)', 'https://images.isbndb.com/covers/31/58/9780871233158.jpg'), + ('0871233452', 'Love''s Enduring Promise (Love Comes Softly Series #2)', 'https://images.isbndb.com/covers/34/55/9780871233455.jpg'), + ('0871233428', 'Love Comes Softly, Book 1', 'https://images.isbndb.com/covers/34/24/9780871233424.jpg'), + ('1556610599', 'Spring''s Gentle Promise (Seasons Of The Heart #4)', 'https://images.isbndb.com/covers/05/92/9781556610592.jpg'), + ('1556610025', 'Winter Is Not Forever (Seasons Of The Heart #3)', 'https://images.isbndb.com/covers/00/28/9781556610028.jpg'), + ('0871239469', 'The Winds Of Autumn (Seasons Of The Heart)', 'https://images.isbndb.com/covers/94/64/9780871239464.jpg'), + ('0871234130', 'Once Upon A Summer (Seasons Of The Heart #1)', 'https://images.isbndb.com/covers/41/31/9780871234131.jpg'), + ('1578563933', 'Bad Girls Of The Bible: And What We Can Learn From Them', 'https://images.isbndb.com/covers/39/37/9781578563937.jpg'), + ('1561794600', 'It Takes Two To Tango', 'https://images.isbndb.com/covers/46/07/9781561794607.jpg'), + ('0310202302', 'A Grace Disguised: How The Soul Grows Through Loss', 'https://images.isbndb.com/covers/23/01/9780310202301.jpg'), + ('0395911680', 'Toestomper And The Caterpillars', 'https://images.isbndb.com/covers/16/86/9780395911686.jpg'), + ('1558531211', 'Life''s Little Instruction Book: 511 Suggestions, Observations, And Reminders On How To Live A Happy And Rewarding Life (Life''s Little Instruction Books)', 'https://images.isbndb.com/covers/12/15/9781558531215.jpg'), + ('0786882417', 'The Path: Creating Your Mission Statement For Work And For Life', 'https://images.isbndb.com/covers/24/10/9780786882410.jpg'), + ('0898401003', 'I Just Saw Jesus', 'https://images.isbndb.com/covers/10/04/9780898401004.jpg'), + ('0930014898', 'Wide My World, Narrow My Bed: Living And Loving The Single Life', 'https://images.isbndb.com/covers/48/96/9780930014896.jpg'), + ('0805461957', 'The Meaning Of A Man: Discovering Your Destiny As A Spiritual Champion', 'https://images.isbndb.com/covers/19/54/9780805461954.jpg'), + ('0195061551', 'Reason And Religious Belief: An Introduction To The Philosophy Of Religion', 'https://images.isbndb.com/covers/15/50/9780195061550.jpg'), + ('0801062500', 'Leadership In Christian Ministry', 'https://images.isbndb.com/covers/25/06/9780801062506.jpg'), + ('0802404529', 'Balancing The Christian Life', 'https://images.isbndb.com/covers/45/27/9780802404527.jpg'), + ('0064471063', 'The Horse And His Boy', 'https://images.isbndb.com/covers/10/60/9780064471060.jpg'), + ('0064409422', 'The Lion, The Witch And The Wardrobe (Full-Color Collector''s Edition)', 'https://images.isbndb.com/covers/94/21/9780064409421.jpg'), + ('0064471055', 'Prince Caspian (Narnia)', 'https://images.isbndb.com/covers/10/53/9780064471053.jpg'), + ('0064471071', 'The Voyage Of The "Dawn Treader"(The Chronicls Of Narnia, Book 5)', 'https://images.isbndb.com/covers/10/77/9780064471077.jpg'), + ('0818402539', 'Where Did I Come From?', 'https://images.isbndb.com/covers/25/31/9780818402531.jpg'), + ('0802490549', 'More Than Conquerors: Portraits Of Believers From All Walks Of Life', 'https://images.isbndb.com/covers/05/44/9780802490544.jpg'), + ('0800758382', 'The Calling: A Challenge To Walk The Narrow Road', 'https://images.isbndb.com/covers/83/87/9780800758387.jpg'), + ('0310209161', 'Breakfast For The Heart', 'https://images.isbndb.com/covers/91/64/9780310209164.jpg'), + ('0449238946', 'If Life Is A Bowl Of Cherries-What Am I Doing In The Pits?', 'https://images.isbndb.com/covers/89/43/9780449238943.jpg'), + ('0449237869', 'Just Wait Till You Have Children Of Your Own', 'https://images.isbndb.com/covers/78/61/9780449237861.jpg'), + ('0891092897', 'The Wounded Heart: Hope For Adult Victims Of Childhood Sexual Abuse', 'https://images.isbndb.com/covers/28/96/9780891092896.jpg'), + ('089107919X', 'This Present Darkness (10th Anniversary Limited Edition)', 'https://images.isbndb.com/covers/91/94/9780891079194.jpg'), + ('1561793620', 'The Triumphant Marriage', 'https://images.isbndb.com/covers/36/24/9781561793624.jpg'), + ('1400040930', 'Of Paradise And Power: America And Europe In The New World Order', 'https://images.isbndb.com/covers/09/33/9781400040933.jpg'), + ('0842319476', 'Unveiled: Tamar (The Lineage Of Grace Series #1) (No 1)', 'https://images.isbndb.com/covers/94/78/9780842319478.jpg'), + ('0824519671', 'Here And Now: Living In The Spirit', 'https://images.isbndb.com/covers/96/74/9780824519674.jpg'), + ('084230052X', 'The Atonement Child', 'https://images.isbndb.com/covers/05/20/9780842300520.jpg'), + ('0310212146', 'The Life You''ve Always Wanted: Spiritual Disciplines For Ordinary People', 'https://images.isbndb.com/covers/21/40/9780310212140.jpg'), + ('0684842874', 'I Know Just What You Mean: The Power Of Friendship In Women''s Lives', 'https://images.isbndb.com/covers/28/75/9780684842875.jpg'), + ('1576832961', 'Renovation Of The Heart: Putting On The Character Of Christ', 'https://images.isbndb.com/covers/29/67/9781576832967.jpg'), + ('1561790206', 'The Language Of Love: With Study Guide', 'https://images.isbndb.com/covers/02/03/9781561790203.jpg'), + ('0800792149', 'He''s My Brother: Former Racial Foes Offer Strategy For Reconciliation', 'https://images.isbndb.com/covers/21/45/9780800792145.jpg'), + ('0842377506', 'A Voice In The Wind (Mark Of The Lion #1)', 'https://images.isbndb.com/covers/75/08/9780842377508.jpg'), + ('0842313079', 'An Echo In The Darkness (Mark Of The Lion #2)', 'https://images.isbndb.com/covers/30/70/9780842313070.jpg'), + ('0842339760', 'As Sure As The Dawn (Mark Of The Lion #3)', 'https://images.isbndb.com/covers/97/66/9780842339766.jpg'), + ('1578561493', 'Intimate Issues: 21 Questions Christian Women Ask About Sex', 'https://images.isbndb.com/covers/14/90/9781578561490.jpg'), + ('1556613369', 'Majestic Is Your Name: A 40-Day Journey In The Company Of Theresa Of Avila: Devotional Readings (Rekindling The Inner Fire)', 'https://images.isbndb.com/covers/33/64/9781556613364.jpg'), + ('076240759X', 'Girlfriends', 'https://images.isbndb.com/covers/75/90/9780762407590.jpg'), + ('0452283396', 'Grace', 'https://images.isbndb.com/covers/33/98/9780452283398.jpg'), + ('0842335722', 'Leota''s Garden', 'https://images.isbndb.com/covers/57/20/9780842335720.jpg'), + ('9999364497', 'The Middle Button', 'https://images.isbndb.com/covers/44/92/9789999364492.jpg'), + ('1576736563', 'Three Weddings And A Giggle', 'https://images.isbndb.com/covers/65/62/9781576736562.jpg'), + ('0802438059', 'Not My Will', 'https://images.isbndb.com/covers/80/58/9780802438058.jpg'), + ('0553243470', 'Papa''s Wife', 'https://images.isbndb.com/covers/34/75/9780553243475.jpg'), + ('0891096078', 'The Personal Touch: Encouraging Others Through Hospitality', 'https://images.isbndb.com/covers/60/78/9780891096078.jpg'), + ('0670894877', 'Jerusalem''s Heart (Zion Legacy)', 'https://images.isbndb.com/covers/48/71/9780670894871.jpg'), + ('084231802X', 'Intimate Allies', 'https://images.isbndb.com/covers/80/20/9780842318020.jpg'), + ('0310521807', 'Honest To God? Becoming An Authentic Christian', 'https://images.isbndb.com/covers/18/08/9780310521808.jpg'), + ('0881843059', 'Viper''s Tangle', 'https://images.isbndb.com/covers/30/57/9780881843057.jpg'), + ('0849905273', 'You Bring The Confetti', 'https://images.isbndb.com/covers/52/78/9780849905278.jpg'), + ('0879056096', 'Lake Powell: A Different Light', 'https://images.isbndb.com/covers/60/94/9780879056094.jpg'), + ('0310224713', 'The Heart Of The Artist', 'https://images.isbndb.com/covers/47/16/9780310224716.jpg'), + ('0842321349', 'Letters To A Young Bride', 'https://images.isbndb.com/covers/13/41/9780842321341.jpg'), + ('0880701749', 'Love For A Lifetime: Building A Marriage That Will Go The Distance', 'https://images.isbndb.com/covers/17/47/9780880701747.jpg'), + ('1567314619', 'It''s A Chick Thing', 'https://images.isbndb.com/covers/46/18/9781567314618.jpg'), + ('0785280669', 'Shiloh Autumn: A Novel', 'https://images.isbndb.com/covers/06/68/9780785280668.jpg'), + ('0785280693', 'Ashes Of Remembrance (Galway Chronicles, Book 3)', 'https://images.isbndb.com/covers/06/99/9780785280699.jpg'), + ('0785280766', 'All Rivers To The Sea (Galway Chronicles, Book 4)', 'https://images.isbndb.com/covers/07/67/9780785280767.jpg'), + ('0785280677', 'Only The River Runs Free (Galway Chronicles, Book 1)', 'https://images.isbndb.com/covers/06/75/9780785280675.jpg'), + ('0842375066', 'First Light (A. D. Chronicles, Book 1)', 'https://images.isbndb.com/covers/50/61/9780842375061.jpg'), + ('0785280685', 'Of Men And Of Angels (Galway Chronicles, Book 2)', 'https://images.isbndb.com/covers/06/82/9780785280682.jpg'), + ('0785281967', 'The Twilight Of Courage: A Novel', 'https://images.isbndb.com/covers/19/62/9780785281962.jpg'), + ('0670030120', 'The Jerusalem Scrolls (The Zion Legacy, Book 4)', 'https://images.isbndb.com/covers/01/25/9780670030125.jpg'), + ('0670030848', 'Jerusalem''s Hope (Zion Legacy)', 'https://images.isbndb.com/covers/08/42/9780670030842.jpg'), + ('0684718669', 'Too Late The Phalarope', 'https://images.isbndb.com/covers/86/68/9780684718668.jpg'), + ('0688151981', 'We Are Our Mothers'' Daughters', 'https://images.isbndb.com/covers/19/80/9780688151980.jpg'), + ('1573226254', 'Woe Is I: The Grammarphobe''s Guide To Better English In Plain English', 'https://images.isbndb.com/covers/62/57/9781573226257.jpg'), + ('0517585073', 'Bridal Bouquet: Penhaligon''s Scented Treasury Of Verse And Prose', 'https://images.isbndb.com/covers/50/78/9780517585078.jpg'), + ('019505928X', 'A Sand County Almanac: And Sketches Here And There (Outdoor Essays & Reflections)', 'https://images.isbndb.com/covers/92/81/9780195059281.jpg'), + ('0395071763', 'I Like You', 'https://images.isbndb.com/covers/17/62/9780395071762.jpg'), + ('0944641393', 'A View Of Wall Street From The Seventh Floor', 'https://images.isbndb.com/covers/13/92/9780944641392.jpg'), + ('1572430753', 'Thoughts On Success: Thoughts And Reflections From History''s Great Thinkers (Forbes Leadership Library)', 'https://images.isbndb.com/covers/07/54/9781572430754.jpg'), + ('0964920107', 'Wall Street Wit & Wisdom', 'https://images.isbndb.com/covers/01/01/9780964920101.jpg'), + ('0787902691', 'The Leadership Challenge: How To Keep Getting Extraordinary Things Done In Organizations', 'https://images.isbndb.com/covers/26/98/9780787902698.jpg'), + ('1561794058', 'After The Boxes Are Unpacked (Renewing The Heart)', 'https://images.isbndb.com/covers/40/58/9781561794058.jpg'), + ('0943703034', 'Secrets Of Effective Leadership', 'https://images.isbndb.com/covers/30/39/9780943703039.jpg'), + ('0918684544', 'Above Las Vegas: Its Canyons And Mountains', 'https://images.isbndb.com/covers/45/47/9780918684547.jpg'), + ('0064400808', 'On The Way Home: The Diary Of A Trip From South Dakota To Mansfield, Missouri, In 1894', 'https://images.isbndb.com/covers/08/00/9780064400800.jpg'), + ('0064400816', 'West From Home: Letters Of Laura Ingalls Wilder, San Francisco, 1915', 'https://images.isbndb.com/covers/08/17/9780064400817.jpg'), + ('0064400085', 'These Happy Golden Years (Little House)', 'https://images.isbndb.com/covers/00/84/9780064400084.jpg'), + ('0064400077', 'Little Town On The Prairie', 'https://images.isbndb.com/covers/00/77/9780064400077.jpg'), + ('0064400069', 'The Long Winter (Little House)', 'https://images.isbndb.com/covers/00/60/9780064400060.jpg'), + ('0064400050', 'By The Shores Of Silver Lake (Little House)', 'https://images.isbndb.com/covers/00/53/9780064400053.jpg'), + ('0064400042', 'On The Banks Of Plum Creek (Little House, No 3)', 'https://images.isbndb.com/covers/00/46/9780064400046.jpg'), + ('1576737799', 'The Mystery Of Marriage: Meditations On The Miracle', 'https://images.isbndb.com/covers/77/98/9781576737798.jpg'), + ('0842307303', 'The Ethics Of Smuggling', 'https://images.isbndb.com/covers/73/07/9780842307307.jpg'), + ('0814402178', 'Voices Of Diversity: Real People Talk About Problems And Solutions In A Workplace Where Everyone Is Not Alike', 'https://images.isbndb.com/covers/21/77/9780814402177.jpg'), + ('0684868113', 'Mary Farrell''s Beyond The Basics: How To Invest Your Money, Now That You Know A Thing Or Two', 'https://images.isbndb.com/covers/81/10/9780684868110.jpg'), + ('0308800583', 'The Christmas Cupboard', 'https://images.isbndb.com/covers/05/88/9780308800588.jpg'), + ('0802787673', 'Mud Pies And Other Recipes: A Cookbook For Dolls', 'https://images.isbndb.com/covers/76/75/9780802787675.jpg'), + ('0849913241', 'The Applause Of Heaven', 'https://images.isbndb.com/covers/32/42/9780849913242.jpg'), + ('1564772241', 'Stamp With Style: More Than 50 Creative Cards And Projects', 'https://images.isbndb.com/covers/22/44/9781564772244.jpg'), + ('0696000121', 'Better Homes And Gardens New Cook Book (Five -5- Ring Binder, 10th Edition)', 'https://images.isbndb.com/covers/01/26/9780696000126.jpg'), + ('0028630092', 'Betty Crocker''s New Cookbook', 'https://images.isbndb.com/covers/00/90/9780028630090.jpg'), + ('0452279232', 'The Joy Of Cooking Comb-Bound Edition: Revised And Expanded', 'https://images.isbndb.com/covers/92/30/9780452279230.jpg'), + ('1561796344', 'Great Stories Remembered II', 'https://images.isbndb.com/covers/63/42/9781561796342.jpg'), + ('0060669667', 'Devotional Classics: Selected Readings For Individuals And Groups', 'https://images.isbndb.com/covers/96/69/9780060669669.jpg'), + ('1569550913', 'Marriage Moments', 'https://images.isbndb.com/covers/09/15/9781569550915.jpg'), + ('0025196359', 'Barbara Bush: A Memoir', 'https://images.isbndb.com/covers/63/53/9780025196353.jpg'), + ('0842301801', 'The Bride''s Book Of Ideas', 'https://images.isbndb.com/covers/18/00/9780842301800.jpg'), + ('1580081916', 'Chevys Fresh Mex Cookbook', 'https://images.isbndb.com/covers/19/17/9781580081917.jpg'), + ('1561790419', 'Once-A-Month Cooking: A Time-Saving, Budget-Stretching Plan To Prepare Delicious Meals', 'https://images.isbndb.com/covers/04/18/9781561790418.jpg'), + ('0802445241', 'Katie', 'https://images.isbndb.com/covers/52/47/9780802445247.jpg'), + ('1558672540', 'Fondue And Hot Dips (Nitty Gritty Cookbooks)', 'https://images.isbndb.com/covers/25/43/9781558672543.jpg'), + ('0440566142', 'The Original Preppy Cookbook', 'https://images.isbndb.com/covers/61/44/9780440566144.jpg'), + ('1561381527', 'Tea Time: Tradition, Presentation, And Recipes (Running Press Miniature Editions)', 'https://images.isbndb.com/covers/15/24/9781561381524.jpg'), + ('0891095365', 'Beside Still Waters', 'https://images.isbndb.com/covers/53/61/9780891095361.jpg'), + ('0613377095', 'Little Men (Turtleback School & Library Binding Edition) (Puffin Classics)', 'https://images.isbndb.com/covers/70/96/9780613377096.jpg'), + ('0385054483', '100 Great Operas And Their Stories: Act-By-Act Synopses', 'https://images.isbndb.com/covers/44/85/9780385054485.jpg'), + ('0028634691', 'Betty Crocker''s Slow Cooker Cookbook', 'https://images.isbndb.com/covers/46/92/9780028634692.jpg'), + ('0028630238', 'Betty Crocker''s Best Bread Machine Cookbook: The Goodness Of Homemade Bread The Easy Way', 'https://images.isbndb.com/covers/02/36/9780028630236.jpg'), + ('0070479321', 'The Norman Rockwell Illustrated Cookbook: Classic American Recipes', 'https://images.isbndb.com/covers/93/26/9780070479326.jpg'), + ('037602237X', 'Easy Basics For Good Cooking', 'https://images.isbndb.com/covers/23/70/9780376022370.jpg'), + ('0060169613', '365 Ways To Cook Chinese', 'https://images.isbndb.com/covers/96/19/9780060169619.jpg'), + ('0962478407', 'Delitefully Healthmark... Cooking For The Health Of It!', 'https://images.isbndb.com/covers/84/06/9780962478406.jpg'), + ('0962478415', 'Cooking For A Healthier Ever After', 'https://images.isbndb.com/covers/84/13/9780962478413.jpg'), + ('0802413587', 'Amazing Faith: Stories Of Christians In Defining Moments', 'https://images.isbndb.com/covers/35/81/9780802413581.jpg'), + ('0849916747', 'Strong Women, Soft Hearts', 'https://images.isbndb.com/covers/67/48/9780849916748.jpg'), + ('0842335706', 'The Last Sin Eater', 'https://images.isbndb.com/covers/57/06/9780842335706.jpg'), + ('0871236109', 'The Wedding Dress (The Wedding Album Series #1)', 'https://images.isbndb.com/covers/61/04/9780871236104.jpg'), + ('087123615X', 'With This Ring (The Wedding Album Series #2)', 'https://images.isbndb.com/covers/61/59/9780871236159.jpg'), + ('0842378480', 'We''re Finally Alone—Now What Do We Do?: More Than 500 Thought-Provoking Questions To Energize Your Marriage', 'https://images.isbndb.com/covers/84/82/9780842378482.jpg'), + ('0842342710', 'The Scarlet Thread', 'https://images.isbndb.com/covers/27/11/9780842342711.jpg'), + ('0525946756', 'Skipping Towards Gomorrah: The Seven Deadly Sins And The Pursuit Of Happiness In America', 'https://images.isbndb.com/covers/67/55/9780525946755.jpg'), + ('0960394672', 'Colorado Colore: A Palate Of Tastes (Celebrating Twenty Five Years Of Culinary Artistry)', 'https://images.isbndb.com/covers/46/78/9780960394678.jpg'), + ('0064610446', 'Errors In English And Ways To Correct Them: Fourth Edition', 'https://images.isbndb.com/covers/04/45/9780064610445.jpg'), + ('0805208690', 'A SCRAP OF TIME (Schocken Classics)', 'https://images.isbndb.com/covers/86/96/9780805208696.jpg'), + ('0671021354', 'Child Of The Hunt (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/13/51/9780671021351.jpg'), + ('1556611536', 'The Calling Of Emily Evans', 'https://images.isbndb.com/covers/15/37/9781556611537.jpg'), + ('1556612257', 'A Woman Named Damaris (Women Of The West (Paperback Bethany House))', 'https://images.isbndb.com/covers/22/51/9781556612251.jpg'), + ('155661683X', 'A Gown Of Spanish Lace (Women Of The West #11)', 'https://images.isbndb.com/covers/68/39/9781556616839.jpg'), + ('0061043850', 'Freedom Of Simplicity', 'https://images.isbndb.com/covers/38/57/9780061043857.jpg'), + ('089480751X', 'Dairy Hollow House Soup & Bread Cookbook', 'https://images.isbndb.com/covers/75/10/9780894807510.jpg'), + ('0146000501', 'His Mouth Will Taste Of Wormwood (Penguin 60s)', 'https://images.isbndb.com/covers/05/08/9780146000508.jpg'), + ('0670894885', 'Jane Austen (Penguin Lives)', 'https://images.isbndb.com/covers/48/88/9780670894888.jpg'), + ('0441822134', 'Traveller In Time', 'https://images.isbndb.com/covers/21/33/9780441822133.jpg'), + ('0195101405', 'Adventures Of Huckleberry Finn (1885) (Oxford Mark Twain)', 'https://images.isbndb.com/covers/14/09/9780195101409.jpg'), + ('0679755179', 'Photocopies: Encounters', 'https://images.isbndb.com/covers/51/73/9780679755173.jpg'), + ('0394569393', 'Lilac And Flag: An Old Wives'' Tale Of A City', 'https://images.isbndb.com/covers/93/90/9780394569390.jpg'), + ('0851191894', 'Summer Bird Cage', 'https://images.isbndb.com/covers/18/98/9780851191898.jpg'), + ('080410364X', 'The Needle''s Eye', 'https://images.isbndb.com/covers/36/40/9780804103640.jpg'), + ('0452262828', 'The Garrick Year', 'https://images.isbndb.com/covers/28/29/9780452262829.jpg'), + ('0553262106', 'The Golden Notebook', 'https://images.isbndb.com/covers/21/00/9780553262100.jpg'), + ('0631189246', 'Why War: Psychoanalysis, Politics And The Return To Melanie Klein (Bucknell Lectures In Literary Theory)', 'https://images.isbndb.com/covers/92/44/9780631189244.jpg'), + ('0671668781', 'Color Purple', 'https://images.isbndb.com/covers/87/85/9780671668785.jpg'), + ('0151731527', 'Possessing The Secret Of Joy', 'https://images.isbndb.com/covers/15/27/9780151731527.jpg'), + ('0671201565', 'The Evolution Of Physics', 'https://images.isbndb.com/covers/15/62/9780671201562.jpg'), + ('039454272X', 'Flaubert''s Parrot', 'https://images.isbndb.com/covers/27/20/9780394542720.jpg'), + ('0553208187', 'Where The Jackals Howl And Other Stories', 'https://images.isbndb.com/covers/81/84/9780553208184.jpg'), + ('0156907720', 'Touch The Water, Touch The Wind', 'https://images.isbndb.com/covers/77/29/9780156907729.jpg'), + ('0151001529', 'Don''t Call It Night', 'https://images.isbndb.com/covers/15/21/9780151001521.jpg'), + ('1840680113', 'Dead Brides : Vampire Tales', 'https://images.isbndb.com/covers/01/19/9781840680119.jpg'), + ('0749399554', 'The Trial', 'https://images.isbndb.com/covers/95/59/9780749399559.jpg'), + ('0385240899', 'The Floating Opera And The End Of The Road', 'https://images.isbndb.com/covers/08/95/9780385240895.jpg'), + ('0786881488', 'Love: Ten Poems', 'https://images.isbndb.com/covers/14/82/9780786881482.jpg'), + ('015626028X', 'The Diary Of Anais Nin, Vol. 4: 1944-1947', 'https://images.isbndb.com/covers/02/82/9780156260282.jpg'), + ('0679761276', 'Representations Of The Intellectual: The 1993 Reith Lectures', 'https://images.isbndb.com/covers/12/73/9780679761273.jpg'), + ('0571105653', 'Selected Prose', 'https://images.isbndb.com/covers/56/56/9780571105656.jpg'), + ('0816621144', 'Manna: For The Mandelstams For The Mandelas (Exxon Lecture Series)', 'https://images.isbndb.com/covers/11/49/9780816621149.jpg'), + ('0802135269', 'Steps', 'https://images.isbndb.com/covers/52/61/9780802135261.jpg'), + ('0613073304', 'Being There', 'https://images.isbndb.com/covers/33/01/9780613073301.jpg'), + ('0803263430', 'The Book Of Promethea (European Women Writers)', 'https://images.isbndb.com/covers/34/37/9780803263437.jpg'), + ('9029532068', 'De Visualisering Van De Pijn Heelt De Wond (Dutch Edition)', 'https://images.isbndb.com/covers/20/68/9789029532068.jpg'), + ('067182306X', 'UNSPEAK PRACTICES', 'https://images.isbndb.com/covers/30/61/9780671823061.jpg'), + ('0316082511', 'The Last Voyage Of Somebody The Sailor', 'https://images.isbndb.com/covers/25/18/9780316082518.jpg'), + ('0415049296', 'The Hélène Cixous Reader', 'https://images.isbndb.com/covers/92/90/9780415049290.jpg'), + ('0892813695', 'The Pagan Book Of Days: A Guide To The Festivals, Traditions, And Sacred Days Of The Year', 'https://images.isbndb.com/covers/36/98/9780892813698.jpg'), + ('0936703008', 'Gemstones And Color (and A Whole Lot More): For Better Health Healing Happiness', 'https://images.isbndb.com/covers/30/08/9780936703008.jpg'), + ('0590409662', 'Rent A Third Grader (Little Apple)', 'https://images.isbndb.com/covers/96/67/9780590409667.jpg'), + ('0440800544', 'A Wrinkle In Time', 'https://images.isbndb.com/covers/05/45/9780440800545.jpg'), + ('0590624008', 'Santa Paws (#1)', 'https://images.isbndb.com/covers/40/08/9780590624008.jpg'), + ('0688136230', 'The Deer Stand', 'https://images.isbndb.com/covers/62/39/9780688136239.jpg'), + ('0836204158', 'It''s Obvious You Won''t Survive By Your Wits Alone', 'https://images.isbndb.com/covers/41/55/9780836204155.jpg'), + ('0345359313', 'Winter: A Novel Of A Berlin Family', 'https://images.isbndb.com/covers/93/15/9780345359315.jpg'), + ('1560545151', 'The Carnaby Curse', 'https://images.isbndb.com/covers/51/56/9781560545156.jpg'), + ('0449240193', 'Strangers In Company', 'https://images.isbndb.com/covers/01/99/9780449240199.jpg'), + ('0449241491', 'Bright Flows The River', 'https://images.isbndb.com/covers/14/93/9780449241493.jpg'), + ('0380641623', 'Acceptable Losses', 'https://images.isbndb.com/covers/16/28/9780380641628.jpg'), + ('0449231984', 'The Pride Of The Peacock', 'https://images.isbndb.com/covers/19/82/9780449231982.jpg'), + ('0449214214', 'House Of A Thousand Lanterns', 'https://images.isbndb.com/covers/42/13/9780449214213.jpg'), + ('0451402472', 'Flowers Of Betrayal (Onyx)', 'https://images.isbndb.com/covers/24/79/9780451402479.jpg'), + ('0451177010', 'Shaman (Signet)', 'https://images.isbndb.com/covers/70/18/9780451177018.jpg'), + ('0373160623', 'Verdict Of Love', 'https://images.isbndb.com/covers/06/24/9780373160624.jpg'), + ('0451114523', 'The Hillside Strangler', 'https://images.isbndb.com/covers/45/25/9780451114525.jpg'), + ('0345343387', 'Noninterference', 'https://images.isbndb.com/covers/33/83/9780345343383.jpg'), + ('0380716453', 'A Dedicated Man (Inspector Banks Mysteries)', 'https://images.isbndb.com/covers/64/56/9780380716456.jpg'), + ('0373074794', 'Fundamental Things Apply (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/47/92/9780373074792.jpg'), + ('0553225774', 'Empire', 'https://images.isbndb.com/covers/57/78/9780553225778.jpg'), + ('0449244172', 'SINS OF THE FATHERS-5', 'https://images.isbndb.com/covers/41/73/9780449244173.jpg'), + ('0671742906', 'Survivors (Star Trek The Next Generation, No 4)', 'https://images.isbndb.com/covers/29/04/9780671742904.jpg'), + ('0345296591', 'Splinter Of Mind''s Eye', 'https://images.isbndb.com/covers/65/97/9780345296597.jpg'), + ('0451130987', 'Fatal Vision (Signet)', 'https://images.isbndb.com/covers/09/83/9780451130983.jpg'), + ('0380822970', 'While Passion Sleeps', 'https://images.isbndb.com/covers/29/73/9780380822973.jpg'), + ('0446906492', 'The Stinsons', 'https://images.isbndb.com/covers/64/94/9780446906494.jpg'), + ('044920703X', 'One More Sunday', 'https://images.isbndb.com/covers/70/31/9780449207031.jpg'), + ('0553269321', 'Echoes In The Darkness', 'https://images.isbndb.com/covers/93/21/9780553269321.jpg'), + ('1557732108', 'Nobody Lives Forever', 'https://images.isbndb.com/covers/21/01/9781557732101.jpg'), + ('0671708368', 'Fortune''s Light (Star Trek The Next Generation, No 15)', 'https://images.isbndb.com/covers/83/68/9780671708368.jpg'), + ('0812522729', 'Children Of The Night: A Diana Tregarde Investigation', 'https://images.isbndb.com/covers/27/23/9780812522723.jpg'), + ('0380769514', 'Hall Pass (An Avon Flare Book)', 'https://images.isbndb.com/covers/95/13/9780380769513.jpg'), + ('0553100777', 'Trinity', 'https://images.isbndb.com/covers/07/78/9780553100778.jpg'), + ('006080713X', 'Some Tame Gazelle', 'https://images.isbndb.com/covers/71/39/9780060807139.jpg'), + ('0226706702', 'The Little Community And Peasant Society And Culture (Midway Reprint)', 'https://images.isbndb.com/covers/67/02/9780226706702.jpg'), + ('0449239977', 'Shosha', 'https://images.isbndb.com/covers/99/71/9780449239971.jpg'), + ('0345355245', 'Metaconcert (Intervention) (Vol 2)', 'https://images.isbndb.com/covers/52/49/9780345355249.jpg'), + ('0881845434', 'The Demoniacs', 'https://images.isbndb.com/covers/54/33/9780881845433.jpg'), + ('0345314867', 'The Summer Of Katya', 'https://images.isbndb.com/covers/48/64/9780345314864.jpg'), + ('0425101797', 'Dreams Are Not Enough', 'https://images.isbndb.com/covers/17/97/9780425101797.jpg'), + ('0671430653', 'NOCTURNAL', 'https://images.isbndb.com/covers/06/58/9780671430658.jpg'), + ('0553268074', 'The Beet Queen', 'https://images.isbndb.com/covers/80/72/9780553268072.jpg'), + ('0380761963', 'Ufo Crash At Roswell', 'https://images.isbndb.com/covers/19/68/9780380761968.jpg'), + ('0671431412', 'Merv, An Autobiography', 'https://images.isbndb.com/covers/14/19/9780671431419.jpg'), + ('0590965379', '101 Back To School Jokes (rev)', 'https://images.isbndb.com/covers/53/78/9780590965378.jpg'), + ('038045534X', 'Mozart', 'https://images.isbndb.com/covers/53/48/9780380455348.jpg'), + ('0891291512', 'Beyond The Cross And The Switchblade', 'https://images.isbndb.com/covers/15/10/9780891291510.jpg'), + ('0440156637', 'My Mother My Self: The Daughter''s Search For Identity', 'https://images.isbndb.com/covers/66/35/9780440156635.jpg'), + ('0446814377', 'The Forest And The Fort: The City In The Dawn', 'https://images.isbndb.com/covers/43/79/9780446814379.jpg'), + ('0812557042', 'The Glass Warrior (Demon Crown Trilogy, Book 1)', 'https://images.isbndb.com/covers/70/46/9780812557046.jpg'), + ('0451453492', 'Warriors For The Working Day (Starcruiser Shenandoah)', 'https://images.isbndb.com/covers/34/95/9780451453495.jpg'), + ('0765342308', 'Briar Rose', 'https://images.isbndb.com/covers/23/00/9780765342300.jpg'), + ('0671827847', 'Eyes Of Darkness', 'https://images.isbndb.com/covers/78/47/9780671827847.jpg'), + ('0671499335', 'Cold Mind', 'https://images.isbndb.com/covers/93/34/9780671499334.jpg'), + ('0345248686', 'The Long Arm Of Gil Hamilton', 'https://images.isbndb.com/covers/86/88/9780345248688.jpg'), + ('0553261797', 'California Thriller', 'https://images.isbndb.com/covers/17/90/9780553261790.jpg'), + ('0441240879', 'Counter Attack (The Fleet, Book 2)', 'https://images.isbndb.com/covers/08/76/9780441240876.jpg'), + ('0553225227', 'Voyagers', 'https://images.isbndb.com/covers/52/28/9780553225228.jpg'), + ('0345346505', 'Woman''s Place', 'https://images.isbndb.com/covers/65/06/9780345346506.jpg'), + ('0345349474', 'Sideswipe', 'https://images.isbndb.com/covers/94/77/9780345349477.jpg'), + ('0440161061', 'Max', 'https://images.isbndb.com/covers/10/66/9780440161066.jpg'), + ('0671818856', 'Betsy', 'https://images.isbndb.com/covers/88/52/9780671818852.jpg'), + ('0451172272', 'Pomp And Circumstance (Signet)', 'https://images.isbndb.com/covers/22/73/9780451172273.jpg'), + ('0671648144', 'If There Be Thorns (Dollanger Saga)', 'https://images.isbndb.com/covers/81/45/9780671648145.jpg'), + ('0451165896', 'Growing Up (Signet)', 'https://images.isbndb.com/covers/58/93/9780451165893.jpg'), + ('0553116606', 'The Amityville Horror', 'https://images.isbndb.com/covers/66/01/9780553116601.jpg'), + ('0804112592', 'Season Of The Monsoon', 'https://images.isbndb.com/covers/25/98/9780804112598.jpg'), + ('0553122061', 'Holcroft Covenant', 'https://images.isbndb.com/covers/20/60/9780553122060.jpg'), + ('0553235478', 'Topaz', 'https://images.isbndb.com/covers/54/70/9780553235470.jpg'), + ('0671834096', 'The Electric Horseman', 'https://images.isbndb.com/covers/40/98/9780671834098.jpg'), + ('0874313759', 'Hells Feast', 'https://images.isbndb.com/covers/37/58/9780874313758.jpg'), + ('0449232859', 'North From Rome', 'https://images.isbndb.com/covers/28/59/9780449232859.jpg'), + ('0385007728', 'Broken Image', 'https://images.isbndb.com/covers/77/26/9780385007726.jpg'), + ('0505516101', 'Wicked Widow', 'https://images.isbndb.com/covers/61/07/9780505516107.jpg'), + ('0523009933', 'Forests Of Gleor: Richard Blade Series No 22', 'https://images.isbndb.com/covers/99/33/9780523009933.jpg'), + ('0886770041', 'The Vizier''s Second Daughter', 'https://images.isbndb.com/covers/00/44/9780886770044.jpg'), + ('0020436904', 'The Valley Of The Fox (Collier Spymasters Series)', 'https://images.isbndb.com/covers/69/04/9780020436904.jpg'), + ('0425129004', 'Looking Deep', 'https://images.isbndb.com/covers/90/05/9780425129005.jpg'), + ('0345286480', 'Deathwind', 'https://images.isbndb.com/covers/64/82/9780345286482.jpg'), + ('0446824631', 'Other Side Of The Mountain, The - Part 2', 'https://images.isbndb.com/covers/46/37/9780446824637.jpg'), + ('0553256025', 'The Proud Tower: A Portrait Of The World Before The War: 1890-1914', 'https://images.isbndb.com/covers/60/24/9780553256024.jpg'), + ('0425050017', 'Tenth Commandment', 'https://images.isbndb.com/covers/00/19/9780425050019.jpg'), + ('0881840653', 'Fog Of Doubt', 'https://images.isbndb.com/covers/06/50/9780881840650.jpg'), + ('0440191831', 'Twelve Deaths Of Christmas', 'https://images.isbndb.com/covers/18/34/9780440191834.jpg'), + ('055325846X', 'Trinity', 'https://images.isbndb.com/covers/84/62/9780553258462.jpg'), + ('0449242390', 'STORRINGTON PAPERS', 'https://images.isbndb.com/covers/23/91/9780449242391.jpg'), + ('0452252733', 'Fanny (Plume)', 'https://images.isbndb.com/covers/27/38/9780452252738.jpg'), + ('0345319540', 'DEADLOCK', 'https://images.isbndb.com/covers/95/48/9780345319548.jpg'), + ('0393311198', 'The Seven-Per-Cent Solution: Being A Reprint From The Reminiscences Of John H. Watson, M.D. (Norton Paperback)', 'https://images.isbndb.com/covers/11/98/9780393311198.jpg'), + ('0515040460', 'The Titans (The American Bicentennial Series, Vol. 5)', 'https://images.isbndb.com/covers/04/63/9780515040463.jpg'), + ('0061090417', 'City Of Gold', 'https://images.isbndb.com/covers/04/17/9780061090417.jpg'), + ('0440178924', 'Second Generation', 'https://images.isbndb.com/covers/89/27/9780440178927.jpg'), + ('0553251139', 'The Fourth Protocol', 'https://images.isbndb.com/covers/11/35/9780553251135.jpg'), + ('0373160674', 'Public Affair', 'https://images.isbndb.com/covers/06/79/9780373160679.jpg'), + ('0671451979', 'The Second Coming', 'https://images.isbndb.com/covers/19/74/9780671451974.jpg'), + ('0380010038', 'The Cay', 'https://images.isbndb.com/covers/00/35/9780380010035.jpg'), + ('0553245015', 'Emergence', 'https://images.isbndb.com/covers/50/11/9780553245011.jpg'), + ('0451147715', 'Victims', 'https://images.isbndb.com/covers/77/14/9780451147714.jpg'), + ('067100252X', 'Tularosa', 'https://images.isbndb.com/covers/25/27/9780671002527.jpg'), + ('0770104835', 'Spotted Hemlock', 'https://images.isbndb.com/covers/48/32/9780770104832.jpg'), + ('0380712113', 'Drover And The Zebras', 'https://images.isbndb.com/covers/21/13/9780380712113.jpg'), + ('0449125092', 'The Lonely Silver Rain', 'https://images.isbndb.com/covers/50/90/9780449125090.jpg'), + ('0373071647', 'Reason To Believe (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/16/47/9780373071647.jpg'), + ('0449209709', 'San Andreas', 'https://images.isbndb.com/covers/97/07/9780449209707.jpg'), + ('0872169324', 'Damocles Sword', 'https://images.isbndb.com/covers/93/26/9780872169326.jpg'), + ('0446300292', 'Amityville Horror 2', 'https://images.isbndb.com/covers/02/92/9780446300292.jpg'), + ('0505515253', 'Flower Of Love', 'https://images.isbndb.com/covers/52/54/9780505515254.jpg'), + ('0340337923', 'Gathering Wolves (Coronet Books)', 'https://images.isbndb.com/covers/79/29/9780340337929.jpg'), + ('0553255509', 'The Rubber Band', 'https://images.isbndb.com/covers/55/08/9780553255508.jpg'), + ('0449212785', 'Silversword', 'https://images.isbndb.com/covers/27/83/9780449212783.jpg'), + ('0515086703', 'My Lady Rogue', 'https://images.isbndb.com/covers/67/06/9780515086706.jpg'), + ('0882077449', 'Building Up One Another', 'https://images.isbndb.com/covers/74/44/9780882077444.jpg'), + ('0843176989', 'Shrek Mad Libs', 'https://images.isbndb.com/covers/69/88/9780843176988.jpg'), + ('0449205037', 'Plague Dogs', 'https://images.isbndb.com/covers/50/37/9780449205037.jpg'), + ('0553562940', 'Uncharted Territory', 'https://images.isbndb.com/covers/29/41/9780553562941.jpg'), + ('0553230360', 'Beasts', 'https://images.isbndb.com/covers/03/69/9780553230369.jpg'), + ('0345423631', 'Night Of The Wolf (Legends Of The Wolves, Book 2)', 'https://images.isbndb.com/covers/36/34/9780345423634.jpg'), + ('0812549872', 'Human Error', 'https://images.isbndb.com/covers/98/74/9780812549874.jpg'), + ('0743488318', 'Darkness And Dawn', 'https://images.isbndb.com/covers/83/10/9780743488310.jpg'), + ('0441525628', 'Mercycle', 'https://images.isbndb.com/covers/56/21/9780441525621.jpg'), + ('0451159098', 'Prime Evil: New Stories By The Masters Of Modern Horror', 'https://images.isbndb.com/covers/90/90/9780451159090.jpg'), + ('0671439960', 'The World According To Garp', 'https://images.isbndb.com/covers/99/65/9780671439965.jpg'), + ('0345422589', 'Running With The Demon (The Word And The Void Trilogy, Book 1)', 'https://images.isbndb.com/covers/25/83/9780345422583.jpg'), + ('0689869886', 'Firewing (Aladdin Fantasy)', 'https://images.isbndb.com/covers/98/84/9780689869884.jpg'), + ('0793823218', 'Pharaoh Hounds (Kw Series)', 'https://images.isbndb.com/covers/32/15/9780793823215.jpg'), + ('0399236015', 'Castaways Of The Flying Dutchman', 'https://images.isbndb.com/covers/60/13/9780399236013.jpg'), + ('0553133136', 'Miami Millions', 'https://images.isbndb.com/covers/31/34/9780553133134.jpg'), + ('0345300912', 'Intrepid''s Last Case', 'https://images.isbndb.com/covers/09/11/9780345300911.jpg'), + ('0440106079', 'The Blue Knight', 'https://images.isbndb.com/covers/60/74/9780440106074.jpg'), + ('0385288581', 'Rich Man, Poor Man', 'https://images.isbndb.com/covers/85/83/9780385288583.jpg'), + ('0515039276', 'The Furies (Kent Family Chronicles)', 'https://images.isbndb.com/covers/92/76/9780515039276.jpg'), + ('0515087254', 'Brotherhood Of War 04: The Colonels', 'https://images.isbndb.com/covers/72/53/9780515087253.jpg'), + ('0515095125', 'Hazard Of Hearts (Cartland Classic)', 'https://images.isbndb.com/covers/51/28/9780515095128.jpg'), + ('0553278819', 'Sitka', 'https://images.isbndb.com/covers/88/11/9780553278811.jpg'), + ('0449232212', 'Judas Flowering', 'https://images.isbndb.com/covers/22/17/9780449232217.jpg'), + ('044164449X', 'Outlaw''s Embrace', 'https://images.isbndb.com/covers/44/90/9780441644490.jpg'), + ('0671469622', 'Reasonable Doubts', 'https://images.isbndb.com/covers/96/27/9780671469627.jpg'), + ('0828009775', 'Thirteen Life-changing Secrets', 'https://images.isbndb.com/covers/97/75/9780828009775.jpg'), + ('0886772214', 'Trekmaster', 'https://images.isbndb.com/covers/22/15/9780886772215.jpg'), + ('038076413X', 'Killing In The Family: A True Story Of Love, Lies And Murder', 'https://images.isbndb.com/covers/41/36/9780380764136.jpg'), + ('0671729918', 'BUSHIDO CODE (MUSASHI 4) (Musashi Book IV)', 'https://images.isbndb.com/covers/99/12/9780671729912.jpg'), + ('0060804955', 'The Sad Variety', 'https://images.isbndb.com/covers/49/54/9780060804954.jpg'), + ('1558172831', 'Lethal Vintage/A', 'https://images.isbndb.com/covers/28/38/9781558172838.jpg'), + ('0445407018', 'For The Good Of The State', 'https://images.isbndb.com/covers/70/15/9780445407015.jpg'), + ('0440119502', 'Dreaming Pool', 'https://images.isbndb.com/covers/95/00/9780440119500.jpg'), + ('0671502689', 'SMART WOMEN: A Story Of Hope', 'https://images.isbndb.com/covers/26/83/9780671502683.jpg'), + ('055325698X', 'The Proteus Operation', 'https://images.isbndb.com/covers/69/87/9780553256987.jpg'), + ('0345293711', 'Cerberus: Wolf In Fold', 'https://images.isbndb.com/covers/37/18/9780345293718.jpg'), + ('0815604599', 'The Grandees: The Story Of America''s Sephardic Elite', 'https://images.isbndb.com/covers/45/94/9780815604594.jpg'), + ('0552121401', 'No Comebacks', 'https://images.isbndb.com/covers/14/08/9780552121408.jpg'), + ('1588810070', 'Orphans Of The Sky', 'https://images.isbndb.com/covers/00/76/9781588810076.jpg'), + ('0671746693', 'The Eagle Has Flown', 'https://images.isbndb.com/covers/66/98/9780671746698.jpg'), + ('051509157X', 'The Furies', 'https://images.isbndb.com/covers/15/71/9780515091571.jpg'), + ('0515087335', 'The Touch', 'https://images.isbndb.com/covers/73/38/9780515087338.jpg'), + ('044104915X', 'Bard III: The Wild Sea', 'https://images.isbndb.com/covers/91/58/9780441049158.jpg'), + ('1561291935', 'The Rape Of Kuwait: The True Story Of Iraqi Atrocities Against A Civilian Population', 'https://images.isbndb.com/covers/19/39/9781561291939.jpg'), + ('0679748261', 'Goodbye, Columbus : And Five Short Stories (Vintage International)', 'https://images.isbndb.com/covers/82/67/9780679748267.jpg'), + ('0451148207', 'The Heir Apparent (Guardians Of The Flame, Book 4)', 'https://images.isbndb.com/covers/82/09/9780451148209.jpg'), + ('0440215285', 'Killing Orders', 'https://images.isbndb.com/covers/52/88/9780440215288.jpg'), + ('0451528913', 'McTeague: A Story Of San Francisco (Signet Classics)', 'https://images.isbndb.com/covers/89/19/9780451528919.jpg'), + ('074344485X', 'Battlestar Galactica Classic', 'https://images.isbndb.com/covers/48/59/9780743444859.jpg'), + ('0451144848', 'Informed Consent (Signet)', 'https://images.isbndb.com/covers/48/43/9780451144843.jpg'), + ('0449245276', 'Conversations With Rabbi Small', 'https://images.isbndb.com/covers/52/79/9780449245279.jpg'), + ('1852426411', 'Diary Of A Mad Housewife', 'https://images.isbndb.com/covers/64/15/9781852426415.jpg'), + ('0312966040', 'Died In The Wool (Inspector Roderick Alleyn Mysteries)', 'https://images.isbndb.com/covers/60/41/9780312966041.jpg'), + ('0451138945', 'Other Women (Signet)', 'https://images.isbndb.com/covers/89/41/9780451138941.jpg'), + ('1558535527', 'Alex: The Life Of A Child', 'https://images.isbndb.com/covers/55/27/9781558535527.jpg'), + ('055329573X', 'Schwarzkopf', 'https://images.isbndb.com/covers/57/33/9780553295733.jpg'), + ('0440613965', 'The Black Marble', 'https://images.isbndb.com/covers/39/61/9780440613961.jpg'), + ('0449204200', 'Stone Bull', 'https://images.isbndb.com/covers/42/07/9780449204207.jpg'), + ('0523424515', 'The Bay Psalm Book Murder', 'https://images.isbndb.com/covers/45/14/9780523424514.jpg'), + ('0553262564', 'The Aquitaine Progression', 'https://images.isbndb.com/covers/25/68/9780553262568.jpg'), + ('0449148246', 'Day Of Atonement', 'https://images.isbndb.com/covers/82/42/9780449148242.jpg'), + ('1558021256', 'The Black Moon', 'https://images.isbndb.com/covers/12/59/9781558021259.jpg'), + ('0451081641', 'Damien: Omen II', 'https://images.isbndb.com/covers/16/43/9780451081643.jpg'), + ('006080694X', 'Queen Lucia Part I', 'https://images.isbndb.com/covers/69/41/9780060806941.jpg'), + ('0671451820', 'Long Odds (Zeke Masters Western, #23)', 'https://images.isbndb.com/covers/18/20/9780671451820.jpg'), + ('0373160925', 'In Passion''S Defense', 'https://images.isbndb.com/covers/09/21/9780373160921.jpg'), + ('0821722999', 'Heart Of The Country', 'https://images.isbndb.com/covers/29/92/9780821722992.jpg'), + ('0061080535', 'The Court Of Three Sisters (Harper Monogram)', 'https://images.isbndb.com/covers/05/31/9780061080531.jpg'), + ('0451182677', 'Gone Quiet', 'https://images.isbndb.com/covers/26/78/9780451182678.jpg'), + ('0345275748', 'Dog Soldiers', 'https://images.isbndb.com/covers/57/45/9780345275745.jpg'), + ('0553133179', 'Hammerstrike', 'https://images.isbndb.com/covers/31/72/9780553133172.jpg'), + ('0821731130', 'The Woodchipper Murder', 'https://images.isbndb.com/covers/11/30/9780821731130.jpg'), + ('0345386302', 'Shadow Man', 'https://images.isbndb.com/covers/63/04/9780345386304.jpg'), + ('094323509X', 'Travesty (A True Crime Story--The Du Pont Kidnap Case And The La Rouche Railroad)', 'https://images.isbndb.com/covers/50/97/9780943235097.jpg'), + ('0312974167', 'To Die For: The Shocking True Story Of Serial Killer Dana Sue Gray', 'https://images.isbndb.com/covers/41/69/9780312974169.jpg'), + ('0451141482', 'Minding The Store', 'https://images.isbndb.com/covers/14/84/9780451141484.jpg'), + ('0553293850', 'Ritual Murder', 'https://images.isbndb.com/covers/38/52/9780553293852.jpg'), + ('0449146138', 'Rivals', 'https://images.isbndb.com/covers/61/32/9780449146132.jpg'), + ('0671824813', 'Goodbye Janette', 'https://images.isbndb.com/covers/48/15/9780671824815.jpg'), + ('187765213X', 'AIDS: The End Of Civilization', 'https://images.isbndb.com/covers/21/34/9781877652134.jpg'), + ('0425059995', 'The Dinner At Homesick Restaurant', 'https://images.isbndb.com/covers/99/99/9780425059999.jpg'), + ('0060809469', 'The Fires Of Fu Manchu', 'https://images.isbndb.com/covers/94/61/9780060809461.jpg'), + ('055320338X', 'Against Our Will', 'https://images.isbndb.com/covers/33/87/9780553203387.jpg'), + ('0440224489', 'The Real Rules: How To Find The Right Man For The Real You', 'https://images.isbndb.com/covers/44/88/9780440224488.jpg'), + ('1557730121', 'Dreamers And Dealers (Charter)', 'https://images.isbndb.com/covers/01/21/9781557730121.jpg'), + ('0345281527', 'The Zimmerman Telegram', 'https://images.isbndb.com/covers/15/24/9780345281524.jpg'), + ('0590333062', 'The Karate Kid', 'https://images.isbndb.com/covers/30/61/9780590333061.jpg'), + ('0553113313', 'The Haigerloch Project', 'https://images.isbndb.com/covers/33/10/9780553113310.jpg'), + ('0553201344', 'The Pritikin Program For Diet & Exercise', 'https://images.isbndb.com/covers/13/45/9780553201345.jpg'), + ('0380558890', 'Aztec', 'https://images.isbndb.com/covers/88/96/9780380558896.jpg'), + ('155817060X', 'MONEY TO BURN', 'https://images.isbndb.com/covers/06/05/9781558170605.jpg'), + ('0380701766', 'House', 'https://images.isbndb.com/covers/17/66/9780380701766.jpg'), + ('0439474299', 'Midnight For Charlie Bone (The Children Of The Red King, Book 1)', 'https://images.isbndb.com/covers/42/90/9780439474290.jpg'), + ('073880701X', 'Statesman', 'https://images.isbndb.com/covers/70/10/9780738807010.jpg'), + ('0441358489', 'Idylls Of The Queen', 'https://images.isbndb.com/covers/84/89/9780441358489.jpg'), + ('055322588X', 'The Suicide Plague', 'https://images.isbndb.com/covers/58/84/9780553225884.jpg'), + ('1558176535', 'Future Eden', 'https://images.isbndb.com/covers/65/39/9781558176539.jpg'), + ('0345314891', 'The Black Ship', 'https://images.isbndb.com/covers/48/95/9780345314895.jpg'), + ('0373071248', 'Islands In Turquoise (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/12/41/9780373071241.jpg'), + ('0446896268', 'Secrets Of The Bermuda Triangle', 'https://images.isbndb.com/covers/62/69/9780446896269.jpg'), + ('0446300675', 'Born To Love', 'https://images.isbndb.com/covers/06/74/9780446300674.jpg'), + ('0553292587', 'Dark Matter', 'https://images.isbndb.com/covers/25/89/9780553292589.jpg'), + ('0671507915', 'World Is Full Of Married Men, The', 'https://images.isbndb.com/covers/79/16/9780671507916.jpg'), + ('1577487869', 'Frieda''s Song (Heartsong Presents #375)', 'https://images.isbndb.com/covers/78/69/9781577487869.jpg'), + ('0140298452', 'Staring At The Light', 'https://images.isbndb.com/covers/84/51/9780140298451.jpg'), + ('0671741039', 'Swan Song', 'https://images.isbndb.com/covers/10/37/9780671741037.jpg'), + ('0425064638', 'Cashmere', 'https://images.isbndb.com/covers/46/34/9780425064634.jpg'), + ('0821721054', 'Shameless Desire', 'https://images.isbndb.com/covers/10/56/9780821721056.jpg'), + ('0451120531', 'Fallback', 'https://images.isbndb.com/covers/05/33/9780451120533.jpg'), + ('0446322490', 'Chances', 'https://images.isbndb.com/covers/24/92/9780446322492.jpg'), + ('0553246178', 'Death Cap', 'https://images.isbndb.com/covers/61/79/9780553246179.jpg'), + ('0373166907', 'Touch Me Not (More Than Men) (Harlequin American Romance)', 'https://images.isbndb.com/covers/69/09/9780373166909.jpg'), + ('0312954425', 'Berserk!: Motiveless Random Massacres', 'https://images.isbndb.com/covers/44/20/9780312954420.jpg'), + ('0517118424', 'How To Live With A Neurotic Dog', 'https://images.isbndb.com/covers/84/29/9780517118429.jpg'), + ('034538332X', 'Garfield Hits The Big Time (Garfield (Numbered Paperback))', 'https://images.isbndb.com/covers/33/27/9780345383327.jpg'), + ('067975377X', 'Asa, As I Knew Him', 'https://images.isbndb.com/covers/37/73/9780679753773.jpg'), + ('067143487X', 'A Man', 'https://images.isbndb.com/covers/48/78/9780671434878.jpg'), + ('0553087258', 'Scenes From A Marriage', 'https://images.isbndb.com/covers/72/53/9780553087253.jpg'), + ('0451187415', 'Trials', 'https://images.isbndb.com/covers/74/13/9780451187413.jpg'), + ('0373630336', 'Dividend On Death', 'https://images.isbndb.com/covers/03/32/9780373630332.jpg'), + ('0553262041', 'City In The Mist (America 2040, Book 3)', 'https://images.isbndb.com/covers/20/49/9780553262049.jpg'), + ('0451113357', 'The Delta Decision (Signet)', 'https://images.isbndb.com/covers/33/51/9780451113351.jpg'), + ('0060805463', 'Swift To Its Close', 'https://images.isbndb.com/covers/54/63/9780060805463.jpg'), + ('0449132757', 'Slam The Big Door', 'https://images.isbndb.com/covers/27/53/9780449132753.jpg'), + ('0380705753', 'The Black Dudley Murder', 'https://images.isbndb.com/covers/57/57/9780380705757.jpg'), + ('067156787X', 'A Time Of War: A Time Of War', 'https://images.isbndb.com/covers/78/73/9780671567873.jpg'), + ('0441240941', 'Flood', 'https://images.isbndb.com/covers/09/44/9780441240944.jpg'), + ('0440104327', 'Baby', 'https://images.isbndb.com/covers/43/22/9780440104322.jpg'), + ('0449203433', 'Floodgate', 'https://images.isbndb.com/covers/34/39/9780449203439.jpg'), + ('0345334973', 'The Flying Sorcerers', 'https://images.isbndb.com/covers/49/78/9780345334978.jpg'), + ('0839825943', 'Scarlet Plume (The Gregg Press Western Fiction Series)', 'https://images.isbndb.com/covers/59/44/9780839825944.jpg'), + ('037327033X', 'Portal (Silhouette Shadows)', 'https://images.isbndb.com/covers/03/30/9780373270330.jpg'), + ('0373074646', 'Castle Of Dreams (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/46/48/9780373074648.jpg'), + ('0285620878', 'Gold Of The Gods', 'https://images.isbndb.com/covers/08/72/9780285620872.jpg'), + ('0440217113', 'Hit On The House', 'https://images.isbndb.com/covers/71/14/9780440217114.jpg'), + ('0523009151', 'Blind Journey', 'https://images.isbndb.com/covers/91/55/9780523009155.jpg'), + ('0446360074', 'Rage Of Angels', 'https://images.isbndb.com/covers/00/74/9780446360074.jpg'), + ('0373612443', 'Night Heat (Able Team)', 'https://images.isbndb.com/covers/24/44/9780373612444.jpg'), + ('0440123070', 'Errol Flynn: The Untold Story', 'https://images.isbndb.com/covers/30/71/9780440123071.jpg'), + ('0446914770', 'Steppenwolf', 'https://images.isbndb.com/covers/47/72/9780446914772.jpg'), + ('0373706413', 'Forbidden (Women Who Dare, Book 15) (Harlequin Superromance, No 641)', 'https://images.isbndb.com/covers/64/19/9780373706419.jpg'), + ('0425071197', 'The Grunts', 'https://images.isbndb.com/covers/11/99/9780425071199.jpg'), + ('0440008379', 'Broken Promises', 'https://images.isbndb.com/covers/83/78/9780440008378.jpg'), + ('0451162188', 'Blind Faith (Signet)', 'https://images.isbndb.com/covers/21/82/9780451162182.jpg'), + ('059030061X', 'Unidentified Flying Oddball', 'https://images.isbndb.com/covers/06/12/9780590300612.jpg'), + ('0449134369', 'Heiress', 'https://images.isbndb.com/covers/43/68/9780449134368.jpg'), + ('0312914873', 'The Golden Calves', 'https://images.isbndb.com/covers/48/75/9780312914875.jpg'), + ('0345341228', 'Sins Of The Flesh: A Novel', 'https://images.isbndb.com/covers/12/28/9780345341228.jpg'), + ('0684871254', 'The Honorary Consul: A Novel (Simon & Schuster Classics)', 'https://images.isbndb.com/covers/12/57/9780684871257.jpg'), + ('0345319087', 'Dr. Miriam Stoppard''s Pregnancy And Birth Book', 'https://images.isbndb.com/covers/90/81/9780345319081.jpg'), + ('0915473135', 'ACOG Guide To Planning For Pregnancy, Birth, And Beyond', 'https://images.isbndb.com/covers/31/37/9780915473137.jpg'), + ('0849930715', 'Key To Your Child''s Heart', 'https://images.isbndb.com/covers/07/13/9780849930713.jpg'), + ('0696017288', 'Your Baby: Healthy Eating', 'https://images.isbndb.com/covers/72/85/9780696017285.jpg'), + ('0883441047', 'Christ In A Poncho: Testimonials Of The Nonviolent Struggles In Latin America', 'https://images.isbndb.com/covers/10/46/9780883441046.jpg'), + ('0806625783', '"Toward Full Communion" And "Concordat Of Agreement": Lutheran-Episcopal Dialogue, Series III', 'https://images.isbndb.com/covers/57/82/9780806625782.jpg'), + ('0830709967', 'Emotions: Can You Trust Them?', 'https://images.isbndb.com/covers/99/60/9780830709960.jpg'), + ('0883638886', '54 Ways You Can Help The Homeless', 'https://images.isbndb.com/covers/88/80/9780883638880.jpg'), + ('0671620991', 'Solve Your Child''s Sleep Problems', 'https://images.isbndb.com/covers/09/98/9780671620998.jpg'), + ('0671499505', 'Kon-Tiki', 'https://images.isbndb.com/covers/95/01/9780671499501.jpg'), + ('0877843309', 'Stress Myth: Why The Pressures Of Life Don''t Have To Get You Down', 'https://images.isbndb.com/covers/33/06/9780877843306.jpg'), + ('0800750268', 'Spirit-Controlled Family Living', 'https://images.isbndb.com/covers/02/68/9780800750268.jpg'), + ('0688111505', 'Head To Head: The Coming Economic Battle Among Japan, Europe, And America', 'https://images.isbndb.com/covers/15/02/9780688111502.jpg'), + ('0880704756', 'And The Word Came With Power: How God Met And Changed A People Forever', 'https://images.isbndb.com/covers/47/55/9780880704755.jpg'), + ('0934134464', 'Prayers', 'https://images.isbndb.com/covers/44/60/9780934134460.jpg'), + ('0891095578', 'Among Friends: You Can Help Make Your Church A Warmer Place', 'https://images.isbndb.com/covers/55/76/9780891095576.jpg'), + ('0671709003', 'Wasted', 'https://images.isbndb.com/covers/90/06/9780671709006.jpg'), + ('0523008473', 'Sinatra', 'https://images.isbndb.com/covers/84/79/9780523008479.jpg'), + ('0671693786', 'Night Of The Fox (Tie-in)', 'https://images.isbndb.com/covers/37/87/9780671693787.jpg'), + ('0881840238', 'Prometheus: The Life Of Balzac', 'https://images.isbndb.com/covers/02/30/9780881840230.jpg'), + ('0843931248', 'Madman Run (Endworld)', 'https://images.isbndb.com/covers/12/42/9780843931242.jpg'), + ('0553259571', 'QB VII', 'https://images.isbndb.com/covers/95/75/9780553259575.jpg'), + ('0830813233', 'Romancing The Globe: The Call Of The Wild On Generation X', 'https://images.isbndb.com/covers/32/30/9780830813230.jpg'), + ('0394718526', 'The Man Who Walked Through Time', 'https://images.isbndb.com/covers/85/21/9780394718521.jpg'), + ('0451155009', 'Outrageous Acts And Everyday Rebellions (Signet)', 'https://images.isbndb.com/covers/50/09/9780451155009.jpg'), + ('0451164555', 'Final Harvest (Signet)', 'https://images.isbndb.com/covers/45/51/9780451164551.jpg'), + ('0312960875', 'Secrets Of Serotonin: The Natural Hormone That Curbs Food And Alcohol Cravings, Elevates Your Mood, Reduces Pain, And Boosts Energy', 'https://images.isbndb.com/covers/08/72/9780312960872.jpg'), + ('0393073610', 'Eleanor: The Years Alone', 'https://images.isbndb.com/covers/36/14/9780393073614.jpg'), + ('1562921495', 'Christmas Treasures Of The Heart', 'https://images.isbndb.com/covers/14/91/9781562921491.jpg'), + ('0312926146', 'By Way Of Deception: The Making And Unmaking Of A Mossad Officer', 'https://images.isbndb.com/covers/61/44/9780312926144.jpg'), + ('0385270399', 'Ed Faulkner''s Tennis: How To Play It, How To Teach It', 'https://images.isbndb.com/covers/03/97/9780385270397.jpg'), + ('0882077120', 'How To Succeed In Business Without Being A Pagan (An Input Book)', 'https://images.isbndb.com/covers/71/23/9780882077123.jpg'), + ('0553253514', 'Rusty''s Story', 'https://images.isbndb.com/covers/35/11/9780553253511.jpg'), + ('0553147021', 'A Whale For The Killing', 'https://images.isbndb.com/covers/70/25/9780553147025.jpg'), + ('0670808652', 'Seven Days To Petrograd', 'https://images.isbndb.com/covers/86/56/9780670808656.jpg'), + ('0553246402', 'Holcroft Covenant', 'https://images.isbndb.com/covers/64/07/9780553246407.jpg'), + ('0449205975', 'Jian', 'https://images.isbndb.com/covers/59/76/9780449205976.jpg'), + ('0449228878', 'Thine Is The Glory', 'https://images.isbndb.com/covers/88/76/9780449228876.jpg'), + ('0449147371', 'Siren Song', 'https://images.isbndb.com/covers/73/75/9780449147375.jpg'), + ('0061320684', 'The Cunning Of History', 'https://images.isbndb.com/covers/06/82/9780061320682.jpg'), + ('0553133969', 'The Island', 'https://images.isbndb.com/covers/39/67/9780553133967.jpg'), + ('0312905823', 'A Habit Of The Blood', 'https://images.isbndb.com/covers/58/28/9780312905828.jpg'), + ('0553253638', 'Plot It Yourself', 'https://images.isbndb.com/covers/36/34/9780553253634.jpg'), + ('0380709937', 'Out On The Cutting Edge: A Matthew Scudder Crime Novel', 'https://images.isbndb.com/covers/99/39/9780380709939.jpg'), + ('0553258990', 'The Matarese Circle', 'https://images.isbndb.com/covers/89/98/9780553258998.jpg'), + ('067153291X', 'Shell Game', 'https://images.isbndb.com/covers/29/18/9780671532918.jpg'), + ('0553271598', 'Corridor Of Storms (First Americans, Book II)', 'https://images.isbndb.com/covers/15/91/9780553271591.jpg'), + ('094202401X', 'The Hundredth Monkey', 'https://images.isbndb.com/covers/40/12/9780942024012.jpg'), + ('0345361628', 'Prisoner Of Dreams', 'https://images.isbndb.com/covers/16/22/9780345361622.jpg'), + ('0812559894', 'Conquest At Quendor (Zork #4)', 'https://images.isbndb.com/covers/98/97/9780812559897.jpg'), + ('0380773988', 'Sweet Fancy', 'https://images.isbndb.com/covers/39/85/9780380773985.jpg'), + ('0553029754', 'The Shepherd', 'https://images.isbndb.com/covers/97/58/9780553029758.jpg'), + ('0312912951', 'The Man From Lake Wobegon', 'https://images.isbndb.com/covers/29/56/9780312912956.jpg'), + ('0446300853', 'Hard Money', 'https://images.isbndb.com/covers/08/58/9780446300858.jpg'), + ('0316952664', 'The Winds Of War', 'https://images.isbndb.com/covers/26/68/9780316952668.jpg'), + ('0446302686', 'Chances', 'https://images.isbndb.com/covers/26/85/9780446302685.jpg'), + ('0373071957', 'Genuine Article (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/19/51/9780373071951.jpg'), + ('0805003819', 'Renifleur''s Daughter', 'https://images.isbndb.com/covers/38/19/9780805003819.jpg'), + ('0517536242', 'The Spike', 'https://images.isbndb.com/covers/62/47/9780517536247.jpg'), + ('0375409270', 'The Book Of Revelation', 'https://images.isbndb.com/covers/92/71/9780375409271.jpg'), + ('0515084557', 'The Generals (Brotherhood Of War, Book 6)', 'https://images.isbndb.com/covers/45/59/9780515084559.jpg'), + ('0553264907', 'The Devil''s Alternative', 'https://images.isbndb.com/covers/49/06/9780553264906.jpg'), + ('0373706677', 'Fathers And Other Strangers (Family Man #12; Harlequin SuperRomance #667)', 'https://images.isbndb.com/covers/66/79/9780373706679.jpg'), + ('0440111935', 'CHIEF INSP DAUGHTER', 'https://images.isbndb.com/covers/19/31/9780440111931.jpg'), + ('0553373846', 'Pictures At Eleven', 'https://images.isbndb.com/covers/38/44/9780553373844.jpg'), + ('1884739091', 'Ash Wednesday ''45', 'https://images.isbndb.com/covers/90/95/9781884739095.jpg'), + ('0812558138', 'Free Live Free', 'https://images.isbndb.com/covers/81/35/9780812558135.jpg'), + ('0671509756', 'Any Minute I Can Split', 'https://images.isbndb.com/covers/97/50/9780671509750.jpg'), + ('0385096313', 'One To Ride The River With', 'https://images.isbndb.com/covers/63/17/9780385096317.jpg'), + ('0373030940', 'Duel Of Passion (Harlequin Romance)', 'https://images.isbndb.com/covers/09/41/9780373030941.jpg'), + ('0340268778', 'Noble House (Coronet Books)', 'https://images.isbndb.com/covers/87/73/9780340268773.jpg'), + ('0877931267', 'Not Without Parables: Stories Of Yesterday, Today, And Eternity', 'https://images.isbndb.com/covers/12/63/9780877931263.jpg'), + ('0553246763', 'Trek To Madworld: A Star Trek Novel', 'https://images.isbndb.com/covers/67/66/9780553246766.jpg'), + ('0671648705', 'Timetrap (Star Trek, No 40)', 'https://images.isbndb.com/covers/87/01/9780671648701.jpg'), + ('038059949X', 'Somebody Else''s Kids', 'https://images.isbndb.com/covers/94/93/9780380599493.jpg'), + ('0140069704', 'The Sleepers Of Erin', 'https://images.isbndb.com/covers/97/09/9780140069709.jpg'), + ('0345255216', 'The Russians', 'https://images.isbndb.com/covers/52/11/9780345255211.jpg'), + ('038070935X', 'Loitering With Intent', 'https://images.isbndb.com/covers/93/59/9780380709359.jpg'), + ('0140130209', 'The Whiteness Of Bones (Contemporary American Fiction)', 'https://images.isbndb.com/covers/02/01/9780140130201.jpg'), + ('0440135842', 'Help The Poor Struggler', 'https://images.isbndb.com/covers/58/45/9780440135845.jpg'), + ('0446605158', 'The Reality Dysfunction Part I: Emergence', 'https://images.isbndb.com/covers/51/51/9780446605151.jpg'), + ('0451115473', 'Double Cross', 'https://images.isbndb.com/covers/54/78/9780451115478.jpg'), + ('0440125820', 'The Foxbat Spiral', 'https://images.isbndb.com/covers/58/22/9780440125822.jpg'), + ('0425058603', 'For Special Services', 'https://images.isbndb.com/covers/86/02/9780425058602.jpg'), + ('0445209348', 'Laying The Music To Rest (Questar Science Fiction)', 'https://images.isbndb.com/covers/93/43/9780445209343.jpg'), + ('0553574043', 'Species: A Novel', 'https://images.isbndb.com/covers/40/43/9780553574043.jpg'), + ('0449235254', 'Condominium', 'https://images.isbndb.com/covers/52/56/9780449235256.jpg'), + ('0882704214', 'How To Live In High Victory,', 'https://images.isbndb.com/covers/42/10/9780882704210.jpg'), + ('0671871218', 'See, I Told You So', 'https://images.isbndb.com/covers/12/15/9780671871215.jpg'), + ('0380705729', 'The Gyrth Chalice Mystery', 'https://images.isbndb.com/covers/57/26/9780380705726.jpg'), + ('0060807393', 'A Funeral In Eden', 'https://images.isbndb.com/covers/73/99/9780060807399.jpg'), + ('0373264348', 'Death Of The Last Villista (Texana Jones Mysteries)', 'https://images.isbndb.com/covers/43/46/9780373264346.jpg'), + ('0446314668', 'Lonesome Road (A Miss Silver Mystery)', 'https://images.isbndb.com/covers/46/64/9780446314664.jpg'), + ('039474098X', 'The Man Who Stole The Mona Lisa', 'https://images.isbndb.com/covers/09/80/9780394740980.jpg'), + ('0881842214', 'The Prisoner In The Opal', 'https://images.isbndb.com/covers/22/10/9780881842210.jpg'), + ('0821719882', 'The Dollkeeper', 'https://images.isbndb.com/covers/98/86/9780821719886.jpg'), + ('0553248642', 'The Haj', 'https://images.isbndb.com/covers/86/47/9780553248647.jpg'), + ('0345368711', 'Early From The Dance', 'https://images.isbndb.com/covers/87/13/9780345368713.jpg'), + ('0704326485', 'Little Learning', 'https://images.isbndb.com/covers/64/84/9780704326484.jpg'), + ('0394723929', 'The Woman Warrior: Memoirs Of A Girlhood Among Ghosts', 'https://images.isbndb.com/covers/39/21/9780394723921.jpg'), + ('0446327786', 'Surprise Party', 'https://images.isbndb.com/covers/77/87/9780446327787.jpg'), + ('0884041557', 'Battlefield Earth : A Saga Of The Year 3000', 'https://images.isbndb.com/covers/15/59/9780884041559.jpg'), + ('0671600729', 'Silver Wings Santiago Blue', 'https://images.isbndb.com/covers/07/23/9780671600723.jpg'), + ('0380802562', 'Bruce Coville''s Strange Worlds (Avon Camelot Books)', 'https://images.isbndb.com/covers/25/62/9780380802562.jpg'), + ('0939286017', '"I Can Handle It"', 'https://images.isbndb.com/covers/60/10/9780939286010.jpg'), + ('0393301087', 'Plant Dreaming Deep', 'https://images.isbndb.com/covers/10/83/9780393301083.jpg'), + ('0515056561', 'Georgiana', 'https://images.isbndb.com/covers/65/63/9780515056563.jpg'), + ('1551660989', 'Daring Moves', 'https://images.isbndb.com/covers/09/81/9781551660981.jpg'), + ('0425070085', 'Golden Hill', 'https://images.isbndb.com/covers/00/86/9780425070086.jpg'), + ('0380851180', 'Heart Of Thunder', 'https://images.isbndb.com/covers/11/88/9780380851188.jpg'), + ('0246134933', 'The Romantic Challenge (The Mariner''s Library)', 'https://images.isbndb.com/covers/49/36/9780246134936.jpg'), + ('0671430742', 'Interested Parties', 'https://images.isbndb.com/covers/07/40/9780671430740.jpg'), + ('0373085567', 'Never Love A Cowboy', 'https://images.isbndb.com/covers/55/69/9780373085569.jpg'), + ('0373031084', 'Thai Silk (Harlequin Romance)', 'https://images.isbndb.com/covers/10/85/9780373031085.jpg'), + ('0440179297', 'The Settlers (The Australians, Vol. 2)', 'https://images.isbndb.com/covers/92/90/9780440179290.jpg'), + ('0373160739', 'Winter''s Bounty (Harlequin American Romance No. 73)', 'https://images.isbndb.com/covers/07/30/9780373160730.jpg'), + ('0821747169', 'Viking Tempest (Zebra Lovegram Historical Romance)', 'https://images.isbndb.com/covers/71/62/9780821747162.jpg'), + ('0743431685', 'A Murder Of Quality', 'https://images.isbndb.com/covers/16/82/9780743431682.jpg'), + ('0873513223', 'Last Letter Home: The Emigrant Novels Book 4', 'https://images.isbndb.com/covers/32/27/9780873513227.jpg'), + ('0613071832', 'That Hideous Strength (Space Trilogy)', 'https://images.isbndb.com/covers/18/33/9780613071833.jpg'), + ('0671504681', 'First Among Equals', 'https://images.isbndb.com/covers/46/87/9780671504687.jpg'), + ('0030577861', 'The Haunting Of Suzanna Blackwell', 'https://images.isbndb.com/covers/78/64/9780030577864.jpg'), + ('0671431056', 'King David''s Spaceship', 'https://images.isbndb.com/covers/10/51/9780671431051.jpg'), + ('0380791137', 'Blood Run', 'https://images.isbndb.com/covers/11/32/9780380791132.jpg'), + ('0439130263', 'Come What May (Heartland #5)', 'https://images.isbndb.com/covers/02/64/9780439130264.jpg'), + ('0141306971', 'Chessmen Of Doom (Johnny Dixon)', 'https://images.isbndb.com/covers/69/71/9780141306971.jpg'), + ('0670260770', 'The Dead Zone', 'https://images.isbndb.com/covers/07/75/9780670260775.jpg'), + ('0425161021', 'East Of Desolation', 'https://images.isbndb.com/covers/10/29/9780425161029.jpg'), + ('0833510266', 'The Eyes Of The Dragon (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/02/66/9780833510266.jpg'), + ('0793800722', 'Just Say Good Dog', 'https://images.isbndb.com/covers/07/28/9780793800728.jpg'), + ('0553580752', 'The Guinness Book Of World Records 1999 (Guinness World Records)', 'https://images.isbndb.com/covers/07/54/9780553580754.jpg'), + ('0743244281', 'Barry Trotter And The Unauthorized Parody', 'https://images.isbndb.com/covers/42/82/9780743244282.jpg'), + ('0060008873', 'Do No Harm', 'https://images.isbndb.com/covers/88/71/9780060008871.jpg'), + ('0553264613', 'Hot Ice', 'https://images.isbndb.com/covers/46/16/9780553264616.jpg'), + ('0590877437', 'Search For Senna (Everworld #1)', 'https://images.isbndb.com/covers/74/35/9780590877435.jpg'), + ('0446678651', 'Fun With Phone Solicitors: 50 Ways To Get Even', 'https://images.isbndb.com/covers/86/50/9780446678650.jpg'), + ('0441205666', 'Empire Of The East', 'https://images.isbndb.com/covers/56/60/9780441205660.jpg'), + ('0898156270', 'How To Shit In The Woods, Second Edition: An Environmentally Sound Approach To A Lost Art', 'https://images.isbndb.com/covers/62/70/9780898156270.jpg'), + ('0793818524', 'Guide To Own Labrador Retrievr (Re Dog)', 'https://images.isbndb.com/covers/85/25/9780793818525.jpg'), + ('042508437X', 'Fire On The Water (Lone Wolf, No. 2)', 'https://images.isbndb.com/covers/43/73/9780425084373.jpg'), + ('0671541811', 'The Final Fury (Star Trek: Voyager, No 9: Invasion Book No 4)', 'https://images.isbndb.com/covers/18/11/9780671541811.jpg'), + ('0505515563', 'The Silverleaf Syndrome', 'https://images.isbndb.com/covers/55/68/9780505515568.jpg'), + ('0553293397', 'The Naked Sun', 'https://images.isbndb.com/covers/33/95/9780553293395.jpg'), + ('0783890656', 'The Planet Savers: Also Including The Waterfall', 'https://images.isbndb.com/covers/06/54/9780783890654.jpg'), + ('0345444051', 'Childhood''s End (Del Rey Impact)', 'https://images.isbndb.com/covers/40/59/9780345444059.jpg'), + ('0517542099', 'The Hitchhiker''s Guide To The Galaxy', 'https://images.isbndb.com/covers/20/95/9780517542095.jpg'), + ('0609605453', 'The Frog Prince: A Fairy Tale For Consenting Adults', 'https://images.isbndb.com/covers/54/55/9780609605455.jpg'), + ('086622064X', 'Your First Puppy (Your First Series)', 'https://images.isbndb.com/covers/06/44/9780866220644.jpg'), + ('0962448206', 'One Hundred One Things To Do With Lutefisk', 'https://images.isbndb.com/covers/82/01/9780962448201.jpg'), + ('0757300006', 'Chicken Soup For The Soul: A Christmas Treasury', 'https://images.isbndb.com/covers/00/04/9780757300004.jpg'), + ('0425095908', 'Grey Star The Wizard (The World Of Lone Wolf Book 1)', 'https://images.isbndb.com/covers/59/04/9780425095904.jpg'), + ('0806961007', 'The Little Giant Book Of Riddles', 'https://images.isbndb.com/covers/10/02/9780806961002.jpg'), + ('0590877542', 'Enter The Enchanted (Everworld #3)', 'https://images.isbndb.com/covers/75/41/9780590877541.jpg'), + ('0590877623', 'Discover The Destroyer (Everworld #5)', 'https://images.isbndb.com/covers/76/26/9780590877626.jpg'), + ('059087764X', 'Fear The Fantastic (Everworld #6)', 'https://images.isbndb.com/covers/76/40/9780590877640.jpg'), + ('0590877666', 'Gateway To The Gods (Everworld #7)', 'https://images.isbndb.com/covers/76/64/9780590877664.jpg'), + ('0590878549', 'Brave The Betrayal (Everworld #8)', 'https://images.isbndb.com/covers/85/48/9780590878548.jpg'), + ('0425104842', 'The Jungle Of Horrors (Lone Wolf, Book 8)', 'https://images.isbndb.com/covers/48/42/9780425104842.jpg'), + ('0671541501', 'Time''s Enemy (Star Trek Deep Space Nine: Invasion, Book 3)', 'https://images.isbndb.com/covers/15/07/9780671541507.jpg'), + ('0061054240', 'Arena (Magic - The Gathering, No. 1)', 'https://images.isbndb.com/covers/42/42/9780061054242.jpg'), + ('074344261X', 'Tickled Pink: A Comic Novel', 'https://images.isbndb.com/covers/26/19/9780743442619.jpg'), + ('0671652273', 'Uhura''s Song (Star Trek, No 21)', 'https://images.isbndb.com/covers/22/72/9780671652272.jpg'), + ('0671735551', 'The Children Of Hamlin (Star Trek The Next Generation, No 3)', 'https://images.isbndb.com/covers/55/55/9780671735555.jpg'), + ('0060911980', 'Harper''s Illustrated Handbook Of Dogs', 'https://images.isbndb.com/covers/19/80/9780060911980.jpg'), + ('0879737964', 'Love, Lollipops And Laundry', 'https://images.isbndb.com/covers/79/62/9780879737962.jpg'), + ('0671042718', 'Gemworld Book Two Of Two (Star Trek The Next Generation, No 59)', 'https://images.isbndb.com/covers/27/14/9780671042714.jpg'), + ('0671794388', 'Dark Mirror (Star Trek: The Next Generation)', 'https://images.isbndb.com/covers/43/85/9780671794385.jpg'), + ('0671009257', 'Ship Of The Line (Star Trek Next Generation (Unnumbered))', 'https://images.isbndb.com/covers/92/50/9780671009250.jpg'), + ('0671019155', 'The Q Continuum: Q-Space (Star Trek The Next Generation, Book 47)', 'https://images.isbndb.com/covers/91/50/9780671019150.jpg'), + ('067104270X', 'Gemworld Book One Of Two (Star Trek The Next Generation, No 58)', 'https://images.isbndb.com/covers/27/07/9780671042707.jpg'), + ('006254506X', 'The Summer Of The Great-Grandmother (Crosswicks Journal, Book 2)', 'https://images.isbndb.com/covers/50/60/9780062545060.jpg'), + ('0671032577', 'Red Sector (Star Trek The Next Generation: Double Helix, Book 3)', 'https://images.isbndb.com/covers/25/79/9780671032579.jpg'), + ('067174142X', 'A Rock And A Hard Place (Star Trek The Next Generation, No 10)', 'https://images.isbndb.com/covers/14/26/9780671741426.jpg'), + ('0671032550', 'Infection (Star Trek The Next Generation: Double Helix, Book 1)', 'https://images.isbndb.com/covers/25/55/9780671032555.jpg'), + ('0671741454', 'Vendetta: The Giant Novel (Star Trek The Next Generation)', 'https://images.isbndb.com/covers/14/57/9780671741457.jpg'), + ('0671775715', 'Imbalance (Star Trek The Next Generation, No 22)', 'https://images.isbndb.com/covers/57/11/9780671775711.jpg'), + ('0451207637', 'The Fallen', 'https://images.isbndb.com/covers/76/30/9780451207630.jpg'), + ('1551668130', 'The Widow', 'https://images.isbndb.com/covers/81/30/9781551668130.jpg'), + ('0380776839', 'It Had To Be You', 'https://images.isbndb.com/covers/68/32/9780380776832.jpg'), + ('0515129496', 'Resurrection Day', 'https://images.isbndb.com/covers/94/96/9780515129496.jpg'), + ('0804101396', 'Your Incredible Cat: Understanding The Secret Powers Of Your Pet', 'https://images.isbndb.com/covers/13/94/9780804101394.jpg'), + ('0743411544', 'Two Brothers: The Lawman / The Gunslinger (2 Books In 1)', 'https://images.isbndb.com/covers/15/47/9780743411547.jpg'), + ('0553573225', 'Home Fires', 'https://images.isbndb.com/covers/32/20/9780553573220.jpg'), + ('0380808080', 'This Heart Of Mine', 'https://images.isbndb.com/covers/80/83/9780380808083.jpg'), + ('0671039199', 'Deep Water (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/91/96/9780671039196.jpg'), + ('0486261794', 'Self-Working Coin Magic: 92 Foolproof Tricks (Cards, Coins, And Other Magic)', 'https://images.isbndb.com/covers/17/99/9780486261799.jpg'), + ('0912692561', 'Never Miss A Sunset', 'https://images.isbndb.com/covers/25/62/9780912692562.jpg'), + ('0812555120', 'Zombie Lover (Xanth, No. 22)', 'https://images.isbndb.com/covers/51/27/9780812555127.jpg'), + ('0064405737', 'Julie', 'https://images.isbndb.com/covers/57/37/9780064405737.jpg'), + ('0394868811', 'The Berenstain Bears And Mama''s New Job', 'https://images.isbndb.com/covers/88/13/9780394868813.jpg'), + ('0812534018', 'Nemesis: Indigo Book One', 'https://images.isbndb.com/covers/40/16/9780812534016.jpg'), + ('1572700408', 'The Secret Garden (unabridged)', 'https://images.isbndb.com/covers/04/06/9781572700406.jpg'), + ('0836218914', 'Suburban Cowgirls', 'https://images.isbndb.com/covers/89/16/9780836218916.jpg'), + ('0836220668', 'Bride Of The Far Side ®', 'https://images.isbndb.com/covers/06/67/9780836220667.jpg'), + ('0812574710', 'Muse Of Art (Geodyssey, Saga 4)', 'https://images.isbndb.com/covers/47/15/9780812574715.jpg'), + ('0451192028', 'Light A Penny Candle', 'https://images.isbndb.com/covers/20/28/9780451192028.jpg'), + ('0345387791', 'Powers That Be (Petaybee, Book 1)', 'https://images.isbndb.com/covers/77/90/9780345387790.jpg'), + ('0836217403', 'Shave The Whales', 'https://images.isbndb.com/covers/74/07/9780836217407.jpg'), + ('0373802021', 'The Fairy Godmother (Tales Of The Five Hundred Kingdoms, Book 1)', 'https://images.isbndb.com/covers/20/29/9780373802029.jpg'), + ('0440119766', 'The Key-Lock Man', 'https://images.isbndb.com/covers/97/60/9780440119760.jpg'), + ('0394714202', 'Cuban Passage', 'https://images.isbndb.com/covers/42/02/9780394714202.jpg'), + ('0385312202', 'Leaving Cold Sassy', 'https://images.isbndb.com/covers/22/02/9780385312202.jpg'), + ('0736625828', 'The Landower Legacy', 'https://images.isbndb.com/covers/58/21/9780736625821.jpg'), + ('0394500792', 'Chesapeake', 'https://images.isbndb.com/covers/07/99/9780394500799.jpg'), + ('0736605029', 'Hell Is Too Crowded', 'https://images.isbndb.com/covers/50/21/9780736605021.jpg'), + ('0451087488', 'Fury''s Sun, Passion''s Moon', 'https://images.isbndb.com/covers/74/85/9780451087485.jpg'), + ('1585671827', 'Shardik', 'https://images.isbndb.com/covers/18/23/9781585671823.jpg'), + ('0345324455', 'Midnight At The Well Of Souls', 'https://images.isbndb.com/covers/44/50/9780345324450.jpg'), + ('0449911764', 'The Last Enchantment (Arthurian Saga)', 'https://images.isbndb.com/covers/17/61/9780449911761.jpg'), + ('0805013342', '"A" Is For Alibi: A Kinsey Millhone Mystery', 'https://images.isbndb.com/covers/33/44/9780805013344.jpg'), + ('0345300610', 'The Vagabond', 'https://images.isbndb.com/covers/06/14/9780345300614.jpg'), + ('0803705832', 'The Tale Of The Unicorn', 'https://images.isbndb.com/covers/58/38/9780803705838.jpg'), + ('0688159079', 'The Book Of Classic Insults', 'https://images.isbndb.com/covers/90/78/9780688159078.jpg'), + ('0060929510', 'Modoc: The True Story Of The Greatest Elephant That Ever Lived', 'https://images.isbndb.com/covers/95/10/9780060929510.jpg'), + ('0060277475', 'I Was A Teenage Fairy', 'https://images.isbndb.com/covers/74/75/9780060277475.jpg'), + ('0743434897', 'Jokers Wild (Wild Cards, Book 3)', 'https://images.isbndb.com/covers/48/98/9780743434898.jpg'), + ('0743423917', 'Aces High (Wild Cards, Volume 2)', 'https://images.isbndb.com/covers/39/15/9780743423915.jpg'), + ('0812566785', 'Rainbow Mars', 'https://images.isbndb.com/covers/67/89/9780812566789.jpg'), + ('0515134406', 'Fire And Flesh', 'https://images.isbndb.com/covers/44/07/9780515134407.jpg'), + ('0884042855', 'An Alien Affair (Mission Earth, Vol 4)', 'https://images.isbndb.com/covers/28/53/9780884042853.jpg'), + ('0060096209', 'A Little Help From Above', 'https://images.isbndb.com/covers/62/05/9780060096205.jpg'), + ('0345350502', 'The Dragon And The George', 'https://images.isbndb.com/covers/05/03/9780345350503.jpg'), + ('0671667033', 'The Firebrand', 'https://images.isbndb.com/covers/70/30/9780671667030.jpg'), + ('0812534867', 'Roc And A Hard Place (Xanth, No. 19)', 'https://images.isbndb.com/covers/48/63/9780812534863.jpg'), + ('0553263218', 'The Pigman', 'https://images.isbndb.com/covers/32/13/9780553263213.jpg'), + ('0891904891', 'Purple Pirates', 'https://images.isbndb.com/covers/48/92/9780891904892.jpg'), + ('0671737120', 'Sword Point', 'https://images.isbndb.com/covers/71/22/9780671737122.jpg'), + ('0821735985', 'Baby Dolly', 'https://images.isbndb.com/covers/59/85/9780821735985.jpg'), + ('0345334841', 'Surrender The Stars', 'https://images.isbndb.com/covers/48/48/9780345334848.jpg'), + ('0842339558', 'The Man Of The Desert (Grace Livingston Hill #63)', 'https://images.isbndb.com/covers/95/51/9780842339551.jpg'), + ('0025182005', 'Edward, Edward: A Part Of His Story And Of History 1795-1816 Set Out In Three Parts In This Form Of A New-Old Picaresque Romance That Is Also A Stud', 'https://images.isbndb.com/covers/20/04/9780025182004.jpg'), + ('0595144470', 'Kataki: A Novel Of Revenge', 'https://images.isbndb.com/covers/44/71/9780595144471.jpg'), + ('1572701285', 'The Danger', 'https://images.isbndb.com/covers/12/81/9781572701281.jpg'), + ('0451110293', 'Ruff Justice 02: Night', 'https://images.isbndb.com/covers/02/99/9780451110299.jpg'), + ('0446365696', 'Prince Of The City', 'https://images.isbndb.com/covers/56/97/9780446365697.jpg'), + ('0671724517', 'Hollywood Husbands', 'https://images.isbndb.com/covers/45/11/9780671724511.jpg'), + ('0671874950', 'Spellbinder', 'https://images.isbndb.com/covers/49/57/9780671874957.jpg'), + ('0553171712', 'Brainchild', 'https://images.isbndb.com/covers/17/16/9780553171716.jpg'), + ('0736603964', 'Snare Of The Hunter', 'https://images.isbndb.com/covers/39/66/9780736603966.jpg'), + ('0440126185', 'Floodtide', 'https://images.isbndb.com/covers/61/88/9780440126188.jpg'), + ('0446364703', 'Decked (Regan Reilly Mysteries, No. 1)', 'https://images.isbndb.com/covers/47/06/9780446364706.jpg'), + ('1903436087', 'The Tempest (Arden Shakespeare)', 'https://images.isbndb.com/covers/60/80/9781903436080.jpg'), + ('067154313X', 'Fifteen American One Act Plays (Anta Series Of Distinguished Plays)', 'https://images.isbndb.com/covers/31/36/9780671543136.jpg'), + ('0140302069', 'A Dog So Small', 'https://images.isbndb.com/covers/20/66/9780140302066.jpg'), + ('1401088945', 'Ground Zero And Beyond', 'https://images.isbndb.com/covers/89/41/9781401088941.jpg'), + ('0812511182', 'The Sixth Book Of Lost Swords: Mindsword''s Story', 'https://images.isbndb.com/covers/11/85/9780812511185.jpg'), + ('0446392340', 'Save The Animals: 101 Easy Things You Can Do', 'https://images.isbndb.com/covers/23/41/9780446392341.jpg'), + ('0345277996', 'Icerigger', 'https://images.isbndb.com/covers/79/92/9780345277992.jpg'), + ('0061054275', 'Eternity Road', 'https://images.isbndb.com/covers/42/73/9780061054273.jpg'), + ('0441110444', 'Clarke County, Space', 'https://images.isbndb.com/covers/04/45/9780441110445.jpg'), + ('1582340544', 'I & Claudius: Travels With My Cat', 'https://images.isbndb.com/covers/05/48/9781582340548.jpg'), + ('0061054747', 'Daughter Of The Shaman', 'https://images.isbndb.com/covers/47/47/9780061054747.jpg'), + ('0679768645', 'The Galton Case (Vintage Crime/Black Lizard)', 'https://images.isbndb.com/covers/86/47/9780679768647.jpg'), + ('0698107047', 'This Is The House', 'https://images.isbndb.com/covers/70/45/9780698107045.jpg'), + ('0333185153', 'Drink For The Bridge', 'https://images.isbndb.com/covers/51/55/9780333185155.jpg'), + ('0671776096', 'Whitney, My Love', 'https://images.isbndb.com/covers/60/91/9780671776091.jpg'), + ('0440384974', 'Thy Neighbor''s Wife', 'https://images.isbndb.com/covers/49/77/9780440384977.jpg'), + ('0380391236', 'Tara''s Song', 'https://images.isbndb.com/covers/12/33/9780380391233.jpg'), + ('0380699710', 'The Rich And The Mighty', 'https://images.isbndb.com/covers/97/11/9780380699711.jpg'), + ('0671690140', 'Trapped In Death Cave', 'https://images.isbndb.com/covers/01/44/9780671690144.jpg'), + ('0881844314', 'The Fallen Sparrow', 'https://images.isbndb.com/covers/43/13/9780881844313.jpg'), + ('0671221396', 'Auctioneer', 'https://images.isbndb.com/covers/13/93/9780671221393.jpg'), + ('0671732498', 'Separate Reality', 'https://images.isbndb.com/covers/24/93/9780671732493.jpg'), + ('0747548218', 'French Connection (Bloomsbury Film Classics)', 'https://images.isbndb.com/covers/82/18/9780747548218.jpg'), + ('0553121456', 'Independence', 'https://images.isbndb.com/covers/14/52/9780553121452.jpg'), + ('0892440384', 'Cash McCall', 'https://images.isbndb.com/covers/03/82/9780892440382.jpg'), + ('1842326481', 'Death Is No Sportsman (Inspector Mallett Mystery S.)', 'https://images.isbndb.com/covers/64/80/9781842326480.jpg'), + ('0380811901', 'Love Play', 'https://images.isbndb.com/covers/19/08/9780380811908.jpg'), + ('0345339215', 'Burr', 'https://images.isbndb.com/covers/92/18/9780345339218.jpg'), + ('0671874861', 'The Dream Merchants', 'https://images.isbndb.com/covers/48/65/9780671874865.jpg'), + ('9997405307', 'Marooned A Novel', 'https://images.isbndb.com/covers/53/02/9789997405302.jpg'), + ('0064470148', 'The Silent Treatment', 'https://images.isbndb.com/covers/01/48/9780064470148.jpg'), + ('0312857322', 'Lovelock (Mayflower)', 'https://images.isbndb.com/covers/73/25/9780312857325.jpg'), + ('0310275121', 'A Father, A Son, And A Three-Mile Run', 'https://images.isbndb.com/covers/51/21/9780310275121.jpg'), + ('0553284657', 'Scruples', 'https://images.isbndb.com/covers/46/52/9780553284652.jpg'), + ('0786704845', 'The Siege Of Krishnapur', 'https://images.isbndb.com/covers/48/42/9780786704842.jpg'), + ('0671832611', 'Zero Factor', 'https://images.isbndb.com/covers/26/12/9780671832612.jpg'), + ('0553290045', 'Boys From Brazil, The', 'https://images.isbndb.com/covers/00/42/9780553290042.jpg'), + ('0505512386', 'Long Wire', 'https://images.isbndb.com/covers/23/83/9780505512383.jpg'), + ('0505516292', 'Bullwhacker', 'https://images.isbndb.com/covers/62/99/9780505516299.jpg'), + ('0140071229', 'August 1914 (The Red Wheel, Vol. 1)', 'https://images.isbndb.com/covers/12/21/9780140071221.jpg'), + ('0441783058', 'Starrigger', 'https://images.isbndb.com/covers/30/52/9780441783052.jpg'), + ('0449213617', 'The Shivering Sands', 'https://images.isbndb.com/covers/36/12/9780449213612.jpg'), + ('039455695X', 'Chesapeake', 'https://images.isbndb.com/covers/69/56/9780394556956.jpg'), + ('0345282892', 'Double, Double (Queen)', 'https://images.isbndb.com/covers/28/97/9780345282897.jpg'), + ('0060179716', 'Deadly Perfume: An International Thriller', 'https://images.isbndb.com/covers/97/17/9780060179717.jpg'), + ('0440213991', 'Guardian Angel', 'https://images.isbndb.com/covers/39/94/9780440213994.jpg'), + ('0373610734', 'Appointment In Kabul (Mack Bolan)', 'https://images.isbndb.com/covers/07/30/9780373610730.jpg'), + ('0451136497', 'Doyle''s Disciples', 'https://images.isbndb.com/covers/64/97/9780451136497.jpg'), + ('0671532278', 'Oath Of Fealty', 'https://images.isbndb.com/covers/22/77/9780671532277.jpg'), + ('0440193281', 'Wilderness', 'https://images.isbndb.com/covers/32/89/9780440193289.jpg'), + ('0515091332', 'The Americans', 'https://images.isbndb.com/covers/13/35/9780515091335.jpg'), + ('0340020326', 'Sleep In The Woods (Coronet Books)', 'https://images.isbndb.com/covers/03/26/9780340020326.jpg'), + ('0425175413', 'The White House Connection (Sean Dillon)', 'https://images.isbndb.com/covers/54/15/9780425175415.jpg'), + ('0821719246', 'RICH IS BEST', 'https://images.isbndb.com/covers/92/44/9780821719244.jpg'), + ('0671737783', 'Mediterranean Caper', 'https://images.isbndb.com/covers/77/88/9780671737788.jpg'), + ('0396065023', 'The Hindenburg', 'https://images.isbndb.com/covers/50/29/9780396065029.jpg'), + ('0446603058', 'Goldilocks', 'https://images.isbndb.com/covers/30/58/9780446603058.jpg'), + ('0380707063', 'An Alien Light', 'https://images.isbndb.com/covers/70/65/9780380707065.jpg'), + ('1551667169', 'Surrender To Love', 'https://images.isbndb.com/covers/71/64/9781551667164.jpg'), + ('0345383850', 'Garfield Fat Cat 3- Pack', 'https://images.isbndb.com/covers/38/53/9780345383853.jpg'), + ('044098761X', 'A Wind In The Door (The Time Quartet)', 'https://images.isbndb.com/covers/76/11/9780440987611.jpg'), + ('0451208641', 'Black Like Me', 'https://images.isbndb.com/covers/86/44/9780451208644.jpg'), + ('0345325885', 'Star Man''s Son', 'https://images.isbndb.com/covers/58/84/9780345325884.jpg'), + ('0879972734', 'Walkers On The Sky', 'https://images.isbndb.com/covers/27/38/9780879972738.jpg'), + ('0345318315', 'The Gods Themselves', 'https://images.isbndb.com/covers/83/12/9780345318312.jpg'), + ('0525169954', 'Oklahoma Crude', 'https://images.isbndb.com/covers/99/56/9780525169956.jpg'), + ('0553257048', 'The Postman', 'https://images.isbndb.com/covers/70/45/9780553257045.jpg'), + ('0843938366', 'The Californian', 'https://images.isbndb.com/covers/83/64/9780843938364.jpg'), + ('0671526812', 'HIGH STAKES HR PRE (Harold Robbins Presents Series)', 'https://images.isbndb.com/covers/68/18/9780671526818.jpg'), + ('0345439724', 'Marathon Man', 'https://images.isbndb.com/covers/97/27/9780345439727.jpg'), + ('0396088678', 'Murder With Mirrors (Winterbrook Edition)', 'https://images.isbndb.com/covers/86/77/9780396088677.jpg'), + ('0440226279', 'McClairen''s Isle: The Reckless One', 'https://images.isbndb.com/covers/62/77/9780440226277.jpg'), + ('044017399X', 'Ride Out The Storm', 'https://images.isbndb.com/covers/39/91/9780440173991.jpg'), + ('0446305618', 'Daughters Of The South Wind', 'https://images.isbndb.com/covers/56/17/9780446305617.jpg'), + ('0441585558', 'Nobody Lives Forever', 'https://images.isbndb.com/covers/55/57/9780441585557.jpg'), + ('0449204960', 'Men Of Men', 'https://images.isbndb.com/covers/49/62/9780449204962.jpg'), + ('0451400216', 'The Endless Game (Onyx)', 'https://images.isbndb.com/covers/02/15/9780451400215.jpg'), + ('0446342122', 'Bold Breathless Love', 'https://images.isbndb.com/covers/21/24/9780446342124.jpg'), + ('044022795X', 'Leonardo - A Scrapbook In Words And Pictures', 'https://images.isbndb.com/covers/79/53/9780440227953.jpg'), + ('0449209741', 'Santorini', 'https://images.isbndb.com/covers/97/45/9780449209745.jpg'), + ('1558174516', 'Target: Intruder', 'https://images.isbndb.com/covers/45/11/9781558174511.jpg'), + ('044022327X', 'The Cowboy Rides Away', 'https://images.isbndb.com/covers/32/76/9780440223276.jpg'), + ('0553130986', 'The Matarese Circle', 'https://images.isbndb.com/covers/09/80/9780553130980.jpg'), + ('0451162897', 'Firebird (Signet)', 'https://images.isbndb.com/covers/28/92/9780451162892.jpg'), + ('0553148915', 'The Old Neighborhood', 'https://images.isbndb.com/covers/89/16/9780553148916.jpg'), + ('1558021833', 'The Gold Train (Faraday, No 3)', 'https://images.isbndb.com/covers/18/39/9781558021839.jpg'), + ('0345343581', 'Kate Vaiden', 'https://images.isbndb.com/covers/35/81/9780345343581.jpg'), + ('0441122892', 'Crossing In Berlin', 'https://images.isbndb.com/covers/28/99/9780441122899.jpg'), + ('0821716700', 'Lovefire', 'https://images.isbndb.com/covers/67/00/9780821716700.jpg'), + ('0380899825', 'Hearts Aflame', 'https://images.isbndb.com/covers/98/21/9780380899821.jpg'), + ('0380751712', 'Pride''s Passion', 'https://images.isbndb.com/covers/17/16/9780380751716.jpg'), + ('0671640127', 'Flight Of The Intruder', 'https://images.isbndb.com/covers/01/25/9780671640125.jpg'), + ('0445203684', 'Wind Of Promise', 'https://images.isbndb.com/covers/36/86/9780445203686.jpg'), + ('0812555112', 'Faun & Games (Xanth, No. 21)', 'https://images.isbndb.com/covers/51/10/9780812555110.jpg'), + ('0380772973', 'Taking Liberty', 'https://images.isbndb.com/covers/29/71/9780380772971.jpg'), + ('034529601X', 'The Stunt Man', 'https://images.isbndb.com/covers/60/16/9780345296016.jpg'), + ('0553272659', 'The Bad Lands (Legends West)', 'https://images.isbndb.com/covers/26/59/9780553272659.jpg'), + ('0843946539', 'The Gates Of The Mountains', 'https://images.isbndb.com/covers/65/36/9780843946536.jpg'), + ('0151569401', 'The Man Who Loved Cat Dancing', 'https://images.isbndb.com/covers/94/03/9780151569403.jpg'), + ('0449203948', 'The Satan Bug', 'https://images.isbndb.com/covers/39/41/9780449203941.jpg'), + ('0590312642', 'Star Streak : Stories Of Space', 'https://images.isbndb.com/covers/26/46/9780590312646.jpg'), + ('0380008424', 'The Auctioneer', 'https://images.isbndb.com/covers/84/21/9780380008421.jpg'), + ('0553282204', 'Bingo', 'https://images.isbndb.com/covers/22/07/9780553282207.jpg'), + ('0394756886', 'Bright Lights, Big City', 'https://images.isbndb.com/covers/68/82/9780394756882.jpg'), + ('037382503X', 'Wisconsin Wedding (Welcome To Tyler, No. 3)', 'https://images.isbndb.com/covers/50/35/9780373825035.jpg'), + ('0345256557', 'Apple Tree Lean Down', 'https://images.isbndb.com/covers/65/53/9780345256553.jpg'), + ('0446323802', 'Desire In Disguise', 'https://images.isbndb.com/covers/38/02/9780446323802.jpg'), + ('0874068541', 'Real-Life Scary Kids', 'https://images.isbndb.com/covers/85/42/9780874068542.jpg'), + ('0761115366', 'Hold Your Horses: Nuggets Of Truth For People Who Love Horses...No Matter What', 'https://images.isbndb.com/covers/53/66/9780761115366.jpg'), + ('1564310310', 'Tangent Objective', 'https://images.isbndb.com/covers/03/16/9781564310316.jpg'), + ('0380703696', 'Long Time No See (An 87th Precinct Novel)', 'https://images.isbndb.com/covers/36/92/9780380703692.jpg'), + ('0689806590', 'Bunnicula: A Rabbit-Tale Of Mystery', 'https://images.isbndb.com/covers/65/99/9780689806599.jpg'), + ('0140097309', 'Hiroshima Joe', 'https://images.isbndb.com/covers/73/06/9780140097306.jpg'), + ('0440146291', 'Love And Glory', 'https://images.isbndb.com/covers/62/92/9780440146292.jpg'), + ('0449200582', 'River Of Death', 'https://images.isbndb.com/covers/05/82/9780449200582.jpg'), + ('0156551381', 'Maigret And The Black Sheep', 'https://images.isbndb.com/covers/13/80/9780156551380.jpg'), + ('0373705166', 'Whispers Of The Heart (Harlequin Superromance No. 516)', 'https://images.isbndb.com/covers/51/60/9780373705160.jpg'), + ('0884113795', 'Solitary Horseman', 'https://images.isbndb.com/covers/37/99/9780884113799.jpg'), + ('0380012278', 'Goldengrove', 'https://images.isbndb.com/covers/22/75/9780380012275.jpg'), + ('0380607077', 'Reverend Randollph And The Holy Terror', 'https://images.isbndb.com/covers/70/75/9780380607075.jpg'), + ('0380018446', 'Oliver''s Story', 'https://images.isbndb.com/covers/84/44/9780380018444.jpg'), + ('0449202712', 'Flight Of The Falcon', 'https://images.isbndb.com/covers/27/15/9780449202715.jpg'), + ('1557508275', 'The Raft', 'https://images.isbndb.com/covers/82/70/9781557508270.jpg'), + ('0515090220', 'The Colonels (Brotherhood Of War, Book 4)', 'https://images.isbndb.com/covers/02/22/9780515090222.jpg'), + ('0425122611', 'Win, Lose Or Die', 'https://images.isbndb.com/covers/26/17/9780425122617.jpg'), + ('0425120430', 'Day Of The Cheetah', 'https://images.isbndb.com/covers/04/39/9780425120439.jpg'), + ('0425052478', 'License Renewed', 'https://images.isbndb.com/covers/24/71/9780425052471.jpg'), + ('044912505X', 'Cinnamon Skin (A Travis McGee Novel)', 'https://images.isbndb.com/covers/50/52/9780449125052.jpg'), + ('0425188221', 'Shadowland', 'https://images.isbndb.com/covers/82/24/9780425188224.jpg'), + ('0091059801', 'The Quiet Sound Of Fear', 'https://images.isbndb.com/covers/98/04/9780091059804.jpg'), + ('0671007947', 'False Conception (John Marshall Tanner Mysteries)', 'https://images.isbndb.com/covers/79/42/9780671007942.jpg'), + ('0449207269', 'Ride A Pale Horse', 'https://images.isbndb.com/covers/72/60/9780449207260.jpg'), + ('0449207307', 'Caravan To Vaccares', 'https://images.isbndb.com/covers/73/07/9780449207307.jpg'), + ('0671555022', 'The Man Who Killed The Deer', 'https://images.isbndb.com/covers/50/23/9780671555023.jpg'), + ('0451400372', 'Her Father''s Daughter (Onyx)', 'https://images.isbndb.com/covers/03/76/9780451400376.jpg'), + ('0523417489', 'Windhaven''s Crisis', 'https://images.isbndb.com/covers/74/86/9780523417486.jpg'), + ('0380003120', 'Fire In The Embers', 'https://images.isbndb.com/covers/31/29/9780380003129.jpg'), + ('0380733358', 'Eye Of The Needle', 'https://images.isbndb.com/covers/33/54/9780380733354.jpg'), + ('0345273559', 'Captive Innocence', 'https://images.isbndb.com/covers/35/50/9780345273550.jpg'), + ('0345347897', 'Sisters', 'https://images.isbndb.com/covers/78/93/9780345347893.jpg'), + ('1557481733', 'Young Readers Christian Library: Ruth', 'https://images.isbndb.com/covers/17/33/9781557481733.jpg'), + ('0671633457', 'Amerika', 'https://images.isbndb.com/covers/34/55/9780671633455.jpg'), + ('0380703122', 'Whirlwind', 'https://images.isbndb.com/covers/31/28/9780380703128.jpg'), + ('0373638388', 'Talon And Fang (Outlanders #25)', 'https://images.isbndb.com/covers/83/83/9780373638383.jpg'), + ('0886774039', 'Sunrunner''s Fire (Dragon Prince, Book 3)', 'https://images.isbndb.com/covers/40/35/9780886774035.jpg'), + ('0312854285', 'Lord Of Chaos (The Wheel Of Time, Book 6)', 'https://images.isbndb.com/covers/42/87/9780312854287.jpg'), + ('0312930372', 'The Call Of Earth (Homecoming)', 'https://images.isbndb.com/covers/03/70/9780312930370.jpg'), + ('0385261853', 'Black Trillium', 'https://images.isbndb.com/covers/18/52/9780385261852.jpg'), + ('0312890524', 'Blood Of The Fold (Sword Of Truth, Book 3)', 'https://images.isbndb.com/covers/05/20/9780312890520.jpg'), + ('031287054X', 'The Miocene Arrow', 'https://images.isbndb.com/covers/05/46/9780312870546.jpg'), + ('0812545591', 'The Soprano Sorceress: The First Book Of The Spellsong Cycle', 'https://images.isbndb.com/covers/55/93/9780812545593.jpg'), + ('0152015981', 'Sophie (Books For Young Readers)', 'https://images.isbndb.com/covers/59/85/9780152015985.jpg'), + ('0399218777', 'Draw Me A Star', 'https://images.isbndb.com/covers/87/74/9780399218774.jpg'), + ('0345377591', 'The Seeress Of Kell (The Malloreon, Book 5)', 'https://images.isbndb.com/covers/75/93/9780345377593.jpg'), + ('0812095367', 'The Fascinating World Of Wolves', 'https://images.isbndb.com/covers/53/64/9780812095364.jpg'), + ('0446602930', 'Fool''s War', 'https://images.isbndb.com/covers/29/38/9780446602938.jpg'), + ('0816724350', 'A Picture Book Of Swamp And Marsh Animals', 'https://images.isbndb.com/covers/43/52/9780816724352.jpg'), + ('0816724334', 'A Picture Book Of Night-Time Animals', 'https://images.isbndb.com/covers/43/38/9780816724338.jpg'), + ('0688124097', 'Rise Of A Merchant Prince (The Serpentwar Saga)', 'https://images.isbndb.com/covers/40/90/9780688124090.jpg'), + ('0786916575', 'Servant Of The Shard (Forgotten Realms: Paths Of Darkness, Book 3)', 'https://images.isbndb.com/covers/65/73/9780786916573.jpg'), + ('031294165X', 'Firechild', 'https://images.isbndb.com/covers/16/59/9780312941659.jpg'), + ('0061052663', 'Black Light', 'https://images.isbndb.com/covers/26/68/9780061052668.jpg'), + ('0446324388', 'The Magic Cup An Irish Legend', 'https://images.isbndb.com/covers/43/80/9780446324380.jpg'), + ('0679433074', 'As Max Saw It', 'https://images.isbndb.com/covers/30/71/9780679433071.jpg'), + ('0807204684', 'Where The Red Fern Grows', 'https://images.isbndb.com/covers/46/89/9780807204689.jpg'), + ('0671624121', 'Stinger', 'https://images.isbndb.com/covers/41/25/9780671624125.jpg'), + ('0380731614', 'Link', 'https://images.isbndb.com/covers/16/19/9780380731619.jpg'), + ('0345301706', 'Disturb Not The Dream', 'https://images.isbndb.com/covers/17/03/9780345301703.jpg'), + ('0671648772', 'Empire Of The Sun', 'https://images.isbndb.com/covers/87/70/9780671648770.jpg'), + ('0345369114', 'North Of Hope', 'https://images.isbndb.com/covers/91/16/9780345369116.jpg'), + ('0451110951', 'The French Lieutenant''s Woman (Signet)', 'https://images.isbndb.com/covers/09/54/9780451110954.jpg'), + ('0816750343', 'How To Draw Endangered Animals - Pb (Bc) (How To Draw (Troll))', 'https://images.isbndb.com/covers/03/44/9780816750344.jpg'), + ('0874068118', 'You Can Draw Kittens And Cats', 'https://images.isbndb.com/covers/81/15/9780874068115.jpg'), + ('093527829X', 'My First Sewing Book: Hand Sewing', 'https://images.isbndb.com/covers/82/93/9780935278293.jpg'), + ('0451185978', 'The Langoliers: Tie-In Edition (Novella From Four Past Midnight)', 'https://images.isbndb.com/covers/59/76/9780451185976.jpg'), + ('0312971842', 'An Ocean Apart: A Novel', 'https://images.isbndb.com/covers/18/47/9780312971847.jpg'), + ('0821764039', 'Exposure', 'https://images.isbndb.com/covers/40/39/9780821764039.jpg'), + ('1564581772', 'DK Handbooks: Horses', 'https://images.isbndb.com/covers/17/78/9781564581778.jpg'), + ('067980353X', 'The Look-It-Up Book Of Presidents', 'https://images.isbndb.com/covers/35/39/9780679803539.jpg'), + ('0915793806', 'Fighting Invisible Tigers: A Stress Management Guide For Teens', 'https://images.isbndb.com/covers/38/08/9780915793808.jpg'), + ('1558533729', 'America''s Dumbest Criminals: Wild And Weird Stories Of Fumbling Felons, Clumsy Crooks, And Ridiculous Robbers', 'https://images.isbndb.com/covers/37/21/9781558533721.jpg'), + ('0801487722', 'Fish Behavior In The Aquarium And In The Wild (Comstock Books)', 'https://images.isbndb.com/covers/77/29/9780801487729.jpg'), + ('0812574982', 'Heaven Cent (Xanth)', 'https://images.isbndb.com/covers/49/82/9780812574982.jpg'), + ('0786819146', 'The Eternity Code (Artemis Fowl, Book 3)', 'https://images.isbndb.com/covers/91/40/9780786819140.jpg'), + ('0312216130', 'The Dog Crisis', 'https://images.isbndb.com/covers/61/39/9780312216139.jpg'), + ('0446610968', 'Dark Inheritance', 'https://images.isbndb.com/covers/09/64/9780446610964.jpg'), + ('0688139582', 'Protecting Marie', 'https://images.isbndb.com/covers/95/82/9780688139582.jpg'), + ('0786808551', 'The Arctic Incident (Artemis Fowl, Book 2)', 'https://images.isbndb.com/covers/85/57/9780786808557.jpg'), + ('1885173997', 'Realty Check', 'https://images.isbndb.com/covers/39/97/9781885173997.jpg'), + ('0441005659', 'The Crimson Claw (LucasFilm''s Alien Chronicles, Book 2)', 'https://images.isbndb.com/covers/56/59/9780441005659.jpg'), + ('0441006353', 'The Crystal Eye (LucasFilm''s Alien Chronicles, Book 3)', 'https://images.isbndb.com/covers/63/59/9780441006359.jpg'), + ('0812584236', 'The Farseekers: The Obernewtyn Chronicles - Book Two (The Obernewtyn Chronicles, Book 2)', 'https://images.isbndb.com/covers/42/33/9780812584233.jpg'), + ('0451182987', 'The Year The Horses Came', 'https://images.isbndb.com/covers/29/82/9780451182982.jpg'), + ('0805462996', 'Letters To Baby: A Keepsake Of Blessings And Wisdom For New Babies', 'https://images.isbndb.com/covers/29/99/9780805462999.jpg'), + ('0671524208', 'Deep Waters', 'https://images.isbndb.com/covers/42/03/9780671524203.jpg'), + ('0891073000', 'Journey To Aldairoon (A Crossway Youth Book)', 'https://images.isbndb.com/covers/30/00/9780891073000.jpg'), + ('0440437423', 'House With The Clock In Its Walls, The', 'https://images.isbndb.com/covers/74/20/9780440437420.jpg'), + ('0821746200', 'Out Of The Darkness: A Liz Connors Mystery', 'https://images.isbndb.com/covers/62/02/9780821746202.jpg'), + ('0679892648', 'Sammy Keyes And The Hotel Thief', 'https://images.isbndb.com/covers/26/49/9780679892649.jpg'), + ('0671001841', 'Night Of The Werecat (R.L. Stine''s Ghosts Of Fear Street, No 12)', 'https://images.isbndb.com/covers/18/41/9780671001841.jpg'), + ('0671001876', 'Fright Christmas RL Stine''s Ghosts Of Fear Street 15 (Ghosts Of Fear Street)', 'https://images.isbndb.com/covers/18/72/9780671001872.jpg'), + ('0439108403', 'Word Puzzles For Kids (Mensa (Scholastic))', 'https://images.isbndb.com/covers/84/09/9780439108409.jpg'), + ('0679856927', 'A HORSE FOR MARY BETH (Riding Academy)', 'https://images.isbndb.com/covers/69/24/9780679856924.jpg'), + ('0553280708', 'OXFORD BLOOD', 'https://images.isbndb.com/covers/07/08/9780553280708.jpg'), + ('0812507452', 'People Of The Sea (The First North Americans Series, Book 5)', 'https://images.isbndb.com/covers/74/54/9780812507454.jpg'), + ('067187599X', 'The City Who Fought (Brainship)', 'https://images.isbndb.com/covers/59/92/9780671875992.jpg'), + ('0553572393', 'Green Mars (Mars Trilogy, Book 2)', 'https://images.isbndb.com/covers/23/91/9780553572391.jpg'), + ('0671877135', 'In Celebration Of Lammas Night', 'https://images.isbndb.com/covers/71/32/9780671877132.jpg'), + ('0553562622', 'Please Don''t Die (One Last Wish)', 'https://images.isbndb.com/covers/26/20/9780553562620.jpg'), + ('0836228804', 'Poodles: A Book Of Postcards', 'https://images.isbndb.com/covers/88/09/9780836228809.jpg'), + ('0812029763', 'Ferrets: Everything About Purchase, Care, Nutrition, Diseases, Behavior, And Breeding (Pet Care Series)', 'https://images.isbndb.com/covers/97/65/9780812029765.jpg'), + ('084993897X', 'Together At Home', 'https://images.isbndb.com/covers/89/79/9780849938979.jpg'), + ('0380709902', 'Foreign Affairs', 'https://images.isbndb.com/covers/99/08/9780380709908.jpg'), + ('0964561131', 'When The World Was Steady', 'https://images.isbndb.com/covers/11/37/9780964561137.jpg'), + ('1878605003', 'War On Debt: Breaking The Power Of Debt (Financial Freedom Series, V. 1)', 'https://images.isbndb.com/covers/50/09/9781878605009.jpg'), + ('0590338684', 'Kid Power', 'https://images.isbndb.com/covers/86/84/9780590338684.jpg'), + ('0590411837', 'Secret Missions: Four True Life Stories (Scholastic Biography)', 'https://images.isbndb.com/covers/18/37/9780590411837.jpg'), + ('1555135269', 'The Mystery Of The Second Map (Ten Commandments Mysteries)', 'https://images.isbndb.com/covers/52/63/9781555135263.jpg'), + ('0880709723', 'Disaster In The Yukon (Global Air Troubleshooters)', 'https://images.isbndb.com/covers/97/29/9780880709729.jpg'), + ('0440472105', 'RAMONA FOREVER (Ramona Quimby (Paperback))', 'https://images.isbndb.com/covers/21/00/9780440472100.jpg'), + ('0590401939', 'You Be The Jury', 'https://images.isbndb.com/covers/19/37/9780590401937.jpg'), + ('0590456903', 'You Be The Detective II', 'https://images.isbndb.com/covers/69/06/9780590456906.jpg'), + ('051508994X', 'Vision', 'https://images.isbndb.com/covers/99/43/9780515089943.jpg'), + ('1555137377', 'Awesome Real-Life Bible Devotions For Kids', 'https://images.isbndb.com/covers/73/73/9781555137373.jpg'), + ('0800753569', 'Joan ''N'' The Whale : Fresh And Funny Parables To Make You Think About Your Faith', 'https://images.isbndb.com/covers/35/66/9780800753566.jpg'), + ('0840792549', 'The Legend Of The Great Grizzly (High Sierra Adventure Series)', 'https://images.isbndb.com/covers/25/49/9780840792549.jpg'), + ('0874064163', 'Girl With Green Hair', 'https://images.isbndb.com/covers/41/62/9780874064162.jpg'), + ('0380761122', 'Mom, There''s A Pig In My Bed!', 'https://images.isbndb.com/covers/11/28/9780380761128.jpg'), + ('039475591X', 'Clea And Zeus Divorce', 'https://images.isbndb.com/covers/59/15/9780394755915.jpg'), + ('0671747134', 'The Lives Of The Dead', 'https://images.isbndb.com/covers/71/38/9780671747138.jpg'), + ('0671656767', 'Into Love And Out Again: Stories', 'https://images.isbndb.com/covers/67/68/9780671656768.jpg'), + ('0671645870', 'The Man Who Owned Vermont', 'https://images.isbndb.com/covers/58/78/9780671645878.jpg'), + ('0373834152', 'Soldier And The Rebel (By Request 2s)', 'https://images.isbndb.com/covers/41/50/9780373834150.jpg'), + ('055327953X', 'To Be The Best', 'https://images.isbndb.com/covers/95/35/9780553279535.jpg'), + ('0373244770', 'The Royal Macallister (The Baby Bet: Macallister''s Gifts) (Silhouette Special Edition)', 'https://images.isbndb.com/covers/47/75/9780373244775.jpg'), + ('0373271808', 'Right Side Of The Law (Silhouette Intimate Moments)', 'https://images.isbndb.com/covers/18/01/9780373271801.jpg'), + ('0671533789', 'Bittersweet Sixteen (First Love From Silhouette #78)', 'https://images.isbndb.com/covers/37/86/9780671533786.jpg'), + ('078681358X', 'Morning Girl', 'https://images.isbndb.com/covers/35/82/9780786813582.jpg'), + ('0486291707', 'The Adventures Of Prickly Porky (Dover Children''s Thrift Classics)', 'https://images.isbndb.com/covers/17/03/9780486291703.jpg'), + ('0064405788', 'Wringer (Trophy Newbery)', 'https://images.isbndb.com/covers/57/82/9780064405782.jpg'), + ('1856979660', 'Horse Stories (A Thoroughbred Collection)', 'https://images.isbndb.com/covers/96/65/9781856979665.jpg'), + ('0140363912', 'Letters From Rifka', 'https://images.isbndb.com/covers/39/13/9780140363913.jpg'), + ('0064405753', 'On The Other Side Of The Hill (Little House)', 'https://images.isbndb.com/covers/57/51/9780064405751.jpg'), + ('0684191202', 'The Snowbird', 'https://images.isbndb.com/covers/12/01/9780684191201.jpg'), + ('0312113420', 'James Herriot''s Cat Stories', 'https://images.isbndb.com/covers/34/21/9780312113421.jpg'), + ('0060274069', 'Julie''s Wolf Pack (Julie Of The Wolves)', 'https://images.isbndb.com/covers/40/61/9780060274061.jpg'), + ('0440220246', 'Johnny Tremain', 'https://images.isbndb.com/covers/02/44/9780440220244.jpg'), + ('0679767819', 'The Demolished Man', 'https://images.isbndb.com/covers/78/17/9780679767817.jpg'), + ('0590623761', 'Revenge Of The Mummy (Clue Series, Book 13)', 'https://images.isbndb.com/covers/37/66/9780590623766.jpg'), + ('0915560186', 'Willy And Wanda Adventures: Merry Musketeers (# 18)', 'https://images.isbndb.com/covers/01/89/9780915560189.jpg'), + ('0395957524', 'Three Stories You Can Read To Your Cat', 'https://images.isbndb.com/covers/75/23/9780395957523.jpg'), + ('0590252194', 'Winter Days In The Big Woods (My First Little House Books)', 'https://images.isbndb.com/covers/21/95/9780590252195.jpg'), + ('0307119408', 'Just Go To Bed (Little Critter) (Pictureback(R))', 'https://images.isbndb.com/covers/94/07/9780307119407.jpg'), + ('0425138232', 'Eye Of The Storm (Sean Dillon)', 'https://images.isbndb.com/covers/82/36/9780425138236.jpg'), + ('0307117138', 'Just A Nap (Look-Look)', 'https://images.isbndb.com/covers/71/37/9780307117137.jpg'), + ('0307126854', 'What A Bad Dream (A Golden Look-Look Book)', 'https://images.isbndb.com/covers/68/56/9780307126856.jpg'), + ('030711936X', 'Just Grandpa And Me (Little Critter) (Look-Look)', 'https://images.isbndb.com/covers/93/60/9780307119360.jpg'), + ('0394825691', 'Winnie The Pooh And Tigger Too (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/56/94/9780394825694.jpg'), + ('0394926250', 'Snow White & The Seven Dwarfs (Disney''s Wonderful World Of Reading)', 'https://images.isbndb.com/covers/62/54/9780394926254.jpg'), + ('0440411483', 'So What?', 'https://images.isbndb.com/covers/14/82/9780440411482.jpg'), + ('0689803931', 'Misty''s Twilight', 'https://images.isbndb.com/covers/39/32/9780689803932.jpg'), + ('006106632X', 'The Lost Foal (Ashleigh, No. 8)', 'https://images.isbndb.com/covers/63/20/9780061066320.jpg'), + ('044040942X', 'The Battle For The Castle', 'https://images.isbndb.com/covers/94/27/9780440409427.jpg'), + ('0689807791', 'Brown Sunshine Of Sawdust Valley', 'https://images.isbndb.com/covers/77/94/9780689807794.jpg'), + ('0934998191', 'Prodigal Cat (Classic Children''s Story)', 'https://images.isbndb.com/covers/81/92/9780934998192.jpg'), + ('0441005993', 'The Long Patrol (Redwall, Book 10)', 'https://images.isbndb.com/covers/59/94/9780441005994.jpg'), + ('0553572644', 'The Red Wyvern (Dragon Mage, Book 1)', 'https://images.isbndb.com/covers/26/43/9780553572643.jpg'), + ('0689318332', 'Wolf-Speaker', 'https://images.isbndb.com/covers/83/37/9780689318337.jpg'), + ('0440425050', 'Five Little Peppers And How They Grew (Dell Yearling Classic)', 'https://images.isbndb.com/covers/50/52/9780440425052.jpg'), + ('156282144X', 'The Sorcerer''s Apprentice: Storybook And Magic Tricks', 'https://images.isbndb.com/covers/14/49/9781562821449.jpg'), + ('0679805273', 'Oh, The Places You''ll Go!', 'https://images.isbndb.com/covers/52/74/9780679805274.jpg'), + ('0440411459', 'Baby', 'https://images.isbndb.com/covers/14/51/9780440411451.jpg'), + ('0020442106', 'The Last Battle', 'https://images.isbndb.com/covers/21/03/9780020442103.jpg'), + ('0064404781', 'Little House On Rocky Ridge', 'https://images.isbndb.com/covers/47/85/9780064404785.jpg'), + ('0590411365', 'Eight Tales Of Terror', 'https://images.isbndb.com/covers/13/63/9780590411363.jpg'), + ('0140364749', 'Lad: A Dog', 'https://images.isbndb.com/covers/47/43/9780140364743.jpg'), + ('0689714920', 'Misty Of Chincoteague', 'https://images.isbndb.com/covers/49/24/9780689714924.jpg'), + ('0821770829', 'Finding Ian (Zebra Contemporary Romance)', 'https://images.isbndb.com/covers/08/25/9780821770825.jpg'), + ('044100315X', 'The Bellmaker (Redwall, Book 7)', 'https://images.isbndb.com/covers/31/50/9780441003150.jpg'), + ('0064405745', 'In The Land Of The Big Red Apple (Little House)', 'https://images.isbndb.com/covers/57/44/9780064405744.jpg'), + ('0397318731', 'Sarah''s Unicorn', 'https://images.isbndb.com/covers/87/35/9780397318735.jpg'), + ('0397320043', 'Mighty Mizzling Mouse', 'https://images.isbndb.com/covers/00/42/9780397320042.jpg'), + ('0440472431', 'Ramona And Her Mother (Ramona Quimby)', 'https://images.isbndb.com/covers/24/38/9780440472438.jpg'), + ('0394935942', 'The Enormous Crocodile', 'https://images.isbndb.com/covers/59/42/9780394935942.jpg'), + ('0961866349', 'Backyard Scientist Series 4: A Series Of Hands-On Science Experiments And Projects To Thrill, Delight', 'https://images.isbndb.com/covers/63/41/9780961866341.jpg'), + ('0781409756', 'Story Of Jesus', 'https://images.isbndb.com/covers/97/59/9780781409759.jpg'), + ('0856487643', 'The Story Of The Sower (Lion Story Bible)', 'https://images.isbndb.com/covers/76/44/9780856487644.jpg'), + ('0307132048', 'The Mouse Family''s New Home (A Little Golden Sniff It Book)', 'https://images.isbndb.com/covers/20/48/9780307132048.jpg'), + ('1555781020', 'The Girl With The Pop-Up Garden (Land Of Pleasant Dreams)', 'https://images.isbndb.com/covers/10/26/9781555781026.jpg'), + ('0517560232', 'Grandma & The Pirate', 'https://images.isbndb.com/covers/02/35/9780517560235.jpg'), + ('0525259600', 'As I Was Crossing Boston Common: 2', 'https://images.isbndb.com/covers/96/02/9780525259602.jpg'), + ('0061059846', 'Acorna''s World', 'https://images.isbndb.com/covers/98/41/9780061059841.jpg'), + ('0345336038', 'To Ride Pegasus', 'https://images.isbndb.com/covers/60/33/9780345336033.jpg'), + ('0441007287', 'Circle At Center (Seven Circles Trilogy, Book 1)', 'https://images.isbndb.com/covers/72/88/9780441007288.jpg'), + ('0064461629', 'Indian Captive: The Story Of Mary Jemison', 'https://images.isbndb.com/covers/16/27/9780064461627.jpg'), + ('044022036X', 'The WITCH Of BLACKBIRD POND', 'https://images.isbndb.com/covers/03/67/9780440220367.jpg'), + ('0874063353', 'A Home For Jessie', 'https://images.isbndb.com/covers/33/56/9780874063356.jpg'), + ('0590319043', 'Tread Softly', 'https://images.isbndb.com/covers/90/41/9780590319041.jpg'), + ('0441008550', 'World Fall (Seven Circles Trilogy, Book 2)', 'https://images.isbndb.com/covers/85/51/9780441008551.jpg'), + ('0570049628', 'Confirmed In Christ', 'https://images.isbndb.com/covers/96/23/9780570049623.jpg'), + ('0553154680', 'Stormy', 'https://images.isbndb.com/covers/46/89/9780553154689.jpg'), + ('0440900107', 'Jim Ugly', 'https://images.isbndb.com/covers/01/08/9780440900108.jpg'), + ('0140360352', 'Gentle Ben', 'https://images.isbndb.com/covers/03/56/9780140360356.jpg'), + ('0440220289', 'The Black Pearl', 'https://images.isbndb.com/covers/02/82/9780440220282.jpg'), + ('084233226X', 'Desecration: Antichrist Takes The Throne (Left Behind No. 9)', 'https://images.isbndb.com/covers/22/62/9780842332262.jpg'), + ('0441003494', 'A Breach In The Watershed (Watershed Trilogy, Book 1)', 'https://images.isbndb.com/covers/34/95/9780441003495.jpg'), + ('0886775795', 'Mindspeaker''s Call (Ghatti''s Tale)', 'https://images.isbndb.com/covers/57/97/9780886775797.jpg'), + ('157145165X', 'Encyclopedia Of The Horse', 'https://images.isbndb.com/covers/16/51/9781571451651.jpg'), + ('0886775507', 'Finders Seekers (Ghatti''s Tale)', 'https://images.isbndb.com/covers/55/06/9780886775506.jpg'), + ('0451194764', 'Murder, She Wrote: Murder At The Powderhorn Ranch', 'https://images.isbndb.com/covers/47/63/9780451194763.jpg'), + ('155874715X', 'Chicken Soup For The Christian Family Soul: Stories To Open The Heart And Rekindle The Spirit (Chicken Soup For The Soul)', 'https://images.isbndb.com/covers/71/59/9781558747159.jpg'), + ('0440412579', 'Gib Rides Home', 'https://images.isbndb.com/covers/25/71/9780440412571.jpg'), + ('0027701301', 'Hatchet', 'https://images.isbndb.com/covers/13/02/9780027701302.jpg'), + ('0439078415', 'Chicken Soup For The Teenage Soul', 'https://images.isbndb.com/covers/84/12/9780439078412.jpg'), + ('0140384235', 'Kavik The Wolf Dog', 'https://images.isbndb.com/covers/42/39/9780140384239.jpg'), + ('0553155601', 'Snow Dog (Bantam Skylark Book)', 'https://images.isbndb.com/covers/56/00/9780553155600.jpg'), + ('0671721836', 'The Robin And The Kestrel: Bardic Voices II', 'https://images.isbndb.com/covers/18/31/9780671721831.jpg'), + ('0671878530', 'Four And Twenty Blackbirds A Bardic Voices Novel', 'https://images.isbndb.com/covers/85/35/9780671878535.jpg'), + ('0671876368', 'The Eagle & The Nightingales: Bardic Voices, Book III', 'https://images.isbndb.com/covers/63/64/9780671876364.jpg'), + ('0590442953', 'Clifford''s Pals (Clifford 8x8)', 'https://images.isbndb.com/covers/29/54/9780590442954.jpg'), + ('0385489005', 'Ruth, A Portrait: The Story Of Ruth Bell Graham', 'https://images.isbndb.com/covers/90/03/9780385489003.jpg'), + ('0811643085', 'A Tooth For The Tooth Fairy (For Real Book)', 'https://images.isbndb.com/covers/30/85/9780811643085.jpg'), + ('0380800500', 'Can Of Worms (An Avon Camelot Book)', 'https://images.isbndb.com/covers/05/06/9780380800506.jpg'), + ('0689808518', 'The Switching Hour (Real Monsters)', 'https://images.isbndb.com/covers/85/17/9780689808517.jpg'), + ('0671026518', 'The Attack Of The Two-Inch Teacher (I Was A Sixth Grade Alien)', 'https://images.isbndb.com/covers/65/16/9780671026516.jpg'), + ('0762409053', 'Digital Detectives #1: Case Of The Killer Bugs', 'https://images.isbndb.com/covers/90/51/9780762409051.jpg'), + ('0312922884', 'Shadow Dancers', 'https://images.isbndb.com/covers/28/87/9780312922887.jpg'), + ('0684856093', 'The 7 Habits Of Highly Effective Teens', 'https://images.isbndb.com/covers/60/94/9780684856094.jpg'), + ('0312269242', 'The Honey Trap', 'https://images.isbndb.com/covers/92/41/9780312269241.jpg'), + ('044145125X', 'The Knight And Knave Of Swords (Saga Of Fafhrd And The Gray Mouser, Bk. 7)', 'https://images.isbndb.com/covers/12/58/9780441451258.jpg'), + ('0380645432', 'Howliday Inn (Bunnicula)', 'https://images.isbndb.com/covers/54/35/9780380645435.jpg'), + ('087406841X', 'A Horse For Mandy', 'https://images.isbndb.com/covers/84/12/9780874068412.jpg'), + ('044022022X', 'The Cricket In Times Square', 'https://images.isbndb.com/covers/02/20/9780440220220.jpg'), + ('0440407079', 'Blubber', 'https://images.isbndb.com/covers/70/72/9780440407072.jpg'), + ('0440219914', 'Shiloh', 'https://images.isbndb.com/covers/99/10/9780440219910.jpg'), + ('068801075X', 'A Chance Wild Apple', 'https://images.isbndb.com/covers/07/51/9780688010751.jpg'), + ('0486252086', 'The Road To Oz (Dover Children''s Classics)', 'https://images.isbndb.com/covers/20/87/9780486252087.jpg'), + ('0140328742', 'The Wonderful Story Of Henry Sugar: And Six More', 'https://images.isbndb.com/covers/87/45/9780140328745.jpg'), + ('0380709570', 'Ralph S. Mouse', 'https://images.isbndb.com/covers/95/71/9780380709571.jpg'), + ('0590629816', 'The Predator (Animorphs, No. 5)', 'https://images.isbndb.com/covers/98/12/9780590629812.jpg'), + ('0590494368', 'The Underground (Animorphs #17)', 'https://images.isbndb.com/covers/43/66/9780590494366.jpg'), + ('0394825993', 'The Shadow In The North (Sally Lockhart Trilogy, Book 2)', 'https://images.isbndb.com/covers/59/91/9780394825991.jpg'), + ('0590435418', 'Onion John', 'https://images.isbndb.com/covers/54/13/9780590435413.jpg'), + ('0590424602', 'To Be A Slave', 'https://images.isbndb.com/covers/46/08/9780590424608.jpg'), + ('0141301163', 'Zel', 'https://images.isbndb.com/covers/11/67/9780141301167.jpg'), + ('0590383892', 'Sirena', 'https://images.isbndb.com/covers/38/99/9780590383899.jpg'), + ('0425042502', 'Soul Catcher', 'https://images.isbndb.com/covers/25/02/9780425042502.jpg'), + ('3492101658', 'Geistes Gegenwart. Die Wiederkehr Des Heiligen Geistes.', 'https://images.isbndb.com/covers/16/53/9783492101653.jpg'), + ('0439286069', 'Freak The Mighty', 'https://images.isbndb.com/covers/60/60/9780439286060.jpg'), + ('0140190430', 'On Having No Head: Zen And The Rediscovery Of The Obvious (Arkana)', 'https://images.isbndb.com/covers/04/34/9780140190434.jpg'), + ('3811820966', 'Kosmos-Chroniken, Bd.1, Reginald Bull', 'https://images.isbndb.com/covers/09/68/9783811820968.jpg'), + ('3404243013', 'Lord Gamma.', 'https://images.isbndb.com/covers/30/13/9783404243013.jpg'), + ('3150089573', 'El Greco Malt Den Grossinquisitor', 'https://images.isbndb.com/covers/95/76/9783150089576.jpg'), + ('0380755351', 'The Hollow Earth: The Narrative Of Mason Algiers Reynolds Of Virginia', 'https://images.isbndb.com/covers/53/56/9780380755356.jpg'), + ('0440188601', 'Time Out Of Joint', 'https://images.isbndb.com/covers/86/05/9780440188605.jpg'), + ('0553561227', 'The Ugly Little Boy', 'https://images.isbndb.com/covers/12/27/9780553561227.jpg'), + ('1857231791', 'Against A Dark Background', 'https://images.isbndb.com/covers/17/93/9781857231793.jpg'), + ('0385327943', 'Midnight Predator', 'https://images.isbndb.com/covers/79/47/9780385327947.jpg'), + ('1591820634', 'Planet Ladder, Vol. 4', 'https://images.isbndb.com/covers/06/35/9781591820635.jpg'), + ('193151464X', 'Planet Ladder, Vol. 3', 'https://images.isbndb.com/covers/46/44/9781931514644.jpg'), + ('1569716692', 'Oh My Goddess! Vol. 1: Wrong Number', 'https://images.isbndb.com/covers/66/94/9781569716694.jpg'), + ('1591820014', 'Invu Vol. 1', 'https://images.isbndb.com/covers/00/17/9781591820017.jpg'), + ('1591822424', 'Paradise Kiss, Vol. 5', 'https://images.isbndb.com/covers/24/24/9781591822424.jpg'), + ('1892213753', 'Cardcaptor Sakura: Master Of The Clow, Book 1', 'https://images.isbndb.com/covers/37/54/9781892213754.jpg'), + ('1892213761', 'Cardcaptor Sakura: Master Of The Clow, Book 2', 'https://images.isbndb.com/covers/37/61/9781892213761.jpg'), + ('189221377X', 'Cardcaptor Sakura: Master Of The Clow, Book 3', 'https://images.isbndb.com/covers/37/78/9781892213778.jpg'), + ('1892213788', 'Cardcaptor Sakura: Master Of The Clow, Book 4', 'https://images.isbndb.com/covers/37/85/9781892213785.jpg'), + ('1892213796', 'Cardcaptor Sakura: Master Of The Clow, Book 5', 'https://images.isbndb.com/covers/37/92/9781892213792.jpg'), + ('156931957X', 'Fushigi Yugi: The Mysterious Play, Vol. 1: Priestess', 'https://images.isbndb.com/covers/95/74/9781569319574.jpg'), + ('1591160774', 'Wedding Peach, Vol. 2 (Wedding Peach Series)', 'https://images.isbndb.com/covers/07/79/9781591160779.jpg'), + ('1591162149', 'Hot Gimmick, Vol. 1', 'https://images.isbndb.com/covers/21/48/9781591162148.jpg'), + ('1591160766', 'Wedding Peach, Vol. 1', 'https://images.isbndb.com/covers/07/62/9781591160762.jpg'), + ('1591820642', 'Rave Master, Vol. 1', 'https://images.isbndb.com/covers/06/42/9781591820642.jpg'), + ('1569319502', 'X/1999, Vol. 2: Overture', 'https://images.isbndb.com/covers/95/05/9781569319505.jpg'), + ('1591823544', 'The Kindaichi Case Files: The Opera House Murders', 'https://images.isbndb.com/covers/35/44/9781591823544.jpg'), + ('1569714215', 'Oh My Goddess! Adventures Of The Mini-Goddesses', 'https://images.isbndb.com/covers/42/18/9781569714218.jpg'), + ('0671024337', 'The Watcher''s Guide, Volume 1 (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/43/38/9780671024338.jpg'), + ('1563897490', 'Gon: Introducing The Dinosaur That Time Will Never Forget! (Paradox Fiction)', 'https://images.isbndb.com/covers/74/98/9781563897498.jpg'), + ('1931514542', 'Marmalade Boy, Vol. 1', 'https://images.isbndb.com/covers/45/45/9781931514545.jpg'), + ('1931514550', 'Marmalade Boy, Vol. 2', 'https://images.isbndb.com/covers/45/52/9781931514552.jpg'), + ('1931514569', 'Marmalade Boy, Vol. 3', 'https://images.isbndb.com/covers/45/69/9781931514569.jpg'), + ('1931514577', 'Marmalade Boy, Vol. 4', 'https://images.isbndb.com/covers/45/76/9781931514576.jpg'), + ('1591820022', 'I.N.V.U., Book 2', 'https://images.isbndb.com/covers/00/24/9781591820024.jpg'), + ('1591823803', 'X-Day, Book 2', 'https://images.isbndb.com/covers/38/03/9781591823803.jpg'), + ('1591823277', 'Fake Vol. 2', 'https://images.isbndb.com/covers/32/78/9781591823278.jpg'), + ('1591826969', 'Girl Got Game, Book 1', 'https://images.isbndb.com/covers/69/65/9781591826965.jpg'), + ('1892213591', 'Cardcaptor Sakura #3', 'https://images.isbndb.com/covers/35/94/9781892213594.jpg'), + ('097250379X', 'Slam Dunk, Vol. 1', 'https://images.isbndb.com/covers/37/92/9780972503792.jpg'), + ('1591821088', 'Paradise Kiss, Book 4', 'https://images.isbndb.com/covers/10/83/9781591821083.jpg'), + ('1569319499', 'X/1999, Vol. 1, Prelude', 'https://images.isbndb.com/covers/94/99/9781569319499.jpg'), + ('4889960473', 'How To Draw Manga Special: Colored Original Drawing', 'https://images.isbndb.com/covers/04/71/9784889960471.jpg'), + ('1591821541', 'Demon Diary, Book 1', 'https://images.isbndb.com/covers/15/40/9781591821540.jpg'), + ('1591823781', 'Brigadoon, Vol. 2', 'https://images.isbndb.com/covers/37/80/9781591823780.jpg'), + ('0525946845', 'Dream Weaver', 'https://images.isbndb.com/covers/68/47/9780525946847.jpg'), + ('0786015012', 'The Invoker (Lawson Vampire Novels)', 'https://images.isbndb.com/covers/50/16/9780786015016.jpg'), + ('1591820340', 'Wish #1', 'https://images.isbndb.com/covers/03/45/9781591820345.jpg'), + ('1591823668', 'The Vision Of Escaflowne, Book 1', 'https://images.isbndb.com/covers/36/67/9781591823667.jpg'), + ('1591822416', 'Under The Glass Moon, Vol. 2', 'https://images.isbndb.com/covers/24/17/9781591822417.jpg'), + ('1591822408', 'Under The Glass Moon, Vol. 1', 'https://images.isbndb.com/covers/24/00/9781591822400.jpg'), + ('0375507779', 'The Talisman', 'https://images.isbndb.com/covers/77/79/9780375507779.jpg'), + ('159182379X', 'X-Day, Book 1', 'https://images.isbndb.com/covers/37/97/9781591823797.jpg'), + ('1591823773', 'Brigadoon, Vol. 1', 'https://images.isbndb.com/covers/37/73/9781591823773.jpg'), + ('1588991962', 'Onegai Teacher Book 1', 'https://images.isbndb.com/covers/19/66/9781588991966.jpg'), + ('1588992942', 'Onegai Teacher Volume 2', 'https://images.isbndb.com/covers/29/49/9781588992949.jpg'), + ('0590411829', '101 School Jokes', 'https://images.isbndb.com/covers/18/20/9780590411820.jpg'), + ('0880387548', 'KENDERMORE (Dragonlance: Preludes)', 'https://images.isbndb.com/covers/75/45/9780880387545.jpg'), + ('0880382678', 'Dragon Lance: Legends Vol. 3: Test Of The Twins', 'https://images.isbndb.com/covers/26/70/9780880382670.jpg'), + ('0394825713', '101 DALMATIANS (Disney''s Wonderful World Of Reading, No. 23)', 'https://images.isbndb.com/covers/57/17/9780394825717.jpg'), + ('1568304706', 'Adobe(R) Illustrator(R) 8.0 Classroom In A Book', 'https://images.isbndb.com/covers/47/00/9781568304700.jpg'), + ('0380821036', 'Risky Business', 'https://images.isbndb.com/covers/10/37/9780380821037.jpg'), + ('0670835382', 'Four Past Midnight', 'https://images.isbndb.com/covers/53/86/9780670835386.jpg'), + ('0881622400', 'Love Potions A Book Of Charms And Omens', 'https://images.isbndb.com/covers/24/09/9780881622409.jpg'), + ('1568849079', 'Multimedia & CD-ROMs For Dummies', 'https://images.isbndb.com/covers/90/72/9781568849072.jpg'), + ('1569314284', 'Night Warriors: Darkstalkers'' Revenge', 'https://images.isbndb.com/covers/42/89/9781569314289.jpg'), + ('1569318697', 'Junko Mizuno''S Hansel And Gretel (Viz Graphic Novel)', 'https://images.isbndb.com/covers/86/90/9781569318690.jpg'), + ('0451523199', 'Anne''s House Of Dreams (Anne Of Green Gables)', 'https://images.isbndb.com/covers/31/98/9780451523198.jpg'), + ('0883650215', 'The Key To Chinese Cooking', 'https://images.isbndb.com/covers/02/19/9780883650219.jpg'), + ('0312879016', 'More Than Mortal', 'https://images.isbndb.com/covers/90/13/9780312879013.jpg'), + ('1591822157', 'Boredom Blasters Halloween Edition (Lithgow Palooza Kits)', 'https://images.isbndb.com/covers/21/58/9781591822158.jpg'), + ('1591822149', 'Reality Check, Book 1', 'https://images.isbndb.com/covers/21/41/9781591822141.jpg'), + ('1561633291', 'House Of Java Volume 2', 'https://images.isbndb.com/covers/32/96/9781561633296.jpg'), + ('1569319014', 'One Piece, Vol. 1', 'https://images.isbndb.com/covers/90/17/9781569319017.jpg'), + ('1591821878', 'King Of Hell, Book 1', 'https://images.isbndb.com/covers/18/78/9781591821878.jpg'), + ('1892213362', 'Cardcaptor Sakura 1', 'https://images.isbndb.com/covers/33/65/9781892213365.jpg'), + ('1569311803', 'No Need For Tenchi! (Book 1)', 'https://images.isbndb.com/covers/18/06/9781569311806.jpg'), + ('1580084648', 'Frightful Fairy Tales', 'https://images.isbndb.com/covers/46/42/9781580084642.jpg'), + ('0517703238', 'Blood Lines: Long And Short Stories', 'https://images.isbndb.com/covers/32/36/9780517703236.jpg'), + ('0060174110', 'The Woman Who Lives In The Earth', 'https://images.isbndb.com/covers/41/18/9780060174118.jpg'), + ('0881037214', 'The Dead Zone (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/72/10/9780881037210.jpg'), + ('0061054151', 'Whirlwind (The X-Files)', 'https://images.isbndb.com/covers/41/50/9780061054150.jpg'), + ('0451157753', 'Pet Sematary (Signet)', 'https://images.isbndb.com/covers/77/51/9780451157751.jpg'), + ('0451150708', 'Night Shift (Signet)', 'https://images.isbndb.com/covers/07/07/9780451150707.jpg'), + ('0671758721', 'Terms Of Endearment', 'https://images.isbndb.com/covers/87/21/9780671758721.jpg'), + ('1931514917', 'Cowboy Bebop # 1', 'https://images.isbndb.com/covers/49/10/9781931514910.jpg'), + ('0875965598', 'Rodale''s Successful Organic Gardening: Perennials', 'https://images.isbndb.com/covers/55/98/9780875965598.jpg'), + ('0823039919', 'Pencil Drawing Techniques', 'https://images.isbndb.com/covers/99/13/9780823039913.jpg'), + ('0140350489', 'Dracula (Puffin Classics)', 'https://images.isbndb.com/covers/04/87/9780140350487.jpg'), + ('0679438335', 'Servant Of The Bones: A Novel', 'https://images.isbndb.com/covers/83/35/9780679438335.jpg'), + ('0375416218', 'Merrick (Anne Rice)', 'https://images.isbndb.com/covers/62/17/9780375416217.jpg'), + ('1892213664', 'Clover 1', 'https://images.isbndb.com/covers/36/62/9781892213662.jpg'), + ('1591823269', 'Fake (Fake), Vol. 1', 'https://images.isbndb.com/covers/32/61/9781591823261.jpg'), + ('0671727672', 'Merchant Of Venice', 'https://images.isbndb.com/covers/76/73/9780671727673.jpg'), + ('0440471869', 'Prince And The Pauper, The', 'https://images.isbndb.com/covers/18/68/9780440471868.jpg'), + ('0451092163', 'The Shining (Signet Book)', 'https://images.isbndb.com/covers/21/68/9780451092168.jpg'), + ('0020442009', 'The Horse And His Boy (The Chronicles Of Narnia, No.5)', 'https://images.isbndb.com/covers/20/04/9780020442004.jpg'), + ('0671017136', 'Halloween Rain (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/71/32/9780671017132.jpg'), + ('0671017128', 'The Harvest (Buffy The Vampire Slayer)', 'https://images.isbndb.com/covers/71/25/9780671017125.jpg'), + ('0967063108', 'Castle Of Wisdom', 'https://images.isbndb.com/covers/31/02/9780967063102.jpg'), + ('0449005747', 'Final Vinyl Days (Ballantine Reader''s Circle)', 'https://images.isbndb.com/covers/57/43/9780449005743.jpg'), + ('0312288840', 'Achilles: A Novel', 'https://images.isbndb.com/covers/88/46/9780312288846.jpg'), + ('0446676098', 'The Notebook', 'https://images.isbndb.com/covers/60/90/9780446676090.jpg'), + ('0739411543', 'Vampire Sextette', 'https://images.isbndb.com/covers/15/44/9780739411544.jpg'), + ('0451169514', 'It', 'https://images.isbndb.com/covers/95/18/9780451169518.jpg'), + ('1931514623', 'Planet Ladder (Volume 1)', 'https://images.isbndb.com/covers/46/20/9781931514620.jpg'), + ('0064405036', 'The Last Battle (Narnia)', 'https://images.isbndb.com/covers/50/34/9780064405034.jpg'), + ('0064405044', 'The Silver Chair (The Chronicles Of Narnia, Book 6)', 'https://images.isbndb.com/covers/50/41/9780064405041.jpg'), + ('0064405028', 'The Voyage Of The ''Dawn Treader'' (The Chronicles Of Narnia, Book 5)', 'https://images.isbndb.com/covers/50/27/9780064405027.jpg'), + ('0064405001', 'Prince Caspian: The Return To Narnia (The Chronicles Of Narnia, Book 4)', 'https://images.isbndb.com/covers/50/03/9780064405003.jpg'), + ('006440501X', 'The Horse And His Boy (The Chronicles Of Narnia, Book 3)', 'https://images.isbndb.com/covers/50/10/9780064405010.jpg'), + ('0064404994', 'The Lion, The Witch And The Wardrobe (The Chronicles Of Narnia, Book 2)', 'https://images.isbndb.com/covers/49/90/9780064404990.jpg'), + ('067103264X', 'Storm Of The Century: An Original Screenplay', 'https://images.isbndb.com/covers/26/47/9780671032647.jpg'), + ('3442054672', 'In Aller Stille', 'https://images.isbndb.com/covers/46/71/9783442054671.jpg'), + ('3257225792', 'Unschuldige: Eine Berliner Liebesgeschichte', 'https://images.isbndb.com/covers/57/92/9783257225792.jpg'), + ('3257230982', 'Der Spion Und Der Dichter', 'https://images.isbndb.com/covers/09/87/9783257230987.jpg'), + ('3442350603', 'Die Liebe Einer Unbekannten.', 'https://images.isbndb.com/covers/06/05/9783442350605.jpg'), + ('3499121352', 'Menschenrechte Mißhandelt Und Mißbraucht. ( Rororo Aktuell).', 'https://images.isbndb.com/covers/13/57/9783499121357.jpg'), + ('3886800849', 'Die Deutsche Geschichte Geht Weiter', 'https://images.isbndb.com/covers/08/41/9783886800841.jpg'), + ('3492256856', 'Eine Für Alle', 'https://images.isbndb.com/covers/68/58/9783492256858.jpg'), + ('3423119152', 'Erzähler Der Nacht', 'https://images.isbndb.com/covers/91/53/9783423119153.jpg'), + ('3596214572', 'Die Lehren Des Don Juan. Ein Yaqui-Weg Des Wissens', 'https://images.isbndb.com/covers/45/70/9783596214570.jpg'), + ('3423110066', 'Fabian. Die Geschichte Eines Moralisten', 'https://images.isbndb.com/covers/00/68/9783423110068.jpg'), + ('3423011505', 'Die Verlorene Ehre Der Katharina Blum: Oder: Wie Gewalt Entstehen Und Wohin Sie Führen Kann Erzählung', 'https://images.isbndb.com/covers/15/01/9783423011501.jpg'), + ('3821806354', 'Der Weiße Chauffeur', 'https://images.isbndb.com/covers/63/58/9783821806358.jpg'), + ('3518389009', 'Liebesgeschichten (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/90/03/9783518389003.jpg'), + ('3596259924', 'Die Unerträgliche Leichtigkeit Des Seins. Roman.', 'https://images.isbndb.com/covers/99/22/9783596259922.jpg'), + ('019283374X', 'Alice''s Adventures In Wonderland And Through The Looking-Glass: And What Alice Found There (Oxford World''s Classics)', 'https://images.isbndb.com/covers/37/47/9780192833747.jpg'), + ('3492233740', 'Der Ehrenwerte Mörder', 'https://images.isbndb.com/covers/37/43/9783492233743.jpg'), + ('3492233708', 'Coq Rouge: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/37/05/9783492233705.jpg'), + ('3492233716', 'Der Demokratische Terrorist: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/37/12/9783492233712.jpg'), + ('337901592X', 'Frösche Und Prinzen', 'https://images.isbndb.com/covers/59/29/9783379015929.jpg'), + ('3442726689', 'Mister Aufziehvogel: Roman', 'https://images.isbndb.com/covers/66/84/9783442726684.jpg'), + ('3442720303', 'Traumjäger.', 'https://images.isbndb.com/covers/03/09/9783442720309.jpg'), + ('3458324232', 'Deutschland. Ein Wintermärchen (insel Taschenbuch)', 'https://images.isbndb.com/covers/42/32/9783458324232.jpg'), + ('3257226039', 'Ripley Under Water', 'https://images.isbndb.com/covers/60/34/9783257226034.jpg'), + ('3612276204', 'Der Putzteufel Geht Um.', 'https://images.isbndb.com/covers/62/09/9783612276209.jpg'), + ('3512003931', 'Deutschland Deine Zukunft', 'https://images.isbndb.com/covers/39/36/9783512003936.jpg'), + ('3499100355', 'Professor Unrat', 'https://images.isbndb.com/covers/03/52/9783499100352.jpg'), + ('3423241187', 'Beste Freundin, Beste Feindin', 'https://images.isbndb.com/covers/11/82/9783423241182.jpg'), + ('3873290812', 'Kuttel Daddeldu', 'https://images.isbndb.com/covers/08/15/9783873290815.jpg'), + ('3257227000', 'Kitchen', 'https://images.isbndb.com/covers/70/00/9783257227000.jpg'), + ('3257218370', 'Gottes Werk Und Teufels Beitrag', 'https://images.isbndb.com/covers/83/74/9783257218374.jpg'), + ('3596282225', 'Die Nebel Von Avalon', 'https://images.isbndb.com/covers/22/27/9783596282227.jpg'), + ('3442448263', 'Das Schwarze Manifest.', 'https://images.isbndb.com/covers/82/65/9783442448265.jpg'), + ('3257233000', 'Witwe Für Ein Jahr', 'https://images.isbndb.com/covers/30/01/9783257233001.jpg'), + ('3423122595', 'Der Meister Und Margarita. Roman', 'https://images.isbndb.com/covers/25/97/9783423122597.jpg'), + ('0140621687', 'Little Lord Fauntleroy (Penguin Popular Classics)', 'https://images.isbndb.com/covers/16/86/9780140621686.jpg'), + ('3492233724', 'Im Interesse Der Nation: Ein Coq-Rouge-Thriller', 'https://images.isbndb.com/covers/37/29/9783492233729.jpg'), + ('3442416108', 'Eine Verhängnisvolle Wahrheit.', 'https://images.isbndb.com/covers/61/03/9783442416103.jpg'), + ('3442726328', 'Die Geisha', 'https://images.isbndb.com/covers/63/25/9783442726325.jpg'), + ('3257061455', 'Sämtliche Gedichte', 'https://images.isbndb.com/covers/14/51/9783257061451.jpg'), + ('3596148030', 'Hallo, Mister Gott, Hier Spricht Anna', 'https://images.isbndb.com/covers/80/35/9783596148035.jpg'), + ('3442446015', 'Die Landkarte Der Liebe', 'https://images.isbndb.com/covers/60/18/9783442446018.jpg'), + ('3442439027', 'Der Keim Des Verderbens: Ein Kay-Scarpetta-Roman', 'https://images.isbndb.com/covers/90/27/9783442439027.jpg'), + ('3442729688', 'Die Architekten: Roman', 'https://images.isbndb.com/covers/96/85/9783442729685.jpg'), + ('3442447666', 'Phantom In Rot, Sonderausgabe', 'https://images.isbndb.com/covers/76/64/9783442447664.jpg'), + ('3426001454', 'Liebe Ist Nur Ein Wort. Roman', 'https://images.isbndb.com/covers/14/55/9783426001455.jpg'), + ('344221548X', 'Die Sehnsucht Unserer Seele: Die Lust, Den Eigenen Weg Zu Finden', 'https://images.isbndb.com/covers/54/85/9783442215485.jpg'), + ('3630611087', 'Das Siebte Kreuz (7438 001). Roman.', 'https://images.isbndb.com/covers/10/82/9783630611082.jpg'), + ('3518368001', 'Die Neuen Leiden Des Jungen W (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/80/08/9783518368008.jpg'), + ('3518374508', 'Das Drama Des Begabten Kindes Und Die Suche Nach Dem Wahren Selbst (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/45/04/9783518374504.jpg'), + ('3257229356', ''' Small G''. Eine Sommeridylle.', 'https://images.isbndb.com/covers/93/56/9783257229356.jpg'), + ('340648879X', 'Die Menschenretter Von Cap Anamur', 'https://images.isbndb.com/covers/87/95/9783406488795.jpg'), + ('3608930663', 'Das Klingsor-Paradox', 'https://images.isbndb.com/covers/06/65/9783608930665.jpg'), + ('3453210832', 'Lost In Music. Eine Pop-Odyssee.', 'https://images.isbndb.com/covers/08/37/9783453210837.jpg'), + ('3453150228', 'Das Zimthaus', 'https://images.isbndb.com/covers/02/25/9783453150225.jpg'), + ('3498029711', 'Was Ich Liebte', 'https://images.isbndb.com/covers/97/15/9783498029715.jpg'), + ('3499110660', 'Memoiren Einer Tochter Aus Gutem Hause', 'https://images.isbndb.com/covers/06/65/9783499110665.jpg'), + ('325721796X', 'Liebe, Schmerz Und Das Ganze Verdammte Zeug: Vier Geschichten', 'https://images.isbndb.com/covers/79/64/9783257217964.jpg'), + ('340412264X', 'Das Pharao- Komplott / Sixtinische Verschwörung.', 'https://images.isbndb.com/covers/26/46/9783404122646.jpg'), + ('3499157470', 'Die Zeremonie Des Abschieds Und Gespräche Mit Jean-Paul Sartre: August - September 1974', 'https://images.isbndb.com/covers/74/79/9783499157479.jpg'), + ('3498046268', 'Wenn Frauen Zu Sehr Lieben', 'https://images.isbndb.com/covers/62/62/9783498046262.jpg'), + ('359629259X', 'Die Terroristin. Roman.', 'https://images.isbndb.com/covers/25/92/9783596292592.jpg'), + ('3499147556', 'Marcelle, Chantal, Lisa . . .', 'https://images.isbndb.com/covers/75/55/9783499147555.jpg'), + ('3499122065', 'Amerika Tag Und Nacht: Reisetagebuch 1947', 'https://images.isbndb.com/covers/20/64/9783499122064.jpg'), + ('3518366122', 'Hiroshima Mon Amour: Filmnovelle (suhrkamp Taschenbuch)', 'https://images.isbndb.com/covers/61/27/9783518366127.jpg'), + ('3442438918', 'Dschingis Khans Tochter', 'https://images.isbndb.com/covers/89/14/9783442438914.jpg'), + ('3492230849', 'Der Maler', 'https://images.isbndb.com/covers/08/41/9783492230841.jpg'), + ('0684843137', 'Angela''s Ashes', 'https://images.isbndb.com/covers/31/31/9780684843131.jpg'), + ('3423113707', 'Der Andere', 'https://images.isbndb.com/covers/37/00/9783423113700.jpg'), + ('3442455707', 'Militärmusik: Roman', 'https://images.isbndb.com/covers/57/06/9783442455706.jpg'), + ('3518388762', 'Besessen.', 'https://images.isbndb.com/covers/87/61/9783518388761.jpg'), + ('3423362111', 'EQ²: Der Erfolgsquotient', 'https://images.isbndb.com/covers/21/15/9783423362115.jpg'), + ('354860062X', 'Früh Am Morgen Beginnt Die Nacht', 'https://images.isbndb.com/covers/06/28/9783548600628.jpg'), + ('3548250173', 'Der Augenblick Der Wahrheit', 'https://images.isbndb.com/covers/01/75/9783548250175.jpg'), + ('0312975856', 'The Phantom Of Manhattan', 'https://images.isbndb.com/covers/58/52/9780312975852.jpg'), + ('3442439043', 'Blinder Passagier: Ein Kay-Scarpetta-Roman', 'https://images.isbndb.com/covers/90/41/9783442439041.jpg'), + ('3492038549', 'Die Frau Mit Den Lilienknochen: Roman', 'https://images.isbndb.com/covers/85/46/9783492038546.jpg'), + ('3453198875', 'Im Zeichen Des Drachen: Roman', 'https://images.isbndb.com/covers/88/76/9783453198876.jpg'), + ('3426624028', 'Tod An Heiliger Stätte', 'https://images.isbndb.com/covers/40/29/9783426624029.jpg'), + ('3442443784', 'Gesang Vom Großen Feuer.', 'https://images.isbndb.com/covers/37/89/9783442443789.jpg'), + ('3442096480', 'Töchter Des Himmels: Roman', 'https://images.isbndb.com/covers/64/80/9783442096480.jpg'), + ('3442448395', 'Die Pflicht Zu Schweigen', 'https://images.isbndb.com/covers/83/95/9783442448395.jpg'), + ('3499228637', 'Ticket Nach Tokio', 'https://images.isbndb.com/covers/86/36/9783499228636.jpg'), + ('034082428X', 'Let''s Get Physical', 'https://images.isbndb.com/covers/42/83/9780340824283.jpg'), + ('0192804472', 'The Oxford Book Of Victorian Ghost Stories', 'https://images.isbndb.com/covers/44/71/9780192804471.jpg'), + ('0679734465', 'Valis', 'https://images.isbndb.com/covers/44/68/9780679734468.jpg'), + ('0151910790', 'Travels In Hyperreality: Essays', 'https://images.isbndb.com/covers/07/93/9780151910793.jpg'), + ('0571145906', 'The Singing Detective', 'https://images.isbndb.com/covers/59/04/9780571145904.jpg'), + ('0140252258', 'Strip The Willow', 'https://images.isbndb.com/covers/22/55/9780140252255.jpg'), + ('0743219627', 'Death Of An Expert Witness (Adam Dalgliesh)', 'https://images.isbndb.com/covers/96/24/9780743219624.jpg'), + ('0140284095', 'Right Ho, Jeeves', 'https://images.isbndb.com/covers/40/96/9780140284096.jpg'), + ('0505524406', 'Across A Starlit Sea (Candleglow)', 'https://images.isbndb.com/covers/44/09/9780505524409.jpg'), + ('9681906004', 'Nuestra Senora De La Soledad (Spanish Edition)', 'https://images.isbndb.com/covers/60/09/9789681906009.jpg'), + ('9681905628', 'La Amigdalistis De Tarzan (Spanish Edition)', 'https://images.isbndb.com/covers/56/20/9789681905620.jpg'), + ('0486406482', 'Emma (Dover Thrift Editions)', 'https://images.isbndb.com/covers/64/80/9780486406480.jpg'), + ('1551666170', 'Lord Of The Desert (Mira Romance)', 'https://images.isbndb.com/covers/61/74/9781551666174.jpg'), + ('074347418X', 'Ransom', 'https://images.isbndb.com/covers/41/84/9780743474184.jpg'), + ('0816143358', 'Dreams Are Not Enough (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/33/51/9780816143351.jpg'), + ('1551664836', 'Thrill Of Victory', 'https://images.isbndb.com/covers/48/35/9781551664835.jpg'), + ('1892603004', 'El Bandido (Listen To Them) (Spanish Edition)', 'https://images.isbndb.com/covers/30/05/9781892603005.jpg'), + ('0449150534', 'For All The Right Reasons', 'https://images.isbndb.com/covers/05/35/9780449150535.jpg'), + ('1400034671', 'El Amor En Los Tiempos Del Colera', 'https://images.isbndb.com/covers/46/73/9781400034673.jpg'), + ('0140053204', 'Travels With Charley In Search Of America', 'https://images.isbndb.com/covers/32/03/9780140053203.jpg'), + ('0449150542', 'Somewhere Along The Way: A Classic Novel In The Beloved Mackinnon Series', 'https://images.isbndb.com/covers/05/42/9780449150542.jpg'), + ('0671011340', 'Highland Velvet', 'https://images.isbndb.com/covers/13/45/9780671011345.jpg'), + ('0671739735', 'Velvet Angel', 'https://images.isbndb.com/covers/97/37/9780671739737.jpg'), + ('0671702505', 'The Gift', 'https://images.isbndb.com/covers/25/02/9780671702502.jpg'), + ('9501513394', 'Los Ricos Son Diferentes (Spanish Edition)', 'https://images.isbndb.com/covers/33/94/9789501513394.jpg'), + ('0373073739', 'Night Shadow (Silhouette Intimate Moments No 373)', 'https://images.isbndb.com/covers/37/33/9780373073733.jpg'), + ('0671739786', 'River Lady', 'https://images.isbndb.com/covers/97/82/9780671739782.jpg'), + ('0553561359', 'Lovers', 'https://images.isbndb.com/covers/13/57/9780553561357.jpg'), + ('0452255953', 'Under The Volcano', 'https://images.isbndb.com/covers/59/51/9780452255951.jpg'), + ('0312288271', 'Lords Of The White Castle', 'https://images.isbndb.com/covers/82/73/9780312288273.jpg'), + ('039475218X', 'From Heaven Lake: Travels Through Sinkiang And Tibet', 'https://images.isbndb.com/covers/21/81/9780394752181.jpg'), + ('0805041397', 'Beyond The Pyramids: Travels In Egypt', 'https://images.isbndb.com/covers/13/92/9780805041392.jpg'), + ('0452272785', 'In The Name Of The Father: The Story Of Gerry Conlon Of The Guildford Four: Tie-In', 'https://images.isbndb.com/covers/27/81/9780452272781.jpg'), + ('0785789073', 'Alice''s Adventures In Wonderland (Turtleback School & Library Binding Edition)', 'https://images.isbndb.com/covers/90/79/9780785789079.jpg'), + ('0884360555', 'Requiem Por UN Campesino (Emc Easy Readers, Series C) (Spanish Edition)', 'https://images.isbndb.com/covers/05/51/9780884360551.jpg'), + ('9681908716', 'Ensayo Sobre La Ceguera (Biblioteca) (Spanish Edition)', 'https://images.isbndb.com/covers/87/13/9789681908713.jpg'), + ('0375704132', 'Welcome To The World, Baby Girl!: A Novel (Random House Large Print)', 'https://images.isbndb.com/covers/41/30/9780375704130.jpg'), + ('0140284125', 'The Inimitable Jeeves', 'https://images.isbndb.com/covers/41/26/9780140284126.jpg'), + ('0816139709', 'Queenie (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/97/05/9780816139705.jpg'), + ('006109174X', 'Redemption', 'https://images.isbndb.com/covers/17/42/9780061091742.jpg'), + ('0553241605', 'Mila 18', 'https://images.isbndb.com/covers/16/00/9780553241600.jpg'), + ('0446360015', 'On Leaving Charleston', 'https://images.isbndb.com/covers/00/12/9780446360012.jpg'), + ('0374115370', 'The Bonfire Of The Vanities: A Novel', 'https://images.isbndb.com/covers/53/71/9780374115371.jpg'), + ('0449214745', 'Devil On Horseback', 'https://images.isbndb.com/covers/47/49/9780449214749.jpg'), + ('0679774386', 'Doctor Zhivago', 'https://images.isbndb.com/covers/43/89/9780679774389.jpg'), + ('968131574X', 'Cien Años De Soledad', 'https://images.isbndb.com/covers/57/40/9789681315740.jpg'), + ('0312195265', 'The Silence Of The Lambs (Hannibal Lecter)', 'https://images.isbndb.com/covers/52/67/9780312195267.jpg'), + ('0060927968', 'Love, Again', 'https://images.isbndb.com/covers/79/67/9780060927967.jpg'), + ('0451133935', 'Ellis Island: Tie-in Edition (Signet)', 'https://images.isbndb.com/covers/39/39/9780451133939.jpg'), + ('0671662414', 'O Jerusalem', 'https://images.isbndb.com/covers/24/17/9780671662417.jpg'), + ('0449214540', 'Rabbi', 'https://images.isbndb.com/covers/45/41/9780449214541.jpg'), + ('2020239213', 'L''exposition Coloniale', 'https://images.isbndb.com/covers/92/19/9782020239219.jpg'), + ('9700509125', 'Fortuna Peligrosa', 'https://images.isbndb.com/covers/91/29/9789700509129.jpg'), + ('0486298035', 'The Age Of Innocence (Dover Thrift Editions)', 'https://images.isbndb.com/covers/80/30/9780486298030.jpg'), + ('0670364991', 'Heavy Sand', 'https://images.isbndb.com/covers/49/92/9780670364992.jpg'), + ('0449147614', 'A Time To Die', 'https://images.isbndb.com/covers/76/10/9780449147610.jpg'), + ('067972902X', 'Running The Amazon', 'https://images.isbndb.com/covers/90/20/9780679729020.jpg'), + ('9509779032', 'El Libro De Los Amores Ridiculos (Spanish Edition)', 'https://images.isbndb.com/covers/90/37/9789509779037.jpg'), + ('1585860972', 'Fierce Eden', 'https://images.isbndb.com/covers/09/75/9781585860975.jpg'), + ('1585861677', 'Surrender In Moonlight', 'https://images.isbndb.com/covers/16/75/9781585861675.jpg'), + ('0821747940', 'Lie Down In Roses', 'https://images.isbndb.com/covers/79/40/9780821747940.jpg'), + ('0749316411', 'Family Man', 'https://images.isbndb.com/covers/64/19/9780749316419.jpg'), + ('0811213196', 'Pereira Declares: A Testimony', 'https://images.isbndb.com/covers/31/96/9780811213196.jpg'), + ('1400034965', 'El General En Su Laberinto (Spanish Edition)', 'https://images.isbndb.com/covers/49/63/9781400034963.jpg'), + ('1400001617', 'Las Cadenas De Sultana (Spanish Edition)', 'https://images.isbndb.com/covers/16/13/9781400001613.jpg'), + ('0553293257', 'Rendezvous', 'https://images.isbndb.com/covers/32/58/9780553293258.jpg'), + ('0553571907', 'Mischief', 'https://images.isbndb.com/covers/19/05/9780553571905.jpg'), + ('0553283545', 'Seduction', 'https://images.isbndb.com/covers/35/49/9780553283549.jpg'), + ('0553289322', 'Scandal', 'https://images.isbndb.com/covers/93/29/9780553289329.jpg'), + ('0553293168', 'Ravished', 'https://images.isbndb.com/covers/31/66/9780553293166.jpg'), + ('0380762560', 'Surrender My Love', 'https://images.isbndb.com/covers/25/69/9780380762569.jpg'), + ('0380752999', 'Defy Not The Heart', 'https://images.isbndb.com/covers/29/97/9780380752997.jpg'), + ('0380756277', 'Prisoner Of My Desire', 'https://images.isbndb.com/covers/62/78/9780380756278.jpg'), + ('0380871556', 'A Gentle Feuding', 'https://images.isbndb.com/covers/15/51/9780380871551.jpg'), + ('0380750872', 'Secret Fire', 'https://images.isbndb.com/covers/08/70/9780380750870.jpg'), + ('0380756293', 'The Magic Of You (Malory Novels)', 'https://images.isbndb.com/covers/62/92/9780380756292.jpg'), + ('0380750864', 'Tender Rebel', 'https://images.isbndb.com/covers/08/63/9780380750863.jpg'), + ('0380814714', 'So Speaks The Heart', 'https://images.isbndb.com/covers/47/18/9780380814718.jpg'), + ('0380756269', 'Man Of My Dreams', 'https://images.isbndb.com/covers/62/61/9780380756261.jpg'), + ('0380752948', 'Silver Angel', 'https://images.isbndb.com/covers/29/42/9780380752942.jpg'), + ('9502801954', 'Llamada Del Destino, La (Spanish Edition)', 'https://images.isbndb.com/covers/19/57/9789502801957.jpg'), + ('0671880608', 'Until You', 'https://images.isbndb.com/covers/06/06/9780671880606.jpg'), + ('0553060635', 'El Sastre De Panamá', 'https://images.isbndb.com/covers/06/38/9780553060638.jpg'), + ('0684853299', 'Morgan''s Run', 'https://images.isbndb.com/covers/32/91/9780684853291.jpg'), + ('0060085894', 'Frida: A Biography Of Frida Kahlo', 'https://images.isbndb.com/covers/58/96/9780060085896.jpg'), + ('0871133792', 'Journey To The Alcarria: Travels Through The Spanish Countryside (Traveler)', 'https://images.isbndb.com/covers/37/93/9780871133793.jpg'), + ('0811212777', 'Mazurka For Two Dead Men', 'https://images.isbndb.com/covers/27/79/9780811212779.jpg'), + ('0679431136', 'Congo', 'https://images.isbndb.com/covers/11/38/9780679431138.jpg'), + ('0380725703', 'Love Me Forever', 'https://images.isbndb.com/covers/57/00/9780380725700.jpg'), + ('0816152284', 'Gentle Rogue (G K Hall Large Print Book Series)', 'https://images.isbndb.com/covers/22/85/9780816152285.jpg'), + ('0802776159', 'The Forging Of A Rebel', 'https://images.isbndb.com/covers/61/50/9780802776150.jpg'), + ('0393320359', 'Hitler: 1889-1936 Hubris', 'https://images.isbndb.com/covers/03/50/9780393320350.jpg'), + ('0714529850', 'The Stars Of The South', 'https://images.isbndb.com/covers/98/51/9780714529851.jpg'), + ('2266061283', 'Bonjour Tristesse', 'https://images.isbndb.com/covers/12/85/9782266061285.jpg'), + ('0826452310', 'Kazuo Ishiguro''s The Remains Of The Day: A Reader''s Guide (Continuum Contemporaries)', 'https://images.isbndb.com/covers/23/13/9780826452313.jpg'), + ('0671748157', 'The Master Stroke', 'https://images.isbndb.com/covers/81/59/9780671748159.jpg'), + ('0380727366', 'A Soldier Of The Great War', 'https://images.isbndb.com/covers/73/60/9780380727360.jpg'), + ('1586633503', 'The Scarlet Letter (SparkNotes)', 'https://images.isbndb.com/covers/35/09/9781586633509.jpg'), + ('0385721234', 'Como Agua Para Chocolate (Vintage Espanol) (Spanish Edition)', 'https://images.isbndb.com/covers/12/33/9780385721233.jpg'), + ('9504901816', 'Pequeas Infamias (Spanish Edition)', 'https://images.isbndb.com/covers/18/15/9789504901815.jpg'), + ('0375707166', 'A House For Mr. Biswas', 'https://images.isbndb.com/covers/71/62/9780375707162.jpg'), + ('9584204106', 'El Huerto De Mi Amada / My Lover''s Garden (Autores Espanoles E Iberoamericanos) (Spanish Edition)', 'https://images.isbndb.com/covers/41/03/9789584204103.jpg'), + ('0679755454', 'El Beso De La Mujer Araña', 'https://images.isbndb.com/covers/54/56/9780679755456.jpg'), + ('1852427000', 'Southern Seas (A Five Star Title)', 'https://images.isbndb.com/covers/70/09/9781852427009.jpg'), + ('0802130305', 'Ficciones (English Translation)', 'https://images.isbndb.com/covers/03/03/9780802130303.jpg'), + ('1400034957', 'Cronica De Una Muerte Anunciada (Spanish Edition)', 'https://images.isbndb.com/covers/49/56/9781400034956.jpg'), + ('9504906915', 'Mientras Vivimos (Spanish Edition)', 'https://images.isbndb.com/covers/69/19/9789504906919.jpg'), + ('0192838865', 'The Flight To Italy: Diary And Selected Letters (Oxford World''s Classics)', 'https://images.isbndb.com/covers/88/65/9780192838865.jpg'), + ('0864424663', 'Lonely Planet Philippines (6th Ed)', 'https://images.isbndb.com/covers/46/62/9780864424662.jpg'), + ('1740590392', 'Lonely Planet Sri Lanka (Sri Lanka, 8th Ed)', 'https://images.isbndb.com/covers/03/96/9781740590396.jpg'), + ('0380899531', 'Love Only Once: A Malory Novel', 'https://images.isbndb.com/covers/95/31/9780380899531.jpg'), + ('0460874772', 'The Heart Of Darkness (Everyman''s Library (Paper))', 'https://images.isbndb.com/covers/47/79/9780460874779.jpg'), + ('055329315X', 'Reckless', 'https://images.isbndb.com/covers/31/59/9780553293159.jpg'), + ('006018888X', 'The Promise In A Kiss: A Cynster Christmas Novel', 'https://images.isbndb.com/covers/88/87/9780060188887.jpg'), + ('1400034531', 'Vivir Para Contarla (Spanish Edition)', 'https://images.isbndb.com/covers/45/36/9781400034536.jpg'), + ('0142000809', 'Ex-Libris', 'https://images.isbndb.com/covers/08/09/9780142000809.jpg'), + ('0743449193', 'Heaven''s Prisoners (Dave Robicheaux Mysteries)', 'https://images.isbndb.com/covers/91/99/9780743449199.jpg'), + ('0785787828', 'Contact', 'https://images.isbndb.com/covers/78/22/9780785787822.jpg'), + ('0821769839', 'Night, Sea And Stars', 'https://images.isbndb.com/covers/98/36/9780821769836.jpg'), + ('0553569406', 'Mistress', 'https://images.isbndb.com/covers/94/07/9780553569407.jpg'), + ('078600021X', 'Tomorrow The Glory (Pinnacle Historical Romances)', 'https://images.isbndb.com/covers/02/10/9780786000210.jpg'), + ('0425155188', 'Rapture In Death', 'https://images.isbndb.com/covers/51/89/9780425155189.jpg'), + ('0873325079', 'Traditional Chinese Folktl', 'https://images.isbndb.com/covers/50/73/9780873325073.jpg'), + ('0786901349', 'Maquesta Kar-Thon: The Warriors, Volume II', 'https://images.isbndb.com/covers/13/40/9780786901340.jpg'), + ('0451195167', 'Amistad: A Novel Based On The Screenplay', 'https://images.isbndb.com/covers/51/66/9780451195166.jpg'), + ('9500286335', 'El Sabueso De Los Baskerville (Spanish Edition)', 'https://images.isbndb.com/covers/63/36/9789500286336.jpg'), + ('0812543122', 'Sense And Sensibility (Tor Classic)', 'https://images.isbndb.com/covers/31/24/9780812543124.jpg'), + ('048621866X', 'The Egyptian Book Of The Dead: The Papyrus Of Ani In The British Museum', 'https://images.isbndb.com/covers/86/63/9780486218663.jpg'), + ('0192839829', 'Kamasutra (Oxford World''s Classics)', 'https://images.isbndb.com/covers/98/24/9780192839824.jpg'), + ('0783887841', 'Stargate', 'https://images.isbndb.com/covers/78/45/9780783887845.jpg'), + ('9879317114', 'Historia Del Tiempo / A Brief History Of Time: Del Big Bang A Los Agujeros Negros / From The Big Bang To Black Holes (Spanish Edition)', 'https://images.isbndb.com/covers/71/12/9789879317112.jpg'), + ('0330344773', 'Virgin Territory: A Roman Mystery', 'https://images.isbndb.com/covers/47/77/9780330344777.jpg'), + ('0727849190', 'The Jericho Trumpet', 'https://images.isbndb.com/covers/91/99/9780727849199.jpg'), + ('0708992897', 'Winds Of Fortune (Charnwood Library)', 'https://images.isbndb.com/covers/28/90/9780708992890.jpg'), + ('2253149624', 'La Passion Turque', 'https://images.isbndb.com/covers/96/20/9782253149620.jpg'), + ('0505522993', 'More Than Magic (The Djinn Series, Book 2)', 'https://images.isbndb.com/covers/29/93/9780505522993.jpg'), + ('0312875673', 'I Am Of Irelaunde: A Novel Of Patrick And Osian', 'https://images.isbndb.com/covers/56/71/9780312875671.jpg'), + ('1565048423', 'The Unbeholden (Masquerade Of The Red Death, Vol 3)', 'https://images.isbndb.com/covers/84/23/9781565048423.jpg'), + ('1565048415', 'Unholy Allies (Masquerade Of The Red Death Trilogy, Vol 2)', 'https://images.isbndb.com/covers/84/16/9781565048416.jpg'), + ('1565048407', 'Blood War (Masquerade Of The Red Death #1)', 'https://images.isbndb.com/covers/84/09/9781565048409.jpg'), + ('0425157466', 'McNally''s Puzzle (Archy McNally)', 'https://images.isbndb.com/covers/74/66/9780425157466.jpg'), + ('2871292086', 'Détective Conan, Tome 14', 'https://images.isbndb.com/covers/20/81/9782871292081.jpg'), + ('2744403709', 'Le Juge D''Egypte, Tome 3 : La Justice Du Vizir', 'https://images.isbndb.com/covers/37/05/9782744403705.jpg'), + ('2744403695', 'Le Juge D''Egypte, Tome 2 : La Loi Du Désert', 'https://images.isbndb.com/covers/36/99/9782744403699.jpg'), + ('2744403687', 'Le Juge D''Egypte, Tome 1 : La Pyramide Assassinée', 'https://images.isbndb.com/covers/36/82/9782744403682.jpg'), + ('0439568366', 'How To Kill A Monster (Goosebumps Series)', 'https://images.isbndb.com/covers/83/64/9780439568364.jpg'), + ('9505111215', 'Pequeo Vampiro, El (Spanish Edition)', 'https://images.isbndb.com/covers/12/13/9789505111213.jpg'), + ('0886773083', 'The Shattered Chain (Darkover)', 'https://images.isbndb.com/covers/30/83/9780886773083.jpg'), + ('0749711841', 'Fifteen Minute Tales', 'https://images.isbndb.com/covers/18/49/9780749711849.jpg'), + ('0727855468', 'Defy Not The Heart', 'https://images.isbndb.com/covers/54/66/9780727855466.jpg'), + ('0380753006', 'Savage Thunder', 'https://images.isbndb.com/covers/30/00/9780380753000.jpg'), + ('0140621164', 'Selected Tales (Penguin Popular Classics)', 'https://images.isbndb.com/covers/11/67/9780140621167.jpg'), + ('0634032984', 'Luis Miguel - Selections From Romance, Segundo Romance, And Romances', 'https://images.isbndb.com/covers/29/81/9780634032981.jpg'), + ('067187036X', 'Fahrenheit 451: A Novel', 'https://images.isbndb.com/covers/03/62/9780671870362.jpg'), + ('034537472X', 'The Sapphire Rose', 'https://images.isbndb.com/covers/47/21/9780345374721.jpg'), + ('0812521374', 'Necroscope', 'https://images.isbndb.com/covers/13/75/9780812521375.jpg'), + ('0679745688', 'Ripley''s Game', 'https://images.isbndb.com/covers/56/86/9780679745686.jpg'), + ('1860219470', 'Name Of The Rose (Reed Audio, 136)', 'https://images.isbndb.com/covers/94/74/9781860219474.jpg'), + ('0671626299', 'Crucifax', 'https://images.isbndb.com/covers/62/97/9780671626297.jpg'), + ('096664431X', 'Study In Scarlet', 'https://images.isbndb.com/covers/43/19/9780966644319.jpg'), + ('042517350X', 'The World Is Not Enough', 'https://images.isbndb.com/covers/35/03/9780425173503.jpg'), + ('0140434062', 'Dracula (Penguin Classics)', 'https://images.isbndb.com/covers/40/64/9780140434064.jpg'), + ('0441006612', 'Isaac Asimov''s Werewo', 'https://images.isbndb.com/covers/66/18/9780441006618.jpg'), + ('0061020680', 'Mort', 'https://images.isbndb.com/covers/06/81/9780061020681.jpg'), + ('0773670696', 'The Kissing Man', 'https://images.isbndb.com/covers/06/93/9780773670693.jpg'), + ('1568651295', 'The Hiding Place', 'https://images.isbndb.com/covers/12/93/9781568651293.jpg'), + ('067089205X', 'Bridesmaid Revisited (Ellie Haskell Mysteries)', 'https://images.isbndb.com/covers/20/51/9780670892051.jpg'), + ('067003200X', 'Aunt Dimity Takes A Holiday', 'https://images.isbndb.com/covers/20/06/9780670032006.jpg'), + ('0394547942', 'Teresa Of Avila: The Progress Of A Soul', 'https://images.isbndb.com/covers/79/47/9780394547947.jpg'), + ('0345436520', 'Mrs. Pollifax Unveiled', 'https://images.isbndb.com/covers/65/28/9780345436528.jpg'), + ('0670030600', 'The Importance Of Being Ernestine: An Ellie Haskell Mystery', 'https://images.isbndb.com/covers/06/06/9780670030606.jpg'), + ('0375401768', 'Time Lord : Sir Sandford Fleming And The Creation Of Standard Time', 'https://images.isbndb.com/covers/17/63/9780375401763.jpg'), + ('0818501332', 'The Skilled Helper: A Problem Management And Opportunity Development Approach To Helping', 'https://images.isbndb.com/covers/13/33/9780818501333.jpg'), + ('0967673739', 'Ester''s Child', 'https://images.isbndb.com/covers/37/38/9780967673738.jpg'), + ('0375714553', 'The Victorian Fairy Tale Book (Pantheon Fairy Tale & Folklore Library)', 'https://images.isbndb.com/covers/45/59/9780375714559.jpg'), + ('0743222199', 'Rites Of Autumn: The Story Of College Football', 'https://images.isbndb.com/covers/21/98/9780743222198.jpg'), + ('0006278841', 'The Diary Of A Country Priest (Fount Classics)', 'https://images.isbndb.com/covers/88/49/9780006278849.jpg'), + ('0452270839', 'Feeding The Hungry Heart: The Experience Of Compulsive Eating', 'https://images.isbndb.com/covers/08/31/9780452270831.jpg'), + ('0451183959', 'Mrs. Malory''s Shortest Journey', 'https://images.isbndb.com/covers/39/58/9780451183958.jpg'), + ('0395944171', 'Snobbery: The American Version', 'https://images.isbndb.com/covers/41/72/9780395944172.jpg'), + ('0743457951', 'No Place Like Home (Holiday Classics)', 'https://images.isbndb.com/covers/79/58/9780743457958.jpg'), + ('0934395942', 'Redneckin'' Made Easy', 'https://images.isbndb.com/covers/59/46/9780934395946.jpg'), + ('0684815907', 'CHRISTMAS BOX', 'https://images.isbndb.com/covers/59/09/9780684815909.jpg'), + ('0743224914', 'Christmas In Plains : Memories', 'https://images.isbndb.com/covers/49/18/9780743224918.jpg'), + ('0395585643', 'The New Fit Or Fat', 'https://images.isbndb.com/covers/56/41/9780395585641.jpg'), + ('0800718372', 'Flabbergasted', 'https://images.isbndb.com/covers/83/74/9780800718374.jpg'), + ('0060081651', 'The Second Coming Of Lucy Hatch: A Novel', 'https://images.isbndb.com/covers/16/52/9780060081652.jpg'), + ('0151009376', 'The Woman Who Gave Birth To Rabbits: Stories', 'https://images.isbndb.com/covers/93/74/9780151009374.jpg'); + +INSERT INTO AUTHORS (Name) + VALUES + ('Mark P. O. Morford'), + ('Robert J. Lenardon'), + ('Richard Bruce Wright'), + ('Carlo D''Este'), + ('Gina Kolata'), + ('Elizabeth Wayland Barber'), + ('E. J. W. Barber'), + ('Amy Tan'), + ('Robert Cowley'), + ('Scott Turow'), + ('Stacy Keach'), + ('David Cordingly'), + ('Ann Beattie'), + ('David Adams Richards'), + ('Kensington'), + ('Sheila Heti'), + ('J. R. Kaiser'), + ('Jack Canfield'), + ('Mark Victor Hansen'), + ('Jennifer Read Haw'), + ('Loren D. Estleman'), + ('John Kenneth'), + ('Robert Hendrickson'), + ('Julia Oliver'), + ('John Grisham'), + ('Toni Morrison'), + ('The Onion'), + ('Scott Dikkers'), + ('Mike Loew'), + ('Celia Brooks Brown'), + ('Jane Noraika'), + ('Philip Webb'), + ('J. R. Parrish'), + ('Mary-kate & Ashley Olsen'), + ('Robynn Clairday'), + ('Kathleen Duey'), + ('Karen A. Bale'), + ('Bill Dodge'), + ('Rich Shapero'), + ('Michael Crichton'), + ('C.S. Lewis'), + ('Arthur Phillips'), + ('Stephen Jaramillo'), + ('Mordecai Richler'), + ('Michael Panofsky'), + ('Anette Grube'), + ('Eleanor Cooney'), + ('Daniel Altieri'), + ('Charlotte Link'), + ('Richard North Patterson'), + ('Kristian Lutze'), + ('Mark Salzman'), + ('Harper Lee'), + ('Laura Hillenbrand'), + ('Barbara Kingsolver'), + ('Jo Dereske'), + ('Jane Austen'), + ('Dolores Krieger'), + ('Anne Rivers Siddons'), + ('Dean Koontz'), + ('Mary Higgins Clark'), + ('Patricia Cornwell'), + ('J.D. Robb'), + ('Maeve Binchy'), + ('Laura J. Mixon'), + ('Tim LaHaye'), + ('Jerry B. Jenkins'), + ('Bernie S. Siegel M.D.'), + ('Robert Penn Warren'), + ('Hans Johannes Hoefer'), + ('Mark Helprin'), + ('O. Carl Simonton M.D.'), + ('James Creighton Ph.D.'), + ('Stepha'), + ('Chuck Hill'), + ('David Iglehart'), + ('Larry McMurtry'), + ('Suzanne Fisher Staples'), + ('Michel Tournier'), + ('Carl Sagan'), + ('Aleksandr Zinoviev'), + ('Anne Tyler'), + ('Joseph Conrad'), + ('Deepak Chopra'), + ('Martin Greenberg'), + ('Thomas Hardy'), + ('Charles Noland'), + ('Sherri Baker'), + ('Valerie Frankel'), + ('Benjamin Hoff'), + ('Niccolo Machiavelli'), + ('H. Jackson Brown Jr.'), + ('Robert A. Heinlein'), + ('Philip Pullman'), + (''), + ('Michael Ondaatje'), + ('Sandra Levy Ceren'), + ('P. J. O''Rourke'), + ('Mike Gayle'), + ('Stel Pavlou'), + ('Sarah Payne Stuart'), + ('Dan Quayle'), + ('Donald F. Kettl'), + ('Donald Kettl'), + ('David Frum'), + ('Louis L''Amour'), + ('J.D. Salinger'), + ('John Berendt'), + ('Jennifer Crusie'), + ('Jane Heller'), + ('Michael Rips'), + ('Simon Mawer'), + ('William Abrahams'), + ('Robert T. Kiyosaki'), + ('Sharon L. Lechter'), + ('Ken Follett'), + ('John F. Love'), + ('Robert G. Allen'), + ('Louis De Bernieres'), + ('Pam Proctor'), + ('Allen M. Schoen'), + ('Mitch Albom'), + ('Michael Jan Friedman'), + ('Ronald D. Moore'), + ('Glendon Swarthout'), + ('Neal Barrett Jr.'), + ('J. Michael Straczynski'), + ('David Morrell'), + ('Sandra Brown'), + ('James Patterson'), + ('Peter De Jonge'), + ('Stuart Woods'), + ('Iris Johansen'), + ('Dan Brown'), + ('Joe Hutsko'), + ('Anita Shreve'), + ('Ann Rule'), + ('Lewis Grizzard'), + ('Paul Theroux'), + ('Charles Hickey'), + ('Todd Lighty'), + ('John O''Brien'), + ('Stephen King'), + ('Ben Mezrich'), + ('Bill Hand'), + ('Tom Clancy'), + ('Dana Reeve'), + ('Roy'), + ('Barbara Metzger'), + ('Gabriel Garcia Marquez'), + ('Rebecca Wells'), + ('Tony Hillerman'), + ('Robert James Waller'), + ('Rachel Harris'), + ('Ian McEwan'), + ('Michael Lewis'), + ('Richard Zimler'), + ('Norman Jetmundsen'), + ('Lorenzo Carcaterra'), + ('Anne Frasier'), + ('Kay Hooper'), + ('Daphne Du Maurier'), + ('Nathaniel Hawthorne'), + ('Leo Marx'), + ('Nick Page'), + ('Laura Wolf'), + ('Lois Duncan'), + ('Susan Grant'), + ('Barbara Vine'), + ('Shirley Rousseau Murphy'), + ('Jane Lindskold'), + ('Betty Smith'), + ('Cybill Shepherd'), + ('Aimee Lee Ball'), + ('Stewart O''Nan'), + ('David Baldacci'), + ('Douglas Adams'), + ('Mary Lawson'), + ('Willa Cather'), + ('Olivia Goldsmith'), + ('Helen Fielding'), + ('Dover Thrift Editions'), + ('Franklin W. Dixon'), + ('Lilian Jackson Braun'), + ('Holly Virden'), + ('Michelle McKinney Hammond'), + ('H. Norman Wright'), + ('Piers Anthony'), + ('Ray Bradbury'), + ('Friedrich Schiller'), + ('Walter Schafarschik'), + ('Peter Naujack'), + ('Raymond Chandler'), + ('Hans Wollschläger'), + ('Thomas Schlück'), + ('Norbert Wölfl'), + ('Alexander Schmitz'), + ('Jürgen Bauer'), + ('Alastair Ker'), + ('Paulo Coelho'), + ('Maralde Meyer-Minnemann'), + ('Gabriel García Márquez'), + ('Fay Weldon'), + ('Arabella Weir'), + ('Kiana Davenport'), + ('Margarete Längsfeld'), + ('Sue Townsend'), + ('Renan Demirkan'), + ('Michael Moore'), + ('Helmut Dierlamm'), + ('Heike Schlatterer'), + ('Jonathan Franzen'), + ('Bettina Abarbanell'), + ('J. D. Salinger'), + ('Annemarie Böll'), + ('Heinrich Böll'), + ('Elisab'), + ('James Joyce'), + ('Joanna Trollope'), + ('Antoinette Gittinger'), + ('Milan Kundera'), + ('Arundhati Roy'), + ('Robert S. Levinson'), + ('Lorna Landvik'), + ('Arthur Golden'), + ('Kent Haruf'), + ('Patricia D Cornwell'), + ('Patricia D. Cornwell'), + ('Carol J. Farley'), + ('Tom Newsom'), + ('Kathleen E. Woodiwiss'), + ('Belva Plain'), + ('Mark Haddon'), + ('Ann Brashares'), + ('Erich Segal'), + ('Elizabeth Adler'), + ('Nicholas Sparks'), + ('John Saul'), + ('Steve Thayer'), + ('Tracy Chevalier'), + ('Judith Kelman'), + ('Michael Palmer'), + ('Francine Hughes'), + ('Norman Bridwell'), + ('Frank McCourt'), + ('Malachy Mccourt'), + ('Mari Sandoz'), + ('Anne Perry'), + ('Alexander Mccall Smith'), + ('Barbara Bergman'), + ('Gregory Maguire'), + ('Yann Martel'), + ('Ruth Rendell'), + ('Al Franken'), + ('Donna Tartt'), + ('John Milne'), + ('Terry Pratchett'), + ('E. B. White'), + ('Garth Williams'), + ('J. M. Barrie'), + ('Mary O''Hara'), + ('Paul Kidby'), + ('Louise Rennison'), + ('JANE AUSTEN'), + ('Kenneth Grahame'), + ('Bernard Cornwell'), + ('Charles De Lint'), + ('Lord Dunsany'), + ('Neil Gaiman'), + ('Georgette Heyer'), + ('Oscar Wilde'), + ('Jeffrey Eugenides'), + ('Ted Hughes'), + ('Andrew Davidson'), + ('Roald Dahl'), + ('Quentin Blake'), + ('Donna Jo Napoli'), + ('A.S. Byatt'), + ('Tanuja Desai Hidier'), + ('Sophie Kinsella'), + ('Isabel Wolff'), + ('Louisa May Alcott'), + ('Margaret Drabble'), + ('George Orwell'), + ('Charles Dickens'), + ('Isabel Allende'), + ('Ellen Datlow'), + ('Terri Windling'), + ('Charles Vess'), + ('Neil Gaim'), + ('Joseph Heller'), + ('John Galsworthy'), + ('Enid Blyton'), + ('Alan Moore'), + ('Kevin O''Neill'), + ('Ben Dimagmaliw'), + ('Sam Kieth'), + ('Mike Dringenberg'), + ('Malcolm Jon'), + ('John Bolton'), + ('Trudy Suggs'), + ('Tom Wolfe'), + ('Brady Udall'), + ('Homer Hickam'), + ('Pearl Abraham'), + ('Sebastian Junger'), + ('Karen Armstrong'), + ('Mary Barnard'), + ('Dudley Fitts'), + ('David Brin'), + ('T. C. Boyle'), + ('T. Coraghessan Boyle'), + ('Plato'), + ('Alexander Nehamas'), + ('Paul Woodruff'), + ('Lynda Madaras'), + ('Dane Saavedra'), + ('Jackie Aher'), + ('Stephen Mccauley'), + ('Isabelle Holland'), + ('Pam Conrad'), + ('Lurlene Mcdaniel'), + ('Brian Kaufman'), + ('John Darnton'), + ('Martin Schenk'), + ('David Eddings'), + ('Leigh Eddings'), + ('Paul Reiser'), + ('David G. Hartwell'), + ('Kathryn Cramer'), + ('Dave Barry'), + ('John R. Holt'), + ('Theodore Beale'), + ('Frank M. Robinson'), + ('Mary Jane Clark'), + ('Mary Shelley'), + ('Robert Westall'), + ('Robert B. Parker'), + ('Rita Chapman Works'), + ('Mark Carwardine'), + ('A. Manette Ansay'), + ('Sarah Waters'), + ('Anne Frank'), + ('Barry Lopez'), + ('Greg Palast'), + ('Andrea Kane'), + ('Nevada Barr'), + ('Margaret Maron'), + ('Edna Barker'), + ('Shelagh Rogers'), + ('Muriel Whitaker'), + ('John Irving'), + ('William Golding'), + ('Hermann Stiehl'), + ('HarperReference'), + ('LTD'), + ('Ann Patchett'), + ('Lane Smith'), + ('Sue Monk; Sue Monk Kidd Kidd'), + ('Roseanne J. Serra (Co'), + ('Bob Thiele'), + ('Bob Golden'), + ('Steve Allen'), + ('Colleen Mccullough'), + ('Joanne Harris'), + ('Thomas Cahill'), + ('Michael Hudson'), + ('Jane Smiley'), + ('Dick Francis'), + ('Nora Roberts'), + ('Jean Marzollo'), + ('Walter Wick'), + ('Carol Devine Carson'), + ('Barbara Delinsky'), + ('P. D. James'), + ('Arthur W. Upfield'), + ('Christopher Rice'), + ('Rex Stout'), + ('Joan Anderson'), + ('Vance Havner'), + ('Warren W. Wiersbe'), + ('Max Lucado'), + ('Larry Crabb'), + ('Barry Neil Kaufman'), + ('Bob Sjogren'), + ('Frederick J. Moody'), + ('Neal Pirolo'), + ('William Sleator'), + ('Antoine De Saint-Exupery'), + ('Richard Bach'), + ('Kevin Sullivan'), + ('Michele Morgan'), + ('Scott Cunningham'), + ('David Allen Hulse'), + ('Richard Webster'), + ('Bernard King'), + ('Pat Hutchins'), + ('William Shakespeare'), + ('Roma Gill'), + ('Melissa McClone'), + ('Cheryl St. John'), + ('Lewis Carroll'), + ('Martin Gardner'), + ('Mark Twain'), + ('Mary Crow Dog'), + ('Richard Erdoes'), + ('Linda Gordon'), + ('Florence King'), + ('Alice Sebold'), + ('Spalding Gray'), + ('Thomas Harris'), + ('Edward Rutherfurd'), + ('Margaret Atwood'), + ('Dorothy Allison'), + ('Maya Angelou'), + ('Edith Wharton'), + ('Mary Brave Bird'), + ('John G. Neihardt'), + ('Vine Deloria Jr.'), + ('Roland Warren'), + ('Johnny Molloy'), + ('James McCourt'), + ('Wayne Koestenbaum'), + ('Elizabeth Wurtzel'), + ('Bill Bradley'), + ('Don Miguel Ruiz'), + ('Paul Lester'), + ('Leo Tolstoy'), + ('Simon Nye'), + ('Robert A Johnson'), + ('Marc Gascoigne'), + ('Stephanie Maze'), + ('Sandra Dallas'), + ('Anne McCaffrey'), + ('David Gemmell'), + ('Laura Zigman'), + ('Margaret Truman'), + ('Mark C. Young'), + ('Paula Danziger'), + ('Tony Ross'), + ('Richard A. Lupoff'), + ('Bruce Coville'), + ('Carrie A. Bebris'), + ('Ellen Carol Dubois'), + ('Candice F. Ransom'), + ('Sam Bobrick'), + ('Julie Stein'), + ('Price Stern Sloan'), + ('Anna'), + (' And Vogel'), + (' Malvina (Editor) Sewell'), + ('Marian Leighton'), + ('Donna K. Grosvenor'), + ('James L. Stanfield'), + ('Mary Wollstonecraft Shelley'), + ('D. J. Arneson'), + ('Eva Clif'), + ('Valerie Block'), + ('Luanne Rice'), + ('Ellen Gilchrist'), + ('Tim Gautreaux'), + ('Richard Russo'), + ('Jostein Gaarder'), + ('Anna Quindlen'), + ('Diane Johnson'), + ('Wally Lamb'), + ('Adeline Yen Mah'), + ('Barbara Ehrenreich'), + ('Dorothy Dunnett'), + ('John LeCarre'), + ('Singer Media Corporation'), + ('Emily Dickinson'), + ('Hazel Harrison'), + ('Joseph Girzone'), + ('Joseph F. Girzone'), + ('Lorraine Anderson'), + ('Ad Hudler'), + ('Josephine Carlton'), + ('Ted L. Nancy'), + ('Jerry Seinfeld'), + ('Francis Wheen'), + ('Ellen Rimbauer'), + ('Joyce Reardon'), + ('Steven Rimbauer'), + ('Sidney Sheldon'), + ('Christopher Moore'), + ('Pamela Johnson'), + ('Robert Lacey'), + ('Tim Dorsey'), + ('Jodi Compton'), + ('Elmore Leonard'), + ('Lynn Coady'), + ('John Lawton'), + ('Eileen Yin-Fei Lo'), + ('Tilden Edwards'), + ('Vikram Seth'), + ('Elizabeth Gaskell'), + ('Elizabeth Porges Watson'), + ('Anita Diamant'), + ('Lauren Haney'), + ('Gerald Stern'), + ('Martha Grimes'), + ('Henry James'), + ('Sarah Orne Jewett'), + ('William Carlos Williams'), + ('Rh Value Publishing'), + ('Harry Kemelman'), + ('Mil Millington'), + ('Suzanne G. Farnham'), + ('Joseph P. Gill'), + ('R. Taylor McLean'), + ('Czeslaw Milosz'), + ('Margaret Guenther'), + ('Roberto Juarroz'), + ('Mary Crow'), + ('Hans Kmoch'), + ('Barnie F. Winkelman'), + ('Emma Mclaughlin'), + ('Nicola Kraus'), + ('Paul Jennings'), + ('Mark E. Neely Jr.'), + ('Stephen J. Weininger'), + ('Frank R. Stermitz'), + ('Larry Katzenstein'), + ('David Steinman'), + ('Alfie Kohn'), + ('Paula Polk Lillard'), + ('David Lewis'), + ('Billie Livingston'), + ('Adele Lang'), + ('Jen Banbury'), + ('Patricia Daniels Cornwell'), + ('Catherine Coulter'), + ('Dominick Dunne'), + ('Clive Cussler'), + ('John Pascal'), + ('Carl Hiaasen'), + ('Diane Stevenson'), + ('Jonathan Safran Foer'), + ('Francesca Marciano'), + ('Julia Glass'), + ('Tawni O''Dell'), + ('Jennifer Weiner'), + ('Danielle Steel'), + ('Leon Hale'), + ('Russell Banks'), + ('Samuel Taylor Coleridge'), + ('BRADLEY P WARSHAUER'), + ('Bradley P. Warshauer'), + ('Bobbie Ann Mason'), + ('Karen Robards'), + ('Emma Lathen'), + ('Faye Kellerman'), + ('Jacquelyn Mitchard'), + ('Diane Mott Davidson'), + ('Candace Bushnell'), + ('Kristin Hannah'), + ('Michael Marshall'), + ('Allen Widome'), + ('Wilbur Smith'), + ('Mike Thaler'), + ('Jared Lee'), + ('Michael Slade'), + ('John Sandford'), + ('John Camp'), + ('Tami Hoag'), + ('Ted Dekker'), + ('Angela Hunt'), + ('C. S. Lewis'), + ('C. S Lewis'), + ('Will Eisner'), + ('Robin Cook'), + ('E. Lynn Harris'), + ('Linda Goodman'), + ('Anne Rice'), + ('Judith Rossner'), + ('Marilyn French'), + ('Wayne W. Dyer'), + ('Armistead Maupin'), + ('Julie Morgenstern'), + ('Peter Straub'), + ('James Maybrick'), + ('Shirley Harrison'), + ('Barbara Taylor Bradford'), + ('Lisa Jackson'), + ('Sharyn McCrumb'), + ('Cokie Roberts'), + ('Shana Corey'), + ('Mark Teague'), + ('Jesse S. Ostrow'), + ('Charles Shaw'), + ('Justine Korman'), + ('Bill Langley'), + ('Ron Dias'), + ('Walt Disney P'), + ('Patricia Reilly Giff'), + ('Beverly Cleary'), + ('K.A. Applegate'), + ('Jane Yolen'), + ('Golden Books'), + ('Marvin Miller'), + ('Craig Boldman'), + ('H. G. Wells'), + ('Raymond James'), + ('Jim Deal'), + ('Bobbie Kalman'), + ('Mercedes Lackey'), + ('Dorothy Gilman'), + ('MoveOn.org'), + ('Christopher Finch'), + ('Charles Frazier'), + ('Julia Spencer-Fleming'), + ('Fannie Flagg'), + ('Laura Ingall Wilder'), + ('Brooke Zimmer'), + ('John Fontana'), + ('Lisa Gardner'), + ('Tracy Dockray'), + ('Gertrude Chandler Warner'), + ('Lynn S. Hightower'), + ('Eric Schlosser'), + ('Suzanne Brockmann'), + ('Gail Carson Levine'), + ('Frances Kuffel'), + ('Susan Conant'), + ('David Schickler'), + ('Judith McNaught'), + ('JANET EVANOVICH'), + ('Sylvia Plath'), + ('Ilona Koidahl'), + ('Fern Michaels'), + ('Betsy Byars'), + ('Bruce Sterling'), + ('Sarah Ban Breathnach'), + ('Alice Hoffman'), + ('Lisa Scottoline'), + ('Spencer Johnson'), + ('Kenneth Blanchard'), + ('David Feldman'), + ('Kas Schwan'), + ('Richard Bausch'), + ('Katie Fforde'), + ('James Burke'), + ('Bliss Broyard'), + ('Sara Paretsky'), + ('Charles Webb'), + ('Elizabeth Benedict'), + ('Stanley Morison; Brooke Crutchley (editor); Mike P'), + ('Henry Miller'), + ('David Whyte'), + ('Thomas Cummings'), + ('Warren Bennis'), + ('Gretchen M. Spreitze'), + ('Martha Beck'), + ('Desmond Tutu'), + ('Clayborne Carson'), + ('Kris Shepard'), + ('Andrew Young'), + ('Jack Kerouac'), + ('Ann Charters'), + ('Martin Buber'), + ('Walter Kaufmann'), + ('Niccolò Machiavelli'), + ('N. H. Thompson'), + ('Paul Monette'), + ('Ernest Hemingway'), + ('Melody Carlson'), + ('Alisa Kwitney'), + ('Billie Letts'), + ('Melissa Bank'), + ('Rena Kornreich Gelissen'), + ('Heather Dune Macadam'), + ('Moon Unit Zappa'), + ('Ted Mooney'), + ('Susan Wiggs'), + ('Gwyn Hyman Rubio'), + ('Elisabeth Robinson'), + ('Audrey Niffenegger'), + ('Tim Farrington'), + ('Chaim Potok'), + ('Scott Spencer'), + ('V. S. Naipaul'), + ('Jean Giono'), + ('Anne-Marie Marina-Médiavilla'), + ('Alain-Fournier'), + ('Daniel Leuwers'), + ('Erich Maria Remarque'), + ('Alzir Hella'), + ('Olivier Bournac'), + ('Roy Lewis'), + ('René Barjavel'), + ('Alexandra David-Néel'), + ('Charles Baudelaire'), + ('Marie-Jeanne Durry'), + ('Yves Florenn'), + ('Jacques Chambon'), + ('Henri Robillot'), + ('Radiguet'), + ('Emile Zola'), + ('Henri Mitterand'), + ('Willi Glasauer'), + ('Louis Pergaud'), + ('Collectif'), + ('Robert A. (Anson) Heinlein'), + ('Sten Nadolny'), + ('Cheryl Benard'), + ('Edit Schlaffer'), + ('Christa Wichterich'), + ('John Blofeld'), + ('Christine Obbo'), + ('Peter B Heim'), + ('Hera Lind'), + ('Jane Hamilton'), + ('Jack Higgins'), + ('Max Allan Collins'), + ('David Guterson'), + ('Bernhard Schlink'), + ('Carol Brown Janeway'), + ('Eric Jerome Dickey'), + ('Patricia Gaffney'), + ('Richard Paul Evans'), + ('Marc Levy'), + ('Laney Katz Becker'), + ('Vladimir Nabokov'), + ('Jennifer Lauck'), + ('Joe Keenan'), + ('Jeanne Ray'), + ('Tony Parsons'), + ('Jane McCafferty'), + ('Laura Esquivel'), + ('Cathleen Toelke'), + ('Carol & Thomas'), + ('J.R.R. Tolkien'), + ('Venise Berry'), + ('Jan Karon'), + ('Cormac McCarthy'), + ('Carol Higgins Clark'), + ('Andrew Gross'), + ('Travis Thrasher'), + ('John McEnroe'), + ('John Kaplan'), + ('Sally Mandel'), + ('Linda Lay Shuler'), + ('Janet Dailey'), + ('Claude Lanzmann'), + ('Simone De Beauvoir'), + ('Lemony Snicket'), + ('Brett Helquist'), + ('Matthew Thomas'), + ('Boris Vian'), + ('Noël Arnaud'), + ('Claude Couffon'), + ('Luis Sepulveda'), + ('Hubert Selby'), + ('Jacob Weisberg'), + ('David Lodge'), + ('Lily Seafield'), + ('Philip Ardagh'), + ('Iain Banks'), + ('David Crombie'), + ('John Steinbeck'), + ('Michael O''Mara'), + ('Richard Brassey'), + ('William Vance'), + ('Jean Van Hamme'), + ('R. W. Holder'), + ('From The Editors Of Southwater'), + ('Bernard Werber'), + ('Andy Sloss'), + ('Allan Zola Kronzek'), + ('Elizabeth Kronzek'), + ('Charles L Squire'), + ('Gordon Jarvie'), + ('Alan Spence'), + ('Helene Siegel'), + ('Karen Gillingham'), + ('A A Milne'), + ('A. A. Milne'), + ('Eric Thompson'), + ('Elizabeth Strout'), + ('David Sedaris'), + ('Leslie Feinberg'), + ('Chris Anne Wolfe'), + ('Lauren Sanders'), + ('Gael Baudino'), + ('Lauren Maddison'), + ('Carol Anshaw'), + ('Jean Stewart'), + ('Emma Donoghue'), + ('Deborah E. McDowell'), + ('Karen X. Tulchinsky'), + ('Jill Thompson'), + ('Jody Seay'), + ('Manda Scott'), + ('Jeff Foxworthy'), + ('Terry Brooks'), + ('A.C. Crispin'), + ('Madelyn Arnold'), + ('Tamora Pierce'), + ('Carolyn Chute'), + ('Sara Orwig'), + ('Melisa Michaels'), + ('Isobel Bird'), + ('Frederik Pohl'), + ('C. M. Kornbluth'), + ('Vonda McIntyre'), + ('John Varley'), + ('Nancy Garden'), + ('Nicola Griffith'), + ('Julie Campbell'), + ('Lee Smith'), + ('Jacqueline Woodson'), + ('Pat Summitt'), + ('Richard Belzer'), + ('Nick Hornby'), + ('Colleen McCullough'), + ('Andrew L Johnson'), + ('Marian Babson'), + ('Kathleen O''Neal Gear'), + ('W. Michael Gear'), + ('Paul Phifer'), + ('Peter Hoeg'), + ('Erma Bombeck'), + ('John Mortimer'), + ('E.L. Doctorow'), + ('Simon Schama'), + ('Frank Waters'), + ('Karen Hesse'), + ('Kenneth Oppel'), + ('S.D. Schindler'), + ('Carol Ryrie Brink'), + ('Richard Mantel'), + ('K. A. Applegate'), + ('Pauline Baynes'), + ('Shelly Roberts'), + ('Diane Duane'), + ('Carolee Brockman'), + ('Rachel Roberts'), + ('Shelley Roberts'), + ('Lensey Namioka'), + ('Jackie Eileen Behrend'), + ('Andrew Clements'), + ('Brian Selznick'), + ('Lois Lowry'), + ('Brother Yun'), + ('Paul Hattaway'), + ('Katherine Khodorowsky'), + ('Milena Moser'), + ('Patricia Highsmith'), + ('Gabriele Conrad'), + ('Lore Straßl'), + ('Jürgen Speh'), + ('Till R. Lohmeyer'), + ('Gabriele'), + ('Stephen R. Donaldson'), + ('Todd Herzog'), + ('Sander Gilman'), + ('John Borneman'), + ('Robert S. McElvaine'), + ('Bram Stoker'), + ('Michael A. Stackpole'), + ('Langston Hughes'), + ('Carol Matthews'), + ('Carole Matthews'), + ('Jacqueline L. Tobin'), + ('Raymond G. Dobard'), + ('Maude S. Wah'), + ('Marion Zimmer Bradley'), + ('Andrei Codrescu'), + ('Carolyne Aarsen'), + ('Jack Chapman'), + ('Anthony J Alessandra'), + ('Charles R Swindoll'), + ('Orson Scott Card'), + ('V. A. Howard'), + ('J. H. Barton'), + ('Steve Pieczenik'), + ('Walter P. Wilson'), + ('Bruce Fries'), + ('Marty Fries'), + ('Rush Limbaugh'), + ('Anne Dingus'), + ('Kate Chopin'), + ('Kirk Kazanjian'), + ('Donald Merriam Allen'), + ('William R. Maples'), + ('Michael Browning'), + ('Carl Hausman'), + ('Richard Peck'), + ('Michael Connelly'), + ('John Lescroart'), + ('John Jakes'), + ('Alice McDermott'), + ('Hilary Bailey'), + ('Howard Fast'), + ('Jessica Fletcher'), + ('Donald Bain'), + ('Eileen Goudge'), + ('Arnette Lamb'), + ('Piers A. Jacob'), + ('Michael Schulte'), + ('Walter Cronkite'), + ('Tom Mula'), + ('Lois Faye Dyer'), + ('Sharon Lamb'), + ('Sir Arthur Conan Doyle'), + ('Agatha Christie'), + ('Mark Cohen'), + ('Sherry Shahan'), + ('Betsy Haynes'), + ('Helen R. Myers'), + ('Della Rowland'), + ('Irving Adler'), + ('Elizabeth Peters'), + ('Shirlee Busbee'), + ('Emily Brontë'), + ('Frank Peretti'), + ('John A. Keel'), + ('Jan Gabriel'), + ('Rebecca Winters'), + ('Meg Cabot'), + ('Tanith Lee'), + ('Cathy Thacker'), + ('Richard Burton'), + ('Beverly Hastings'), + ('Savinien Cyrano De Bergerac'), + ('G. Strachan'), + ('James C. Robertson'), + ('Teresa Southwick'), + ('Barbara H. Solomon'), + ('Judith Guest'), + ('Sandra Field'), + ('Helen Brooks'), + ('Blanche Fisher Wright'), + ('Blanche Fish Wright'), + ('George Gately'), + ('Dean R. Koontz'), + ('James Lee Burke'), + ('Michael Chabon'), + ('Barbara Michaels'), + ('Norton Juster'), + ('Jules Feiffer'), + ('Michael Blake'), + ('John Bellairs'), + ('Carole Nelson Douglas'), + ('William Goldman'), + ('Marc Reisner'), + ('Mark Bowden'), + ('Jonathan Pearce'), + ('Emily Bronte'), + ('Alain De Botton'), + ('Chuck Palahniuk'), + ('E. Annie Proulx'), + ('Adam Davies'), + ('Harry M. Walker'), + ('Nicholas Evans'), + ('L.M. Montgomery'), + ('Hermann Vinke'), + ('David Mitchell'), + ('Charles Bukowski'), + ('Haruki Murakami'), + ('Jay Rubin'), + ('Frances Hodgson Burnett'), + ('Gabriela Dellosso'), + ('Patricia C. Wrede'), + ('Jack London'), + ('Alex Kershaw'), + ('Bruce Wilkinson'), + ('David Kopp'), + ('Malcolm Goodway'), + ('Ann-Marie MacDonald'), + ('Linda Howard'), + ('Sue Miller'), + ('Sheri S. Tepper'), + ('Dr. Seuss'), + ('Theodor Seuss Geisel'), + ('Tobias Wolff'), + ('Isaac Bashevis Singer'), + ('Maurice Sendak'), + ('Gary Zukav'), + ('Alfred H. Kelly'), + ('Herman Belz'), + ('Winifred A. Harbison'), + ('John M. Cooper'), + ('D. S. Hutchinson'), + ('John M. Coop'), + ('B Kliban'), + ('Judy Blunt'), + ('William Trevor'), + ('Alice Walker'), + ('Stephen Gazi'), + ('Wallace Stegner'), + ('Don DeLillo'), + ('Ralph Ellison'), + ('Shel Silverstein'), + ('Jhumpa Lahiri'), + ('Liz Trigg'), + ('Tessa Evelegh'), + ('Stewart Walton'), + ('Sally Walto'), + ('Charles Sullivan'), + ('Tom Robbins'), + ('Ursula Hegi'), + ('Samuel Richardson'), + ('George Sherburn'), + ('Valerie Martin'), + ('Gill Farrer-Halls'), + ('John Mordock'), + ('Myron Korach'), + ('Susan Bowes'), + ('Diana Gabaldon'), + ('Zadie Smith'), + ('Natalie Goldberg'), + ('Sue Grafton'), + ('William J. Kennedy'), + ('Bob Shacochis'), + ('Randy Alcorn'), + ('Nancy Cobb'), + ('Connie Grigsby'), + ('Margriet De Moor'), + ('Helga Van Beuningen'), + ('Dale Carnegie'), + ('Clifford Stoll'), + ('Sandra Cisneros'), + ('Gary Paulsen'), + ('Marguerite Henry'), + ('Wesley Dennis'), + ('Sherry Garland'), + ('Ann Druyan'), + ('Kimberly Kirberger'), + ('Ariella Papa'), + ('Michael J. Rosen'), + ('Dawn Chipman'), + ('Pamela Nelson'), + ('Mari Florence'), + ('Naomi Wax'), + ('Shannon Olson'), + ('Naylor'), + ('Karen Stolz'), + ('Clare Naylor'), + ('Stephen Chbosky'), + ('Margaret Weis'), + ('Tracy Hickman'), + ('Ivan Doig'), + ('Margaret Sayers Peden'), + ('Sylvia Nasar'), + ('Ha Jin'), + ('Elizabeth Laird'), + ('Harlan Ellison'), + ('Margaret Sayers Peden From The Span'), + ('David M. Gitlitz'), + ('Dr. Linda Kay Davidson'), + ('Wolfgang Hohlbein'), + ('Christoph Hein'), + ('Gaby Hauptmann'), + ('Carolyn See'), + ('Christa Wolf'), + ('Thomas Brussig'), + ('Piers Vitebsky'), + ('Christopher A. Weidner'), + ('Robert Silverberg'), + ('Gabriele Haefs'), + ('Christopher Tolkien'), + ('H.P. Lovecraft'), + ('Pamela Grim'), + ('Arthur C. Clarke'), + ('Jay Bennett'), + ('J. Applegate'), + ('Michael J. Straczynski'), + ('John Myers Myers'), + ('Reay Tannahill'), + ('Jack Whyte'), + ('STEPHEN R. DONALDSON'), + ('Peter Matthiessen'), + ('Paul Kent'), + ('Robin McKinley'), + ('Patricia McKillip'), + ('Joan Vinge'), + ('James'), + ('Hank Whittemore'), + ('Caroline Hebard'), + ('Ellyn Satter'), + ('Bill Brittain'), + ('August Wilson'), + ('Marilynne Robinson'), + ('Sigrid Nunez'), + ('Paul Auster'), + ('Amanda Scott'), + ('John Fowles'), + ('Fodor''s'), + ('A''Lelia Bundles'), + ('Dorothy L. Sayers'), + ('Jude Deveraux'), + ('Anne Morrow Lindbergh'), + ('Laurie R. King'), + ('Jeanne DuPrau'), + ('Louise Erdrich'), + ('Melinda Haynes'), + ('Belle Yang'), + ('Carol Shields'), + ('Tim Powers'), + ('Jean Lorrah'), + ('John Beer'), + ('Cordula Swoboda Herzog'), + ('Barbara Erskine'), + ('Annegrit Arens'), + ('Susanne Höbel'), + ('Hans J. Alpers'), + ('Jerome D. Salinger'), + ('Hermann Hesse'), + ('Claudia Von Zglinicki'), + ('Thorsten Futh'), + ('Linda Lael Miller'), + ('Anna Jennet'), + ('Elaine Crawford'), + ('Dian'), + ('Jane Feather'), + ('William R. Forstchen'), + ('Spider Robinson'), + ('Dennis L. McKiernan'), + ('Rush'), + ('Lionel Fenn'), + ('Carole Halston'), + ('Christine Rimmer'), + ('BJ James'), + ('Truman Capote'), + ('Beth Nimmo'), + ('Darrell Scott'), + ('Steve Rabey'), + ('Johann Wolfgang Von Goethe'), + ('Michael Hulse'), + ('Michael H'), + ('Thomas Elsaesser'), + ('Adrian Plass'), + ('Bridget Plass'), + ('Frank Mccourt'), + ('Stephen Quirke'), + ('James Herbert'), + ('William Sutcliffe'), + ('JANOSCH'), + ('Jean De Brunhoff'), + ('Jean DeBrunhoff'), + ('Philippe Fix'), + ('Claudia Keller'), + ('F. Paul Wilson'), + ('Wulf Bergner'), + ('Arnold A. Lazarus'), + ('Clifford N. Lazarus'), + ('Christoph Tr'), + ('Clarissa Pinkola Estés'), + ('Mascha Rabben'), + ('Virginia Allen Jensen'), + ('Dorcas Woodbury Haller'), + ('Janosch'), + ('John Paul Allen'), + ('Alan M. Clark'), + ('Hubert Jr Selby'), + ('G. B. Trudeau'), + ('Gary Larson'), + ('Garrison Keillor'), + ('Berke Breathed'), + ('Barbara Ann Kipfer'), + ('Stephen Fried'), + ('George Stephanopoulos'), + ('Rita Mae Brown'), + ('Elaine Showalter'), + ('Elaine Showalte'), + ('Cornelia Funke'), + ('Oliver Latsch'), + ('Stan Lee'), + ('J Kirby'), + ('Camille Paglia'), + ('James Kahn'), + ('Devra Newberger Speregen'), + ('Richard'), + ('James McBride'), + ('Louis Sachar'), + ('Adam Mccauley'), + ('ANNE MCCAFFREY'), + ('Eric Van Lustbader'), + ('Robert Asprin'), + ('B.M. Mooyaart'), + ('Eleanor Roosevelt'), + ('Marshall Govindan'), + ('Nomi Eve'), + ('Bruce Catton'), + ('William Gibson'), + ('Clement Eaton'), + ('H.G. Wells'), + ('Darrell K. Sweet'), + ('Judy Collins'), + ('Oliver Sacks'), + ('Annette Broadrick'), + ('Rachel Cohn'), + ('Carolyn Keene'), + ('Rachel Naomi Remen'), + ('Jayne Ann Krentz'), + ('Joan Smith'), + ('Kaye Gibbons'), + ('Bryn C. Collins'), + ('Peter Jennings'), + ('Todd Brewster'), + ('Eliza Osborne'), + ('Howard Norman'), + ('John Griesemer'), + ('Marly A. Swick'), + ('John L''Heureux'), + ('Molly Ivins'), + ('Forrest Carter'), + ('Umberto Eco'), + ('Greg Bear'), + ('Kathy Reichs'), + ('Jeffrey Deaver'), + ('Martin Cruz Smith'), + ('V.C. Andrews'), + ('Stephen Hill'), + ('E.W. Heine'), + ('Donna Fletcher'), + ('Jeanne Larsen'), + ('Bari Wood'), + ('James Gould Cozzens'), + ('Reidar Jonsson'), + ('Marianne Ruuth'), + ('June Vendall Clark'), + ('Robert Reilly'), + ('Kem Nunn'), + ('Larry King'), + ('Ernest J. Gaines'), + ('Anne Lamott'), + ('Bret Lott'), + ('Zora Neale Hurston'), + ('Jude Fisher'), + ('Salman Rushdie'), + ('G. P. Taylor'), + ('Bill Bryson'), + ('Ron Walotsky'), + ('Judy Astley'), + ('Roger E. Allen'), + ('Margaret Tempest'), + ('Maureen Bradley'), + ('James Barclay'), + ('Kahlil Gibran'), + ('LIBBY PURVES'), + ('Jane Kirkpatrick'), + ('Tess Gerritsen'), + ('Olive Ann Burns'), + ('Michael Ende'), + ('Ralph Manheim'), + ('Annie Proulx'), + ('Corrie Ten Boom'), + ('John Sherrill'), + ('Elizabeth Sherrill'), + ('Bodie Thoene'), + ('Brock Thoene'), + ('Marlo Schalesky'), + ('Alexander McCall Smith'), + ('Michael Paterniti'), + ('Dorothy R. Miller'), + ('Steve Martin'), + ('Banana Yoshimoto'), + ('Ann Rae Jonas'), + ('Reader''s Digest'), + ('Joseph Campbell'), + ('Bill Moyers'), + ('Dyanne Gibson'), + ('Isaac Asimov'), + ('Edwidge Danticat'), + ('JOE R LANSDALE'), + ('Arturo Perez-Reverte'), + ('Margaret Jull Costa'), + ('Sheila O''Connor'), + ('Erik Larson'), + ('Saul Bellow'), + ('Dan Millman'), + ('Ned Vizzini'), + ('Laurie Halse Anderson'), + ('Chris Wooding'), + ('Mary McGarry Morris'), + ('Brian O''Leary'), + ('Meredith Miller'), + ('David Peat'), + ('L. Ron Hubbard'), + ('Jeffery Deaver'), + ('Stephen Coonts'), + ('John Whitman'), + ('Peter Kummer'), + ('Sven Regener'), + ('Wendy Leigh'), + ('Dorothy Sterling'), + ('B. K. S. Iyengar'), + ('Yehudi Menuhin'), + ('Kate Atkinson'), + ('Susan M. McIntosh'), + ('Thomas Nelson'), + ('Diane Muldrow'), + ('Robert Bloch'), + ('Mollie Molay'), + ('Grace Collins'), + ('Judy Blume'), + ('Jonathan Rabb'), + ('Patrick Robinson'), + ('Robert T. Bakker'), + ('Fred Saberhagen'), + ('Richard Moran'), + ('Michael DiMercurio'), + ('Wilkie Collins'), + ('Randall Wallace'), + ('Rhoda Huffey'), + ('Calvin Trillin'), + ('Rachel Simon'), + ('Nick Earls'), + ('Carol Emshwiller'), + ('Edith Konecky'), + ('E. A. J. Honigmann'), + ('Jonathan Harr'), + ('Ayn Rand'), + ('Leonard Peikoff'), + ('Graham Hough'), + ('Alexandre Dumas'), + ('Dorothy Garlock'), + ('Whitney Otto'), + ('Virginia Barber'), + ('Edith Grossman'), + ('Michael Cunningham'), + ('Diane Ackerman'), + ('Susan Isaacs'), + ('Douglas Preston'), + ('Lincoln Child'), + ('Kim Stanley Robinson'), + ('William Safire'), + ('Vincent Torre'), + ('Leslie Glass'), + ('Cathy Cash Spellman'), + ('Grace Slick'), + ('Andrea Cagan'), + ('Jerry Bledsoe'), + ('Jane Sigaloff'), + ('Marian Keyes'), + ('Melissa Rossi'), + ('Jackie Collins'), + ('Drew Barrymore'), + ('Carrie Alexander'), + ('Lori Handeland'), + ('Debra Salonen'), + ('Deborah Laake'), + ('Margaret Way'), + ('Marisa Carroll'), + ('Eduardo Duran'), + ('Bonnie Duran'), + ('Dave Eggers'), + ('Hernando De Soto'), + ('Julie Miller'), + ('Jasper Fforde'), + ('Wendy Holden'), + ('Sebastian Faulks'), + ('Sue Margolis'), + ('Dora Levy Mossanen'), + ('Sheri Holman'), + ('Jacqueline Susann'), + ('Stephanie Laurens'), + ('Jane Mendelsohn'), + ('Madge Swindells'), + ('Richard Adams'), + ('John Colapinto'), + ('Ildikó Von Kürthy'), + ('John McPhee'), + ('Kurt Vonnegut'), + ('Veronique Vienne'), + ('Erica Lennard'), + ('Sándor Márai'), + ('Heiner Friedlich'), + ('Mark A. S. McMenamin'), + ('Nancy K Robinson'), + ('Jillian Lund'), + ('Ann Rinaldi'), + ('Scott O''Dell'), + ('Thomas Rockwell'), + ('Louise Plummer'), + ('David J. Duncan'), + ('Richard Awlinson'), + ('Jeff Easley'), + ('John Sandford'), + ('Patricia Kennealy-Morrison'), + ('Julie E. Czerneda'), + ('Eva Heller'), + ('Jan McDaniel'), + ('Genell Dellin'), + ('Betty Neels'), + ('Carole Mortimer'), + ('Barbara Dolan'), + ('Viveca Carlysle'), + ('Judy Jackson'), + ('Lewis Orde'), + ('Anonymous Teenager'), + ('Beatrice Sparks'), + ('Peter Mayle'), + ('Philip K. Dick'), + ('Roger Zelazny'), + ('Douglas Kennedy'), + ('Robert Louit'), + ('Bruno Martin'), + ('Aldous Huxley'), + ('Edgar Allen Poe'), + ('Mark Z. Danielewski'), + ('Claro'), + ('Makyo'), + ('Vicomte'), + ('Adams Douglas'), + ('Jean Bonnefoy'), + ('Albert Camus'), + ('Stan Berenstain'), + ('Jan Berenstain'), + ('A.J. Wood'), + ('Sunny Griffin'), + ('Richard Kolding'), + ('Disney Staff; Pixar Animation Studios Staff'), + ('Disney'), + ('Maida Silverman'), + ('Jean Giraudoux'), + ('Antony Mason'), + ('Andrew S. Hughes'), + ('Jen Green'), + ('Lynne Reid Banks'), + ('Brock Cole'), + ('John Calvin Batchelor'), + ('Carolyn Wheat'), + ('Dan Simmons'), + ('Ros Stanley'), + ('R. L. Stine'), + ('Steve Skidmore'), + ('Steve Barlow'), + ('Matt Christopher'), + ('Janet Evanovich'), + ('Lorelei King'), + ('Marilyn Penovich Friend'), + ('William D. Bursuck'), + ('Brian Herbert'), + ('Kevin J Anderson'), + ('C. A. Stephens'), + ('Stephens'), + ('Larry Glatz'), + ('Kevin J. Anderson'), + ('Stephen Youll'), + ('Mary Evans O''Keefe Gravalos'), + ('Carol Pulin'), + ('Randall Rothenberg'), + ('Enos A. Mills'), + ('John D. Fitzgerald'), + ('Sebastiano Vassalli'), + ('Emma Rose'), + ('Patrick McGrath'), + ('William Kotzwinkle'), + ('Vincent Bugliosi'), + ('Bruce B. Henderson'), + ('Mark Richard'), + ('Ben Elton'), + ('Ltd Publication International'), + ('Mary Doria Russell'), + ('MacDonald Harris'), + ('Lawrence Goldstone'), + ('Nancy Goldstone'), + ('Leslie Land'), + ('Roger Phillips'), + ('Rikki Ducornet'), + ('Victor Hugo'), + ('Charles E. Wilbour'), + ('James K. Robinson'), + ('Jennifer Egan'), + ('Dodie Smith'), + ('Doug Lowe'), + ('Arlene Eisenberg'), + ('Heidi Murkoff'), + ('Sandee Hathaway'), + ('Jane Green'), + ('Gary Ezzo'), + ('Robert Bucknam'), + ('Dennis Rainey'), + ('Barbara Rainey'), + ('David Gardner'), + ('Tom Gardner'), + ('Sandee Hathaway B.S'), + ('R. A. Macavoy'), + ('Brooke Stevens'), + ('Ann B. Ross'), + ('Adriana Trigiani'), + ('Bebe Moore Campbell'), + ('Barbara Corcoran'), + ('Bruce Littlefield'), + ('Amy Hassinger'), + ('Mia Barron'), + ('Erica Jong'), + ('Diana Palmer'), + ('Rebecca Godfrey'), + ('Lois Battle'), + ('Allen Ginsberg'), + ('Johanna M. Smith'), + ('Ann Major'), + ('Dallas Schulze'), + ('Andrew M. Greeley'), + ('Rick Davis'), + ('Catholic Church'), + ('Alfred McBride'), + ('O. Praem'), + ('Albert J. McBride'), + ('Russell L. Ford'), + ('Robertson Davies'), + ('Judith Skelton Grant'), + ('Bill Watterson'), + ('Jacqueline Kasun'), + ('Leslie Meier'), + ('Corinne T. Netzer'), + ('Alice Adams'), + ('Buechner'), + ('Max Frisch'), + ('Thomas Pynchon'), + ('Veronika Martenova Charles'), + ('Veronika Martenova Char'), + ('Doris Pilkington'), + ('Stephen Gallagher'), + ('Robert Louis Stevenson'), + ('Emma Letley'), + ('Edwina Currie'), + ('Donald A. Mackenzie'), + ('Jules Verne'), + ('Laurie Lee'), + ('John Ward'), + ('Sam Siciliano'), + ('Joe Haldeman'), + ('Leon Uris'), + ('Anatoli Boukreev'), + ('G. Weston DeWalt'), + ('Steve J. Lewis'), + ('Len Deighton'), + ('Dale L. Anderson'), + ('Arden Moore'), + ('E. L. Epstein'), + ('William J. Mann'), + ('Laurell K. Hamilton'), + ('James Reese'), + ('J. R. R. Tolkien'), + ('Judge Judy Sheindlin'), + ('Bob Tore'), + ('Manil Suri'), + ('Victoria Sullivan'), + ('James Hatch'), + ('Kingsley Amis'), + ('Mark Frost'), + ('Scott Walker'), + ('Catherine Clement'), + ('Tobias Scheffel'), + ('Uli Aumüller'), + ('Colm Toibin'), + ('Joe Weber'), + ('Caleb Carr'), + ('Stephen Baxter'), + ('Augusten Burroughs'), + ('Mark Dunn'), + ('William Carpenter'), + ('John Case'), + ('Donna Woolfolk Cross'), + ('Jon Krakauer'), + ('Michael Ryan'), + ('Robert K. Tanenbaum'), + ('Judi Lawson Wallace'), + ('Ken'), + (' Jr. Putnam'), + ('Drew McCarthy'), + ('H. J. C. Grierson'), + ('Peter J. D''Adamo'), + ('Catherine Whitney'), + ('Helene Wiggin'), + ('Ira Levin'), + ('Norman Lindsay'), + ('Christina Lamb'), + ('Nancy Creagh Phelan'), + ('Chris Bohjalian'), + ('M. Scott Peck'), + ('M. M. Kaye'), + ('Sharon Creech'), + ('Christian Jacq'), + ('Dean Devlin'), + ('Roland Emmerich'), + ('Steve Molstad'), + ('Dean Marney'), + ('Michael Rosen'), + ('Justine Ettler'), + ('Margaret Wise Brown'), + ('Cyndy Szekeres'), + ('Sheldon Arensen'), + ('Amanda McKay'), + ('Carl Djerassi'), + ('Nuala O''Faolain'), + ('Lee Strobel'), + ('Sally And Rob Rains'), + ('Alice Gray'), + ('Osuntoki'), + ('G. Weston Dewalt'), + ('Anonymous'), + ('Burton Raffel'), + ('Neil D. Isaacs'), + ('Terry McMillan'), + ('Don Lasseter'), + ('Jimmy Stewart'), + ('Cheryl Gross'), + ('Ken Wilber'), + ('Bill Cosby'), + ('Ruth Gordon'), + ('Flannery O''Connor'), + ('Sally Fitzgerald'), + ('Adrian Mitchell'), + ('Donald A. Davis'), + ('Leslie Marmon Silko'), + ('Robert S. Root-Bernstein'), + ('Michele M. Root-Bernstein'), + ('Joe Marcus'), + ('Dorothea Benton Frank'), + ('Anita Brookner'), + ('Beverly Jenkins'), + ('Geri Guillaume'), + ('Francis Ray'), + ('Monica'), + ('Daniel Hecht'), + ('Anita Daher'), + ('Steve Lawhead'), + ('Robin White'), + ('Stephen White'), + ('Jeffrey Archer'), + ('Guy De Maupassant'), + ('Jonathan Kellerman'), + ('Robert Charles Wilson'), + ('Gilles Deleuze'), + ('Felix Guattari'), + ('Brian Massumi'), + ('Peter Weber'), + ('Thomas Gifford'), + ('Oscar Hijuelos'), + ('Taiping Shangdi'), + ('Harald Schmidt'), + ('Arman Dansh'), + ('Emma Callery'), + ('Donald Beman'), + ('Managing Editor Nic Kynaston'), + ('Adam Brate'), + ('Bob Levis'), + ('Laurence Marks'), + ('Maurice Gran'), + ('Jeff Smith'), + ('J Smith'), + ('Cherie Carter-Scott'), + ('Raymond Aaron'), + ('Kimberly Kirberge'), + ('Lennart Nilsson'), + ('Courtland L. Bovee'), + ('John V. Thill'), + ('David Freemantle'), + ('Sandra Waddock'), + ('V.K. Narayanan'), + ('Michael A. Mische'), + ('Ann Douglas'), + ('John R. Sussman'), + ('Fergus Kelly'), + ('Pat Fairon'), + ('Mary Dowling Daley'), + ('Norman Mailer'), + ('Geoff Ryman'), + ('Graham Greene'), + ('Gaston Leroux'), + ('Max Byrd'), + ('Karlfried G. Durckheim'), + ('Stephanie Coontz'), + ('Laure Redmond'), + ('Lynda Barry'), + ('Jr. H. Jackson Brown'), + ('Laurent Jouvet'), + ('Francesca Lia Block'), + ('Andrew Pyper'), + ('Dr. Robert C. Atkins M.D.'), + ('Wendy Orr'), + ('Amy Ephron'), + ('Susan Vreeland'), + ('Alan Cumming'), + ('Christopher Russo'), + ('Allen St. John'), + ('Andrea Di Robilant'), + ('Alan Epstein'), + ('Federico Andahazi'), + ('Salley Vickers'), + ('Russell Martin'), + ('Roger D. Masters'), + ('Andy Meisler'), + ('Ross King'), + ('Marc Brown'), + ('Writers Digest'), + ('Elaine Weinmann'), + ('Peter Lourekas'), + ('Charles Sheffield'), + ('Lois McMaster Bujold'), + ('Iain Pears'), + ('John Barnes'), + ('Jean M. Auel'), + ('Joan Cleveland'), + ('Simmons Wilson'), + ('Sherwood Kiraly'), + ('Frank DeCaro'), + ('Robert Ludlum'), + ('Oliver W. Sacks'), + ('Virginia Woolf'), + ('Akihito Toda'), + ('Kagemaru Himeno'), + ('Diane Wolkstein'), + ('Samuel Noah Kramer'), + ('Alice Garrard'), + ('Dan Levine'), + ('Herbert Bailey Livesey'), + ('Ni'), + ('Janet Fitch'), + ('Pat Rodegast'), + ('Judith Stanton'), + ('Richard Dalby'), + ('William Hoffman'), + ('David Foster Wallace'), + ('Dav Pilkey'), + ('Clive James'), + ('Chuck Logan'), + ('Patrick Süskind'), + ('James Rollins'), + ('Minette Walters'), + ('William Faulkner'), + ('Paul Joseph Lederer'), + ('Joan Wolf'), + ('Dana Stabenow'), + ('R. D. Lawrence'), + ('John Updike'), + ('Christie'), + ('Tiffanie DeBartolo'), + ('Ryszard Kapuscinski'), + ('Martin Pollack'), + ('Kent Anderson'), + ('T. Lobsang Rampa'), + ('William Bernhardt'), + ('Ben Bova'), + ('Naomi Shihab Nye'), + ('Daniel Quinn'), + ('David Tacey'), + ('William Weaver'), + ('Todd James Pierce'), + ('Kathleen Ann Goonan'), + ('Jeanette Winterson'), + ('Valerie Tripp'), + ('Nick Backes'), + ('Christoph Lees'), + ('Grainne McCartan'), + ('Karina Reynolds'), + ('Val McDermid'), + ('Julie Garwood'), + ('Madeleine L''Engle'), + ('Jody A. Lee'), + ('Ann Packer'), + ('Gregory Frost'), + ('Larry Millett'), + ('Vilhelm Moberg'), + ('Gail Diven'), + ('Cindy Kitchel'), + ('Maureen Howard'), + ('Stephen Alter'), + ('Michael Moorcock'), + ('Vikram Chandra'), + ('Chitra Banerjee Divakaruni'), + ('Anna Sewell'), + ('Bill Slavicsek'), + ('Richard L. Anderson'), + ('Jean-Paul Sartre'), + ('Sara Pritchard'), + ('Ursula K. Le Guin'), + ('Margaret Chodos-Irvine'), + ('Basil Creighton'), + ('Neal Stephenson'), + ('Martin Green'), + ('Joseph Mileck'), + ('Amit Chaudhuri'), + ('Rosalind Miles'), + ('Stanley Gordon West'), + ('Sarah Caudwell'), + ('Irvine Welsh'), + ('Nelson DeMille'), + ('Phyllis Gotlieb'), + ('Diana L. Paxson'), + ('Gail Godwin'), + ('Wynema McGowan'), + ('Richard Wagamese'), + ('Robert Haas'), + ('Wilma Yeo'), + ('Cherie Carter-Smith'), + ('Jayne Castle'), + ('Deric Longden'), + ('Susan Krinard'), + ('Maggie'), + ('Katy Munger'), + ('Alex Dingwall-Main'), + ('Tony Buzan'), + ('Barry Buzan'), + ('Octavia E. Butler'), + ('Erich Fromm'), + ('Gloria Naylor'), + ('Mary Pipher'), + ('John O''Donohue'), + ('Jonathan D. Spence'), + ('Janet Kessel Fletcher'), + ('Chuck Williams'), + ('Richard Eskit'), + ('Joseph O''Connor'), + ('Rita Golden Gelman'), + ('Elroy Freem'), + ('Taoist Master Alfred Huang'), + ('Holly Black'), + ('Christopher Golden'), + ('Nancy Holder'), + ('Charles Dickenson'), + ('Fay Robinson'), + ('Roberts'), + ('Lee Magner'), + ('Marie Ferrarella'), + ('Pamela Bauer'), + ('Kim Mckade'), + ('J.K. Rowling'), + ('Mary GrandPré'), + ('Katherine Garbera'), + ('Donna Kauffman'), + ('Judith Bowen'), + ('Heather Graham Pozzessere'), + ('Ron Burke'), + ('Susan Burke'), + ('Amanda Stevens'), + ('Rebecca York'), + ('Nancy Warren'), + ('Rebecca Flanders'), + ('Jamie Denton'), + ('Curtiss Ann Matlock'), + ('Suzanne Simmons'), + ('Diane Farr'), + ('Robyn Carr'), + ('Margot Dalton'), + ('Janis Flores'), + ('Kate Welsh'), + ('Robin A. White'), + ('Richard Parry'), + ('P. Richard Henrick'), + ('H. Jay Riker'), + ('Jean Heller'), + ('George C. Wilson'), + ('L. HEATH'), + ('Craig Thomas'), + ('Harry Homewood'), + ('Jean Craighead George'), + ('June Stepansky'), + ('Charles Mignon'), + ('Kari A. Ronning'), + ('Laura Lippman'), + ('Philip Roth'), + ('William Styron'), + ('Malcolm Hillier'), + ('Judith Clancy'), + ('Pierre Sansot'), + ('Otto H. Frank'), + ('Philippe Noble'), + ('Isabelle R'), + ('Cristina Garcia'), + ('Naomi Ragen'), + ('Janet Wallach'), + ('David Birney'), + ('Scott Brick'), + ('Carolyn Hart'), + ('Michael Collier'), + ('Barbara Pronin'), + ('Heather Arnel Paulsen'), + ('Stephen R. Covey'), + ('Elizabeth George'), + ('Anne Burton'), + ('Frances Fyfield'), + ('Dorothy Simpson'), + ('Connie May Fowler'), + ('Tunku Halim'), + ('Charles Schwab'), + ('Barbara Parker'), + ('Jerome Preisler'), + ('Martin Greenburg'), + ('Arto Paasilinna'), + ('Alessandro Baricco'), + ('Françoise Brun'), + ('Richard Dawkins'), + ('Kevin Anderson'), + ('Frank Herbert'), + ('Peter Maas'), + ('American Psychiatric Association'), + ('Michael Shaara'), + ('Donna-Marie Pye'), + ('James W. Loewen'), + ('Ernest H. Shepard'), + ('Robert Jordan'), + ('Sigmund Freud'), + ('James Strachey'), + ('Eugen Herrigel'), + ('St. Augustine'), + ('John K. Ryan'), + ('Stanley Milgram'), + ('John Sabini'), + ('Maury Silver'), + ('Sun Tzu'), + ('Miyamoto Musashi'), + ('Ray Axford'), + ('Kenneth Kushner'), + ('Jackson Morisawa'), + ('Daisetz T. Suzuki'), + ('Elliott Hester'), + ('Libby Hathorn'), + ('Paul Temple'), + ('Ralph Levinson'), + ('David Mostyn'), + ('James Moloney'), + ('Dan Parkinson'), + ('Sophie Schallingher'), + ('Mechtild Sandberg-Ciletti'), + ('Josephine Fairley'), + ('Sarah Stacey'), + ('R. T. Burns'), + ('Charles & Martin H. Greenberg (eds.); Poul And'), + ('Buzz Aldrin'), + ('Gene Light'), + ('Beth Saulnier'), + ('Ted Conover'), + ('Mary Tatem'), + ('Tom Connor'), + ('George Carlin'), + ('Sarah Delany'), + ('Annie Elizabeth Delany'), + ('Amy Hill Heart'), + ('Melody Beattie'), + ('Harlan Coben'), + ('Richard Marcinko'), + ('Andrew Klavan'), + ('Brooke Siler'), + ('Patrick Fanning'), + ('Carole Honeychurch'), + ('Catharine Sutke'), + ('Laurence Roy Stains'), + ('Stefan Bechtel'), + ('David Hopkins'), + ('Mihaly Csikszentmihalyi'), + ('Lynne Truss'), + ('Paul Wilson'), + ('Joachim Appel'), + ('Aurthur Van Essen'), + ('Whoopi Goldberg'), + ('Drew Carey'), + ('Jon Winokur'), + ('Warren Buckland'), + ('Sherry Diestler'), + ('Paul Sloane'), + ('Des MacHale'), + ('William Strunk Jr.'), + ('Roger Angell'), + ('Rosalie Maggio'), + ('M. Neil Browne'), + ('Stuart M. Keeley'), + ('David M. Buss'), + ('Various'), + ('David D. Burns'), + ('Leil Lowndes'), + ('Roberta Allen'), + ('Esme Raji Codell'), + ('Jim Trelease'), + ('Harold R. McAlindon'), + ('Michael Michalko'), + ('Richard O''Connor'), + ('Melissa L. Rossi'), + ('John T. Walbaum'), + ('Nina Wise'), + ('Hans Christian Andersen'), + ('Claire Maria Ford'), + ('Claire Ford'), + ('Warren Farrell Ph.D.'), + ('Daniel Keyes'), + ('Tom Holt'), + ('Barbara W. Tuchman'), + ('Frank Moorhouse'), + ('Robert Hughes'), + ('Daniel Yergin'), + ('Walter Mosley'), + ('Pamela Ribon'), + ('Rodman Philbrick'), + ('GLOBE'), + ('Jeannette Batz'), + ('Linda Goodnight'), + ('Madelyn K. Anderson'), + ('Gary Devon'), + ('John Beasant'), + ('Frank E. Peretti'), + ('Brad Meltzer'), + ('John Le Carre'), + ('Christopher Isherwood'), + ('Viktor E. Frankl'), + ('Cheryl Gochnauer'), + ('Dennis Lehane'), + ('Z. Barnes'), + ('Robert H. Boyer'), + ('Kenneth J. Zahorski'), + ('Johanna Lindsey'), + ('James Redfield'), + ('Carol Adrienne'), + ('Colette Whitaker'), + ('Vincent Lardo'), + ('Lawrence Sanders'), + ('Karl Edward Wagner'), + ('Catherine Hyde'), + ('Lady Gregory'), + ('William Butler Yeats'), + ('Proinsias Mac Cana'), + ('P W Joyce'), + ('Caitlin Matthews'), + ('John Matthews'), + ('Michael J. Caduto'), + ('Joseph Bruchac'), + ('Mike Corbishley'), + ('Courtney Davis'), + ('Sir George Trevelyan'), + ('Blanche Cirker'), + ('James Finn Garner'), + ('Mark Baker'), + ('Greg Iles'), + ('Scott Adams'), + ('Jon Franklin'), + ('Alan Doelp'), + ('Roxana Ferllini'), + ('Cyril Wecht'), + ('Dr. Cyril Wecht'), + ('Ridley Pearson'), + ('Thomas William Simpson'), + ('Michael Baden'), + ('Marion Roach'), + ('Douglas J. Preston'), + ('MIKE GAYLE'), + ('Lee Child'), + ('W. R. Mitchell'), + ('Dale Brown'), + ('Jim Defelice'), + ('Carol O''Connell'), + ('Richard Flanagan'), + ('Bradley Smith'), + ('Wallace Hamilton'), + ('Larry Wolff'), + ('Richard D. Mohr'), + ('Len Richmond'), + ('Michael Bronski'), + ('John Boswell'), + ('Herbert Hendin'), + ('Eric Marcus'), + ('Martha Gever'), + ('Pratibha Parmar'), + ('John Greyson'), + ('Laurence Goldstein'), + ('Patrick Higgins'), + ('Marshall Kirk'), + ('Hunter Madsen'), + ('Gary Schmidgall'), + ('Robert Chesley'), + ('Harvey Fierstein'), + ('William M. Hoffman'), + ('Robert H. Hopcke'), + ('Colin Spencer'), + ('Trevor Jacques'), + ('Michael Hamilton'), + ('Dr. Dale'), + ('Lucy R. Lippard'), + ('David Gottlieb'), + ('Mike Hippler'), + ('Randy Shilts'), + ('Eric E. Rofes'), + ('Jamie Sams'), + ('John McCollister'), + ('Sylvia Browne'), + ('Antoinette May'), + ('Lindsay Harrison'), + ('Shirley MacLaine'), + ('Shirley Maclaine'), + ('Shakti Gawain'), + ('Gabrielle Roth'), + ('John Loudon'), + ('Angeles Arrien'), + ('Oriah Mountain Dreamer'), + ('David Buerge'), + ('Hal Zina Bennett'), + ('Geoffrey Cornelius'), + ('Louis Chunovic'), + ('Ellis Weiner'), + ('Rob Morrow'), + ('Jon Scieszka'), + ('Ansel Adams'), + ('Mel Curtis'), + ('Jana Stone'), + ('Bonnie Sharpe'), + ('A. C. Bhaktivedanta Swami Prabhupada'), + ('A. C. Bhaktivedanta Swami Prabhupâda'), + ('Joyce Wilson'), + ('Walt Whitman'), + ('Francis Murphen'), + ('Jalal Al-Din Rumi'), + ('Coleman Barks'), + ('John Moyne'), + ('James Hillman'), + ('Lynn V. Andrews'), + ('Douglas A. Skoog'), + ('F. James Holler'), + ('Timothy A. Nieman'), + ('John McMurry'), + ('Robert C. Fay'), + ('P. W. Atkins'), + ('Susannah Leigh'), + ('S. Leigh'), + ('Tim Allen'), + ('Staff Of The Wall St Journal'), + ('Bruce Lansky'), + ('Patricia Curtis'), + ('Carol Himsel Daly'), + ('Cynthia L. Copeland'), + ('Cyndy Salzmann'), + ('Ellen Raskin'), + ('James Herriot'), + ('Marye Anne Fox'), + ('James K. Whitesell'), + ('D.F. Shriver'), + ('P.W. Atkins'), + ('Cooper Haroldold Langford'), + ('Jacqueline Carey'), + ('Debra K. Shatoff'), + ('Christopher J. Cramer'), + ('Quentin Bell'), + ('Raymond D Keene'), + ('Kon Grivainis'), + ('John Elburg'), + ('R. N. Coles'), + ('Raymond Keene'), + ('Bernard Levin'), + ('Nancy Farmer'), + ('Susanna Moore'), + ('Stephen J. Dubner'), + ('Sark'), + ('Marianne Williamson'), + ('Katie Roiphe'), + ('Nikos Kazantzakis'), + ('P. A. Bien'), + ('Bret Easton Ellis'), + ('Patricia Smith'), + ('Charles Johnson'), + ('WGBH Series Researc'), + ('Mark Mathabane'), + ('Gail Mathabane'), + ('Mark'), + ('Jay McInerney'), + ('James L. Halperin'), + ('Greg Egan'), + ('George Ancona'), + ('Susan Meier'), + ('Anna Clarke'), + ('Diana Hamilton'), + ('Lucy Monroe'), + ('Lindsay Armstrong'), + ('Emma Darcy'), + ('John Seelye'), + ('Mary Jo Putney'), + ('Jo Beverley'), + ('Barbara Samuel'), + ('Karen Ha'), + ('Chris Sorensen'), + ('Erika Pluhar'), + ('Ursule Molinaro'), + ('Colin Stinton (Narrator)'), + ('Burkhart Kroeber'), + ('Eugene Savaiano'), + ('Lynn W. Winget'), + ('Peter Lerangis'), + ('Isabel Miller'), + ('LaVyrle Spencer'), + ('Brian Jacques'), + ('Susan Seddon Boulet'), + ('Alice Leccese Powers'), + ('Arthur Hailey'), + ('Jack Mcdevitt'), + ('Terry C. Johnston'), + ('Frederick Forsyth'), + ('PIERS ANTHONY'), + ('Ruth Prawer Jhabvala'), + ('Chris Maynard'), + ('Bill Scheller'), + ('Ted Anton'), + ('Peter Nelson'), + ('David Larkin'), + ('Peter N. Nelson'), + ('Gerry Hadden'), + ('Per Olov Enquist'), + ('Tiina Nunnally'), + ('Emma Bull'), + ('David Weber'), + ('Maj Sjowall'), + ('Per Wahloo'), + ('Weber'), + ('Leo Marks'), + ('Kenneth M. Pollack'), + ('Azar Nafisi'), + ('Tony Horwitz'), + ('Leif Enger'), + ('Betty J. Eadie'), + ('Curtis Taylor'), + ('Randi Reisfeld'), + ('H. B. Gilmour'), + ('Robert Baldick'), + ('Elizabeth Moran'), + ('Katherine A Applegate'), + ('Lynn Beach'), + ('Adele Faber'), + ('Elaine Mazlish'), + ('Kimberly Ann Coe'), + ('Burstein'), + ('David Stick'), + ('Brian Daley'), + ('Alan Dean Foster'), + ('Donald F. Glut'), + ('Peter Jenkins'), + ('Earthworks Group'), + ('Cindy Ross'), + ('Todd Gladfelter'), + ('Gretchen McHugh'), + ('Sharon A. Feaster'), + ('Nina Kiriki Hoffman'), + ('R.L. Stine'), + ('Anne Edwards'), + ('Leonard Nimoy'), + ('Marilyn Kaye'), + ('Katherine A. Applegate'), + ('Gordon Korman'), + ('Ann M. Martin'), + ('Susan Tang'), + ('Ann Matthews Martin'), + ('Carolyn G. Hart'), + ('Khristine Page'), + ('Elaine Coffman'), + ('Gaelen Foley'), + ('Claire Delacroix'), + ('Rachel Gibson'), + ('Elizabeth Bevarly'), + ('Rosemary Rogers'), + ('Maureen Child'), + ('Cassie Edwards'), + ('Leigh Greenwood'), + ('Marsha Canham'), + ('Victoria Alexander'), + ('Connie Mason'), + ('Nan Ryan'), + ('Rebecca Brandewyne'), + ('Susan Elizabeth Phillips'), + ('Brenda Joyce'), + ('Pamela Britton'), + ('Sandra Hill'), + ('Judith Ivory'), + ('Candice Proctor'), + ('Madeline Hunter'), + ('Linda Francis Lee'), + ('Madeline Baker'), + ('Josie Litton'), + ('Judith Stacy'), + ('Sue Civil-brown'), + ('JoAnn Ross'), + ('Heather Graham'), + ('Patricia Rice'), + ('Melanie George'), + ('Olivia Drake'), + ('Connie Lane'), + ('Lisa Kleypas'), + ('Karen Rauch Carter'), + ('Emeril Lagasse'), + ('Chin-Ning Chu'), + ('W. Stone'), + ('Thomas A. Stewart'), + ('Pablo Neruda'), + ('Marie Simmons'), + ('BettyClare Moffatt'), + ('Bob Frissell'), + ('Julie Smith'), + ('Ellis Peters'), + ('John Bayley'), + ('Stephen J. Small'), + ('Marco Palmieri'), + ('Wladyslaw Szpilman'), + ('Carmen Carter'), + ('Alan Paton'), + ('Anthony Walker'), + ('John G. Gunderson'), + ('Tony DiTerlizzi'), + ('Fred Willard'), + ('Moliere'), + ('Richard Wilbur'), + ('Martin Suter'), + ('Catherine Ryan Hyde'), + ('Rainer Schmidt'), + ('Chris Carter'), + ('Wen Spencer'), + ('John S. Schuchman'), + ('Morgan Llywelyn'), + ('Elizabeth Moon'), + ('Roy K. Holcomb'), + ('Samuel K. Holcomb'), + ('Thomas K. Holcomb'), + ('Lou Ann Walker'), + ('C.S. Friedman'), + ('Starhawk'), + ('Matthew S. Moore'), + ('Robert F. Panara'), + ('Bonnie Tucker'), + ('Lillian M. Hines'), + ('Robert E. Weinberg'), + ('Llywelyn & Scott'), + ('Ernst Friedrich'), + ('Bruce K. Grant'), + ('Sherman Wilcox'), + ('Walter Evans-Wentz'), + ('Fiona Horne'), + ('Michael Scott'), + ('Tanya Huff'), + ('Douglas Monroe'), + ('Mary Coddington'), + ('Draja Mickaharic'), + ('Teresa Edgerton'), + ('Gustave Flaubert'), + ('Philip Gourevitch'), + ('Nancy Huston'), + ('P.D. (Phyllis Dorothy) James'), + ('Myla Goldberg'), + ('Mary Karr'), + ('Steve Alten'), + ('Smithmark Publishing'), + ('Nalo Hopkinson'), + ('Cynthia Voigt'), + ('Barbara Gowdy'), + ('Alice Munro'), + ('Catherine Gildiner'), + ('Peter Ackroyd'), + ('W. Wilkie Collins'), + ('Virginia Blain'), + ('Sharlee Dieguez'), + ('Stella Gibbons'), + ('Maurice A. Williams'), + ('Fred Uhlman'), + ('Arthur Koestler'), + ('Léo Lack'), + ('Matthew Pearl'), + ('Arno Gruen'), + ('Noah BenShea'), + ('Elliot Snow'), + ('Judith Michael'), + ('Patricia Sprinkle'), + ('Carolyn Parkhurst'), + ('Anthony Bourdain'), + ('Lyn Hamilton'), + ('David Chase'), + ('Frederick Perls'), + ('Elula Perrin'), + ('R. A. Salvatore'), + ('Jessica Salmonson'), + ('Jessica Amanda Salmonson'), + ('Diane Carey'), + ('Geraldine Thorsten'), + ('Jurt W. Donsbach'), + ('Kristine Kathryn Rusch'), + ('Dean Wesley Smith'), + ('L. A. Graf'), + ('Martina Navratilova'), + ('Peter Lear'), + ('Marta Randall'), + ('Michael Reaves'), + ('Jo Clayton'), + ('Ken W. Kelly'), + ('H. Beam Piper'), + ('Michael Kurland'), + ('Jack Williamson'), + ('Nick Pollotta'), + ('Phil Foglio'), + ('Michael Peak'), + ('James Tiptree Jr.'), + ('Michael Herring'), + ('Robert Silverber'), + ('Melita Denning'), + ('Osborne Phillips'), + ('Craig Junjulas'), + ('Jan Woudhuysen'), + ('Tad Williams'), + ('Stephen Smoke'), + ('Dale Banks'), + ('Raymond Feist'), + ('Ron Hansen'), + ('Stephen R. Lawhead'), + ('Phil Rickman'), + ('Jill Stengl'), + ('Tracey V. Bateman'), + ('Pamela Griffin'), + ('Tamel'), + ('Gilbert Morris'), + ('Leisha Kelly'), + ('Denise Hunter'), + ('Jennifer Donnelly'), + ('Susan Kearney'), + ('B. J. Daniels'), + ('Virginia Kelly'), + ('Karen Whiddon'), + ('Alice Gaines'), + ('Bonnie Hamre'), + ('Ivy Landon'), + ('Jeanie Legend'), + ('Jenna Mills'), + ('Maggie Shayne'), + ('Pearl S. Buck'), + ('Kevin Ryan'), + ('Elizabeth Doyle'), + ('Linda Herring'), + ('Theresa Michaels'), + ('Simon Winchester'), + ('Brad Thor'), + ('Jamil I. Toubbeh'), + ('M.J. Rose'), + ('Douglas Hofstadter'), + ('Cosima Wagner'), + ('Geoffrey Skelton'), + ('Mark Merlis'), + ('Camara Laye'), + ('James Kirkup'), + ('Ernest Jones'), + ('Philippe Tho'), + ('William K. Powers'), + ('Mary Baker Eddy'), + ('Karen McCarthy Brown'), + ('John Okada'), + ('Milton Murayama'), + ('Andrew Sean Greer'), + ('Robert T. Trotter II'), + ('Juan Antonio Chavira'), + ('Luis D.'), + ('Ron Suskind'), + ('Anna Deavere Smith'), + ('Genny Lim'), + ('Wakako Yamauchi'), + ('Momoko Iko'), + ('Velina Hasu H'), + ('Luis Valdez'), + ('Laurel Thatcher Ulrich'), + ('K. Ryan'), + ('Miguel De Cervantes Saavedra'), + ('Raymond Carver'), + ('Edmond Rostand'), + ('Brian Hooker'), + ('Naomi Epel'), + ('Fyodor Dostoyevsky'), + ('Richard Pevear'), + ('Larissa Volokhon'), + ('ORSON SCOTT CARD'), + ('George Galdorisi Captain'), + ('George Galdorisi'), + ('David McCallum'), + ('Patrick A. Davis'), + ('Eca De Queiros'), + ('Charles Kuralt'), + ('Cleveland Amory'), + ('Lisa Adams'), + ('Susan Fox Rogers'), + ('Lawrence Durrell'), + ('Vicki Hearne'), + ('Andrea Mohin'), + ('Anthony M. Fauglid'), + ('Victoria Christopher Murray'), + ('Jonathan Linton'), + ('Aiden W. Tozer'), + ('Peter Conn'), + ('Hannah Hurnard'), + ('TD Jakes'), + ('Howard Kaminsky'), + ('Caren Lissner'), + ('Paul Vincent'), + ('Tanja Kinkel'), + ('Helga Hegewisch'), + ('Klaus Reichert'), + ('Donna Leon'), + ('Ariane Böckler'), + ('Kjell Johansson'), + ('Susanne Dahmann'), + ('Ahne'), + ('Henning Mankell'), + ('Wolfgang Butt'), + ('Judy Mercer'), + ('Richard Carlson'), + ('Patrick Morley'), + ('Lael Littke'), + ('Michael Kupperman'), + ('Arthur Byron Cover'), + ('Richard Brightfield'), + ('Edward Packard'), + ('David Perry'), + ('Jody Lynn Nye'), + ('Larry Niven'), + ('Donato Giancola'), + ('John Dechancie'), + ('Don H. Debrandt'), + ('Norma Kassirer'), + ('Greenwald'), + ('Norma Tadlock Johnson'), + ('M. L. Kenyon'), + ('Susan Shwartz'), + ('Martin H. Greenberg'), + ('Laurel Trivelpiece'), + ('Vonda N. McIntyre'), + ('David Bischoff'), + ('Steve Perry'), + ('Robert N. Charrette'), + ('Nyx Smith'), + ('Carl Sargent'), + ('Nigel D. Findley'), + ('Stephen Kenson'), + ('Lisa Smedman'), + ('Tom Dowd'), + ('Mel Odom'), + ('Jordan K. Weisman'), + ('Caroline Spector'), + ('W.E.B. Griffin'), + ('Gardner Dozois'), + ('Robert Doherty'), + ('Vince Flynn'), + ('Margret Rey'), + ('H. A. Rey'), + ('Alan J. Shalleck'), + ('Susanna Kaysen'), + ('Rebecca Reisert'), + ('Jean Dominiqu Bauby'), + ('David L. Lindsey'), + ('Elke Vom Scheidt'), + ('Binnie Kirshenbaum'), + ('David Anson Russo'), + ('William Shatner'), + ('Earl Emerson'), + ('Mary Brown'), + ('Dickens'), + ('Mary Roberts Rinehart'), + ('Sapphire'), + ('Misty Bernall'), + ('Shannon Holmes'), + ('Franziska Stalmann'), + ('Colin Dexter'), + ('Karin Polz'), + ('Pieke Biermann'), + ('Claudio Paglieri'), + ('Verena Von Koskull'), + ('Susanna Tamaro'), + ('Sigrid Heuck'), + ('Joseph O`Connor'), + ('Ian Rankin'), + ('Ellen Schlootz'), + ('Bruce Alexander'), + ('Dr. Andreas Jäger'), + ('Friedrich Ani'), + ('Birgit Vanderbeke'), + ('Samuel J. Butcher'), + ('H. Williams'), + ('C. B. Andersen'), + ('Megan Stine'), + ('Susan Meyers'), + ('Peter Clover'), + ('Alan Garner'), + ('Arthur Miller'), + ('Volker Schlöndorff'), + ('Florian Hopf'), + ('Simon Brett'), + ('John Katzenbach'), + ('Lynn Kurland'), + ('Chip Kidd'), + ('Philip Gabriel'), + ('Neal Pollack'), + ('Kenzaburo Oe'), + ('John Nathan'), + ('Nicci French'), + ('Walter Moers'), + ('Robert J. Sawyer'), + ('Connie Willis'), + ('William Martin'), + ('Michael Romkey'), + ('Susan R. Sloan'), + ('Evan Hunter'), + ('Lynn Austin'), + ('Dava Sobel'), + ('J.A. Jance'), + ('Aidan Meehan'), + ('Anthony Trollope'), + ('Angela Huth'), + ('Sherrie Weaver'), + ('P.G. Wodehouse'), + ('Stephen Crane'), + ('Alfred Kazin'), + ('Regina Domeraski'), + ('Martin Walser'), + ('Eoin Colfer'), + ('Claudia Feldmann'), + ('Sempé'), + ('Bernard Lortholary'), + ('Eduardo Mendoza'), + ('Robert McLiam Wilson'), + ('Brice Matthieussent'), + ('Roddy Doyle'), + ('Anne Uhde'), + ('Florian Illies'), + ('Michael Schulman'), + ('Sheila Moore'), + ('JAMES ALEXANDER Thom'), + ('Katharine Graham'), + ('Martha Cooley'), + ('Dave Pelzer'), + ('James C. Dobson'), + ('Nown Graham'), + ('Ruth Chew'), + ('Julian Gough'), + ('Laura Rader'), + ('Amanda Cross'), + ('Alan Jacobson'), + ('Gayle Lynds'), + ('Julie Parsons'), + ('Brian Moore'), + ('Jil Karoly'), + ('Maarten''t Hart'), + ('Marianne Holberg'), + ('Timothy Leary'), + ('Ingrid Newkirk'), + ('Deborah Curtis'), + ('Gary S. Kadet'), + ('John G Kemeny'), + ('Hilda Rosner'), + ('John Schoenherr'), + ('Hanif. Kureishi'), + ('Gene Prater'), + ('Andy Rooney'), + ('Toby Young'), + ('Joshua Levine'), + ('Rufina Philby'), + ('Mikhail Lyubimov'), + ('Hayden Peake'), + ('Ellen Pollock'), + ('L. B. Cowman'), + ('Paul Bagdon'), + ('Elmer Kelton'), + ('Jerry B Jenkins Tim Lahaye'), + ('Larry Madaras'), + ('James M. Sorelle'), + ('Victoria Holt'), + ('John Ramsey Miller'), + ('James A. Michener'), + ('Christina Skye'), + ('Stephen E. Ambrose'), + ('James Stevenson'), + ('Roger A. Caras'), + ('Judith Tarr'), + ('George Baxt'), + ('Kathy Hepinstall'), + ('Meredith Webber'), + ('Leonid Gore'), + ('Bill Montalbano'), + ('William J. Coughlin'), + ('Ana Castillo'), + ('George Bernard Shaw'), + ('Ursula Michels-Wenz'), + ('Annemarie'), + ('Hella S. Haasse'), + ('Arnulf Zitelmann'), + ('Doro Göbel'), + ('Karen Cushman'), + ('Peter Robert'), + ('Peter Høeg'), + ('Angelika Gundlach'), + ('Lillian Too'), + ('Charlotte Bronte'), + ('Julian May'), + ('R.A. Macavoy'), + ('Edward Hubler'), + ('R. L. Fisher'), + ('Slavenka Drakulic'), + ('Penelope Fitzgerald'), + ('Thomas M. Disch'), + ('T. S. Eliot'), + ('Sharon Kay Penman'), + ('William S. Burroughs'), + ('T. H. White'), + ('Sylvan Barnet'), + ('Helene Hanff'), + ('Clive Barker'), + ('Lawrence Block'), + ('Ray Brad'), + ('Newman K.'), + ('Barbara L. Heller M.S.W.'), + ('Chad Walsh'), + ('Roland Evans'), + ('Kathleen A. Brehony'), + ('Robert Drewe'), + ('Carlos Fuentes'), + ('Alfred MacAdam'), + ('Peter Kelder'), + ('Dalai Lama'), + ('Howard C. Cutler'), + ('Jürgen Manshardt'), + ('Kathr'), + ('Wladimir Kaminer'), + ('Paul Berf'), + ('Barbara Sirges'), + ('Francine Pascal'), + ('Marie T. Morreale'), + ('Brooks Whitney'), + ('Tracy McGuinness'), + ('Barbara Park'), + ('Denise Brunkus'), + ('Katy Hall'), + ('Lisa Eisenberg'), + ('John Devore'), + ('Roy Doty'), + ('Liz Curtis Higgs'), + ('Astrid Lindgren'), + ('Louis S. Glanzman'), + ('Florence Lamborn'), + ('Diana G. Gallagher'), + ('Cathy West'), + ('Patricia Barnes-Svarney'), + ('Stefanie Scott'), + ('Tamara England'), + ('Walter Rane'), + ('Connie Porter'), + ('Dahl Taylor'), + ('Dan Andreasen'), + ('Peg Ross'), + ('Jean Paul Tibbles'), + ('Patricia MacLachlan'), + ('Daniel Pink'), + ('John R. Erickson'), + ('E. L. Konigsburg'), + ('John Le Carré'), + ('David Hajdu'), + ('Janet Lunn'), + ('N. R. Jackson'), + ('ZZ Packer'), + ('Betina Krahn'), + ('Mario Puzo'), + ('Kinky Friedman'), + ('Jolan Chang'), + ('Dossie Easton'), + ('Catherine A. Liszt'), + ('David Macaulay'), + ('Todd Lammle'), + ('James Chellis'), + ('Don Porter'), + ('Terah Kathryn Collins'), + ('Juan Villoro'), + ('Victoria Thompson'), + ('Joy Williams'), + ('John Train'), + ('Pierre Le-Tan'), + ('Carlos Valles'), + ('J. Patrick'), + (' Ph.D. Gannon'), + ('Philip Goldberg'), + ('Odell Shepard'), + ('Nancy Pickard'), + ('Ethan Black'), + ('J. K. Rowling'), + ('Bailey White'), + ('Mario De Carvalho'), + ('Editors Of Phaidon Press'), + ('John Robbins'), + ('Dean Ornish'), + ('Bonnie Bryant'), + ('Alison Wearing'), + ('James Thurber'), + ('Michael Baigent'), + ('Richard Leigh'), + ('Lewin'), + ('Susan Orlean'), + ('Crabbe Evers'), + ('Nancy Wright'), + ('Lisa Heron'), + ('Brian Heron'), + ('Carlos Ruiz Zafon'), + ('Lucia Graves'), + ('Peter Cashwell'), + ('Carson McCullers'), + ('Bob Woodward'), + ('Gabriel Zaid'), + ('Natasha Wimmer'), + ('Khaled Hosseini'), + ('Frances Tenenbaum'), + ('S. Williams'), + ('Tom Hazuka'), + ('Denise Thomas'), + ('James Thomas'), + ('Nikolai Gogol'), + ('Andrew R. MacAndrew'), + ('Leon Stilman'), + ('Charles Lewis'), + ('Floyd Skloot'), + ('Douglas Coupland'), + ('Tom Stoppard'), + ('Cornel West'), + ('Elie Wiesel'), + ('David McDuff'), + ('Nathan Englander'), + ('Louise Cooper'), + ('Marie'), + ('Hugo Marsan'), + ('Frédéric Beigbeder'), + ('Percy Kemp'), + ('Honoré De Balzac'), + ('Jeannine Guichrdet'), + ('Jorge Amado'), + ('Vincent Ravalec'), + ('Antonio Tabucchi'), + ('Lise Chapuis'), + ('Robert Vavra'), + ('Christina Dodd'), + ('Virginia Henley'), + ('John Dunning'), + ('Gina Berriault'), + ('Antonya Nelson'), + ('Richard Vetere'), + ('Ann Thornhill'), + ('Sarah Wells'), + ('Erik Quisling'), + ('Dianna Booher'), + ('Grant Naylor'), + ('Margaret Eleanor Atwood'), + ('Graham Masterton'), + ('Dai Sijie'), + ('Ina Rilke'), + ('Louise Bagshawe'), + ('Richard Bolles'), + ('Jenny Newman'), + ('Charles W. Sweeney'), + ('James A. Antonucci'), + ('Marion K. An'), + ('Conrad Allen'), + ('Marie Arana'), + ('Arthur V. Sellwood'), + ('A. V. Sellwood'), + ('James Lucas'), + ('William Zimmer'), + ('Roberta Miller'), + ('George Wilson'), + ('Donald R. Burgett'), + ('Bonnie Angelo'), + ('Lawrence Otis Graham'), + ('Raymond Strait'), + ('Hampton Sides'), + ('William W. Putney'), + ('Wolfgang W. E. Samuel'), + ('Ron Naveen'), + ('Sean Flannery'), + ('William Sarabande'), + ('Dorothy Glenn'), + ('Joan Hohl'), + ('Dixie Browning'), + ('Allan W Eckert'), + ('James Kelman'), + ('Kitty Kelley'), + ('Pamela Kaufman'), + ('Michael Levey'), + ('Joanna Richardson'), + ('Miriam Gurko'), + ('Monica Ferris'), + ('Sheila L. Skemp'), + ('Katie Hickman'), + ('Maria Perry'), + ('Brian Dolan'), + ('Bertram Fields'), + ('Frances Hill'), + ('Jane Newdick'), + ('Andrew Morton'), + ('Iyanla Vanzant'), + ('Ellen Michaud'), + ('Russell Wild'), + ('Ekaterina Gordeeva'), + ('E. M. Swift'), + ('The Staff Of Research & Education Association'), + ('Camilla T. Crespi'), + ('Peter McWilliams'), + ('Harold H. Bloomfield'), + ('Melba Colgro'), + ('Michael Broder'), + ('Janet Luhrs'), + ('Barbara De Angelis'), + ('Blu Greenberg'), + ('Mary Ann Mitchell'), + ('Patrick Wood'), + ('Jari Tervo'), + ('Primo Levi'), + ('Stuart Woolf'), + ('Paul Bailey'), + ('Jacques Prévert'), + ('Nick Bantock'), + ('Mary Maruca'), + ('Hanif Kureishi'), + ('Thomas Block'), + ('Nelson Demille'), + ('Suzette Haden Elgin'), + ('M. J. Ryan'), + ('Miguel Ruiz'), + ('Cornwell Patricia'), + ('J. M. Coetzee'), + ('Alex Garland'), + ('Joy Fielding'), + ('Nathaniel Philbrick'), + ('Bernhard Robben'), + ('Jude Watson'), + ('George Weinberg'), + ('Bstan-Dzin-Rgya-Mtsho'), + ('Donald S. Lopez'), + ('E. Donnall Thomas Jr.'), + ('Shena Mackay'), + ('J.M. O''Neill'), + ('Terry Carr'), + ('Penina Keen Spinka'), + ('Mary Renault'), + ('Christian Bobin'), + ('Jean-Dominique Bauby'), + ('Daniel Pennac'), + ('Amin Maalouf'), + ('T. A. Barron'), + ('Isak Dinesen'), + ('Janet Ahlberg'), + ('Allan Ahlberg'), + ('Joseph Finder'), + ('Daniel McNeill'), + ('Master Lam Kam-Chuen'), + ('George Eliot'), + ('Erica Spindler'), + ('Phoebe Gloeckner'), + ('Stephen Dobyns'), + ('Anne Bishop'), + ('Kazuo Ishiguro'), + ('Lalita Tademy'), + ('R. Forster'), + ('Aimee Liu'), + ('Cathy Maxwell'), + ('Harvey Karp'), + ('Barbara Bretton'), + ('Mike Ashley'), + ('Victor Gischler'), + ('Loren Estleman'), + ('Ben Rehder'), + ('Ellen F. Fitzpatrick'), + ('Carl Jensen'), + ('Project Censored'), + ('Tom Tomorrow'), + ('Mitchell Stephens'), + ('Pete Hamill'), + ('Dan Rather'), + ('Matt Drudge'), + ('Crosland Brown'), + ('Phillip M. Margolin'), + ('Marcia Muller'), + ('Kasey Michaels'), + ('Bruce Robinson'), + ('Craig Spector'), + ('James Cameron'), + ('Robert Fulghum'), + ('Susan H Okeefe'), + ('Joe Orton'), + ('Uta Hagen'), + ('Haskel Frankel'), + ('Stella Rodway'), + ('Francois Mauriac'), + ('Josephine Carr'), + ('Alistair MacLean'), + ('Peter Benchley'), + ('J. D. Robb'), + ('Bob Uecker'), + ('James Blish'), + ('Diana Wynne Jones'), + ('John (Fire) Lame Deer'), + ('Jim Butcher'), + ('Lowell Bair'), + ('Ian Fleming'), + ('Curt Gentry'), + ('Anne Mccaffrey'), + ('E. L. Swann'), + ('Mark Shepherd'), + ('Gentry Lee'), + ('John Vornholt'), + ('Zelazny'), + ('Robert Daley'), + ('Catherine Jones'), + ('Running Press'), + ('Jared M. Diamond'), + ('Ian Frazier'), + ('Edain McCoy'), + ('John Dufresne'), + ('Fayrene Preston'), + ('Rand Miller'), + ('David Wingrove'), + ('Pamela Norris'), + ('Jelloun'), + ('Caela Farren'), + ('William E. Blundell'), + ('Andrew Delbanco'), + ('Marguerite Duras'), + ('Par Lagerkvist'), + ('Alexandra Dick'), + ('Alice Kaplan'), + ('Jo Ann Beard'), + ('Dorothea Brande'), + ('Alexandre Dumas PÃ..re'), + ('Maxine Trottier'), + ('Mark Bricklin'), + ('Derek Wilson'), + ('Iris Gadd'), + ('Roger Gadd'), + ('Dana Fuller Ross'), + ('Kirsten Boie'), + ('Gillian Butler'), + ('Tony Hope'), + ('Marjorie L. Lloyd'), + ('David Fontana'), + ('Mary Norton'), + ('Beth Krush'), + ('Joe Krush'), + ('Yahiya Emerick'), + ('Michael Gannon'), + ('Brindley Louise'), + ('Robin Dalton'), + ('Kate DiCamillo'), + ('Felix Salten'), + ('R. J. Pineiro'), + ('Colin Forbes'), + ('Patricia Shaw'), + ('Anna Maria Ortese'), + ('Sigrid Vagt'), + ('Andreas Brandhorst'), + ('Italo Calvino'), + ('Oswalt Von Nostitz'), + ('Paul C. Doherty'), + ('Frauke Biehl'), + ('Sevim Kabak'), + ('Amélie Nothomb'), + ('Wolfgang Kriege'), + ('Alastair MacNeill'), + ('Alastair McNeill'), + ('Alistair MacLea'), + ('Alison Lurie'), + ('Otto Bayer'), + ('Glenn Meade'), + ('Wolfgang Thon'), + ('Allan Folsom'), + ('Dorit Zinn'), + ('Petra Durst-Benning'), + ('Eva Maaser'), + ('Jaime Bayly'), + ('Lindy Arriaga Diaz'), + ('Laurens Van Der Post'), + ('Barbara Mertz'), + ('Clara Pierre'), + ('Gabriele Weber-Jaric'), + ('Frederik Berger'), + ('Ruth Berger'), + ('Peter Berling'), + ('R. Conrad Stein'), + ('Susan R. Matthews'), + ('Kathy Tyers'), + ('Jerry Pournelle'), + ('John F. Carr'), + ('Roland Green'), + ('James P. Hogan'), + ('Don Wismer'), + ('C. J. Cherryh'), + ('Eric Flint'), + ('David Drake'), + ('Phillip Margolin'), + ('Leonard Goldberg'), + ('Willie Morris'), + ('Piers Dudgeon'), + ('Marion Crawford'), + ('Josephine Cox'), + ('Faith Addis'), + ('F. Scott Fitzgerald'), + ('Sara Backer'), + ('Newt Scamander'), + ('Charles Vess (illustrator)'), + ('Garth Nix'), + ('Betty Lumsden Milne'), + ('Philip Plisson'), + ('Jan Siegel'), + ('Washington Irving'), + ('Cathy Guisewite'), + ('Charles M. Schulz'), + ('Susan Cooper'), + ('Alan Cober'), + ('Deanne Stillman'), + ('Laura Levine'), + ('Graham C. Barrett'), + ('Rudyard Kipling'), + ('Don Daily'), + ('Jim Razzi'), + ('Chris Schnabel'), + ('Louisa M. Atcott'), + ('Gavin Rowe'), + ('Gina Ingoglia'), + ('Francese Mateu'), + ('Carlos Collodi'), + ('Greg Hildebrandt'), + ('P. L. Whitney'), + ('Carolyn Mackler'), + ('Robin Jones Gunn'), + ('Debbie Macomber'), + ('Steve Friedman'), + ('Jane Hissey'), + ('Masterson Elementary Students'), + ('First Grade Students'), + ('Margaret Landon'), + ('Julianna Baggott'), + ('Alex Boese'), + ('Webb Garrison'), + ('Megan McCafferty'), + ('Jill A. Davis'), + ('Charles Purdy'), + ('Greg Johnson'), + ('Jonathan Snow'), + ('Sylvia Thompson'), + ('Brooke Scudder'), + ('Aileen Paterson'), + ('Molly Rice'), + ('David Ignatius'), + ('Allison Pearson'), + ('Jonathan Tropper'), + ('Jenny Colgan'), + ('Cathy Hopkins'), + ('Melissa Miller'), + ('Katherine B. Chauncey'), + ('George Foreman'), + ('Betty Crocker Editors'), + ('Grange Books Ed'), + ('Robert Bly'), + ('Robert Strandquist'), + ('Victoria Moran'), + ('SARK'), + ('Debrena Jackson Gandy'), + ('Sally Warner'), + ('Daniel Jones'), + ('Kate Freiman'), + ('Eric Carle'), + ('Marty Becker'), + ('Caro'), + ('Malachy McCourt'), + ('Stan Redding'), + ('Frank W. Abagnale'), + ('Glenna McReynolds'), + ('Maeve. Binchy'), + ('Elizabeth Lowell'), + ('Ben Cohen'), + ('Jerry Greenfield'), + ('Nancy Stevens'), + ('Delinsky'), + ('Teresa Medeiros'), + ('Daphne Rose Kingma'), + ('Johanna Spyri'), + ('Shari Lewis'), + ('Frances Mayes'), + ('Robert Crais'), + ('Susan Ludington-Hoe'), + ('Susan K. Golant'), + ('John D. MacDonald'), + ('Landrum B. Shettles'), + ('David M. Rorvik'), + ('Shelley Austin Kastner'), + ('Frances H. Burnett'), + ('Robin Wells'), + ('Lynn Erickson'), + ('John E. Sarno'), + ('Trudi Pacter'), + ('Quinn T. Evans'), + ('Janelle Taylor'), + ('Robert Tallant'), + ('Juan Kattan-Ibarra'), + ('Shirley Hazzard'), + ('Felicity Trotman'), + ('Falcon Travis'), + ('Chip Lovitt'), + ('Harriet Grey'), + ('Bud Gardner'), + ('Robert A. Wilson'), + ('Stanley Marcus'), + ('Owen Parry'), + ('Michael Perry'), + ('Chelsea Quinn Yarbro'), + ('Freeman Patterson'), + ('Malcolm Gladwell'), + ('Jiddu Krishnamurti'), + ('William Dalrymple'), + ('Paul Hoffman'), + ('Duncan J. Watts'), + ('Sarina Singh'), + ('Michelle Coxall'), + ('Royina Grewal'), + ('Inez McAlister Faber'), + ('Dottie McDowell'), + ('Josh McDowell'), + ('David N. Weiss'), + ('Sally Beauman'), + ('Paul Solotaroff'), + ('Peter Singer'), + ('W. Y. Evans-Wentz'), + ('Lama Anagarika Govinda'), + ('Sir John'), + ('Frank Godwin'), + ('Henrik Ibsen'), + ('James McFarlane'), + ('Jens'), + ('Margo Culley'), + ('D. C. R. A. Goonetilleke'), + ('E.M. Forster'), + ('John F. McGrady'), + ('Pat Conroy'), + ('Norah Lofts'), + ('Suzanne Strempek Shea'), + ('Robb Forman Dew'), + ('Eric Nylund'), + ('Michael D. Warden'), + ('Thomas J. Stanley'), + ('William D. Danko'), + ('Rosellen Brown'), + ('R. K. Narayan'), + ('George Mackay Brown'), + ('Spike Milligan'), + ('Thomas Paine'), + ('Henry Collins'), + ('John N. Davie'), + ('David Skilton'), + ('A. Alvarez'), + ('A. J. Hill'), + ('Sharon Sala'), + ('Peggy Moreland'), + ('Paula Detmer Riggs'), + ('Guideposts Magazine'), + ('Marie Watts'), + ('Joy Darien'), + ('Bill Richardson'), + ('Jill Conner Browne'), + ('Katherine O''Neal'), + ('Sherwood Anderson'), + ('Amy Paulsen'), + ('(None)'), + ('Julia Alvarez'), + ('Christopher Reich'), + ('Mary Cantwell'), + ('Stefan Fatsis'), + ('Michael Kinsley'), + ('Hentoff'), + ('Debbie Dadey'), + ('Marcia T. Jones'), + ('Dr. Charles F. Stanley'), + ('Rick Carson'), + ('Eth Clifford'), + ('Caroline B. Cooney'), + ('Niccolo Ammaniti'), + ('Jonathan Hunt'), + ('Walter Dean Myers'), + ('Chris Fabry'), + ('Susan Richards Shreve'), + ('James Marshall'), + ('Edith Nesbit'), + ('Robert L. Veninga'), + ('Janis Arnold'), + ('Cindy Bonner'), + ('Hannah Crafts'), + ('Henry Louis Gates Jr.'), + ('Jim Grimsley'), + ('Robert Siegel'), + ('Onion Staff'), + ('Richard Scarry'), + ('Mickey Spillane'), + ('John Knowles'), + ('David Halberstam'), + ('Will Ferguson'), + ('Ian Ferguson'), + ('Carol Off'), + ('George Gibian'), + ('Louise Maude'), + ('Aylmer Maud'), + ('Anthony Lane'), + ('John Kennedy Toole'), + ('Walker Percy'), + ('Richard Blow'), + ('Lisa Beamer'), + ('Ken Abraham'), + ('David Suzuki'), + ('John Connelly'), + ('J.M. Morris'), + ('Sara Lewis'), + ('Donada Peters'), + ('Renee'), + ('Mickey Zucker Reichert'), + ('Lee Hogan'), + ('Judith Miller'), + ('Stephen Engelberg'), + ('William Broad'), + ('T. R. Pearson'), + ('Bill Schultheis'), + ('Christa Worthington'), + ('Richard Bachman'), + ('Wilbur Witt'), + ('Iain Lawrence'), + ('Peter Wright'), + ('Mary Stewart'), + ('Gore Vidal'), + ('Molly Cochran'), + ('Warren Murphy'), + ('Jim Collins'), + ('Robert Pirsig'), + ('Troon McAllister'), + ('China Mieville'), + ('Chang-rae Lee'), + ('Tom Bradby'), + ('Jimmy Breslin'), + ('Adam Haslett'), + ('Victoria Price'), + ('Lloyd Alexander'), + ('Annelie Ortmanns'), + ('D. E. Rogers'), + ('Douglas Robinson'), + ('Millenia Black'), + ('Laurie Fox'), + ('Wendy Northcutt'), + ('Martin Mull'), + ('Allen Rucker'), + ('Rubin Carter'), + ('Peter Carey'), + ('Cinammon Burke'), + ('Phoebe Conn'), + ('Rosalind Laker'), + ('Mary McMullen'), + ('Anne L. Squire-Buresh'), + ('Merrill Miller'), + ('Nancy Thayer'), + ('Hunter S. Thompson'), + ('Karen Scalf Linamen'), + ('Camille Cauti'), + ('Luther Blissett'), + ('Helga Schneider'), + ('Shaun Whiteside'), + ('Richard Craze'), + ('Javier Cercas'), + ('Elisabeth Beyer'), + ('Aleksandar Grujicic'), + ('Charlotte A. Alexander'), + ('Delta Burke'), + ('Alexis Lipsitz'), + ('Michael Johnston'), + ('Christopher Pike'), + ('Robert Simpson'), + ('Michael A. Martin'), + ('Andy Mangels'), + ('Heather Jarman'), + ('David R. George III'), + ('Gabrielle De Cuir'), + ('Ray Garton'), + ('Judith Reeves-Stevens'), + ('Garfield Ree'), + ('Judith Reeves-Steven'), + ('Garfield Reev'), + ('Francis Scott Fitzgerald'), + ('Jacques Tournier'), + ('Kate McMullan'), + ('Jan Burke'), + ('Ed Laing'), + ('Michael A. Kahn'), + ('Christine Green'), + ('Lewis Nordan'), + ('William Diehl'), + ('Julia Fenton'), + ('Vicki A. Brady'), + ('Linda Dobson'), + ('Bob Barnes'), + ('Marvin Allen'), + ('Douglas Hobbie'), + ('Gower'), + ('Antony Sher'), + ('Monika Elwenspoek'), + ('Juan Ramon Jimenez'), + ('Jack Welch'), + ('John A. Byrne'), + ('Conari Press'), + ('Dawna Markova'), + ('Andre Dubus III'), + ('Ria Fehlau'), + ('New Line Productions'), + ('Tom Shales'), + ('James Andrew Miller'), + ('Charlotte Hughes'), + ('Robert Goldsborough'), + ('Jennifer Blake'), + ('ANNA PAVORD'), + ('Robin Mckinley'), + ('S.D. Perry'), + ('Adam McCauley'), + ('John Straley'), + ('Jeff Rovin'), + ('Julia Bell'), + ('Paul Magrs'), + ('Andrew Motion'), + ('E. A. Ellis'), + ('NICK HORNBY'), + ('Robert Munsch'), + ('Sheila McGraw'), + ('Robin Quivers'), + ('Norman Maclean'), + ('S. E. Hinton'), + ('John Gunther'), + ('Richard Preston'), + ('Lenny Flank'), + ('Joy Adamson'), + ('George Page'), + ('Naguib Mahfouz'), + ('Tagreid Abu-Hassabo'), + ('Wei Hui'), + ('Catherine Landis'), + ('Amanda Eyre Ward'), + ('Rachel Carson'), + ('Linda Lear'), + ('Tony Hawks'), + ('Lindsay Clarke'), + ('Karin McQuillan'), + ('Amy Thomson'), + ('Laura Joh Rowland'), + ('Marjorie B. Kellogg'), + ('Marjorie Bradley Kellogg'), + ('Jody Lee'), + ('Kage Baker'), + ('David Clement-Davies'), + ('Rachel Pollack'), + ('Emily Jenkins'), + ('Mirika Mayo Cornelius'), + ('Victor H. Krulak'), + ('Charles Tomlinson'), + ('Mary Ann Lamanna'), + ('Agnes Riedmann'), + ('Michael Drosnin'), + ('John Searles'), + ('Carol Grace'), + ('Tom Stone'), + ('Sheri Reynolds'), + ('Bonnie Bluh'), + ('Gloria Murphy'), + ('Pat Shipman'), + ('Donald Serrell Thomas'), + ('Benedict Freedman'), + ('Nancy Freedman'), + ('Elizabeth Berg'), + ('Roxana Robinson'), + ('Willard Scott'), + ('Bill Crider'), + ('Laurie Graham'), + ('Anne D. LeClaire'), + ('Parnell Hall'), + ('Catherine Anderson'), + ('Nikki Rivers'), + ('Kathleen O''Reilly'), + ('Judy Christenberry'), + ('Muriel Jensen'), + ('Tina Leonard'), + ('Emma Craig'), + ('Nancy Pearl'), + ('Tim Winton'), + ('Jim Fergus'), + ('Randall Robinson'), + ('Jim Marrs'), + ('Edwin A. Abbott'), + ('William Sydney Porter'), + ('Shane Weller'), + ('Michael Henry Heim'), + ('Wayne Weible'), + ('T.C. Boyle'), + ('Camilo Jose Cela'), + ('Anthony Kerrigan'), + ('Jeremy Harwood'), + ('Simon Fielding'), + ('Gillian Emerson-Robe'), + ('Jim Underwood'), + ('Pearl Cleage'), + ('Marlo Morgan'), + ('Gary Meier'), + ('Gloria Meier'), + ('Ernest Hillen'), + ('Deirdre Madden'), + ('Roger Hargreaves'), + ('Stella Braam'), + ('Hartmut Bieg'), + ('Barbara Pierce'), + ('Dinah Mccall'), + ('Bertrice Small'), + ('Kathy Love'), + ('Lisa Plumley'), + ('Cait London'), + ('Lauren Baratz-Logsted'), + ('Annie Gottlieb'), + ('Slobodan D. Pesic'), + ('Vicki Lewis Thompson'), + ('Tony Johnston'), + ('Rene Barjavel'), + ('Ken Munro'), + ('Liz Smith Parkhurst'), + ('Rod Lorenz'), + ('Thomas King'), + ('Hansjörg Schneider'), + ('Botho Strauß'), + ('Erika Burkart'), + ('Freya Von Moltke'), + ('Reinhard Delau'), + ('Hans-Ludwig Böhme'), + ('Christina Viragh'), + ('Jacques Wirz'), + ('Michael Bayer'), + ('Norber'), + ('Linda Brower Meeks'), + ('Philip Heit'), + ('Randy M. Page'), + ('Paul Lukas'), + ('Fritjof Capra'), + ('Suanne Kelman'), + ('John Seabrook'), + ('Lionel Tiger'), + ('Hal Niedzviecki'), + ('Ernest Becker'), + ('Stig Bjorkman'), + ('Tim Burton'), + ('Steve Moss'), + ('Tim Lott'), + ('James M. Cain'), + ('Dashiell Hammett'), + ('Benjamin Anastas'), + ('Jose Saramago'), + ('Giovanni Pontiero'), + ('Jacob Grimm'), + ('Wilhelm Grimm'), + ('Jack Zipes'), + ('Arthur Nersesian'), + ('Walter Kirn'), + ('Roxanne Henke'), + ('Wendy Corsi Staub'), + ('Joshua Piven'), + ('Hugh Ross Williamson'), + ('Cindy Ribarich'), + ('Suzanne Delzio'), + ('Bill Lessard'), + ('Steve Baldwin'), + ('Harold Schechter'), + ('Lesley Adkins'), + ('Roy Adkins'), + ('Ian Gibson'), + ('Jan Bondeson'), + ('Richard M. Stallman'), + ('Lawrence Lessig'), + ('Joshua Gay'), + ('Lau'), + ('Vaughn Bullard'), + ('Kevin T. Smith'), + ('Michael C. Daconta'), + ('Mary Gentle'), + ('Philip Hazel'), + ('Richard Bird'), + ('Tim O''Brien'), + ('Stephen Williams'), + ('Noel Perrin'), + ('Marjory Wunsch'), + ('Natalie Angier'), + ('Tim Folger'), + ('Anthony Everitt'), + ('Chris Kreski'), + ('Michael J. Nelson'), + ('Stephen Kendrick'), + ('Dave Mckean'), + ('Randall Kennedy'), + ('Rochelle Morton'), + ('Jeff Kelly'), + ('Thomas Lynch'), + ('Larry L. King'), + ('Ben Macintyre'), + ('David M. Friedman'), + ('Cheryl Rilly'), + ('David Hagberg'), + ('Eugenia Price'), + ('Edward McNall Burns'), + ('Standish Meacham'), + ('Robert E. Ler'), + ('Steven Alter'), + ('Xavier Patier'), + ('Jacques Serguine'), + ('Helge Schneider'), + ('Don Roberts'), + ('Michael Mojher'), + ('Anita Desai'), + ('Gladys Taylor'), + ('Jeff Burgess'), + ('W. P. Kinsella'), + ('Tor Seidler'), + ('Vivian Vande Velde'), + ('Gail Bowen'), + ('Franz Kafka'), + ('Sir Richard Francis Burton'), + ('George R.R. Martin'), + ('Kathe Koja'), + ('Doug Lansky'), + ('Caroline Rivolier'), + ('S. White'), + ('Judith Krantz'), + ('Richard P. Henrick'), + ('Johanna Kingsley'), + ('Laurie Notaro'), + ('Taylor Caldwell'), + ('Julia Cameron'), + ('Mark Griffin'), + ('Theron Walker'), + ('Elizabeth Powers'), + ('Amy Mandelker'), + ('Louise Perrotta'), + ('Gina Fontana'), + ('Ferdinand G. Mahfood'), + ('Sue Ellen Cooper'), + ('Andrea Reekstin'), + ('Richard Rohr'), + ('Joseph Martos'), + ('Jamaica Kincaid'), + ('Paul Fleischman'), + ('Kathryn Jacobi'), + ('Margot Livesey'), + ('Cathi Hanauer'), + ('Margaret Moorman'), + ('Monica Ali'), + ('Karen Joy Fowler'), + ('Micah Sparks'), + ('Lolly Winston'), + ('Susan Minot'), + ('Charlotte Vale Allen'), + ('Cathy Kelly'), + ('Eduardo Galeano'), + ('Janice Law'), + ('Judith Hawkes'), + ('James Jennings'), + ('Jean Baudrillard'), + ('Julia Witwer'), + ('Alvin Schwartz'), + ('Stephen Gammell'), + ('Melvin Burgess'), + ('Neale Donald Walsch'), + ('Janet Peery'), + ('Robert Alexander'), + ('Antwone Q. Fisher'), + ('Mim E. Rivas'), + ('Fred Chappell'), + ('Frances Park'), + ('Caroline Gordon'), + ('Timothy Zahn'), + ('O''Cork'), + ('Larry Kirk'), + ('Gerald Scarfe'), + ('Steve Bell'), + ('Mark Bryant'), + ('Toni Goffe'), + ('Henrietta Stickland'), + ('Milan Rai'), + ('Mandy Wagstaff'), + ('Jean Liedloff'), + ('Will Self'), + ('John Lanchester'), + ('Morihei Ueshiba'), + ('John Stevens'), + ('Steven Pressfield'), + ('B.B. Hiller'), + ('Lorrie Moore'), + ('Ken Follett'), + ('Bruce H. Wilkinson'), + ('Marele Day'), + ('Robin Klein'), + ('David Finn'), + ('Cafi Cohen'), + ('Dorothy Moore'), + ('Raymond Moore'), + ('Lucy Jo Palladino'), + ('Daniel Silva'), + ('Robert Adams'), + ('Ken Kelly'), + ('Harry Turtledove'), + ('Robert Harris'), + ('Walter Tevis'), + ('Walter Wangerin Jr.'), + ('Nevil Shute'), + ('Conrad Black'), + ('Brian Aldiss'), + ('Jennifer Niven'), + ('Stephen Hawking'), + ('Brian MacArthur'), + ('Richard A. Knaak'), + ('Joseph Stanislaw'), + ('Herman Wouk'), + ('Daniel Hood'), + ('Gunter Böhmer'), + ('Britta Herz'), + ('Thomas Finn'), + ('Karl-Heinz Witzko'), + ('Peter F. Hamilton'), + ('Irene M. Pascoe'), + ('Amy Goldman Koss'), + ('Stephanie Barron'), + ('William W. Hewitt'), + ('Mircea Eliade'), + ('John Wyndham'), + ('William Boyd'), + ('John M. Cohen'), + ('Mark J. Cohen'), + ('D. G. A. Whitten'), + ('W.G.'), + (' W.G. Moore Moore'), + ('Friedrich Nietzsche'), + ('R. J. Hollingdale'), + ('A.R.R.R. Roberts'), + ('H Leighton Steward'), + ('Michael J.H. Taylor'), + ('David Mondey'), + ('Monique Roffey'), + ('Peter Bleksley'), + ('S.Anderson Black'), + ('Parragon'), + ('Better Homes & Gardens'), + ('Joan Lewis'), + ('Lynette Chil'), + ('Brian Cole'), + ('D. Griffith'), + ('Tom Holland'), + ('Bea Reiter'), + ('Albert Bichler'), + ('Horst Herzig'), + ('Tina Herzig'), + ('Jill Remains'), + ('Natalie Zemon Davis'), + ('Nora Ephron'), + ('Illiad'), + ('Bob Herbstman'), + ('Illiad" Frazer J.D.'), + ('Nancy Friday'), + ('Amanda Quick'), + ('Gloria Steinem'), + ('Lisa Carey'), + ('Joanne Rock'), + ('Andy Rathbone'), + ('William J. Bennett'), + ('Richard Parrish'), + ('Trevanian'), + ('Alan Bullock'), + ('Mewa Ramgobin'), + ('Lou Dubose'), + ('Legs McNeil'), + ('Gillian McCain'), + ('Stephen Baker'), + ('Jackie Geyer'), + ('Lynne Withey'), + ('Flavius Josephus'), + ('Betty Radice'), + ('Julian Barnes'), + ('Kurt Wagenseil'), + ('Thucydides'), + ('Steven Lattimore'), + ('Joe Klein'), + ('Joan Didion'), + ('Todd Gitlin'), + ('Steven Fraser'), + ('Neil Postman'), + ('Pat Robertson'), + ('Firoozeh Dumas'), + ('Rosamunde Pilcher'), + ('Cathleen Schine'), + ('Francine Prose'), + ('William Dietrich'), + ('Ruby Jean Jensen'), + ('John Derbyshire'), + ('Thich Nhat Hanh'), + ('Peter Levitt'), + ('Jerry Spinelli'), + ('Jeffrey Hudson'), + ('Barbara Seranella'), + ('Alice Blanchard'), + ('Tracey West'), + ('Margaret George'), + ('Louis Begley'), + ('Elizabeth Von Arnim'), + ('Marilyn Wallace'), + ('Cameron Tuttle'), + ('Susannah Bettag'), + ('T. Jefferson Parker'), + ('Robert Morgan'), + ('Paul Kemprecos'), + ('Janet Groene'), + ('Gordon Groene'), + ('Eric Garcia'), + ('Stuart Pawson'), + ('Robert J. Ringer'), + ('Gary Braver'), + ('Stephen C. George'), + ('Kenneth Winston Caine'), + ('Men''s Heal'), + ('Steve Ettlinger'), + ('James S Thayer'), + ('Kristiana Gregory'), + ('Abraham Verghese'), + ('Robin Jarvis'), + ('Colin Dann'), + ('Ursula Moray Williams'), + ('Sarah Mlynowski'), + ('Michael Bergin'), + ('Karen Templeton'), + ('Linda Lenhoff'), + ('Claire Cook'), + ('Lauren Weisberger'), + ('John Gray'), + ('Silvana Klein'), + ('Dirk Van Gunsteren'), + ('Susan Sontag'), + ('Reinhard Kaiser'), + ('Peter K. Wehrli'), + ('Fritz Krenn'), + ('Tom Shachtman'), + ('Waris Dirie'), + ('Cathleen Miller'), + ('Antoine Bello'), + ('Claudia Kalscheuer'), + ('Werner Burckhardt'), + ('Verena Koch'), + ('Heike Geißler'), + ('Klaas Huizing'), + ('Ingrid Noll'), + ('Jürgen Abel'), + ('Daniela Huzly'), + ('Gregor Gysi'), + ('Celia Fremlin'), + ('Marcus Geiss And Henning Stegelmann'), + ('Risa Mickenberg'), + ('Joanne Dugan'), + ('Brian'), + ('Paul Zindel'), + ('Alice Miller'), + ('Philip Zaleski'), + ('Paul Kaufman'), + ('Dennis Covington'), + ('Guido Eckert'), + ('Siri Hustvedt'), + ('Georges Montforez'), + ('Antoine De Saint-Exupéry'), + ('Higgins Clark'), + ('Christopher Wallace'), + ('Kunstmuseum Basel'), + ('Rolf Fjelde'), + ('Jerri Corgiat'), + ('John Dalton'), + ('Richard Matheson'), + ('Marjorie Hudson'), + ('M. Nelson Chunder'), + ('Karanjit Siyan'), + ('Chris Hare'), + ('Wendell Odom'), + ('Frommer'), + ('Mike Lupica'), + ('Ilya Ilf'), + ('Eugene Petrov'), + ('Evgenii Petrov'), + ('Edward Bunker'), + ('Yaakov Shabtai'), + ('Ricarda Junge'), + ('Bo Hampton'), + ('Mark Kneece'), + ('Andrew H. Vachss'), + ('Catherine Millet'), + ('Adriana Hunter'), + ('Albert Schwarzenbach'), + ('Anne Fadiman'), + ('Christopher Frayling'), + ('Edgar Allan Poe'), + ('Groff Conklin'), + ('Irv Docktor'), + ('Calvin Tomkins'), + ('Betty Edwards'), + ('Bernard P. Chamberlain'), + ('Lola Lemire Tostevin'), + ('Nigel Tranter'), + ('Gordon R. Dickson'), + ('Joy Wilt Berry'), + ('Laurence Shames'), + ('Michele Dunaway'), + ('Merline Lovelace'), + ('Heather Macallister'), + ('Debra Dixon'), + ('Debra Carroll'), + ('Mary Kirk'), + ('Joey Light'), + ('Kylie Brant'), + ('Laura Gordon'), + ('Emma Goldrick'), + ('Goldrick'), + ('Tracy Hughes'), + ('Laurel Collins'), + ('Diana Hall'), + ('Kara Lennox'), + ('Rita Herron'), + ('Steve Martini'), + ('Nina Beaumont'), + ('Lisa Bingham'), + ('Eve Gladstone'), + ('Barbara Boswell'), + ('Coughlin'), + ('Kathleen Eagle'), + ('Andrea Edwards'), + ('Mindy Neff'), + ('Rita Clay Estrada'), + ('Brashear'), + ('Dawson'), + ('Joyce Carol Oates'), + ('Darin Strauss'), + ('Richard Bernstein'), + ('Thomas Hine'), + ('Jessica Hagedorn'), + ('Philip K. Dike'), + ('Gwen Lee'), + ('Doris Elaine Sauter'), + ('Tim Po'), + ('Bernard E. Rollin'), + ('Helen Stauffer Winter'), + ('Maeve Brennan'), + ('Mary D. Robertson'), + ('Cherrie Moraga'), + ('Andrea Carlisle'), + ('Mary Narkiewicz'), + ('Madonna Kolbenschlag'), + ('Mimi Luebbermann'), + ('Arlene S. Skolnick'), + ('Jerome H. Skolnick'), + ('Bella Abzug'), + ('Susan Brownmiller'), + ('Anne Wilson Schaef'), + ('Charles M. Tatum'), + ('Nicole Blackman'), + ('Robin Bernstien'), + ('Seth Clark Silberman'), + ('Ruth Baetz'), + ('Amanda Davis'), + ('Jyl Lynn Felman'), + ('Cynthia Kadohata'), + ('Michael E. Gerber'), + ('John Eldredge'), + ('Padriac Colum'), + ('Eileen Campbell'), + ('Thomas R. P. Mielke'), + ('Luciano De Crescenzo'), + ('Linde Birk'), + ('Morton Rhue'), + ('A. A. Attanasio'), + ('Patricia Hedges'), + ('Patricia H. Hedges'), + ('John Andrew Storey'), + ('William Barrett'), + ('Amber K'), + ('Mary Daheim'), + ('Holly-Jane Rahlens'), + ('Michael Dibdin'), + ('Anthony Burgess'), + ('Fyodor Dostoevsky'), + ('Constance Garnett'), + ('Joseph Frank'), + ('James Ryan'), + ('Chico Buarque'), + ('Alison Entrekin'), + ('Gregory Rabassa'), + ('Elizabeth Fishel'), + ('Janette Turner Hospital'), + ('Miguel Hernandez'), + ('Jody Shields'), + ('Alex Capus'), + ('Stephen M. Wylen'), + ('Bernhard W. Anderson'), + ('Katheryn Pfisterer Darr'), + ('Shmuley Boteach'), + ('Herman Melville'), + ('Tom Quirk'), + ('James Preston Girard'), + ('Michael Horowitz'), + ('Vicki Marshall'), + ('Sydne Heather Schinkel'), + ('Thomas Charles Schinkel'), + ('Melanie Rawn'), + ('Jennifer Roberson'), + ('Kate Elliott'), + ('Orhan Pamuk'), + ('Erdag Goknar'), + ('Goldberry Long'), + ('Kathleen Norris'), + ('Ashley Warlick'), + ('Gordon S. Haight'), + ('Dinah Birch'), + ('Kitty Ray'), + ('Geraldine Brooks'), + ('P. C. Cast'), + ('KARLA /LANSDOWNE/SAVE HOCKER'), + ('Judith A. Lansdowne'), + ('H'), + ('Sarah Gallick'), + ('Maggie Haberman'), + ('Jeane MacIntosh'), + ('P. B. Ryan'), + ('Maddy Hunter'), + ('Sherrilyn Kenyon'), + ('Jill Churchill'), + ('Jenna McKnight'), + ('Katie MacAlister'), + ('Evelyn Vaughn'), + ('T.R. Reid'), + ('Kinley MacGregor'), + ('Julia Quinn'), + ('Stephen A. Bly'), + ('Warren Dunford'), + ('Albert Murray'), + ('Elizabeth McCracken'), + ('Nadine Gordimer'), + ('E. M. Forster'), + ('John Hersey'), + ('Kate Flint'), + ('Charlotte Brontë'), + ('Michael Mason'), + ('Thomas L. Long'), + ('Theresa Nelson'), + ('William Taylor'), + ('Krandall Kraus'), + ('Barrett Tillman'), + ('Joyce M. Roche'), + ('Marie Rodriguez'), + ('Phyllis Schneider'), + ('Rita Ciresi'), + ('Leonard B. Scott'), + ('Patricia Nell Warren'), + ('Anthony Bonner'), + ('Jess Stearn'), + ('Jean-Christophe Rufin'), + ('Torey Hayden'), + ('Arthur Conan Doyle'), + ('Samuel R. Delany'), + ('Stephen D. Allen'), + ('Bob Davis'), + ('Shirley'), + ('Alesia Holliday'), + ('Beatles'), + ('Richard N. Patterson'), + ('Richard L. Polese'), + ('Peace Pilgrim'), + ('Barbara Savage'), + ('Loren Eiseley'), + ('Gale E. Christianson'), + ('James Bannon'), + ('James O''Reilly'), + ('Tara Austen Weaver'), + ('Anne Calcagno'), + ('Lesley Downer'), + ('David Gates'), + ('Thomas Scoville'), + ('W. Somerset Maugham'), + ('Somerset Maugham'), + ('T.Coraghessan Boyle'), + ('Nancy Alberts'), + ('Karen Jerome'), + ('Valerie Carnes'), + ('Bruno Maddox'), + ('Sandra Magsamen'), + ('Robert Claiborne'), + ('Hugh Prather'), + ('Gerald Jampolsky'), + ('Alice Randall'), + ('Thomas Tryon'), + ('L.P. Hartley'), + ('Peter Quennell'), + ('Gertrud Muel Nelson'), + ('Michael Kunze'), + ('John G. Fuller'), + ('Charles Barry Townsend'), + ('Barbara Hoberman Levine'), + ('Jim Dreaver'), + ('Barbara Graham'), + ('Victoria Roberts'), + ('Kevin Leman'), + ('Lydia Adamson'), + ('Margot Adler'), + ('Terence Hanbury White'), + ('Katherine Mosby'), + ('Philippe Djian'), + ('Kara Dalkey'), + ('Kirsty Gunn'), + ('Edward Gorey'), + ('Mick Middles'), + ('Melvyn Bragg'), + ('Thomas Mann'), + ('John E. Woods'), + ('Michael Frayn'), + ('Steve Jackson'), + ('Ian Livingstone'), + ('Will Randall'), + ('James Hawes'), + ('William Makepeace Thackeray'), + ('Thomas De Quincey'), + ('Alan Russell'), + ('Douglas Lindsay'), + ('Kathryn Wesley'), + ('Richard L. Zettler'), + ('Lee Horne'), + ('Alexandra Fuller'), + ('Bill Cleaver'), + ('Vera Cleaver'), + ('Christopher Wright'), + ('Linda Bolton'), + ('Dana Facaros'), + ('Thomas Parsons'), + ('Lily Tuck'), + ('Harold Tarrant'), + ('Hugh Tredennic'), + ('Frans Haacken'), + ('Eliyahu M. Goldratt'), + ('Jeff Cox'), + ('Bettine Von Arnim'), + ('Till Raether'), + ('Erich Kästner'), + ('Jay Parini'), + ('Alix Kates Shulman'), + ('Emily Carmichael'), + ('Phyllis A. Whitney'), + ('Michael Wallner'), + ('Corina Tettinger'), + ('David Congalton'), + ('Mary Alice Monroe'), + ('Donald E. Knuth'), + ('Graham Salisbury'), + ('Martine Bates'), + ('Sarah Masters Buckey'), + ('Robert M. Pirsig'), + ('Jack Henry Abbott'), + ('Michio Kaku'), + ('Robert O''Keefe'), + ('Zolar'), + ('Elizabeth Clare Prophet'), + ('Patricia R. Spadaro'), + ('Lewis Richmond'), + ('Eckhart Tolle'), + ('Erich Von Daniken'), + ('Genevieve L. Paulson'), + ('Jane Hope'), + ('Borin Van Loon'), + ('Rev Ray T. Malbrough'), + ('Israel Regardie'), + ('Melvin Morse'), + ('Father Oscar Lukefahr CM'), + ('R. J. Stewart'), + ('Brother Lawrence'), + ('Phyllis Galde'), + ('Jan Fries'), + ('Denise Linn'), + ('Jack Hamm'), + ('Kate Horsley'), + ('Gary Quinn'), + ('Jonathan Dee'), + ('Marian Green'), + ('Horik Svensson'), + ('Llewellyn'), + ('Donald Michael Kraig'), + ('Andrew McGahan'), + ('Kay Redfield Jamison'), + ('Guy Damian-Knight'), + ('Edward Shorter'), + ('Elliot Perlman'), + ('Jim Schutze'), + ('Michael Dobbs'), + ('Geoffrey Chaucer - Edited By A. C. Cawley'), + ('Minfong Ho'), + ('Nancy Madore'), + ('Ursula K Le Guin'), + ('Virgil'), + ('David West'), + ('Jean Rhys'), + ('Whitley Strieber'), + ('Karen Harper'), + ('Amy R. Kaplan'), + ('Michael Keller'), + ('Jimmy Thapa'), + ('Raymond Buckland'), + ('Anna Maxted'), + ('Jon Hassler'), + ('Shannon Drake'), + ('Robert Kornwise'), + ('Linda Greenlaw'), + ('Sheldon Vanauken'), + ('Susan Polis Schutz'), + ('Stephen Schutz'), + ('Braun Lilian Jackson'), + ('Alison Fraser'), + ('Robyn Donald'), + ('N. Richard Nash'), + ('Wayne W Dyer'), + ('Ford Madox Ford'), + ('Brandon'), + ('Jay Brandon'), + ('Will Hobbs'), + ('Witi Tame Ihimaera'), + ('Luis Sepúlveda'), + ('François Maspéro'), + ('Landoll Inc.'), + ('Alexandra Stoddard'), + ('Marc Romano'), + ('Margot Anand'), + ('Scholastic Books'), + ('Ellen Miles'), + ('Ben M. Baglio'), + ('Melinda Blanchard'), + ('Robert Blanchard'), + ('Anthony Gottlieb'), + ('Richard Littlejohn'), + ('Kimeron N. Hardin'), + ('Marc-Edouard Nabe'), + ('John Lantigua'), + ('Ralph Waldo Emerson'), + ('Robert Slater'), + ('John Gardner'), + ('Fred Vargas'), + ('Irene B. Brand'), + ('Stanley Appelbaum'), + ('Adam Barrow'), + ('Andrews'), + ('Andrew Calcutt'), + ('Alex Flinn'), + ('Ian Small'), + ('Michael Bernstein'), + ('Scott Robertson'), + ('Nick Danziger'), + ('Mary Kay Ash'), + ('Marguerite Kelly'), + ('Elia Parsons'), + ('Rebecca Hirsh'), + ('Judith Zimmer'), + ('Durell Godfrey'), + ('Patricia A. McKillip'), + ('Heinrich Boll'), + ('Christel Rost'), + ('Damien Simonis'), + ('Daniel Robinson'), + ('Tony Wheeler'), + ('Cyril Collard'), + ('Brigitte Chabrol'), + ('Valérie Malfoy'), + ('Jean-Noël Schifano'), + ('Magnan'), + ('Eudora Welty'), + ('Vladimir Radunsky'), + ('Bagram Ibatoulline'), + ('Shelley Moore Thomas'), + ('Jennifer Plecas'), + ('Chris Hedges'), + ('Julien Gracq'), + ('Jerome Klapka Jerome'), + ('Fédor Dostoïevski'), + ('Alain Besançon'), + ('Albert Mousset'), + ('Montherlant'), + ('Pam Frankau'), + ('Richard Firstman'), + ('Jamie Talan'), + ('Harold Robbins'), + ('Sam A. Donaldson Jr.'), + ('Christine McGuire'), + ('Carla Norton'), + ('Allan Eckert'), + ('Jack Womack'), + ('Pierre Pelot'), + ('Anne Damour'), + ('Stéfan Zweig'), + ('Dominique Autrand'), + ('Clifford D. Simak'), + ('Jerome K. Jerome'), + ('Georges Simenon'), + ('Rose-Marie Makino-Fayolle'), + ('L. Sprague De Camp'), + ('Lin Carter'), + ('August William Derleth'), + ('Sr. Mary Jean Dorcy'), + ('J.N. Williamson'), + ('Gary Null'), + ('Sharan Newman'), + ('A E Van Vogt'), + ('Brady'), + ('Earl B. McElfresh'), + ('Adam Braver'), + ('Piers Paul Read'), + ('Sydney Omarr'), + ('Carl Payne Tobey'), + ('Leonard Barden'), + ('Charles H. Goren'), + ('Carole Bellacera'), + ('Philipp Vandenberg'), + ('Jeffery Hudson'), + ('Birgit Schönberger'), + ('Zoë Jenny'), + ('A. L. Haskett'), + ('Mary Jane Maffini'), + ('Judith Arnold'), + ('Barbara Keiler'), + ('Christopher Paul Curtis'), + ('Karin Fossum'), + ('Joseph Garcia'), + ('Burton White'), + ('Yitta Halberstam'), + ('Judith Leventhal'), + ('Bernie S. Siegel'), + ('Matt Ridley'), + ('Thomas K. Landauer'), + ('Syed Hussein Alatas'), + ('Jennifer Worick'), + ('Kerry Colburn'), + ('Anne Higgins'), + ('Millie Stamm'), + ('Susan Ostrov Weisser'), + ('Millie Criswell'), + ('Heather McNamara'), + ('Lois Keith'), + ('E.D. Hirsch Jr.'), + ('Mark Fuhrman'), + ('N Collins'), + ('Alan Titchmarsh'), + ('Milligan'), + ('Stephen Fry'), + ('Jonathan Miller'), + ('Dawna Walter'), + ('Mark Franks'), + ('Betty Bethards'), + ('Jaclyn Grace'), + ('James V. Hart'), + ('Alan Aldrich'), + ('D H Lawrence'), + ('Fiona Walker'), + ('Lance Armstrong'), + ('Sally Jenkins'), + ('Pam Young'), + ('Peggy Jones'), + ('Sena Jeter Naslund'), + ('Roy Blount Jr.'), + ('Edward Abbey'), + ('Redmond O''Hanlon'), + ('Evan Harris'), + ('Shang Chun Shu Cun'), + ('Matthew Bunson'), + ('Page Bryant'), + ('Dennis Wholey'), + ('Jerome Charyn'), + ('Barry Sears'), + ('Bill Lawren'), + ('Christian De La Huerta'), + ('Matthew Fox'), + ('Jim Morrison'), + ('Christine Wiltz'), + ('Michael Thomas Ford'), + ('Tommy Tune'), + ('Stuart Smalley'), + ('Martin'), + ('Ken Sprague'), + ('Elan Golomb'), + ('Alice A. Bailey'), + ('Susan Forward'), + ('Jim Davis'), + ('Anne Fine'), + ('Jean Booker'), + ('Alice Mary Connally Fisk'), + ('Michael Pollan'), + ('Phyllis Richman'), + ('Valerie Wolzien'), + ('Bobbie Hinman'), + ('Millie Snyder'), + ('Beverly West'), + ('Nancy Peske'), + ('Jean Ure'), + ('Karin Yapalater'), + ('Nancy Star'), + ('JoAnna Carl'), + ('Laura Van Wormer'), + ('Ginna Gray'), + ('Helen R Myers'), + ('Maira Kalman'), + ('Tibor Kalman'), + ('Steven Heller'), + ('Frank O. Braynard'), + ('Todd Strasser'), + ('Pamela E. Apkarian-Russell'), + ('Michael Wallis'), + ('Suzanne Wallis'), + ('Alex Kotlowitz'), + ('Michael Savage'), + ('Candice Bergen'), + ('George Mair'), + ('G. Garfield Crimmins'), + ('Ann Linnea'), + ('Barbara Sher'), + ('Barbara Smith'), + ('Fritz Eichenberg'), + ('Phoebe McPhee'), + ('Stephen Fuentes'), + ('Melanie Munnell'), + ('Wilson Rawls'), + ('Margaret Peterson Haddix'), + ('Willo Davis Roberts'), + ('Barry Denenberg'), + ('Gary A. Lippincott'), + ('Tom Brokaw'), + ('J. Lawler'), + ('Fred Mustard Stewart'), + ('Phil McGraw'), + ('C. M. Woodhouse'), + ('Rudolfo Anaya'), + ('Anne Barone'), + ('V. C. Andrews'), + ('John Forbes'), + ('Kay Allenbaugh'), + ('Sonja Massie'), + ('Susan Campbell Bartoletti'), + ('Jeffrey D. Greene'), + ('Stuart Friedman'), + ('Joe Kraynak'), + ('Cassandra King'), + ('Jodi Picoult'), + ('Stephen L. Carter'), + ('Anchee Min'), + ('Jillian Medoff'), + ('Lisa Gornick'), + ('Betsy Carter'), + ('Kyle Mills'), + ('Martin J. Smith'), + ('Thomas French'), + ('Nancy Taylor Rosenberg'), + ('Shelby Yastrow'), + ('Stanley Pottinger'), + ('Amanda Ashley'), + ('David Wiltse'), + ('Sonia Icilyn'), + ('McCoy Judi'), + ('Charlaine Harris'), + ('Suzanne Forster'), + ('Alton Gansky'), + ('Philip Kerr'), + ('Stef Ann Holm'), + ('Julian Symons'), + ('Better Homes And Gardens Books'), + ('Linda Hallam'), + ('Swami Prabhavananda'), + ('Frederick Manchester'), + ('G & R Publishing'), + ('Claire Folkard'), + ('Abby Kanter'), + ('Raymond Pierson'), + ('Phil Gross'), + ('Mike Gross'), + ('Nilo Cruz'), + ('Reed Arvin'), + ('David Rosenfelt'), + ('Giles Blunt'), + ('Stephen Frey'), + ('Austin Clarke'), + ('Sue Henry'), + ('James W. Hall'), + ('Virginia Lanier'), + ('James Grippando'), + ('Stephen J. Cannell'), + ('Stephen Cannell'), + ('Robin Cook'), + ('Shane And Sheridan'), + (' Jim. Screenplay Based On The B'), + ('Hugh Cook'), + ('Alien Stevens'), + ('Jim DeFelice'), + ('John J. Nance'), + ('Matthew Reilly'), + ('William Kent Krueger'), + ('Michael Macdonald Mooney'), + ('Allen Drury'), + ('Michael Darkow'), + ('Maria Elena Morgan'), + ('Murray Bail'), + ('Jim Karas'), + ('Gay Hendricks'), + ('Marilyn Vos Savant'), + ('Curl'), + ('Martin V. Riccardo'), + ('Jana Marcus'), + ('Katherine Ramsland'), + ('Ruth Maran'), + ('Gail Tsukiyama'), + ('Jeanne Kalogridis'), + ('Andrew X. Pham'), + ('Catharina Day'), + ('Malika Oufkir'), + ('Michele Fitoussi'), + ('Ros Schwartz'), + ('Mckay Jenkins'), + ('Patricia Wynn'), + ('William Cohen'), + ('Theresa Foy DiGeronimo'), + ('Michael Alexander'), + ('Kjersti Hoff Baez'), + ('Ray Grigg'), + ('Peter Albano'), + ('Rod R. Butterworth'), + ('Mickey Flodin'), + ('Andrea Boeshaar'), + ('Jane Orcutt'), + ('Ashley McConnell'), + ('Margaret; Williams'), + (' Michael; Hickman'), + (' Tracy; Copyr'), + ('R.A. Salvatore'), + ('Lucretius'), + ('Ronald E. Latham'), + ('John Godwin'), + ('Horace'), + ('W. G. Shepherd'), + ('Peter Mansfield'), + ('Paul Halpern'), + ('James Lowder'), + ('John Keegan'), + ('G. Lee Bowie'), + ('Robert C. Solomon'), + ('Meredith W. Michael'), + ('Bill Pogue'), + ('Rachel Bell'), + ('Howard Peiper'), + ('David Norbrook'), + ('H. R. Woudhuysen'), + ('Alice Notley'), + ('L. E. Modesitt Jr.'), + ('Rosemary Edmonds'), + ('Gerard Del Re'), + ('Patricia Del Re'), + ('Taisha Abelar'), + ('Carlos Casteneda'), + ('Michele Jamal'), + ('Duong Thu Huong'), + ('Phan Huy Duong'), + ('Nina McPherson'), + ('Emrys Jones'), + ('Michael Tanner'), + ('John T. Lawrence'), + ('Frederick Busch'), + ('Ian Kellam'), + ('Nien Cheng'), + ('Annie Dillard'), + ('Ann Hood'), + ('P J O''Rourke'), + ('Antonio Skarmeta'), + ('Katherine Silver'), + ('ERNEST HEMINGWAY'), + ('Pat Barker'), + ('Martina Devlin'), + ('Sandra Felton'), + ('Rose Marie Nichols McGee'), + ('Maggie Stuckey'), + ('Linda Yang'), + ('Alice Borchardt'), + ('Marcelle Karp'), + ('Debbie Stoller'), + ('Inga Muscio'), + ('Caroline G. Mercer'), + ('Kylie Adams'), + ('Sherryl Woods'), + ('Christie Ridgway'), + ('Patricia Cabot'), + ('Donna Gillespie'), + ('Beverly Brandt'), + ('Lori Schiller'), + ('Amanda Bennett'), + ('John Milton'), + ('Christopher Ricks'), + ('Upton Sinclair'), + ('Morris Dickstein'), + ('Matthew J. Bruccoli'), + ('Edmund Wilson'), + ('Harold M. Silverman'), + ('Henry Blackaby'), + ('Richard Blackaby'), + ('Silver RavenWolf'), + ('Merlin Stone'), + ('Matthew Ward'), + ('Christopher Hammond'), + ('John Hawkes'), + ('Lindsay Faith Rech'), + ('Steffie Hall'), + ('Elizabeth Young'), + ('Paul Rogat Loeb'), + ('Alex Kava'), + ('Alan Lightman'), + ('Josephine Tey'), + ('Todd Komarnicki'), + ('Tina Wainscott'), + ('Stephen Wright'), + ('Joanne M. Dochterman PhD RN FAAN'), + ('Gloria M. Bulec'), + ('Elizabeth Jolley'), + ('D. C. Brod'), + ('John R. Riggs'), + ('Gerald Petievich'), + ('Charlotte MacLeod'), + ('Jonathan Havard'), + ('Neil Shulman'), + ('Nei Shulman'), + ('Peter Bebrandt'), + ('Joseph Wambaugh'), + ('Ed Greenwood'), + ('Ursula LeGuin'), + ('Richard Hescox'), + ('Kirk Douglas'), + ('Glenn Dakin'), + ('Jeffrey Robinson'), + ('Pierre Barbéris'), + ('Richard Bohringer'), + ('Andreï Kourkov'), + ('Nathalie Amargier'), + ('Christine Angot'), + ('Zoé Valdés'), + ('Djian'), + ('W & M Hoffer'), + ('Vitaliano Brancati'), + ('Patrick Creagh'), + ('Patrick Suskind'), + ('Susan Hubbard'), + ('Thomas Noguchi'), + ('A. Lyons'), + ('Andrea Camilleri'), + ('Stephen Sartarelli'), + ('Patrick Mccabe'), + ('J.P. Carasso'), + ('Alan Vanneman'), + ('Jean Hager'), + ('Odo Hirsch'), + ('Glen Cook'), + ('Jonathan Barry'), + ('Jim Silke'), + ('Rebecca Bradley'), + ('Terry McGarry'), + ('Mindy L. Klasky'), + ('Nancy McKenzie'), + ('Karin Lowachee'), + ('K.W. Jeter'), + ('Vivian Schilling'), + ('W. Steven Brown'), + ('Sharon Schulze'), + ('Stanley Smith'), + ('Tom Bullimore'), + ('Derrick Niederman'), + ('Hy C'), + ('Elizabeth McGregor'), + ('Ron Koertge'), + ('Miguelanxo Prado'), + ('Margaret Sayers Pe'), + ('David Calder'), + ('Stieg Retlin'), + ('Pam Munoz Ryan'), + ('Gerald L. Holmes'), + ('Tasha Tudor'), + ('Dean Hughes'), + ('Janet Quin-Harkin'), + ('Jane Harrington'), + ('Joan Aiken'), + ('Pat Marriott'), + ('Robert C. O''Brien'), + ('Zena Bernstein'), + ('Nick West'), + ('Colleen O''Shaughnessy McKenna'), + ('Katherine Coville'), + ('James Fenimore Cooper'), + ('Irene Hunt'), + ('Felice Holman'), + ('Paul O. Zelinsky'), + ('Lisa Norby'), + ('Fernado Fernandez'), + ('Rick North'), + ('Mildred D. Taylor'), + ('Robin Lawrie'), + ('Leo And Diane Dillon'), + ('Katherine Neville'), + ('Monica Hughes'), + ('Cameron Dokey'), + ('Ellen Reymes'), + ('Deborah Gregory'), + ('Eliza Willard'), + ('Dave McKean'), + ('Andrew Matthews'), + ('Girling'), + ('Otto M. Frank'), + ('Mirjam Pressler'), + ('Susan Mas'), + ('Stedman Graham'), + ('Michel Houellebecq'), + ('Frank Wynne'), + ('Deborah Morgan'), + ('Daniel W. Patterson'), + ('Jean Ritchie'), + ('Matt Groening'), + ('Josie Lloyd'), + ('Emlyn Rees'), + ('Germaine Greer'), + ('Henry Root'), + ('Paul M. Angle'), + ('Florence Scovel-Shinn'), + ('Terry Alford'), + ('Diana Culbertson'), + ('Tim Wynne-Jones'), + ('Brian Doyle'), + ('Karleen Bradford'), + ('Martha Brooks'), + ('Diane Schoemperlen'), + ('Christina Schwarz'), + ('Molly Jong-Fast'), + ('Shirley Jackson'), + ('Rosemary Sutcliff'), + ('Julie Reece Deaver'), + ('Marilyn Butler'), + ('Andre Norton'), + ('Jacqueline Park'), + ('Lindsey Davis'), + ('Peter Tremayne'), + ('Anne Eliot Crompton'), + ('Marcus Stone'), + ('John Bowen'), + ('Jules Watson'), + ('Harris'), + ('Angela Doherty'), + ('Nicholas Guild'), + ('Kim Lewis'), + ('Frank McDonald'), + ('Dell Shannon'), + ('Rachel Billington'), + ('Iain Finlay'), + ('B. Wilson'), + ('Ashland Price'), + ('Rosemary Edghill'), + ('Emma Blair'), + ('Matthew Kneale'), + ('Marian Thurm'), + ('John Peterman'), + ('Cynthia Borris'), + ('Martin Waddell'), + ('Patrick Benson'), + ('Ole Risom'), + ('Sandra Boynton'), + ('P.D. Eastman'), + ('David Icke'), + ('Rex Gibson'), + ('N. Kantaris'), + ('P.R.M. Oliver'), + ('Dave Stern'), + ('Marge Piercy'), + ('Craig Nova'), + ('Mark Le Fanu'), + ('Ulrich Holbein'), + ('Mark Childress'), + ('Rudolf Hermstein'), + ('Gemma Alexander'), + ('Patricia Lewin'), + ('Marti Leimbach'), + ('Romain Gary (Émile Ajar)'), + ('Donald J. Sobol'), + ('Ted Enik'), + ('Sushil Jajodia'), + ('V. S. Subrahmanian'), + ('Steve Cunningham'), + ('Judson Rosebush'), + ('Donnie O''Quinn'), + ('Stephen Cosgrove'), + ('Jesse Liberty'), + ('Mark Cashman'), + ('Christa Krüger'), + ('Doris Dörrie'), + ('Fanny Morweiser'), + ('Colum McCann'), + ('Donna W. Cross'), + ('Wolfgang Neuhaus'), + ('Jan Mehlum'), + ('Jessica Andersen'), + ('Leonard Wolf'), + ('A. N. Roquelaure'), + ('Barbara Hambly'), + ('Prosper Mérimée'), + ('Dietrich Schwanitz'), + ('Cora Stephan'), + ('Gregor Sander'), + ('André Gide'), + ('Raimund Theis'), + ('Christine Stemmermann'), + ('Pierre Joffroy'), + ('Ulrich Kunzmann'), + ('Stefan Zweig'), + ('Friederike Mayröcker'), + ('Alejo Carpentier'), + ('Anneliese Botond'), + ('Willy Breinholst'), + ('Alan Durband'), + ('Jean-Jacques Sempe'), + ('Deborah Moggach'), + ('Shulamit Lapid'), + ('Christopher Dolley'), + ('Elinor Lipman'), + ('Lucius Shepard'), + ('J. K. Potter'), + ('Robert Kelley'), + ('Walter Pruncel'), + ('Klaus Müller'), + ('Roberto Calasso'), + ('Peter Fitzsimons'), + ('Zecharia Sitchin'), + ('Penthouse International'), + ('Margaret Weis And Tracy Hickman'), + ('Louise Voss'), + ('Meredith Ann Pierce'), + ('Kathryn M. Drennan'), + ('W.S. Merwin'), + ('Phil Hirsch'), + ('Brian Buniak'), + ('Deborah Scott'), + ('David Poyer'), + ('Barbara Seuling'), + ('Rebecca O''Connell'), + ('Hilary Jenkins'), + ('Glen Grant'), + ('Harry Crews'), + ('Mike Miller'), + ('Jan Brett'), + ('Jerry W. Ward'), + ('Tenaya Darlington'), + ('Douglas Pagels'), + ('Patricia Wayant'), + ('Gary D. Chapman'), + ('Larry Burkett'), + ('The Editors Of People Magazine'), + ('The Editors Of Peop'), + ('The Editors Of Entertainment Weekly'), + ('The Editors Of'), + ('Joe Stahlkuppe'), + ('Stormie Omartian'), + ('Rita Dove'), + ('Jewel'), + ('Nikki Giovanni'), + ('Tony Medina'), + ('Louis Reyes Rivera'), + ('Sonia Sanchez'), + ('David Lehman'), + ('Diana Barron'), + ('Kirby Record'), + ('Steven Ferry'), + ('Tanya Petrovna'), + ('Jean Krueger'), + ('Joel Brouwer'), + ('Donald W. Hayward'), + ('Jeannette Eyerly'), + ('Bill Buchanan'), + ('Kandy Radzinski'), + ('Jim Shepard'), + ('George C. Williams'), + ('William Shakespeare'), + ('A. R. Braunmuller'), + ('Stephen Or'), + ('Joel Spring'), + ('Rene Chartrand'), + ('Patrice Courcelle'), + ('Bill Younghusband'), + ('Philip Haythornthwaite'), + ('Bryan Fosten'), + ('Richard Holmes'), + ('George Guidall'), + ('Dave Marinaccio'), + ('Ralph Steadman'), + ('Allison Pollack Alexander'), + ('Jill Henry'), + ('Nancy Block'), + ('Janet Leigh'), + ('Rachelle Nelson'), + ('Charles R. Swindoll'), + ('Steve Shagan'), + ('Alex Beam'), + ('Chris Kenry'), + ('G.G. Marquez'), + ('Charlotte Bingham'), + ('Don Peppers'), + ('Martha Rogers'), + ('Michael Beres'), + ('Kay'), + ('Mary Kay Simmons'), + ('Kathryn Lynn Davis'), + ('P D James'), + ('Marsha Boulton'), + ('Bill H. Gates'), + ('Bryan Cholfin'), + ('Edith Pargeter'), + ('Katharine Kerr'), + ('Hugh Sebag-Montefiore'), + ('Michael Lee West'), + ('Lurlene McDaniel'), + ('Richard Evans'), + ('Rosie Rushton'), + ('Dermot Bolger'), + ('Pamela Stephenson'), + ('Ingrid Weaver'), + ('Richard N. Bolles'), + ('Gwen Gotsch'), + ('Judy Torgus'), + ('William Sears'), + ('Martha Sears'), + ('Vicki Iovine'), + ('T. Berry Brazelton'), + ('American College Of Obstetricians And Gynecologist'), + ('Marvin S. Eiger'), + ('Sally Wendkos Olds'), + ('Wendy Wray'), + ('Roe'), + ('Leslie Dunkling'), + ('Robin Norwood'), + ('Christina Baker Kline'), + ('Gale Pryor'), + ('Kate White'), + ('Jan Guillou'), + ('Lieselotte Kolanoske'), + ('Michel Faber'), + ('Shelomoh Di-Nur'), + ('Philip Simpson'), + ('Tony Earley'), + ('J. P. Donleavy'), + ('James Patrick Donleavy'), + ('Elliot Banfi'), + ('Stuart David'), + ('Gay Courter'), + ('James R. Kincaid'), + ('Beryl Bainbridge'), + ('Kirsten Bakis'), + ('Bellow'), + ('David Almond'), + ('Chinua Achebe'), + ('Cheryl Ann Costa'), + ('Sage'), + ('Manjusha Pawagi'), + ('Leanne Franson'), + ('Thomas E. O''Hara'), + ('Stephen Sondheim'), + ('James Lapine'), + ('Jim Currie'), + ('Lauren Slater'), + ('John M. Gottman'), + ('Joan DeClaire'), + ('Frederick Lenz'), + ('Scott S. Smith'), + ('Erika Lopez'), + ('Cynthia MacGregor'), + ('Gary Mechler'), + ('Steven P. Shelov M.D.'), + ('Vicki Lansky'), + ('Jack Lindstrom'), + ('Barry Reed'), + ('Thomas Swan'), + ('Martin Clark'), + ('P. J. Tracy'), + ('Tim Dolin'), + ('Harley Hahn'), + ('Cindy West'), + ('Mateu'), + ('Justine Fontes'), + ('Omar Rayyan'), + ('Alice Alfonsi'), + ('Bill Wallace'), + ('Carol Wallace'), + ('Jean Van Leeuwen'), + ('Adam Rapp'), + ('Nicole Luiken'), + ('Nancy Munger'), + ('William Heffernan'), + ('Norman Kelley'), + ('Ruth Birmingham'), + ('Paullina Simons'), + ('Miriam Therese Winter'), + ('Sid Kirchheimer'), + ('Tom Magliozzi'), + ('Greg Proops'), + ('Richard Lederer'), + ('Richard Howard'), + ('Henry W. Stine'), + ('B. B. Jordan'), + ('Leora Krygier'), + ('David Thompson'), + ('Diane Hoh'), + ('Hayden Mead'), + ('Kevin Jackson'), + ('Tim Lebbon'), + ('Steven Feinberg'), + ('Garfield Reeves-Stevens'), + ('Richard L. McGuire'), + ('Robert Poe'), + ('Charles Lamb'), + ('Paul B. Thompson'), + ('Tonya R. Carter'), + ('Robert S. Kane'), + ('Helen Keller'), + ('D. H. Lawrence'), + ('Elise Juska'), + ('MaranGraphics'), + ('G. K. Chesterton'), + ('Michael Foreman'), + ('Robert Van De Castle'), + ('Alan M. Dershowitz'), + ('Mikal Gilmore'), + ('Thomas Moore'), + ('Kathy Cronkite'), + ('Gertrude Stein'), + ('M. C. Hargreaves'), + ('Eric Hansen'), + ('Harpo Marx'), + ('Rowland Barber'), + ('Simon Louvish'), + ('Arturo Pérez-Reverte'), + ('Sonia Soto'), + ('Margaret Costa'), + ('Aylmer Maude'), + ('E.B. Greenwo'), + ('Miriam Toews'), + ('Patrick Taylor'), + ('Fred Stenson'), + ('Irene Gut Opdyke'), + ('Jennifer Armstrong'), + ('Ahdaf Soueif'), + ('Aleksandr Solzhenitsyn'), + ('Catherine Simmons Niven'), + ('Shyam Selvadurai'), + ('John McGahern'), + ('D. M. Thomas'), + ('Clyde Edgerton'), + ('Grace MacCarone'), + ('Kris Lowe'), + ('Grace Catalano'), + ('Jan Berenson'), + ('Rosalind Noonan'), + ('Suzy Becker'), + ('Gertrude Warner'), + ('Jimmy Buffett'), + ('Ellie Kay'), + ('Maud Hart Lovelace'), + ('Lois Lenski'), + ('Jaime O''neill'), + ('Rick Carroll'), + ('Robert L. Clifton'), + ('Alan M. Dahms'), + ('Alan Furst'), + ('Johnny Cash'), + ('Jonny Cash'), + ('Patrick Carr'), + ('Nicholas Gage'), + ('Bette Bao Lord'), + ('Blue Balliett'), + ('Tom Raabe'), + ('Jack Schaefer'), + ('Donna Kae Nelson'), + ('Debra Kang Dean'), + ('Colette Inez'), + ('Ross Talarico'), + ('Merle Kessler'), + ('William Molnar'), + ('June Callwood'), + ('Daniel Wallace'), + ('Robert Bonazzi'), + ('John Howard Griffin'), + ('John Howard Gri'), + ('Terri Blackstock'), + ('Beverly Lewis'), + ('Pauline Nestor'), + ('Alma Bond'), + ('Alma H. Bond'), + ('Jose Eugenio Soares'), + ('Maud Ellmann'), + ('Scott Gardiner'), + ('John Harvey'), + ('Rochelle Majer Krich'), + ('Alma Marceau'), + ('Heinz Zwack'), + ('Larry Berger'), + ('Dahlia Lithwick'), + ('Indu Sundaresan'), + ('E. L. Doctorow'), + ('Donald E. Westlake'), + ('Chet Williamson'), + ('Peter Robinson'), + ('Robert W. Walker'), + ('Earlene Fowler'), + ('Karen Kijewski'), + ('Lynda La Plante'), + ('Mark T. Sullivan'), + ('Susan Wittig Albert'), + ('Stuart M. Kaminsky'), + ('Linda Davies'), + ('Sandra West Prowell'), + ('Deborah Crombie'), + ('Marianne Wesson'), + ('Jeremiah Healy'), + ('J. F. Freedman'), + ('Kate Wilhelm'), + ('Wolf Haas'), + ('Walter'), + (' Sr. Scott'), + ('Anne Newlands'), + ('Dave Allan'), + ('Matt Kingdon'), + ('Kris Murrin'), + ('Daz Rudkin'), + ('David Hussey'), + ('D E Hussey'), + ('Eddie Obeng'), + ('Storm Constantine'), + ('Sue Bishop'), + ('Ali Smith'), + ('Margaret Burt'), + ('Muriel Spark'), + ('Marcia Willett'), + ('Susan Dunlap'), + ('Cathie Pelletier'), + ('Joan Johnston'), + ('Amos Oz'), + ('Nicholas De Lange'), + ('Nancy Geary'), + ('Jacqueline Navin'), + ('Robert Half'), + ('Anne Ursu'), + ('Constance Allen'), + ('Pat Relf'), + ('Nancy Stevenson'), + ('Mary Pope Osborne'), + ('Sal Murdocca'), + ('Delores Fossen'), + ('Gail Gaymer Martin'), + ('Charlotte Douglas'), + ('Harry H. Harrison Jr.'), + ('J.M. Dillard'), + ('David Loughery'), + ('Keith Sharee'), + ('Sharon Green'), + ('A. C. Crispin'), + ('Joss Whedon'), + ('Mary E. Hunt'), + ('Anais Nin'), + ('Wendy Pini'), + ('Richard Pini'), + ('Paul Cowan'), + ('Rachel Cowan'), + ('Charles Grant'), + ('Elizabeth Levy'), + ('Bill Basso'), + ('Gary Hogg'), + ('Agnes Von Kurowsky'), + ('Henry Serrano Villard'), + ('Ernest He'), + ('Katherine Dunn'), + ('Brigitte Aubert'), + ('Susanne Staatsmann'), + ('Irvin D. Yalom'), + ('Uda Strätling'), + ('Richard Laliberte'), + ('Napoleon Hill'), + ('James Bovard'), + ('Harry Browne'), + ('William E. Simon'), + ('Linus Torvalds'), + ('David Diamond'), + ('Ann Durell'), + ('Marilyn Sachs'), + ('Carl Norac'), + ('Claude K. Dubois'), + ('Gustav Meyrink'), + ('Sam McBratney'), + ('Mikhail Bulgakov'), + ('Mirra Ginsburg'), + ('Sean Russell'), + ('John Nichols'), + ('Chuck Barris'), + ('Barbara Haveland'), + ('Louise Gherasim'), + ('McBain'), + ('Holly Halverson'), + ('Dave Davidson'), + ('Beryl Peters'), + ('Frankie'), + ('Isaak Babel'), + ('Corneille'), + ('Tim Guenard'), + ('Patrick Besnier'), + ('Hakan Nesser'), + ('Christel Hildebrandt'), + ('Ruth Warrick'), + ('Don Preston'), + ('Shannon Waverly'), + ('K. N. Casper'), + ('Mackie Shilstone'), + ('Susan Floyd'), + ('Tom Wilson'), + ('Ann Evans'), + ('Darlene Graham'), + ('Lynnette Kent'), + ('Peggy Nicholson'), + ('Tara Taylor Quinn'), + ('Jennifer Greene'), + ('Jackie Merritt'), + ('Claire Foshee'), + ('Alisa M. Hoffman'), + ('Arnold Robbins'), + ('Bill Phillips'), + ('Michael D''Orso'), + ('Lass Small'), + ('Kathryn Shay'), + ('Stella Bagwell'), + ('Lindsay McKenna'), + ('Brenda Novak'), + ('Jack L. Chalker'), + ('Georges Passelecq'), + ('Bernard Suchecky'), + ('Linda Nevins'), + ('Jonathan Swift'), + ('Sasha Miller'), + ('Julie Brady'), + ('Stewart Lee Allen'), + ('Roger Housden'), + ('Pierre Desproges'), + ('Jonathan Ames'), + ('Peter C. Newman'), + ('Lien Chao'), + ('Jim Wong-Chu'), + ('T S Eliot'), + ('Rae Lawrence'), + ('Mladen Sutej'), + ('Catherine George'), + ('Marion Lennox'), + ('Carol North'), + ('Anne Lindsay'), + ('Ian S. Graham'), + ('Edmund H. Volkart'), + ('Satya Das'), + ('Jennifer Chiaverini'), + ('Arthur C. Clarke (Introduction)'), + ('Weigle'), + ('Joyce Milton'), + ('Larry Schwinger'), + ('Sarah Vowell'), + ('Deborah Simmons'), + ('Rafik Schami'), + ('Hans Hermann'), + ('Nikolaus Hansen'), + ('Carlos Castillo'), + ('Martin Scott'), + ('Jenny Randles'), + ('Will Gatti'), + ('Hal B. Pickle'), + ('Royce L. Abrahamson'), + ('Alice Steinbach'), + ('Douglas Clegg'), + ('Patrick Chabris Christopher;Wolff'), + ('Mike Baker'), + ('Walter M. Miller Jr.'), + ('H. P. Lovecraft'), + ('John Jude Palencar'), + ('DEAN KOONTZ'), + ('U.S. Senate Committee On Commerce'), + ('Ricia Mainhardt'), + ('Keith R.A. DeCandido'), + ('Louise Rafkin'), + ('Randolph Hogan'), + ('Norman Manea'), + ('Henry Roth'), + ('Edith T. Mirante'), + ('Katherine Stone'), + ('Abraham. VERGHESE'), + ('Edward DeAngelo'), + ('Diana Ossana'), + ('Janice Gray Kolb'), + ('Bella Bathurst'), + ('Aimee Bender'), + ('Sara Davidson'), + ('Kristin Hunter Lattany'), + ('People For The Ethical Treatment Of Anim'), + ('Dennis Cooper'), + ('MARLIS WEBER'), + ('Donald Harstad'), + ('Rosalyn McMillan'), + ('Carol Smith'), + ('Cecil Foster'), + ('Susan S. Kelly'), + ('David Storey'), + ('Janice Graham'), + ('Carolly Erickson'), + ('Terence M. Green'), + ('Robert Olen Butler'), + ('Lam Kam Chuen'), + ('Stanley Wynett'), + ('Lucy Mead'), + ('Dawn Miller'), + ('Jay Mohr'), + ('Katrina Kenison'), + ('L B Greenwood'), + ('Jeff Selis'), + ('Patrick McDonnell'), + ('Mark Beckloff'), + ('Dan Dye'), + ('Hollis Gillespie'), + ('Charles'), + ('Gina B. Nahai'), + ('Ngaio Marsh'), + ('Judy Alsager'), + ('Silas House'), + ('Anne Vipond'), + ('Alan Nakano'), + ('William Kelly'), + ('mic Defreita'), + ('Paige Davis'), + ('Loren Lester'), + ('Sheryl Bernstein'), + ('Marti'), + ('Nick. Hornby'), + ('Robert Kirschner'), + ('Peter (Narrator) MacNichol'), + ('Tim Curry'), + ('Jill Tanner'), + ('Alexandra Ripley'), + ('Dixie Carter'), + ('James P. Womack'), + ('Daniel T. Jones'), + ('Helen Fielding'), + ('Susan Donovan'), + ('Patricia Heaton'), + ('James Wasserman'), + ('Joao Aguiar'), + ('Peter S. Beagle'), + ('Rand Flem Ath'), + ('Daniel Easterman'), + ('Alex Kerr'), + ('アン 松本・スチュワート'), + ('Anne Matsumoto Stewart'), + ('Joseph MacAnthony'), + ('S. N. Lewitt'), + ('Caiseal Mor'), + ('Jill Gregory'), + ('Doris Elaine Fell'), + ('Joe Coomer'), + ('Joan Elliott Pickart'), + ('Kristen Heitzmann'), + ('Jeff Gomez'), + ('Lois Henderson'), + ('Lawrence Naumoff'), + ('Sigmund Brouwer'), + ('Sherrie Lord'), + ('Kathleen Morgan'), + ('Lois Erickson'), + ('John Brady'), + ('Thomas O''Hara'), + ('Kenneth S. Janke Sr.'), + ('Glen David Gold'), + ('Paul Meier'), + ('Pamela Browning'), + ('Tova Mirvis'), + ('Rochelle Krich'), + ('Jane Shapiro'), + ('Bruce Chatwin'), + ('Barry Clifford'), + ('Phil Georgeff'), + ('Jason Wilson'), + ('Joe Queenan'), + ('Quintin Jardine'), + ('Kit Castle'), + ('Cara Saylor Polk'), + ('August Strindberg'), + ('Michael Robinson'), + ('Persia Woolley'), + ('Aidan Chambers'), + ('Shelley Smith'), + ('John Buxton Hilton'), + ('Brenda Maddox'), + ('Bartholomew Gill'), + ('Sang Hun Lee'), + ('Giles Gordon'), + ('Dr. Paul Carus'), + ('Henry Lincoln'), + ('Leonard Foley'), + ('Jovian Weigel'), + ('Patti Normile'), + ('Dr. Frances Cress Welsing'), + ('Aleister Crowley'), + ('Roger Sherman Loomis'), + ('Jeanne Avery'), + ('Lama Surya Das'), + ('Breena Clarke'), + ('Javier Marías'), + ('Alfred Bester'), + ('Richard Laymon'), + ('Avi'), + ('Ulli Günther'), + ('Herbert Günther'), + ('Conor Cruise O''Brien'), + ('Ursula K. LeGuin'), + ('Jim Hightower'), + ('Cheryl Landon'), + ('Alexa Hennig Von Lange'), + ('Dennis Danvers'), + ('Stanley Bing'), + ('Carlene Thompson'), + ('Krentz'), + ('Raymond E. Feist'), + ('Danelle Harmon'), + ('Debbie Travis'), + ('Rebecca Lickiss'), + ('Claire Berlinski'), + ('Karyn Monk'), + ('Casey Claybourne'), + ('Kim Barnes'), + ('Stephen Hunter'), + ('Roisin McAuley'), + ('Jean Hanff Korelitz'), + ('Janet Laurel'), + ('Hilary Hemingway'), + ('Jeffrey P. Lindsay'), + ('Craig Holden'), + ('Iris Murdoch'), + ('Vincent Van Gogh'), + ('Ronald De Leeuw'), + ('Arnold J. Pomeran'), + ('Philip Smith'), + ('Nahum N. Glatzer'), + ('Dante Alighieri'), + ('John Ciardi'), + ('Zilpha Keatley Snyder'), + ('Steven Spielberg'), + ('Elizabeth Hand'), + ('Tracie Peterson'), + ('Judith McCoy Miller'), + ('Paula Volsky'), + ('Erich Loest'), + ('Sir Francis Chichester'), + ('Jonathan Raban'), + ('Scott B. Smith'), + ('Shirley Temple Black'), + ('Daniel Clowes'), + ('Walter James Miller'), + ('Mark Morris'), + ('William Wordsworth'), + ('Don Kurtz'), + ('George C. Andrews'), + ('Safian'), + ('Victoria Looseleaf'), + ('Eugene Stiles'), + ('George Sand'), + ('Rosemary Lloyd'), + ('Richard Wrigley'), + ('Jay Leno'), + ('A.L. Alexander'), + ('Daniel Defoe'), + ('Mort Gale'), + ('Mary Sanford Laurence'), + ('C.G. Jung'), + ('W. S. Dell'), + ('Cary F. Baynes'), + ('Gail Harvey'), + ('Rebecca Shannonhouse'), + ('Rizzoli'), + ('Magnus Magnusson'), + ('Hermann Palsson'), + ('Paul Edwards'), + ('Doug Peacock'), + ('Miles Harvey'), + ('Gay Talese'), + ('Carl Stiner'), + ('Deborah E. Crombie'), + ('Ph.d.'), + (' Phillip C. Mcgraw'), + ('David Martin'), + ('Elizabeth Marshall Thomas'), + ('Greta K. Nagel'), + ('Rick Mofina'), + ('Marilu Henner'), + ('Laura Morton'), + ('Anthony Robbins'), + ('Tom Clancy'), + ('A. Roger Merrill'), + ('Rebecca R. Merri'), + ('Anne McGee-Cooper'), + ('Jane B Burka'), + ('Joan Brady'), + ('Perri O''Shaughnessy'), + ('Carola Salisbury'), + ('Katherine Paterson'), + ('Mary Lewis'), + ('Hickm'), + ('James Hadley Chase'), + ('Anne Rampling'), + ('Bonnie Gabriel'), + ('Eileen Dreyer'), + ('Laura Childs'), + ('Stephen W. Frey'), + ('Henry Petroski'), + ('Margaret Mitchell'), + ('M.C. Beaton'), + ('Peter Kline'), + ('Thornton Wilder'), + ('Carol Kruckeberg'), + ('John Connolly'), + ('John Steven Gurney'), + ('John Steven '), + ('Lee Davis Willoughby'), + ('George Cable'), + ('Laura McNeal'), + ('Nathaniel Benchley'), + ('Arnold Lobel'), + ('Steve Vance'), + ('Lori Aurelia Williams'), + ('Donald R. Gallo'), + ('D M Thomas'), + ('Angela Malone'), + ('Tessa De Loo'), + ('Ruth Levitt'), + ('Julian Rathbone'), + ('Guy Gavriel Kay'), + ('Babette Cole'), + ('Brian Hollingsworth'), + ('Arthur Cook'), + ('Jennie Hanks'), + ('Bill Peet'), + ('Monty Roberts'), + ('Poul Anderson'), + ('Edith Layton'), + ('Elizabeth A. Scarborough'), + ('Elizabeth'), + ('Christine Feehan'), + ('Elsie Clews Parsons'), + ('Barbara Ardinger'), + ('Brian Sibley'), + ('Joseph Flynn'), + ('Stuart Palmer'), + ('J. Orde'), + ('Linda Barnes'), + ('North American Bear Co.'), + ('Nicolas Fargues'), + ('Edith Hamilton'), + ('Edwin Abbott'), + ('Jacob And Wilhelm Grimm'), + ('Children''s Dover Thrift'), + ('Miranda Lundy'), + ('Carol Highsmith'), + ('Ted Landphair'), + ('Linda Jennings'), + ('Winston Groom'), + ('Todd Cramer'), + ('Doug Munson'), + ('Michael C. Eberhardt'), + ('Thomas Keneally'), + ('Susan Collin Marks'), + ('Martin Lings'), + ('Laura Siegel Gilberg'), + ('O Park'), + ('Donald D. Walsh'), + ('Galway Kinnell'), + ('William Bolitho'), + ('David Bevington'), + ('David Scott Ka'), + ('Anatolian Treasures'), + ('Rita Murphy'), + ('Tony Tanner'), + ('Edward Ziegler'), + ('Ken Warren'), + ('L. Neil Smith'), + ('Simon R. Green'), + ('Jemiah Jefferson'), + ('Peggy Payne'), + ('Robert R. McCammon'), + ('Paul Harding'), + ('Tom Shroder'), + ('Michael Dorris'), + ('Penelope Smith'), + ('Henry Rollins'), + ('Charles G. Waugh'), + ('Boston Teran'), + ('Janette Oke'), + ('Glenn Dabbs'), + ('Laura Shaine Cunningham'), + ('Meagan McKinney'), + ('Beverly Bird'), + ('Robert Kroetsch'), + ('Caroline Roe'), + ('Susan Crosby'), + ('Wendy Markham'), + ('Barbara Holland'), + ('D. W. Harding'), + ('Edward Stewart'), + ('Francis Roe'), + ('Slavomir Rawicz'), + ('Deborah Howe'), + ('James Howe'), + ('Alan Daniel'), + ('John Peterson'), + ('Roberta Carter Clark'), + ('Lori Wick'), + ('Judith Pella'), + ('Lauraine Snelling'), + ('Penelope J. Stokes'), + ('Wendy Etherington'), + ('Velma Wallis'), + ('Jahnna N Malcolm'), + ('Paul Howard'), + ('Amy Keating Rogers'), + ('E.S. Mooney'), + ('Hom And Hom '), + ('John Maddox'), + ('Stephen Jay Gould'), + ('Jane Goodall'), + ('Phillip Berman'), + ('Pauline Reage'), + ('Molly Giles'), + ('Dan H. Laurence'), + ('Feliks Topolsk'), + ('Christopher Bigsby'), + ('Webster''s Editors'), + ('Desmond Morton'), + ('William Blake'), + ('Russell Baker'), + ('T. Davis Bunn'), + ('George Macdonald'), + ('Helen Stratton'), + ('Arthur Hughes'), + ('Jack David'), + ('Robert Lecker'), + ('John Harvey Jones'), + ('Jeremy Dronfield'), + ('Clare Boylan'), + ('JOHN LE CARRE'), + ('DBC Pierre'), + ('Linda Rosenkrantz'), + ('Pamela Redmond Satran'), + ('David Milstead'), + ('Mindy Pennybacker'), + ('Aisha Ikramuddin'), + ('New Woman'), + ('Hubert Selby Jr.'), + ('Joan Jacobs Brumberg'), + ('Rebecca Wood'), + ('Harry Gersteneker'), + ('Joanna Stratton'), + ('Arthur M Schlesinger'), + ('Stephanie Doyle'), + ('Tanya Michaels'), + ('Gary Provost'), + ('Emma McLaughlin'), + ('Bunkie Lynn'), + ('Rick Baldwin'), + ('Brian Stewart'), + ('Kathleen Tessaro'), + ('Amy Blackmarr'), + ('Mark Donnelly'), + ('Chr'), + ('Jennifer Finney Boylan'), + ('Liane Moriarty'), + ('Brian Masters'), + ('Maggie Gibson'), + ('William Storandt'), + ('Parker C. Hinter'), + ('Diamond Studio'), + ('Kim Ostrow'), + ('Kirsten Larsen'), + ('Peggy Parish'), + ('Wallace Tripp'), + ('Barbara Siebel Thomas'), + ('Lynn Sweat'), + ('Gertrude Cha Warner'), + ('Dirk Gringhuis'), + ('Gertrude C. Warner'), + ('Dick Gringhuis'), + ('Alan Tiegreen'), + ('Jan Naimo Jones'), + ('Paul Casale'), + ('Paul Witcover'), + ('Sparkle Hayter'), + ('Martin Amis'), + ('Robert Barnard'), + ('Robert Clark'), + ('Celeste Bradley'), + ('B. M. Gill'), + ('Lisa Jewell'), + ('Robert C. Atkins'), + ('Geri Larkin'), + ('Geraldine A. Larkin'), + ('Kim Wilkins'), + ('Benjamin DeMott'), + ('Herberth E. Herlitschka'), + ('Peter Handke'), + ('Walter Kappacher'), + ('Daniel Glattauer'), + ('Edward Lee'), + ('Aljean Harmetz'), + ('Marianne Fredriksson'), + ('Marlisa Szwillus Dr'), + ('Kirk Martin'), + ('Nicole Thomas'), + ('P. D. Cacek'), + ('Karen Rose'), + ('Perri Klass'), + ('Laura Moriarty'), + ('Erik Wilson'), + ('Steve Gerlach'), + ('Simon Clark'), + ('Jack Ketchum'), + ('Jose Vasconcelos'), + ('Julio Cortazar'), + ('Federico Garcia Lorca'), + ('John L'' Heureux'), + ('Judith Minthorn Stacy'), + ('Monica Wood'), + ('J Lisle'), + ('Frank D''Arcy'), + ('George Edward Stanley'), + ('Linda Graves'), + ('Nancy Moser'), + ('Eleanor Estes'), + ('Barbara Mujica'), + ('Freda Warrington'), + ('Stanley Corngold'), + ('James Welch'), + ('Mia Yun'), + ('Martin Hallett'), + ('Jerry Wasserman'), + ('James Curtis'), + ('Clarke'), + ('Linda Singer'), + ('Dimitrios Roussopoulos'), + ('Nancy Waxler-Morrison'), + ('Joan M. Anderson'), + ('Elizabeth R'), + ('George Woodcock'), + ('Harry H. Hiller'), + ('H Krahn'), + ('James Kinsley'), + ('M. K. Jo'), + ('Valerie Solanas'), + ('Katharine Burdekin'), + ('Daphne Patai'), + ('Kate Millett'), + ('M Gilliland'), + ('Jean Stead'), + ('Brian Fawcett'), + ('Joy Kogawa'), + ('Irving Wallace'), + ('Marion Elliot'), + ('Masahiro Chatani'), + ('Geoffrey Butcher'), + ('Diana Bryan'), + ('Jonathan Kozol'), + ('Maria Grazia Swan'), + ('Craig Joseph Danner'), + ('Kathryn Harrison'), + ('Jamie Suzanne'), + ('Richard David Carson'), + ('Novle Rogers'), + ('Nell Nichols'), + ('Kathryn Larson'), + ('Stearn Robinson'), + ('Tom Corbett'), + ('Laurence J. Lafleur'), + ('Teddy Lenderman'), + ('Janet Lynnford'), + ('Melanie Walz'), + ('Anthony B Herbert'), + ('Nero Blanc'), + ('Arthur Ransome'), + ('Lian Hearn'), + ('Eric Idle'), + ('James Dickey'), + ('Siegfried Lenz'), + ('Paule Marshall'), + ('Noah Gordon'), + ('Philippa Gregory'), + ('Max Barry'), + ('Edgar Rice Burroughs'), + ('Garry D. Kilworth'), + ('Iain Johnstone'), + ('John Cleese'), + ('Janet Berliner'), + ('George Guthridge'), + ('Mervyn Peake'), + ('Quentin Crisp'), + ('Walter J. Lord'), + ('Walter Lord'), + ('Dietrich Von Hildebrand'), + ('John Long'), + ('John'), + (' Long'), + ('University Of Navarre'), + ('John R. Lee'), + ('Virginia Hopkins'), + ('Munro Leaf'), + ('Robert Lawson'), + ('William Armstrong'), + ('Eleanor Coerr'), + ('Mark Shulman'), + ('Dandi Daley Mackall'), + ('Andy And Illustrated By Andy Stiles Rector'), + ('Bill Lorencz'), + ('Marcia Thornton Jones'), + ('Suzy Kline'), + ('Beve'), + ('Barb Schwarz'), + ('R.l. Stine'), + ('Catherine Clark'), + ('Paul McCusker'), + ('R.A. Montgomery'), + ('Zander Hollander'), + ('David Schulz'), + ('Allen Edgar'), + ('Bill Myers'), + ('Joseph Layden'), + ('Joe Layden'), + ('Jean Estoril'), + ('Vivien Alcock'), + ('Mark R. Littleton'), + ('Miriam A.'), + (' Etal. Lademan'), + ('Ingri D''Aulaire'), + ('Edgar Parin D''Aulaire'), + ('John Grisewood'), + ('Kathy M. Douglas'), + ('Ivan Aralica'), + ('Ann Moura'), + ('S. J. Gaither'), + ('Micheal Canada'), + ('Kala Pajeon'), + ('Ketz Pajeon'), + ('Marion Dane Bauer'), + ('Beck Underwood'), + ('Joe Buff'), + ('Michael Bishop'), + ('Denise Hamilton'), + ('Lance Morrow'), + ('Boris Starling'), + ('Junius Podrug'), + ('Sean Stewart'), + ('Steven Spruill'), + ('Patricia Tichenor Westfall'), + ('Nicolas Freeling'), + ('Joan D. Vinge'), + ('Kathryn Marie Cocquyt'), + ('Thomas Fensch'), + ('Naomi Nash'), + ('Dr Joyce Brothers'), + ('Patrick O''Brian'), + ('William H. Keith'), + ('Walter Farley'), + ('Theresa Monsour'), + ('Victor Kelleher'), + ('Richard Sherbaniuk'), + ('Pam Houston'), + ('Karin Cook'), + ('Eileen Christelow'), + ('James Cross Giblin'), + ('Laura Dower'), + ('Jim Steck'), + ('Daniel Goleman'), + ('Ken Kesey'), + ('Harry Harrison'), + ('Elizabeth Ann Scarborough'), + ('Gwendolyn Mitchell Diaz'), + ('Jane Haddam'), + ('David Spencer'), + ('Frances A. Miller'), + ('Christopher Stasheff'), + ('R. A. Montgomery'), + ('Paul Granger'), + ('Charles Osborne'), + ('Valerie Harper'), + ('Janet E. Lapp'), + ('Will Steger'), + ('Carrie Fisher'), + ('Alicia Mundy'), + ('Douglas H. Ubelaker'), + ('Henry Scammell'), + ('John H. Davis'), + ('May Sarton'), + ('Claudia O''Keefe'), + ('Patricia Deane Wigington'), + ('Stephen Manes'), + ('David Quammen'), + ('Dick Drew'), + ('Michael Whelan'), + ('Sharon Shinn'), + ('Michelle Roehm'), + ('Cees Nooteboom'), + ('Page Smith'), + ('Marilyn Diamond'), + ('G. Cabrera Infante'), + ('Guillermo Cabrena Infante'), + ('Brian L. Weiss'), + ('Truddi Chase'), + ('Josh Koppel'), + ('Frank Conroy'), + ('Thomas Mohr'), + ('Andreas Eschbach'), + ('Liaty Pisani'), + ('Jim Crace'), + ('Walter Ahlers'), + ('Robert Hültner'), + ('Barbara Wood'), + ('Verena C. Harksen'), + ('Jack Finney'), + ('Federica De Cesco'), + ('Federica DeCes'), + ('Uwe Anton'), + ('Judith Hermann'), + ('Svenja Becker'), + ('Kate Douglas'), + ('Robin Raab'), + ('Douglas Niles'), + ('Bett Williams'), + ('Patricia Frances Rowell'), + ('Catherine Spencer'), + ('Gordon W. Prange'), + ('Donald M. Goldstein'), + ('Katherine V.'), + ('Richard Kauffmann'), + ('Field'), + ('Courtlandt Dixon Barnes Bryan'), + ('Edith M. Pavese'), + ('Evan S. Connell'), + ('Ethan Coen'), + ('Jill Robinson'), + ('L. Lee Wilson'), + ('Tom Snyder'), + ('Mike Wilkins'), + ('Ken Smith'), + ('Doug Kirby'), + ('Sandra Gurvis'), + ('Jane Stern'), + ('Michael Stern'), + ('Michael Stern Rn'), + ('Jane Browne'), + ('Stephen Jones'), + ('William Lewis Herndon'), + ('Gary Kinder'), + ('Charles Baxter'), + ('Johanna Roebas'), + ('Cynthia Heimel'), + ('Rob Payne'), + ('Emily Barr'), + ('Debra Kent'), + ('Andrew Mark'), + ('Ambrose Bierce'), + ('John B Jr Cobb'), + ('Oliver L. North'), + ('Joe Musser'), + ('David Delman'), + ('Robert Rankin'), + ('Sharon Kahn'), + ('Joanne Pence'), + ('Annie Griffin'), + ('(none)'), + ('Dolores Johnson'), + ('Alex Pate'), + ('Hanna De Heus'), + ('Helen Bianchin'), + ('Stephen Goldin'), + ('Rona Jaffe'), + ('Lauren F. Winner'), + ('Robert K. Johnston'), + ('Susan Newman Ph.D'), + ('Tony McGowan'), + ('Christopher Awdry'), + ('S. Hughes'), + ('Linda Crew'), + ('Frank Lauria'), + ('Louisa Luna'), + ('Charlotte Breuer'), + ('Margaret Forster'), + ('Roseli Bontjes Van Beek'), + ('Saskia Bo'), + ('Ilona Maria Hilliges'), + ('Peter Hilliges'), + ('Ulrike Schweikert'), + ('Stan Nicholls'), + ('Emily Brontï¿1/2'), + ('Patsy Stoneman'), + ('Lonely Planet'), + ('Lisa Johnson'), + ('Gail Anderson-Dargatz'), + ('Lacretelle'), + ('Martin Luther King'), + ('Deborah Spungen'), + ('Steve Bobrowski'), + ('Kjartan Flogstad'), + ('Kjartan Flgstad'), + ('Nadia M. Christen'), + ('Paul Bowles'), + ('Lewis Perdue'), + ('Susan Howatch'), + ('Michael Azerrad'), + ('Robert Quackenbush'), + ('James Guimo'), + ('Joanna Elm'), + ('Paula Sheridan'), + ('Noel Hynd'), + ('Nora Lam'), + ('Helen Van Slyke'), + ('Aola Vandergriff'), + ('Pete Earley'), + ('Chris Rock'), + ('Oscar Williams'), + ('Henry David Thoreau'), + ('Pat McGrath Avery'), + ('Lisa Brez'), + ('Archer'), + ('L. Robert Kohls'), + ('DR. MIRIAM STOPPARD'), + ('Haven Kimmel'), + ('Harry Stein'), + ('Teri Seidman'), + ('Sherry Suib Cohen'), + ('Mario Buatta'), + ('Francine Rivers'), + ('Diane Noble'), + ('Elizabeth Cox'), + ('Carly Phillips'), + ('Joseph Bedier'), + ('Hilaire Belloc'), + ('Ebury Press'), + ('Laurice Elehwany'), + ('Patricia Hermes'), + ('Caroline B Cooney'), + ('Florence Temko'), + ('Martha Williamson'), + ('Jerome Lawrence'), + ('Robert E. Lee'), + ('Edgar Lee Masters'), + ('Marlene Rimler'), + ('Douglas Scott'), + ('Barbara Robinette Moss'), + ('Barclay Shaw'), + ('Claudia Dain'), + ('Mallory Kane'), + ('Gwen Hunter'), + ('John Sparks'), + ('Carol K. Mack'), + ('Dinah Mack'), + ('James Carroll'), + ('Robert M. Thomas'), + ('John R. Levine'), + ('Margaret'), + (' Levine Young'), + ('Margaret Lev'), + ('Marcy Blum'), + ('Laura Fisher Kaiser'), + ('Publishing Lyrick'), + ('Dick Sutphen'), + ('Lorraine Hansberry'), + ('Frederick Douglass'), + ('Peter J. Gomes'), + ('Sharon O''Brien'), + ('Jeffery Deaver'), + ('Pauline Tai'), + ('Michael Fredrickson'), + ('Goddard'), + ('Marty Becker D.V'), + ('Chris Rowthorn'), + ('Alex Landragin'), + ('Kate Daly'), + ('Jeff Woodman'), + ('Alexander Marshall'), + ('Tonke Dragt'), + ('Liesel Linn'), + ('Hector Malot'), + ('Richard Alewyn'), + ('Johannes Piron'), + ('Hanjo Lehmann'), + ('Alexandre Jardin'), + ('Alex Haley'), + ('Ruth Adam'), + ('Susan Trott'), + ('Mary Keil'), + ('Mineko Iwasaki'), + ('Nina Killham'), + ('Jane Holtz Kay'), + ('James Goldman'), + ('The Editors Of Consumer Reports'), + ('E.L. Konigsburg'), + ('Douglas Hill'), + ('Louise Bergmann DuMont'), + ('Rita Konig'), + ('David Lowenherz'), + ('Corinna Belz'), + ('Regina Schilling'), + ('Edward Koren'), + ('Charlotte Kasl'), + ('Stephen McCauley'), + ('James Long'), + ('Margery Allingham'), + ('Alexandra Baumrucker'), + ('Mandalyn Kaye'), + ('Maxine Hong Kingston'), + ('Bryce Courtenay'), + ('Frank Viviano'), + ('Archer Mayor'), + ('Lisa Tawn Bergren'), + ('B. J. Hoff'), + ('Yvonne Navarro'), + ('Nicholas Van Pelt'), + ('Russell Lee'), + ('Jean-Christophe Grangé'), + ('Ronald Sanders'), + ('Daniel C. Dennett'), + ('F. David Peat'), + ('Robert H. March'), + ('Lydia Alix Fillingham'), + ('Moshe Susser'), + ('Terence McKenna'), + ('Michael Ventura'), + ('Bonnie Klomp Stevens'), + ('Stevens'), + ('Fred Hiatt'), + ('Peter Hart'), + ('Fairness And Accuracy In Reporting'), + ('Robe'), + ('Dennis Miller'), + ('Amy Sonnie'), + ('Norence A. Nelson'), + ('Marion Luna Brem'), + ('Rosie O''Donnell'), + ('Apolo Anton Ohno'), + ('Nancy Ann Richardson'), + ('O''Lanso Gab'), + ('Jean Genet'), + ('Rolf Potts'), + ('Leigh Riker'), + ('Sylvie Kurtz'), + ('Joanna Wayne'), + ('Susan Gable'), + ('Kay David'), + ('Janice Macdonald'), + ('Margaret Watson'), + ('Darlene Scalera'), + ('Carrie Weaver'), + ('Lo Scarabeo'), + ('Antonella Platano'), + ('Laura Tuan'), + ('Suzanne Fields'), + ('Alex Trebek'), + ('Peter Barsocchini'), + ('Merv Griffin'), + ('Anne Moyer Halpin'), + ('Drake Douglas'), + ('Jane Lyle'), + ('Carol Bowman'), + ('David Harrington'), + ('Nancy Garen'), + ('Donald R. Harvey'), + ('Gary Smalley'), + ('Greg Smalley'), + ('Ken Greenhall'), + ('Walter Sorrells'), + ('John Le Breton'), + ('Monte Farber'), + ('Elke Heidenreich'), + ('Maryanne Stahl'), + ('Lily Burana'), + ('Paula Fox'), + ('James Clavell'), + ('Werner Peterich'), + ('Johann David Wyss'), + ('Nicholson Baker'), + ('Carol Gardner'), + ('Anouchka Grose Forrester'), + ('Edna Ferber'), + ('M. A. Harper'), + ('Tamar Myers'), + ('Judith Duncan'), + ('Lisa Legarde'), + ('Laurie Lisle'), + ('Barrie Dolnick'), + ('Michael Leahy'), + ('William Kritlow'), + ('Dara Joy'), + ('Nelle McFather'), + ('Lind'), + ('Karen Hawkins'), + ('George Bowering'), + ('Angela Bowering'), + ('Michael Matthews'), + ('Mary Wesley'), + ('Tel Franklin'), + ('Elsa Walsh'), + ('Robert Amoroso'), + ('Wendell Berry'), + ('Parker J. Palmer'), + ('Gordon W Green'), + ('Jerry Scott'), + ('Rick Kirkman'), + ('Colette Dowling'), + ('Richard Green'), + ('Sherab Chodin Kohn'), + ('Geoffrey Wall'), + ('Geoff'), + ('Naomi Wolf'), + ('Nino Ricci'), + ('Meera Nair'), + ('Phillip Keller'), + ('J. I. M. Stewart'), + ('David E Fear'), + ('Allan Sutton'), + ('Andre Gayot'), + ('Vernor Vinge'), + ('Iain M. Banks'), + ('Laura Anne Gilman'), + ('Jennifer Heddler'), + ('Kathryn Harvey'), + ('William L. Deandrea'), + ('Matthew Deandrea'), + ('James Preller'), + ('Jamie Smith'), + ('Betty MacDonald'), + ('Susan Napier'), + ('Gloria Whelan'), + ('Linda Spalding'), + ('Eileen Wilks'), + ('Amy J. Fetzer'), + ('David William Ross'), + ('Cindy Gerard'), + ('Bel Kaufman'), + ('Jill Rubalcaba'), + ('Pierre Berton'), + ('Lars Klander'), + ('Mary Pyefinch'), + ('Gary Blackwood'), + ('Stephen Alcorn'), + ('Kristin Aileen Motlagh'), + ('Thor Heyerdahl'), + ('L.E. Blair'), + ('Rohinton Mistry'), + ('Kay-Marie James'), + ('Stuart Dybek'), + ('Charles Dickinson'), + ('Caeia March'), + ('Eric Hoffer'), + ('Donna Masini'), + ('OG MANDINO'), + ('Robert Angell'), + ('Walter Macken'), + ('Rhonda Findling'), + ('Norman Vincent Peale'), + ('Ellen Blake Dr.'), + ('Annelie Ortmanns-Suzuki'), + ('Jürgen Sta'), + ('Ron Rash'), + ('Robert Inman'), + ('Michael Morris'), + ('Hozy Rossi'), + ('Pearl Baker'), + ('Floyd A. O''Neil'), + ('Elizabeth Inness-Brown'), + ('Thomas H. Johnson'), + ('David Petersen'), + ('Ann Zwinger'), + ('Edith H. Beer'), + ('Susan Dworkin'), + ('David Liss'), + ('Sarah Stone'), + ('Steven Emerson'), + ('Rosamund Stone Zander'), + ('Benjamin Zander'), + ('Terrence Mann'), + ('Paula Huntley'), + ('Annabel Laity'), + ('Anhua Gao'), + ('Sandra Day O''Connor'), + ('Steven Bochco'), + ('Dennis Franz'), + ('Bill Lee'), + ('Mike Romano'), + ('Gail Twersky Reimer'), + ('Judith A. Kates'), + ('Xinran Xinran'), + ('Rosamond Halsey Carr'), + ('Ann Howard Halsey'), + ('Gioconda Belli'), + ('Kristina Cordero'), + ('Amanda Stern'), + ('Mary Craig'), + ('Diane DiPrima'), + ('Michael Hogan'), + ('A. Scott Berg'), + ('Deborah Davis'), + ('Paolo Maurensig'), + ('Howard Zinn'), + ('Anthony Arnove'), + ('Marie Vassiltchikov'), + ('Richard Lindberg'), + ('Elizabeth Ammons'), + ('Janice Hudson'), + ('Melissa Senate'), + ('Anna Salter'), + ('Cheryl Peck'), + ('Danzy Senna'), + ('Pat White'), + ('Seth Godin'), + ('Sue Welfare'), + ('Lynn Morris'), + ('Natasha Usher'), + ('Julie Ortolon'), + ('Patricia Volk'), + ('Lynn Emery'), + ('Kris Kumar'), + ('Africa Fine'), + ('Joanne Fluke'), + ('Malinda Terreri'), + ('Jane Isenberg'), + ('Shirley Rou'), + ('Donna Hill'), + ('Rochelle Alers'), + ('Brenda Jackson'), + ('Francis R'), + ('Donald Spoto'), + ('Mark Spragg'), + ('Margaret Cole'), + ('Mignon Eberhart'), + ('Cornell Woolrich'), + ('Mar'), + ('Stephen Leacock'), + ('Jack Hodgins'), + ('Edited By E. F. Watling'), + ('Anthony Weston'), + ('Joyce Meyer'), + ('William G Dyer'), + ('Steve Bennett'), + ('Ruth Bennett'), + ('Gerald N. Lund'), + ('Dorothy Parker'), + ('Colleen Bresse'), + ('Regina Barreca'), + ('Atul Gawande'), + ('Harriet Doerr'), + ('Jo-Ann Mapson'), + ('Tracy Quan'), + ('Donna Morrissey'), + ('N. Scott Momaday'), + ('Walter D. Edmonds'), + ('Palden Jenkins'), + ('Alan Kaufman'), + ('Ceil Cleveland'), + ('Charles H. Buck'), + ('Edward Gorman'), + ('April Christofferson'), + ('Lynn Armistead McKee'), + ('Winnie Smith'), + ('Loraine Despres'), + ('Paula Huston'), + ('Brett Simon'), + ('Joel Myerson'), + ('Daniel Shealy'), + ('Doris Lessing'), + ('Jane Langton'), + ('Bette Greene'), + ('Benedict Cosgrove'), + ('Paul Scott'), + ('Elizabeth Villars'), + ('Doris May Lessing'), + ('James Lees-Milne'), + ('Barbara Pym'), + ('S. Morgenstern'), + ('John Howlett'), + ('Helen Ashfield'), + ('S. A. Kramer'), + ('Alexander Lenard'), + ('Noel Streatfeild'), + ('Irene N. Watts'), + ('Lawrence Weschler'), + ('Laurel Ames'), + ('Nancy Martin'), + ('Pat Warren'), + ('Elizabeth Manz'), + ('William X. Kienzle'), + ('Marc Fisher'), + ('Mike Lynch'), + ('Barbara Watson'), + ('Sheila Stern'), + ('Pegi Handley'), + ('Tim Green'), + ('Eileen Curristine'), + ('Ellen Byerrum'), + ('Michael Jahn'), + ('Vallee'), + ('DK Publishing'), + ('Josephine Evetts-Secker'), + ('Helen Cann'), + ('Judith Reichman'), + ('Phyllis Stanley'), + ('Miltinnie Yih'), + ('Zondervan'), + ('Susan J. Samtur'), + ('Cynthia Rowland McClure'), + ('Cynthia Heald'), + ('Richard Anthony D''Ambrosio'), + ('Ben Hamper'), + ('Roger Von Oech'), + ('Merrill Markoe'), + ('Billy Wade Roebuck'), + ('William D. Hardy'), + ('Kim Johnson Gross'), + ('Jeff Stone'), + ('Sidney W. Mintz'), + ('Warren J. Ludlow'), + ('Nancy Landrum'), + ('Peter Van Der Veer'), + ('Carole Berry'), + ('Harold R. Lacy'), + ('Larry Bond'), + ('Harold Coyle'), + ('Nancy Appleton'), + ('Mary Gordon'), + ('David Leavitt'), + ('Mark Mitchell'), + ('Bill Zehme'), + ('Barbara M. Morris'), + ('Ann K. Fisher'), + ('Brian Hall'), + ('William A. Fletcher'), + ('Richard S. Wheeler'), + ('Vallie Flet'), + ('John S. Littell'), + ('Mary W. Littell'), + ('Clive Powell-Williams'), + ('Scott Alexander'), + ('Larry Karaszewski'), + ('John Edward'), + ('Martin Harry Greenberg'), + ('Larry Segriff'), + ('Kevin Murphy'), + ('Lee Martin'), + ('Virginia Cary Hudson'), + ('Ken Grimwood'), + ('Ltd. Icon Group'), + ('Fiona Buckley'), + ('Charlotte Perkins Gilman'), + ('Elaine R. Hedges'), + ('Alison Habens'), + ('James Trefil'), + ('Elaine Hedges'), + ('Michael Malone'), + ('Michel Foucault'), + ('Robert Hurley'), + ('Susan Dunn'), + ('Joan Mathews Larson'), + ('Julia Ross'), + ('Sarah Dunant'), + ('Laura Schlessinger'), + ('Deborah Larsen'), + ('Homer'), + ('Richmond Lattimore'), + ('Judy Sheindlin'), + ('Jay Bakker'), + ('Sue Monk Kidd'), + ('Dan Mahoney'), + ('Suskind'), + ('Eric Newby'), + ('Francis'), + ('Karen Rose Smith'), + ('Molly O''Keefe'), + ('Melanie Jackson'), + ('Dennis William Hauck'), + ('Ken Beck'), + ('Jim Clark'), + ('Julia M. Pitkin'), + ('Shannon McKenna'), + ('Cynthia Wright'), + ('Martha Hix'), + ('Gail Link'), + ('E. Merritt'), + ('Jessica Wulf'), + ('Carolyn Davidson'), + ('Susan Kay Law'), + ('Lauren Wilde'), + ('Joanne Redd'), + ('Deborah Martin'), + ('Nicole Jordan'), + ('Deloras Scott'), + ('Deborah Camp'), + ('J. S. Borthwick'), + ('Bill Buford'), + ('Ron Powers'), + ('Siegfried Engelmann'), + ('Phyllis Haddox'), + ('Elaine Bruner'), + ('Michele Jaffe'), + ('Kenison'), + ('Margery Williams'), + ('Neil Waldman'), + ('Carl G. Jung'), + ('R. F. C. Hull'), + ('Gregory Mcdonald'), + ('Pope John Paul II'), + ('Margaret Bunson'), + ('Yves Savourel'), + ('Chet Ensign'), + ('Howard Richler'), + ('C. S. Forester'), + ('John Waller'), + ('Theoni Pappas'), + ('Andrew Vachss'), + ('Ann Coulter'), + ('Howard Roughan'), + ('Jr. Walter M. Miller'), + ('Ann Marie Winstom'), + ('Jean Brashear'), + ('Janice Kay Johnson'), + ('Janice Johnson'), + ('Ann Lawrence'), + ('BELINDA BARNES'), + ('Lisa Childs'), + ('Frances Housden'), + ('Valerie Parv'), + ('Anne West'), + ('Nina George'), + ('Ute Ehrhardt'), + ('Sneaky Pie Brown'), + ('Stanislaw Lem'), + ('Klaus Staemmler'), + ('Walter Tiel'), + ('Allan & Barbara Pease'), + ('Bernard Malamud'), + ('Hall'), + ('M. M. Ragz'), + ('Sarah Louise Delany'), + ('Amy Hill Hearth'), + ('Annie Elizabet'), + ('Colette'), + ('Antonia White'), + ('Steve Kluger'), + ('Betty Miller'), + ('Charles Osgood'), + ('Graciela Ascarrunz Gilman'), + ('Marian Zwerling Sugano'), + ('Graciela Ascarrunz De Gilman'), + ('Marian Zwerling Sugan'), + ('Arturo Cuyas'), + ('Sheila Ballantyne'), + ('Arthur Zeiger'), + ('Walter Krämer'), + ('Götz Trenkler'), + ('James Alan Gardner'), + ('Lisa Tuttle'), + ('Carlton Smith'), + ('Thomas Guillen'), + ('Béatrice Durand'), + ('Olga Nolla'), + ('Robert Holdstock'), + ('Antoine Chalvin'), + ('François Rouiller'), + ('Arthur Rimbaud'), + ('Carlos Castaneda'), + ('Augusto Monterroso'), + ('Julia Reed'), + ('Michael Pye'), + ('Alice Elliott Dark'), + ('Debi Gliori'), + ('Peter Kussi'), + ('Rose G. Mandelsberg'), + ('Katie Maxwell'), + ('John O''Hara'), + ('Stewart Home'), + ('J. T. LeRoy'), + ('Edward Carey'), + ('Beth Gutcheon'), + ('Gabrielle Williams'), + ('Kate Dicamillo'), + ('Timothy B. Ering'), + ('Kelly Link'), + ('Maryanne Raphael'), + ('Kevin Hart'), + ('D. C. R. A.'), + ('Norbert Puszkar'), + ('Sigurd Engel'), + ('Dorothy Cannell'), + ('Thomas Feibel'), + ('Robert Gentile'), + ('Anne L. McKinnon'), + ('James Taylor'), + ('Stuart/Jacobson.'), + ('Jane R. Hirschmann'), + ('Carol H. Munter'), + ('Doris Mortman'), + ('Terrence Higgins Trust'), + ('Lyndall Stein'), + ('Stephen Mayes'), + ('Karen Haber'), + ('William Cutrer'), + ('Sandra Glahn'), + ('Daniel Hart'), + ('Gemma O''Connor'), + ('Inge Leipold'), + ('Jean-Pierre Lefebvre'), + ('Walter Robinson'), + ('Mat Gleason'), + ('Tom Patenett'), + ('Bert Archer'), + ('Tonino Benacquista'), + ('Caroline Graham'), + ('Hugh Miller'), + ('Kieran Prendiville'), + ('D. A. Benton'), + ('Mark Melnicove'), + ('Marguerite Yourcenar'), + ('Grace Frick'), + ('Textes Et Litterature'), + ('Pierre Salomon'), + ('N.c. Wyeth'), + ('James W. Brown'), + ('Lawrence D. Stokes'), + ('Cyril Connelly'), + ('Jean Racine'), + ('Theodore Taylor'), + ('Gwenda Kaczor'), + ('Gerhard Roth'), + ('Ed Regis'), + ('James M. Powell'), + ('Larry J. Hughes'), + ('Stephen J. Bigelow'), + ('Blockson'), + ('Terese Ramin'), + ('Bronwyn Jameson'), + ('Katharine Hepburn'), + ('Day'), + ('Paul Rabinow'), + ('Hugh Campbell'), + ('John Dolan'), + ('Robin Law'), + ('Alec Fisher'), + ('Nicholas Everitt'), + ('Norman Solomon'), + ('Walter Hamilton'), + ('Ethan Hawke'), + ('Joseph Francis Fletcher'), + ('Ginu Kamani'), + ('Pema Chodron'), + ('The Dalai Lama'), + ('Jeffrey Hopkins'), + ('Alex Kennedy'), + ('Philippe Ames'), + ('Nguyen Thi Hop'), + ('Nguye'), + ('Dinty W. Moore'), + ('Ve N. Thubten Chodron'), + ('Kirill Bulychev'), + ('Theodore Sturgeon'), + ('Mikhail Emtsev'), + ('Eremei Parnov'), + ('A.W. Bouis'), + ('Biederman'), + ('Virginia Rich'), + ('Dorothy Leigh Sayers'), + ('Jonathan Gash'), + ('Heller'), + ('Mei Ng'), + ('Sarah Shankman'), + ('Swami Rudrananda'), + ('Karma Lekshe Tsomo'), + ('Rachel Timms'), + ('Michael Capuzzo'), + ('Madeleine Albright'), + ('Marina Warner'), + ('Jean-Bernard Pouy'), + ('Lawrence Schiller'), + ('Michael F. Roizen M.D.'), + ('B. Dobbins'), + ('T. Cole-Whittaker'), + ('William Greider'), + ('Richard; Atwater'), + (' Florence Atwater'), + ('Robert Lawrence'), + ('Khalil Gibran'), + ('Halil Cibran'), + ('E T A Hoffmann'), + ('Ludwig Wittgenstein'), + ('Thomas Bernhard'), + ('C.David Heymann'), + ('Malte Krutzsch'), + ('Charles Kingsley'), + ('Sujata Massey'), + ('Sonja Hauser'), + ('Pablo Tusset'), + ('Susanna Mende'), + ('Wallace Hildick'), + ('L. M. Montgomery'), + ('Bebe Faas Rice'), + ('Stella Cameron'), + ('David Dalton'), + ('Janwillem Van De Wetering'), + ('Aaron Copland'), + ('Alan Rich'), + ('Betty Ren Wright'), + ('TA Barron'), + ('Wendy Anderson Schulz'), + ('Judy Shasek'), + ('David J. Pelzer'), + ('Mildred Marmur'), + ('Mary McCarthy'), + ('Jerome F. Smith'), + ('Delano Ames'), + ('John M. Del Vecchio'), + ('Joan M. Hummel'), + ('Desiderius Erasmus'), + ('Martin Luther'), + ('Eve Ensler'), + ('Witold Rybczynski'), + ('Lynn M. Constantine'), + ('Suzanne Scott'), + ('Samuel B. Griffith'), + ('B. H. Liddell Hart'), + ('Plato (translated & With An Introduction By Hu'), + ('Rosemary Sassoon'), + ('G. Se Briem'), + ('Ainslie T. Embree'), + ('William Theodore De Bary'), + ('Jean-Jacques Rousseau'), + ('Maurice Cranston'), + ('Cory Doctorow'), + ('Oxford'), + ('Tessa Krailing'), + ('Barrons Educational Series'), + ('Barron''s'), + ('The New York Public Library'), + ('John Ayto'), + ('Charles Harrington Elster'), + ('William Zinsser'), + ('Sue Young'), + ('Peter Mark Roget'), + ('Merriam-Webster'), + ('Stephen Elliott'), + ('Leslie T. Sharpe'), + ('Irene Gunther'), + ('Richard Marek'), + ('Arthur Plotnik'), + ('Margaret Shertzer'), + ('Jr. William Strunk'), + ('Brenda Spatt'), + ('Janet Sternberg'), + ('Janet Sternburg'), + ('Joseph M. Williams'), + ('Jean M. Fredette'), + ('William Knowlton Zinsser'), + ('Thuan L. Thai'), + ('Hoang Lam'), + ('Mario Vargas Llosa'), + ('Milorad Pavic'), + ('Microsoft Corporation'), + ('Alfred Appel Jr.'), + ('Gourmet Magazine Editors'), + ('Leanne Ely'), + ('Jonathan Lethem'), + ('Jack Heffron'), + ('John M. Lannon'), + ('Richard Dowis'), + ('Jim McLean'), + ('Patricia T. O''Conner'), + ('Ann Marston'), + ('Aaron Allston'), + ('K.D. Wentworth'), + ('James Baen'), + ('Linda Moore'), + ('Gerald A. Browne'), + ('Judy Cornwell'), + ('Duane Newcomb'), + ('Ortho'), + ('Helga Olkowski'), + ('Paul Grimes'), + ('Michael Kerr'), + ('Amelie Thoma'), + ('Mario Claudio'), + ('Heike Hohlbein'), + ('Meg Pei'), + ('Tucker Malarkey'), + ('Chris Adrian'), + ('Claudia Holzförster'), + ('Kathleen Ragan'), + ('Matt Beaumont'), + ('Cathy Song'), + ('Rick Simonson'), + ('Paula G Allen'), + ('Wendell B'), + ('Christiane Northrup M.D.'), + ('Nellie Wong'), + ('Judith Orloff'), + ('Tim Bascom'), + ('Charles L. Whitfield M.D.'), + ('Denise Caignon'), + ('Gail Grove'), + ('Norman Denny'), + ('Lucie Cheng'), + ('Suellen Cheng'), + ('Judy Chu'), + ('Feelie Lee'), + ('Majo'), + ('Jade Snow Wong'), + ('Kathryn Uhl'), + ('C. F. MacIntyre'), + ('Erving Polster'), + ('Shari Benstock'), + ('Sarah L. Delany'), + ('A. Elizabeth Delany'), + ('A.S. Byatt'), + ('Rennie Airth'), + ('Amer Psychological Association'), + ('Anne Heche'), + ('Gunther Stuhlmann'), + ('Hisaye Yamamoto'), + ('King-Kok Cheung'), + ('Darcey Steinke'), + ('And Lamb'), + ('Leo F. Buscaglia'), + ('Nicola Tauraso'), + ('Asian Women United Of California'), + ('Fretta Reitzes'), + ('Beth Teitelman'), + ('Lois Alter Mark'), + ('Natalie Buske Thomas'), + ('Kate Adie'), + ('Cole Perriman'), + ('Deborah Christian'), + ('John E. Douglas'), + ('Mark Olshaker'), + ('Liz Carpenter'), + ('Sondra Williamson Runnells'), + ('Patrick Samway'), + ('Yogi Berra'), + ('Tom Horton'), + ('James Wright'), + ('Howell Raines'), + ('Hans-Georg Noack'), + ('Fran Wenograd Golden'), + ('Frank B. Gilbreth'), + ('Ernestine Gilbreth Carey'), + ('Mick Fleetwood'), + ('Karen Young'), + ('Kathy Goldring'), + ('Daniel Klein'), + ('Peter David'), + ('Jim Bouton'), + ('Eliot Asinof'), + ('Patricia A. Potter'), + ('Anne Griffin Perry'), + ('Marc Burckhardt'), + ('Kaplan'), + ('Idries Shah'), + ('Hugh Collins'), + ('T. C. Campbell'), + ('Patrick Dunne'), + ('Anna Malyschewa'), + ('Olaf Terpitz'), + ('Anita Mills'), + ('Rosanne Bittner'), + ('Cara Black'), + ('Matt Thorne'), + ('James Pope'), + ('Peter Hedges'), + ('Lana Citron'), + ('Stewart Lee'), + ('Simon French'), + ('Tilman Röhrig'), + ('Alfred Komarek'), + ('Clarissa Ross'), + ('Linda Aber'), + ('Penelope Lively'), + ('Laurent De Brunhoff'), + ('JoEllen Bogart'), + ('National Geographic Society'), + ('Robert Allen'), + ('Michael Morpurgo'), + ('Marianne Macdonald'), + ('Jean Little'), + ('Leoung O''Young'), + ('Zondra Lewis Knapp'), + ('Neal Yamamoto'), + ('Judy Hindley'), + ('Donald Rumbelow'), + ('Colin King'), + ('Eve Bunting'), + ('Ronald Himler'), + ('Neil Dawe'), + ('Karen Dawe'), + ('Margaret Wild'), + ('Anne Spudvilas'), + ('Theodore Geisel'), + ('Millicent Ellis Selsam'), + ('Joyce Hunt'), + ('Harriett Springe'), + ('Deborah Hautzig'), + ('Carolyn Ewing'), + ('Crockett Johnson'), + ('Paulita Sedgwick'), + ('Ludwig Bemelmans'), + ('Frank Muir'), + ('Frank Muir'), + ('Mario Mariotti'), + ('Roberto Marchiori'), + ('Irene Testot-Ferry'), + ('Seymour Reit'), + ('Robert N. Munsch'), + ('Michael Martchenko'), + ('Peter Levi'), + ('M. E. Kerr'), + ('Martha Stewart'), + ('Courtney Cooke'), + ('Judy Press'), + ('Susan Williamson'), + ('Evan Forbes'), + ('Janet Hale'), + ('Cindy Christianson'), + ('Loralyn Radcliffe'), + ('Susie Alexander'), + ('U.S. Catholic Church'), + ('Robin Dellabough'), + ('Beardstown Ladies Investment Club'), + ('Mary Lynn Baxter'), + ('Sara Pitzer'), + ('Ann Benson'), + ('Betty Friedan'), + ('Aram Saroyan'), + ('ï¿1/2mile Zola'), + ('Roger Pearson'), + ('Thomas Walton'), + ('Yankee Magazine'), + ('Jay Heinrichs'), + ('Alice Mattison'), + ('John Fitzgerald'), + ('Donald Sassoon'), + ('Karen Gedig Burnett'), + ('Laurie Barrows'), + ('Doreen Cronin'), + ('Betsy Lewin'), + ('John Lukacs'), + ('Robert Forrest Burgess'), + ('Owen Brookes'), + ('Benjamin Spock M.D.'), + ('Michael B. Rothenberg M.D.'), + ('Maria J. Andrade'), + ('Hebert'), + ('Ferdinando Camon'), + ('Yves Hersant'), + ('Agnes Desarthe'), + ('Jacques Meunier'), + ('Frederic Prokosch'), + ('Hubert Nyssen'), + ('Marcelle Sibon'), + ('Jean-Michel Besnier'), + ('Besnier J.-M.'), + ('Robert Simon'), + ('Sallenav'), + ('Didier Daeninckx'), + ('Raymond Queneau'), + ('Jacques Réda'), + ('Irène Frain'), + ('Jean-Paul Dubois'), + ('René Girard'), + ('Chiflet'), + ('Marina Yaguello'), + ('Georges Perec'), + ('Patrick Chamoiseau'), + ('Rose-Myriam Rejouis'), + ('Val Vinokur'), + ('Jean Ollivier'), + ('Michel De Montaigne'), + ('Andre West'), + ('Ursula Kösters-Roth'), + ('Anne Sexton'), + ('Silvia Morawetz'), + ('José L. Sampedro'), + ('Terry Tillman'), + ('Petra Oelker'), + ('Ina May Gaskin'), + ('Mira Kirshenbaum'), + ('Shari L. Thurer'), + ('Edward C. Whitmont'), + ('Pat Caplan'), + ('Birnbach'), + ('Adam Lee'), + ('Devra Speregen'), + ('Anne M. Raso'), + ('Samuel C. Brownstein'), + ('Mitchel Weiner'), + ('Catherine Mann'), + ('Victoria Bylin'), + ('Elaine Knighton'), + ('Ed Gorman'), + ('Ellen Degeneres'), + ('Robert Kraus'), + ('Paul Galdone'), + ('Jane B. Mason'), + ('Erik Doescher'), + ('Keith R. A. DeCandido'), + ('Charles Tang'), + ('POCKET BOOKS'), + ('Dorien Ross'), + ('Doris Roberts'), + ('Danelle Morton'), + ('Violet Jessop'), + ('John Maxtone-Graham'), + ('Nancy Milford'), + ('Susan J. Douglas'), + ('Charles Reichblum'), + ('Angus J. Kennedy'), + ('Harold Kushner'), + ('Michael Shermer'), + ('Terry Goodkind'), + ('Joe R. Lansdale'), + ('Garthia Anderson'), + ('Robin Hobb'), + ('John Howe'), + ('E.O. Parrott'), + ('Brian Keene'), + ('William F. Nolan'), + ('Jan Dodd'), + ('Simon Richmond'), + ('Tada Taku'), + ('David Waddell'), + ('Andrew Bender'), + ('John Ashburne'), + ('Sara Be'), + ('Dionys Burger'), + ('Caroline Liou'), + ('Marie Cambon'), + ('Alexander English'), + ('Thoma'), + ('Leo N. Tolstoi'), + ('Arthur Luther'), + ('Erich Müller'), + ('August S'), + ('Sibylle Berg'), + ('Colin Wilson'), + ('Edward Guiliano'), + ('John Tenniel'), + ('Giovanni Di Boccaccio'), + ('Albert Wesselski'), + ('R. D. Laing'), + ('Jesse Coulson'), + ('Lord George Gordon Byron'), + ('George Gordon'), + ('T. G. Steff'), + ('Steve Hodel'), + ('Annette Meyer-Prien'), + ('Mia Couto'), + ('Manuel Jorge Marmelo'), + ('Lidia Jorge'), + ('Tess Fries'), + ('Danny Brooks Dalby'), + ('Jerzy Kosinski'), + ('Kim Newman'), + ('Julian Murphet'), + ('Dalton Trumbo'), + ('J.J. Dewey'), + ('Ulrich Wickert'), + ('The Editors Of Rolling Stone'), + ('of Rolling Stone'), + ('Pete'), + ('Bonnie Napoli'), + ('Gary Hamel'), + ('Donald J. Wheeler'), + ('Esther Forbes'), + ('Lynd Ward'), + ('Laurence Yep'), + ('Hergé'), + ('Doug Richardson'), + ('Arthur Slade'), + ('Steven Barnes'), + ('Lawrence J. Magid'), + ('Adam Gopnik'), + ('Joan Hess'), + ('Beatrice Gormley'), + ('John Marsden'), + ('Trudy Krisher'), + ('James Beard'), + ('Arlie Russell Hochschild'), + ('Robert G. Waldron'), + ('Patrick Hart'), + ('Noam Chomsky'), + ('Paul Wilkes'), + ('Marty Minchin'), + ('Joseph Rutt'), + ('Eric Tyson'), + ('Nancy Harmon Jenkins'), + ('Julian Cassell'), + ('Peter Parham'), + ('Dr. Phil McGraw'), + ('Kathryn L. Robyn'), + ('Philip Shelby'), + ('Lou Marinoff'), + ('Janice Novak'), + ('Sogyal Rinpoche'), + ('Patrick Gaffney'), + ('Andrew Harvey'), + ('Gail Sher'), + ('Mary Irish'), + ('Jerry Lynch'), + ('Chungliang Al Huang'), + ('Bell Hooks'), + ('Sunset Pub Staff'), + ('Lynne Gilberg'), + ('Sunset Books'), + ('Kim McMillen'), + ('Alison McMillen'), + ('Wade Rowland'), + ('Nancy Zieman'), + ('Steve Chandler'), + ('Joan Borysenko'), + ('Mary Carroll Nelson'), + ('don Miguel Ruiz'), + ('Ken Milburn'), + ('Don Aslett'), + ('Brian Tracy'), + ('Jaouen'), + ('Jean-Jacques Sempé'), + ('René Goscinny'), + ('Dr. Arnold Arem M.D.'), + ('John Gribbin'), + ('Roland Fleissner'), + ('Linda Buckle'), + ('Paul Kelley'), + ('Susanne Gretter'), + ('Harvey Diamond'), + ('Kay S. Lawerence'), + ('Suzanne Enoch'), + ('Mia Ryan'), + ('Timothy Findley'), + ('John Luther Novak'), + ('Christopher Priest'), + ('Natalia Ilyin'), + ('William L. Shirer'), + ('Winn Schwartau'), + ('John S. Burnett'), + ('David McCullough'), + ('Ovid Demaris'), + ('Robert Douglas Mead'), + ('Jennet Conant'), + ('Iain Gately'), + ('Neil Baldwin'), + ('L. T. C. Rolt'), + ('Lisa Jardine'), + ('Po Bronson'), + ('Robert Buderi'), + ('Robert Reid'), + ('John Gove'), + ('David Carpenter'), + ('Sylvie Matton'), + ('Richard Rayner'), + ('Charles Higson'), + ('Andy McNab'), + ('Winston Graham'), + ('Dan Burstein'), + ('Elizabeth M. Norman'), + ('George R. Stewart'), + ('CLAMP'), + ('Gabrielle Donnelly'), + ('Bjorn Larsson'), + ('Tom Geddes'), + ('Clamp'), + ('Robert L. Forward'), + ('Larissa Lai'), + ('Patricia D. Benke'), + ('Esther Friesner'), + ('Karen Hancock'), + ('Melvin Jules Bukiet'), + ('Else Holmelund Minarik'), + ('Roswitha Quadf'), + ('Tibor Fischer'), + ('Richard Woodman'), + ('Rupert Thomson'), + ('Adam Bagdasariam'), + ('Brad Newsham'), + ('Simon Jenkins'), + ('Peter Bradshaw'), + ('Víctor E. Villaseñor'), + ('Mickey Mantle'), + ('H. Gluck'), + ('John M. Daniel'), + ('Eric Sanvoisin'), + ('Georges Moroz'), + ('Martin Matje'), + ('Robin A. McKenzie'), + ('Pamela Burford'), + ('Harriet Castor'), + ('H. Castor'), + ('Cathy Gillen Thacker'), + ('Howard Weinstein'), + ('Bill McCay'), + ('Eloise Flood'), + ('W. R. Thompson'), + ('Melissa Scott'), + ('Ruth Westheimer'), + ('Barry Strauss'), + ('L. Kate Deal'), + ('John Steven Gur'), + ('V.E. Mitchell'), + ('Ricardo Semler'), + ('Margaret Moore'), + ('Tanya Anne Crosb'), + ('Kat Martin'), + ('Jacquie D''Alessandro'), + ('Jessica R. Feldman'), + ('Chris Economos'), + ('Steve McInturff'), + ('John De Graaf'), + ('David Wann'), + ('Thomas H. Naylor'), + ('Amitav Ghosh'), + ('Sabine Maier-Längsfeld'), + ('Dieter Wellershoff'), + ('Wolf J. Siedler'), + ('Marek Krajewski'), + ('Doreen Daume'), + ('Birgit H. Hölscher'), + ('Maeve Haran'), + ('Irene Nießen'), + ('Lucy Grealy'), + ('Bette Hagman'), + ('Jeffrey Lent'), + ('Joseph A. Citro'), + ('Dr. Jerri Nielsen'), + ('Maryanne Vollers'), + ('A. Walton Litz'), + ('Haywood Smith'), + ('Omar Khayyam'), + ('Alexei Sayle'), + ('P. G. Wodehouse'), + ('Jane Barry'), + ('Kathy Lette'), + ('Jules Hardy'), + ('Mark Reynolds'), + ('Bill Cullen'), + ('Marsha Sinetar'), + ('David Jenkins'), + ('Kenny Dalglish'), + ('Kim Woodburn'), + ('Aggie MacKenzie'), + ('Jan Molby'), + ('Grahame Lloyd'), + ('Simon Kuper'), + ('Magnus Mills'), + ('Margaret Frazer'), + ('Sebastian Stuart'), + ('Stephen Gill'), + ('Rich Hall'), + ('Greg Dinallo'), + ('Cameron Abbott'), + ('Gerri Hill'), + ('Janice Dickinson'), + ('Fiona Kelly'), + ('Mirabel Osler'), + ('H. J. Oliver'), + ('Tania Kindersley'), + ('Griff Rhys Jones'), + ('Robert Leckie'), + ('Tom Sharpe'), + ('Jay Anson'), + ('Melinda Metz'), + ('Roderick Anscombe'), + ('Leon Whiteson'), + ('Judith Merril'), + ('Nancy Kilpatrick'), + ('Don Bassingthwaite'), + ('Robert McCammon'), + ('Dixon'), + ('James M. Henslin'), + ('Gavin De Becker'), + ('Sara Shandler'), + ('Melodie M. Davis'), + ('Patricia Telesco'), + ('Whitecap Books'), + ('Linda Fraser'), + ('Richard Olney'), + ('Denise Lardner Carmody'), + ('John Carmody'), + ('Eric F Goldman'), + ('Lawrence E. Cahoone'), + ('Valerie Ann Worwood'), + ('Paul Davies'), + ('J. C. Polkinghorne'), + ('Theodore J. Nottingham'), + ('Simeon Margolis MD Phd'), + ('Charles Berlitz'), + ('Albert Einstein'), + ('Michael Talbot'), + ('Hildegard Of Bingen'), + ('Bruce W. Hozeski'), + ('Julia Conaway Bondanella'), + ('Mark Musa'), + ('Richard S. Broughton Ph.D.'), + ('Marcus Aurelius Antonius'), + ('the Late A. S. L. Farquha'), + ('Robin Waterfield'), + ('Koren Trygg'), + ('Lucy Poshek'), + ('David Ferry'), + ('Percy Bysshe Shelley'), + ('Isabel Quigly'), + ('A. D. Hunt'), + ('Mary K Pershall'), + ('Melina Marchetta'), + ('Lois Ruby'), + ('Annie Hawes'), + ('Connie Fletcher'), + ('Thomas D. Zweifel'), + ('Karen Ritchie'), + ('James D. Berkley'), + ('Phillip C. McGraw'), + ('Elizabeth Bonner'), + ('Doug Stanton'), + ('Michael Kevin Naselli'), + ('Ray Gordon'), + ('Geoff Garvey'), + ('Mark Ellingham'), + ('Lou Coffey-Lewis'), + ('Nancy Krulik'), + ('Eugene Bradley Coco'), + ('Hardie Gramatky'), + ('Joanne Ryder'), + ('Larry Ross'), + ('Suzanne Lord'), + ('Tracy Kidder'), + ('Barbara Freese'), + ('Lorraine Dopson'), + ('Lisa St. Aubin De Teran'), + ('Miles Morland'), + ('William Least Heat Moon'), + ('Jimmy Burns'), + ('Sue Gee'), + ('Stefanie Kuhn-Werner'), + ('Jan Böthern'), + ('Stefanie Zweig'), + ('Judith Lennox'), + ('Mechtild Sandberg'), + ('Anne Holt'), + ('Susanne Aeckerle'), + ('Cay Rademacher'), + ('Juilene Osborne-McKnight'), + ('Senta Kapoun'), + ('Susan Sloan'), + ('Sibylle Schmidt'), + ('Joseph Kiermeier-Debre'), + ('James Ellroy'), + ('Molly Katz'), + ('Anna Kuhlig-Wilkinson'), + ('Georg Brun'), + ('Erik Gloßmann'), + ('Gloria Ernst'), + ('Charles J. Sykes'), + ('Laverne Harrell Clark'), + ('Keri Hulme'), + ('Jung Chang'), + ('Martha C. Lawrence'), + ('April Henry'), + ('Miss Read'), + ('J.S. Goodall'), + ('Louise Doughty'), + ('Lois Ruskai Melina'), + ('Sheldon Siegel'), + ('Moyra Caldecott'), + ('Julio Cortázar'), + ('Paul Blackburn'), + ('William Monahan'), + ('Robert Girardi'), + ('Allen Morgan'), + ('Brenda Clark'), + ('Stephen R. Bissette'), + ('Thomas E. S'), + ('Todd A. McIntosh'), + ('Laura J. Burns'), + ('Melind'), + ('Christie Golden'), + ('Mel Od'), + ('David Nevin'), + ('C.J. Carella'), + ('James Marsters'), + ('Ryan Sook'), + ('Eric P'), + ('Maura Seger'), + ('Tracy Sin'), + ('Arthur Bloch'), + ('Elizabeth Ayres'), + ('Tom Folley'), + ('Iain Zaczek'), + ('Deirdre O''Day'), + ('Christos Kondeatis'), + ('Sara Maitland'), + ('Gerry Thompson'), + ('Bernard Evslin'), + ('Lyle Stuart'), + ('Theodore Menten'), + ('Tim Evans'), + ('Larry Gonick'), + ('Alice Outwater'), + ('T.G. Henry James'), + ('T.G.H James'), + ('Jeff Barson'), + ('Kr'), + ('Jimmy Carter'), + ('Rick Barba'), + ('David Chong'), + ('Regina Oehler Fultz'), + ('Ellen Weiss'), + ('Bob Krogle'), + ('Michelle Lovric'), + ('Patti Kim'), + ('Marybeth Sparrow'), + ('Denys Cazet'), + ('Susan Hill'), + ('Doug Hart'), + ('Walt Disney Company'), + ('Joanna Weaver'), + ('Mercer Mayer'), + ('Anthony Tallarico'), + ('Roz Denny Fox'), + ('DOLORES /LEE FRENCH'), + ('Dolores French'), + ('Linda Lee'), + ('Teresa Norman'), + ('James C. Hefley'), + ('Marti Hefley'), + ('Rachael F. Heller'), + ('Richard F. Heller'), + ('Rosie Daley'), + ('Michael MacCaskey'), + ('Reed Irvine'), + ('Clara Drechsler'), + ('David Budbill'), + ('Duane P. Schultz'), + ('Schultz'), + ('Tom Lambert'), + ('Wayne Allred'), + ('David Mecham'), + ('Les Roberts'), + ('Stephen Nasser'), + ('Sherry Rosenthal'), + ('Kate Walker'), + ('Jane M. Lindskold'), + ('Otto Penzler'), + ('John Lutz'), + ('Fowler'), + ('George Spelvin'), + ('Chris Van Allsburg'), + ('Elke Pohl'), + ('Thomas R. Schmidt'), + ('Elvira Woodruff'), + ('Nina Kidd'), + ('Catherine Kidwell'), + ('Barney Leason'), + ('Martin H. Greenberg'), + ('Steve Salerno'), + ('William Kennedy'), + ('John Kern'), + ('Richard Doyle'), + ('Timothy B. Benford'), + ('Lucy Maud Montgomery'), + ('Roy W. Poe'), + ('Woman''s Day Editors'), + ('Paul Krassner'), + ('David Bergantino'), + ('Lucasta Miller'), + ('Sue-Ellen Welfonder'), + ('Jeremy Black'), + ('Nancy Atherton'), + ('Ann Goethe'), + ('Holt Mcdougal'), + ('Geoffrey Chaucer'), + ('Nevill Coghill'), + ('Tom Gilling'), + ('Elizabeth Dybell'), + ('Christopher Reeve'), + ('Elizabeth Buchan'), + ('Boris Cyrulnik'), + ('Mireille Cardot'), + ('Nicole-Lise Berheim'), + ('Sirrus Poe'), + ('Sandra Canfield'), + ('Joseph Mugnaini'), + ('Overbeck'), + ('Rita Rudner'), + ('Robert Howard'), + ('Frank Frazetta'), + ('Eden Gray'), + ('Jerry Oltion'), + ('Caroline Sutton'), + ('Bob Greene'), + ('Oprah Winfrey'), + ('Joseph Vargo'), + ('Christine Filipak'), + ('Richard Stark'), + ('Stephen Birmingham'), + ('William J. Palmer'), + ('Patrick Larkin'), + ('Wes Craven'), + ('Darby Conley'), + ('Tracy Chutorian Semler'), + ('Deborah Axe'), + ('Rebecca Smith'), + ('Maggie Gee'), + ('The Editors Of Creative Publishing International'), + ('C'), + ('Ed McBain'), + ('Margaret Coel'), + ('Akif Pirinçci'), + ('Elizabeth Graver'), + ('Julia London'), + ('Kathryn Smith'), + ('Cleo Coyle'), + ('Hannah March'), + ('Anna Maclean'), + ('Elizabeth Mayne'), + ('Orr'), + ('Hannah Howell'), + ('Karen Marie Moning'), + ('Pamela Toth'), + ('Gayle Wilson'), + ('Aimee Thurlo'), + ('Caroline Burnes'), + ('Adrianne Lee'), + ('Annie Kimberlin'), + ('Kathleen Nance'), + ('Tamara Leigh'), + ('Joseph Olshan'), + ('William Congreve'), + ('Jenelle Feyh'), + ('Joseph Maynard Eastman'), + ('EJ Thornton'), + ('Larry Dossey'), + ('Angelica Rose'), + ('Gina Davidson'), + ('Roger Senhouse'), + ('Herma Briffault'), + ('Richard Seaver'), + ('Robert Coover'), + ('Manuel Puig'), + ('Joseph Kanon'), + ('Colman'), + ('Bill Goldberg'), + ('Steve Goldberg'), + ('Carl Von Clausewitz'), + ('Greg Manning'), + ('William Wells Brown'), + ('William Edward Farrison'), + ('Lee J. Painter'), + ('Norman Vincen Peale'), + ('Editors Of Reader''s Digest'), + ('Charles Higham'), + ('Eric Bowman'), + ('Arlene James'), + ('Janice Pennington'), + ('Carlos De Abreu'), + ('Savage'), + ('Mary McBride'), + ('Lizzie Simon'), + ('Lian Frost'), + ('Hans Wilhelm'), + ('CHRISTOPHER FOWLER'), + ('Antonia Fraser'), + ('Garry B. Trudeau'), + ('Rebecca West'), + ('Lisa Grunwald'), + ('Katie Hafner'), + ('John Markoff'), + ('Ph.D. Howard M. Halpern'), + ('Terry Ryan'), + ('Suze Orman'), + ('Thomas A. Critchley'), + ('Deborah Tannen'), + ('Robert J. Wicks'), + ('Lucille Kallen'), + ('Catherine Aird'), + ('Boo King'), + ('A. J. Holt'), + ('Dave Galanter'), + ('Greg Brodeur'), + ('Adib Khan'), + ('R.A. Deckert'), + ('Alma Alexander Hromic'), + ('Angela Henry'), + ('Eleanor H. Porter'), + ('Clive Egleton'), + ('Tim Jeal'), + ('Jasmine Cresswell'), + ('Stephen Cartwright'), + ('Laura Lee Hope'), + ('Gloria Singer'), + ('Rumer Godden'), + ('John Gordon'), + ('Robert Leeson'), + ('Giles'), + ('Beatrix Potter'), + ('Mandy Stanley'), + ('J. McNally'), + ('Roger Knights'), + ('John Cunliffe'), + ('Fiona Pragoff'), + ('A First Book'), + ('DAVID BENNET'), + ('Moira Kemp Mathew Price'), + ('Ladybird Books'), + ('Peter Longden'), + ('Heinz Tophinke'), + ('William Gaddis'), + ('Marcus Ingendaay'), + ('Jan Brogan'), + ('Frank MacCourt'), + ('B. Delores Max'), + ('Joe Weisberg'), + ('J. Baxter Newgate'), + ('Mark Sparky Stensaas'), + ('Rick Kollath'), + ('Trudi Strain Trueit'), + ('Paulette Bourgeois'), + ('Sharon Jennings'), + ('Brenda Clark (I'), + ('D.J. MacHale'), + ('Donna Diamond'), + ('Emily Rodda'), + ('Marc McBride'), + ('Luann Udell'), + ('Randy Hall'), + ('Erik Sherman'), + ('Douglas Stone'), + ('Bruce Patton'), + ('Sheila Heen'), + ('Roger Fishe'), + ('Thom Hartmann'), + ('Edward M. Hallowell (Introduction)'), + ('M'), + ('Janis Abrahms Spring'), + ('Michael Spring'), + ('Elizabeth A. Lynn'), + ('Shawn MacManus'), + ('Collee'), + ('Janet Mills'), + ('Vicki Croke'), + ('Evelyn McFarlane'), + ('James Saywell'), + ('Helen Exley'), + ('Yuzan Daidoji'), + ('Oscar Ratti'), + ('Thomas Cleary'), + ('Meow Tzu'), + ('Michael Kent'), + ('Sarah Flannery'), + ('David Flannery'), + ('Björn Kjellström'), + ('Bob Burns'), + ('Mike Burns'), + ('Michael J. Hunt'), + ('Virginia Beard Morton'), + ('Paul Ware'), + ('Raymond Regh'), + ('Jack Countryman'), + ('Terri Gibbs'), + ('Lesléa Newman'), + ('Trevor Blount'), + ('Bo Fowler'), + ('Justine Davis'), + ('Sophy Burnham'), + ('Grant Taylor'), + ('Diana Abu-Jaber'), + ('Thomas More'), + ('Paul Turner'), + ('Michael Leunig'), + ('Shusha Guppy'), + ('George Negus'), + ('Clare Maxwell-Hudson'), + ('John Campbell'), + ('Melinda Coss'), + ('Stephen Gresham'), + ('Charles Frederick Main'), + ('Mo Hayder'), + ('Richard Yates'), + ('Russ McDonald'), + ('Alexander C. Rae'), + ('Charlotte Russell Johnson'), + ('Suzan-Lori Parks'), + ('Margaret Ball'), + ('John Ennis'), + ('Glen Duncan'), + ('Alfred Lansing'), + ('Barry Unsworth'), + ('Gao Xingjian'), + ('Mabel Lee'), + ('James Morrow'), + ('Sharon E. Heisel'), + ('James J. Fahey'), + ('J. Robert Lennon'), + ('Majgull Axelsson'), + ('Roger Tennant'), + ('Graham Swift'), + ('Judith R. Hendricks'), + ('Jane Juska'), + ('Alison Smith'), + ('Diane Jessup'), + ('Valerie Taylor'), + ('Tania Modleski'), + ('Rick Bragg'), + ('Joelle Fraser'), + ('Kathy Dobie'), + ('Gail Sheehy'), + ('Jennifer L. Leo'), + ('Jessica Maxwell'), + ('Lauralee Summer'), + ('Jeff O''Leary'), + ('Candace Gingrich'), + ('Chris Bull'), + ('Hilda Stahl'), + ('Paul Geiger'), + ('Roger Lea MacBride'), + ('David Gilleece'), + ('Frances Temple'), + ('Ed Little'), + ('Laura Ingalls Wilder'), + ('Jessica Shaver'), + ('Joseph Warren Yoder'), + ('Robbie Branscum'), + ('Julie Brincklo'), + ('Nancy McArthur'), + ('Irene Trivas'), + ('Mary Pope/ Murdo Osborne'), + ('Anthony Chandor'), + ('Al Berto'), + ('Cindy Engel'), + ('Steve Grenard'), + ('J. P. Gosse'), + ('David Attenborough'), + ('Marcia Foy'), + ('Anna Katherine Nicholas'), + ('Desmond Morris'), + ('Barbara Woodhouse'), + ('Dorothy Quelch'), + ('Phyllis Wise'), + ('A. B. C. Whipple'), + ('John T. Burgoyne'), + ('Jeffrey Moussaieff Masson'), + ('Susan McCarthy'), + ('Morgan LLywelyn'), + ('Natalie Babbitt'), + ('Kathryn Lasky'), + ('Sid Fleischman'), + ('Patricia Leitch'), + ('Fred Grove'), + ('Troy Howell'), + ('Marian F. Novak'), + ('Mary Gehr'), + ('Joan Lowery Nixon'), + ('Candy Dawson Boyd'), + ('Xavier Einstein'), + ('Bertrand R. Brinley'), + ('Kathleen Hersom'), + ('Cicely Mary Barker'), + ('Lynn Harnett'), + ('Norma Fox Mazer'), + ('Lillian O''Donnell'), + ('Marilyn D. Anderson'), + ('Mary Stolz'), + ('Leonard Shortall'), + ('Bruce Brooks'), + ('Stephanie Calmenson'), + ('Don Orehek'), + ('Judith Bauer Stamper'), + ('Incorporated Al-Anon Family Group Headquarters'), + ('Tohru Fujisawa'), + ('Ulli Olvedi'), + ('Stephanie Bond'), + ('John E. Hankins'), + ('Patrick Lynch'), + ('Rafael Chirbes'), + ('Dagmar Ploetz'), + ('Anne Cameron'), + ('Nicholas Christopher'), + ('Sailor Jim Johnston'), + ('Andrew J. Robinson'), + ('Irmela Arnsberger'), + ('J. N. M. Wijngaards'), + ('Susan Jeffers'), + ('Patty Aubery'), + ('Nanc'), + ('Gavin Edwards'), + ('Chris Kalb'), + ('Beverley Harper'), + ('Dan Kurzman'), + ('Geoffrey Wolff'), + ('Peter Gethers'), + ('Gary A. Birken'), + ('Dave Hoekstra'), + ('Allegra Goodman'), + ('Carol Muske-Dukes'), + ('Jennifer Belle'), + ('Caryl Phillips'), + ('Emma Donog'), + ('Katherine Russell Rich'), + ('Charlene Sands'), + ('Gervase Phinn'), + ('Leslie A. Fiedler'), + ('Renate Dorrestein'), + ('Andreas Schlüter'), + ('Karoline Kehr'), + ('Fred Hunter'), + ('Carla Damron'), + ('Camille Minichino'), + ('Bob Larson'), + ('T. D. Jakes'), + ('Emilie Barnes'), + ('Jane Rogers'), + ('Barbara Fitzgerald'), + ('Jessica Anderson'), + ('Marjory Davidson'), + ('Beverly S. Martin'), + ('Jill Ba'), + ('Anne Stuart'), + ('Jule McBride'), + ('Emma Richmond'), + ('Elizabeth Bailey'), + ('Greg Cox'), + ('Emily Grayson'), + ('Karen Hughes'), + ('Sandra Steffen'), + ('Monika Curths'), + ('E. A. Proulx'), + ('Jean Chandler'), + ('THOMAS HETTCHE'), + ('Lauren M. Henderson'), + ('Cameron West'), + ('Petra Hammesfahr'), + ('Christian Spiel'), + ('Katja Rohde'), + ('Antoine De Saint- Exupéry'), + ('Elke Wehr'), + ('Johanna Sinisalo'), + ('S.L. Viehl'), + ('Lucile Morrison'), + ('Franz Geritz'), + ('Marisol'), + ('Amulya Malladi'), + ('Margaret Schmidt Hacker'), + ('John Clarke'), + ('Michael Larvey'), + ('Kavita Daswani'), + ('Chitra Divakaruni'), + ('Diane Glancy'), + ('Robert Gerzon'), + ('Klaus Berr'), + ('Christoph Hahn'), + ('Gaby Wurster'), + ('Werner Schmitz'), + ('Angelika Bardeleben'), + ('Sr Pugalenthi'), + ('Michael S Lief'), + ('Ben Bycel'), + ('H. Mitchell Caldwell'), + ('Catherine Lim'), + ('Andrea Chesman'), + ('Daniela E. Schreier'), + ('Arthur Conan'), + ('Sir Doyle'), + ('Nina Berberova'), + ('Tennessee Williams'), + ('Julia Hammond'), + ('Yolanda Joe'), + ('Emily Hendrickson'), + ('Kathy Disanto'), + ('Lynne Perrie'), + ('Ellen Sussman'), + ('Anne Marie Winston'), + ('Bette Ford'), + ('Niall Williams'), + ('Jeanne D''haem'), + ('Wendy Loggia'), + ('Dianne Day'), + ('George Lucas'), + ('Malle Vallik'), + ('Diane Haeger'), + ('Roger Lancelyn Green'), + ('Lotte Reiniger'), + ('Lori Bryant-woolridge'), + ('Craig Hillman'), + ('Kieran Scott'), + ('Elizabeth Skurnick'), + ('Jordan Paul'), + ('Chris Spink'), + ('Earl Proulx'), + ('Isadora Tattlin'), + ('Robin Maxwell'), + ('Jacqueline Harpman'), + ('Carla Cook'), + ('Robyn Sisman'), + ('Miriam E. Nelson'), + ('Judy Knipe'), + ('Katie Schneider'), + ('Anne-Cécile Padoux'), + ('Anna Gavalda'), + ('Franck'), + ('Vautrin'), + ('Wayson Choy'), + ('Miguel Angel Asturias'), + ('Frances Partridge'), + ('Miguel De Cervantes'), + ('Tobias Smollett'), + ('Paul Arden'), + ('Tom Savage'), + ('George V. Higgins'), + ('Helen Colijn'), + ('Pierre Loti'), + ('Hella S. Haasse HAASSE'), + ('Paul Golding'), + ('Franco Ferrucci'), + ('Raymond Rosenthal'), + ('Janet Frame'), + ('Khyentse Rinpoche'), + ('Matthieu Ricard'), + ('Alice Vaara'), + ('Bettie B. Youngs'), + ('Jennifer Youngs'), + ('Philip Rieff'), + ('Karina Moore'), + ('Ian Buruma'), + ('Patricia Matthews'), + ('Clayton Matthews'), + ('Bette Lord'), + ('Charlotte Sanford'), + ('Henry Porter'), + ('Diana Silber'), + ('Robert Ballard'), + ('Leilia Kelly'), + ('Thomas Keech'), + ('Ross Kasminoff'), + ('Ron Handberg'), + ('Jeanne M. Dams'), + ('George Dawes Green'), + ('Dale Furutani'), + ('Victoria Gotti'), + ('Shirley Kennett'), + ('Elizabeth North'), + ('Lisa Vice'), + ('Frank Drake'), + ('Ralph M. McInerny'), + ('Edna O''Brien'), + ('Herbert Gold'), + ('Adèle Geras'), + ('Stewart And Sally Walton'), + ('Mary Sheedy Kurcinka'), + ('Meg O''Brien'), + ('John Simpson'), + ('Ward Just'), + ('Tim Page'), + ('Hans Christian. Anderson'), + ('Marion Philadelphia'), + ('Janine Boissard'), + ('Yossi K. Halevi'), + ('Beatrice Bruteau'), + ('Milton Viorst'), + ('Karla Jay'), + ('Corliss Lamont'), + ('Kate Bornstein'), + ('Betty White'), + ('John A. Buehrens'), + ('Unitarian Universalist Associatio'), + ('Richard T. Kaser'), + ('Lauraine Leblanc'), + ('Mary Kingsley'), + ('Elspeth Huxley'), + ('Peter F. Stevens'), + ('Howard Blum'), + ('Suelette Dreyfuss'), + ('Bernard Lewis'), + ('Peter Shaffer'), + ('Detlev Ullrich'), + ('Joseph Mitchell'), + ('Eike Schönfeld'), + ('Les Martin'), + ('Jane Urquhart'), + ('Benjamin Von Stuckrad-Barre'), + ('Benjamin Von Stuckrad-'), + ('Paul Doherty'), + ('Stephen J. Rivele'), + ('Andy Straka'), + ('Philip R. Craig'), + ('Robert J. Randisi'), + ('H. F. Saint'), + ('Nancy M. Neuman'), + ('Alison Webster'), + ('Deborah Cartmell'), + ('I.Q. Hunter'), + ('Heidi Kaye'), + ('Imelda Whe'), + ('Jane Rule'), + ('Lynne Griffin'), + ('Kelly McCann'), + ('William Robertson'), + ('David Wilkerson '), + ('Albert Gilman'), + ('John Russell Brown'), + ('Russell Fraser'), + ('William H. Matchett'), + ('S. Schoenb'), + ('Reuben Brower'), + ('S. Nagarajan'), + ('Daniel Seltzer'), + ('Barbara Everett'), + ('P. H. Davison'), + ('T. J. B. Spencer'), + ('Walter Brueggemann'), + ('Martha J. Beckman'), + ('John McPherson'), + ('Wendy Wasserstein'), + ('Rachel Chandler'), + ('Kate Clinton'), + ('Chastity Bono'), + ('Billie Fitzpatrick'), + ('Rebecca Ore'), + ('Julie Andrews Edwards'), + ('Sarah Gilbert'), + ('Emmanuèle Bernheim'), + ('Ted Chiang'), + ('Patrick Nielsen Hayden'), + ('Karen Michalson'), + ('Peter Watts'), + ('Peter Taylor'), + ('Susan Fromberg Schaeffer'), + ('Katharine Murray'), + ('Donald S Olson'), + ('Günter W. Kienitz'), + ('Denis Hamill'), + ('Dao Strom'), + ('Gina Mayer'), + ('Jonathan Rice'), + ('Tim Rice'), + ('Paul Gambaccini'), + ('Paul & Tim Rice. Et Al. Gambaccini'), + ('Roger Osborne'), + ('ADRIANA TRIGIANI'), + ('David Hockney'), + ('Nikos Stangos'), + ('Colin Larkin'), + ('Alex Ogg'), + ('Johnny Rogan'), + ('Miranda Sawyer'), + ('Terry Kay'), + ('Sandra Markle'), + ('Mark Robert Rank'), + ('Kenneth Gatland'), + ('Victoria Chancellor'), + ('Roberta'), + ('Robert M Pirsig'), + ('Zlata Filipovic'), + ('William W. Johnstone'), + ('Nava Renek'), + ('Dee Brestin'), + ('Kathy Troccoli'), + ('Marjorie Winn'), + ('Abbot George Burke'), + ('Covert Bailey'), + ('Lewis Gannett'), + ('Alan Brennert'), + ('Kuki Gallmann'), + ('Tom Defalco'), + ('Richard Mason'), + ('Roberto G. Fernandez'), + ('Tadahiko Nagao'), + ('Isamu Saito'), + ('Gustavo Perez-Firmat'), + ('Joanne McClellan Egnor'), + ('Dr. Wayne W. Dyer'), + ('John Norman'), + ('Michele Slung'), + ('Albert Uderzo'), + ('Emma Forrest'), + ('Bill Murphy'), + ('Peter Wood'), + ('G. Eason'), + ('William Least Heat-Moon'), + ('Christobel Kent'), + ('Rosie Thomas'), + ('Maggie O''Farrell'), + ('Sharon Butala'), + ('Paddy Ryan'), + ('Paul Erdman'), + ('Katja M. Werker'), + ('Maryse Wolinski'), + ('Linda Fairstein'), + ('Terry Tempest Williams'), + ('Let''s Go Inc.'), + ('Helga Tiscenko'), + ('Robert Bosnak'), + ('Robert Dessaix'), + ('Susan M. Lark'), + ('Elizabeth Somer'), + ('Robert Stone'), + ('Stanley Karnow'), + ('Gail Evans'), + ('Vickie L. Bane'), + ('Lina Visconti'), + ('Donna May Gibbs Carpenter'), + ('Frank'), + ('Manuel Vázquez Montalbán'), + ('Manuel Vazquez Montalban'), + ('India Knight'), + ('George Hughes'), + ('Steven Levy'), + ('Margaret Lawrence'), + ('Paula Weideger'), + ('Gordon Honeycombe'), + ('Colin Turnbull'), + ('Colson Whitehead'), + ('Harald Gerlach'), + ('Market House Books Ltd.'), + ('Rosalind Fergusson'), + ('Michael D. Hutt'), + ('Thomas W. Speh'), + ('Steven V. Roberts'), + ('Dan Zevin'), + ('Glenn Frankel'), + ('Gilda Radner'), + ('Anne Michaels'), + ('Quint Buchholz'), + ('John Maddox Roberts'), + ('A Oswald'), + ('Juliet Schor'), + ('Betsy Taylor'), + ('Ed Glinert'), + ('Atima Srivastava'), + ('Giò Waeckerlin Induni'), + ('Lisa Scott'), + ('Dagmar Roth'), + ('Sharon Maas'), + ('Amelie Fried'), + ('Sneaky P. Brown'), + ('Carina Klein'), + ('Susan Carroll'), + ('Marcel Bieger'), + ('Eveline Passet'), + ('James Ellison'), + ('Dian Fossey'), + ('Wolfgang Büscher'), + ('Robert Merle'), + ('Christel Gersch'), + ('Gerda Bean'), + ('N.H. Kleinbaum'), + ('Luigi Guicciardi'), + ('Katharina Schmidt'), + ('McDowell Bryson'), + ('Adele Ziminski'), + ('Shifra Horn'), + ('Dalya Bilu'), + ('J. M. Synge'), + ('Tim Robinson'), + ('Lynne S. Schwartz'), + ('Tommy Hays'), + ('Loretta Lynn'), + ('Patsi Bale Cox'), + ('Sidney Poitier'), + ('Gordon MacKenzie'), + ('Paul Grescoe'), + ('Annette DeLore'), + ('John Hughes'), + ('Deirdre Corey'), + ('Lisa Birnbach'), + ('Patricia Marx'), + ('Linda Tschirhart Sanford'), + ('Mary Ellen Donovan'), + ('Charles L. Calia'), + ('Arianna Huffington'), + ('Bill Maher'), + ('Denis Waitley'), + ('Elle Eggels'), + ('Margaret Lee Braun'), + ('Theo Colborn'), + ('Nancy M. Stuart'), + ('Joanne K. Rowling'), + ('Jean-Claude Gotting'), + ('Jean-Françoi'), + ('Emilie Richards'), + ('Miriam Ali'), + ('Outside Magazine Editors'), + ('Nick Thorpe'), + ('Bentley Little'), + ('John Skipp And Craig Spector'), + ('Shaun Hutson'), + ('Jesse Hunter'), + ('Jr.'), + (' Richard Henry Dana'), + ('Thomas Philbrick'), + ('Raisa Gorbachev'), + ('David Floyd'), + ('Helen Hunt Jackson'), + ('J. B. Calchman'), + ('Thalassa Ali'), + ('Stephen Glass'), + ('Pat Mulcahy'), + ('Dorothy Bryant'), + ('Edidt Geever'), + ('Angus Calder'), + ('Marion A. Kaplan'), + ('Nella Larsen'), + ('Thadious M. Davis'), + ('Charles Portis'), + ('Witi Ihimaera'), + ('Jann Mitchell'), + ('Connie Lightner'), + ('Terri Crisp'), + ('Samantha Glen'), + ('Joey Green'), + ('Rod McQueen'), + ('Michael J. Fox'), + ('Margaret Laurence'), + ('B. Alison Weir'), + ('Alison Weir'), + ('Peter Gzowski'), + ('Alvin F. Poussaint'), + ('William K. Hartmann'), + ('Garrett Sutton'), + ('Jonas Ridderstrale'), + ('Kjell Nordström'), + ('Kjell Nordstrom'), + ('Howard Dean'), + ('Dennis Kucinich'), + ('Studs Terkel'), + ('Reverend Al Sharpton'), + ('Karen Hunter'), + ('James Hynes'), + ('Erik S. Rosenaa'), + ('Ted Michener'), + ('Mark Jacobson'), + ('Sarah Zettel'), + ('David Layton'), + ('K. C. Cole'), + ('Daniel Halpern'), + ('Hyemeyohsts Storm'), + ('Edward Blishen'), + ('Brian Wildsmith'), + ('Tessa Bielecki'), + ('Regina Sara Ryan'), + ('Masters'), + ('Russell Grant'), + ('Vicky Emptage'), + ('Gabriel Horn'), + ('White Deer Of Autumn'), + ('Nader E Khalili'), + ('Jalaloddin Rumi'), + ('George Burns'), + ('Jack Gregory'), + ('Carol Drinkwater'), + ('D. H. LAWRENCE'), + ('Mark Schorer'), + ('Celia Barker Lottridge'), + ('Peter Ralph'), + ('Judy Delton'), + ('Blanche Sims'), + ('Tony Goldwyn'), + ('Kate Burton'), + ('Ania Szado'), + ('A. L. Kennedy'), + ('Mary MacCarthy'), + ('Alayne Main'), + ('Alec Ross'), + ('Tabitha King'), + ('Laura Fraser'), + ('David Daiches'), + ('Element Books Ltd.'), + ('Peg Kehret'), + ('Carla Neggers'), + ('Benjamin Zephaniah'), + ('Mary Ann Hoberman'), + ('Deborah Savage'), + ('Lisa Falkenstern'), + ('Cliff Nielsen'), + ('Andrew Eames'), + ('Wendy Boorer'), + ('Andrew A. Rooney'), + ('John Lawrence'), + ('Peter Haining'), + ('David Edmonds'), + ('John Eidinow'), + ('Glenn Yeffeth'), + ('David Gerrold'), + ('Robert Aunger'), + ('Steven Pinker'), + ('John Grafton'), + ('Mort Rosenblum'), + ('Peter Spiegelman'), + ('Allan W. Eckert'), + ('Andrea Barrett'), + ('Elizabeth Sachs'), + ('Barthe Declements'), + ('Christopher Greimes'), + ('Ruth White'), + ('Katherine Ayres'), + ('Sook Nyul Choi'), + ('Fred Graver'), + ('Peggy Woodford'), + ('John Gollings'), + ('Madeleine Bourdouxhe'), + ('Jennifer Bassett'), + ('Andrew Parkin'), + ('P.D. James'), + ('Gaetan Soucy'), + ('David Levien'), + ('Regina McBride'), + ('Abbie Zabar'), + ('Larry Watson'), + ('Paula L. Woods'), + ('Tom Alibrandi'), + ('Bill Wassmuth'), + ('Brenda Peterson'), + ('Steven Owen Godersky'), + ('B. Traven'), + ('Jean P. Sasson'), + ('Suzy Spencer'), + ('Rita Moonsammy'), + ('Yatri'), + ('Lisle'), + (' Robert H Waterman'), + ('Thomas J Peters'), + ('Tom Peters'), + ('Lyndell'), + ('Sir Richard Branson'), + ('R.A. MacAvoy'), + ('J.-P. Mayer'), + ('Ann Martin'), + ('Cameron Judd'), + ('Berniece Rabe'), + ('Harvey Kidder'), + ('Joan Rawlins Biggar'), + ('Kay Salem'), + ('Ken Leebow'), + ('Paul Joffe'), + ('Marty Bucella'), + ('Betty Baker'), + ('Thom Jones'), + ('Dudley Randall'), + ('Floyd'), + ('Wallace Fowlie'), + ('Pearson Education'), + ('Susan Feuer'), + ('Bernadine Healy'), + ('Peter Mcdonough'), + ('Alex Chadwick/ NPR'), + ('Judith Ivey'), + ('Debra Monk'), + ('Dale Hull'), + ('Dave Longaberger'), + ('Tami Longaberger'), + ('Ellis Vidler'), + ('Violet Winspear'), + ('Darryl London'), + ('Joyce Landorf Heatherley'), + ('Richard Dean Rosen'), + ('Peter Abrahams'), + ('Colin Harrison'), + ('Maria Shriver'), + ('Oriah'), + ('Richie Tankersley Cusick'), + ('Nicholas Adams'), + ('Keith Parkinson'), + ('Sarton May'), + ('Lori Foster'), + ('Janelle Dennison'), + ('Jill Jones'), + ('Shana Abe'), + ('Emma Holly'), + ('Gary Brandner'), + ('Linda Ladd'), + ('Jack L. CHALKER'), + ('Patricia Phillips'), + ('Julie Beard'), + ('Laurie McBain'), + ('Andrea Parnell'), + ('Catherine Lanigan'), + ('Jill Barnett'), + ('Stephen Bury'), + ('Marlena De Blasi'), + ('Aliza Sherman'), + ('Gregg Olsen'), + ('Daphne Gottlieb'), + ('Daniel Drennan'), + ('Peg Kerr'), + ('John F. Kennedy'), + ('Gordan Korman'), + ('Rosalind Greenberg'), + ('Elaine St. James'), + ('Laurie Abkemeier'), + ('Richard Eyre'), + ('Linda Eyre'), + ('Jonathan Berent'), + ('Ken Merrell'), + ('Phyllis Gates'), + ('Patricia Briggs'), + ('Holly Lisle'), + ('L.J. Smith'), + ('L. J. Smith'), + ('Larry Dixon'), + ('Larry Elmore'), + ('Ru Emerson'), + ('Ellen Guon'), + ('David Trotter'), + ('Charlotte Mitchell'), + ('Debra Ginsberg'), + ('Josepha Sherman'), + ('Ian J. Burton'), + ('Purple Ronnie'), + ('Teresa Crane'), + ('François Ricard'), + ('François Kérel'), + ('Jack Clifford Smith'), + ('Douglas R. Hofstadter'), + ('Nick Meglin'), + ('Diane Meglin'), + ('Lauren Jarrett'), + ('Lisa Lenard'), + ('Nan Phifer'), + ('Cathy Ann Johnson'), + ('BERNARD POULIN'), + ('Lin Wellford'), + ('Michael Meyer'), + ('Alwyn Crawshaw'), + ('Juliet Bawden'), + ('James Van Praagh'), + ('Maurizio Bongianni'), + ('Stevie Daniels'), + ('D.G. Hessayon'), + ('D.G.'), + (' Dr. Hessayon'), + ('Lois Hole'), + ('Derek Fell'), + ('Debbie Patterson'), + ('Andy Baggott'), + ('Adrian Forsyth'), + ('Laurel Aziz'), + ('Barbara Ganim'), + ('Susan Fox'), + ('Judy Jones'), + ('William Wilson'), + ('Terence Dickinson'), + ('C. W. Metcalf'), + ('Roma Felible'), + ('W. L. Wilmshurst'), + ('Derek Nelson'), + ('Alec Waugh'), + ('Gertrud Wittich'), + ('Friedrich Dürrenmatt'), + ('Björn Larsson'), + ('Jörg Scherzer'), + ('Urs Widmer'), + ('Joan Druett'), + ('Joyce Johnson'), + ('Thomas Nils Lindquist'), + ('Tommy Simpson'), + ('Lisa Hammel'), + ('William Bennett Seitz'), + ('Mary Francis Shura'), + ('Harry Mazer'), + ('Pike'), + ('Ellen Conford'), + ('Cherie Bennett'), + ('Janet Kovalcik'), + ('Carol Keeffe'), + ('Ellen Gunderson Traylor'), + ('John F. Walvoord'), + ('Alpha Staff'), + ('Shelley O''Hara'), + ('James P. Caher'), + ('John M. Caher'), + ('Patricia Waynant'), + ('David Galloway'), + ('Kurt Cobain'), + ('William H. Armstrong'), + ('James Barkley'), + ('Edward P. Jones'), + ('Edmund White'), + ('Deborah Ford'), + ('Olivia Judson'), + ('Catherine Clinton'), + ('Cortney Davis'), + ('Howard Stern'), + ('Kirk Mitchell'), + ('John Stossel'), + ('Starbuck O''Dwyer'), + ('Lori Alvord'), + ('Elizabeth Cohen Van Pelt'), + ('Terry Jones'), + ('Sanyika Shakur'), + ('Monster Kody Scott'), + ('A. J. Orde'), + ('Sheri S Tepper'), + ('Aaron Elkins'), + ('Aaron J. Elkins'), + ('Andrew Tobias'), + ('Jane Bicks'), + ('Milli Nickell'), + ('Gary Land'), + ('Montague Summers'), + ('Kelsey Grammer'), + ('Rose Block'), + ('Delilah Ahrendt'), + ('Michael Kerrigan'), + ('Matt Cohen'), + ('Patricia Jeffery'), + ('Jeff Davidson Jeffrey P.; Davidson'), + ('Margaret Wander Bonanno'), + ('Elena Poniatowska'), + ('Walter Jon Williams'), + ('John Peel'), + ('David R. Olson'), + ('John McCormick'), + ('Bronwyn Williams'), + ('Dominique Lapierre'), + ('Sara Dowse'), + ('Beth Yahp'), + ('Douglas Rushkoff'), + ('Arturo Perez- Reverte'), + ('David Wharry'), + ('Lyndon Baines Johnson'), + ('Michael Jordan'), + ('Susan Beth Pfeffer'), + ('Lynn Gamwell'), + ('Nancy Tomes'), + ('Marie B. Salazar'), + ('Brenda Wilkinson'), + ('Pauline Brown'), + ('Lee Stringer'), + ('J. Dennis Deitz'), + ('Richard Grimes'), + ('Susan Quinn'), + ('Leo Pennanen'), + ('Eric Knight'), + ('Josefa Heifetz'), + ('Torey L. Hayden'), + ('Robin Williams'), + ('Karen A. Signell'), + ('Keith Laumer'), + ('Austin Tappan Wright'), + ('Sherman Alexie'), + ('Flavia'), + ('Colin Higgins'), + ('Erik Weihenmayer'), + ('Tyrone T. Thomas'), + ('Karle Dickerson'), + ('Susan Kenney'), + ('Annette Lévy-Willard'), + ('Georgeson V'), + ('Ursula Markham'), + ('Chogyam Trungpa'), + ('Gene Wolfe'), + ('Robert Llewellyn'), + ('Jacques Lacarrière'), + ('Jack Jones'), + ('Rachel Kaberry'), + ('Amy K. Brown'), + ('David Farland'), + ('Kevin Brooks'), + ('Deborah McDowell'), + ('Roderick MacLeish'), + ('Rainer Maria Rilke'), + ('M.D. Herter Norton'), + ('Daniel Handler'), + ('Lance Gould'), + ('H Roberts Design'), + ('Catullus'), + ('David Mulroy'), + ('Pat Croce'), + ('Bill Lyon'), + ('Richard Price'), + ('Tony Britton'), + ('Ann Powers'), + ('Gwynedd M. Hudson'), + ('David Ambrose'), + ('Edward Hoagland'), + ('Phil Parks'), + ('Phyllis Raybin Emert'), + ('Jael'), + ('Ursula Burkowski'), + ('Christopher Davis'), + ('Ron Nyswaner'), + ('Annie Smith'), + ('Ann Ripley'), + ('Avery Thorne'), + ('Meek'), + ('Sydney Biddle Barrows'), + ('William Novak'), + ('Holger Freese'), + ('Helga Krüger'), + ('Brigitte Wolters'), + ('Mary Mapes Dodge'), + ('Children''s Classics'), + ('Jeannie Sakol'), + ('Rexanne Becnel'), + ('Colleen L. Reece'), + ('Elizabeth Coatsworth'), + ('Michael Viner'), + ('Stefan Rudnicki'), + ('Roger Rees'), + ('Laurie Gwen Shapiro'), + ('Vera Neville'), + ('Marina Zwetajewa'), + ('Heinz G. Konsalik'), + ('Eva-Christiane Wetterer'), + ('Joanne Horniman'), + ('Sa Shan'), + ('Werner Richter'), + ('Betsy Schmitt'), + ('Aeron Clement'), + ('Fabienne Marsh'), + ('Donna Huston Murray'), + ('Johanna Hurwitz'), + ('Terri Fields'), + ('Steinunn Sigurdardóttir'), + ('Coletta Bürling'), + ('Noëlle Châtelet'), + ('Daniel Mason'), + ('Bertolt Brecht'), + ('Harry Mulisch'), + ('Maria Csollány'), + ('Sophokles'), + ('Russell Munson'), + ('Jeannie Ebner'), + ('Robert Schneider'), + ('R. Spill'), + ('Janice Carlisle'), + ('Raymond R. MacCurdy'), + ('Elia Kazan'), + ('Brian Johnston'), + ('Margaret Craven'), + ('Sinclair Lewis'), + ('Frank Kermode'), + ('Deborah Levy'), + ('D.H. Lawrence'), + ('Robin Morgan'), + ('Edmund Rostand'), + ('Mary Clearman Blew'), + ('Pauline Rosenau'), + ('Carolyn McVickar Edwards'), + ('Jonn Mumford'), + ('Thomas Erskine'), + ('Jennifer Lash'), + ('Mel Blanc'), + ('Philip Bashe'), + ('George Dangerfield'), + ('Sam Shepard'), + ('Ludwig Thoma'), + ('Ursula Segebrecht'), + ('Dave Bowler'), + ('Bryan Dray'), + ('Giovanni Bandini'), + ('Verity Campbell'), + ('Virginia Trioli'), + ('Phil Kuntz'), + ('Nancy Snow'), + ('Simon Colvey'), + ('Robert M. Eversz'), + ('Marianne Wood'), + ('Ken Catran'), + ('Helen Hodgman'), + ('Rene Delorm'), + ('Janice Harrell'), + ('Joan Elizabeth Lloyd'), + ('Susan M. Love'), + ('Susan M. Love M.D.'), + ('Karen Lindsey'), + ('Ann Copeland'), + ('Evelyn Rogers'), + ('Sonya Birmingham'), + ('Katherine Sutcliffe'), + ('Kathryn Atwood'), + ('Laura Kinsale'), + ('Yuri Rubinsky'), + ('Ian Wiseman'), + ('Marci Shimoff'), + ('Car'), + ('Mj Rose'), + ('Josephine Hart'), + ('Elizabeth Dewberry Vaughn'), + ('Laura Reese'), + ('Barry Gifford'), + ('Peter Lawrence'), + ('Richard Rosen'), + ('Betty Mahmoody'), + ('Arnold D. Dunchock'), + ('Hans Pfitzinger'), + ('Petra Hrabak'), + ('Rita Seuß'), + ('Grace Gershuny'), + ('Deborah L. Martin'), + ('Diana Wells'), + ('Jacob Ludwig Carl Grimm'), + ('Jacob W. Grimm'), + ('Wilhelm Gri'), + ('Candace Bahouth'), + ('Clay Perry'), + ('Ippy Patterson'), + ('Sara B. Stein'), + ('Andrew Stoker'), + ('Sasha Williamson'), + ('William Warriner'), + ('Maryjo Koch'), + ('Rene Bergh'), + ('Mary Kidd'), + ('Alan Watts'), + ('Nancy Toder'), + ('Sylvia Brownrigg'), + ('Charlotte J. Beck'), + ('Steve Smith'), + ('Alan W. Watts'), + ('John Goldstein'), + ('Manuela Soares'), + ('Celina Spiegel'), + ('Christina Buchmann'), + ('Monica Furlong'), + ('Mark Garland'), + ('Elizabeth Lesser'), + ('Anya Weinstein'), + ('Michael Newton'), + ('Jeremy Tambling'), + ('Hablot K. Browne'), + ('Han Nolan'), + ('Michael Kilian'), + ('Judith Viorst'), + ('Lynn Solotaroff'), + ('Ronald Blythe'), + ('Harold N.'), + (' M.D. Levinson'), + ('Martha Manning'), + ('Ian Irvine'), + ('Leon Garfield'), + ('Baz Luhrmann'), + ('Craig Pearce'), + ('William Sh'), + ('Joanna Russ'), + ('Dwight Yoakam'), + ('Harold Bloomfield M.D.'), + ('Sharon Janis'), + ('Joy Sikorski'), + ('Wu Wei'), + ('Ram Dass'), + ('Karen Casey'), + ('Harpersanfrancisco'), + ('Dave Marsh'), + ('Steve Hagen'), + ('John Bradshaw'), + ('Stephen Fender'), + ('Gail McMeekin'), + ('Marc Gafni'), + ('Jon Kabat-Zinn'), + ('Michael Toms'), + ('Keith Jarrett'), + ('Julia'), + ('Jeffrey E. Young'), + ('Janet S. Klosko'), + ('Aaron T. Beck'), + ('John Chaffee'), + ('Thomas Ayres'), + ('Patricia Lynn Reilly'), + ('Mark Nepo'), + ('John A. Tracy CPA'), + ('Christine Westermann'), + ('Petru Popescu'), + ('Crawford Kilian'), + ('Jack Gaver'), + ('David Copperfield'), + ('William M Thackeray'), + ('Harald Hellmann'), + ('Norman F. Cantor'), + ('Peter Israel'), + ('Lesley Hazleton'), + ('Keith Haviland'), + ('Dina Gray'), + ('Ben Salama'), + ('Jennifer Niederst'), + ('Phillip Giroux'), + ('Bob Beckstrom'), + ('Lance Walheim'), + ('The Edi'), + ('Roland E. Larson'), + ('Bruce H. Edwards'), + ('Robert P. Hostet'), + ('Berlitz Guides'), + ('Isaac Adamson'), + ('Helen Prejean'), + ('L.M. Boyd'), + ('Brian Freemantle'), + ('Mark Arax'), + ('Rick Wartzman'), + ('Armin A. Brott'), + ('Jennifer Ash'), + ('Mick Jackson'), + ('Pierre Boulle'), + ('Timothy Egan'), + ('Julie Hecht'), + ('John Feinstein'), + ('Walter Mercado'), + ('PAUL (ED) ATTERBURY'), + ('Herman J. Viola'), + ('Jan S. Danis'), + ('Carolyn J. Margolis'), + ('Kenneth Copeland'), + ('Gloria Copeland'), + ('James F. Dunnigan'), + ('Clay Reynolds'), + ('Heather MacDonald'), + ('Lauren Steinhauer'), + ('Laura Miller'), + ('Adam Begley'), + ('Daniel J. Boorstin'), + ('James C. Collins'), + ('Jerry I. Porras'), + ('Shunryu Suzuki'), + ('Trudy Dixon'), + ('Richard Baker'), + ('Huston Sm'), + ('Alice Joyce Davidson'), + ('Victoria Marshall'), + ('John Weisman'), + ('Bill Barnes'), + ('Clair Alan Brown'), + ('Eric A. Kimmel'), + ('Jon Goodell'), + ('Kristoffer J. Buquet'), + ('Dorit Bader Whiteman'), + ('Corey Sandler'), + ('Richard Ellis'), + ('Jane Fonda'), + ('Louise Bates Ames'), + ('Frances L. Ilg'), + ('Charlotte Brontï¿1/2'), + ('Margaret Smith'), + ('Moya Costello'), + ('Ellen Kushner'), + ('Faith Conlon'), + ('Ingrid Emerick'), + ('Christina Henry De Tes'), + ('Darryl Reanney'), + ('Louise Fitzhugh'), + ('Richard Shenkman'), + ('Dion Fortune'), + ('Kenneth W. Royce'), + ('Boston T. Party'), + ('Robert Shea'), + ('Robert Anton Wilson'), + ('Monica McInerney'), + ('Ben Jeapes'), + ('Hana Wirth-Nesher'), + ('Clifford A. Pickover'), + ('Joann Morse'), + ('Kerstin Ekman'), + ('Marilyn Pappano'), + ('Mary Balogh'), + ('Hailey North'), + ('Karen Anders'), + ('Kristin Hardy'), + ('Karen Ranney'), + ('Candace Camp'), + ('Michele Albert'), + ('John Roger'), + ('PC LEARNING LAB'), + ('Kristen Britain'), + ('Charles J. Keating'), + ('Jane Resh Thomas'), + ('Lauren Brooke'), + ('Judy Tatchell'), + ('L. Moeri'), + ('Nicholas Edwards'), + ('Janni Lee Simner'), + ('Mike Jahn'), + ('Gorman'), + ('Claire Rudolf Murphy'), + ('Mary Jane Auch'), + ('Judy Richter'), + ('Pam Ryan'), + ('Mary Stanton'), + ('D. Craig'), + ('David Burn'), + ('Cecilia Fitzsimons'), + ('Judy Alter'), + ('Lange Lewis'), + ('Alistair Maclean'), + ('Francesca Stanfill'), + ('Joyce E. Strom-Paikin RN'), + ('H. E. Bates'), + ('William McGivern'), + ('Robert Goddard'), + ('Bruce Nicolaysen'), + ('C. Peterson'), + ('Pricilla Hamilton'), + ('Sanders'), + ('James Martin'), + ('Louis W. Storms IV'), + ('Scott J. Peterson (MCSD MCT)'), + ('Gary J. Nutt'), + ('Wout J Hofman'), + ('Janell Cannon'), + ('Patricia Polacco'), + ('Renee Graef'), + ('David Kirk'), + ('Robert Nisbet'), + ('Sarah Dessen'), + ('Brian Gallagher'), + ('Thomas H. Cook'), + ('Algernon B. Mitford'), + ('Linda Piazza'), + ('Cynthia Blair'), + ('Nicholas Pine'), + ('Robert Browning'), + ('Rick Beech'), + ('Rui Nunes'), + ('Rhidian Brook'), + ('Steven Millhauser'), + ('Eca De Quieros'), + ('Lucy Ellmann'), + ('Jeremy Narby'), + ('Doris R. Meredith'), + ('Jay Winik'), + ('Johanna Ellsworth'), + ('Caroline MacDonald'), + ('Tristine Rainer'), + ('Anaïs Nin'), + ('Darien Cooper'), + ('Ken J. Roberts'), + ('Joyce Rupp'), + ('Jane Pitz'), + ('Mark E. Thibodeaux'), + ('Claire Cloninger'), + ('Evelyn Christenson'), + ('Loretta LaRoche'), + ('Lyn Holley Doucet'), + ('Macrina Wiederkehr'), + ('Paula D''Arcy'), + ('Brian Harper'), + ('Steve Pieczenik'), + ('Charles Mackay'), + ('Janine M. Benyus'), + ('Cindy Stone'), + ('Frances Moore Lappe'), + ('Anna Lappé'), + ('Eva Hoffman'), + ('Declan Kiberd'), + ('Desmond Bagley'), + ('Lynsay Sands'), + ('Robert Kaplow'), + ('Kaori Yuki'), + ('Nina Olligschläger'), + ('Kazushi Hagiwara'), + ('Robert Gernhardt'), + ('Philipp Rippel'), + ('Fatima Igramhan-Parsons'), + ('Jacques Vallee'), + ('Kristen Stagg'), + ('Jesse Lee Kercheval'), + ('Ruth Brown'), + ('Peter Barrett'), + ('Christina Hoff-Sommers'), + ('Cal Thomas'), + ('Laura C. Schlessinger'), + ('Ted Andrews'), + ('Bevarly'), + ('Suzi Golden'), + ('Liz Fielding'), + ('Amy Wallace'), + ('Laura Scribner Kastner'), + ('Jennifer F. Wyatt'), + ('Isabel Stanley'), + ('James Duncan'), + ('Frank McSherry'), + ('Charles Waugh'), + ('Mart'), + ('Michael Levin'), + ('Rosemary Wells'), + ('Joe Dominguez'), + ('Vicki Robin'), + ('Elizabeth Pope'), + ('John Gilstrap'), + ('Stephen Horn'), + ('Jack Olsen'), + ('Joel Porte'), + ('William Poundstone'), + ('Sara Donati'), + ('Laraine T. Zappert'), + ('Christopher M. Byron'), + ('Christopher Down'), + ('Li'), + ('Booth Tarkington'), + ('Tim Sandlin'), + ('Joseph D. Pistone'), + ('Jonathan Baird'), + ('Carol M. Allen'), + ('Tony Strong'), + ('Alistair MacLeod'), + ('John Colby'), + ('Inigo Surguy'), + ('Rudiger Voigt'), + ('Jeffrey Haas'), + ('R. D. Ginn'), + ('Rick Fields'), + ('Peggy Taylor'), + ('Rex Weyler'), + ('Rick Ingrasci'), + ('David Breashears'), + ('Walter Satterthwait'), + ('William Mize'), + ('C. J. Box'), + ('Peter Moore Smith'), + ('Denise Mina'), + ('Ron Franscell'), + ('Amanda Foreman'), + ('David Starkey'), + ('Elizabeth Jane Howard'), + ('Charles Spencer'), + (' Earl Spencer'), + ('Nancy Mitford'), + ('Nancy Singer'), + ('Austin S. Camacho'), + ('Gregg Hurwitz'), + ('Colin Bateman'), + ('Gil Brewer'), + ('E. V. Cunningham'), + ('Gillian Roberts'), + ('Edward Lear'), + ('Stuart R. Kaplan'), + ('Mike Myers'), + ('Sarah Lyddon Morrison'), + ('Joshua Halberstam'), + ('Bruce Porter'), + ('Mark Christensen'), + ('MATSURI AKINO'), + ('Mari Akino'), + ('Kanan'), + ('Sakurako Gokurakuin'), + ('Ken Akamatsu'), + ('Yukito Kishiro'), + ('Byron Preiss'), + ('Masami Tsuda'), + ('Rachel Hawthorne'), + ('Mark Kalesniko'), + ('Reiko Momochi'), + ('Tokyopop'), + ('Rei Idumi'), + ('Tatsuya Hamazaki'), + ('Miwa Ueda'), + ('Dan Papia'), + ('Beverley Birch'), + ('Tony Kerins'), + ('Christopher Hart'), + ('Hinako Ashihara'), + ('Tomoko Taniguchi'), + ('John Burningham'), + ('Barrett'), + ('Storytime Collection Childrens'), + ('Terry Deary'), + ('Barbara Allen'), + ('Philip Reeve'), + ('Dreamworks'), + ('Angela Sommer-Bodenburg'), + ('Amelie Glienke'), + ('Kjartan Poskitt'), + ('Chris Fisher'), + ('Phil Roxbee-Cox'), + ('Sue Hellard'), + ('Alan Gibbons'), + ('Apsley Cherry Garrard'), + ('Anna Wimschneider'), + ('Brigitte Walitzek'), + ('John S Mill'), + ('Michael Sontheimer'), + ('Heinrich Von Kleist'), + ('Helmut Sembdner'), + ('Phyllis D. James'), + ('Marcel Reich-Ranicki'), + ('Richard Zoozmann'), + ('Irma Kurtz'), + ('Craig Smith'), + ('Knut Krüger'), + ('Troy Denning'), + ('Philip; Slattery'), + (' Joan (editor) Pullman'), + ('Joris-Karl Huysmans'), + ('Simon Callow'), + ('George Chapman'), + ('Isabel Alcántara'), + ('Sandra Egnolff'), + ('Catherine Crowe'), + ('Gina Wisker'), + ('Deborah Grandinetti'), + ('David Colbert'), + ('Jarrold Publishing'), + ('Alexander Trocchi'), + ('Judith Herrin'), + ('Roger Highfield'), + ('Carlo Fruttero'), + ('Franco Lucentini'), + ('Richard Taylor'), + ('W. E. B. Griffin'), + ('Rudolf Steiner'), + ('D. Osmond'), + ('J. Collis'), + ('Carlo A. Michelini'), + ('Cate Tiernan'), + ('Matilde Olivella Castells'), + ('Elizabeth Guzmán'), + ('Paloma'), + ('Christopher Kendris'), + ('And The Language Experts At Berlitz'), + ('David A. Van Meter'), + ('Kathy Herman'), + ('Al Roker'), + ('D. J. Donaldson'), + ('Michael H. Brown'), + (' Sir Doyle'), + ('Jeff Coghill'), + ('Eugene C. Kennedy'), + ('Patricia Sargent'), + ('Garson Kanin'), + ('Twain'), + ('Nathan Pritikin'), + ('Al Gore'), + ('Lois And Louis Darling'), + ('Kay Mills'), + ('Susan Sheehan'), + ('Edith Deen'), + ('Ian St.James'), + ('John Buchan'), + ('Roz Levine'), + ('Enid C. King'), + ('Brian Price T'), + ('Harper Collins Publishers'), + ('R. K. Gordon'), + ('Charles S. Carver'), + ('Michael F. Scheier'), + ('Calvin S. Hall'), + ('Vernon J. Nordby'), + ('Michael Kanaly'), + ('Richard H. Green'), + ('Louise Hay'), + ('Janet Kagan'), + ('Colonel David H. Hackworth'), + ('Julie Sherman'), + ('Robert Bramson'), + ('Michele Hall'), + ('Robert Graves'), + ('O. Henry'), + ('Holly Thompson'), + ('Kathleen Givens'), + ('Jim Harrison'), + ('Aramis Thorn'), + ('Nancy Springer'), + ('Gilles Perrault'), + ('Stephen Knight'), + ('Morris L. West'), + ('Jean Plaidy'), + ('Ethel Barrett'), + ('Tracy West'), + ('Keith Batcheller'), + ('Judith Gould'), + ('BH&G Editors'), + ('Simone Simmons'), + ('Peter J. Heck'), + ('Richard Ellmann'), + ('T Cooper'), + ('Wolfgang Schüssel'), + ('Ilon Wikland'), + ('Sheri McGregor'), + ('Jurek Becker'), + ('James Cowan'), + ('Maisie Mosco'), + ('Stan Rapp'), + ('Tom Collins'), + ('Hal Rosenbluth'), + ('David H. Maister'), + ('Eric A. Knudsen'), + ('A. Grove Day'), + ('Robert B. Miller'), + ('Stephen E. Heiman'), + ('Tad Tuleja'), + ('Michael LeBoeuf'), + ('Shiva Naipaul'), + ('James B. South'), + ('William Irwin'), + ('Rob Macgregor'), + ('Gregory Benford'), + ('Elizabeth Castro'), + ('Doris Egan'), + ('Martha Wells'), + ('Pagan Kennedy'), + ('Sherwood Smith'), + ('Leonard Maltin'), + ('Tomie De Paola'), + ('Rising Moon Editors'), + ('Don Hewitt'), + ('Jill Marie Landis'), + ('Hampton Howard'), + ('Velda Johnston'), + ('Howard Cosell'), + ('Peter Bonventre'), + ('Sol Stein'), + ('Regina Kehn'), + ('Heike Schwarzbauer'), + ('Rick T'), + ('Joe Benitez'), + ('Marcia Chen'), + ('David'), + ('Christopher Roden'), + ('Michael Hayden'), + ('Rachael Leigh Cook'), + ('Giovanni Boccaccio'), + ('G. H. McWilliam'), + ('Emilio Salgari'), + ('Alma Maritano'), + ('Luigi Ricci'), + ('Christian Gauss'), + ('Jack Kornfield'), + ('Carr Clifton'), + ('Patricia Wentworth'), + ('Jack Du Brul'), + ('Richard Steinberg'), + ('Rick Bundschuh'), + ('Penny Jordan'), + ('Linda Turner'), + ('James P. McGettigan'), + ('Jan Rogozinski'), + ('Mandy Andress'), + ('Jon Ronson'), + ('Ron Pretty'), + ('W.Gordon Smith'), + ('Alethea Hayter'), + ('Yukio Mishima'), + ('Kathleen Sky'), + ('Sondra Marshak'), + ('Myrna Culbreath'), + ('Kij Johnson'), + ('Kelly Freas'), + ('Tom Kidd'), + ('Karen Rispin'), + ('Eric W. Weisstein'), + ('Albert Ellis'), + ('Robert A. Harper'), + ('Melvin Powers'), + ('Edgar Evans Cayce'), + ('Henry Reed'), + ('Herbert B. Puryear'), + ('Richard I. Abrams'), + ('S'), + ('L. Perry Wilbur'), + ('Webster Kuswa'), + ('Jerry O''Brien'), + ('Jane Roberts'), + ('Donald Thompson'), + ('Phil Donahue & Co.'), + ('Dr. Gene Brewer'), + ('John Schilb'), + ('Elizabeth A. Flynn'), + ('John Clifford'), + ('Jeff Reid'), + ('Lawrence M. Krauss'), + ('Pierre Gripari'), + ('Chris Kitch'), + ('Caroline Myss'), + ('Pociao'), + ('Udo Breger'), + ('B. Kliban'), + ('Aritha Van Herk'), + ('Frances Itani'), + ('Karen Dudley'), + ('Jamie Bastedo'), + ('Alfonso Ortiz'), + ('Alfons'), + ('John R. Dann'), + ('Martin Edic'), + ('Modris Eksteins'), + ('Linnea Due'), + ('Charlene Spretnak'), + ('Michel Tremblay'), + ('John Van Burek'), + ('Bill Glassco'), + ('David Fennario'), + ('Holley Rubinsky'), + ('Barbara Robinson'), + ('Robert Hass'), + ('Edward Bellamy'), + ('Gregory Howard Williams'), + ('Elaine Camp'), + ('Naomi Horton'), + ('Browning'), + ('Edith St. George'), + ('Gousha'), + ('Carol Norris'), + ('Dorothy Ann Bernard'), + ('Elizabeth August'), + ('Tim F. LaHaye'), + ('Dorothy Sayer'), + ('Terris McMahan Grimes'), + ('Katherine Kurtz'), + ('Richard Miniter'), + ('John Cheever'), + ('Catherine Cookson'), + ('Pamela Morsi'), + ('E. Fuller Torrey'), + ('Imraan Coovadia'), + ('Paul Preuss'), + ('Marlo Thomas'), + ('Friends'), + ('Richard Lischer'), + ('Robert Hellenga'), + ('Campbell Soup Company'), + ('Nancy Bell'), + ('Liz Neporent'), + ('Suzanne Schlosberg'), + ('Doug Lipman'), + ('Jack Prelutsky'), + ('Marilyn Hafner'), + ('Ed Rose'), + ('Harlynne Geisler'), + ('Jennifer Justice'), + ('Susan Wilson'), + ('Valerie Marsh'), + ('Patrick K. Luzadder'), + ('Margaret Read MacDonald'), + ('Paul Aurandt'), + ('Pleasant DeSpain'), + ('David Heflick'), + ('Patrick Fraley'), + ('Michael Harrison'), + ('Christopher Stuart-Clark'), + ('Loung Ung'), + ('Nellie Bly'), + ('A.J. Jacobs'), + ('Thomas Norton'), + ('Stephen C. Lundin'), + ('Harry Paul'), + ('John Christensen'), + ('Lynn Abbey'), + ('Dave Duncan'), + ('Murry'), + ('Michael Jensen'), + ('Charles Causely'), + ('M. E. Bradford'), + ('Russell Kirk'), + ('Allen Klein'), + ('Robert H. Bork'), + ('Thomas L. Friedman'), + ('Molière'), + ('Jean Sasson'), + ('Andrew Sanders'), + ('Patricia Crick'), + ('Geoffrey Moore'), + ('Mrs. Mary Rowlandson'), + ('Mary Rowlandson'), + ('Jon Katz'), + ('Brigitta Restorff'), + ('Effie Leland Wilder'), + ('Laurie Allen Klein'), + ('Shauna Singh Baldwin'), + ('Venerable Henepola Gunaratana'), + ('Barbara Quick'), + ('Lori Reid'), + ('Bee Willey'), + ('Irene Radford'), + ('Brian Froud'), + ('Jessica Macbeth'), + ('Naomi Kritzer'), + ('Karleen Koen'), + ('Ann Chamberlin'), + ('Patrick Dunleavy'), + ('Randy Moravec'), + ('Kate Thompson'), + ('Rosalind M. Greenberg'), + ('John Nunneley'), + ('Arnold Stadler'), + ('Angelika Fel A'), + ('Joe Harnell'), + ('Ira Skutch'), + ('T.J. MacGregor'), + ('Joanna Campbell'), + ('Editor And Introduction Burton Raffel'), + ('Ann Bell'), + ('Michelle Caruso'), + ('Nicholas W. Maier'), + ('Rick Ridgway'), + ('Michelle Stacey'), + ('James Bradley'), + ('Kees Van Kooten'), + ('Graham Thomas'), + ('Kim Antieau'), + ('Brian Lumley'), + ('Bud MacFarlane Jr.'), + ('Ray Shannon'), + ('Lee Hoffman'), + ('Lyle Brandt'), + ('L. A. Banks'), + ('Elaine Moore'), + ('Dawn Stewardson'), + ('Michael Mogadam'), + ('Ulrich Bitz'), + ('JILL MANSELL'), + ('William Jeremiah Coughlin'), + ('William Coughlin'), + ('D. W. Buffa'), + ('D.W. Buffa'), + ('Eric Berne'), + ('Tananarive Due'), + ('Alice Koller'), + ('Erin Pizzey'), + ('Emma Gold'), + ('Lawrence'), + ('Sarah Bird'), + ('Jacqueline DeMontravel'), + ('Deborah Smith'), + ('Sandra Chastain'), + ('John Glenn'), + ('Nick Taylor'), + ('Gladys Knight'), + ('Fred J.'), + (' M.D. Epstein'), + ('Elaine Fantle Smimberg'), + ('Asha Bandele'), + ('Genia Wennerstrom'), + ('Robert Frost'), + ('David Bradley'), + ('Dewitt Jones'), + ('Renée Zucker'), + ('Rumiko Takahashi'), + ('Naoko Takeuchi'), + ('Chikako Noma'), + ('Naako Takeuchi'), + ('Sherri Mandell'), + ('Michael Pearce'), + ('Judith Swaddling'), + ('Nancy Kerrigan'), + ('Steve Woodward'), + ('Andrews McMeel Publishing'), + ('Glenn Stout'), + ('The #1 Sports Writer'), + ('Andrew Donkin'), + ('Betty; Salter'), + (' Owen (editor) Cuthbert'), + ('Gillian Chapman'), + ('H. J. Rose'), + ('W. H. D. Rouse'), + ('Ernest Shackleton'), + ('Carl'), + (' Hiaasen'), + ('Moses Hadas'), + ('G. M. A. Grube'), + ('S. Peters'), + ('Karen Meyer'), + ('Spain'), + ('J. Robert King'), + ('K. B. Bogen'), + ('Janny Wurts'), + ('C. Dean Andersson'), + ('Mitchell Graham'), + ('John Helfers'), + ('Elaine Cunningham'), + ('Keith Robar'), + ('Simone Sassen'), + ('Berlin'), + ('Stan Cutler'), + ('Delia Ephron'), + ('Will Lawson'), + ('James Morgan'), + ('Sidney Abbott'), + ('Barbara Love'), + ('Leah Rabin'), + ('Helen Epstein'), + ('Victor Klemperer'), + ('Stephen Graham Jones'), + ('Leila Vennewitz'), + ('P.J. Gearing'), + ('E.V. Brunson'), + ('Thomas Clark'), + ('Bruce Woods'), + ('Peter Blocksom'), + ('Angela Ter'), + ('New York Public Library'), + ('William Noble'), + ('Rick Buda'), + ('Jan Harold Brunvand'), + ('Nevins'), + ('Robert K. Ressler'), + ('Margaret Visser'), + ('Oswald Wynd'), + ('Steven Brust'), + ('Cynthia Rutledge'), + ('Ellen Bass'), + ('Joan Barzilay Freund'), + ('Leigh Keno'), + ('Leslie Keno'), + ('Georges Pérec'), + ('Kenneth Uptegrove'), + ('American College Of Sports Medicine'), + ('ACSM'), + ('David Watmough'), + ('David Magarshack'), + ('David Magarsha'), + ('Jane Hitchcock'), + ('George Konrad'), + ('Phil Farrand'), + ('Joe'), + ('Daniel B. Baker'), + ('Sean O''Brien Strub'), + ('Bill Henning'), + ('Bi'), + ('Isabel Anders'), + ('Sherryl Jordan'), + ('Kelvin Christopher James'), + ('Ann Granger'), + ('Axel Merz'), + ('Michael Stewart'), + ('R. Karl Largent'), + ('Muriel Gray'), + ('Helias'), + ('Salvatore R.a.'), + ('Denise Bombardier'), + ('Dani Sinclair'), + ('Suzanne Ellison'), + ('Robert H. Eisenman'), + ('Katherine Anne Porter'), + ('Harriet Beecher Stowe'), + ('Ruth Hayes'), + ('Wolf Von Lojewski'), + ('William Norris'), + ('Hansjörg Martin'), + ('Margaret Millar'), + ('Bill Hybels'), + ('Lynne Hybels'), + ('Luigi Pirandello'), + ('Sophocles'), + ('Aristophanes'), + ('India Edghill'), + ('Bernhard Straub'), + ('Eric Ambler'), + ('Bruce McCall'), + ('Hanns Peter Karr'), + ('Walter Wehner'), + ('Jane Simmons'), + ('Jürgen Ebertowski'), + ('No Author'), + ('Wolfram Fleischhauer'), + ('Denis Pethebridge'), + ('Dewey Gram'), + ('Earma Brown'), + ('Alzir He'), + ('Richard D. Kellough'), + ('Noreen G. Kellough'), + ('Jane E. Aaron'), + ('Totline'), + ('Susan B. Neuman'), + ('Carol Copple'), + ('Sue Bredekamp'), + ('Nationa'), + ('Lois McCue'), + ('Jula Libonn'), + ('Shirley Raines'), + ('Robert J. Canady'), + ('Judith Schickendanz'), + ('Linda Acredolo'), + ('Susan Goodwyn'), + ('Daniel Avram Richman'), + ('L. Curtis'), + ('Rosalind Charlesworth'), + ('Helen Bee'), + ('Helen Harrison'), + ('Ann Kositsky'), + ('Joan Beck'), + ('Dr. Robert Bucknam'), + ('Barbara Rowley'), + ('B. Blake Levitt'), + ('Benjamin Spock'), + ('Pierre Le Rouzic'), + ('Dell Publishing'), + ('Julie Hagstrom+joan Morri'), + ('Sandi Kahn Shelton'), + ('Princeton Language Institute'), + ('Jay Sylvan Cohen'), + ('Robert Berkow'), + ('Edie Jarolim'), + ('Moira Duggan'), + ('Jeff Perk'), + ('Earl Steinbicker'), + ('Tracey Menges'), + ('Stephen Colwell'), + ('Ann Shulman'), + ('Sheryl Lindsell-Roberts'), + ('William H. Hylton'), + ('David Lambert'), + ('Peter Ward'), + ('Christopher McGowan'), + ('Tom Brown'), + ('Phillip E. Pack'), + ('Jerry Bobrow'), + ('Herbert S. Zim'), + ('Chandler S. Robbins'), + ('Bertel Bruun'), + ('Ar'), + ('Jonathan A. Michaels'), + ('William Pollack'), + ('Cynthia Griffin Wolff'), + ('Michael Murphy'), + ('Akif Pirincci'), + ('A. Mousnier-Lompré'), + ('Howard P. Lovecraft'), + ('H. P. (Howard Philips) Lovecraft'), + ('Jacques Papy'), + ('Simone Lamblin'), + ('Yves Ri'), + ('Eric-Emmanuel Schmitt'), + ('Jim Hougan'), + ('Werner Sikorski'), + ('Rainer Laabs'), + ('Rudy Rucker'), + ('Antoine Volodine'), + ('Raphael Aloysius Lafferty'), + ('Emmanuel Jouanne'), + ('Jacques Barbéri'), + ('Somtow Sucharitkul'), + ('Elisabeth Vonarburg'), + ('Jean-Pierre Harrison'), + ('Arnauld Pontier'), + ('Monika Blaich'), + ('James Houston'), + ('Dutch Sheets'), + ('J. T. L James'), + ('Larry K. Brendtro'), + ('Martin Brokenleg'), + ('Steve Van Bocke'), + ('Greg Giangrande'), + ('Stephanie Clement'), + ('Richard Morris'), + ('John Muir'), + ('Anne Delbee'), + ('Helmut Kossodo'), + ('ARNOLD P. ABBOTT'), + ('Malcolm Lowry'), + ('Marcus J. Borg'), + ('Ian Carr'), + ('Digby Fairweather'), + ('Brian Priestly'), + ('Bryan Appleyard'), + ('Margaret MacMillan'), + ('Richard Holbrooke'), + ('Casey Hampton'), + ('Sarah Turnbull'), + ('Charles Todd'), + ('Echo Heron'), + ('Donea L. Shane'), + ('Lisa Goldstein'), + ('John Edgar Wideman'), + ('P. W. Storm'), + ('Cynthia D. Grant'), + ('Ronald Tierney'), + ('James W. Huston'), + ('Ward Carroll'), + ('Richard Herman'), + ('Brian Haig'), + ('Michael Ridpath'), + ('Avodah K. Offit'), + ('Allan Topol'), + ('Don Passman'), + ('Susan Feldman'), + ('John Krist'), + ('Jon Stewart'), + ('James D. Watson'), + ('Edward De Bono'), + ('P S Rushforth'), + ('Carole Klein'), + ('Brian Lee'), + ('Lisa Alther'), + ('W. Somerset Maugham'), + ('Max Beerbohm'), + ('Erin Hart'), + ('Susan Hillmore'), + ('Gemma Grott'), + ('Robin Pilcher'), + ('Kimberly Willis Holt'), + ('David Rakoff'), + ('Tony Vigorito'), + ('William Harvey'), + ('N. J. Dawood'), + ('Jonathon Lazear'), + ('Wendy Lazear'), + ('David Borgenicht'), + ('Sarah Jordan'), + ('Afi-Odelia E. Scruggs'), + ('Mary Ann McDonald'), + ('Amy Sylvester Katoh'), + ('Shin Kimura'), + ('Yutaka Satoh'), + ('ALEJANDRO DUMAS'), + ('GUILLERMO PIEDRAHITA'), + ('Alejandro Dumas'), + ('N.C. Wyeth '), + ('Ric Edelman'), + ('James M. McPherson'), + ('Richard M. Ketchum'), + ('Allan Haley'), + ('Jeff Carlson'), + ('Glenn Fleishman'), + ('Toby Malina'), + ('Lynn Haller'), + ('Diana Martin'), + ('John Tollett'), + ('Diane Martin'), + ('Mitzi Szereto'), + ('Michael Farquhar'), + ('Roni Jay'), + ('Daniella Chace'), + ('Maureen B. Keane'), + ('David Smith'), + ('Kevin Neary'), + ('Carole Bloom'), + ('Marion Meade'), + ('Michelle Magorian'), + ('Kate Grenville'), + ('Henri Troyat'), + ('Robin; Van Der Vat'), + (' Dan Gardiner'), + ('Gary Jennings'), + ('Howard Shaw'), + ('C.J. McKnight'), + ('Ross Petras'), + ('Kathryn Petras'), + ('Bill Shoemaker'), + ('Leo Giroux Jr.'), + ('Dik Browne'), + ('Nancy K. Robinson'), + ('Monique Bonnet'), + ('Jeffrey Marks'), + ('Jeremy Leven'), + ('Arthur N Schwartz'), + ('Francis Steegmuller'), + ('Joan Stoliar'), + ('Patricia Veryan'), + ('Tanya Anne Crosby'), + ('George Alec Effinger'), + ('Joy Grdnic'), + ('Celeste De Blasis'), + ('Elliot S. Maggin'), + ('Helen Hooven Santmyer'), + ('Stephen Greenleaf'), + ('David Ackroyd'), + ('David Robbins'), + ('Mark Yarnell'), + ('Rene Reid Yarnell'), + ('Richard Poe'), + ('John Milton Fogg'), + ('Christopher Maurer'), + ('Richard Leakey'), + ('Jeffrey Meyers'), + ('Steven Saylor'), + ('Riane Eisler'), + ('Kim Carlson'), + ('Carrie Floyd'), + ('Beppe Severgnini'), + ('Giles Watson'), + ('Christopher G. Moore'), + ('Peter Friedrich'), + ('Arthur L. Burton III (Alb3)'), + ('Lauren Ruth Wiener'), + ('Wiener'), + ('Christin Lore Weber'), + ('Regena Thomashauer'), + ('Stephanie James'), + ('Grace Livingston Hill Library'), + ('Isabella MacDonald A'), + ('Kinley Macgregor'), + ('N. Curtis'), + ('Bradley Trevor Greive'), + ('Patricia A Mckillip'), + ('Perrault'), + ('Virginie Despentes'), + ('Bernard Gagnebin'), + ('Marcel Raym'), + ('Mike Resnick'), + ('Pierre-Paul Durastanti'), + ('Brite'), + ('Michael Resnick'), + ('William Desmond'), + ('Paul Klee'), + ('Thierry Soufflard'), + ('Robert Musil'), + ('Philippe Jaccottet'), + ('Lester Bangs'), + ('John Robert Colombo'), + ('April Wilson'), + ('Dana Reed'), + ('David Wiesner'), + ('Lee Gruenfeld'), + ('Conrad Richter'), + ('James Gurney'), + ('Lisa Potts'), + ('Kate Christensen'), + ('Lewis Burke Frumkes'), + ('Paula Begoun'), + ('Deborah Eisenberg'), + ('Ruth Moose'), + ('Mary Tannen'), + ('Casey Makela'), + ('Kathy Lamancusa'), + ('David Lavender'), + ('David James Duncan'), + ('Patricia Arrigoni'), + ('Nicholas Negroponte'), + ('Roger Fisher'), + ('William L. Ury'), + ('Richard P. Feynman'), + ('A. J McClane'), + ('Richard Berman'), + ('Ella E. Clark'), + ('Ernest H Rosenbaum'), + ('John Donoghue'), + ('James Swain'), + ('Erle Stanley Gardner'), + ('Ben Rice'), + ('Lucretia Walsh Grindle'), + ('Andrea Juno'), + ('V. Vale'), + ('Ralph Leighton'), + ('Edward Hutchings'), + ('John Logue'), + ('Klaus Lambrecht'), + ('Dinka Mrkowatschki'), + ('Leonard Cohen'), + ('Vaclav Havel'), + ('Werner Gross'), + ('Rosa Luxemburg'), + ('Annelies Laschitza'), + ('Georg Adler'), + ('Gerhard Prause'), + ('Tratschke'), + ('Robert Nozick'), + ('Dan Cavicchio'), + ('M. Therese Young'), + ('Miranda Gray'), + ('Ken Carey'), + ('Judith Stamper'), + ('Genevi Stamper'), + ('David Daniel'), + ('Reginald Hill'), + ('Hilary Walden'), + ('William F.'), + (' Jr. Buckley'), + ('Alexandria Ripley'), + ('Rebecca Harding Davis'), + ('Tillie Olsen'), + ('Peggy Rambach'), + ('Le Carre'), + ('R. David Thomas'), + ('Ron Beyma'), + ('Walter Anderson'), + ('Kate Saunders'), + ('Mark Mittelberg'), + ('Margaret M. Kimmel'), + ('Mark Juergensmeyer'), + ('David Wong Louie'), + ('John Ashbery'), + ('James Schuyler'), + ('Bob Schieffer'), + ('Roy Parvin'), + ('Gloria Gaither'), + ('Shirley Dobson'), + ('Russ Flint'), + ('Martha Saxton'), + ('Hysteria Magazine'), + ('Deborah Werksman'), + ('Jill Ker Conway'), + ('Ms. Nancy L. Mace MA'), + ('Dr. Peter V. Rabins MD MPH'), + ('Dr'), + ('Patricia L. Wrede'), + ('Lipman'), + ('Ginny Elkin'), + ('Deborah Coates'), + ('Mary Tyler Moore'), + ('Jim Lehrer'), + ('Karen Duffy'), + ('Jane Pettigrew'), + ('Tamara Traeder'), + ('Carmen Renee Berry'), + ('Carmen Renee Ber'), + ('Stephen Booth'), + ('June Rose'), + ('Terry Southern'), + ('Su Tong'), + ('John Harding'), + ('Nick Redfern'), + ('Andy Roberts'), + ('Nigel Williams'), + ('M. J. Hyland'), + ('Jeremy Poolman'), + ('Daniel Menaker'), + ('Tom McNab'), + ('Diane Mckinney-whetstone'), + ('Nicholas Blincoe'), + ('Ron Liebman'), + ('Dave Davies'), + ('Charles Barkley'), + ('Roy S. Johnson'), + ('Paul Feig'), + ('George B. Addison'), + ('Jack M. Bickham'), + ('Peter Moore'), + ('P. Anthony'), + ('Deborah DEUTSCHMAN'), + ('Walter Velez'), + ('W.S. Milner'), + ('Ray Kurzweil'), + ('Lavyrle Spencer'), + ('Susan Johnson'), + ('R. T. Stevens'), + ('Celia Rees'), + ('Joanna Hershon'), + ('Clarissa Pinkola Estes'), + ('Deborah Copaken Kogan'), + ('Jeannine Kadow'), + ('Christel Wiemken'), + ('Bruce Patterson'), + ('Paul Denham'), + ('Edward E. Kramer & Peter Crowther'), + ('Forrest J. A'), + ('Hilary Masters'), + ('Peter Blauner'), + ('Robert Jastrow'), + ('Gonzalo Lira'), + ('Terry Farish'), + ('Joe McGinniss'), + ('Avery Corman'), + ('Dan G. Stone'), + ('Kenneth J. Harvey'), + ('Colum Mccann'), + ('Anna Murdoch'), + ('Stephen Dixon'), + ('Marci McDonald'), + ('Penny Dale'), + ('Anabel Kindersley'), + ('Barnabas Kindersley'), + ('UNICEF'), + ('Wayne G. Hammond'), + ('Christina Scull'), + ('Leo Lionni'), + ('R. H. W. Dillard'), + ('Betty Mindlin'), + ('Donald Slatoff'), + ('J R R Tolkien'), + ('Andrew Boyd'), + ('Brian Bond'), + ('Owen Beattie'), + ('John Geiger'), + ('Kelley Armstrong'), + ('Time-Life Books'), + ('Time Life Books'), + ('George Perry'), + ('Clive Barda'), + ('David Marples'), + ('David Wright'), + ('Claudia L. Johnson'), + ('Mark Waid'), + ('Carolina Maria De Jesus'), + ('The Main Street Press'), + ('Wilhelm K. Grimm'), + ('Lore S'), + ('Aine O''Connor'), + ('Voltaire - Translated By John Butt'), + ('Cooper'), + ('J.F.'), + ('Christoph Göhler'), + ('Laura Wilson'), + ('Caroline Einhäupl'), + ('Paule Constant'), + ('Helene Karmasin'), + ('Harro Christensen'), + ('Walter Allen'), + ('Ziauddin Sardar'), + ('Bruce Pandolfini'), + ('Josephine Saxton'), + ('Suzanne Weyn'), + ('Allan Zullo'), + ('Roy MacGregor'), + ('Åke Edwardson'), + ('Angelika Kutsch'), + ('Amy Hempel'), + ('J.D. McClatchy'), + ('Jed Gillen'), + ('S. Robinson'), + ('Richard Harrington'), + ('Jack Vance'), + ('Marcus Cunliffe'), + ('William J. Caunitz'), + ('Eric Lustbader'), + ('Tom McGregor'), + ('Donald Hall'), + ('Fitzgerald'), + ('Edward Bloor'), + ('Roy Blount'), + ('Peter De Seve'), + ('Peter De Sève'), + ('Michael Curtis Ford'), + ('Siegfried Berger'), + ('Barbara Freethy'), + ('Diana Diamond'), + ('Chuck Smith'), + ('Chuck'), + (' Jr. Smith'), + ('Eva Ibbotson'), + ('Liselotte Julius'), + ('Angelika Naujokat'), + ('Kai Meyer'), + ('Kensington Ladies'' Erotica'), + ('Roger Shattuck'), + ('Douglas Keith Candland'), + ('Mountaineers'), + ('Peggy Ferber'), + ('Mel Levine'), + ('Meir H. Degani'), + ('Marty Crisp'), + ('David Lubar'), + ('Catherine Daly-Weir'), + ('Dan Greenburg'), + ('Philip K. Howard'), + ('Joseph Barbera'), + ('Dorit Rabinyan'), + ('Daniel Pinkwater'), + ('Charles Williams'), + ('Lynn Freed'), + ('Christopher De Vinck'), + ('Jenny Lee'), + ('Ruth Nanda Ashen'), + ('Ruth N. Anshen'), + ('Jim Kokoris'), + ('Celia Rivenbark'), + ('Connie Briscoe'), + ('R. O. Blechman'), + ('Abba Eban'), + ('Hélène Narbonne'), + ('Jacques Martinache'), + ('Jesse Duplantis'), + ('Mark Chadbourn'), + ('Mary Logue'), + ('George S. Clason'), + ('Michael Laimo'), + ('Al Kelly'), + ('Tamilee Webb'), + ('Lori Seeger'), + ('Stephanie Seymour'), + ('Larry Waschka'), + ('Cynthia Richmond'), + ('Robert Parry'), + ('Laura Wickenden'), + ('Carole Lewis'), + ('Mark L. Prophet'), + ('Emmet Fox'), + ('Stuart Gordon'), + ('Cecelia Ahern'), + ('Elaine Viets'), + ('Peggy Noonan'), + ('Matthew Lesko'), + ('Mary Ann Martello'), + ('C.J. Beck'), + ('Thomas Kinkade'), + ('Katherine Spencer'), + ('Lewis Thomas'), + ('Tom Brannon'), + ('Barbara Gibson'), + ('Lynne Ewing'), + ('Patricia Moyes'), + ('Diana L.'), + ('Alexandra Sellers'), + ('Caroline Cross'), + ('Stephen R. George'), + ('Esther Freisner'), + ('Charles L. Grant'), + ('Simon & Schuster'), + ('Paul Lopez'), + ('Fritz Siebel'), + ('Elizabeth Winthrop'), + ('Stoddard'), + ('Trina Schart Hyman'), + ('Bernard Lorthol'), + ('Roswitha Quadflieg'), + ('Yoshitaka Amano'), + ('Kelley Jones'), + ('Carly Bishop'), + ('Lindsay Mckenna'), + ('Sheila Simonson'), + ('Margaret St.George'), + ('Jill Bennett'), + ('Catherine Gaskin'), + ('Susan Mallery'), + ('Lord Sudley'), + ('Patricia Gardner Evans'), + ('K.C. McKinnon'), + ('Beverly Barton'), + ('Karen Kendall'), + ('Donna Simpson'), + ('David Pickering'), + ('Gwyneth Jones'), + ('Eric H. Warmington'), + ('Philip G. Rouse'), + ('W. H. D.'), + ('Christine Flynn'), + ('Connie Flynn'), + ('Johanna Reiss'), + ('Bill Thomas'), + ('Poppy Z. Brite'), + ('Joan Walsh Anglund'), + ('Assata Shakur'), + ('Angela Davis'), + ('Philip Norman'), + ('James Tate'), + ('Caitlin R. Kiernan'), + ('Theresa Medeiros'), + ('Peter Washington'), + ('Michael Heatley'), + ('The Beatles'), + ('Annie Leibovitz'), + ('Elaine Fox'), + ('Graham Joyce'), + ('Julie Kistler'), + ('Metsy Hingle'), + ('Jo Ann Vest'), + ('Gwynne Forster'), + ('Kathleen Korbel'), + ('Kim Cates'), + ('Kimberly Cates'), + ('Duke'), + ('Elizabeth Duke'), + ('Jessica Steele'), + ('Alan Cackett'), + ('George Saunders'), + ('Eve Gaddy'), + ('Patricia Hagan'), + ('Michael Heslop'), + ('Ron Picarski'), + ('Wayne L. Westcott'), + ('Mark Williams'), + ('Thomas R. Baechle'), + ('Richard A. Clarke'), + ('Zenna Henderson'), + ('Mark Olson'), + ('Priscilla Olson'), + ('Elizabe'), + ('Mariah Stewart'), + ('Susan Alcorn'), + ('Leonard Sanders'), + ('Lois Ehlert'), + ('Virginia Euwer Wolff'), + ('Andrew Weil M.D.'), + ('Jack C. Harris'), + ('Gene Biggs'), + ('Margo Lundell'), + ('Jose Cardona'), + ('Walt Disney Productions'), + ('Melissa Getzoff'), + ('Julie Durrell'), + ('Janet Adele Bloss'), + ('Henry Fielding'), + ('R. P. C. Mutter'), + ('Piero Ferrucci'), + ('Sascha Dönges'), + ('Linda Adams'), + ('Elinor Lenz'), + ('Peter Irons'), + ('Ethan Canin'), + ('Pierre Laurendeau'), + ('Jean-Joseph Julaud'), + ('Hervé Bazin'), + ('Gilbert Pestureau'), + ('Jean-Pierre Renard'), + ('H. G. (Herbert George) Wells'), + ('Herbert George Wells'), + ('Armand Pierhal'), + ('Hugo'), + ('Francis Ledoux'), + ('Herve Bazin'), + ('Beaumarchais'), + ('Pierre Augustin Caron De Beaumarchais'), + ('Jean Markale'), + ('Sara Craven'), + ('Leigh Michaels'), + ('Darcy'), + ('Raye Morgan'), + ('Grace Green'), + ('Jerry Murray'), + ('Jacqueline Diamond'), + ('Lucy Gordon'), + ('Magda Bogin'), + ('Virginia Hamilton'), + ('Eros Keith'), + ('Franz Rottensteiner'), + ('Editor-Peace Corps'), + ('M. I. Finley'), + ('Rex Warner'), + ('David Helvarg'), + ('Tessa Duder'), + ('Erika Friedl'), + ('Andrew Louth'), + ('Maxwell Staniforth'), + ('Elizabeth L. Post'), + ('Michele B. Slung'), + ('Patrick Galvin'), + ('Paul Bacon'), + ('Cheryle B. Torsney'), + ('Eilis Dillon'), + ('Gelsey Kirkland'), + ('Fred Rogers'), + ('Nina Bawden'), + ('Johanna Westerman'), + ('James D. Houston'), + ('Jeanne Wakatsuki'), + ('Hans Urs Von Balthasar'), + ('Graham Harrison'), + ('Eugene H. Peterson'), + ('Ed Kramer'), + ('Steve Brust'), + ('Clive'), + ('Martin Seymour-Smith'), + ('Martin Seymour-'), + ('Marvel Books'), + ('Chris Claremont'), + ('Jean M Auel'), + ('James M. Wall'), + ('Charles E. Rosenberg'), + ('Daniella Gioseffi'), + ('Kathe Kollwitz'), + ('Robert Waterman'), + ('Amy MacDonald'), + ('Sarah Fox-davies'), + ('Jeanne Willis'), + ('Mary Rees'), + ('Heather Amery'), + ('Diana Hendry'), + ('Jane Chapman'), + ('Inga Moore'), + ('Rev. W. Awdry'), + ('Libby Butterworth'), + ('Siobhan Dodds'), + ('Jan Mark'), + ('Helen Oxenbury'), + ('Emma Chichester Clark'), + ('Sally Hunter'), + ('Maggie Kneen'), + ('Eric Hill'), + ('Jean Cocteau'), + ('Jonathan Coe'), + ('Len Wein'), + ('Bruce Jones'), + ('Eugène Ionesco'), + ('Loana Petrucciani'), + ('Rachel Seiffert'), + ('Laurent Vicomte'), + ('Pierre Makyo'), + ('Marie-Raymond Farré'), + ('Michael Bond'), + ('Maurice Hindle'), + ('Christop'), + ('Eiji Yoshikawa'), + ('Emmanuel Carrère'), + ('Pierre Bayard'), + ('Riyoko Ikeda'), + ('D.H. LAWRENCE'), + ('Gabrielle Chamarat'), + ('François Lelord'), + ('Alain Domérieux'), + ('M. Stephen Lukac'), + ('Swami Prabhavanada'), + ('Shaun Gayle'), + ('Élisabeth Gille'), + ('Elizabeth Knox'), + ('Blanche D''alpuget'), + ('Steven Pacey'), + ('Gordon Hutner'), + ('John Banville'), + ('Gillian Rubinstein'), + ('Lee Striker'), + ('Bob Smith'), + ('Mccullough Colleen'), + ('Peter James'), + ('Stuart Atkinson'), + ('Gary Bines'), + ('Ian Jackson'), + ('Anita Roddick'), + ('Blake Morrison'), + ('Frances Coady'), + ('Takashi Matsuoka'), + ('David Zindell'), + ('M. Oliver'), + ('Caroline Hamilton'), + ('Stephen Lawhead'), + ('James McKean'), + ('J. G. Ballard'), + ('Clea Koff'), + ('Maggie Alderson'), + ('Pat Cadigan'), + ('Christy Campbell'), + ('James Runcie'), + ('Mark Burnell'), + ('Patrick White'), + ('Liza Dalby'), + ('Ruth Park'), + ('David Reynolds'), + ('Philip Casey'), + ('Luiz Alfredo Garcia-Roza'), + ('Liu Hong'), + ('Nicole Mones'), + ('Thomas Merton'), + ('Peter Hill'), + ('Adrienne Jansen'), + ('Joe Simpson'), + ('Rande Brown'), + ('Marcos McPeek Villatoro'), + ('Katherine Hall Page'), + ('Tom Park'), + ('James Gleick'), + ('Michael McCall'), + ('Ellen Ullman'), + ('Joann Scheck'), + ('Michael Nouri'), + ('Jordan S.; Gordon'), + (' Gary Rubin'), + ('Nancy Reagan'), + ('Ronald Reagan'), + ('Philip J. Davis'), + ('Shelly Christiansen'), + ('Robin Heath'), + ('Alisa; Harrar'), + (' Sari Bauman'), + ('Claude McKay'), + ('Ararat Iyob'), + ('Judith W. Steinbergh'), + ('Cary Wolinsky'), + ('Christmas Humphreys'), + ('Carroll O''connor'), + ('Marjorie Holmes'), + ('Doris Pozzi'), + ('Jeff Friedman'), + ('Helen Steiner Rice'), + ('Carol Guess'), + ('Annie Ernaux'), + ('Robert Fitzgerald'), + ('Irving Stone'), + ('Nicole Burnham'), + ('Loree Lough'), + ('Crystal Green'), + ('Ellen James'), + ('Julie Leto'), + ('Joleen Daniels'), + ('Jeane Renick'), + ('Peg Sutherland'), + ('Jeff Mariotte'), + ('Pam Binder'), + ('Anne Kelleher'), + ('Elizabeth Massie'), + ('Elizabeth Thornton'), + ('Christina Kingston'), + ('Cindy Harris'), + ('Harbison'), + ('Kenneth C. Flint'), + ('Jan McKee'), + ('Catherine Hart'), + ('Diane Tidd'), + ('Peggy Bechko'), + ('Jessica Hall'), + ('Joanne Bremer'), + ('Lindsay Longford'), + ('Patti Berg'), + ('Harrison Evans Salisbury'), + ('Judy Gill'), + ('Carolyn Greene'), + ('Anne Mather'), + ('Neesa Hart'), + ('Kay Thorpe'), + ('Kimberly Raye'), + ('June Strong'), + ('Selma Eichler'), + ('Debra Webb'), + ('Joy Reed'), + ('Shirl Henke'), + ('Harper Allen'), + ('Charlotte Maclay'), + ('Bruce D. Arthurs'), + ('Donna Schaff'), + ('Karl Marx'), + ('Friedrich Engels'), + ('ダン・デプロスペロ'), + ('ジャッキー・デプロスペロ'), + ('Griffin Publishing'), + ('Klutz Press'), + ('John Taylor Gatto'), + ('Melissa Müller'), + ('Melissa Muller'), + ('Robert Kimber'), + ('Rita K'), + ('Jea Yu'), + ('Professor Peter Singer'), + ('David Ogilvy'), + ('Joy Behar'), + ('Lydia Davis'), + ('Mark C. Baker'), + ('Paul Fussell'), + ('Steven B. Sample'), + ('John Bruer'), + ('Geoffrey Nunberg'), + ('George L. Grice'), + ('John F. Skinner'), + ('Judith S. Wallerstein'), + ('Sandra Blakeslee'), + ('Christopher Bates'), + ('Kenneth Koch'), + ('Kate Farrell'), + ('Robert Bolton'), + ('Siobhan Adcock'), + ('Robert Storey'), + ('Herb Goldberg'), + ('Tuiavii'), + ('Peter C. Cavelti'), + ('Erich Scheurmann'), + ('Roger Love'), + ('Donna Frazier'), + ('Lars-Gunnar Andersson'), + ('Peter Trudgill'), + ('Laurie Bauer'), + ('Nigel Warburton'), + ('Jason Wood'), + ('S. Cannavo'), + ('Jonathan Glover'), + ('Kenneth Wilkinson'), + ('Richard Ford'), + ('Kenneth Cushner'), + ('Richard W. Brislin'), + ('Marti Olsen Laney Psy.D.'), + ('Aaron Asher'), + ('Daniel L. Schacter'), + ('Jean Aitchison'), + ('John Berger'), + ('Robert B. Heilman'), + ('Jean Kilbourne'), + ('Louise DeSalvo'), + ('Ed Zotti'), + ('Eric Maisel'), + ('Charles Wheelan'), + ('Robert Wright'), + ('Ken Foster'), + ('Herbert R. Kohl'), + ('Erving Goffman'), + ('John Caples'), + ('Fred E. Hahn'), + ('Richard Appignanesi'), + ('Ralph Edney'), + ('Jimmie Hill'), + ('Gary A Davis'), + ('Robert Fisher'), + ('Richard W. Paul'), + ('Linda Elder'), + ('Richard Baudians'), + ('Kathlyn Gay'), + ('Cecil Adams'), + ('Michael Swan'), + ('Catherine Walter'), + ('Carl R. Rogers'), + ('H. Jerome Freiberg'), + ('Jon Chandler'), + ('Stuart Timmons'), + ('Sherrie Krantz'), + ('Matt Briggs'), + ('Jack Handey'), + ('Robert Schnelle'), + ('Sappho'), + ('Paul Roche'), + ('David Schiller'), + ('Eric Schiller'), + ('G. K Kasparov'), + ('Luke David'), + ('John Kurtz'), + ('Sandrina Kurtz'), + ('David Milgrim'), + ('Lisa McCourt'), + ('Cyd Moore'), + ('Nina Barbaresi'), + ('Darren McGavin'), + ('Lee Madigan'), + ('Nancy C. Gamble'), + ('Leslie Colvin'), + ('Emma Speare'), + ('American Heart Association'), + ('Pam England'), + ('Rob Horowitz'), + ('Becky A. Bailey'), + ('Richard H. Pitcairn D.V.M.'), + ('Susan Hubble Pitcairn'), + ('Marshall H. Klaus'), + ('Elaine Martin'), + ('Randall Neustaedter'), + ('Deborah Taylor-Hough'), + ('Susan Osborn'), + ('Alison Mack'), + ('Diana West'), + ('Tracy Fitzsimmons'), + ('Pamela Liflander'), + ('James Eade'), + ('David Hooper'), + ('Kenneth Whyld'), + ('Mary Theola'), + ('Mary'), + ('J. Verleye'), + ('Christina M. Anello'), + ('J. E. Lohr'), + ('Ray Hansen'), + ('Jack Moore'), + ('Penny Gentieu'), + ('Norma J. Bumgarner'), + ('Diane Bengson'), + ('Antonia Barber'), + ('P.J. Lynch'), + ('Toni Weschler'), + ('Janet Zand'), + ('Rachel Walton'), + ('Mayo Clinic'), + ('Peggy O''Mara'), + ('Jacqueline Roge'), + ('Jim Talbot'), + ('Bill Adler Jr.'), + ('Peni R. Griffin'), + ('Lucasfilm Ltd.'), + ('Full Cast'), + ('Brett Butler'), + ('Michael P. Kube-Mcdowell'), + ('Mike Mcquay'), + ('Annette Funicello'), + ('Patricia Romanowski'), + ('Tui Sutherland'), + ('Nancy Harrison'), + ('John Tobler'), + ('Jimmy Guterman'), + ('Owen O''Donnell'), + ('John Madden'), + ('Albert Goldman'), + ('Bob Nelson'), + ('Peter Economy'), + ('James Axler'), + ('L. Frank Baum'), + ('Robert Arthur'), + ('Don Pendelton'), + ('Don Pendleton'), + ('Richard Sapir'), + ('Robert Cormier'), + ('Philip Wylie'), + ('Edwin Balmer'), + ('Peter McCabe'), + ('Kin Platt'), + ('Michael Hoeye'), + ('Michelle Groce'), + ('Laura Duis'), + ('Debbi Rawlins'), + ('Harold G. Moore'), + ('Gabriel King'), + ('Mary Frampton'), + ('Dave Anderson'), + ('Laura Malone Elliott'), + ('Terry Lindvall'), + ('Liz Carlyle'), + ('Keyton Weissinger'), + ('Ryan Russell'), + ('Ido Dubrawsky'), + ('FX'), + ('Joe Grand'), + ('Tim Mullen'), + ('Malaclypse The Younger'), + ('Omar Khayyam Ravenhurst'), + ('Elliotte Rusty Harold'), + ('W. Scott Means'), + ('Matt Childs'), + ('Paul Lomax'), + ('Ron Petrusha'), + ('Tim Bunce'), + ('Alligator Descartes'), + ('William Olaf Stapledon'), + ('Olaf Stapledon'), + ('Brad Steiger'), + ('Serge Kahili King'), + ('Eric A. Meyer'), + ('Robert C. Wilson'), + ('Patricia Wrede'), + ('Pamela Sargent'), + ('Jeri Taylor'), + ('Weinhaus Evonne'), + ('Fernando'), + ('Alexei Panshin'), + ('Dave Smeds'), + ('Hilary Ba'), + ('Silverberg'), + ('Susan Schwartz'), + ('Woody Allen'), + ('Will Shetterly'), + ('Ken Keyes Jr.'), + ('Geoffrey Of Monmouth'), + ('A.C. Bhaktivedanta'), + ('Robert E. Vardeman'), + ('Gar Reeves-Stevens'), + ('Patricia Floss'), + ('Linda Frankel'), + ('Victoria Poyser'), + ('Evangeline Walton'), + ('Eugene T. Gendlin'), + ('Sydney J. Van Scyoc'), + ('Lee Correy'), + ('Sonni Cooper'), + ('Lowell Cauffiel'), + ('Alan H. Cohen'), + ('James H. Schmitz'), + ('Daniel Oran'), + ('Neil Mcmahon'), + ('Robert W. Finkel'), + ('Carol Cirulli Lanham'), + ('Richard Platt'), + ('Ashley Montagu'), + ('Marilyn Levy'), + ('Baine Kerr'), + ('Ann Louise Gittleman'), + ('Christina Scott-Moncrieff'), + ('Suzanne Somers'), + ('Cynthia Holzapfel'), + ('Cynthia Nofziger'), + ('Zhi Gang Sha'), + ('Debbie Ford'), + ('Edita M. Kaye'), + ('Gary David Bouton'), + ('Barbara Mancuso Bouton'), + ('Fritz Leiber'), + ('Judy Mazel'), + ('Rob Byrnes'), + ('Victor Jones'), + ('Marc Edmund Jones'), + ('Richard Hughes'), + ('Chretien (translated By W. W.Comfort) DeTroyes'), + ('Gillian E. Hanscombe'), + ('Jackie Forster'), + ('Ruth Falk'), + ('Kathleen Barry'), + ('Susan Powter'), + ('Merrill F. Elias'), + ('etc.'), + ('Russell Allen. Stultz'), + ('Lee Salk'), + ('Bill Mauldin'), + ('June Sochen'), + ('Nancy Wainer Cohen'), + ('Lois J. Estner'), + ('Mcgoldrick Et Al.'), + ('Monica McGoldrick; Joe Giordano;'), + ('William B. Sanders'), + ('Shelley Singer'), + ('Lynn Witt'), + ('Sherry Thomas'), + ('Daniel Harris'), + ('Richard Kot'), + ('Tad Richards'), + ('Neale S. Godfrey'), + ('James W. Green'), + ('Sonia Johnson'), + ('Nikolai Tolstoy'), + ('Vincent Murano'), + ('Robert A. Goldberg'), + ('Adrianne Blue'), + ('Paul Reidinger'), + ('Boris Vallejo'), + ('Estaban Maroto'), + ('Parke Godwin'), + ('William W.crain'), + ('Edwards'), + ('Stanley Cohen'), + ('Penny Armstrong'), + ('Steve Fabian'), + ('Mikael Nordfors'), + ('Peter McWilli'), + ('Roger Elwood'), + ('Sally Miller Gearhart'), + ('Anne. McCaffrey'), + ('M.S. Murdock'), + ('Richard Monaco'), + ('Harve Bennett'), + ('Rowena Morrill'), + ('Vonda N. McIntryre'), + ('Phyllis Ann Karr'), + ('Patricia Campbell Hearst'), + ('Mary Glatzle'), + ('Don W. Weber'), + ('Charles Bosworth Jr.'), + ('Richard Shears'), + ('Carol Gino'), + ('Elizabeth Morgan'), + ('Kevin McCarthy'), + ('David Silva'), + ('Pamela Townley'), + ('Richard Bowker'), + ('Robert S. Blum'), + ('L. L. Greene'), + ('Andrew M Greeley'), + ('Janet Morris'), + ('Eileen Lottman'), + ('Thomas F. Monteleone'), + ('Russ Martin'), + ('Donald E. McQuinn'), + ('Tanith Lee (inner)'), + ('Michael Whelan (cove'), + ('David SHOBIN'), + ('M Piercy'), + ('Evan H. Rhodes'), + ('Bob Randall'), + ('Emma Tennant'), + ('Random House'), + ('Leo Calvin Rosten'), + ('Madeena S. Nolan'), + ('Andrew Neiderman'), + ('Kenneth Klein'), + ('Pocket'), + ('Rosemary Kirstein'), + ('Glen A. Larson'), + ('Robert Thurston'), + ('Deborah Turner Harris'), + ('Roderick; Roderick MacLeish MacLeish'), + ('David Shobin'), + ('Rosamond Smith'), + ('Francine P. Pascal'), + ('Meaney Dee Morrison'), + ('Joan Wilder'), + ('Shannon Lewis'), + ('Robert Littell'), + ('G. William Domhoff'), + ('Florence Haseltine'), + ('Edward O. Wilson'), + ('David Payne'), + ('Flora Rheta Schreiber'), + ('Joyce Armor'), + ('Gerald Seymour'), + ('Glade Curtis'), + ('Katie Tamony'), + ('Barbara Canida MD'), + ('Anna Lee Waldo'), + ('Gene Weingarten'), + ('Marc Ian Barasch'), + ('Caryle Hirshberg'), + ('M.D. Larry Dosse'), + ('Nicholas Meyer'), + ('Joshua Quittner'), + ('Michelle Slatalla'), + ('Michael Prescott'), + ('David Lindsey'), + ('Seth Mcevoy'), + ('Ian Caldwell'), + ('Dustin Thomason'), + ('Meynell'), + ('L.A. Graf'), + ('Jack Hopkins'), + ('Eric Lloyd Wright'), + ('Harvey R. Greenberg'), + ('Kathleen Tynan'), + ('Joanne Greenberg'), + ('Eric Frank Russell'), + ('Maxine Rose Schur'), + ('Nancy Niles'), + ('Robert Grace'), + ('Polly Athan'), + ('Jodi Evert'), + ('Jeanne Thieme'), + ('Carolyn Meyer'), + ('Janie Jasin'), + ('Pam Kurtz'), + ('Checkerboard Press'), + ('Patricia Lee Gauch'), + ('Elise Primavera'), + ('Anne Mortimer'), + ('Susan Meddaugh'), + ('Vance H. Trimble'), + ('David Gaadt'), + ('C. F. Payne'), + ('Susan Adler'), + ('HAL CLEMENT'), + ('Neal Shusterman'), + ('Jamie Simons'), + ('Robert Rooney'), + ('Mortimer J. Adler'), + ('Christopher Omartian'), + ('Amanda Omart'), + ('Gary Jacobsen'), + ('Marilyn Brown Oden'), + ('Marvin Minsky'), + ('Suzanne Jones'), + ('Jacki Lyden'), + ('Martha Sacks'), + ('Jack E. Davis'), + ('James Bryan Smith'), + ('David Mullins'), + ('Brennan Manning'), + ('Mark H. Osmun'), + ('David Paige'), + ('Joe L. Wheeler'), + ('B. B. King'), + ('David Ritz'), + ('Billy Sprague'), + ('Marjorie Garber'), + ('Ken Stanton'), + ('Charles A. Lindbergh'), + ('Keith Kay'), + ('Donna Erickson'), + ('David LaRochelle'), + ('J.F. Federspiel'), + ('Karen Hull'), + ('Charles M. Sheldon'), + ('Patsy Clairmont'), + ('Gwen Ellis'), + ('Pat Widmer'), + ('Twila Paris'), + ('Starla Paris Novak'), + ('Jim Cymbala'), + ('Dean Merrill'), + ('Philip Gonzalez'), + ('Leonore Fleischer'), + ('Cindy Holby'), + ('Adele Griffin'), + ('Peter V Orullian'), + ('Jim Conway'), + ('John Reynolds Gardiner'), + ('Greg Hargreaves'), + ('Carla Dijs'), + ('Jerry Smath'), + ('Q. D. Leavis'), + ('Charles Swindall'), + ('Erich Karkoschka'), + ('Paul Robert Walker'), + ('Billy Graham'), + ('Virginia J. Ruehlmann'), + ('Jack Brou'), + ('Marti Watson Garlett'), + ('Anne Christian Buchanan'), + ('Steve McCurry'), + ('Jenny Davidson'), + ('Diana Shaw'), + ('Earl Mac Rauch'), + ('Thomas Lewis'), + ('Richard Lannon'), + ('Fari Amini'), + ('Saul; Saul Bellow Bellow'), + ('Rick Foster'), + ('Sefra Kobrin Pitzele'), + ('Julia Whitty'), + ('Robert W. McChesney'), + ('Richard Emil Braun'), + ('Charles D. Hayes'), + ('Robert Langbaum'), + ('Alvin Kernan'), + ('F. James Davis'), + ('Lillian B. Rubin'), + ('Ruby Cohn'), + ('Bapsi Sidhwa'), + ('R. W. Scholes'), + ('Shashi Tharoor'), + ('Edward Kasner'), + ('James Roy Newman'), + ('Murasaki Shikibu'), + ('Kencho Suematsu'), + ('Lyanda Lynn Haupt'), + ('Alice S. Rossi'), + ('John Suiter'), + ('Leslie Alan Horvitz'), + ('Seppo Ed Farrey'), + ('Nancy O''Hara'), + ('Sandra Haldeman Martz'), + ('Jenny Joseph'), + ('Unspecified'), + ('Deborah Gray White'), + ('David Hunt'), + ('Robie Macauley'), + ('George Lanning'), + ('James Robert Milam'), + ('Katherine Ketcham'), + ('Rebecca Woolis'), + ('Rod Colvin'), + ('Vernon E. Johnson'), + ('Pierre Laszlo'), + ('Mary Beth Mader'), + ('Don Marquis'), + ('Mary A. McDougall'), + ('John A.'), + (' M.D. McDougall'), + ('Stephanie Vaughn'), + ('Thrity Umrigar'), + ('U.S. Department Of Labor'), + ('Jennifer Louden'), + ('Cynthia Alvarez'), + ('Fran Gare'), + ('William Wright'), + ('Alvin Moscow'), + ('Dershowitz'), + ('Jose Maria Parramon'), + ('Liz Doyle'), + ('The Spice Girls'), + ('Mary Casanova'), + ('Jean-Paul Tibbles'), + ('Jon Bellini'), + ('William Stadiem'), + ('Noel Behn'), + ('Anna Akhmatova'), + ('Max Hayward'), + ('Stanley Kunitz'), + ('René Milot'), + ('Diane Zak'), + ('Jean Wells'), + ('Thomas McNally'), + ('Marilyn Yalom'), + ('G. S Graber'), + ('Susan Faludi'), + ('Victoria Griffin'), + ('Langenscheidt Publishers'), + ('Jane Addams'), + ('Victoria Bissell Brown'), + ('M. H. Abrams'), + ('Carol Hymowitz'), + ('Robert Burns'), + ('Mark Antonacci'), + ('Ian Jack'), + ('Craig Buck'), + ('Max I. Dimont'), + ('Robin Hemley'), + ('Joyce Egginton'), + ('Barracl'), + ('Geoffrey Barraclough'), + ('Times Books'), + ('Edgar Johnson'), + ('Gerrald M. Knox'), + ('The Vanessa-Ann Collection'), + ('Joyce Aiken'), + ('Heini Gruffudd'), + ('Miles Hewstone'), + ('Wayne A. Lesko'), + ('Wayne Lesko'), + ('Edmund J. Bourne'), + ('Kyoko Mori'), + ('Scott McNeely'), + ('Marcia Yudkin'), + ('K. Jerben'), + ('O.E. Rolvaag'), + ('Lincoln Colcord'), + ('Brian Greene'), + ('Michael D''Antonio'), + ('Bittinger'), + ('Beecher'), + ('William H. Chafe'), + ('A Redemptorist Pastoral Publication'), + ('Charlene Altem'), + ('Andrew O''Hagan'), + ('Alexander Solzhenitsyn'), + ('Michael Glenny'), + ('Lila Abu-Lughod'), + ('Raisa Orlova'), + ('Samuel Cioran'), + ('George Bull'), + ('Pierre Wolff'), + ('Ignatius'), + ('William'), + (' S.J. Reiser'), + ('Michael Grant'), + ('Bruce Grant'), + ('Clark Walter Van Tilburg'), + ('Francis Fernandez'), + ('Hans Peter Richter'), + ('Stanley Thornes'), + ('Edward A. Baldwin'), + ('Stevie Baldwin'), + ('William G. Hynes'), + ('John Webster'), + ('Fred B. Millett'), + ('Sigrid Undset'), + ('Charles Archer'), + ('Richard P. McBrien'), + ('John Davies'), + ('Ivan Morris'), + ('Karen V. Kukil'), + ('J. V. Beckett'), + ('Ross Terrill'), + ('Han Suyin'), + ('Gordon A. Craig'), + ('James S. Olson'), + ('Robert D. Marcus'), + ('David Burner'), + ('David Loades'), + ('Fatima Mernissi'), + ('Thomas'), + (' Sir'), + (' Saint More'), + ('Gerard Wegemer'), + ('Clarence H.'), + ('Stephanie Nelson'), + ('Vasant Joshi'), + ('J. P Kenyon'), + ('J. J. Scarisbrick'), + ('Katherine Wei'), + ('Terry Quinn'), + ('Diana Souhami'), + ('Barbara Olson'), + ('Velma Barfield'), + ('Beck Weathers'), + ('Shusaku Endo'), + ('William Johnston'), + ('Anna Gekoski'), + ('Richard Wright'), + ('Hannah Arendt'), + ('Katherine Sturtevant'), + ('Richard Hofstadter'), + ('S. P. Somtow'), + ('Antony Beevor'), + ('Lillian Hellman'), + ('Hsi-Sheng Chi'), + ('Hsi-Sheng Ch''I'), + ('Tim Cockey'), + ('Allen D. Bragdon'), + ('David Gamon'), + ('B. Ransom'), + ('Patrick Quillin'), + ('Hillary Rodham Clinton'), + ('Alejandro Jodorowsky'), + ('Jason Starr'), + ('Jean Rouaud'), + ('Carina Von Enzenberg'), + ('Hartmut Zahn'), + ('Stuart Harrison'), + ('Teja Schwaner'), + ('Lion Feuchtwanger'), + ('Robert Carter'), + ('Andrei Makine'), + ('Holger Fock'), + ('Sabine Müller'), + ('Dagoberto Gilb'), + ('Diana Norman'), + ('Gregor Seferens'), + ('Irene Dische'), + ('Angela Praesent'), + ('Susanna Rademacher'), + ('Helen Humphreys'), + ('Stephanie Schaffer-de Vries'), + ('Philip Jose Farmer'), + ('N. Gaiman'), + ('Mike Peters'), + ('Deborah Chester'), + ('Yuu Watase'), + ('Carol Sonenklar'), + ('Jane Sughrue Giberga'), + ('H. S. Bennett'), + ('Rebecca Bloom'), + ('Meggin Cabot'), + ('Leslie Lehr Spirson'), + ('Jim Heynen'), + ('Kathy Warriner'), + ('Marian Morash'), + ('Kit Pearson'), + ('John Skoyles'), + ('Jennifer Haigh'), + ('Jane Gardam'), + ('Wendell Minor'), + ('Jack Gantos'), + ('Daniel Cohen'), + ('Lorri Hewett'), + ('Audrey Couloumbis'), + ('Allan Gurganus'), + ('Augusta Trobaugh'), + ('Lewis Libby'), + ('Molly Moynahan'), + ('Linda Conway'), + ('Marion Cunningham'), + ('Donnie Cameron'), + ('Jean Ferris'), + ('Alexandra Parsons'), + ('Evie Safarewicz'), + ('Marjorie Leet Ford'), + ('Melissa Pritchard'), + ('Karen Brichoux'), + ('Lynn Messina'), + ('Bernard Glassman'), + ('Monique Mandali'), + ('Michael Covino'), + ('Liezel Norval-Kruger'), + ('Tina Marie Malherbe'), + ('Richard Lagravenese'), + ('Elizabeth Chan'), + ('Symeon Shimin'), + ('Donna Pacinelli'), + ('Edite Kroll'), + ('Stacy Cretzmeyer'), + ('Beate Klarsfeld'), + ('Michael Leapman'), + ('David A. Adler'), + ('Amer Assoc Of Colleges Of'), + ('Patrick Jennings'), + ('Clare Bell'), + ('Hannah McCouch'), + ('Sally Prue'), + ('Theodore J Miller'), + ('Timothy J. Penny'), + ('Major Garrett'), + ('Lynda Curnyn'), + ('Dia Calhoun'), + ('Letty Cottin Pogrebin'), + ('Hillary Frank'), + ('Florence Graham'), + ('Maryln Schwartz'), + ('Anna Leonowens'), + ('Nora Raleigh Baskin'), + ('Helen Lester'), + ('Lynn Munsinger'), + ('Christine Herman Merrill'), + ('George E. Stanley'), + ('Salvatore Murdocca'), + ('Stephen Cumbaa'), + ('Kim La Fave'), + ('Merebeth Switzer'), + ('Landoll'), + ('Marjorie Weinman Sharmat'), + ('Marc Simont'), + ('Jean Davis Callaghan'), + ('Florie Freshman (Illustrator)'), + ('Julie Brinckloe'), + ('Daniel J. Hochstatter'), + ('Christina Bartolomeo'), + ('Emanuela Stucchi Prinetti'), + ('Chuck Wil'), + ('Alonzo Kimball'), + ('Husain Haddawy'), + ('Muhsin Mahdi'), + ('Jacky Robinson'), + ('Paul Milliner'), + ('Ann Howard White'), + ('Janice Kaiser'), + ('Anne Marie Duquette'), + ('Vella Munn'), + ('Elizabeth Craig'), + ('Ann Landers'), + ('Carolyn Hougan'), + ('Arlene Monk'), + ('Charlotte Agell'), + ('Peter Dickinson'), + ('Angela Johnson'), + ('Kamil Vojnar'), + ('Carol Goodman'), + ('Erica Orloff'), + ('Helen Ellis'), + ('David Huddle'), + ('Mavis Kaye'), + ('Marc Aronson'), + ('Alice Turner Curtis'), + ('Alice Curtis'), + ('Betty Groff'), + ('Jane Moore'), + ('Bill Grossman'), + ('Ruth Heller'), + ('Sandra Marton'), + ('Carey'), + ('Jennifer Taylor'), + ('Lydia Burke'), + ('Jenna Ryan'), + ('Norman Kolpas'), + ('Allan'), + ('Betsy Howie'), + ('David Cunningham'), + ('Lisa Cach'), + ('Diane Milliken'), + ('Alan Brown'), + ('Cathy Yardley'), + ('James Carville'), + ('Eleanor Berman'), + ('Carolyn Coman'), + ('David Amsden'), + ('Suzanne Finnamore'), + ('Erin Gobragh'), + ('Catharine O''Neill'), + ('William F. Weld'), + ('L. F. Hoffman'), + ('Yu Lu'), + ('Lu Yü'), + ('Demi Hitz'), + ('Francis Ross Carpenter'), + ('Consumer Guide Editors'), + ('Joan Abelove'), + ('Michael Cadnum'), + ('Jane Goldman'), + ('Cynthia Hartwick'), + ('Sarah-Kate Lynch'), + ('Abigail Stone'), + ('Vicki Leon'), + ('Cecily Von Ziegesar'), + ('Kristin McCloy'), + ('Maxine Combs'), + ('Andes Hruby'), + ('Janelle Denison'), + ('Ruth L. Ozeki'), + ('Ed.by Christina Kline'), + ('Dyan Sheldon'), + ('Lee Iacocca'), + ('Marcia Chellis'), + ('Lynne Hinton'), + ('Jane Bryant Quinn'), + ('Marcia Stubbs'), + ('Diane Wood Middlebrook'), + ('Elizabeth Kuster'), + ('Kate Bernheimer'), + ('Paula Boock'), + ('Melissa De La Cruz'), + ('Kim DeMarco'), + ('Jonathan Hull'), + ('Patricia Hausman'), + ('Judith Benn Hurley'), + ('Rebbecca Ray'), + ('Vera B. Williams'), + ('Laura Caldwell'), + ('Don Williams'), + ('Charles Dickens'), + ('James Wolcott'), + ('David Herbert Donald'), + ('Caroline Hwang'), + ('Barbara Chepaitis'), + ('Chris Goodrich'), + ('Morrie Schwartz'), + ('Rachel Cusk'), + ('Gordon Carruth'), + ('Kelly Cherry'), + ('John Dorfman'), + ('Consumer Reports Books'), + ('Tim Paulson'), + ('Knute Larson'), + ('Bruce Narramore'), + ('Vern C. Lewis'), + ('Geoffrey Caine'), + ('Renate N. Caine'), + ('Fritz Ridenour'), + ('Margaret Parker'), + ('Peggy Schmidt'), + ('Edward Dayton'), + ('V. Stanford Hampson'), + ('Lois T. Henderson'), + ('Marian L. Salzman'), + ('Teresa Reisgies'), + ('Jerry Schmidt'), + ('Raymond Brock'), + ('Mameve Medwed'), + ('Sam Huff'), + ('Leonard Shapiro'), + ('Robert E. Kowalski'), + ('Kowalski'), + ('Jack Sternlieb'), + ('Michael Goddart'), + ('Angela Kay Kepler'), + ('Carl Bernstein'), + ('The Duchess Of York Sarah'), + ('Jeff Coplon'), + ('Patricia Henley'), + ('Etienne Van Heerden'), + ('Catherine Knox'), + ('Linn Ullmann'), + ('Raj Kamal Jha'), + ('Barbara Cohen'), + ('John Steptoe'), + ('Dee Brown'), + ('Thomas Wolfe'), + ('Michael Korda'), + ('Mary-Lou Weisman'), + ('Libby Schmais'), + ('Dwight Allen'), + ('The Editors Of Conari Press'), + ('Hope S. Warshaw'), + ('Doris Cross'), + ('Alice Williams'), + ('James Agee'), + ('Viqui Litman'), + ('Richard S. Beaser'), + ('Mary Joan Oexmann'), + ('Ina Garten'), + ('Nina Grunfeld'), + ('Linda Coffee'), + ('Emily Cale'), + ('Boom Corrie Ten'), + ('Carole C. Carlson'), + ('Angela Carter'), + ('Hazel M. Denning'), + ('Patty Hansen'), + ('Iren'), + ('Alexandra Styron'), + ('W. Edwards Deming'), + ('Harriet Segal'), + ('Alan Trustman'), + ('Patty Mitchell'), + ('Na'), + ('Patty Aubrey'), + ('Ravi Zacharias'), + ('Ron Camacho'), + ('Steve Scott'), + ('Rebecca Campbell'), + ('Robert J. Harris'), + ('Mary Ann Taylor-Hall'), + ('John Brookes'), + ('C. Kalia Westerman'), + ('Carol Umberger'), + ('Rupert Everett'), + ('Phyllis Reynolds Naylor'), + ('Arthur Frommer'), + ('Kevin Crossley-Holland'), + ('Beth Wilson Saavedra'), + ('Ivana Trump'), + ('Chris Anderson'), + ('Sharon McGehee'), + ('Rachael Ray'), + ('Dorothy Samuels'), + ('Anne George'), + ('Lydia Y Minatoya'), + ('Janet Tashjian'), + ('Kate Cann'), + ('Cynthia Grant'), + ('Joan M. Drury'), + ('Diana Von Welanet'), + ('Bonnie Altenhein'), + ('Bill McKibben'), + ('Kristine Carlson'), + ('William R. Dantz'), + ('Ernest Angley'), + ('Brad Densmore'), + ('Robert Mattox'), + ('Julie Eisenhower'), + ('Yvonne Lehman'), + ('Les Parrott'), + ('Leslie Parrott'), + ('John Wallner'), + ('Robin Sheets'), + ('Mathew Tekulsky'), + ('Nancy Larrick'), + ('Eric Beddows'), + ('Alix Berenzy'), + ('Jim Hohnberger'), + ('Dave Ramsey'), + ('Kathleen Yapp'), + ('Dina Leonhardt Koehly'), + ('Sally Laity'), + ('Veda Boyd Jones'), + ('Mary Louise Colln'), + ('Helen Spears'), + ('Han'), + ('Robert Coles'), + ('Dorothy Day'), + ('Angela Elwell Hunt'), + ('Michael Kenyon'), + ('Catherine Marshall'), + ('Elisabeth Elliot'), + ('Lois Dick'), + ('Duncan Heaster'), + ('Robert Jewett'), + ('Carroll Ferguson Hunt'), + ('Lorraine Peterson'), + ('Cole'), + ('Kevin Zraly'), + ('Jack Maguire'), + ('Bentley Little'), + ('Bill Quinn'), + ('Jay Schulberg'), + ('Arlene Mosel'), + ('Blair Lent'), + ('Connie Neal'), + ('Kay Coles James'), + ('Ben Young'), + ('Dr. Samuel Adams'), + ('Joshua Harris'), + ('Rebecca St. James'), + ('Laurie Beth Jones'), + ('David Shibley'), + ('Naomi Shibley'), + ('Joanna Cole'), + ('John Speirs'), + ('Bruce Degan'), + ('Antonia Felix'), + ('Beth Henderson'), + ('Karen Kingsbury'), + ('Jane Peart'), + ('Cheryl Forbes'), + ('Kitty Maynard'), + ('Lucian Maynard'), + ('Stuart J. Murphy'), + ('Lynne Cravath'), + ('Roberta Edwards'), + ('Sylvie Wickstrom'), + ('Gary Soto'), + ('Susan Guevara'), + ('Aliki'), + ('William Miller'), + ('Cornelius Van Wright'), + ('Ying-Hwa Hu'), + ('Audrey Wood'), + ('David Shannon'), + ('Natalie Savage Carlson'), + ('Carla Stevens'), + ('Deborah Kogan Ray'), + ('Michael Hague'), + ('Mary Jane Begin'), + ('Mary Downing Hahn'), + ('Laurie Lawlor'), + ('Jeanne Betancourt'), + ('Sylvia Schur'), + ('Vivian Schulte'), + ('R.D.'), + (' Ph.D. Vivian Sch'), + ('Kathryn Winter'), + ('Jeff Aubery'), + ('Criswell Freeman'), + ('Now Magazine'), + ('Steven Davey'), + ('Phil Lee'), + ('Helen Lovekin'), + ('H. Jackson Brown'), + ('Robert T. Hohler'), + ('Janet Taylor Lisle'), + ('Satomi Ichikawa'), + ('Barthe DeClements'), + ('Dorothy Abbott'), + ('Susan Koppelman'), + ('Stacey Schuett'), + ('Janet Lee Carey'), + ('Emma Kallok'), + ('Sharon M. Draper'), + ('Chris Lynch'), + ('Glencoe/ McGraw-Hill - Jamestown Education'), + ('Christin Rickley'), + ('Athol Fugard'), + ('Vivian Gussin Paley'), + ('Carolyn Wyman'), + ('Chassie West'), + ('Tanya A. Crosby'), + ('Jillian Hart'), + ('Marjabelle Young Stewart'), + ('Connie Bennett'), + ('Anne Styles'), + ('Heron'), + ('Aaron Karo'), + ('Inc. Let''s Go'), + ('Tom Maremaa'), + ('Margaret St George'), + ('David Glusker'), + ('Maude Casey'), + ('Jack Kersh'), + ('Arthur J. Roth'), + ('Elizabeth Bolton'), + ('S. D. Schindler'), + ('Jean Feiwel'), + ('Bethany Buck'), + ('David Slonim'), + ('Mike Berenstain'), + ('Dan Peters'), + ('Beth Scott'), + ('Michael Norman'), + ('Lester Sumrall'), + ('Helen Chappell'), + ('Yu Huan Zhang'), + ('Ken Rose'), + ('Zhang Yu Huan'), + ('Lao Tzu'), + ('Victor H. Mair'), + ('Jose Luis Sampedro'), + ('Emma Thompson'), + ('Clive Coote'), + ('Lindsay Doran'), + ('Daniel James'), + ('Josi Guadalupe Pos'), + ('Christoper Plummer'), + ('Klaus Werner'), + ('Hans Weiss'), + ('E.A. Lowe'), + ('Nicolas Maquiavelo'), + ('Norma Khouri'), + ('Le Ly Hayslip'), + ('John Tyerman Williams'), + ('Bernard Peterson'), + ('Katie Waitman'), + ('Pamela Dean'), + ('more'), + ('Catherine Wells'), + ('Alexandra Lapierre'), + ('Liz Heron'), + ('Denise Austin'), + ('M. D. M. Scott Peck'), + ('Neil Henry'), + ('Arielle Ford'), + ('Toru Takemitsu'), + ('Yoshiko Kakudo'), + ('Glenn Glasow'), + ('Seiji O'), + ('Sherwin B. Nuland'), + ('Kate Phillips'), + ('Edith Forbes'), + ('Tom Philpott'), + ('Senator John McCain'), + ('J. T. Leroy'), + ('Sullivan'), + ('Stephen Mitchell'), + ('James Wilcox'), + ('Clara Claiborne Park'), + ('James Ruddick'), + ('Stacey D''Erasmo'), + ('E M Cioran'), + ('Christian Bauman'), + ('Margarite F. Olmos'), + ('Lizabeth P. Gebert'), + ('Reynolds Price'), + ('Alexa Albert'), + ('Seymour Gross'), + ('Sculley Bradley'), + ('Rosina Lippi'), + ('Pia Pera'), + ('Pam Durban'), + ('Latifa'), + ('Shay Youngblood'), + ('Stuart Brent'), + ('Gina Bria'), + ('Dan Bruce'), + ('Dan ''Wingfoot'' Bruce'), + ('Ed Garvey'), + ('Charles H. Patterson'), + ('Desmond Lee'), + ('William J. Lederer'), + ('Alice Thomas Ellis'), + ('James Lovegrove'), + ('Irene Northan'), + ('Josh Kirby'), + ('John Boyne'), + ('Deirdre Purcell'), + ('Malcolm Pasley'), + ('Charlotte'), + (' Etc. Bronte'), + ('Brian Vallee'), + ('Jewel Kilcher'), + ('John E. Walvoord'), + ('Wole Soyinka'), + ('John Wideman'), + ('Malcolm Cowley'), + ('Robert Walser'), + ('Scott Rice'), + ('Jan Coffey'), + ('Paul Simon'), + ('P.J. O''Rourke'), + ('Samir Al-Khalil'), + ('Hannah Whitall Smith'), + ('Henri J. M. Nouwen'), + ('Frank C. Craighead Jr.'), + ('Nathan Miller'), + ('Gita Mehta'), + ('Justine Dare'), + ('Kenneth T. Brown'), + ('Emily Dalton'), + ('Elaine Barbieri'), + ('Gordon'), + ('Celeste Hamilton'), + ('Adele Ashworth'), + ('Hammond'), + ('Anne Hampson'), + ('Linda /Bennett Shaw'), + ('Jennifer Mikels'), + ('Delacroix'), + ('Elizabeth Boyle'), + ('Paula Hamilton'), + ('Halston'), + ('Steven Piziks'), + ('Trisha Alexander'), + ('Patricia Kay'), + ('Katherine Compton'), + ('Shawna Delacorte'), + ('Sally Garrett'), + ('Donald'), + ('Laura Marie Altom'), + ('Leigh'), + ('Muriel Bradley'), + ('Linda Randall Wisdom'), + ('Craig Shaw Gardner'), + ('Alyssa Dean'), + ('Stephanie Howard'), + ('Mary Balogh'), + ('Sandra Heath'), + ('Laura Matthe'), + ('Dianne Castell'), + ('Krista Janssen'), + ('Suzanne Barclay'), + ('Phyllis Houseman'), + ('Bright'), + ('Elizabeth Mansfield'), + ('Shari Anton'), + ('Beverly Engel'), + ('Barclay'), + ('Ruth Jean Dale'), + ('Mary Lyons'), + ('Leah Vale'), + ('Karen Toller Whittenburg'), + ('Cindy Holbrook'), + ('Debbie Raleigh'), + ('Nicola West'), + ('D. Chiel'), + ('Jonathan Hensleigh'), + ('Bobby Hutchinson'), + ('Suzannah Davis'), + ('Meagan Mckinney'), + ('Bay Matthews'), + ('Janice Bennett'), + ('Susanne McCarthy'), + ('Christa Merlin'), + ('Rachel Lee'), + ('Brian M. Thomsen'), + ('Rebecca Stratton'), + ('Gail Douglas'), + ('Hart'), + ('Mary Mcbride'), + ('Sabina Grant'), + ('Linz'), + ('Laurey Bright'), + ('Grant'), + ('Amanda Lee'), + ('Debra Lee Brown'), + ('Roberta Leigh'), + ('Dana Ransom'), + ('Ana Seymour'), + ('Parris Afton Bonds'), + ('Maclay'), + ('Leandra Logan'), + ('Teresa Howard'), + ('Mary Mayer Holmes'), + ('Catherine Mills'), + ('Belmont'), + ('Marton'), + ('Miles'), + ('Catherine Archer'), + ('Saranne Dawson'), + ('Janet & Richards'), + (' Emilie Dailey'), + ('Donna Kimel Vitek'), + ('Margaret Dobson'), + ('Jessica Marchant'), + ('Patt Bucheister'), + ('Leslie Davis'), + ('Madeline George'), + ('Nikki Benjamin'), + ('Linda Cajio'), + ('Jo Leigh'), + ('Denton'), + ('Carroll'), + ('Lyn McConchie'), + ('Patricia Lake'), + ('Arlene Holiday'), + ('Jennifer Horsman'), + ('Susannah Kells'), + ('Sue Ellen Cole'), + ('Daphne Woodward'), + ('C. J. Carmichael'), + ('Margaret Pargeter'), + ('Angel Milan'), + ('Eric L. Harry'), + ('R. M. Meluch'), + ('Arlene Holliday'), + ('Deborah Bedford'), + ('Lyndon Hardy'), + ('Pat Wallace'), + ('Ruth Alana Smith'), + ('Raymond Giles'), + ('Billie Green'), + ('Logan'), + ('Amarillas'), + ('Judith E. French'), + ('Taylor Ryan'), + ('Robin Gideon'), + ('Kathryn Fox'), + ('E. A. Mares'), + ('Greg Keyes'), + ('Kenneth C. Davis'), + ('George Demko'), + ('Jerome Agel'), + ('Eugene Boe'), + ('Isabelle Eberhardt'), + ('Michael Burgan'), + ('Gail Herman'), + ('The Master Therion'), + ('Frieda Harris'), + ('Antero Alli'), + ('Yvonne Rees'), + ('Peter May'), + ('David Conway'), + ('Gillian Kemp'), + ('Maxwell Maltz'), + ('Linda Barker'), + ('John M. Ford'), + ('John Toland'), + ('Mitsuo Fuchida'), + ('Walter F Murphy'), + ('Marion D. March'), + ('Joan McEvers'), + ('Sucharitkul'), + ('Fred Reinfeld'), + ('WARREN /SAPIR MURPHY'), + ('Warre Murphy'), + ('Anna Riva'), + ('Y.L. Harris'), + ('Christopher O''Brien'), + ('William C. Westmoreland'), + ('Kaoru Iwamoto'), + ('James E. Kloetzel'), + ('Salomone'), + ('Freddie NORTH'), + ('S. Jason Black'), + ('Christopher S. Hyatt'), + ('Doris Piserchia'), + ('Kelly Freas - Cover'), + ('C. Berlitz'), + ('Stephen M. Rainey'), + ('Lara Parker'), + ('Bill Drummond'), + ('Mark Manning'), + ('Alexander Games'), + ('Eddie Izzard'), + ('Alicia Appleman-Jurman'), + ('Edward Bond'), + ('Patricia Hern'), + ('Ardal O''Hanlon'), + ('Umberto Bellini'), + ('Josef Haslinger'), + ('Werner Lansburgh'), + ('John Toohey'), + ('Gloria D. Miklowitz'), + ('John Christopher'), + ('Peter Bruck'), + ('Samuel Beckett'), + ('Elmar Tophoven'), + ('Allen Carr'), + ('Petra Wackerle'), + ('Dieter Markert'), + ('Theodor Fontane'), + ('Philippa Carr'), + ('Erika Remberg'), + ('Benoîte Groult'), + ('Batya Gur'), + ('Eva Malsch'), + ('C.J. Anders'), + ('Ardella Garland'), + ('Edward Eager'), + ('N. M. Bodecker (Illustrator)'), + ('Jason Little'), + ('Kevin Freiberg'), + ('Jackie Freiberg'), + ('Laura Moore'), + ('Janet Gleeson'), + ('William Hill Brown'), + ('Hannah Webster Foster'), + ('Elizabeth Barrett Browning'), + ('John Robert Glorney Bol'), + ('Gregg Easterbrook'), + ('John Bunyan'), + ('W. R. Owens'), + ('Arthur Jacobs'), + ('Bartolome De Las Casas'), + ('Nigel Griffin'), + ('Anthony Pagde'), + ('Martin Palmer'), + ('Elizabeth Breuilly'), + ('John Leguizamo'), + ('Sonia Moore'), + ('John Gielgud'), + ('Joshua Logan'), + ('Marianne Moore'), + ('Carri Garrison'), + ('Steve'), + (' Rev.'), + (' And Tada'), + (' Joni Eareckson Estes'), + ('Voronica Whitney-Robinson'), + ('H. M. Parshley'), + ('Steven Levenkron'), + ('Otto F. Wahl'), + ('Amy Bloom'), + ('Greg Philo'), + ('Glasgow Media Group'), + ('Glasgow University'), + ('Mary Ellen Copeland'), + ('Gregory Stock Ph.D.'), + ('Leo; Leo Buscaglia Buscaglia'), + ('Jennifer James'), + ('Barbara Stanny'), + ('John Killick'), + ('Myra Schneider'), + ('Leah Furman'), + ('Elina Furman'), + ('Maureen Tan'), + ('Donna Boyd'), + ('Woollcott Smith'), + ('L. E. Modesitt'), + ('L.E Modesitt Jr.'), + ('Karin Goodwin'), + ('Anthony L Abraham'), + ('MJ Ryan'), + ('Judi McCoy'), + ('Suzann Ledbetter'), + ('Linda French'), + ('Wilton Barnhardt'), + ('Liz Ireland'), + ('Harry Kressing'), + ('Simon Maginn'), + ('Penelope Dellaporta'), + ('Bill Ransom'), + ('Gayle Greeno'), + ('Marilyn Bowering'), + ('James Humphreys'), + ('Günter De Bruyn'), + ('Stephanie Gertler'), + ('Nicholas Rinaldi'), + ('Matt Witten'), + ('Nava Atlas'), + ('Lillian Kayte'), + ('Susan Bixler'), + ('Karl Albrecht'), + ('Ron Zemke'), + ('Philip B. Crosby'), + ('Hilary Mantel'), + ('J.D. Landis'), + ('Ruth Picardie'), + ('Matt Seaton'), + ('Justine Picardie'), + ('Brian Vesey-Fitzgerald'), + ('S R Badmin'), + ('Patricia Wendorf'), + ('Ruth Reichl'), + ('David Pesci'), + ('Andrew Miller'), + ('Nega Mezlekia'), + ('Stuart Mclean'), + ('Robin McGrath'), + ('William Maxwell'), + ('Diane Mason'), + ('Bruce Kirkby'), + ('Eric Kraft'), + ('James Jones'), + ('Dakota Hamilton'), + ('Don Hannah'), + ('Kenn Harper'), + ('Hiromi Goto'), + ('Sara George'), + ('George'), + ('Helen Fremont'), + ('Cynthia Flood'), + ('Marina Endicott'), + ('Alan Cumyn'), + ('Beatrice Culleton Mosionier'), + ('Michael Collins'), + ('Kevin Chong'), + ('Grant Buday'), + ('Sandra Birdsell'), + ('Joan Barfoot'), + ('M. E. Hirsh'), + ('Ethan Mordden'), + ('Terri Windling & Ellen Datlow'), + ('Thomas Canty'), + ('Nin'), + ('Ji-li Jiang'), + ('Fawn M. Brodie'), + ('Mutual Publishing'), + ('Mary Kawena Pukui'), + ('William J Bennett'), + ('William H. Whyte'), + ('Stephen J. Adler'), + ('Adele Parks'), + ('Cyrano De Words-U-Lac'), + ('Barbara Johnson'), + ('MaryJanice Davidson'), + ('Lani Nedbalek'), + ('Frank Caplan'), + ('Theresa Caplan'), + ('Ingrid Tomey'), + ('Calvin Miller'), + ('Lyrick Publishing'), + ('Marion Chesney'), + ('Bonnie Macdougal'), + ('Richard Grant'), + ('Richard Hoyt'), + ('Margaret Allan'), + ('Miriam Grace Monfredo'), + ('Lowell Cunningham'), + ('Ed Solomon'), + ('Olga Masters'), + ('Tove Jansson'), + ('Thomas Warburton'), + ('Peter King'), + ('Lillian Herlands Hornstein'), + ('G. D. Percy'), + ('Calvin S. B'), + ('Denise Swanson'), + ('Sam Walton'), + ('John Huey'), + ('Robert Crossley'), + ('Susan Dawn'), + ('Stuart Holmes Coleman'), + ('Mark Helprin'), + ('Chris Van Allsburg'), + ('Colin Eisler'), + ('Lesley Anne Ivory'), + ('May Elizabeth Schlayer'), + ('Dave Thompson'), + ('Eleanor Wachtel'), + ('Lilian Lee'), + ('Andrea Lingenfelter'), + ('Stephen Karcher'), + ('Rudolph Ritesema'), + ('Trina Paulus'), + ('Richard Llewellyn'), + ('Harriette Arnow'), + ('Ed Stivender'), + ('Jayne An'), + ('William Jay Smith'), + ('Jeff Shaara'), + ('Rahna Reiko Rizzuto'), + ('Beth Kephart'), + ('Howe Stidger'), + ('Mike Doogan'), + ('Dee Boyles'), + ('Bertice Berry'), + ('Tim Mikkelsen'), + ('Phyllis Wright-Herman'), + ('MikWright Ltd.'), + ('Jean Shepherd'), + ('Howard Schultz'), + ('Dori Jones Yang'), + ('Barbara Neely'), + ('Marc Summers'), + ('Armand Eisen'), + ('Ben Edlund'), + ('Richard Goldstein'), + ('Maurice Horn'), + ('Paul Dickson'), + ('Rick Meyerowitz'), + ('Paul Dixon'), + ('Carol McD. Wallace'), + ('Barry Sinrod'), + ('Angus Oblong'), + ('Angela Shelf Medearis'), + ('Nancy Birnes'), + ('Patti Shosteck'), + ('Lee Wade'), + ('Joan Rutt'), + ('Sandra Mattielli'), + ('Mark Bittman'), + ('Steven Raichlen'), + ('Sheila Lukins'), + ('Julee Rosso'), + ('Arthur Schwartz'), + ('Beatrice A. Ojakangas'), + ('Mable Hoffman'), + ('Shirley Gill'), + ('Jill Dupleix'), + ('Geoff Lung'), + ('Judith Choate'), + ('Bill Milne'), + ('Viana LA Place'), + ('Judy Rosenberg'), + ('Judy Wicks'), + ('Kevin Von Klause'), + ('Elizabeth Fitzgerald'), + ('Michael McLaughlin'), + ('Irma S. Rombauer'), + ('Marion Rombauer Becker'), + ('Ethan Beck'), + ('Alan Witschonke'), + ('Beverly Mills'), + ('Alicia Ross'), + ('Anya Von Bremzen'), + ('John Welchman'), + ('Grace Shugart'), + ('Mary Molt'), + ('Ernest M. Mickler'), + ('Richard Sullivan'), + ('Betsy Wyckoff'), + ('Pat LaFontaine'), + ('Larry Weisman'), + ('Chas Griffin'), + ('Cynthia Tobias'), + ('Jill Bloom'), + ('Will Weaver'), + ('Ryan White'), + ('Ann Marie Cunningham'), + ('Bill O''Reilly'), + ('Dreikurs'), + ('Claudia Jones'), + ('Greg Nagan'), + ('Donald Goines'), + ('Floyd C. Watkins'), + ('William B. Dillingham'), + ('John T. Hie'), + ('Stirling Silliphant'), + ('H. King'), + ('Robert A Seiple'), + ('Inge Sargent'), + ('Honolulu Theatre For Youth'), + ('Meri Ishikawa'), + ('Erika Oller'), + ('Rhys Bowen'), + ('Charles Knief'), + ('David Galef'), + ('Jun Hashimoto'), + ('Susan Stamberg'), + ('Wu Ningkun'), + ('Elizabeth Portch'), + ('Molly Brown'), + ('Nancy E. Turner'), + ('Ann Sherif'), + ('Louie Anderson'), + ('RH Disney'), + ('Lois-ann Yamanaka'), + ('Mariama B'), + ('Noelle Howey'), + ('Aaron McGruder'), + ('James Madison'), + ('Billy Bob Thornton'), + ('Rollins'), + ('Irene Diamond'), + ('Gloria Orenstein'), + ('Mary Daly'), + ('Diane Bell'), + ('Thomas Berger'), + ('Patricia Kennealy'), + ('Alice Bach'), + ('Steven Kellogg'), + ('Hugh Lofting'), + ('Iona Opie'), + ('Peter Opie'), + ('James Pruitt'), + ('Lorraine Johnson-Coleman'), + ('Cary O. Yager'), + ('E.B. White'), + ('Gail Owens'), + ('John Travolta'), + ('Rachel Simmons'), + ('Raul Correa'), + ('M. T. Anderson'), + ('Ysaye M. Barnwell'), + ('Synthia Saint James'), + ('Marcia Williams'), + ('Janet Schulman'), + ('Martine Gourbault'), + ('Caroline Schrodes'), + ('Deborah Chase'), + ('Kevin Baker'), + ('Illona Linthwaite'), + ('Gertrude Crampton'), + ('Tibor Gergely'), + ('Edith Fisher Hunter'), + ('Neil Simon'), + ('Bil Keane'), + ('Gary A. Dias'), + ('Robbie Dingeman'), + ('Ross Yamanaka'), + ('David Rees'), + ('Jean Craighead GEORGE'), + ('Sheila Burnford'), + ('Sydney B. Metrick'), + ('Taro Gomi'), + ('Christopher Paolini'), + ('Mariane Pearl'), + ('Sarah Crichton'), + ('Marie Hara'), + ('Nora Okja Keller'), + ('Jerdine Nolen'), + ('Steven Lindblom'), + ('True Kelley'), + ('Stephen Laws'), + ('Ronald Gottesman'), + ('Graham Lord'), + ('David Brooks'), + ('David Homel'), + ('Gail Scott'), + ('Nelson Mandela'), + ('Bernice Johnson Reagon'), + ('Sting'), + ('Anne Garrels'), + ('Dayna Curry'), + ('Heather Mercer'), + ('Stacy Mattingly'), + ('Herman Miller'), + ('Debra Doyle'), + ('H. Miller'), + ('Ezra Whiteman'), + ('Norman Node'), + ('Evelyn Goodman'), + ('Karen Karbiener'), + ('Harriet Beecher Sto'), + ('Caroline Knapp'), + ('John White'), + ('Dorothy West'), + ('Isabel Fonseca'), + ('Beverley Naidoo'), + ('Eric Velasquez'), + ('Mike Lester'), + ('Jr Bill Martin'), + ('John Archambault'), + ('Nina Bernstein'), + ('Chip Silverman'), + ('Walt Disney'), + ('J. D. Bisignani'), + ('Robert Nilsen'), + ('Margaret Miner'), + ('Hugh Rawson'), + ('Marianne Larned'), + ('Colin Powell'), + ('Maria'), + ('Stuart Miller'), + ('Geoffrey Moss'), + ('Patricia Meyer Spacks'), + ('Alfred Birnbaum'), + ('Jamie Stamper'), + ('Robert Byrne'), + ('Teressa Skelton'), + ('Jon Spoelstra'), + ('Robert Smith'), + ('Jean Hortense Seligmann'), + ('Paul S. Newman'), + ('Annie Guenther'), + ('J.M. Barrie'), + ('Mabel Watts'), + ('Joe Ewers'), + ('Western Publishing'), + ('Al Andersen'), + ('Don Ferguson'), + ('Peter Emslie'), + ('Susan Hightower'), + ('Matt Novak'), + ('Teddy Margulies'), + ('Studio Orlando'), + ('Craig McCracken'), + ('Lauren Faust'), + ('Rick Detorie'), + ('Teddy Slater'), + ('Tom LaPadula'), + ('Margaret A. Hartelius'), + ('Harry McNaught'), + ('Steve Metzger'), + ('Steven Kroll'), + ('Jeni Bassett'), + ('Freya Littledale'), + ('Freya L'), + ('B.G. Ford'), + ('Leone Castell Anderson'), + ('Eugenie (Illustrator)'), + ('Ann Braybrooks'), + ('Arkadia'), + ('David Korr'), + ('Joe Mathieu'), + ('Chari Sue'), + ('Richard Courtney'), + ('Trish Courtney'), + ('A. Delaney'), + ('Jon Stone'), + ('Michael Smollin'), + ('Edens'), + ('Various Authors'), + ('Tori Amos'), + ('Martin Scot Kosins'), + ('Sydney Taylor'), + ('Helen John'), + ('Marcie Carroll'), + ('Frederick Crews'), + ('Andy Warhol'), + ('Edith Thacher Hurd'), + ('Tibor Gerge'), + ('George Booth'), + ('Sachi Fukuda'), + ('Greg Critser'), + ('Mark D. Sanders'), + ('Tia Sillers'), + ('Marian Engel'), + ('Susan Schade'), + ('Charlotte Zolotow'), + ('William Pene Du Bois'), + ('Graham Oakley'), + ('Joan Clarke'), + ('Andrew Matzner'), + ('Oliver Stone'), + ('Samuel H. Elbert'), + ('Margaret Cho'), + ('Ntozake Shange'), + ('Ron Clark'), + ('Ted Rall'), + ('Greg Hyland'), + ('David Simon'), + ('Edward Burns'), + ('Adrian Nicole LeBlanc'), + ('Michael Fry'), + ('Gregory White Smith'), + ('Steven W. Naifeh'), + ('Daniel Baxter'), + ('Ruth Harris'), + ('Carellin Brooks'), + ('Tim Cahill'), + ('Tom Bodett'), + ('Peter N. Forman'), + ('Sharon Linnea'), + ('Rob'), + ('George P. Pelecanos'), + ('George Pelecanos'), + ('James H. English'), + ('Maryann Cusimano'), + ('Jodi Endicott'), + ('Hans Loffel'), + ('Doug Peebles'), + ('Curt Sanburn'), + ('Eileen Curran'), + ('G. Brian Karas'), + ('J. D. Christilian'), + ('Thomas Szollosi'), + ('Karen Moline'), + ('James G. Nourse'), + ('Edna Buchanan'), + ('Mitchell Smith'), + ('Christopher Hyde'), + ('Margaret Yorke'), + ('William Lashner'), + ('Barbara Fister'), + ('Kyle Spencer'), + ('Evan I. Schwartz'), + ('Tony Dunbar'), + ('Eleanor Taylor Bland'), + ('Jim Knipfel'), + ('Lowen Clausen'), + ('Betty Macdonald'), + ('Louise A. DeSalvo'), + ('Sam Chaiton'), + ('Terry Swinton'), + ('Cynthia Harrod-Eagles'), + ('John Miller'), + ('Marianne Wiggins'), + ('Stephen Miller'), + ('R.D. Wingfield'), + ('Bonnie K. Winn'), + ('Suzanne Carey'), + ('S. Andrew Swann'), + ('Andrew Bergman'), + ('Charles Ingrid'), + ('Libby Hall'), + ('Kia Meaux'), + ('Jim Borgman'), + ('Bunty Howearth'), + ('C.K. Stead'), + ('Sky Lee'), + ('Tong Su'), + ('William Caunitz'), + ('Robin Burcell'), + ('James Tertius DeKay; James Tertius De Kay'), + ('Bill Fitzhugh'), + ('Jeanne Braselton'), + ('Larry Keenan'), + ('Stephanie Johnson'), + ('Julie Cannon'), + ('D. B. C. Pierre'), + ('Alisa Valdes-Rodriguez'), + ('Patricia Grace'), + ('Julie Otsuka'), + ('Marilyn Duckworth'), + ('Georgia Byng'), + ('Pat Ross'), + ('Philip Sugden'), + ('Huston Curtiss'), + ('Michael Cart'), + ('Leslea Newman'), + ('M. Hardwick'), + ('Owen Chase'), + ('Iola Haverstick'), + ('Betty Shepard'), + ('Katharine Weber'), + ('I.J. Parker'), + ('Brad Gooch'), + ('Dann Hazel'), + ('Elizabeth Gilbert'), + ('Amy Borkowsky'), + ('Anna L. Waldo'), + ('Emine Sevgi Ozdamar'), + ('Donna Andrews'), + ('Holly Payne'), + ('John Marino'), + ('Tina Cohen'), + ('C. K. Stead'), + ('Stevan Eldred-Grigg'), + ('John Welter'), + ('Jose Raul Bernardo'), + ('Irene Allen'), + ('Douglas Wynn'), + ('Lilian Nattel'), + ('Alfred Noyes'), + ('Charles Mikolaycak'), + ('Nick Smith'), + ('Yxta Maya Murray'), + ('Denise Giardina'), + ('Harold Pinter'), + ('P. G Wodehouse'), + ('Simon Doonan'), + ('Holly Hobbie'), + ('Abby Bardi'), + ('Judith Henry'), + ('Graham Caveney'), + ('Elizabeth Hess'), + ('Terrence Cheng'), + ('Art Spiegelman'), + ('David Davidar'), + ('Jewell Parker Rhodes'), + ('Edward G. Seidensticker'), + ('Sela Ward'), + ('Anita Rau Badami'), + ('Gary Ogden Harper'), + ('Wayne Johnston'), + ('Michael Augustyn'), + ('Kurt Diemberger'), + ('Philippe Garner'), + ('Tom Corcoran'), + ('Brad Dimock'), + ('Paulette Jiles'), + ('Frank Monaco'), + ('Richard L. Miller'), + ('David Letterman'), + ('Lisa Huang Fleischman'), + ('Akimitsu Takagi'), + ('Dan Hurley'), + ('H.B. Gilmour'), + ('Sherry Sontag'), + ('Christopher Drew'), + ('Annette Lawrence Dr'), + ('Camille Geraldi'), + ('Carol Burris'), + ('Earl Murray'), + ('Dr. Pedro Jose Greer Jr.'), + ('Liz Balmaceda'), + ('Debbie Morris'), + ('Gregg Lewis'), + ('Nik C. Colyer'), + ('Mark Payne'), + ('Cara Wilson'), + ('Otto Frank'), + ('Debby Jones'), + ('Jackie Kendall'), + ('Pete Dexter'), + ('Miriam Sokol'), + ('Hanoch McCarty'), + ('Me'), + ('Rick Pitino'), + ('Mary Kay McComas'), + ('Iris R. Dart'), + ('Elisabeth Eaves'), + ('ISAAC ASIMOV'), + ('Octave Mirbeau'), + ('Douglas Jarman'), + ('Allen Weinstein'), + ('Alexander Vassiliev'), + ('S.A.R.K.'), + ('O. E. Rolvaag'), + ('Einar Haugen'), + ('Gudrun Hovde Gvale'), + ('John F. Bayer'), + ('Shirley Worrall'), + ('James Scott Bell'), + ('Mary Engelbreit'), + ('Robert Eisenberg'), + ('J. Gregory Keyes'), + ('Gareth Davies-Morris'), + ('John Reed'), + ('George Harrar'), + ('Pamela Rafael Berkman'), + ('Thomas Sanchez'), + ('John Burgoyne'), + ('Paul Levinson'), + ('Martha Powers'), + ('Sembene Ousmane'), + ('Margot Patterson Doss'), + ('Rafael Courtoisie'), + ('Mr. Al Biondi'), + ('Al Biondi'), + ('Ana?s. Nin'), + ('Cherry Adair'), + ('Lars Eighner'), + ('Geraldine Kudaka'), + ('Jim Curtin'), + ('James J. Curtin'), + ('Renata Ginter'), + ('Nick Tosches'), + ('Daniel Akst'), + ('Cristopher Stasheff'), + ('Tara K. Harper'), + ('Joseph Bryant'), + ('Sandra Bernhard'), + ('Louise Redd'), + ('Carol Ann Lee'), + ('Linda Wolfe'), + ('Guy Vanderhaeghe'), + ('Mary Ladd Gavell'), + ('Jerry Hopkins'), + ('Robert Shapard'), + ('Hulton Getty'), + ('Josephine Gattuso Hendin'), + ('Mary Jo Bona'), + ('Rebecca Stowe'), + ('Arlene J. Chai'), + ('Mikhail Lermontov'), + ('Paul Foote'), + ('Gloria Mallette'), + ('Jeff Leeland'), + ('April Sinclair'), + ('Professor John Barth'), + ('Michael Grant Jaffe'), + ('William Joyce'), + ('Ben Bradlee'), + ('Scott R. Russell'), + ('Joe Conason'), + ('Uwe Timm'), + ('Peter Tegel'), + ('John Lennon'), + ('I. M. Peeved'), + ('Ed Strnad'), + ('David Malouf'), + ('David Chilton'), + ('元阳'), + ('Eric Shiraev'), + ('Gerald L. Boyd'), + ('Gerald Lee Boyd'), + ('Jaimy Gordon'), + ('Dan Franck'), + ('Susan Cheever'), + ('Claudia Shear'), + ('Gene Hackman'), + ('Daniel Lenihan'), + ('John Dowdee'), + ('Marcia Kamien'), + ('Seamus Deane'), + ('Culinary Institute Of America'), + ('Donald Antrim'), + ('Robert Lopshire'), + ('Stephanie True Peters'), + ('Reg Sandland'), + ('Bill Dahl'), + ('Weldon A. McDougal III'), + ('Lora Brody'), + ('Lois Ellen Frank'), + ('Earl W. Emerson'), + ('Andrew S. Grove'), + ('Mark Kurlansky'), + ('Bob Eggleton'), + ('Nigel Suckling'), + ('Ruthanne Lum McCunn'), + ('Jean Pare'), + ('Elliott Roosevelt'), + ('Myrna Oakley'), + ('Stanley Kaplan'), + ('Geneen Roth'), + ('Martin Dunford'), + ('Jack Holland'), + ('Stacey Richter'), + ('Roland Gary Jones'), + ('Arl Modica Matthews'), + ('Linnea Lundgren'), + ('Laura Kraemer'), + ('Ellen Slezak'), + ('Elizabeth Pomada'), + ('Michael Larsen'), + ('Douglas Keister'), + ('Marion Owen'), + ('Cindy'), + ('Kakuzo Okakura'), + ('Robert W. Snyder'), + ('Wendy Hornsby'), + ('Paula Marantz Cohen'), + ('Susan Shaughnessy'), + ('Meridel Le Sueur'), + ('Ian C. Ellis'), + ('A.M. Homes'), + ('Tess Gallagher'), + ('Helen Dunmore'), + ('Robert Ellis Gordon'), + ('Michael Stearns'), + ('Adela Vengana'), + ('Gil Reavill'), + ('Michael Yamashita'), + ('Rainer Eisenschmid'), + ('Karl Baedeker'), + ('Jamie S. Rich'), + ('Andi Watson'), + ('Scott Morse'), + ('Judd Winick'), + ('Laura Day'), + ('Hari Kunzru'), + ('Robin Goldstein'), + ('Dr. James Dobson'), + ('Julie Taylor'), + ('Nikolaj Frobenius'), + ('Tom Glazer'), + ('Lendon Smith M.D.'), + ('Kay Baxter'), + ('Lucy Bauer Footlik'), + ('Heidi-Marie Blackwel'), + ('John Kulka'), + ('Natalie Danford'), + ('John Powell'), + ('Nancy Richler'), + ('Sandra Benitez'), + ('Allen DeHart'), + ('Bruce Sundquist'), + ('Ben Jonson'), + ('Roger Holdsworth'), + ('Alan V. Hewat'), + ('Angela Nissel'), + ('Art Lee'), + ('Claire Davis'), + ('Helen Banes'), + ('Diane Fitzgerald'), + ('Julia Wilkinson'), + ('John King'), + ('Nuruddin Farah'), + ('Joyce Goldstein'), + ('Halldor Laxness'), + ('Carol Frieberg'), + ('Margaret B. Blackman'), + ('Florence E. Davidson'), + ('Laurie Foos'), + ('John B. Keane'), + ('Chuck Shepherd'), + ('Elizabeth Nixon Weaver'), + ('Sol Gordon'), + ('Alexander Lockhart'), + ('Kurban Said'), + ('Jenia Graman'), + ('Ben Sherwood'), + ('Joan'), + ('Craig Claiborne'), + ('Marc Mappen'), + ('Jill McCorkle'), + ('Lawrence Norfolk'), + ('Tom Henry'), + ('Greta Guzek'), + ('Paco Underhill'), + ('Kathleen Alcala'), + ('Faith Sullivan'), + ('Maria Flook'), + ('Roger Rapoport'), + ('Marguerita Castanera'), + ('Mary Morris'), + ('Ja'), + ('Tama Janowitz'), + ('Marty Westerman'), + ('Anton Chekhov'), + ('Ann Dunnigan'), + ('Ernest J. Simmons'), + ('M. F. K. Fisher'), + ('Nino Lo Bello'), + ('Christopher Morley'), + ('Ionicus - Joshua Armitage;'), + ('Marlys Millhiser'), + ('Jeanne K. Hanson'), + ('Barbara Myerhoff'), + ('Amber Coverdale Sumrall'), + ('Patricia Vecchione'), + ('Dee Wells'), + ('Peter Canby'), + ('Jerry Biederman'), + ('Lorin Michelle Biederman'), + ('Gregory Gibson'), + ('Sally Morningstar'), + ('Martha Ostenso'), + ('David Arnason'), + ('Marly Swick'), + ('Sandi Toksvig'), + ('JANE GARDAM'), + ('Jill Paton Walsh'), + ('Eliyahu Goldratt'), + ('Rani Manicka'), + ('Saxton Judith'), + ('Marcus Sieff'), + ('Ronnie Barker'), + ('Colin White'), + ('Laurie Boucke'), + ('David Hampshire'), + ('Carl Lombard'), + ('Dipika Mukherjee'), + ('Kirpal Singh'), + ('M A Quayam'), + ('Dayna Dunbar'), + ('Acton Figueroa'), + ('Diane Hammond'), + ('Thomas Adcock'), + ('Margaret Snyder'), + ('Karin Slaughter'), + ('Amanda Brownfield'), + ('Rose Connors'), + ('Pat Booth'), + ('Matthew Rettenmund'), + ('Nigel Cawthorne'), + ('Leslie Gould'), + ('Kim Wong Keltner'), + ('Kathy Peel'), + ('Beth Hilgartner'), + ('Claudia Pattison'), + ('Teresa McClain Watson'), + ('Jean Thompson'), + ('Brian Kilcommons'), + ('Sarah Wilson'), + ('Richard T. Pienciak'), + ('George Anastasia'), + ('Lagoon Books'), + ('Peter Burton'), + ('Mary-Kate Olsen'), + ('Carol Thompson'), + ('Annie Auerbach'), + ('Mark O''Hare'), + ('Steven Banks'), + ('Clint Bond'), + ('Patricia MacDonald'), + ('Patrick Lestewka'), + ('R.J. Rosenblum'), + ('Tanya Maria Barrientos'), + ('Ramsey Campbell'), + ('Caroline Leavitt'), + ('Lauren Kelly'), + ('James A. Moore'), + ('Jilliane Hoffman'), + ('Christina Fitzpatrick'), + ('Jessica Barksdale Inclan'), + ('Linda Nichols'), + ('Wrath James White'), + ('Mark Billingham'), + ('Mark Nykanen'), + ('Matthew Stokoe'), + ('Blake Crouch'), + ('Anne Leclaire'), + ('James Kidman'), + ('Donna VanLiere'), + ('Gary A. Braunbeck'), + ('Sephera Giron'), + ('Barbara Bell'), + ('Kevin Yarbrough'), + ('Lucy Taylor'), + ('Judy Duarte'), + ('Monica J. O''Rourke'), + ('Neal McPheeters'), + ('Elizabeth Steffen'), + ('Paul Burrell'), + ('Patrick Demarchelier'), + ('Hannah Alexander'), + ('Shirley Palmer'), + ('Victoria Pade'), + ('Laura Kasischke'), + ('Robert Boswell'), + ('Judith H. McQuown'), + ('Andrew Harper'), + ('Joshua Gilder'), + ('Kate Morgenroth'), + ('Taylor Kincaid'), + ('Anitra Sheen'), + ('Keith Ablow'), + ('Charles King'), + ('Zelda Lockhart'), + ('Peggy Vincent'), + ('Jeffrey Konvitz'), + ('Joseph Garber'), + ('Scott Smith'), + ('Randall Adams'), + ('William Hoffer'), + ('Marilyn Mona Hoffer'), + ('Glen Hirshberg'), + ('Jennifer L. Holm'), + ('Jere Longman'), + ('John Skipp'), + ('Elwood Reid'), + ('Manuela Dunn-Mascetti'), + ('Sayed A. A. Razwy'), + ('Abdullah Yusuf Ali'), + ('Anne Hruska'), + ('Malcolm X'), + ('Attallah Shabazz'), + ('Marie-Luise Kreuter'), + ('Marc Behm'), + ('John Steakley'), + ('Rob Kean'), + ('Mark Kistler'), + ('Donald Senior'), + ('Mary Packard'), + ('James McIlrath'), + ('Sarah Josepha Hale'), + ('Bruce McMillan'), + ('John Follain'), + ('Rita Cristofari'), + ('Michael Cader'), + ('Kim Bellefontaine'), + ('PerHenrik Gurth'), + ('Will Osborne'), + ('Dianne Snyder'), + ('Allen Say'), + ('Heidi E. Y. Stemple'), + ('Roger Roth'), + ('Linda Ashman'), + ('Regan Dunnick'), + ('Ellen Schecter'), + ('Malcolm Yorke'), + ('Lee Davis'), + ('Ira Wolfman'), + ('Paul Meisel'), + ('Ellen Levine'), + ('Richard Williams'), + ('Edward Frascino'), + ('Elizabeth G. Hainstock'), + ('Ken Weber'), + ('Roger Priddy'), + ('Robert Levine'), + ('Robert T. Levine'), + ('Meredith Hamilton'), + ('Patricia Beatty'), + ('Ji-Li Jiang'), + ('Andrea Immer'), + ('Butch Guice'), + ('Ruth Beechick'), + ('Tomie DePaola'), + ('Nancy Bond'), + ('Bill Nye'), + ('Ian G. Saunders'), + ('Beth Peck'), + ('Natalie Carabetta'), + ('Erik C. Haugaard'), + ('Donna M. Jackson'), + ('Augustine'), + ('Dr. William Bonadio'), + ('Avery Hart'), + ('Paul Mantell'), + ('Alexandra M. Terzian'), + ('Jim Jordan'), + ('Karen Andreola'), + ('Naomi Black'), + ('Nancy Kalish'), + ('Loretta Mowat'), + ('Leisure Arts'), + ('Eds. Leisure Arts'), + ('Mr. Jim Weidmann'), + ('Mr. Kurt Bruner'), + ('Mr. Ron Wilson'), + ('C. Akiyama'), + ('N. Akiyama'), + ('Fujihiko Kaneda'), + ('Rita Lampkin'), + ('Carol Akiyama'), + ('Nobuo Akiyama'), + ('Hiroko Storm'), + ('Robert Tallon'), + ('Ian Sheldon'), + ('Bruce Campbell'), + ('Esmé Raji Codell'), + ('Penny Simkin'), + ('Bridgette Server'), + ('Bishop Fulton Sheen'), + ('John Beevers'), + ('Lee Fahnestock'), + ('Norman MacAfee'), + ('E. Nesbitt'), + ('Henry Graham'), + ('Gennady Spirin'), + ('Giuliana Pelucchi'), + ('Giuliana Peluchi'), + ('Antoinette Bosc'), + ('Benedict J. Groeschel'), + ('James W. Demers'), + ('Michael D. O''Brien'), + ('Angela C. Santomero'), + ('Jenine Pontillo'), + ('David Isaacs'), + ('Laura Berquist'), + ('Susan Wise Bauer'), + ('Patty Martirosian'), + ('Jay Wise'), + ('Sharon'), + ('Mel Gibson'), + ('Ken Duncan'), + ('Tom Allen'), + ('Marcellino D''Ambrosio'), + ('Matthew Pinto'), + ('Jonathan Stroud'), + ('Joan Younger Meek'), + ('Hertha Pauli'), + ('Lenn Redman'), + ('Philip Wilkinson'), + ('Susan Striker'), + ('Edward Kimmel'), + ('Elizabeth Hallam'), + ('Kimberly Hahn'), + ('Scott Hahn'), + ('Sara Wood'), + ('Christine O'' Keeffe Lafser'), + ('Phyllis Tickle'), + ('David Currie'), + ('C. Bernard Ruffin'), + ('Mitch Pacwa'), + ('Ronda Chervin'), + ('Patrick Madrid'), + ('Patrick Madrid (editor)'), + ('Foreword By Scott Hahn'), + ('Geoff Benge'), + ('Janet Benge'), + ('Ann Mcgovern'), + ('Tracy Sugarman'), + ('Leslie Rule'), + ('H. Rider Haggard'), + ('Paul Hogarth'), + ('Jack Hitt'), + ('Tony Hille'), + ('Euripides'), + ('John McLean'), + ('T.E. Lawrence'), + ('Charles P. Curtis Jr.'), + ('Ferris Greenslet'), + ('Maria Beesing'), + ('Robert J. Nogosek'), + ('Patrick H. O''Leary'), + ('Pierre-Ambrois-Francois Choderlos De Laclos'), + ('Richar'), + ('Michael Allen Dymmoch'), + ('Louise Taylor'), + ('Barbara E. Cohen'), + ('Patricia Ingham'), + ('Mandelbaum'), + ('Robert M. Quackenbush'), + ('Sarah Graves'), + ('A.A. Milne'), + ('Andrew Glass'), + ('Janet Frank'), + ('Jeff Abbott'), + ('George Downing'), + ('Kathleen Keating'), + ('Mimi Noland'), + ('Evelyn E. Smith'), + ('James Fox'), + ('Jan Lynette Dargatz'), + ('Raymond Lamont-Brown'), + ('Connie Fedderson'), + ('Ross Thomas'), + ('Shelley Freydont'), + ('Lesilie Meier'), + ('Howard Pyle'), + ('Adapted Version By Alexa Villanueva'), + ('Harriet Lerner'), + ('Suzette Tyler'), + ('Stephen Hickman'), + ('Fran Lebowitz'), + ('Leo Buscaglia'), + ('Kate Klise'), + ('M. Sarah Klise'), + ('Emily Brightwell'), + ('Christine Breen'), + ('Louis B. Wright'), + ('Virginia A. La'), + ('Woodward'), + ('Aline Romanos'), + ('Ronni Eisenberg'), + ('Kate Kelly'), + ('Carol Gilligan'), + ('Peter Russell'), + ('Bob Rosner'), + ('Les Rhodes'), + ('Jeremy Leggatt'), + ('Dorothy L Sayers'), + ('Terry Cole-Whittaker'), + ('Jessica Mitford'), + ('Baroness Orczy'), + ('Deborah Adams'), + ('Michelle Kwan'), + ('Laura M. James'), + ('Jacqueline Girdner'), + ('Ellen Fein'), + ('Sherrie Schneider'), + ('Lou Jane Temple'), + ('John Hockenberry'), + ('Sheldon Rubin'), + ('Laurien Berenson'), + ('Arlene Matthews'), + ('Nadine Mockler'), + ('Frances Gray Patton'), + ('Emmuska Orczy'), + (' Baroness Orczy'), + ('Mildred A. Wirt'), + ('Russell H. Tandy'), + ('Allen Mandelbaum'), + ('Diane M Stortz'), + ('Nancy Lee Teaff M.D.'), + ('Kim Wright Wiley'), + ('Downing'), + ('Chuck Slack'), + ('Carla Jablonski'), + ('Donald M. Silver'), + ('Patricia J. Wynne'), + ('Patricia J. Wyn'), + ('Ludwig Bemelmans'), + ('Jesse Younger'), + ('Aurelius Battaglia'), + ('Jennifer Dewey'), + ('Read'), + ('Vincent Andriani'), + ('Henrik Drescher'), + ('Robert Loren Fleming'), + ('Ken Kimmelman'), + ('Elspeth Murphy'), + ('Jane E. Nelson'), + ('John Walsh'), + ('Jonathan Frakes'), + ('Nancy L. Mace'), + ('Peter V. Rabins'), + ('Terence; Crider'), + (' Bill; Lee'), + (' Wendi; Schumacher'), + (' Ail'), + ('Lazaris'), + ('Gregory McDonald'), + ('John Hollander'), + ('Nancy Fairbanks'), + ('Andrew Carroll'), + ('Robert Kimmel Smith'), + ('George Sullivan'), + ('Emma Gelders Sterne'), + ('Alton Raible'), + ('Richard Skinner'), + ('Jason Moss'), + ('Jeffrey Kottler'), + ('Anton Chaitkin'), + ('E .M. Delafield'), + ('E. M. Delafield'), + ('Arthur Watts'), + ('Mary Borden'), + ('Sharyn Mccrumb'), + ('Elizabeth Foxwell'), + ('Hamilton Crane'), + ('Lee Charles Kelley'), + ('Frank Ferrell'), + ('Janet Ferrell'), + ('Edward Wakin'), + ('Joan Embery'), + ('Steven H Silver'), + ('Gene Stratton Porter'), + ('Lori Marie Carlson'), + ('M. C. Beaton'), + ('Carol Anne O''Marie'), + ('Gary Trudeau'), + ('Donald Carrick'), + ('Lebbeus Woods'), + ('Doreen Tovey'), + ('Jaqueline King'), + ('Robert Ellsberg'), + ('Ruth Teichroeb'), + ('Julie Nixon Eisenhower'), + ('Lori Copeland'), + ('Patricia Windsor'), + ('Norma Mazer'), + ('Herbert Fensterheim Ph.D.'), + ('Jean Baer'), + ('Deborah Donnelly'), + ('S. Gross'), + ('Dorie Byers'), + ('Edward Ball'), + ('Laura Pedersen'), + ('Judith Fein'), + ('Eastman Kodak Company'), + ('Phyllis Rose'), + ('Jean Wickstrom Liles'), + ('Lisa A. Hooper'), + ('Richard Lockridge'), + ('Frances Lockridge'), + ('Francess Lin Lantz'), + ('Tip O''Neill'), + ('Manuel J. Smith'), + ('Dick King-Smith'), + ('Kate Douglas Wiggin'), + ('Deborah G. Felder'), + ('B. B. Hiller'), + ('Stephen Krensky'), + ('F. M. Cornford'), + ('Jack Shepherd'), + ('Thomas Nelson Publishers'), + ('Ann McGovern'), + ('Hilary Knight'), + ('William Stevenson'), + ('Charlotte Elkins'), + ('Kenneth Giles'), + ('A. A. Fair'), + ('Laurel Robertson'), + ('David Wallechinsky'), + ('Frances Burnett'), + ('Julie Harris'), + ('Farley Mowat'), + ('Chuck Yeager'), + ('Charles Leerhsen'), + ('Claire Tomalin'), + ('Amanda Brown'), + ('Peter Sis'), + ('Kathryn Kenny'), + ('Susan Feldmann'), + ('Charles E. Funk'), + ('Stewart Cowley'), + ('Susi Adams'), + ('Mark Saltzman'), + ('Douglas J. Rumford'), + ('Bill Hinds'), + ('Sidonie­Gabrielle Colette'), + ('Je'), + ('Boris Pasternak'), + ('Iris Rainer Dart'), + ('Christopher Sykes'), + ('John R. Neill'), + ('Sister Carol Anne O''Marie'), + ('Jackie French Koller'), + ('Judith Mitchell'), + ('Mary Rodgers'), + ('Harold S. Kushner'), + ('Susan Allen Toth'), + ('Mignon Good Eberhart'), + ('Judith Thurman'), + ('Dorothy Law Nolte Ph.D.'), + ('Rachel Harris L.C.S.W. Ph'), + ('JosephineTey'), + ('Joshua Reynolds'), + ('Pat Rogers'), + ('Elizabeth Forsythe Hailey'), + ('Jim Lovell'), + ('Barbara Bush'), + ('Paul Greengrass'), + ('Clement C. Moore'), + ('Robin (& Anne McCaffrey) Wood'), + ('William Sale Jr'), + ('Thomas T. Noguchi'), + ('Joseph DiMona'), + ('Leslie O''Kane'), + ('W. Fezler'), + ('A. J. Russell'), + ('Don H Polston'), + ('Michael Mitton'), + ('Joel Martin'), + ('Michael Lowerbein'), + ('Mikel Vause'), + ('Peggy Fleming'), + ('Bert Stern'), + ('Helen Eustis'), + ('John Shelby Spong'), + ('Brian Wilson'), + ('Todd Gold'), + ('Mother Teresa'), + ('Deborah Woodworth'), + ('Louis Jambor'), + ('Sansan'), + ('Nicola De Pulford'), + ('Hugh Fleetwood'), + ('Deborah Raney'), + ('Arthur Lyons'), + ('Marcello Truzzi'), + ('Joe Jackson'), + ('William Burke Jr.'), + ('Gerald Durrell'), + ('Ralph Thompson'), + ('Stewart Farrar'), + ('Anthony Louis'), + ('Ruth V. Ward'), + ('Ellen Cooney'), + ('Liz Jarrett'), + ('John Louis Anderson'), + ('Bob Puhala'), + ('Sally S. Wright'), + ('W. Allen Werneken'), + ('Harold S Kushner'), + ('John Jay Osborn Jr'), + ('Christopher Phillips'), + ('Willa Sibert Cather'), + ('Jennifer Lee'), + ('Ann Howard Creel'), + ('Christopher D. Hudson'), + ('Veronica McBride'), + ('Christine Tripp'), + ('Joe Fellegy'), + ('Marie Evans'), + ('Ann Shakeshaft'), + ('Martha Vanceburg'), + ('Mary Murray DeLaney'), + ('Jay Jennings'), + ('Ashleigh Bryce Clayton'), + ('Howard Mohr'), + ('John D. Seymour'), + ('Geoff Dyer'), + ('Hazelden Publishing'), + ('Jesse Ventura'), + ('Douglas Brinkley'), + ('Ming-Dao Deng'), + ('Ben Starnes'), + ('Myron Miller'), + ('Rosemary Daniell'), + ('Steve Gannon'), + ('Valerie W. Wesley'), + ('Kathleen Barret'), + ('Tamela Hancock Murray'), + ('Linda Lyle'), + ('Christine Lynxwil'), + ('Darwin Porter'), + ('Danforth Prince'), + ('Erri De Luca'), + ('Tony Potter'), + ('Mattie J. T. Stepanek'), + ('Anton Myrer'), + ('Richard W. Chilson'), + ('Julian'), + ('Sandra Gulland'), + ('Deborah Chiel'), + ('Jill Shalvis'), + ('Gerald Malcolm Durrell'), + ('Carter'), + ('Matthew Strebe'), + ('Charles Perkins'), + ('Lisa Donald'), + ('Raymond Barnett'), + ('Aleksandr Isaevich Solzhenitsyn'), + ('Thomas P. Whitney'), + ('Michelle M. Sagara'), + ('Bart Davis'), + ('Irving'), + ('Matthew Mead'), + ('Irwin Shaw'), + ('Robert Heinlein'), + ('Stanley Kubrick'), + ('Beryl Markham'), + ('Mary S. Lovell'), + ('Rigoberta Menchú'), + ('Elisabeth Burgos-Debray'), + ('Ann Wrigh'), + ('Anne Raeff'), + ('Marina Picasso'), + ('Zelig Pliskin'), + ('Kate Walbert'), + ('Dina Temple-Raston'), + ('John Dean'), + ('Susannah Heschel'), + ('Mark Epstein'), + ('Betsy Reed'), + ('Katha Pollitt'), + ('Nathaniel Philbrick'), + ('Louis De Bernières'), + ('Stephen Lang'), + ('Isobel Murray'), + ('Library Of America'), + ('Chiang Yee'), + ('James T. Farrell'), + ('Mike Tidwell'), + ('Maureen Dean'), + ('Michael Emmerich'), + ('W. Ralph Eubanks'), + ('John McAfee'), + ('Geoffrey Giuliano'), + ('Brenda Giuliano'), + ('Abbas Milani'), + ('Dawn Turner Trice'), + ('Hortense Calisher'), + ('Daniel Gerroll'), + ('Dawn Powell'), + ('Grace Paley'), + ('Katherine Towler'), + ('Michelle Passoff'), + ('Epicurus'), + ('Dean R. Spitzer Ph.D.'), + ('Patricia Foster'), + ('Pauli Murray'), + ('Milton Steinberg'), + ('G. A. McKevett'), + ('James M. Citrin'), + ('Richard Smith'), + ('Sarah Strohmeyer'), + ('T. L. Gray'), + ('Anna Davis'), + ('Geralyn Dawson'), + ('Scott Gray'), + ('Susan Andersen'), + ('Dennis Boutsikaris'), + ('Linda Markowiak'), + ('Campbell'), + ('Claudia Bishop'), + ('Kathleen Taylor'), + ('Trish Jensen'), + ('Mary Burton'), + ('Rebecca Price Janney'), + ('Kathleen Webb'), + ('Jennifer Drew'), + ('Barbara Dunlop'), + ('Alex Matthews'), + ('Wensley Clarkson'), + ('William Flanagan'), + ('Aphrodite Jones'), + ('James Neff'), + ('Winn'), + ('Maggie Simpson'), + ('Eileen Fulton'), + ('Katherine Deauxville'), + ('Ruth Ryan Langan'), + ('Mariann'), + ('Sandy Steen'), + ('Joan Kilby'), + ('Jane Graves'), + ('Sheryl Lynn'), + ('Jean Barrett'), + ('Ann Voss Peterson'), + ('Kathleen O''Brien'), + ('Patricia Potter'), + ('Coerte V. W. Felske'), + ('Gini Hartzmark'), + ('Iris Ranier Dart'), + ('Darlene Gardner'), + ('Dawn Atkins'), + ('Lori Wilde'), + ('Susan Rogers Cooper'), + ('W. Warren Wagar'), + ('Charles Lilly'), + ('Melissa Lowell'), + ('Mel Gilden'), + ('Darren Star'), + ('K. T. Smith'), + ('Norma Johnston'), + ('L. P. Hartley'), + ('J. Donald Crowley'), + ('L. R. Wright'), + ('Laurie Colwin'), + ('Margot Zemach'), + ('Voltaire'), + ('Mona Simpson'), + ('Donald M. Epstein'), + ('Nathaniel Altman'), + ('George Dawson'), + ('Richard Glaubman'), + ('Suzanne Falter-Barns'), + ('Betty J. Kovacs'), + ('Sifu Judith Sherven'), + ('Jim Sniechowski'), + ('Nancy Dunnan'), + ('Mitchell Pacelle'), + ('Dan Cashman'), + ('Donald E. DeKieffer'), + ('Kate Solisti-Mattelon'), + ('Patrice Mattelon'), + ('Sandra Burr'), + ('Daniel D. Pearlman'), + ('Paula R. Pearlman'), + ('Mark H. McCormack'), + ('Richard A.'), + (' M.D. Evans'), + ('Richard A. Evans M.D.'), + ('Paul E. Morin'), + ('Horst Rechelbacher'), + ('Jennifer Moses'), + ('Anna Johnson'), + ('Abigail Van Buren'), + ('Martin Prechtel'), + ('Mira Kamdar'), + ('Danny Fields'), + ('Kristin Sheldon'), + ('Adrienne Eisen'), + ('Caroline Harvey'), + ('Patricia J. Crane; Ph.D.'), + ('Kenny Rose Butts'), + ('Vladimir Chernozemsky'), + ('Carolyn Porter'), + ('Patti G. Fields'), + ('Adelheid Ohlig'), + ('Engelhard'), + ('D. J. Brown'), + ('Lorena McCourtney'), + ('Meg Tilly'), + ('Bonnie Burnard'), + ('Jerry J. Pollock'), + ('Trudy Baker'), + ('Rachel Jones'), + ('Laura Cunningham'), + ('Richard Hewitt'), + ('Barbara Finn Hewitt'), + ('William Stuart Long'), + ('Barry Yourgrau'), + ('Josef Skvorecky'), + ('Bruce R. Olson'), + ('Norah Robinson Lofts'), + ('Carole L. Glickfeld'), + ('Laurel Doud'), + ('Robert Donald Spector'), + ('Carol Hill'), + ('Natalya Reshetovskaya'), + ('G. S. Fraser'), + ('Arthur Roth'), + ('J. J. Graham'), + ('Anatol Rapoport'), + ('Harry Wu'), + ('George Vecsey'), + ('Ann Radcliffe'), + ('Bonamy Dobrï¿1/2e'), + ('Terry Castle'), + ('Horace Walpole'), + ('Connie Brockway'), + ('Alexandra Blackstone'), + ('Michelle Brandon'), + ('Anna DeForest'), + ('Jessica Douglass'), + ('Patricia Pellicane'), + ('Elizabeth Chadwick'), + ('Kathleen Harrington'), + ('Gwen Cleary'), + ('Donna Stephens'), + ('Dinah McCall'), + ('Jodi Thomas'), + ('Kathleen Kane'), + ('Frederick D. Huebner'), + ('Jacey Ford'), + ('Ana Leigh'), + ('Meryl Sawyer'), + ('Jeanette Baker'), + ('Roxanne St. Claire'), + ('Erickson'), + ('Taylor Smith'), + ('JIM DAVIS'), + ('Bill Pronzini'), + ('Obrien'), + ('Taylor Janelle'), + ('Wilma S. Ross'), + ('S. Black'), + ('Christiane Heggan'), + ('Carson Mccullers'), + ('Gloria Anzaldua'), + ('Mary Ann Mason'), + ('Jessie Lee Brown Foveaux'), + ('Victor Martinez'), + ('James Hilton'), + ('James And Chris Collier'), + ('Paul Laurence Dunbar'), + ('Susie Bright'), + ('Mary Taylor Simeti'), + ('Kenneth Krauss'), + ('Laurie Graff'), + ('Carla Wills-Brandon'), + ('Heidi Julavits'), + ('Shirley Conran'), + ('Michael Scholz-Hansel'), + ('Denise-P Cogny'), + ('Alfred De Musset'), + ('Anne Ubersfeld'), + ('Daniel Mesguich'), + ('Stendhal'), + ('Michel Crouzet'), + ('Jean De La Fontaine'), + ('Rosa Regas'), + ('Pierre Choderlos De Laclos'), + ('Douglas Parmée'), + ('David Co'), + ('Joseph Sheridan Le Fanu'), + ('Juan Marse'), + ('Nick Caistor'), + ('Joan Hickson'), + ('Jean-François Revel'), + ('Guido Waldman'), + ('KESSEL'), + ('Minne'), + ('Claude Croisetière'), + ('France Leduc'), + ('Robert J. Ray'), + ('Bill Roorbach'), + ('Natasha Wimm'), + ('Caroline Sharp'), + ('Josip Novakovich'), + ('Louis D. Rubin'), + ('Sheena Gillespie'), + ('Robert Singleton'), + ('Robert Becker'), + ('H. W. Fowler'), + ('Sir Ernest Gowers'), + ('James N. Frey'), + ('Constance Hale'), + ('Julie Checkoway'), + ('Chicago Editorial Staff'), + ('Rick DeMarinis'), + ('Evan Marshall'), + ('Carol Cartaino'), + ('Sheila Bender'), + ('Carol Bly'), + ('Charles T. Brusaw'), + ('Michael Bugeja'), + ('Alan Lee'), + ('Helen Lane'), + ('Michael Turner'), + ('Chris Ware'), + ('Stanley Wells'), + ('Ga'), + ('Daphne Phelps'), + ('Denis Mack Smith'), + ('Charles Powers'), + ('Christina Pribicevic-Zoric'), + ('Michael Palin'), + ('Charles Palliser'), + ('Peter Nadas'), + ('Adrienne Dixon'), + ('Russell Hoban'), + ('Ismail Kadare'), + ('Danilo Kis'), + ('Gary Krist'), + ('Marc McCutcheon'), + ('Neil; Carlson'), + (' K. C. (editor) - Intro By Clive Bar'), + ('Colleen Dora'), + ('Malcolm'), + ('Grace F. Edwards'), + ('Kathy Acker'), + ('Jonathan Carroll'), + ('Ellen Akins'), + ('Kathleen Alcal'), + ('Antonio Lobo Antunes'), + ('R. F. Laird'), + ('Ronald Wright'), + ('Ron Chernow'), + ('David Hackett Fischer'), + ('Amir D. Aczel'), + ('George Reese'), + ('James Goodwill'), + ('Robert Eckstein'), + ('J. Steven Perry'), + ('O''Reilly Authors'), + ('Sherry Yard'), + ('Judith Kolberg'), + ('Kathleen Nadeau'), + ('Michele Novotni PhD'), + ('Randy Petersen'), + ('Matthew Restall'), + ('Leonard C. Lewin'), + ('Victor Navasky'), + ('Laurence G. Boldt'), + ('Gavin Menzies'), + ('Frederick Taylor'), + ('Patrick K. O''Donnell'), + ('Hugh Thomson'), + ('Robert M. Sapolsky'), + ('Elaine Pagels'), + ('Karen Elizabeth Gordon'), + ('Ilan Stavans'), + ('John Coyne'), + ('Joni Seager'), + ('Daniel G. Amen'), + ('Edward M. Hallowell'), + ('John J. Ratey'), + ('Jonathan Halverstadt'), + ('Daniel Amen'), + ('Richard Bandler'), + ('Peggy Ramundo'), + ('Gabor Mate'), + ('Kathleen G. Nadeu'), + ('Lynn Weiss'), + ('Margaret Weiss'), + ('Lily Trokenberg Hechtman'), + ('Gabrielle'), + ('Sari Solden'), + ('Lisa Lipkin'), + ('Peter Jaksa'), + ('Senator Paul Wellstone'), + ('Sue Boggio'), + ('Mare Pearl'), + ('Scott Westerfeld'), + ('Manuel Komrof'), + ('Ronald Wilks'), + ('Lisa Sandlin'), + ('Constance Urdang'), + ('Linda Jaivin'), + ('Susan Kay'), + ('Christoph Ransmayr'), + ('Jerry Johnston'), + ('Gwen Macsai'), + ('Patricia L Garfield'), + ('Bharati Mukherjee'), + ('Steven Phillips'), + ('Jean Auel'), + ('Nan Mccarthy'), + ('Carol Saline'), + ('Sharon J. Wohlmuth'), + ('Ken Kaiser'), + ('David Fisher'), + ('Zachary Lazar'), + ('Bathroom Readers'' Institute'), + ('Don Wade'), + ('Nancy Lopez'), + ('Editors Of Don''t Sweat Press'), + ('Victoria Houston'), + ('Brenda Brown'), + ('Louis S. Schafer'), + ('Elise Chanowitz'), + ('Walter Gretzky'), + ('Mark Burnett'), + ('Martin Dugard'), + ('Alison Gold'), + ('The Bathroom Readers'' Hysterical Society'), + ('Arlana Anderson-Hale'), + ('Robin Bovey'), + ('Ewa Pluciennik'), + ('Chris C. Fisher'), + ('John Acorn'), + ('Gary Ross'), + ('Peter Greenberg'), + ('Hal Leonard Corp.'), + ('D. V. Glass'), + ('Michael Ledwidge'), + ('Holden Scott'), + ('Eugene Izzi'), + ('Jim Toomey'), + ('Jake Vest'), + ('Michelle Berriedale-Johnson'), + ('Bill Amend'), + ('Keith Faulkner'), + ('Amanda O''Neill'), + ('Bob Keeshan'), + ('Dennis Lee'), + ('Michael Kusugak'), + ('Vladyana Krykorka'), + ('Helene Desputeaux'), + ('William Wegman'), + ('Molly Coxe'), + ('Joan Steiner'), + ('Clement Hurd'), + ('E. Nesbit'), + ('H. R. Millar'), + ('Suzanne Duranceau'), + ('Philippe Sollers'), + ('Christine Nöstlinger'), + ('Claire Le Grand'), + ('Pascale De Bourgoing'), + ('Pearl Buck'), + ('Lygia Fagundes Telles'), + ('Pierre Assouline'), + ('Laure Guille-Bataillon'), + ('Joseph Kessel'), + ('Ian MacEwan'), + ('Kenzaburo Oé'), + ('Marc Mécréant'), + ('She Lao'), + ('Romain Gary'), + ('Jonquet'), + ('Champion/Jeanne'), + ('Jacques Charon'), + ('Claire Etcherelli'), + ('Niall Griffiths'), + ('Alain Defossé'), + ('Victor Del Litto'), + ('Navarre'), + ('Jacques Higelin'), + ('Alexandra Cade'), + ('Nicolas Rey'), + ('Nicolas Bouvier'), + ('Vladimir Vladimirovich Nabokov'), + ('Donald Harper'), + ('Jean-'), + ('Agueev M'), + ('Darren Aronofsky'), + ('Guillaume Apollinaire'), + ('Danièle Roth'), + ('Perros Georges'), + ('Henri Vincenot'), + ('Pierre Corneille'), + ('Alain Couprie'), + ('François Dagognet'), + ('John D. Barow'), + ('Christophe André'), + ('Alina Reyes'), + ('Michel Serres'), + ('Michèle Albaret-Maatsch'), + ('Agota Kristof'), + ('Théophile Gautier'), + ('Choderlos De Laclos'), + ('Jorge Semprun'), + ('Hans-Ulrich Lindken'), + ('Elisabeth Badinter'), + ('Camille Laurens'), + ('Albert Cohen'), + ('Chi Li'), + ('Angel Pino'), + ('Shao Baoqing'), + ('Jean-Marie Gustave Le Clézio'), + ('Breton'), + ('Giorgio Colli'), + ('Mazzino Montinar'), + ('Jean-Philippe Toussaint'), + ('Toshihiko Izutsu'), + ('Jacques Bouveresse'), + ('Reeves Hubert'), + ('Pierre Levy'), + ('Bruno Latour'), + ('Delmas-Marty Mireill'), + ('Jean-Pierre Olié'), + ('J.-D. Nasio'), + ('Sherry Turkle'), + ('Anne Ancelin Schützenberger'), + ('Georges Perros'), + ('Marc Sautet'), + ('Lys Flowerday'), + ('Denis Diderot'), + ('Louis Calaferte'), + ('Marie Darrieussecq'), + ('Jacques Aubert'), + ('Ludmila'), + ('Franck Dan'), + ('Lydie Salvayre'), + ('Michel Granger'), + ('Sophie Rochefor'), + ('Marie De Hennezel'), + ('Alfred Jarry'), + ('Françoise Rey'), + ('Lovecraft'), + ('Charles Juliet'), + ('Michel Quint'), + ('Clement'), + ('François-René De Chateaubriand'), + ('Pirsig'), + ('Annie François'), + ('Alfred Döblin'), + ('Pierre Mac Orlan'), + ('Renée Villoteau (traduit De L''anglai'), + ('Anne Colin Du Terrail'), + ('Michel Onfray'), + ('Lodge'), + ('Shan Sa'), + ('Maurice Rambaud'), + ('Leïla Sebbar'), + ('Alice Ferney'), + ('T Chevalier'), + ('Pierre Péju'), + ('Marie Nimier'), + ('Alain Duchesne'), + ('Thierry Leguay'), + ('Bahiyyih Nakhjavani'), + ('Bober R'), + ('Christine Le Boeuf'), + ('Raymond Jean'), + ('Jean-Pierre Gérault'), + ('Alain Pierrot'), + ('Dominique Bona'), + ('Luc Lang'), + ('Larry Collins'), + ('Maxence Fermine'), + ('Pascal Bonafoux'), + ('Pancol'), + ('Olivier Rolin'), + ('Hubert Mingarelli'), + ('Tonino Bénacquista'), + ('François Cheng'), + ('Danièle Valin'), + ('P. Peju'), + ('Michael-Anne Johns'), + ('Donna; Donna Unangst Unangst'), + ('Bob Feldgus (Design)'), + ('Michael S. Teitelbaum'), + ('Gerald Leinwand'), + ('Ruth F. Boorstin'), + ('Arthur Waldhorn'), + ('Elaine Bergstrom'), + ('Denny Sargent'), + ('Carin Rafferty'), + ('Dina R. Jewell'), + ('Edythe Draper'), + ('Ben Carson M.D.'), + ('Sellers'), + ('Beverly Byrne'), + ('Winifred Elze'), + ('Phil Hale'), + ('Carol Ellis'), + ('S.E. Hinton'), + ('T. S. Rue'), + ('Mary Lou Podlasiak'), + ('Monica Strauss'), + ('Richard Roeper'), + ('Friedrich Kur'), + ('Traugott König'), + ('John Von Neumann'), + ('Dietrich Dörner'), + ('Carl Seelig'), + ('Fritz Se'), + ('John Lloyd'), + ('Sven Böttcher'), + ('Carl Weissner'), + ('Heinrich Mann'), + ('Ian Stewart'), + ('Jack Cohen'), + ('Herbert G. Wells'), + ('Brian W. Aldiss'), + ('Alexander Solschenizyn'), + ('Anna Peturnig'), + ('Ernst Walter'), + ('Pierre S. De Laplace'), + ('R. Von Mises'), + ('Walter M. Miller'), + ('Carl Amery'), + ('Jürgen Saupe'), + ('Rüdiger Schmidt'), + ('Hans Mayer'), + ('Charles Platt'), + ('Bertrand Russell'), + ('Eberhard Bubser'), + ('Claire Malignon'), + ('Wilhelm Weischedel'), + ('Karl Jaspers'), + ('Konstantin Rösch'), + ('J. Kapistram Bott'), + ('Herbert Geisen'), + ('Jean Amery'), + ('David Wells'), + ('Richard Curtis'), + ('Rowan Atkinson'), + ('Victor Serebriakoff'), + ('Michael Walter'), + ('Paul Watzlawick'), + ('Frederick Bodmer'), + ('Hanswilhelm Haefs'), + ('Richard Feynman'), + ('Edward M. Reingold'), + ('Nachum Dershowitz'), + ('Duncan Steel'), + ('Thomas S. Kuhn'), + ('Kurt Simon'), + ('Hermann Vetter'), + ('Jesse Sheidlower'), + ('Friedrich Von Oppeln-Bronikows'), + ('Friedrich Griese'), + ('Gert Postel'), + ('Christoph Neumann'), + ('The Fluid Research Group'), + ('Ulr'), + ('Karl Leopold Von Lichtenfels'), + ('Charles Darwin'), + ('Rudolf Zorn'), + ('Voy Sobon'), + ('Robert Rau'), + ('David Hilbert'), + ('Konfuzius'), + ('R Moritz'), + ('Michael Koseler'), + ('Arkadi Strugatzki'), + ('Boris Strugatzki'), + ('Aljonna Möckel'), + ('Erika Pietraß'), + ('Hermann Buchner'), + ('Barbara Heidkamp'), + ('Hanna Rottensteiner'), + ('Hubert Schumann'), + ('Charlotte Eckert'), + ('Jutta Janke'), + ('Klaus S'), + ('Caesar Rymarowicz'), + ('Irmtraud Zimmermann-Göllheim'), + ('Edda Werfel'), + ('Rüdiger Nehberg'), + ('Mechthild Horn'), + ('David Hume'), + ('Norman Kemp Smith'), + ('Jens Kulenkampff'), + ('Gero Von Randow'), + ('Carl Friedrich Von Weizsäcker'), + ('Günter. Jäckel'), + ('Wolf Schneider'), + ('Luis Murschetz'), + ('Christoph Drösser'), + ('Daniel Jonah Goldhagen'), + ('Klaus Kochmann'), + ('Sunset Publishing Staff'), + ('Howard-Yana Shapiro Ph.D.'), + ('John Harrisson'), + ('Paul Ferrini'), + ('Nk Lawn And Garden'), + ('Mimi Dietrich'), + ('Janet Sobesky'), + ('Creative Publishing International'), + ('Hearst Corp Hous'), + ('Arnold Reinhold'), + ('Margaret Levine You'), + ('Philip Harnden'), + ('Patricia Lanza'), + ('Dominic O''Brien'), + ('Dominic O''Brian'), + ('Craig Lagory'), + ('Jacqueline Winspear'), + ('Pamela Duncan'), + ('Dalai Lama XIV'), + ('Marcia Keegan'), + ('Michele Cassou'), + ('Master Jae Woong Kim'), + ('His Holiness The Dalai Lama'), + ('Cathy Barash'), + ('Robert Baer'), + ('Dorothea Hall'), + ('Ron Caralissen'), + ('Ron Carolissen'), + ('Eleanor Burns'), + ('Jeanne Argent'), + ('Carole Thomerson'), + ('Carolyn Bucha'), + ('Chris Rankin'), + ('Cheryl Smith'), + ('Cheri Huber'), + ('June Shiver'), + ('Gershon Winkler'), + ('Lakme Batya Elior'), + ('Palmer-Pletsch Associates'), + ('Pati Palmer'), + ('Ann Price'), + ('Robert Harold Schuller'), + ('Candace Ord Manroe'), + ('Ortho Books'), + ('Janette Hall'), + ('Carol Henderson'), + ('Karin Sha'), + ('Victoria Magazine'), + ('Jeanine Larmoth'), + ('Tricycle Magazine'), + ('Walpola Rahula'), + ('Esther De Waal'), + ('Sarah Duchess Of York'), + ('Weight Watchers'), + ('Marla Cilley'), + ('Linda Cobb'), + ('Geshe Michael Roach'), + ('William Bridges'), + ('Teri Dunn'), + ('Joel C. Rosenberg'), + ('Dee-Ann LeBlanc'), + ('Michael Smith'), + ('David Flanagan'), + ('Sriram Srinivasan'), + ('Richard Petersen'), + ('William Stallings'), + ('Donald L. Pipkin'), + ('Robyn Miller'), + ('Kay Kenyon'), + ('Cheryl Richardson'), + ('Mund Fuller'), + ('Patenaud'), + ('Rosemarie Lennon'), + ('L. Warren Douglas'), + ('Eli'), + ('Melissa Mathison'), + ('William M. Carney'), + ('James W. Clarke'), + ('Jack Geasland'), + ('Anna Louise Golden'), + ('Jovial Bob Stine'), + ('Mel Brooks'), + ('Thomas Meehan'), + ('Ronny Gr'), + ('Robh Ruppel'), + ('Kam Majd'), + ('M M Kaye'), + ('George O. Barr'), + ('Gregory Bean'), + ('George Bernau'), + ('Dona Vaughn'), + ('Janet Scott Batchler'), + ('Lee Batchler'), + ('Bob'), + ('L. Butcher'), + ('Ken Englade'), + ('Edward Humes'), + ('Janet Parker Beck'), + ('Jean Thesman'), + ('N. Maccullough Weir'), + ('Michael Kaplan'), + ('Richard Owen'), + ('Pyotyr Kurtinski'), + ('Elana Lore'), + ('Alfred Hitchcock'), + ('Eluki Bes Shahar'), + ('Roger Cruz'), + ('Judith Katzir'), + ('Barbara Linner'), + ('Carolyn G. Heilbrun'), + ('Harry Rowohlt'), + ('Maria Benedickt'), + ('Neil Grant'), + ('Lynn Flewelling'), + ('Gary Ruddell'), + ('Steve Kowit'), + ('R. Ewart Oakeshott'), + ('Joseph Gies'), + ('Frances Gies'), + ('Christopher; Payne'), + (' Ronald Dobson'), + ('James F. McCloy'), + ('Ray'), + (' Jr. Miller'), + ('Ray Miller'), + ('Ann Van Wagner Childs'), + ('Allan Cox'), + ('Faye D. Resnick'), + ('Mike Walker'), + ('Pamela Wallace'), + ('Elise Title'), + ('Diane Pershing'), + ('Sally Kemp'), + ('Sebastien Japrisot'), + ('Alan Sheridan'), + ('G. B. (1948- ) Trudeau'), + ('F.M. Houston'), + ('Kieran Crowley'), + ('Alma E. Guinness'), + ('Stephen L. Burns'), + ('Julian F. Thompson'), + ('Phyllis Halldorson'), + ('Peggy Webb'), + ('Heather'), + ('Steve Null'), + ('Lyn Stone'), + ('Robert Newton Peck'), + ('G. H. Stine'), + ('Sara Bliss'), + ('Sheryl Paul'), + ('Marg Stark'), + ('Margaret Anne Doody'), + ('Sturgeon'), + ('J. C. Suares'), + ('Jean-Claude Suares'), + ('Denham Sutcliffe'), + ('Denise Fields'), + ('Alan Fields'), + ('Georgina Gentry'), + ('Susan'), + ('Karen Van Der Zee'), + ('Margaret Mahy'), + ('Jack Dann'), + ('Tom Topor'), + ('Valerie Alderson'), + ('Virginia Farmer'), + ('Patricia Harwin'), + ('Carole Howey'), + ('Deveraux'), + ('Jo Goodman'), + ('Patti O''Shea'), + ('Stephen B. Oates'), + ('John William Ward'), + ('Kimberly Wagner'), + ('Danielle Trent'), + ('Sarah Temple'), + ('Jan Freed'), + ('Hal Lindsey'), + ('Rosanne Kohake'), + ('Kimberley Comeaux'), + ('Lois Greiman'), + ('Eloisa James'), + ('Paul Levine'), + ('Loretta Chase'), + ('Kay Arthur'), + ('Steven P. Shelov'), + ('Robert E. Hannemann'), + ('Lisa Altalida'), + ('Darlene Marie Wilkinson'), + ('Darlene Wilkinson'), + ('Lauryn Silverhardt'), + ('Jason Fruchter'), + ('Zachary Alan Fox'), + ('William P. Wood'), + ('Joan Overfield'), + ('Sybil Leek'), + ('Dan Peterson'), + ('Jack Weatherford'), + ('Lydia Van Andel'), + ('Ineke Van Sijl'), + ('Cherouke Ronkes Age'), + ('Anne Civardi'), + ('James Riordan'), + ('Sted Mays'), + ('Joanna Hines'), + ('Yvonne Baudry'), + ('R D Blackmore'), + ('Prue Theobalds'), + ('Nick Yapp'), + ('Michel Syrett'), + ('Lyn Andrews'), + ('Jamila Gavin'), + ('Paul Langfield'), + ('Angela Wilkes'), + ('Professor Nicholas Abercrombie'), + ('Bryan'), + ('Jimmy Mulville'), + ('Harry Thompson'), + ('Colin Swash'), + ('Asne Seierstad'), + ('Graeme Garden'), + ('Ken Livingstone'), + ('Peter Ustinov'), + ('John Woodforde'), + ('Illustrated By Trevor Aldous'), + ('V. Thomas'), + ('Nigel Foster'), + ('Charles Hemming'), + ('Beverley Piper'), + ('Pamela Zoline'), + ('C.E. Crimmins'), + ('Malcolm Rose'), + ('Alfred W. Munzert'), + ('P. Craig Russell'), + ('John McCrae'), + ('Eric Powe'), + ('Kieron Dwyer'), + ('St'), + ('Robert Ruark'), + ('Phil Jackson'), + ('LINDA LAEL MILLER'), + ('Brendan O''Carroll'), + ('Bash Dibra'), + ('Mary Ann Crenshaw'), + ('Kathleen De Marco'), + ('Sharon Mitchell'), + ('Martha Moody'), + ('Tony Chiu'), + ('David August'), + ('Mary J. Fulton'), + ('Gyo Fujikawa'), + ('Robert Ferrigno'), + ('Don J. Snyder'), + ('Andrew H. Malcolm'), + ('C. E. Poverman'), + ('C. E. Pouerman'), + ('Katherine Tarbox'), + ('David B. Feinberg'), + ('Vissell'), + ('Gary Lundberg'), + ('Joy Lundberg'), + ('Cormac Mccarthy'), + ('Janet Farrington Graham'), + ('Sarah Willis'), + ('Michael Macdonald'), + ('Judal'), + ('Ryo Mizuno'), + ('Setsuko Yoneyama'), + ('Masato Natsumoto'), + ('Fred Kaplan'), + ('Pete Nelson'), + ('Hunter Scott'), + ('William B. Breuer'), + ('Lewis & Clark'), + ('Elliott Coues'), + ('Myung Jin Lee'), + ('Myung-Jin Lee'), + ('Reiji Saiga'), + ('Sora Inoue'), + ('Reiji Saiga Tokyo'), + ('Nobuyuki Anzai'), + ('Gainax'), + ('Ueda Hajime'), + ('Stephanie Sheh'), + ('Jack McDevitt'), + ('E. Gary Gygax'), + ('David Sheff'), + ('Koushun Takami'), + ('Patricia Waddell'), + ('Peter Cashorali'), + ('G Godwin'), + ('Micah Perks'), + ('Bernd Heinrich'), + ('Nicholas Dawidoff'), + ('Liz Rosenberg'), + ('Lynn Pan'), + ('Jayne Anne Phillips'), + ('Paul J. Mcauley'), + ('Emily Eden'), + ('Peter Downey'), + ('Nik Scott'), + ('Dani Shapiro'), + ('Lee Havis'), + ('Dave Wolverton'), + ('Lynne Alpern'), + ('Esther Blumenfeld'), + ('Roxie Kelley'), + ('Shelly Reeves Smith'), + ('Paulette Livers Lam'), + ('Cindy Walker'), + ('Iorwerth Eiddon Stephen Edwards'), + ('Cindy Champnella'), + ('Maurine Watkins'), + ('Thomas H. Pauly'), + ('Shirley Climo'), + ('Rosalind Wiseman'), + ('Donald Crawford'), + ('Rosemary Crawford'), + ('James Luceno'), + ('W. T. Benda'), + ('Ph.D.'), + (' D.D.'), + (' Joseph Murph'), + ('Susan Power'), + ('Karen Essex'), + ('Kate McCafferty'), + ('Bill Chalker'), + ('Elizabeth Lawrence'), + ('Harry Lawrence'), + ('Frankie Schelly'), + ('Judy Carter'), + ('Shirley Verel'), + ('Mary Dugger'), + ('James Baker Hall'), + ('Anthony O''Neill'), + ('Michele Slatalla'), + ('Harold W. Blodgett'), + ('E. Sculley Bradley'), + ('Benjamin Franklin'), + ('Richard A. Wright'), + ('Guy Cardwell'), + ('Merle Good'), + ('Bryce Marshall And Paul Williams'), + ('Adam Smith'), + ('Detection Club'), + ('Randy Salem'), + ('Ann Bannon'), + ('Sam Sifton'), + ('Wayland Drew (Adapter)'), + ('Bob Dolman'), + ('Lisa Rogak'), + ('Michael Scott Rohan'), + ('Julie Anne Peters'), + ('C S Lewis'), + ('The Message International'), + ('Mark Doty'), + ('John Berryman'), + ('Charles Thornbury'), + ('JAMES WHITEHEAD'), + ('Matthew J. Costello'), + ('Susan Wright'), + ('Stephen J. Sansweet'), + ('Jack; Hansen'), + (' Mark Victor Canfield'), + ('Linda Hamalian'), + ('Leo Hamalian'), + ('Laura Lederer'), + ('Aaron Naparstek'), + ('Mark Crispin Miller'), + ('Adams'), + ('Margarethe Cammermeyer'), + ('Yevgeny Yevtushenko'), + ('Tierney McClellan'), + ('Rich Miller'), + ('Cynthia Manson'), + ('Kathleen Halligan'), + ('Kathryn H. Kidd'), + ('Clare Curzon'), + ('Melissa Crandall'), + ('Ralph Schoenstein'), + ('W.R. Thompson'), + ('Joyce Hansen'), + ('Nancy Kress'), + ('Algis Budrys'), + ('Michael B. Friedland'), + ('John Fuhrman'), + ('Karin Wuertz-Schaefer'), + ('Stephanie Bennett'), + ('Follett College Stores'), + ('Stephen Arterburn'), + ('Vonette Bright'), + ('Justin Kaplan'), + ('Jack Fuller'), + ('Pamela Thomas-Graham'), + ('Clifford Irving'), + ('Ian Hamilton'), + ('Paul C. Bragg'), + ('Robert L. Herbert'), + ('Trent Stephens'), + ('Rock Brynner'), + ('Sheldon Kopp'), + ('James Greene'), + ('Louise Gordon'), + ('Louise Gordon'), + ('Margit Malmstrom'), + ('Bruno Lucchesi'), + ('William Bayer'), + ('William C. Klatte'), + ('Curtis Cate'), + ('Auguste Charpentier'), + ('Peter Hillsman Taylor'), + ('A. Jay Abrams'), + ('Margaret Ann Abrams'), + ('Andre Franquin'), + ('Greg'), + ('Jidéhem'), + ('Kim Thompson'), + ('Dr. Chris Andrews'), + ('A. B. Guthrie Jr.'), + ('Michener James'), + ('Malcolm Forbes'), + ('Elizabeth P. Hoffman'), + (' With James Southwood Saunders'), + ('Lee Silber'), + ('Terrence E. Poppa'), + ('Karen Novak'), + ('John A. Curry'), + ('Keith Lumsden'), + ('George Papashvily'), + ('Philip Macdonald'), + ('Carol Fenner'), + ('Floyd Conner'), + ('George Plimpton'), + ('James A. Freeman'), + ('Keven Brown'), + ('Ron Ellison'), + ('T. Miller'), + ('Laura Vaccaro Seeger'), + ('Jill McGown'), + ('Cyrus Cassells'), + ('Ghillie Basan'), + ('Cecile Pineda'), + ('Greg Rucka'), + ('Vivian F. Carlin'), + ('Gertrude Harris'), + ('Heidi Palmer'), + ('Howard M. Fast'), + ('Mary J Latsis/m Henissart'), + ('Alfred J. Kahn'), + ('Roberta Gellis'), + ('Myra Street'), + ('Tom Tiede'), + ('Carol Ann Duffy'), + ('Trisha Rafferty'), + ('Ben Schott'), + ('Nancy Holyoke'), + ('Scott Nash'), + ('DK'), + ('Penn Jillette'), + ('Teller'), + ('Donald J. Trump'), + ('Tony Schwartz'), + ('David Schwartz'), + ('Fred Wostbrock'), + ('Steve Ryan'), + ('David Cohen'), + ('Doris Grumbach'), + ('Douglas Bush'), + ('Bruce Ducker'), + ('Fran Dorf'), + ('Molly Gilford'), + ('Juan Felipe Herrera'), + ('Hsu Hui-chih'), + ('Chang Sheng-Tai'), + ('REMee'), + ('Sheila Sancha'), + ('Charles S. Dane'), + ('William Finnegan'), + ('Kimberlee K. Kovach'), + ('Jerome A Barron'), + ('Steve Propes'), + ('Shelby Hearon'), + ('Lorraine Bodger'), + ('Holly Hughes'), + ('Francis Kalnay'), + ('Julian De Miskey'), + ('Mary Jane Frances Cavolina'), + ('Maureen Anne Teresa Kel'), + ('Karen Kingston'), + ('Henry Beard'), + ('Roy McKie'), + ('Margaret Magdelen'), + ('Carol Travilla'), + ('Helen Hull'), + ('Monica Hoose'), + ('Caroline Naifeh'), + ('Elaine S. Pelletier'), + ('Hugh Miall'), + ('Daniella Carmi'), + ('Moacyr Scliar'), + ('Marlene Sanders'), + ('Marcia Rock'), + ('Janet Bukovinsky Teacher'), + ('Boyd Newman'), + ('Gary Evans'), + ('Danny Biederman'), + ('Kathryn Sullivan'), + ('Barbara Brondolo'), + ('Elinor Burkett'), + ('Pd'), + ('Laurie A. Kanyer'), + ('Cheri Fuller'), + ('Tim Brookes'), + ('Glynne Wickham'), + ('Ken Hutcherson'), + ('Michael A. Thomas'), + ('Martin John Yate'), + ('Martin Yate'), + ('E. Patricia Birsner'), + ('Aaron Roy Even'), + ('Carl Deuker'), + ('Andrew Crumey'), + ('Robert Cohen'), + ('Mo Smith'), + ('Brian Hodge'), + ('John R. Maxim'), + ('Robert Houston'), + ('Sylvia Smith'), + ('Marc Lovell'), + ('Gwen Shamblin'), + ('R. Montanari'), + ('C. C. Medina'), + ('Kamala Markandaya'), + ('Eva Wong'), + ('Axel Madsen'), + ('Quinton Hosford Dixie'), + ('Darryl Pinckney'), + ('Dave Dravecky'), + ('Jan Dravecky'), + ('Steve Halliday'), + ('Thomas K'), + ('Susan G. Berg'), + ('Editors Of Prevention Health Books'), + ('Edward P. Sarafino'), + ('James Fleming'), + ('Matthew Head'), + ('Yoshikawa'), + ('J. G Jeffreys'), + ('Xenophon'), + ('W.H.D. Rouse'), + ('Cedric Read'), + ('Jacky Ross'), + ('John R. Dunleavy'), + ('Donniel S.'), + ('Liz Evans'), + ('Gregory Stock'), + ('Neal Gabler'), + ('Annette Kuhn'), + ('Susannah Radstone'), + ('Art Buchwald'), + ('Lou Mobley'), + ('Franz Lidz'), + ('Sheila Gordon'), + ('Aldo Leopold'), + ('Tom Coffey'), + ('Charles J.'), + ('III Adams'), + ('Vic Braden'), + ('Robert Wool'), + ('C. Whitefeather Daniels'), + ('Patricia Geary'), + ('Michael Downing'), + ('Frederick G. Dillen'), + ('Julie Myerson'), + ('Howard Frank Mosher'), + ('Carol Matas'), + ('Tom Drury'), + ('Lynn Joseph'), + ('Barbara Dimmick'), + ('Karen Bender'), + ('A.G. Mojtabai'), + ('Yasunari Kawabata'), + ('Leah Hager Cohen'), + ('Bernice Carton'), + ('Stobie Piel'), + ('Alice Myers'), + ('Sarah Wight'), + ('Tony Kushner'), + ('H.T. Lowe-Porter'), + ('Alisa Craig'), + ('Tepilit Ole Saitoti'), + ('Carol Beckwith'), + ('John Feltwell'), + ('Philip Lerman'), + ('Stephen-Paul Martin'), + ('Michael R. Bloomberg'), + ('Matthew Winkler'), + ('Anne Frank House'), + ('John Mclaren'), + ('Lois Lowenstein'), + ('Jean Paul Trembl'), + ('Mary Ellen Haight'), + ('Gordon Thomas'), + ('Andy Stack'), + ('Eileen Elias Freeman'), + ('J.C. Pollock'), + ('Michael Arlen'), + ('William Kinsolving'), + ('Michael Innes'), + ('Richard Rodriguez'), + ('Michele R. McPhee'), + ('Jane Kenyon'), + ('Jonathan Morris'), + ('Leonard Tourney'), + ('Bill Sanderson'), + ('David S. Walls'), + ('Melba Pattillo Beals'), + ('Barrie Levy'), + ('Ingo Walter'), + ('Roy Smith'), + ('Philip Evans'), + ('Thomas S. Wurster'), + ('Julius Lester'), + ('Larry With Kingsbury'), + (' Donald; Bear'), + (' Greg; Stirling'), + ('Hesper Anderson'), + ('Claire Daniels'), + ('Piri Thomas'), + ('Claude Brown'), + ('Frank G. Slaughter'), + ('T. J. English'), + ('Zane Grey'), + ('Sidney D. Kirkpatrick'), + ('K.K. Beck'), + ('Eric V Lustbader'), + ('Richard Herley'), + ('Leslie Fiedler'), + ('Edward Albee'), + ('Marc Olden'), + ('Cynthia Ozick'), + ('Francoise Sagan'), + ('Iselin C. Hermann'), + ('G. Forester'), + ('Benita Eisler'), + ('JAMES A. MICHENER'), + ('Boze Hadleigh'), + ('John Dalmas'), + ('Paul Davids'), + ('Hollace Davids'), + ('Fredrik Pohl'), + ('Cathal Poirteir'), + ('Jaime Manrique'), + ('Russell Simmons'), + ('Burton B. Turkus'), + ('Sid Feder'), + ('Lech Walesa'), + ('Linda Francis'), + ('Shawn Stewart Ruff'), + ('Jamie O''Neill'), + ('George Beard'), + ('Harold Hutchins'), + ('Shirley Felts'), + ('Richard Alleman'), + ('Douglas Sadownick'), + ('Marion Gorman'), + ('Perla Meyers'), + ('Kathy Hoshijo'), + ('Jack McDowell'), + ('Kim Mclarin'), + ('Stephen Larsen'), + ('Peter Landesman'), + ('Keith Ridgway'), + ('Randall Kenan'), + ('Michael Schmidt'), + ('George Fields'), + ('Dick Bruna'), + ('Nora Levin'), + ('E. E. Cummings'), + ('D.C. Fontana'), + ('Gene Roddenberry'), + ('Brad Ferguson'), + ('Nathan Archer'), + ('Sandy Schofield'), + ('Kristine Kathryn'), + ('Ira S. Behr'), + ('Robert H. Wolfe'), + ('Ronald D.'), + ('Walter Irwin'), + ('G. B. Love'), + ('Jerri Taylor'), + ('Rene E''ch'), + ('John Gregory Betancourt'), + ('Robert E Vardeman'), + ('Carolyn Clowes'), + ('David Dvorkin'), + ('Daniel Dvorkin'), + ('Michael Piller'), + ('Rick Berman'), + ('Margeret Wander Bonanno'), + ('Stanislaw Fernandes'), + ('Della Van Hise'), + ('Robert Greenberger'), + ('Joseph Glass'), + ('Dana Kramer-Rolls'), + ('Elizabeth Bright'), + ('Chuck Scarborough'), + ('Hongzhi Li'), + ('Catherine Crier'), + ('Hubert Selby Jr.'), + ('Patty Duke'), + ('Gloria Hochman'), + ('Angela Bowie'), + ('Christopher Rowley'), + ('Jim Lusby'), + ('Donna Cohen'), + ('Frank Browning'), + ('Katherine Ashenburg'), + ('Penelope Evans'), + ('Millard Meiss'), + ('John Bemelmans Marciano'), + ('Michael Hammer'), + ('PhD. Riaz Khadem'), + ('PhD. Robert Lorber'), + ('Paul Millman'), + ('Lee Coit'), + ('Bill Gates'), + ('Fran Drescher'), + ('Paul Rudnick'), + ('Ann Hodgman'), + ('Mary Cable'), + ('Donna Marie Williams'), + ('Russell A. Brown'), + ('Louis Untermeyer'), + ('Angela Mackail Thirkell'), + ('Jean Anouilh'), + ('Charles A. Eastman'), + ('E. L. Blumenschein'), + ('Hal Borland'), + ('Jill Krementz'), + ('Joseph M. Stowell'), + ('Michael Sadleir'), + ('Frederick Page'), + ('Ed'), + ('Lindsy Van Gelder'), + ('Pamela Robin Brandt'), + ('Machi Tawara'), + ('Juliet Winters Carpenter'), + ('Margery Morgan'), + ('Marian Wright Edelman'), + ('Gordon Dickson'), + ('Entrepreneur Magazine'), + ('Don Tapscott'), + ('Alex Lowy'), + ('David Ticoll'), + ('Bo Links'), + ('Fred Shoemaker'), + ('Pete Shoemaker'), + ('Leslie Nielson'), + ('Larry Sessions'), + ('Piero Ventura'), + ('Gian Paolo Ceserani'), + ('Michele Maks'), + ('Ideals Publications Inc'), + ('Steve Lovi'), + ('Stephanie St. Pierre'), + ('George Ulrich'), + ('Lissa Rovetch'), + ('Philip Friedman'), + ('Florence: Turner'), + ('Shireen Dodson'), + ('Mike McQuay'), + ('Editions Berlitz S.A'), + ('Harry Kondoleon'), + ('Bradford Telford'), + ('Cecilia Tan'), + ('Jerry L. Patterson'), + ('Marlin S. Potash'), + ('Johann Wyss'), + ('Consuelo Saah Baehr'), + ('Ellen Sue Stern'), + ('David K Reynolds'), + ('Lucinda Lidell'), + ('Kiew Kit Wong'), + ('Ruthie Bolton'), + ('Josephine Humphreys'), + ('Alf Wight Writing As "James Herriott"'), + ('Lesley Holme'), + ('Kim Bartlett'), + ('James Willwerth'), + ('Walter Nugent'), + ('Katherine Applegate'), + ('Diane Wakoski'), + ('Sunset'), + ('Sunset Magazine'), + ('Susan Warton'), + ('Robert Andrews'), + ('Harold Augenbraum'), + ('Margarite Fernandez Olmos'), + ('Richard O. Boyer'), + ('Herbert M. Morais'), + ('Tomas Eloy Martinez'), + ('Celia Stendler Lavatelli'), + ('S.M.H. Collin'), + ('Nicols Fox'), + ('George Tyler Miller'), + ('Judith L. Raiskin'), + ('Laurence Sterne'), + ('Howard Anderson'), + ('Will Blythe'), + ('Scott Elledge'), + ('John-Manuel Andriote'), + ('Andrew E. Falk'), + ('B. Henry Perez'), + ('Ridley PEARSON'), + ('Kevin Keasey'), + ('Robert Hudson'), + ('Kevin Littler'), + ('Ethel Spencer'), + ('Terry Devane'), + ('Mike Godwin'), + ('Christopher Darden'), + ('Dick Lochte'), + ('D.R. Schanker'), + ('Georgia Bockoven'), + ('Libby Gelman-Waxner'), + ('Blanche Wiesen Cook'), + ('Frederick R. Karl'), + ('Time Life Ed'), + ('Andy Andrews'), + ('Charles Borkhuis'), + ('Suzanne Havala'), + ('Suzanne Havala Hobbs'), + ('Ralph Goldman'), + ('Bo Niles'), + ('Veronica McNiff'), + ('Stuart Gilbert'), + ('Jez Butterworth'), + ('Tom Butterworth'), + ('Michael Jecks'), + ('David Thurlo'), + ('Robin Paige'), + ('Jason Theodosakis'), + ('Barry Fox'), + ('Brenda D. Adderly'), + ('M.S.'), + ('Alan Hooker'), + ('Stephen Singular'), + ('Gay Wilson Allen'), + ('Richard Dominick'), + ('Jerry Springer'), + ('Judy Tenuta'), + ('Colin McEnroe'), + ('Denis Johnson'), + ('Bill Dworkin'), + ('Carole Wilbourn'), + ('Gerald Astor'), + ('Leigh Montville'), + ('Donald McCaig'), + ('William Jefferson Clinton'), + ('Kate Braverman'), + ('Neil Bartlett'), + ('Martin H. Padovani'), + ('Alan Lelchuk'), + ('Jeremy Hawthorn'), + ('Darcy Frey'), + ('Darian North'), + ('Paul Negri'), + ('Dorian Dunas'), + ('Tracey E. Dils'), + ('Mimi Van Olsen'), + ('Vince McKewin'), + ('Robert Rodat'), + ('Doris Kearns Goodwin'), + ('Dirk Wierenga'), + ('Kurt Chandler'), + ('Dr. Christopher Green'), + ('Arthur Ashe'), + ('Arnold Rampersad'), + ('Christine Kump-Tibbits'), + ('Victor Caccamise'), + ('Douglas Bo'), + ('Diann Thornley'), + ('Alfred Lord Tennyson'), + ('George Barker'), + ('Anabel Donald'), + ('April Frost'), + ('Adcock'), + ('Stefanie Matteson'), + ('Lia Matera'), + ('Elizabeth Atwood Taylor'), + ('Rotraut Susanne Berner'), + ('Marcel Montecino'), + ('John Pierard'), + ('Gisela Sherman'), + ('Jack'), + (' Ph.D. Heinowitz'), + ('Linda Todd'), + ('Penelope Leach'), + ('Rahima Baldwin Dancy'), + ('Antonia Van Der Meer'), + ('Becky Gold'), + ('Sergio Cuan'), + ('Tom B. Stone'), + ('Lara Bergen'), + ('Mary J. Latis'), + ('M. Henissart'), + ('Sandra Scoppettone'), + ('Ronder Thomas Young'), + ('Robin Bailey'), + ('J.R. Black'), + ('Benrei Huang'), + ('Donna Carlson'), + ('Gerald Gross'), + ('Bernard MacLaverty'), + ('Robert H. Ferrell'), + ('Oscar Handlin'), + ('Lee Harris'), + ('Jeff Moss'), + ('Traci Paige Johnson'), + ('Soo Kyung'), + ('Michael H. Bruno'), + ('Steven Miller'), + ('Jan Werner'), + ('Peter Gay'), + ('Charles E. Silberman'), + ('Peter Niesewand'), + ('Daniel Manus Pinkwater'), + ('Alisa Bauman'), + ('Bridget Doherty'), + ('Julia VanTine'), + ('Prevention Health Bo'), + ('Donald B. Gibson'), + ('Eugene Ionesco'), + ('Donald M. Allen'), + ('J. G. Jeffreys'), + ('Clai'), + ('Paula Jhung'), + ('Elliot Gilbert'), + ('Leonard Jenkin'), + ('Bernard Shaw'), + ('Luisa Vergani'), + ('Robert J. Milch'), + ('Harriet Roth'), + ('J. G. Williams'), + ('Elissa Wald'), + ('Marcia Stevens Sherrill'), + ('Shelley Sykes'), + ('Elliott Banfield'), + ('Warner Wolf'), + ('Patch Adams M.D.'), + ('Maureen Mylander'), + ('Shobha De'), + ('Thomas Mc Guane'), + ('John Glatt'), + ('Baxter Phillips'), + ('Sam Keen'), + ('Sarah Smith'), + ('Barry Hannah'), + ('Gianni Versace'), + ('Lillian Ross'), + ('Julia Phillips'), + ('Norma Barrera'), + ('Peggy Claude-Pierre'), + ('Edward P. Moser'), + ('Annabel Large'), + ('David McKain'), + ('Ouida Sebestyen'), + ('Bill Reynolds'), + ('Charles Busch'), + ('Ellen Rogers'), + ('Vivienne Flesher'), + ('John C Brereton'), + ('Gilbert H. Muller'), + ('Carl E Bain'), + ('Edgar V Roberts'), + ('Richard M Weaver'), + ('Alan Casty'), + ('Laurie G. Kirszner'), + ('Stephen R. Mandell'), + ('Shadwynn'), + ('Karen Fox'), + ('Sabrina Jeffries'), + ('Kare'), + ('Eileen Putman'), + ('Sari Robins'), + ('Bryan Sykes'), + ('Terry Windling'), + ('Nancy Baker'), + ('Alice Rhea'), + ('Jeff & Garrett'), + (' Michael Gelb'), + ('Loretta Lynda Chase'), + ('Adrian Ann Rapp'), + ('E. Adamson Hoebel'), + ('Napoleon A. Chagnon'), + ('James Ward Lee'), + ('Walter L. Hixson'), + ('George McKenna'), + ('Stanley Feingold'), + ('Ralph Peters'), + ('Brittiany A. Koren'), + ('Maggie Osborne'), + ('Jeff Gelb'), + ('Lonn Friend'), + ('Anthony Hyde'), + ('Preston A. Pairo'), + ('Don L. Wulffson'), + ('Clifford E. Trafzer'), + ('Office Book'), + ('Judith Sachs'), + ('George Townshend'), + ('Chandler S Robbins'), + ('Herbert S Zim'), + ('Arth'), + ('Albert H. Morehead'), + ('Geoffrey Mott-Smith'), + ('William A. Niering'), + ('Nancy C. Olmstead'), + ('Susan Rayfiel'), + ('Harville Hendrix'), + ('Allen Frances M.D.'), + ('Dr. Michael B. First'), + ('Nicola Gillies'), + ('Harrison E. Salisbury'), + ('Dennis Greenberger'), + ('Christine Padesky'), + ('Gerry Goldberg'), + ('Eugene Ehrlich'), + ('Nina Hermann Donnelley'), + ('Barry Krakow'), + ('Joseph Neidhart'), + ('Ronald C. Modra'), + ('M. B. Roberts'), + ('Jacob Boas'), + ('Stanley Coren'), + ('Jochen Schwarzer'), + ('Jens Jensen'), + ('Ika Hügel-Marshall'), + ('Don De Lillo'), + ('Uschi Brunner'), + ('Heike Wicklein'), + ('Michaela Link'), + ('Robert Mawson'), + ('Ken McClure'), + ('James Gunn'), + ('Frances Perry'), + ('McIntyre'), + ('Ph.D. Martin Katahn'), + ('Louis Solomon'), + ('Barbara Cartland'), + ('Gerald Posner'), + ('Michael Gurian'), + ('Leslie Allen'), + ('Mark McNulty'), + ('Nelson Algren'), + ('Sylvie Le Bon De'), + ('Michael Macrone'), + ('Reeve Lindbergh'), + ('Sara Hylton'), + ('Diane Redfield Massie'), + ('David A. Redding'), + ('Grace Livingston Hill'), + ('Lloyd John Ogilvie'), + ('Linda Dillow'), + ('Maxie D Dunnam'), + ('Stephen Griffith'), + ('Bill Deckard'), + ('Harold L Bussell'), + ('F Lagard Smith'), + ('Jamie Buckingham'), + ('Bob Phillips'), + ('F. F. Bosworth'), + ('Dennis J. Bennett'), + ('Rita Bennett'), + ('Charles Hunter'), + ('Frances Hunter'), + ('Ron Lee Davis'), + ('Bruce Larson'), + ('James D. Denny'), + ('Tim Hansel'), + ('Gien Karssen'), + ('Edwin Cole'), + ('Darien B. Cooper'), + ('John L Sherrill'), + ('Dr. Joe Aldrich'), + ('Andrew Murray'), + ('Benny Hinn'), + ('J. Oswald Sanders'), + ('Mark Bubeck'), + ('Sheri Curry'), + ('Ann C. Buchanan'), + ('Jane Cairo'), + ('Sandy Petro'), + ('James Montgomery Boice'), + ('Warren Wiersbe'), + ('Dorothy Kunhardt'), + ('James Strong LL.D. S.T.D.'), + ('Cheryl Mendelson'), + ('Harry Bates'), + ('Fiona; Fiona Gilsenan (Editor) Gilsenan'), + ('Websters Merriam'), + ('Peggy Post'), + ('W. E Vine'), + ('Theodore Baker'), + ('Nickolas Slonimsky'), + ('Ann Hibbard'), + ('Bill McCartney'), + ('David L. Diles'), + ('Blank Journal'), + ('Paperblank Book Company'), + ('Monique Truong'), + ('Jim Downing'), + ('Robert L. Saucy'), + ('Nav Press'), + ('William Backus'), + ('Marie Chapian'), + ('Langdon Elsbree'), + ('Gerald P. Mulderig'), + ('Nelson J. Price'), + ('Howard Hendricks'), + ('Jeanne Hendricks'), + ('John Stewart'), + ('Gordon MacDonald'), + ('Gary W. Kuhne'), + ('LeRoy Eims'), + ('Gene Edwards'), + ('Miles J. Stanford'), + ('Al Menconi'), + ('R. Cook'), + ('John R. W. Stott'), + ('Leon J. Wood'), + ('Ronald F. Bridges'), + ('George W Knight'), + ('Lane Adams'), + ('David A DeWitt'), + ('Ruth Tucker'), + ('Jake Barnett'), + ('John M. Perkins'), + ('Chonda Pierce'), + ('Ingrid Sturgis'), + ('Chatelaine'), + ('Joan Mackie'), + ('Bruce Ritter'), + ('Jane Latourette'), + ('Mathews'), + ('Carol Greene'), + ('Virginia Mueller'), + ('Betty Wind'), + ('Good Housekeeping Institute'), + ('Sarah Ferguson Duchess Of York'), + ('Junior League Of Denver'), + ('Blue Mountain Arts'), + ('Bill Martin Jr.'), + ('Pat Brady'), + ('Sharron Bassin'), + ('Helen Bannerman'), + ('Matt Redman'), + ('Norma Smalley'), + ('Gerald Lawson Sittser'), + ('Sharleen Collicott'), + ('Paul Eshleman'), + ('Luci Swindoll'), + ('Ronnie W. Floyd'), + ('Michael Peterson'), + ('William Hasker'), + ('Bruce Reichenbach'), + ('James E. Means'), + ('Charles Caldwell Ryrie'), + ('Arthur Robins'), + ('John D. Woodbridge'), + ('Brother Andrew'), + ('Andrew'), + ('Verne Becker'), + ('Diane M Komp'), + ('Dan B. Allender'), + ('Neil Clark Warren'), + ('Robert Kagan'), + ('John Ortberg'), + ('Ellen Goodman'), + ('Patricia O''Brien'), + ('Dallas Willard'), + ('John Trent'), + ('John Perkins'), + ('Thomas A. Tarrants'), + ('David Wimbish'), + ('Lorraine Pintus'), + ('David Hazard'), + ('Teresa'), + ('Jayne Wexler'), + ('Jane Roberts Wood'), + ('Kathryn Worth'), + ('Dorothy Bayley'), + ('Carolyn Zane'), + ('Karen Ball'), + ('Francena H. Arnold'), + ('Thyra Ferre Bjorn'), + ('Rachael Crabb'), + ('Raeann Hart'), + ('Tremper Longman'), + ('William Smart'), + ('John Telford'), + ('Rory Noland'), + ('Ruth Harms Calkin'), + ('James Dobson'), + ('Ame Mahler Beanland Terry'), + ('Alan PATON'), + ('Sheila Pickles'), + ('Charles W. Schwartz'), + ('Robert Finch'), + ('Sandol Stoddard Warburg'), + ('Jacqueline Chwast'), + ('Arthur D Cashin'), + ('Forbes Magazine'), + ('Robert H. Thomas'), + ('Robert Kimmerle'), + ('James M. Kouzes'), + ('Barry Z. Posner'), + ('Susan Miller'), + ('Fred A.'), + (' Jr. Manske'), + ('Jack Sheehan'), + ('Robert Cameron'), + ('Mike Mason'), + ('Renee Blank'), + ('Sandra Slipp'), + ('Mary Farrell'), + ('Margo Hoff'), + ('Marjorie Winslow'), + ('Erik Blegvad'), + ('Kathryn Perkins'), + ('Gerald M. Knox'), + ('Richard J. Foster'), + ('Mr. David Arp'), + ('Claudia Arp'), + ('Marjorie Palmer'), + ('Chevys Inc Staff'), + ('Mimi Wilson'), + ('Mary Beth Lagerborg'), + ('Clara B. Miller'), + ('Joanna White'), + ('M. Dalton King'), + ('Henry W. Simon'), + ('Betty Crocker'), + ('Norman Rockwell'), + ('Rosa Ross'), + ('Susan Stevens'), + ('Dwight Clough'), + ('Thomas Shaw'), + ('Paula Rinehart'), + ('Marian Wells'), + ('Mr. Greg Johnson'), + ('Dan Savage'), + ('Harry Shaw'), + ('Ida Fink'), + ('Dan Thornberg'), + ('Crescent Dragonwagon'), + ('Allison Uttley'), + ('Shelley Fisher Fishkin'), + ('Vi'), + ('Jacqueline Rose'), + ('Leopold Infeld'), + ('John Barth'), + ('Edward W. Said'), + ('Helene Cixous'), + ('Jerzy N. Kosinski'), + ('Betsy Wing'), + ('Marion Bloem'), + ('Donald Barthelme'), + ('Susan Sellers'), + ('Nigel Pennick'), + ('Marie Williams Cornelio'), + ('Marjorie Buckley Turcotte'), + ('Meredith Johnson'), + ('A. M. Monson'), + ('Daoma Winston'), + ('Jane Aiken Hodge'), + ('June Triglia'), + ('Author Unknown'), + ('Ted Schwarz'), + ('Marilyn Tracy'), + ('Frances Kerns'), + ('Robert Hawks'), + ('Robert Redfield'), + ('John Dickson Carr'), + ('Jacqueline Briskin'), + ('Ken Eulo'), + ('Kevin D. Randle'), + ('Donald R. Schmitt'), + ('Kate McMullen'), + ('Marcia Davenport'), + ('David R. Wilkerson'), + ('Elizabeth Sherril'), + ('Hervey Allen'), + ('Roland J. Green'), + ('Leigh Nichols'), + ('Bill Fawcett'), + ('Marita Golden'), + ('Charles Willeford'), + ('Paul Mann'), + ('Robert Garland'), + ('Shelly Burton'), + ('Greg Farshtey'), + ('Helen Macinnes'), + ('Floyd W. Matson'), + ('Carter Brown'), + ('Jeffrey Lord'), + ('Robert F. Young'), + ('Joseph Hone'), + ('Terry Bradshaw'), + ('Buddy Martin'), + ('James Powell'), + ('G. VALENS'), + ('Christianna Brand'), + ('Dorothy Eden'), + ('Sarah James'), + ('David R. Palmer'), + ('Dorothy Uhnak'), + ('Michael McGarrity'), + ('Gladys Mitchell'), + ('Bill Granger'), + ('Beverly Sommers'), + ('Elleston Trevor'), + ('John G Jones'), + ('Rachel North'), + ('Elizabeth Darrell'), + ('Gene A. Getz'), + ('Roger Price'), + ('Leonard Stern'), + ('John Crowley'), + ('Douglas E. Winter'), + ('Gerald Brom'), + ('Sue M. Sefscik'), + ('Ian Schoenherr'), + ('John Maccabee'), + ('Richard Rohmer'), + ('Brooke Hastings'), + ('Mark Finley'), + ('James B. Johnson'), + ('Tim Hill'), + ('Danielle Hill'), + ('Nicholas Blake'), + ('Martin Sylvester'), + ('Anthony Price'), + ('Paula Christopher'), + ('Blume'), + ('Keith Taylor'), + ('Joel Rosenberg'), + ('Frank Norris'), + ('Eric Solomon'), + ('Harold L. Klawans'), + ('Sue Kaufman'), + ('Robert D. Parrish'), + ('Will Harriss'), + ('W. R. Philbrick'), + ('L. J. Washburn'), + ('E'), + ('Harvey Bernhard'), + ('Joseph Howard'), + ('E. F. Benson'), + ('Zeke Masters'), + ('Rebecca Bond'), + ('Greg Matthews'), + ('Marianne Willman'), + ('Walter Winward'), + ('Arthur Herzog'), + ('Executive Intelligence Review'), + ('Kathy Braidhill'), + ('S.T. Haymon'), + ('William Campbell Douglass'), + ('Cay Van Ash'), + ('Burt Hirschfeld'), + ('Ib Melchior'), + ('Patrick M. McGrady'), + ('Michael Mewshaw'), + ('Jenny Nimmo'), + ('Ed Naha'), + ('J. M. Morgan'), + ('Christopher B. Rowley'), + ('Barbara Faith'), + ('Alan Landsburg'), + ('Valerie Sherwood'), + ('Kathleen Scarth'), + ('Nicola Thorne'), + ('Thea Devine'), + ('June Thomson'), + ('Graham Chester'), + ('Oriana Fallaci'), + ('Ingmar; Blair'), + (' Alan (translator) Bergman'), + ('Anne Tolstoi Wallach'), + ('Brett Halliday'), + ('Evan Innes'), + ('Simon Troy'), + ('Peterson'), + ('Martin R. Stern'), + ('Robert Lieberman'), + ('Frederick Feikema Manfred'), + ('Sharon Pape'), + ('Jon Jackson'), + ('Bruce Lancaster'), + ('Stivers'), + ('Charles R. Anderson'), + ('Vic Crume'), + ('Louis Auchincloss'), + ('Dr. Miriam Stoppard'), + ('Harrison And Rebecca Rinehart (eds) Visscher'), + ('Joyce Trollope'), + ('Adolfo Perez Esquivel'), + ('William A. Norgren'), + ('William G. Rusch'), + ('Charles A. Kroloff'), + ('Richard Ferber'), + ('Richard E. Ecker'), + ('Tim LaHaye; Beverly LaHaye'), + ('Lester C. Thurow'), + ('Joanne Shetler'), + ('Patricia Purvis'), + ('Michel Quoist'), + ('James Hinkle'), + ('Timothy Woodroof'), + ('Tony Sciacca'), + ('Higgins'), + ('Andre Maurois'), + ('Dan Harrison'), + ('Gordon Aeschliman'), + ('Colin Fletcher'), + ('Carol Hart'), + ('Joseph P. Lash'), + ('Franklin D. Roosevelt'), + ('Victor Ostrovsky'), + ('Claire Hoy'), + ('Ed Faulkner'), + ('Glen Hale Bump'), + ('Tom Hyman'), + ('Jr Samuel A. Schreiner'), + ('Richard L. Rubenstein'), + ('Douglas Terman'), + ('Karen Ripley'), + ('Eric Meretzky'), + ('S. Eric Meretzky'), + ('Sally Martin'), + ('Michael Fedo'), + ('Michael M. Thomas'), + ('Katheryn Brett'), + ('Candida Fraze'), + ('Arnaud De Borchgrave'), + ('Robert Moss'), + ('Evelyn A. Crowe'), + ('Sheila Radley'), + ('Norman Spinrad'), + ('Frank R. Westie'), + ('Michael Hammonds'), + ('Madeleine Ker'), + ('Catherine De Hueck Doherty'), + ('Hedrick Smith'), + ('Michael Barak'), + ('Mal Karman'), + ('Dennis Feldman'), + ('John D. Macdonald'), + ('Harold Hill'), + ('Paul McGuire'), + ('Allana Martin'), + ('Patricia; Patricia Wentworth Wentworth'), + ('Martin Page'), + ('A.E.W. Mason'), + ('J. Scaparro'), + ('Barbara Deighton'), + ('William Katz'), + ('Steven Roman'), + ('Ernie Colon'), + ('Dee Stringfellow'), + ('Marian Pope Rettke'), + ('Shirley Lord'), + ('Rita Rainville'), + ('Anne Weale'), + ('Gustaf Lannestock'), + ('Jeffery Archer'), + ('Richard Setlowe'), + ('Leah R. Robinson'), + ('Leah Ruth Robinson'), + ('Marlene Trunnell'), + ('Michael Gerber'), + ('Kathleen Meyer'), + ('Richard T. Burrows'), + ('Joe Dever'), + ('Gary Chalk'), + ('Dafydd Ab Hugh'), + ('Eleanor Robinson'), + ('Marcel Carpentier'), + ('Edward Fischer'), + ('Matthew E. Adams'), + ('Ian Page'), + ('Joseph Rosenbloom'), + ('Sanford Hoffman'), + ('Kris D. Stubna'), + ('Madeleine L''engle'), + ('Dale Bailey'), + ('Brendan DuBois'), + ('David Greene'), + ('Karl Fulves'), + ('Jeanette Gilge'), + ('Wanda McCaddon'), + ('Janet Alfieri'), + ('Ed Colley'), + ('Norman Lewis'), + ('Larry McKeever'), + ('Gimone Hall'), + ('Otfried Preussler'), + ('Tom Steele'), + ('Ralph Helfer'), + ('George Martin'), + ('Evan Kingsbury'), + ('Saralee Rosenberg'), + ('Talbot Mundy'), + ('R. J. Jensen'), + ('Lolah Burford'), + ('Hank Searls'), + ('Warren T. Longtree'), + ('Rudolph Giuliani'), + ('Robbins'), + ('Helen MacInnes'), + ('Frank Yerby'), + ('Virginia Mason Vaughan'), + ('Alden T'), + ('Paul Kozelka'), + ('Philippa Pearce'), + ('J. P. McCarthy'), + ('Jp McCarthy'), + ('Allen Steele'), + ('Clare De Vries'), + ('Elyse Guttenberg'), + ('Ross Macdonald'), + ('Deborah Hill'), + ('Alanna Knight'), + ('Barbara Ferry Johnson'), + ('Vera Cowie'), + ('Dorothy B. Hughes'), + ('Joan Samson'), + ('Robin Moore'), + ('Cameron Hawley'), + ('Cyril Hare'), + ('Martin Caidin'), + ('David Carkeet'), + ('Keith J. Leenhouts'), + ('J. G. Farrell'), + ('William Oscar Johnson'), + ('Barry Cord'), + ('James D. Nichols'), + ('H. T. Willetts'), + ('John De Chancie'), + ('Ellery Queen'), + ('Bob Leuci'), + ('Julie Ellis'), + ('David J. Lake'), + ('Marc Norman'), + ('Todhunter Ballard'), + ('Aleen Malcolm'), + ('Bryan Forbes'), + ('M. Tanner'), + ('Betsy Thornton'), + ('William Grant'), + ('Fletcher Knebel'), + ('Deana James'), + ('Linda Sandifer'), + ('Lawrence Dunning'), + ('Paul Brodeur'), + ('Oakley Hall'), + ('Will Henry'), + ('Marilyn Durham'), + ('Owen'), + ('Mary Pearce'), + ('Bill Schmidt'), + ('Bob Carter'), + ('Bonnie Timmons'), + ('Martin Booth'), + ('Megan Brownley'), + ('Emilie Baker Loring'), + ('Charles Merrill Smith'), + ('Robert Trumbull'), + ('John M. Waters'), + ('Lois Paxton'), + ('Marie De Jourlet'), + ('Hirschfield'), + ('Kjersti H. Baez'), + ('Brauna E. Pouns'), + ('Marion Bradley'), + ('Sean Mcmullen'), + ('Mem Fox'), + ('Aminah Brenda Lynn Robinson'), + ('Maria Angels Julivert'), + ('Angels Julivert'), + ('Marcel Socia'), + ('Theresa Grace'), + ('Grace Mabie'), + ('Janice Kinnealy'), + ('Anthony Heald'), + ('Robert P. McCammon'), + ('Walt W. Becker'), + ('Paula Trachtman'), + ('Kieran Walsh'), + ('Debby Henwood'), + ('Estella Lee Hickman'), + ('Winky Cherry'), + ('Elwyn Hartley Edwards'), + ('Wyatt Blassingame'), + ('Earl Hipp'), + ('Daniel Butler'), + ('Leland Gregory'), + ('Alan Ray'), + ('Stephan Reebs'), + ('Iris Nowell'), + ('Kevin Henkes'), + ('Isobelle Carmody'), + ('Mary Mackey'), + ('Chaz Corzine'), + ('Douglas Livingston'), + ('Susan Kelly'), + ('Wendelin Van Draanen'), + ('Alice Hart'), + ('S.M. Stirling Anne McCaffrey'), + ('Chuck Morton'), + ('Fox Morton'), + ('Claire Messud'), + ('John Avanzini'), + ('Elspeth Campbell Murphy'), + ('Chris Wold Dyrud'), + ('Bob Roper'), + ('David Wilkerson'), + ('Jeannie. Harmon'), + ('John Duckworth'), + ('Dan Pegoda'), + ('Jeffrey Asher Nesbit'), + ('Emily Prager'), + ('Charlie Smith'), + ('Joan Elliot Pickart'), + ('Wendy Rosnau'), + ('Thornton W. Burgess'), + ('Harrison Cady'), + ('Christine Pullein-Thompson'), + ('Roger Lea Macbride'), + ('Patricia Calvert'), + ('Lesley Holmes'), + ('Marie Jacks'), + ('A. E. Parker'), + ('Willy Vandersteen'), + ('Sara Swan Miller'), + ('Disney Book Club'), + ('Miriam Cohen'), + ('Bonnie Shields'), + ('Brenda Mann'), + ('Margaret Sidney'), + ('Roger Hayne'), + ('Albert Payson Terhune'), + ('Sam Savitt'), + ('Friso Henstra'), + ('Jane Hoffman'), + ('Eira Reeves'), + ('Penny Frank'), + ('Barrie Thorpe'), + ('Edith Kunhardt'), + ('Norma Farber'), + ('Elizabeth George Speare'), + ('Doug Henry'), + ('Corinne Gerson'), + ('Roy G. Gesch'), + ('Jim Kjelgaard'), + ('Walt Morey'), + ('Elizabeth Peplow'), + ('Lackey'), + ('Louise Gunther'), + ('James Cummins'), + ('Kathy Mackel'), + ('Joanne Barkan'), + ('Tony Sansevero'), + ('Jay R. Montavon'), + ('Herbert H. Lieberman'), + ('Sean Covey'), + ('Fritz Lieber'), + ('Bill Robison'), + ('George Selden'), + ('Marian Potter'), + ('Northam Anderson'), + ('Joseph Krumgold'), + ('Heinz Zahrnt'), + ('D. E. Harding'), + ('Gene R. Thursby'), + ('Huston Smith'), + ('Perry Rhodan'), + ('Hubert Haensel'), + ('Michael Marrak'), + ('Stefan Andres'), + ('Wilhelm Grosse'), + ('Amelia Atwater-Rhodes'), + ('Yuri Narushima'), + ('Kosuke Fujishima'), + ('Kim Kang Won'), + ('Ai Yazawa'), + ('Sukehiro Tomita'), + ('Nao Yazawa'), + ('Miki Aihara'), + ('Hiro Mashima'), + ('MashimaHiro'), + ('Yozaburo Kanari'), + ('Fumiya Sato'), + ('Masashi Tanaka'), + ('Wataru Yoshizumi'), + ('Kim Kang WAN'), + ('Kan-Won Kim'), + ('Setona Mizushiro'), + ('Sanami Matoh'), + ('Shizuru Seino'), + ('Takehiko Inoue'), + ('Inoue Takehito'), + ('Society For The Study Of Manga Techniques'), + ('Kara Lim'), + ('Lee Chi Hyong'), + ('Nozomi Watase'), + ('JON MERZ'), + ('Aki Katsu'), + ('Ya-Seong Ko'), + ('Shizuru Hayashiya'), + ('Yosuke Kuroda'), + ('Mary Kirchoff'), + ('Adobe Systems Inc'), + ('Adobe Creative Team'), + ('Suzanne Macpherson'), + ('Josephine Addison'), + ('Diana Winkfield'), + ('Run Ishida'), + ('Junko Mizuno'), + ('Isabelle Chin Chang'), + ('Mick Farren'), + ('John Lithgow'), + ('Tavisha Wolfgarth-Simons'), + ('Tavisha Wolfgarth'), + ('Rikki S'), + ('Mark Murphy'), + ('Eiichiro Oda'), + ('In-Soo Ra'), + ('Hitoshi Okuda'), + ('Dame Darcy'), + ('Swain Wolfe'), + ('Hajime Yadate'), + ('Yutaka Nanten'), + ('Susan McClure'), + ('C. Colston Burrell'), + ('Derek Jacobi'), + ('Rhett Ellis'), + ('Elizabeth Cook'), + ('Marvin Kaye'), + ('Birgit Herrmann'), + ('Ulrich Hartmann'), + ('Uta Hege'), + ('Willy Brandt'), + ('Richard Von Weizsäcker'), + ('Celine Bastian'), + ('Heiner Bastian'), + ('Urs Richle'), + ('Volker Michels'), + ('Hans-Joachim Maass'), + ('Andrea Brown'), + ('Heinrich Heine'), + ('Franz Josef Strauß'), + ('Sabine Werz'), + ('Joachim Ringelnatz'), + ('Karl Arnold'), + ('Giorgio Amitrano'), + ('Wolfgang E. Schl'), + ('Irene Rumler'), + ('Michail Bulgakow'), + ('Ralf Schröder'), + ('Thomas Reschke'), + ('Gisela Stege'), + ('Fynn'), + ('Helga Heller-Neumann'), + ('Tina Hohl'), + ('Stefan Heym'), + ('Johannes Mario Simmel'), + ('Sabrina Fox'), + ('Anna Seghers'), + ('Ulrich Plenzdorf'), + ('Rupert Neudeck'), + ('Jorge Volpi'), + ('Susanne Lange'), + ('Giles Smith'), + ('Bjarne Reuter'), + ('Erica Fischer'), + ('Grete Ost'), + ('Eva Rechel-Mertens'), + ('Eva Moldenhauer'), + ('Heinrich Wallfisch'), + ('Walter Maria Guggenheimer'), + ('Doris Gercke'), + ('Joyce C. Oates'), + ('Antonia S. Byatt'), + ('Friedrich Griese (Übers.)'), + ('Thorsten'), + ('Leif Davidsen'), + ('Peter Urban-Halle'), + ('Dr. Christa Seibicke'), + ('Klaus Modick'), + ('Sabine Lohmann'), + ('Hubert Deymann'), + ('Sherry Ashworth'), + ('Michael Cox'), + ('R. A. Gilbert'), + ('Dennis Potter'), + ('Sybil Marshall'), + ('Marcela Serrano'), + ('Alfredo Bryce Echenique'), + ('Dominique Dunne'), + ('Stephen Spender'), + ('Gerry Conlon'), + ('Sender'), + ('Basillo Losada'), + ('Erik Orsenna'), + ('Ken Follet'), + ('Anatoly Rybakov'), + ('Joe Kane'), + ('Fernando De Valenzuela'), + ('Cynthia Freeman'), + ('Hayden Herrera'), + ('Patricia Haugaard'), + ('Arturo Barea'), + ('Ian Kershaw'), + ('Julian Green'), + ('Françoise Sagan'), + ('Adam Parkes'), + ('Elizabeth Gage'), + ('SparkNotes Editors'), + ('Carmen Posadas'), + ('V.S. Naipaul'), + ('Patrick Camiller'), + ('Jorge Luis Borges'), + ('Maruja Torres'), + ('Johan Wolfgang Goethe'), + ('T. J. Reed'), + ('Jens Peters'), + ('Christine Niven'), + ('Garcia Marquez'), + ('Yin-Lien C. Chin'), + ('Yetta S. Center'), + ('Tina Daniell'), + ('Alexs Pate'), + ('E. A. Wallis Budge'), + ('Mallanaga Vatsyayana'), + ('Wendy Doniger'), + ('Sudhir Kakar'), + ('Stephen W. Hawking'), + ('Marilyn Todd'), + ('Olive Etchells'), + ('E. V. Thompson'), + ('Antonio Gala'), + ('Robert Weinberg'), + ('Gosho Aoyama'), + ('Luis Miguel'), + ('Garton'), + ('Jim Loftus'), + ('James Stenstrum'), + ('Raymond Benson'), + ('Gardner R. Dozois'), + ('Sheila Williams'), + ('George Elliott'), + ('Elizabeth; Sherrill'), + (' J Corrie; Sherrill'), + ('Cathleen Medwick'), + ('Clark Blaise'), + ('Gerard Egan'), + ('Michael Patrick Hearn'), + ('Richard Whittingham'), + ('Roger Staubach'), + ('Georges Bernanos'), + ('Pamela Morris'), + ('Hazel Holt'), + ('Joseph Epstein'), + ('Bo Whaley'), + ('Amy Carter'), + ('Ellen R. Sasahara'), + ('Ray Blackston'), + ('Marsha Moyer'); + +INSERT INTO BOOK_AUTHORS (Author_id, Isbn) + VALUES + (1, '0195153448'), + (2, '0195153448'), + (3, '0002005018'), + (4, '0060973129'), + (5, '0374157065'), + (6, '0393045218'), + (7, '0393045218'), + (8, '0399135782'), + (9, '0425176428'), + (10, '0671870432'), + (11, '0671870432'), + (12, '0679425608'), + (13, '074322678X'), + (14, '0771074670'), + (15, '080652121X'), + (16, '0887841740'), + (17, '1552041778'), + (18, '1558746218'), + (19, '1558746218'), + (20, '1558746218'), + (21, '1567407781'), + (22, '1567407781'), + (23, '1575663937'), + (24, '1881320189'), + (25, '0440234743'), + (26, '0452264464'), + (27, '0609804618'), + (28, '0609804618'), + (29, '0609804618'), + (30, '1841721522'), + (31, '1841721522'), + (32, '1841721522'), + (33, '1879384493'), + (34, '0061076031'), + (35, '0439095026'), + (36, '0689821166'), + (37, '0689821166'), + (38, '0689821166'), + (39, '0971880107'), + (40, '0345402871'), + (39, '0345417623'), + (41, '0684823802'), + (42, '0375759778'), + (43, '0425163091'), + (44, '3404921038'), + (45, '3404921038'), + (46, '3404921038'), + (47, '3442353866'), + (48, '3442353866'), + (49, '3442410665'), + (50, '3442446937'), + (51, '3442446937'), + (52, '0375406328'), + (53, '0446310786'), + (54, '0449005615'), + (55, '0060168013'), + (56, '038078243X'), + (57, '055321215X'), + (58, '067176537X'), + (59, '0061099686'), + (60, '0553582909'), + (61, '0671888587'), + (59, '0553582747'), + (62, '0425182908'), + (63, '042518630X'), + (64, '0440223571'), + (65, '0812523873'), + (66, '0842342702'), + (67, '0842342702'), + (24, '0440225701'), + (68, '0060914068'), + (69, '0156047624'), + (70, '0245542957'), + (71, '0380715899'), + (72, '0553280333'), + (73, '0553280333'), + (74, '0553280333'), + (75, '0961769947'), + (76, '0964778319'), + (77, '0671623249'), + (78, '0679810307'), + (77, '0679865691'), + (79, '2070423204'), + (80, '0345260317'), + (81, '0394743741'), + (82, '042511774X'), + (7, '0804106304'), + (83, '1853262404'), + (84, '0312970242'), + (85, '0312970242'), + (86, '1853260053'), + (87, '1414035004'), + (88, '1414035004'), + (89, '0060938412'), + (90, '0140067477'), + (53, '0345465083'), + (91, '0451625889'), + (92, '1558531025'), + (93, '0441783589'), + (94, '0394895894'), + (95, '1569871213'), + (96, '0375410538'), + (97, '0966986105'), + (98, '087113375X'), + (99, '0340767936'), + (100, '0743403843'), + (101, '0060930365'), + (102, '0060177586'), + (103, '0071416331'), + (104, '0071416331'), + (105, '0375509038'), + (106, '0553062042'), + (107, '0316769487'), + (108, '0679429220'), + (60, '0671867156'), + (109, '0312252617'), + (110, '0312261594'), + (111, '0316748641'), + (112, '0316973742'), + (113, '0385235941'), + (114, '0446677450'), + (115, '0446677450'), + (116, '0451166892'), + (117, '0553347594'), + (118, '0671621009'), + (119, '067976397X'), + (120, '0684822733'), + (121, '0684822733'), + (122, '0786868716'), + (123, '0671864769'), + (124, '0671864769'), + (125, '0671521519'), + (126, '0440222303'), + (127, '0440222303'), + (128, '0312953453'), + (129, '0446608653'), + (130, '0446612545'), + (131, '0446612545'), + (128, '0446612618'), + (132, '0451208080'), + (133, '0553584383'), + (134, '0671027360'), + (135, '0812575954'), + (136, '0316735736'), + (137, '0743439740'), + (138, '0345372700'), + (139, '0380619458'), + (137, '0446325805'), + (140, '0451406923'), + (141, '0451406923'), + (142, '0451406923'), + (143, '0671042858'), + (144, '0743249992'), + (145, '0840734530'), + (146, '0425184226'), + (147, '0375500766'), + (148, '9724119378'), + (149, '0451205197'), + (150, '0060929790'), + (151, '0060976845'), + (152, '0061099325'), + (60, '0671004573'), + (153, '0446601640'), + (154, '0330484516'), + (155, '038572179X'), + (156, '0393020371'), + (157, '1900850303'), + (158, '1903019699'), + (159, '0345425294'), + (160, '0451410319'), + (161, '0553583468'), + (162, '0380778556'), + (163, '0451525221'), + (164, '0451525221'), + (165, '0002740230'), + (166, '0385336772'), + (167, '0440949424'), + (168, '0505524996'), + (169, '0140252800'), + (170, '0451452755'), + (171, '0812575482'), + (152, '044651747X'), + (172, '0060801263'), + (173, '0061030147'), + (174, '0061030147'), + (175, '0140250964'), + (176, '0446527165'), + (177, '0671461494'), + (178, '0385337639'), + (179, '039575514X'), + (180, '0451206673'), + (181, '0330332775'), + (56, '0486284735'), + (182, '0486284735'), + (183, '0671021745'), + (182, '0671047612'), + (182, '0671504282'), + (184, '0399138684'), + (185, '0785263292'), + (186, '0785263292'), + (187, '0830714014'), + (188, '0345354931'), + (189, '0553278223'), + (190, '3150000335'), + (191, '3150000335'), + (188, '3257203659'), + (192, '3257203659'), + (193, '3257207522'), + (194, '3257207522'), + (188, '3257208626'), + (188, '3257208634'), + (195, '3257208634'), + (188, '3257208669'), + (196, '3257208669'), + (188, '3257210450'), + (197, '3257210450'), + (188, '3257212054'), + (188, '3257212429'), + (188, '3257214154'), + (198, '3257214154'), + (199, '3257214154'), + (188, '3257216416'), + (200, '3257233051'), + (201, '3257233051'), + (202, '342311360X'), + (203, '3423116714'), + (204, '3423241489'), + (205, '3426605686'), + (206, '3426605686'), + (207, '3453212150'), + (208, '3462021095'), + (209, '3492045642'), + (210, '3492045642'), + (211, '3492045642'), + (212, '3498020862'), + (213, '3498020862'), + (214, '3499110695'), + (215, '3499110695'), + (216, '3499110695'), + (217, '3499110695'), + (213, '3499151502'), + (214, '3499151502'), + (215, '3499151502'), + (218, '3518111000'), + (193, '3518111000'), + (219, '3548254268'), + (206, '3570300099'), + (220, '3570300099'), + (221, '3596292646'), + (222, '0060977493'), + (223, '0312872682'), + (129, '0316602906'), + (129, '0316693006'), + (49, '0345311396'), + (39, '0345378490'), + (49, '0345404793'), + (224, '0345433173'), + (225, '0375400117'), + (226, '0375705856'), + (227, '0380717018'), + (228, '0380718332'), + (229, '0380754509'), + (230, '0380754509'), + (231, '038076654X'), + (230, '0380807866'), + (232, '0385316895'), + (24, '0385497466'), + (24, '0385508042'), + (233, '0385509456'), + (24, '0385511612'), + (234, '0385730586'), + (235, '0425164403'), + (236, '0440234964'), + (129, '0446605484'), + (237, '0446610399'), + (238, '0449006522'), + (223, '0449911004'), + (142, '0451162072'), + (239, '0451186648'), + (240, '0452282152'), + (241, '051513290X'), + (242, '0553580388'), + (243, '0590598848'), + (244, '0590629719'), + (61, '0671023616'), + (133, '0671027387'), + (245, '0684848783'), + (133, '0743486226'), + (246, '0786863986'), + (247, '0803251718'), + (248, '0804117934'), + (249, '140003180X'), + (17, '155874262X'), + (18, '155874262X'), + (250, '155874262X'), + (251, '0060987103'), + (252, '0151008116'), + (253, '0375704965'), + (254, '0525947647'), + (255, '0804111359'), + (17, '1558744150'), + (18, '1558744150'), + (19, '1558744150'), + (256, '0435272683'), + (135, '0316782505'), + (257, '006102063X'), + (256, '0060013117'), + (256, '0060199563'), + (258, '006052779X'), + (259, '006052779X'), + (260, '0060563079'), + (261, '0060809027'), + (256, '0061040967'), + (262, '0061040967'), + (256, '0061050474'), + (256, '0061052515'), + (256, '0061052523'), + (263, '0064472264'), + (264, '0140620664'), + (265, '0312148267'), + (266, '0312156960'), + (267, '0312890044'), + (268, '034543191X'), + (269, '034543191X'), + (270, '0373836023'), + (271, '0375751513'), + (272, '0375751513'), + (273, '0375801677'), + (274, '0375801677'), + (275, '0375814248'), + (276, '0375814248'), + (93, '0375823352'), + (93, '037582345X'), + (93, '0375823468'), + (206, '0380730448'), + (188, '0380973839'), + (277, '0385327773'), + (278, '0394586239'), + (279, '0439510112'), + (280, '0440241413'), + (281, '0451409256'), + (282, '0451523415'), + (56, '0451526279'), + (283, '0451526279'), + (284, '0451526341'), + (285, '0486415864'), + (286, '0553280589'), + (54, '0571197639'), + (287, '0670035262'), + (288, '0670035262'), + (289, '0670035262'), + (290, '0670035262'), + (284, '0679423079'), + (277, '0679751343'), + (291, '0684833395'), + (292, '0743245024'), + (293, '0749748001'), + (292, '0749748028'), + (268, '0963094424'), + (294, '1401201172'), + (295, '1401201172'), + (296, '1401201172'), + (268, '1563892278'), + (297, '1563892278'), + (298, '1563892278'), + (299, '1563892278'), + (293, '1563898586'), + (268, '156971620X'), + (300, '156971620X'), + (301, '1592571301'), + (302, '0374270325'), + (303, '0375719180'), + (304, '0440235502'), + (24, '044023722X'), + (305, '1573225487'), + (85, '1853260673'), + (306, '0060977477'), + (307, '0345391691'), + (308, '0520011171'), + (309, '0520011171'), + (310, '0553278746'), + (311, '0670856045'), + (312, '0670856045'), + (313, '0872200760'), + (314, '0872200760'), + (315, '0872200760'), + (316, '0937858994'), + (317, '0937858994'), + (318, '0937858994'), + (319, '0671649949'), + (320, '0590431110'), + (321, '0064470113'), + (322, '0553571486'), + (323, '0972044205'), + (324, '0312963009'), + (325, '0345430476'), + (326, '0345435869'), + (327, '0345435869'), + (328, '0380728729'), + (329, '038081840X'), + (330, '038081840X'), + (331, '0449912302'), + (332, '055329198X'), + (333, '0671018930'), + (334, '0812541642'), + (335, '0312988699'), + (336, '0486282112'), + (181, '0486282112'), + (337, '0670815373'), + (338, '0385313748'), + (339, '1575843366'), + (61, '0684193957'), + (176, '0345371984'), + (340, '0345371984'), + (341, '0380730138'), + (342, '1573228737'), + (343, '9681500555'), + (344, '0380711109'), + (345, '0452283914'), + (145, '0425120279'), + (346, '067153484X'), + (347, '0380728273'), + (348, '0446606197'), + (349, '0771076002'), + (350, '0771076002'), + (351, '0771088191'), + (352, '1559703237'), + (353, '3596214629'), + (354, '3596214629'), + (355, '0062770500'), + (356, '0671847546'), + (357, '0060188731'), + (274, '0140374248'), + (358, '0140374248'), + (359, '0142001740'), + (360, '0142001740'), + (361, '0195086295'), + (362, '0195086295'), + (363, '0195086295'), + (133, '0312995423'), + (364, '0380704587'), + (365, '0380815923'), + (24, '0385416342'), + (366, '0385418493'), + (24, '038542471X'), + (367, '0425098109'), + (368, '0449005410'), + (369, '0449202631'), + (368, '0449207544'), + (370, '0515128554'), + (176, '0517577402'), + (371, '0590450875'), + (372, '0590450875'), + (373, '0590450875'), + (370, '0590481371'), + (371, '0590481371'), + (374, '067103619X'), + (375, '0684177730'), + (376, '0684180200'), + (373, '0743411269'), + (377, '0743470389'), + (378, '076218857X'), + (379, '0767905938'), + (380, '0800706544'), + (381, '0801096677'), + (382, '0849953014'), + (383, '0891091963'), + (384, '0915811537'), + (385, '0927545373'), + (386, '1575024179'), + (387, '1880185008'), + (388, '0140345809'), + (389, '0156528207'), + (390, '0380012863'), + (391, '0451154916'), + (392, '0785815147'), + (393, '0875421288'), + (394, '1567184294'), + (395, '156718796X'), + (396, '1862047626'), + (397, '0020437501'), + (396, '0020437501'), + (398, '0198320264'), + (399, '0198320264'), + (400, '0373196989'), + (401, '0373245580'), + (402, '0451527747'), + (403, '0451527747'), + (60, '0671867113'), + (404, '0812504208'), + (150, '0060173289'), + (405, '0060973897'), + (406, '0060973897'), + (305, '006101351X'), + (407, '0140104682'), + (408, '0312143370'), + (409, '0316666343'), + (410, '039456894X'), + (411, '0440224675'), + (412, '0449002632'), + (413, '0449213773'), + (414, '0452279690'), + (412, '0553569058'), + (415, '0679427430'), + (416, '0679725393'), + (417, '0802114369'), + (418, '0803233019'), + (419, '0803233019'), + (420, '0819154946'), + (421, '0897322339'), + (422, '0940322978'), + (423, '0940322978'), + (424, '1573225126'), + (425, '1579651658'), + (426, '1878424319'), + (427, '0600586898'), + (428, '1853260622'), + (429, '1857938011'), + (430, '0060804157'), + (431, '0140382658'), + (432, '0152012966'), + (433, '0312283784'), + (187, '0345297709'), + (187, '0345313097'), + (434, '0345335465'), + (435, '0345416848'), + (436, '0385333404'), + (24, '044021145X'), + (437, '0449212084'), + (438, '0553582682'), + (439, '0590947257'), + (440, '0590947257'), + (441, '074345829X'), + (442, '074345829X'), + (443, '0786913878'), + (444, '0801491827'), + (445, '0816729913'), + (446, '0843136685'), + (447, '0843136685'), + (448, '0843136685'), + (449, '0866119531'), + (450, '0866119531'), + (451, '0866119531'), + (284, '0866119566'), + (452, '0866119566'), + (453, '0870441663'), + (454, '0870441663'), + (455, '1561561428'), + (456, '1561561428'), + (457, '1561561428'), + (162, '0553210092'), + (433, '0553258524'), + (336, '0688163726'), + (458, '1569471096'), + (459, '055358099X'), + (408, '0316168815'), + (311, '014023828X'), + (460, '0316314927'), + (351, '0345424719'), + (461, '0375414746'), + (462, '0375726403'), + (412, '0385503857'), + (463, '0425156842'), + (464, '0440226104'), + (465, '0452277337'), + (59, '0553802488'), + (466, '0671021001'), + (467, '0767903579'), + (468, '0805063897'), + (469, '0679777431'), + (470, '0553285343'), + (471, '0486285529'), + (179, '0671002481'), + (472, '0812523385'), + (473, '0895774666'), + (474, '0020199090'), + (475, '0385495145'), + (476, '0679733825'), + (65, '0842329129'), + (66, '0842329129'), + (477, '0345451260'), + (478, '0740700235'), + (479, '0380973545'), + (480, '0380973545'), + (481, '0393321576'), + (142, '0743424425'), + (482, '0786868015'), + (483, '0786868015'), + (484, '0786868015'), + (485, '0446610178'), + (486, '0684854953'), + (487, '0684854953'), + (60, '0743229878'), + (488, '0380617625'), + (489, '0380732335'), + (490, '0385337132'), + (491, '0440235057'), + (490, '0445402040'), + (492, '0618119760'), + (493, '0871138646'), + (494, '0026329859'), + (495, '0060621257'), + (54, '0060915544'), + (54, '0060917016'), + (496, '0060925000'), + (285, '0060932759'), + (151, '0061000280'), + (497, '0192815318'), + (498, '0192815318'), + (499, '0312195516'), + (500, '0380792664'), + (501, '0393048977'), + (183, '0399137807'), + (61, '039914739X'), + (63, '0451203046'), + (502, '0451410556'), + (503, '0451523318'), + (504, '0486281965'), + (505, '0486292940'), + (506, '051762639X'), + (415, '0684824442'), + (507, '0743458303'), + (508, '081296666X'), + (509, '0819215635'), + (510, '0819215635'), + (511, '0819215635'), + (512, '0880011025'), + (513, '1561011525'), + (514, '1877727083'), + (515, '1877727083'), + (516, '0486206173'), + (517, '0486206173'), + (518, '0312278586'), + (519, '0312278586'), + (520, '0140370900'), + (521, '0674511255'), + (522, '0030096189'), + (523, '0030096189'), + (524, '0312965745'), + (525, '0345374657'), + (526, '0395710901'), + (527, '080521061X'), + (528, '0823032612'), + (529, '0679310002'), + (530, '0312288115'), + (531, '0316171107'), + (532, '0380710218'), + (533, '0515118656'), + (534, '0553289063'), + (535, '0671000306'), + (60, '0671673688'), + (536, '1561672033'), + (537, '0425178242'), + (538, '0425178242'), + (539, '0618173870'), + (251, '0156027321'), + (540, '0375403582'), + (541, '0385721420'), + (542, '0451202341'), + (543, '0743418190'), + (544, '0385335407'), + (545, '0965746828'), + (546, '0060923245'), + (547, '0486272664'), + (548, '0786015276'), + (549, '0786015276'), + (550, '0060913509'), + (369, '0553272837'), + (551, '0440225078'), + (552, '0312145543'), + (59, '0425181111'), + (553, '0380732688'), + (554, '0140286276'), + (369, '0373484100'), + (367, '0449907481'), + (555, '0553107305'), + (556, '080213825X'), + (369, '0515127833'), + (557, '0345441133'), + (558, '0515134279'), + (559, '0945586051'), + (24, '0385490992'), + (24, '0385424728'), + (560, '0312980388'), + (561, '0590419625'), + (562, '0590419625'), + (24, '0385472951'), + (563, '0451195663'), + (564, '0425182878'), + (565, '0425182878'), + (566, '0553564528'), + (565, '055356451X'), + (60, '0743412621'), + (567, '0849943728'), + (568, '0849943450'), + (566, '084994371X'), + (569, '0590406019'), + (570, '0020442408'), + (571, '0553225987'), + (572, '042517736X'), + (136, '0671868713'), + (573, '038549825X'), + (574, '0553202294'), + (575, '0345313860'), + (574, '0345369947'), + (576, '067170124X'), + (577, '0345353625'), + (578, '0308102282'), + (579, '006017143X'), + (580, '0805056491'), + (581, '0679401377'), + (582, '1562827049'), + (583, '1562827049'), + (543, '0385306032'), + (584, '0816152446'), + (585, '0821772953'), + (586, '0345379454'), + (160, '0553576925'), + (60, '0743206053'), + (587, '0688169678'), + (588, '0439319552'), + (589, '0439319552'), + (590, '0590870157'), + (591, '0590870157'), + (592, '0307001164'), + (593, '0307001164'), + (594, '0307001164'), + (595, '0307001164'), + (596, '0440441501'), + (597, '0590687301'), + (598, '0439061644'), + (599, '0439569842'), + (588, '0439569842'), + (600, '0307118703'), + (601, '0590418858'), + (602, '030720152X'), + (603, '0816728739'), + (604, '0816728739'), + (605, '0816728739'), + (606, '0865050880'), + (607, '0812519655'), + (606, '0812524853'), + (608, '0449211770'), + (609, '193072229X'), + (606, '0812521129'), + (610, '0345251733'), + (611, '1400077826'), + (612, '0312995431'), + (611, '0312312628'), + (613, '0446394521'), + (614, '0590021117'), + (244, '068484267X'), + (615, '068484267X'), + (616, '068484267X'), + (617, '0553578693'), + (596, '0380709260'), + (618, '0380709260'), + (619, '0807565288'), + (611, '0312986769'), + (93, '0345413377'), + (93, '0345413369'), + (93, '0679893105'), + (620, '0061096091'), + (585, '0345369068'), + (585, '0451184718'), + (607, '0449209121'), + (621, '0060938455'), + (622, '080411952X'), + (623, '0060575808'), + (622, '0060558865'), + (624, '0767912918'), + (625, '0553298860'), + (626, '0385335679'), + (63, '0440122090'), + (627, '0671525832'), + (188, '0553279572'), + (628, '0061009059'), + (629, '0060930187'), + (630, '0516076272'), + (49, '0679450432'), + (631, '0821775863'), + (630, '0821770209'), + (632, '0670855758'), + (633, '0553562819'), + (129, '0446364193'), + (634, '0446519138'), + (635, '0425179672'), + (636, '0061042943'), + (637, '0399144463'), + (638, '0399144463'), + (154, '0965404560'), + (639, '006015781X'), + (640, '006015781X'), + (641, '0060930705'), + (642, '0312206763'), + (643, '0316116025'), + (644, '0156013967'), + (645, '0385314019'), + (646, '0743444167'), + (647, '0618231617'), + (648, '1567920047'), + (649, '0811203220'), + (650, '1573229148'), + (651, '0787955671'), + (652, '0787955671'), + (653, '0787955671'), + (654, '0425174484'), + (655, '0385496907'), + (656, '0446523992'), + (657, '0446523992'), + (658, '0446523992'), + (659, '0140185216'), + (660, '0140185216'), + (661, '0684717255'), + (662, '0684717255'), + (663, '0486272745'), + (664, '0486272745'), + (665, '0062507249'), + (666, '0684801221'), + (667, '1576737357'), + (668, '0060083298'), + (669, '0446672211'), + (670, '0140293248'), + (671, '0807070718'), + (672, '0807070718'), + (673, '0743213831'), + (674, '0345305477'), + (675, '0061080519'), + (676, '0142000205'), + (677, '0316735027'), + (678, '193156146X'), + (135, '015600710X'), + (679, '0062517856'), + (51, '0679767789'), + (680, '0449911683'), + (681, '0425169626'), + (679, '0449207757'), + (679, '0449245691'), + (682, '0140029400'), + (681, '0140021566'), + (683, '2253004022'), + (684, '2253004022'), + (685, '2253005274'), + (686, '2253005274'), + (687, '225300670X'), + (688, '225300670X'), + (689, '225300670X'), + (690, '2266084372'), + (691, '2070362388'), + (692, '2266029460'), + (691, '2266029460'), + (693, '2253007102'), + (694, '2253007102'), + (695, '2253007102'), + (188, '2070417743'), + (696, '2070417743'), + (697, '2070417743'), + (698, '2266033689'), + (699, '2070384349'), + (700, '2070384349'), + (682, '207053880X'), + (701, '207053880X'), + (702, '2070334368'), + (703, '2290314951'), + (704, '229000510X'), + (705, '3492207006'), + (706, '3499177757'), + (707, '3499177757'), + (708, '3889774016'), + (709, '3502670005'), + (710, '0905762487'), + (707, '3499222604'), + (711, '3746670055'), + (56, '0140620427'), + (712, '3596144434'), + (221, '3442724686'), + (45, '3442724686'), + (133, '0385504209'), + (236, '0446525502'), + (713, '0385500769'), + (714, '0399147012'), + (180, '0670892963'), + (340, '0688180639'), + (135, '0316789089'), + (715, '0451197275'), + (330, '0425184129'), + (716, '0151001006'), + (24, '0385505833'), + (717, '0679442790'), + (718, '0679442790'), + (719, '0525943862'), + (556, '0609605925'), + (720, '0060191929'), + (60, '0743206045'), + (373, '0684864843'), + (721, '0684867818'), + (722, '0743406176'), + (723, '0380978539'), + (351, '0679603352'), + (724, '0679410430'), + (236, '0446523569'), + (725, '0671042556'), + (49, '0679450440'), + (726, '0140107649'), + (727, '0609606727'), + (236, '0446527793'), + (236, '0446531332'), + (728, '1570717257'), + (729, '0060192631'), + (730, '0385420161'), + (731, '0385420161'), + (732, '0385420161'), + (733, '0345339711'), + (734, '052594463X'), + (305, '039304016X'), + (369, '0399147128'), + (735, '0670031046'), + (736, '0394574745'), + (129, '0316969443'), + (60, '0743230051'), + (737, '0743230051'), + (129, '0316693200'), + (738, '0316693200'), + (720, '0684868911'), + (739, '0842336214'), + (740, '0399148582'), + (741, '0399148582'), + (373, '0684864320'), + (718, '0525944834'), + (742, '0345428900'), + (743, '0451176812'), + (138, '0671525794'), + (368, '0718144538'), + (744, '0446602086'), + (745, '0394551427'), + (746, '0394551427'), + (747, '0064407667'), + (748, '0064407667'), + (749, '0007100221'), + (750, '2253148539'), + (751, '2253148539'), + (149, '2253043974'), + (752, '2253043974'), + (753, '2020315491'), + (754, '0747549923'), + (755, '0743462335'), + (756, '0140253580'), + (757, '0947782141'), + (758, '057120354X'), + (759, '0349101779'), + (754, '0743222229'), + (760, '185479549X'), + (761, '0140292918'), + (762, '1854795554'), + (763, '1858813093'), + (764, '2871290911'), + (765, '2871290911'), + (766, '0198604025'), + (767, '1842151053'), + (768, '2253063339'), + (769, '1860198597'), + (770, '0767908473'), + (771, '0767908473'), + (772, '1842040154'), + (773, '0140622063'), + (757, '0571209521'), + (749, '2264009306'), + (774, '1841952931'), + (775, '0890877564'), + (776, '0890877564'), + (777, '1405200677'), + (778, '0416196772'), + (779, '0747538069'), + (780, '0375501347'), + (545, '0060927240'), + (781, '0316776963'), + (782, '156341029X'), + (268, '0060934719'), + (783, '1886383421'), + (784, '1888451084'), + (785, '0451450256'), + (786, '1555835953'), + (787, '0395877563'), + (788, '0962893862'), + (789, '1555834531'), + (790, '0393318435'), + (791, '0889740828'), + (413, '1563410443'), + (792, '1563899388'), + (793, '1563411148'), + (794, '0553579681'), + (793, '0553579673'), + (59, '0451181379'), + (795, '0786889160'), + (796, '0345370740'), + (797, '0553574175'), + (796, '0553574167'), + (796, '0553574159'), + (798, '0312287240'), + (799, '0679801146'), + (800, '0446300101'), + (801, '0821750410'), + (59, '0425142485'), + (802, '0451456548'), + (803, '0060006048'), + (804, '0312906552'), + (805, '0312906552'), + (806, '0440117291'), + (807, '0425049981'), + (808, '0374386676'), + (376, '0786886463'), + (809, '0345395379'), + (170, '0380788497'), + (810, '0307215342'), + (807, '0374343381'), + (811, '0345403339'), + (812, '0440226694'), + (811, '0440219604'), + (813, '0767903285'), + (814, '0345429176'), + (410, '038529929X'), + (815, '1573229571'), + (176, '0345418778'), + (816, '0517201658'), + (142, '0743211383'), + (337, '039914370X'), + (817, '1884777805'), + (818, '0312977905'), + (819, '0812521331'), + (820, '0812521331'), + (59, '0451205421'), + (821, '0894342789'), + (822, '0440218535'), + (823, '0449207595'), + (824, '0670844594'), + (825, '039457513X'), + (826, '0394559487'), + (827, '0804001944'), + (828, '0590897985'), + (829, '0689832877'), + (830, '0689832877'), + (831, '0689829698'), + (832, '0689829698'), + (833, '0439042917'), + (568, '0064409457'), + (834, '0064409457'), + (568, '0064405052'), + (833, '0064405052'), + (835, '043922165X'), + (836, '0152162445'), + (835, '0152162577'), + (835, '015216250X'), + (837, '1562477528'), + (838, '0439221676'), + (839, '0439221684'), + (837, '0439221684'), + (837, '0439221714'), + (837, '0439221706'), + (837, '0439221730'), + (840, '0440415993'), + (841, '0895872102'), + (842, '068983585X'), + (843, '068983585X'), + (176, '0345391802'), + (844, '0440219078'), + (845, '185424597X'), + (846, '185424597X'), + (847, '2080105434'), + (848, '349913358X'), + (849, '3257201761'), + (115, '3404121686'), + (850, '3404121686'), + (851, '3404121686'), + (115, '3404118960'), + (852, '3404118960'), + (853, '3404118960'), + (854, '3404118960'), + (855, '0345356578'), + (854, '0345346971'), + (716, '0753804700'), + (142, '0451155750'), + (481, '0786890436'), + (482, '0786890436'), + (142, '0786890436'), + (856, '0415928087'), + (857, '0415928087'), + (858, '0521427150'), + (859, '0812923278'), + (860, '0884111342'), + (861, '0345428544'), + (176, '0671694049'), + (862, '080901582X'), + (247, '0449006557'), + (863, '0373250339'), + (864, '0380820447'), + (865, '0385497679'), + (866, '0385497679'), + (867, '0385497679'), + (868, '0451454243'), + (869, '0941423042'), + (870, '0373871562'), + (105, '0553101439'), + (871, '0898151910'), + (872, '0835949362'), + (873, '0880701102'), + (145, '039914563X'), + (874, '0312853238'), + (875, '0688048730'), + (876, '0688048730'), + (145, '0425161722'), + (877, '0425161722'), + (24, '0385493800'), + (878, '0849916399'), + (879, '1928791107'), + (880, '1928791107'), + (881, '067175145X'), + (24, '0440211727'), + (882, '0877192820'), + (883, '0380002450'), + (884, '0793133955'), + (883, '0793133955'), + (885, '0394178017'), + (145, '0425134350'), + (886, '0385479689'), + (887, '0385479689'), + (888, '0380754851'), + (889, '0380538504'), + (890, '044661162X'), + (626, '0671742566'), + (183, '0515122408'), + (891, '0440222818'), + (892, '0451204050'), + (893, '038533334X'), + (894, '0449131548'), + (895, '0440120470'), + (896, '0451188209'), + (897, '0451188209'), + (231, '0440130913'), + (436, '0449001954'), + (49, '0345404777'), + (898, '0451185277'), + (543, '0440224829'), + (899, '0671779338'), + (532, '0515134368'), + (187, '0380759497'), + (900, '0380759497'), + (574, '3442098424'), + (901, '3442098424'), + (902, '0394578791'), + (903, '1558505377'), + (904, '0373245696'), + (905, '0743201078'), + (906, '068983571X'), + (907, '0553256785'), + (908, '0892967994'), + (909, '0061064505'), + (910, '0061064505'), + (911, '1551668785'), + (912, '0836230868'), + (913, '0381999866'), + (914, '0380817144'), + (915, '0380752115'), + (916, '0553212583'), + (484, '0446364762'), + (571, '0425166619'), + (917, '061312975X'), + (918, '0765341972'), + (919, '0590514776'), + (920, '0373037430'), + (921, '0064472779'), + (922, '0553581279'), + (923, '0373750013'), + (924, '0393030342'), + (565, '0553561618'), + (271, '0312422156'), + (925, '0425139069'), + (926, '0450029956'), + (927, '0450029956'), + (928, '0130139165'), + (929, '0373196741'), + (882, '0451524489'), + (930, '0451524489'), + (931, '0140065172'), + (24, '044022165X'), + (932, '0373123485'), + (933, '0373123108'), + (934, '0590225170'), + (935, '0590225170'), + (571, '0399143165'), + (936, '044132231X'), + (937, '0425124347'), + (938, '0786889705'), + (939, '0312282990'), + (940, '0425137945'), + (939, '042512892X'), + (939, '0425113892'), + (941, '0394820371'), + (942, '0394820371'), + (943, '0449134482'), + (944, '014036336X'), + (536, '0375821813'), + (945, '0812516826'), + (946, '0345348036'), + (947, '0679420118'), + (948, '0871137380'), + (949, '0741409690'), + (948, '0741407213'), + (948, '0759612277'), + (948, '0741402858'), + (948, '1585007366'), + (948, '074141127X'), + (948, '0741403471'), + (948, '0741403781'), + (948, '0741403056'), + (948, '0741405784'), + (948, '0741402912'), + (241, '0553568760'), + (49, '034538184X'), + (950, '0140620125'), + (56, '0140620109'), + (951, '0375420827'), + (176, '0671745530'), + (952, '0805062971'), + (949, '0553211412'), + (953, '0671510053'), + (954, '1573229385'), + (955, '0945397410'), + (956, '0385334036'), + (220, '0060914653'), + (187, '0345347536'), + (957, '055321313X'), + (958, '3473540420'), + (959, '0375507256'), + (538, '0060529709'), + (960, '0876850867'), + (658, '0140274154'), + (961, '0679743464'), + (960, '0375704027'), + (962, '0375704027'), + (963, '0874067391'), + (964, '0874067391'), + (965, '0590484753'), + (966, '0451527038'), + (967, '0451527038'), + (968, '1590520777'), + (969, '1590520777'), + (964, '0590484672'), + (970, '0975311255'), + (971, '0743237188'), + (132, '0553586122'), + (616, '0553584510'), + (630, '0345341201'), + (972, '1551662744'), + (231, '0440175623'), + (231, '0440216842'), + (973, '0345443284'), + (974, '0553285653'), + (975, '0394800133'), + (976, '0394800133'), + (977, '0060972777'), + (978, '0064401472'), + (979, '0064401472'), + (70, '0156001942'), + (980, '055326382X'), + (351, '0345418018'), + (665, '0684801469'), + (981, '0393961192'), + (982, '0393961192'), + (983, '0393961192'), + (698, '9997522052'), + (312, '0872203492'), + (984, '0872203492'), + (985, '0872203492'), + (986, '0872203492'), + (211, '0312420145'), + (987, '0911104542'), + (988, '0375401318'), + (989, '0140253602'), + (990, '0671789422'), + (991, '1566193966'), + (992, '014016930X'), + (993, '0140077022'), + (994, '0679732764'), + (285, '0553273604'), + (285, '0553273914'), + (995, '0060256672'), + (994, '0060256672'), + (996, '039592720X'), + (997, '1859671500'), + (998, '1859671500'), + (999, '1859671500'), + (1000, '1859671500'), + (1001, '0810935627'), + (150, '0060928336'), + (465, '0671003755'), + (1002, '0553268449'), + (1003, '0684844729'), + (1004, '0395051649'), + (1005, '0395051649'), + (1006, '0375705228'), + (149, '038001503X'), + (1007, '0835607860'), + (1008, '158574218X'), + (1009, '158574218X'), + (1010, '0806996021'), + (1011, '0440215625'), + (780, '0316777730'), + (1012, '0375501851'), + (1013, '0877733759'), + (1014, '0805019367'), + (1015, '0140070206'), + (1016, '0140236589'), + (760, '0140042393'), + (1017, '1590520653'), + (1018, '1590521994'), + (1019, '1590521994'), + (1020, '3446202218'), + (1021, '3446202218'), + (578, '3499134446'), + (1022, '067142517X'), + (1023, '0671726889'), + (129, '0446601241'), + (142, '0451124340'), + (574, '0345384466'), + (129, '0446604801'), + (574, '0345422392'), + (1024, '0679734775'), + (1025, '0440414717'), + (1026, '0689715625'), + (1027, '0689715625'), + (921, '0812539389'), + (1028, '0152013369'), + (939, '0425124819'), + (79, '0345409469'), + (1029, '0345409469'), + (1030, '1558747346'), + (1031, '0373250177'), + (1032, '0763615382'), + (1033, '0965975401'), + (1034, '0965975401'), + (1035, '0965975401'), + (1036, '0965975401'), + (1037, '0141001771'), + (1038, '068930935X'), + (454, '0451523369'), + (1039, '0786884622'), + (1040, '0449005569'), + (1041, '0671027344'), + (1042, '0786927089'), + (1043, '0786927089'), + (1044, '0684831058'), + (285, '006019491X'), + (1045, '006019491X'), + (1046, '0684819066'), + (1047, '0375420673'), + (1048, '0140368558'), + (1049, '0395353416'), + (285, '0066211611'), + (1050, '0066211611'), + (1051, '0312254164'), + (1052, '0312254164'), + (1053, '3453147243'), + (1054, '3746611229'), + (1055, '3492229336'), + (1056, '3453177800'), + (1057, '3423009152'), + (1058, '3596133319'), + (1059, '3822813397'), + (1060, '3426871874'), + (1061, '3453171977'), + (462, '3423620005'), + (1062, '3423620005'), + (732, '034537522X'), + (732, '0345375211'), + (1063, '0345375211'), + (1064, '034545829X'), + (658, '0140042520'), + (268, '0380789035'), + (1065, '0446677574'), + (1066, '0345358791'), + (578, '0060964049'), + (1067, '0380558483'), + (1068, '1558171398'), + (1069, '0425121046'), + (1070, '0441317502'), + (1071, '0804102279'), + (1072, '0812551389'), + (1073, '0345298985'), + (854, '0345316991'), + (854, '034531042X'), + (854, '0345310306'), + (854, '0345310292'), + (854, '034531011X'), + (1074, '0679734058'), + (713, '0451130448'), + (1075, '0553266500'), + (410, '0440206154'), + (39, '0345370775'), + (1076, '0441366945'), + (1077, '0441366945'), + (1078, '0441366945'), + (1079, '0441366945'), + (1080, '0553574833'), + (1081, '0553574833'), + (1082, '0915950839'), + (1083, '0060242388'), + (1084, '0452265347'), + (630, '0743457943'), + (369, '0373484224'), + (1085, '0553205757'), + (1086, '0060171510'), + (1087, '0312421001'), + (1088, '0786000988'), + (268, '0380789019'), + (1089, '0451135989'), + (815, '0380018179'), + (1090, '0679004785'), + (1091, '0684825821'), + (1092, '0517395754'), + (1093, '067101420X'), + (221, '0679457313'), + (1094, '0394557433'), + (1095, '0553571656'), + (498, '0312169787'), + (1096, '0942257324'), + (1097, '0805008950'), + (1098, '0786866276'), + (1099, '0151000638'), + (7, '0151000638'), + (1100, '0140266771'), + (989, '015644450X'), + (723, '0679723420'), + (1101, '0441004016'), + (1102, '0671500546'), + (270, '0140620338'), + (546, '0460878263'), + (1103, '0460878263'), + (199, '3257061269'), + (1104, '3257061269'), + (1105, '3453210999'), + (1106, '3404126661'), + (236, '3453177622'), + (1107, '3453177622'), + (1108, '3453863593'), + (1109, '3499108518'), + (1110, '3518367064'), + (1040, '3453199766'), + (1111, '3746670144'), + (1112, '3746670144'), + (1052, '3453088433'), + (1113, '0425137015'), + (1114, '0425137015'), + (1115, '0425137015'), + (1116, '0425137015'), + (1117, '0553572490'), + (105, '0553576976'), + (1118, '0451450604'), + (1119, '0441001335'), + (1120, '0451454677'), + (1121, '0373257074'), + (1122, '0441435351'), + (1123, '0373092237'), + (1124, '0373057296'), + (1125, '0373058446'), + (758, '0349103232'), + (220, '0571197779'), + (1126, '0679745653'), + (495, '0571200389'), + (1127, '0785268480'), + (1128, '0785268480'), + (1129, '0785268480'), + (1130, '014044503X'), + (1131, '014044503X'), + (1132, '014044503X'), + (1133, '0851707777'), + (1134, '0006276199'), + (1133, '0551031123'), + (1133, '0551030682'), + (1133, '0551032510'), + (1135, '0551032510'), + (1136, '000649840X'), + (85, '0140431268'), + (224, '0099771519'), + (1137, '0486265862'), + (136, '067102535X'), + (959, '0876855575'), + (1138, '0330376136'), + (1139, '0140272658'), + (1140, '3407780028'), + (1139, '3407780028'), + (1139, '3407780117'), + (1141, '3257250398'), + (1142, '3257250398'), + (1140, '3257250053'), + (1141, '3257250053'), + (1143, '3257250460'), + (1144, '3442435951'), + (1145, '3442435838'), + (1146, '3442435838'), + (1147, '3608919724'), + (1148, '3608919724'), + (1149, '3608919724'), + (1150, '3453132262'), + (1151, '3453132262'), + (1152, '379411664X'), + (1153, '379411664X'), + (1139, '340780573X'), + (1154, '3407805853'), + (951, '0385720920'), + (951, '0385498721'), + (1155, '0972948503'), + (1156, '0972948503'), + (485, '0380813815'), + (78, '2070372294'), + (1157, '2264030542'), + (1158, '0030615321'), + (1159, '0836217632'), + (1160, '0140099832'), + (253, '0385314744'), + (1161, '0316107417'), + (1162, '0894803700'), + (368, '0449221164'), + (1163, '0553801031'), + (964, '0590457225'), + (1164, '0316929190'), + (1165, '0553052845'), + (281, '0140390693'), + (1166, '0140390693'), + (1167, '0140390693'), + (1168, '0439404371'), + (1169, '0439404371'), + (1170, '0939766027'), + (1171, '0939766027'), + (1172, '0679741011'), + (1173, '0345307674'), + (92, '0425071421'), + (433, '0345297687'), + (281, '0766607119'), + (1174, '0766607119'), + (1175, '0766607119'), + (1176, '1573225789'), + (1177, '0380754843'), + (1178, '0380754843'), + (433, '0345368940'), + (1179, '0345331605'), + (1180, '0425050807'), + (1181, '044100962X'), + (342, '0553296981'), + (1182, '0553296981'), + (1183, '0553296981'), + (1184, '1895383129'), + (1185, '0375724575'), + (1186, '067163884X'), + (1187, '0553140434'), + (1188, '0029087104'), + (1189, '0425050750'), + (795, '0345285549'), + (1190, '0345285549'), + (795, '0345290240'), + (187, '0345301870'), + (142, '0451169530'), + (76, '067168390X'), + (279, '0385335881'), + (279, '0385335482'), + (351, '0553258001'), + (1191, '0671679627'), + (1192, '0375704043'), + (869, '0373871279'), + (1193, '0373484070'), + (467, '0805063889'), + (1194, '068986020X'), + (1195, '0671568809'), + (1196, '1573228567'), + (458, '0553582658'), + (1197, '051513399X'), + (369, '0373218400'), + (1198, '0449217868'), + (1199, '0671573020'), + (1198, '0671573020'), + (1200, '0517006456'), + (1201, '0786867086'), + (1202, '0786867086'), + (1203, '1569471800'), + (1204, '0374216495'), + (1205, '0312274572'), + (1206, '0316825336'), + (1207, '0871137631'), + (1208, '0679419152'), + (151, '0060192895'), + (1209, '0826308791'), + (1210, '0140259198'), + (1211, '0345435249'), + (268, '0441003257'), + (256, '0441003257'), + (585, '0451202503'), + (236, '0446606812'), + (1212, '0671028375'), + (1213, '0451181468'), + (346, '0399149759'), + (1214, '0345384733'), + (1215, '0671759361'), + (1216, '0830724982'), + (571, '0399146008'), + (1217, '3442720001'), + (1218, '0515132632'), + (1219, '044990671X'), + (1220, '0688124402'), + (1221, '0929587081'), + (1222, '155970117X'), + (1223, '155970117X'), + (1224, '0688105408'), + (1225, '0871130297'), + (1226, '0440500095'), + (1227, '1570362084'), + (54, '0060930535'), + (1228, '0375702709'), + (1229, '044990928X'), + (1230, '0671038184'), + (1231, '0060916508'), + (1232, '0756401453'), + (1233, '0963270702'), + (1234, '0399242562'), + (1235, '0552996009'), + (433, '0708881297'), + (1236, '0708881297'), + (760, '0142000663'), + (93, '0590542443'), + (93, '0590112899'), + (93, '0590660543'), + (351, '0345361792'), + (1237, '0552999512'), + (1238, '041619513X'), + (1239, '0855030224'), + (1238, '0855030224'), + (292, '0861638522'), + (1240, '0861638522'), + (1241, '0575073314'), + (1240, '0575073004'), + (1242, '0394404289'), + (1243, '000636988X'), + (1244, '1578562333'), + (1245, '0345458915'), + (1246, '038531258X'), + (171, '006092988X'), + (1247, '0140317937'), + (1248, '0140317937'), + (1249, '0743225406'), + (1250, '0553256696'), + (1251, '0553256696'), + (1252, '0553256696'), + (1253, '0785263780'), + (1254, '0785263780'), + (1255, '0802433243'), + (51, '0375413081'), + (1256, '1400034779'), + (1257, '038533303X'), + (1088, '0451163753'), + (1258, '0440414520'), + (1259, '0786885688'), + (1260, '0671880187'), + (1261, '1558506454'), + (1262, '0895773538'), + (1263, '0385247745'), + (1264, '0385247745'), + (231, '0385293542'), + (1265, '0802069347'), + (1266, '0671721038'), + (441, '0671311891'), + (795, '0345387007'), + (1267, '037570504X'), + (1234, '0767902521'), + (1268, '0892967048'), + (1269, '0553377868'), + (1270, '0553377868'), + (1271, '0472113658'), + (1272, '0609608444'), + (1273, '0670032425'), + (1274, '0915811332'), + (17, '1558744606'), + (18, '1558744606'), + (19, '1558744606'), + (7, '080410753X'), + (403, '0451526503'), + (732, '0345325818'), + (1275, '044023767X'), + (1276, '014131088X'), + (1277, '043909013X'), + (1278, '0140244824'), + (1279, '155643068X'), + (1278, '096478260X'), + (1280, '096478260X'), + (1278, '155643152X'), + (1281, '0553346768'), + (1282, '0884043142'), + (1283, '0743221990'), + (1284, '0312983212'), + (1285, '0553486411'), + (1286, '3478088534'), + (1287, '3821807059'), + (1288, '0865532168'), + (1289, '059040640X'), + (962, '1566197155'), + (1290, '0805210318'), + (1291, '0805210318'), + (1292, '031227999X'), + (24, '0385508417'), + (24, '0385510438'), + (1293, '0848705459'), + (346, '0380723638'), + (1294, '0718001044'), + (1295, '0307132668'), + (1296, '0812515722'), + (1297, '0373169876'), + (1298, '0890842795'), + (1299, '0385324057'), + (188, '9505470010'), + (1300, '0609602535'), + (534, '0425185710'), + (1301, '0061030651'), + (713, '0425178773'), + (1302, '0553575619'), + (1303, '0671578391'), + (1304, '0425095584'), + (1305, '0451409086'), + (1283, '031298250X'), + (1300, '006109594X'), + (176, '0671527215'), + (1306, '0486203077'), + (1307, '0671522817'), + (1308, '0618074716'), + (1309, '1400062888'), + (1310, '0618045996'), + (1311, '0312303033'), + (1312, '1931520038'), + (1118, '0671318314'), + (1001, '0553377876'), + (1313, '1558612815'), + (734, '014025448X'), + (356, '0060934417'), + (60, '0671793489'), + (397, '0174434642'), + (1314, '0174434642'), + (1315, '0679772677'), + (108, '0312983824'), + (556, '0449149676'), + (556, '0449006344'), + (458, '0553568183'), + (1316, '0451191153'), + (1317, '0451191153'), + (955, '0440224624'), + (56, '0451523067'), + (1318, '0451523067'), + (1317, '0451523067'), + (542, '0743418174'), + (56, '0451526295'), + (282, '0451526295'), + (490, '0440214424'), + (56, '0451187903'), + (282, '0451187903'), + (412, '0385491050'), + (373, '0671036505'), + (1319, '0553213504'), + (1320, '0446605891'), + (192, '0394758285'), + (60, '0671004565'), + (1321, '0345370805'), + (1198, '0375703055'), + (135, '0156006529'), + (1322, '0156006529'), + (555, '0446673544'), + (149, '0140256369'), + (1323, '0140256369'), + (1324, '0312243022'), + (135, '0316789844'), + (1325, '0679761837'), + (412, '0385490445'), + (161, '0380725398'), + (1326, '0345316770'), + (610, '0375700757'), + (612, '0070212570'), + (1228, '0385480016'), + (719, '0061098361'), + (1325, '0061093092'), + (109, '0821758950'), + (274, '0679729917'), + (501, '0451411013'), + (1327, '0446611239'), + (1328, '0446611239'), + (1329, '0553580078'), + (713, '0425189414'), + (1330, '0812909372'), + (1331, '0812909372'), + (1332, '0451410912'), + (135, '0316781266'), + (403, '0486280616'), + (1333, '0743405978'), + (142, '0671032658'), + (1334, '0446607835'), + (1335, '0446607835'), + (1336, '0451402103'), + (1337, '0373250223'), + (1338, '0380817683'), + (1162, '0671701053'), + (1339, '0671000381'), + (1340, '006101253X'), + (1341, '0671689231'), + (920, '0380814021'), + (1342, '0373711026'), + (1343, '0373710992'), + (1344, '0373711107'), + (1345, '0440217806'), + (919, '0373711123'), + (1346, '0373711115'), + (1347, '0373711131'), + (151, '0061098795'), + (1348, '0791423549'), + (1349, '0791423549'), + (1350, '0375725784'), + (1351, '0465016146'), + (1350, '0465016103'), + (1352, '0373226519'), + (270, '0380012774'), + (767, '225313922X'), + (1353, '0142004030'), + (1354, '0452281784'), + (1355, '0375704558'), + (1356, '038533656X'), + (1357, '0743230213'), + (1358, '0345436911'), + (464, '0452284481'), + (1359, '0802135196'), + (644, '0440217520'), + (1360, '0373834985'), + (1361, '0679450548'), + (1362, '0451135555'), + (732, '0345339703'), + (1363, '038039586X'), + (1352, '0670030643'), + (1364, '0060929596'), + (1365, '3499232871'), + (1366, '0374516901'), + (1367, '0440131480'), + (1368, '0609600745'), + (1369, '0609600745'), + (1370, '0375707425'), + (717, '0375707425'), + (145, '3453151933'), + (84, '3453151933'), + (1371, '3453151933'), + (1372, '0231105592'), + (1373, '0590317822'), + (1374, '014056232X'), + (1375, '0590447319'), + (1376, '0440940001'), + (1377, '0440401119'), + (1378, '0440203155'), + (873, '0812565959'), + (1379, '034536628X'), + (1380, '0880387483'), + (1379, '0880387300'), + (1381, '0880387300'), + (1382, '0425163385'), + (714, '0743444051'), + (1383, '0061056103'), + (1282, '0671042262'), + (563, '0425157539'), + (160, '0553585681'), + (160, '0553585118'), + (1384, '0886777690'), + (60, '0743212002'), + (736, '0743212002'), + (1385, '3426650754'), + (1386, '1854877178'), + (1387, '0380803526'), + (1388, '0373152655'), + (1389, '0373152655'), + (919, '0373152655'), + (1390, '0451404033'), + (1391, '1583140352'), + (1392, '1854879073'), + (1393, '0821728326'), + (369, '037348397X'), + (1394, '0380773155'), + (1395, '0380773155'), + (115, '3404100263'), + (1396, '0679731148'), + (1397, '2070417700'), + (1398, '2070417700'), + (665, '2070360075'), + (1399, '0786889373'), + (1396, '2207245810'), + (1396, '2207250474'), + (1400, '2207250474'), + (1396, '2290331406'), + (1401, '2290331406'), + (1396, '2070426815'), + (1396, '2290305251'), + (760, '2070364283'), + (1402, '2266128566'), + (1403, '2070363104'), + (199, '2253152277'), + (1404, '2207252000'), + (1405, '2207252000'), + (571, '2253170453'), + (1406, '2723409821'), + (1407, '2723409821'), + (1408, '2070415686'), + (1409, '2070415686'), + (1396, '2258036992'), + (1396, '2207251756'), + (690, '2266000489'), + (1410, '2070360423'), + (1411, '0394822862'), + (1412, '0394822862'), + (1413, '0874493803'), + (1414, '1569870942'), + (1415, '1569870942'), + (1416, '1579730272'), + (1417, '1579730272'), + (1418, '0307177092'), + (1419, '2253004898'), + (1420, '0812094271'), + (1421, '0812094271'), + (1422, '0812094271'), + (1423, '0380600129'), + (1424, '0380600129'), + (1188, '0451522389'), + (1425, '0451522389'), + (1426, '0425169324'), + (630, '082176828X'), + (129, '0316693324'), + (1427, '0553283685'), + (1428, '1841215457'), + (1429, '0064410358'), + (1430, '0007108648'), + (1431, '0007108648'), + (802, '0064472930'), + (597, '0590629824'), + (142, '0743412273'), + (823, '0140089586'), + (1432, '0316140651'), + (1433, '1559277785'), + (1434, '1559277785'), + (574, '0345367898'), + (1435, '0205280854'), + (1436, '0205280854'), + (1437, '0553110721'), + (1438, '0553110721'), + (1439, '1558534245'), + (1440, '1558534245'), + (1441, '1558534245'), + (1436, '0553580272'), + (1442, '0553580272'), + (1443, '0553580272'), + (1444, '1560980087'), + (1445, '1560980087'), + (1446, '0679412271'), + (1447, '0803281730'), + (795, '0345396529'), + (1448, '0440455332'), + (1449, '1860462995'), + (1450, '1860462995'), + (1451, '0679452281'), + (1452, '0811807150'), + (1453, '0393029190'), + (1454, '0393029190'), + (1455, '0385425686'), + (1456, '0312169655'), + (1457, '0785324712'), + (1458, '0449912558'), + (1457, '0449912558'), + (1459, '0934257345'), + (1460, '0312205872'), + (1461, '0312205872'), + (1462, '0670867144'), + (1463, '0670867144'), + (1464, '0805051732'), + (1465, '0449300021'), + (1466, '0449300021'), + (1467, '0449300021'), + (60, '0684835983'), + (1298, '0440226430'), + (1468, '0385721358'), + (1469, '031231616X'), + (1470, '0764504509'), + (1471, '089480829X'), + (1472, '089480829X'), + (1473, '089480829X'), + (1474, '0767912233'), + (1475, '0971453217'), + (1476, '0971453217'), + (1474, '0971453209'), + (1475, '0971453209'), + (1477, '0785268030'), + (1478, '0785268030'), + (1479, '0743201736'), + (1480, '0743201736'), + (1470, '0894805770'), + (1471, '0894805770'), + (1481, '0894805770'), + (1077, '0440177499'), + (1482, '0553232053'), + (1483, '0312269102'), + (199, '0062502174'), + (1484, '0688177751'), + (1485, '0345438329'), + (1486, '0345401123'), + (1487, '1593160151'), + (1488, '1593160151'), + (1489, '1593160127'), + (1490, '1593160127'), + (1491, '0451209435'), + (1490, '0451209435'), + (1492, '1551669501'), + (716, '0375707972'), + (717, '0375707972'), + (732, '0618126988'), + (1062, '0618126988'), + (1493, '0060094850'), + (577, '0060192305'), + (1494, '0142000361'), + (1495, '0872860175'), + (335, '031219126X'), + (1496, '031219126X'), + (665, '0020518609'), + (81, '0345446860'), + (52, '0446310492'), + (369, '037348285X'), + (1497, '037348285X'), + (1498, '037348285X'), + (183, '0515090506'), + (61, '0399145087'), + (1499, '0812590244'), + (1500, '0963641328'), + (1501, '1574551108'), + (1502, '0879739304'), + (1503, '0879739304'), + (1504, '0879739304'), + (1505, '0965712516'), + (1506, '0670829943'), + (1507, '0670829943'), + (1363, '0060192119'), + (1508, '0836218256'), + (1509, '0898707129'), + (568, '0805420460'), + (1232, '0140140352'), + (1510, '1575666529'), + (1432, '0312990456'), + (1511, '0440221102'), + (129, '0316969680'), + (130, '0316969680'), + (1512, '0449207463'), + (1513, '0689109865'), + (1514, '3518368540'), + (1515, '0312423209'), + (1514, '0141180633'), + (1514, '0140283382'), + (1086, '0786248688'), + (1516, '0773762078'), + (1517, '0773762078'), + (1281, '0884041093'), + (1281, '0884040801'), + (1518, '0786887842'), + (1519, '0450542912'), + (1520, '0192817264'), + (1521, '0192817264'), + (1522, '0751522732'), + (1523, '0091850401'), + (1524, '1853260312'), + (1525, '0140016821'), + (1526, '0140016821'), + (93, '0440418569'), + (1527, '0786014210'), + (1528, '0441005667'), + (1529, '0553259830'), + (1530, '0312965338'), + (1531, '0312965338'), + (1532, '1888740051'), + (1533, '0061008028'), + (1534, '1931646384'), + (1535, '1931646384'), + (352, '0399501487'), + (1536, '0399501487'), + (1537, '157566559X'), + (462, '3423125551'), + (1061, '3423125551'), + (635, '0060514949'), + (1538, '0425188361'), + (1539, '0066210151'), + (1540, '0395177111'), + (574, '0375411992'), + (1541, '0060287802'), + (1542, '0060287802'), + (1543, '3442730066'), + (45, '3442730066'), + (1544, '0394718968'), + (1545, '0394718968'), + (1546, '0192820753'), + (1547, '0671744003'), + (711, '3596129389'), + (1548, '0915308789'), + (1549, '3423620196'), + (1550, '3423620196'), + (1551, '3423620196'), + (1552, '0743203313'), + (534, '0425177173'), + (1553, '0425172554'), + (24, '0440224764'), + (1554, '0553572997'), + (1555, '034543076X'), + (1234, '0380727501'), + (1556, '0312423799'), + (1557, '0743249887'), + (1558, '0316089745'), + (1255, '037542217X'), + (325, '0345440773'), + (326, '0345440773'), + (231, '0440208912'), + (1325, '0061093106'), + (369, '0373218192'), + (369, '0515120006'), + (183, '0515127396'), + (1559, '0345433084'), + (1560, '0345416260'), + (1561, '0385494785'), + (1560, '0385486804'), + (232, '0385512104'), + (1562, '1555973981'), + (1563, '0451180208'), + (1564, '089587198X'), + (1565, '089587198X'), + (1566, '089587198X'), + (1567, '089587198X'), + (1568, '0198811020'), + (351, '0525237704'), + (1569, '039914255X'), + (1570, '039914255X'), + (1571, '0340649763'), + (24, '0440236673'), + (1572, '0553295071'), + (1088, '0316291161'), + (822, '0449208397'), + (1573, '1590171012'), + (93, '1590171012'), + (1574, '0060505273'), + (39, '0752999958'), + (1575, '0702229962'), + (1576, '0679771476'), + (1577, '0684848597'), + (1578, '031215125X'), + (1579, '0064405176'), + (1580, '0684821192'), + (1581, '0061056871'), + (1582, '0061056871'), + (1583, '0061056871'), + (1584, '0590988301'), + (1585, '0883659654'), + (1031, '0883659654'), + (955, '0440235162'), + (1234, '076790382X'), + (1586, '0330357808'), + (61, '0425158616'), + (1587, '0307001385'), + (1588, '0307001385'), + (1589, '0595157939'), + (1590, '0702231088'), + (1591, '0140143599'), + (199, '0062502182'), + (54, '0060175400'), + (1592, '1573221775'), + (1593, '0913367044'), + (1594, '1888698357'), + (1595, '0913367176'), + (1596, '0933121245'), + (1529, '0312168144'), + (1597, '0312168144'), + (1598, '0451528182'), + (1599, '0451528182'), + (1600, '0451528182'), + (1601, '0671537458'), + (1602, '0786014741'), + (1603, '0517573822'), + (1604, '0517573822'), + (1605, '0877732906'), + (1282, '0743437810'), + (1606, '0385240406'), + (1607, '0060116188'), + (1608, '0394742591'), + (1609, '0394742591'), + (176, '0517149257'), + (977, '0374517886'), + (1610, '0850315336'), + (1611, '0312964854'), + (1282, '0743222008'), + (1612, '0684863324'), + (1613, '0618127453'), + (1614, '0618127453'), + (1615, '0884053660'), + (1498, '0812590236'), + (1616, '0515127221'), + (571, '0425161242'), + (906, '0451200993'), + (1617, '0679765123'), + (1618, '0312982194'), + (1619, '0312982194'), + (1620, '0312982194'), + (1621, '0312982194'), + (1622, '0451195922'), + (61, '0425169863'), + (531, '0425169863'), + (39, '0345380371'), + (129, '0446609323'), + (129, '0316690619'), + (129, '0446610038'), + (1623, '155143234X'), + (1624, '0891074759'), + (247, '0449222276'), + (1625, '0440224608'), + (1626, '0451201558'), + (1627, '0061032077'), + (1628, '2253004243'), + (1629, '0679459626'), + (1630, '0812566629'), + (1631, '0816614024'), + (1632, '0816614024'), + (1633, '0816614024'), + (1634, '3518390473'), + (1635, '340414578X'), + (1636, '3596113350'), + (1637, '3453189442'), + (1638, '3462031252'), + (1092, '0671001701'), + (1639, '0782125557'), + (1640, '1555217532'), + (1641, '0843943769'), + (1116, '0553583085'), + (1642, '1892051001'), + (1013, '0805019375'), + (1643, '1587991039'), + (1644, '1587214768'), + (658, '0802130496'), + (1645, '1857931467'), + (1646, '1857931467'), + (1647, '0380717085'), + (1646, '0380712172'), + (1648, '0380706725'), + (1646, '0380706725'), + (1649, '0767904281'), + (18, '1558747478'), + (1650, '1558747478'), + (1651, '1558747478'), + (1652, '0440512158'), + (1653, '0130179620'), + (1654, '0130179620'), + (1655, '0273649949'), + (1656, '0072453907'), + (1657, '0130305065'), + (1658, '0130219193'), + (1659, '0028626958'), + (1660, '0028626958'), + (1661, '1884822738'), + (1662, '1884822738'), + (1663, '1884822738'), + (1524, '0140272941'), + (1525, '0140272941'), + (1664, '0375700382'), + (1665, '0006550789'), + (1666, '0140004424'), + (944, '0812517032'), + (1560, '0385492081'), + (1667, '0451524829'), + (1668, '0451524829'), + (1669, '0877287384'), + (1670, '0465090974'), + (1671, '1931412677'), + (254, '0670848549'), + (1672, '0684829746'), + (1366, '0425130215'), + (151, '0061000175'), + (109, '0312971362'), + (179, '0061097659'), + (58, '006017935X'), + (715, '067976402X'), + (1673, '1558532161'), + (1674, '3125918103'), + (1675, '0064408329'), + (142, '0743457358'), + (736, '0743456866'), + (60, '0743456866'), + (1676, '0440235464'), + (1677, '0312251890'), + (1678, '0440227739'), + (1679, '0345425707'), + (873, '0765342294'), + (1159, '0451821971'), + (1680, '0670894494'), + (1681, '0060394447'), + (1682, '0385508980'), + (1683, '0385508980'), + (1684, '037541181X'), + (1685, '006093395X'), + (1686, '0385491328'), + (433, '0345434692'), + (433, '0553131893'), + (1687, '0374177023'), + (1688, '076790351X'), + (1689, '0452280907'), + (634, '0425167313'), + (459, '0316314641'), + (39, '034540288X'), + (1690, '0061073091'), + (938, '0786808772'), + (433, '0553234609'), + (433, '0553258540'), + (1691, '0802713661'), + (843, '0440237688'), + (1692, '0679884394'), + (1693, '1582970262'), + (1694, '1566091446'), + (1695, '1566091446'), + (1696, '0553577395'), + (1697, '0671698419'), + (1698, '0425167720'), + (1699, '006105660X'), + (1700, '0609610597'), + (175, '0446519960'), + (9, '0374281602'), + (1701, '0140251839'), + (1702, '0399519831'), + (1703, '0425159795'), + (1704, '0140255370'), + (1705, '0394543971'), + (1706, '0060970790'), + (1707, '0156787334'), + (1194, '0448095300'), + (1708, '1569314195'), + (1709, '1569314195'), + (1710, '0060908548'), + (1711, '0060908548'), + (1712, '0028606353'), + (1713, '0028606353'), + (1714, '0028606353'), + (1715, '0028606353'), + (1716, '0316182540'), + (1717, '0553343874'), + (1718, '0553343874'), + (1719, '0881845906'), + (1319, '0446355224'), + (1720, '0061030953'), + (1721, '0316919896'), + (1628, '0553299506'), + (889, '0446611611'), + (536, '0446604658'), + (412, '0553282476'), + (412, '0449212602'), + (142, '0684867621'), + (1628, '0451147375'), + (1628, '0345413903'), + (1628, '0451178033'), + (1722, '0590634275'), + (1723, '0330294377'), + (1724, '0061031569'), + (1725, '3257228007'), + (132, '0553582143'), + (136, '0743202961'), + (1726, '0060002492'), + (1727, '0399148620'), + (376, '0786866462'), + (612, '0679426159'), + (1214, '0671020315'), + (1715, '0316569321'), + (136, '067169071X'), + (1728, '0679732241'), + (1729, '0451117670'), + (1730, '0451402251'), + (1731, '042513301X'), + (1732, '1558175326'), + (1733, '0449214982'), + (183, '0515090174'), + (183, '0515095826'), + (183, '0515111279'), + (1734, '0671555235'), + (1735, '1570719586'), + (1736, '3492232981'), + (1737, '3492232981'), + (1738, '0553580876'), + (412, '0385475713'), + (1739, '0345290232'), + (1740, '0345441753'), + (1741, '0425045250'), + (1742, '0689825234'), + (1743, '0553375407'), + (1744, '1863714081'), + (1209, '0151006903'), + (1745, '0151006903'), + (1746, '1931561281'), + (1747, '038080350X'), + (1748, '0679744479'), + (1749, '1562477676'), + (1750, '1562477676'), + (1751, '0789414708'), + (1752, '0789414708'), + (1753, '0789414708'), + (59, '0425115801'), + (237, '0345454073'), + (1754, '0312983654'), + (142, '0671024248'), + (59, '0553582933'), + (1755, '0671034022'), + (1756, '0440208149'), + (1757, '0440208149'), + (142, '0451151259'), + (1758, '0375727132'), + (175, '0446607711'), + (1759, '0765301954'), + (1760, '014029645X'), + (1761, '0445085614'), + (873, '0345416880'), + (266, '0312874006'), + (1762, '0028621239'), + (1763, '0028621239'), + (415, '1593080743'), + (1764, '1593080743'), + (286, '0380771292'), + (287, '0380771292'), + (1765, '0805051589'), + (286, '0312314256'), + (287, '0312314256'), + (1766, '0445202718'), + (1767, '0316136778'), + (1768, '0385483503'), + (1769, '0590486101'), + (1096, '0060187271'), + (1767, '0385497288'), + (1767, '038548951X'), + (1770, '0345386256'), + (921, '0879517980'), + (1771, '0131554255'), + (1772, '0679725164'), + (1773, '061830245X'), + (1774, '006015456X'), + (1775, '006015456X'), + (1109, '0312278675'), + (1776, '0312278675'), + (1777, '0060512806'), + (1401, '0060901012'), + (1778, '0060901012'), + (1096, '0060930071'), + (1096, '0060972459'), + (1109, '0805012478'), + (1779, '0805012478'), + (1096, '0060975547'), + (1780, '0375704000'), + (1781, '0609806505'), + (1782, '0965624773'), + (1096, '0060977507'), + (343, '055326396X'), + (949, '0812505166'), + (1783, '0440234824'), + (1784, '0393312801'), + (175, '0446525804'), + (1785, '0446516570'), + (1786, '0312868308'), + (1787, '0380752298'), + (1788, '0345434773'), + (1789, '0786005998'), + (1790, '0385254520'), + (1791, '0060170441'), + (1792, '0590431536'), + (1793, '0712646221'), + (373, '0749318368'), + (532, '0515122491'), + (1794, '051512902X'), + (939, '0812530314'), + (1795, '0552138223'), + (62, '0515131091'), + (1537, '0515131091'), + (1796, '0515131091'), + (1797, '0515131091'), + (1798, '0380791382'), + (1799, '0091880955'), + (1800, '0563537329'), + (1801, '0563537329'), + (734, '0140265686'), + (734, '0140257934'), + (734, '0140254544'), + (1802, '0446603708'), + (1801, '0446606723'), + (283, '0451524934'), + (1803, '0451524934'), + (1804, '0679721819'), + (1805, '0345392825'), + (1806, '0060182792'), + (1807, '0393038440'), + (1808, '0737020121'), + (1809, '0737020121'), + (1810, '0737020121'), + (1125, '0679745645'), + (206, '1569470901'), + (60, '0671027123'), + (1811, '0375412972'), + (115, '0449225151'), + (1812, '0590449737'), + (1813, '0590449737'), + (1814, '0892816562'), + (873, '0765342405'), + (867, '0345350499'), + (1815, '0689837070'), + (1816, '0671041177'), + (1817, '0671041177'), + (1432, '0312976275'), + (1473, '0767905180'), + (971, '0743482891'), + (94, '037383232X'), + (971, '1551666200'), + (369, '0373242328'), + (1343, '0373709102'), + (128, '0517077744'), + (1818, '0449210197'), + (1819, '0373709617'), + (1820, '0373510225'), + (1821, '0373301529'), + (1822, '0373273193'), + (1823, '0373301626'), + (1824, '0373271867'), + (369, '0373240228'), + (1825, '059035342X'), + (1826, '059035342X'), + (1827, '0373764146'), + (1828, '037325928X'), + (128, '0446529788'), + (128, '044652767X'), + (60, '0743246918'), + (1192, '0373301847'), + (1829, '0373708351'), + (1830, '1551664690'), + (1831, '0789491869'), + (1832, '0789491869'), + (1196, '0373835426'), + (1833, '0373835426'), + (1834, '0373835426'), + (1835, '0373691157'), + (1836, '0373301537'), + (1837, '0373258674'), + (1838, '037330174X'), + (1839, '0312968256'), + (1840, '0451205650'), + (135, '0316089699'), + (1841, '1551669404'), + (1842, '0373708319'), + (1843, '0373706545'), + (1844, '0373871945'), + (534, '0671671138'), + (1845, '0449287092'), + (1846, '0671700081'), + (1847, '0821724231'), + (1848, '0380804670'), + (1849, '0812516192'), + (1850, '0425109267'), + (1851, '0380710005'), + (1852, '0553126911'), + (1853, '055320923X'), + (1854, '0140348107'), + (1855, '0884092097'), + (1854, '0884092119'), + (178, '0803263724'), + (1856, '0803263724'), + (1857, '0803263724'), + (1858, '0060506679'), + (1859, '0375701427'), + (1860, '0553135457'), + (403, '0812504364'), + (1397, '0380000830'), + (1397, '0380014300'), + (1861, '0895773570'), + (1395, '0330312367'), + (1862, '0330312367'), + (256, '2277238929'), + (268, '2277238929'), + (1863, '2743606789'), + (342, '2253001279'), + (1864, '2253001279'), + (1865, '2253001279'), + (1866, '2253001279'), + (1724, '2253047422'), + (105, '0553255142'), + (149, '9500703203'), + (1867, '0345406516'), + (1868, '0312281250'), + (1869, '0385490461'), + (285, '0060936363'), + (285, '038082101X'), + (567, '0849943663'), + (369, '3453099613'), + (873, '1574534106'), + (1870, '1574534106'), + (1871, '1574534106'), + (1872, '0380977745'), + (17, '1558747028'), + (18, '1558747028'), + (1650, '1558747028'), + (1873, '0618050140'), + (1874, '0312774842'), + (1875, '1579213405'), + (1876, '0671708635'), + (906, '0812970101'), + (1877, '0812970101'), + (1810, '0375727566'), + (1878, '0373630468'), + (1879, '0671676652'), + (1880, '0553250655'), + (1881, '0399139125'), + (1001, '0553377884'), + (1882, '9679787834'), + (1883, '0609605623'), + (1331, '0451195507'), + (583, '0061012289'), + (1884, '0451195493'), + (583, '0061092088'), + (1885, '0425162788'), + (145, '0425162788'), + (1886, '0425162788'), + (131, '0451208811'), + (1887, '3404920910'), + (1888, '2070419878'), + (1889, '2070419878'), + (188, '0345342968'), + (1890, '0192860925'), + (873, '0812550706'), + (1436, '0553580302'), + (1891, '0553580302'), + (1442, '0553580302'), + (1892, '0441102670'), + (1891, '0441328008'), + (1891, '0441294677'), + (1891, '0441104029'), + (574, '0345443683'), + (1893, '0061012149'), + (1894, '0890420254'), + (39, '0345378482'), + (60, '0671758896'), + (1895, '0345348109'), + (142, '0451177096'), + (1896, '0778800229'), + (574, '0345422384'), + (1075, '0441328091'), + (1897, '0684818868'), + (777, '0525463313'), + (1898, '0525463313'), + (1899, '0812513754'), + (1898, '0812550307'), + (1898, '0812513738'), + (1898, '0312852487'), + (1898, '0765348446'), + (1898, '0765348438'), + (1898, '0812511816'), + (1900, '0871401185'), + (1901, '0871401185'), + (1902, '0394712447'), + (397, '0671722727'), + (1903, '0385029551'), + (1904, '0385029551'), + (1905, '0070419361'), + (1906, '0070419361'), + (1907, '0070419361'), + (1908, '1929194196'), + (1909, '0553351702'), + (1910, '0285632655'), + (1911, '0804832463'), + (1912, '0804832463'), + (1901, '0375705090'), + (1913, '0375705090'), + (1914, '0312269587'), + (24, '0099244926'), + (1915, '0340612843'), + (206, '0413588106'), + (1916, '009945520X'), + (1917, '009945520X'), + (1918, '009945520X'), + (1919, '0702228842'), + (1920, '0880385367'), + (818, '0812515609'), + (819, '0812515609'), + (1625, '0451183681'), + (1921, '3502517959'), + (1726, '3442424623'), + (1922, '3442424623'), + (1923, '3310005844'), + (1924, '3310005844'), + (1925, '059525893X'), + (145, '0425122123'), + (1926, '0812530489'), + (1927, '081257060X'), + (1698, '081257060X'), + (1498, '0446326488'), + (1928, '0446326488'), + (81, '080410882X'), + (1929, '0446609986'), + (1930, '0375726624'), + (1243, '0892882816'), + (1931, '1577487370'), + (1243, '1578562325'), + (121, '0385484518'), + (1932, '0060951710'), + (54, '0060922532'), + (1933, '0786864133'), + (1934, '156836010X'), + (1935, '156836010X'), + (1936, '156836010X'), + (1937, '006251119X'), + (1938, '0440236703'), + (1939, '0671795937'), + (1739, '0345380274'), + (1940, '0440224039'), + (1941, '076790396X'), + (1942, '1572241381'), + (1943, '1572241381'), + (1944, '1572241381'), + (1945, '0345443411'), + (1946, '0345443411'), + (1947, '0192802542'), + (1948, '0060928204'), + (1949, '1592400876'), + (1950, '0140282378'), + (1951, '0435240765'), + (1952, '0435240765'), + (780, '0316779490'), + (1234, '0767902513'), + (253, '038531809X'), + (1953, '068815252X'), + (1954, '078686351X'), + (1046, '0375706410'), + (462, '0753811464'), + (1955, '0452266688'), + (1956, '0340697687'), + (1957, '0130289221'), + (1958, '0806957050'), + (1959, '0806957050'), + (1957, '0806957050'), + (1329, '0517084732'), + (1960, '020530902X'), + (257, '020530902X'), + (1961, '020530902X'), + (1962, '073520313X'), + (1963, '0130891347'), + (1964, '0130891347'), + (1965, '0465021433'), + (1966, '1565115228'), + (1159, '1565115228'), + (1967, '0380810336'), + (1968, '0809225034'), + (1969, '061819729X'), + (1970, '1565122798'), + (1971, '1565122798'), + (1972, '1581820542'), + (1973, '1581820542'), + (1974, '0425166791'), + (1975, '0452284058'), + (1976, '1564146731'), + (1977, '0767910079'), + (270, '0486401464'), + (94, '0880841109'), + (648, '0811201090'), + (1978, '0140621407'), + (82, '0140620281'), + (1979, '0201895293'), + (1980, '0201895293'), + (1981, '1585420611'), + (56, '0553211978'), + (1982, '0553274503'), + (235, '0440224659'), + (1983, '1841492086'), + (1984, '0345308239'), + (1985, '0330357190'), + (206, '0413537900'), + (1986, '1860467776'), + (1987, '0671757059'), + (1988, '0671511424'), + (145, '0425133540'), + (1989, '0743469801'), + (1990, '0590110225'), + (1991, '0835902242'), + (906, '0425173755'), + (906, '0451199871'), + (1992, '0963144839'), + (1993, '0373196903'), + (928, '0373196962'), + (351, '0671822209'), + (568, '0064409430'), + (914, '0380752107'), + (346, '0425194493'), + (1994, '0531103099'), + (1995, '0380728125'), + (397, '0671722816'), + (794, '1563521024'), + (1996, '0312267819'), + (1997, '0842361715'), + (1998, '0446527289'), + (1999, '0743457900'), + (1410, '0394830148'), + (1411, '0394830148'), + (59, '0345384350'), + (179, '0060175532'), + (2000, '0811200701'), + (2001, '0671023373'), + (7, '0679748083'), + (2002, '0830819223'), + (61, '0425175405'), + (2003, '0380731851'), + (2004, '0749930721'), + (2005, '0380009560'), + (2006, '0380009560'), + (944, '0345298365'), + (2007, '0380776510'), + (2008, '1570422826'), + (2009, '1570422826'), + (2010, '1570422826'), + (1771, '2070368076'), + (1328, '0312874995'), + (2011, '0425185702'), + (2012, '0425185702'), + (2013, '0886771560'), + (2014, '0684862719'), + (1455, '0552998338'), + (2015, '051748904X'), + (2016, '051748904X'), + (2017, '087226002X'), + (2018, '1855853906'), + (2019, '1850630127'), + (2020, '1850630127'), + (256, '0385304366'), + (256, '0385299842'), + (2021, '1555910408'), + (2022, '1555910408'), + (2023, '071411393X'), + (2024, '0713723076'), + (2025, '0713723076'), + (2026, '0486243451'), + (1998, '0684859262'), + (2027, '0684836491'), + (2028, '0671614460'), + (1628, '0345452550'), + (2029, '0399147357'), + (2030, '0740704532'), + (2029, '0836221974'), + (2029, '0836228790'), + (2029, '0836221966'), + (2029, '0836232232'), + (1628, '0345452534'), + (2031, '0312717415'), + (2032, '0312717415'), + (129, '0316602051'), + (737, '0316602051'), + (552, '0688156126'), + (2033, '1552976246'), + (2034, '1552976246'), + (2035, '1552976246'), + (2036, '0440221420'), + (2037, '0553573977'), + (2038, '0684867583'), + (2039, '0684867583'), + (142, '0451197879'), + (1337, '0380796090'), + (536, '0446604666'), + (2040, '0312860951'), + (1327, '0312860951'), + (2041, '0340792655'), + (39, '0061015725'), + (2042, '0593043995'), + (2043, '1855681870'), + (59, '0553579754'), + (2044, '0425181200'), + (2045, '0425181200'), + (115, '0451163494'), + (2043, '0425157164'), + (1013, '0449221482'), + (889, '0316154067'), + (889, '0312958455'), + (2046, '0515120863'), + (94, '0553279912'), + (39, '0345353145'), + (1001, '0553348973'), + (152, '0446516538'), + (24, '0440214041'), + (39, '0679446486'), + (2047, '0802116825'), + (2048, '0846705672'), + (2049, '0841502439'), + (664, '0380717972'), + (2050, '0312028784'), + (2051, '0807079200'), + (2052, '0878670319'), + (2053, '0896082172'), + (2054, '0226067114'), + (2055, '0393011224'), + (2056, '0060167084'), + (2057, '0415907411'), + (2058, '0415907411'), + (2059, '0415907411'), + (2060, '0472095978'), + (2061, '1565842103'), + (2062, '0385239068'), + (2063, '0385239068'), + (2064, '0525943730'), + (2065, '0802130259'), + (2066, '0802130259'), + (2067, '0802130259'), + (2068, '0877736510'), + (2069, '0151002231'), + (2070, '1895857058'), + (2071, '1895857058'), + (2072, '1895857058'), + (2073, '0525480374'), + (2074, '0812822625'), + (2075, '0890876096'), + (2076, '0890876096'), + (2077, '1560238763'), + (2078, '0062507567'), + (199, '0553476580'), + (2079, '076071150X'), + (2080, '1561707236'), + (2079, '1561707244'), + (2079, '1561706213'), + (2081, '1561706213'), + (2082, '0525945040'), + (2079, '0525945040'), + (2083, '0743400720'), + (2084, '0553274384'), + (2085, '1880032627'), + (1273, '0915811898'), + (389, '0385315287'), + (389, '0440108268'), + (389, '0440204321'), + (389, '044020562X'), + (2007, '0446676489'), + (2086, '1577310454'), + (2087, '1577310454'), + (2088, '1577310454'), + (180, '0140298479'), + (2089, '0694524638'), + (2088, '0694524638'), + (2090, '0912365579'), + (2091, '1882591275'), + (2092, '0811812006'), + (2093, '0809237628'), + (2094, '0809237601'), + (2092, '0806514094'), + (2095, '0786860642'), + (2093, '0671777351'), + (2096, '067084487X'), + (357, '067084487X'), + (2097, '0821211226'), + (2098, '0062508482'), + (2099, '0062508482'), + (2100, '0062508482'), + (2101, '0912776412'), + (2102, '0892132701'), + (2103, '0553255959'), + (1263, '0385484100'), + (2104, '0140422226'), + (2105, '0140422226'), + (2106, '0062509594'), + (2107, '0062509594'), + (2108, '0062509594'), + (2109, '0446673714'), + (2110, '0062500287'), + (2084, '1577311868'), + (199, '0062513346'), + (2111, '0030020786'), + (2112, '0030020786'), + (2113, '0030020786'), + (2114, '0133502813'), + (2115, '0133502813'), + (2116, '0716724022'), + (777, '0525462325'), + (1897, '0525462325'), + (994, '0060256664'), + (2117, '0794505007'), + (2118, '0794505007'), + (2119, '0786889020'), + (2120, '0786861320'), + (327, '0688149790'), + (2121, '0671519751'), + (2122, '0399505962'), + (2123, '0812090381'), + (2124, '156305700X'), + (2125, '0889652066'), + (1017, '0889652066'), + (2126, '0140386645'), + (574, '0345337662'), + (574, '0345351525'), + (2127, '0553205587'), + (1013, '0449003787'), + (2128, '0867202076'), + (2129, '0867202076'), + (2130, '0716723980'), + (2131, '0716723980'), + (2132, '0716723980'), + (2133, '0765347539'), + (2134, '0965921506'), + (2135, '0471485527'), + (2132, '0765345048'), + (712, '0385265700'), + (2136, '0156935805'), + (2137, '0713442549'), + (2138, '094547069X'), + (2139, '094547069X'), + (2140, '0486293556'), + (2141, '0020083513'), + (2142, '0020083513'), + (2143, '0140376410'), + (2144, '0452281296'), + (814, '1573229326'), + (2145, '038072930X'), + (2146, '068483376X'), + (2147, '068484270X'), + (2148, '0316754315'), + (2149, '0671672576'), + (2150, '0671672576'), + (2151, '0679743243'), + (2152, '0151003394'), + (2153, '0151003394'), + (2154, '0151003394'), + (24, '0385424736'), + (2155, '0060923717'), + (2156, '0060923717'), + (2157, '0060923717'), + (989, '0671617028'), + (543, '0440224772'), + (1804, '0345406036'), + (2158, '0871132389'), + (2159, '0345421825'), + (2160, '0061057983'), + (1821, '0373245513'), + (2161, '0525440631'), + (2162, '0373196504'), + (2163, '0425130312'), + (2164, '0373123515'), + (2165, '0373123531'), + (24, '0375433465'), + (914, '0380752123'), + (906, '067170463X'), + (1733, '0671543180'), + (906, '067170091X'), + (906, '0671705997'), + (906, '0671704664'), + (2166, '0373805217'), + (1733, '0671696513'), + (2167, '0373123086'), + (403, '0140390839'), + (2168, '0140390839'), + (932, '0373123523'), + (2169, '0821758179'), + (2170, '0821758179'), + (2171, '0821758179'), + (2172, '0821758179'), + (2006, '0380896931'), + (2173, '0971942315'), + (2174, '3455059554'), + (1109, '0553275860'), + (2175, '0553275860'), + (133, '0739307312'), + (2176, '0739307312'), + (1209, '3423105518'), + (2177, '3423105518'), + (2178, '0812090284'), + (2179, '0812090284'), + (2180, '0590254715'), + (2181, '0449210073'), + (236, '0446605239'), + (369, '0553295977'), + (2182, '0380470845'), + (2183, '0380715309'), + (240, '0553291025'), + (287, '0812549295'), + (2184, '0812549295'), + (891, '0440162041'), + (1092, '0671739778'), + (2185, '0679770232'), + (921, '0312875495'), + (2186, '0553130285'), + (1245, '0440212723'), + (2187, '0061054267'), + (2188, '0553299743'), + (1244, '0671016768'), + (2189, '0553276735'), + (937, '0786889047'), + (1546, '0380720191'), + (230, '0380898179'), + (2190, '0345314247'), + (2191, '0671646575'), + (199, '0060955775'), + (2192, '0679723374'), + (2193, '0679723374'), + (2194, '0716744481'), + (2195, '0395629497'), + (2196, '0395629497'), + (2197, '0140259988'), + (2198, '0140259988'), + (2199, '0743458036'), + (2200, '0743458036'), + (2201, '0441225691'), + (2202, '0671721720'), + (2203, '0679745963'), + (2204, '0679745963'), + (2201, '0671875965'), + (1759, '0142003409'), + (2205, '0671577727'), + (256, '0451451686'), + (2206, '068486780X'), + (1045, '0743224574'), + (1987, '0671010115'), + (60, '0671004549'), + (2207, '0375509283'), + (2208, '081297106X'), + (2209, '0312422601'), + (2210, '0802139256'), + (2211, '0553565915'), + (2212, '0553565915'), + (565, '055356160X'), + (2213, '0439240700'), + (2214, '0439240700'), + (795, '0345317580'), + (795, '0345335287'), + (795, '0345362276'), + (1491, '0373512066'), + (602, '0812505042'), + (602, '0486270718'), + (1523, '0140022651'), + (2215, '0140022651'), + (2216, '1558504184'), + (597, '0590629808'), + (2217, '0590629778'), + (2179, '059046678X'), + (2218, '0671740903'), + (2217, '0671740881'), + (2219, '0380570009'), + (2220, '0380570009'), + (2221, '0380570009'), + (2222, '0451077237'), + (2223, '0807842613'), + (2224, '0345283554'), + (2225, '0345260627'), + (2226, '0345283929'), + (2227, '068808527X'), + (2228, '0929634063'), + (2229, '0898863538'), + (2230, '0898863538'), + (2228, '0679023755'), + (2231, '0394707745'), + (2232, '042516540X'), + (1298, '0671695304'), + (183, '0515134384'), + (183, '051512463X'), + (1428, '0671529714'), + (1428, '0671751174'), + (2233, '0671001868'), + (2234, '0671001868'), + (795, '0345375580'), + (2235, '0671802283'), + (796, '067166865X'), + (2236, '067166865X'), + (2237, '0553492411'), + (2238, '0590109715'), + (597, '0590629786'), + (597, '0590629794'), + (2239, '0439164567'), + (2240, '0590448595'), + (2241, '0590448595'), + (2242, '0590448323'), + (2241, '0590448315'), + (2243, '0553295691'), + (2242, '0553562754'), + (369, '0515120618'), + (152, '0971766711'), + (2244, '0201731355'), + (1359, '0380812029'), + (2245, '1551668424'), + (1116, '0553583077'), + (2246, '0804119740'), + (2247, '0446611107'), + (2244, '1551669463'), + (743, '0821772252'), + (2248, '0060009241'), + (2249, '0380819619'), + (2250, '1551668521'), + (2251, '0312989202'), + (584, '0451208293'), + (2252, '084395051X'), + (2244, '1551665964'), + (2253, '0843950676'), + (2254, '0451208153'), + (2255, '0060001453'), + (1359, '0060002050'), + (2163, '0373123213'), + (2256, '0843951346'), + (2257, '1551666766'), + (2258, '1551666855'), + (2251, '0451208412'), + (2259, '0061032093'), + (2260, '0312989431'), + (2261, '0446611298'), + (2262, '0843952059'), + (2263, '0380812975'), + (2264, '0345447174'), + (2265, '0553583565'), + (2266, '0804119953'), + (2267, '0843950803'), + (2268, '0553583905'), + (2269, '0373292228'), + (2270, '0060502312'), + (2271, '0743436830'), + (2272, '1551668920'), + (2254, '0060001445'), + (2273, '0451206754'), + (2246, '0440236401'), + (2006, '038081479X'), + (2251, '0843949635'), + (2252, '0843949724'), + (2274, '0821771205'), + (2275, '0312979495'), + (2276, '0440235960'), + (2277, '0380811065'), + (543, '0440224055'), + (1073, '0140255087'), + (2278, '0684866048'), + (2279, '0688164307'), + (2280, '0060392703'), + (2281, '0671743228'), + (2282, '0385483813'), + (2283, '1556590415'), + (2284, '0399517405'), + (2285, '1885171013'), + (2286, '1583940677'), + (2287, '0804110867'), + (2288, '0446400688'), + (269, '0425102319'), + (2289, '039304856X'), + (183, '0399143335'), + (2290, '0962455741'), + (2182, '0441001866'), + (2182, '0441000312'), + (183, '0515118249'), + (2291, '0743456823'), + (2292, '0312311354'), + (2293, '0671743562'), + (165, '0385335830'), + (2294, '0743262174'), + (369, '0515130389'), + (612, '080411935X'), + (760, '0142004235'), + (369, '0515135062'), + (2295, '0595197124'), + (2296, '0595197124'), + (1814, '0689859376'), + (2297, '0689859376'), + (2296, '0689859376'), + (2298, '1563524317'), + (1505, '0140065008'), + (2299, '0156881802'), + (2300, '0156881802'), + (1704, '0006476333'), + (2301, '3257233027'), + (2300, '325723273X'), + (2302, '0743412028'), + (254, '3442429439'), + (2303, '3442429439'), + (1441, '0061056774'), + (2304, '0061056774'), + (634, '0425169693'), + (413, '0452269571'), + (369, '051513287X'), + (732, '0618002219'), + (632, '0553576399'), + (2305, '0451458370'), + (632, '0441374239'), + (2029, '0887307884'), + (2306, '0252068505'), + (2307, '0804108447'), + (2308, '0671721046'), + (1186, '0441117732'), + (632, '0553576429'), + (2309, '0915035170'), + (2310, '0915035170'), + (2311, '0915035170'), + (2312, '0060914254'), + (632, '0441003702'), + (2313, '0886776155'), + (1186, '055329461X'), + (632, '055329461X'), + (632, '055357549X'), + (2314, '0553373803'), + (208, '0060392452'), + (1765, '1568650418'), + (433, '0451455789'), + (2315, '0963401661'), + (2316, '0963401661'), + (2317, '1566393523'), + (2318, '0153895152'), + (2319, '0345412451'), + (1824, '0590353403'), + (1825, '0590353403'), + (2320, '0671877283'), + (2321, '0941104184'), + (1776, '0380815931'), + (2322, '0930878132'), + (2323, '0932130097'), + (133, '0312263120'), + (208, '0446532231'), + (2324, '0806511605'), + (2325, '0007103999'), + (2306, '0671877143'), + (2326, '0671877143'), + (2327, '0886777844'), + (2328, '0875424961'), + (2329, '089281313X'), + (2330, '0877285314'), + (1898, '0765341840'), + (2331, '0380789116'), + (2332, '2877141667'), + (2333, '0312243359'), + (2334, '2742702458'), + (2335, '2253182389'), + (2336, '0385498802'), + (2337, '0141002077'), + (192, '0394757653'), + (2338, '0812579569'), + (1180, '0898655293'), + (330, '0449904628'), + (2339, '0831750065'), + (2340, '0446674338'), + (2341, '0449702936'), + (2340, '0449702146'), + (2340, '0449701301'), + (2340, '0449703347'), + (2340, '0590477323'), + (2340, '0449701875'), + (2340, '0590471570'), + (2340, '0449702545'), + (2342, '0156005778'), + (2343, '0375727434'), + (2344, '1550223968'), + (517, '0312291639'), + (518, '0312291639'), + (270, '014043187X'), + (2345, '014043187X'), + (59, '0425101452'), + (2346, '0192816489'), + (2347, '0192816489'), + (2348, '189251415X'), + (2349, '014018869X'), + (2350, '1401068049'), + (2351, '2070374637'), + (2352, '2070374637'), + (2353, '2070374637'), + (94, '2890377741'), + (2354, '0375505296'), + (2355, '3423350024'), + (2356, '034536662X'), + (1001, '0553348981'), + (2357, '0486251772'), + (2358, '0671541013'), + (244, '0684874350'), + (2359, '0451207580'), + (129, '0446611212'), + (2360, '0316168688'), + (25, '0452264790'), + (2361, '0679448802'), + (2362, '0425189082'), + (2363, '1566492785'), + (2364, '0553254456'), + (2365, '0553130250'), + (2366, '0451451279'), + (2367, '0441816533'), + (2368, '0879977361'), + (2369, '0671002384'), + (2370, '0380561433'), + (2371, '0879831227'), + (571, '0425155943'), + (1164, '0553240307'), + (716, '3257229534'), + (1060, '0553144286'), + (24, '0440241537'), + (574, '034538475X'), + (2372, '0671004247'), + (2373, '0671004247'), + (122, '0671002406'), + (2374, '0671006754'), + (309, '055327418X'), + (330, '0345419995'), + (2375, '0345388674'), + (2376, '0345277937'), + (2377, '0671824171'), + (2378, '0441354955'), + (2379, '0879977981'), + (2380, '0879977981'), + (2381, '0441239196'), + (2382, '0441239196'), + (803, '0671822845'), + (2383, '0671822845'), + (2384, '0880387157'), + (2385, '0880387157'), + (2386, '0451163036'), + (1093, '0394718224'), + (2387, '0345280229'), + (2388, '0345280229'), + (2389, '0345280229'), + (2390, '0875421989'), + (2391, '0875421989'), + (2392, '087100240X'), + (2393, '0874771412'), + (2394, '0886777631'), + (59, '0425098648'), + (2395, '0061008427'), + (59, '0425181103'), + (2396, '0786001690'), + (227, '0380718340'), + (142, '0451153553'), + (1352, '0142001805'), + (1397, '0380014033'), + (2397, '0553277839'), + (51, '0375706062'), + (2398, '0060981180'), + (2399, '0061051098'), + (61, '0425147622'), + (2028, '0451180410'), + (2400, '0425143341'), + (1784, '0446360856'), + (2401, '1593100825'), + (2402, '1593100825'), + (2403, '1593100825'), + (2404, '1593100825'), + (2405, '1591451124'), + (2406, '0800758579'), + (818, '0812589831'), + (819, '0812589831'), + (2251, '0451212193'), + (2407, '1593101678'), + (2408, '0312993560'), + (2409, '0373791429'), + (2410, '0373227787'), + (2411, '037327372X'), + (2412, '0373273711'), + (2006, '0380400480'), + (2413, '0964894203'), + (2414, '0964894203'), + (2415, '0964894203'), + (2416, '0964894203'), + (2417, '037327369X'), + (2418, '1551666685'), + (2417, '0778320227'), + (59, '0553582763'), + (59, '0425188809'), + (59, '0425092178'), + (59, '0345384369'), + (59, '034539657X'), + (2293, '0020532105'), + (2419, '0671623931'), + (665, '0020519109'), + (59, '0425144429'), + (2224, '0345468392'), + (1323, '0312305060'), + (2420, '0743493540'), + (2421, '0821770594'), + (2422, '0310466628'), + (2257, '0446363510'), + (2423, '037329168X'), + (2271, '0440206707'), + (1112, '0425144569'), + (2420, '0821764462'), + (1600, '0451204948'), + (56, '0486290492'), + (859, '156619301X'), + (2424, '0060175966'), + (145, '0399144137'), + (2425, '0743436741'), + (368, '0330352253'), + (252, '0609600567'), + (2426, '0786404019'), + (2427, '034545104X'), + (2428, '0394756827'), + (2429, '0300069049'), + (2430, '0300069049'), + (7, '0399146431'), + (2431, '0312186754'), + (873, '0312876513'), + (2432, '080901548X'), + (2433, '080901548X'), + (2434, '080901548X'), + (2435, '080901548X'), + (2436, '0803287100'), + (2437, '0879520388'), + (2438, '0520077806'), + (2439, '0295955252'), + (2440, '0824811720'), + (1767, '0385482388'), + (2441, '0312275560'), + (2442, '0820319627'), + (2443, '0820319627'), + (2444, '0820319627'), + (2445, '0767901266'), + (2446, '0385470142'), + (2447, '0870238566'), + (2448, '0870238566'), + (2449, '0870238566'), + (2450, '0870238566'), + (2451, '1558850481'), + (2452, '0679733760'), + (2453, '0395874653'), + (7, '0399141146'), + (1575, '0375706771'), + (2454, '0451525078'), + (2455, '0679722319'), + (2456, '0553213601'), + (2457, '0553213601'), + (1125, '0679745580'), + (2458, '0679741410'), + (2459, '0679729259'), + (2460, '0679729259'), + (2461, '0679729259'), + (25, '0452260116'), + (2462, '0812533550'), + (568, '0020442602'), + (1704, '0312978367'), + (2463, '038079893X'), + (2464, '038079893X'), + (1300, '0061098019'), + (2465, '0061098019'), + (2466, '0425177696'), + (1898, '0812517725'), + (256, '0380818191'), + (2467, '9721013412'), + (2368, '074346771X'), + (2468, '0399134883'), + (2469, '0316037443'), + (2470, '0316037443'), + (2471, '1878067745'), + (59, '0399138749'), + (2472, '0571069134'), + (2473, '0811816583'), + (2474, '0811816583'), + (2475, '1588512681'), + (1360, '1573228745'), + (2476, '0446528757'), + (1315, '0451191145'), + (1961, '0136714897'), + (720, '0689823517'), + (2477, '0689823517'), + (2478, '0875093663'), + (2418, '0671510126'), + (2479, '0671510126'), + (843, '0440403278'), + (888, '0803722907'), + (465, '0060987561'), + (2480, '0842314296'), + (2481, '1880089858'), + (1432, '0312265867'), + (2482, '055328424X'), + (2483, '0373250290'), + (2484, '1844262553'), + (2485, '3442411580'), + (2486, '3548600867'), + (1706, '3596124166'), + (2487, '3596124166'), + (2486, '3596124166'), + (2488, '3257227809'), + (180, '344244392X'), + (2489, '344244392X'), + (2490, '3546001575'), + (2491, '3546001575'), + (323, '0525945172'), + (2492, '3462029916'), + (2493, '3423203668'), + (2494, '3423203668'), + (2492, '3423204206'), + (2493, '3423204206'), + (1374, '0152008772'), + (1291, '0312150601'), + (2495, '0671899619'), + (58, '0061099694'), + (128, '0446603309'), + (252, '0345302745'), + (1194, '0671881957'), + (2496, '0786881852'), + (2497, '0310240972'), + (1366, '0440170370'), + (290, '034524575X'), + (1628, '0345413873'), + (552, '0380726262'), + (1194, '0671881965'), + (1194, '0671881981'), + (1194, '0671881930'), + (1194, '0671881949'), + (2498, '0590419293'), + (122, '0671896768'), + (746, '0064410129'), + (747, '0064410129'), + (2499, '0064410129'), + (2500, '0553267736'), + (2501, '055325636X'), + (2502, '0553254723'), + (2503, '0553254723'), + (1876, '0553801309'), + (2504, '0445210214'), + (1396, '0375719350'), + (2505, '0345334302'), + (2506, '0345334302'), + (2507, '0380773945'), + (2508, '0345373413'), + (252, '0345348176'), + (2509, '0679802614'), + (2239, '0590428098'), + (2510, '0671702920'), + (2511, '0380757893'), + (1298, '0440400759'), + (2512, '0590414976'), + (1323, '0684874318'), + (1011, '037570387X'), + (2513, '0451452925'), + (2514, '0451452925'), + (1523, '1559029838'), + (2515, '0590414658'), + (1194, '0671674919'), + (2516, '0441048862'), + (2517, '0553271547'), + (2518, '0553272004'), + (2519, '0451450787'), + (2518, '0451450876'), + (2518, '0451450825'), + (2520, '0451452542'), + (2521, '0451453026'), + (430, '0451453026'), + (2518, '0451453727'), + (2519, '0451453697'), + (2522, '0451453700'), + (2523, '0451456998'), + (860, '0451459954'), + (2524, '0451457471'), + (2525, '0451453689'), + (2526, '0451457374'), + (2527, '0451451899'), + (2520, '0451451996'), + (2528, '0451453719'), + (2524, '0451452380'), + (2522, '0451458397'), + (2523, '0451458184'), + (2529, '0399143815'), + (2530, '0441004911'), + (1695, '0671578375'), + (2531, '0440234948'), + (2532, '0671023187'), + (2533, '0395390338'), + (2534, '0395390338'), + (2535, '0395390338'), + (2536, '0679746048'), + (868, '0684803143'), + (867, '0451459245'), + (2537, '0743417720'), + (175, '0446610100'), + (2538, '1857027795'), + (231, '0440216745'), + (889, '3453151720'), + (2539, '344242979X'), + (2540, '344242979X'), + (2541, '3423241012'), + (1197, '3423202343'), + (1432, '0312966970'), + (2542, '0671730177'), + (2543, '0671568485'), + (2544, '0345352238'), + (433, '0345334310'), + (2545, '0671876937'), + (2544, '0671876015'), + (187, '0812533666'), + (2546, '0893757837'), + (2547, '1575663104'), + (2548, '0679766758'), + (2549, '0874869226'), + (2550, '0967224918'), + (2551, '3492215416'), + (2552, '3499431009'), + (2553, '3499431009'), + (2554, '3442440246'), + (2555, '3746618959'), + (2556, '3746618959'), + (2557, '3257228449'), + (2558, '3570204758'), + (2559, '3548680291'), + (2560, '3442450144'), + (2561, '3442450144'), + (2562, '3442727758'), + (2563, '3442727758'), + (2564, '3426620685'), + (2565, '3596505429'), + (2566, '0307100227'), + (2567, '0886251788'), + (2568, '1590383141'), + (2569, '0061066591'), + (2233, '0671522728'), + (2570, '0816735786'), + (2571, '0689835752'), + (2570, '0689835752'), + (2572, '0152017976'), + (2571, '0152017984'), + (2573, '3596271088'), + (2572, '3596270952'), + (2574, '3596270952'), + (2575, '3596270952'), + (367, '0394577736'), + (1803, '0151104506'), + (2576, '0425175006'), + (2577, '0345426274'), + (2578, '0425186857'), + (1754, '0671003518'), + (369, '051512317X'), + (369, '0515114693'), + (2579, '0060507403'), + (960, '0679767398'), + (2580, '0679767398'), + (56, '0553212761'), + (1366, '0425174468'), + (1366, '044012929X'), + (351, '0345367421'), + (2581, '0060004533'), + (1362, '0380002930'), + (2582, '080215185X'), + (2583, '080215185X'), + (2584, '0718143043'), + (1014, '0670858722'), + (162, '0486280489'), + (181, '0486280489'), + (2585, '3821829494'), + (2586, '0312876912'), + (92, '0684148579'), + (2587, '0553562967'), + (2588, '0446363170'), + (247, '0804110379'), + (247, '0449003183'), + (247, '044920474X'), + (247, '0449244970'), + (247, '0449210952'), + (1432, '0312971346'), + (337, '0399147101'), + (2589, '0449146383'), + (2590, '0446603066'), + (2591, '0446603821'), + (2588, '0449149374'), + (1164, '0553378260'), + (2592, '1556614438'), + (873, '0312850581'), + (2593, '0140280553'), + (682, '0930031067'), + (364, '0060958022'), + (729, '0385474016'), + (2594, '0380804700'), + (2595, '0500280673'), + (2596, '048640076X'), + (2597, '0349109931'), + (2598, '156245191X'), + (2599, '0140124497'), + (2600, '0553210114'), + (2601, '0553210114'), + (2602, '0553210114'), + (1091, '0156658992'), + (1616, '037550334X'), + (2603, '3518396005'), + (1732, '3499123665'), + (2604, '3548603203'), + (2605, '3548603203'), + (1724, '2253057835'), + (2606, '2253057835'), + (2607, '2253057835'), + (2608, '2020482363'), + (2609, '2264027754'), + (2610, '2264027754'), + (2611, '2264032189'), + (239, '052594527X'), + (848, '3257204833'), + (2612, '3257204833'), + (2613, '3596156963'), + (711, '3596122279'), + (1052, '3404141970'), + (2614, '0029281113'), + (2615, '0517559552'), + (2616, '0345338545'), + (2617, '0375701044'), + (2618, '0316158720'), + (1099, '0007154615'), + (1757, '0375412824'), + (2619, '1558743669'), + (2620, '084236661X'), + (2619, '084236661X'), + (2621, '0708842100'), + (1428, '059045367X'), + (1428, '0590453661'), + (2622, '059042761X'), + (2623, '0385721617'), + (1471, '0694013226'), + (2624, '0694013226'), + (2182, '0441005764'), + (132, '0553582135'), + (971, '0671034065'), + (159, '0451410777'), + (2625, '0345418832'), + (2626, '0671026801'), + (2627, '0671024051'), + (2628, '0684869829'), + (131, '0399147772'), + (1625, '0440237416'), + (284, '0439101336'), + (827, '0439101336'), + (563, '0399147284'), + (60, '0684832380'), + (183, '039914210X'), + (2002, '0380730359'), + (2629, '0374166560'), + (142, '0451150635'), + (2630, '3596132762'), + (2631, '3492225926'), + (2632, '3492225926'), + (2633, '006018700X'), + (2634, '0684836483'), + (2635, '0571174450'), + (2636, '0312848846'), + (2637, '0442043244'), + (1041, '0880381736'), + (1042, '0880381736'), + (1473, '0767907817'), + (712, '0385720106'), + (1109, '0553208845'), + (2638, '0553208845'), + (1853, '0064400581'), + (2639, '0064400581'), + (2640, '0571142745'), + (2641, '0898861780'), + (2642, '1586480456'), + (2643, '030681188X'), + (2644, '0688155022'), + (2645, '088064219X'), + (2646, '088064219X'), + (2647, '088064219X'), + (480, '1904095399'), + (2648, '0743204158'), + (2649, '0310225116'), + (2650, '0800758358'), + (2651, '0385050755'), + (2652, '0842329218'), + (2653, '0072430958'), + (2654, '0072430958'), + (568, '0684823780'), + (967, '1576738442'), + (2655, '0449219283'), + (2656, '0553574965'), + (543, '0440225698'), + (24, '0440221471'), + (2657, '0394541545'), + (742, '0877958920'), + (2658, '0440235758'), + (2659, '0743216458'), + (1626, '0061007129'), + (606, '0886773784'), + (2660, '0440228204'), + (2661, '0883657635'), + (145, '0425143325'), + (145, '0425180964'), + (2662, '0812520793'), + (2663, '0312109393'), + (2664, '0399148019'), + (2665, '0373063121'), + (401, '0140620869'), + (1164, '0553801589'), + (373, '0743411250'), + (93, '0590129988'), + (2666, '0590129988'), + (536, '0375700684'), + (2667, '0375700684'), + (536, '0375700692'), + (2666, '0375700692'), + (2668, '0312955510'), + (795, '0345396537'), + (2669, '0452272092'), + (2670, '3518383620'), + (2671, '3518383620'), + (2672, '3518383620'), + (2673, '3499262967'), + (2674, '3407808836'), + (2675, '3407808836'), + (2676, '3423085711'), + (142, '3453159926'), + (2677, '3453159926'), + (2678, '3499137909'), + (2679, '3499137909'), + (2680, '0747563721'), + (2681, '0451518845'), + (247, '0441009700'), + (2682, '0345395190'), + (2683, '0553265571'), + (397, '0451521285'), + (2684, '0451521285'), + (2685, '0812566351'), + (150, '0060502258'), + (1755, '0440911710'), + (2686, '0140298444'), + (2687, '0395869463'), + (788, '0064407721'), + (2688, '0684859785'), + (2689, '0156806479'), + (2126, '0553266055'), + (2690, '0345441443'), + (2691, '0802132952'), + (2692, '0441535771'), + (1302, '0812552989'), + (397, '0451521358'), + (2693, '0451521358'), + (2694, '0140089365'), + (2695, '0451455126'), + (2696, '0451455126'), + (127, '0451455126'), + (2697, '0451455126'), + (2698, '038072345X'), + (2699, '1580173144'), + (76, '0671025570'), + (40, '0553274864'), + (2700, '0553274864'), + (2701, '1888604182'), + (2702, '0805064362'), + (2703, '0330336215'), + (256, '0061020710'), + (389, '0440204887'), + (732, '0345339681'), + (1118, '0812572297'), + (1539, '0345272579'), + (142, '0385199570'), + (2704, '0156007568'), + (2705, '0156007568'), + (2706, '3426776545'), + (2707, '3404701704'), + (2708, '3404701704'), + (2709, '3404701704'), + (2710, '3404701704'), + (2492, '3423205202'), + (2493, '3423205202'), + (24, '3453169247'), + (2711, '3442541751'), + (2492, '3423202947'), + (2712, '3423202947'), + (2713, '3423202947'), + (1176, '0374332657'), + (2714, '0553298496'), + (2713, '0553255371'), + (905, '0451528018'), + (247, '0451528018'), + (66, '0842321942'), + (65, '0842321942'), + (66, '0842321934'), + (65, '0842321934'), + (1748, '1562475878'), + (1748, '1562475193'), + (597, '0590997262'), + (597, '0590997297'), + (597, '0590762613'), + (597, '0590213040'), + (2212, '0439061652'), + (2715, '0439061652'), + (2716, '1584851651'), + (2717, '1584851651'), + (274, '0141304707'), + (2718, '0679866957'), + (2719, '0679866957'), + (2720, '059048575X'), + (2721, '059048575X'), + (2722, '059048575X'), + (2723, '044048474X'), + (1298, '044048474X'), + (2724, '1568657803'), + (2725, '0140309578'), + (2726, '0140309578'), + (2727, '0140309578'), + (1816, '0671028049'), + (2728, '0671019805'), + (2212, '0671016954'), + (2729, '0671019791'), + (1194, '044809553X'), + (2730, '0671023810'), + (2731, '1561565601'), + (1194, '0448095548'), + (1748, '1584850167'), + (2732, '1584850167'), + (2733, '1584850167'), + (2734, '1562470752'), + (2735, '1562470752'), + (1748, '1562470043'), + (2736, '1562470043'), + (1748, '1562475150'), + (2737, '1562475150'), + (2738, '1562475150'), + (2241, '0590448250'), + (1965, '0590386042'), + (1298, '0590386042'), + (2739, '0590386042'), + (2740, '0590386042'), + (2741, '0877191174'), + (2742, '0689817215'), + (2728, '0671015192'), + (2729, '0671024272'), + (410, '3453025423'), + (2743, '0553141406'), + (1699, '0517580497'), + (187, '0312863403'), + (2744, '086547642X'), + (17, '1558744630'), + (18, '1558744630'), + (1650, '1558744630'), + (2745, '0140380361'), + (2746, '0140380361'), + (39, '0394588169'), + (780, '0316143464'), + (543, '0385336322'), + (1366, '038533348X'), + (1265, '0553294385'), + (2747, '1573222623'), + (17, '1558746161'), + (18, '1558746161'), + (1650, '1558746161'), + (2748, '0553583867'), + (415, '0553214225'), + (2749, '0394569962'), + (2750, '0553568914'), + (433, '0671721291'), + (606, '0671721291'), + (1628, '0553563521'), + (1628, '055357230X'), + (61, '0399142282'), + (2751, '0140193383'), + (2752, '1890159018'), + (2753, '1890159018'), + (1265, '0446670626'), + (1048, '0446670626'), + (2754, '0590429892'), + (2755, '0782123813'), + (2756, '0782123813'), + (2757, '0782123813'), + (2754, '0782125352'), + (2758, '1561703249'), + (1898, '0812513711'), + (79, '0671004107'), + (1188, '0553213539'), + (2759, '9681905202'), + (1732, '0449200396'), + (2760, '0425173615'), + (2761, '0684186454'), + (2762, '006016185X'), + (2763, '006016185X'), + (2764, '0800730364'), + (2765, '0671766821'), + (2766, '0671766821'), + (989, '0671683993'), + (81, '0425098680'), + (1001, '0553245694'), + (2767, '0874775639'), + (2768, '0060907215'), + (2769, '0385302274'), + (888, '0670873683'), + (634, '0425168700'), + (252, '0375704906'), + (665, '0020519001'), + (2770, '0345426029'), + (1635, '0060973277'), + (2771, '0439064872'), + (1825, '0439064872'), + (2772, '0679751602'), + (389, '0688127169'), + (2773, '9722110195'), + (2774, '0714832529'), + (1298, '0440784743'), + (819, '0812551532'), + (2775, '1573247022'), + (2776, '1573247022'), + (1315, '0451132157'), + (2777, '055315754X'), + (2778, '0312263449'), + (2779, '0060904453'), + (2780, '0671734547'), + (2781, '0671734547'), + (2585, '0812580354'), + (25, '1400076218'), + (1195, '1573226106'), + (2782, '0373263678'), + (2680, '0553211404'), + (2783, '0679447393'), + (2784, '0380718650'), + (2785, '0373263953'), + (183, '0515102652'), + (1086, '0312263996'), + (232, '1400032717'), + (2786, '0595315070'), + (2787, '0595315070'), + (2788, '1594200106'), + (2789, '1594200106'), + (2790, '1589880013'), + (2791, '0553250515'), + (211, '0374100128'), + (25, '0452283868'), + (1801, '0446610380'), + (54, '0061097314'), + (2792, '074325547X'), + (2793, '158988003X'), + (2794, '158988003X'), + (2795, '1573222453'), + (201, '0140119906'), + (1322, '0140119906'), + (2796, '0395873347'), + (2586, '0446677426'), + (2797, '0446677426'), + (2798, '0393308839'), + (2799, '0393308839'), + (2800, '0393308839'), + (2801, '0451524039'), + (2802, '0451524039'), + (2803, '0451524039'), + (2804, '0060548533'), + (2805, '1885266480'), + (2806, '0060987049'), + (2807, '0571169341'), + (54, '0060504080'), + (2808, '0679749861'), + (1045, '0684853701'), + (2809, '0374521409'), + (2458, '0140445277'), + (2810, '0140445277'), + (1248, '0684831546'), + (1396, '0345404475'), + (2811, '0375404929'), + (408, '0684857820'), + (274, '0140051317'), + (1065, '0553291890'), + (2812, '0586213333'), + (2813, '2080707590'), + (2814, '2715223528'), + (2815, '2246567610'), + (2816, '2253153427'), + (425, '2883531714'), + (2817, '2266083309'), + (2818, '2266083309'), + (2819, '2070383326'), + (2820, '2290045799'), + (2821, '2264010991'), + (2822, '2264010991'), + (2656, '0449207331'), + (2823, '0449207331'), + (2824, '0060092645'), + (2825, '0451207378'), + (1359, '0061031755'), + (266, '0812551583'), + (2826, '0743410653'), + (2540, '0684864711'), + (2827, '1582430748'), + (2826, '1582430748'), + (2828, '0684846861'), + (2829, '0743200349'), + (2830, '0761521097'), + (2831, '0761521097'), + (2832, '0446674109'), + (2833, '0849937361'), + (2834, '0140124373'), + (2835, '1853811262'), + (142, '0450411435'), + (2836, '0749309636'), + (252, '0375704973'), + (533, '034543059X'), + (2837, '037541309X'), + (2838, '037541309X'), + (2839, '0752848011'), + (2840, '1580083412'), + (2841, '0140236716'), + (2842, '0380973499'), + (2843, '0380973499'), + (2844, '0380973499'), + (2658, '0684867184'), + (2845, '031224116X'), + (2846, '0385319622'), + (2847, '1557507422'), + (2848, '1557507422'), + (2849, '1853673110'), + (2850, '0917298551'), + (2851, '0891415947'), + (2852, '0804100039'), + (2853, '0440236304'), + (2658, '0440236304'), + (2854, '0060937114'), + (2855, '0060183527'), + (2856, '081288518X'), + (2857, '038549565X'), + (2858, '0743201981'), + (2859, '0767908244'), + (2658, '0743203399'), + (2860, '0688158943'), + (274, '0140018328'), + (2861, '0515100072'), + (565, '0553579606'), + (2862, '0553282069'), + (1265, '0385177259'), + (2863, '0373201451'), + (2864, '0373201451'), + (2865, '0373201451'), + (131, '0061013439'), + (2866, '0553080237'), + (1628, '0679459596'), + (2867, '0393038173'), + (1116, '0553578901'), + (2868, '0446605786'), + (2869, '0609609068'), + (2870, '0500011931'), + (2871, '0531150259'), + (2872, '0805205454'), + (2873, '0425193896'), + (2689, '0345382846'), + (2874, '0312115067'), + (1804, '0345413938'), + (1983, '0345283945'), + (2875, '0060934239'), + (2423, '006099486X'), + (2876, '0306809893'), + (2877, '0060185430'), + (2878, '0060987383'), + (2879, '0306811596'), + (306, '0306811596'), + (2880, '0789410842'), + (2881, '068485080X'), + (2882, '0684841347'), + (2883, '1567310265'), + (2884, '1567310265'), + (2885, '044652087X'), + (2886, '044652087X'), + (2887, '0878911774'), + (2888, '0060176628'), + (142, '0670855030'), + (60, '0517064626'), + (60, '0684810387'), + (2889, '0931580439'), + (2890, '0931580439'), + (2891, '0931580439'), + (60, '0440183057'), + (2892, '0380709333'), + (136, '0671769200'), + (1281, '0884042642'), + (1576, '0671250671'), + (2893, '0553067966'), + (2894, '0440507294'), + (82, '0553212141'), + (2895, '0671602705'), + (2896, '0843946385'), + (2897, '0439978238'), + (244, '0743200985'), + (59, '0425118703'), + (2898, '9510236756'), + (2899, '0349100136'), + (2900, '0349100136'), + (2901, '0349100136'), + (2902, '2070367622'), + (2903, '0811802981'), + (403, '0486415910'), + (181, '0486415910'), + (485, '0380792737'), + (2904, '1877856916'), + (2905, '0571200435'), + (2906, '0446604763'), + (2907, '0446604763'), + (265, '0060516283'), + (2908, '1590210301'), + (2909, '1573245216'), + (1936, '1567313671'), + (2910, '1878424424'), + (241, '0553109839'), + (2911, '0316639842'), + (2912, '0140296409'), + (2913, '3442442354'), + (2302, '3442442354'), + (1562, '0451192613'), + (2914, '0451138481'), + (2915, '0670891576'), + (138, '0395264758'), + (955, '3442431875'), + (2916, '3442431875'), + (1493, '0140259112'), + (2917, '0439339170'), + (574, '0375401598'), + (1704, '0553106678'), + (534, '0684802988'), + (151, '0061000043'), + (397, '0312055145'), + (2918, '0312055145'), + (2919, '0060617225'), + (2706, '0060617225'), + (2920, '0060617225'), + (2921, '1558214291'), + (2922, '0349100373'), + (2923, '0340542667'), + (1265, '0380699176'), + (2924, '0380699176'), + (84, '0380699176'), + (788, '0151006725'), + (2925, '0525946241'), + (2926, '0394751043'), + (2927, '2070388425'), + (2926, '2070427110'), + (2928, '2221081722'), + (2929, '2070388905'), + (2928, '2070756319'), + (2930, '2253138916'), + (1227, '0553263579'), + (2931, '0441007015'), + (1699, '0553289411'), + (433, '0553258559'), + (2932, '0394717406'), + (2933, '0141300272'), + (2934, '0141300272'), + (2935, '9500418606'), + (2936, '0316588032'), + (2937, '0671892479'), + (2695, '0060011912'), + (1997, '044661064X'), + (2938, '0553211803'), + (2939, '1551666839'), + (1365, '0374526893'), + (2940, '1583940634'), + (2941, '0805060200'), + (2132, '0312872402'), + (2132, '0312872399'), + (2132, '0765342987'), + (2942, '0451456726'), + (2941, '0451456718'), + (2941, '0451456734'), + (2943, '0571154913'), + (2944, '0446530522'), + (1726, '0330327917'), + (2945, '0786004886'), + (2946, '0446674346'), + (2947, '0060092963'), + (2254, '0060517611'), + (2948, '0553802550'), + (2949, '0425192695'), + (2950, '0760704767'), + (2287, '0760704767'), + (397, '0671468464'), + (2951, '0440241286'), + (415, '002026478X'), + (2952, '0743407148'), + (1244, '0345447840'), + (2940, '0312977360'), + (2953, '0312992203'), + (2954, '0312089449'), + (2955, '096558383X'), + (2956, '096558383X'), + (2957, '096558383X'), + (2958, '0140094903'), + (901, '034541103X'), + (2959, '0345425286'), + (2960, '0688179053'), + (2961, '0451201507'), + (2962, '0380760975'), + (2963, '0553569791'), + (410, '038000772X'), + (536, '044661193X'), + (2964, '0446401617'), + (1164, '0345428196'), + (1704, '0553208799'), + (2965, '0821767747'), + (1498, '0446512923'), + (2966, '0060955406'), + (2967, '0380793059'), + (1176, '0440419468'), + (9, '0446359866'), + (889, '0446602612'), + (129, '0446612790'), + (737, '0446612790'), + (873, '0671676253'), + (2968, '0671676253'), + (129, '0446606383'), + (956, '0553213148'), + (1422, '0380725584'), + (1423, '0380725584'), + (2969, '0679401032'), + (2968, '0394580567'), + (2968, '0394571029'), + (337, '0440128994'), + (2970, '0590455761'), + (9, '0446365505'), + (397, '0671531409'), + (2026, '002542730X'), + (2968, '0804111898'), + (2971, '0802132154'), + (2972, '0025473905'), + (2973, '0025473905'), + (555, '0451203895'), + (1265, '0345309014'), + (1265, '0345308999'), + (1265, '0345309006'), + (2808, '0553272535'), + (2974, '0553272535'), + (2975, '0553272535'), + (913, '0445406488'), + (2976, '0451209710'), + (867, '0312865031'), + (2977, '089190672X'), + (2978, '0449219631'), + (905, '0425104052'), + (2979, '0425181464'), + (62, '0425181464'), + (2980, '0515090298'), + (2981, '0345438353'), + (2982, '0060298774'), + (247, '0449212858'), + (962, '0812505018'), + (405, '0671888021'), + (2983, '0671888021'), + (2984, '0451458125'), + (1318, '0553213377'), + (2985, '0553213377'), + (2986, '0142002054'), + (70, '067150987X'), + (1065, '0345347951'), + (92, '0425037827'), + (1452, '0553574353'), + (2987, '0553574353'), + (2988, '0553142046'), + (2989, '0786889527'), + (1041, '0441006345'), + (606, '0671721380'), + (2990, '0671721380'), + (2991, '0446356018'), + (1065, '0446356018'), + (2992, '067174139X'), + (433, '0399136487'), + (2993, '0671720139'), + (974, '039480001X'), + (1001, '0345273303'), + (2994, '0446365661'), + (2995, '0749930888'), + (1272, '0440201101'), + (952, '1857022424'), + (2996, '1561383619'), + (1002, '068484477X'), + (2997, '0393317552'), + (142, '0684853515'), + (142, '0375504397'), + (580, '0375504397'), + (239, '0452283205'), + (2998, '0374524912'), + (780, '0316779237'), + (2999, '0875427324'), + (24, '0385421982'), + (848, '0892962275'), + (3000, '0393040135'), + (138, '0679402470'), + (3001, '055344171X'), + (3002, '0733801862'), + (3003, '0733801862'), + (392, '0875421180'), + (1628, '055308013X'), + (56, '0460872125'), + (3004, '0460872125'), + (3005, '2020606291'), + (1265, '0345311965'), + (142, '0451139739'), + (188, '0553236202'), + (340, '038072975X'), + (3006, '1885167172'), + (3007, '0452261589'), + (3008, '0374230072'), + (1803, '014006690X'), + (3009, '0060975210'), + (3010, '0374521352'), + (3011, '0374521352'), + (3012, '0226424197'), + (3013, '0316085251'), + (3014, '0874771641'), + (1490, '0451185560'), + (3015, '1853260401'), + (3016, '0773760555'), + (1699, '0553250531'), + (1699, '0553148001'), + (3017, '1579542085'), + (433, '0671720414'), + (2307, '0671720414'), + (433, '0345275675'), + (3018, '024189865X'), + (3019, '0773671358'), + (3020, '0773671358'), + (3021, '0553284460'), + (24, '0440213525'), + (142, '0451188462'), + (187, '034525855X'), + (433, '0441135560'), + (3022, '3789131202'), + (3023, '0195103793'), + (3024, '0195103793'), + (3025, '0816303630'), + (3026, '0811807282'), + (1214, '0671019449'), + (3027, '0152105328'), + (3028, '0152105328'), + (3029, '0152105328'), + (2498, '0060283122'), + (1824, '0439136350'), + (1825, '0439136350'), + (1211, '0671028367'), + (3030, '0028642333'), + (3031, '0440235642'), + (3032, '0330486705'), + (3033, '0670881872'), + (543, '0440111811'), + (257, '0064400557'), + (3034, '0064400557'), + (258, '0064400557'), + (3035, '067166607X'), + (3036, '0312870582'), + (1616, '3423123222'), + (3037, '3453064038'), + (3038, '3404122631'), + (3039, '3596134153'), + (3040, '3596134153'), + (24, '3453061187'), + (3041, '3453061187'), + (3042, '3423107421'), + (3043, '3423107421'), + (3044, '3453161394'), + (3045, '3579007335'), + (3046, '3579007335'), + (3047, '3257229372'), + (3048, '3257229372'), + (3049, '3453088530'), + (3050, '3453088530'), + (3051, '3453088530'), + (410, '345305136X'), + (3052, '3257224974'), + (3053, '3257224974'), + (3054, '3404139674'), + (3055, '3404139674'), + (3056, '3442353793'), + (1145, '3442353793'), + (3057, '3596129397'), + (3058, '3548257623'), + (3059, '3746613531'), + (3058, '3746618169'), + (3060, '9972847012'), + (3061, '9582700319'), + (3062, '3257228031'), + (913, '3548248845'), + (3063, '3548248845'), + (1019, '3446178694'), + (1020, '3446178694'), + (3064, '3453198840'), + (3065, '3453198840'), + (2398, '3404147294'), + (3066, '3746619394'), + (2556, '3426619857'), + (3067, '3499233045'), + (3068, '3404142624'), + (3069, '051604642X'), + (3070, '0380803151'), + (3071, '0553568728'), + (1441, '0553297988'), + (3072, '0671654209'), + (3073, '0671654209'), + (3074, '0671654209'), + (1281, '0884046818'), + (3075, '0345289072'), + (3076, '0671720406'), + (2223, '0345379802'), + (3077, '0886778697'), + (2201, '0743435346'), + (3078, '0743435346'), + (3079, '0743435346'), + (1597, '0679448594'), + (92, '0345313577'), + (60, '0671867172'), + (2759, '0425189104'), + (3080, '0061030635'), + (236, '0446613436'), + (237, '0449006530'), + (131, '006109157X'), + (543, '0440221315'), + (128, '0553576011'), + (3081, '0451205294'), + (436, '0345444892'), + (236, '0446527785'), + (436, '0375500685'), + (3082, '0375503218'), + (3083, '0755310047'), + (3084, '0752851950'), + (3085, '0747257574'), + (3086, '056353723X'), + (3087, '185326041X'), + (1555, '0312272057'), + (2487, '0142003190'), + (3088, '042518336X'), + (2770, '0613329740'), + (1824, '0613325419'), + (3089, '0613325419'), + (268, '156389470X'), + (3090, '156389470X'), + (3091, '0439551234'), + (3092, '058253531X'), + (1507, '0836218353'), + (3093, '2842772032'), + (1507, '0836204387'), + (3094, '0345441435'), + (3095, '0812504755'), + (3096, '0836217225'), + (3097, '0030181011'), + (622, '0064407055'), + (1773, '0553262505'), + (3098, '0689710887'), + (3097, '0689710879'), + (3099, '0689710879'), + (3097, '0020427859'), + (598, '031286258X'), + (3095, '0836217616'), + (1160, '0316107018'), + (3076, '0886777828'), + (1075, '0441068804'), + (1075, '0141309814'), + (1089, '0679032983'), + (1866, '0679408835'), + (408, '0316096199'), + (1024, '0689829655'), + (438, '059045899X'), + (439, '059045899X'), + (3100, '0385238614'), + (3101, '0758201605'), + (3102, '1561384755'), + (3103, '1561384755'), + (3104, '1561384755'), + (3105, '1562820575'), + (3106, '1562820575'), + (3107, '185854176X'), + (3108, '185854176X'), + (3109, '0786830425'), + (3110, '0786830425'), + (259, '088101270X'), + (3111, '0881012718'), + (3112, '0881012718'), + (3113, '0312272782'), + (3114, '044022831X'), + (3115, '1590522265'), + (3116, '1551669307'), + (3117, '060980202X'), + (3118, '0698113950'), + (3119, '043944246X'), + (3120, '043944246X'), + (3121, '0060954884'), + (3122, '0743422961'), + (3123, '0525946780'), + (3124, '1558534172'), + (3125, '0609807919'), + (863, '0060532149'), + (3126, '081296683X'), + (3127, '188517182X'), + (3128, '0820319198'), + (3129, '0446520829'), + (2482, '0373250525'), + (3130, '0811802272'), + (3131, '0811802272'), + (3132, '1871512417'), + (3131, '1871512417'), + (713, '042515517X'), + (3133, '037322348X'), + (3134, '0393317382'), + (3135, '0375713751'), + (3136, '0312272766'), + (3137, '0446526479'), + (3138, '068985546X'), + (3137, '0689855451'), + (3139, '0140240209'), + (3140, '0764525662'), + (3141, '0679771492'), + (3142, '0130743038'), + (3143, '1856273296'), + (66, '0842343253'), + (65, '0842343253'), + (3144, '0201406462'), + (3145, '1895636337'), + (1159, '0140131566'), + (633, '0446521442'), + (3146, '0062515802'), + (3147, '0684859777'), + (3146, '0684859769'), + (3148, '0609807080'), + (3149, '1556522126'), + (543, '0440224845'), + (1600, '0671864173'), + (3150, '0060959428'), + (369, '0373079613'), + (60, '0440200989'), + (60, '0671568175'), + (1013, '0449221504'), + (128, '0446607193'), + (1092, '0671705091'), + (2254, '0505522675'), + (3151, '0515124656'), + (369, '0373484003'), + (532, '0451198506'), + (543, '0440223237'), + (974, '0679882820'), + (3152, '0399226907'), + (17, '1558747109'), + (18, '1558747109'), + (3153, '1558747109'), + (3154, '1558747109'), + (3155, '0786884142'), + (3156, '0767905385'), + (3157, '0767905385'), + (136, '0671793551'), + (3158, '0553574302'), + (3159, '0440211263'), + (1704, '0553260111'), + (3160, '0380775840'), + (974, '0394900014'), + (3161, '0894803123'), + (3162, '0894803123'), + (3163, '0894803123'), + (2246, '0440225892'), + (2246, '0440236371'), + (3164, '1551660261'), + (1196, '1551665638'), + (3165, '0553575007'), + (3164, '0553563343'), + (3166, '0943233941'), + (3167, '0694014532'), + (937, '0743411439'), + (1096, '0553347233'), + (3168, '0385152922'), + (3169, '0767900383'), + (3170, '0786889055'), + (2035, '0440212626'), + (3171, '0553265415'), + (3172, '0553265415'), + (3173, '0449131793'), + (2593, '0380804697'), + (346, '0425178951'), + (3174, '038548562X'), + (3175, '038548562X'), + (244, '0684865742'), + (644, '0385313632'), + (3176, '0866119892'), + (3177, '0866119892'), + (3178, '0505523442'), + (230, '0380772469'), + (230, '0380899361'), + (1196, '0671728571'), + (3179, '067146969X'), + (3180, '0446392308'), + (3181, '0586207228'), + (3182, '0821762559'), + (3183, '0553275399'), + (1754, '0671034006'), + (145, '0425116840'), + (3184, '0882893327'), + (913, '0380817152'), + (1891, '0345302907'), + (3185, '0340565829'), + (145, '0425191184'), + (3186, '0872169014'), + (1198, '0399142991'), + (1507, '0836218221'), + (798, '067988288X'), + (2239, '0590251597'), + (3187, '0679885307'), + (2239, '0590251589'), + (2239, '0590227637'), + (3188, '0806903481'), + (2239, '0590224735'), + (274, '0141301074'), + (3189, '0671016792'), + (3190, '0448409313'), + (142, '0452278902'), + (142, '074343627X'), + (61, '039914465X'), + (17, '1558747699'), + (18, '1558747699'), + (3191, '1558747699'), + (142, '067102423X'), + (3192, '1891620487'), + (3193, '1891620487'), + (3194, '0060009225'), + (3193, '0380820870'), + (3193, '0380797399'), + (3195, '0060198524'), + (574, '0345334531'), + (3196, '0515103993'), + (3197, '1550130994'), + (3198, '0316316962'), + (3199, '0062506080'), + (3200, '0142001007'), + (1947, '0060920432'), + (3201, '0786884061'), + (3202, '0691005419'), + (1573, '0060505265'), + (3203, '0864427433'), + (3204, '0864427433'), + (3205, '0864424574'), + (3206, '0813812860'), + (3207, '0842372180'), + (3208, '0842372180'), + (3209, '0842372180'), + (142, '0399143947'), + (3210, '0066211085'), + (3211, '042517476X'), + (1625, '0440237262'), + (3212, '0380713330'), + (3213, '0195002237'), + (3214, '0195002237'), + (3215, '0195002237'), + (1505, '014004387X'), + (1519, '0895772620'), + (3216, '0895772620'), + (3166, '0517618141'), + (3217, '0192833871'), + (3218, '0192833871'), + (3219, '0192833871'), + (882, '0393960579'), + (3220, '0393960579'), + (82, '1551113074'), + (3221, '1551113074'), + (270, '0486264785'), + (1401, '0060809833'), + (1891, '0441172660'), + (3222, '0156711427'), + (1073, '0553206516'), + (285, '0553550039'), + (1213, '0345390458'), + (265, '0061091871'), + (2011, '0425090787'), + (3223, '1929317999'), + (3224, '0553268880'), + (3225, '0385008910'), + (1301, '0688042872'), + (3226, '0671027107'), + (346, '0399145869'), + (1005, '0375405429'), + (668, '0446521582'), + (356, '0151002630'), + (129, '0316666009'), + (3227, '0316890197'), + (2958, '0446675253'), + (3228, '0345451325'), + (1209, '0330284142'), + (176, '0345391810'), + (403, '0140620524'), + (1577, '0312186118'), + (1196, '0671516922'), + (3229, '1586607251'), + (3230, '0671015206'), + (3231, '0671015206'), + (3232, '0440216540'), + (436, '0449209598'), + (3233, '0140062599'), + (3234, '0582349168'), + (3235, '0140041079'), + (3236, '0140400117'), + (3237, '0140400117'), + (56, '0192815466'), + (3238, '0192815466'), + (85, '0140431357'), + (3239, '0140431357'), + (3240, '0140431357'), + (3241, '1575664054'), + (3240, '0451209117'), + (3240, '0743236777'), + (3242, '037348481X'), + (3243, '037348481X'), + (3244, '037348481X'), + (3245, '0553208314'), + (236, '0446611867'), + (279, '0385336179'), + (3246, '0972380698'), + (3247, '0972380698'), + (3248, '155054439X'), + (3249, '060980619X'), + (843, '0440900794'), + (3250, '0553560662'), + (369, '0373483880'), + (373, '0061042005'), + (415, '0425046117'), + (1706, '0156619180'), + (59, '0553582755'), + (3251, '0486282694'), + (181, '0486282694'), + (3252, '006101091X'), + (3253, '006101091X'), + (3254, '0452268060'), + (403, '0439099404'), + (1298, '0525405224'), + (465, '0671759213'), + (152, '044651652X'), + (407, '0312050631'), + (283, '0452254264'), + (2249, '0380786052'), + (128, '0446364282'), + (3255, '0385337272'), + (3256, '0140291903'), + (3257, '0142002267'), + (3258, '0671640925'), + (1179, '0425099644'), + (3259, '0960809600'), + (3260, '0439368030'), + (3261, '0439368030'), + (3262, '0785272984'), + (3263, '0060520221'), + (3264, '0590443518'), + (1024, '0440409942'), + (3265, '0590438069'), + (1422, '0380720132'), + (229, '0380720132'), + (3266, '1841952974'), + (3267, '1841952974'), + (3268, '0440967848'), + (65, '0842329277'), + (66, '0842329277'), + (66, '0842343296'), + (65, '0842343296'), + (1375, '0440439884'), + (66, '0842343288'), + (65, '0842343288'), + (3269, '0842343288'), + (1176, '0590424165'), + (257, '059030271X'), + (258, '059030271X'), + (732, '0345339738'), + (1024, '0440413761'), + (1428, '0590461001'), + (3270, '0688149588'), + (66, '0842343261'), + (65, '0842343261'), + (3268, '0842343261'), + (66, '084234327X'), + (65, '084234327X'), + (3268, '084234327X'), + (3271, '0395280060'), + (319, '0590451146'), + (3267, '0064407314'), + (3272, '0816707979'), + (3273, '034541036X'), + (991, '0517187760'), + (129, '0446679593'), + (81, '0679441557'), + (1936, '1567315658'), + (1597, '0849916518'), + (3274, '1565120310'), + (3275, '156512104X'), + (3276, '0446690295'), + (3277, '0446690295'), + (606, '0886774268'), + (606, '0886773520'), + (606, '0886774012'), + (3278, '1892065169'), + (3279, '0609808346'), + (3280, '0609808346'), + (26, '0609808346'), + (3281, '0307157857'), + (1505, '0141186151'), + (1787, '0141186151'), + (3282, '0451121902'), + (1553, '0679417796'), + (3283, '0684833662'), + (814, '1573225517'), + (3284, '0449909336'), + (3285, '1550548913'), + (3286, '1550548913'), + (3287, '0679311386'), + (427, '039396647X'), + (3288, '039396647X'), + (3289, '039396647X'), + (3290, '039396647X'), + (268, '0380973650'), + (3291, '0375414487'), + (3197, '0316346624'), + (3292, '0802130208'), + (3293, '0802130208'), + (3294, '0312988990'), + (3295, '0842373195'), + (3296, '0842373195'), + (3297, '0043510744'), + (3298, '0340821191'), + (3299, '0333906306'), + (3300, '0156004992'), + (1706, '0156628708'), + (2559, '0752844059'), + (644, '0440208459'), + (2559, '0752848224'), + (2559, '075285111X'), + (247, '0449208672'), + (1091, '0060808241'), + (346, '0380725835'), + (2287, '0751514012'), + (3301, '0751511056'), + (2287, '0751511056'), + (3302, '186941358X'), + (3303, '0886775876'), + (3304, '0451458680'), + (54, '0060199652'), + (1628, '034541389X'), + (3305, '0684871580'), + (3306, '0684871580'), + (3307, '0684871580'), + (2000, '0738203548'), + (3308, '0805033203'), + (1715, '0316284955'), + (78, '0801855926'), + (3309, '156352600X'), + (3310, '0679427651'), + (2748, '0345412214'), + (2748, '0345441702'), + (142, '0451147367'), + (3311, '0451147367'), + (3312, '0595168442'), + (3313, '044041668X'), + (2513, '0451170539'), + (351, '0375501371'), + (2981, '006447335X'), + (571, '0316155101'), + (1555, '0312283709'), + (250, '0060987529'), + (1726, '0312951426'), + (1726, '0312953615'), + (2825, '0671567829'), + (3314, '0670820555'), + (1001, '0553270931'), + (3315, '0449241114'), + (3316, '0394561236'), + (1403, '0375703764'), + (1876, '0553092626'), + (3317, '0812545133'), + (3318, '0812545133'), + (175, '0446523321'), + (2182, '0441004164'), + (3319, '0066620996'), + (3320, '0553277472'), + (3321, '0385494602'), + (1558, '0345433106'), + (3322, '0345443020'), + (244, '068487217X'), + (758, '0684853159'), + (3323, '1573228281'), + (1784, '0446608262'), + (3324, '0385503970'), + (3325, '0316120324'), + (490, '0440214432'), + (1939, '0440225779'), + (3326, '0385501676'), + (1209, '3446180850'), + (2176, '3446180850'), + (3327, '0312242735'), + (3328, '0440935741'), + (268, '0380804557'), + (1259, '3257229739'), + (3329, '3257229739'), + (24, '0099245027'), + (3330, '0970880812'), + (3331, '0595256775'), + (3332, '0741412780'), + (3333, '0684855380'), + (3334, '0525946233'), + (3335, '0399513000'), + (3336, '0399513000'), + (81, '0425161617'), + (3337, '0140149295'), + (1634, '0553565028'), + (3338, '0375410848'), + (3339, '0505520680'), + (3340, '0505520680'), + (919, '0373710348'), + (3341, '0451115457'), + (800, '0373079710'), + (281, '0861782356'), + (3342, '0515097039'), + (554, '0553560247'), + (3343, '0836135474'), + (3344, '0836135474'), + (3345, '0312974221'), + (330, '0345416600'), + (3346, '0684856476'), + (3347, '0800757734'), + (2029, '0887309100'), + (270, '1593080255'), + (3348, '1593080255'), + (723, '1400041988'), + (3349, '0151010633'), + (2453, '9504604730'), + (3350, '0802714358'), + (3351, '0802714358'), + (285, '9500720418'), + (2787, '950491036X'), + (3352, '0340697083'), + (3353, '2742739351'), + (3354, '2742739351'), + (3355, '2742739351'), + (3356, '0671008668'), + (213, '9509009059'), + (3357, '0312154542'), + (3358, '0312154542'), + (746, '0064408639'), + (747, '0064408639'), + (2498, '0064408639'), + (3359, '0954290100'), + (241, '0553295772'), + (3360, '0312858957'), + (92, '0345330129'), + (3361, '0743410246'), + (3362, '0743445643'), + (3363, '0743445643'), + (3364, '0743445627'), + (3365, '0743445600'), + (873, '0812575717'), + (1870, '0812575717'), + (3366, '0812575717'), + (1816, '0671026356'), + (1815, '0743427602'), + (1815, '0671039288'), + (3367, '0671026364'), + (2542, '0671526103'), + (3368, '0671526103'), + (3369, '0671526103'), + (2542, '0671021257'), + (3367, '0671021257'), + (3368, '0671021257'), + (2542, '067100882X'), + (3370, '067100882X'), + (3371, '067100882X'), + (2542, '0671008781'), + (3367, '0671008781'), + (3368, '0671008781'), + (3372, '2253007900'), + (3373, '2253007900'), + (2805, '0671874349'), + (1666, '0394838475'), + (3374, '0394838475'), + (3375, '0743439775'), + (3376, '1567311199'), + (2239, '0590482378'), + (2239, '0590482238'), + (3377, '0451179706'), + (536, '0449219410'), + (2583, '0446609781'), + (536, '0679454446'), + (369, '051512608X'), + (3378, '0373262329'), + (115, '0451124383'), + (3379, '1565122208'), + (109, '0312978332'), + (3380, '0345294459'), + (280, '0451408888'), + (1339, '0671524968'), + (3381, '0515115487'), + (3382, '1563841134'), + (490, '0060008776'), + (554, '0553574671'), + (1137, '0061057819'), + (3383, '0761513779'), + (3384, '1565078241'), + (3385, '0449908119'), + (1726, '0312956126'), + (231, '0385334729'), + (3386, '0805044698'), + (3387, '075050059X'), + (3388, '0140165525'), + (2487, '3257231393'), + (3389, '3257231393'), + (2029, '3453149874'), + (3390, '9681500601'), + (669, '067088300X'), + (1258, '0786869216'), + (734, '0670878103'), + (3391, '0446528382'), + (3392, '0446528382'), + (3393, '0943233437'), + (3394, '0943233437'), + (3165, '0943233437'), + (3395, '0375727345'), + (1024, '0156001454'), + (3396, '3440066738'), + (175, '0446608890'), + (2525, '0061059137'), + (3397, '0061059137'), + (3264, '059044316X'), + (3398, '0316781460'), + (3399, '0316781460'), + (346, '0425188787'), + (585, '0345382323'), + (1432, '0312983298'), + (3400, '0312983298'), + (3401, '0553270249'), + (3169, '0553275852'), + (501, '0440201330'), + (3402, '0449147398'), + (3403, '0747546215'), + (280, '0006513409'), + (641, '0312980345'), + (1092, '0743437640'), + (3115, '1551668912'), + (3404, '0688009387'), + (234, '0380017601'), + (3405, '0671024418'), + (3404, '067102440X'), + (3404, '0671024426'), + (3404, '0671024396'), + (2095, '0140346848'), + (357, '0140346848'), + (2095, '0140346031'), + (3406, '0140346031'), + (2095, '0613286626'), + (357, '0613286626'), + (3407, '0553568051'), + (145, '042515601X'), + (876, '042515601X'), + (3408, '042515601X'), + (3409, '0333782259'), + (3410, '0333782259'), + (3411, '0333782259'), + (52, '0435120964'), + (814, '0140293442'), + (3412, '0571097103'), + (3413, '0140293469'), + (3414, '0920668372'), + (3415, '0920668372'), + (1011, '0375703861'), + (3416, '0060391537'), + (715, '0156011042'), + (1060, '0812566637'), + (250, '0060391448'), + (1002, '0684829975'), + (142, '0451099648'), + (3417, '0671776975'), + (3418, '0440967694'), + (3419, '0060801115'), + (213, '0553149660'), + (462, '0425152251'), + (410, '0312924585'), + (2293, '0684718634'), + (3420, '0385479565'), + (3421, '0876056354'), + (3422, '0375714383'), + (3423, '0375714383'), + (973, '0441718213'), + (3424, '0385499094'), + (3425, '0385499094'), + (3426, '0743421574'), + (1232, '0140132708'), + (3427, '0312309295'), + (2544, '0671578103'), + (2326, '0756401364'), + (2326, '0886779758'), + (3428, '1931561230'), + (3429, '0807085464'), + (3430, '0807085464'), + (54, '0060504072'), + (176, '0345460952'), + (3431, '0312274920'), + (3432, '0007134495'), + (3327, '0440408903'), + (973, '038081658X'), + (973, '0380791978'), + (3433, '0345397800'), + (574, '0345409671'), + (3434, '0441007392'), + (3433, '0441006329'), + (973, '0380791986'), + (867, '0886771544'), + (3435, '0312974485'), + (3434, '0312979584'), + (1776, '0553380958'), + (3436, '0756400805'), + (3435, '0886779014'), + (3437, '0886779014'), + (3435, '0886776880'), + (3438, '0886776880'), + (3435, '0886775744'), + (3437, '0886775744'), + (732, '0395272238'), + (3439, '0380819007'), + (3438, '0380731800'), + (3440, '0142300608'), + (3441, '087951602X'), + (3442, '042518627X'), + (3438, '0380731797'), + (3443, '0970851715'), + (3444, '1557504644'), + (504, '081120958X'), + (3445, '081120958X'), + (3446, '0534525075'), + (3447, '0534525075'), + (2267, '0553583891'), + (3448, '0684849739'), + (3247, '0312171838'), + (3449, '0688175716'), + (3450, '0743467604'), + (1112, '0671042505'), + (3451, '0743205413'), + (2689, '0399147853'), + (3452, '0425162443'), + (3453, '0966482018'), + (1484, '1400060052'), + (3454, '0451181409'), + (3455, '0060505559'), + (3456, '0312104472'), + (1837, '1551667533'), + (3457, '0425183238'), + (3458, '0425183238'), + (458, '0553802240'), + (3115, '0373711646'), + (3459, '0345423291'), + (369, '0515132020'), + (3460, '0684864363'), + (369, '0515131229'), + (3461, '0451192974'), + (3462, '0451192974'), + (3463, '0446679364'), + (3464, '0345445732'), + (3465, '0553581430'), + (3466, '0451410157'), + (3467, '0373441320'), + (3468, '0373441320'), + (1497, '1551662906'), + (3469, '0373834748'), + (3470, '0373834748'), + (3471, '0373834748'), + (3472, '0843943319'), + (3473, '1570613818'), + (3474, '0743228022'), + (154, '0385494149'), + (460, '0312199368'), + (3475, '0312199430'), + (873, '1570089957'), + (3476, '0452282101'), + (3477, '0060193689'), + (3478, '048627263X'), + (3479, '0486270610'), + (3480, '0486270610'), + (1726, '0330330373'), + (3074, '0671318403'), + (3036, '0743440358'), + (220, '0571135390'), + (3481, '0571135390'), + (3482, '1557250219'), + (3483, '0451183746'), + (3484, '0316134317'), + (3485, '0316134317'), + (3486, '0789467747'), + (3487, '0789467747'), + (3488, '0789467747'), + (3489, '0071408398'), + (3490, '038079487X'), + (244, '0684872153'), + (614, '0684872153'), + (3491, '0060926317'), + (3492, '0961937904'), + (3493, '0961937904'), + (3494, '0140179755'), + (3495, '0571152813'), + (3496, '0140622500'), + (3497, '9038802986'), + (94, '0007101953'), + (1982, '1857238982'), + (3498, '380062236X'), + (211, '0312421273'), + (536, '0679454454'), + (714, '0743480562'), + (3499, '0312986211'), + (3500, '0778320294'), + (2747, '0425196453'), + (3501, '1575668572'), + (3502, '0821776126'), + (3503, '0821773429'), + (3504, '0060555882'), + (2276, '0380811081'), + (3505, '0373250592'), + (369, '0373285043'), + (346, '0399147020'), + (3506, '0062512668'), + (3507, '0062512668'), + (3508, '0440241162'), + (3509, '0439233844'), + (3510, '0785917136'), + (3511, '1930353006'), + (3512, '0874831121'), + (3511, '0874831121'), + (3513, '0874831121'), + (1258, '0786866586'), + (3514, '0140254749'), + (3515, '3250600520'), + (3516, '3446190295'), + (3517, '3250102342'), + (215, '342310001X'), + (3518, '3406426530'), + (3519, '3354005092'), + (3520, '3354005092'), + (3514, '3250300020'), + (3521, '3608958703'), + (822, '0061092029'), + (3522, '3718501473'), + (1704, '3453017978'), + (2188, '3492230466'), + (208, '3492045170'), + (3523, '3492045170'), + (209, '3492045170'), + (3524, '3492045170'), + (3525, '0072521309'), + (3526, '0072521309'), + (3527, '0072521309'), + (1191, '0679756973'), + (3528, '0517886685'), + (3529, '1570625190'), + (3530, '0670866563'), + (3531, '0375405046'), + (3532, '0316845442'), + (3533, '0140291725'), + (3534, '0029023106'), + (3535, '0802134254'), + (3536, '0688156819'), + (3537, '0762403004'), + (3538, '0140250840'), + (3539, '0679723226'), + (3540, '0679722645'), + (3541, '0380732181'), + (3542, '0156007754'), + (3543, '0156007754'), + (3544, '0553371010'), + (3545, '0553371010'), + (3546, '0553371010'), + (2805, '031205436X'), + (2912, '1573226521'), + (3547, '0671027638'), + (3548, '0385497091'), + (814, '1573226882'), + (814, '1573228214'), + (135, '0316780812'), + (3458, '0515119784'), + (3549, '0736909672'), + (3550, '0786011963'), + (3551, '0811825558'), + (3552, '0141390972'), + (3553, '0062736302'), + (3554, '0062736302'), + (3555, '0071352430'), + (3556, '0071352430'), + (3557, '0671798553'), + (3558, '0060953497'), + (3559, '0060953497'), + (3560, '0306810646'), + (3561, '0393318923'), + (3562, '1882114981'), + (3563, '1882114981'), + (3564, '1882114981'), + (3565, '1882114981'), + (3566, '0471415804'), + (3567, '0471415804'), + (3568, '0471415804'), + (3569, '0380788691'), + (1537, '0515134449'), + (3570, '0596000987'), + (3571, '0134843460'), + (746, '0064407675'), + (3572, '0767902890'), + (3573, '0812213122'), + (3574, '0879238615'), + (3575, '0879238615'), + (3576, '0618134786'), + (3577, '0618134786'), + (1094, '0312135653'), + (3562, '0375726446'), + (3578, '037575895X'), + (2542, '0061092355'), + (3579, '0061092355'), + (3580, '0060934727'), + (3581, '0375403671'), + (1759, '0670888214'), + (268, '0380977788'), + (3582, '0380977788'), + (1537, '0441304834'), + (3583, '0375421726'), + (3584, '0609805002'), + (3585, '1891053426'), + (3586, '0393049272'), + (3587, '0140099182'), + (3588, '0385319932'), + (3589, '0684853205'), + (3590, '0609802437'), + (3591, '0765347415'), + (3592, '0425071081'), + (3593, '0393956571'), + (3594, '0393956571'), + (3595, '0393956571'), + (3596, '0805324305'), + (3597, '2710305089'), + (3598, '2070368378'), + (3599, '3462025376'), + (132, '0553571818'), + (92, '0441790348'), + (3359, '0812550390'), + (2331, '2877141519'), + (403, '0965881199'), + (3600, '0965881199'), + (3601, '0965881199'), + (403, '1573928275'), + (3602, '014011906X'), + (3603, '0920109020'), + (3604, '0920109020'), + (3605, '0345377494'), + (3606, '0590960369'), + (3607, '0152009604'), + (1987, '0393038025'), + (3608, '0771014929'), + (2423, '0060931809'), + (3609, '1566199697'), + (1597, '0451527496'), + (3545, '0451527496'), + (1597, '0451525426'), + (3545, '0451525426'), + (3610, '0451525426'), + (3611, '0553573403'), + (3610, '0553579908'), + (3610, '055357342X'), + (3612, '0440211158'), + (3613, '1885211279'), + (3490, '2290044067'), + (3614, '2290044067'), + (3615, '0821739514'), + (3616, '0553280147'), + (3617, '0821730894'), + (3618, '0553245716'), + (39, '0345391055'), + (1851, '0553243055'), + (906, '0312979479'), + (3619, '0375760911'), + (3620, '0449244679'), + (76, '0671681036'), + (952, '068480087X'), + (2913, '0743407067'), + (1615, '0515131083'), + (3621, '1585420654'), + (3622, '1587430665'), + (3623, '1587430665'), + (3624, '0684843110'), + (3625, '0684843110'), + (1755, '0684843110'), + (3626, '156955028X'), + (3627, '156955028X'), + (3628, '156955028X'), + (3629, '0446679763'), + (3630, '0446679763'), + (3631, '0867162791'), + (3632, '0867162791'), + (3633, '0452274664'), + (3634, '0064403645'), + (3635, '0064403645'), + (1560, '1400032806'), + (3636, '0140262776'), + (3637, '0385317042'), + (3638, '0393029875'), + (3639, '0743243315'), + (2913, '0743407059'), + (3458, '1400061598'), + (3640, '0452283280'), + (2913, '0743407083'), + (236, '0446532444'), + (3641, '0446532444'), + (3642, '0446533041'), + (3643, '0375413278'), + (3644, '1892738341'), + (63, '0743483014'), + (1337, '0743483014'), + (3645, '0743483014'), + (3646, '0393029603'), + (3647, '0312093004'), + (3648, '0451184149'), + (3649, '0380005239'), + (1394, '0380005239'), + (3650, '0231121008'), + (3651, '0231121008'), + (3652, '0064401774'), + (3653, '0064401774'), + (3654, '0380732238'), + (3655, '1571740562'), + (3654, '0399142789'), + (1046, '0375406530'), + (1542, '006000438X'), + (501, '0679411267'), + (374, '0375412557'), + (3656, '0312169868'), + (211, '0374129983'), + (3657, '067003178X'), + (3658, '0688176992'), + (3659, '0688176992'), + (3660, '0312032978'), + (149, '0394561619'), + (1322, '0394561619'), + (3661, '0786866470'), + (3458, '0385318782'), + (3662, '1879941201'), + (545, '0060920076'), + (3458, '0679437452'), + (677, '1931561648'), + (150, '0060517794'), + (3663, '0553296124'), + (93, '0345413350'), + (363, '0380701340'), + (3664, '0373260474'), + (3665, '1588515281'), + (938, '0679450041'), + (3666, '0241130522'), + (3667, '0413722309'), + (3666, '0413725405'), + (3668, '1853830852'), + (3669, '0859533565'), + (206, '0413624501'), + (3670, '1857141296'), + (3671, '0745321992'), + (3102, '0140350748'), + (3672, '1853912352'), + (3673, '0201050714'), + (3674, '0802116175'), + (1665, '0140185011'), + (3675, '0140298363'), + (115, '0451146425'), + (3676, '0877738513'), + (3677, '0877738513'), + (3678, '0380817446'), + (3679, '0440862809'), + (3680, '0571197272'), + (49, '0345300203'), + (3681, '0451167309'), + (1366, '0440154731'), + (1704, '0553579835'), + (3172, '0449224775'), + (176, '0345379330'), + (3682, '1576737330'), + (827, '0590371258'), + (3683, '1573227226'), + (3684, '0670871753'), + (1209, '0151446474'), + (142, '0670813028'), + (3685, '0810922975'), + (3686, '0761520937'), + (3687, '0785281754'), + (3688, '0785281754'), + (3689, '0345405730'), + (1600, '0451197410'), + (3382, '0761522557'), + (135, '0316601950'), + (131, '0399151516'), + (3690, '0399151435'), + (890, '0451210220'), + (3689, '0399148515'), + (2393, '0886777771'), + (913, '0445406518'), + (3691, '0671697978'), + (3692, '0671697978'), + (187, '0441317480'), + (3693, '0345405625'), + (3692, '0345406141'), + (3694, '0061006629'), + (1041, '0553563696'), + (1042, '0553563696'), + (3695, '0345431618'), + (1041, '0553567713'), + (1042, '0553567713'), + (1041, '0553286390'), + (1042, '0553286390'), + (1396, '0345301293'), + (3692, '0345382412'), + (3692, '0345389972'), + (3692, '0345402219'), + (3692, '0345405501'), + (3690, '0671654349'), + (3691, '0671654349'), + (3696, '0671832174'), + (1396, '0881845531'), + (873, '076534128X'), + (187, '0441662382'), + (3692, '0345384687'), + (3697, '0345353749'), + (3698, '1586481843'), + (1396, '088184389X'), + (1188, '0460872583'), + (3699, '0460872583'), + (1366, '0385333498'), + (1396, '0425043231'), + (187, '0345313151'), + (795, '0345314255'), + (187, '0345305183'), + (3694, '0380004933'), + (142, '0451132343'), + (187, '0345279255'), + (142, '0451131312'), + (187, '0345272846'), + (3700, '0786884460'), + (635, '0061031429'), + (208, '0060977337'), + (208, '0446693790'), + (3701, '0553380168'), + (3702, '0140285008'), + (3703, '067104155X'), + (208, '006098726X'), + (1986, '068483569X'), + (3704, '068483569X'), + (3705, '0380701006'), + (1464, '0671504398'), + (283, '0451522303'), + (3706, '0441005152'), + (1109, '3518366750'), + (3707, '3518366750'), + (3708, '3453172337'), + (3709, '3453172337'), + (3710, '3453172337'), + (936, '3404136012'), + (936, '3453131169'), + (936, '3453092007'), + (59, '0553582925'), + (1527, '0441008763'), + (1629, '0812545249'), + (3711, '0446606715'), + (2188, '0553572423'), + (3712, '0373320132'), + (3713, '0803728492'), + (413, '0525941673'), + (3078, '0812522400'), + (3714, '0553102044'), + (3715, '156718359X'), + (397, '0671722948'), + (3716, '0140191550'), + (3717, '0140009930'), + (3718, '014027944X'), + (823, '0140051627'), + (3719, '0713910372'), + (3720, '0713910372'), + (3721, '0140510494'), + (3722, '0140510028'), + (3723, '0140510028'), + (3724, '0140442073'), + (3725, '0140442073'), + (3726, '0575075546'), + (3727, '0091816874'), + (3696, '0330020706'), + (3728, '0851123554'), + (3729, '0851123554'), + (3730, '0743220633'), + (3731, '1903402913'), + (3732, '1856053318'), + (3733, '0752521454'), + (3734, '0696204800'), + (3735, '0696204800'), + (3736, '0696204800'), + (3737, '027300235X'), + (3738, '0877540950'), + (3739, '0751514853'), + (3053, '3404143205'), + (24, '345386980X'), + (1370, '345386980X'), + (3740, '345386980X'), + (3741, '3629002013'), + (3742, '3629002013'), + (3743, '3629002013'), + (3744, '0877147728'), + (3745, '0674955218'), + (1353, '0452283930'), + (1827, '0553382225'), + (814, '1573227331'), + (3746, '0679767959'), + (397, '0451526767'), + (3747, '0596001932'), + (3748, '0596001932'), + (3749, '156592861X'), + (3746, '1565926730'), + (81, '080411918X'), + (3750, '0060171405'), + (3751, '0553293176'), + (3752, '0316812471'), + (1010, '0440222915'), + (108, '1551668653'), + (3753, '038079960X'), + (583, '0440237300'), + (3754, '0373292945'), + (3755, '1568842406'), + (571, '0399133186'), + (39, '0066214122'), + (3756, '0684803135'), + (3757, '0451404300'), + (3758, '0312192339'), + (3759, '0060802162'), + (3760, '0394744322'), + (1207, '0375507523'), + (3761, '0375507523'), + (3762, '0140266909'), + (3763, '0140266909'), + (2029, '0836221192'), + (3764, '0446386405'), + (3765, '0446386405'), + (3766, '0688088007'), + (3767, '0140444203'), + (3768, '0140444203'), + (3315, '1878825003'), + (3769, '0070037485'), + (648, '3499102277'), + (3770, '3499102277'), + (3771, '0872203948'), + (3772, '0872203948'), + (306, '0385721404'), + (1303, '0375410597'), + (2185, '0440125081'), + (1597, '0446604275'), + (3773, '0446604275'), + (3774, '0671501747'), + (3775, '0805040900'), + (3776, '0465006930'), + (3777, '0670804541'), + (1207, '0679741836'), + (3283, '068810391X'), + (3778, '0849912903'), + (1265, '034531798X'), + (3779, '0812968379'), + (3780, '0312961294'), + (556, '034545071X'), + (3781, '0451188470'), + (3782, '006019541X'), + (1319, '0446527696'), + (3783, '0446609749'), + (463, '0375502238'), + (3779, '0440202043'), + (795, '0345285557'), + (3784, '0821723243'), + (3785, '0312156499'), + (3786, '0938077112'), + (3787, '0938077112'), + (2940, '0312975228'), + (3788, '0590452037'), + (39, '0451183665'), + (3789, '0451183665'), + (3790, '0061097268'), + (3791, '0553111531'), + (3792, '0439137411'), + (3793, '0312155859'), + (2593, '0380758377'), + (1739, '0345441761'), + (61, '0399150897'), + (3794, '0449911160'), + (3795, '0671868640'), + (377, '0553247379'), + (3796, '0553247379'), + (1091, '0061043508'), + (3797, '0811828964'), + (3798, '0811828964'), + (1626, '0671624342'), + (3799, '0786890169'), + (3800, '074322535X'), + (534, '0399148728'), + (3801, '0399148728'), + (3802, '0071349294'), + (3803, '0071349294'), + (187, '0312869061'), + (3804, '0812968212'), + (1704, '0312264372'), + (2626, '0312264372'), + (1211, '0684841185'), + (3805, '0749005491'), + (3803, '0679463070'), + (3806, '0399146865'), + (3807, '0312873085'), + (3808, '0875964249'), + (3809, '0875964249'), + (3810, '0875964249'), + (3811, '0028625757'), + (337, '0399146687'), + (3464, '055380099X'), + (129, '0316693286'), + (2095, '0670861944'), + (357, '0670861944'), + (2041, '0399146237'), + (3812, '0684842106'), + (3813, '0439164842'), + (3814, '0060174056'), + (369, '0373484887'), + (107, '0099521016'), + (3815, '0750005815'), + (3814, '075001203X'), + (3816, '0330261878'), + (3817, '0140302395'), + (1337, '0060086246'), + (2028, '0451180429'), + (3818, '0373250126'), + (3819, '0060723890'), + (3820, '0373250193'), + (3821, '0758204930'), + (3822, '0451410947'), + (3823, '038550926X'), + (3824, '0061010707'), + (3825, '3462031112'), + (1191, '3499187809'), + (3826, '3499187809'), + (3827, '3446203966'), + (3828, '3446203966'), + (3829, '3442727367'), + (3830, '3216303217'), + (1876, '3442444020'), + (1921, '3442444020'), + (2487, '3257229364'), + (3831, '349961118X'), + (3832, '3795116074'), + (3833, '3795116074'), + (3834, '3499232103'), + (3835, '3499232103'), + (364, '0552998001'), + (658, '3499114178'), + (3836, '3499114178'), + (1726, '3442439736'), + (46, '3442350484'), + (3837, '3442350484'), + (60, '0671004530'), + (3838, '3421056056'), + (3839, '3442720141'), + (3840, '325722575X'), + (2913, '3442413338'), + (1921, '3442413338'), + (3779, '3499129728'), + (3841, '3499129728'), + (61, '3442435366'), + (45, '3442435366'), + (61, '3442441382'), + (3842, '3442441382'), + (3843, '3499613638'), + (578, '3499134411'), + (3844, '3257224303'), + (814, '3462025864'), + (3845, '3462025864'), + (3846, '0811811654'), + (3845, '0811811654'), + (3847, '0811811654'), + (3848, '0811811654'), + (231, '0440226414'), + (3849, '0060233532'), + (54, '0060959037'), + (1164, '055327886X'), + (1013, '0805036377'), + (552, '0688156134'), + (3850, '0374232415'), + (180, '014028009X'), + (3851, '0060697024'), + (3852, '0060697024'), + (3853, '0140254587'), + (1271, '0375708278'), + (3854, '3442541034'), + (3855, '0340581239'), + (337, '0425187063'), + (578, '2264032200'), + (3856, '2070407675'), + (60, '2253171395'), + (3857, '2070408507'), + (3858, '2253054747'), + (3859, '0002258579'), + (1210, '0446361305'), + (3860, '3775713328'), + (3216, '0451524063'), + (3861, '0451524063'), + (3860, '0451524063'), + (3862, '0451411285'), + (3863, '0743246349'), + (3864, '031286504X'), + (3865, '1928556396'), + (3866, '0517676044'), + (3867, '1562054376'), + (3868, '1562054376'), + (3869, '0735700737'), + (3870, '0028604032'), + (2729, '0028604032'), + (2706, '1573220256'), + (142, '034547063X'), + (580, '034547063X'), + (3871, '0425181480'), + (3872, '0405054610'), + (3873, '0405054610'), + (3874, '0405054610'), + (3875, '0312280769'), + (3876, '1585673390'), + (2326, '0886778964'), + (3877, '3596154766'), + (3878, '1561631469'), + (3879, '1561631469'), + (3880, '1841950149'), + (3881, '1852428112'), + (3882, '1852428112'), + (3883, '1418447293'), + (2983, '0451457811'), + (1096, '0553342495'), + (3884, '0374525641'), + (3885, '0571167926'), + (3886, '059043344X'), + (3887, '059043344X'), + (3888, '059043344X'), + (3889, '0140043136'), + (3890, '0874775132'), + (3891, '0738846503'), + (3892, '1552633217'), + (1450, '0375701311'), + (3893, '0340265450'), + (3894, '0441004954'), + (3895, '0312244266'), + (3896, '0786889098'), + (3897, '0373169884'), + (2863, '1551660539'), + (3898, '0373076371'), + (3899, '0373259646'), + (3900, '0553445014'), + (3901, '037325668X'), + (1122, '0373098006'), + (3902, '0373095244'), + (1496, '0373885210'), + (3903, '1565970519'), + (3904, '0373075286'), + (3905, '0373223455'), + (3906, '0373031114'), + (3907, '0373115458'), + (3908, '0373164556'), + (3909, '0821756672'), + (3910, '0373291019'), + (3911, '0373168713'), + (3469, '0373168829'), + (3912, '0373169795'), + (1296, '0373169477'), + (128, '0446364290'), + (3913, '0373482957'), + (128, '0446600342'), + (128, '0445205512'), + (128, '1551666014'), + (128, '0446356859'), + (128, '0446603082'), + (128, '0446360511'), + (128, '0446364312'), + (128, '0446364150'), + (128, '0446356875'), + (3914, '0373288468'), + (3915, '0373166621'), + (128, '0446360708'), + (3916, '0373222289'), + (3468, '0373169302'), + (3896, '0373169639'), + (2948, '1551660903'), + (3917, '0553440845'), + (3918, '0373098677'), + (3919, '0373451911'), + (3920, '0373096585'), + (3910, '0373169175'), + (3921, '0373169469'), + (3922, '0373255500'), + (3923, '037324343X'), + (3924, '0373165048'), + (3925, '0452282829'), + (3926, '0452281091'), + (3927, '0679781579'), + (3928, '0380728532'), + (3929, '0395754127'), + (3930, '1585673781'), + (3931, '1585673781'), + (3932, '1585673781'), + (3933, '1585673781'), + (3934, '0879757892'), + (246, '0803251734'), + (3935, '0803251734'), + (3936, '1582431612'), + (3937, '0873382668'), + (3938, '0931122740'), + (2180, '1562800299'), + (2180, '1562801465'), + (3939, '0934971013'), + (3940, '0934971013'), + (3941, '0553149121'), + (3942, '0761504362'), + (3943, '0673523241'), + (3944, '0673523241'), + (3945, '0395354846'), + (3946, '0553258958'), + (3947, '0061040185'), + (3948, '0816513333'), + (3947, '0816513074'), + (3949, '1888277173'), + (3950, '155583356X'), + (3951, '155583356X'), + (3952, '0688037127'), + (3953, '0688179096'), + (3954, '1879960214'), + (3955, '0345367561'), + (3956, '0066214688'), + (3957, '0785268839'), + (97, '0871135809'), + (3958, '0590436848'), + (3959, '3442352703'), + (247, '0449219143'), + (3960, '3795115833'), + (3961, '3442721652'), + (3962, '3442721652'), + (274, '3499156938'), + (3963, '347354034X'), + (49, '034540761X'), + (3964, '0061057797'), + (3036, '033028813X'), + (3965, '0859696707'), + (3966, '0859696707'), + (3967, '1844261085'), + (3968, '0385031386'), + (3969, '0875420036'), + (2914, '0141001828'), + (3970, '038078520X'), + (3971, '3492229891'), + (3972, '0385468067'), + (2332, '0312420021'), + (1265, '0553293400'), + (1401, '0060929871'), + (3973, '0393312836'), + (3974, '0553211757'), + (3975, '0553211757'), + (3976, '0553211757'), + (1109, '0060931914'), + (1783, '0393318680'), + (3267, '0590409433'), + (2423, '0138700982'), + (574, '0515093556'), + (3977, '1412014050'), + (906, '2253003964'), + (1268, '0399151850'), + (3978, '0802117821'), + (3979, '0802117821'), + (2818, '0380897180'), + (3980, '0380897180'), + (3981, '1573240923'), + (2836, '0385722206'), + (2837, '0385722206'), + (3982, '0702221988'), + (179, '0061095540'), + (3983, '9879630130'), + (1093, '0679732411'), + (1997, '0446606243'), + (3984, '0316785261'), + (760, '0140049975'), + (3985, '3701712417'), + (3986, '080913960X'), + (3987, '0139483993'), + (3988, '0139483993'), + (3989, '0385494661'), + (162, '014062080X'), + (145, '0425174808'), + (876, '0425174808'), + (3407, '0425174808'), + (906, '0061002860'), + (3990, '0140390847'), + (3007, '0140390847'), + (3991, '0140390847'), + (890, '0451202856'), + (3992, '0451405889'), + (1426, '0312274971'), + (2632, '0914171771'), + (3993, '0914171771'), + (3994, '0914171771'), + (3153, '0914171771'), + (3995, '0964849909'), + (3996, '0964849909'), + (3997, '0886777461'), + (3998, '0886777461'), + (3999, '0886777461'), + (4000, '0375406956'), + (4001, '0375406956'), + (4002, '0743202031'), + (495, '0767902912'), + (4003, '039571091X'), + (4004, '0395860318'), + (2937, '0192833642'), + (4005, '0192833642'), + (4006, '0192833642'), + (4007, '0750514833'), + (821, '1860463312'), + (4008, '0142001430'), + (1811, '0609809547'), + (1144, '0440218667'), + (760, '0142000671'), + (4009, '0425192792'), + (4010, '0821774352'), + (4011, '0821774352'), + (4012, '0821774352'), + (167, '0505524139'), + (621, '0345463404'), + (2245, '0449006379'), + (4013, '1885840047'), + (4014, '0060580208'), + (4015, '0060580208'), + (4016, '0425191060'), + (4017, '0743458125'), + (4018, '0312984820'), + (4019, '0380764008'), + (4020, '0060549270'), + (4021, '0505525305'), + (1795, '0373218222'), + (921, '0373218222'), + (4022, '0373218222'), + (4023, '0679777601'), + (2276, '0060505249'), + (4024, '0060505249'), + (4025, '0060505249'), + (1833, '0425191257'), + (2983, '0451458923'), + (4026, '0805426183'), + (132, '0553800914'), + (2968, '080410526X'), + (1555, '031242227X'), + (4027, '1555836577'), + (106, '0553250256'), + (415, '0451520793'), + (4028, '030680395X'), + (279, '0440241812'), + (3822, '0767914767'), + (284, '0451528697'), + (4029, '0451528697'), + (1680, '0060989270'), + (4030, '0374232105'), + (4029, '0140061401'), + (4031, '0393310329'), + (4032, '0679721037'), + (284, '0140433988'), + (4033, '0140433988'), + (4032, '0140433988'), + (4034, '0142437204'), + (4035, '0142437204'), + (4036, '1560235136'), + (4037, '0440219892'), + (4038, '1555834930'), + (4039, '1555836038'), + (4040, '0553272160'), + (578, '006093090X'), + (4041, '0942361598'), + (4042, '0942361598'), + (4043, '0942361598'), + (859, '055321148X'), + (4044, '038533494X'), + (4045, '0345355563'), + (1464, '0553210327'), + (4046, '0964109964'), + (1523, '0553212524'), + (4047, '0553212524'), + (4048, '0553251503'), + (4049, '0393321096'), + (2517, '0553574132'), + (4050, '038071681X'), + (4051, '088029261X'), + (3885, '0517053586'), + (4052, '0375706682'), + (734, '0140270590'), + (281, '0679445625'), + (1237, '0140862129'), + (4053, '0140862129'), + (4054, '0140862129'), + (4055, '0140862129'), + (4056, '0740735756'), + (63, '0440235596'), + (4057, '0440906156'), + (4058, '034540498X'), + (1339, '0671619373'), + (1887, '2070419657'), + (1888, '2070419657'), + (4059, '0943734312'), + (4060, '0943734150'), + (4061, '0898861098'), + (4062, '0803267355'), + (4063, '0803267355'), + (4064, '0964858401'), + (93, '0679826718'), + (4065, '1885211686'), + (4066, '1885211686'), + (4067, '1885211686'), + (4068, '0767904893'), + (1747, '0679733167'), + (4069, '0679436685'), + (4070, '074341120X'), + (732, '0618162216'), + (4071, '0375724621'), + (4072, '0375724621'), + (4073, '0140077812'), + (4074, '059045563X'), + (4075, '059045563X'), + (2207, '0375504907'), + (4076, '0312087357'), + (1706, '0156907380'), + (4077, '0142000485'), + (4078, '1584790660'), + (4079, '0812910389'), + (4080, '1573245038'), + (4081, '1573245038'), + (4082, '061810450X'), + (433, '0441231942'), + (3997, '0886773768'), + (433, '0345291794'), + (4083, '0449231992'), + (4084, '0192820575'), + (4085, '0192820575'), + (4086, '0449907899'), + (433, '0345301064'), + (4087, '0226462110'), + (4088, '0425062341'), + (4089, '0806967315'), + (4090, '0944031072'), + (4091, '1567182445'), + (4092, '0380776324'), + (4093, '0380776324'), + (4094, '0440504716'), + (4095, '0525942262'), + (2313, '0062508156'), + (4096, '014019536X'), + (485, '0380816555'), + (2881, '0684848066'), + (1362, '0449211827'), + (4097, '0441627404'), + (2586, '0553562738'), + (2306, '0812555031'), + (2306, '0812536509'), + (2306, '0812553993'), + (2398, '0380708892'), + (2398, '038070613X'), + (88, '0380805421'), + (4098, '0425171264'), + (4099, '2277219517'), + (4100, '0441794297'), + (225, '0375708707'), + (4101, '0802134475'), + (4102, '0151003084'), + (1041, '0553274066'), + (1042, '0553274066'), + (4103, '1897783108'), + (4104, '0340767278'), + (3673, '0679750932'), + (61, '042516098X'), + (4105, '0375701168'), + (4106, '0375701168'), + (129, '0446613266'), + (412, '038549081X'), + (4107, '0312267460'), + (4108, '0140329358'), + (4109, '0140329358'), + (4110, '074324396X'), + (364, '0552998486'), + (4111, '0099759713'), + (4112, '1853260193'), + (4113, '1853260967'), + (2331, '0140440151'), + (4114, '0140440151'), + (4115, '074993087X'), + (142, '0671041789'), + (1824, '0439139597'), + (1825, '0439139597'), + (1824, '0439064864'), + (1825, '0439064864'), + (4116, '1575665379'), + (2182, '0441005489'), + (4117, '0924171553'), + (4118, '0924171553'), + (463, '0449909050'), + (4119, '0330412302'), + (4120, '0064470059'), + (4121, '0064470059'), + (4122, '0821222341'), + (4123, '0821221558'), + (2002, '0380726297'), + (1001, '0553292056'), + (4124, '1860119190'), + (4125, '082122154X'), + (1188, '0553213512'), + (3924, '0060933577'), + (543, '044023672X'), + (974, '0394839129'), + (4126, '1573220213'), + (1366, '0440180295'), + (312, '014044582X'), + (4127, '014044582X'), + (4126, '014044582X'), + (4128, '014044582X'), + (401, '3423071001'), + (4129, '3423071001'), + (4130, '0884270610'), + (4131, '0884270610'), + (145, '0425170055'), + (4132, '345832402X'), + (4133, '3499613425'), + (4134, '3548021026'), + (1513, '351836605X'), + (1591, '1573229083'), + (4135, '0805058249'), + (351, '034540047X'), + (4136, '0140255842'), + (2593, '0380805995'), + (218, '0425169375'), + (3773, '0671727311'), + (1013, '0449003795'), + (4137, '055357874X'), + (4138, '0671896326'), + (4139, '3379017159'), + (1365, '0374190771'), + (4140, '0972660208'), + (4141, '0939165376'), + (52, '0060935464'), + (1209, '0446322180'), + (4142, '1551668998'), + (368, '0515116173'), + (4143, '157586326X'), + (337, '042516828X'), + (4144, '0440910552'), + (1768, '1853261092'), + (4145, '0889950954'), + (4146, '1562477579'), + (1695, '0312876343'), + (2007, '0446519081'), + (2007, '044651862X'), + (4147, '0688002307'), + (4148, '0394708229'), + (1663, '0394708229'), + (4149, '0195085140'), + (4150, '0195085140'), + (4151, '0671765973'), + (4152, '0922729611'), + (4153, '0922729611'), + (4154, '0767902335'), + (4155, '1577311523'), + (4156, '0425166805'), + (4157, '1567185126'), + (4158, '1874166188'), + (4159, '1874166188'), + (4160, '0875425011'), + (4161, '0875426638'), + (2210, '1882723007'), + (4162, '1882723007'), + (4163, '0764809326'), + (4164, '1892137038'), + (4163, '1892137038'), + (4165, '0883681056'), + (3620, '0874776945'), + (4166, '0875422462'), + (4167, '1869928180'), + (2770, '043935806X'), + (1825, '043935806X'), + (4168, '034540002X'), + (4169, '0399507914'), + (4170, '1570627193'), + (3654, '0439313899'), + (4171, '0609608045'), + (4172, '076071004X'), + (4173, '1855381125'), + (392, '0875421202'), + (4174, '1566199646'), + (4175, '0738700339'), + (4176, '0875423248'), + (2390, '073870279X'), + (1186, '0425158640'), + (2083, '0553236628'), + (4177, '1863739157'), + (4178, '068483183X'), + (4179, '0713715162'), + (4180, '0671532545'), + (4181, '0330360434'), + (4182, '0380723336'), + (4183, '0006498000'), + (4184, '0553210823'), + (4185, '0395771552'), + (4186, '1932560491'), + (4187, '0140304770'), + (4188, '0140444572'), + (4189, '0140444572'), + (4190, '0140029613'), + (3989, '0553213113'), + (4191, '0743489063'), + (4192, '0440225922'), + (24, '0099993805'), + (4193, '0914457284'), + (4194, '0914457284'), + (4195, '0914457284'), + (4196, '073870234X'), + (2100, '0892132922'), + (2100, '0892133260'), + (4197, '0060988258'), + (4198, '0345406419'), + (142, '0451184963'), + (24, '0440220602'), + (4199, '0821766929'), + (187, '0671721135'), + (4200, '0671721135'), + (4201, '0786864516'), + (59, '042513525X'), + (4202, '0060688246'), + (4203, '0883960044'), + (4204, '0883960044'), + (4205, '0399149422'), + (1755, '0440972329'), + (142, '0451156609'), + (3172, '0449132471'), + (4206, '0373111355'), + (4207, '0373114087'), + (2239, '0590298364'), + (4208, '0689107730'), + (4209, '0380016699'), + (4210, '088001072X'), + (4211, '0671760327'), + (4212, '0671760327'), + (92, '034530988X'), + (4213, '0380728184'), + (4214, '0140298924'), + (3541, '9722105248'), + (4215, '2020239302'), + (4216, '2020239302'), + (1086, '2742743693'), + (4217, '0769613292'), + (498, '0671628828'), + (4218, '0380716259'), + (4219, '0380716259'), + (1771, '0806509023'), + (4220, '0767901649'), + (4221, '0439173035'), + (4222, '0439173035'), + (4223, '0590187554'), + (4224, '060980748X'), + (4225, '060980748X'), + (4226, '0393049515'), + (1255, '1400031354'), + (4227, '0007106130'), + (4228, '1572241314'), + (4229, '2268013987'), + (4230, '0451202783'), + (4231, '0486277909'), + (1213, '0394578198'), + (4232, '0262192624'), + (4233, '0399135413'), + (4234, '2290318329'), + (234, '0553278118'), + (4235, '0310478014'), + (1428, '0590477412'), + (1428, '0671868314'), + (145, '0425170349'), + (906, '0425068064'), + (906, '0312975120'), + (2239, '0590433865'), + (905, '0486270556'), + (4236, '0486270556'), + (2239, '0590433857'), + (281, '0486296342'), + (596, '0380709538'), + (617, '0380709538'), + (2548, '0743400526'), + (4237, '0451188497'), + (4238, '0671656589'), + (1214, '0671695169'), + (1214, '0671695142'), + (1214, '0671729462'), + (236, '0446608955'), + (2880, '0312287860'), + (4239, '0809293242'), + (283, '0679417397'), + (950, '0679779159'), + (3284, '1550546007'), + (63, '0440204194'), + (3080, '0451408721'), + (4240, '0064472574'), + (1281, '0884042693'), + (270, '0141439696'), + (4241, '0141439696'), + (4242, '0764548573'), + (4243, '0764548573'), + (679, '0449203662'), + (4244, '0586087060'), + (559, '0449221032'), + (2656, '0449218473'), + (4245, '0060926015'), + (4246, '0385018061'), + (4247, '0385018061'), + (4248, '0385018061'), + (4249, '0028600819'), + (4250, '0028600819'), + (1505, '0140248307'), + (4251, '0425065952'), + (4252, '0070064261'), + (115, '3404149114'), + (852, '3404149114'), + (4253, '3404149114'), + (401, '9504001068'), + (4254, '1864501235'), + (4255, '0864426224'), + (4256, '0864426224'), + (4257, '2277229938'), + (199, '2253150908'), + (867, '2253048852'), + (4258, '2253048852'), + (867, '2253044911'), + (4257, '2253044911'), + (955, '2266067249'), + (4259, '2266067249'), + (1209, '2253033138'), + (4260, '2253033138'), + (4261, '2070380742'), + (4262, '067972883X'), + (1176, '0440414806'), + (4263, '0440414806'), + (4264, '0440414806'), + (828, '0689825587'), + (4265, '0142302015'), + (4266, '0142302015'), + (4267, '1586480499'), + (256, '0380821214'), + (3417, '014038572X'), + (4268, '2714303412'), + (4269, '0140621334'), + (4270, '2070389634'), + (4271, '2070389634'), + (4272, '2070389634'), + (4273, '2070368157'), + (4214, '2864241277'), + (24, '0440241073'), + (1605, '0553277243'), + (4274, '0140161953'), + (237, '0553287303'), + (142, '0451190521'), + (142, '0451190491'), + (330, '0679404856'), + (4232, '0399141499'), + (4275, '0553100130'), + (4276, '0553100130'), + (4277, '067187294X'), + (4278, '0449215202'), + (4279, '0440204429'), + (4280, '0440204429'), + (4281, '0553259253'), + (4282, '2207305554'), + (4283, '2207249786'), + (1323, '2266102621'), + (4284, '2266102621'), + (4285, '2253140589'), + (4286, '2253140589'), + (3700, '2277233617'), + (3046, '202025462X'), + (4287, '2277116092'), + (4288, '2253049069'), + (4289, '2266002635'), + (1724, '2253044903'), + (2606, '2253044903'), + (3046, '2253152846'), + (1981, '2290312959'), + (244, '2266104853'), + (960, '2020579391'), + (4290, '2020579391'), + (2331, '2070366081'), + (4291, '0553225448'), + (4292, '0553225448'), + (4293, '0786703377'), + (1063, '0345350804'), + (1295, '0345350804'), + (4294, '0895551950'), + (4295, '0872168328'), + (4296, '0786705302'), + (2658, '0743203178'), + (4297, '0812550897'), + (4298, '0881849804'), + (4299, '0671725254'), + (4300, '0810934302'), + (4301, '006008118X'), + (4302, '0312266588'), + (3659, '0312906765'), + (2529, '0312274785'), + (1281, '0884042871'), + (1281, '0884042847'), + (3076, '0445204303'), + (1773, '0380003821'), + (4303, '0879801646'), + (4304, '0879801646'), + (1983, '0553227734'), + (4305, '0486232948'), + (1704, '0553241575'), + (1704, '0553205315'), + (4306, '0671493515'), + (1185, '0828103054'), + (4307, '0812561589'), + (4076, '0670884839'), + (115, '0449227421'), + (4308, '3404118839'), + (2913, '3442430879'), + (1921, '3442430879'), + (39, '3426600218'), + (4309, '3426600218'), + (4310, '3809413747'), + (4311, '3442723833'), + (4312, '096788330X'), + (4313, '0929141652'), + (89, '0525244581'), + (4314, '0373706847'), + (4315, '0373706847'), + (4316, '0440414121'), + (1876, '3442441080'), + (1921, '3442441080'), + (4317, '3492238572'), + (1061, '3492238572'), + (1013, '0805010858'), + (4318, '0963622927'), + (4319, '0963622927'), + (4320, '1558506462'), + (4321, '1558506462'), + (4322, '1558506462'), + (4323, '0140245480'), + (2748, '0451167716'), + (438, '069811695X'), + (4324, '0262121867'), + (4325, '9839236083'), + (4326, '0811830454'), + (4327, '0811830454'), + (4328, '0811830454'), + (4329, '0310329914'), + (337, '0440203430'), + (175, '0446606324'), + (284, '0553211234'), + (2680, '1593080077'), + (4330, '1593080077'), + (484, '0446604089'), + (2963, '0446603287'), + (4261, '0446343013'), + (3374, '0451202473'), + (3546, '0060548827'), + (4331, '0804119937'), + (17, '1558746986'), + (18, '1558746986'), + (4332, '1558746986'), + (369, '0515132187'), + (4333, '0704349469'), + (4334, '0394758439'), + (679, '0449213447'), + (271, '0446670251'), + (4335, '0061098736'), + (1194, '0448095149'), + (4336, '0702227773'), + (3787, '1841219266'), + (4337, '0671015842'), + (4338, '0140149708'), + (4339, '0434271918'), + (4340, '1840461535'), + (4158, '1840461535'), + (4341, '0563534753'), + (4342, '0563534753'), + (4340, '0563487496'), + (4343, '1862042497'), + (4344, '1862042497'), + (1302, '0330328573'), + (4345, '0330328573'), + (859, '0330328573'), + (4346, '0751516880'), + (4347, '014062225X'), + (1706, '0140622144'), + (4336, '0340765429'), + (4348, '034066049X'), + (61, '0425154092'), + (4349, '0425179613'), + (4350, '0425179613'), + (95, '0375724370'), + (4351, '0446677671'), + (4352, '0446677671'), + (4350, '0060969911'), + (4351, '0060969911'), + (3041, '342310516X'), + (2176, '342310516X'), + (135, '3492040683'), + (906, '3502506809'), + (24, '3453127013'), + (2749, '3453172841'), + (1706, '359650547X'), + (1998, '0330262726'), + (1998, '0330253565'), + (1628, '0553057960'), + (1092, '0671014196'), + (4353, '0688171877'), + (610, '0871136791'), + (4354, '0679400540'), + (4355, '0805009213'), + (4356, '0679406557'), + (4357, '0684814773'), + (4358, '957131577X'), + (4359, '0517881004'), + (4360, '1879181363'), + (4361, '0671518909'), + (1519, '055321277X'), + (4362, '055321277X'), + (4363, '006039241X'), + (414, '0553380095'), + (4362, '0060391502'), + (4364, '0060391502'), + (4365, '0874779669'), + (4366, '0874779669'), + (4367, '0679726225'), + (4368, '0306810123'), + (4369, '1555834310'), + (4370, '0684841827'), + (253, '0440504708'), + (4371, '0440504708'), + (4372, '0671521136'), + (4373, '0399518460'), + (4374, '0688140718'), + (4375, '0853301239'), + (4376, '0553284347'), + (4377, '0345356500'), + (4378, '0440473500'), + (4379, '0773674489'), + (1339, '0743423682'), + (4380, '1410798860'), + (63, '0525945938'), + (3458, '042516876X'), + (1228, '0385496095'), + (412, '0385475721'), + (4381, '0385319908'), + (1965, '0425142035'), + (4382, '0061096253'), + (2271, '1551667509'), + (1879, '0553277723'), + (906, '0425068099'), + (4383, '0449146391'), + (2288, '0312421117'), + (4384, '0761514430'), + (4385, '0761514430'), + (574, '0679405283'), + (4386, '0440508975'), + (4387, '0440508975'), + (4388, '0006751504'), + (369, '0515137111'), + (621, '0345456939'), + (3159, '0060504110'), + (4389, '0060542799'), + (373, '0743469844'), + (565, '0553583573'), + (2583, '0446613886'), + (4390, '0449148238'), + (400, '0373289278'), + (4391, '0451205561'), + (2417, '1551667371'), + (4392, '1551667398'), + (4393, '0778320324'), + (4394, '0778320413'), + (1164, '0553107380'), + (225, '0375406182'), + (1013, '0553271636'), + (4395, '1892145057'), + (4396, '1892145057'), + (4397, '1892145057'), + (351, '0345389964'), + (4398, '0486256111'), + (107, '0679751521'), + (4399, '0590120727'), + (4400, '1888054557'), + (4401, '0312099045'), + (4402, '0312099045'), + (1432, '0312966091'), + (4403, '0385265565'), + (142, '0670813648'), + (1532, '0892961759'), + (1787, '0345372433'), + (183, '0399144315'), + (1932, '0786883219'), + (463, '0375504613'), + (4404, '0785263535'), + (2593, '0380896389'), + (2593, '0380896419'), + (4405, '0671252941'), + (4406, '155972272X'), + (4407, '0393046338'), + (1432, '0671001795'), + (4408, '0316526835'), + (4409, '0385307888'), + (4410, '0385307888'), + (2656, '039447970X'), + (634, '0425161285'), + (40, '0156904365'), + (4411, '0156904365'), + (4412, '0743448421'), + (2125, '014034991X'), + (595, '0440414539'), + (4413, '006106498X'), + (4414, '006106498X'), + (4415, '0553274295'), + (4037, '0590457799'), + (4416, '0689800843'), + (600, '0590457233'), + (4417, '0689311001'), + (4418, '0590926675'), + (441, '0671794019'), + (4419, '0671794019'), + (438, '0440403332'), + (596, '0440948991'), + (4415, '0689849176'), + (4420, '1586480103'), + (2641, '1586480103'), + (4421, '1570282021'), + (4422, '0877950938'), + (4423, '0743490398'), + (283, '0451524667'), + (4424, '0451524667'), + (4425, '0446600253'), + (795, '0345386744'), + (4426, '0965894355'), + (1214, '0671039857'), + (1214, '0671039830'), + (4427, '0671007696'), + (1214, '067100767X'), + (823, '0140063838'), + (4428, '0207169519'), + (4429, '0684870819'), + (17, '1558748040'), + (18, '1558748040'), + (1650, '1558748040'), + (4430, '0425132986'), + (4431, '0439053862'), + (1214, '0743403614'), + (4432, '013029442X'), + (4433, '0843925027'), + (3998, '0756400953'), + (2418, '1559210869'), + (867, '0886779960'), + (368, '033042095X'), + (4434, '0789716399'), + (2169, '0821767240'), + (2045, '0515135356'), + (135, '0316782262'), + (2618, '0525945210'), + (4435, '0786869054'), + (552, '0446530387'), + (4436, '0688177743'), + (4437, '0375413634'), + (4438, '0425147762'), + (131, '0399149295'), + (4439, '0066212693'), + (3821, '0670031062'), + (254, '0679439382'), + (4440, '1565123417'), + (580, '0451179188'), + (4441, '0786867612'), + (4442, '0061098035'), + (240, '0553572105'), + (4443, '051512950X'), + (4444, '0312926456'), + (4445, '0786889837'), + (81, '0804108749'), + (563, '0425121631'), + (4446, '0804109052'), + (4447, '0345402308'), + (580, '0451168690'), + (1628, '067945960X'), + (129, '0316693235'), + (532, '0451188616'), + (4448, '050552208X'), + (4024, '0380820846'), + (59, '0425153975'), + (571, '0425119653'), + (132, '0553579983'), + (61, '0399149325'), + (4449, '042515971X'), + (4450, '1583144269'), + (2964, '0446610852'), + (4451, '0821771426'), + (1092, '0671744577'), + (4452, '0373261047'), + (1211, '0743233468'), + (7, '0804114986'), + (2258, '0380808072'), + (136, '067179356X'), + (1211, '0743410505'), + (2006, '0380750848'), + (4453, '0425151883'), + (128, '0446611808'), + (4454, '0310220033'), + (3750, '0553583360'), + (127, '0446600709'), + (4455, '0671019929'), + (3401, '044915002X'), + (2978, '0425178579'), + (367, '0449907953'), + (4456, '1551669498'), + (2964, '038081448X'), + (4457, '0140069135'), + (4458, '0696214563'), + (4459, '0696214563'), + (182, '044808919X'), + (182, '0448089165'), + (1597, '0451626079'), + (4460, '0451626079'), + (4461, '0451626079'), + (4462, '1563831236'), + (4461, '156383121X'), + (3141, '0028620666'), + (4463, '1892051176'), + (4464, '0877201358'), + (4465, '0844273252'), + (4466, '0201741644'), + (4467, '0201741644'), + (4468, '1559362324'), + (1554, '0345430786'), + (129, '0316710571'), + (4469, '0060555513'), + (4470, '0892967544'), + (4471, '0399148655'), + (2934, '0312319142'), + (4472, '0345457587'), + (971, '0345453417'), + (4473, '0060555653'), + (1987, '0316591122'), + (2188, '0312319517'), + (4474, '0380978830'), + (1625, '0385336209'), + (616, '0553802526'), + (127, '0446530689'), + (644, '0399150854'), + (490, '0060083956'), + (1327, '0446531421'), + (1326, '0446531421'), + (1730, '0312306814'), + (4475, '0312271786'), + (337, '0399150870'), + (131, '0399149821'), + (59, '0553802496'), + (1628, '0345452577'), + (374, '1400041414'), + (4476, '0060193883'), + (1214, '0743428684'), + (720, '0525947655'), + (1704, '0312316690'), + (4477, '0060005556'), + (4478, '0312304269'), + (4479, '0312304269'), + (4480, '0399148760'), + (129, '0316603287'), + (337, '0399145664'), + (330, '0425178102'), + (2586, '0553580515'), + (4481, '0749301015'), + (4482, '0749301015'), + (4483, '0445204222'), + (4484, '1930252501'), + (2528, '0515123293'), + (1283, '0312985207'), + (4485, '0312985207'), + (4486, '0449220354'), + (4487, '0312981260'), + (4488, '067104754X'), + (4489, '0385144741'), + (4490, '0385144342'), + (4491, '0595175686'), + (4492, '1594082316'), + (4491, '1410777057'), + (4493, '0374172471'), + (1259, '2070394867'), + (4494, '0609807420'), + (4190, '0425122956'), + (2028, '0451208765'), + (732, '0618129022'), + (1537, '0345423402'), + (1537, '0345423429'), + (1537, '034544356X'), + (2028, '0743454146'), + (142, '0451210840'), + (4097, '0425152367'), + (4495, '0553374435'), + (59, '0553106643'), + (4496, '0553057707'), + (4497, '1853263508'), + (4498, '1567185711'), + (4499, '1560251476'), + (4500, '1560251476'), + (237, '0449223795'), + (4501, '1568846533'), + (4502, '0312144075'), + (4503, '0684869233'), + (788, '0156007479'), + (1538, '0061031844'), + (4504, '0312267177'), + (204, '0345434943'), + (4505, '1860110886'), + (392, '0875421849'), + (4506, '0786868619'), + (4507, '0786868619'), + (4508, '0786868619'), + (4509, '037550303X'), + (223, '0345442741'), + (4510, '0970272707'), + (59, '0399138439'), + (4511, '0130484717'), + (4512, '0452276365'), + (1021, '0671723650'), + (1021, '0671733354'), + (2028, '0451206525'), + (1965, '0140445943'), + (4513, '0140445943'), + (4514, '1557489297'), + (4515, '0553280430'), + (142, '0451167317'), + (4516, '0821725998'), + (830, '0590444646'), + (4517, '039951743X'), + (4518, '039951743X'), + (281, '0671517643'), + (4519, '155748919X'), + (4520, '1577480112'), + (4521, '0451457250'), + (4522, '0394741838'), + (4523, '0394741838'), + (4524, '0394741838'), + (4525, '0345428455'), + (2372, '0671541749'), + (2371, '0671541749'), + (2223, '0345314875'), + (4526, '0140446109'), + (4527, '0140446109'), + (4528, '0140446109'), + (4529, '014044422X'), + (4530, '014044422X'), + (4531, '0140147683'), + (4532, '0452270294'), + (4533, '1560766263'), + (4534, '014011341X'), + (4535, '0155026607'), + (4536, '0155026607'), + (4537, '0155026607'), + (1740, '0312850247'), + (4538, '0312850247'), + (4524, '0786913886'), + (403, '0766607208'), + (4539, '1884820298'), + (4540, '1884820298'), + (1965, '014042346X'), + (4541, '014042346X'), + (4542, '014042346X'), + (79, '0440133017'), + (4543, '0140587640'), + (369, '0399144706'), + (4544, '031285904X'), + (427, '0140444173'), + (4545, '0140444173'), + (4546, '0380769158'), + (4547, '0380769158'), + (4524, '1560760478'), + (4524, '0880389052'), + (4524, '0880389206'), + (4548, '0140193669'), + (4549, '0140193669'), + (4550, '0140194916'), + (4551, '0140255109'), + (4552, '0140255109'), + (4553, '0140255109'), + (397, '014070731X'), + (4554, '014070731X'), + (3723, '0140445145'), + (4555, '0140445145'), + (4554, '0140445145'), + (4556, '0452010845'), + (1965, '0140048162'), + (3989, '0140390537'), + (4557, '0140390537'), + (4558, '0192713434'), + (574, '0345396936'), + (334, '0312261918'), + (4559, '014010870X'), + (397, '0671722840'), + (4560, '0553233890'), + (4561, '0553346083'), + (4562, '0330306839'), + (415, '0140181903'), + (1616, '0140181903'), + (4563, '0786881275'), + (4564, '0786881275'), + (824, '0394587545'), + (4565, '0020519303'), + (4566, '0345315014'), + (3259, '059022638X'), + (3260, '059022638X'), + (1428, '0590466178'), + (4567, '0006514588'), + (4568, '1578660432'), + (4569, '0761116230'), + (4570, '0761116230'), + (4571, '1580174493'), + (2248, '0380819600'), + (108, '0312980159'), + (3502, '0821771116'), + (4572, '0451403967'), + (574, '0451403967'), + (4573, '0140277749'), + (4574, '0140277749'), + (4575, '1580050158'), + (56, '0451524195'), + (4576, '0451524195'), + (4577, '0821768093'), + (4578, '0440214866'), + (4577, '0440210046'), + (4577, '0440214858'), + (4579, '0380818957'), + (4571, '0451191889'), + (574, '0451191889'), + (4571, '0345423658'), + (4580, '0743410262'), + (4581, '0515119660'), + (4582, '0312979851'), + (109, '0312979886'), + (4583, '0446671339'), + (4584, '0446671339'), + (2978, '0425173631'), + (4585, '0451524748'), + (4586, '0451524748'), + (4587, '0553212451'), + (4588, '0553212451'), + (1315, '0451191137'), + (1316, '0451191137'), + (3319, '0553299611'), + (574, '0679454489'), + (574, '0679454470'), + (2978, '0425176304'), + (3086, '0684824485'), + (4589, '0684824485'), + (3086, '0684801558'), + (1510, '0440225639'), + (3086, '0811212475'), + (4590, '0811212475'), + (4591, '0553584782'), + (4592, '0805417761'), + (4593, '0805417761'), + (4594, '087542791X'), + (4595, '015696158X'), + (1409, '0679720200'), + (4596, '0679720200'), + (4597, '1852302089'), + (4598, '0140092838'), + (3345, '0679424474'), + (4599, '0373250371'), + (1432, '0312983271'), + (4600, '0312983271'), + (3399, '0312983271'), + (4601, '0060507845'), + (433, '0345295684'), + (4602, '0312204353'), + (4603, '1551669285'), + (4604, '0446670111'), + (4605, '0020545509'), + (4606, '0385468490'), + (4607, '0312979096'), + (4608, '0385313861'), + (4609, '0323023924'), + (4610, '0323023924'), + (716, '3257232993'), + (648, '3499141639'), + (4611, '0702217921'), + (4113, '037328019X'), + (4612, '1557735840'), + (4613, '0515111341'), + (584, '0373242190'), + (4614, '067163156X'), + (4615, '0380541718'), + (4616, '0749300663'), + (2096, '0821221817'), + (4617, '0684146010'), + (4618, '0684146010'), + (4619, '0441007163'), + (176, '0345391829'), + (1397, '0345253884'), + (115, '0609603086'), + (4620, '0553282816'), + (1013, '0553284789'), + (1013, '0553279556'), + (4621, '0812580141'), + (9, '0374281947'), + (1998, '0345420438'), + (4622, '0689300549'), + (433, '0345384911'), + (854, '0345332997'), + (2695, '0451194101'), + (3310, '0451191013'), + (2396, '0553564943'), + (867, '0886772370'), + (4623, '0886772370'), + (4624, '0671637185'), + (4625, '0140154787'), + (4624, '0140154787'), + (4626, '0751514403'), + (2816, '2070361381'), + (4627, '2070361381'), + (4628, '2070381161'), + (2928, '2070380599'), + (3008, '2070368823'), + (4629, '2020477815'), + (4630, '2020477815'), + (4631, '2253151165'), + (4632, '284205461X'), + (4633, '2277220620'), + (4634, '038073124X'), + (4635, '0002713276'), + (4636, '0002713276'), + (4637, '0375725849'), + (732, '0345318587'), + (4638, '0345340973'), + (4619, '0440106443'), + (4639, '0515104531'), + (4640, '0515104531'), + (4619, '0553238450'), + (60, '0671701231'), + (4619, '0553290266'), + (2695, '038072541X'), + (2226, '0449204553'), + (1784, '0446605409'), + (3434, '0061009504'), + (4641, '0142002399'), + (4642, '0142002399'), + (4643, '0330328743'), + (3008, '2070376990'), + (3291, '2264034882'), + (4644, '2264034882'), + (4645, '0786711256'), + (4646, '0446605956'), + (4647, '1864484098'), + (1605, '0399136479'), + (1354, '0679776818'), + (4648, '0812508424'), + (4647, '0812555333'), + (4649, '0312931123'), + (4190, '0312931123'), + (4650, '1569711240'), + (4651, '0441007880'), + (4650, '0441007090'), + (4652, '0812540034'), + (4653, '0451458842'), + (4654, '0345382455'), + (4655, '0446610771'), + (4656, '0812520076'), + (848, '0679416773'), + (1100, '0812555171'), + (4657, '0963784617'), + (644, '0440224713'), + (4658, '0425096440'), + (3282, '0553280414'), + (369, '0373484232'), + (746, '0064410137'), + (747, '0064410137'), + (2498, '0064410137'), + (4659, '0373291108'), + (4660, '1402710658'), + (4661, '1402710658'), + (4662, '1402710658'), + (4663, '1402710658'), + (2518, '0446600377'), + (4664, '0451410610'), + (972, '0345440765'), + (2029, '0836251822'), + (4665, '0763616087'), + (176, '3453209613'), + (729, '0517706814'), + (4666, '0517706814'), + (4667, '0517706814'), + (596, '0590044931'), + (4668, '0590630938'), + (4669, '0590630938'), + (4670, '0439087961'), + (842, '0439087961'), + (2740, '0141303786'), + (4671, '0141303786'), + (962, '069401110X'), + (4672, '069401110X'), + (2238, '0786842431'), + (4673, '068981934X'), + (441, '0671737295'), + (4674, '081673416X'), + (4675, '0439323738'), + (4676, '0440496039'), + (4677, '0440496039'), + (4678, '0689710682'), + (4679, '0689710682'), + (2238, '0590462318'), + (4680, '0394846656'), + (4681, '0590458078'), + (3026, '0152099905'), + (3027, '0152099905'), + (3028, '0152099905'), + (441, '0671745670'), + (4682, '0671745670'), + (4683, '157765692X'), + (602, '1577658043'), + (4684, '0382243579'), + (2239, '0590523465'), + (4685, '0140319301'), + (3271, '0816728798'), + (596, '0440472091'), + (1824, '0439136369'), + (1825, '0439136369'), + (1176, '0688160867'), + (3405, '0688160867'), + (2233, '0590673181'), + (596, '0380712369'), + (4686, '0380712369'), + (4687, '0679804021'), + (4688, '0679804021'), + (441, '0671798340'), + (4681, '0671798340'), + (830, '0020418809'), + (4416, '0449701778'), + (4689, '0821730002'), + (4690, '014034893X'), + (1428, '0590483463'), + (2335, '0385498799'), + (962, '0140366660'), + (4691, '0140366660'), + (3090, '0060278250'), + (3090, '0060278234'), + (3090, '0064471837'), + (4692, '0064471837'), + (4693, '0345366239'), + (176, '0330262130'), + (4694, '0416052029'), + (4695, '0689867034'), + (2495, '0786885971'), + (3137, '0689870027'), + (4220, '0590769588'), + (4696, '0590769588'), + (4697, '0786817909'), + (4698, '0060595094'), + (4428, '0684832178'), + (268, '0380807343'), + (4699, '0380807343'), + (3137, '0689859910'), + (4700, '0957881436'), + (4701, '0140341773'), + (342, '0553577123'), + (4702, '0553577123'), + (4703, '0553577123'), + (4704, '0553577123'), + (599, '0307222519'), + (1816, '0671021184'), + (262, '0064473627'), + (373, '0061008761'), + (4705, '0684870827'), + (4706, '0375727019'), + (4707, '0375727019'), + (4708, '042518689X'), + (187, '0380752891'), + (4709, '0807848735'), + (4710, '0813116791'), + (4711, '0394744543'), + (1366, '0385333501'), + (1720, '0316925195'), + (4712, '0425176053'), + (4713, '0425176053'), + (4714, '0330301497'), + (4715, '0297778536'), + (463, '0812969812'), + (4716, '0306803984'), + (142, '0451163524'), + (142, '0451194861'), + (4698, '0451194861'), + (4717, '0852073259'), + (25, '0452280621'), + (4718, '0195042239'), + (760, '0140187375'), + (142, '0451166582'), + (971, '0671019732'), + (1282, '0671026011'), + (4719, '0231120621'), + (2744, '1895555590'), + (4720, '0888992424'), + (4721, '088899124X'), + (4722, '0006479650'), + (4723, '0888991703'), + (4720, '088899088X'), + (4721, '0006479383'), + (180, '0330375253'), + (4313, '0373834993'), + (1001, '055337933X'), + (4724, '0002245663'), + (24, '0385503822'), + (3248, '0609804138'), + (4725, '0345439104'), + (3704, '0316852570'), + (635, '0061031410'), + (4726, '0375757597'), + (4727, '0140071083'), + (1060, '0345248228'), + (4728, '0374423415'), + (4729, '0743439791'), + (335, '0192833669'), + (4730, '0192833669'), + (4543, '0812548221'), + (4731, '0380784165'), + (4732, '0684848406'), + (4733, '0446677698'), + (4734, '0451192990'), + (906, '0425105695'), + (1965, '0441003524'), + (4735, '0451455835'), + (277, '0679742565'), + (2586, '0553575384'), + (412, '0449214176'), + (3159, '0061031070'), + (61, '0425180638'), + (284, '1853260045'), + (4736, '1853260045'), + (4737, '1853260045'), + (410, '2266051326'), + (4738, '0752860178'), + (4739, '0441009239'), + (4451, '0441008534'), + (3779, '0312924801'), + (4740, '1857970446'), + (4741, '0786702427'), + (1428, '0590477420'), + (1428, '0590477447'), + (4742, '0440222435'), + (3568, '0451454537'), + (4743, '0316555525'), + (4744, '0688101194'), + (4745, '0241123968'), + (4746, '0060112719'), + (4747, '0671739085'), + (4748, '0821756044'), + (4749, '0786004827'), + (4750, '0751516678'), + (4751, '0297828991'), + (4752, '0061013722'), + (115, '0451163540'), + (4753, '0735201994'), + (4754, '1414011458'), + (4755, '1564029654'), + (4756, '1564029654'), + (4757, '0307121259'), + (3280, '0307121259'), + (4758, '0671493183'), + (4757, '0671493183'), + (974, '0679882812'), + (4757, '067144901X'), + (3151, '0399215921'), + (4759, '0394900189'), + (4758, '0394800206'), + (2533, '039515023X'), + (2532, '039515023X'), + (4760, '0953881024'), + (2368, '1852860596'), + (397, '0521426219'), + (4761, '0521426219'), + (4762, '0859344304'), + (4763, '0859344304'), + (122, '0671787551'), + (4764, '0671787551'), + (122, '0671869108'), + (867, '0812516001'), + (940, '0394821998'), + (4765, '0449208796'), + (4766, '0393318451'), + (502, '0192835181'), + (4767, '0192835181'), + (4768, '3518115758'), + (4769, '3442432073'), + (4770, '3442432073'), + (3271, '1853261076'), + (4771, '0786706953'), + (4772, '0345443233'), + (2934, '0688149626'), + (369, '0399145923'), + (129, '0316693251'), + (1841, '0373706936'), + (4773, '0804107432'), + (4774, '2070373622'), + (1207, '0375503994'), + (3760, '0375503994'), + (4775, '0688062229'), + (4776, '0688062229'), + (1748, '0937295078'), + (1749, '0937295078'), + (4777, '3540587101'), + (4778, '3540587101'), + (4779, '1565922093'), + (4780, '1565922093'), + (4781, '1565925653'), + (3086, '068416325X'), + (4782, '0843105550'), + (4783, '0672324253'), + (4784, '0672324253'), + (715, '3442722497'), + (4785, '3442722497'), + (2710, '3442545544'), + (4786, '3257225334'), + (4787, '3257206089'), + (4788, '0312423187'), + (4789, '3746614007'), + (4790, '3746614007'), + (4791, '3548253652'), + (4792, '0140063331'), + (277, '0679735909'), + (2593, '0380716542'), + (2593, '0380792486'), + (66, '0670881767'), + (859, '0451523377'), + (4793, '0451523377'), + (4794, '0452281423'), + (574, '0452281423'), + (4795, '0553581651'), + (4796, '2290314889'), + (596, '0380709139'), + (617, '0380709139'), + (960, '0679775439'), + (732, '0345272609'), + (732, '0345272595'), + (732, '0345272587'), + (4797, '3499433265'), + (4798, '3871340758'), + (4799, '3498063618'), + (4800, '3423122080'), + (4801, '3423122080'), + (4802, '3423122080'), + (364, '3548252443'), + (1052, '3404242327'), + (4803, '3746680174'), + (4804, '3746680174'), + (4805, '3596215226'), + (4806, '3518379089'), + (4807, '3518373080'), + (4808, '3518373080'), + (4809, '340460024X'), + (4810, '0748702784'), + (1724, '3257018959'), + (4811, '3257018959'), + (301, '0553240633'), + (2603, '0786817089'), + (4812, '0385334923'), + (1484, '0345445856'), + (1092, '0743437136'), + (4813, '344272872X'), + (4702, '344272872X'), + (290, '0684841215'), + (970, '1587242583'), + (3058, '3746616360'), + (4814, '0140026177'), + (1013, '0449221490'), + (1023, '067943335X'), + (180, '0670033332'), + (1337, '0060520515'), + (634, '042513699X'), + (81, '0679407715'), + (1355, '0747273200'), + (677, '015602943X'), + (4815, '037570485X'), + (4814, '0671686151'), + (634, '0345455916'), + (4816, '1931081743'), + (4817, '1931081743'), + (4818, '1932047247'), + (4819, '1930586787'), + (962, '3401045660'), + (4820, '3401045660'), + (989, '0156028352'), + (4821, '0679733485'), + (4822, '0732269199'), + (92, '0671877046'), + (4823, '0380761599'), + (4824, '0446609900'), + (4825, '0553281437'), + (1041, '0553279025'), + (1042, '0553279025'), + (2393, '0886773741'), + (4826, '0609608924'), + (4827, '0812549007'), + (1041, '0553276387'), + (1042, '0553276387'), + (2393, '0886771625'), + (4828, '0440223547'), + (2282, '0140186484'), + (4829, '0140186484'), + (4830, '059041691X'), + (4831, '059041691X'), + (3264, '0590457403'), + (1194, '0448095041'), + (1194, '044809505X'), + (4832, '0380728508'), + (4833, '0312916450'), + (4834, '0804106576'), + (4835, '1886910529'), + (4189, '0140818030'), + (4836, '0140818030'), + (3209, '0061032042'), + (161, '0061032042'), + (4837, '156647101X'), + (4838, '0684825414'), + (654, '0385475462'), + (368, '0515126098'), + (4839, '1888608501'), + (351, '0345387651'), + (306, '0345384563'), + (4840, '0590440152'), + (1065, '0553287893'), + (4841, '0451628640'), + (4842, '1566891051'), + (4843, '0883964201'), + (4844, '0883964716'), + (4845, '1881273628'), + (4846, '0785266097'), + (4847, '1883013852'), + (4848, '1883013852'), + (4849, '1883013860'), + (4850, '1883013860'), + (906, '0425067866'), + (4851, '0812092007'), + (4024, '1586602241'), + (4852, '0736905324'), + (4853, '0393047229'), + (4854, '0061073628'), + (4855, '0688140475'), + (4856, '0609808400'), + (4857, '0609808400'), + (4858, '0609808400'), + (4852, '0743200330'), + (4859, '0743200330'), + (4860, '1931402213'), + (4861, '0966723724'), + (4862, '0875730701'), + (4863, '0875730701'), + (4864, '0972208607'), + (4865, '1884800394'), + (4866, '0971971501'), + (4867, '0397320426'), + (3677, '0553580531'), + (4868, '042517364X'), + (2748, '0451160193'), + (1395, '0679402292'), + (4869, '0811801020'), + (574, '0679433023'), + (4870, '0679446672'), + (962, '0553212036'), + (1553, '0679463321'), + (39, '0679444815'), + (39, '0394589424'), + (4871, '0465072836'), + (217, '0486268705'), + (181, '0486268705'), + (2599, '0486275477'), + (1186, '0399145796'), + (4872, '0140714545'), + (4873, '0140714545'), + (4874, '0140714545'), + (4875, '0072546409'), + (54, '0060921145'), + (4876, '1841763101'), + (4877, '1841763101'), + (4875, '1855329816'), + (4878, '1855329816'), + (4875, '184176311X'), + (4876, '184176311X'), + (4879, '085045512X'), + (4880, '085045512X'), + (4881, '0007137508'), + (351, '037540290X'), + (4882, '037540290X'), + (237, '0553241729'), + (4883, '0517883864'), + (3345, '0446313939'), + (4884, '0446313939'), + (368, '0671680781'), + (4885, '1592869629'), + (1249, '0800782194'), + (4886, '0821761196'), + (4887, '0061084719'), + (4888, '1551661594'), + (4889, '0515120340'), + (630, '0821761730'), + (819, '0812507428'), + (818, '0812507428'), + (59, '0425121259'), + (1325, '0061030430'), + (4890, '0840757239'), + (4891, '0553138014'), + (4892, '1586481614'), + (241, '0553572210'), + (237, '0553288342'), + (4893, '1575668475'), + (142, '0743467523'), + (889, '0312950489'), + (149, '014012389X'), + (4894, '014012389X'), + (4893, '014012389X'), + (4895, '0804106274'), + (4896, '038548755X'), + (4897, '038548755X'), + (1784, '0446353205'), + (4619, '0553208225'), + (4898, '0770103936'), + (4899, '0373970021'), + (2626, '042516019X'), + (484, '0446357405'), + (3892, '0340223030'), + (4900, '067180913X'), + (4901, '067167269X'), + (4902, '0722150954'), + (4903, '1552780724'), + (1452, '0440223822'), + (1118, '042509586X'), + (1118, '0441090729'), + (1118, '0425097226'), + (4904, '0446675962'), + (4905, '0312867395'), + (325, '0345300807'), + (152, '0446517984'), + (4244, '006464801X'), + (369, '0373834284'), + (543, '0440224853'), + (158, '0345404114'), + (4906, '074723003X'), + (4905, '0747230293'), + (4907, '0553579193'), + (4908, '0471407380'), + (4909, '0060984422'), + (4910, '0553567152'), + (4911, '0451211014'), + (4909, '0553283502'), + (3264, '0440219817'), + (4909, '0553570870'), + (4912, '0786813709'), + (128, '0446361739'), + (814, '0141007338'), + (4913, '0002261529'), + (4914, '0007110928'), + (4380, '0375760393'), + (1298, '0440467012'), + (906, '0425129586'), + (4915, '0373168284'), + (976, '0679745130'), + (4725, '0375502815'), + (2340, '0590483803'), + (373, '0671027662'), + (4916, '1580081231'), + (4917, '0452279089'), + (4918, '0452279089'), + (4919, '0316779075'), + (4920, '0316779075'), + (4921, '0399523308'), + (4922, '020162690X'), + (4920, '0671021761'), + (4923, '0915473569'), + (4924, '0553580744'), + (4925, '0553580744'), + (4926, '0553580744'), + (4927, '0553580744'), + (4928, '0451171071'), + (4929, '0671620495'), + (4930, '0688151078'), + (906, '042513024X'), + (4931, '1558321160'), + (4932, '0446530239'), + (4933, '3492256341'), + (1086, '0805067140'), + (285, '3518383973'), + (4934, '3518383973'), + (256, '0552133256'), + (2007, '227724113X'), + (4935, '0156011603'), + (930, '0345335058'), + (176, '0671742515'), + (4936, '190288132X'), + (4937, '190288132X'), + (1209, '0446357200'), + (3086, '0451526643'), + (4134, '0451526643'), + (4938, '0316198951'), + (4939, '0312244991'), + (4940, '0312244991'), + (4941, '0312244991'), + (3971, '0375706143'), + (4942, '0953327523'), + (4943, '0451149173'), + (3482, '0140065504'), + (4944, '0140065504'), + (1616, '0679759328'), + (962, '0440447674'), + (1553, '0345427637'), + (1305, '055321263X'), + (412, '0449213765'), + (412, '0446314986'), + (56, '0553213105'), + (4945, '0786703229'), + (4946, '0446674168'), + (4947, '0671602543'), + (2169, '0451199979'), + (1977, '0451521072'), + (4424, '0446675369'), + (281, '0440466091'), + (4948, '0440416027'), + (2818, '0380012057'), + (4949, '0385474547'), + (2067, '1573220531'), + (1214, '0671020293'), + (4950, '0595259677'), + (2693, '0860074382'), + (4951, '0140386084'), + (176, '0330267388'), + (4952, '1896764096'), + (4953, '1896764096'), + (612, '0679426140'), + (1229, '0671042572'), + (4954, '0812990323'), + (4955, '0930452933'), + (4956, '0930452933'), + (4957, '081269421X'), + (4958, '0385487398'), + (4959, '0609608096'), + (4960, '0609608096'), + (4961, '0312141475'), + (3229, '0743420373'), + (3230, '0743420373'), + (3642, '0099287927'), + (4962, '1558184023'), + (4963, '0684869748'), + (3490, '3442448794'), + (2539, '3442448794'), + (4964, '0689832923'), + (4965, '0590640860'), + (1284, '0060937688'), + (1024, '0440219760'), + (4966, '0553371843'), + (4967, '0916773191'), + (4968, '0916773191'), + (1396, '0679736662'), + (63, '0451209907'), + (4969, '0312954166'), + (1013, '0449221512'), + (4970, '0451409647'), + (4971, '0375707093'), + (4972, '0399149783'), + (115, '0525946284'), + (63, '0385318073'), + (1626, '0061013315'), + (1255, '1400031362'), + (2286, '0804107386'), + (85, '0140435530'), + (4973, '0140435530'), + (4974, '007212170X'), + (4975, '0307120848'), + (4976, '0307120848'), + (3096, '0689846088'), + (4977, '0689846088'), + (35, '0689842708'), + (4978, '0689842708'), + (4979, '0786846461'), + (4980, '0671038311'), + (4981, '0671038311'), + (4982, '0140381538'), + (4983, '0064472612'), + (4984, '0743400771'), + (2723, '0849959306'), + (4985, '0849959306'), + (1013, '0449223612'), + (4986, '0380818817'), + (4987, '0060959940'), + (4988, '0425181863'), + (634, '0439443857'), + (4989, '0061031127'), + (4990, '0824511743'), + (4991, '0875963021'), + (4992, '0399526005'), + (4993, '0399526005'), + (4994, '044020352X'), + (3856, '0156012197'), + (4995, '0156012197'), + (536, '0449221180'), + (4996, '3423703040'), + (2568, '3423703040'), + (4997, '0425179206'), + (1001, '0553107755'), + (270, '1853260150'), + (1706, '1853262390'), + (270, '0140010211'), + (1783, '0393314804'), + (4998, '1591291666'), + (4999, '0843944331'), + (888, '0440403782'), + (2126, '0312168748'), + (5000, '0590897543'), + (5001, '0425155463'), + (5002, '0312266065'), + (5003, '0843952008'), + (5004, '0385261756'), + (3367, '0671014021'), + (5005, '0671014021'), + (5006, '0393093247'), + (5007, '0812549325'), + (281, '0439101360'), + (438, '0439101360'), + (2002, '038073186X'), + (5008, '0140621598'), + (60, '0440195934'), + (5009, '088038722X'), + (5010, '088038722X'), + (5011, '0844295582'), + (631, '0140314202'), + (1755, '0440998050'), + (5012, '0439319137'), + (3036, '0330352091'), + (5013, '0140014845'), + (1578, '0060269928'), + (4909, '0553299328'), + (5014, '0743464672'), + (5015, '155874424X'), + (4500, '155874424X'), + (2814, '2070414574'), + (5016, '1853262803'), + (274, '014032870X'), + (5017, '014032870X'), + (5018, '0345396669'), + (5019, '0316181358'), + (1263, '0385468709'), + (5020, '0385422938'), + (5021, '0060165979'), + (5022, '038542194X'), + (3799, '1565122968'), + (5023, '0486280594'), + (5024, '0843114797'), + (612, '0804115613'), + (5025, '0375724958'), + (5024, '067973855X'), + (5024, '0679771832'), + (732, '0345340426'), + (95, '0679745203'), + (468, '0679777482'), + (468, '0679777474'), + (468, '0679777466'), + (468, '0679777458'), + (351, '0345449347'), + (5026, '0879100362'), + (5027, '0879100362'), + (5028, '0312252927'), + (5027, '0312266510'), + (5029, '0151005346'), + (1044, '0151005346'), + (1268, '0156006391'), + (5030, '0156006391'), + (468, '067977744X'), + (3541, '0156005204'), + (3542, '0156005204'), + (3541, '0156006243'), + (3542, '0156006243'), + (3541, '0156010593'), + (5031, '0156010593'), + (461, '0375701907'), + (3541, '0156004011'), + (3542, '0156004011'), + (1268, '0679777547'), + (5029, '0679777547'), + (351, '034543479X'), + (1787, '0345396456'), + (427, '1853262714'), + (3288, '1853262714'), + (5032, '1853262714'), + (5033, '1853262714'), + (5034, '0888012055'), + (5033, '0773759697'), + (5035, '1895837618'), + (779, '0375705198'), + (5036, '1550548166'), + (5037, '0385720327'), + (5038, '0385720327'), + (5039, '0747545634'), + (5040, '0374521956'), + (5041, '0889951926'), + (367, '0449910830'), + (5042, '0771079567'), + (5043, '0571212212'), + (5044, '0671439162'), + (5045, '0345419073'), + (5046, '0590419447'), + (5047, '0425166090'), + (5048, '0440227011'), + (5049, '067188784X'), + (5050, '0671041657'), + (5051, '0894808249'), + (5052, '0590475363'), + (644, '044021873X'), + (5053, '0449223345'), + (5054, '0764227890'), + (5055, '0060244151'), + (5056, '0060244151'), + (5057, '0684829223'), + (5058, '1573060313'), + (5057, '1573060313'), + (5059, '0881337269'), + (5060, '0881337269'), + (3359, '0671872648'), + (5061, '0375758585'), + (5062, '0061013579'), + (5063, '0061013579'), + (5064, '0061013579'), + (3172, '0449223833'), + (5065, '0394520939'), + (5066, '0394583256'), + (1987, '0316592382'), + (5067, '0439372941'), + (747, '0439372941'), + (563, '039913543X'), + (151, '0517092816'), + (574, '0679412956'), + (25, '0394423291'), + (552, '0688156142'), + (59, '0399137734'), + (3704, '0316955191'), + (337, '0515123498'), + (2770, '0439139600'), + (1825, '0439139600'), + (734, '0670894370'), + (1186, '0441007554'), + (5068, '1555910807'), + (5069, '0553271105'), + (2856, '0385495641'), + (734, '0670031208'), + (5070, '0670031208'), + (580, '0525246606'), + (5071, '1880238667'), + (5072, '1880238667'), + (5073, '0822315890'), + (5074, '0140100032'), + (5075, '0684870673'), + (3406, '093914994X'), + (955, '0552143774'), + (5076, '0886193540'), + (5077, '0142004278'), + (5078, '0451192036'), + (5079, '0451192036'), + (5080, '0451192036'), + (5081, '0310217598'), + (5080, '031021758X'), + (5082, '1568654782'), + (915, '0140434186'), + (5083, '0140434186'), + (217, '0141182458'), + (5084, '0595140459'), + (5085, '0913559482'), + (1699, '0517189186'), + (4492, '0374148570'), + (149, '9681336089'), + (5086, '0375700668'), + (244, '0743204239'), + (859, '0192833863'), + (5087, '0192833863'), + (5088, '067931041X'), + (5089, '0805041508'), + (5090, '0380977702'), + (5091, '096774590X'), + (4931, '0446531480'), + (1144, '3442353971'), + (5092, '3442353971'), + (890, '0451207645'), + (5093, '0316092738'), + (5094, '0316092738'), + (5095, '0743428188'), + (2568, '0590598856'), + (5096, '0061000078'), + (1214, '0671670689'), + (247, '0449000869'), + (128, '0446605581'), + (2224, '0441694543'), + (5097, '044640344X'), + (5098, '1572972181'), + (3379, '0345395069'), + (5099, '0425148343'), + (5100, '0515117552'), + (5101, '042514545X'), + (5102, '0553298836'), + (5098, '0425156729'), + (5101, '042516988X'), + (5098, '0380794772'), + (1211, '0671011375'), + (5103, '0515124796'), + (3912, '0515126489'), + (461, '0679753826'), + (5104, '0380974282'), + (5105, '0684196778'), + (61, '0399142851'), + (61, '0399146253'), + (129, '0316693294'), + (5106, '0892964111'), + (1998, '0671042742'), + (5107, '0385480385'), + (937, '0385488424'), + (327, '0553096834'), + (3795, '0425130746'), + (2655, '0553102133'), + (1739, '0345391330'), + (49, '0345334019'), + (5108, '055356966X'), + (554, '0553574663'), + (4444, '0451180054'), + (1498, '0812590554'), + (5109, '055357924X'), + (5110, '0061093920'), + (5111, '0671898779'), + (1144, '0812571991'), + (1331, '0451199650'), + (5112, '0451197429'), + (1876, '0553102346'), + (563, '0399146504'), + (5113, '0312143648'), + (565, '0553099590'), + (644, '038530000X'), + (5114, '3499233312'), + (5115, '0140620508'), + (5116, '0140620508'), + (5117, '1895565545'), + (89, '0416469604'), + (5118, '1841120685'), + (5119, '1841120685'), + (5120, '1841120685'), + (5121, '1841120685'), + (4794, '0044402449'), + (5122, '0749425628'), + (5123, '0749425628'), + (5124, '0273622218'), + (5125, '0751530328'), + (56, '0140431020'), + (282, '0140431020'), + (5126, '0749418222'), + (5127, '0241141095'), + (1137, '0450547434'), + (5128, '0340766638'), + (412, '0860680649'), + (5129, '0140040021'), + (698, '2253098183'), + (5130, '0312997159'), + (2035, '0786890061'), + (414, '0553279378'), + (5131, '0440209986'), + (4473, '0380788640'), + (4473, '0380788632'), + (4473, '0380717581'), + (5132, '0684826143'), + (5133, '1551666987'), + (2045, '0425176037'), + (5134, '0156013126'), + (5135, '0156013126'), + (5136, '0446610941'), + (145, '0425083837'), + (2011, '0425135721'), + (5137, '0515130540'), + (2181, '0515090654'), + (565, '0553292722'), + (346, '0380721643'), + (346, '0425183750'), + (2963, '0445408502'), + (5138, '0553270486'), + (913, '0380798573'), + (464, '0452282268'), + (5139, '0786867787'), + (5140, '0307001253'), + (5141, '0590484133'), + (5142, '0590484133'), + (5143, '067982412X'), + (5144, '067982412X'), + (5145, '0373227272'), + (5146, '0373872410'), + (3359, '0671550578'), + (3359, '0671550764'), + (5147, '0373226918'), + (5148, '0761118691'), + (5149, '0671680080'), + (5150, '0671680080'), + (2542, '0671680080'), + (39, '0345354621'), + (176, '0671442686'), + (176, '0671525808'), + (1101, '0671684027'), + (5151, '0671701304'), + (5152, '0380773066'), + (266, '0812516214'), + (5153, '0446602299'), + (5154, '0446602299'), + (5155, '0312954115'), + (5156, '0671742493'), + (335, '0451511328'), + (397, '0671441515'), + (5157, '0867211725'), + (5158, '0867211725'), + (5159, '0140111891'), + (5160, '0140111891'), + (5161, '0061054143'), + (2977, '0449220893'), + (5162, '0064420485'), + (5163, '0064420485'), + (5164, '0590939351'), + (5165, '078688214X'), + (5166, '078688214X'), + (5167, '078688214X'), + (5168, '0446391301'), + (76, '0743233026'), + (5169, '3442722403'), + (5170, '3442722403'), + (5171, '3442720117'), + (5172, '3442720117'), + (502, '0140621873'), + (151, '0060119071'), + (5173, '0875963234'), + (3807, '0875963234'), + (4849, '0875963234'), + (5174, '0449911462'), + (2888, '0931580587'), + (5175, '0312123337'), + (5176, '0965603695'), + (3805, '0068596022'), + (5177, '0068596022'), + (5178, '0066620732'), + (5179, '0066620732'), + (5180, '0525446052'), + (5181, '0525446052'), + (5182, '0440417449'), + (5183, '0440417449'), + (5184, '970651452X'), + (5185, '0613282728'), + (5186, '0802130119'), + (5187, '0802130119'), + (644, '0440224705'), + (1432, '0312983867'), + (1490, '045120994X'), + (1484, '0345459202'), + (2977, '0312955731'), + (1001, '0553205803'), + (342, '0553541633'), + (665, '0684800713'), + (720, '1566840287'), + (2109, '0062500260'), + (5188, '0380793229'), + (5189, '0345304659'), + (5190, '0786888083'), + (5188, '0345344464'), + (821, '0374115540'), + (5191, '0374115540'), + (2805, '0671718436'), + (665, '0684163268'), + (1255, '1400031346'), + (5192, '0754101495'), + (633, '0446524131'), + (5193, '0446524131'), + (9, '0446612626'), + (5194, '1565076613'), + (5195, '1565076613'), + (5196, '1565076613'), + (5197, '1565076613'), + (135, '0316781142'), + (729, '0609801279'), + (5198, '3257230915'), + (5199, '2035877393'), + (5200, '2290301531'), + (2455, '2070374874'), + (5201, '2070374874'), + (1337, '0060008024'), + (5202, '3442725577'), + (5203, '3442725577'), + (3912, '051511264X'), + (5204, '0425052028'), + (5205, '0425052028'), + (176, '0330491199'), + (5206, '0373709323'), + (5207, '0373710062'), + (2754, '0782141676'), + (5208, '0399526609'), + (574, '0345389417'), + (145, '0425147584'), + (1883, '0451177037'), + (5209, '0373710291'), + (5210, '0451406079'), + (1497, '0373471564'), + (1828, '0373710267'), + (5211, '037370870X'), + (1822, '0373709307'), + (1828, '0373708726'), + (5212, '0373710283'), + (919, '0373710054'), + (1822, '0373710356'), + (5213, '037371002X'), + (5214, '0373710259'), + (5215, '0373710275'), + (3916, '0373484380'), + (5216, '0373484380'), + (5217, '0373484380'), + (5218, '0795151314'), + (5219, '0940863332'), + (5220, '1565924975'), + (142, '0684853523'), + (5221, '0060193395'), + (5222, '0060193395'), + (484, '0446363669'), + (5223, '0373471645'), + (1828, '0373710208'), + (5224, '0373710186'), + (3115, '0373484518'), + (5225, '0373484518'), + (5226, '0373484518'), + (5227, '0373710216'), + (1822, '0373710070'), + (433, '0345339495'), + (1214, '0671525433'), + (2313, '0060675357'), + (2504, '0345302575'), + (4730, '0812571231'), + (606, '0812571231'), + (5228, '0345386868'), + (5229, '0151002444'), + (5230, '0151002444'), + (5231, '0312152000'), + (3333, '0452283442'), + (598, '0440918022'), + (5232, '1853260274'), + (5233, '081254949X'), + (574, '0345404319'), + (1696, '0671721887'), + (1214, '0671682830'), + (187, '0688086888'), + (187, '0312864663'), + (5234, '0312864663'), + (3359, '0812510488'), + (5235, '0345441494'), + (5236, '0609609017'), + (2929, '2253041939'), + (5237, '2020326450'), + (5238, '0671015583'), + (5239, '0140248943'), + (5240, '1894770099'), + (5241, '1894770099'), + (5242, '0571057063'), + (2911, '0670887315'), + (906, '0425098451'), + (3643, '0804105138'), + (5243, '0671664921'), + (5244, '0938665650'), + (1164, '0553572245'), + (1387, '0373834756'), + (5245, '0373834756'), + (5246, '0373834756'), + (94, '1568652895'), + (4200, '0786885912'), + (5247, '0307101479'), + (151, '0061000299'), + (913, '0380731207'), + (5248, '1550130684'), + (5249, '0471142425'), + (4315, '0440413281'), + (4768, '0345432479'), + (5096, '0446609560'), + (1732, '0449912108'), + (5250, '0531150011'), + (463, '067940712X'), + (5251, '1896300421'), + (223, '188259312X'), + (1226, '0609810030'), + (1493, '0670894699'), + (5252, '0452283086'), + (2990, '0553573292'), + (5253, '0553573292'), + (5254, '0448168278'), + (5255, '0679810528'), + (5256, '0679810528'), + (151, '0061000035'), + (1725, '038081093X'), + (199, '2910188132'), + (5257, '0684867974'), + (578, '0060924349'), + (5258, '0373289170'), + (743, '0671627759'), + (231, '0440225116'), + (743, '0316171638'), + (231, '0440214009'), + (5259, '342312203X'), + (351, '3257211945'), + (5260, '3257211945'), + (1001, '3499156717'), + (5261, '3499156717'), + (221, '3442448387'), + (2487, '3257231008'), + (2487, '0330346261'), + (5262, '0671743481'), + (3078, '067187876X'), + (274, '0140320431'), + (5016, '0140320431'), + (5263, '0743471520'), + (1180, '044166251X'), + (5264, '0713724048'), + (5265, '0006727492'), + (1755, '0440999197'), + (5266, '0471062189'), + (5267, '0471062189'), + (5268, '0375758453'), + (5269, '0843950552'), + (3662, '0553560719'), + (142, '0451168615'), + (5270, '0028617363'), + (1965, '0886779146'), + (5271, '0886779146'), + (2513, '0886779146'), + (1366, '0385334206'), + (1815, '0671027492'), + (1816, '0671027492'), + (949, '1853260010'), + (4764, '0449220605'), + (5272, '0553379267'), + (56, '1853260002'), + (1519, '1853260614'), + (1328, '0553560735'), + (1815, '0671027506'), + (1816, '0671027506'), + (1815, '0671024345'), + (1816, '0671024345'), + (5273, '0345384229'), + (5274, '0345384229'), + (4794, '0345384229'), + (580, '0449006883'), + (4710, '0060952822'), + (5275, '0553106651'), + (5276, '0671025538'), + (92, '0345413997'), + (1305, '1853260444'), + (1305, '1853260770'), + (3863, '0312863853'), + (5277, '0312863853'), + (5278, '0671026291'), + (59, '0425099334'), + (5279, '3442541425'), + (2604, '3442541425'), + (149, '067972205X'), + (5280, '067972205X'), + (2007, '0446912069'), + (5281, '0802112803'), + (4190, '0399135847'), + (5282, '0813517508'), + (2150, '067978148X'), + (5283, '0871135701'), + (5284, '1551667479'), + (3225, '0671027115'), + (5285, '0671785141'), + (5286, '006000777X'), + (76, '0671891650'), + (5287, '0671891650'), + (218, '0060391022'), + (5288, '1577330080'), + (3924, '0786711035'), + (5289, '0618263276'), + (142, '0684853507'), + (5290, '0385492235'), + (2633, '0761516735'), + (5291, '0060931353'), + (5292, '0345407083'), + (5293, '1570671222'), + (5294, '080213338X'), + (5295, '0722513585'), + (5296, '0385488947'), + (5297, '0446522422'), + (5298, '0446522384'), + (5299, '0345380673'), + (5300, '0446524182'), + (553, '0670865796'), + (5301, '0525241604'), + (5302, '0399146296'), + (5303, '031230238X'), + (5304, '0312859589'), + (5305, '0802139566'), + (5306, '0805042156'), + (5307, '155870275X'), + (640, '006019295X'), + (423, '0385484003'), + (488, '0060185716'), + (5308, '0517163128'), + (5309, '0671521004'), + (5310, '1401300065'), + (488, '0061031542'), + (5311, '0618197338'), + (1987, '0618197338'), + (2182, '0399237232'), + (129, '0316603570'), + (737, '0316603570'), + (3434, '0312318898'), + (1432, '0312289723'), + (5312, '0671659154'), + (1094, '0553801945'), + (5313, '0811828301'), + (944, '0765347156'), + (5314, '0740713949'), + (5315, '0836269195'), + (5316, '0836269195'), + (250, '0060745908'), + (1013, '0425192725'), + (1094, '0553579525'), + (485, '0380792745'), + (488, '0688167829'), + (944, '0812517024'), + (183, '0399146652'), + (5317, '006056198X'), + (973, '0553573985'), + (2371, '0312065647'), + (2232, '0312065647'), + (5318, '0312065647'), + (2544, '0671578448'), + (5319, '0671042831'), + (4501, '0312199406'), + (3394, '0393046974'), + (5320, '0312968884'), + (2393, '0756401356'), + (867, '0671656155'), + (5321, '0968288308'), + (760, '0808514121'), + (5322, '0345450698'), + (81, '0375412530'), + (5323, '0969799152'), + (5324, '0969799152'), + (5325, '0969799152'), + (5326, '0969799152'), + (5327, '0696218364'), + (1097, '0787123730'), + (1679, '1565115430'), + (5328, '1565115430'), + (5329, '1565115430'), + (5330, '1565115430'), + (1099, '1574533525'), + (5331, '0140285679'), + (5332, '0824518977'), + (3079, '0553569031'), + (152, '1558008764'), + (3223, '0553472704'), + (5333, '0553472704'), + (1395, '1559273909'), + (5334, '1559273909'), + (154, '1402511787'), + (5335, '1402511787'), + (5336, '0671779664'), + (5337, '0671779664'), + (223, '0804114609'), + (5338, '0743249275'), + (5339, '0743249275'), + (223, '0345438825'), + (206, '0380868768'), + (145, '039915079X'), + (5340, '0670894508'), + (5341, '0312983743'), + (553, '069452526X'), + (233, '0385729340'), + (3291, '0517122707'), + (4814, '0679463135'), + (5342, '0375508716'), + (5343, '089281859X'), + (2559, '075284332X'), + (5344, '9724115380'), + (5345, '0451450523'), + (5346, '0752801716'), + (559, '0330331973'), + (5347, '0006510019'), + (5346, '058621089X'), + (5348, '0864423705'), + (5349, '4770016964'), + (5350, '4770016964'), + (1532, '0586045449'), + (5351, '0586200967'), + (5352, '0441132448'), + (905, '0553212427'), + (905, '0553212419'), + (309, '0553577778'), + (5353, '0671037307'), + (5352, '0671037293'), + (5352, '0671037285'), + (1432, '031298328X'), + (3399, '031298328X'), + (131, '0451205626'), + (2823, '0380802937'), + (2589, '0446606456'), + (237, '0449223043'), + (237, '0553284118'), + (2823, '0380802929'), + (374, '0446364622'), + (138, '0140060898'), + (1754, '0671737791'), + (1575, '0684826127'), + (578, '0060920335'), + (4692, '0345423135'), + (2404, '1556613105'), + (1491, '0373483937'), + (734, '0142002585'), + (5069, '0142002585'), + (5354, '0425068145'), + (5355, '0891079149'), + (5356, '068482440X'), + (3159, '0373484488'), + (1491, '0373484488'), + (5357, '0373484488'), + (5358, '0764220314'), + (5359, '0684800993'), + (571, '0451082028'), + (5360, '0802726224'), + (5361, '0156002078'), + (5362, '0764223666'), + (5363, '156476706X'), + (5364, '0800757181'), + (5081, '1556618662'), + (916, '0891073906'), + (5365, '187895105X'), + (369, '0373218125'), + (485, '0380728133'), + (5366, '1586420429'), + (220, '0060932147'), + (225, '0375724389'), + (540, '0375422412'), + (5081, '0764223291'), + (81, '0449003981'), + (495, '037570924X'), + (5367, '0812930088'), + (5368, '0812930088'), + (3458, '0345435168'), + (5369, '0786886323'), + (4101, '0747541604'), + (5370, '0840775717'), + (1867, '0061009482'), + (552, '0380730847'), + (4577, '0373243820'), + (5371, '0373164394'), + (5372, '0345441265'), + (304, '1573227528'), + (5373, '038078954X'), + (2823, '0380819635'), + (63, '0440221595'), + (5374, '0316782475'), + (1937, '0525947299'), + (5375, '0140115773'), + (5376, '0060198184'), + (5377, '0878332928'), + (3333, '0525947736'), + (367, '0804119430'), + (5378, '0618118810'), + (2997, '0618118810'), + (330, '0449906515'), + (1282, '0671038443'), + (5379, '0786884649'), + (5378, '0786865539'), + (1981, '0553263811'), + (1746, '1857988884'), + (5380, '0747256675'), + (3159, '0380767643'), + (955, '0440222656'), + (3972, '0380569035'), + (3159, '0380767635'), + (5381, '0380711982'), + (1945, '0380711982'), + (5382, '0312904568'), + (4125, '0452282063'), + (5383, '0192833170'), + (5384, '0192833170'), + (1272, '0140189351'), + (1232, '0140189351'), + (5385, '0671622021'), + (3086, '0486289990'), + (5386, '0525468633'), + (4520, '0441000150'), + (606, '0671878662'), + (822, '0070064547'), + (5387, '0897331222'), + (5388, '1557736022'), + (252, '044022392X'), + (4732, '0446605913'), + (377, '0553254642'), + (217, '0553213806'), + (5389, '0553213806'), + (501, '0451410025'), + (247, '0804118558'), + (5390, '0380808641'), + (5387, '1557735417'), + (5126, '0385722109'), + (5391, '1931166196'), + (5392, '0947782753'), + (574, '0679433015'), + (574, '0394587863'), + (5393, '0517150646'), + (2779, '0440136482'), + (2780, '0440136482'), + (5394, '0440136482'), + (5395, '0867163968'), + (5396, '0867163968'), + (5397, '0867163968'), + (5398, '0883781042'), + (5399, '0913866156'), + (5400, '0094717907'), + (5401, '1887161120'), + (5400, '0385188579'), + (5400, '0451196805'), + (5400, '0385132786'), + (5400, '0671632949'), + (5402, '0767901576'), + (5403, '0316899984'), + (5404, '3423130180'), + (5405, '0671820478'), + (5406, '0843947888'), + (412, '0385471106'), + (1679, '014029628X'), + (5407, '3473581534'), + (5408, '3473581534'), + (5409, '3473581534'), + (965, '0590425919'), + (5410, '0394719557'), + (5411, '0441478123'), + (5412, '006019393X'), + (1214, '0743428668'), + (161, '1568650426'), + (5413, '1571742859'), + (5414, '3462030426'), + (5413, '3462030426'), + (290, '3596125723'), + (892, '006097141X'), + (5415, '0380974487'), + (199, '325706277X'), + (200, '325706277X'), + (5416, '0517703491'), + (160, '0739412930'), + (5417, '0739413279'), + (109, '0821749889'), + (5418, '0373970196'), + (5419, '0553563734'), + (1196, '0515129224'), + (1196, '0671676237'), + (1116, '0553801813'), + (2006, '0380016974'), + (5420, '0380809087'), + (5421, '0609805509'), + (3998, '0886778158'), + (3998, '0886778166'), + (4455, '0671025945'), + (5422, '0441009077'), + (5423, '0375509089'), + (2168, '0449005844'), + (554, '044922046X'), + (2201, '0671877836'), + (2201, '0671876813'), + (1118, '0441090435'), + (1537, '0425181685'), + (1696, '0743435583'), + (1196, '0515130923'), + (5424, '055357762X'), + (2276, '0380802325'), + (5425, '0425173356'), + (554, '0553572040'), + (2201, '0671721631'), + (1537, '0345435273'), + (2006, '0380814803'), + (5426, '0399149678'), + (5427, '0671035460'), + (3115, '0778320286'), + (3465, '0451212169'), + (1754, '0671871005'), + (3115, '0373218877'), + (5428, '0755308530'), + (5429, '0451188713'), + (5430, '0974087203'), + (63, '0316095133'), + (5431, '1573221597'), + (5432, '1573221597'), + (262, '0064472272'), + (5433, '0440224748'), + (5434, '3492229352'), + (5435, '0140446745'), + (5436, '0140446745'), + (5437, '0140446745'), + (5438, '0486285537'), + (3608, '0805210555'), + (5439, '0805210555'), + (1732, '0805210555'), + (5440, '0451628047'), + (5441, '0451628047'), + (284, '0689839618'), + (5442, '0689839618'), + (1159, '0670878073'), + (5443, '0440114330'), + (2303, '0061059323'), + (5444, '0061059323'), + (5445, '0764228943'), + (5446, '0764228943'), + (5081, '0764228072'), + (94, '0880384433'), + (532, '0515128600'), + (458, '0553583980'), + (369, '0515121843'), + (5447, '0553560220'), + (5448, '3423130148'), + (1179, '0312872372'), + (5449, '0071364498'), + (5450, '0071364498'), + (915, '0486292568'), + (5451, '0312952716'), + (5452, '0446357928'), + (5453, '0375714529'), + (335, '0451527712'), + (5454, '0451527712'), + (5455, '1565049489'), + (5456, '0486270734'), + (5457, '1888054069'), + (5458, '087542001X'), + (5459, '0671474308'), + (5460, '0345432223'), + (5461, '0876544766'), + (5462, '019283097X'), + (5463, '019283097X'), + (5464, '0831705183'), + (56, '0451525892'), + (282, '0451525892'), + (5465, '0446391360'), + (4710, '0060965819'), + (5466, '0385044011'), + (5467, '0451520955'), + (5468, '0446373559'), + (5469, '0883657147'), + (2713, '0671039415'), + (5470, '0156612062'), + (5471, '0156612062'), + (5472, '0156612062'), + (5473, '0517692007'), + (5474, '0679603301'), + (1203, '0312130279'), + (5475, '0847813754'), + (5476, '0140441034'), + (5477, '0140441034'), + (1597, '0140443215'), + (5476, '0140443215'), + (5478, '0140443215'), + (4354, '0871567865'), + (5479, '0871567865'), + (5480, '0375501517'), + (5481, '0679410341'), + (145, '0399147837'), + (5482, '0399147837'), + (188, '0553354779'), + (2181, '051511331X'), + (1013, '0399147195'), + (1432, '0312265840'), + (60, '0743206029'), + (2249, '038080025X'), + (369, '0515136263'), + (5483, '0425157784'), + (5108, '0553579312'), + (346, '0380725827'), + (346, '0380728265'), + (60, '0684835959'), + (5484, '0786884592'), + (5485, '0786884592'), + (5486, '0312958358'), + (135, '0316780375'), + (127, '0446611948'), + (5487, '067151699X'), + (5488, '0452280958'), + (5489, '078601525X'), + (142, '0452279607'), + (142, '0670272663'), + (142, '0670451932'), + (1996, '0849911788'), + (559, '0333568745'), + (2656, '067943612X'), + (142, '0743436210'), + (5490, '0061098280'), + (5491, '0061098280'), + (1937, '0440236738'), + (5492, '0449902803'), + (5493, '0399138250'), + (2968, '0804105820'), + (1875, '0671864416'), + (5494, '0671864416'), + (5495, '0671864416'), + (5496, '0553370715'), + (5497, '0201101904'), + (5498, '0671536214'), + (5499, '0440224721'), + (175, '0446604844'), + (131, '0061044490'), + (1883, '0451204514'), + (5498, '0440220696'), + (5500, '0449230643'), + (5501, '0380564998'), + (5502, '0671570072'), + (1041, '0880382651'), + (5503, '0880382651'), + (5504, '0802730981'), + (1196, '1551665557'), + (971, '1551668610'), + (552, '0380817691'), + (565, '0553582526'), + (1211, '0684859734'), + (2769, '0345426037'), + (2768, '0671887971'), + (5505, '0345401964'), + (1753, '0312983387'), + (5506, '055337396X'), + (5507, '006104055X'), + (115, '0451173139'), + (61, '0671038567'), + (1628, '0451152190'), + (180, '0141000198'), + (1395, '067976268X'), + (5508, '0425188213'), + (2575, '0425192121'), + (5509, '0451184785'), + (554, '055309999X'), + (55, '0380804743'), + (5510, '0679734163'), + (1871, '006000469X'), + (554, '0553578316'), + (55, '0380770334'), + (498, '0743225325'), + (5511, '0446365386'), + (5512, '0804111634'), + (5511, '0804111626'), + (5513, '1930722109'), + (882, '055321330X'), + (1084, '055321330X'), + (5514, '006091341X'), + (128, '0446519804'), + (128, '0446527017'), + (337, '0399148450'), + (2079, '0451201515'), + (2081, '0451201515'), + (989, '0671727796'), + (5515, '0440194253'), + (1326, '0446523372'), + (1327, '0446523372'), + (5516, '0743456378'), + (3259, '0439043999'), + (3260, '0439043999'), + (5517, '0439043999'), + (3259, '0590481150'), + (3260, '0590481150'), + (5518, '0590481150'), + (2599, '0812504798'), + (5519, '0440009782'), + (5520, '1565540387'), + (5521, '0440229464'), + (5522, '0064440257'), + (5523, '0064440257'), + (256, '0061020702'), + (5524, '0425130223'), + (142, '0451161351'), + (256, '0061057649'), + (59, '0425100650'), + (5525, '0689845936'), + (5526, '0440202086'), + (5527, '0140060324'), + (5528, '0091841844'), + (5529, '190085032X'), + (5530, '190085032X'), + (1355, '0440509238'), + (369, '0373218036'), + (2928, '2070725804'), + (5531, '0349113858'), + (2531, '0671047329'), + (5532, '0451451155'), + (5531, '0061056219'), + (5531, '0451453328'), + (5531, '0451451384'), + (5531, '0451451562'), + (5531, '0451451805'), + (5533, '0399217797'), + (5534, '0785812245'), + (5535, '0785812245'), + (5536, '1558747575'), + (5537, '0395311292'), + (5538, '034542705X'), + (5539, '0312860374'), + (2006, '0380762595'), + (2006, '0380774933'), + (3779, '0440202507'), + (1196, '0515131741'), + (1196, '0515136182'), + (1793, '0515136948'), + (2169, '0451206428'), + (2823, '0380790890'), + (1092, '0743477081'), + (914, '0380752131'), + (583, '0345388593'), + (3779, '044020254X'), + (2168, '0515135453'), + (1359, '0380812037'), + (1116, '0553581872'), + (5540, '0380818647'), + (3750, '0553583395'), + (1116, '055358619X'), + (532, '0515125628'), + (2747, '0553565249'), + (160, '055357695X'), + (1196, '0671019619'), + (1196, '0446363731'), + (1196, '0671019651'), + (1196, '0671523074'), + (1628, '0553572326'), + (2987, '0061059838'), + (5541, '0061059838'), + (5542, '0061059838'), + (61, '0425172546'), + (5543, '074347628X'), + (1116, '0553586181'), + (743, '0061094609'), + (5544, '0486273776'), + (5545, '0931432901'), + (5546, '0060256257'), + (833, '0060256257'), + (689, '0679427279'), + (5547, '055357809X'), + (2913, '0380711524'), + (5548, '0553261509'), + (374, '0446341991'), + (2468, '0140113428'), + (5549, '0821713000'), + (939, '006101009X'), + (939, '0061092533'), + (5550, '0449211886'), + (1428, '0590466194'), + (5551, '0811827631'), + (988, '0140068767'), + (1265, '0553278398'), + (1265, '0345308980'), + (142, '0743235150'), + (5552, '2867448999'), + (1552, '0515104191'), + (1891, '0441885691'), + (5553, '0451628039'), + (760, '0140177396'), + (5554, '1570624380'), + (56, '0760700435'), + (5555, '048627084X'), + (5556, '048627084X'), + (5557, '0802713823'), + (5558, '051718608X'), + (5559, '051718608X'), + (1977, '0486278166'), + (56, '0140373373'), + (5560, '0140373373'), + (401, '0486408787'), + (181, '0486408787'), + (553, '0451186923'), + (142, '0451184114'), + (484, '0446356573'), + (1840, '155166545X'), + (1013, '0553280341'), + (1013, '0553280368'), + (574, '067942573X'), + (3863, '0812570944'), + (1953, '078688939X'), + (142, '0451176464'), + (5561, '0671894455'), + (142, '0451186362'), + (5562, '1570431108'), + (5563, '1570431108'), + (5564, '0451405692'), + (129, '0446607657'), + (5111, '0446611662'), + (5565, '0140067841'), + (5566, '1878379992'), + (5567, '0892811706'), + (5568, '0684150700'), + (5569, '0517463008'), + (2282, '081120457X'), + (5570, '081120457X'), + (5571, '0395120985'), + (5572, '0910395039'), + (2126, '0312901437'), + (397, '0553212923'), + (5573, '0553212923'), + (5574, '0553212923'), + (39, '0345354613'), + (5575, '0967231434'), + (128, '0553104039'), + (5576, '038532748X'), + (1234, '0380713802'), + (56, '0140430725'), + (5577, '0140430725'), + (5578, '0345356640'), + (3078, '0812513401'), + (5579, '0940685590'), + (4915, '0898159318'), + (5580, '0671319825'), + (5581, '0451456491'), + (5580, '0451450957'), + (5580, '0451454359'), + (2307, '067187747X'), + (1186, '0441569595'), + (5582, '0843948302'), + (5583, '1573229105'), + (3125, '0375505148'), + (4286, '0345291409'), + (145, '0425147363'), + (876, '0425147363'), + (3407, '0425147363'), + (5584, '0671731424'), + (203, '034068948X'), + (686, '0449238083'), + (5585, '0747204233'), + (490, '0385333919'), + (536, '0449001245'), + (330, '0449001245'), + (5586, '0449001245'), + (1096, '0061099570'), + (5587, '0061099570'), + (5588, '0936552034'), + (5589, '0375750002'), + (2694, '0425165582'), + (1337, '0380820293'), + (1265, '0451141296'), + (2513, '0451141296'), + (5590, '0451141296'), + (5591, '0312980205'), + (971, '0743467345'), + (798, '0679889175'), + (798, '0679801111'), + (5592, '0871236575'), + (5593, '1410729435'), + (178, '0395775396'), + (5594, '0743434021'), + (5595, '0440164125'), + (5596, '0515116297'), + (1498, '0812550765'), + (5597, '0888011091'), + (5598, '0425183653'), + (5599, '0373765703'), + (3467, '037369167X'), + (5600, '0373250134'), + (2587, '0446363162'), + (3469, '0373153279'), + (1491, '0373153260'), + (5601, '0345375556'), + (2701, '1573221082'), + (3086, '068480154X'), + (56, '0140430059'), + (5602, '0140430059'), + (1628, '0553569619'), + (5603, '0770104274'), + (5604, '0451172825'), + (129, '0446613843'), + (737, '0446613843'), + (118, '0679436448'), + (301, '0553580930'), + (5605, '1558216847'), + (5606, '0590313185'), + (5607, '0590313185'), + (5608, '0590313185'), + (5609, '0590462253'), + (5610, '0590462253'), + (1282, '0671024094'), + (5611, '1565070054'), + (5610, '1565070461'), + (5612, '1556618646'), + (5444, '1556618646'), + (5611, '1556618638'), + (5444, '1556618638'), + (5611, '155661862X'), + (5444, '155661862X'), + (5610, '0890819696'), + (5610, '1565071298'), + (5613, '1556618409'), + (5612, '1556618395'), + (5614, '0849942357'), + (5613, '0849937221'), + (5613, '0849917069'), + (5613, '0849917050'), + (5615, '0373691580'), + (1005, '0385249683'), + (5616, '0060975849'), + (3259, '059043411X'), + (3260, '059043411X'), + (3791, '0439172187'), + (5617, '0590978802'), + (4222, '0439051630'), + (5618, '0439051630'), + (5619, '0439160200'), + (5620, '0439160219'), + (5621, '0439160219'), + (5622, '068482292X'), + (5623, '0393308189'), + (5624, '0446676136'), + (5625, '0446676136'), + (5626, '0345394658'), + (5625, '0345301110'), + (5627, '068485287X'), + (2669, '0140450181'), + (5628, '0140450181'), + (2669, '014045022X'), + (5627, '014045022X'), + (5629, '014045022X'), + (1432, '0312980140'), + (403, '0553211951'), + (274, '0141301155'), + (89, '0525934960'), + (2572, '0140189645'), + (5630, '0140189645'), + (5631, '0877790388'), + (5632, '0771065175'), + (397, '0451521293'), + (1010, '0385324138'), + (5633, '0679436332'), + (283, '0452277507'), + (5634, '0452277507'), + (5635, '0764222295'), + (5591, '0764222295'), + (2724, '0140327738'), + (5636, '0140367624'), + (5637, '0140367624'), + (5635, '0140367462'), + (5638, '0140367462'), + (5591, '0764221396'), + (5591, '076422400X'), + (5591, '0764225553'), + (5634, '0764222473'), + (5591, '0764222473'), + (5634, '0764221760'), + (5591, '0764221760'), + (1010, '044022425X'), + (5591, '0764221612'), + (5591, '0764221566'), + (1010, '0440217563'), + (1010, '0385319959'), + (5639, '0773674187'), + (5640, '0773674187'), + (5591, '1556619510'), + (175, '0446611778'), + (2453, '1853260363'), + (5641, '0006374093'), + (1084, '0374525188'), + (2344, '0749385359'), + (3608, '0099428644'), + (2596, '0349111367'), + (5642, '0747273146'), + (5643, '034910901X'), + (5644, '0330244078'), + (5645, '0571216420'), + (5646, '0312974620'), + (5647, '0312974620'), + (5648, '0304357278'), + (5649, '0471293334'), + (5650, '0471293334'), + (5651, '1842223739'), + (5652, '0714530387'), + (5653, '0679735291'), + (5654, '0140250328'), + (5655, '1591092744'), + (2805, '3442540356'), + (5656, '0671447483'), + (5657, '0671447483'), + (220, '2070741354'), + (137, '0345385977'), + (5658, '0373441762'), + (5659, '0373441800'), + (5599, '0373250479'), + (108, '0312303467'), + (5660, '0671693190'), + (218, '0670891509'), + (5661, '0312988915'), + (518, '0312988915'), + (1099, '014023313X'), + (5662, '097213011X'), + (5663, '097213011X'), + (563, '0425141233'), + (1320, '0812966813'), + (1244, '0671016776'), + (5664, '0923059008'), + (1030, '0373250428'), + (476, '0345470621'), + (5665, '0060522259'), + (1730, '0312205961'), + (4435, '0743418700'), + (1730, '0399143564'), + (1730, '0399144684'), + (4435, '0425185508'), + (4435, '0140230270'), + (5666, '0140266925'), + (1937, '0525947914'), + (1628, '0345452593'), + (17, '0757300421'), + (18, '0757300421'), + (5667, '0757300421'), + (5668, '0757300421'), + (5669, '076791404X'), + (5670, '0060586125'), + (5671, '0440220432'), + (137, '0446326062'), + (2027, '0671733613'), + (1937, '0440225442'), + (5672, '0575403306'), + (5673, '0375759093'), + (5674, '0590137859'), + (911, '0590137859'), + (5675, '0590137859'), + (5676, '0786845384'), + (5677, '0786845406'), + (5678, '0064442055'), + (5679, '0064442055'), + (5677, '0064440192'), + (5680, '0064440192'), + (2241, '0590470051'), + (2713, '0553480545'), + (4680, '0590417363'), + (4416, '0590442481'), + (2239, '0590440829'), + (1194, '0671879464'), + (2713, '0553484001'), + (1965, '0590373986'), + (1194, '0671879510'), + (2713, '0553480553'), + (2713, '055348284X'), + (2239, '0590482289'), + (2713, '0553482122'), + (5677, '0380716984'), + (5681, '0380716984'), + (274, '0590136011'), + (275, '0590136011'), + (5682, '0590426931'), + (618, '0590426818'), + (618, '0590426869'), + (5683, '0590426869'), + (5684, '0590426850'), + (5682, '0590426850'), + (618, '0590426877'), + (5685, '0590426877'), + (5051, '0590426885'), + (618, '0590426796'), + (596, '0380732726'), + (617, '0380732726'), + (596, '0380709562'), + (617, '0380709562'), + (596, '0380709600'), + (5686, '0380709600'), + (596, '038070952X'), + (617, '038070952X'), + (596, '0380709236'), + (617, '0380709236'), + (1194, '0671955128'), + (1194, '0743437616'), + (5687, '0743437616'), + (1194, '0743437675'), + (5688, '0743437675'), + (1194, '0671001205'), + (1194, '0743406648'), + (1194, '0743437470'), + (5686, '0743437470'), + (906, '0440158613'), + (5689, '0061052493'), + (5690, '0142000396'), + (5691, '0679730346'), + (4604, '0684815028'), + (5692, '0684815028'), + (5693, '0312204264'), + (5694, '0312984863'), + (5695, '0373261136'), + (3606, '0517573199'), + (622, '0060275103'), + (1451, '0679752455'), + (5696, '0525947345'), + (5697, '006001203X'), + (5167, '0375713344'), + (2940, '0805060227'), + (5698, '0890878897'), + (5699, '0890878897'), + (5700, '0091834171'), + (4030, '0451174291'), + (5701, '0451174291'), + (1401, '3596200261'), + (5702, '3596200261'), + (5703, '3518366467'), + (5704, '3129044019'), + (5705, '3404146298'), + (814, '0140293450'), + (5706, '1891480030'), + (458, '055311073X'), + (81, '037540256X'), + (543, '0440207622'), + (5707, '0671004654'), + (5708, '034543630X'), + (1214, '0671759329'), + (2181, '0399142495'), + (543, '0385306059'), + (5405, '0843951044'), + (3282, '0743253973'), + (5709, '1930603401'), + (5710, '0971614504'), + (3448, '006000780X'), + (5405, '0450057062'), + (5405, '0747247838'), + (5711, '0972930949'), + (5405, '0843951842'), + (5712, '0843953837'), + (1615, '042519549X'), + (81, '1400042070'), + (3463, '067084327X'), + (1615, '0425193942'), + (3458, '0375506039'), + (3458, '0345435028'), + (1754, '0345453816'), + (810, '0345464958'), + (345, '0743412753'), + (458, '0553583956'), + (5713, '0446612804'), + (5714, '0618109617'), + (5715, '1401300316'), + (5705, '1889186287'), + (5705, '1881475735'), + (5716, '1881475735'), + (5717, '0972085920'), + (5718, '0972085920'), + (5705, '1889186228'), + (5719, '1892950103'), + (1214, '0671729411'), + (5720, '950028359X'), + (4669, '043912042X'), + (3541, '9722100262'), + (583, '0060177225'), + (5721, '9505112033'), + (5722, '9875500534'), + (5439, '9875500046'), + (5721, '9875500526'), + (2011, '0425128458'), + (1628, '0553568701'), + (5723, '1569471231'), + (5724, '1889199036'), + (5725, '0345442938'), + (5726, '0531058379'), + (906, '0425129616'), + (5727, '1856352498'), + (484, '0688162827'), + (490, '0060083948'), + (5728, '0679892206'), + (5729, '0679892206'), + (5730, '1590521439'), + (4518, '158660970X'), + (5731, '0152024999'), + (567, '0849942845'), + (5732, '158567074X'), + (1409, '2070360024'), + (5733, '0451184025'), + (3608, '0553213695'), + (5734, '0553213695'), + (5735, '0140089373'), + (5736, '0140291946'), + (5737, '0921149611'), + (401, '0460873598'), + (5738, '0889223394'), + (5739, '0138199051'), + (5740, '0771021461'), + (1209, '0446344109'), + (992, '074320395X'), + (5185, '0452008999'), + (135, '0316788228'), + (5741, '0415902029'), + (5742, '0920057861'), + (5743, '0774803436'), + (5744, '0774803436'), + (5745, '0774803436'), + (5746, '1550170732'), + (5747, '013116757X'), + (5748, '0176035400'), + (454, '0192815326'), + (5749, '0192815326'), + (5750, '0192815326'), + (5751, '0948984031'), + (5433, '014002476X'), + (5752, '155861009X'), + (5753, '155861009X'), + (5754, '0671740288'), + (5755, '0951426133'), + (5756, '0704339838'), + (1046, '0375421815'), + (283, '0451519841'), + (1802, '0451519841'), + (901, '0451519841'), + (5757, '0889222371'), + (1514, '006091307X'), + (5758, '0140067779'), + (427, '0553211714'), + (484, '0440160677'), + (5759, '0451158962'), + (583, '0061095869'), + (583, '0345345738'), + (5760, '1859671438'), + (5761, '0870407570'), + (1891, '0441172717'), + (5762, '0751510785'), + (93, '0375803483'), + (5763, '0375803483'), + (5764, '0060956453'), + (5765, '0971400415'), + (821, '0374266441'), + (2199, '0374266441'), + (5766, '0452283876'), + (5767, '0375506292'), + (2713, '0553156691'), + (2713, '0553156810'), + (5768, '0553156950'), + (2713, '0553156950'), + (2713, '0553157159'), + (2713, '0553156888'), + (2713, '0553156357'), + (2713, '0553156535'), + (2713, '0553157272'), + (2713, '0553156241'), + (2713, '0553156284'), + (2713, '0553156098'), + (2713, '0553157078'), + (2713, '0553156411'), + (2713, '0553155881'), + (2713, '0553156063'), + (2713, '0553156632'), + (2713, '0553484346'), + (5769, '0060961023'), + (5770, '0060961023'), + (5771, '0385134444'), + (5772, '0385134444'), + (5773, '0446342963'), + (5774, '0446342963'), + (5775, '0023672609'), + (5776, '1567615325'), + (5777, '0451410327'), + (132, '0553569902'), + (3750, '0553574116'), + (1876, '3442413508'), + (1921, '3442413508'), + (712, '0385479484'), + (848, '3257234015'), + (5778, '3257234015'), + (5779, '0030914566'), + (5780, '0425185796'), + (5781, '087923573X'), + (5782, '1573223328'), + (3912, '0399142614'), + (5783, '0375703128'), + (1704, '0553232320'), + (5784, '0440318688'), + (1532, '0345314980'), + (5785, '3455042457'), + (5098, '0380811812'), + (5786, '0452267110'), + (5787, '0451187261'), + (3591, '0425068293'), + (3591, '0553295233'), + (5788, '0743246071'), + (142, '0743417682'), + (5789, '0385507593'), + (142, '0345441036'), + (580, '0345441036'), + (5790, '0345366700'), + (5789, '0441470017'), + (5789, '0441046371'), + (4655, '0553575708'), + (5791, '0812542843'), + (1186, '0553281747'), + (5792, '1572971967'), + (5793, '1572971967'), + (5794, '1565049314'), + (5795, '1565049314'), + (873, '006109398X'), + (4338, '156947012X'), + (2306, '0312867549'), + (1697, '157322202X'), + (5796, '0879516283'), + (3972, '0879516283'), + (5797, '0879516283'), + (1898, '0812571339'), + (574, '037541200X'), + (5798, '0380732033'), + (5799, '0553278274'), + (565, '0553571885'), + (274, '014034294X'), + (275, '014034294X'), + (5800, '192883244X'), + (5801, '0934641641'), + (5802, '0934641641'), + (5803, '0934641641'), + (5804, '1851820442'), + (5805, '0446671444'), + (5806, '0446671444'), + (596, '0440717949'), + (5807, '0140502343'), + (5808, '0140502343'), + (5809, '0590478346'), + (5810, '0440474655'), + (5811, '0806968532'), + (4333, '0385318413'), + (5812, '1569873291'), + (5813, '1569870381'), + (593, '030701035X'), + (5814, '030701035X'), + (3259, '0439327660'), + (5815, '0439327660'), + (5816, '0439327660'), + (5817, '0439327660'), + (5818, '1885221665'), + (5819, '006441082X'), + (5820, '0590189344'), + (4220, '0590189344'), + (5821, '1561791334'), + (5822, '0553225413'), + (5823, '0451188586'), + (5824, '0451188586'), + (5825, '1561568805'), + (4398, '043921064X'), + (1416, '0717289079'), + (5826, '0842341137'), + (5827, '0439057469'), + (5828, '0439057469'), + (5829, '0590425587'), + (5830, '0440402921'), + (1431, '0316142336'), + (5831, '0310202639'), + (5830, '0310495512'), + (5832, '1889733008'), + (5833, '1889733008'), + (5834, '0440406943'), + (5835, '0440406943'), + (5836, '1856975770'), + (5837, '1568222033'), + (5838, '9531530319'), + (5839, '1567186483'), + (5840, '0738841943'), + (5841, '0738841943'), + (5842, '0806512687'), + (5843, '0806512687'), + (4195, '0875420486'), + (463, '0385333137'), + (59, '034538430X'), + (616, '0553576801'), + (3399, '1551668637'), + (5020, '0060169281'), + (4191, '1551666952'), + (369, '0553285785'), + (369, '0373484410'), + (5844, '0064405877'), + (5845, '0064405877'), + (5846, '0060009640'), + (2694, '0060182970'), + (713, '0399144897'), + (3159, '0061031089'), + (5847, '0312890273'), + (1326, '0446608378'), + (1327, '0446608378'), + (436, '0449001962'), + (5848, '074321269X'), + (543, '0385323921'), + (3241, '1551668440'), + (5849, '0446518700'), + (5850, '0451201906'), + (5851, '0812555058'), + (5852, '0441005543'), + (5853, '0312956681'), + (5854, '0373262736'), + (4391, '155166836X'), + (1562, '0451193288'), + (132, '0553578022'), + (1013, '0449219364'), + (5855, '1842328506'), + (5856, '0446516279'), + (3159, '0380775832'), + (550, '0440215900'), + (3159, '0380818760'), + (1319, '0446361836'), + (3615, '0517549069'), + (4593, '1567187277'), + (3897, '0373272359'), + (1319, '0446605883'), + (5857, '1567181562'), + (760, '0140187405'), + (5858, '0140187405'), + (3885, '0893753971'), + (905, '1853260584'), + (5500, '0590434985'), + (176, '0671739670'), + (5859, '0843953101'), + (5860, '0345308484'), + (5861, '0393307069'), + (3069, '0380789140'), + (5862, '0451453824'), + (906, '0440186927'), + (56, '0679783261'), + (463, '0679783261'), + (5863, '0375806717'), + (5864, '0515137057'), + (5787, '0743227441'), + (5865, '0670877999'), + (4474, '0312986289'), + (5866, '0812570901'), + (1282, '0671024108'), + (5707, '0345433491'), + (5867, '0671793888'), + (5868, '0679769447'), + (3225, '0671535455'), + (17, '1558743316'), + (18, '1558743316'), + (1866, '0345381432'), + (5869, '089919513X'), + (5870, '089919513X'), + (5871, '043919105X'), + (5872, '043919105X'), + (5873, '0553375067'), + (351, '0671452177'), + (5874, '0451143426'), + (301, '0553275976'), + (2126, '0553122509'), + (1159, '0140092323'), + (5875, '0441779131'), + (433, '0345387813'), + (5876, '0345387813'), + (5877, '1562927736'), + (5878, '0553293885'), + (5879, '0671795171'), + (5880, '0449702472'), + (4619, '0553564404'), + (5881, '0441873308'), + (913, '0812512421'), + (5882, '0553209833'), + (5883, '0553209833'), + (1164, '0553562398'), + (1164, '0553287532'), + (906, '0312979509'), + (5884, '0312979509'), + (5885, '0060199296'), + (1569, '0060199296'), + (5886, '1885365012'), + (2888, '0931580781'), + (5887, '0440214602'), + (2978, '0425191583'), + (3749, '0061097942'), + (679, '0449207145'), + (5606, '0380704900'), + (760, '0553278363'), + (3086, '0684717603'), + (5888, '0671666401'), + (79, '0671434225'), + (18, '0609609491'), + (117, '0609609491'), + (24, '3453136411'), + (1283, '0671742949'), + (132, '0553582127'), + (713, '0425169685'), + (2043, '0425132625'), + (5498, '0440225817'), + (1704, '0312982615'), + (2626, '0312982615'), + (5515, '0743456394'), + (5889, '0312270712'), + (5890, '0060163283'), + (5891, '0060163283'), + (5892, '0061091847'), + (554, '0553578308'), + (5893, '0393300498'), + (554, '0553578359'), + (5894, '0671529986'), + (5895, '1594570841'), + (217, '1853260061'), + (1755, '0440901588'), + (939, '0425146421'), + (1496, '1551666235'), + (5896, '0553281143'), + (952, '068419337X'), + (433, '0345305779'), + (5897, '0684827123'), + (2006, '0380792028'), + (630, '0821770195'), + (3615, '0517593343'), + (5898, '0969522908'), + (2404, '0842357424'), + (532, '051513225X'), + (3996, '0886773490'), + (532, '0515129933'), + (532, '051512088X'), + (433, '0345387805'), + (5875, '0345387805'), + (2987, '0345316002'), + (5899, '0345316002'), + (5875, '0441003583'), + (5900, '0441005195'), + (5899, '0441004326'), + (5899, '0441005055'), + (5901, '0590034871'), + (218, '0425179648'), + (5902, '9070066882'), + (1773, '0553262807'), + (1228, '0679420916'), + (5903, '0895948028'), + (5904, '0446515612'), + (5905, '1569247137'), + (5906, '1569247137'), + (5907, '0671657860'), + (5908, '0515103292'), + (5909, '0060956283'), + (5910, '3596142172'), + (5911, '3596142172'), + (5912, '3404142942'), + (3693, '3453160789'), + (5187, '3453162358'), + (5913, '3257230044'), + (3961, '3257230044'), + (554, '354824971X'), + (1300, '345315178X'), + (5914, '3442727103'), + (5915, '3442727103'), + (5916, '344272144X'), + (5917, '3596147832'), + (5918, '3596147832'), + (5919, '3404139968'), + (632, '3453196643'), + (5920, '3442351472'), + (5919, '3442351472'), + (5919, '3442435285'), + (5921, '3442435285'), + (5919, '3442431379'), + (175, '3404143485'), + (5922, '3404143485'), + (5923, '3596223946'), + (5919, '3547717655'), + (1209, '3446200487'), + (2176, '3446200487'), + (285, '3446201882'), + (5924, '3446201882'), + (5925, '0759901260'), + (1409, '0679764003'), + (2661, '0812550609'), + (5008, '1560760516'), + (5009, '1560760516'), + (5926, '1560760516'), + (5927, '156076113X'), + (5925, '156076113X'), + (574, '0345422406'), + (5928, '0312194560'), + (4909, '0553570951'), + (2985, '0451121082'), + (598, '0140345353'), + (1092, '0671644475'), + (2166, '0373122659'), + (5929, '037329221X'), + (3467, '0373259891'), + (5930, '0373122691'), + (1388, '0373122675'), + (913, '0812507274'), + (5931, '0070506728'), + (5932, '0070506728'), + (5933, '0070506728'), + (5934, '0525932593'), + (5935, '0525932593'), + (5936, '0810913763'), + (5937, '0810913763'), + (5938, '0865470561'), + (5939, '0688159141'), + (1073, '039449461X'), + (5940, '0449908615'), + (5941, '0963440349'), + (5942, '0312045875'), + (4400, '0312045875'), + (5943, '0671769316'), + (5944, '0671769316'), + (5945, '0671769316'), + (5946, '0806515015'), + (5947, '0767900936'), + (5948, '0767900936'), + (5946, '0060965991'), + (5947, '0060965991'), + (5949, '0060965991'), + (5950, '1559581719'), + (415, '0553213938'), + (2271, '1551668122'), + (5951, '0345444078'), + (5952, '0802137040'), + (5953, '0802137040'), + (821, '1860461670'), + (5954, '0375410198'), + (5955, '0375410198'), + (118, '0375700153'), + (142, '0451190548'), + (1244, '0671553046'), + (5881, '0553232940'), + (2714, '059010683X'), + (1167, '043942089X'), + (1168, '043942089X'), + (5956, '0684849224'), + (5957, '0006392466'), + (5958, '0452283825'), + (5959, '044661050X'), + (5960, '0425176045'), + (4556, '0449006158'), + (5961, '0486280381'), + (1875, '0671749102'), + (5962, '0687287529'), + (492, '0142003735'), + (1562, '0451168429'), + (5963, '006055584X'), + (5964, '006055584X'), + (5965, '0312104324'), + (5966, '0552138428'), + (5967, '0425180468'), + (5968, '0060092165'), + (131, '0061094234'), + (5969, '0425169855'), + (131, '0061099805'), + (5970, '0061099805'), + (131, '0061093491'), + (131, '0061090808'), + (5971, '0440223709'), + (1509, '157566691X'), + (5972, '0140272852'), + (5973, '9057592029'), + (5974, '0373121873'), + (5975, '1583483322'), + (5976, '1551668254'), + (3541, '0151004218'), + (5977, '0812970802'), + (5978, '0830708200'), + (5979, '0385249640'), + (274, '0590032496'), + (275, '0590032496'), + (5980, '1863738487'), + (5981, '0749720409'), + (3473, '0330363239'), + (956, '0553480669'), + (5982, '0140318909'), + (956, '0553269216'), + (1194, '0671000500'), + (1194, '0671663194'), + (1194, '0671464612'), + (3264, '0440220653'), + (5983, '0440210224'), + (2675, '0064405842'), + (5984, '0671001787'), + (5985, '0743407865'), + (5028, '3548602746'), + (1052, '379511733X'), + (3057, '3548256007'), + (364, '3548255329'), + (5986, '3548255329'), + (364, '354825621X'), + (5985, '354825621X'), + (5987, '3716022799'), + (5988, '3716022799'), + (5989, '3716022799'), + (5990, '3548364160'), + (5991, '3548364160'), + (3057, '3548257615'), + (3057, '3548256910'), + (5992, '3426622548'), + (2805, '0060987324'), + (5993, '3453863712'), + (5994, '0192823507'), + (5995, '0192823507'), + (3787, '0679986375'), + (5996, '1740595939'), + (5997, '1740595939'), + (5998, '0609604511'), + (5999, '2070364178'), + (6000, '0062505521'), + (6001, '0449911411'), + (6002, '007212248X'), + (5633, '0452254345'), + (6003, '0807115258'), + (6004, '0807115258'), + (6005, '0807115258'), + (2458, '0486290816'), + (181, '0486290816'), + (6006, '0880015829'), + (3689, '0449225313'), + (5068, '0553240765'), + (411, '0609603825'), + (6007, '0765349671'), + (2267, '0553585843'), + (61, '0425192733'), + (3084, '0060525460'), + (550, '0446326925'), + (6008, '0449206246'), + (1829, '155166285X'), + (2656, '0449207102'), + (6009, '0385471998'), + (1876, '0553575104'), + (162, '0895771845'), + (6010, '0895771845'), + (6011, '0895771845'), + (585, '0451403703'), + (6012, '0812564804'), + (6013, '0380756226'), + (6006, '0812589718'), + (4276, '0812571789'), + (2654, '0449222713'), + (2654, '0449215482'), + (3379, '0345327454'), + (6014, '0821720600'), + (381, '0913367346'), + (6015, '0892211105'), + (1162, '0671701045'), + (484, '0688084923'), + (583, '0440235146'), + (6016, '0445044454'), + (6017, '0446301809'), + (6018, '0553573489'), + (6019, '0786889411'), + (6020, '0671496107'), + (377, '0553257196'), + (2695, '0553257196'), + (6021, '055321246X'), + (56, '0451526368'), + (282, '0451526368'), + (2239, '0590433881'), + (6022, '0974375861'), + (6023, '0974375853'), + (5560, '0671522647'), + (6024, '0671541005'), + (6025, '0933662599'), + (6026, '0863186602'), + (142, '0525941908'), + (3310, '0525941908'), + (6027, '0767915054'), + (6028, '038533396X'), + (6029, '0394566300'), + (6030, '0394566300'), + (6031, '0394566300'), + (6032, '0842365826'), + (1876, '0736907386'), + (6033, '1576734005'), + (118, '0375700145'), + (239, '0452284449'), + (6034, '0312195168'), + (6035, '0446610542'), + (6036, '0679750169'), + (6037, '0679750169'), + (6038, '051759675X'), + (6039, '0671759299'), + (6040, '0671759299'), + (6041, '0440910099'), + (6042, '0590411292'), + (6043, '0684843560'), + (6044, '0553269151'), + (6045, '0553269151'), + (6046, '0486272753'), + (403, '067188803X'), + (6047, '1562451650'), + (6048, '009938860X'), + (6049, '0743202198'), + (5874, '0441371574'), + (1366, '0440111498'), + (5874, '0553273078'), + (2504, '0345321421'), + (6050, '0345321421'), + (1065, '0553286587'), + (2990, '0553286587'), + (6051, '0843952202'), + (6052, '0373227388'), + (6053, '0778320065'), + (3912, '0515121495'), + (2006, '0743456351'), + (6054, '0316804924'), + (6055, '080506270X'), + (6056, '080506270X'), + (6057, '0316130133'), + (59, '0425132951'), + (187, '0380759470'), + (3036, '0330303112'), + (6058, '0895888041'), + (6059, '1568849052'), + (6060, '1568849052'), + (6061, '1568849052'), + (6062, '1568849052'), + (6063, '0764550551'), + (6064, '0764550551'), + (1625, '0782903800'), + (1625, '0782903363'), + (6065, '1570641218'), + (6066, '0671648462'), + (3796, '0811833615'), + (3797, '0811833615'), + (3796, '0811821706'), + (3797, '0811821706'), + (17, '1558747613'), + (18, '1558747613'), + (1650, '1558747613'), + (6067, '0679755330'), + (6068, '0451526732'), + (6069, '0451526732'), + (2694, '0425083896'), + (178, '0451525795'), + (6070, '0451525795'), + (6071, '0451188454'), + (1164, '3499136457'), + (6072, '0759615365'), + (6073, '0312874472'), + (281, '0806516542'), + (6074, '0671704834'), + (2011, '0425166392'), + (17, '1558745718'), + (18, '1558745718'), + (6075, '1558745718'), + (6076, '1740592409'), + (6077, '1740592409'), + (6078, '1740592409'), + (2517, '0425176932'), + (145, '0425176932'), + (876, '0425176932'), + (283, '0881030368'), + (251, '1565117794'), + (6079, '1565117794'), + (6080, '1565117794'), + (1118, '0553580604'), + (6081, '340778063X'), + (6082, '340778063X'), + (6083, '3791535560'), + (201, '3442424402'), + (1755, '0440219507'), + (1666, '3446152962'), + (6084, '3446152962'), + (6085, '3446152962'), + (6086, '3746615429'), + (352, '2070374807'), + (6087, '2070401685'), + (749, '2253006629'), + (2035, '044021632X'), + (3264, '0590474782'), + (634, '0425117383'), + (4036, '0141308133'), + (6088, '0385260431'), + (6089, '0860682552'), + (56, '055321019X'), + (6090, '0060971185'), + (6091, '1580622119'), + (6092, '074343059X'), + (1337, '0060090375'), + (6093, '1582343047'), + (6094, '0520216202'), + (6095, '0380711516'), + (6096, '0890439702'), + (6097, '0689866364'), + (211, '0312984294'), + (6098, '0575047798'), + (6099, '0800758889'), + (6100, '0743252136'), + (6101, '0812932773'), + (6102, '3551580561'), + (6103, '3551580561'), + (368, '0399139745'), + (1395, '0679762671'), + (6104, '0679762671'), + (6105, '0140196226'), + (2693, '0140143505'), + (6106, '0671743503'), + (1628, '0345413881'), + (1001, '0553289691'), + (6107, '0671851047'), + (760, '0140042407'), + (6108, '344203079X'), + (6109, '344203079X'), + (5855, '0765303418'), + (6110, '0786000872'), + (992, '0140179178'), + (873, '0812550757'), + (675, '067087311X'), + (6111, '0679721886'), + (6112, '0394575202'), + (1315, '0451187849'), + (1316, '0451187849'), + (5873, '0451163966'), + (1732, '0449911659'), + (843, '0553571338'), + (6113, '0671041584'), + (2688, '0151189781'), + (2661, '0812564669'), + (3692, '0812564669'), + (1498, '0765302365'), + (6114, '0446605905'), + (63, '0525946829'), + (2181, '0399138013'), + (6115, '0880707682'), + (5730, '0152550860'), + (6116, '1556618603'), + (274, '0590060198'), + (1428, '0671868403'), + (2713, '0553570080'), + (3359, '0671550284'), + (3359, '0671736825'), + (1428, '0671008749'), + (1428, '0671002929'), + (6117, '0812570758'), + (6118, '0812540239'), + (2713, '0553292323'), + (6119, '981305607X'), + (3359, '0671736809'), + (3359, '0671019287'), + (3359, '0671736787'), + (2713, '0553158937'), + (2713, '0553158597'), + (2713, '0553157671'), + (2713, '0553481975'), + (2713, '0553158015'), + (2713, '0553483471'), + (2713, '0553480510'), + (2713, '0553480618'), + (2713, '0553482491'), + (2713, '0553159526'), + (2713, '055356403X'), + (2713, '0553157663'), + (2492, '3423202327'), + (2711, '3423202327'), + (2712, '3423202327'), + (1726, '3442421357'), + (1921, '3442421357'), + (6120, '3404144031'), + (1432, '0312986343'), + (806, '0399137599'), + (6121, '0060974494'), + (2427, '0553345842'), + (6122, '0553345842'), + (6123, '0553343211'), + (6124, '0809255324'), + (5943, '0922233209'), + (6125, '086316160X'), + (6126, '086316160X'), + (6127, '0553078682'), + (2108, '0062504096'), + (6128, '0062504096'), + (6129, '0155019872'), + (6130, '0155019872'), + (6131, '0679413065'), + (571, '0425125467'), + (6132, '158322601X'), + (6133, '158322601X'), + (6134, '158322601X'), + (6135, '0385495358'), + (6136, '1555835589'), + (6137, '1585972622'), + (485, '006056668X'), + (6138, '0385511620'), + (6139, '0446530077'), + (6140, '0689856083'), + (6141, '0689856083'), + (6142, '0689856083'), + (6143, '0802151574'), + (6144, '0812992180'), + (4947, '0385729472'), + (6145, '0373227728'), + (6146, '0373227736'), + (6147, '037322771X'), + (2408, '0373227744'), + (6148, '0373712049'), + (6149, '0373712006'), + (6150, '0373712014'), + (6151, '0373712057'), + (6152, '0373227396'), + (5214, '0373711719'), + (6153, '0373711735'), + (1441, '0451409434'), + (2998, '0875427332'), + (6154, '0738704458'), + (6155, '0738704458'), + (6156, '0738704458'), + (6157, '0316281697'), + (6158, '0060965118'), + (6159, '0060965118'), + (6160, '0060965118'), + (573, '0312951914'), + (6161, '0878577386'), + (6162, '0843922567'), + (6163, '1592231381'), + (237, '0517182467'), + (6164, '055357485X'), + (392, '0875421245'), + (6165, '0875421245'), + (6166, '0671670875'), + (4195, '0875420508'), + (6167, '0801043859'), + (6168, '0785270442'), + (6169, '0785270442'), + (142, '0451178599'), + (94, '1555472419'), + (6170, '0671421611'), + (6171, '0380780216'), + (6172, '1590030044'), + (6173, '1590030044'), + (142, '0451128370'), + (142, '0451170385'), + (6174, '3036911154'), + (6175, '0451206339'), + (5028, '0156006847'), + (1269, '0156006847'), + (5310, '0395926882'), + (54, '0395926882'), + (1997, '0446527297'), + (6176, '0786867906'), + (145, '0425151875'), + (876, '0425151875'), + (3407, '0425151875'), + (4909, '0553570854'), + (321, '055357115X'), + (6177, '0440802059'), + (369, '0373218958'), + (6178, '3442356180'), + (6179, '3442356180'), + (713, '0671684256'), + (713, '0425182843'), + (1109, '0486406539'), + (6180, '0590440144'), + (606, '0812550749'), + (606, '0671720996'), + (1189, '0671720996'), + (4146, '0553148524'), + (2344, '0802111610'), + (3482, '0670031720'), + (2976, '0385128533'), + (277, '0679405127'), + (6181, '0679742115'), + (3704, '0316954993'), + (351, '0345463153'), + (6182, '188522317X'), + (1432, '0312991460'), + (4723, '0142001325'), + (5321, '1565123670'), + (583, '0385501412'), + (583, '0553277901'), + (3823, '006016848X'), + (6183, '0684862921'), + (6184, '0060956690'), + (6185, '0156007185'), + (6186, '0451182960'), + (223, '0449002985'), + (1491, '037348254X'), + (3115, '037348254X'), + (6187, '037348254X'), + (1228, '0865473900'), + (2686, '0395859972'), + (1298, '0671727583'), + (6188, '0028604695'), + (58, '0060176156'), + (822, '0440159008'), + (3166, '0893754005'), + (6189, '0671600400'), + (1010, '0440212561'), + (6190, '0517799952'), + (4726, '0140267670'), + (6191, '0394544749'), + (6192, '0785282149'), + (2254, '0505523183'), + (6193, '0505523183'), + (6194, '0505523183'), + (630, '0821769278'), + (6195, '0373223102'), + (6196, '0380815257'), + (82, '0486264645'), + (4235, '0486264645'), + (532, '0451402065'), + (532, '0515133302'), + (2271, '0451406907'), + (1491, '1551668432'), + (532, '0451198948'), + (630, '0821767852'), + (6197, '1552450244'), + (6198, '1552450244'), + (6199, '1552450244'), + (3607, '0771014910'), + (3607, '0771014899'), + (5772, '0446363650'), + (5773, '0446363650'), + (6200, '0684186373'), + (1675, '0006480764'), + (3946, '0062514377'), + (6201, '0970116500'), + (6202, '0684804018'), + (6203, '1592861512'), + (4794, '0345421884'), + (2505, '0345421884'), + (5918, '0684801051'), + (369, '039914840X'), + (6204, '0679426094'), + (4197, '0345410130'), + (6205, '0787947350'), + (6206, '0818403802'), + (3086, '0684801523'), + (4588, '0684801523'), + (6207, '0836213106'), + (6208, '0836213106'), + (6209, '0671733346'), + (6206, '0836217810'), + (6207, '0836217810'), + (283, '0736605673'), + (6210, '0736605673'), + (236, '0446532452'), + (1109, '1570629706'), + (6211, '1570629706'), + (848, '0393322440'), + (2331, '0140449124'), + (6212, '0140449124'), + (6211, '0140449124'), + (6213, '0140449124'), + (6214, '0099274167'), + (6215, '0749391723'), + (6206, '0836217446'), + (6207, '0836217446'), + (6206, '0836217152'), + (6207, '0836217152'), + (6216, '0375421114'), + (1784, '0446520659'), + (854, '0553071807'), + (545, '0060167033'), + (131, '0061091561'), + (6217, '0310214351'), + (131, '0060191872'), + (2695, '0061030996'), + (1305, '0140430148'), + (6218, '0140430148'), + (6219, '067318160X'), + (6220, '155591229X'), + (3086, '0020198817'), + (2348, '0140001409'), + (490, '0385323964'), + (6221, '1881066703'), + (502, '1853265535'), + (1210, '0345448359'), + (3710, '0446527084'), + (1210, '0743444965'), + (2159, '0752816500'), + (1554, '0061059048'), + (6222, '0671656473'), + (1210, '0812520475'), + (6223, '0743421922'), + (145, '0425173534'), + (84, '0425173534'), + (145, '042510107X'), + (2043, '0425108937'), + (6224, '0451457781'), + (6225, '0451457781'), + (2723, '1576734013'), + (136, '0451203267'), + (1467, '0312140908'), + (6226, '0394571770'), + (1824, '043936213X'), + (2748, '0345432401'), + (6227, '0380779323'), + (6228, '0380779323'), + (6229, '043930931X'), + (6230, '043930931X'), + (6231, '0064401502'), + (978, '0064401502'), + (433, '0671876570'), + (2503, '0671876570'), + (6232, '0373120095'), + (2880, '0671798782'), + (6233, '0679822631'), + (6234, '0886191718'), + (6235, '0373764723'), + (2250, '0373764685'), + (6236, '0373764677'), + (6237, '038071471X'), + (800, '0373764766'), + (6238, '0373764650'), + (328, '0061061433'), + (329, '0061061433'), + (2126, '0312020317'), + (290, '0671823884'), + (6239, '0060973617'), + (6240, '0141301236'), + (6241, '0771014236'), + (6242, '1576104176'), + (6243, '1576104176'), + (6244, '0525458638'), + (6245, '0525458638'), + (6246, '0782124526'), + (6247, '0671726528'), + (105, '0553208659'), + (105, '0553247662'), + (6248, '0307220060'), + (6249, '037570342X'), + (1353, '0452283027'), + (6250, '1400045029'), + (1575, '1400052157'), + (6251, '0374174075'), + (6252, '0688102255'), + (6253, '0704340070'), + (1740, '0440132118'), + (6254, '0060916125'), + (6255, '0140274383'), + (6256, '0883910349'), + (1265, '0380001012'), + (6257, '1857033701'), + (6258, '0330303287'), + (6257, '0330303279'), + (6259, '0786884274'), + (6260, '0749308583'), + (6261, '0749429003'), + (960, '3518392387'), + (6262, '3518392387'), + (6263, '3518392387'), + (145, '0425187055'), + (1884, '0425187055'), + (2513, '0425187055'), + (6264, '0970897251'), + (6265, '0316089737'), + (6266, '1589199669'), + (154, '0385494327'), + (6267, '1566492017'), + (174, '0802117155'), + (3337, '0060159081'), + (6268, '080326089X'), + (6269, '080326089X'), + (5552, '0446607258'), + (5913, '0374138591'), + (6270, '0375726225'), + (471, '0316184152'), + (6271, '0316184152'), + (6272, '1555661874'), + (6273, '1555661874'), + (1626, '0312313195'), + (6274, '068817776X'), + (6275, '068817776X'), + (6276, '0375760903'), + (6277, '0385721838'), + (6278, '0743234359'), + (6279, '0142001104'), + (6280, '0142001104'), + (24, '0739306510'), + (6281, '0739306510'), + (3656, '0142003816'), + (6282, '1585422932'), + (3785, '080701222X'), + (6283, '080701222X'), + (6282, '080701222X'), + (6176, '0805071849'), + (6284, '1585673625'), + (6285, '081296747X'), + (6286, '0739307002'), + (6287, '0739307002'), + (6288, '0967002303'), + (6289, '0881001163'), + (539, '0375726373'), + (6290, '0684826879'), + (6291, '0684826879'), + (3785, '1573229377'), + (6292, '1400030803'), + (6293, '0452282020'), + (6294, '0452282020'), + (5785, '0684872838'), + (1858, '0375726349'), + (6295, '0375403701'), + (6296, '0375403701'), + (6297, '1932360069'), + (6298, '0006280803'), + (2746, '1573223786'), + (6299, '0140235396'), + (6300, '0385336934'), + (6301, '0399151648'), + (6302, '0941781135'), + (6303, '0805063021'), + (6304, '1583224939'), + (6305, '1583224939'), + (6306, '0394757777'), + (6307, '1581820135'), + (415, '0393959015'), + (6308, '0393959015'), + (412, '0445046368'), + (1491, '0373197187'), + (920, '0689868278'), + (733, '0451202627'), + (6309, '1552095738'), + (6310, '0373250274'), + (3125, '0345469674'), + (6311, '0671023535'), + (108, '0312966806'), + (6312, '0446692298'), + (6313, '1573227161'), + (6314, '0505525496'), + (5361, '0842382852'), + (666, '0842382836'), + (5811, '0842382844'), + (6315, '1591840414'), + (6316, '0007106572'), + (6317, '1556615728'), + (2404, '1556615728'), + (6318, '0974757004'), + (33, '0060528125'), + (6185, '0451188543'), + (108, '1551667436'), + (6319, '0312983484'), + (6320, '0375724990'), + (6321, '0060089296'), + (4581, '0312984227'), + (6322, '1592680291'), + (6323, '1594140812'), + (128, '0446613053'), + (6185, '0380819651'), + (4390, '0451207475'), + (2258, '0671735934'), + (6324, '075820230X'), + (554, '055357258X'), + (6325, '0425181839'), + (1871, '0060525010'), + (3969, '0060525010'), + (6326, '0060525010'), + (6327, '0060525010'), + (6328, '0451207653'), + (6329, '0451207653'), + (6330, '0451207653'), + (6331, '0451207653'), + (6185, '0451192311'), + (843, '0440228921'), + (362, '1575662450'), + (6332, '0060176563'), + (6333, '1573222232'), + (4352, '0688177859'), + (76, '0684868865'), + (889, '0446607274'), + (502, '0486266842'), + (178, '0679731806'), + (6334, '0897331575'), + (6335, '0897331575'), + (6336, '0897331575'), + (6337, '0897331575'), + (403, '0553211439'), + (188, '0553296345'), + (1048, '0441289886'), + (327, '0553573136'), + (6338, '0771099843'), + (6339, '0771099843'), + (6340, '0140440038'), + (6341, '0872201562'), + (6342, '1577940040'), + (6343, '1555171559'), + (6344, '1558505857'), + (6345, '1558505857'), + (1010, '0385302312'), + (6346, '088494770X'), + (1010, '0385302320'), + (6347, '0142437212'), + (6348, '0142437212'), + (6349, '0142437212'), + (6350, '0805063196'), + (6351, '0140075623'), + (6352, '0743217713'), + (6353, '0609810103'), + (6354, '0670886017'), + (6355, '0060916338'), + (115, '0451204530'), + (5160, '0812562852'), + (6356, '0698116801'), + (6357, '1858600006'), + (6358, '0964374099'), + (719, '0451205987'), + (6359, '1591290902'), + (1179, '0449211525'), + (6360, '0515101877'), + (6361, '0812522362'), + (4196, '006098824X'), + (6362, '0812561880'), + (6363, '0451203569'), + (6364, '0688111882'), + (6365, '0060505885'), + (580, '0679401385'), + (63, '0440213886'), + (369, '0515116068'), + (6366, '0679419691'), + (937, '0743244710'), + (6367, '0425044890'), + (281, '0140436669'), + (6368, '0140436669'), + (6369, '0140436669'), + (6370, '0394742494'), + (6371, '0670862215'), + (6370, '0670847100'), + (6369, '0586068805'), + (6372, '0553259016'), + (1159, '0670818577'), + (578, '0060910992'), + (502, '0060955716'), + (3051, '0394462017'), + (6373, '0811812693'), + (5953, '0393322203'), + (3282, '0030622093'), + (6374, '0380404109'), + (2190, '0060806419'), + (6369, '158080036X'), + (6375, '038517652X'), + (6376, '0671541900'), + (3779, '0312926294'), + (6377, '1585790087'), + (6378, '0060805943'), + (906, '0425089002'), + (6379, '0345312791'), + (1998, '0394473361'), + (6380, '0689107943'), + (6381, '0312532253'), + (6382, '0448416492'), + (618, '0807554146'), + (777, '0525483357'), + (6383, '0525483357'), + (6384, '044048605X'), + (4839, '0399234616'), + (93, '0679879242'), + (936, '0425057771'), + (6385, '088776519X'), + (1282, '0451203054'), + (1883, '0451184734'), + (780, '0316779989'), + (76, '0671568183'), + (129, '0446603716'), + (2002, '0380726289'), + (543, '0440193613'), + (6386, '0679764895'), + (542, '0743418166'), + (231, '0440235774'), + (583, '0061094404'), + (1196, '0515133418'), + (60, '0743460529'), + (1246, '0140386335'), + (1247, '0140386335'), + (6387, '0373288891'), + (6388, '0373825013'), + (6389, '0373825021'), + (552, '0449148408'), + (6390, '0312957920'), + (39, '0345359321'), + (6391, '0345377672'), + (1451, '0743216024'), + (6392, '2890379302'), + (1159, '0140131612'), + (6393, '0140131612'), + (6394, '0741410060'), + (6395, '0521315441'), + (6396, '0741404540'), + (6397, '0446609951'), + (142, '0451157443'), + (6398, '1560300027'), + (5095, '0452275660'), + (179, '0060175680'), + (60, '0671867083'), + (736, '0446605360'), + (60, '0671741209'), + (1871, '0380790025'), + (5564, '0671880314'), + (24, '038550120X'), + (1493, '0670860743'), + (6399, '0451209486'), + (1784, '0446513067'), + (6400, '0312242220'), + (6401, '0671665499'), + (6402, '0789426323'), + (6403, '0789202816'), + (6404, '0789202816'), + (6405, '0688172253'), + (6406, '0891091165'), + (6407, '0891091165'), + (6408, '0310918421'), + (6402, '0789203928'), + (6403, '0789203928'), + (6409, '1562827979'), + (6384, '0806974109'), + (6410, '0840732228'), + (6411, '0891090665'), + (1998, '0896218643'), + (1871, '0380977729'), + (1871, '0380977737'), + (916, '0849944767'), + (6412, '0440364574'), + (6413, '0446394009'), + (1767, '038549730X'), + (6414, '0446391581'), + (6415, '0812967240'), + (6416, '0971995907'), + (6417, '1589820010'), + (6418, '0679447164'), + (6419, '0679447164'), + (6420, '0393007316'), + (1892, '0061096644'), + (88, '0449907570'), + (138, '0804105146'), + (2168, '0451155815'), + (6421, '1589820681'), + (6422, '0971931429'), + (6423, '0520082567'), + (4141, '1551665301'), + (6424, '0425151425'), + (4909, '0553280074'), + (1075, '0064404773'), + (6425, '156382485X'), + (2436, '0879522593'), + (532, '0380756234'), + (6426, '0446603856'), + (6427, '0671885650'), + (6428, '0895296950'), + (6429, '0684852047'), + (4407, '0671002821'), + (6430, '1582430616'), + (6431, '1582430616'), + (873, '0812589041'), + (6432, '0060931752'), + (6433, '0966784219'), + (6434, '1931395004'), + (6435, '0670031895'), + (6436, '0452011574'), + (6437, '0452011574'), + (6438, '0452011574'), + (6439, '0451200985'), + (6440, '0451200985'), + (1616, '0375505822'), + (6441, '0312288549'), + (2668, '0393039595'), + (6442, '0571175686'), + (6443, '0571175686'), + (6444, '1588720020'), + (459, '0316169226'), + (6360, '0785814078'), + (6445, '0785814078'), + (6446, '0785814078'), + (867, '0345333853'), + (6447, '0060937866'), + (364, '0060198125'), + (6448, '0525945830'), + (1628, '0345452569'), + (2805, '1582343586'), + (6449, '0020404808'), + (6450, '0425106403'), + (6451, '0597145806'), + (2694, '0061091464'), + (6452, '0671015311'), + (6453, '0912670096'), + (6454, '0912670096'), + (154, '0385497520'), + (6455, '0312151144'), + (992, '0743203968'), + (6456, '0385247958'), + (4030, '0486284670'), + (3999, '0375701710'), + (1232, '0670825379'), + (368, '0449217191'), + (6452, '1558611584'), + (6457, '1558611584'), + (1706, '0151009988'), + (6458, '0671788574'), + (1366, '0440127793'), + (3041, '0156106809'), + (2026, '0765108674'), + (6459, '0679724699'), + (6460, '0679724699'), + (266, '014230218X'), + (2654, '0449212297'), + (6461, '0571199895'), + (2740, '0141304235'), + (4670, '0141304235'), + (266, '0312863934'), + (2190, '0385468873'), + (4724, '0385502532'), + (1773, '0060928034'), + (4597, '0140252991'), + (6462, '0449002594'), + (6463, '0140286527'), + (4422, '0743236742'), + (3750, '0399151745'), + (6464, '1400060737'), + (6465, '0060520612'), + (6466, '0375413596'), + (3458, '034543739X'), + (3223, '0553268937'), + (6467, '0060931957'), + (6468, '0060931957'), + (6469, '0060192704'), + (2145, '0890877033'), + (60, '0684835975'), + (6470, '0062516981'), + (1198, '0380722704'), + (6471, '096533192X'), + (1704, '0553114271'), + (1626, '0671671499'), + (2749, '0425123456'), + (6472, '0312957882'), + (6473, '0671725955'), + (1704, '0553263226'), + (1214, '0671525425'), + (6474, '0671542745'), + (6475, '0671507397'), + (713, '0451124685'), + (6476, '0373194072'), + (369, '0373218397'), + (6477, '0373441614'), + (6478, '050552533X'), + (6479, '0140257349'), + (3159, '0060504137'), + (6480, '1558530983'), + (6481, '1558530983'), + (6482, '1558530983'), + (6483, '0758205600'), + (6484, '0345381718'), + (2252, '0843941987'), + (6485, '082173718X'), + (6486, '0843941812'), + (6487, '0821738453'), + (6488, '0821754866'), + (6489, '0373290160'), + (6490, '0061084751'), + (6487, '0821758683'), + (6491, '082172679X'), + (6492, '082172679X'), + (6493, '0451405285'), + (6494, '0380785617'), + (6495, '0380763435'), + (6496, '0380782529'), + (6497, '0312955057'), + (6498, '0140140859'), + (6499, '0385418213'), + (5766, '0060934425'), + (6500, '0671631985'), + (6501, '0671631985'), + (6502, '0671631985'), + (6503, '0671027409'), + (3642, '0671703617'), + (471, '1566190304'), + (563, '0425179885'), + (6111, '0670883514'), + (6504, '0395798655'), + (952, '0395798655'), + (5310, '0395798655'), + (6505, '0812578902'), + (6506, '0812578902'), + (568, '0020442203'), + (56, '0553211374'), + (6507, '0140150706'), + (1262, '0140150706'), + (6508, '0140150706'), + (2126, '0553204572'), + (2872, '0425175111'), + (136, '0671001132'), + (136, '0671793535'), + (136, '0671868691'), + (136, '0671793543'), + (136, '0671025341'), + (6509, '0375713484'), + (3863, '0812572122'), + (9, '0762102543'), + (1801, '0446601977'), + (5860, '0393307050'), + (6510, '0879735783'), + (6511, '0879735783'), + (3863, '0812550579'), + (6512, '0672320967'), + (6513, '0132267055'), + (6514, '0773761969'), + (4993, '0773761969'), + (5957, '0452282934'), + (3281, '0451203526'), + (714, '0451203526'), + (6515, '0316289124'), + (1295, '0743474724'), + (3539, '0679722637'), + (6516, '0198607199'), + (6517, '188455010X'), + (6518, '0804109192'), + (3863, '0812548116'), + (3134, '0375414053'), + (6519, '1400046610'), + (3863, '0312868855'), + (1295, '0812519329'), + (6520, '0446526665'), + (6521, '1568655819'), + (1537, '0441001971'), + (60, '0684810395'), + (369, '0399143874'), + (822, '0070064601'), + (2416, '0373272820'), + (2417, '0373218117'), + (6234, '0373218117'), + (6522, '0373218117'), + (6523, '0373711050'), + (6524, '0373711409'), + (6525, '0373711409'), + (6526, '0505524430'), + (6527, '0373194919'), + (6528, '0373227205'), + (369, '0373218419'), + (543, '0440222842'), + (6529, '0373272383'), + (6530, '0373194714'), + (369, '0399141227'), + (6531, '3426619342'), + (6530, '3426624680'), + (6532, '3426273098'), + (6533, '3810505153'), + (1164, '3499134039'), + (6534, '3499134039'), + (6535, '3518370081'), + (6536, '3518370081'), + (6537, '3518370081'), + (6538, '3548359698'), + (1742, '0553379011'), + (892, '0385319851'), + (6539, '0060958308'), + (93, '0440418321'), + (135, '0316789976'), + (5095, '0394525280'), + (6540, '0020433115'), + (6541, '0671733397'), + (6542, '1568360428'), + (6543, '1568360428'), + (6544, '1568360428'), + (534, '0671519816'), + (59, '042518109X'), + (151, '0061097861'), + (6545, '0374513112'), + (6546, '0374513112'), + (889, '0446609145'), + (1164, '0553575406'), + (6547, '0380797631'), + (6548, '0140161171'), + (274, '0141304677'), + (275, '0141304677'), + (3221, '0553213237'), + (6549, '076791175X'), + (25, '0679433740'), + (3924, '0060501170'), + (1198, '0375703063'), + (3307, '0345343697'), + (6550, '0838434762'), + (6551, '0838434762'), + (6552, '0838434754'), + (6553, '0838434754'), + (6554, '0136155596'), + (2586, '0553351672'), + (6555, '0140065407'), + (1626, '0449244288'), + (1175, '1573222127'), + (4033, '0451523326'), + (6556, '0451523326'), + (6557, '3492224466'), + (6558, '3492224466'), + (4033, '0140434003'), + (4034, '0140434003'), + (1231, '0756401100'), + (6559, '038079439X'), + (3610, '0553577905'), + (6560, '0553577905'), + (6561, '0451402391'), + (6562, '0451402391'), + (6429, '0395877334'), + (6563, '274670238X'), + (6564, '084770176X'), + (6565, '0671028820'), + (1886, '2070404722'), + (6566, '2070404722'), + (2926, '2070415066'), + (6567, '2841722171'), + (6566, '2841722171'), + (955, '2266091328'), + (6568, '2845950470'), + (6569, '0671447807'), + (6570, '9684113404'), + (6571, '0679409041'), + (5373, '0316782653'), + (239, '0525945814'), + (6572, '0140141499'), + (6573, '0684870053'), + (2360, '0060934913'), + (6574, '0375814116'), + (799, '0899193625'), + (220, '0060974486'), + (6575, '0060974486'), + (1395, '0679736042'), + (1395, '0679441247'), + (6576, '1558177604'), + (135, '0156005891'), + (6577, '084395258X'), + (121, '076790592X'), + (6578, '0394711920'), + (2790, '0618526412'), + (3752, '0380815591'), + (568, '0060652934'), + (6579, '1841953814'), + (6580, '1582341427'), + (6581, '0375709231'), + (6582, '0688174035'), + (1349, '0618246967'), + (1011, '0618246967'), + (6583, '0758206135'), + (6584, '0763617229'), + (6585, '0763617229'), + (1352, '0670032891'), + (3086, '068480445X'), + (4588, '068480445X'), + (6586, '1931520003'), + (6587, '0595149782'), + (6586, '0595193021'), + (6586, '0967986508'), + (2656, '0449216411'), + (1395, '0330319477'), + (6588, '0330319477'), + (162, '0812504593'), + (142, '9500406977'), + (82, '1551110652'), + (3220, '1551110652'), + (6589, '1551110652'), + (4377, '0552997706'), + (2912, '3442449898'), + (5910, '3442449898'), + (889, '3453108191'), + (6590, '3453108191'), + (484, '3442067855'), + (4252, '3442067855'), + (849, '3442067855'), + (484, '3442092639'), + (6591, '3442092639'), + (6592, '3612275232'), + (6593, '3784427855'), + (6594, '0945990049'), + (6595, '0945990049'), + (6596, '0945990049'), + (6597, '0898620600'), + (230, '0380807939'), + (152, '0446602736'), + (81, '0425098400'), + (6598, '0449904075'), + (6599, '0449904075'), + (9, '0446360589'), + (543, '0385315090'), + (543, '0385319606'), + (543, '0385311923'), + (543, '0440500729'), + (543, '0385297661'), + (543, '0385306024'), + (58, '0345362721'), + (484, '0446802204'), + (484, '0446329894'), + (337, '0399144587'), + (129, '0671639218'), + (49, '0679420649'), + (2035, '0786889551'), + (2035, '0312923856'), + (2035, '0786889667'), + (6600, '0804111111'), + (6599, '055327032X'), + (6599, '0821762532'), + (231, '044023574X'), + (6601, '0304328464'), + (6602, '0304328464'), + (6603, '0304328464'), + (434, '0345379020'), + (4453, '0310235561'), + (1060, '0743458168'), + (6604, '0743458168'), + (4453, '1586606735'), + (6605, '1578565677'), + (6606, '1578565677'), + (3295, '0452284201'), + (6607, '0452284201'), + (6608, '349223562X'), + (6609, '349223562X'), + (6610, '2890199029'), + (6611, '1889195162'), + (6612, '1889195162'), + (6613, '1889195162'), + (6614, '1904132073'), + (6615, '2070408450'), + (6616, '0312972954'), + (6617, '0912333634'), + (6618, '0912333634'), + (2949, '0786702141'), + (6619, '0446520837'), + (6620, '0937966185'), + (760, '0141312556'), + (149, '9871138016'), + (6621, '0374503486'), + (6622, '0374503486'), + (6623, '2040162097'), + (4795, '2080700324'), + (6624, '2080700324'), + (403, '051722108X'), + (5466, '0762414197'), + (6625, '0762414197'), + (6626, '0854963782'), + (6627, '0854963782'), + (6628, '0854963782'), + (5198, '225303939X'), + (6629, '1840020830'), + (6630, '0152008675'), + (6631, '0152008675'), + (3885, '0762405449'), + (2142, '0140386351'), + (6632, '359650533X'), + (6633, '067102325X'), + (6634, '0812213238'), + (723, '0679729976'), + (6635, '1562055089'), + (6636, '0830645519'), + (6637, '0933121539'), + (6638, '0373078811'), + (6639, '0373763808'), + (6640, '0452261457'), + (6641, '002031275X'), + (6458, '1565843525'), + (6642, '1565843525'), + (6459, '1565843525'), + (155, '0140143459'), + (6643, '0864693257'), + (6644, '0864693257'), + (6645, '0864693257'), + (6646, '0070212147'), + (6647, '0070212147'), + (6648, '0192853902'), + (59, '0553580221'), + (312, '0140442758'), + (6649, '0140442758'), + (6648, '0140442758'), + (6650, '0679781358'), + (6651, '0664246915'), + (6652, '1879960400'), + (325, '0345370430'), + (237, '0553272616'), + (6653, '1570621608'), + (6654, '0743427084'), + (6655, '0743427084'), + (6656, '0712610847'), + (3785, '1888375051'), + (6657, '1888375051'), + (6658, '1888375051'), + (6659, '1888375051'), + (6660, '0385492677'), + (6661, '0937938874'), + (5404, '0671039016'), + (6662, '0020178506'), + (6663, '0020178506'), + (6664, '0020198507'), + (6665, '0020198507'), + (6666, '0020198507'), + (5691, '068419001X'), + (6667, '0140126422'), + (6668, '0440162645'), + (6669, '0450017095'), + (2963, '0892965258'), + (6670, '0140147381'), + (2624, '0345333810'), + (6671, '0930031091'), + (6672, '0684814161'), + (6673, '0671734601'), + (436, '0449212750'), + (337, '0425127230'), + (777, '0451155580'), + (1987, '0671884298'), + (81, '0804108862'), + (634, '0399139087'), + (337, '0385304374'), + (4338, '0679438793'), + (6674, '0915801418'), + (6675, '1559390476'), + (568, '0064471047'), + (833, '0064471047'), + (867, '0345441184'), + (6676, '0330491482'), + (6677, '0767904141'), + (6678, '0786868430'), + (6679, '0394711556'), + (6680, '2842190009'), + (6681, '0060191538'), + (6682, '0060191341'), + (6443, '0425166929'), + (6683, '0425104044'), + (6684, '051509479X'), + (3779, '0312958129'), + (543, '0385336314'), + (6685, '1891620452'), + (6686, '0590477331'), + (6687, '0590477331'), + (6688, '0590477331'), + (6689, '3530267147'), + (6690, '3530267147'), + (1241, '3530267147'), + (6691, '3150000254'), + (6692, '3518100122'), + (6693, '3518380338'), + (6694, '074930152X'), + (368, '3257232543'), + (6695, '3257232543'), + (6696, '0140621466'), + (1209, '0345368754'), + (6697, '3492260640'), + (6698, '3492260640'), + (6699, '3627001028'), + (6700, '3627001028'), + (956, '0553213164'), + (129, '0446603929'), + (2719, '067189787X'), + (6701, '0440431476'), + (6702, '0553213180'), + (6703, '0061067318'), + (6704, '037316243X'), + (3359, '0671745085'), + (1024, '014032724X'), + (6705, '0312155204'), + (6706, '1569470170'), + (543, '0440177049'), + (6707, '0451528670'), + (6708, '0451528670'), + (6603, '074347502X'), + (6709, '0590434616'), + (6710, '0812551702'), + (2930, '0812551699'), + (2930, '0812536541'), + (152, '0446518581'), + (6711, '0971181802'), + (6712, '0971181802'), + (937, '0380712040'), + (6713, '0752837648'), + (498, '0743225724'), + (2187, '0553562401'), + (2331, '0451523873'), + (6714, '0451523873'), + (6715, '0451523873'), + (6716, '0553202960'), + (6717, '0060806389'), + (6718, '0553235605'), + (3805, '0449243141'), + (188, '0553561057'), + (6719, '0816627770'), + (6720, '0804461406'), + (6721, '0804461406'), + (6722, '0375756981'), + (6723, '068486729X'), + (6724, '0440504589'), + (6725, '0440504589'), + (1907, '0195014766'), + (6726, '0195014766'), + (6727, '0195014766'), + (6728, '0140440372'), + (6729, '0844237809'), + (6730, '0844237809'), + (6731, '0394717023'), + (6732, '0394717023'), + (6733, '0140442014'), + (6734, '0140442014'), + (6735, '0765307596'), + (2592, '0140258795'), + (6736, '0965063992'), + (1161, '0898799767'), + (6737, '0812059379'), + (6738, '0812059379'), + (6739, '0812059379'), + (6740, '0671850148'), + (6741, '1559702141'), + (6742, '0395893380'), + (6743, '0060915765'), + (6744, '0380713926'), + (6745, '0425117693'), + (6746, '0877799156'), + (6747, '0804113491'), + (6748, '0521456932'), + (6749, '0521456932'), + (6750, '0521456932'), + (6751, '0020474105'), + (6752, '0020154402'), + (6753, '0024182001'), + (257, '0024182001'), + (6754, '0312894708'), + (6755, '0393320553'), + (6756, '0393320553'), + (6757, '0226899152'), + (6758, '0898794080'), + (6759, '0062735233'), + (6760, '0596005059'), + (6761, '0596005059'), + (6762, '0312422547'), + (2793, '0312422547'), + (6763, '067972754X'), + (6764, '0735619255'), + (4782, '0596004893'), + (723, '0679727299'), + (6765, '0679727299'), + (6766, '1400062535'), + (6767, '0345464869'), + (5896, '0393051404'), + (6768, '0385500696'), + (6769, '0898798736'), + (6770, '0673522946'), + (4993, '0312203632'), + (6771, '0312203632'), + (6772, '0312203632'), + (6773, '0151003718'), + (951, '0385509472'), + (250, '0060988649'), + (2006, '0380725711'), + (5151, '0380812959'), + (6774, '0061056278'), + (5151, '0380788101'), + (6773, '0061056286'), + (5151, '0380784157'), + (5151, '0380788098'), + (6775, '0671319930'), + (3077, '0743471547'), + (6776, '0743471547'), + (6777, '0743471547'), + (5880, '0345392477'), + (795, '0808572407'), + (6778, '0595256368'), + (6779, '0425076490'), + (58, '0061099708'), + (337, '0425182886'), + (337, '0425179559'), + (337, '0425174018'), + (337, '0425157474'), + (337, '0425152901'), + (337, '0425147746'), + (337, '0425141551'), + (337, '0425137937'), + (337, '0425132935'), + (337, '0425120015'), + (337, '0440200040'), + (337, '0440188415'), + (337, '0440111323'), + (337, '0440195357'), + (337, '0440109930'), + (337, '0440180953'), + (337, '0440122147'), + (337, '0440153166'), + (6780, '0671853864'), + (1876, '0340750626'), + (337, '0440171970'), + (337, '0440157587'), + (337, '0440129613'), + (6781, '0874770475'), + (6780, '0874770351'), + (6782, '0917102258'), + (6783, '0878570950'), + (6784, '0812911520'), + (607, '0449215156'), + (6785, '189400406X'), + (721, '3746618363'), + (6786, '3746618363'), + (6787, '9722014862'), + (1052, '345319926X'), + (6788, '345319926X'), + (713, '0451143752'), + (282, '0670842702'), + (6789, '0140178260'), + (6790, '0375758208'), + (1010, '0385302304'), + (6791, '0375726241'), + (1234, '344245073X'), + (6792, '344245073X'), + (368, '0515117234'), + (4106, '0805062858'), + (1315, '0451158237'), + (6793, '0393045986'), + (598, '0393045986'), + (6794, '0452281881'), + (6795, '0300029691'), + (6796, '1555971148'), + (1547, '1555971148'), + (6797, '1555971148'), + (6798, '1555971148'), + (2146, '0060163747'), + (6799, '0553081209'), + (952, '0684195488'), + (6800, '0931122422'), + (3823, '0941831930'), + (6801, '0446518425'), + (6802, '9711004143'), + (6803, '0932194400'), + (6804, '0060961724'), + (6805, '0060961724'), + (1464, '0140444300'), + (6806, '0140444300'), + (6805, '0140444300'), + (6807, '0930377001'), + (6808, '0930377001'), + (6809, '0930377001'), + (6810, '0930377001'), + (6811, '0930377001'), + (6812, '0295968265'), + (6813, '0295968265'), + (6814, '0520007840'), + (6815, '039330678X'), + (415, '0312062346'), + (6816, '0312062346'), + (6817, '0440220424'), + (6818, '0440220424'), + (1935, '0440220424'), + (6819, '0679405135'), + (6820, '0060179228'), + (6821, '1557982414'), + (6822, '074321689X'), + (1001, '0553057758'), + (6375, '0060176873'), + (5155, '0151255946'), + (6823, '0151255946'), + (6824, '0913175145'), + (6825, '0913175145'), + (6826, '0871134799'), + (6375, '0060168536'), + (6827, '0060149426'), + (1597, '0689817851'), + (6828, '044920846X'), + (6829, '0935710019'), + (6830, '0807059056'), + (6110, '0679723285'), + (6831, '1561385751'), + (6832, '1561385751'), + (6833, '1561385751'), + (5012, '0140181997'), + (6834, '0966691911'), + (1349, '0970335555'), + (6835, '0755310721'), + (6836, '0553572431'), + (6837, '0812549082'), + (256, '006105691X'), + (2188, '0553574604'), + (3692, '0345388526'), + (3692, '0345402405'), + (3692, '0345389980'), + (3817, '0373250207'), + (6838, '0671023934'), + (6839, '0671023934'), + (6840, '1571684115'), + (6841, '1571684115'), + (3292, '0312254199'), + (6842, '0312254199'), + (6843, '0061000124'), + (6844, '0061000124'), + (6837, '0671003941'), + (6838, '0671003941'), + (85, '0451523601'), + (6845, '0451523601'), + (145, '3453171837'), + (876, '3453171837'), + (145, '345315195X'), + (876, '345315195X'), + (145, '3453147464'), + (876, '3453147464'), + (3717, '0241141788'), + (648, '0802131786'), + (3717, '0140075968'), + (6846, '0385475195'), + (6847, '3473580309'), + (17, '1558745041'), + (18, '1558745041'), + (19, '1558745041'), + (6848, '076456174X'), + (4376, '0345386663'), + (6849, '0060594330'), + (6850, '0060594330'), + (1498, '0812550773'), + (630, '082175856X'), + (630, '044914982X'), + (2357, '0671899597'), + (6851, '038071616X'), + (630, '067179390X'), + (630, '0345365925'), + (6852, '0373834136'), + (630, '0821772341'), + (543, '0440237025'), + (743, '0316171476'), + (4376, '034538170X'), + (1024, '059098182X'), + (152, '0446603600'), + (6853, '0425180298'), + (6854, '0312986696'), + (6855, '0345459679'), + (1432, '0312306326'), + (6856, '0670852147'), + (6857, '0670852147'), + (3096, '0345442393'), + (488, '0061031550'), + (3852, '0440214904'), + (6858, '0801678765'), + (6859, '0801678765'), + (142, '0451169522'), + (1086, '0805054081'), + (285, '0060927216'), + (1578, '0064406962'), + (6860, '0064406962'), + (6861, '074324141X'), + (1523, '0812504305'), + (6862, '0863040403'), + (1323, '0374172897'), + (25, '0140283404'), + (340, '0380730774'), + (965, '0862418879'), + (6863, '0862418879'), + (6864, '0862418879'), + (6865, '340414645X'), + (6866, '3442730988'), + (6867, '3442730988'), + (1052, '3404144783'), + (3114, '0880707550'), + (6868, '068145413X'), + (898, '068145413X'), + (6869, '068145413X'), + (6870, '1569472793'), + (6871, '0297829084'), + (6872, '1853406201'), + (6873, '0006551076'), + (6874, '1903650151'), + (3234, '1852278951'), + (6875, '1841153656'), + (658, '0140178198'), + (659, '0140178198'), + (6876, '1877003034'), + (6877, '3404144317'), + (145, '3453171861'), + (6878, '3852183219'), + (6877, '3852182751'), + (4288, '2070408221'), + (6879, '0792706250'), + (6701, '0340568879'), + (2621, '059040654X'), + (6880, '0439557089'), + (6881, '0749707933'), + (3166, '0517189674'), + (6882, '0810943980'), + (6883, '0590248588'), + (6884, '0870449559'), + (6885, '043910842X'), + (6886, '0749712295'), + (6887, '0749726881'), + (2724, '0140309586'), + (6888, '0140319972'), + (6889, '0140319972'), + (6890, '156565269X'), + (6891, '156565269X'), + (1410, '0394839102'), + (1411, '0394839102'), + (6892, '0860201244'), + (6893, '0860201244'), + (6894, '0860201244'), + (6895, '0395713250'), + (6896, '0395713250'), + (6897, '0894806149'), + (6898, '0894806149'), + (6899, '0140554556'), + (6900, '0140554556'), + (1031, '1563053179'), + (1410, '039480967X'), + (1411, '039480967X'), + (974, '0394800389'), + (6901, '0394800389'), + (6902, '0802769756'), + (6903, '0802769756'), + (6904, '0802769756'), + (6905, '0679823859'), + (6906, '0679823859'), + (6907, '0064430227'), + (6906, '0064430227'), + (6908, '0030423910'), + (6909, '0140502076'), + (6908, '0140502076'), + (6910, '0843110406'), + (6911, '0843110430'), + (6912, '0881380199'), + (6913, '0881380199'), + (388, '1853261580'), + (6914, '1853261580'), + (6915, '0307968219'), + (6401, '0789495929'), + (6916, '0920236162'), + (6917, '0920236162'), + (3102, '0140183515'), + (6918, '0140183515'), + (6919, '0152014209'), + (6920, '0517556758'), + (6921, '0881660965'), + (6922, '188559304X'), + (6923, '188559304X'), + (6924, '1557346755'), + (6925, '1557346755'), + (6926, '1557346755'), + (6927, '155734678X'), + (6928, '1557346763'), + (58, '0061093335'), + (6929, '0385479670'), + (6930, '0786861924'), + (6931, '0786861924'), + (1965, '0890430403'), + (6932, '1551669021'), + (6933, '076270327X'), + (1335, '076270327X'), + (6180, '0375504443'), + (3256, '0618015841'), + (176, '0681403225'), + (6934, '0385316518'), + (6935, '0440324971'), + (658, '0140168125'), + (6936, '0140168125'), + (6937, '0192829068'), + (6938, '0192829068'), + (6939, '0192829068'), + (6940, '0688141862'), + (6941, '0688141862'), + (1784, '0446602450'), + (247, '0804113831'), + (256, '0061092193'), + (256, '0061031321'), + (374, '0446359750'), + (1696, '0380818604'), + (803, '0812577833'), + (2185, '0440208513'), + (1060, '0553299077'), + (256, '0061054895'), + (6942, '0688177867'), + (6943, '0440458226'), + (3168, '0767916069'), + (3458, '067943299X'), + (6944, '0156027119'), + (2241, '0590065912'), + (6945, '0966853016'), + (6946, '0966853016'), + (6947, '0689832133'), + (6948, '0689832133'), + (2336, '0140179836'), + (1164, '0553580906'), + (6949, '0300080301'), + (463, '044022103X'), + (132, '0553581554'), + (3115, '0373834349'), + (2028, '0451179803'), + (2028, '0451203593'), + (5081, '0764223305'), + (2028, '0451207505'), + (630, '1575666731'), + (6950, '0396080111'), + (6951, '0030476267'), + (819, '0812507436'), + (818, '0812507436'), + (4921, '0201093804'), + (6952, '0671760602'), + (6953, '0671760602'), + (6954, '0970634706'), + (6955, '2020336480'), + (6956, '2070378306'), + (6957, '2070378306'), + (6958, '2020315599'), + (6959, '2080671618'), + (6960, '2868697984'), + (6961, '2868697984'), + (6962, '2868697984'), + (6963, '2253942723'), + (6964, '2253942731'), + (716, '2070425266'), + (2606, '2070425266'), + (6965, '2070425266'), + (221, '2070411729'), + (6966, '202009908X'), + (6967, '2842190068'), + (4288, '2266023209'), + (3291, '2264023481'), + (1265, '0345331397'), + (6968, '2070361039'), + (6969, '207072333X'), + (6970, '2290328685'), + (6971, '2020281341'), + (6970, '2020323656'), + (6972, '2253037389'), + (6973, '2020094851'), + (6974, '2020099136'), + (6975, '2253023906'), + (4705, '2290045764'), + (3046, '225314911X'), + (6976, '0679751750'), + (6975, '0679751769'), + (6977, '0679751769'), + (6978, '0679751769'), + (6979, '2070332748'), + (3008, '2070369439'), + (6980, '2070426777'), + (1396, '2290302481'), + (6981, '0744302749'), + (4377, '3257231598'), + (6982, '3257231598'), + (1521, '0751528498'), + (1799, '3478719615'), + (6983, '3596137225'), + (6984, '3596137225'), + (484, '0446341878'), + (2487, '3257231180'), + (3388, '3257231180'), + (6985, '3451048582'), + (6986, '0962655104'), + (6987, '3499228653'), + (142, '0451180232'), + (6988, '1570671044'), + (142, '0905712609'), + (176, '0671625837'), + (176, '0517693119'), + (6989, '0452275350'), + (6990, '0395584159'), + (6991, '0913028673'), + (6992, '0415040132'), + (6993, '0836269640'), + (2271, '1551667878'), + (4198, '157566383X'), + (6994, '0380790718'), + (6995, '0590462105'), + (6996, '0590462121'), + (6997, '0812022009'), + (6998, '0812022009'), + (6999, '037321815X'), + (7000, '0373293143'), + (7001, '0373293135'), + (183, '0399145702'), + (945, '0446346802'), + (1428, '0590483447'), + (1428, '0590453688'), + (142, '0451137965'), + (3310, '0451137965'), + (237, '0553266578'), + (368, '0449219550'), + (59, '0425128164'), + (59, '0425107469'), + (580, '0451162145'), + (571, '042510687X'), + (1965, '0451451481'), + (7002, '0451451481'), + (2513, '0451451481'), + (237, '0440198577'), + (237, '0553262645'), + (237, '044018293X'), + (1428, '0590568817'), + (7003, '0553573616'), + (183, '0515101230'), + (183, '0515129941'), + (7004, '0590421174'), + (7005, '089919463X'), + (7006, '0590250841'), + (7007, '0590250841'), + (7005, '0590250884'), + (7006, '0590250884'), + (7008, '0743492919'), + (1214, '0671039946'), + (1214, '0671039954'), + (1214, '0671039962'), + (618, '0807554545'), + (7009, '0807554545'), + (618, '0807534374'), + (618, '0807530816'), + (618, '0807554227'), + (618, '0807554200'), + (7010, '0671002031'), + (7011, '0872863077'), + (3549, '0786014245'), + (7012, '0312312261'), + (7013, '0312312261'), + (7014, '1574090356'), + (7015, '1574090356'), + (180, '0142000221'), + (3571, '014014773X'), + (7016, '0060910690'), + (7017, '0812925300'), + (7018, '0312953496'), + (7019, '1858283434'), + (7020, '0671732129'), + (274, '0140041796'), + (891, '052594544X'), + (7021, '1567313590'), + (5622, '1567313590'), + (7022, '0812551478'), + (7021, '0765346524'), + (433, '0345434676'), + (7023, '078670442X'), + (7024, '0505525372'), + (7025, '055357339X'), + (5898, '055357339X'), + (7026, '055357339X'), + (1859, '0553209671'), + (644, '0440204208'), + (7027, '0140074511'), + (7028, '0843952016'), + (7029, '0843951907'), + (5405, '0843949783'), + (936, '0843949783'), + (388, '0156252856'), + (7030, '1858286999'), + (7031, '1858286999'), + (7032, '1858286999'), + (7033, '1858286999'), + (6075, '1740591623'), + (7034, '1740591623'), + (7035, '1740591623'), + (7036, '1740591623'), + (7037, '3761400853'), + (7038, '0864427557'), + (7039, '0864427557'), + (7040, '0864427557'), + (7041, '0864427557'), + (2150, '346202261X'), + (7042, '3257217005'), + (7043, '3257217005'), + (7044, '3257217005'), + (7045, '3257217005'), + (1065, '0345315227'), + (1065, '0312871996'), + (1554, '0312871996'), + (7046, '3455003273'), + (7047, '1571741119'), + (284, '0140620443'), + (397, '0517053616'), + (401, '0517147815'), + (7048, '0517147815'), + (7049, '0517147815'), + (1396, '3453217314'), + (4603, '0679436154'), + (7050, '345834277X'), + (7051, '345834277X'), + (7052, '0140135375'), + (2458, '0140442529'), + (7053, '0140442529'), + (7052, '0140442529'), + (3608, '3596258758'), + (723, '3596258758'), + (6458, '3518068547'), + (217, '057106700X'), + (3972, '057106700X'), + (7054, '0140422161'), + (7055, '0140422161'), + (7056, '0140422161'), + (821, '0006547834'), + (7057, '1559706643'), + (552, '3442724627'), + (7058, '3442724627'), + (4610, '0670822671'), + (7059, '972210585X'), + (7060, '9726101794'), + (7061, '9722002171'), + (188, '0345410017'), + (1523, '0812550927'), + (7062, '1577592735'), + (7063, '1577592735'), + (7064, '0553279300'), + (7065, '0786702524'), + (1519, '0486414167'), + (181, '0486414167'), + (2930, '044100668X'), + (7066, '0826452450'), + (5632, '0486270513'), + (7067, '0553274325'), + (7068, '0966505301'), + (1722, '0375500936'), + (94, '034910171X'), + (154, '0385494238'), + (1455, '0671855670'), + (7069, '3453152816'), + (7070, '0333375114'), + (7071, '0333375114'), + (7072, '0333375114'), + (2118, '0786861347'), + (7073, '1590889754'), + (7074, '0452283248'), + (7075, '0945320531'), + (142, '0425105334'), + (188, '0395878063'), + (59, '0553580191'), + (7076, '0440442508'), + (7077, '0440442508'), + (7078, '0064400859'), + (257, '0064400565'), + (258, '0064400565'), + (1721, '0439049962'), + (1721, '0590846280'), + (7079, '0316358487'), + (7078, '0316358452'), + (7080, '0380787717'), + (7081, '0006485936'), + (2210, '0671558684'), + (583, '0345379365'), + (2504, '0312855222'), + (3071, '0312855222'), + (7082, '0312855222'), + (187, '0345307615'), + (4794, '0345315723'), + (7083, '0201754703'), + (247, '0804119368'), + (5060, '0375759999'), + (7084, '0375758232'), + (5060, '0679413138'), + (7085, '0525939105'), + (5060, '0375758275'), + (142, '0451172817'), + (60, '0671886665'), + (1755, '0440487617'), + (1756, '0440487617'), + (2179, '0590109960'), + (7086, '0590462261'), + (1024, '0440227194'), + (7087, '044021985X'), + (7088, '0440220238'), + (1234, '0767915062'), + (2088, '0062516930'), + (7089, '0679755047'), + (1084, '0374173133'), + (285, '0060509171'), + (467, '080506995X'), + (7090, '080506995X'), + (7091, '0809140586'), + (7092, '0809140586'), + (7093, '1583224890'), + (7094, '0809141353'), + (7095, '0809141353'), + (1936, '006008829X'), + (7096, '006008829X'), + (7097, '0764551620'), + (7098, '0553096087'), + (7099, '0737003103'), + (7100, '0737003103'), + (7101, '074322423X'), + (7102, '1572242396'), + (1704, '0312981589'), + (7103, '0312981589'), + (7104, '006019328X'), + (7105, '0399525009'), + (7106, '0062508342'), + (7107, '0062508342'), + (7108, '0062508342'), + (7109, '0140195874'), + (7110, '1591860008'), + (7111, '0874779685'), + (7112, '0874779685'), + (7113, '0066214424'), + (3946, '0345394070'), + (7114, '0376017201'), + (7115, '0376017201'), + (7116, '0376016760'), + (4457, '0696208180'), + (364, '0060958014'), + (7117, '0312271247'), + (7118, '0312271247'), + (7119, '1559706848'), + (7120, '0848723716'), + (7121, '1564145190'), + (7122, '1573228354'), + (1591, '1573222410'), + (7123, '1571780386'), + (7124, '1571780386'), + (7125, '0764586335'), + (7126, '0937750123'), + (7127, '1583762027'), + (7128, '2070403963'), + (7129, '2070392627'), + (7130, '2070392627'), + (7131, '0805071792'), + (7132, '0316328197'), + (3912, '051513595X'), + (6177, '044021680X'), + (1065, '3453092473'), + (2990, '3453092473'), + (7133, '3453092473'), + (145, '3453861825'), + (92, '0345369416'), + (501, '0440120500'), + (142, '0743211375'), + (2958, '0446606251'), + (397, '0521409047'), + (7134, '0521409047'), + (7135, '0521409047'), + (4347, '0340682310'), + (7136, '3518394045'), + (814, '3426615355'), + (5335, '0446515078'), + (2325, '185371545X'), + (7137, '0446300152'), + (5903, '0446300152'), + (7138, '0446300152'), + (1696, '0671720147'), + (4024, '0060511508'), + (7139, '0060511508'), + (6195, '0060511508'), + (7140, '0060511508'), + (7141, '0140093060'), + (7142, '0671033085'), + (7143, '0671033085'), + (7144, '0684852144'), + (7145, '0316787035'), + (7146, '156025307X'), + (7147, '0452284139'), + (7148, '067145711X'), + (7149, '0553202308'), + (7150, '0385115784'), + (7151, '0684872889'), + (7152, '0802139604'), + (7153, '0786881194'), + (7154, '0140167455'), + (7155, '0385493258'), + (7156, '0767906039'), + (7157, '0684835290'), + (7158, '0451083709'), + (97, '0871131455'), + (7159, '0425178838'), + (43, '077109972X'), + (7160, '077109972X'), + (746, '0439386012'), + (259, '0451520882'), + (3051, '0451520882'), + (7161, '1841953229'), + (149, '067943853X'), + (3738, '0349115222'), + (7162, '0060956135'), + (7163, '0349111030'), + (7164, '055214276X'), + (7165, '0330317490'), + (2188, '0552134759'), + (59, '0425130711'), + (256, '0575049804'), + (256, '0575047631'), + (256, '0575046066'), + (256, '0575044632'), + (256, '0575043636'), + (7166, '1593150229'), + (7167, '0671787187'), + (7168, '0449213013'), + (543, '0385317093'), + (142, '0451168089'), + (612, '080411868X'), + (2770, '0439420105'), + (7169, '1591824095'), + (7170, '039914417X'), + (784, '0451163710'), + (5873, '0451158261'), + (1938, '0671799584'), + (7171, '1860465382'), + (7172, '1860465382'), + (7168, '1591822580'), + (7173, '1591822572'), + (7168, '1591821533'), + (1041, '0765304686'), + (1041, '0786927402'), + (1042, '0786927402'), + (7168, '1591820073'), + (7168, '1591820065'), + (4730, '0812511751'), + (606, '0812511751'), + (7168, '1591820057'), + (945, '0345418263'), + (7168, '1931514925'), + (7174, '034528349X'), + (2188, '055309128X'), + (7175, '0887621112'), + (7176, '0380775662'), + (806, '0399124721'), + (7177, '0671876821'), + (433, '0553141279'), + (397, '067172262X'), + (7178, '0764226312'), + (7179, '039304808X'), + (2543, '0345445899'), + (1246, '9681902548'), + (7180, '9681902548'), + (7181, '9681902548'), + (2758, '9681902068'), + (7182, '0805052453'), + (3284, '1841952338'), + (176, '0330419560'), + (965, '086611954X'), + (7183, '0316877719'), + (7184, '0747541140'), + (7185, '0789426277'), + (7186, '0345449126'), + (1704, '055314300X'), + (7187, '0664225985'), + (7188, '0671022202'), + (2940, '031217229X'), + (5020, '0060925752'), + (7189, '038531177X'), + (1315, '0452264863'), + (2360, '1582341400'), + (7190, '0515085995'), + (7191, '0515085995'), + (713, '0449137465'), + (2768, '0671887963'), + (413, '0452273404'), + (3536, '0965011615'), + (7192, '0965011615'), + (6113, '0446404144'), + (1814, '0689859368'), + (2296, '0689859368'), + (7193, '0440416655'), + (7194, '0440416655'), + (7192, '0440414857'), + (7195, '0440414857'), + (7193, '0440414857'), + (2872, '042518045X'), + (7196, '0959774661'), + (7197, '0373259204'), + (7198, '0746016646'), + (7199, '0746016646'), + (7200, '0373165218'), + (571, '0425145638'), + (6248, '140003065X'), + (7201, '0671708376'), + (7202, '0671742647'), + (7203, '0671742647'), + (7204, '0671883410'), + (7205, '0671567993'), + (7206, '0446345628'), + (1699, '0553260960'), + (59, '0553801376'), + (6854, '0671733893'), + (796, '0671700103'), + (3115, '1551669447'), + (351, '0552992062'), + (7207, '0684863308'), + (618, '0807508527'), + (7208, '0807508527'), + (3259, '0590848860'), + (5814, '0590848860'), + (7209, '0590848860'), + (3787, '037582233X'), + (66, '0842343318'), + (65, '0842343318'), + (3268, '0842343318'), + (66, '084234330X'), + (65, '084234330X'), + (3268, '084234330X'), + (66, '0842343326'), + (65, '0842343326'), + (3268, '0842343326'), + (66, '0842342974'), + (65, '0842342974'), + (3268, '0842342974'), + (66, '0842321969'), + (65, '0842321969'), + (2525, '0671021192'), + (7210, '0671884492'), + (3159, '0380769557'), + (1211, '0671028383'), + (1211, '0671011367'), + (3430, '0091882087'), + (7211, '0446670553'), + (1282, '0671047485'), + (532, '0515136549'), + (2006, '0380814811'), + (971, '0671019716'), + (971, '0671034057'), + (5223, '0373708718'), + (971, '0671568841'), + (7212, '0373289766'), + (2267, '0553581643'), + (230, '038078615X'), + (2169, '038078615X'), + (7213, '038078615X'), + (2259, '0380781468'), + (971, '0671027573'), + (7214, '0312962436'), + (7213, '0312960891'), + (1116, '055358068X'), + (7215, '0440235510'), + (532, '0451402049'), + (7216, '0521815819'), + (132, '0553569910'), + (7217, '0817235000'), + (7218, '0817235000'), + (7219, '1576751511'), + (7220, '1576751511'), + (7221, '1576751511'), + (7222, '3442730368'), + (7223, '3442730368'), + (7224, '3442728266'), + (7225, '3442760771'), + (3838, '3442729696'), + (4812, '3442729726'), + (4702, '3442729726'), + (7226, '3442728312'), + (7227, '3442728312'), + (7228, '350251884X'), + (7229, '3442429641'), + (2488, '3442429641'), + (7230, '3442429641'), + (780, '3251004557'), + (2710, '344254162X'), + (767, '2253137243'), + (433, '0345456335'), + (2296, '0345456335'), + (3223, '3404117476'), + (616, '0553578685'), + (2271, '0451409884'), + (542, '0743418204'), + (1932, '0786863137'), + (554, '0553574639'), + (54, '0060512822'), + (7231, '006097673X'), + (7232, '0805023232'), + (7231, '0805039805'), + (7231, '0805018352'), + (1575, '0609608339'), + (7233, '0871138433'), + (6113, '0446607681'), + (7234, '1584650532'), + (7233, '1584650028'), + (7233, '0874518849'), + (7235, '0786866845'), + (7236, '0786866845'), + (56, '0375757422'), + (7237, '0375757422'), + (7232, '037570745X'), + (565, '0553290533'), + (7238, '0312989393'), + (641, '0312273045'), + (7239, '1853261874'), + (1158, '0836218310'), + (1455, '0552146986'), + (7240, '0340818689'), + (7241, '0140059032'), + (2598, '0140011706'), + (7242, '0552136492'), + (7243, '0330335278'), + (7244, '0743429044'), + (7245, '1857027604'), + (7246, '1856354008'), + (7247, '0440501601'), + (7248, '0952661020'), + (7247, '0952661012'), + (7247, '0952661004'), + (7249, '0340660112'), + (7250, '0718146999'), + (7251, '0718146999'), + (432, '0312135866'), + (7252, '0575065613'), + (7253, '0575065613'), + (7254, '0752800442'), + (7255, '1559704950'), + (1880, '0399141294'), + (921, '0312869932'), + (7256, '0425176789'), + (7257, '0553580310'), + (367, '0679450742'), + (465, '0060391626'), + (3883, '0374527229'), + (1704, '0312253435'), + (7102, '0312253435'), + (1010, '0385337477'), + (2937, '0140431217'), + (7258, '0140431217'), + (1753, '0312986319'), + (1704, '0312989385'), + (574, '0345409329'), + (323, '0451411056'), + (7259, '0349115761'), + (128, '0446603104'), + (65, '0553803220'), + (7260, '0553803220'), + (7261, '1560232234'), + (7262, '1883061318'), + (7263, '0060009462'), + (128, '0446519790'), + (3046, '2253146889'), + (7264, '0340629681'), + (7265, '0552998524'), + (4811, '074932483X'), + (397, '014070714X'), + (7266, '014070714X'), + (1523, '0140351140'), + (7267, '0340672250'), + (7268, '0563384514'), + (7269, '0060921161'), + (7270, '0330253603'), + (7271, '0553131605'), + (543, '044011585X'), + (543, '0440200563'), + (7272, '0671774662'), + (59, '0425075699'), + (1891, '0425080021'), + (936, '0425085325'), + (59, '042511984X'), + (250, '0060393823'), + (7273, '0747517797'), + (60, '0671431285'), + (7274, '0889627681'), + (7275, '0771058373'), + (3714, '0875423086'), + (433, '0345349350'), + (7276, '156504875X'), + (7277, '156504875X'), + (1318, '1853267333'), + (873, '0061093998'), + (873, '0812508645'), + (7278, '0671743058'), + (1539, '0048231398'), + (1062, '0048231398'), + (2835, '0312932014'), + (2585, '0812580346'), + (7279, '0671793152'), + (182, '0671793128'), + (1194, '0671641379'), + (1194, '0671568051'), + (1194, '0671002112'), + (1194, '0671730886'), + (1194, '0671794795'), + (5860, '0393037606'), + (7280, '0205319149'), + (7281, '0316235024'), + (7282, '0060952970'), + (7283, '0836133471'), + (3799, '0743203631'), + (7284, '1567187072'), + (7285, '1551108496'), + (7286, '0831711434'), + (7287, '0067575986'), + (7288, '0023193913'), + (7289, '0023193913'), + (7290, '0028639227'), + (505, '0517159309'), + (7291, '1557866031'), + (7292, '0931432820'), + (7293, '0671528068'), + (7294, '0800629701'), + (7295, '0966496027'), + (7294, '0966496019'), + (7296, '0929661192'), + (7297, '0922066434'), + (7298, '0517025302'), + (7299, '0553344803'), + (7298, '0060922583'), + (7294, '1580060218'), + (7300, '0195113713'), + (7301, '0195113713'), + (7302, '0452010136'), + (7303, '0452010136'), + (7304, '0345379586'), + (7305, '0192839071'), + (7306, '0192839071'), + (312, '0192834274'), + (7307, '0192834274'), + (7308, '0899548318'), + (7309, '0899548318'), + (7310, '0374523835'), + (7311, '0140585044'), + (7312, '0140585044'), + (7313, '0899088236'), + (7314, '014130751X'), + (7315, '0140360468'), + (5231, '0140620842'), + (7316, '0590449389'), + (1704, '0553278002'), + (7317, '0060198508'), + (3080, '0451187423'), + (7318, '0671750402'), + (7, '080411109X'), + (142, '0425081818'), + (580, '0425081818'), + (891, '0345369432'), + (890, '0451206460'), + (1455, '0552999954'), + (6283, '0140287248'), + (438, '0590502077'), + (7319, '1590790510'), + (7320, '1401040861'), + (7321, '0310239397'), + (568, '0060652926'), + (7322, '0786865482'), + (2619, '084235266X'), + (7323, '1557739579'), + (387, '0140375988'), + (1571, '0451194721'), + (3133, '0679448608'), + (1628, '0553089218'), + (7324, '0312983379'), + (7325, '140332557X'), + (7326, '1562012541'), + (7242, '0330491970'), + (7327, '1858285453'), + (7328, '1858285453'), + (1428, '0590487442'), + (2239, '0590431366'), + (401, '0448060043'), + (7048, '0448060043'), + (956, '0553213172'), + (397, '0671722905'), + (962, '0397306938'), + (4671, '0397306938'), + (7329, '0345316452'), + (7330, '0590853112'), + (505, '0517051516'), + (7331, '1562933493'), + (7332, '0448343010'), + (7333, '0448343010'), + (7334, '0448343010'), + (7335, '0816715602'), + (599, '0307117421'), + (1230, '0060931418'), + (1013, '051720679X'), + (895, '0451194772'), + (896, '0451194772'), + (7336, '0679455884'), + (7337, '0142000981'), + (7338, '0971212309'), + (7339, '0060926198'), + (1592, '0310254752'), + (7340, '044990945X'), + (183, '0515136557'), + (7341, '0449204324'), + (7342, '0747545545'), + (135, '0965455572'), + (7343, '3492236014'), + (7344, '3492236014'), + (1678, '3404147952'), + (7345, '3404146794'), + (3839, '3257227264'), + (2484, '3442429552'), + (7346, '3596148731'), + (7347, '349222962X'), + (7348, '349222962X'), + (7349, '3492235816'), + (1061, '3492235816'), + (5916, '0312320248'), + (552, '3442726735'), + (7350, '3442726735'), + (2028, '340414550X'), + (7351, '3404148703'), + (7352, '3404145518'), + (5911, '3404149122'), + (5707, '3596144868'), + (7353, '3596144868'), + (7354, '3426603136'), + (7355, '3426603136'), + (3608, '3423026294'), + (7356, '3423026294'), + (7357, '0804114498'), + (1726, '3442447038'), + (7358, '3442448336'), + (7359, '3442448336'), + (1105, '3404144171'), + (7360, '3404144694'), + (2492, '3423201509'), + (7361, '3423201509'), + (574, '3442442532'), + (7362, '3442442532'), + (474, '0020198906'), + (627, '1578155584'), + (7363, '0312082975'), + (415, '0451527569'), + (463, '0451527569'), + (7364, '0938317288'), + (7365, '0140089225'), + (323, '0679449787'), + (7366, '0385425473'), + (7367, '0312959842'), + (7366, '0312962940'), + (7368, '0061097152'), + (7369, '061812702X'), + (7370, '061812702X'), + (630, '082177364X'), + (7371, '0440236878'), + (7372, '0060963190'), + (2913, '0743448642'), + (7373, '0553801449'), + (823, '0140263144'), + (7374, '0892813571'), + (7375, '0811214028'), + (5720, '0811214028'), + (7376, '0811214028'), + (1232, '0679757899'), + (7377, '157322877X'), + (7378, '0385319525'), + (7379, '0590418262'), + (7380, '0590418262'), + (584, '0821769367'), + (1816, '0743400399'), + (1816, '0689866259'), + (5153, '0689866259'), + (1815, '0671042599'), + (7381, '0671042599'), + (7382, '0671042599'), + (7383, '0743427440'), + (4099, '0743427440'), + (7384, '0743427440'), + (7385, '0743427440'), + (6116, '0743400453'), + (1816, '0743400453'), + (7386, '0743400453'), + (7387, '0743400453'), + (187, '0812564901'), + (5233, '0812564901'), + (7388, '0812539265'), + (868, '0440221919'), + (7389, '1891153889'), + (1815, '1891153889'), + (5153, '068985918X'), + (7390, '1569715416'), + (1815, '1569715416'), + (7391, '1569715416'), + (7392, '1569715416'), + (1815, '0743418921'), + (369, '0373482078'), + (3115, '0373482078'), + (7393, '0373482078'), + (7394, '0373482078'), + (7395, '0843129689'), + (7396, '0399525777'), + (7397, '0762401400'), + (7398, '0762401400'), + (7396, '0762401397'), + (7399, '0762401397'), + (7400, '0821223275'), + (7401, '0821223275'), + (7402, '0785811338'), + (3055, '0316287555'), + (7403, '0590433512'), + (7404, '0345320530'), + (7405, '0486227456'), + (7406, '0789709651'), + (2179, '0141307129'), + (7407, '0062732749'), + (7408, '0062732749'), + (7409, '1586630326'), + (7410, '1586630326'), + (3997, '0451458311'), + (7411, '0451458311'), + (7412, '0451458311'), + (6097, '0679885447'), + (2995, '0762404590'), + (1299, '051512558X'), + (7413, '0743211995'), + (7414, '0761530878'), + (7415, '0761537295'), + (7414, '0761539220'), + (907, '0761539220'), + (7416, '088038204X'), + (7417, '0525463062'), + (7418, '0525463062'), + (7419, '076071682X'), + (3912, '0515132136'), + (7351, '076530127X'), + (85, '0140431314'), + (284, '0140430547'), + (5745, '0140430547'), + (7420, '0312154895'), + (7421, '1410755568'), + (5916, '0316816531'), + (11, '0156005492'), + (1675, '038533446X'), + (1013, '0805059555'), + (1013, '0805036504'), + (7422, '0060005009'), + (7421, '0060005009'), + (7423, '0786831685'), + (7424, '0786831685'), + (7425, '0786831685'), + (7426, '1578562589'), + (815, '0671024183'), + (7427, '0590448501'), + (7426, '0590448501'), + (4376, '055305807X'), + (7428, '0831746807'), + (7429, '0373706863'), + (3359, '0671690558'), + (155, '0140173188'), + (7430, '1558172696'), + (7431, '1558172696'), + (7432, '1558172696'), + (7433, '0399519483'), + (7434, '1562650033'), + (7435, '1562650033'), + (7436, '0451173392'), + (7437, '0451173392'), + (7438, '0679434046'), + (7439, '1568846444'), + (7440, '0895266067'), + (7296, '0380004658'), + (2150, '3462030531'), + (7441, '3462030531'), + (484, '3442438799'), + (1876, '3442427983'), + (1921, '3442427983'), + (7442, '0553155962'), + (7443, '0024080918'), + (7444, '0024080918'), + (7445, '027362198X'), + (7446, '1885027060'), + (7447, '1885027060'), + (7448, '0312962185'), + (7449, '1932173102'), + (7450, '1932173102'), + (7451, '0373029578'), + (7452, '0380788500'), + (2796, '1558172297'), + (919, '0373035039'), + (903, '1878702033'), + (2695, '0618124918'), + (7453, '0618124918'), + (2258, '0380782332'), + (3893, '0553124773'), + (438, '0698116844'), + (1298, '0440700132'), + (760, '0553278215'), + (1214, '0743428625'), + (7454, '067174500X'), + (166, '0440213428'), + (7455, '0671726587'), + (7456, '0590679090'), + (7457, '0590679090'), + (7458, '3453864050'), + (7459, '3453864026'), + (7460, '0440406404'), + (7461, '0929923901'), + (7462, '0446512478'), + (4137, '0385417845'), + (235, '0385312121'), + (7463, '0553273280'), + (1884, '0425177351'), + (145, '0425177351'), + (7464, '0425177351'), + (7465, '0312912153'), + (7466, '0671836862'), + (7467, '1558020837'), + (7468, '055311767X'), + (108, '0312974256'), + (5112, '0449222470'), + (7469, '052341899X'), + (7470, '0689846223'), + (5500, '0689846223'), + (7471, '0070504253'), + (7472, '067088782X'), + (7473, '1893010023'), + (1048, '1893010023'), + (7474, '0743456246'), + (915, '0141439556'), + (5082, '0141439556'), + (7475, '0141439556'), + (59, '0679425268'), + (129, '0446608815'), + (369, '0515128546'), + (1298, '0440984696'), + (369, '0515114006'), + (574, '0375401601'), + (7476, '0446610348'), + (505, '0517431491'), + (7477, '0300069766'), + (7478, '0140178406'), + (369, '0399149392'), + (266, '0312875681'), + (3223, '0385413041'), + (7479, '0385308078'), + (7480, '0395771382'), + (915, '0451523385'), + (7481, '0140440224'), + (7482, '0140440224'), + (7483, '0871138611'), + (188, '0380789663'), + (188, '0380789590'), + (106, '0316769495'), + (4391, '1551662809'), + (7484, '1410784924'), + (180, '0670880728'), + (24, '0385472943'), + (7485, '0679452354'), + (7486, '0142003727'), + (959, '2253036218'), + (142, '2290308404'), + (7487, '2738107915'), + (7488, '2844121578'), + (7489, '2844121578'), + (2805, '2264002190'), + (1553, '2266072242'), + (7490, '1591299357'), + (7491, '0373703384'), + (1282, '0671047515'), + (1282, '0553581767'), + (1452, '039308700X'), + (2986, '039308700X'), + (59, '0553801341'), + (188, '0375803017'), + (7492, '0375803017'), + (142, '0671039725'), + (574, '0345389425'), + (7493, '0671660209'), + (1558, '0345422317'), + (7494, '0140169598'), + (5148, '0671883429'), + (397, '0671722891'), + (7495, '0441115985'), + (4290, '0441115985'), + (7496, '0441115985'), + (7497, '0553234706'), + (7498, '067153873X'), + (7200, '0671869124'), + (142, '0451142934'), + (7499, '068805935X'), + (7500, '0786862564'), + (7501, '0786862564'), + (7502, '0967575613'), + (7503, '0967575613'), + (3432, '0345388623'), + (5096, '0445407158'), + (7504, '0445407158'), + (7505, '0553568787'), + (7506, '0345382528'), + (6425, '0446363049'), + (7507, '0446363049'), + (7508, '0671017241'), + (5361, '0849939518'), + (7509, '0740738089'), + (397, '0451526929'), + (6138, '0446676209'), + (7510, '0446676209'), + (7511, '0446676209'), + (7512, '0747553327'), + (7513, '0571134173'), + (7514, '0865733279'), + (7515, '0865733279'), + (2271, '0451408462'), + (7516, '0446517399'), + (543, '0440173922'), + (553, '0061031992'), + (1706, '0156394014'), + (4079, '0517703858'), + (7517, '0425159671'), + (3499, '1551668084'), + (2251, '0843948892'), + (3918, '038081014X'), + (7518, '344244991X'), + (1726, '051513306X'), + (7519, '0805065393'), + (527, '0764226770'), + (7520, '0425195244'), + (7521, '0060527412'), + (7522, '042519213X'), + (1112, '0671042513'), + (7523, '045121188X'), + (1319, '0446611468'), + (7524, '0451211790'), + (2169, '0451408020'), + (3132, '0373225628'), + (7525, '0373289138'), + (4024, '0060531231'), + (1833, '037322558X'), + (3434, '0312990030'), + (7526, '0373224648'), + (2169, '0451211839'), + (7527, '0821760955'), + (59, '0425104346'), + (714, '0425198057'), + (2824, '0451210646'), + (2253, '0440224551'), + (6576, '0843953780'), + (7528, '0440237556'), + (7529, '0373245025'), + (1351, '0373226667'), + (7530, '0373224613'), + (7531, '0373226772'), + (7532, '0373226144'), + (1388, '037312273X'), + (7533, '0373225806'), + (2409, '0373225857'), + (3471, '0505522837'), + (7534, '0505522837'), + (7535, '0505522837'), + (7536, '0061084476'), + (1892, '0061000205'), + (2239, '0590251627'), + (2241, '0590251619'), + (2239, '0590251600'), + (6703, '1551669420'), + (4826, '0152017682'), + (7537, '0425176614'), + (4909, '1581960085'), + (1537, '0515134511'), + (7538, '0486277879'), + (7539, '1932344268'), + (7540, '0967024250'), + (7541, '096702420X'), + (236, '0446520802'), + (3458, '0375500995'), + (7542, '0062502514'), + (634, '0425168468'), + (410, '0553227467'), + (4050, '0140372628'), + (5720, '0394728815'), + (7375, '0394728815'), + (7543, '0963930400'), + (7542, '0963930419'), + (532, '0515130966'), + (971, '1551667339'), + (7544, '1571430237'), + (1428, '0590474804'), + (220, '0060152583'), + (3480, '0060152583'), + (6544, '0374512647'), + (7545, '0374512647'), + (7546, '0374512647'), + (3008, '0394743040'), + (7547, '0394743040'), + (3008, '0394623266'), + (7548, '0020191200'), + (7549, '0394744756'), + (3008, '0394552369'), + (1207, '0375757147'), + (3760, '0375757147'), + (410, '0440206146'), + (4362, '0060392436'), + (7550, '0805064222'), + (7551, '0140274316'), + (7552, '0609607804'), + (7553, '0609607804'), + (7554, '3548265383'), + (732, '0618129014'), + (7555, '055338189X'), + (3325, '0385509529'), + (7556, '0821601806'), + (7557, '0821601806'), + (6428, '0345329732'), + (7558, '1563521083'), + (7559, '0449200256'), + (61, '0684195976'), + (7560, '042506073X'), + (6471, '0312971494'), + (7561, '0451112121'), + (7562, '0515123536'), + (7563, '037324195X'), + (7564, '0312954700'), + (7565, '0312954700'), + (7566, '0671672495'), + (81, '0425092917'), + (254, '0449911519'), + (543, '0440236754'), + (7567, '0881660949'), + (142, '0451173317'), + (142, '0451160525'), + (7568, '0743446593'), + (5510, '068483068X'), + (7569, '0759695377'), + (7570, '0340512660'), + (7569, '0340512660'), + (7571, '0099623404'), + (281, '014035008X'), + (473, '0684813440'), + (473, '0684813459'), + (474, '0684813467'), + (7572, '0553283111'), + (1157, '0030448565'), + (7573, '0030448565'), + (7574, '0140188479'), + (7575, '0446393681'), + (7576, '067177879X'), + (7577, '067177879X'), + (7578, '0553238744'), + (3086, '0020199600'), + (949, '0553210211'), + (7579, '0743211227'), + (7580, '0743211227'), + (1704, '0553560441'), + (374, '0445405627'), + (7581, '0445405627'), + (891, '0440201705'), + (5962, '0061090565'), + (2188, '0553297422'), + (1498, '0515117617'), + (2656, '0449217264'), + (1213, '0345298349'), + (7582, '0345372050'), + (7583, '0809130157'), + (4321, '0060919833'), + (2188, '0553199803'), + (3591, '0553269100'), + (7584, '0345311183'), + (7585, '0553236776'), + (7584, '0553236687'), + (7586, '155369046X'), + (7587, '0312971303'), + (7588, '067188414X'), + (7589, '067188414X'), + (2371, '0440215404'), + (7590, '1863736522'), + (7591, '1869503368'), + (7592, '1869503368'), + (7593, '1589610024'), + (369, '0425195473'), + (7594, '0899681069'), + (7595, '0802707815'), + (7596, '0241894840'), + (2976, '0002219476'), + (7597, '1551660369'), + (4191, '0778321150'), + (7598, '0860207161'), + (7599, '0671955543'), + (7600, '0671955543'), + (7601, '0140307532'), + (7602, '0140328335'), + (7603, '0006716067'), + (1194, '000692347X'), + (7604, '085079188X'), + (7605, '0723237840'), + (7606, '0001360469'), + (7605, '0001360469'), + (7607, '0721406173'), + (7608, '0948535156'), + (7609, '059070592X'), + (7610, '0001374869'), + (7609, '0001374869'), + (7611, '0861122488'), + (599, '0307122034'), + (7612, '1852700483'), + (7613, '0750009861'), + (7614, '0721407501'), + (7615, '0721407501'), + (7018, '1858282160'), + (1473, '0140276904'), + (947, '3453868315'), + (7616, '3453868315'), + (7617, '3442450020'), + (7618, '3442450020'), + (133, '3404148665'), + (7619, '0967819946'), + (244, '3630869459'), + (7620, '3630869459'), + (2271, '1551666650'), + (2618, '1558745157'), + (7621, '0802139612'), + (7622, '0812966627'), + (7623, '0806943238'), + (7624, '096737930X'), + (7625, '096737930X'), + (7626, '0531162192'), + (7627, '0439083699'), + (7628, '0439083699'), + (7629, '0439083699'), + (3787, '0060739487'), + (1578, '0060739495'), + (1853, '0060739444'), + (2638, '0060739444'), + (7630, '0743437314'), + (5500, '006073941X'), + (7631, '006073941X'), + (7632, '0439633737'), + (7633, '0439633737'), + (7631, '0439253233'), + (810, '034536208X'), + (1704, '0553230212'), + (7634, '1579903002'), + (7635, '0762727942'), + (7636, '1590591224'), + (176, '0787108960'), + (7204, '0812522133'), + (7637, '014028852X'), + (7638, '014028852X'), + (7639, '014028852X'), + (7640, '014028852X'), + (7641, '1887424148'), + (7642, '1887424148'), + (7643, '1887424148'), + (7644, '0060928174'), + (7645, '0060928174'), + (7646, '0425063879'), + (268, '1563890895'), + (4051, '1563890895'), + (7647, '1563890895'), + (7648, '1563890895'), + (7645, '0425064921'), + (7645, '0425061957'), + (2909, '1878424483'), + (7649, '1878424483'), + (7650, '0789205106'), + (7651, '0679445358'), + (7652, '0679445358'), + (7653, '1861870612'), + (7654, '0804831904'), + (7655, '0804831904'), + (7656, '0804831904'), + (7657, '0517163446'), + (7658, '0517163446'), + (7659, '1565123778'), + (7660, '1565123778'), + (860, '0553578731'), + (7661, '0020292651'), + (7662, '0898866294'), + (7663, '0898866294'), + (7664, '1904492355'), + (237, '0440118700'), + (7335, '0380710897'), + (7665, '0615116426'), + (600, '0590457241'), + (760, '0553242172'), + (132, '0553800949'), + (94, '0330328913'), + (7666, '0738867543'), + (758, '0349105715'), + (220, '057114456X'), + (4288, '3257205082'), + (7667, '3257205082'), + (7668, '0849955815'), + (7669, '0849955815'), + (602, '0590101129'), + (7670, '069811406X'), + (6146, '0373612605'), + (284, '0140430083'), + (7671, '0140430083'), + (7672, '1582340722'), + (7673, '0373822030'), + (7674, '0060000791'), + (285, '006050918X'), + (7675, '0140124381'), + (7676, '039305747X'), + (3097, '0689303173'), + (3098, '0689303173'), + (7677, '0140441654'), + (7678, '0140441654'), + (7679, '0140158014'), + (7680, '0140118047'), + (7681, '0732264472'), + (7682, '0394759753'), + (7683, '0910147140'), + (7684, '0895778742'), + (7685, '0821723502'), + (1209, '0345418271'), + (7686, '0534005411'), + (234, '0804114277'), + (5110, '0671795570'), + (889, '0312955006'), + (7687, '0440236169'), + (7001, '0425178552'), + (7688, '0312278284'), + (397, '014071491X'), + (7689, '014071491X'), + (7690, '1902825969'), + (5418, '0380803240'), + (2835, '0843952407'), + (3848, '0553235400'), + (4232, '0679723110'), + (4111, '0140430350'), + (6217, '0140430350'), + (280, '037325024X'), + (5646, '0743463544'), + (7691, '193152713X'), + (7692, '1400060222'), + (433, '0061057908'), + (7693, '0061057908'), + (7694, '0061057908'), + (433, '0061050946'), + (5540, '0061050946'), + (6696, '0061044431'), + (7695, '0802140149'), + (6369, '006093140X'), + (433, '0345351878'), + (433, '0441003389'), + (433, '0441005314'), + (2987, '0061057894'), + (7692, '0061057894'), + (5418, '0380720868'), + (7696, '078670621X'), + (7697, '0393315606'), + (7698, '0060936231'), + (7699, '0060936231'), + (7700, '0156002108'), + (2035, '0786864400'), + (1086, '0140178139'), + (7701, '0440219930'), + (7702, '0395640229'), + (1320, '0060178248'), + (7703, '1573220663'), + (991, '0140139400'), + (76, '0671682083'), + (7704, '9151830485'), + (82, '0192816276'), + (7705, '0192816276'), + (7706, '0330353713'), + (7707, '0060503475'), + (7708, '1400060117'), + (7691, '081296800X'), + (367, '0449908798'), + (7709, '0743255224'), + (4348, '0399146113'), + (4349, '0399146113'), + (7710, '0312291523'), + (668, '0446675059'), + (7711, '1558614621'), + (7712, '1558614621'), + (5707, '0753811251'), + (25, '0375411550'), + (7713, '0679774025'), + (4049, '0380705648'), + (7714, '0812968182'), + (7715, '0385318804'), + (4049, '0380652277'), + (7716, '0375508627'), + (239, '0452284937'), + (1228, '1573222267'), + (135, '0316781010'), + (1228, '0865472807'), + (4724, '0345460359'), + (7717, '1885211929'), + (7718, '1885211929'), + (7719, '0743201027'), + (7720, '156292530X'), + (7721, '0684836556'), + (7722, '0684836556'), + (7723, '0842307419'), + (5591, '1556612966'), + (5608, '0590465953'), + (1173, '0671017276'), + (403, '0895772175'), + (7724, '0895772175'), + (7725, '0064405109'), + (7726, '0064405109'), + (7727, '0064405486'), + (7728, '0064405486'), + (7729, '0064400018'), + (258, '0064400018'), + (7730, '1561797111'), + (2029, '0836217799'), + (7731, '083611714X'), + (7732, '0440490995'), + (1176, '0380698714'), + (3405, '0380698714'), + (7733, '0380698714'), + (2713, '0553481185'), + (2570, '0689835744'), + (7734, '0590450336'), + (7735, '0590450336'), + (1691, '0316115568'), + (7736, '0590623516'), + (7737, '0140511008'), + (83, '0609602438'), + (7738, '9723704552'), + (7271, '067177459X'), + (7739, '0618071784'), + (5623, '1550660160'), + (7740, '0876054440'), + (7741, '0882547593'), + (7742, '0316057517'), + (7743, '0866220445'), + (7744, '0866220445'), + (7745, '0517880539'), + (7746, '0671449621'), + (7747, '3923880642'), + (7748, '3923880642'), + (7749, '0312104456'), + (7750, '0312104456'), + (7751, '0385314280'), + (7752, '0385314280'), + (3757, '0345285859'), + (7753, '0872168255'), + (411, '0804102988'), + (891, '0440150167'), + (7754, '0590988867'), + (7755, '059050214X'), + (7756, '0316286125'), + (7757, '0590053698'), + (7758, '038523029X'), + (6629, '0152177639'), + (1422, '0380715635'), + (1977, '0517667185'), + (7759, '0517667185'), + (7760, '0316613231'), + (4981, '0140343865'), + (618, '0807593664'), + (7761, '0807593664'), + (7762, '044021212X'), + (1024, '0440411335'), + (5441, '0440497272'), + (956, '059042243X'), + (7763, '0140365826'), + (3359, '0671550748'), + (7764, '0821715186'), + (1578, '0060233346'), + (7765, '0590098535'), + (7766, '0671866966'), + (7767, '072324216X'), + (631, '0140314512'), + (7762, '0590432664'), + (6942, '0440430712'), + (7768, '0590972154'), + (1989, '0590972154'), + (7769, '0380750260'), + (7770, '0449219895'), + (1428, '0590399888'), + (7771, '0874067715'), + (3028, '0874067715'), + (7770, '0874067715'), + (7772, '006440160X'), + (7773, '006440160X'), + (1431, '0316142417'), + (5586, '0786813563'), + (7774, '0064470229'), + (7775, '0590425560'), + (7776, '0590425560'), + (7777, '0590414356'), + (7775, '0590414356'), + (7778, '0910034532'), + (7779, '1591820324'), + (7778, '1591820316'), + (7778, '1591820308'), + (7778, '1591820286'), + (7778, '1931514496'), + (7778, '1931514968'), + (7780, '3426621657'), + (7781, '0312983336'), + (397, '0140714197'), + (7782, '0140714197'), + (7783, '0425154882'), + (6880, '0233981071'), + (7784, '3453171489'), + (7785, '3453171489'), + (7786, '1550171348'), + (49, '0345404769'), + (59, '0425158594'), + (1858, '0099282194'), + (7787, '0380806576'), + (4049, '0060508876'), + (7788, '0967253535'), + (1194, '0448095017'), + (7789, '0671038850'), + (6302, '345386722X'), + (7790, '345386722X'), + (6425, '0446359688'), + (7791, '0892831189'), + (7792, '0449902927'), + (17, '1558745017'), + (18, '1558745017'), + (7793, '1558745017'), + (7794, '1558745017'), + (7795, '0671501283'), + (7796, '0671501283'), + (7797, '033036197X'), + (7798, '0767906780'), + (7799, '0679744495'), + (3458, '0440221099'), + (463, '0385319207'), + (7800, '0449907635'), + (7801, '042518269X'), + (4837, '0060915749'), + (1013, '0553260618'), + (5497, '0671002783'), + (397, '0671722794'), + (7802, '1893121119'), + (162, '0804900078'), + (7803, '0385323905'), + (1894, '034540727X'), + (5138, '0786886625'), + (7804, '0375760504'), + (5786, '0312300530'), + (7805, '157322930X'), + (4135, '0805211020'), + (7806, '0679736891'), + (4559, '0060915188'), + (1229, '0671792385'), + (4912, '0156008661'), + (63, '0156008661'), + (5642, '0156008661'), + (7807, '0156008661'), + (7808, '0609803247'), + (61, '0425163407'), + (7809, '0671873199'), + (5538, '0812531353'), + (7810, '0140281290'), + (2629, '3596143500'), + (403, '0451525027'), + (7811, '0451525027'), + (7812, '9074336329'), + (7813, '3423704306'), + (7814, '3423704306'), + (183, '0515099546'), + (1326, '0812542835'), + (1327, '0812542835'), + (7815, '0373264208'), + (7816, '0373264216'), + (7516, '0425170306'), + (7516, '042517025X'), + (7516, '0425180905'), + (7817, '0373263945'), + (906, '0425067769'), + (7818, '0785278796'), + (7819, '1560431008'), + (7820, '1565076257'), + (3713, '0553575937'), + (7821, '0571136117'), + (7822, '0856402915'), + (4657, '0800714237'), + (7823, '0140069453'), + (7824, '0671852701'), + (7825, '0553283588'), + (7102, '055329508X'), + (6111, '0855616539'), + (1092, '0743410181'), + (626, '0671502522'), + (1092, '0671502522'), + (898, '0671502522'), + (7826, '0671502522'), + (7827, '0373834292'), + (5214, '0373834292'), + (7828, '0373834292'), + (7829, '0263819922'), + (7830, '0263823091'), + (674, '026382831X'), + (1092, '0671744623'), + (6854, '0671025384'), + (7831, '0671019228'), + (7832, '038073320X'), + (3823, '0061044636'), + (2084, '0553561049'), + (3115, '0263824683'), + (7833, '0373047231'), + (971, '0373483872'), + (2863, '0373483872'), + (7834, '0373483872'), + (4692, '3442438241'), + (7835, '3442438241'), + (1248, '3596130417'), + (7836, '3596130417'), + (4387, '0552526150'), + (7837, '0307123332'), + (7604, '0723245835'), + (7838, '3770156218'), + (6631, '351828875X'), + (7839, '3453124502'), + (7840, '354835985X'), + (7841, '3404144449'), + (252, '3442420156'), + (7842, '3442420156'), + (1191, '0330294911'), + (7843, '3485008265'), + (5160, '0061053473'), + (3856, '3792000261'), + (7844, '3792000261'), + (3839, '3257229305'), + (7840, '3499231689'), + (5403, '3423125071'), + (7845, '3423125071'), + (2790, '0553239112'), + (7846, '0802141293'), + (7847, '0451458915'), + (7846, '0451458559'), + (7846, '0451458141'), + (7846, '0451457935'), + (7846, '0451457730'), + (3792, '0142002798'), + (7848, '0397300441'), + (7849, '0397300441'), + (742, '0451190955'), + (742, '0451160533'), + (7850, '0060530421'), + (995, '0395927218'), + (7851, '0345450302'), + (250, '006039384X'), + (3618, '037576092X'), + (7852, '0874041872'), + (1537, '0515133876'), + (1537, '0515134503'), + (1537, '0515134457'), + (1537, '0515134473'), + (7853, '0810942631'), + (7854, '0810942631'), + (1537, '0515134465'), + (3588, '0142002593'), + (1537, '051513452X'), + (7855, '0399150706'), + (1537, '0515134481'), + (7856, '038548237X'), + (1537, '051513449X'), + (7857, '158567365X'), + (5094, '0743456408'), + (5094, '0743427149'), + (951, '1565113306'), + (7858, '1565113306'), + (1211, '3442355907'), + (7859, '3442355907'), + (1628, '3442448182'), + (7860, '3442448182'), + (3880, '3442309646'), + (7861, '3442309646'), + (951, '3442541662'), + (7862, '3442541662'), + (121, '3442451752'), + (7863, '3442451752'), + (7864, '9810023847'), + (1898, '081257558X'), + (7865, '0684859483'), + (7866, '0684859483'), + (7867, '0684859483'), + (7868, '9810455674'), + (7869, '0395971802'), + (7863, '9810026595'), + (397, '1853262439'), + (397, '1853262544'), + (7870, '0971009902'), + (7871, '1840224002'), + (7872, '1840224002'), + (905, '1853260339'), + (56, '0553212737'), + (7873, '2277301981'), + (7874, '0140106391'), + (795, '0345434110'), + (3654, '0743456947'), + (7875, '1853265179'), + (1428, '0671013777'), + (7876, '0446605700'), + (7877, '0451186745'), + (7878, '0553446282'), + (7879, '1857821173'), + (7880, '0446531413'), + (553, '0061032476'), + (7881, '0373764405'), + (7882, '0060533072'), + (342, '055356983X'), + (7883, '0330352695'), + (3831, '1860499627'), + (7884, '1860499627'), + (7885, '0553492144'), + (7886, '0553569228'), + (1719, '0061013714'), + (7887, '0345260791'), + (7888, '0553493213'), + (7889, '0312274777'), + (7890, '0140366709'), + (7891, '0140366709'), + (3823, '0060574216'), + (7892, '0060540591'), + (7893, '0553492942'), + (7894, '0553492942'), + (7895, '0553492942'), + (85, '1853262773'), + (7896, '0896380637'), + (7897, '0752271687'), + (7898, '0899093655'), + (1577, '0312049994'), + (7899, '0767914848'), + (7900, '0684849690'), + (7901, '0380731819'), + (4507, '0380731819'), + (7902, '0505524902'), + (2417, '0515131679'), + (563, '0425195449'), + (4931, '0446613851'), + (7903, '034544227X'), + (897, '0451210611'), + (374, '0679438890'), + (7904, '0399527826'), + (7905, '0399527826'), + (7906, '0767904095'), + (653, '0812929802'), + (2082, '0743400739'), + (3601, '2070424324'), + (7907, '2070424324'), + (7908, '2290311782'), + (7909, '2266031619'), + (7910, '2266031619'), + (7911, '1550544683'), + (336, '0749717556'), + (7912, '0881339512'), + (7913, '0881339512'), + (5015, '0140031189'), + (4938, '0871132648'), + (7914, '037575699X'), + (7915, '037575699X'), + (2703, '037575699X'), + (274, '0141301104'), + (7916, '0714843377'), + (1248, '3453150090'), + (7917, '0525944230'), + (634, '0425170500'), + (369, '0399148248'), + (571, '9500416387'), + (149, '9500704285'), + (634, '0425174344'), + (971, '0671027581'), + (150, '0061015075'), + (1747, '0224031457'), + (7918, '0805066160'), + (5877, '0553564498'), + (7919, '1883991145'), + (2667, '0312970277'), + (3172, '0449224627'), + (490, '0060082194'), + (1858, '0618059458'), + (341, '1573229725'), + (937, '0786889306'), + (7297, '325770044X'), + (1899, '325770044X'), + (1265, '325770044X'), + (4426, '0671534726'), + (1214, '0671873202'), + (1214, '0671007637'), + (1214, '0671534734'), + (5705, '0821745689'), + (1214, '0671534742'), + (1219, '0380720973'), + (59, '0425136981'), + (7920, '2070381471'), + (1621, '0609607294'), + (7921, '089733356X'), + (7922, '0375724397'), + (7923, '0226244962'), + (7922, '0226244962'), + (7924, '0226244962'), + (2559, '0312965141'), + (7925, '0807612596'), + (7926, '0893819034'), + (7927, '0893819034'), + (1275, '0689848919'), + (7928, '3404161696'), + (2239, '0590436481'), + (2240, '0590436481'), + (60, '0671673653'), + (7929, '1558746692'), + (7930, '1558746692'), + (1899, '0140378278'), + (7931, '0140378278'), + (7932, '0352332352'), + (7933, '0452007380'), + (7934, '0553133896'), + (7935, '0553133896'), + (7936, '0380599236'), + (543, '0440224780'), + (2007, '0446671002'), + (1428, '0590483404'), + (220, '0060930314'), + (1428, '0590453653'), + (1428, '059056885X'), + (1880, '038549842X'), + (6825, '0385246870'), + (3035, '0312869088'), + (7937, '0871312875'), + (4727, '0340415185'), + (7938, '0684865491'), + (3798, '0786862874'), + (39, '0679419454'), + (7939, '0553057456'), + (7940, '0385298870'), + (6390, '0836252063'), + (7941, '1575662493'), + (2271, '1551668971'), + (7942, '1880909340'), + (7943, '0517597152'), + (1196, '0399149384'), + (7944, '1559721162'), + (7945, '0802733220'), + (2583, '0892967307'), + (7946, '0446518859'), + (2913, '0688126731'), + (5108, '0684196549'), + (7947, '0688158196'), + (2576, '0345386299'), + (6390, '0836278658'), + (7948, '0609602403'), + (7949, '1575663473'), + (4730, '0525426701'), + (4677, '0689304420'), + (7950, '0394473043'), + (7951, '052593863X'), + (3643, '0385419457'), + (4190, '0060176539'), + (7952, '038530532X'), + (4502, '0385314124'), + (7953, '0312112831'), + (7954, '0618045678'), + (7955, '0312263066'), + (2593, '038097729X'), + (4565, '0670854891'), + (280, '2266123254'), + (1167, '0439531640'), + (7956, '0152045708'), + (2353, '0812971043'), + (1706, '0156319527'), + (7957, '0754807762'), + (7958, '0060923288'), + (7959, '1551669323'), + (3768, '0330349112'), + (7960, '033035566X'), + (7961, '061805670X'), + (7962, '0684860244'), + (7963, '0831731516'), + (1484, '3453870212'), + (7964, '3442355052'), + (1560, '0385509510'), + (7965, '3426616653'), + (7966, '0688169082'), + (7967, '1570753881'), + (7966, '1570753881'), + (7968, '0813339022'), + (7969, '0465083668'), + (7970, '0931779073'), + (7971, '0679757015'), + (7972, '0385239165'), + (7973, '155896388X'), + (7974, '155896388X'), + (7975, '0380771535'), + (7976, '0813526507'), + (7977, '0460873946'), + (7978, '0460873946'), + (367, '0804115761'), + (7979, '0688118186'), + (7980, '0671027328'), + (7981, '1863305955'), + (7982, '0195090616'), + (873, '0812513495'), + (1663, '0812971116'), + (7983, '0140481850'), + (5938, '3442449871'), + (7984, '3442449871'), + (7985, '3442450136'), + (7986, '3442450136'), + (48, '3442426030'), + (7987, '0064406423'), + (7988, '0140249265'), + (7989, '3462027697'), + (7990, '3462027697'), + (4382, '0449147231'), + (7991, '0747258740'), + (7992, '0330351958'), + (7213, '0743419162'), + (7993, '0451205707'), + (58, '0060179341'), + (889, '0316152196'), + (1432, '0312185863'), + (1498, '0312865694'), + (7994, '0684193965'), + (2169, '0451206444'), + (7995, '0843947616'), + (7996, '0689117353'), + (7997, '0787902314'), + (7998, '0304328502'), + (7400, '0304328502'), + (7999, '0745312187'), + (8000, '0745312187'), + (8001, '0745312187'), + (8002, '0745312187'), + (8003, '0889220603'), + (8004, '1558505164'), + (8005, '1558505164'), + (8006, '1550221582'), + (1164, '0553380400'), + (781, '1555838537'), + (8002, '0889223017'), + (436, '0449219399'), + (8007, '0310248299'), + (551, '006104296X'), + (1265, '0553803700'), + (1265, '0553565079'), + (397, '0451524608'), + (8008, '0451524608'), + (397, '0451522869'), + (8009, '0451522869'), + (397, '0451524101'), + (8010, '0451524101'), + (397, '0451522990'), + (8011, '0451522990'), + (8012, '0451522990'), + (397, '0451522966'), + (8013, '0451522966'), + (397, '0451524098'), + (8014, '0451524098'), + (397, '0451523113'), + (397, '0451522664'), + (397, '0451522974'), + (8015, '0451522974'), + (397, '0140707204'), + (8016, '0140707204'), + (397, '0140707182'), + (8017, '0140707182'), + (397, '014070728X'), + (8016, '014070728X'), + (8018, '014070728X'), + (433, '0441001416'), + (6854, '0671025325'), + (7085, '0802850995'), + (8019, '0804200637'), + (8020, '068700781X'), + (8021, '068700781X'), + (8022, '0679730621'), + (8023, '1862044201'), + (8024, '0345388879'), + (8025, '0316102334'), + (8026, '0316102334'), + (8027, '0380792508'), + (176, '0517552000'), + (3662, '0553564927'), + (8028, '0064403149'), + (2287, '0446400718'), + (2495, '0786868848'), + (1331, '0451410378'), + (341, '1573227889'), + (8029, '0446515272'), + (7467, '0425129039'), + (369, '0373240007'), + (4104, '3596505275'), + (8030, '3608934537'), + (266, '0765304341'), + (8031, '076530418X'), + (8032, '0312867808'), + (8033, '0812568850'), + (8034, '0812575857'), + (3632, '0452263565'), + (1628, '0553285920'), + (8035, '0345346602'), + (8036, '0679454748'), + (8037, '0785280952'), + (533, '0345430514'), + (150, '0060933186'), + (151, '0061097853'), + (8038, '0552995770'), + (2583, '0718143051'), + (1726, '1865083348'), + (1428, '3570206181'), + (8039, '3570206181'), + (1428, '3570205932'), + (8038, '3570205932'), + (3962, '3473581720'), + (7861, '3473581720'), + (847, '349913943X'), + (3223, '0553271369'), + (8040, '0671016733'), + (8041, '0618145591'), + (7426, '0307001377'), + (8042, '0307001377'), + (882, '0140390227'), + (8043, '0851129412'), + (8044, '0851129412'), + (8045, '0851129412'), + (8046, '0851128882'), + (8047, '1852838892'), + (8048, '0743430344'), + (8049, '0500091080'), + (8050, '0500091080'), + (8051, '0851125794'), + (8052, '0851125794'), + (8053, '0711930007'), + (8054, '034911319X'), + (8055, '0688176461'), + (1826, '0373765207'), + (8056, '0439132266'), + (8057, '0195101685'), + (8058, '0860202909'), + (397, '0743477553'), + (2599, '0451515927'), + (8059, '0373169922'), + (60, '0671867091'), + (2306, '1575662728'), + (2170, '1575662728'), + (674, '1575662728'), + (8060, '1575662728'), + (1087, '0821758608'), + (3677, '038072751X'), + (8061, '0553207083'), + (8062, '0590487922'), + (798, '0590554093'), + (8063, '0821756079'), + (606, '0886778905'), + (59, '0425147517'), + (59, '0345386108'), + (1283, '0671709607'), + (8064, '1881471578'), + (5201, '3442725984'), + (1061, '3442725984'), + (8065, '0849942365'), + (8066, '0849942365'), + (8067, '0895294958'), + (8068, '0028612671'), + (8069, '0395752833'), + (8070, '0061056154'), + (2528, '0515130095'), + (1851, '0061099082'), + (8071, '0812531884'), + (626, '0671795554'), + (2393, '0886775981'), + (3912, '0515130044'), + (4191, '1551665204'), + (5432, '0440217334'), + (8072, '0140287442'), + (8073, '0425164152'), + (5052, '038072118X'), + (7916, '0451407199'), + (8074, '0446608009'), + (616, '0553576798'), + (8075, '1558850767'), + (8076, '0684871483'), + (8077, '0684871483'), + (236, '0446525537'), + (8078, '0385472978'), + (8079, '0533133726'), + (8080, '1561708755'), + (4419, '0375507639'), + (6470, '0670894605'), + (712, '038550117X'), + (3332, '0684847450'), + (8081, '0886772796'), + (8082, '0451451600'), + (8083, '0752847732'), + (8084, '0684865386'), + (5788, '1400030927'), + (8085, '0340767065'), + (8086, '0582327318'), + (8087, '0135605415'), + (8088, '0395585686'), + (1366, '3442445078'), + (8089, '0141012722'), + (6174, '0451208668'), + (3752, '0380976749'), + (4750, '038549744X'), + (2559, '0316095648'), + (8090, '1552781364'), + (8091, '075530540X'), + (4416, '0590321579'), + (8092, '0919926487'), + (8093, '090898801X'), + (8094, '0553275380'), + (2261, '0505522977'), + (5183, '3548256058'), + (8095, '3404614887'), + (8096, '2226133097'), + (8097, '0684849046'), + (8098, '0679752560'), + (8099, '0312270348'), + (374, '0345446666'), + (247, '0449207668'), + (8100, '1877251038'), + (8101, '0877734518'), + (5564, '1863305025'), + (5629, '0460875523'), + (8102, '0330359916'), + (1323, '0553550020'), + (4966, '0881662089'), + (8103, '0890875871'), + (6213, '0385423977'), + (8104, '0805031251'), + (8105, '0684859114'), + (8106, '0812931378'), + (7255, '042514321X'), + (8107, '0767904621'), + (8108, '0312205309'), + (583, '0061008079'), + (8109, '096843911X'), + (414, '0553255762'), + (8110, '1550460943'), + (8111, '067154683X'), + (342, '0671690094'), + (8112, '3492231489'), + (8113, '3492231489'), + (8114, '0618093974'), + (6377, '0060970421'), + (24, '0440295556'), + (3263, '0590423827'), + (8115, '0590423827'), + (8116, '0440134056'), + (3654, '0399145419'), + (906, '0553241443'), + (92, '0425071588'), + (68, '0156004801'), + (8117, '0380788802'), + (3086, '1853260975'), + (8118, '0671047302'), + (7994, '0843949465'), + (8119, '0099142309'), + (8120, '0671640992'), + (6704, '0312610556'), + (8121, '0385493002'), + (6331, '0385418132'), + (1997, '0446611921'), + (2694, '006103018X'), + (3333, '0525945725'), + (8122, '3351028253'), + (8123, '0140511687'), + (8124, '0140511687'), + (8125, '0030291798'), + (8126, '0030291798'), + (586, '0060959541'), + (8127, '0060959541'), + (8128, '0812967224'), + (8129, '0374250995'), + (8130, '0380710722'), + (4988, '0006550576'), + (3077, '0743471555'), + (2201, '0743471555'), + (6776, '0743471555'), + (6591, '0553101633'), + (736, '0743205820'), + (131, '0061094226'), + (8131, '0679776591'), + (462, '3446177108'), + (8132, '3446177108'), + (1061, '3446177108'), + (867, '3426609568'), + (142, '3453090578'), + (8133, '3442441188'), + (50, '3442441188'), + (1747, '0679777423'), + (1096, '0553344234'), + (54, '0060175796'), + (8134, '057121861X'), + (8135, '0807004553'), + (8136, '0807004553'), + (4050, '0140439072'), + (8137, '0140439072'), + (2344, '0140439072'), + (8138, '0140288090'), + (1023, '0679435549'), + (2836, '3492044514'), + (8139, '3492044514'), + (8140, '3442354722'), + (8141, '3442354722'), + (8142, '3442356970'), + (7361, '3442356970'), + (48, '3442442540'), + (8143, '3442438659'), + (1164, '3499225964'), + (8144, '3499225964'), + (8145, '3492236324'), + (8146, '3426612828'), + (8147, '3426612828'), + (2928, '3462030191'), + (8148, '3462030191'), + (8149, '3426622254'), + (8150, '3426048086'), + (8151, '3498006312'), + (8152, '3746612160'), + (8153, '3746612160'), + (1255, '3485008702'), + (8154, '3485008702'), + (1782, '3453195841'), + (8155, '340411566X'), + (24, '345307565X'), + (8156, '3453177398'), + (8157, '3453177398'), + (1089, '0679020489'), + (8158, '0471526525'), + (8159, '0471526525'), + (8160, '0312263236'), + (8161, '0312263236'), + (1099, '0670853097'), + (8162, '0140184325'), + (8163, '0140184325'), + (938, '0340424354'), + (2679, '1862045143'), + (534, '0671000314'), + (8164, '0688170714'), + (8165, '0375502114'), + (1575, '0517703963'), + (8166, '0786866500'), + (8167, '0786866500'), + (8168, '0062516086'), + (8169, '0670879835'), + (8170, '1551920107'), + (8171, '1591293049'), + (2209, '087113795X'), + (175, '0446522597'), + (41, '0375507876'), + (94, '0671724800'), + (4398, '0590446681'), + (8172, '0590446681'), + (4829, '0590303805'), + (8173, '0590426257'), + (8172, '0590426265'), + (3359, '0671745069'), + (815, '0380710811'), + (8174, '0836226992'), + (8175, '0836226992'), + (1096, '0066209773'), + (8176, '0140082255'), + (8177, '0140082255'), + (17, '1558746226'), + (18, '1558746226'), + (19, '1558746226'), + (8178, '0688167101'), + (53, '0375502912'), + (8179, '1400047714'), + (8180, '1893224902'), + (3168, '0811808424'), + (351, '0375506276'), + (8181, '0935300007'), + (8182, '905000105X'), + (8183, '0898220785'), + (8184, '0898220785'), + (8185, '0898220785'), + (8186, '207054351X'), + (8187, '207054351X'), + (8188, '207054351X'), + (5132, '0440234700'), + (8189, '0373075111'), + (1562, '0451175190'), + (1562, '0451181964'), + (3996, '0886776686'), + (202, '1582340110'), + (4352, '1567920713'), + (970, '0743237196'), + (2528, '0515136565'), + (4421, '0312864124'), + (60, '0684803968'), + (1876, '0553582364'), + (552, '0446611476'), + (1876, '0553284363'), + (8190, '075151635X'), + (2528, '0515117420'), + (2528, '0515107476'), + (2528, '0515132489'), + (2528, '0515103977'), + (2528, '0515101486'), + (2528, '0515097500'), + (2528, '0515111139'), + (8191, '0375500642'), + (8192, '0743219287'), + (8193, '0451200152'), + (3366, '0759239630'), + (8194, '0812525647'), + (8195, '0751500046'), + (8196, '0684831708'), + (3195, '0446355917'), + (8197, '0140390081'), + (8198, '0140390081'), + (8199, '0140390081'), + (8200, '0060168528'), + (8201, '0060168528'), + (8202, '0451522087'), + (5586, '0451522087'), + (436, '0877953120'), + (3458, '0743411331'), + (2182, '044100914X'), + (860, '0553379194'), + (5875, '0441008976'), + (8203, '0140386270'), + (1537, '0451451430'), + (4571, '0345444019'), + (4571, '0345444000'), + (3157, '0553103946'), + (325, '0345440781'), + (326, '0345440781'), + (4435, '0743431014'), + (8204, '0553381768'), + (208, '051770739X'), + (8205, '0743227123'), + (4079, '0553370804'), + (7785, '1550170759'), + (63, '0451203771'), + (369, '0515124893'), + (60, '0671528203'), + (937, '0786860820'), + (8206, '0786860820'), + (8207, '0394732928'), + (8208, '0394732928'), + (818, '0812540336'), + (819, '0812540336'), + (5443, '0061012165'), + (723, '0399504583'), + (284, '0140351302'), + (8209, '0140351302'), + (8210, '0195130928'), + (403, '0553210793'), + (8211, '0141180250'), + (8212, '0141180250'), + (1560, '0385488181'), + (560, '0590503111'), + (561, '0590503111'), + (8213, '0879517034'), + (8214, '0790008696'), + (8215, '1885223331'), + (8216, '1885223331'), + (17, '1885223331'), + (8217, '0671522779'), + (8218, '0671522779'), + (1315, '0451156455'), + (7827, '0373790953'), + (8219, '1568655622'), + (8220, '0773731202'), + (8221, '0786867647'), + (4902, '1552782654'), + (369, '0515133973'), + (8222, '0771091591'), + (8223, '0802114970'), + (8224, '0802114970'), + (8225, '0771037457'), + (891, '044016205X'), + (1605, '0425097722'), + (8226, '0425097722'), + (8225, '0425097722'), + (1092, '067189109X'), + (76, '067162461X'), + (8227, '0812580397'), + (843, '0440229499'), + (8228, '0446678619'), + (1754, '0671702513'), + (1706, '0679420428'), + (8229, '0273645919'), + (8230, '0273645919'), + (8231, '0273645919'), + (81, '0449911594'), + (8232, '0743255712'), + (8233, '1560255102'), + (8234, '1560255102'), + (8235, '0758203519'), + (8236, '0758203519'), + (8237, '0312287712'), + (7086, '0449703746'), + (1179, '0312872356'), + (1179, '0312872364'), + (8238, '0969201745'), + (8239, '0969201745'), + (8240, '0871133962'), + (8241, '0312874413'), + (8242, '1551990393'), + (7021, '0312890532'), + (3893, '0312861591'), + (5734, '0385496745'), + (1889, '0393039307'), + (715, '0151002290'), + (8243, '0156013177'), + (8244, '0880012528'), + (8245, '0345296907'), + (8246, '0192760319'), + (8247, '0192760319'), + (8248, '1852304839'), + (8249, '0934252238'), + (8250, '0875424953'), + (8251, '0806994754'), + (8252, '0806994754'), + (8253, '1880032074'), + (8254, '1880032074'), + (8255, '1889625035'), + (8256, '1889625035'), + (3337, '0060913312'), + (7541, '0877732248'), + (8257, '0140126562'), + (2993, '0671673203'), + (8258, '0312950098'), + (484, '0446892041'), + (8259, '0142001309'), + (8260, '0802133347'), + (8261, '0802133347'), + (8262, '0888992211'), + (8263, '1553663950'), + (8264, '0440401607'), + (5685, '0440401607'), + (595, '0440476399'), + (8265, '0440476399'), + (5887, '067166641X'), + (1997, '1586212044'), + (8266, '1586212044'), + (967, '1576739767'), + (968, '1576739767'), + (3156, '0448165384'), + (635, '0694523283'), + (8267, '0694523283'), + (8268, '0143017292'), + (8269, '1857997573'), + (8270, '1570761418'), + (8271, '0968454402'), + (435, '0385333412'), + (1706, '1853261912'), + (7706, '0060084405'), + (630, '0345367758'), + (1198, '0783801157'), + (8272, '1550135457'), + (1484, '0345445848'), + (1484, '0375504036'), + (8273, '0453006264'), + (8274, '0375724850'), + (2333, '1552781542'), + (949, '0140430016'), + (8275, '0140430016'), + (54, '0816158770'), + (8276, '1862041318'), + (281, '0590203509'), + (1346, '0373708416'), + (8277, '0671734334'), + (1366, '0399145052'), + (8278, '0671883208'), + (970, '0099740516'), + (8279, '0747550867'), + (8280, '0590453068'), + (8281, '0064406113'), + (8282, '0064406113'), + (143, '0061056448'), + (4415, '0689824750'), + (8283, '0689824750'), + (8284, '0340577371'), + (4571, '0345423623'), + (8285, '0896731081'), + (81, '0804108897'), + (8286, '0399132007'), + (1190, '0671003976'), + (414, '0553246895'), + (7422, '1567921892'), + (8287, '1567921892'), + (4565, '0374181152'), + (2556, '0385316577'), + (8288, '0330334182'), + (256, '0060012331'), + (951, '0385501560'), + (8289, '0066212448'), + (8290, '0066212448'), + (8291, '1932100024'), + (8292, '1932100024'), + (4322, '0140264450'), + (8293, '0192632442'), + (951, '1400047838'), + (8294, '0393045358'), + (8295, '0486272702'), + (8296, '0786864656'), + (8297, '1400040752'), + (175, '0446525774'), + (2271, '0385311133'), + (8298, '0913428361'), + (6447, '0525945466'), + (8299, '0671795228'), + (3159, '1551668106'), + (843, '0440404975'), + (8300, '0689713908'), + (8301, '0590412485'), + (8302, '0590412485'), + (8303, '0440413729'), + (8304, '044022747X'), + (2675, '006440630X'), + (8305, '0440407591'), + (8306, '0553244841'), + (5881, '0553231863'), + (2501, '0553233246'), + (8307, '0552527742'), + (3750, '0553565060'), + (8308, '050028251X'), + (2656, '0394533887'), + (8309, '3492229697'), + (8310, '0194226948'), + (7422, '0140034919'), + (7422, '0879238526'), + (8311, '1899293086'), + (4785, '3257063199'), + (8312, '0345430573'), + (2963, '0892966505'), + (8313, '1559705884'), + (8314, '0452284546'), + (8315, '0743203232'), + (8316, '0789300354'), + (4094, '0451175867'), + (2306, '0812574923'), + (1332, '0446600288'), + (1332, '0440208130'), + (1012, '055337513X'), + (8317, '0671507036'), + (545, '0060930861'), + (584, '0821776037'), + (8318, '0345457005'), + (8319, '0967404401'), + (8320, '0967404401'), + (8321, '0140232990'), + (2190, '1582430349'), + (2190, '1582430152'), + (1554, '0345430808'), + (8061, '0140242058'), + (1679, '0142001821'), + (1396, '0806511532'), + (1397, '0806511532'), + (8322, '0806511532'), + (8323, '0809001608'), + (8324, '0380719185'), + (2618, '0452281903'), + (8325, '0312983093'), + (8326, '0813511895'), + (8327, '0671660705'), + (8328, '0671731874'), + (543, '0385316917'), + (543, '0385335431'), + (3169, '0345435648'), + (543, '0385333463'), + (543, '0440205573'), + (543, '0440221501'), + (543, '0385313012'), + (543, '0385333064'), + (8196, '0446385077'), + (8329, '0446385077'), + (8330, '0446385077'), + (8331, '0446385077'), + (543, '0440201926'), + (5389, '0688141838'), + (8332, '0671557378'), + (543, '0440176484'), + (7211, '0373288689'), + (8333, '0753506483'), + (1704, '0553576143'), + (889, '0446612731'), + (8334, '0553252607'), + (3649, '2070323498'), + (8335, '2070323498'), + (2241, '0590448307'), + (8336, '0590424955'), + (8337, '0553573837'), + (2239, '0590436457'), + (8338, '0590416677'), + (1431, '0316139947'), + (8339, '0316139947'), + (8340, '0570041945'), + (8341, '0570041945'), + (595, '0440476968'), + (2239, '0590435728'), + (2241, '0590691821'), + (4376, '0345436733'), + (8342, '0965866823'), + (8343, '0965866823'), + (8344, '0965866823'), + (8341, '0965866807'), + (8342, '0965866807'), + (8345, '002708230X'), + (541, '0670894184'), + (3115, '0373833458'), + (8346, '0316473049'), + (4082, '0449225925'), + (5825, '0830713042'), + (1626, '0061092037'), + (8347, '0553275631'), + (162, '0486270602'), + (181, '0486270602'), + (8348, '0671669397'), + (6628, '0486419274'), + (8349, '0486419274'), + (8350, '0835918696'), + (3216, '0486270629'), + (397, '0486278026'), + (397, '0486297659'), + (8351, '0836225902'), + (7509, '006273248X'), + (8352, '006273248X'), + (5498, '0440236053'), + (8353, '002920528X'), + (8354, '1558003592'), + (368, '0399144560'), + (2913, '0553478206'), + (8355, '0553478206'), + (58, '0694523321'), + (8356, '0694523321'), + (58, '0060577479'), + (8355, '0060577479'), + (2035, '156740765X'), + (8357, '156740765X'), + (8358, '0066621054'), + (8359, '0066621054'), + (8360, '1570721971'), + (1841, '0373706383'), + (8361, '037310734X'), + (8362, '1561290998'), + (8363, '0800784111'), + (8364, '0802733662'), + (8365, '0345426800'), + (231, '0440216818'), + (8366, '0440224330'), + (8367, '0446526126'), + (7321, '0743242963'), + (2079, '1401900844'), + (543, '0385319568'), + (8368, '0062515845'), + (2088, '0062515845'), + (3997, '0886779766'), + (574, '0679454497'), + (506, '0449906817'), + (4020, '0505525178'), + (8369, '0671709569'), + (8370, '0061061778'), + (1428, '0671021826'), + (1164, '0553575414'), + (817, '0312968973'), + (1075, '0441008658'), + (433, '0345368991'), + (8371, '0345368991'), + (8372, '0393309290'), + (729, '038542017X'), + (8373, '073943053X'), + (8374, '073943053X'), + (6482, '073943053X'), + (8375, '0312958366'), + (8376, '0553582003'), + (8377, '0515135305'), + (8378, '0449140911'), + (6867, '0451407695'), + (8379, '0451404793'), + (5227, '0345315499'), + (5227, '0345308921'), + (8380, '034530893X'), + (2747, '0821773135'), + (8381, '0843943408'), + (8382, '0515130397'), + (8383, '0380414759'), + (1092, '0671556843'), + (898, '0671779370'), + (8384, '0821747479'), + (3750, '0553571591'), + (230, '0380807947'), + (230, '0380005255'), + (230, '038079828X'), + (3465, '0380799383'), + (5283, '0446606227'), + (8385, '0843939427'), + (8386, '0671004123'), + (2245, '0449006352'), + (1754, '0671010085'), + (1754, '0671010093'), + (1396, '0881844365'), + (8387, '0553572407'), + (8388, '0345457641'), + (8389, '0345423828'), + (8390, '0312970129'), + (8391, '1887128654'), + (8392, '0345416430'), + (3831, '0688158234'), + (3832, '0688158234'), + (8393, '0446608475'), + (4948, '0435905260'), + (8394, '0965036022'), + (8395, '0590853015'), + (2238, '0590853015'), + (8396, '0671729330'), + (8397, '078686219X'), + (8398, '078686219X'), + (8399, '0671769669'), + (8400, '0671769669'), + (8401, '0671741373'), + (8402, '0967851017'), + (8403, '0385240716'), + (532, '0515111317'), + (719, '0451202902'), + (8404, '0441005349'), + (484, '0446356611'), + (484, '0446350109'), + (867, '0671877992'), + (8405, '0671877992'), + (1732, '0449216527'), + (8406, '0671014757'), + (8407, '0671014765'), + (8405, '0671551361'), + (8405, '0671551337'), + (8405, '0671551388'), + (8405, '0671551353'), + (8405, '0671014773'), + (8406, '0671551345'), + (606, '0671721100'), + (8408, '0671721100'), + (3223, '0553574574'), + (187, '0812534832'), + (8409, '0671721623'), + (606, '0671721623'), + (8410, '0671721623'), + (606, '0671698850'), + (8411, '0671698850'), + (606, '0671721542'), + (8404, '0671721542'), + (8408, '0671721542'), + (606, '0671876155'), + (8407, '0671876155'), + (284, '0140434895'), + (8412, '0140434895'), + (8413, '0140434895'), + (82, '0140180923'), + (5892, '0393309282'), + (8414, '0060194790'), + (25, '0452280397'), + (2326, '0886773318'), + (606, '0886775167'), + (606, '0812521145'), + (8408, '0671721259'), + (606, '0671721259'), + (8415, '0671721259'), + (606, '0671876287'), + (8416, '0517543346'), + (466, '0140265988'), + (8417, '0752271474'), + (8418, '0751512966'), + (597, '059049418X'), + (220, '207038165X'), + (8419, '207038165X'), + (8420, '207038165X'), + (8421, '0531098745'), + (8422, '0465026567'), + (8423, '0446674044'), + (8424, '0446674044'), + (8425, '1592570801'), + (8426, '1592570801'), + (8427, '1582970807'), + (8428, '158180119X'), + (8429, '1581802986'), + (8430, '0891347208'), + (8429, '1581800320'), + (6020, '0140390448'), + (8431, '0140390448'), + (8432, '0004121120'), + (8433, '0861013743'), + (8434, '0525945407'), + (8435, '0517654954'), + (8436, '0025294458'), + (8437, '0903505355'), + (8438, '0903505193'), + (8439, '0903505193'), + (8440, '1551050765'), + (8441, '0517693399'), + (997, '1859671039'), + (8442, '1859671039'), + (5782, '0458921009'), + (8443, '1842151126'), + (8444, '0920656404'), + (337, '0399139206'), + (151, '0060163704'), + (8443, '0920656080'), + (8443, '0920656943'), + (8445, '0920656943'), + (8446, '0835607771'), + (8447, '0835607771'), + (8448, '0345391373'), + (8449, '0345391373'), + (2773, '0714836257'), + (8450, '0920656269'), + (7673, '0345400577'), + (2968, '0679419616'), + (8451, '0201567792'), + (8452, '0201567792'), + (8453, '0517331942'), + (8454, '1568361742'), + (4408, '0385315058'), + (8455, '9747315084'), + (145, '3453152891'), + (2258, '3442352983'), + (8456, '3442352983'), + (8457, '3499101505'), + (285, '3518382357'), + (7784, '3518382357'), + (8458, '3442446929'), + (8459, '3442446929'), + (8460, '3257218478'), + (8461, '0684854341'), + (142, '3453052544'), + (8462, '3442724295'), + (8463, '3442724295'), + (8464, '0821225685'), + (8465, '0821225685'), + (8466, '0821225685'), + (991, '0449209881'), + (7712, '0375724443'), + (5076, '0140282777'), + (6111, '034541005X'), + (94, '2894294247'), + (2713, '0553159445'), + (8467, '0380713349'), + (1428, '059044333X'), + (8468, '0380614324'), + (3327, '0440911257'), + (8469, '0671736795'), + (2233, '0671529544'), + (8470, '0671628410'), + (8471, '0425133184'), + (6039, '0671888285'), + (6038, '0671888285'), + (8472, '0671888285'), + (8470, '0425127729'), + (1428, '0671894242'), + (1428, '0671529560'), + (1428, '059045370X'), + (1428, '0590453696'), + (1428, '0590477382'), + (1428, '0590466186'), + (1319, '0446602558'), + (8473, '0316485187'), + (8474, '0890819858'), + (8475, '0310539218'), + (8476, '156761583X'), + (8477, '156761583X'), + (8478, '0805042768'), + (8479, '0805042768'), + (4843, '0883964481'), + (8480, '0883964481'), + (3885, '0140432914'), + (8481, '0140432914'), + (2571, '0006742939'), + (8482, '1573222321'), + (2002, '0688163165'), + (8483, '0064400204'), + (8484, '0064400204'), + (8485, '0060557540'), + (239, '0525947671'), + (715, '0151004439'), + (277, '0679642382'), + (81, '0804113475'), + (2937, '037576013X'), + (8486, '037576013X'), + (1227, '0679455612'), + (2680, '0553212435'), + (63, '0440147956'), + (25, '0375415351'), + (3033, '0763616052'), + (5500, '0380432811'), + (63, '0440212359'), + (988, '0670857459'), + (2360, '1582344094'), + (8487, '0452285062'), + (8488, '0805063315'), + (368, '0671507303'), + (8489, '0684844141'), + (8488, '0394722531'), + (8490, '0375504184'), + (8491, '0671009443'), + (7516, '0425165337'), + (8492, '0553579207'), + (8493, '0060529148'), + (6696, '006104444X'), + (8494, '1400034817'), + (8495, '0553378007'), + (8496, '0553378007'), + (822, '0836226844'), + (183, '0515113328'), + (8497, '0345368436'), + (183, '0515093203'), + (175, '0446525731'), + (368, '0449212653'), + (183, '0515107867'), + (8498, '0140232257'), + (8499, '0140232257'), + (8500, '0449220273'), + (8501, '0449220273'), + (2661, '0312864876'), + (3692, '0312864876'), + (7147, '0684813637'), + (6185, '0451192931'), + (8502, '0446400564'), + (8503, '0446403083'), + (4614, '0445406836'), + (8504, '0156003376'), + (183, '0515132268'), + (8505, '0399524827'), + (8506, '1563055619'), + (8507, '1563055619'), + (6185, '0451205685'), + (142, '0451190572'), + (8508, '1555218067'), + (8509, '0525940413'), + (4143, '0440411394'), + (4417, '0590425609'), + (8510, '0425187101'), + (8511, '0425187101'), + (8512, '1857026012'), + (8513, '014007385X'), + (8514, '0905762207'), + (3607, '0771014813'), + (8515, '0028610865'), + (8516, '0312862091'), + (8515, '0312064330'), + (8515, '0312093586'), + (8515, '0312866712'), + (1060, '0553229281'), + (1060, '0553244949'), + (2224, '0441646611'), + (2224, '0441516645'), + (176, '0671601075'), + (176, '067166493X'), + (176, '0671532642'), + (8517, '9681908244'), + (867, '0886772680'), + (8518, '0812511840'), + (8519, '0671865714'), + (8520, '0515105449'), + (8521, '0451404505'), + (1552, '0515112461'), + (8522, '0451407504'), + (3314, '0449206440'), + (7138, '0380809176'), + (1327, '0385506708'), + (183, '0515109509'), + (8523, '0446355569'), + (5012, '0192838601'), + (8411, '0192838601'), + (8524, '0140255036'), + (8525, '020717055X'), + (8526, '0060173092'), + (8527, '0151001820'), + (2517, '0553100890'), + (1191, '0679437851'), + (284, '0385483260'), + (8528, '0385483260'), + (5623, '0446522252'), + (5624, '0446522252'), + (8529, '0030844924'), + (8530, '0816029091'), + (8531, '1578660343'), + (8532, '0801431611'), + (8533, '0801431611'), + (4457, '0696207397'), + (8534, '1567994741'), + (2773, '0714835420'), + (8535, '0517159635'), + (8536, '0140237712'), + (403, '1566195268'), + (8537, '1888363576'), + (1366, '1888363576'), + (237, '0449225046'), + (8538, '0938985000'), + (8539, '0938985000'), + (2937, '0140161163'), + (8540, '0671675427'), + (8541, '9510119342'), + (8542, '0899670202'), + (2682, '055326026X'), + (1730, '0312989474'), + (8543, '0821602039'), + (1698, '0765342227'), + (5271, '0553273817'), + (873, '0812520157'), + (8544, '0399133038'), + (1158, '0836217241'), + (8545, '0836217241'), + (8546, '0553349058'), + (8547, '0671318578'), + (3077, '0671318578'), + (6370, '0142000264'), + (607, '0449208281'), + (2340, '0689312024'), + (1730, '0451199448'), + (2287, '0446405345'), + (3327, '0440227437'), + (8548, '1585671487'), + (8549, '0446672351'), + (1730, '0425158497'), + (8550, '0768322413'), + (8551, '0380003856'), + (81, '0099272687'), + (1268, '1860465536'), + (8552, '0525945784'), + (8553, '085572191X'), + (8554, '0061064866'), + (1266, '0140280499'), + (1395, '0140259708'), + (187, '0345338588'), + (187, '0345318854'), + (8555, '0140133496'), + (719, '0061097101'), + (8556, '2246650119'), + (8557, '0708832725'), + (8558, '1843336162'), + (8559, '1570621284'), + (8560, '0812516257'), + (946, '0140104321'), + (8561, '0140250824'), + (721, '2266104535'), + (3673, '2020352257'), + (8562, '2070417212'), + (8563, '0902920049'), + (8564, '1858286794'), + (8565, '1858286794'), + (217, '0140622306'), + (596, '0440432960'), + (4794, '0345380975'), + (8566, '067102261X'), + (188, '055327449X'), + (92, '0425093328'), + (1753, '0312979533'), + (206, '1569470154'), + (915, '0439228913'), + (285, '0060951281'), + (93, '0679879269'), + (93, '0679879250'), + (285, '0060951303'), + (8567, '0439456983'), + (8210, '0813511704'), + (8568, '0813511704'), + (8569, '0312890249'), + (8570, '0393310396'), + (8571, '0393310396'), + (8572, '0312253737'), + (571, '0451159497'), + (8573, '0446675792'), + (8574, '0446675792'), + (571, '0425155404'), + (3086, '0671535552'), + (8575, '0299177742'), + (8576, '0299177742'), + (1086, '0140231900'), + (8577, '0762411554'), + (8578, '0762411554'), + (8579, '0747543259'), + (859, '9875021245'), + (602, '0486405524'), + (2929, '0863560237'), + (1209, '0674810511'), + (283, '0151002177'), + (4883, '0151002177'), + (5531, '0451458222'), + (39, '0613072103'), + (39, '067945540X'), + (1539, '0618002243'), + (732, '0618002235'), + (1539, '0618002227'), + (1401, '0001047973'), + (8580, '0001047973'), + (283, '0452262933'), + (1802, '0452262933'), + (8581, '0684838087'), + (401, '0517488906'), + (8582, '0517488906'), + (1396, '0679740678'), + (8583, '0330346520'), + (6020, '0679735747'), + (8584, '0679735747'), + (59, '0060294884'), + (8585, '0060294884'), + (1024, '0440206324'), + (8586, '0812536304'), + (8587, '0812536304'), + (8588, '3404612493'), + (8589, '344242528X'), + (8590, '344242528X'), + (568, '006447108X'), + (833, '006447108X'), + (726, '0451409973'), + (8591, '0821773712'), + (2233, '0590477390'), + (3500, '0345368622'), + (230, '0380816792'), + (2168, '0451404459'), + (8592, '0553577379'), + (8593, '0373106939'), + (8594, '0373260024'), + (8595, '0804101507'), + (8596, '0804101507'), + (127, '0449206610'), + (1196, '1551660431'), + (8597, '0887291228'), + (8598, '0887291228'), + (8599, '0887291228'), + (8600, '0486428427'), + (8601, '0486428427'), + (8602, '0345250559'), + (8603, '0440209102'), + (550, '0446306177'), + (1754, '067187098X'), + (8604, '1557488371'), + (1112, '0671676369'), + (230, '0380844001'), + (56, '0140620753'), + (8605, '0689714335'), + (7076, '0689714335'), + (8606, '1893224201'), + (8607, '1893224201'), + (8608, '1893224201'), + (6745, '1892859084'), + (8609, '1565122321'), + (5054, '0064401103'), + (8610, '0064401103'), + (5054, '0064400980'), + (5055, '0064400980'), + (5054, '0064400999'), + (5055, '0064400999'), + (5054, '0064408582'), + (8609, '0064408582'), + (8611, '3423126299'), + (8612, '3404102800'), + (8613, '3453870336'), + (718, '0525946632'), + (4376, '0345369025'), + (8614, '0375823255'), + (8615, '2070424197'), + (24, '0440295521'), + (3417, '0140389660'), + (310, '3423125195'), + (8616, '3423125195'), + (8617, '0842365508'), + (274, '0140363033'), + (439, '0140363033'), + (8618, '0440503310'), + (8619, '0671674005'), + (8620, '0312961049'), + (8621, '0590431692'), + (8622, '0590489410'), + (2118, '0786889322'), + (8623, '3499232634'), + (8624, '3499232634'), + (8625, '346202812X'), + (8626, '1400030382'), + (8627, '3518100319'), + (8628, '3499233347'), + (8629, '3499233347'), + (8630, '3150006597'), + (389, '3548208975'), + (8631, '3548208975'), + (8632, '3548208975'), + (8633, '3379015180'), + (142, '0451078721'), + (1284, '0553484508'), + (8634, '0706366468'), + (536, '0375411070'), + (1858, '0679749020'), + (3924, '0525934553'), + (5006, '0312860129'), + (397, '051743623X'), + (1858, '0375726845'), + (284, '0312080824'), + (8635, '0312080824'), + (8636, '0891979867'), + (8637, '0812881176'), + (1545, '1850892237'), + (3216, '1880399679'), + (1499, '1880399679'), + (8638, '1880399679'), + (312, '0671525247'), + (8639, '0440343690'), + (8640, '0899664016'), + (2688, '0151807027'), + (8641, '0151807027'), + (454, '1853260231'), + (8642, '0099478110'), + (8643, '0553214543'), + (6369, '0394746295'), + (1858, '0449210901'), + (1981, '0553256653'), + (1858, '0099825201'), + (2331, '0451528204'), + (6713, '0451528204'), + (8644, '0451528204'), + (1747, '0802135226'), + (1747, '0679768203'), + (1998, '0679441816'), + (8645, '1557832307'), + (3972, '1557832307'), + (4565, '0452276721'), + (1490, '078711457X'), + (1490, '0452274796'), + (220, '0060927518'), + (220, '0140096949'), + (8646, '0806133678'), + (5425, '0806133678'), + (8647, '0691086192'), + (3654, '0375410414'), + (8648, '1569246483'), + (8649, '1567184766'), + (8650, '0813519942'), + (25, '0394497848'), + (2431, '0940322587'), + (25, '0940322587'), + (4436, '0375712925'), + (8651, '1582340331'), + (2943, '0446678457'), + (158, '0345410998'), + (1013, '0399149155'), + (1704, '0553264303'), + (713, '0553107003'), + (6177, '0440178002'), + (7397, '0717127516'), + (161, '0385243022'), + (5016, '0385243022'), + (8652, '0446390895'), + (8653, '0446390895'), + (814, '1573220167'), + (6468, '0060173211'), + (8654, '0316172006'), + (8655, '0679415645'), + (8548, '0060976241'), + (1473, '0767905202'), + (8656, '315009951X'), + (8657, '315009951X'), + (8658, '033034692X'), + (8659, '033034692X'), + (960, '3442727952'), + (8660, '3442727952'), + (5584, '1740590651'), + (8661, '1740590120'), + (8662, '1863305130'), + (1310, '0140287698'), + (8663, '0671034979'), + (8664, '1583225579'), + (8665, '0702228524'), + (8666, '0330358561'), + (8667, '0702227218'), + (8668, '073225700X'), + (8669, '0868246778'), + (8670, '0671018280'), + (8671, '0590603884'), + (972, '0618131736'), + (5310, '0618131736'), + (3924, '0060185252'), + (4435, '0688170528'), + (727, '0743225082'), + (8672, '0758201087'), + (634, '0425184943'), + (8673, '0201570971'), + (8674, '0201570971'), + (8675, '0201570971'), + (6336, '0201570971'), + (1277, '067086014X'), + (8676, '0864922108'), + (1087, '0821765868'), + (1112, '1551660733'), + (2259, '0312977409'), + (8677, '0843941774'), + (94, '0515120626'), + (5594, '0440212308'), + (8678, '038076766X'), + (8679, '038075942X'), + (8680, '0515077437'), + (1754, '067102177X'), + (8681, '0380761327'), + (3164, '055358183X'), + (2261, '0843949848'), + (60, '0671867164'), + (179, '0060955635'), + (8682, '0688013929'), + (8683, '0688013929'), + (17, '1558748903'), + (18, '1558748903'), + (8684, '1558748903'), + (8685, '1558748903'), + (2881, '0684841371'), + (8686, '0739405047'), + (8687, '0804108412'), + (6180, '0394589955'), + (8688, '0385414250'), + (8689, '0312120001'), + (149, '0060740450'), + (8690, '0802111815'), + (1158, '0836220498'), + (1249, '0800781562'), + (1250, '0800781562'), + (1251, '0800781562'), + (8691, '0881334588'), + (8692, '0679730680'), + (3345, '0671420186'), + (8693, '0312081944'), + (8694, '0312081944'), + (1451, '3499138956'), + (8695, '3499138956'), + (3958, '3426611457'), + (8696, '3426611457'), + (8697, '3426611457'), + (1310, '0702228230'), + (8698, '0878579915'), + (8699, '0878579915'), + (8700, '156512281X'), + (8424, '156512281X'), + (2938, '1551660717'), + (532, '0451199685'), + (8701, '0385189508'), + (8702, '0385189508'), + (8703, '0385189508'), + (8704, '0810933160'), + (8705, '0810933160'), + (3431, '0810933160'), + (8699, '1565121384'), + (8706, '1565121384'), + (8707, '0395653738'), + (8708, '0312170955'), + (8709, '0312170955'), + (1031, '0152013415'), + (574, '0679441018'), + (574, '0345377648'), + (8710, '0201409429'), + (8711, '0765107619'), + (859, '0140052801'), + (8712, '1853687022'), + (2008, '068815512X'), + (8713, '155870406X'), + (8714, '0679723005'), + (8715, '1555830617'), + (8716, '0312420048'), + (4195, '1578591473'), + (8717, '0062511173'), + (8718, '0062511173'), + (8719, '0394719999'), + (8720, '0135113385'), + (8721, '0135113385'), + (4095, '0807032530'), + (8722, '0449910172'), + (8723, '0449910172'), + (8724, '0395353440'), + (149, '0345310020'), + (8725, '0679891072'), + (2925, '0394751019'), + (5500, '0064403688'), + (920, '0064472795'), + (8726, '0679783598'), + (8727, '0595271618'), + (8728, '031230093X'), + (284, '0140434941'), + (8729, '0140434941'), + (8730, '0140434941'), + (8731, '0152380418'), + (2340, '0590467158'), + (5606, '0689835337'), + (7753, '0374480095'), + (1724, '3257056109'), + (8732, '0425177432'), + (2881, '0684859998'), + (1075, '0688154395'), + (8733, '0684848147'), + (1478, '0684848120'), + (1479, '0684848120'), + (427, '0553210351'), + (8734, '0553210351'), + (8735, '0553210351'), + (8736, '1567313965'), + (8737, '1567313965'), + (4177, '0375401458'), + (1576, '0671528165'), + (8738, '006251184X'), + (240, '0515128325'), + (8739, '0140276823'), + (8740, '3596137306'), + (8741, '3596137306'), + (8742, '3596137306'), + (8743, '3596137306'), + (1384, '3596237874'), + (3314, '0380820757'), + (8744, '0807062995'), + (8745, '0786865148'), + (8746, '0345322061'), + (8747, '0764552988'), + (8748, '0811809935'), + (8749, '0943015073'), + (777, '0140361219'), + (1897, '0140361219'), + (2790, '0553269631'), + (2790, '0553272543'), + (1875, '0671887173'), + (8750, '0553285726'), + (8751, '0062552767'), + (8752, '0062552767'), + (8753, '0671787004'), + (577, '0060919760'), + (8754, '0060507233'), + (1273, '0915811006'), + (8755, '1558744274'), + (6020, '0192829823'), + (8756, '0192829823'), + (8757, '1567314163'), + (8758, '0743416996'), + (8759, '0786880708'), + (8760, '1561703753'), + (8761, '1561703753'), + (1012, '1561703753'), + (8762, '1561703753'), + (8763, '0452272041'), + (8764, '0452272041'), + (8765, '0452272041'), + (8766, '0316133175'), + (8767, '0878331859'), + (2599, '0679600442'), + (8768, '1567314260'), + (8769, '1573241172'), + (4408, '0345311000'), + (381, '0849916836'), + (8770, '0764553143'), + (8771, '3462029592'), + (1164, '3499121581'), + (780, '3453210719'), + (8772, '0380728249'), + (1725, '0380792648'), + (8773, '0553242598'), + (1129, '0385031149'), + (661, '0385031149'), + (5114, '0385031149'), + (8774, '0836982215'), + (7873, '0451171128'), + (8775, '0061052280'), + (5793, '0061052280'), + (8776, '0140620850'), + (814, '3462032208'), + (7440, '3462032208'), + (8777, '3462032208'), + (8778, '0060925795'), + (5950, '189162007X'), + (8779, '189162007X'), + (2888, '0931580633'), + (8780, '0684839873'), + (4353, '0156006820'), + (1043, '068483295X'), + (1309, '0670852627'), + (8548, '0871138018'), + (8781, '0201877589'), + (8782, '0201877589'), + (8783, '0201877589'), + (8784, '0596001967'), + (328, '1568654383'), + (8785, '0764551280'), + (8786, '0764551280'), + (8787, '0764551280'), + (8788, '0764551280'), + (8789, '0669164062'), + (8790, '0669164062'), + (8791, '0669164062'), + (8792, '283151794X'), + (5591, '1556618123'), + (8793, '0380812924'), + (1898, '0812550293'), + (8794, '0679751319'), + (1715, '0316285269'), + (188, '0553277537'), + (8795, '0440502721'), + (1771, '207036805X'), + (760, '0553234161'), + (8796, '0812502841'), + (713, '0671640585'), + (8797, '1586480286'), + (8798, '1586480286'), + (8799, '1558596909'), + (8800, '1558596909'), + (367, '0449910237'), + (906, '0553235575'), + (665, '0020519605'), + (8801, '0140274375'), + (8802, '0140024018'), + (8803, '0425138151'), + (3247, '1550376284'), + (8804, '0375725202'), + (1773, '0140306323'), + (5854, '0140048987'), + (2503, '0671878549'), + (8805, '0671730134'), + (8806, '0446520667'), + (8807, '0706406141'), + (8808, '087474945X'), + (8809, '087474945X'), + (8810, '087474945X'), + (8811, '0881149497'), + (8812, '0881149497'), + (2002, '0380726238'), + (8813, '0806524154'), + (966, '0306811677'), + (8814, '0425182703'), + (8815, '1566633370'), + (145, '0399148701'), + (145, '0399131493'), + (145, '0870212850'), + (4619, '006009527X'), + (301, '0224030361'), + (1859, '0679736395'), + (8816, '1568849168'), + (3463, '0451403959'), + (8817, '014028088X'), + (8818, '014028088X'), + (8819, '0394726251'), + (8820, '0887307396'), + (8821, '0887307396'), + (5690, '0679735739'), + (8822, '0834800799'), + (8823, '0834800799'), + (8824, '0834800799'), + (8825, '0834800799'), + (8826, '0837850681'), + (8827, '0837850681'), + (1938, '0671545140'), + (8828, '0671545140'), + (8829, '0914457527'), + (8287, '0786705833'), + (8830, '0807107808'), + (8831, '0385326521'), + (8832, '0385326521'), + (8833, '1588270475'), + (145, '0425150143'), + (876, '0425150143'), + (8834, '0841914036'), + (8835, '0809233169'), + (8836, '0679446028'), + (8837, '0671469975'), + (8838, '0440506743'), + (8839, '0440506743'), + (2028, '0743234693'), + (8840, '019281513X'), + (8841, '019281513X'), + (369, '0399144803'), + (8842, '0702226009'), + (1776, '0613361628'), + (8843, '0553586971'), + (8844, '158005059X'), + (8845, '158005059X'), + (8846, '158005059X'), + (4313, '1551669188'), + (8847, '0380728613'), + (8848, '0064406601'), + (920, '0689868456'), + (635, '0061096113'), + (1498, '0812575970'), + (8849, '006092330X'), + (642, '0316116726'), + (2145, '0890877025'), + (8850, '0877284245'), + (7092, '1878825011'), + (330, '0805029648'), + (8851, '1888766034'), + (8852, '1888766034'), + (4477, '0380728176'), + (3419, '0345409973'), + (7277, '0671743074'), + (1628, '0345413865'), + (1740, '0380786974'), + (8853, '1567312373'), + (8854, '1567312373'), + (129, '0446609404'), + (8855, '1842230514'), + (491, '0864922302'), + (7335, '0671785214'), + (287, '0312111029'), + (286, '0312111029'), + (8856, '0439219175'), + (2656, '0449203794'), + (5281, '0374522928'), + (2600, '0374522928'), + (8857, '0374522928'), + (7086, '0440219515'), + (814, '1573221937'), + (1537, '0441002935'), + (1537, '0441000916'), + (8858, '0306454114'), + (221, '0896087247'), + (56, '0451523652'), + (8859, '0451523652'), + (5873, '0140043128'), + (4804, '0841914060'), + (8860, '1870041364'), + (1337, '0060557257'), + (8861, '0553582313'), + (6034, '0373835876'), + (6034, '037383599X'), + (6034, '0373835795'), + (1359, '0380794578'), + (1359, '0380805685'), + (1359, '0380812010'), + (1432, '0312983301'), + (3399, '0312983301'), + (2254, '006051762X'), + (8862, '0440236606'), + (6034, '0446610569'), + (8863, '0060582308'), + (1116, '0553586203'), + (8864, '0373790473'), + (8865, '0373790481'), + (369, '0373483694'), + (5132, '1551669374'), + (1087, '0821763431'), + (1087, '0821767623'), + (369, '0373218478'), + (8866, '0380813017'), + (8867, '1551669226'), + (8868, '0380820552'), + (3177, '0505525038'), + (3465, '0380791021'), + (2267, '0553583913'), + (8277, '1551669234'), + (621, '0804119538'), + (3254, '0440225299'), + (2888, '0931580501'), + (8869, '0553295101'), + (2888, '0553295101'), + (8870, '156276134X'), + (402, '0716713616'), + (8871, '0886778581'), + (1362, '0451140354'), + (1265, '0380008238'), + (8872, '080912596X'), + (1191, '0375704051'), + (3259, '0590509616'), + (3260, '0590509616'), + (5516, '0590509616'), + (8873, '0395544262'), + (1194, '0448095491'), + (1194, '0448095432'), + (2239, '0590436465'), + (1194, '0448095157'), + (1194, '0448095440'), + (8874, '0439130204'), + (8873, '0439130220'), + (8873, '0439130247'), + (8875, '0746022751'), + (8876, '0590300393'), + (8877, '0590944711'), + (1410, '0679836101'), + (1410, '0679866655'), + (1411, '0679866655'), + (8878, '0590673130'), + (8879, '0448148943'), + (8880, '0671787136'), + (8881, '038079537X'), + (1965, '038079537X'), + (8882, '0440414911'), + (8883, '0671183699'), + (8884, '0590957678'), + (8885, '0439120470'), + (8886, '0439120470'), + (8884, '0439062837'), + (8884, '0439062829'), + (8884, '0439062802'), + (8887, '0517208326'), + (8888, '0517208326'), + (336, '0590416936'), + (4689, '0439056527'), + (8889, '0936650087'), + (3264, '0440219779'), + (4212, '038072913X'), + (906, '0425067750'), + (8890, '0060805188'), + (8891, '0449200019'), + (7571, '0441698859'), + (8892, '0671600427'), + (8893, '0425132358'), + (2923, '0671466801'), + (8894, '0140011528'), + (8895, '0425108449'), + (8896, '0671649469'), + (1214, '0671642561'), + (1214, '0671695126'), + (1214, '0671443283'), + (6387, '0373702213'), + (8897, '0380778009'), + (145, '0425144372'), + (1577, '055312997X'), + (8898, '0380785358'), + (8899, '0872165272'), + (237, '055323336X'), + (8900, '0671672711'), + (3662, '0671721143'), + (8901, '0131654233'), + (8902, '0672315610'), + (8903, '0672315610'), + (8900, '0137089171'), + (8904, '0136362346'), + (8905, '907219439X'), + (8690, '0471969478'), + (994, '0060256656'), + (8906, '0152010289'), + (8907, '0698116151'), + (7728, '0060259078'), + (8908, '0060259078'), + (8909, '0590568663'), + (458, '0749933380'), + (8910, '1859028519'), + (8911, '0142301655'), + (8912, '0948524588'), + (555, '0349111863'), + (2556, '0749395389'), + (274, '0140118470'), + (8286, '0140118470'), + (8913, '044024126X'), + (8914, '1840225106'), + (6177, '0340654163'), + (8915, '0380773309'), + (4190, '0812512774'), + (1214, '0671729403'), + (1214, '0671729438'), + (8916, '0006749151'), + (8917, '0425139697'), + (8670, '0061062472'), + (286, '0380718758'), + (287, '0380718758'), + (1214, '067172939X'), + (1214, '0671729446'), + (8918, '1853264180'), + (2598, '1585673382'), + (8919, '1842157086'), + (8920, '972708530X'), + (7058, '9722110500'), + (8921, '0002257580'), + (7984, '0375708049'), + (8922, '0375701435'), + (7058, '9722100718'), + (8923, '9721030791'), + (2026, '0028604199'), + (8924, '0374202281'), + (8925, '0874779111'), + (8926, '0345369491'), + (2660, '0525484272'), + (989, '0671526022'), + (4321, '0060154969'), + (8927, '0060930888'), + (6056, '039585993X'), + (1428, '3785538448'), + (8928, '3785538448'), + (572, '0385492707'), + (8929, '0140369945'), + (56, '1566191432'), + (8930, '0874771501'), + (8931, '0874771501'), + (6470, '0060645873'), + (8932, '0768420350'), + (8933, '1557250537'), + (8934, '0877936250'), + (8935, '0877936250'), + (8936, '0867164301'), + (8937, '1565070569'), + (8938, '0896939758'), + (8939, '1401901484'), + (8940, '0829419888'), + (8941, '0062548689'), + (8942, '0824519302'), + (8943, '0451182006'), + (3407, '0425186709'), + (5492, '0425186709'), + (8944, '0425186709'), + (534, '0671026682'), + (3800, '0671026682'), + (7507, '0684846608'), + (3639, '0399151613'), + (1209, '0330314971'), + (8945, '051788433X'), + (8503, '051788433X'), + (8946, '0688160999'), + (8947, '1553662415'), + (8948, '1585421499'), + (8949, '1585421499'), + (6005, '0679729798'), + (8950, '0140127739'), + (8569, '1567315208'), + (217, '0141182806'), + (8951, '0141182806'), + (8952, '0006143199'), + (1362, '0140050000'), + (8953, '0843949090'), + (8954, '1893224848'), + (4136, '0553586335'), + (7168, '3551749612'), + (7168, '3551749620'), + (8955, '3551751846'), + (8956, '3551751846'), + (8957, '3551745315'), + (8958, '3251003011'), + (2612, '3870245123'), + (662, '3150012198'), + (8959, '3150012198'), + (8958, '3150012198'), + (8960, '3858620203'), + (3319, '0553138758'), + (8961, '0345344375'), + (2126, '0553138596'), + (3207, '0842345566'), + (8962, '0802415881'), + (720, '0684834731'), + (8963, '1565121465'), + (2126, '0312021690'), + (8964, '0312021690'), + (1970, '0140465340'), + (2126, '0312549059'), + (8965, '0312549059'), + (8966, '0671794248'), + (7549, '0767901428'), + (8967, '0060170832'), + (8968, '0060928069'), + (8969, '0875420087'), + (8970, '0373760639'), + (8971, '0816772045'), + (3114, '1561797332'), + (3114, '1561797324'), + (3114, '1561797316'), + (3114, '1561797308'), + (3114, '1561797200'), + (3114, '1561797197'), + (3114, '1561797189'), + (3114, '156179600X'), + (3114, '1561795992'), + (3114, '1561795976'), + (3114, '1561797219'), + (3114, '1561795984'), + (8972, '0373037732'), + (8973, '0395519519'), + (8974, '0395735262'), + (8975, '0395735262'), + (8976, '0831710349'), + (8977, '0831710349'), + (5589, '093439573X'), + (8978, '093439573X'), + (8979, '093439573X'), + (8980, '093439573X'), + (2340, '0689804466'), + (501, '0451409132'), + (8981, '0425160424'), + (231, '0385297548'), + (8982, '0142301493'), + (8983, '0140167153'), + (8984, '0140167153'), + (8985, '014034912X'), + (583, '0060182687'), + (937, '0743204832'), + (8220, '0786888741'), + (8986, '0446604682'), + (2011, '0399150552'), + (2010, '0399150552'), + (1704, '0312289901'), + (2626, '0312289901'), + (1331, '0553561723'), + (2627, '0743426657'), + (8987, '0061098760'), + (410, '0451204158'), + (1562, '0451171861'), + (1665, '0142001384'), + (8988, '0440206685'), + (574, '0345373707'), + (162, '0440376408'), + (8989, '0440376408'), + (1366, '0440180090'), + (142, '0670839531'), + (1784, '0446358584'), + (892, '0374121230'), + (1092, '0671014218'), + (6199, '0670856495'), + (397, '0812035844'), + (8990, '0385242719'), + (8991, '0553578529'), + (8992, '0671041800'), + (8993, '0471123005'), + (1666, '0553213768'), + (2984, '0553213768'), + (129, '0316693707'), + (2018, '1852305606'), + (2019, '1852305606'), + (8994, '1852305606'), + (8995, '1852305606'), + (8996, '0375752501'), + (8997, '1573226041'), + (1773, '0380013207'), + (8998, '0451192575'), + (8999, '0966080521'), + (9000, '0966080521'), + (5564, '0385467958'), + (2041, '0515123447'), + (4451, '0441010512'), + (2029, '0887308589'), + (943, '0140363386'), + (943, '0140363378'), + (187, '0312854137'), + (70, '0380727331'), + (9001, '0440226236'), + (9002, '0393049701'), + (1463, '0345441044'), + (4945, '0374189870'), + (634, '0425161633'), + (9003, '190415123X'), + (9004, '190415123X'), + (9005, '190415123X'), + (9006, '190415123X'), + (7, '1400002877'), + (9007, '0946395438'), + (9008, '0874772095'), + (9009, '0874772095'), + (9010, '0874772095'), + (9011, '0874772095'), + (9012, '0684853612'), + (1560, '0684853612'), + (9013, '0312145357'), + (9014, '0595131700'), + (9015, '0399148876'), + (9016, '0316442178'), + (9017, '0786708395'), + (1987, '0446606928'), + (9018, '0425177718'), + (1691, '0316110493'), + (154, '0385503954'), + (9019, '0375502947'), + (9020, '0060959517'), + (9021, '0671527967'), + (9022, '0312266499'), + (9023, '0312266499'), + (2875, '0312242417'), + (9024, '0881845973'), + (9023, '0375718990'), + (3744, '0674766911'), + (111, '0316097500'), + (2029, '088730866X'), + (9025, '088730866X'), + (1697, '0425185001'), + (9026, '0741412896'), + (795, '0345396545'), + (9027, '0060008865'), + (8981, '0141309725'), + (8987, '044021646X'), + (9028, '0006498035'), + (7400, '0749390832'), + (1616, '0140132155'), + (3601, '0140238131'), + (634, '0385507607'), + (60, '0743206061'), + (58, '006016249X'), + (132, '0553802453'), + (2543, '0345445910'), + (346, '0399148469'), + (2963, '089296765X'), + (132, '0553802461'), + (7549, '0440224071'), + (716, '0679781307'), + (717, '0679781307'), + (6087, '0440174643'), + (368, '0449221393'), + (9029, '0671652796'), + (2749, '068480378X'), + (1871, '0380807203'), + (552, '0449147282'), + (4094, '0451195981'), + (59, '0425071871'), + (552, '0449218929'), + (1626, '0671604082'), + (1628, '0553275100'), + (9030, '0030598583'), + (176, '0671660632'), + (5130, '0440207460'), + (9031, '0345362667'), + (202, '0345323750'), + (9032, '0486280314'), + (5555, '0486280314'), + (9033, '0913866024'), + (9034, '157297317X'), + (9035, '0806519630'), + (9036, '0399521577'), + (9037, '0312267126'), + (9038, '0671870238'), + (803, '0345346904'), + (9039, '1591823641'), + (9040, '1591823633'), + (9041, '193248020X'), + (9042, '1932480099'), + (9043, '1591820162'), + (9044, '1569310491'), + (9043, '1569310491'), + (9045, '0743458206'), + (9046, '1591824729'), + (2233, '0060530804'), + (9047, '0553493264'), + (9045, '1591821819'), + (9045, '1591820588'), + (9048, '1560974109'), + (9049, '1591823951'), + (9048, '1591823935'), + (9050, '1591822246'), + (9051, '159182415X'), + (9052, '159182415X'), + (9050, '1591824141'), + (9051, '1591824141'), + (9053, '1931514186'), + (9054, '1931514186'), + (9052, '1931514178'), + (9052, '193151416X'), + (9052, '1931514151'), + (9055, '0872262278'), + (9056, '0872262278'), + (9057, '082302377X'), + (9045, '1591821800'), + (9045, '1591820596'), + (7172, '159182303X'), + (9045, '1931514798'), + (9045, '1931514801'), + (7168, '1591160502'), + (7168, '156931568X'), + (7168, '1569314748'), + (7168, '1569314071'), + (7168, '1569312648'), + (7168, '1569312273'), + (7168, '1569311897'), + (7168, '1569311382'), + (9058, '1591823455'), + (9049, '1591825369'), + (9059, '1586649000'), + (9060, '0224045814'), + (9061, '0751505366'), + (9062, '1841640212'), + (2500, '0553563971'), + (9063, '0571197418'), + (9064, '0571197418'), + (9065, '0571197418'), + (275, '0330482432'), + (9066, '0141307757'), + (9067, '0750004088'), + (9068, '0750004088'), + (9069, '059013387X'), + (9070, '059013387X'), + (9071, '0746020899'), + (9072, '0746020899'), + (6885, '0006751032'), + (9073, '1858811945'), + (9074, '0330481355'), + (5374, '0099769913'), + (142, '3404143434'), + (9075, '3492107400'), + (93, '3453152271'), + (5911, '3404148932'), + (8456, '3257225350'), + (1706, '3596113318'), + (2486, '3596113318'), + (9076, '3596113318'), + (9077, '3150034914'), + (9078, '3880220131'), + (9079, '3150000912'), + (9080, '3150000912'), + (374, '3499230755'), + (9081, '3499230755'), + (194, '3499230755'), + (93, '3453137442'), + (9082, '3421051496'), + (284, '3257008724'), + (9083, '3257008724'), + (9084, '1857025539'), + (411, '3426618303'), + (9085, '3426611384'), + (8457, '3442447186'), + (9086, '3442447186'), + (1001, '0553050680'), + (9087, '1560761210'), + (1353, '0747272522'), + (9088, '0385606990'), + (9089, '0385606990'), + (9090, '1843910500'), + (9091, '1843910500'), + (1519, '0439288886'), + (6466, '1840221178'), + (9092, '1840221178'), + (9093, '3791321641'), + (9094, '3791321641'), + (9095, '1840225025'), + (9096, '0340857382'), + (2148, '057117857X'), + (176, '0345391837'), + (9097, '0762413697'), + (9098, '0141315741'), + (9099, '0711708770'), + (9100, '0802139779'), + (9101, '0297643347'), + (9102, '1900512440'), + (628, '0571081789'), + (284, '0156236001'), + (9103, '0156236001'), + (9104, '0156236001'), + (9105, '1844130533'), + (1592, '0310209307'), + (822, '0060177888'), + (543, '0440214114'), + (373, '0671016652'), + (9106, '0515110132'), + (8582, '0446607827'), + (1109, '0613572742'), + (9107, '0919924034'), + (9108, '0919924034'), + (9109, '0919924034'), + (3108, '0448210339'), + (9110, '0448210339'), + (4501, '0312099436'), + (256, '0451450442'), + (166, '0440987202'), + (9111, '0142301094'), + (484, '0446357421'), + (9112, '0130314803'), + (9113, '0130314803'), + (9114, '0130314803'), + (9115, '0812092821'), + (9116, '0764551949'), + (9117, '0312959249'), + (9118, '1576739562'), + (9119, '0684868938'), + (9120, '0312966814'), + (571, '0399141065'), + (2181, '0425171272'), + (9121, '1880033100'), + (7870, '0804900973'), + (9122, '0804900973'), + (4764, '0449215571'), + (5466, '0451516060'), + (9123, '0764585932'), + (335, '0553212478'), + (9124, '0671432427'), + (9125, '0517569620'), + (9126, '0671827944'), + (9127, '0671701363'), + (9128, '0553247727'), + (65, '0842329242'), + (66, '0842329242'), + (565, '0553106333'), + (3428, '0395683297'), + (9129, '0395683297'), + (9130, '0395683297'), + (281, '0590451782'), + (9131, '0452270529'), + (563, '0425168298'), + (949, '1566193087'), + (284, '0553213423'), + (351, '0553213423'), + (9132, '0394713788'), + (237, '0345433165'), + (9133, '0785804714'), + (9134, '0002229544'), + (9135, '0140011307'), + (1194, '0671007343'), + (1159, '067084943X'), + (76, '0671799045'), + (9136, '067178501X'), + (1977, '0721406270'), + (9137, '0721406270'), + (9138, '0721406270'), + (9139, '0062508326'), + (471, '0486264661'), + (5382, '0486272818'), + (9140, '0486272648'), + (8917, '0486277836'), + (2458, '048627053X'), + (1674, '0064472531'), + (9141, '0205131999'), + (9142, '0205131999'), + (9143, '0451625781'), + (9144, '0451625781'), + (9145, '0441005004'), + (9146, '002346450X'), + (8715, '0312280637'), + (3211, '0380017822'), + (368, '0515129232'), + (137, '0345400011'), + (5402, '0316898163'), + (9147, '0937611018'), + (9148, '0965834522'), + (9149, '0671695347'), + (9150, '0671695347'), + (9151, '0671758748'), + (61, '0399147659'), + (9152, '0399147659'), + (7147, '0671869205'), + (3632, '0374525102'), + (9153, '0140003185'), + (9154, '1853262412'), + (9155, '1880656655'), + (1071, '0812544196'), + (9156, '0446610526'), + (9157, '0385285965'), + (1665, '0140017917'), + (9158, '0741409577'), + (9159, '0380784130'), + (325, '0345367693'), + (326, '0345367693'), + (325, '0345373529'), + (749, '096623460X'), + (4029, '0140165347'), + (484, '0446357448'), + (9160, '0805209522'), + (9161, '0385147635'), + (9162, '0708905307'), + (285, '0060510323'), + (583, '0061008095'), + (5916, '0446606294'), + (1092, '0671689746'), + (285, '0060951273'), + (760, '0374523789'), + (2654, '0449208885'), + (9163, '0399136002'), + (7, '067972768X'), + (5916, '0380723409'), + (2823, '0380790904'), + (9164, '0800711246'), + (4220, '0439104645'), + (9165, '0439104645'), + (5618, '0439160197'), + (9166, '0439160197'), + (3791, '0439104661'), + (9167, '0451401182'), + (3315, '0345370139'), + (5758, '0451145577'), + (1283, '0440207428'), + (347, '0446608106'), + (9168, '0553562916'), + (9169, '0345435907'), + (60, '0385319215'), + (7515, '0684855135'), + (9170, '0425160343'), + (9169, '0425155129'), + (9169, '0425165671'), + (1094, '0553574566'), + (9171, '0394759842'), + (9172, '188845136X'), + (1012, '0553347756'), + (9173, '3800015064'), + (6877, '3800015064'), + (2724, '3789129453'), + (9174, '3789129453'), + (7435, '0452278384'), + (7436, '0452278384'), + (4428, '0743250192'), + (9175, '0743250192'), + (3115, '1551664348'), + (58, '0061099732'), + (1052, '3453149793'), + (9176, '3518404741'), + (1098, '3442722357'), + (1021, '3502151040'), + (9177, '1570623392'), + (9178, '0340590262'), + (1109, '3518366823'), + (9179, '0452262380'), + (9180, '0452262380'), + (9181, '0688132464'), + (9182, '0684834669'), + (9183, '1566471192'), + (9184, '1566471192'), + (9185, '0446393568'), + (9186, '0446393568'), + (9187, '0446393568'), + (9188, '0425114686'), + (3912, '0515110396'), + (1937, '0385335555'), + (607, '0385414587'), + (607, '0449911373'), + (145, '0399142193'), + (233, '0385729332'), + (9189, '0140048944'), + (1256, '0385333005'), + (5560, '0671517635'), + (9190, '0812695313'), + (9191, '0812695313'), + (9158, '0671606832'), + (741, '0345428919'), + (9192, '0553289314'), + (1065, '0399134999'), + (9193, '0399134999'), + (9194, '0321130073'), + (5538, '0812523113'), + (9195, '0886775388'), + (9196, '0312853742'), + (5875, '0441010210'), + (5344, '0451454146'), + (9197, '0684854422'), + (9198, '0312877994'), + (4020, '0505525542'), + (325, '0345448995'), + (326, '0345448995'), + (151, '0061099155'), + (606, '0671878638'), + (8410, '0671878638'), + (5560, '0802139981'), + (867, '0886778913'), + (9199, '0451198379'), + (9200, '0152337016'), + (9201, '0873585763'), + (9202, '0394546415'), + (9203, '051512768X'), + (9204, '0312916671'), + (2504, '0671218336'), + (3071, '0671218336'), + (2340, '0449700895'), + (9205, '031203833X'), + (9206, '0688044816'), + (9207, '0688044816'), + (9208, '0688035418'), + (3538, '0679723250'), + (1765, '0441203981'), + (1765, '0441048854'), + (1765, '0441787541'), + (1765, '0441888054'), + (1765, '0441001068'), + (1765, '0441860397'), + (1765, '0441748635'), + (1246, '0374455031'), + (9209, '0374455031'), + (9210, '0374455031'), + (9211, '0374455031'), + (9212, '1582402159'), + (9213, '1582402159'), + (2458, '0140449132'), + (2809, '0140449132'), + (9214, '0140449132'), + (905, '0192823795'), + (9215, '0192823795'), + (192, '0394758277'), + (848, '0375405119'), + (9216, '0375405119'), + (3822, '0739307320'), + (9217, '0739307320'), + (9218, '014044629X'), + (9219, '014044629X'), + (1665, '0140184937'), + (1318, '1587156865'), + (1870, '1400100666'), + (9220, '9505812760'), + (9221, '9505812760'), + (90, '0451527461'), + (9222, '0451527461'), + (9223, '0451527461'), + (3001, '078688942X'), + (3002, '078688942X'), + (9224, '0553373854'), + (7242, '0688171451'), + (9225, '0942394577'), + (1265, '0345315715'), + (1265, '0345336275'), + (2043, '0425115291'), + (4602, '1551667010'), + (145, '0425168220'), + (876, '0425168220'), + (3407, '0425168220'), + (890, '0440220793'), + (9226, '0446301353'), + (563, '0425146413'), + (2242, '0553566075'), + (9227, '0451409639'), + (9228, '0553580167'), + (370, '0590341286'), + (371, '0590341286'), + (9229, '0310535212'), + (3702, '0880385480'), + (2006, '0380793342'), + (495, '0140285105'), + (2458, '0486295729'), + (3974, '0486295729'), + (5455, '0140622160'), + (2181, '0515094773'), + (484, '068803196X'), + (292, '060303294X'), + (9230, '1551664445'), + (9231, '0373271948'), + (1402, '2080701142'), + (5937, '158243140X'), + (9232, '0138153094'), + (9233, '0452011345'), + (8857, '0764912518'), + (9234, '1588800296'), + (397, '0486275574'), + (9235, '1857933206'), + (758, '0349107688'), + (9236, '0868065951'), + (1165, '0860682854'), + (5128, '0811214575'), + (9237, '1862053642'), + (4112, '014043061X'), + (9238, '014043061X'), + (1616, '0679738134'), + (9239, '0140028668'), + (2224, '0345255577'), + (9240, '0553121375'), + (2980, '0553252526'), + (9241, '0553109782'), + (9242, '0553109782'), + (2515, '0671632663'), + (9243, '0671501070'), + (7830, '0671501070'), + (3893, '081253221X'), + (1740, '081253221X'), + (9244, '081253221X'), + (9245, '081253221X'), + (1112, '0671027514'), + (532, '0451404327'), + (3695, '0310200059'), + (9246, '1576736261'), + (2504, '0345333926'), + (1428, '0446603503'), + (2504, '0345257502'), + (3590, '0812510127'), + (5498, '0440225825'), + (534, '0425191729'), + (9247, '0849396409'), + (9248, '0879800429'), + (9249, '0879800429'), + (9250, '0879800429'), + (9251, '0446349763'), + (9252, '0446349763'), + (9253, '0553227386'), + (9254, '0553227386'), + (9255, '0138094764'), + (9256, '0471084263'), + (9257, '0911654690'), + (4148, '0385484984'), + (330, '0878575707'), + (9258, '0878575707'), + (9259, '0671832638'), + (9260, '0449144585'), + (9261, '0449243583'), + (1732, '0394558332'), + (9262, '0312977026'), + (9263, '067346427X'), + (9264, '067346427X'), + (9265, '067346427X'), + (9266, '044990668X'), + (9267, '0465005594'), + (3700, '0465005594'), + (253, '044022330X'), + (9268, '2211016529'), + (9269, '0752803409'), + (9270, '0609800140'), + (7582, '1893732126'), + (3191, '3499231670'), + (9271, '3499231670'), + (8852, '3499222736'), + (3191, '3499222736'), + (9272, '3499222736'), + (8852, '3499222728'), + (3191, '3499222728'), + (9271, '3499222728'), + (955, '0375431403'), + (534, '0553050044'), + (9273, '0911104674'), + (9272, '0911104674'), + (2695, '0380725347'), + (3757, '0312978820'), + (9274, '0889951853'), + (9275, '0002005395'), + (7958, '1551668076'), + (1036, '0670892084'), + (9276, '0888012748'), + (9277, '0889951918'), + (266, '0812534085'), + (9275, '0888012268'), + (405, '0394740181'), + (9278, '0394740181'), + (9279, '0394740181'), + (9280, '0812589505'), + (9281, '076150592X'), + (9001, '077109969X'), + (3924, '077109969X'), + (8298, '039304632X'), + (9282, '1552631885'), + (9283, '0385475004'), + (266, '0553279580'), + (441, '0553276409'), + (2942, '0679731725'), + (2326, '0886776287'), + (9284, '0385172419'), + (9285, '0889223025'), + (9286, '0889223025'), + (9287, '0889223025'), + (9288, '0889221456'), + (9289, '0919591566'), + (9290, '0064402754'), + (9291, '088001539X'), + (664, '0380441071'), + (39, '0451210638'), + (2224, '0345346890'), + (9292, '0486290387'), + (181, '0486290387'), + (9293, '0525938508'), + (9294, '0373052987'), + (9295, '0373052367'), + (9296, '0373054742'), + (9297, '0671570986'), + (9298, '0671571117'), + (4392, '0373095287'), + (9299, '0440149843'), + (9300, '0440118891'), + (543, '0440173701'), + (9301, '0373089899'), + (4376, '0906710618'), + (121, '0375432329'), + (369, '0399151060'), + (3115, '0739437631'), + (247, '0345456521'), + (66, '0842384065'), + (9302, '0842332340'), + (66, '0842332340'), + (2242, '0425191796'), + (2287, '0449207005'), + (9303, '0060809078'), + (1091, '0060809078'), + (736, '0446600768'), + (9304, '0451186729'), + (3458, '074341134X'), + (282, '0804103658'), + (9305, '0345347676'), + (9306, '0553109332'), + (5444, '0764225170'), + (8087, '0395636264'), + (532, '0451402383'), + (532, '0451402340'), + (9307, '0345284364'), + (626, '0671525751'), + (9308, '0743227611'), + (1252, '0670030511'), + (1253, '0670030511'), + (7477, '0670891797'), + (4934, '015100692X'), + (7944, '0802733794'), + (556, '0609602497'), + (873, '0312864833'), + (1801, '1888363819'), + (2592, '0802713432'), + (972, '0375431314'), + (9309, '155166884X'), + (2592, '0783889542'), + (9310, '0156790157'), + (9311, '0312272197'), + (9312, '0312863462'), + (9313, '0743446496'), + (9314, '0743446496'), + (9315, '0385502176'), + (54, '0060158638'), + (1591, '0805056637'), + (746, '0064407691'), + (747, '0064407691'), + (2498, '0064407691'), + (9316, '0385314698'), + (1024, '0156000520'), + (2126, '0553110004'), + (9317, '0881762024'), + (9318, '0312208804'), + (9319, '076455168X'), + (9320, '076455168X'), + (9321, '087483435X'), + (9322, '0590415719'), + (9323, '0590415719'), + (9324, '0070540403'), + (9325, '1563083701'), + (9326, '0938756370'), + (9327, '0938756370'), + (9328, '0917846494'), + (9329, '0917846494'), + (9330, '0874835909'), + (9331, '0385127685'), + (9332, '0874834473'), + (9333, '0963870580'), + (83, '1566197198'), + (9334, '0945353863'), + (9335, '0192761870'), + (9336, '0192761870'), + (9337, '0060193328'), + (3689, '044900211X'), + (9338, '0786000511'), + (9339, '0553373730'), + (720, '0671004239'), + (9340, '084236966X'), + (5268, '0843946954'), + (9341, '0786866020'), + (9342, '0786866020'), + (9343, '0786866020'), + (1564, '0786866020'), + (3912, '0399146725'), + (247, '0449006565'), + (247, '0345440048'), + (1878, '0345385071'), + (1436, '0553580337'), + (1441, '0553580337'), + (1442, '0553580337'), + (5482, '0425153088'), + (1697, '0425166139'), + (1878, '0140282513'), + (501, '0345376579'), + (1119, '0451458540'), + (9344, '0441007511'), + (9345, '0380791285'), + (9344, '0380791277'), + (9346, '0671629689'), + (9347, '0671027212'), + (2559, '075284413X'), + (9348, '0460878247'), + (4723, '0670899771'), + (9349, '0700606572'), + (9350, '0700606572'), + (9351, '0874775191'), + (9352, '0060391634'), + (9353, '0374192030'), + (2681, '345313138X'), + (3739, '345313138X'), + (9354, '2038716633'), + (9355, '1400001625'), + (284, '0192833901'), + (9356, '0192833901'), + (502, '0140432620'), + (9357, '0140432620'), + (9358, '0140432620'), + (9359, '0939218208'), + (9360, '0939218208'), + (1560, '0679457526'), + (9361, '037550298X'), + (9089, '3423130989'), + (9362, '3423130989'), + (1232, '3463403021'), + (9363, '1561451010'), + (9364, '1561451010'), + (9365, '0385496052'), + (1300, '006103066X'), + (6034, '0446610550'), + (534, '0399150412'), + (3800, '0399150412'), + (63, '0440207770'), + (9366, '0861710649'), + (9367, '0062585215'), + (2713, '0553297945'), + (9368, '1901881555'), + (9369, '1901881555'), + (3633, '0440228352'), + (974, '0679894772'), + (9370, '0886776783'), + (149, '9500705117'), + (54, '0571206484'), + (9371, '0743201116'), + (9372, '0743201116'), + (106, '0316769509'), + (9373, '0553585509'), + (142, '0451150716'), + (9374, '0380704161'), + (9375, '0812553861'), + (9376, '1403905843'), + (9377, '0399137920'), + (9378, '0786814225'), + (1965, '0886775280'), + (2513, '0886775280'), + (9379, '0886775280'), + (256, '0061059056'), + (9380, '0304353493'), + (9381, '3770149599'), + (501, '344243761X'), + (9382, '344243761X'), + (1143, '3596129052'), + (9383, '0738849901'), + (9384, '0738849901'), + (9385, '0739438573'), + (972, '037541178X'), + (183, '039914675X'), + (9386, '0061066079'), + (1965, '0451522796'), + (9387, '0451522796'), + (9388, '157748794X'), + (1214, '0671007610'), + (1214, '0671534718'), + (1298, '0440904196'), + (9389, '1885840020'), + (9390, '1885840020'), + (241, '0553273299'), + (60, '0671741187'), + (1428, '0590568795'), + (1428, '0590568825'), + (1428, '0590568744'), + (1428, '0590483471'), + (1428, '0590483455'), + (1428, '0590483544'), + (1428, '059048351X'), + (1428, '0590568752'), + (94, '0590483552'), + (2233, '0590568760'), + (1428, '0590494503'), + (1428, '0590483501'), + (9391, '0312110790'), + (5690, '0517585154'), + (9392, '1585421359'), + (9393, '0805064478'), + (9394, '9023405587'), + (8096, '0743467329'), + (9395, '044900709X'), + (971, '0345453409'), + (894, '0440147190'), + (9396, '0451456068'), + (499, '0060521902'), + (5847, '0743482212'), + (9397, '0812520327'), + (1196, '037321877X'), + (583, '0440235154'), + (9398, '0964631601'), + (9399, '0515136433'), + (8062, '0786010126'), + (9158, '0671452533'), + (1345, '0373037716'), + (9400, '0345295463'), + (1339, '0743424107'), + (9401, '0425190943'), + (4017, '0312984839'), + (128, '0446353957'), + (369, '0373835922'), + (552, '0449003302'), + (9402, '0312987013'), + (183, '0399140751'), + (9403, '0743479068'), + (76, '0671722131'), + (6426, '0812575393'), + (3344, '0451172507'), + (1626, '0312993536'), + (9192, '0061056383'), + (9404, '0373222815'), + (9405, '0451210972'), + (410, '3453177746'), + (9406, '3453177746'), + (9407, '0747257833'), + (9408, '0399129111'), + (9409, '0399131280'), + (9407, '0312059612'), + (9410, '039915034X'), + (4471, '0345428293'), + (3458, '0743411323'), + (9409, '0805053077'), + (9411, '0446527378'), + (9407, '0312155581'), + (9407, '0060177012'), + (2667, '0312280661'), + (6170, '0312280661'), + (9409, '0446527386'), + (2341, '0805071903'), + (4471, '0345443268'), + (234, '0449908593'), + (81, '0449911799'), + (81, '0449911721'), + (81, '0449911780'), + (81, '0449911896'), + (9412, '0345410033'), + (9413, '0345439600'), + (9414, '0030597862'), + (576, '0345353617'), + (9415, '0061003964'), + (3615, '0553561111'), + (4278, '0671024353'), + (128, '0446601853'), + (9416, '0758203896'), + (9417, '0373121717'), + (9418, '0385411235'), + (4438, '0060989238'), + (9419, '0758206283'), + (6468, '0060195460'), + (5340, '0312992327'), + (5696, '0380727293'), + (9420, '0967303516'), + (9421, '0967303516'), + (3899, '0967303516'), + (3615, '0553561375'), + (2656, '0449211584'), + (3924, '0452280192'), + (5464, '0060186941'), + (6431, '0060186941'), + (9422, '0553110748'), + (9423, '0553110748'), + (9424, '0786863269'), + (9425, '0688110290'), + (9426, '0688110290'), + (9427, '0688110290'), + (1300, '0060196300'), + (9428, '0684850737'), + (9429, '0810931850'), + (9430, '0030463262'), + (9431, '0030463262'), + (9432, '0030463262'), + (2504, '0449235998'), + (3071, '0449235998'), + (905, '0451524780'), + (4556, '0451524780'), + (1591, '3499229935'), + (9433, '3499229935'), + (9434, '2871294011'), + (867, '0312872836'), + (56, '0140258175'), + (9433, '1569312036'), + (9433, '1569312028'), + (9433, '1569311285'), + (9433, '1569311374'), + (9433, '1569310858'), + (9433, '1569310203'), + (9433, '1569310165'), + (9433, '1569319626'), + (9435, '1568361181'), + (9436, '1568361181'), + (9434, '1568361173'), + (9435, '1568361173'), + (9437, '1892213974'), + (9434, '1892213974'), + (9438, '159264029X'), + (1246, '0140074317'), + (1247, '0140074317'), + (2695, '1874061688'), + (3537, '0670875953'), + (9439, '1590580680'), + (1949, '014026065X'), + (9440, '0714120022'), + (9441, '0786810424'), + (9442, '0786810424'), + (9443, '0740706020'), + (1431, '0316142573'), + (9444, '0316142573'), + (9445, '0316142573'), + (9446, '0789447649'), + (7329, '0448431025'), + (9447, '1876825251'), + (9448, '1876825251'), + (9449, '1575727331'), + (2095, '0141310979'), + (3405, '0141310979'), + (2925, '0394751027'), + (9450, '0525470417'), + (9451, '0451628004'), + (9452, '0451198808'), + (9453, '0446603422'), + (9454, '0446603422'), + (9455, '0672604426'), + (312, '0915144182'), + (9456, '0915144182'), + (1431, '0316141631'), + (9457, '0316141631'), + (9458, '0316141631'), + (3314, '0449206092'), + (959, '0876853904'), + (554, '0553100017'), + (554, '0553100009'), + (61, '0684195984'), + (61, '0399141464'), + (61, '0684195305'), + (61, '0941711420'), + (4444, '0786866195'), + (2242, '0553091735'), + (337, '0425177068'), + (7366, '0312198299'), + (9459, '0026125803'), + (3620, '1585420093'), + (9460, '0786904739'), + (5874, '0553276123'), + (5874, '0812551079'), + (9461, '1560768983'), + (7176, '0441000541'), + (9462, '0061054658'), + (2393, '0886773849'), + (2312, '0886775272'), + (9459, '0786905018'), + (9463, '0821743279'), + (9464, '006050675X'), + (7021, '0765305224'), + (1041, '0786918179'), + (1042, '0786918179'), + (7021, '0765300265'), + (9463, '0060506512'), + (7024, '0553575651'), + (1442, '0553575651'), + (3997, '0756400996'), + (7024, '0553575643'), + (1041, '0061020575'), + (1042, '0061020575'), + (7024, '0553575635'), + (1442, '0553575635'), + (867, '0886772885'), + (4099, '0451456408'), + (6444, '0886779804'), + (9465, '0886779804'), + (142, '0812575237'), + (1060, '0812575237'), + (7021, '0812575237'), + (9466, '078691808X'), + (1119, '0451452682'), + (1436, '0553110845'), + (1441, '0553110845'), + (3302, '0756400007'), + (9467, '1930662513'), + (1965, '1903650267'), + (5901, '3518398873'), + (9468, '3518398873'), + (9469, '3518398873'), + (9470, '0525935762'), + (9471, '0345437829'), + (9472, '0862417031'), + (9473, '157322135X'), + (9474, '0812815904'), + (9475, '0812815904'), + (4197, '0345333748'), + (2029, '0740713906'), + (7465, '0670030295'), + (3689, '0451211480'), + (128, '0743245520'), + (1597, '0140440755'), + (1091, '0140440755'), + (127, '0449209733'), + (9476, '0399142177'), + (9477, '0140112847'), + (3316, '0812534271'), + (3317, '0812534271'), + (9478, '0375753788'), + (9479, '1590710088'), + (9175, '0452281709'), + (9480, '0452281709'), + (4558, '000654861X'), + (3253, '0452274427'), + (1158, '0836220870'), + (9481, '0130816795'), + (9482, '0130816795'), + (6772, '0399141960'), + (9483, '0898796407'), + (9484, '0898796407'), + (9485, '0898796407'), + (9486, '0898796407'), + (9487, '0028613228'), + (9488, '0898796342'), + (59, '0425194515'), + (2695, '0688132286'), + (1013, '0688132286'), + (2695, '0060198303'), + (4301, '0679408193'), + (9489, '1931201080'), + (9490, '0393951693'), + (9491, '0816727953'), + (325, '0446532215'), + (326, '0446532215'), + (9492, '0312964293'), + (3830, '0312964293'), + (6396, '0312956789'), + (4477, '0380727544'), + (3419, '0345466632'), + (2530, '0440237246'), + (9493, '0771087462'), + (9494, '0060973323'), + (4029, '0140065598'), + (4938, '0440359376'), + (4146, '0553103105'), + (745, '0006135986'), + (1628, '0553572202'), + (5015, '0898704448'), + (571, '0399144714'), + (9495, '0312859279'), + (9494, '0812589173'), + (9494, '0312866925'), + (9494, '0441001963'), + (9494, '0441033423'), + (9494, '0441662250'), + (9494, '0441182003'), + (9494, '0441799779'), + (9494, '0441944604'), + (9494, '0441385540'), + (7024, '0553565699'), + (7024, '0553375636'), + (7024, '0553374451'), + (3610, '0553381709'), + (9496, '0373195818'), + (9497, '0060962348'), + (9498, '0446526924'), + (9499, '0446526924'), + (9500, '0446526924'), + (641, '0312275714'), + (9501, '2266025791'), + (389, '0440343194'), + (368, '0449212645'), + (9502, '0970566506'), + (1704, '0553252704'), + (9503, '0880117834'), + (9504, '0880117834'), + (142, '067082982X'), + (9505, '0919591051'), + (6177, '0440164842'), + (5426, '0440226457'), + (2458, '0140440232'), + (9506, '0140440232'), + (9507, '0140440232'), + (532, '0451204301'), + (65, '0842329269'), + (66, '0842329269'), + (9508, '0786868155'), + (9509, '0156002523'), + (9510, '0440507626'), + (1060, '0380976307'), + (309, '0380976307'), + (873, '0380976307'), + (9511, '0380976307'), + (9512, '0887306918'), + (9513, '0887306918'), + (9514, '0887306918'), + (9515, '0887306918'), + (9516, '0840791712'), + (3327, '0140380736'), + (9517, '0689828772'), + (1486, '0689313535'), + (9518, '0679411836'), + (5052, '0151962960'), + (9519, '3404921178'), + (9520, '3404921178'), + (8272, '0451136330'), + (9521, '0061001023'), + (9522, '0843934557'), + (9523, '0312961006'), + (9524, '2266041517'), + (9525, '2290047155'), + (9526, '2226120467'), + (2007, '0446523089'), + (9527, '0373226136'), + (3952, '0688167810'), + (9528, '0373704526'), + (369, '0373484895'), + (427, '0451524497'), + (9505, '0451524497'), + (977, '0449234576'), + (9529, '014025773X'), + (9530, '0395533627'), + (9531, '0393963039'), + (6307, '0393963039'), + (9532, '0941104311'), + (3776, '0375401296'), + (1783, '0393322157'), + (3090, '0060005424'), + (9533, '3404615131'), + (2656, '0449205878'), + (9534, '0670813699'), + (1291, '0552996181'), + (131, '0451211561'), + (9535, '3499420694'), + (9536, '3257218362'), + (188, '0380729407'), + (9537, '0310214653'), + (9538, '0310214653'), + (9539, '0486299929'), + (9540, '0486278042'), + (9541, '0486282252'), + (9542, '0738807338'), + (8985, '0446523151'), + (17, '1558749209'), + (18, '1558749209'), + (1695, '0446601020'), + (2516, '0446601020'), + (8111, '3492238882'), + (9543, '3492238882'), + (9544, '3257205368'), + (1234, '0749396547'), + (9545, '0749396547'), + (9546, '325130058X'), + (9547, '325130058X'), + (9548, '3794147286'), + (9549, '3548243746'), + (1086, '0670814458'), + (9550, '0816707987'), + (9551, '3426617277'), + (9552, '185863864X'), + (4104, '3596294312'), + (9553, '3453209419'), + (9554, '0595250955'), + (59, '0399135790'), + (795, '0345356950'), + (4804, '2253060224'), + (688, '2253060224'), + (9555, '2253060224'), + (1432, '0312265859'), + (9556, '0130421499'), + (9557, '0130421499'), + (9558, '0673980111'), + (9559, '157029237X'), + (9560, '0935989870'), + (9561, '0935989870'), + (9562, '0935989870'), + (9563, '0935989870'), + (9564, '0876591063'), + (9565, '0876591063'), + (9566, '0876591195'), + (9567, '0876591195'), + (9568, '0935989900'), + (9569, '0553380303'), + (9570, '0553380303'), + (9571, '0316744441'), + (4919, '0316779032'), + (4918, '0316779032'), + (9572, '089586763X'), + (9573, '0827348916'), + (9574, '0060406046'), + (9575, '0312636490'), + (9576, '0312636490'), + (9577, '0671739999'), + (4918, '0912500212'), + (1474, '1576734587'), + (9578, '1576734587'), + (9579, '0786884525'), + (1659, '0553347187'), + (9580, '0553347187'), + (9581, '0671537628'), + (9582, '0553226630'), + (9167, '0553580655'), + (9583, '0440127092'), + (9584, '0671836285'), + (9585, '0312969767'), + (9586, '0440214475'), + (9587, '0380790750'), + (9588, '0671027271'), + (9589, '0764561960'), + (9590, '0831788356'), + (9591, '1566910838'), + (9592, '0803893728'), + (9593, '1558534334'), + (9594, '0873374789'), + (9595, '0873374789'), + (9596, '0395714060'), + (9597, '0878570764'), + (9598, '0380758962'), + (9599, '0553088122'), + (9600, '0879752408'), + (9601, '0425096505'), + (9602, '0822023016'), + (9603, '0822023016'), + (9604, '0307336565'), + (9605, '0307336565'), + (9606, '0307336565'), + (9607, '0307336565'), + (6067, '0486224570'), + (9608, '0842346740'), + (9609, '0805061835'), + (1804, '0805061835'), + (145, '0425165701'), + (84, '0425165701'), + (415, '0451522273'), + (9610, '0451522273'), + (9611, '0767900189'), + (2397, '0060196661'), + (9612, '344242366X'), + (1265, '2070415708'), + (7024, '2290316296'), + (9613, '2290316296'), + (7024, '2290313238'), + (9612, '2290313238'), + (7024, '2290303607'), + (9614, '2290304778'), + (9615, '2290042560'), + (1063, '2290331341'), + (9616, '2290331341'), + (9617, '2290331341'), + (9618, '2290331341'), + (9619, '2226135022'), + (9620, '0449003213'), + (115, '0688046592'), + (9621, '3548332374'), + (9622, '3548332374'), + (9623, '2207304183'), + (1408, '2207304183'), + (9624, '2207304132'), + (9625, '2207304116'), + (9626, '2207304116'), + (9627, '2207304078'), + (5112, '2207304027'), + (806, '2207304019'), + (1408, '2207304019'), + (806, '2207304000'), + (1408, '2207304000'), + (9628, '2207303993'), + (9629, '2207303888'), + (3716, '2207301656'), + (188, '2207250660'), + (9630, '2207250660'), + (9631, '2742743537'), + (532, '0399148779'), + (61, '3442439019'), + (9632, '3442439019'), + (5251, '0452281725'), + (503, '0385092148'), + (178, '0385092148'), + (9633, '0745916147'), + (9634, '0830727639'), + (9635, '0662174860'), + (9636, '187963905X'), + (9637, '187963905X'), + (9638, '187963905X'), + (9639, '0380795671'), + (9640, '1567181449'), + (9641, '0805047794'), + (6568, '0671542141'), + (2103, '0553211161'), + (2661, '0812556070'), + (873, '0812532597'), + (9642, '0879050721'), + (1265, '0345339967'), + (9643, '3442089832'), + (9644, '3442089832'), + (9645, '1414034563'), + (4620, '0880385871'), + (9646, '0141182253'), + (9647, '0060526769'), + (9648, '1858285283'), + (9649, '1858285283'), + (9650, '1858285283'), + (9651, '0385404859'), + (9652, '0375760520'), + (9653, '0375760520'), + (9654, '0375760520'), + (890, '0525945768'), + (9655, '1592400388'), + (199, '0060589272'), + (9656, '0553583158'), + (9657, '0804102511'), + (9658, '0137791577'), + (9656, '0804118213'), + (2978, '0425148297'), + (930, '0670628301'), + (9659, '0312868278'), + (9660, '0395752906'), + (9661, '0060523492'), + (4441, '0451209443'), + (9662, '0689311982'), + (9663, '0312039409'), + (3465, '0451207947'), + (2043, '042519065X'), + (9664, '0060008369'), + (9665, '0451208773'), + (876, '0425190919'), + (3407, '0425190919'), + (145, '0425190919'), + (9666, '006103181X'), + (9667, '0446612901'), + (2043, '051513581X'), + (2044, '051513581X'), + (369, '0515119202'), + (369, '1551660504'), + (7102, '0671013947'), + (94, '042512164X'), + (9668, '0451197534'), + (4613, '0425188795'), + (4485, '0515134864'), + (9669, '0312925778'), + (1283, '031228361X'), + (4444, '0786889845'), + (6426, '0765341697'), + (2043, '0060094397'), + (2044, '0060094397'), + (9670, '0451410645'), + (9671, '0446610402'), + (2748, '0061032425'), + (1562, '0743405900'), + (713, '0425163415'), + (2043, '0425187721'), + (2044, '0425187721'), + (6838, '0553574035'), + (5498, '044022473X'), + (9672, '0091833345'), + (9673, '0899972020'), + (4689, '0553254502'), + (1086, '0140097058'), + (9674, '0688155308'), + (115, '0688046606'), + (9675, '0451624769'), + (2182, '0441006949'), + (5379, '0747265453'), + (5379, '0747263884'), + (9676, '0140137815'), + (283, '0156767503'), + (815, '0380563908'), + (3315, '0345331176'), + (9677, '0241102634'), + (9678, '0786708069'), + (937, '0743411447'), + (642, '0743411447'), + (502, '0140432264'), + (9679, '0140432264'), + (9680, '0452276772'), + (9679, '0452276772'), + (9681, '0140185887'), + (9682, '0140008950'), + (9683, '0743235053'), + (9684, '1561310271'), + (85, '0553210246'), + (1505, '0140054316'), + (9402, '0590372343'), + (9685, '0595279171'), + (9686, '0312983417'), + (9687, '0440238412'), + (285, '006054564X'), + (1467, '0385502761'), + (4947, '0440229081'), + (9688, '038550084X'), + (188, '0553257749'), + (1362, '0380005166'), + (1727, '0394309685'), + (9689, '0970141947'), + (82, '0451516680'), + (1597, '0140367829'), + (9690, '0140367829'), + (9691, '0140367829'), + (411, '0345441788'), + (2680, '1853260207'), + (85, '0140620478'), + (9238, '0679750150'), + (2582, '0679750150'), + (7957, '0060930438'), + (9692, '0671796356'), + (9693, '0671796356'), + (3550, '0811841553'), + (9694, '0811841553'), + (9695, '0811841553'), + (415, '076070015X'), + (9696, '0312261357'), + (9697, '188090845X'), + (9698, '0804818584'), + (9699, '0804818584'), + (9697, '080482052X'), + (9700, '080482052X'), + (1625, '0440237424'), + (1706, '2253030589'), + (906, '0425087700'), + (906, '2013218923'), + (1665, '0140286829'), + (1666, '2290333697'), + (3539, '0679722610'), + (2599, '1592247938'), + (9701, '958949479X'), + (9702, '958949479X'), + (4682, '0553213296'), + (859, '0812523016'), + (1523, '0553214209'), + (1523, '0140367152'), + (2214, '0140367152'), + (9703, '9500286327'), + (1523, '0689810962'), + (9704, '0689810962'), + (9705, '0062702475'), + (2513, '0385415613'), + (7144, '0449219771'), + (9706, '0195038630'), + (9707, '0385418973'), + (2615, '0345380746'), + (9708, '1564963179'), + (9709, '156496518X'), + (9710, '156496518X'), + (9711, '156496518X'), + (9712, '0891347739'), + (9713, '0891347739'), + (8544, '1566091888'), + (9714, '1566091888'), + (9715, '0891346406'), + (9716, '1573441244'), + (9717, '0140280243'), + (9718, '1570716439'), + (9719, '076151340X'), + (9720, '076151340X'), + (6111, '0345359925'), + (9721, '1562829254'), + (9722, '1562829254'), + (9723, '0688127258'), + (1232, '0140109269'), + (7547, '0452260302'), + (9724, '0140116168'), + (1732, '0449205061'), + (5187, '0886775361'), + (256, '0061020672'), + (176, '0671664948'), + (92, '0345316509'), + (9680, '0140185992'), + (9725, '006440174X'), + (3772, '0385333862'), + (9726, '0330392611'), + (665, '0684822768'), + (7753, '0374480133'), + (9727, '1842124196'), + (9728, '1559723475'), + (9729, '1559723475'), + (9730, '0812521463'), + (6103, '0394512669'), + (895, '0451192915'), + (896, '0451192915'), + (309, '0553100343'), + (9731, '0684172755'), + (9732, '0811804844'), + (9733, '0385483414'), + (9734, '0385483414'), + (895, '0451194756'), + (896, '0451194756'), + (9735, '0449905950'), + (9736, '0345342313'), + (9737, '0448168324'), + (1013, '0805004602'), + (9738, '0590449036'), + (4905, '0747232679'), + (9739, '0133140547'), + (5887, '0671732277'), + (532, '0451406176'), + (9740, '0345424115'), + (9741, '0345302656'), + (5015, '0140082565'), + (9742, '0695808117'), + (9229, '0373152507'), + (9743, '0394486986'), + (231, '0440071240'), + (389, '0688078028'), + (9744, '0688078028'), + (9745, '0312285329'), + (9746, '0380785749'), + (4137, '044920099X'), + (325, '0345385209'), + (9747, '055325555X'), + (9748, '084311861X'), + (9749, '0553249371'), + (9750, '0446911968'), + (94, '0440142326'), + (9751, '0425077047'), + (9752, '0385278861'), + (374, '0446602345'), + (534, '0671737775'), + (534, '0553276328'), + (1326, '0446610232'), + (1327, '0446610232'), + (1326, '0812564375'), + (1327, '0812564375'), + (1326, '0812543262'), + (1327, '0812543262'), + (1892, '0061014591'), + (484, '0787103950'), + (9753, '0787103950'), + (9754, '0451409744'), + (1234, '0688147259'), + (1326, '0446523364'), + (1327, '0446523364'), + (9755, '0761512195'), + (9756, '0761512195'), + (9757, '0761504397'), + (9758, '0963425900'), + (1071, '0812571029'), + (411, '0804109729'), + (973, '0553280643'), + (9759, '0385480210'), + (1787, '0345431901'), + (3547, '0385497105'), + (9760, '0465031358'), + (9761, '0306808900'), + (966, '031219904X'), + (9762, '0312980663'), + (9763, '0062502891'), + (9764, '1570612676'), + (9765, '1570612676'), + (2833, '0451452313'), + (9766, '0767912365'), + (9767, '0767912365'), + (9768, '3293202047'), + (9769, '3293202047'), + (9770, '0595319033'), + (9771, '0201626098'), + (9772, '0201626098'), + (9773, '0684868660'), + (52, '0060194995'), + (2208, '0805065415'), + (7527, '044023655X'), + (4017, '0312979975'), + (7527, '0440236525'), + (4017, '0312979983'), + (9774, '0743226844'), + (7527, '0440234816'), + (971, '0671019740'), + (8372, '0373691300'), + (2747, '0425190927'), + (1196, '0446600814'), + (7527, '0440234808'), + (9775, '0373806841'), + (1196, '0373806841'), + (1196, '0373252579'), + (1196, '0373834683'), + (3507, '0373834683'), + (9776, '084233193X'), + (9777, '084233193X'), + (9778, '0061087130'), + (1196, '0671019635'), + (9779, '0876664206'), + (1367, '0609605216'), + (1368, '0609605216'), + (9780, '0740723367'), + (9781, '0380004801'), + (256, '2277302686'), + (9782, '2070334430'), + (9783, '2290045802'), + (6732, '2070403734'), + (9784, '2070403734'), + (9785, '2070403734'), + (1396, '220730521X'), + (9786, '2207306038'), + (9787, '2207306038'), + (9788, '2207248526'), + (9789, '2207306046'), + (8559, '2207304884'), + (8559, '2207304892'), + (8559, '2207303454'), + (9790, '2207303454'), + (9789, '2207303454'), + (9791, '2070326977'), + (9792, '2910932915'), + (9793, '2844850235'), + (9794, '2844850235'), + (702, '2846400539'), + (702, '2846400520'), + (1325, '0061091790'), + (9795, '039453896X'), + (9796, '0141006633'), + (9797, '0803723547'), + (543, '0440236851'), + (1739, '0345397843'), + (9798, '0843925795'), + (571, '0425151867'), + (9799, '0395746566'), + (2576, '0345380193'), + (5916, '0380715937'), + (9800, '0451188071'), + (9801, '0449704378'), + (9802, '0751370312'), + (9803, '0340721480'), + (1891, '0399127216'), + (5718, '0843948760'), + (9804, '0385720211'), + (9805, '0671671421'), + (9806, '0961551453'), + (9807, '0671024620'), + (3615, '0553256092'), + (3615, '0553293761'), + (1339, '067102096X'), + (9808, '0874830842'), + (9809, '1573225444'), + (374, '0446311774'), + (3615, '0553561367'), + (9810, '0882669842'), + (9811, '0743206088'), + (9812, '0826307361'), + (1704, '0312982518'), + (6048, '074320218X'), + (145, '0425180050'), + (876, '0425180050'), + (3407, '0425180050'), + (9813, '055347068X'), + (2656, '0394572726'), + (1704, '0553199609'), + (9814, '0962546895'), + (3528, '0553014803'), + (9815, '0679439196'), + (9816, '0140157352'), + (9817, '0140157352'), + (7637, '0140157352'), + (9818, '0691083886'), + (9819, '0030211212'), + (2126, '0312950586'), + (9820, '0380778130'), + (9821, '0806107014'), + (9822, '027522600X'), + (2467, '039913087X'), + (1396, '0679736646'), + (9823, '1904908004'), + (3430, '0091882109'), + (9824, '0743406230'), + (128, '0446609943'), + (9825, '0783884397'), + (2818, '0380017962'), + (889, '0316153990'), + (9826, '0375411275'), + (9827, '0375507760'), + (441, '0152022686'), + (171, '0060956860'), + (9828, '0940642247'), + (9829, '0940642247'), + (9827, '0940642247'), + (9817, '0393316041'), + (9830, '0393316041'), + (9831, '0393316041'), + (9832, '0440223970'), + (1678, '0345441109'), + (1198, '0380725576'), + (760, '3423104740'), + (9833, '3423104740'), + (2360, '3442455235'), + (9834, '3442455235'), + (9835, '0679748253'), + (9836, '3499128381'), + (9837, '3596235316'), + (9838, '3320013041'), + (9839, '3320013041'), + (9840, '3320013041'), + (9841, '343017581X'), + (9842, '343017581X'), + (9843, '0671725017'), + (9844, '0062510533'), + (9845, '1561710059'), + (3440, '0722535724'), + (8767, '0966164202'), + (9846, '1852304960'), + (9847, '0062514083'), + (571, '042518286X'), + (178, '0394712528'), + (1699, '0553250426'), + (178, '0394714342'), + (4198, '0821772287'), + (9848, '0590130048'), + (9849, '0590130048'), + (2043, '0425136612'), + (7945, '0446602698'), + (2274, '0312975112'), + (2977, '0425060055'), + (1214, '0671039903'), + (369, '0373243286'), + (2185, '0425163865'), + (2748, '0553252828'), + (9850, '0812501756'), + (2587, '0446604208'), + (3757, '0345317386'), + (3757, '0345311809'), + (4232, '0425076717'), + (9851, '0440169127'), + (9852, '0706406974'), + (543, '0440117437'), + (9853, '038055111X'), + (9854, '038055111X'), + (9855, '0446363251'), + (9856, '0935312390'), + (9857, '0935312390'), + (3345, '0679785892'), + (4883, '0679785892'), + (1248, '0020360754'), + (9858, '1586420232'), + (5763, '0060974990'), + (4837, '0671797867'), + (3292, '0375701966'), + (7063, '0802136346'), + (9859, '0330282565'), + (9860, '0310480000'), + (9861, '0310480000'), + (6369, '006093056X'), + (9862, '0060099062'), + (9863, '0312310439'), + (9536, '0310501016'), + (1592, '0310501016'), + (9864, '0310501016'), + (3893, '0812535707'), + (9746, '0553274074'), + (2593, '0380754134'), + (5105, '0804112894'), + (9865, '0440526701'), + (3638, '0743243307'), + (9866, '0520223446'), + (5132, '0440223806'), + (9867, '0399146032'), + (351, '0786885238'), + (9868, '0880015233'), + (9869, '0880015233'), + (939, '0380820048'), + (132, '0553288555'), + (9870, '0399149716'), + (9871, '0393049779'), + (9872, '0849929660'), + (9873, '0849929660'), + (9874, '0849929660'), + (9875, '0374524602'), + (9876, '1887166009'), + (9877, '1887166009'), + (9878, '0679420991'), + (9877, '0394574567'), + (9879, '0801865212'), + (9880, '0801865212'), + (9881, '0801865212'), + (9882, '1568651732'), + (3248, '060980877X'), + (9883, '0671748408'), + (607, '0449909557'), + (5131, '0020236107'), + (5170, '0465021182'), + (9884, '0465021182'), + (9885, '0446677507'), + (1164, '055356949X'), + (9886, '0440223032'), + (9887, '1586480316'), + (1084, '0553262386'), + (9888, '0060957271'), + (9889, '0028617274'), + (2906, '0446301582'), + (9890, '1885171080'), + (9891, '1885171080'), + (9892, '1885171080'), + (7798, '0425046605'), + (9893, '0743457838'), + (9894, '1841192538'), + (9895, '1559701501'), + (9896, '0060596325'), + (1732, '0449912116'), + (1732, '0140255893'), + (1732, '0679446400'), + (1732, '0449911632'), + (9897, '0552998478'), + (9898, '0743469763'), + (9899, '0743469763'), + (59, '0553584480'), + (2046, '0802139590'), + (1248, '0684852225'), + (9900, '186207044X'), + (138, '0449908585'), + (5644, '0156029987'), + (9901, '1841955485'), + (6373, '0226743497'), + (9902, '0571179282'), + (9903, '0671032631'), + (9904, '0340278269'), + (9905, '0684837242'), + (4642, '0330328085'), + (9906, '0340750464'), + (9907, '0743203712'), + (951, '0393319296'), + (9908, '0786861495'), + (254, '0679410325'), + (9909, '0671737996'), + (9910, '0671737996'), + (9911, '0609809431'), + (436, '0449206211'), + (9912, '0759629625'), + (9913, '0812521617'), + (534, '055320663X'), + (534, '0671631845'), + (534, '0671742760'), + (534, '0671001809'), + (142, '0670858692'), + (2029, '0740721909'), + (9914, '0553814516'), + (9915, '0441000525'), + (9916, '0872235130'), + (1180, '0441023622'), + (9917, '0441023622'), + (9918, '0759550182'), + (2118, '0786862572'), + (9919, '0140282025'), + (552, '0446531316'), + (6225, '0380708353'), + (2257, '0446356522'), + (2249, '0380007762'), + (1116, '0553578936'), + (9920, '0515124621'), + (626, '0671737600'), + (1754, '0671870963'), + (1795, '0553567756'), + (1490, '0451138775'), + (2577, '0515121398'), + (1092, '0671744607'), + (6225, '038071504X'), + (4988, '0312954212'), + (2168, '0451403673'), + (2181, '051512219X'), + (235, '0440216575'), + (626, '0671525743'), + (2006, '0380757478'), + (743, '0061094595'), + (1092, '067101417X'), + (626, '0671742558'), + (9919, '1551660571'), + (2824, '0440217032'), + (8385, '0671521438'), + (674, '006108459X'), + (1493, '0440216907'), + (1339, '0671744186'), + (1116, '0553575244'), + (9921, '0553582542'), + (9922, '044689270X'), + (897, '0451162919'), + (626, '0671737627'), + (9923, '0763618292'), + (9924, '0345442768'), + (9925, '0345396812'), + (9926, '0375758682'), + (254, '0060518049'), + (1998, '0340733950'), + (3969, '034539643X'), + (9927, '0451198239'), + (131, '0061099368'), + (4381, '0061097829'), + (4296, '0812584341'), + (24, '3453071174'), + (9928, '3453071174'), + (3067, '3404120604'), + (1759, '0140258825'), + (9929, '1550590154'), + (6190, '0394536967'), + (9930, '1895449553'), + (9931, '1565049055'), + (9932, '1565049055'), + (9933, '031207090X'), + (484, '1568650922'), + (9934, '0684810948'), + (4361, '0399134239'), + (9935, '0553053868'), + (5508, '0525939857'), + (867, '0312858817'), + (9936, '0399143122'), + (9937, '068810973X'), + (1998, '0679425136'), + (9938, '0671679473'), + (9939, '0671692976'), + (9940, '1556112289'), + (1283, '0671870602'), + (9941, '1895897653'), + (9942, '1897580193'), + (9943, '0060183039'), + (552, '0688143679'), + (9944, '0805059237'), + (9945, '0773728805'), + (2791, '0671864866'), + (9946, '0763615757'), + (9945, '0763615757'), + (9947, '0789420279'), + (9948, '0789420279'), + (9946, '0789402017'), + (9947, '0789402017'), + (9949, '0789402017'), + (732, '0395898714'), + (9950, '0395898714'), + (9951, '0395898714'), + (439, '1929132123'), + (2931, '0679600213'), + (9952, '0394827406'), + (1519, '0451527046'), + (9953, '0451527046'), + (5466, '0486404277'), + (181, '0486404277'), + (1768, '0517189585'), + (9954, '1859846815'), + (9955, '1859846815'), + (9956, '0261103431'), + (149, '0060932678'), + (1706, '0156949601'), + (3715, '0664243916'), + (223, '0345442822'), + (9957, '0393322815'), + (8129, '0671638688'), + (9958, '0773517634'), + (9959, '1550546163'), + (9960, '1550546163'), + (9961, '0670031372'), + (9962, '0809468700'), + (9963, '0809468549'), + (9964, '0805017224'), + (9965, '0805017224'), + (9966, '0582438349'), + (7480, '0192815970'), + (9967, '0192815970'), + (56, '0393967913'), + (9968, '0393967913'), + (9969, '1563893304'), + (9960, '0670894710'), + (9970, '0451627318'), + (1507, '0836221362'), + (1507, '0836217691'), + (9971, '0806973404'), + (1507, '0836218051'), + (1507, '0836218523'), + (1507, '0836218833'), + (1507, '0836218787'), + (1507, '0836218663'), + (1507, '0836218620'), + (1507, '0836220889'), + (3543, '0374339716'), + (9972, '0374339716'), + (978, '0374339716'), + (9973, '0374339716'), + (574, '0394558235'), + (956, '0517189682'), + (9974, '1570981094'), + (9975, '0140440046'), + (9976, '1853260495'), + (9977, '1853260495'), + (1395, '3426617463'), + (971, '3442357780'), + (9978, '3442357780'), + (9979, '3442133513'), + (9980, '3442133513'), + (9981, '3442726840'), + (9982, '3404604989'), + (7988, '344245204X'), + (7989, '344245204X'), + (936, '3404143744'), + (142, '3404132998'), + (59, '3453171721'), + (936, '3404141849'), + (936, '3404142187'), + (580, '3453177541'), + (936, '3453162900'), + (142, '3453036972'), + (142, '3453088883'), + (142, '3404131606'), + (142, '340413088X'), + (142, '3453021347'), + (142, '3453003128'), + (142, '3404130014'), + (9983, '3404130014'), + (142, '0451190750'), + (3310, '0451190750'), + (3310, '3453002393'), + (142, '3453002393'), + (2937, '0451524276'), + (9984, '0451524276'), + (732, '0395193958'), + (9985, '1874166986'), + (4158, '1874166986'), + (9986, '0671619829'), + (9987, '0704339927'), + (9988, '0843136170'), + (9989, '0816735662'), + (9990, '0771056222'), + (9989, '0771056281'), + (1395, '0679762698'), + (9991, '3546002474'), + (9992, '3546002474'), + (9993, '0517701405'), + (4869, '0517701405'), + (9994, '0679741151'), + (502, '0553210599'), + (1169, '0684873052'), + (4405, '0684873052'), + (9995, '0974218006'), + (9996, '0441783600'), + (5689, '0140244816'), + (873, '0812509250'), + (873, '0812532554'), + (3963, '0061000116'), + (9997, '088240041X'), + (1505, '0140043888'), + (9998, '0425068323'), + (3102, '0451523407'), + (9999, '0451523407'), + (10000, '0425143945'), + (1876, '0553278029'), + (2663, '0515133639'), + (10001, '0671868098'), + (10002, '0380804174'), + (351, '0345417976'), + (85, '0451525469'), + (10003, '0451525469'), + (10004, '0020199309'), + (6696, '0061031151'), + (1230, '0060921714'), + (10005, '0439286034'), + (403, '0393324494'), + (10006, '0393324494'), + (10007, '0393324494'), + (10008, '0393324494'), + (2942, '0679722661'), + (6756, '0673982432'), + (10009, '0312980329'), + (2084, '3499180936'), + (10010, '3499180936'), + (10011, '0451410823'), + (2355, '0394579259'), + (1454, '0385425627'), + (10012, '0312984685'), + (584, '1551667053'), + (543, '0440217466'), + (3325, '0385720726'), + (10013, '0936728779'), + (10012, '0936728779'), + (10012, '0936728787'), + (10014, '0936728485'), + (10015, '0936728485'), + (2182, '0380719223'), + (2365, '0345428811'), + (10016, '3442434130'), + (10017, '3442434130'), + (10015, '3442351588'), + (7834, '3442351588'), + (1767, '3453150147'), + (10018, '3453150147'), + (4307, '3404128397'), + (10019, '3453151704'), + (6649, '3548245897'), + (50, '3548245897'), + (10020, '0898151953'), + (6104, '0140195831'), + (10021, '1568360487'), + (10022, '1568360487'), + (976, '0375401466'), + (10023, '0916890015'), + (10024, '0916890015'), + (10025, '0743202236'), + (843, '0440412226'), + (10026, '038508854X'), + (10027, '1559718641'), + (2212, '0590632744'), + (2714, '0590632744'), + (1430, '0439343518'), + (1429, '0439343518'), + (10028, '0765345706'), + (10029, '0448416484'), + (10030, '0448416484'), + (1176, '0590477625'), + (1176, '0590457268'), + (6708, '0590252372'), + (8518, '0671887351'), + (10031, '0679429948'), + (10032, '1570360421'), + (4398, '0613003225'), + (1176, '0807281530'), + (376, '0786888067'), + (3036, '3453213394'), + (10033, '0375508112'), + (938, '0312254385'), + (369, '0425176169'), + (10034, '0374423296'), + (941, '0374423296'), + (63, '0440223202'), + (10035, '0802839061'), + (5155, '0156029030'), + (10036, '0316666335'), + (10037, '0670852945'), + (10038, '0761133208'), + (1802, '0060915943'), + (10039, '0060915943'), + (10040, '0060915943'), + (10041, '0312300700'), + (10042, '1928556221'), + (10043, '0060172789'), + (10044, '1556705069'), + (10045, '0671441035'), + (767, '2253153982'), + (61, '2253076996'), + (10046, '2253076996'), + (574, '2266127365'), + (1699, '2266128876'), + (10047, '2266128876'), + (10048, '157794304X'), + (10049, '0575072741'), + (10050, '0373264429'), + (10051, '0451205367'), + (10052, '0843953144'), + (10053, '0380712202'), + (3651, '0590431978'), + (10054, '0764551248'), + (10055, '0764551248'), + (10056, '0764550780'), + (9319, '1568848668'), + (9318, '1568848668'), + (7096, '0764550136'), + (10057, '0028613430'), + (10058, '0684870940'), + (10059, '1882606256'), + (10060, '1882606256'), + (10061, '0830732586'), + (10062, '0922729387'), + (4151, '0922729387'), + (10063, '0062505378'), + (4426, '0671829777'), + (10064, '0708837085'), + (658, '0140042598'), + (3662, '0345459164'), + (3662, '0553578790'), + (3662, '0553298046'), + (1726, '3442442508'), + (1921, '3442442508'), + (3079, '0060083263'), + (7485, '0670032808'), + (10065, '1401300901'), + (2913, '0743446291'), + (10066, '0451210816'), + (10065, '0451208552'), + (369, '0399149848'), + (2258, '0066211220'), + (543, '0385335377'), + (10067, '0060393408'), + (10068, '1890957313'), + (10069, '1890957313'), + (10070, '073882688X'), + (10071, '0425183378'), + (10072, '0425183378'), + (10073, '0684194201'), + (10074, '0307060381'), + (6883, '0792218345'), + (10075, '0792218345'), + (5877, '0553292552'), + (10076, '0786807083'), + (59, '0425119920'), + (10077, '0805002707'), + (1876, '0553566040'), + (867, '0451456521'), + (5273, '0451456521'), + (10078, '0451456521'), + (369, '1551660202'), + (10079, '0373764170'), + (10078, '0373763794'), + (10080, '0373764243'), + (10081, '0821746286'), + (1097, '0743431030'), + (10082, '067187702X'), + (10083, '0812518624'), + (8192, '0451192192'), + (2513, '0886774209'), + (5589, '0886774209'), + (10084, '0671045423'), + (3314, '0449217124'), + (2011, '042512519X'), + (2011, '0425104273'), + (3108, '0307128539'), + (10085, '0307128539'), + (5677, '006020186X'), + (10086, '006020186X'), + (10087, '0823405796'), + (10088, '0823405796'), + (10089, '0823405796'), + (749, '225314696X'), + (1724, '2070567842'), + (7128, '2070567842'), + (10090, '2070567842'), + (1784, '0446358592'), + (129, '0446600466'), + (81, '0425098834'), + (930, '0345409051'), + (129, '0446600474'), + (1277, '0140272100'), + (1784, '0446364800'), + (49, '0679450408'), + (1246, '0613028155'), + (10091, '0613028155'), + (945, '034543014X'), + (268, '1563895730'), + (10092, '1563895730'), + (268, '1563890356'), + (10093, '1563890356'), + (1063, '0345294688'), + (1295, '0345294688'), + (5012, '1566197589'), + (1776, '0871131811'), + (6508, '0375713549'), + (256, '0061020699'), + (256, '086140324X'), + (268, '156389226X'), + (10092, '156389226X'), + (288, '156389226X'), + (268, '1401200893'), + (7833, '0373650132'), + (2270, '0671786113'), + (2270, '0373822456'), + (373, '0061092819'), + (10094, '0373224540'), + (7596, '0373825617'), + (4313, '0373707711'), + (5205, '0373708130'), + (10095, '0373241739'), + (10096, '037326240X'), + (10097, '0373825692'), + (3468, '0373166613'), + (266, '0312869592'), + (274, '0140328734'), + (10098, '0140328734'), + (268, '1563892251'), + (297, '1563892251'), + (268, '1563892464'), + (4698, '1563892464'), + (268, '038097827X'), + (3581, '038097827X'), + (266, '0312874014'), + (266, '0312873972'), + (268, '1565041992'), + (4698, '1565041992'), + (284, '014143967X'), + (4032, '014143967X'), + (10099, '038070174X'), + (2286, '0804108552'), + (1828, '0373708149'), + (10100, '0373242441'), + (142, '0451150244'), + (10098, '0385134681'), + (906, '0553350072'), + (268, '0380973634'), + (266, '0765300222'), + (268, '0441008615'), + (256, '0441008615'), + (2680, '0679405828'), + (1318, '0140367470'), + (7306, '0140367470'), + (10101, '0140367470'), + (574, '0345434803'), + (5206, '037370951X'), + (10102, '0373072430'), + (743, '0671040480'), + (10103, '0449005550'), + (4141, '1551667894'), + (584, '0373242077'), + (5104, '0425177009'), + (3115, '0373834543'), + (5214, '0373834543'), + (5214, '0373707290'), + (1832, '0373226071'), + (2251, '0451201914'), + (10104, '0373822405'), + (2664, '0373063040'), + (971, '155166500X'), + (10105, '0060502320'), + (10106, '0821771949'), + (10107, '0304345350'), + (269, '0373835558'), + (10108, '0812542819'), + (8482, '0590402129'), + (1733, '0671465376'), + (274, '0141301066'), + (906, '0515095524'), + (312, '0451628276'), + (10109, '0451628276'), + (10110, '0451628276'), + (10111, '0451628276'), + (4137, '0449226182'), + (128, '1551660237'), + (1024, '059043893X'), + (532, '0451408845'), + (2748, '0451088816'), + (2181, '0515090379'), + (10112, '0373242034'), + (10113, '0373707266'), + (269, '0373835493'), + (269, '0373835590'), + (269, '0373835582'), + (269, '0373834454'), + (269, '0373834446'), + (2248, '0380810492'), + (2181, '051510521X'), + (4050, '0895774011'), + (10114, '0590440675'), + (4050, '0895775522'), + (10115, '0801957729'), + (10116, '1931081727'), + (1155, '1931081727'), + (1366, '0808520695'), + (4730, '0449242765'), + (484, '0446329142'), + (484, '0446354678'), + (484, '0446341932'), + (268, '0060934700'), + (269, '0373834489'), + (10117, '0679409033'), + (568, '0066238501'), + (833, '0066238501'), + (369, '0553265741'), + (268, '0380977281'), + (364, '014100018X'), + (10118, '1556520743'), + (10119, '1556520743'), + (4202, '088396452X'), + (10120, '1567310877'), + (1891, '0441172695'), + (266, '0312865104'), + (10121, '088001380X'), + (10122, '0965834581'), + (269, '0373834462'), + (10123, '0373834462'), + (7570, '0345357019'), + (10124, '0679433228'), + (1987, '0446529540'), + (10125, '0681415207'), + (7652, '1861870019'), + (10126, '0811826848'), + (10127, '0375756469'), + (3826, '0375756469'), + (1450, '067164405X'), + (814, '0575061596'), + (98, '0340718153'), + (10128, '0380817845'), + (412, '0553560468'), + (10129, '0312868332'), + (484, '0446356832'), + (188, '0553263633'), + (5763, '0060976977'), + (188, '0553280325'), + (7530, '0373810431'), + (3469, '0373810482'), + (5244, '0373033605'), + (10130, '0373162669'), + (1833, '0373226063'), + (10131, '0373226063'), + (10132, '0373226063'), + (1196, '0446363499'), + (10133, '1583140379'), + (10134, '0373810601'), + (8860, '037307848X'), + (10135, '0373075502'), + (10136, '0373075502'), + (5210, '0373707010'), + (6703, '1551667959'), + (10137, '0373031106'), + (10138, '0373031106'), + (10139, '0373030959'), + (1196, '0671676245'), + (3906, '0373033923'), + (10140, '051788139X'), + (3327, '0141310685'), + (7532, '0373226276'), + (4392, '0373243952'), + (10141, '0375503838'), + (357, '0375503838'), + (4577, '0373243944'), + (5212, '0373709889'), + (10142, '0373709625'), + (7826, '0373600739'), + (10143, '0373243979'), + (92, '0345342445'), + (92, '0345350596'), + (3803, '0375503269'), + (3097, '0689711522'), + (3097, '0689710895'), + (10144, '0689710895'), + (8723, '0375815147'), + (2675, '0375815147'), + (624, '1557733856'), + (624, '0553294849'), + (624, '0553297341'), + (10145, '0898153778'), + (10146, '0880117168'), + (10147, '0880117168'), + (10148, '0880117168'), + (5608, '0590462237'), + (5609, '0590462237'), + (7426, '0307115208'), + (10149, '0743260244'), + (939, '0425115844'), + (624, '0553580523'), + (10150, '0915368587'), + (10151, '0915368587'), + (10152, '0915368587'), + (10153, '0915368587'), + (8723, '0679833692'), + (8723, '0394825985'), + (9158, '0759228086'), + (9158, '067144378X'), + (873, '0812502124'), + (873, '0812533593'), + (873, '0812533534'), + (5498, '0440236061'), + (3374, '0743444523'), + (7277, '0743474325'), + (2626, '067102406X'), + (619, '0061094560'), + (1883, '0451210891'), + (10154, '0345447409'), + (160, '0553571842'), + (10155, '0936034025'), + (160, '0553583441'), + (5100, '0425168948'), + (2603, '0786817070'), + (89, '0140230165'), + (10156, '0553258176'), + (160, '0553575538'), + (624, '1557734909'), + (1628, '034546074X'), + (10157, '0152325808'), + (10158, '0439163099'), + (10159, '0449000265'), + (7426, '0307119424'), + (7728, '0064400026'), + (258, '0064400026'), + (10160, '0307117375'), + (10161, '0307117375'), + (10162, '0307128865'), + (10163, '0307128865'), + (10164, '0307128865'), + (10165, '0816738556'), + (10166, '0816738556'), + (10167, '0874065925'), + (1768, '0440403553'), + (2340, '0439080967'), + (584, '0821769340'), + (1428, '0671885634'), + (2239, '0590442988'), + (909, '0553157124'), + (2593, '0380724332'), + (1432, '0684196387'), + (3749, '3596237262'), + (10168, '0140430091'), + (10169, '0140430091'), + (1305, '0140620249'), + (10170, '3499179806'), + (10171, '3499179806'), + (10172, '3453188519'), + (10173, '3453188519'), + (10174, '0140128107'), + (578, '0060164662'), + (24, '0385470819'), + (780, '0316779423'), + (10175, '0679419624'), + (149, '0375400699'), + (664, '0151000719'), + (773, '1841950521'), + (264, '0140366857'), + (4690, '0140366857'), + (10176, '2909051196'), + (10177, '2876916193'), + (3857, '2253170127'), + (60, '2253170372'), + (60, '2253170569'), + (10178, '2253001457'), + (749, '2253140872'), + (10179, '2253140872'), + (6967, '2070393577'), + (10180, '2070393577'), + (10181, '2070375609'), + (10182, '2070375722'), + (10183, '2070375722'), + (94, '2266002996'), + (10184, '2070322068'), + (732, '2253049417'), + (10185, '2253049417'), + (10186, '2253000868'), + (10177, '2253006866'), + (682, '2253002895'), + (10187, '2253051381'), + (10188, '2253037796'), + (10189, '2857043821'), + (151, '0061092606'), + (63, '0752804510'), + (4021, '0373270089'), + (10190, '0373123205'), + (10191, '0373037481'), + (10192, '0373118333'), + (10193, '0373196725'), + (3468, '0373613601'), + (10192, '0373196679'), + (1388, '0373123167'), + (10194, '0373036582'), + (10195, '0399206868'), + (920, '0060085444'), + (2165, '0373122829'), + (10196, '037316971X'), + (2165, '0373123248'), + (2233, '0590431250'), + (10197, '0373037449'), + (14, '0821766066'), + (2287, '0892964049'), + (732, '0618260307'), + (381, '0849995299'), + (285, '0553258656'), + (10198, '0553258656'), + (1159, '067081976X'), + (10199, '0020435207'), + (10200, '0020435207'), + (10201, '0151829756'), + (1043, '0060971819'), + (10202, '096444724X'), + (3770, '0140440399'), + (10203, '0140440399'), + (10202, '0140440399'), + (10204, '0140440399'), + (10205, '0871564599'), + (94, '0553247921'), + (906, '0671415948'), + (892, '0440215234'), + (10206, '0553290207'), + (10207, '0140149937'), + (10208, '0140444750'), + (10209, '0140444750'), + (7977, '0140017151'), + (10210, '0062740083'), + (412, '0385491085'), + (1600, '0670869902'), + (10211, '0345334930'), + (4414, '0553255851'), + (10212, '1904301088'), + (1699, '0517556278'), + (10213, '0517556278'), + (502, '0460876171'), + (10214, '0460876171'), + (5500, '0064401847'), + (7630, '0064401847'), + (10215, '0340188022'), + (1010, '0385315279'), + (10216, '051509465X'), + (3086, '0684174685'), + (414, '0553569074'), + (3654, '1571740252'), + (10217, '0425082202'), + (906, '039607412X'), + (867, '0671641778'), + (1092, '0671689711'), + (1245, '0440514428'), + (3096, '0449230279'), + (10218, '0440401224'), + (2572, '0553206575'), + (2331, '0553211013'), + (1876, '0553561278'), + (2340, '0449700712'), + (7761, '0440215978'), + (8027, '0064402967'), + (10219, '0064402967'), + (10220, '0553272586'), + (10221, '0553272586'), + (4118, '0375507507'), + (10222, '0898700744'), + (10223, '0898700744'), + (10224, '1576832899'), + (268, '0380817705'), + (10225, '0380817705'), + (8559, '0380817705'), + (10226, '0380817705'), + (10227, '0380817705'), + (628, '0060907894'), + (82, '014018371X'), + (10228, '014018371X'), + (10229, '014018371X'), + (10230, '0785107649'), + (10231, '0785107649'), + (2458, '1853261750'), + (1318, '0451197003'), + (1133, '0551031085'), + (142, '0451139712'), + (10232, '0553234811'), + (9705, '0394312066'), + (10233, '0394312066'), + (10234, '0226726770'), + (5926, '0880384514'), + (10235, '0671667815'), + (10236, '0671667815'), + (10237, '0553052268'), + (1041, '0553268945'), + (1042, '0553268945'), + (2615, '0345334515'), + (938, '0312140940'), + (10238, '0613117905'), + (10239, '0613117905'), + (10240, '0862648092'), + (10241, '0862648092'), + (10242, '074603010X'), + (7597, '074603010X'), + (10243, '0142300128'), + (10244, '0142300128'), + (10245, '0750003049'), + (10244, '0750003049'), + (10246, '0749720182'), + (10247, '0006642004'), + (10248, '0006642004'), + (10249, '0006643094'), + (439, '0006643094'), + (1584, '0689853491'), + (10250, '0689853491'), + (9945, '0744530717'), + (3117, '0679883878'), + (5016, '058242092X'), + (10251, '0749725028'), + (10245, '0434971383'), + (10252, '0805067868'), + (1412, '0811828379'), + (10253, '0811828379'), + (10254, '0140563733'), + (10255, '2253009164'), + (10256, '2070412571'), + (543, '0440224837'), + (10257, '0812520424'), + (10258, '0451198247'), + (10259, '2070362361'), + (10260, '2253152064'), + (10261, '0375726322'), + (3608, '2290314110'), + (1405, '2723407381'), + (1406, '2723407381'), + (10262, '2723407403'), + (10263, '2723407403'), + (10261, '2723407411'), + (10262, '2723407411'), + (274, '2070513726'), + (275, '2070513726'), + (274, '2070544281'), + (275, '2070544281'), + (10264, '2070544281'), + (3535, '2264027681'), + (410, '2266120158'), + (7604, '0723206015'), + (10265, '0843110589'), + (859, '014143984X'), + (10266, '014143984X'), + (10265, '014143984X'), + (10267, '014143984X'), + (10268, '2290307831'), + (6517, '0671619055'), + (2898, '2266022504'), + (10269, '2020291541'), + (10270, '2707318094'), + (10271, '2871294798'), + (10270, '287129478X'), + (721, '226612269X'), + (283, '2070375161'), + (10272, '0140274294'), + (1464, '2266085778'), + (10273, '2266085778'), + (1418, '2253001295'), + (10274, '273811167X'), + (1396, '2264028815'), + (10275, '2264028815'), + (256, '0752853694'), + (10276, '0971116288'), + (95, '0679416781'), + (10277, '0451528484'), + (4460, '0451528484'), + (10278, '156476303X'), + (9997, '2207300838'), + (10279, '2207300838'), + (815, '0380603764'), + (10280, '0345450515'), + (10281, '0671640003'), + (4486, '033390785X'), + (10282, '033390785X'), + (4912, '0156006332'), + (10283, '0451526988'), + (415, '0606006133'), + (10284, '0375725296'), + (3674, '0312420366'), + (1428, '0590673211'), + (10285, '1875657320'), + (10286, '0091832861'), + (1305, '1592247865'), + (10287, '0684852705'), + (10288, '0752817051'), + (168, '0140176616'), + (10289, '0330291610'), + (82, '1853260657'), + (10290, '0746020120'), + (10291, '0746020120'), + (10292, '0746020120'), + (10293, '0954395913'), + (2945, '0446691216'), + (10294, '1862071624'), + (10295, '1862071624'), + (10296, '0385336403'), + (3265, '1400075637'), + (3266, '1400075637'), + (3981, '1860491235'), + (10297, '044652719X'), + (10298, '0881104086'), + (10299, '075350507X'), + (10300, '2253152188'), + (6007, '0345439481'), + (10301, '3471794484'), + (7673, '0060000805'), + (7987, '0142003581'), + (10302, '156849663X'), + (10303, '1400060648'), + (10304, '014100374X'), + (10305, '0812541979'), + (95, '0679777377'), + (10306, '1585672939'), + (10307, '0007119860'), + (10308, '0061030015'), + (7314, '0531301427'), + (10309, '0140185844'), + (3473, '0743234413'), + (3473, '0743228480'), + (4435, '0743418735'), + (4435, '0671776134'), + (10310, '0965881261'), + (10311, '0140104569'), + (10312, '0330391763'), + (10313, '0330483013'), + (10314, '0312421184'), + (10315, '0747265097'), + (138, '0618446877'), + (723, '0679725229'), + (365, '0385418485'), + (10316, '0385319452'), + (1209, '0156001314'), + (1744, '0156001314'), + (1697, '1573229865'), + (10317, '0151004137'), + (10318, '1841955469'), + (8087, '0316353299'), + (10319, '1869503171'), + (1234, '0767903862'), + (1514, '0060931671'), + (10320, '0060730552'), + (323, '009179319X'), + (6091, '0743444329'), + (10321, '0743444329'), + (1326, '0812563581'), + (10322, '1558850945'), + (14, '1575664550'), + (10323, '0688145736'), + (10324, '1560796626'), + (61, '0684191415'), + (10325, '0140092501'), + (237, '0553265520'), + (1211, '074345300X'), + (10326, '1932270329'), + (1615, '0425191362'), + (1335, '0451401492'), + (2011, '0425042715'), + (4477, '0312304250'), + (10327, '0385508603'), + (142, '0399133143'), + (10328, '0570060265'), + (1001, '1558007725'), + (10329, '1558007725'), + (898, '0671882198'), + (10330, '1893910245'), + (10331, '1893910245'), + (145, '0425133516'), + (1282, '0553583298'), + (10332, '0375505547'), + (10333, '0375505547'), + (1245, '0899199089'), + (5310, '0899199089'), + (10334, '0151881006'), + (10335, '0425174360'), + (10336, '0802713815'), + (10337, '0875964125'), + (10338, '0875964125'), + (5181, '0385325126'), + (5182, '0385325126'), + (10339, '0486408760'), + (10002, '039588408X'), + (10340, '1569021074'), + (10341, '044801582X'), + (10342, '044801582X'), + (10343, '0844239461'), + (414, '0679439242'), + (10344, '0671017586'), + (10345, '0385140932'), + (10346, '0646286927'), + (3572, '0646286927'), + (7499, '0385490615'), + (10347, '0887482570'), + (10348, '0800705246'), + (8639, '0929587227'), + (1282, '0684855631'), + (10349, '0934971609'), + (10350, '0345382544'), + (4820, '0679775471'), + (308, '0156838389'), + (10351, '0156838389'), + (9539, '0156838389'), + (732, '0618129030'), + (10352, '0451162463'), + (7214, '0060536705'), + (4313, '0373708300'), + (621, '0373079621'), + (10353, '0373196636'), + (128, '0553562746'), + (3178, '0373706901'), + (10354, '0373871864'), + (5213, '0373706987'), + (9403, '0373707959'), + (5214, '037370836X'), + (10355, '037324522X'), + (10356, '037370822X'), + (10357, '0373259840'), + (919, '0373708084'), + (10358, '037330157X'), + (10359, '0061082945'), + (3643, '0771086776'), + (916, '0849938635'), + (10360, '0373706200'), + (3907, '0373707061'), + (4392, '1551666030'), + (554, '0553107232'), + (2256, '0778320138'), + (373, '0743431367'), + (10361, '0689856644'), + (543, '0440168724'), + (128, '0446527130'), + (1532, '0061096024'), + (7583, '0345289420'), + (5546, '0553576666'), + (9665, '0380787865'), + (10362, '0671774514'), + (2011, '0425060772'), + (10363, '0515129739'), + (10364, '0843948698'), + (10365, '0553584898'), + (6477, '0505524236'), + (10366, '0515130419'), + (10367, '0843948078'), + (10368, '0373192398'), + (10369, '0553267159'), + (10370, '0671629972'), + (10371, '0380777304'), + (10372, '0380777304'), + (1214, '0671039938'), + (2181, '0515118230'), + (2249, '0380806304'), + (2181, '0515101222'), + (3750, '0553285947'), + (1244, '0345447867'), + (1832, '0373512112'), + (7211, '037328800X'), + (10373, '0373700474'), + (10374, '0451207963'), + (1196, '0743467191'), + (532, '038075620X'), + (10375, '0373703023'), + (3750, '0553574078'), + (132, '055329945X'), + (10376, '0373511876'), + (532, '0515107662'), + (10377, '0380820056'), + (10378, '0802705499'), + (10379, '050552435X'), + (9526, '0373224818'), + (3241, '0061083275'), + (10380, '0373195036'), + (10381, '0373121709'), + (3911, '0505524333'), + (8446, '0373036485'), + (7450, '0373121601'), + (10382, '0373168438'), + (10383, '0373121857'), + (10384, '0505522969'), + (10385, '0828003882'), + (8866, '155166450X'), + (1754, '0671737821'), + (10386, '0451205189'), + (3339, '0821747703'), + (63, '0440213290'), + (10387, '0373226934'), + (6495, '038076735X'), + (10388, '0821768107'), + (9920, '0441791212'), + (7428, '0373707169'), + (10389, '0446346438'), + (10390, '0373226950'), + (2944, '0821740121'), + (8385, '0671521446'), + (10391, '0373169299'), + (1112, '067179793X'), + (2964, '0821768441'), + (2513, '0886777755'), + (10392, '0886777755'), + (10393, '0440225868'), + (7530, '0373222467'), + (3536, '0762406984'), + (7191, '0762406984'), + (10394, '0717802418'), + (10395, '0717802418'), + (10396, '477001970X'), + (10397, '477001970X'), + (10398, '1882180887'), + (574, '0345409663'), + (10399, '1878257528'), + (10400, '0865714487'), + (5020, '0865714487'), + (7548, '0679724494'), + (10401, '0805059970'), + (10402, '0805059970'), + (10403, '0805059970'), + (10404, '0805059970'), + (10405, '0071360166'), + (10406, '0300096860'), + (3211, '0300096860'), + (10407, '039472903X'), + (1171, '0851706517'), + (8293, '0670031518'), + (10408, '0786864230'), + (10409, '1852424214'), + (10410, '0465005225'), + (142, '0425104338'), + (142, '0451191935'), + (10411, '0671792288'), + (10412, '0787955876'), + (651, '0787955876'), + (10413, '0743242602'), + (10414, '0520204514'), + (1209, '0520204514'), + (10415, '0205318088'), + (10416, '0205318088'), + (1272, '014118485X'), + (6652, '1570623449'), + (10417, '0446672483'), + (10418, '0446672483'), + (10419, '1558681752'), + (10420, '0394743644'), + (10421, '0394743644'), + (1234, '0380713810'), + (10422, '067162248X'), + (10423, '0767913973'), + (2881, '0684867486'), + (10424, '1864502118'), + (10425, '1587410133'), + (10426, '0968246907'), + (10427, '0968246907'), + (10428, '0968246907'), + (10429, '0316441791'), + (6464, '0316441791'), + (10430, '0316441791'), + (10431, '0140125086'), + (10432, '0140125086'), + (10433, '0140260234'), + (10431, '0140260234'), + (10434, '0415222818'), + (10435, '1904048145'), + (10436, '1573922110'), + (10437, '0300087152'), + (1858, '0679756450'), + (10438, '0340802995'), + (10439, '0140140328'), + (814, '1573228583'), + (950, '0330334360'), + (8983, '0140286780'), + (10440, '0803959907'), + (10441, '0803959907'), + (4232, '0679734031'), + (10442, '0761123695'), + (220, '0060997028'), + (10443, '0060997028'), + (220, '0060997001'), + (10444, '0618219196'), + (10431, '0140289216'), + (10445, '0415167914'), + (10446, '0140135154'), + (85, '0553211684'), + (10447, '0553211684'), + (5466, '0375757325'), + (10448, '0684866005'), + (1804, '0684866005'), + (5012, '0451525914'), + (10449, '0451525914'), + (6024, '185788292X'), + (10450, '0345362322'), + (10451, '0874779472'), + (10452, '0393324869'), + (951, '0385722192'), + (142, '0743455967'), + (10453, '0679758941'), + (8639, '0151104212'), + (3419, '0679430946'), + (10454, '0688164080'), + (10455, '1565840968'), + (5763, '1565840968'), + (10456, '0385094027'), + (8525, '157322829X'), + (10457, '0130957011'), + (10458, '0130957011'), + (10459, '1840463503'), + (9984, '1840463503'), + (10460, '1840463503'), + (155, '0435240609'), + (10461, '0435240609'), + (10462, '0840339402'), + (10463, '0879804211'), + (10464, '0130647608'), + (10465, '0130647608'), + (7103, '0060931361'), + (10466, '0582037670'), + (10467, '0531110397'), + (10468, '0345333152'), + (10469, '0194315193'), + (10470, '0194315193'), + (10471, '0024031216'), + (10472, '0024031216'), + (9675, '0140137793'), + (10473, '0953309819'), + (10474, '1555831753'), + (199, '0062513982'), + (199, '006251279X'), + (10475, '0345453557'), + (10476, '093077356X'), + (4853, '0060191988'), + (10419, '068483992X'), + (10477, '0425133656'), + (10478, '0874221501'), + (10479, '0451525353'), + (10480, '0451525353'), + (10481, '1563054671'), + (10474, '0345453549'), + (10482, '1580420079'), + (10483, '0713440228'), + (1075, '0441004997'), + (1075, '0698119509'), + (10484, '0689821417'), + (10485, '0689821417'), + (10486, '0689821417'), + (10487, '067086935X'), + (10488, '0816743924'), + (10489, '0816743924'), + (873, '0765341174'), + (10490, '030768993X'), + (3172, '0679434054'), + (10491, '0679434054'), + (2249, '1570960305'), + (606, '0886777208'), + (1756, '0886777208'), + (606, '0886777550'), + (606, '0886777127'), + (606, '0886776619'), + (606, '0886776120'), + (606, '0886775639'), + (606, '0886774632'), + (6444, '0886775043'), + (9378, '0886775043'), + (606, '0886774144'), + (606, '0886774543'), + (606, '0886777739'), + (606, '0886774004'), + (606, '0886773776'), + (9985, '0671701843'), + (873, '0812535219'), + (873, '0312921098'), + (873, '0812533313'), + (873, '0812533577'), + (873, '0812500865'), + (873, '0812521358'), + (873, '0812523679'), + (873, '0812523040'), + (873, '0812533658'), + (873, '0812516850'), + (10492, '0669271896'), + (10493, '0669271896'), + (873, '0812532961'), + (873, '0812532988'), + (873, '0812532619'), + (873, '0812532635'), + (3302, '0886776589'), + (3302, '0886777151'), + (3302, '0886778603'), + (3302, '0886775493'), + (3302, '0886775205'), + (3302, '0886775035'), + (867, '0380775123'), + (4730, '0380775123'), + (606, '0380775123'), + (6773, '0061020427'), + (6773, '0061020419'), + (6773, '0061059773'), + (6773, '0061056294'), + (2941, '0451458028'), + (2941, '0451459423'), + (2941, '0451458990'), + (2941, '0451458508'), + (10494, '0746030517'), + (10495, '0746030517'), + (10496, '0874936225'), + (10497, '0965987302'), + (10498, '0965987302'), + (10499, '0688161162'), + (10500, '0875962432'), + (10501, '0875962432'), + (10502, '0201632721'), + (6798, '0553379534'), + (10503, '0894716174'), + (10504, '1556432151'), + (10505, '1891400495'), + (10506, '0671025554'), + (10507, '0316542377'), + (10508, '0912500867'), + (10509, '1558506438'), + (10510, '1558506438'), + (4919, '0316779059'), + (4918, '0316779059'), + (10511, '0764550039'), + (10512, '0192800493'), + (10513, '0192800493'), + (274, '0375815260'), + (275, '0375815260'), + (10514, '0882710583'), + (10515, '0882710583'), + (10516, '0882710583'), + (994, '0060256737'), + (994, '0060248025'), + (10517, '0880887575'), + (8396, '0786880007'), + (10518, '0793800153'), + (10519, '0595006035'), + (10518, '0595093019'), + (10520, '0761107363'), + (10521, '0761107363'), + (369, '0515136379'), + (369, '0515136530'), + (1426, '0553288202'), + (5538, '0812545990'), + (4920, '0671524313'), + (369, '051513628X'), + (10522, '0912500522'), + (10523, '0912500549'), + (2941, '0451529014'), + (3302, '0886777593'), + (3302, '0886777011'), + (543, '0385294638'), + (5437, '0486275728'), + (10524, '156402976X'), + (10525, '156402976X'), + (7559, '0895779129'), + (10526, '0060950536'), + (10527, '0895295458'), + (10528, '0895295458'), + (10529, '0688117619'), + (10530, '0671027441'), + (2239, '0590448293'), + (2241, '0590448285'), + (5608, '059046597X'), + (5609, '059046597X'), + (5608, '0590455788'), + (5609, '0590455788'), + (10531, '0590455788'), + (2179, '0439222303'), + (10532, '0439222303'), + (10533, '0786710330'), + (4696, '0786814241'), + (3090, '0439176824'), + (2237, '0590956159'), + (964, '0590010891'), + (7886, '0590010891'), + (10534, '0142302163'), + (5406, '038071907X'), + (10535, '1565111575'), + (10536, '1565111575'), + (4593, '1567187293'), + (10537, '1561008931'), + (10536, '1561008931'), + (10538, '0671038931'), + (10539, '0671038931'), + (10540, '1570420564'), + (10541, '1570420564'), + (10129, '0373691653'), + (10542, '0448426862'), + (141, '0448426862'), + (10543, '0448426862'), + (2241, '059047054X'), + (10544, '0881848603'), + (10545, '0806512318'), + (10546, '0806512318'), + (14, '0806512318'), + (10547, '0394563131'), + (10546, '0394553284'), + (10548, '0688047211'), + (5052, '0151879834'), + (1065, '0345351738'), + (142, '0451125452'), + (142, '0451149513'), + (2268, '037328960X'), + (2080, '093317490X'), + (10549, '0764550349'), + (10550, '0764550349'), + (10551, '0373638167'), + (4520, '0441693237'), + (4520, '1572970944'), + (4520, '0441000762'), + (10552, '1559029897'), + (2568, '0679805265'), + (10553, '0394843509'), + (6237, '0373765649'), + (10554, '0373642970'), + (10553, '0373642962'), + (10555, '0373642954'), + (10554, '0373642946'), + (10554, '0373642938'), + (10554, '0373642911'), + (10554, '0373642903'), + (10554, '0373642857'), + (10554, '0373642849'), + (10554, '0373642822'), + (10554, '037364292X'), + (10554, '0373614918'), + (3317, '0373632452'), + (10556, '0373632452'), + (10557, '0440219035'), + (10554, '0373619472'), + (10554, '0373619499'), + (10554, '0373619502'), + (10554, '0373614896'), + (10550, '0373638078'), + (10558, '0803298145'), + (10559, '0803298145'), + (806, '0803298145'), + (1397, '0743486625'), + (2223, '034528710X'), + (10560, '0671803530'), + (10554, '037361490X'), + (597, '0590880748'), + (2237, '0590879979'), + (2237, '0590880780'), + (832, '0590880780'), + (10552, '0679811761'), + (10561, '0440920221'), + (10562, '0698119916'), + (2182, '0441007732'), + (10563, '097089726X'), + (10564, '097089726X'), + (10565, '037379116X'), + (10566, '0060506989'), + (7499, '0451191579'), + (3081, '0375706933'), + (10567, '0345423038'), + (3662, '0553073273'), + (10568, '038513097X'), + (10546, '0394531094'), + (10569, '0394531094'), + (10570, '0786807555'), + (10554, '0373614845'), + (128, '0553290851'), + (3996, '0886774829'), + (3996, '0886774500'), + (3996, '0886775426'), + (3996, '0886775957'), + (1298, '0671693816'), + (10571, '0785276890'), + (2946, '0743445813'), + (10572, '0743445813'), + (6050, '0843949856'), + (2824, '0440222109'), + (10573, '1565928431'), + (10574, '1931836876'), + (10575, '1931836876'), + (10576, '1931836876'), + (10577, '1931836876'), + (10578, '1931836876'), + (10579, '096265342X'), + (10580, '096265342X'), + (10581, '0596000588'), + (10582, '0596000588'), + (10583, '1565927206'), + (10584, '1565927206'), + (10585, '1565927206'), + (10586, '1565926994'), + (10587, '1565926994'), + (10588, '0486211339'), + (10589, '0486211339'), + (10590, '0914918346'), + (10591, '0835605728'), + (10592, '0072131780'), + (10593, '042504842X'), + (10594, '0441760066'), + (10595, '0553268546'), + (10594, '0671831593'), + (3195, '0445201223'), + (3195, '0446912689'), + (8743, '0671559060'), + (122, '0671019813'), + (10596, '0671019813'), + (10597, '0061097195'), + (2504, '0441653162'), + (10598, '0441653162'), + (10599, '0671440683'), + (10600, '0441775578'), + (2372, '0671002570'), + (2371, '0671002570'), + (10601, '0671002570'), + (4237, '0671656597'), + (1397, '0380896354'), + (598, '0441091660'), + (10602, '0671698508'), + (5855, '0451132319'), + (3379, '0345370732'), + (1302, '0812525752'), + (9239, '0425074498'), + (732, '0345296052'), + (2367, '0523485263'), + (10603, '0879977051'), + (10604, '0446890359'), + (10605, '0441896448'), + (577, '0380699575'), + (10606, '0942024001'), + (10607, '052547014X'), + (10608, '0892131144'), + (10609, '067183276X'), + (1302, '0812533496'), + (732, '0345296044'), + (10610, '0671658131'), + (3367, '0671658131'), + (1397, '0441102573'), + (1704, '0553287737'), + (606, '0812521048'), + (433, '0345368959'), + (433, '0345285980'), + (9258, '0553248456'), + (142, '0451161343'), + (3310, '0451161343'), + (867, '0879977620'), + (867, '0879979623'), + (9801, '0879979623'), + (867, '044106857X'), + (867, '0879978066'), + (867, '0345315642'), + (867, '0886771854'), + (10611, '0886771854'), + (10612, '0886771854'), + (784, '0451454081'), + (867, '0886770963'), + (867, '0886774519'), + (867, '0879978155'), + (10613, '0879978155'), + (1065, '0345303067'), + (867, '0671448757'), + (867, '0441892558'), + (867, '0886770750'), + (867, '0812500067'), + (867, '0879978570'), + (10614, '0671440349'), + (7200, '0671833073'), + (7200, '0671633295'), + (973, '0553291165'), + (2368, '0671632671'), + (2368, '0671618733'), + (867, '0441159354'), + (10615, '0553231251'), + (867, '0345288300'), + (867, '0671448773'), + (867, '0879979283'), + (867, '0886770416'), + (10616, '0425058646'), + (10608, '0671465414'), + (2292, '0671794264'), + (873, '044018178X'), + (9343, '0441138764'), + (873, '0441918107'), + (2694, '0061099643'), + (784, '0451452941'), + (784, '0451452305'), + (784, '0451454499'), + (10617, '0671832972'), + (10618, '0671836323'), + (9343, '0441065848'), + (873, '0425058190'), + (10619, '0786014652'), + (5352, '0743424387'), + (4567, '0800758056'), + (117, '047121888X'), + (10620, '1588720284'), + (1628, '0345460693'), + (9409, '0446613681'), + (606, '0886773199'), + (1094, '0553574582'), + (606, '0886772222'), + (606, '0886772559'), + (606, '0886771897'), + (606, '0886772850'), + (10621, '0671578510'), + (10622, '0786006579'), + (10623, '0061098353'), + (3998, '0756400147'), + (436, '0449007383'), + (10624, '0802773524'), + (10625, '0425170470'), + (1658, '0878331824'), + (1659, '0878331824'), + (10525, '0060937645'), + (10626, '0789488914'), + (10627, '0020960808'), + (10628, '0449703274'), + (8543, '0380542625'), + (4486, '0312983220'), + (10629, '0515135747'), + (10630, '0071414975'), + (10629, '0071383832'), + (4362, '0071383832'), + (10631, '1855858320'), + (10632, '1400047064'), + (10633, '1570671273'), + (10634, '1570671273'), + (10635, '0062517791'), + (10636, '0062517821'), + (6427, '089529768X'), + (10629, '0071407944'), + (10637, '0446521612'), + (10638, '1562059513'), + (10639, '1562059513'), + (10640, '0441116868'), + (10641, '0425052990'), + (580, '0425062856'), + (10000, '044921852X'), + (10642, '0758201931'), + (10643, '0340182563'), + (10644, '0385018681'), + (10645, '0446936383'), + (10646, '0460016989'), + (10647, '0932870171'), + (10648, '0932870171'), + (10649, '0394730526'), + (10650, '0133143023'), + (10651, '0671795988'), + (10652, '0801615194'), + (10653, '0801615194'), + (10654, '0139634479'), + (10655, '0679504885'), + (7499, '0882293613'), + (10656, '0882293613'), + (3751, '0030632366'), + (10657, '0882840185'), + (10658, '0897890272'), + (10659, '0897890272'), + (10660, '0898620406'), + (10661, '0898620406'), + (10662, '0030589533'), + (5564, '0151712824'), + (10663, '0312191952'), + (2075, '0312019009'), + (2075, '031209261X'), + (10664, '0446518220'), + (10665, '0446518220'), + (2055, '0446518220'), + (10666, '0786861657'), + (10667, '0786861657'), + (10668, '0684803976'), + (10669, '0684803976'), + (10670, '0131953621'), + (135, '0449903001'), + (10671, '0895942402'), + (10672, '0553052691'), + (10673, '0671669583'), + (10674, '0534129064'), + (10675, '1559723009'), + (10676, '1556111401'), + (2504, '0441515444'), + (10677, '0441515444'), + (10678, '0441515444'), + (10679, '0553341014'), + (10680, '0671808427'), + (1498, '0812583361'), + (10681, '0671523627'), + (10682, '0812880145'), + (822, '0449237842'), + (2516, '0440980429'), + (1265, '0449243842'), + (10683, '0804101787'), + (867, '0441791131'), + (10684, '0441791131'), + (2889, '0931580366'), + (10685, '0931580366'), + (10686, '0931580366'), + (10687, '0385054882'), + (1180, '0446360430'), + (9343, '0446360430'), + (4730, '0312855486'), + (606, '0312855486'), + (10676, '0312855486'), + (10688, '0930436024'), + (2923, '0840764049'), + (122, '0671896776'), + (10689, '0345272463'), + (433, '0345257448'), + (433, '0441735762'), + (433, '0345273575'), + (433, '0345256662'), + (2307, '0671698702'), + (10690, '0671464795'), + (433, '0345272455'), + (10691, '044173684X'), + (2307, '0671721178'), + (585, '0345379144'), + (2504, '0345277406'), + (2504, '0441167128'), + (7081, '0441167128'), + (2515, '0671495003'), + (10692, '0671495003'), + (7645, '0425056023'), + (9240, '0671833987'), + (9241, '0671833987'), + (9240, '0553113925'), + (2987, '034528643X'), + (10693, '034528643X'), + (7645, '0425055272'), + (7645, '0425047253'), + (9240, '0671833995'), + (9241, '0671833995'), + (10694, '0671836927'), + (2515, '0671625810'), + (1101, '0671635743'), + (9147, '0671547305'), + (10695, '0441889697'), + (10694, '0425055914'), + (10694, '0425045404'), + (2504, '0345275497'), + (92, '0425030520'), + (92, '0345260724'), + (6568, '0671806769'), + (10696, '0523419562'), + (10697, '0425050424'), + (2691, '0425037967'), + (6568, '0671442260'), + (6568, '0671549952'), + (10698, '0451171845'), + (10699, '0451171845'), + (10700, '0312913435'), + (10701, '0553236679'), + (10702, '0425050343'), + (3079, '0061030643'), + (10703, '0886779200'), + (10704, '0886779200'), + (4485, '0515130125'), + (10705, '0345291158'), + (10011, '0312974728'), + (10706, '0345298713'), + (10707, '0345308476'), + (1210, '0441370594'), + (1210, '0671473905'), + (10708, '0451115481'), + (10709, '0446327085'), + (1498, '0446349461'), + (1498, '0446346829'), + (501, '0440204925'), + (6177, '0440145465'), + (179, '0671797050'), + (867, '0553290797'), + (2681, '0553290797'), + (4730, '0553290797'), + (10710, '0671653601'), + (606, '0671721224'), + (8410, '0671721224'), + (10711, '0425033260'), + (10712, '088950900X'), + (10709, '067155915X'), + (2835, '0441227449'), + (10713, '087216683X'), + (1687, '0872168026'), + (10714, '0345397371'), + (2515, '0671531360'), + (4250, '0425084574'), + (921, '0879977906'), + (10715, '0879977906'), + (10716, '0879977906'), + (10717, '0553204769'), + (10718, '0449232085'), + (2784, '0553246089'), + (10086, '0440948754'), + (10719, '0425054578'), + (4764, '0449236714'), + (10720, '0446957402'), + (10721, '0380482800'), + (10722, '0449245284'), + (5416, '0380770210'), + (10723, '0440110602'), + (10724, '0440128757'), + (10725, '0671415018'), + (10726, '0451115589'), + (4619, '0553260219'), + (8404, '0671722026'), + (2386, '0812545540'), + (2515, '0812545540'), + (2381, '0425046648'), + (3074, '0345275187'), + (10727, '0671832867'), + (10728, '0345357620'), + (10729, '0425040801'), + (10730, '0425040801'), + (9304, '0441003435'), + (10731, '0441003435'), + (10732, '0812545508'), + (8772, '0345361407'), + (10733, '055323577X'), + (10734, '0451401905'), + (5659, '0553249533'), + (10717, '0449238121'), + (4764, '0449201147'), + (10735, '0425053008'), + (4653, '0345382447'), + (10736, '0441373879'), + (10737, '0380872625'), + (575, '0446322563'), + (10738, '082171306X'), + (4082, '0449240886'), + (10739, '0553258311'), + (745, '1559702125'), + (10740, '0671622358'), + (10741, '0395247764'), + (10742, '0393310477'), + (10743, '0345326962'), + (241, '0553227041'), + (10744, '0446794031'), + (10745, '0671658875'), + (10746, '0394499026'), + (2011, '0399129723'), + (10747, '1555610889'), + (10748, '1556522347'), + (10749, '1556522347'), + (2306, '0812585151'), + (10750, '0312970617'), + (2011, '0425039048'), + (2694, '0671743872'), + (10751, '0684852802'), + (1214, '0671468200'), + (10724, '0671428306'), + (10752, '1573220000'), + (10753, '1573220000'), + (10754, '1573220000'), + (436, '0449209695'), + (436, '0449206181'), + (5112, '1551668467'), + (10755, '0345254112'), + (890, '0451204891'), + (122, '0743437888'), + (4571, '0345423615'), + (2934, '038072880X'), + (10756, '0688143660'), + (10757, '0688143660'), + (552, '0380724987'), + (10758, '0451205073'), + (606, '0756400619'), + (151, '006109918X'), + (241, '0553576623'), + (1498, '0812575962'), + (10759, '0553289640'), + (2500, '0553262009'), + (2501, '0553564013'), + (10760, '0590403370'), + (2179, '0553155040'), + (746, '0064408655'), + (747, '0064408655'), + (2498, '0064408655'), + (10761, '0385337116'), + (10762, '0385337116'), + (10763, '0373260776'), + (10764, '0671793225'), + (571, '0425136191'), + (10765, '044175046X'), + (374, '0446348287'), + (10766, '0373261071'), + (2981, '0394820304'), + (1194, '0671502948'), + (182, '0671502948'), + (2241, '0590408747'), + (8264, '0590408747'), + (176, '0671746065'), + (10767, '059033560X'), + (2340, '0449702766'), + (2542, '0441800106'), + (571, '0451119932'), + (1878, '0140291954'), + (1965, '0425171973'), + (873, '0765340054'), + (10768, '0345275861'), + (10769, '0451160312'), + (1625, '0786013567'), + (913, '0812509145'), + (2224, '0812524608'), + (10770, '0812524608'), + (1801, '0446603775'), + (5012, '0451525299'), + (10448, '0451525299'), + (746, '0064408663'), + (747, '0064408663'), + (2498, '0064408663'), + (2494, '0671034251'), + (10771, '0937295221'), + (10772, '0937295221'), + (10773, '0937295221'), + (1748, '0937295477'), + (10774, '1562471171'), + (10775, '1562471171'), + (10776, '1562471171'), + (274, '0141301058'), + (275, '0141301058'), + (10777, '0439078059'), + (10778, '0916773752'), + (10779, '0916773752'), + (10780, '0026890380'), + (933, '0026890380'), + (10781, '039922405X'), + (10782, '039922405X'), + (1410, '0679830006'), + (1411, '0679830006'), + (1410, '0679877061'), + (1411, '0679877061'), + (599, '0307128385'), + (1586, '0060235330'), + (10783, '0060235330'), + (1410, '0679848053'), + (1411, '0679848053'), + (10784, '0395827418'), + (1410, '0679864342'), + (1411, '0679864342'), + (1410, '0394873335'), + (1411, '0394873335'), + (432, '0312180624'), + (10785, '0451171616'), + (1748, '0937295906'), + (10775, '0937295906'), + (10786, '0937295906'), + (1748, '0937295167'), + (1748, '0937295256'), + (10787, '0937295256'), + (1748, '0937295434'), + (10788, '0937295043'), + (10775, '0937295043'), + (2735, '0937295043'), + (2239, '0590298356'), + (3231, '0374109990'), + (10789, '0345329163'), + (2011, '0399137629'), + (10790, '0812568788'), + (7426, '0307168409'), + (7604, '0723236658'), + (10791, '1570824304'), + (5677, '0064440168'), + (4061, '0156849097'), + (3207, '0918956730'), + (3207, '0918956463'), + (10792, '0970760094'), + (63, '0440213029'), + (10793, '0025003305'), + (436, '0449219372'), + (281, '0440223016'), + (6842, '0786867752'), + (4851, '1565073541'), + (10794, '1565073541'), + (10795, '1565073541'), + (1646, '0688031188'), + (10796, '0688031188'), + (10797, '1890437557'), + (10798, '0671657135'), + (734, '0745926290'), + (1965, '0451628330'), + (10799, '0451628330'), + (10800, '014027684X'), + (567, '0849942187'), + (1997, '0446607339'), + (10801, '0898157803'), + (10802, '0898157803'), + (5695, '0140279288'), + (10803, '0805421351'), + (10804, '0805421351'), + (10805, '0805421351'), + (10806, '0967307902'), + (2968, '0804111154'), + (5591, '1556616120'), + (5591, '155661456X'), + (10807, '0871915537'), + (284, '1561797464'), + (10808, '1561797464'), + (10809, '0380787814'), + (10810, '0380787814'), + (10811, '0736903054'), + (2548, '0874869870'), + (1755, '0874869870'), + (10076, '0805029486'), + (40, '0020869002'), + (10812, '0684835525'), + (10813, '0939431238'), + (10814, '0684852772'), + (1594, '1576738590'), + (10815, '0806961740'), + (810, '1565121562'), + (10816, '0806624302'), + (10817, '0806624302'), + (10818, '0345319672'), + (7315, '0689824351'), + (10819, '0310322413'), + (40, '0684823772'), + (2942, '0375410546'), + (10820, '0800786084'), + (965, '0812505123'), + (8064, '1564766047'), + (10821, '1561794708'), + (2495, '0786883375'), + (76, '0671753819'), + (3776, '0140094385'), + (5356, '0373245076'), + (6176, '0440766419'), + (10822, '0892838981'), + (1845, '0345439252'), + (3359, '0671872672'), + (5068, '0395070902'), + (7075, '0440942500'), + (1580, '0061056987'), + (1581, '0061056987'), + (1582, '0061056987'), + (5586, '0684835355'), + (10823, '0451129040'), + (10824, '0310216222'), + (10825, '0310216222'), + (403, '0553211587'), + (10826, '0310211883'), + (10827, '0310211883'), + (381, '1576737284'), + (10828, '0060186860'), + (10829, '0060186860'), + (10830, '0843951141'), + (6023, '0671643126'), + (8727, '1567184855'), + (7204, '0812521757'), + (10831, '0786813334'), + (822, '0449215296'), + (1755, '0440498058'), + (10832, '0971290903'), + (274, '0141311908'), + (10833, '0310514916'), + (10834, '0064401324'), + (10835, '0064401324'), + (10836, '0671702262'), + (10835, '0671702262'), + (10837, '0819310077'), + (3314, '0688025072'), + (4033, '0140430113'), + (10838, '0140430113'), + (10839, '0849941768'), + (4889, '0849941768'), + (40, '0156329301'), + (10840, '0387986065'), + (5180, '0385066392'), + (162, '0553212060'), + (3207, '0842345523'), + (6316, '1556614373'), + (2404, '1556614373'), + (6316, '1556616996'), + (2404, '1556616996'), + (6316, '1556616988'), + (2404, '1556616988'), + (5591, '0871237954'), + (1198, '0380726815'), + (2418, '0671729896'), + (568, '0064471098'), + (833, '0064471098'), + (10841, '1570361975'), + (3416, '0226500578'), + (4889, '0849910013'), + (965, '048626968X'), + (181, '048626968X'), + (10842, '0849911672'), + (10347, '0800717147'), + (10843, '0800717147'), + (10844, '0800717147'), + (10845, '0880702753'), + (7819, '1565073584'), + (10846, '1565073584'), + (10847, '071483839X'), + (3345, '0345301137'), + (1519, '1593080549'), + (10848, '1593080549'), + (10849, '051788206X'), + (10850, '0743442482'), + (10851, '0375503897'), + (10852, '0375503897'), + (10853, '0375503897'), + (7798, '0899198929'), + (397, '0671722654'), + (10854, '067084134X'), + (10855, '0399525750'), + (10856, '0062554735'), + (25, '0452282195'), + (2931, '0394742117'), + (10857, '0618119809'), + (580, '0425097269'), + (6369, '0060924179'), + (5188, '1583225498'), + (10858, '1583225498'), + (9539, '0195061675'), + (10859, '0195061675'), + (972, '0060929979'), + (10860, '0962197963'), + (56, '1566190932'), + (397, '0451521250'), + (10861, '0451521250'), + (397, '0451521323'), + (10862, '0451521323'), + (1773, '0061054887'), + (965, '0486270637'), + (10863, '0271007494'), + (10864, '0060977205'), + (10865, '0394172663'), + (25, '0679745424'), + (10866, '0915943565'), + (10867, '0915943565'), + (10868, '0140120491'), + (10867, '0140120491'), + (10869, '1556151047'), + (10870, '1556151047'), + (10871, '0804832560'), + (10872, '0804832560'), + (10873, '1570613028'), + (1457, '044900483X'), + (2146, '0679422188'), + (10874, '0553206036'), + (10875, '1582431485'), + (10876, '0071360638'), + (10877, '039597707X'), + (10878, '039597707X'), + (10879, '0918949165'), + (10880, '0918949165'), + (25, '037540273X'), + (115, '0449227545'), + (145, '0425171884'), + (84, '0425171884'), + (906, '0061003638'), + (2026, '1561003913'), + (10881, '1561003913'), + (10882, '0393314812'), + (309, '0553279718'), + (309, '0553269828'), + (10883, '0425164829'), + (10884, '0312006926'), + (10885, '0312006926'), + (427, '0060830719'), + (10886, '0553274872'), + (10887, '0553274872'), + (10888, '0874776953'), + (10889, '1886039224'), + (10890, '0935908315'), + (10891, '0231121989'), + (10892, '0231121989'), + (10893, '0385094787'), + (10894, '0832903930'), + (10895, '0832903930'), + (10896, '0832903930'), + (178, '0553214187'), + (10897, '0553214187'), + (10898, '0312286236'), + (552, '0380726254'), + (10899, '0071387218'), + (10900, '0062505319'), + (10901, '0679872027'), + (2889, '0931580617'), + (2888, '0931580617'), + (3615, '0553238000'), + (5696, '087131794X'), + (10902, '087131794X'), + (2893, '0786864680'), + (2893, '1561703184'), + (2888, '0931580242'), + (10903, '0440193567'), + (10695, '0380706512'), + (10904, '0380706512'), + (10905, '0671707248'), + (10906, '0895860724'), + (10907, '0882668870'), + (10908, '0609803387'), + (2872, '042518403X'), + (10909, '1584855185'), + (10910, '1584855185'), + (2030, '0451625552'), + (10911, '0786011661'), + (1452, '0451157087'), + (10912, '0451157087'), + (10913, '0451405897'), + (10914, '0395860032'), + (10915, '0395860032'), + (10916, '0395860032'), + (4415, '0689821867'), + (10917, '0689821867'), + (10918, '0619016620'), + (10919, '0914881655'), + (10920, '0877931003'), + (1607, '0374515360'), + (10159, '0307617963'), + (10921, '0060193387'), + (10922, '067950754X'), + (10923, '0517576988'), + (10924, '0747545847'), + (5642, '0385261764'), + (10925, '0887291058'), + (10926, '0312157061'), + (10927, '0312157061'), + (1273, '0915811642'), + (10928, '0393962873'), + (10929, '0553207628'), + (10930, '0752500260'), + (10931, '0871318903'), + (10932, '0140141510'), + (4375, '014005264X'), + (10933, '014005264X'), + (10934, '0451628667'), + (10935, '1884910009'), + (10936, '0688075665'), + (3792, '0312194390'), + (10937, '0843711299'), + (10938, '0843711299'), + (10939, '0843711299'), + (284, '0451522923'), + (10940, '0451522923'), + (10941, '0696013908'), + (10942, '0696023644'), + (10943, '0800864166'), + (10944, '0781805899'), + (1904, '0201043823'), + (10945, '0631158189'), + (10946, '0205152074'), + (10947, '0205126987'), + (2872, '0425171493'), + (10948, '157224223X'), + (10949, '0449704335'), + (10950, '0864426488'), + (10949, '0864426488'), + (10951, '0898798140'), + (10952, '0361074662'), + (1597, '0140445587'), + (9690, '0140445587'), + (10953, '0060830476'), + (10954, '0060830476'), + (10955, '0375708111'), + (4148, '0385477058'), + (10956, '0517589818'), + (10957, '0201340208'), + (10958, '0201340208'), + (10959, '0195017854'), + (10960, '0892434090'), + (10961, '0892434090'), + (2872, '0425187144'), + (10962, '0151004943'), + (3560, '0306811588'), + (6572, '0743234979'), + (10963, '0374106843'), + (10964, '0374106843'), + (1732, '0394568354'), + (10965, '0520063279'), + (10966, '0394529383'), + (10967, '0394529383'), + (90, '0140441077'), + (10968, '0140441077'), + (10967, '0140441077'), + (10969, '0764801422'), + (10970, '0764801422'), + (10971, '0764801422'), + (10972, '0764801422'), + (10973, '0684195208'), + (10962, '0553100793'), + (10974, '0140055312'), + (10975, '0451522397'), + (10976, '0906138213'), + (10977, '3423078006'), + (10978, '0895862530'), + (10979, '0895861682'), + (10980, '0895861682'), + (10981, '1551800713'), + (10982, '0882951017'), + (10983, '0882951017'), + (10984, '0394752937'), + (10985, '0394752937'), + (10986, '0060653035'), + (9723, '0801522315'), + (10987, '0713990988'), + (10988, '1568360290'), + (628, '0385720254'), + (10989, '0385720254'), + (10990, '0631133917'), + (10991, '0688024610'), + (10992, '0399123237'), + (10993, '0452006228'), + (10994, '031210104X'), + (10995, '031210104X'), + (10996, '031210104X'), + (10997, '063118449X'), + (10998, '0253204232'), + (10999, '0933932669'), + (11000, '0933932669'), + (11001, '0933932669'), + (11002, '0933932669'), + (11003, '0933932669'), + (11004, '0155013459'), + (11005, '006064205X'), + (3785, '1573225681'), + (60, '0684856603'), + (11006, '0006329527'), + (11007, '0520011309'), + (10983, '0394752996'), + (11008, '0030056284'), + (11009, '0030056284'), + (11010, '0312155948'), + (11011, '0895261677'), + (679, '0449209113'), + (2791, '0743204123'), + (6680, '0061096962'), + (11012, '0840795319'), + (2706, '1573228834'), + (415, '0553212486'), + (11013, '0440237084'), + (415, '0486266907'), + (11014, '0800871863'), + (11015, '0800871863'), + (11016, '023399226X'), + (11017, '0060812494'), + (11018, '0140044507'), + (11019, '1556520794'), + (11020, '0394717953'), + (4409, '1894877233'), + (11021, '0312118341'), + (11022, '0670886955'), + (412, '0385491077'), + (11023, '0316355208'), + (2872, '0425167801'), + (11024, '0873326903'), + (11025, '0873326903'), + (2208, '067975833X'), + (11026, '0786889624'), + (536, '0446343455'), + (11027, '0916410641'), + (11028, '0916410641'), + (2011, '0399131256'), + (1092, '0671454056'), + (1998, '0553239813'), + (1891, '0425045048'), + (11029, '0425045048'), + (1773, '0553234617'), + (1740, '0380000547'), + (11030, '0453010105'), + (606, '0671721755'), + (187, '0671721755'), + (854, '0345257189'), + (854, '0345257170'), + (854, '0345257162'), + (11031, '0684825457'), + (325, '0345335651'), + (2991, '067170561X'), + (410, '0553109405'), + (6854, '0671735160'), + (2681, '0345355237'), + (3367, '0671894226'), + (5004, '0671894226'), + (1759, '0140296441'), + (11032, '3518393421'), + (8632, '344272578X'), + (11033, '3257231652'), + (2915, '3257231652'), + (11034, '3492220169'), + (11035, '3492220169'), + (11036, '3492220169'), + (3037, '3404123425'), + (4307, '3404122763'), + (11037, '3548252192'), + (863, '3499233002'), + (11038, '3499233002'), + (11039, '3746650291'), + (2331, '3458335684'), + (2538, '3442420970'), + (2539, '3442420970'), + (3055, '3442424747'), + (2302, '3442424747'), + (11040, '3404147596'), + (848, '325720485X'), + (2611, '325720485X'), + (11041, '3453150244'), + (11042, '3453150244'), + (11043, '3453150244'), + (10098, '3423202823'), + (11044, '3627000927'), + (11045, '3596141990'), + (7356, '354824789X'), + (8627, '349922710X'), + (11046, '349922710X'), + (11047, '3423130199'), + (3827, '3423130199'), + (25, '3499228548'), + (11048, '3499228548'), + (11049, '3499228548'), + (11050, '3442728363'), + (11051, '3442728363'), + (4640, '3596150531'), + (7078, '0316358568'), + (1158, '0836220676'), + (2981, '0688124887'), + (4250, '044100895X'), + (4250, '0441004385'), + (11052, '042507448X'), + (397, '1853260096'), + (11053, '0425132153'), + (4099, '0064408086'), + (4376, '0345320115'), + (3716, '0345328175'), + (11054, '0312860684'), + (11055, '0441007961'), + (11054, '0441007570'), + (11054, '0441007023'), + (11054, '0441009972'), + (4794, '0345319656'), + (4376, '0345335805'), + (4794, '0345296710'), + (4794, '0345296702'), + (11056, '1569316961'), + (11055, '1569316961'), + (8723, '0394832205'), + (6387, '0451207246'), + (11057, '0823414566'), + (11058, '0803720947'), + (1584, '0883659662'), + (5011, '0893753688'), + (11059, '0521398266'), + (11060, '0060936800'), + (11061, '0060096195'), + (8608, '0373250533'), + (11062, '0375503846'), + (6309, '037325041X'), + (11063, '0805064346'), + (7115, '0376026138'), + (10848, '051788268X'), + (11064, '051788268X'), + (11065, '039470780X'), + (11066, '0140388419'), + (11067, '1568361815'), + (11068, '0060509392'), + (6414, '0375507124'), + (3264, '0385322135'), + (11069, '0027357813'), + (1853, '0060235284'), + (11070, '0060235284'), + (7768, '0688068677'), + (3787, '0679886370'), + (11071, '0374336644'), + (11072, '0439053870'), + (11073, '0525459685'), + (11074, '039923389X'), + (11075, '0375726632'), + (4077, '1584790679'), + (11076, '0525946276'), + (11070, '0374437165'), + (11077, '0312284535'), + (11078, '0060544260'), + (11079, '1581570007'), + (11080, '0394555295'), + (11081, '0394555295'), + (11082, '0152167919'), + (11083, '0312046448'), + (11084, '0312046448'), + (1470, '0894800159'), + (1471, '0894800159'), + (1480, '0894800159'), + (11085, '1400032644'), + (11086, '0385721897'), + (11087, '0451209028'), + (11088, '0373250258'), + (9007, '0517703777'), + (11089, '0517703777'), + (11090, '1560442956'), + (280, '0373250487'), + (714, '0525942254'), + (3912, '0399145362'), + (363, '038071082X'), + (58, '0060157992'), + (9016, '0786710101'), + (7372, '0553801414'), + (11091, '0670850780'), + (3254, '0385320175'), + (11092, '0789308894'), + (11093, '0789308894'), + (98, '0385501005'), + (6232, '0060290307'), + (242, '059055204X'), + (11094, '059055204X'), + (11095, '059055204X'), + (1755, '0374416842'), + (11096, '0374416842'), + (11097, '0881011126'), + (11096, '0881011126'), + (10976, '0140322051'), + (11098, '0140322051'), + (11099, '0195154991'), + (11100, '0195154991'), + (11101, '0141308419'), + (11102, '0805037152'), + (3693, '0515127485'), + (6401, '0789458063'), + (726, '0609610031'), + (3299, '0743436695'), + (11103, '0684856875'), + (11104, '043916589X'), + (11105, '0689505868'), + (262, '0060097469'), + (11106, '1400060427'), + (11107, '0439482682'), + (11108, '093872116X'), + (11109, '0316699128'), + (11110, '0316699128'), + (5147, '0761129774'), + (1095, '0375822739'), + (4962, '0684837226'), + (1337, '0688180728'), + (11111, '0373250282'), + (5235, '0060084456'), + (11112, '0374404542'), + (11113, '0142003484'), + (11114, '0618250735'), + (6504, '0448190834'), + (11115, '0448190834'), + (11116, '0385416679'), + (11117, '0812570626'), + (11118, '0316070211'), + (11119, '0395562333'), + (11120, '0395562333'), + (596, '0380709163'), + (617, '0380709163'), + (5608, '0590876120'), + (5609, '0590876120'), + (1853, '0064406822'), + (11121, '0064406822'), + (1578, '0064406326'), + (11122, '0689813481'), + (11123, '0689813481'), + (11121, '0689808585'), + (11122, '0689808585'), + (11124, '0894808605'), + (11125, '0894808605'), + (11126, '0717218937'), + (11127, '0769612873'), + (11128, '044040150X'), + (11129, '044040150X'), + (1431, '0316140074'), + (10216, '0399215301'), + (11130, '0874498155'), + (11131, '0874498155'), + (11132, '0689710550'), + (11131, '0689710550'), + (505, '0517613441'), + (505, '0517613476'), + (11133, '0785279954'), + (6919, '0517703351'), + (11134, '0684856220'), + (795, '0345435257'), + (11135, '0783502370'), + (1808, '0783502370'), + (11136, '0783502370'), + (415, '0735100004'), + (11137, '0735100004'), + (11138, '0679413383'), + (11139, '0679413383'), + (11140, '0964122804'), + (11141, '0964122804'), + (956, '0553213776'), + (956, '0553280503'), + (956, '0553280511'), + (956, '0553280465'), + (956, '0553264931'), + (956, '0553262149'), + (956, '055323370X'), + (11142, '1565970497'), + (11143, '0373706421'), + (11144, '0373706448'), + (11145, '1565970500'), + (6264, '0316415022'), + (179, '0061093890'), + (11146, '078180583X'), + (11147, '0679445390'), + (132, '0553800973'), + (1558, '0345435796'), + (11148, '0345435796'), + (9619, '0345435796'), + (11149, '0937721778'), + (11150, '0805070834'), + (11151, '0385730985'), + (11152, '0803728468'), + (11153, '0803728468'), + (11154, '0345450892'), + (11155, '0373250231'), + (11156, '068486441X'), + (11157, '0395966051'), + (2407, '0152167056'), + (11158, '0066213339'), + (11159, '0689848641'), + (11160, '1557093334'), + (11161, '1557093334'), + (3639, '0805047379'), + (11162, '1879441845'), + (11163, '0767913000'), + (11164, '051788576X'), + (11165, '0698115597'), + (3277, '1565124006'), + (11166, '0373117515'), + (11167, '0373190255'), + (11168, '0373031424'), + (11169, '0373075944'), + (11142, '0373810199'), + (11170, '037322138X'), + (136, '0671527886'), + (890, '0440222826'), + (2993, '0446600830'), + (11171, '0783502508'), + (1808, '0783502508'), + (11172, '0783502508'), + (4135, '0140265716'), + (11173, '1585421758'), + (618, '0807506451'), + (11174, '0807506451'), + (2241, '0590731890'), + (3267, '0439050138'), + (11175, '0373250142'), + (11110, '0373250150'), + (1320, '0345388968'), + (5251, '0743222261'), + (1039, '0345453387'), + (11176, '0393315797'), + (6919, '051757702X'), + (1674, '0060277491'), + (5426, '044022313X'), + (11177, '0671526723'), + (11178, '0373250169'), + (11179, '0684857340'), + (11180, '0609800256'), + (10882, '0399142606'), + (937, '0385488440'), + (11181, '1886910553'), + (11182, '0060513888'), + (11183, '0375706429'), + (11184, '0689855583'), + (11185, '0689855583'), + (11186, '0743205987'), + (888, '0803725167'), + (11187, '0060191058'), + (1337, '0060090367'), + (2495, '0786863218'), + (11188, '0880014164'), + (11189, '0880014164'), + (11190, '0880014164'), + (11191, '0880014164'), + (11192, '0451183460'), + (11191, '0451823192'), + (11191, '0451192729'), + (6364, '0688173896'), + (6087, '0517162695'), + (11193, '0789426099'), + (11194, '0140360042'), + (6898, '0802788300'), + (166, '038532331X'), + (11195, '0671787209'), + (11196, '0425178234'), + (11197, '0446531286'), + (11198, '0393038548'), + (11199, '1567312497'), + (11200, '0316910333'), + (11201, '0452272734'), + (11202, '0934971722'), + (11203, '0525946403'), + (11204, '0758204175'), + (8372, '0758204175'), + (6482, '0758204175'), + (6309, '0373250118'), + (1184, '0375410767'), + (2622, '0385501722'), + (1473, '0767905199'), + (11205, '0670879045'), + (972, '0385312431'), + (5289, '0385492243'), + (11206, '0786862335'), + (11207, '0380720787'), + (4623, '0671737899'), + (11208, '0553251473'), + (8595, '0553251473'), + (11209, '0515086991'), + (11210, '0062517317'), + (11211, '0684811766'), + (128, '1551667932'), + (237, '0345433319'), + (7493, '0743442628'), + (11212, '0673524299'), + (2692, '0673524299'), + (1840, '1551668394'), + (6982, '039595777X'), + (11213, '039595777X'), + (1674, '0064407446'), + (634, '0399145079'), + (1374, '0152021973'), + (432, '0312203594'), + (11214, '068480302X'), + (11215, '0385486812'), + (4814, '0671015648'), + (11216, '0395971179'), + (11217, '0743205049'), + (11218, '0743205049'), + (11219, '0385333757'), + (11220, '1567310362'), + (11221, '1567310362'), + (2748, '067945778X'), + (11222, '0802137008'), + (11223, '0688147364'), + (11222, '0688147364'), + (11224, '0373250215'), + (4043, '0385323638'), + (11225, '1888338032'), + (743, '0517139618'), + (11226, '0141439564'), + (11227, '0060194146'), + (11228, '0306807203'), + (11229, '0525947116'), + (11230, '0553381121'), + (11231, '0316320277'), + (11232, '0385318790'), + (11233, '031227193X'), + (11234, '0451169026'), + (1039, '0449005577'), + (1556, '0385722435'), + (9859, '0425135012'), + (11235, '0826212433'), + (3124, '0609807900'), + (2495, '0786883367'), + (11236, '0890434573'), + (11237, '0890434573'), + (11238, '0525246398'), + (11239, '0896933466'), + (11240, '0842350128'), + (11241, '0842350128'), + (11242, '0871202824'), + (11243, '0871202824'), + (11244, '0830713573'), + (11245, '0830817220'), + (11246, '1560790512'), + (11247, '0310231612'), + (11248, '0875164358'), + (11249, '0802726216'), + (11250, '1560790555'), + (11251, '1560790555'), + (11252, '0890813302'), + (11253, '0890813302'), + (11254, '0446520888'), + (11255, '0312023022'), + (11256, '0312023022'), + (286, '0689821395'), + (287, '0689821395'), + (11257, '0446394580'), + (11258, '0446394580'), + (11259, '0446394580'), + (534, '0671521101'), + (11260, '1579540791'), + (11261, '0935180621'), + (5606, '0380690543'), + (5962, '0971700915'), + (8595, '0971700915'), + (2791, '0671894404'), + (11262, '0671894404'), + (9470, '0345404440'), + (3136, '0446690155'), + (435, '0385319037'), + (6144, '0373250185'), + (364, '0140282033'), + (6684, '0671867407'), + (11263, '0684835819'), + (11264, '0684835819'), + (11265, '1878448021'), + (11266, '0060529733'), + (11267, '0060529733'), + (11268, '067088698X'), + (11269, '0156010887'), + (2239, '0590424939'), + (1176, '0394805720'), + (11270, '0688152937'), + (11271, '0688152937'), + (2239, '0590673890'), + (11272, '0030442818'), + (8947, '0345320409'), + (11273, '0684804433'), + (11274, '0517075032'), + (11275, '1565123190'), + (6103, '1565123190'), + (11276, '0312270801'), + (11277, '0452282659'), + (11278, '0943233828'), + (11279, '0945448619'), + (11280, '0761511032'), + (11281, '0761511032'), + (11282, '0375701230'), + (1353, '0452281679'), + (11283, '0609603809'), + (9360, '0767906993'), + (622, '0060293152'), + (2884, '0446605336'), + (2885, '0446605336'), + (11284, '0684802082'), + (7478, '0385312512'), + (3779, '0312961324'), + (720, '0671027646'), + (11285, '068810004X'), + (11198, '1567312500'), + (920, '0060294698'), + (11286, '0609606441'), + (433, '0613072111'), + (11287, '0831771348'), + (571, '0425113884'), + (1450, '0679752617'), + (2771, '0679764925'), + (2771, '0679770151'), + (11288, '0962855022'), + (11289, '0962855022'), + (262, '0066236568'), + (1249, '0800717716'), + (11290, '0800717716'), + (11291, '0800717716'), + (5011, '0553213873'), + (7368, '0618127038'), + (719, '0060185287'), + (795, '0345356365'), + (810, '0345336429'), + (1092, '0671556835'), + (11292, '014017821X'), + (2011, '0425109240'), + (8034, '0312146957'), + (11293, '1567182186'), + (17, '1558747060'), + (18, '1558747060'), + (19, '1558747060'), + (17, '1558746463'), + (18, '1558746463'), + (5666, '1558746463'), + (5667, '1558746463'), + (17, '1558746099'), + (18, '1558746099'), + (11294, '1558746099'), + (11295, '1558746099'), + (17, '1558747141'), + (18, '1558747141'), + (7792, '1558747141'), + (7793, '1558747141'), + (11296, '0316120863'), + (11297, '0911379010'), + (810, '0345382919'), + (11298, '1556113854'), + (574, '0452266637'), + (4793, '0452266637'), + (11299, '155972126X'), + (265, '006109028X'), + (3912, '0515113719'), + (17, '0757300243'), + (18, '0757300243'), + (11300, '0757300243'), + (11301, '0757300243'), + (17, '1558744029'), + (18, '1558744029'), + (11302, '1558744029'), + (5816, '1558744029'), + (17, '1558743790'), + (18, '1558743790'), + (11303, '084991437X'), + (17, '1558748008'), + (18, '1558748008'), + (11293, '1558748008'), + (11294, '1558748008'), + (17, '1558745629'), + (18, '1558745629'), + (11304, '1558745629'), + (17, '1558747966'), + (18, '1558747966'), + (7792, '1558747966'), + (7793, '1558747966'), + (1674, '006447187X'), + (11305, '006447187X'), + (11306, '0375760628'), + (598, '0060287365'), + (11307, '0060287365'), + (11308, '0380727021'), + (432, '0312187106'), + (381, '0849952476'), + (381, '0849952492'), + (11309, '0789405652'), + (11310, '1580172938'), + (83, '0449910741'), + (11311, '1591450055'), + (11312, '038072152X'), + (11313, '0440413869'), + (11314, '0133349705'), + (2495, '1577311108'), + (577, '1577311108'), + (10209, '0062740067'), + (11315, '0439435242'), + (11316, '1563051818'), + (11317, '0671743686'), + (11318, '0818405422'), + (11319, '0818405422'), + (11320, '1891105035'), + (11321, '006621016X'), + (1038, '0786865504'), + (4814, '0679456937'), + (11322, '0380975580'), + (11323, '0684853620'), + (250, '0060392827'), + (4577, '1551668157'), + (956, '0553213156'), + (612, '0613225937'), + (7702, '1573221260'), + (6639, '0345410092'), + (543, '0440124344'), + (5695, '014027927X'), + (2495, '078688360X'), + (1374, '0152008799'), + (11324, '0805063781'), + (11325, '0064473023'), + (1374, '0152001018'), + (11326, '0761316426'), + (8923, '0312209673'), + (11327, '1883523362'), + (8967, '0060976497'), + (432, '0312147015'), + (17, '1558743545'), + (18, '1558743545'), + (11328, '1558743545'), + (5695, '0452282128'), + (98, '0767906543'), + (11070, '0374399891'), + (11329, '0517100800'), + (11330, '068485595X'), + (2495, '0786884207'), + (11331, '0786884207'), + (1484, '0375506187'), + (11332, '0812524160'), + (8912, '0399135278'), + (8951, '0312908830'), + (734, '0142000345'), + (5444, '1577488288'), + (11333, '0800781724'), + (11334, '1577482158'), + (11335, '0882702637'), + (11336, '0821723006'), + (1337, '0380796104'), + (3378, '1565120167'), + (11337, '1586603981'), + (11338, '031020755X'), + (11339, '031020755X'), + (3754, '0764501801'), + (368, '0399141855'), + (8620, '0140340831'), + (11340, '0140340831'), + (6042, '0310213975'), + (11341, '0310213975'), + (11342, '0517588242'), + (474, '0385485697'), + (4851, '1565075722'), + (11343, '0440415829'), + (3633, '0064460932'), + (11344, '0064460932'), + (441, '0590959433'), + (11345, '0590959433'), + (5591, '076422249X'), + (5634, '076422249X'), + (11346, '0816318050'), + (11347, '0142000477'), + (11348, '1586602616'), + (11349, '1586602616'), + (11350, '1586602616'), + (7411, '1586602616'), + (11351, '1586602772'), + (11352, '1586602772'), + (11353, '1586602772'), + (11354, '1586602772'), + (11355, '0395636477'), + (11356, '0060617519'), + (11357, '0446530115'), + (1355, '0553581066'), + (179, '0671794493'), + (6192, '0380978342'), + (11358, '0312105231'), + (10745, '0060179988'), + (3419, '013029604X'), + (2006, '0380975351'), + (3315, '034531221X'), + (11359, '0849939585'), + (11358, '0849939593'), + (11358, '0849936888'), + (11358, '0849939194'), + (1374, '0590460560'), + (1374, '0590460528'), + (1374, '0590460544'), + (9163, '0830707360'), + (6031, '1576738167'), + (11360, '0915684012'), + (11361, '0802404332'), + (11362, '1874508003'), + (3115, '155166576X'), + (4908, '0060926201'), + (4908, '0804108293'), + (381, '0849953421'), + (11363, '0664254829'), + (11364, '0310515114'), + (11365, '1556615833'), + (11366, '0816733082'), + (974, '0375811354'), + (11367, '0806984929'), + (11368, '067165845X'), + (8967, '0060173084'), + (11369, '0451204123'), + (1374, '0152006737'), + (6031, '0842319018'), + (1265, '051734582X'), + (11370, '1580082319'), + (11371, '0345427297'), + (11372, '0140547533'), + (11373, '0140547533'), + (11374, '1578564719'), + (11375, '1576737810'), + (11376, '0785270221'), + (11377, '0785270221'), + (11378, '1576737098'), + (11377, '1576730360'), + (11379, '1576730360'), + (11380, '0786862262'), + (10825, '031023008X'), + (10826, '031023008X'), + (11381, '0840771835'), + (11382, '0840771835'), + (485, '0380975068'), + (505, '0517118971'), + (1410, '0394873416'), + (1411, '0394873416'), + (11383, '059040024X'), + (11384, '059040024X'), + (11385, '059040024X'), + (3812, '0590226517'), + (11386, '1580626599'), + (1374, '0590543199'), + (743, '067161276X'), + (11387, '0871316072'), + (179, '0671794507'), + (1374, '0152164502'), + (3591, '0312959176'), + (3591, '1577361814'), + (1691, '0679867406'), + (6904, '0394865871'), + (11388, '0849942829'), + (5081, '0764222120'), + (5081, '0764222112'), + (11389, '0310201683'), + (7368, '0395251818'), + (1374, '0440228611'), + (11390, '0880701366'), + (1374, '0590742590'), + (11391, '0934395500'), + (11392, '0934395500'), + (1410, '0394872177'), + (1411, '0394872177'), + (7626, '0590426230'), + (7379, '0590426230'), + (11393, '006446735X'), + (11394, '006446735X'), + (11395, '0679800921'), + (11396, '0679800921'), + (560, '0590479172'), + (561, '0590479172'), + (11397, '0698116003'), + (11398, '0698116003'), + (11399, '068806518X'), + (11398, '068806518X'), + (11400, '1880000334'), + (11401, '1880000334'), + (11402, '1880000334'), + (11403, '0590480898'), + (11404, '0590480898'), + (11405, '0064402509'), + (258, '0064402509'), + (438, '0590934252'), + (439, '0590934252'), + (5142, '067988341X'), + (5143, '067988341X'), + (11406, '0590449206'), + (11407, '0590449206'), + (438, '0590947168'), + (439, '0590947168'), + (5142, '0679824111'), + (5143, '0679824111'), + (264, '0805002138'), + (11408, '0805002138'), + (264, '1587172046'), + (11409, '1587172046'), + (11410, '0380719002'), + (5522, '0064440591'), + (274, '0141302283'), + (275, '0141302283'), + (11411, '0671677136'), + (10086, '0440409411'), + (11412, '0590543385'), + (11413, '0060163097'), + (11414, '0060163097'), + (11415, '0060163097'), + (11416, '0060163097'), + (8881, '0440416248'), + (5500, '0140349812'), + (5500, '0140386742'), + (5180, '0140365931'), + (11417, '0439099048'), + (10948, '0613177177'), + (3253, '1565121570'), + (17, '1558746587'), + (18, '1558746587'), + (11418, '1558746587'), + (2156, '1558746587'), + (11419, '0964095564'), + (11291, '0099133717'), + (11420, '0771068182'), + (11421, '0771068182'), + (702, '2894641214'), + (11422, '1858284147'), + (11423, '1858284147'), + (11424, '1558533311'), + (11425, '0394557212'), + (11103, '0590697692'), + (3267, '0590486691'), + (827, '0140376283'), + (11426, '0698118804'), + (11427, '0698118804'), + (11425, '0531087875'), + (11425, '0590439448'), + (568, '0684823799'), + (1727, '0679732187'), + (11428, '0140344438'), + (11429, '0451523954'), + (11430, '0451523954'), + (1578, '0064406865'), + (11431, '0064406865'), + (595, '0440430461'), + (1374, '0590117440'), + (11432, '0689842945'), + (11433, '1883672902'), + (11434, '0689842309'), + (11435, '0060281766'), + (1374, '0152003924'), + (5406, '0380978636'), + (11436, '0809206196'), + (11437, '0842300198'), + (4550, '0140236201'), + (11438, '0140481877'), + (5437, '0486273008'), + (3601, '0140108599'), + (8310, '0195867866'), + (1965, '0451628454'), + (929, '0451628454'), + (3787, '0679887911'), + (11439, '0674354427'), + (3264, '0440226848'), + (7768, '0590319906'), + (6918, '0064470679'), + (11440, '0156004771'), + (11441, '0061081116'), + (369, '0373483503'), + (11442, '0380785757'), + (9745, '0380785714'), + (3164, '0553294091'), + (1025, '0590023888'), + (1498, '0812544420'), + (11443, '0373290853'), + (4455, '0671741268'), + (11444, '0312033001'), + (369, '0373270976'), + (7947, '0812571762'), + (7515, '0671025708'), + (8517, '0812514092'), + (369, '0515122734'), + (2253, '0440224578'), + (2253, '0440217857'), + (11445, '0373705867'), + (373, '1551665794'), + (373, '0061010995'), + (5969, '0061010995'), + (2248, '0373762690'), + (2169, '0451407806'), + (1491, '0373484046'), + (11446, '1854879820'), + (11447, '0373168209'), + (2268, '0373290861'), + (11448, '0743232933'), + (11449, '0312305664'), + (11450, '1583486259'), + (142, '0451160916'), + (1819, '1551665077'), + (484, '0446607207'), + (11451, '0373223587'), + (3164, '0553581147'), + (1827, '0553579231'), + (543, '0440209412'), + (3157, '0553574310'), + (11452, '0060631317'), + (11453, '0140375899'), + (11454, '1885983212'), + (5677, '0380700670'), + (5406, '0380725622'), + (618, '0807510092'), + (11173, '0807510092'), + (66, '0842321950'), + (65, '0842321950'), + (1024, '0440407125'), + (11455, '0590312413'), + (1853, '0141312424'), + (11456, '0816704058'), + (11457, '0816704058'), + (6039, '0590481819'), + (5516, '0590481819'), + (2241, '0590228706'), + (11458, '0590228706'), + (11459, '0590228706'), + (1721, '0439049989'), + (2239, '0590228773'), + (1721, '0439050006'), + (4979, '0671019376'), + (11460, '0671019376'), + (1410, '0590944770'), + (1411, '0590944770'), + (11461, '0590944770'), + (11462, '0871234408'), + (11463, '0880296143'), + (11464, '0880296143'), + (11465, '0892741880'), + (2495, '0786864249'), + (11466, '0449150011'), + (66, '0842329250'), + (65, '0842329250'), + (1876, '0553102354'), + (11467, '0912111631'), + (11468, '0912111631'), + (11469, '0912111631'), + (5305, '0767903390'), + (11470, '055334935X'), + (11471, '055334935X'), + (285, '0060591706'), + (11472, '0679763384'), + (11473, '1557042608'), + (11474, '1557042608'), + (11475, '1557042608'), + (11476, '0815410565'), + (285, '0060951311'), + (3645, '9682321557'), + (11477, '9682321557'), + (1679, '1878448900'), + (401, '155994806X'), + (11478, '155994806X'), + (11479, '9500723832'), + (11480, '9500723832'), + (11481, '0198641583'), + (93, '0807281859'), + (7240, '0140011749'), + (11482, '9684322046'), + (1265, '042509345X'), + (11483, '0743448782'), + (11484, '0385471475'), + (3434, '0312983786'), + (11485, '0525455205'), + (1897, '0525455205'), + (4905, '0747233667'), + (265, '0061091944'), + (2825, '0671003534'), + (2825, '0671003526'), + (2981, '0688134017'), + (2981, '0688134009'), + (2981, '0064473139'), + (4726, '0553103032'), + (2586, '0553574418'), + (11486, '037326237X'), + (9394, '0804116571'), + (1265, '0449210529'), + (4794, '0345441710'), + (11487, '0345414365'), + (5899, '0441002617'), + (4826, '015201800X'), + (4826, '0152018018'), + (3431, '0804107025'), + (11488, '0142501433'), + (11487, '0142501530'), + (2142, '0141311096'), + (973, '0553568736'), + (8081, '0792276868'), + (973, '044144525X'), + (973, '0441568572'), + (973, '044190209X'), + (9925, '0375503641'), + (183, '0451171012'), + (11489, '0451171012'), + (11490, '0451456599'), + (574, '0394534433'), + (1776, '0553573314'), + (1776, '0553562614'), + (1776, '0553573861'), + (973, '0553095145'), + (11491, '0802138578'), + (11492, '0802138578'), + (11493, '1579546137'), + (8730, '0152046976'), + (658, '0802131867'), + (11494, '0786860219'), + (3253, '0452282438'), + (11495, '0520222571'), + (3458, '0380723085'), + (810, '0345410289'), + (11496, '0452280699'), + (11497, '0914913360'), + (11498, '0914913360'), + (11499, '0914913360'), + (11500, '0914913360'), + (2342, '0679755624'), + (11501, '0679414614'), + (11502, '0060977191'), + (810, '0345410424'), + (2454, '0679723692'), + (549, '0060956291'), + (1880, '0671748092'), + (533, '0609608738'), + (3307, '0805031871'), + (11503, '1878067990'), + (810, '0345410394'), + (463, '0375500510'), + (634, '0425184757'), + (11504, '0452283167'), + (11505, '0452283167'), + (11506, '1582340765'), + (11507, '1571310169'), + (11209, '0380820145'), + (892, '0385333293'), + (11508, '0060923202'), + (5443, '0061054437'), + (4938, '0312187343'), + (8686, '0679416730'), + (340, '0380729768'), + (11509, '0060926465'), + (11510, '0316691178'), + (11511, '0871138328'), + (11512, '1565122437'), + (2146, '0345386574'), + (1706, '0156907399'), + (4261, '0156907399'), + (2686, '0395908728'), + (3924, '0066209463'), + (6880, '0802136265'), + (11513, '1559704640'), + (11514, '0743227840'), + (11515, '0452271045'), + (11516, '0452271045'), + (11517, '0684867826'), + (4908, '0060984333'), + (2454, '0679723056'), + (4768, '0345389247'), + (11518, '0375503315'), + (162, '0393956539'), + (11519, '0393956539'), + (11520, '0393956539'), + (11521, '0395977711'), + (11197, '0380728826'), + (5095, '0452282098'), + (11522, '096521365X'), + (1198, '0380732149'), + (11523, '0312283474'), + (7750, '0385314256'), + (7751, '0385314256'), + (4636, '0394563158'), + (11524, '0786869011'), + (11525, '1573221511'), + (3924, '0812968344'), + (1165, '0812968344'), + (3292, '0312243111'), + (461, '0375726012'), + (3458, '0812968131'), + (3458, '0345423097'), + (3458, '0743411358'), + (3458, '0425176487'), + (580, '0671441981'), + (11526, '0671673947'), + (11527, '0440507723'), + (11528, '0963634291'), + (11529, '0963634291'), + (11530, '0897322096'), + (7021, '0812548051'), + (11531, '0822011298'), + (312, '0140440488'), + (11532, '0140440488'), + (11531, '0140440488'), + (11533, '0449215261'), + (10955, '0786886471'), + (1041, '055357325X'), + (1042, '055357325X'), + (1041, '0553290983'), + (1042, '0553290983'), + (1041, '0553295411'), + (1042, '0553295411'), + (1041, '0553561405'), + (1042, '0553561405'), + (11534, '0006548180'), + (1099, '1857027051'), + (11535, '1857988027'), + (3174, '0241100100'), + (1236, '0552995649'), + (11536, '1840672013'), + (256, '0575048360'), + (11537, '0575048360'), + (11538, '0753813823'), + (11539, '0330354566'), + (5530, '0349115087'), + (3608, '0146001788'), + (11540, '0146001788'), + (11541, '1857995457'), + (11542, '1857995457'), + (11543, '0553288660'), + (11544, '0694520799'), + (4853, '0694520799'), + (8474, '0310342023'), + (11545, '0310342023'), + (552, '0688143687'), + (11546, '0394722191'), + (11547, '0805001182'), + (3250, '0140006095'), + (11548, '0140006095'), + (150, '006019345X'), + (79, '0394501691'), + (1265, '0441731538'), + (11549, '0394721683'), + (3608, '0553210424'), + (11550, '0140157913'), + (220, '0060912227'), + (989, '0156997789'), + (11551, '1551669196'), + (11552, '0826404286'), + (220, '0140096922'), + (3480, '0140096922'), + (220, '0140064702'), + (6574, '0140064702'), + (11549, '0140088393'), + (11549, '014010304X'), + (106, '0553203487'), + (1073, '0553123432'), + (220, '0140059245'), + (3480, '0140059245'), + (1858, '0140059245'), + (11553, '0679724222'), + (3856, '0156970902'), + (11554, '067973502X'), + (11555, '0345335864'), + (3849, '0452011116'), + (11556, '0385473079'), + (188, '0345292340'), + (215, '0380003333'), + (9479, '0380003333'), + (3292, '080410378X'), + (11557, '0871563223'), + (11558, '1557783446'), + (1228, '0679442405'), + (11559, '0671250841'), + (2592, '3442723183'), + (7672, '0373078056'), + (11560, '0373078056'), + (11561, '1551660016'), + (36, '0821746219'), + (11562, '0373169264'), + (10390, '0373169841'), + (1965, '0821758969'), + (11563, '084394272X'), + (11564, '0373222823'), + (5693, '0843948884'), + (11565, '0373501757'), + (11566, '0380818078'), + (11567, '0373031939'), + (11568, '037310507X'), + (128, '0373482949'), + (11569, '0671469134'), + (2246, '0373288816'), + (11570, '037365054X'), + (1828, '0373706898'), + (2863, '0373885121'), + (4577, '0373098855'), + (3903, '0373076223'), + (2948, '0373821514'), + (11571, '0373288093'), + (128, '155166531X'), + (1122, '0373240899'), + (11572, '0380815346'), + (2863, '037321703X'), + (128, '0446360732'), + (11573, '0373093829'), + (11574, '0373096828'), + (1122, '0373099150'), + (11562, '0821718398'), + (11562, '0843946466'), + (3911, '0373168721'), + (3907, '0373164386'), + (1835, '0373451903'), + (10381, '0373169035'), + (11575, '0743436466'), + (2371, '067178577X'), + (2372, '067178577X'), + (7199, '0373168411'), + (128, '0553567683'), + (128, '0446603090'), + (11576, '0373099894'), + (11577, '0373099894'), + (11578, '0380774542'), + (2250, '0061083402'), + (1192, '0373451555'), + (7672, '0373077289'), + (5146, '0373168683'), + (7199, '0373169493'), + (2863, '0373451806'), + (5370, '0373168748'), + (11579, '0373225202'), + (1822, '0373168527'), + (11580, '0373705247'), + (11581, '0373118775'), + (4330, '0373168632'), + (3470, '0373169779'), + (128, '055329783X'), + (11582, '0373169760'), + (11583, '0373166958'), + (11584, '0671835645'), + (3468, '0373168675'), + (6931, '0373451547'), + (10195, '0373169620'), + (11585, '037316596X'), + (7199, '0373169736'), + (1296, '037316954X'), + (10103, '0373650396'), + (11586, '0441023142'), + (11587, '0373257813'), + (1192, '0373201575'), + (11588, '0373030932'), + (11589, '0451180143'), + (2169, '0451180143'), + (11590, '0451180143'), + (11591, '0451180143'), + (128, '0373160011'), + (743, '0373898347'), + (2863, '0373201427'), + (2248, '0373201427'), + (8860, '0373201427'), + (2166, '0373115113'), + (11592, '037316968X'), + (3469, '0373169531'), + (7199, '0373168705'), + (3470, '0373169868'), + (11593, '0671519077'), + (2166, '0373108400'), + (2260, '037316985X'), + (11594, '0373289871'), + (7211, '0373289871'), + (5257, '0373289871'), + (11595, '1878702823'), + (11596, '0373099169'), + (11597, '0515087998'), + (128, '0553220284'), + (373, '0373253184'), + (3449, '0373169566'), + (11598, '0373290012'), + (11599, '0671535706'), + (11600, '0373290438'), + (58, '0061093343'), + (11601, '0373706871'), + (11602, '0373106734'), + (743, '0373898339'), + (11603, '0373169361'), + (2275, '0373169329'), + (11604, '0373169191'), + (11605, '0821767720'), + (11606, '0821767720'), + (10105, '0821767720'), + (11607, '0373025920'), + (3918, '0373072422'), + (10065, '0440224454'), + (11608, '0312956762'), + (11609, '0312956762'), + (2246, '0373288646'), + (7672, '0373076746'), + (11610, '037370643X'), + (11611, '0373241437'), + (3918, '0373074808'), + (11612, '0373765053'), + (373, '0061042331'), + (11613, '0373093918'), + (11614, '0786000139'), + (11615, '0373114931'), + (2824, '0440211352'), + (11616, '0425105156'), + (11617, '0373074492'), + (148, '0449223515'), + (11618, '0886778212'), + (6444, '0886778212'), + (11619, '0373024665'), + (10103, '0373650159'), + (122, '0671775235'), + (9240, '0553279335'), + (9241, '0553279335'), + (10678, '0425058247'), + (11593, '037329011X'), + (11620, '055322039X'), + (6186, '0373704070'), + (11575, '0373097840'), + (6475, '037319692X'), + (11621, '0373241224'), + (11622, '0373291175'), + (2654, '0449232131'), + (9162, '0449232131'), + (11623, '0449129047'), + (122, '0671019147'), + (11624, '0373501749'), + (11625, '0373079184'), + (9229, '037310667X'), + (6488, '0373292155'), + (11165, '0373116373'), + (11626, '0373288050'), + (2377, '0345435419'), + (11627, '0373051921'), + (11628, '037329106X'), + (11629, '0373114206'), + (11630, '082173427X'), + (11631, '0373291205'), + (3163, '0373254571'), + (5370, '0373163541'), + (3922, '0373243022'), + (11632, '0449125394'), + (128, '0553219510'), + (11633, '0373166575'), + (11634, '0373168802'), + (11635, '0821745085'), + (9420, '0553219928'), + (11619, '0553440136'), + (2948, '0373162510'), + (11636, '0445206608'), + (11637, '051506162X'), + (3918, '0373074123'), + (2268, '0373291213'), + (11638, '0373286740'), + (11639, '0373121369'), + (3919, '0373099568'), + (7587, '0671047574'), + (7588, '0671047574'), + (3918, '0373071485'), + (11570, '037328926X'), + (11640, '0373165676'), + (4206, '0373118651'), + (5244, '0373121482'), + (128, '0553220012'), + (9420, '0553444433'), + (11641, '0373289537'), + (11642, '0373162227'), + (7566, '0373288212'), + (5225, '0373098847'), + (11143, '0373710550'), + (11643, '0373151896'), + (11644, '0373151896'), + (11593, '0373288727'), + (3903, '0373077351'), + (11645, '0440169836'), + (6186, '0373075367'), + (11646, '0440112907'), + (11645, '0440173787'), + (11647, '0373032072'), + (11648, '0373097735'), + (11649, '0380897857'), + (1388, '0373106696'), + (7672, '037307638X'), + (11559, '037307638X'), + (4392, '0373099738'), + (11143, '0373707002'), + (10190, '0373111622'), + (2948, '0373162111'), + (11650, '0373290055'), + (3903, '0373076932'), + (3899, '0553445006'), + (128, '0553217771'), + (11651, '0373243685'), + (11652, '0373167520'), + (11653, '0373076592'), + (11654, '0373035101'), + (11655, '0373254547'), + (2246, '0373288506'), + (4730, '0446606448'), + (11656, '0446606448'), + (11657, '0373107072'), + (11635, '0445208848'), + (11658, '0821749374'), + (11659, '0821718053'), + (11660, '0312901925'), + (160, '0553289993'), + (11661, '0671460412'), + (10356, '0373790538'), + (11662, '0515058181'), + (3904, '0373224915'), + (11663, '0373709560'), + (11664, '0373105401'), + (11665, '0671495429'), + (11666, '0061096156'), + (5899, '0441007147'), + (11667, '0451161122'), + (2372, '0671032569'), + (2371, '0671032569'), + (160, '0553569651'), + (11668, '0821744798'), + (434, '0345379055'), + (11669, '0061083577'), + (2948, '0373161387'), + (4206, '0373109040'), + (7385, '0451456823'), + (10691, '0451456823'), + (11670, '0345276353'), + (835, '0671042092'), + (10749, '0312980353'), + (4206, '0373117949'), + (11671, '0671473646'), + (11672, '037370707X'), + (10195, '0373166877'), + (3899, '0553443976'), + (4206, '0373118716'), + (6854, '0743410645'), + (11673, '0449140180'), + (3916, '0553443119'), + (6484, '0821740296'), + (2948, '0373165544'), + (11674, '0373093799'), + (11675, '0373165595'), + (3916, '0553219987'), + (11676, '0373291183'), + (11677, '038076864X'), + (11678, '0373289421'), + (3918, '037309437X'), + (10099, '0373098987'), + (2948, '0373165811'), + (1821, '0786005416'), + (11674, '0373088701'), + (3916, '0553218298'), + (3916, '0553218514'), + (3918, '0373092741'), + (105, '0553233688'), + (7827, '0373166931'), + (11679, '0821726382'), + (6488, '037329056X'), + (11651, '0553443763'), + (11680, '0821760459'), + (11681, '0931122651'), + (369, '0739439065'), + (11682, '0345446100'), + (11683, '0688103324'), + (56, '0553213342'), + (3787, '0679885501'), + (11684, '0385266294'), + (11685, '0385266294'), + (11686, '0385266294'), + (11687, '080707103X'), + (454, '0061064173'), + (11688, '0061064173'), + (1428, '0671785699'), + (11689, '044840172X'), + (7296, '0451143183'), + (5398, '0877282684'), + (11690, '0877282684'), + (11691, '0877282684'), + (11692, '1561840092'), + (1109, '0811202925'), + (2637, '0811202925'), + (11693, '0764153730'), + (11694, '0764153730'), + (11695, '0850307147'), + (7046, '0850307147'), + (11696, '0316488356'), + (11697, '0671704613'), + (11698, '0563551011'), + (6854, '0743412346'), + (11699, '0671629980'), + (266, '0812534077'), + (5319, '0312964250'), + (2287, '0446400580'), + (11700, '034531784X'), + (11701, '0345346912'), + (2542, '0671008803'), + (3367, '0671008803'), + (3368, '0671008803'), + (5579, '0345311639'), + (11702, '0345283716'), + (5272, '0345329457'), + (11703, '0935127291'), + (11704, '0935127291'), + (11705, '0671503618'), + (11706, '0879801107'), + (9997, '0887330045'), + (11707, '1558172378'), + (10555, '1558172378'), + (11708, '1558172378'), + (11709, '094383208X'), + (11710, '0879493046'), + (11711, '0312958838'), + (11712, '0440100259'), + (9997, '0234770554'), + (11713, '0394733312'), + (11714, '0894872281'), + (11715, '0821717510'), + (11714, '0821717529'), + (11716, '0571130143'), + (11717, '1561840599'), + (11718, '1561840599'), + (11717, '1561841536'), + (9997, '0887330630'), + (5272, '0786703873'), + (5187, '0886776244'), + (3076, '0445204524'), + (265, '0066210844'), + (5272, '0345384210'), + (4733, '0312909233'), + (11719, '0879977388'), + (11720, '0879977388'), + (8287, '0786706473'), + (1816, '0743412419'), + (11721, '0425126021'), + (392, '087542127X'), + (11722, '0061057525'), + (10363, '0061057525'), + (11723, '0061057525'), + (6346, '0140182926'), + (11724, '0140261184'), + (11725, '0140261184'), + (3234, '0140139125'), + (8648, '1567184731'), + (3234, '1852278862'), + (3234, '0140035206'), + (3234, '0140023747'), + (3234, '0007155093'), + (11726, '0007155093'), + (11727, '0007155093'), + (4336, '0671037390'), + (4336, '0671015850'), + (1422, '0749930632'), + (11728, '0553282182'), + (4336, '0671037382'), + (11729, '0413519503'), + (11730, '0413519503'), + (11731, '0340693096'), + (2627, '3426195593'), + (11732, '3404129490'), + (11733, '3596505151'), + (8626, '3518100734'), + (11734, '3596224284'), + (942, '340413348X'), + (292, '0749719745'), + (11735, '1841150770'), + (9019, '0099286572'), + (11736, '3125781108'), + (11737, '312577540X'), + (11738, '312577540X'), + (11739, '3518365010'), + (11740, '3518365010'), + (11741, '3442161177'), + (11742, '3442161177'), + (11743, '3442139112'), + (9518, '3404148657'), + (9519, '3404148657'), + (11744, '3746652618'), + (11745, '3502518998'), + (2654, '3502518998'), + (11746, '3502518998'), + (5098, '3548256171'), + (11747, '3426080648'), + (11748, '3442450322'), + (4702, '3442450322'), + (176, '3453146972'), + (612, '3404118251'), + (11749, '3404118251'), + (11750, '0752218751'), + (2492, '186046808X'), + (11751, '0684873753'), + (11752, '0152020683'), + (11753, '0152020683'), + (11754, '0385503466'), + (11755, '0767901843'), + (11756, '0767901843'), + (1092, '0671020110'), + (369, '0373484429'), + (11757, '0671042920'), + (11758, '0446524999'), + (5479, '0767908260'), + (11759, '0140434682'), + (11760, '0140434682'), + (11761, '0140434127'), + (11762, '0140434127'), + (11763, '0140154515'), + (11764, '0140432809'), + (11765, '0140432809'), + (11766, '014051290X'), + (2458, '0140445285'), + (2809, '0140445285'), + (11767, '0140445625'), + (11768, '0140445625'), + (11769, '0140445625'), + (11770, '0140194886'), + (11771, '0140194886'), + (11772, '1573220922'), + (11773, '0140466606'), + (11774, '0140466606'), + (11775, '0140466606'), + (11776, '0140188517'), + (3490, '0060171928'), + (11777, '0060171928'), + (2940, '0140587489'), + (11778, '0310239729'), + (11779, '0310239729'), + (11780, '0310239729'), + (11781, '0310239729'), + (3086, '0684717654'), + (4532, '0786913339'), + (11782, '0786913339'), + (891, '0515041858'), + (891, '0515041866'), + (891, '0515035084'), + (9924, '0345409876'), + (745, '0679724516'), + (11783, '0679724516'), + (4177, '0679763309'), + (11784, '0393027414'), + (11785, '0813522137'), + (56, '0375757295'), + (11786, '0375757295'), + (2978, '0425183971'), + (11787, '0582292190'), + (11788, '0582292190'), + (11789, '0582292190'), + (1727, '067973225X'), + (628, '0060174900'), + (11790, '1879237741'), + (628, '0375704469'), + (11791, '0894803204'), + (2888, '093158079X'), + (11760, '0486270521'), + (11792, '0449200248'), + (11793, '0937858668'), + (665, '0684839075'), + (11794, '0140266933'), + (665, '0684818981'), + (11795, '1862042055'), + (11796, '1862042055'), + (665, '068482499X'), + (3086, '0020199856'), + (11797, '1558508473'), + (11798, '1558508473'), + (1537, '0441007813'), + (5155, '0804002800'), + (5155, '0671680110'), + (11799, '0446609048'), + (11798, '0446606677'), + (11800, '0380790963'), + (11799, '0380790947'), + (2694, '006093316X'), + (628, '0060909005'), + (272, '0060909005'), + (7406, '0062731009'), + (7406, '0062731025'), + (11801, '0062731025'), + (5155, '0804001480'), + (1537, '0441005748'), + (5155, '156333609X'), + (11802, '0812566688'), + (11803, '0312860226'), + (11801, '0812540026'), + (11804, '0811824225'), + (11805, '1889295000'), + (2603, '0786808012'), + (389, '0385285019'), + (11806, '1573245003'), + (2276, '0380802317'), + (11807, '0821771418'), + (423, '0385484011'), + (4793, '0452281458'), + (574, '0452281458'), + (4793, '0452281431'), + (574, '0452281431'), + (4577, '0440210038'), + (11808, '1551668483'), + (11809, '0380795736'), + (11810, '0312191189'), + (10099, '074340596X'), + (11811, '0821771159'), + (4313, '1551668289'), + (88, '0061014788'), + (11812, '0345317211'), + (415, '0451526120'), + (552, '0449215024'), + (11813, '0552142506'), + (2185, '0425176088'), + (5602, '0440216974'), + (142, '0451170113'), + (889, '0316153915'), + (563, '0425155722'), + (2978, '0425189031'), + (8414, '0671015443'), + (2512, '0671015443'), + (543, '0440236665'), + (187, '0425049264'), + (7021, '0812551486'), + (7021, '081257639X'), + (374, '0736618198'), + (11814, '0736618198'), + (1626, '0061007153'), + (1397, '0380011220'), + (56, '0451525884'), + (282, '0451525884'), + (39, '034539092X'), + (9824, '0345323173'), + (9824, '0345378784'), + (11815, '0441703534'), + (252, '0345349520'), + (11816, '0886776554'), + (11817, '0002243776'), + (412, '0385491107'), + (179, '0786209542'), + (412, '0385720955'), + (1234, '0751510610'), + (714, '0743442245'), + (1086, '0571168639'), + (2911, '0142002003'), + (11818, '0330480952'), + (9415, '0758203888'), + (11819, '3596282756'), + (54, '006109868X'), + (11820, '0451208846'), + (11821, '0684867427'), + (1337, '0060520507'), + (4711, '0425184498'), + (4712, '0425184498'), + (1473, '0767915593'), + (11822, '0451196813'), + (10700, '1889853038'), + (412, '0860681297'), + (281, '0553212664'), + (435, '0385319002'), + (920, '0330482076'), + (920, '0060294655'), + (11823, '0316057401'), + (11824, '0316057401'), + (780, '0316777722'), + (4347, '0340682272'), + (5227, '0345376927'), + (5227, '0345347994'), + (4905, '0747230307'), + (11825, '0399511156'), + (11826, '0870946595'), + (11827, '0870946595'), + (11828, '0070145121'), + (11827, '007014530X'), + (3571, '0767904427'), + (723, '0679723161'), + (7820, '0618066136'), + (2661, '0451458478'), + (11829, '0805052046'), + (11830, '0345447212'), + (11831, '0140276300'), + (11832, '0140276300'), + (11833, '0140276300'), + (612, '0099143712'), + (11834, '0721401023'), + (11835, '0721401023'), + (11836, '0140234209'), + (43, '0140252525'), + (3247, '1550541129'), + (11837, '0767903382'), + (11838, '156924703X'), + (10961, '0156012022'), + (3571, '0767902041'), + (1203, '0312283377'), + (1277, '0671679430'), + (6353, '0143033603'), + (6353, '0140283641'), + (11839, '0340728256'), + (11840, '0140285822'), + (11841, '0140277439'), + (76, '0684853868'), + (11842, '1894294424'), + (11843, '0679767207'), + (1395, '0679455116'), + (11844, '1552782395'), + (9989, '0771054602'), + (6767, '0375724834'), + (11845, '0771095651'), + (9877, '0679724362'), + (11846, '0312135092'), + (7060, '015100658X'), + (1269, '015100658X'), + (11847, '0385333641'), + (351, '0345417941'), + (712, '0385720467'), + (6338, '0771041837'), + (665, '0684803356'), + (665, '0684865726'), + (1002, '0679731156'), + (11848, '0006385370'), + (11849, '0676971997'), + (11850, '074341005X'), + (1665, '0140291091'), + (2341, '1569471169'), + (11851, '0920897533'), + (11852, '0312205546'), + (11853, '0312205546'), + (11854, '0385333706'), + (11855, '1552634523'), + (2046, '0802137849'), + (7140, '0006480608'), + (7140, '0002244098'), + (3284, '014029984X'), + (11856, '1550548409'), + (11857, '0864922299'), + (11858, '1895411416'), + (11859, '1861590466'), + (11858, '1861591799'), + (2911, '0670872202'), + (11860, '0141000252'), + (11861, '1551924579'), + (3607, '0771014902'), + (4007, '0385475772'), + (11862, '0771014538'), + (10445, '0679767770'), + (4565, '0452272726'), + (4565, '0525941916'), + (4565, '0452270073'), + (11863, '1552633470'), + (11862, '1552630110'), + (11862, '1550135570'), + (11864, '0312301731'), + (4501, '0312267568'), + (412, '0521662605'), + (4768, '0345419030'), + (9315, '0684850273'), + (1175, '1573229717'), + (2912, '1573227749'), + (70, '0440574862'), + (11865, '0312168675'), + (11866, '0312144504'), + (11867, '0312144504'), + (11868, '0312144504'), + (8054, '0671726730'), + (11869, '0060275855'), + (5766, '067944999X'), + (822, '0061099058'), + (3885, '0486268756'), + (1627, '0486270645'), + (11870, '0553273353'), + (11871, '1566475961'), + (11872, '1566475961'), + (145, '0399133453'), + (5406, '0380714752'), + (11873, '0805401539'), + (3755, '0805401539'), + (11874, '0385054580'), + (11875, '0812923634'), + (1169, '0446341339'), + (11876, '0671775464'), + (1747, '0679454756'), + (11877, '0881441791'), + (665, '0684174715'), + (11878, '0849934176'), + (11877, '0849937019'), + (11879, '042519485X'), + (11880, '0930117018'), + (11881, '0553269674'), + (11882, '0553269674'), + (11883, '0440227828'), + (11884, '0849906873'), + (2964, '067179342X'), + (81, '0375702903'), + (4677, '0689821719'), + (545, '0060172754'), + (2168, '042517428X'), + (2224, '0446608041'), + (2224, '0446609307'), + (11885, '1570649669'), + (11886, '0312038208'), + (1210, '0743458311'), + (11887, '0345414462'), + (11888, '0380786761'), + (131, '0061094781'), + (2242, '0425156745'), + (9198, '0451197143'), + (714, '0451191986'), + (2513, '0451191986'), + (11889, '0812512766'), + (4647, '0451458753'), + (11890, '0451174976'), + (11891, '0425164101'), + (2517, '0553577565'), + (11892, '0553577565'), + (11893, '0553577565'), + (286, '0380778726'), + (287, '0380778726'), + (1164, '0553580256'), + (2681, '0345362497'), + (11894, '0702220957'), + (1605, '0786868104'), + (8148, '1557044791'), + (1409, '0679720227'), + (5251, '0452282276'), + (7728, '006440031X'), + (258, '006440031X'), + (618, '0590649191'), + (5608, '0590462245'), + (5609, '0590462245'), + (11895, '0374453071'), + (11894, '0374453071'), + (11896, '0374453071'), + (485, '0380725231'), + (1158, '0836218817'), + (2501, '0553560077'), + (3969, '0380800780'), + (11897, '0312962606'), + (10556, '0440944597'), + (11898, '0451528417'), + (11899, '0451528417'), + (11900, '0451528417'), + (3848, '0553239759'), + (2269, '0380811804'), + (644, '0440223253'), + (11901, '045120834X'), + (11900, '0451210727'), + (4730, '0886774616'), + (6444, '0886774616'), + (5967, '0061080969'), + (8372, '082177512X'), + (11902, '0553562835'), + (11903, '0553562835'), + (1164, '0553572350'), + (9119, '0312104952'), + (2468, '067087762X'), + (1159, '0670826472'), + (1159, '067088796X'), + (5464, '0446393746'), + (3434, '0312969228'), + (635, '0061096105'), + (1880, '0804118906'), + (1801, '0807083054'), + (11904, '0807083054'), + (2218, '0684824728'), + (2219, '0684824728'), + (11905, '1592980414'), + (11906, '0312327188'), + (568, '0027582000'), + (11407, '0027582000'), + (11907, '0670874914'), + (11908, '0670874914'), + (70, '0670868434'), + (7456, '0670868434'), + (70, '0395498589'), + (7456, '0395498589'), + (1697, '1573220825'), + (11909, '0140548572'), + (11910, '0140548572'), + (618, '0807563277'), + (11911, '0345352491'), + (3278, '0395713730'), + (1246, '0385176228'), + (1247, '0385176228'), + (1646, '0345335236'), + (11912, '0312112629'), + (11913, '0156001128'), + (11914, '0688120202'), + (11915, '0688120202'), + (11916, '156619945X'), + (11917, '156619945X'), + (11918, '0809117541'), + (1597, '0451528212'), + (10479, '0451528212'), + (3099, '0380794012'), + (8981, '0439087171'), + (11919, '0020223722'), + (11920, '0380009471'), + (4261, '0156189216'), + (970, '0743466527'), + (921, '0440218101'), + (1298, '0440404193'), + (11921, '0874832772'), + (179, '0061097667'), + (3848, '0440229510'), + (971, '0671521500'), + (2964, '0671521500'), + (8277, '0671521500'), + (11922, '0671521500'), + (8277, '1551668459'), + (11923, '0934257507'), + (7831, '0380817624'), + (11924, '0345422473'), + (137, '0394578074'), + (11925, '0060193700'), + (11926, '0618033874'), + (11927, '034530263X'), + (3327, '0440495563'), + (11928, '0945397542'), + (11929, '0945397542'), + (11930, '034543885X'), + (11931, '0740718770'), + (11932, '0740718770'), + (11933, '0740718770'), + (2513, '0385304854'), + (5589, '0385304854'), + (11934, '0767916220'), + (11935, '0786863153'), + (11936, '0786863153'), + (11937, '0141001976'), + (11938, '0874779901'), + (11939, '0836230671'), + (1158, '0836218655'), + (1158, '0836220986'), + (1158, '0836220730'), + (4376, '0345330455'), + (4376, '0345326342'), + (11382, '0688108059'), + (7774, '0688108059'), + (5685, '0688108059'), + (841, '0689818769'), + (842, '0689818769'), + (1089, '0679006826'), + (2902, '0811801802'), + (4094, '0451167872'), + (720, '0671008978'), + (11940, '1569248281'), + (11941, '0684815990'), + (11942, '087754042X'), + (11943, '0877796130'), + (11944, '0877796130'), + (11945, '0877796130'), + (11946, '038078047X'), + (2120, '0671683829'), + (11947, '0671683829'), + (6639, '0345377702'), + (11948, '0345433017'), + (11949, '0525938346'), + (11950, '0060960833'), + (11951, '0809276984'), + (11952, '0930878450'), + (11953, '0930878450'), + (11954, '0930878450'), + (11955, '0767903617'), + (11956, '1563053462'), + (11957, '1563052377'), + (11958, '0517881225'), + (11959, '0060955597'), + (3733, '0696010976'), + (11960, '1556701799'), + (11961, '0912656506'), + (11962, '1859674801'), + (11963, '1579590225'), + (11964, '1579590225'), + (11965, '0316139289'), + (11966, '0316139289'), + (11967, '0688113133'), + (11968, '0761106332'), + (11969, '0762400072'), + (11970, '0762400072'), + (11971, '0762400072'), + (7642, '0762400072'), + (11957, '0894802046'), + (11956, '0894802046'), + (11972, '0894802046'), + (11973, '0684818701'), + (11974, '0684818701'), + (11975, '0684818701'), + (11954, '0028610105'), + (11976, '0028610105'), + (11977, '076110481X'), + (11978, '076110481X'), + (11957, '0894803921'), + (11956, '0894803921'), + (11979, '0785813640'), + (11978, '1563051729'), + (11980, '1563051729'), + (11981, '0024103411'), + (11982, '0024103411'), + (11983, '0898151899'), + (1158, '0836217268'), + (8544, '0836217268'), + (11984, '0896103145'), + (11985, '0882681265'), + (11986, '044652705X'), + (11987, '044652705X'), + (11988, '044652705X'), + (794, '0786862343'), + (11989, '1561792535'), + (1479, '0684844001'), + (1478, '0684844001'), + (11990, '0316099813'), + (11991, '0060094745'), + (11992, '0803709773'), + (11993, '0803709773'), + (11994, '076790849X'), + (11995, '0452267072'), + (11996, '0913589357'), + (8750, '0894861611'), + (11997, '0684867672'), + (4908, '0060977744'), + (1096, '0060931221'), + (2933, '014050639X'), + (2932, '014050639X'), + (11998, '0870679546'), + (11999, '0618043012'), + (12000, '0618043012'), + (12001, '0618043012'), + (3267, '0590458981'), + (735, '0679744398'), + (760, '0140177388'), + (7754, '0439076668'), + (3812, '0590819755'), + (414, '0553251996'), + (12002, '0935180915'), + (12003, '0786000821'), + (5560, '0671563076'), + (92, '0441359175'), + (5560, '0671522663'), + (11382, '0385185596'), + (712, '0395866502'), + (12004, '0849908280'), + (12005, '0824816285'), + (9238, '0399504877'), + (578, '0060964073'), + (578, '0060964065'), + (578, '0060964057'), + (12006, '1573061727'), + (12007, '093049248X'), + (7669, '0689866976'), + (12008, '0689866976'), + (705, '0743442911'), + (994, '0060256680'), + (994, '0060256745'), + (12009, '0425166422'), + (12010, '0312965478'), + (3969, '0380778785'), + (409, '0374525234'), + (12011, '0804816255'), + (12012, '0804816255'), + (12013, '0679411089'), + (12014, '0871134942'), + (11894, '0374423075'), + (12015, '0374423075'), + (12016, '0312959966'), + (12017, '0060987510'), + (1970, '0140468811'), + (4200, '0786885416'), + (138, '0395860296'), + (1259, '0802115454'), + (12018, '0802115454'), + (6438, '0451206363'), + (12019, '0140148450'), + (4677, '0020446500'), + (12020, '0736401954'), + (12021, '0380731398'), + (12022, '0435905554'), + (12023, '031242258X'), + (12024, '0740713957'), + (8496, '0609601032'), + (12025, '0760700761'), + (12026, '0786882506'), + (12027, '1880985020'), + (12028, '0871566230'), + (12029, '0871566230'), + (12030, '0807014133'), + (12031, '0868614726'), + (578, '0060924926'), + (10983, '0394752910'), + (6180, '0679734406'), + (1191, '0679451145'), + (12032, '0385298293'), + (2904, '0684852756'), + (4898, '0671892614'), + (12033, '0525934197'), + (12034, '0440486971'), + (12035, '0440486971'), + (12036, '0440401038'), + (12037, '0763611999'), + (12038, '0763611999'), + (978, '0763611999'), + (12039, '0515128872'), + (1938, '0671000721'), + (8827, '0671000721'), + (12040, '0316460842'), + (243, '0439162521'), + (12041, '0809232057'), + (12042, '0590406205'), + (258, '0590406205'), + (2239, '0590213113'), + (438, '0590213113'), + (4774, '0688046266'), + (12043, '0688046266'), + (12044, '0446522570'), + (12045, '0151006040'), + (12046, '0060955694'), + (12047, '0763615676'), + (12048, '0152018255'), + (12049, '0152018255'), + (12050, '1564020703'), + (12049, '1564020703'), + (12051, '0375810838'), + (1075, '0688106390'), + (12052, '0688106390'), + (12051, '0688106390'), + (1471, '0761121323'), + (1470, '0761121323'), + (1472, '0761121323'), + (12053, '0023376627'), + (12054, '0062734547'), + (12055, '0060931213'), + (12056, '0517093650'), + (12057, '0307020460'), + (12058, '0307020460'), + (12059, '0440412234'), + (2738, '0064402053'), + (3456, '0425095517'), + (3457, '0425095517'), + (12060, '0451163443'), + (760, '014017737X'), + (12061, '0449130320'), + (1816, '0671041444'), + (12062, '1573061565'), + (12063, '1573061565'), + (4836, '1566473209'), + (12064, '1566473209'), + (1755, '0440952522'), + (12065, '188712876X'), + (8120, '188712876X'), + (12066, '0590981811'), + (12067, '0553274422'), + (8847, '0064403319'), + (4600, '0380818973'), + (11312, '0440409683'), + (423, '1573229628'), + (1801, '1888363363'), + (3924, '0525936327'), + (12068, '0890876797'), + (2771, '0201626705'), + (5918, '0671204971'), + (70, '0440322049'), + (274, '0140328696'), + (5016, '0140328696'), + (4934, '0156028778'), + (12069, '0916291456'), + (12070, '0375826688'), + (12071, '0743244427'), + (12072, '0743244427'), + (12073, '0910043590'), + (12074, '0910043590'), + (553, '0451196856'), + (7456, '0395304482'), + (12075, '0590630954'), + (9031, '0899198546'), + (7004, '0899198546'), + (12076, '0201107120'), + (12077, '0201107120'), + (12078, '0812521021'), + (9, '0446351709'), + (4586, '0140390316'), + (12079, '0140390316'), + (12080, '0786704608'), + (12081, '0684853779'), + (2928, '0889104999'), + (12082, '0889104999'), + (12083, '1555913458'), + (12084, '0316548189'), + (12085, '0385468628'), + (12086, '0385336780'), + (10561, '0399238794'), + (12087, '0374529035'), + (12088, '0385507836'), + (12089, '0385507836'), + (12090, '0385507836'), + (1031, '0060953225'), + (274, '0553151657'), + (274, '0553150979'), + (12091, '1578400619'), + (12092, '1578400619'), + (12093, '1578400619'), + (12094, '1578400619'), + (1129, '1578401860'), + (12091, '1578401860'), + (12095, '1578401860'), + (12096, '1578400600'), + (12097, '1578400600'), + (12098, '1578400600'), + (12099, '0385315511'), + (12100, '0877845824'), + (8567, '0813511690'), + (12101, '0385471432'), + (12102, '067973743X'), + (1987, '1574780255'), + (11178, '0679769781'), + (733, '0525938850'), + (274, '0880291230'), + (7280, '0440226198'), + (274, '0140055770'), + (3221, '0394743180'), + (11146, '0449912744'), + (4141, '1551667215'), + (12103, '0064402371'), + (12104, '0064402371'), + (5308, '0671521012'), + (5155, '0671871390'), + (12105, '0399233881'), + (12104, '0399233881'), + (599, '0307122379'), + (12106, '067187893X'), + (12107, '067187893X'), + (10156, '067187893X'), + (12108, '067943979X'), + (12109, '1559720093'), + (8104, '1573420387'), + (12110, '0394849558'), + (4419, '0375502025'), + (12111, '1566911605'), + (12112, '1566911605'), + (12113, '0451199634'), + (12114, '0451199634'), + (2517, '0441007368'), + (12115, '1573241180'), + (12116, '1573241180'), + (12114, '1573241180'), + (12117, '1573241180'), + (12118, '0743225961'), + (12119, '0743225961'), + (12120, '0312161271'), + (682, '1890132322'), + (330, '0805002545'), + (960, '0452265169'), + (12121, '0452265169'), + (12122, '0962307203'), + (11894, '0374413312'), + (12014, '0374413312'), + (12123, '0449218228'), + (12124, '0449218228'), + (12125, '1885167504'), + (12126, '0711919518'), + (10561, '0399238786'), + (12127, '0307021742'), + (12128, '030701021X'), + (592, '030701021X'), + (12129, '030701021X'), + (7330, '0307001040'), + (12130, '0307001040'), + (593, '0307001040'), + (12131, '0307001342'), + (12132, '0307001342'), + (12133, '0307030717'), + (12134, '0307030717'), + (12135, '0307302024'), + (12136, '0307302024'), + (777, '0717288234'), + (1416, '0717288234'), + (12137, '0689804520'), + (12138, '0689804520'), + (12139, '0439213614'), + (12140, '0439213614'), + (3791, '0439381282'), + (12141, '0439381282'), + (12142, '0439381282'), + (12143, '0816714584'), + (3413, '0590341952'), + (6916, '0590341952'), + (12144, '0448343606'), + (12145, '0448343606'), + (12146, '0590334271'), + (12147, '0394851455'), + (12148, '0590689908'), + (7569, '0590689908'), + (11382, '0590738720'), + (11384, '0590738720'), + (12149, '0590464639'), + (12150, '0590464639'), + (3543, '0590411853'), + (3544, '0590411853'), + (12151, '0590411853'), + (12152, '0590411853'), + (12153, '0394840704'), + (12154, '0307020908'), + (12155, '0307020908'), + (12156, '0307988384'), + (12157, '0307988384'), + (12158, '0307010309'), + (12159, '0307010309'), + (12160, '0307002101'), + (12161, '0307002101'), + (12162, '0307002101'), + (12157, '0307010945'), + (12163, '0307010945'), + (5143, '0307601900'), + (3280, '0307001369'), + (3280, '0307301400'), + (12164, '0307010856'), + (12165, '0307010856'), + (1721, '0152420371'), + (12166, '088138044X'), + (12167, '0141309199'), + (11199, '0141309199'), + (12168, '0141309199'), + (12169, '0425153061'), + (7356, '0446674249'), + (12170, '0440400597'), + (12171, '0440400597'), + (5057, '188521135X'), + (12172, '188521135X'), + (12173, '0865476268'), + (1159, '0140274782'), + (12174, '0156717204'), + (1586, '0307960374'), + (12175, '0307960374'), + (12176, '0307960374'), + (12146, '0394837037'), + (12177, '0380017199'), + (12178, '1573060194'), + (12179, '0618164723'), + (176, '1400045088'), + (1109, '081120068X'), + (2637, '081120068X'), + (664, '0380707799'), + (2968, '0061096164'), + (12180, '1558538445'), + (12181, '1558538445'), + (12182, '0879236671'), + (12181, '0879236671'), + (559, '0312954468'), + (10799, '0965574911'), + (12183, '0394889568'), + (12184, '0064430677'), + (12185, '0064430677'), + (12186, '0689304374'), + (12187, '0964335905'), + (11507, '0060812451'), + (12188, '0738861618'), + (12189, '0312167989'), + (12190, '0824813928'), + (8921, '0679781277'), + (5937, '0865470545'), + (12191, '0345440145'), + (12192, '0026098407'), + (1325, '0060167688'), + (6096, '0689846258'), + (11016, '0060812508'), + (3636, '0066211662'), + (12193, '1401300014'), + (12194, '1561633259'), + (8179, '1561633259'), + (1699, '055328942X'), + (12195, '0425167054'), + (11864, '0140083049'), + (12196, '0767900316'), + (12197, '0767900316'), + (12198, '0684863871'), + (12199, '0836236637'), + (12200, '0316597058'), + (12201, '0316597058'), + (12202, '0316597058'), + (12203, '0312922728'), + (12204, '1551520559'), + (3456, '0425103285'), + (3457, '0425103285'), + (12205, '0553342762'), + (241, '0553574086'), + (12206, '0553287575'), + (12207, '0970159404'), + (17, '0757300618'), + (18, '0757300618'), + (12208, '0757300618'), + (12209, '0757300618'), + (1801, '0445205377'), + (12210, '0446610798'), + (3280, '0307986241'), + (12211, '0446611328'), + (1471, '0761125493'), + (1470, '0761125493'), + (1480, '0761125493'), + (12212, '1931686408'), + (12213, '039923392X'), + (12214, '0967418305'), + (12215, '0967418305'), + (12216, '1566471575'), + (12217, '1566471575'), + (12218, '0816704317'), + (12219, '0816704317'), + (12220, '1556114753'), + (247, '0449908453'), + (5101, '0553568779'), + (4476, '0061097489'), + (890, '0440221048'), + (501, '0345394267'), + (5101, '0385420951'), + (6390, '0836261313'), + (2286, '0449909360'), + (4614, '0892965711'), + (49, '0679429883'), + (1571, '0762102519'), + (12221, '0385242395'), + (1754, '0671003364'), + (5101, '0380714868'), + (5101, '0380711877'), + (3379, '0345375351'), + (3035, '0812568672'), + (913, '0446515868'), + (12222, '0446523186'), + (12223, '0553140175'), + (12224, '0786860472'), + (1892, '0671694170'), + (2576, '0399132066'), + (12225, '0070590826'), + (1753, '0312983603'), + (565, '0553106341'), + (1726, '0399144927'), + (2045, '0399143807'), + (49, '0345404785'), + (5101, '0425158608'), + (4477, '0380728168'), + (5102, '0515121282'), + (534, '068480297X'), + (571, '0399139710'), + (252, '0375704892'), + (12226, '0671875817'), + (4794, '0553575260'), + (1876, '0553092650'), + (5101, '0385468520'), + (12227, '0892965835'), + (1013, '0553264680'), + (252, '0451191951'), + (168, '0451191951'), + (49, '0679429891'), + (12228, '0061009881'), + (129, '0316693863'), + (247, '0449224392'), + (10758, '0553575945'), + (585, '0451184726'), + (12229, '0440237513'), + (12230, '0375709045'), + (574, '0345389409'), + (12231, '0066210690'), + (2825, '0743201957'), + (12232, '0425160920'), + (12233, '0451404270'), + (12234, '0425173305'), + (12235, '0451409485'), + (713, '0399145850'), + (7917, '0151003580'), + (1858, '037571412X'), + (889, '0446667900'), + (1591, '0805056645'), + (937, '0786881011'), + (552, '0380730820'), + (6703, '0821765957'), + (128, '0446604232'), + (12236, '0060914289'), + (12237, '0345366395'), + (3608, '0805208488'), + (39, '0517084791'), + (12238, '0312253974'), + (12239, '0312253974'), + (1939, '0517702134'), + (1094, '0312169345'), + (12240, '0684837765'), + (10448, '0807070971'), + (12241, '0020447019'), + (12242, '0060916559'), + (585, '0525939695'), + (12243, '0312264143'), + (2538, '0446527912'), + (7356, '0679762051'), + (1737, '0553578774'), + (5103, '0380790432'), + (5295, '0553581481'), + (12244, '0553571702'), + (3374, '0061044393'), + (347, '0446403237'), + (347, '0446604062'), + (2028, '0399146245'), + (3971, '0679753117'), + (5110, '0671708104'), + (5110, '0671898744'), + (5110, '0671898752'), + (5110, '0671695843'), + (5110, '0671708120'), + (1732, '0449223132'), + (5212, '0373710240'), + (12245, '0373710194'), + (4313, '0373217250'), + (5370, '0373217250'), + (3469, '037371033X'), + (11600, '0373709331'), + (5226, '0373709870'), + (1821, '0373217242'), + (12246, '0373217242'), + (5132, '0373471599'), + (906, '0425067858'), + (2504, '0671036602'), + (3071, '0671036602'), + (973, '0553560980'), + (12247, '0756401518'), + (906, '0425174727'), + (7508, '0740721984'), + (12248, '0061319481'), + (7081, '0446526681'), + (2661, '0312875568'), + (12249, '0886779561'), + (4794, '0345361326'), + (5319, '0312971958'), + (5319, '0312970978'), + (12250, '1582340978'), + (12251, '0789480646'), + (377, '0553276069'), + (4390, '0451209850'), + (5319, '0312968329'), + (12252, '0740723227'), + (6206, '0740723227'), + (5313, '0836282868'), + (1759, '0140280898'), + (490, '0060084022'), + (11321, '0380784491'), + (12253, '0790009072'), + (12254, '0140238530'), + (12255, '1878067125'), + (12256, '014025644X'), + (12249, '1582343187'), + (12257, '0553247468'), + (5319, '0312966695'), + (5313, '0836268237'), + (5946, '140004832X'), + (944, '0812514300'), + (12258, '0061057878'), + (2695, '0515081574'), + (1094, '0553581112'), + (12259, '1567312292'), + (12260, '0380806355'), + (129, '0446611085'), + (5313, '0740704567'), + (1094, '0553581058'), + (5319, '0515075019'), + (12261, '0345443128'), + (12262, '0872863654'), + (5319, '0425144690'), + (12263, '0908652658'), + (12262, '0908569734'), + (7508, '0740728946'), + (5860, '0393325172'), + (12264, '1892514877'), + (3482, '0140119507'), + (3482, '0140299939'), + (3482, '0140092862'), + (3482, '0140081518'), + (5644, '1841954608'), + (12265, '1841954608'), + (1261, '0909486727'), + (10033, '0684856328'), + (12266, '0312313810'), + (12267, '0824817060'), + (12268, '0375414290'), + (12269, '0340401079'), + (1732, '0394537602'), + (1396, '0806518561'), + (12270, '006051406X'), + (9360, '0375502971'), + (12271, '0670825212'), + (138, '0618219153'), + (2100, '0892131012'), + (217, '0679722769'), + (11321, '0380780879'), + (12272, '0786709324'), + (7706, '0060503467'), + (12273, '140004538X'), + (12274, '0618246940'), + (1349, '0618246940'), + (873, '1570089949'), + (12275, '0932379435'), + (6696, '0066212901'), + (12276, '1558171665'), + (2695, '0380728257'), + (3307, '0141002166'), + (2143, '0792265289'), + (12277, '0156006898'), + (12278, '0156006898'), + (12279, '0156006898'), + (4169, '1570629137'), + (12280, '0312252854'), + (12281, '0312287984'), + (5319, '0312966717'), + (5319, '0312964285'), + (5319, '0312969902'), + (5319, '0312966059'), + (12282, '1563335506'), + (12281, '0684850400'), + (12283, '1575663783'), + (1160, '0316107093'), + (12284, '0395836220'), + (12285, '0743422287'), + (12286, '0380842939'), + (2694, '0061093084'), + (2694, '0061099015'), + (585, '0451197399'), + (12287, '0889104646'), + (1851, '0889104646'), + (8213, '0152050167'), + (4101, '0151003130'), + (12288, '0312978863'), + (12289, '0525946578'), + (3434, '0312282664'), + (488, '0380732343'), + (1352, '0670031909'), + (485, '0380978415'), + (554, '055356773X'), + (8213, '0790004062'), + (12290, '076271235X'), + (12291, '076271235X'), + (960, '0679750533'), + (4354, '038000741X'), + (1001, '0553251481'), + (4354, '0345326490'), + (142, '0451179285'), + (202, '014003613X'), + (12292, '0002712172'), + (12293, '0140099271'), + (1094, '0553577808'), + (944, '0812561864'), + (4213, '0790000458'), + (12294, '1565120507'), + (12295, '0060936150'), + (183, '0399149562'), + (12296, '0312966849'), + (12297, '0751501220'), + (12298, '0684853043'), + (12299, '0688021174'), + (12300, '0688021174'), + (1432, '0718146298'), + (12301, '0946487758'), + (137, '0446344672'), + (5319, '0425143538'), + (11807, '0743457471'), + (5319, '0515077003'), + (5319, '0515075345'), + (5319, '0312966709'), + (1747, '0802135161'), + (5319, '0312973144'), + (5319, '0515076279'), + (5319, '0515078514'), + (5319, '0515075078'), + (5319, '0515085928'), + (11321, '0380780860'), + (12302, '0060093595'), + (12303, '0449004279'), + (1002, '0684844826'), + (1554, '0061052582'), + (12304, '0802133525'), + (12305, '0880299193'), + (12306, '0743243412'), + (12307, '0316365521'), + (1213, '0684872536'), + (12308, '0743411943'), + (12309, '0789305186'), + (5319, '0515076066'), + (377, '0553261096'), + (187, '0812574745'), + (485, '0380816547'), + (12310, '0316137251'), + (12311, '0151003378'), + (12312, '0060002433'), + (3955, '0887300405'), + (554, '0312042779'), + (6185, '0451182979'), + (1483, '0142000892'), + (4794, '0553575295'), + (12313, '0679729771'), + (12314, '0066212545'), + (12315, '0312119313'), + (2608, '0345430948'), + (4794, '0553575287'), + (10870, '0394735307'), + (12316, '0394735307'), + (12317, '0060394366'), + (12318, '1565123352'), + (7703, '0375505172'), + (12008, '0312282060'), + (12319, '0971263906'), + (12294, '0684831376'), + (12320, '0385495420'), + (2695, '0451186346'), + (12312, '0394747232'), + (12321, '0966086503'), + (2694, '0061092002'), + (1628, '0451206002'), + (377, '0553234978'), + (485, '0684810972'), + (485, '0312951469'), + (12322, '0898866065'), + (2690, '0140043519'), + (1494, '0140043519'), + (658, '0451165624'), + (12323, '1850514496'), + (12324, '0312969880'), + (12325, '1892327988'), + (12326, '0066214440'), + (485, '0671881884'), + (12327, '0312273126'), + (4794, '0553575279'), + (12328, '0966941411'), + (12329, '0394741919'), + (6414, '0394741919'), + (9978, '055358281X'), + (12294, '0066211239'), + (1048, '0441363946'), + (12330, '0671042297'), + (485, '0380978407'), + (4794, '0553109243'), + (151, '0618012710'), + (7452, '0618012710'), + (3434, '0312282621'), + (3587, '0374129851'), + (12331, '1569471568'), + (7316, '0060958111'), + (7946, '0312966679'), + (7946, '0312963238'), + (1046, '0375709118'), + (12332, '1558746927'), + (1395, '0679441239'), + (223, '0345438817'), + (108, '0312198493'), + (2713, '0553261940'), + (2713, '0553261568'), + (2713, '0553258125'), + (2713, '055325295X'), + (2713, '0553251309'), + (2713, '0553247166'), + (12333, '055325944X'), + (1214, '0671682849'), + (4426, '067164257X'), + (1214, '0671656570'), + (4237, '0671640453'), + (3779, '0440202558'), + (3779, '0440202515'), + (1337, '0060090383'), + (563, '0425135020'), + (564, '0425135020'), + (555, '0871138190'), + (12334, '006103004X'), + (12335, '006103004X'), + (12336, '006103004X'), + (129, '0446600458'), + (760, '055327824X'), + (284, '0553211765'), + (719, '0451403754'), + (554, '0553107240'), + (12256, '0517574985'), + (12337, '0836221443'), + (12338, '0836221443'), + (12339, '0312861230'), + (369, '0399142401'), + (12340, '0684872706'), + (12341, '0684872706'), + (12342, '0310231876'), + (12343, '0310231876'), + (1282, '0684871262'), + (1282, '0451188489'), + (12344, '0970816308'), + (3779, '0312063571'), + (822, '0070064512'), + (6026, '0385499825'), + (12345, '0722536305'), + (12346, '0836270320'), + (12347, '0836270320'), + (12348, '1560438487'), + (12349, '1560438487'), + (185, '1565075315'), + (12350, '0385315724'), + (12351, '0761517049'), + (2618, '0739400614'), + (17, '1558746625'), + (18, '1558746625'), + (17, '1558744592'), + (18, '1558744592'), + (12352, '1558744592'), + (12353, '1558744592'), + (6470, '0670032379'), + (11576, '0425186326'), + (9419, '0446610674'), + (63, '0440224594'), + (12354, '0553066684'), + (12355, '0739417991'), + (553, '0670878847'), + (12356, '0688160344'), + (719, '0060193751'), + (4623, '0446516953'), + (12357, '0375412336'), + (1265, '0553288105'), + (12358, '0586025944'), + (1265, '0586062009'), + (309, '055326981X'), + (12359, '0946626820'), + (12360, '0946626820'), + (12361, '0375755365'), + (12362, '0375755365'), + (12262, '1869414365'), + (5918, '0684818442'), + (12363, '0890876517'), + (230, '0380766558'), + (5080, '0310217601'), + (12364, '0803289065'), + (12365, '0803289065'), + (12366, '0803289065'), + (12367, '0805401725'), + (12368, '0708942008'), + (12369, '0310243882'), + (5357, '0764220330'), + (1092, '0380812061'), + (2145, '0890876789'), + (12370, '0836246047'), + (2808, '0805210288'), + (12371, '0062512234'), + (602, '0803298188'), + (12372, '0803298188'), + (12373, '0803298188'), + (630, '082177462X'), + (1099, '0140149902'), + (12374, '0385334060'), + (12375, '039914983X'), + (12376, '0743230191'), + (715, '0679767185'), + (638, '0060925582'), + (12377, '037570177X'), + (4217, '0380714647'), + (12378, '0380714647'), + (12379, '0765305569'), + (2902, '0811831620'), + (606, '0886776430'), + (8407, '0886776430'), + (5418, '0553564935'), + (12380, '0743422937'), + (325, '0345338715'), + (326, '0345338715'), + (12381, '0435909592'), + (1329, '0385413017'), + (325, '0345403959'), + (326, '0345403959'), + (5418, '0553285246'), + (12382, '0394178637'), + (2825, '0380718839'), + (12383, '9974560004'), + (2454, '0679740074'), + (12384, '0786648287'), + (12385, '0786648287'), + (1616, '0679727124'), + (12386, '015640057X'), + (2724, '0140309594'), + (2726, '0140309594'), + (501, '0451205235'), + (12387, '0804120021'), + (12388, '0449909433'), + (4938, '0802137954'), + (1432, '0684822652'), + (12389, '038547640X'), + (12390, '1580291023'), + (12391, '1580291023'), + (12392, '1580291023'), + (12393, '0316896586'), + (12394, '015600514X'), + (12395, '0441005608'), + (12396, '0345371631'), + (5418, '0380789833'), + (433, '0689860064'), + (1748, '0937295353'), + (1748, '1562475355'), + (10909, '1562475355'), + (1748, '0937295418'), + (1748, '1562470078'), + (397, '0451524381'), + (12397, '0451524381'), + (11830, '0805066128'), + (12398, '068817163X'), + (479, '0553569155'), + (12399, '0316735116'), + (12400, '0060520825'), + (12401, '0671517325'), + (3983, '0316785644'), + (12402, '0899193846'), + (5301, '0425169871'), + (6577, '081296697X'), + (3793, '081296697X'), + (6639, '067974245X'), + (12403, '0375506128'), + (12404, '1573061425'), + (12405, '0879052651'), + (2799, '0879052651'), + (12406, '0688177026'), + (12407, '1558612203'), + (12408, '1558612203'), + (1002, '0684872730'), + (12409, '0393316580'), + (12410, '0449911438'), + (367, '0804117683'), + (1158, '0836217012'), + (12411, '0140447954'), + (12412, '0140447954'), + (536, '0446600660'), + (841, '0399236260'), + (2912, '1573220485'), + (12413, '0375757430'), + (12414, '0880707232'), + (412, '0385491034'), + (12415, '0380727943'), + (3632, '0374527075'), + (12416, '0801855578'), + (12417, '0374134669'), + (6517, '0679772936'), + (3247, '0312194404'), + (12418, '0064431290'), + (12417, '0064431290'), + (12419, '0684808943'), + (7499, '0380814110'), + (12420, '1580172466'), + (129, '0446677388'), + (10438, '0679762108'), + (12421, '0312315600'), + (12422, '0811214206'), + (12423, '0811214206'), + (1012, '0553072455'), + (12424, '0060914440'), + (154, '0385498055'), + (12425, '0399518231'), + (12426, '0399518231'), + (12427, '0679749519'), + (12428, '0761513116'), + (12, '0679731946'), + (2157, '0679745327'), + (12429, '7119020412'), + (12430, '0130866172'), + (12431, '0130866172'), + (12432, '0130866172'), + (12433, '0929701364'), + (12434, '067975444X'), + (12435, '0671028502'), + (2749, '0671047426'), + (12436, '0385313152'), + (12437, '0451202112'), + (12438, '0451202112'), + (12439, '059527059X'), + (12440, '0345390016'), + (2656, '0449221431'), + (217, '0140186832'), + (12441, '0140186832'), + (12440, '0140186832'), + (5513, '0060929855'), + (2593, '0380792478'), + (1600, '0670839809'), + (1213, '0679426612'), + (12442, '0471349976'), + (12443, '0679769420'), + (5052, '044990542X'), + (2021, '0152022341'), + (560, '0816752087'), + (561, '0816752087'), + (12444, '0001714600'), + (2533, '0395906954'), + (12445, '0689831803'), + (12446, '0689831803'), + (7338, '0880016620'), + (664, '0758201885'), + (12447, '0873492862'), + (12448, '0873492862'), + (12449, '0688167241'), + (12450, '1580083986'), + (4253, '1864503157'), + (3952, '0688167802'), + (12451, '0688067700'), + (12452, '0446528595'), + (12453, '0140275010'), + (12454, '185585662X'), + (12455, '185585662X'), + (6429, '0140109595'), + (1055, '0520206738'), + (549, '0880015942'), + (2157, '0394741188'), + (403, '1566198798'), + (220, '0060002093'), + (12456, '0807083178'), + (4209, '0679722181'), + (12457, '1896891063'), + (3051, '038089887X'), + (2543, '034540453X'), + (12414, '1562827960'), + (11198, '1567313736'), + (12458, '031202259X'), + (12459, '0762723742'), + (12460, '0684833840'), + (2689, '0805056084'), + (1308, '0374153248'), + (12461, '0786863951'), + (12462, '185828869X'), + (12463, '185828869X'), + (12464, '0684857022'), + (1375, '0440403790'), + (12465, '0517220121'), + (4787, '0805067922'), + (12466, '0449907562'), + (330, '0878575103'), + (12467, '1877988243'), + (12468, '1877988243'), + (81, '0785799524'), + (2902, '0877017883'), + (2963, '0446604100'), + (252, '0440222028'), + (4937, '0316199648'), + (12469, '1556522460'), + (12470, '0525485082'), + (12471, '0525485082'), + (12472, '0525485082'), + (17, '1558748865'), + (18, '1558748865'), + (12473, '1558748865'), + (12474, '1558748865'), + (1228, '1573223425'), + (2535, '0679753761'), + (7499, '0060081961'), + (12475, '0486200701'), + (479, '0553096060'), + (12476, '0813525764'), + (4028, '0380730200'), + (12477, '0451403800'), + (12478, '0312290888'), + (330, '0679404864'), + (12479, '0062507583'), + (2656, '0449210502'), + (7338, '0316816884'), + (12480, '0931122562'), + (1459, '0312187688'), + (1460, '0312187688'), + (12481, '0399519785'), + (6538, '0060958294'), + (12482, '0684827107'), + (3451, '0609803875'), + (8548, '1882413768'), + (2454, '0871133741'), + (12483, '0871133741'), + (3635, '0805068015'), + (136, '0671793578'), + (6721, '0375750525'), + (11043, '0802133991'), + (8921, '060960516X'), + (12484, '0316197475'), + (12349, '0140122060'), + (4026, '1555835821'), + (991, '0140133488'), + (12485, '0930773284'), + (1214, '0671729470'), + (12486, '0590865420'), + (9834, '0771021828'), + (277, '0156814161'), + (12487, '0912310782'), + (10652, '0912310782'), + (3780, '0452276756'), + (1089, '0676904955'), + (12488, '0676904955'), + (12489, '0676904955'), + (12490, '0028606736'), + (12491, '0028606736'), + (12492, '0970038704'), + (12493, '0970038704'), + (12494, '0970038704'), + (12495, '0970038704'), + (6761, '0140248927'), + (12496, '0767900340'), + (1998, '0345385764'), + (2397, '0060976993'), + (8642, '0679740775'), + (12497, '052594642X'), + (12498, '0140147292'), + (12499, '0553255282'), + (6941, '0688168248'), + (12500, '0684830922'), + (12501, '0714530603'), + (7171, '0714530603'), + (1268, '0151489262'), + (1269, '0151489262'), + (1706, '015670160X'), + (12502, '0385133448'), + (1325, '0345318145'), + (12503, '0440127068'), + (2288, '0312198647'), + (2513, '0804113629'), + (12504, '0963608894'), + (12505, '0963608894'), + (12506, '0963608894'), + (11427, '0590428837'), + (220, '0060932384'), + (2593, '038071843X'), + (1158, '0836218515'), + (3255, '0395744415'), + (575, '0385484275'), + (12507, '0684848295'), + (12508, '0684848295'), + (369, '0373243790'), + (11354, '0395528151'), + (12509, '1559240059'), + (5044, '0345346491'), + (4043, '0385319401'), + (12510, '0060096772'), + (206, '1569470553'), + (12511, '0671892673'), + (1158, '0836211499'), + (2150, '0330294008'), + (12512, '0961655321'), + (12513, '0961655321'), + (51, '0679759263'), + (12514, '0393900401'), + (12515, '0393900401'), + (8163, '0688177905'), + (1511, '0140064834'), + (12516, '0345336712'), + (5707, '0345440129'), + (640, '067975556X'), + (12517, '0679783571'), + (1164, '0553380672'), + (12518, '1885061781'), + (723, '0679727256'), + (723, '0679727272'), + (12519, '031228425X'), + (12520, '0962054364'), + (12521, '0962054364'), + (988, '0670031542'), + (330, '0399145672'), + (12522, '1864501936'), + (12523, '1864501936'), + (2997, '0060976772'), + (12524, '0140280456'), + (9352, '0385499345'), + (4043, '0385334931'), + (12525, '0688163769'), + (12526, '1860469345'), + (4852, '0679742409'), + (12527, '0912365307'), + (12528, '0295962194'), + (12529, '0295962194'), + (4692, '0345419081'), + (1194, '0671663143'), + (12530, '015600464X'), + (12531, '156833186X'), + (1616, '0375704248'), + (6447, '0452282543'), + (12532, '0836221818'), + (461, '0679432477'), + (666, '0736900640'), + (1213, '034539044X'), + (2513, '0804109796'), + (545, '0060168609'), + (1159, '0140131604'), + (51, '0679735461'), + (6880, '0940242737'), + (12533, '1588370011'), + (330, '0517595753'), + (1271, '0609602330'), + (2782, '0679462988'), + (11115, '0517595532'), + (12534, '044020867X'), + (12535, '0964303558'), + (415, '068480123X'), + (5690, '0679734589'), + (2143, '0679422587'), + (3571, '0767902025'), + (282, '0156006197'), + (252, '0375724842'), + (12536, '0385720408'), + (12537, '0385720408'), + (12279, '0312143834'), + (5095, '0452279070'), + (12538, '0553582801'), + (60, '0425137473'), + (252, '0425137473'), + (644, '0425137473'), + (12539, '0425137473'), + (7084, '0451407261'), + (364, '0060198133'), + (12540, '0030640075'), + (1213, '0345310799'), + (5564, '0446391719'), + (12541, '038077514X'), + (4559, '006092411X'), + (223, '0449912787'), + (1055, '037550155X'), + (2336, '0670892742'), + (12542, '0449216241'), + (459, '0316313076'), + (12543, '0345384237'), + (4492, '0156007819'), + (12544, '1550171631'), + (12545, '1550171631'), + (5622, '0393311031'), + (12546, '0684849135'), + (220, '0060928417'), + (1505, '0140097112'), + (12547, '0156006340'), + (12548, '0140119795'), + (4002, '1573220280'), + (12549, '0880014857'), + (3780, '0452281202'), + (367, '0671885332'), + (12550, '1571430148'), + (12551, '1571430148'), + (12552, '1571430148'), + (12553, '1571430148'), + (1308, '0140040188'), + (12554, '0330305336'), + (12555, '0843133805'), + (2808, '0671644076'), + (1605, '0553110438'), + (351, '034536676X'), + (161, '0812217268'), + (12556, '0451525116'), + (12557, '0451525116'), + (12558, '0451525116'), + (5918, '0671640488'), + (2598, '0140284621'), + (2598, '0140030395'), + (12559, '0394716310'), + (12560, '0843733756'), + (679, '0449209105'), + (1985, '0679743839'), + (12561, '1404306781'), + (7240, '0140011722'), + (12562, '0140011722'), + (367, '0449908747'), + (12563, '0915230151'), + (7368, '0618127046'), + (12564, '156305115X'), + (938, '0060972122'), + (2660, '0671754629'), + (1308, '0394741714'), + (2342, '0452261848'), + (81, '0449910571'), + (5918, '0671242954'), + (1055, '0449214370'), + (1001, '0553148923'), + (5371, '0393048144'), + (2471, '0140046860'), + (12565, '0671254308'), + (4814, '0679456945'), + (5085, '0375400656'), + (11232, '0312252803'), + (2035, '078688908X'), + (12566, '0452268427'), + (12567, '0452268427'), + (12568, '0060970782'), + (4814, '0671881604'), + (11836, '0375501959'), + (7873, '0811202208'), + (7022, '0446677922'), + (12569, '1568360266'), + (12570, '0767900057'), + (12571, '0767900057'), + (573, '0312192037'), + (12572, '0316299235'), + (12573, '1842152130'), + (4195, '1567180892'), + (5398, '0877286868'), + (5398, '0877283478'), + (1282, '0743437802'), + (12574, '0771099940'), + (12575, '0771099940'), + (550, '0743410599'), + (12576, '0316890642'), + (937, '0440224012'), + (5488, '0786012676'), + (12577, '075153286X'), + (12578, '0349114021'), + (12579, '0552997803'), + (12580, '0566074184'), + (4130, '0566074184'), + (168, '0140250409'), + (12581, '034082607X'), + (1305, '0753804549'), + (12582, '0722176082'), + (12583, '0006372570'), + (368, '0330293796'), + (12584, '034060977X'), + (12226, '0751511935'), + (12585, '0962500631'), + (12586, '0962500631'), + (12587, '0951980424'), + (138, '0140071814'), + (1291, '055299619X'), + (12588, '1857021037'), + (12589, '014302812X'), + (12590, '014302812X'), + (12591, '014302812X'), + (12592, '0345460391'), + (1186, '0553566067'), + (12593, '0694016446'), + (237, '0345433327'), + (12594, '038550943X'), + (12595, '0671519867'), + (12596, '0375811729'), + (11224, '0375811729'), + (4107, '0786015772'), + (937, '0786880112'), + (12597, '0688174590'), + (12598, '0525947302'), + (5975, '0525947132'), + (12599, '0743229061'), + (12600, '0316102121'), + (12601, '0312192428'), + (1937, '0440220440'), + (1937, '0440222702'), + (1937, '0440222680'), + (1937, '0440220459'), + (12602, '0753700891'), + (11067, '0060509406'), + (12603, '1578566363'), + (136, '0743448677'), + (12604, '0060560754'), + (10768, '0451211200'), + (12605, '0849939372'), + (12606, '1892065444'), + (12607, '0330487949'), + (109, '031225234X'), + (12608, '1583143203'), + (863, '0060595620'), + (641, '0312209517'), + (108, '0312284683'), + (6546, '0060595833'), + (4354, '0345278666'), + (3503, '0380800373'), + (1341, '0373440081'), + (10315, '0385319347'), + (12609, '0743229584'), + (136, '0451160436'), + (4435, '0743454510'), + (435, '037541388X'), + (369, '0515126772'), + (11320, '0060086386'), + (1234, '0767903854'), + (12610, '0446521507'), + (12611, '0446521507'), + (12612, '0451407482'), + (12613, '0060393149'), + (12614, '1899712186'), + (459, '0316317713'), + (12615, '1902852427'), + (137, '0345367081'), + (1730, '042513749X'), + (1194, '0671042696'), + (5686, '0671042696'), + (3280, '0394882695'), + (2239, '0590456601'), + (2239, '0590425013'), + (2239, '0590424971'), + (2239, '0590437208'), + (2239, '0590435124'), + (5608, '0590401386'), + (2239, '0590438999'), + (7426, '0140548130'), + (12616, '0060093412'), + (12617, '0590880144'), + (12618, '068984042X'), + (12619, '068984042X'), + (12620, '0689841930'), + (12621, '0689841930'), + (5677, '0380491710'), + (2239, '0590442996'), + (5828, '0750012706'), + (11071, '0396077897'), + (2239, '0590420070'), + (962, '0590433466'), + (12622, '0743423569'), + (5705, '1889186414'), + (12623, '1889186414'), + (12624, '0451211189'), + (12625, '0451206355'), + (12626, '0312850514'), + (12627, '0312269374'), + (4190, '0425129551'), + (12628, '0060565519'), + (580, '1400060923'), + (12629, '0843951710'), + (12630, '0399151273'), + (1987, '0316570826'), + (5717, '0843951575'), + (9326, '0743412761'), + (12631, '0060199105'), + (12632, '0451205758'), + (12633, '0385334370'), + (12634, '0972915710'), + (5705, '0972915710'), + (334, '0312983832'), + (5718, '1557736154'), + (563, '039915180X'), + (12635, '0061032212'), + (12631, '0451211197'), + (3458, '081296814X'), + (12636, '1401300189'), + (12637, '1840680059'), + (5705, '1892950138'), + (5715, '1892950138'), + (5718, '1887368698'), + (5705, '1887368698'), + (12638, '0312286449'), + (12639, '0345445724'), + (12640, '0843953276'), + (5268, '084395177X'), + (4414, '0553298186'), + (3366, '0553298917'), + (936, '0970998716'), + (59, '055310666X'), + (543, '0385335520'), + (543, '0385335490'), + (8372, '0758205511'), + (11203, '0758205511'), + (1834, '0758205511'), + (59, '0553801430'), + (12634, '0066212995'), + (6457, '1402201478'), + (5718, '0425145662'), + (12641, '0312289510'), + (4294, '0786014555'), + (12077, '0843952199'), + (12642, '0843953292'), + (5405, '0843951826'), + (12643, '0843952571'), + (12644, '0743242548'), + (12645, '1592861857'), + (12646, '189295012X'), + (1094, '0553382527'), + (1116, '0553573691'), + (12647, '037324598X'), + (3115, '1551662604'), + (12633, '0972930930'), + (12648, '0972930930'), + (5718, '1887368353'), + (12649, '1887368353'), + (5718, '1587670674'), + (8688, '0312272758'), + (5718, '0843950404'), + (5405, '0843950463'), + (1571, '0451194004'), + (6517, '0679753362'), + (5705, '0843952032'), + (550, '0743453468'), + (2150, '0679735771'), + (5405, '0843951036'), + (1092, '0671014188'), + (1244, '0345447832'), + (2769, '0345439007'), + (11368, '0843951532'), + (5268, '0843951532'), + (1815, '0843951532'), + (3863, '0765345080'), + (3115, '1551669730'), + (5405, '0843951818'), + (56, '0140620222'), + (12647, '1894815351'), + (5214, '0373230117'), + (1832, '0373230117'), + (5705, '1889186384'), + (12650, '1889186384'), + (5718, '1887368566'), + (12648, '1887368566'), + (5718, '1892950618'), + (12648, '1892950618'), + (543, '0385336306'), + (12651, '0399151729'), + (12652, '0399151729'), + (5485, '0671738763'), + (2583, '0892967269'), + (5485, '0679410554'), + (12653, '0373785070'), + (9384, '0786015578'), + (12654, '1551667207'), + (5405, '0843946903'), + (4371, '0671886118'), + (5485, '0679410562'), + (3241, '1551669676'), + (5405, '0843948507'), + (3504, '0373250304'), + (369, '0373218974'), + (2695, '0743445597'), + (12655, '0373245645'), + (543, '0440224810'), + (3241, '1551667401'), + (373, '0446602159'), + (12656, '0156027127'), + (12657, '0679412921'), + (369, '0373218966'), + (3241, '155166416X'), + (369, '0373239963'), + (543, '0440170796'), + (12658, '0767902238'), + (142, '0670844527'), + (5766, '0380731479'), + (12659, '084395275X'), + (12660, '0743223128'), + (5002, '0843951958'), + (12661, '0061097748'), + (12662, '0451410963'), + (543, '0743474104'), + (5416, '0312984618'), + (402, '048627165X'), + (5302, '0312253079'), + (12663, '0811823555'), + (465, '006053429X'), + (1880, '0345439244'), + (128, '0446360716'), + (9923, '0345439155'), + (5080, '031020707X'), + (376, '0786868139'), + (12664, '0312988249'), + (12625, '0812568729'), + (59, '0553582941'), + (1965, '0425181928'), + (1212, '0425181928'), + (12665, '0671744690'), + (1428, '0446519537'), + (1094, '0553578243'), + (12666, '0743412664'), + (5098, '0380820498'), + (5405, '1587670127'), + (5405, '1587670348'), + (3115, '0373834365'), + (12667, '0743219341'), + (12668, '0553123904'), + (5405, '031213150X'), + (158, '0345396065'), + (5950, '0881848581'), + (12625, '0881848581'), + (1628, '055308920X'), + (237, '0553074741'), + (12669, '0553100335'), + (5583, '0671743066'), + (5560, '0671521705'), + (12670, '0679419853'), + (12671, '031205811X'), + (12672, '031205811X'), + (12673, '031205811X'), + (3379, '067940211X'), + (916, '0891076182'), + (1628, '0553089196'), + (2913, '0688088686'), + (59, '067942525X'), + (5416, '0312968078'), + (60, '067100042X'), + (240, '0553291009'), + (3647, '0525939571'), + (12674, '0786710829'), + (3924, '0525940456'), + (1206, '0802139280'), + (2913, '0743446259'), + (12631, '0451207874'), + (2583, '0446531510'), + (12675, '006000133X'), + (5818, '0060286881'), + (3924, '0060531061'), + (543, '0385299087'), + (59, '0425140032'), + (3277, '0684829924'), + (12676, '0060196572'), + (12631, '0451202821'), + (12677, '055327998X'), + (2966, '055327998X'), + (2002, '068815333X'), + (463, '0345422783'), + (12678, '0385497369'), + (12679, '0345383826'), + (12680, '1879402297'), + (12681, '1879402297'), + (3973, '0553213520'), + (3974, '0553213520'), + (12682, '0553213520'), + (2105, '0062509586'), + (2106, '0062509586'), + (2107, '0062509586'), + (397, '1855013592'), + (4934, '0151006261'), + (12683, '0345350685'), + (6087, '0345350685'), + (12684, '0345350685'), + (12685, '0020631502'), + (5789, '0441644856'), + (11218, '0440234859'), + (5789, '0441468721'), + (5789, '0345374053'), + (12686, '0345427998'), + (12687, '0451451538'), + (12688, '0446608483'), + (39, '0553024248'), + (12689, '043938074X'), + (12688, '043937989X'), + (12688, '0684833727'), + (9056, '0823026906'), + (1410, '0590603795'), + (1411, '0590603795'), + (12690, '0195283910'), + (12691, '055305614X'), + (7761, '0879733438'), + (12692, '0879733438'), + (12693, '0590437747'), + (12694, '0590437747'), + (12695, '0060097825'), + (12696, '0060097825'), + (12697, '014017799X'), + (12698, '1553373405'), + (12699, '1553373405'), + (4262, '0689831935'), + (5142, '0375802975'), + (12700, '0375802975'), + (5143, '0375802975'), + (12701, '0395440904'), + (12702, '0395440904'), + (1410, '0394805666'), + (1411, '0394805666'), + (12703, '0689823215'), + (598, '0689823215'), + (12704, '0689823215'), + (2212, '0439625602'), + (12705, '0689831781'), + (12706, '0689831781'), + (12369, '0696209063'), + (433, '0345335082'), + (7, '0399146857'), + (10198, '0590672975'), + (12707, '0553370227'), + (12708, '0789429624'), + (12709, '0789429624'), + (12710, '0894809938'), + (12711, '0894809938'), + (12712, '0590403729'), + (12713, '0590403729'), + (257, '0064400484'), + (12714, '0064400484'), + (5521, '0064441075'), + (5522, '0064441075'), + (6848, '055325605X'), + (6849, '055325605X'), + (5441, '0440228956'), + (12715, '0452264030'), + (12716, '156138190X'), + (2619, '0842359249'), + (1194, '0448095122'), + (1194, '0448095106'), + (596, '0440417945'), + (4685, '0440417945'), + (974, '0394800028'), + (975, '0394800028'), + (12717, '0312491670'), + (12718, '1579121489'), + (12719, '1579121489'), + (12720, '1579121489'), + (12721, '0816713170'), + (12722, '0064462080'), + (12723, '0767915445'), + (9968, '1931484198'), + (12724, '1931484198'), + (1970, '0140469710'), + (12725, '0940319004'), + (12726, '0698119487'), + (12725, '0698119487'), + (12725, '0399234969'), + (12725, '039923246X'), + (977, '0060284773'), + (978, '0060284773'), + (962, '0689844077'), + (12727, '0689844077'), + (12674, '0060278226'), + (4415, '0689831285'), + (10916, '0689831285'), + (3787, '0590386336'), + (12728, '0786817577'), + (12729, '0786817577'), + (12711, '059042582X'), + (12730, '059042582X'), + (9097, '0425187012'), + (12731, '0785258442'), + (6848, '0553272500'), + (6849, '0553272500'), + (12732, '0395549701'), + (2675, '0395881560'), + (12733, '0316454311'), + (12734, '0840758634'), + (12735, '0312277350'), + (12736, '1885593155'), + (12737, '1885593155'), + (12738, '0913589721'), + (94, '0785335927'), + (10316, '0156806797'), + (12739, '1584850388'), + (5142, '0590623524'), + (12740, '1889209023'), + (12741, '1561384380'), + (12742, '1561384380'), + (12743, '1561384380'), + (12744, '0942237129'), + (12745, '0942237080'), + (12746, '156476737X'), + (12747, '156476737X'), + (12748, '156476737X'), + (12749, '0812043650'), + (12750, '0812043650'), + (12751, '0844283738'), + (12752, '0844283460'), + (12753, '0812046439'), + (12754, '0812046439'), + (12755, '0517590662'), + (12754, '0517590670'), + (7771, '0679889337'), + (12756, '0819310433'), + (12757, '1551050900'), + (12758, '0312291450'), + (12759, '1565123085'), + (9448, '1575724103'), + (9448, '0688177484'), + (12760, '0881661775'), + (10652, '0881661775'), + (12761, '1562313010'), + (1410, '0679989560'), + (1411, '0679989560'), + (12762, '0764800582'), + (12763, '0385029039'), + (1464, '0451525264'), + (12764, '0451525264'), + (12765, '0451525264'), + (12766, '0760734046'), + (12767, '1888992042'), + (9429, '0517562898'), + (9357, '0517562898'), + (12768, '0805063331'), + (12769, '0819830992'), + (12770, '0819830992'), + (12771, '0819830992'), + (12772, '1931709300'), + (12773, '0963903209'), + (12774, '0898706785'), + (12775, '0689829507'), + (12776, '0689829507'), + (12777, '1851825924'), + (12778, '0898706602'), + (12771, '0898704367'), + (7402, '0590414488'), + (12779, '0971412936'), + (12780, '0971412936'), + (12781, '0971412936'), + (12782, '0971412936'), + (5142, '0439141346'), + (7758, '0439141346'), + (12783, '0842373624'), + (12784, '0842373624'), + (12785, '193264542X'), + (12786, '193264542X'), + (12787, '193264542X'), + (2156, '193264542X'), + (12788, '078681859X'), + (12789, '0553381075'), + (12790, '0898707609'), + (6064, '1570642389'), + (12791, '0809256851'), + (12792, '078943413X'), + (12793, '0805068422'), + (12794, '0805068422'), + (12795, '0671882538'), + (12796, '1569552924'), + (12797, '1569552924'), + (12798, '037312354X'), + (12799, '0829411739'), + (12800, '0829411739'), + (12801, '089870569X'), + (12802, '0879736739'), + (12803, '089283756X'), + (12804, '0879735775'), + (12805, '1928832180'), + (12806, '0964261081'), + (12807, '0964261081'), + (3779, '0312134517'), + (12808, '1576581454'), + (12809, '1576581454'), + (12810, '0439236398'), + (12811, '0439236398'), + (231, '0385319800'), + (6702, '0618159789'), + (12812, '0740718665'), + (136, '0740718665'), + (2963, '0445408510'), + (12813, '0140350144'), + (12814, '0140350144'), + (817, '0553271717'), + (12815, '0060163402'), + (2695, '0060163402'), + (1782, '0060163402'), + (12816, '0060163402'), + (1194, '0671730762'), + (1194, '0671730703'), + (1194, '0671730711'), + (105, '0553241346'), + (2937, '055321229X'), + (12817, '0553210602'), + (9454, '0553210602'), + (12818, '0553210602'), + (12819, '0385418957'), + (12820, '0395346355'), + (12821, '0395346355'), + (12822, '0871932148'), + (12823, '0871932148'), + (12824, '0871932148'), + (12825, '0451521692'), + (12826, '0451521692'), + (12827, '0380722658'), + (12828, '0316150460'), + (12829, '0316150460'), + (7873, '0822210940'), + (284, '0140436499'), + (12830, '0140436499'), + (4187, '0553126121'), + (12831, '0553126121'), + (397, '0451526783'), + (397, '0553212818'), + (5572, '0553212818'), + (5573, '0553212818'), + (12832, '0819310395'), + (12833, '055357857X'), + (585, '0345360354'), + (817, '0312989741'), + (284, '0816714630'), + (2233, '0590934899'), + (599, '0307016277'), + (12834, '0440464854'), + (5673, '0590262173'), + (911, '0590262173'), + (1428, '0590847740'), + (3633, '0064401863'), + (5273, '0064401863'), + (12835, '0064401863'), + (568, '0020868308'), + (12836, '0307302709'), + (12710, '0307302709'), + (12837, '0451410106'), + (12838, '039470648X'), + (12839, '0896380653'), + (12840, '0896380653'), + (1509, '1575668335'), + (3026, '0590341502'), + (3027, '0590341502'), + (3028, '0590341502'), + (12841, '0449221059'), + (12840, '0449212599'), + (12840, '0449214990'), + (12842, '0684808129'), + (12843, '0840796560'), + (12844, '0750926376'), + (2306, '0804101167'), + (12845, '0821748726'), + (12846, '0445407549'), + (2590, '0446602809'), + (12847, '1575666278'), + (624, '0553573004'), + (183, '0515087122'), + (1194, '0671700359'), + (913, '0380798565'), + (12848, '1575663309'), + (1509, '1575663309'), + (12849, '1590600762'), + (12850, '1590600762'), + (312, '0895269163'), + (1194, '067173069X'), + (1194, '0671700375'), + (12851, '006091565X'), + (1091, '006104363X'), + (12852, '0965608646'), + (1509, '1575662191'), + (436, '0449213323'), + (436, '0446314889'), + (436, '0449001725'), + (12836, '0345394380'), + (12836, '0345389484'), + (433, '0671721097'), + (7692, '0671721097'), + (12853, '0671721097'), + (2654, '038542406X'), + (607, '0449006700'), + (12854, '0452263301'), + (8754, '0932194540'), + (12855, '0030628822'), + (12856, '0380793474'), + (12857, '0380793474'), + (397, '0517093588'), + (9054, '0517093588'), + (12858, '0425165698'), + (7882, '0939149222'), + (12859, '0939149222'), + (397, '0671509810'), + (12860, '0671509810'), + (12861, '0671509810'), + (12862, '0671661590'), + (12863, '0399136134'), + (4604, '0671435248'), + (12864, '0786880376'), + (12865, '0786880376'), + (12866, '0674445449'), + (4882, '0517597985'), + (2126, '0312966199'), + (12867, '1579830021'), + (2287, '0449212238'), + (12868, '0446522899'), + (213, '0316769517'), + (6514, '0523413920'), + (12869, '0831400889'), + (2927, '0375701214'), + (12870, '0375701214'), + (1362, '0449239047'), + (368, '0515119520'), + (4080, '0553345745'), + (12871, '0380008971'), + (12872, '0916392392'), + (12873, '0449205452'), + (12874, '093033003X'), + (1093, '0394724550'), + (6639, '0394562720'), + (4604, '0684847515'), + (823, '0140063315'), + (433, '034529873X'), + (5898, '034529873X'), + (1091, '0061043494'), + (12875, '0345370767'), + (12876, '0590763563'), + (12877, '0590763563'), + (822, '0061099813'), + (2546, '1575665670'), + (848, '0679742298'), + (1871, '038080722X'), + (7944, '0802733670'), + (12109, '0307103803'), + (7084, '0345343247'), + (644, '0345327772'), + (12878, '1557734534'), + (5319, '0515060712'), + (325, '0345300785'), + (325, '0345300793'), + (12879, '0446602744'), + (12880, '0446602744'), + (2458, '1853262005'), + (12881, '0312960743'), + (12882, '0786881623'), + (12883, '0881763004'), + (1194, '0671730509'), + (1194, '0671730541'), + (11885, '0449205320'), + (12884, '1575663740'), + (12885, '0595217354'), + (12886, '0595217354'), + (12887, '0396036619'), + (9924, '0345377443'), + (822, '0449209377'), + (12888, '0816704589'), + (12889, '0816704589'), + (1194, '0448095025'), + (1194, '0448095033'), + (12890, '0448095033'), + (1194, '0448095068'), + (1194, '044809519X'), + (1194, '0448095238'), + (12891, '0448095238'), + (1194, '0448095246'), + (1194, '044809522X'), + (1016, '1576736792'), + (4187, '0553210416'), + (12892, '0553210416'), + (8732, '0671223666'), + (1428, '0590494481'), + (12893, '156987025X'), + (11321, '0380793660'), + (6591, '0553291955'), + (3362, '0806519339'), + (12894, '0761504370'), + (12895, '0761504370'), + (155, '0393048136'), + (631, '0440459516'), + (94, '0590687247'), + (607, '0449149560'), + (909, '0553156756'), + (8585, '0812536339'), + (8586, '0812536339'), + (1194, '0448095211'), + (1194, '0448095203'), + (11321, '0380801493'), + (12896, '0671722182'), + (5673, '0590866338'), + (911, '0590866338'), + (12897, '0590866338'), + (12898, '0671034375'), + (12899, '0716765144'), + (12900, '0716765144'), + (12901, '0716765144'), + (12902, '0670445800'), + (2720, '0439060435'), + (12903, '0307100820'), + (12904, '0307100820'), + (94, '0861128273'), + (6401, '0789405784'), + (10245, '0679819770'), + (4376, '0345370295'), + (6901, '0590444301'), + (12905, '0590444301'), + (12906, '0395743427'), + (12907, '0590275232'), + (599, '0307101991'), + (12908, '0590333194'), + (12909, '0026885522'), + (12910, '0026885522'), + (12911, '0891914927'), + (12912, '0891914927'), + (7477, '0140178414'), + (1194, '0671649175'), + (5821, '0553264842'), + (913, '0445402296'), + (1509, '1575663929'), + (4189, '0393308804'), + (2654, '0449239799'), + (12913, '0671006614'), + (6591, '0553074938'), + (12914, '0312862083'), + (1998, '0394416457'), + (397, '0671727680'), + (11885, '0451149939'), + (11321, '0380809389'), + (2724, '0140311645'), + (11186, '0061098132'), + (596, '0440473519'), + (264, '0590447742'), + (12915, '0446361046'), + (12916, '0446361046'), + (264, '0440495555'), + (12917, '0373264011'), + (12918, '0373264011'), + (12919, '0373264011'), + (12920, '0373264011'), + (2531, '0671047345'), + (596, '0380709546'), + (617, '0380709546'), + (596, '0440454115'), + (1089, '0930328787'), + (12921, '1556380801'), + (12922, '0380006456'), + (5875, '0441002692'), + (5880, '0441873375'), + (6045, '0451525302'), + (12923, '0451525302'), + (7584, '0553240838'), + (5880, '0345274563'), + (12924, '0425179184'), + (12923, '0425185249'), + (12923, '042518272X'), + (12925, '0743410068'), + (2695, '0451198476'), + (2241, '0590448331'), + (12926, '0440442079'), + (5821, '0553152017'), + (12927, '0590482947'), + (12928, '0590443607'), + (815, '0445085452'), + (11427, '0590407252'), + (4774, '055348513X'), + (4774, '0553157248'), + (1157, '0805000739'), + (1194, '0671730738'), + (1432, '0312203039'), + (5441, '0440422256'), + (12929, '0440422256'), + (12930, '0060937793'), + (12931, '0446608270'), + (12932, '0446608270'), + (8732, '0449223558'), + (12933, '0933488327'), + (12934, '0897330854'), + (12935, '0897330536'), + (12936, '0897330536'), + (12937, '0897330536'), + (12938, '0380794063'), + (12939, '0380794063'), + (1626, '0061007358'), + (187, '0812531167'), + (5104, '0425140989'), + (5104, '042515405X'), + (12940, '0425128482'), + (12941, '0060524936'), + (1498, '0812576071'), + (12942, '0062502972'), + (12943, '0062502972'), + (12944, '0062502972'), + (12945, '0440159415'), + (551, '0671450492'), + (5880, '0812541529'), + (624, '042518885X'), + (2513, '0756400988'), + (12946, '0756400988'), + (433, '0756400988'), + (7753, '0440840953'), + (12857, '0425180042'), + (501, '0345374568'), + (5635, '0140367683'), + (12947, '0440430909'), + (3969, '038081563X'), + (12948, '0060953675'), + (956, '0553153277'), + (2940, '0140088121'), + (1259, '0802115160'), + (1468, '0312201656'), + (56, '0451519167'), + (1194, '067173072X'), + (292, '0603550622'), + (12949, '0312207662'), + (2717, '0679844074'), + (2718, '0679844074'), + (250, '0064410722'), + (1422, '0380815605'), + (12950, '0440204739'), + (533, '0553258915'), + (9241, '0553271954'), + (9240, '0553271954'), + (4774, '055315723X'), + (4774, '0553157256'), + (4774, '0553157353'), + (12951, '055314796X'), + (2126, '0553268120'), + (7750, '0345448820'), + (822, '0449237850'), + (6894, '0899197213'), + (12952, '0899197213'), + (1298, '0440486599'), + (12833, '0440495717'), + (1397, '0380705672'), + (12953, '0380705672'), + (8502, '0446400408'), + (551, '0671455281'), + (4774, '0553157345'), + (12954, '1860421016'), + (12955, '1860421016'), + (1428, '0590431390'), + (1428, '0671738666'), + (5758, '0451110641'), + (12956, '0374253536'), + (12957, '0006386369'), + (1626, '0671456865'), + (2029, '0836228995'), + (12958, '0345275306'), + (2288, '0393025616'), + (12959, '0849942195'), + (11356, '0849942195'), + (292, '0583300650'), + (292, '0583300588'), + (292, '0583300359'), + (292, '0583300340'), + (292, '0583300332'), + (292, '0583300324'), + (3322, '1573225312'), + (1733, '0671620193'), + (1013, '0449219461'), + (2279, '0929638298'), + (12960, '0440405157'), + (12961, '0440441099'), + (12962, '0440154138'), + (12963, '0440154138'), + (5880, '0441006361'), + (12169, '0440420326'), + (403, '0451523555'), + (2937, '0451523555'), + (12840, '0449217949'), + (6390, '0449007138'), + (12964, '0440237041'), + (5986, '0449907155'), + (1227, '0679741666'), + (12872, '0575400048'), + (2029, '0836236688'), + (2029, '0836210263'), + (12965, '0809233479'), + (12966, '1580170951'), + (12967, '0345431057'), + (12968, '0345458303'), + (12969, '0929523288'), + (12970, '0879850213'), + (12971, '0394725808'), + (12972, '0848714385'), + (12973, '0848714385'), + (1483, '0670031054'), + (1483, '0670032077'), + (1509, '1575667347'), + (1509, '1575666855'), + (3314, '0449200817'), + (12974, '0671443356'), + (12975, '0671443356'), + (1428, '0590494457'), + (12976, '0590294040'), + (4220, '0590294040'), + (4325, '076241085X'), + (12977, '0312911912'), + (551, '0671438190'), + (9330, '0553247824'), + (12978, '0553251961'), + (9225, '055325362X'), + (5896, '0743200322'), + (5677, '0590537733'), + (5680, '0590537733'), + (12979, '0679883614'), + (12980, '0440475333'), + (264, '0689831404'), + (3097, '0689831404'), + (978, '0064431789'), + (10551, '0486247791'), + (12981, '0590316575'), + (12982, '0590484451'), + (12983, '0590447432'), + (312, '0195003640'), + (12984, '0195003640'), + (12985, '0316784974'), + (2654, '0449221776'), + (3096, '0449242625'), + (1164, '0553096036'), + (2242, '0553288474'), + (7600, '0140340246'), + (1519, '0812504488'), + (12986, '0840741391'), + (2479, '0842346112'), + (7581, '0380717832'), + (1626, '0061093653'), + (906, '0425104060'), + (12853, '0679761802'), + (12987, '0590454412'), + (12810, '0590454412'), + (12235, '0064401510'), + (12988, '0064401510'), + (12989, '0345255585'), + (11204, '0140280464'), + (397, '0671722751'), + (12990, '0449146863'), + (1773, '0061054003'), + (12991, '0802730949'), + (8501, '0446404039'), + (9824, '0380709473'), + (12992, '0380709473'), + (2226, '0449214567'), + (1325, '0345358031'), + (2656, '0449213358'), + (12993, '0553225650'), + (12994, '0553111507'), + (12995, '0879237848'), + (12996, '0879237848'), + (415, '0553213202'), + (885, '0385474903'), + (886, '0385474903'), + (12997, '0770420842'), + (12998, '0553282166'), + (12999, '0553282166'), + (3104, '0553154400'), + (11358, '0380001411'), + (13000, '0679766766'), + (5825, '0310218039'), + (13001, '0452283736'), + (1327, '0385506686'), + (362, '0821744526'), + (5877, '0553569368'), + (13002, '0688179444'), + (13001, '0688179444'), + (1468, '0380006286'), + (281, '0440447682'), + (397, '0671727184'), + (596, '0440760755'), + (571, '0451141083'), + (13003, '0307215873'), + (4426, '0671415085'), + (8154, '0553282980'), + (13004, '0440383145'), + (13005, '0060912596'), + (12098, '0385315546'), + (1387, '0373833865'), + (585, '0345356535'), + (8501, '0380731630'), + (1410, '0590944738'), + (1411, '0590944738'), + (13006, '089577481X'), + (13007, '089577481X'), + (13008, '0590426915'), + (256, '0060507772'), + (261, '0060507772'), + (13009, '0842335935'), + (585, '0449149986'), + (2656, '0449223450'), + (2656, '0449238601'), + (13010, '0316364517'), + (13011, '0828891591'), + (397, '0451518519'), + (2577, '0515121746'), + (5424, '0515121746'), + (2248, '0515121746'), + (13012, '0515121746'), + (6667, '0345326210'), + (4471, '0345428307'), + (13013, '0345307593'), + (2656, '0449238040'), + (2656, '0449238520'), + (397, '0553212982'), + (5572, '0553212982'), + (5573, '0553212982'), + (3635, '0312421036'), + (13014, '0446363278'), + (12883, '157566108X'), + (12883, '1575663562'), + (7452, '0375712992'), + (8912, '0375712992'), + (1509, '1575664992'), + (9817, '039331393X'), + (13015, '039331393X'), + (187, '0345336003'), + (10551, '0345282280'), + (13016, '0345282280'), + (13017, '0312963963'), + (596, '0380709244'), + (617, '0380709244'), + (13018, '0671897861'), + (13019, '0671897861'), + (13020, '0064400468'), + (5877, '0312978650'), + (2126, '0312925581'), + (13021, '0380603926'), + (563, '0425152898'), + (1214, '067172942X'), + (13022, '0316850950'), + (397, '0451521269'), + (10446, '0451521269'), + (13023, '0446352470'), + (635, '0061030597'), + (13024, '039458872X'), + (13025, '0761109196'), + (13026, '0761109196'), + (607, '0449235637'), + (13027, '0671497596'), + (13028, '0140432787'), + (13029, '0140432787'), + (1509, '1575663708'), + (3539, '0394717740'), + (433, '0345314484'), + (433, '0553234595'), + (438, '0440986311'), + (6390, '0345331907'), + (410, '0553275224'), + (13030, '0380423901'), + (9023, '0881843903'), + (13031, '0671534645'), + (9225, '0060974443'), + (9225, '0060974435'), + (433, '0345341678'), + (403, '0553211285'), + (2600, '0553211285'), + (956, '0553242954'), + (13032, '0688040330'), + (1258, '078688505X'), + (4382, '0449149587'), + (11312, '044040407X'), + (596, '044042299X'), + (596, '0440432952'), + (13002, '0307215598'), + (3313, '0440201322'), + (13033, '0440201322'), + (4361, '0451186796'), + (596, '0440772109'), + (596, '0440472415'), + (596, '044040665X'), + (438, '044096895X'), + (4672, '0590433563'), + (256, '0380978954'), + (734, '0140568123'), + (3668, '0140568123'), + (1422, '0380706490'), + (13034, '0837885043'), + (187, '0380759489'), + (1871, '0380793253'), + (563, '0399139141'), + (187, '0345337484'), + (13035, '0898657512'), + (1003, '0393001660'), + (13036, '0393001660'), + (187, '0345318862'), + (187, '0345311078'), + (187, '0345313216'), + (187, '0345317718'), + (2987, '0345327861'), + (5898, '0345327861'), + (9225, '0553250671'), + (377, '0553252542'), + (433, '0812510992'), + (13037, '0671540882'), + (13038, '0671540882'), + (13039, '044900161X'), + (817, '0553294229'), + (13040, '0425101088'), + (187, '034530456X'), + (187, '0345335090'), + (13041, '0802725228'), + (2791, '0671473204'), + (13042, '089081015X'), + (4350, '0446370126'), + (4351, '0446370126'), + (1908, '055322509X'), + (13043, '089622662X'), + (9805, '0961551445'), + (13044, '0425114511'), + (10540, '0425114511'), + (817, '0446360082'), + (12946, '0307122239'), + (13045, '0307122239'), + (13046, '0879058161'), + (13047, '0671038869'), + (533, '0609601008'), + (3051, '0805058664'), + (10882, '0399143939'), + (2242, '0553094653'), + (7744, '0517588455'), + (39, '0345354648'), + (10720, '0312107935'), + (13048, '0553294636'), + (11885, '0449213439'), + (12939, '042513265X'), + (256, '0061020648'), + (13049, '088138013X'), + (2619, '0553228412'), + (2968, '0804111146'), + (13050, '0060675187'), + (169, '0061056014'), + (13051, '0060183136'), + (13052, '0060183136'), + (13053, '0712674527'), + (4679, '0394846664'), + (13054, '0380792036'), + (252, '0609608533'), + (135, '0316678104'), + (281, '0448060191'), + (13055, '0448060191'), + (2654, '0449200558'), + (7935, '0380636778'), + (13056, '0380636778'), + (13057, '0764150987'), + (2525, '0060514698'), + (4195, '1578591147'), + (13058, '0812882776'), + (4276, '0671416367'), + (13059, '1578564271'), + (12625, '0812516389'), + (2179, '0590466771'), + (3379, '034537536X'), + (13060, '089296426X'), + (13061, '089296426X'), + (13062, '0812932064'), + (13063, '0812932064'), + (1859, '0812932064'), + (13064, '0140020845'), + (13065, '0140020845'), + (13066, '0919345174'), + (13067, '1567184006'), + (60, '0671741195'), + (49, '0345386132'), + (10997, '0201489376'), + (13068, '0201489376'), + (13069, '1566890861'), + (13070, '0373441533'), + (13071, '0961696702'), + (13072, '1566260272'), + (13073, '1576734161'), + (1498, '0312871880'), + (13074, '0595096751'), + (13075, '0805237739'), + (13076, '087875539X'), + (13077, '039332298X'), + (723, '185715133X'), + (13078, '0395083567'), + (218, '0425157180'), + (3713, '0553578375'), + (665, '0684179962'), + (218, '0425171094'), + (247, '0449214427'), + (4197, '0345333756'), + (4197, '0345350162'), + (346, '038072362X'), + (13079, '1400031028'), + (4197, '0345333721'), + (13080, '0670910279'), + (13081, '0310978912'), + (7566, '067167739X'), + (13082, '067167739X'), + (13083, '067167739X'), + (13084, '0931674042'), + (13085, '1887166491'), + (13086, '1887166491'), + (1787, '0688065317'), + (247, '0345433262'), + (8750, '0866835024'), + (13087, '0866835024'), + (3081, '0807119563'), + (13088, '0064640353'), + (668, '0446603651'), + (13089, '0156004070'), + (6020, '0486275639'), + (4146, '0688032079'), + (7882, '0446674931'), + (10316, '081120099X'), + (13090, '1577485033'), + (238, '0451176820'), + (13091, '0140092846'), + (13092, '088029700X'), + (13093, '0865476004'), + (3392, '1573241482'), + (13094, '0866835040'), + (13095, '0451200861'), + (5586, '0446387878'), + (63, '0385301499'), + (1010, '0385336764'), + (4354, '0060956445'), + (13096, '0060956445'), + (13097, '0062502239'), + (13098, '096612880X'), + (1957, '0806982276'), + (13099, '0806982276'), + (635, '0060185147'), + (13100, '0805010270'), + (2759, '0425184307'), + (930, '0345409043'), + (60, '0440110653'), + (13101, '0553574701'), + (13102, '0380732084'), + (63, '0385335121'), + (4487, '0671016970'), + (247, '0449225666'), + (13103, '0373263937'), + (6669, '0312093616'), + (13104, '1586602950'), + (13105, '1586602950'), + (13106, '1586602950'), + (13107, '0764563556'), + (13108, '0764563556'), + (13109, '1573229601'), + (208, '1573229601'), + (5843, '0590452991'), + (10088, '0590452991'), + (13110, '0860209261'), + (5128, '0452264510'), + (13111, '0786869445'), + (979, '0786869445'), + (13112, '0380819597'), + (630, '1575667614'), + (13113, '0877935637'), + (13114, '0877935637'), + (13115, '0684856077'), + (5131, '0517597977'), + (8316, '0671567713'), + (13116, '0671537512'), + (368, '0718143515'), + (13117, '0373441517'), + (2249, '1551666219'), + (363, '0380710854'), + (13118, '0140012664'), + (12715, '0773752102'), + (1265, '0441731546'), + (2126, '0553204343'), + (13119, '0201112159'), + (13120, '0782122221'), + (13121, '0782122221'), + (2755, '0782122221'), + (2755, '078212223X'), + (13119, '078212223X'), + (13120, '078212223X'), + (13122, '0782122213'), + (2224, '0345316576'), + (13123, '0770109047'), + (13124, '0060139145'), + (13125, '0060139145'), + (13126, '0345372328'), + (13127, '0671769057'), + (142, '0670220264'), + (1998, '0517422840'), + (6568, '0671229427'), + (6568, '0671230875'), + (6568, '0671673238'), + (6568, '0671492055'), + (6568, '0671218581'), + (13128, '0671502549'), + (12921, '0380379783'), + (1704, '0553566032'), + (1891, '042507272X'), + (1891, '042507160X'), + (13129, '051770689X'), + (13130, '0440107016'), + (5538, '081253073X'), + (13131, '0671655892'), + (1065, '0451452739'), + (13132, '0451452739'), + (1704, '0553569570'), + (3071, '0671877410'), + (3073, '0671877410'), + (1704, '0553281798'), + (4261, '0156729156'), + (13133, '0440500303'), + (13134, '0440500303'), + (9352, '1400031257'), + (13135, '0860917886'), + (13136, '0860917886'), + (13137, '0860917886'), + (1771, '0805210474'), + (13138, '1931561168'), + (13139, '1573229539'), + (13140, '1578194547'), + (13141, '0684869497'), + (6369, '0060937556'), + (13142, '0805072772'), + (13143, '0671224387'), + (13144, '0805207457'), + (13145, '0767904605'), + (13146, '1560254505'), + (13147, '1560254505'), + (653, '081293217X'), + (13148, '0141802812'), + (1870, '0141802812'), + (2599, '0679732233'), + (8104, '0679732233'), + (13149, '0375417206'), + (13150, '0375417206'), + (270, '0192815539'), + (13151, '0192815539'), + (13152, '0679735011'), + (4156, '0875425925'), + (13153, '0393087913'), + (13154, '0252062825'), + (13155, '0375420762'), + (13156, '0877957215'), + (1259, '0802139914'), + (13157, '0802139914'), + (13158, '0738205702'), + (11030, '0743222245'), + (13159, '0971156905'), + (11074, '0804106436'), + (5909, '0395519462'), + (13160, '0452270251'), + (13161, '0452270251'), + (2632, '0452270251'), + (436, '0449219402'), + (13162, '0934211477'), + (13163, '0385491239'), + (13164, '0156027453'), + (2208, '069452350X'), + (13165, '069452350X'), + (236, '0446691798'), + (13166, '1883642434'), + (7961, '1883642434'), + (13167, '0140086412'), + (268, '0961035269'), + (8559, '0961035269'), + (13168, '0452283906'), + (13169, '0060952652'), + (11517, '0449006581'), + (13170, '185799597X'), + (156, '1585670227'), + (979, '0743206371'), + (13171, '0814402860'), + (5560, '0671526065'), + (1308, '0446671304'), + (13172, '038547167X'), + (13173, '0060913983'), + (13174, '0874411033'), + (679, '0874411033'), + (3169, '0345434471'), + (674, '044661078X'), + (13175, '1575667266'), + (3399, '1551669412'), + (13176, '1400047943'), + (13177, '1400047943'), + (13178, '0451205448'), + (13179, '0877142912'), + (13180, '0452284295'), + (5507, '0425190749'), + (10127, '0060517212'), + (5967, '0060548215'), + (6185, '0451197550'), + (6314, '159184021X'), + (13181, '0743442652'), + (13182, '0345434137'), + (13183, '082176845X'), + (13174, '1575664798'), + (6560, '0312970757'), + (6323, '1575667223'), + (6323, '1575667215'), + (24, '0739302213'), + (13184, '0739302213'), + (13182, '038081918X'), + (13185, '037370920X'), + (13186, '0373243146'), + (10376, '0380816830'), + (11662, '0373708513'), + (13187, '0425184315'), + (2247, '0380814390'), + (6318, '0312978723'), + (13188, '0380793806'), + (108, '1551666189'), + (12666, '0743219333'), + (6523, '0373708661'), + (919, '0373708408'), + (550, '0671786601'), + (2964, '0446609188'), + (10195, '037344155X'), + (13189, '0505524228'), + (3084, '0747266395'), + (4136, '0553578758'), + (2258, '0380782340'), + (3468, '0373166125'), + (928, '0373195419'), + (13190, '0373291027'), + (13191, '0849935369'), + (13192, '0373169043'), + (13193, '0373441568'), + (13194, '0373441568'), + (11674, '0373825412'), + (12379, '0671039350'), + (13195, '1890768030'), + (13196, '0312966369'), + (13197, '0312956436'), + (13198, '0671526677'), + (13199, '0671731866'), + (2964, '0821771175'), + (13200, '037316680X'), + (13201, '0373707053'), + (13202, '0312971370'), + (3177, '0505524279'), + (13203, '050552497X'), + (4581, '0312981848'), + (8860, '0373272006'), + (9526, '0373226586'), + (369, '0515133868'), + (5353, '0515133868'), + (13204, '0515133868'), + (13205, '0515133868'), + (13206, '0373217218'), + (12654, '0373217218'), + (13207, '0373710763'), + (1837, '1551668270'), + (13208, '0804119686'), + (13209, '037322608X'), + (13210, '0373226055'), + (13116, '0373259786'), + (12386, '0373790554'), + (13211, '0373226470'), + (3502, '0821773402'), + (1196, '0373834853'), + (373, '0373834853'), + (13212, '037371047X'), + (2964, '0821765221'), + (13213, '0553575066'), + (2963, '0446403830'), + (1214, '074342347X'), + (13195, '0312955421'), + (10193, '0373037147'), + (13214, '0446609005'), + (1214, '0671729454'), + (1214, '0671007718'), + (13215, '0804117438'), + (1112, '1551665506'), + (13216, '0446364819'), + (7532, '0373226780'), + (2161, '0373194870'), + (10389, '0373226802'), + (13217, '0373441436'), + (13218, '0373441436'), + (13219, '0373441452'), + (13220, '0380781565'), + (1268, '9871106181'), + (270, '9507682074'), + (1188, '0451528522'), + (13221, '0451528522'), + (6371, '0803728719'), + (6371, '0803760965'), + (13222, '0803760965'), + (13223, '0553482939'), + (13222, '0553483579'), + (13222, '0553482890'), + (13224, '0061062081'), + (13223, '0061067865'), + (13223, '0061061441'), + (13225, '0061061441'), + (13226, '006106727X'), + (3327, '0440943930'), + (3327, '0440997313'), + (13227, '0553264753'), + (4189, '0393311465'), + (13228, '0140183078'), + (5466, '0192815555'), + (13229, '0192815555'), + (607, '0449208648'), + (824, '0449214281'), + (607, '044918336X'), + (607, '0449150046'), + (13230, '0140104771'), + (13231, '0671827774'), + (4189, '0393000567'), + (3327, '0030074312'), + (13232, '0030074312'), + (13233, '0553211668'), + (4636, '0394550846'), + (13234, '0679737383'), + (13235, '1878424084'), + (13236, '1878424084'), + (284, '0140430032'), + (1679, '0670032670'), + (6581, '0060929952'), + (13237, '0141001682'), + (13238, '0141001682'), + (3752, '0060937742'), + (12850, '0060913568'), + (13239, '0345439163'), + (13240, '0972100539'), + (13241, '1580632068'), + (13242, '1580632068'), + (8680, '0425140040'), + (13243, '0062701649'), + (6591, '0553277944'), + (13244, '1591251478'), + (13245, '1591251478'), + (2029, '0887307876'), + (12468, '1556521952'), + (13246, '1556521952'), + (13247, '1582700230'), + (13248, '1582700230'), + (458, '1567403263'), + (13249, '1567403263'), + (810, '0449002268'), + (13250, '0205187382'), + (13251, '0205187382'), + (13252, '0553345834'), + (13253, '0970866402'), + (13254, '0970866402'), + (13255, '0970866402'), + (5310, '039592684X'), + (7, '039592684X'), + (13256, '159129021X'), + (13257, '0805058001'), + (13258, '0684848376'), + (13259, '0761119396'), + (13260, '0836279077'), + (13261, '0938756605'), + (13262, '0452282691'), + (3813, '0679752927'), + (13263, '1580631797'), + (12850, '006091646X'), + (13264, '0883964368'), + (13265, '0970351704'), + (2259, '031220387X'), + (5695, '0452281636'), + (8093, '0425111911'), + (463, '080410946X'), + (9541, '0312289189'), + (4435, '0743422449'), + (13266, '0425176339'), + (218, '0425176339'), + (1426, '0446359203'), + (13267, '1893705153'), + (231, '0440206529'), + (4988, '0312962258'), + (13268, '0972051007'), + (13269, '0970997582'), + (13270, '0970997582'), + (8813, '0525933654'), + (4948, '0030554381'), + (13271, '0741408155'), + (12240, '0811813401'), + (2628, '0452279593'), + (13272, '096146206X'), + (13273, '0671795694'), + (13274, '1552790401'), + (13275, '0800757769'), + (3779, '0312978383'), + (369, '051511779X'), + (458, '055358264X'), + (2663, '0380978091'), + (13276, '0452271657'), + (1315, '0451175123'), + (2006, '0380756250'), + (13277, '0312420323'), + (13278, '0972386602'), + (578, '0060924802'), + (5953, '037570910X'), + (13279, '0142003514'), + (13280, '0142003514'), + (896, '0142003514'), + (13281, '0394561120'), + (13282, '1574900684'), + (13283, '1574900684'), + (7910, '0312186924'), + (13284, '0440123747'), + (4435, '0688158129'), + (10174, '0312119305'), + (13285, '087905283X'), + (12392, '0316895245'), + (13286, '0393308499'), + (1232, '0312270933'), + (1232, '0679744665'), + (3924, '0452269865'), + (3423, '0385264666'), + (54, '0060927569'), + (7480, '0140424385'), + (7481, '0140424385'), + (1616, '0679457852'), + (4082, '0440167361'), + (1232, '0140157379'), + (312, '0140442618'), + (11531, '0140442618'), + (13287, '0884191338'), + (3224, '0340165634'), + (13288, '0891902309'), + (3224, '0449237923'), + (2981, '0064473511'), + (4738, '0786704799'), + (13289, '0385721765'), + (6452, '0394736656'), + (13290, '0316196614'), + (284, '0451526562'), + (4556, '0451526562'), + (284, '0553210165'), + (13291, '0553210165'), + (401, '0787119784'), + (220, '0060912529'), + (13292, '0393314073'), + (13293, '0672520885'), + (3989, '1577656954'), + (1519, '0451521897'), + (13294, '0451521897'), + (894, '0553273221'), + (13295, '0590422677'), + (1194, '0671646990'), + (281, '0679445102'), + (5975, '0440156998'), + (145, '0425158632'), + (2654, '0449237575'), + (7553, '0140444270'), + (13296, '0140444270'), + (13297, '0140444270'), + (3102, '0742628191'), + (13298, '0812963741'), + (13299, '0812963741'), + (13300, '0192825232'), + (13301, '0192825232'), + (13302, '0192825232'), + (939, '042511306X'), + (2654, '2830202813'), + (13303, '0030119502'), + (2834, '0380017997'), + (4137, '0449207439'), + (2805, '0671755064'), + (8368, '0590424564'), + (13304, '0380775506'), + (13305, '0515116386'), + (8678, '0380754029'), + (13306, '1557739404'), + (13307, '0843941790'), + (13308, '0440206499'), + (2255, '0843935391'), + (13309, '0821754084'), + (13310, '0843935405'), + (13311, '0380778335'), + (13312, '0821746545'), + (1319, '0446365262'), + (14, '0821766430'), + (13313, '0380775794'), + (12654, '0380898802'), + (563, '0425132048'), + (13314, '0061083259'), + (3241, '0061083259'), + (13218, '0446613665'), + (550, '0671786466'), + (129, '0446606189'), + (2823, '0743456181'), + (13182, '0380819201'), + (3182, '0821769332'), + (910, '1551665042'), + (9202, '0515127108'), + (13315, '0515127108'), + (13316, '0515127108'), + (7647, '0515127108'), + (550, '0440215994'), + (2657, '0440235782'), + (13317, '0449146448'), + (2657, '0440237602'), + (13318, '0425196852'), + (2417, '0373218095'), + (2261, '0446612944'), + (1196, '0445206578'), + (3798, '0786889691'), + (5419, '0380780038'), + (13319, '0380793393'), + (108, '155166951X'), + (3549, '0786016418'), + (4330, '0804119503'), + (2913, '0380711532'), + (2913, '0440222877'), + (743, '0821772228'), + (3374, '0061044407'), + (5283, '0821746170'), + (2963, '0445409169'), + (3399, '0380792206'), + (1428, '0590673203'), + (2233, '059067319X'), + (5712, '0446612812'), + (3182, '0821770802'), + (13320, '0821772139'), + (13321, '1551666960'), + (13322, '0743477294'), + (13323, '1551664267'), + (132, '0553803409'), + (60, '074320607X'), + (635, '0060514930'), + (6396, '0446612510'), + (13324, '1551669455'), + (458, '0553581023'), + (1833, '0425192784'), + (4376, '0345319281'), + (4376, '0345318056'), + (4376, '0345312716'), + (4376, '0345312260'), + (4376, '034530912X'), + (13325, '0345307127'), + (4376, '0345302621'), + (4376, '0345287797'), + (550, '0440225043'), + (108, '0373255632'), + (971, '1551661535'), + (1194, '0671000527'), + (128, '0553802542'), + (550, '0671786539'), + (971, '0671034421'), + (13326, '0802775829'), + (13182, '0380807122'), + (13327, '1551665867'), + (13182, '0380807149'), + (13328, '0821771450'), + (13182, '0380795116'), + (13182, '0380795124'), + (7780, '0060539836'), + (8277, '0671567705'), + (13329, '0590448862'), + (13330, '0590448862'), + (1194, '0671019295'), + (3503, '0380800381'), + (1829, '0373072937'), + (13331, '1551665360'), + (13332, '0553237667'), + (13333, '1879960109'), + (7254, '0684865114'), + (13334, '0465015328'), + (6371, '0553272470'), + (3704, '0316955256'), + (59, '0446603392'), + (1706, '055321490X'), + (11396, '0064407713'), + (1308, '0374525080'), + (145, '0399139540'), + (955, '0385315236'), + (175, '0446520950'), + (760, '014005829X'), + (1577, '0312186142'), + (13335, '0446523437'), + (13336, '0064471861'), + (11304, '0064471861'), + (285, '006095129X'), + (13337, '0553256130'), + (13338, '059042792X'), + (729, '060980149X'), + (290, '0671502336'), + (2418, '0671504371'), + (1880, '0449911446'), + (13339, '0451527550'), + (2301, '074343756X'), + (13340, '0743222628'), + (56, '0141439513'), + (5576, '0141439513'), + (1248, '0743225422'), + (13341, '0374278784'), + (270, '159308059X'), + (13342, '159308059X'), + (268, '0060558121'), + (5582, '1573221767'), + (271, '0374199698'), + (13343, '0373250460'), + (93, '0375828192'), + (634, '0399132821'), + (814, '1573220876'), + (93, '044041833X'), + (4726, '0374516812'), + (788, '0156027399'), + (2006, '0380793334'), + (6599, '0553284169'), + (1196, '0399146695'), + (59, '0425047075'), + (59, '0345384377'), + (13344, '1558740872'), + (59, '0425097773'), + (1094, '0312119070'), + (2962, '0553580884'), + (2962, '0553574957'), + (76, '0671891685'), + (5286, '0671891685'), + (13345, '0399146229'), + (132, '0553299468'), + (6007, '0449221229'), + (6007, '0449214362'), + (3693, '0679428887'), + (534, '0399145885'), + (889, '0446602620'), + (2188, '0553271989'), + (9018, '0375753834'), + (6396, '0446522996'), + (13346, '0671546031'), + (115, '0517701766'), + (115, '087795223X'), + (1464, '1853260851'), + (1464, '1853260509'), + (897, '0451202732'), + (2188, '0553266306'), + (13347, '3829028784'), + (2770, '0439286239'), + (1409, '0140180206'), + (13348, '2040160434'), + (1627, '2040160434'), + (13349, '225303987X'), + (13350, '225303987X'), + (13351, '225303987X'), + (13352, '2253006203'), + (13353, '2253006203'), + (199, '2843370744'), + (1523, '1853260908'), + (13351, '2080706195'), + (4050, '0595014283'), + (2814, '2246567629'), + (6732, '2080701819'), + (2770, '0439284031'), + (13354, '2266127756'), + (13355, '9504910017'), + (95, '2070383652'), + (13356, '0192838679'), + (13357, '0192838679'), + (13358, '0192838679'), + (10258, '2070368165'), + (10258, '2070363619'), + (3008, '0375700528'), + (848, '0393323668'), + (1041, '0786930705'), + (1042, '0786930705'), + (1041, '0880386525'), + (1042, '0880386525'), + (13359, '1843500728'), + (13360, '1843430215'), + (13361, '1843430215'), + (301, '0330305735'), + (906, '157270120X'), + (13362, '157270120X'), + (682, '207036240X'), + (906, '2702408648'), + (906, '0425093255'), + (906, '2702426328'), + (906, '2702413722'), + (906, '2253009199'), + (906, '225302001X'), + (13363, '2841110664'), + (7926, '2841110664'), + (1887, '186046310X'), + (13364, '186046310X'), + (13365, '2070516504'), + (13366, '2895400644'), + (13367, '2895400644'), + (13368, '2895400644'), + (4103, '0340551194'), + (13369, '0440505941'), + (13370, '188491036X'), + (6761, '0374119163'), + (13371, '0374119163'), + (13372, '0312242727'), + (13373, '1884910394'), + (13374, '0062734725'), + (2457, '0811814815'), + (4232, '0393320030'), + (2454, '0393320030'), + (13375, '0673181731'), + (13376, '0673181731'), + (13377, '0673181731'), + (13378, '0192813897'), + (13379, '0192813897'), + (13380, '0312010443'), + (13381, '0767903080'), + (3620, '0874778867'), + (13382, '1884910408'), + (13383, '0226103897'), + (13384, '1884910459'), + (13385, '1582970599'), + (7125, '1582970033'), + (13386, '1582970033'), + (13387, '1582970688'), + (13388, '0385499191'), + (13389, '0312166907'), + (13390, '0898796334'), + (1539, '0395489326'), + (13391, '0395489326'), + (2806, '0802132758'), + (6761, '0312421303'), + (13392, '0312421303'), + (13393, '1932360239'), + (81, '0517064596'), + (6761, '0312420285'), + (13391, '0312420285'), + (13394, '0375404538'), + (367, '037540600X'), + (1457, '0679451501'), + (397, '0198117477'), + (13395, '0198117477'), + (13394, '0198117477'), + (13396, '0198117477'), + (13397, '0786706562'), + (13398, '0786706562'), + (13399, '014027281X'), + (6762, '080231323X'), + (6762, '0679420851'), + (13400, '0679420851'), + (1268, '0151002835'), + (1268, '0151001812'), + (5133, '0521576229'), + (5134, '0521576229'), + (5133, '0156001438'), + (10322, '0688145744'), + (13401, '0312205503'), + (13402, '0374280355'), + (13401, '0345404351'), + (13403, '0140275673'), + (2282, '0395544181'), + (3484, '0395544181'), + (6767, '0385491832'), + (11828, '0805052054'), + (11828, '080505202X'), + (585, '1568655800'), + (1755, '0060652861'), + (1600, '0670896764'), + (8627, '0140239375'), + (2483, '0140239375'), + (8627, '0394744209'), + (8627, '0140156011'), + (13404, '0140156011'), + (723, '067972723X'), + (723, '0679727264'), + (723, '0679723439'), + (723, '0679726209'), + (723, '0679727221'), + (723, '0679726098'), + (723, '0679723390'), + (723, '0679727280'), + (723, '0679728864'), + (723, '0679725415'), + (723, '0679410775'), + (13405, '0253212340'), + (5190, '0374292035'), + (13406, '1559704012'), + (13405, '1559704160'), + (54, '0060926597'), + (13407, '081011514X'), + (3480, '081011514X'), + (13408, '0375500804'), + (6745, '0877798079'), + (13409, '089879658X'), + (13408, '1582972540'), + (268, '156389629X'), + (10091, '156389629X'), + (268, '1563890119'), + (296, '1563890119'), + (297, '1563890119'), + (298, '1563890119'), + (13410, '0930289595'), + (13411, '0930289595'), + (268, '156389016X'), + (10092, '156389016X'), + (288, '156389016X'), + (13412, '156389016X'), + (268, '1563890410'), + (10092, '1563890410'), + (297, '1563890410'), + (13413, '1563890410'), + (5787, '0006511767'), + (290, '0440204399'), + (13414, '0385485247'), + (7140, '006019197X'), + (268, '0963094432'), + (118, '0375700137'), + (4051, '081956298X'), + (13415, '081956298X'), + (2551, '0517707861'), + (2551, '0517799928'), + (277, '0679738290'), + (13416, '0312871937'), + (1323, '0312202318'), + (11809, '0312119240'), + (1674, '006028644X'), + (412, '0553377892'), + (412, '0553377922'), + (10283, '0679737995'), + (13417, '0679447954'), + (13418, '0811819167'), + (1291, '0312203241'), + (1291, '0312186886'), + (13419, '0802139558'), + (3979, '0802139558'), + (412, '0449911535'), + (13420, '1563050757'), + (13421, '0670693812'), + (5108, '055310943X'), + (5108, '0684801418'), + (3431, '0449001180'), + (13422, '1594200092'), + (13423, '0195170342'), + (13424, '0156007533'), + (13425, '1565926161'), + (13426, '0471213020'), + (13427, '0596003846'), + (13428, '0596003846'), + (13429, '0596003846'), + (13424, '0596005229'), + (13430, '0618138927'), + (51, '0375727612'), + (7335, '0375506160'), + (13431, '1583913580'), + (13432, '1583913580'), + (13433, '1886941343'), + (13434, '1886941343'), + (13435, '0195160770'), + (13436, '068482390X'), + (13437, '068482390X'), + (13438, '014019469X'), + (13439, '0965731286'), + (7230, '0060569662'), + (356, '0060569662'), + (11956, '076113185X'), + (5411, '0452285658'), + (13440, '0060006765'), + (13441, '074323572X'), + (13442, '1585673552'), + (13443, '0716732106'), + (13444, '0375703160'), + (1875, '0684802031'), + (5493, '0684802031'), + (5494, '0684802031'), + (13445, '0812911016'), + (13446, '0670877638'), + (13447, '0425062430'), + (2306, '0441366104'), + (13448, '0671705245'), + (1001, '0553349481'), + (13405, '0375700943'), + (5133, '0156005573'), + (13449, '0425183270'), + (13450, '055337821X'), + (13451, '055337821X'), + (13449, '0684801280'), + (13450, '0684801280'), + (13452, '087833209X'), + (13453, '087833209X'), + (7640, '1887424377'), + (13454, '1887424377'), + (7640, '1887424032'), + (13450, '1887424032'), + (12864, '0684815311'), + (13455, '0684815311'), + (13456, '0452279631'), + (13457, '0876308000'), + (13450, '0375701079'), + (13458, '0878339604'), + (13459, '080186822X'), + (13460, '080186822X'), + (13461, '080186822X'), + (13457, '0878339175'), + (13457, '0878339795'), + (13462, '0802713769'), + (13461, '1887424059'), + (3885, '0785812814'), + (13463, '0785812814'), + (7640, '1887424520'), + (13464, '1887424520'), + (3688, '1887424520'), + (6761, '0140262156'), + (1322, '0140262156'), + (6761, '0140283595'), + (1322, '0140283595'), + (156, '0879518340'), + (1369, '0375407561'), + (717, '0375407561'), + (3689, '0451208188'), + (2782, '044900371X'), + (13465, '081664179X'), + (13466, '0451211103'), + (13467, '0451211103'), + (13468, '1568581491'), + (1697, '0743422082'), + (1697, '0425177424'), + (1697, '0425173585'), + (1697, '0425168956'), + (412, '0385491026'), + (2800, '0140441131'), + (9505, '0140441131'), + (2458, '0451523881'), + (3974, '0451523881'), + (13469, '0451523881'), + (284, '0451513355'), + (4948, '0449208109'), + (12555, '014044470X'), + (13470, '014044470X'), + (13469, '014044470X'), + (13471, '093831713X'), + (13472, '0918273420'), + (13473, '0767901592'), + (13474, '0440211697'), + (723, '0679727248'), + (723, '0679724508'), + (11838, '0151002584'), + (2143, '0451407229'), + (1858, '0030037166'), + (2515, '0671567659'), + (7885, '055356921X'), + (13475, '0802134580'), + (6761, '0140143491'), + (13391, '0140143491'), + (4571, '0345423607'), + (1234, '0380715430'), + (9127, '0553253905'), + (6669, '0140106464'), + (13476, '0840790813'), + (13477, '0060191015'), + (188, '1877741094'), + (13478, '0030419964'), + (7, '0399150749'), + (3489, '0380804883'), + (13479, '0449219232'), + (13480, '0898152399'), + (9805, '1877988235'), + (13481, '0553227750'), + (115, '0525946896'), + (13482, '0671023411'), + (13481, '0671023403'), + (13481, '067102339X'), + (1485, '039913929X'), + (13483, '156138450X'), + (13484, '156138450X'), + (13485, '0312997108'), + (13486, '0312997108'), + (4500, '0764534238'), + (13487, '0380732130'), + (13488, '1879682737'), + (13487, '1879682699'), + (13487, '1879682656'), + (13489, '0809225050'), + (13490, '0809225050'), + (13491, '0786888911'), + (13492, '0425180034'), + (152, '0446364495'), + (3550, '0811831310'), + (9693, '0811831310'), + (13493, '0811831310'), + (4476, '006109286X'), + (13494, '0806972742'), + (13495, '0806972742'), + (1158, '0836218426'), + (13496, '0679311149'), + (5967, '0061030848'), + (13497, '1575001438'), + (13498, '1575001438'), + (274, '0553150510'), + (13499, '0590907239'), + (13500, '157145697X'), + (13487, '1571454942'), + (13487, '1571456988'), + (4409, '1551053020'), + (13501, '1551053020'), + (13502, '0919433820'), + (13503, '0919433820'), + (13504, '1551051737'), + (13505, '1551051737'), + (13506, '1551051737'), + (1065, '0451457994'), + (6206, '0740713930'), + (6207, '0740713930'), + (13507, '0375756663'), + (13508, '0793559847'), + (13509, '1858283329'), + (13510, '0743403541'), + (13511, '0312978588'), + (13512, '0380788438'), + (13513, '0740726765'), + (3284, '006052510X'), + (501, '0451409361'), + (13514, '0941263177'), + (2035, '078689007X'), + (13515, '0356105180'), + (13516, '0740704540'), + (11313, '002862615X'), + (3537, '0670886610'), + (11191, '0785340467'), + (3102, '185326119X'), + (13517, '0233997660'), + (1768, '0451528654'), + (7230, '0451528654'), + (94, '0333493400'), + (7728, '0064400034'), + (258, '0064400034'), + (264, '089009683X'), + (12185, '0333493427'), + (12185, '0333493389'), + (13518, '0753451131'), + (13519, '1577490185'), + (13518, '1577490177'), + (5184, '0753452243'), + (13520, '1552633845'), + (13521, '1550372289'), + (13522, '1550372289'), + (6915, '1550372556'), + (13523, '1550372556'), + (13524, '0786822864'), + (13523, '0786804106'), + (13525, '0679864415'), + (401, '086611873X'), + (974, '0394800168'), + (5677, '0064441555'), + (10085, '0064441555'), + (13526, '0316813079'), + (974, '0679892478'), + (1586, '0694003611'), + (13527, '0694003611'), + (777, '0525444440'), + (1897, '0525444440'), + (13528, '014036739X'), + (13529, '014036739X'), + (3271, '1853261246'), + (974, '0394829131'), + (6915, '0920236936'), + (13530, '0920236936'), + (777, '0525444459'), + (1897, '0525444459'), + (777, '0525444467'), + (1897, '0525444467'), + (13531, '2070728951'), + (13532, '2012002439'), + (13533, '2012002439'), + (13534, '2070357023'), + (1268, '2253076252'), + (13535, '2253006181'), + (13536, '2908957515'), + (13537, '2070412741'), + (732, '2266070592'), + (732, '2266070606'), + (7374, '207042314X'), + (13538, '207042314X'), + (13539, '2070422070'), + (13540, '2070422097'), + (13541, '2070425533'), + (13542, '2070425533'), + (13543, '2070422089'), + (13544, '2070425509'), + (13545, '2070408019'), + (13546, '2856164129'), + (13547, '2226001344'), + (13548, '2070369390'), + (4631, '2742718737'), + (13549, '2879293073'), + (13550, '2879293073'), + (13351, '2253005266'), + (13551, '2253005266'), + (13552, '2253028274'), + (13553, '2253046701'), + (1109, '2253002933'), + (13554, '2253002933'), + (13555, '2290303097'), + (270, '2253002887'), + (960, '2020349140'), + (1507, '2258047803'), + (13556, '222889401X'), + (4189, '207070906X'), + (13557, '2070386902'), + (13558, '2070386902'), + (13559, '2070386902'), + (13560, '2264027312'), + (6967, '2070370003'), + (13561, '057120631X'), + (13562, '2070425479'), + (13563, '2869596103'), + (2331, '2253010693'), + (13564, '2910686078'), + (1507, '2258047811'), + (13565, '2070377199'), + (13551, '2253056383'), + (13551, '2253047848'), + (13566, '2253040940'), + (13567, '2253040940'), + (13568, '2846710457'), + (13569, '2738112420'), + (13570, '273810858X'), + (10273, '273810858X'), + (13571, '2843040612'), + (221, '2070764702'), + (13572, '2746500582'), + (412, '2264035951'), + (13573, '2264035951'), + (13574, '2020301016'), + (3041, '2020259109'), + (6967, '2070373630'), + (2820, '2264027789'), + (2742, '2020479915'), + (6966, '2070422135'), + (13575, '2070423530'), + (13576, '2253004014'), + (13577, '2070400557'), + (2929, '2253051209'), + (4284, '2869309651'), + (1899, '2869309651'), + (13578, '2869309651'), + (13579, '2253043982'), + (735, '2020309610'), + (3041, '2264034769'), + (13580, '2867447763'), + (13581, '2070371700'), + (13582, '2742740945'), + (13583, '2742740945'), + (13584, '2742740945'), + (9284, '2742706372'), + (6954, '2020067447'), + (13585, '2070376702'), + (682, '2070368726'), + (13586, '2070322793'), + (3723, '2070324303'), + (13587, '2070324303'), + (13588, '2070324303'), + (3608, '2070362841'), + (3989, '2070372162'), + (6974, '2020126540'), + (13589, '270731028X'), + (13590, '2213006180'), + (13591, '2707301108'), + (13592, '202005924X'), + (13593, '2707126934'), + (13594, '2707126926'), + (402, '2020088959'), + (13595, '2020325276'), + (13596, '273810228X'), + (10273, '2738104134'), + (13569, '2738104134'), + (7486, '2738102158'), + (702, '286930756X'), + (13597, '286930756X'), + (13598, '0684803534'), + (13599, '2904299106'), + (142, '2253150371'), + (13600, '207071781X'), + (3723, '225306386X'), + (13601, '225306386X'), + (1109, '284205007X'), + (13602, '284205007X'), + (2333, '274272494X'), + (2333, '2742730486'), + (13603, '2715219512'), + (690, '2070378411'), + (4705, '2290303054'), + (13604, '2070388638'), + (13605, '2070409848'), + (735, '2020309629'), + (217, '2070385698'), + (13606, '2070385698'), + (13605, '2070385698'), + (13607, '2070385698'), + (13608, '2020374277'), + (13609, '2020403412'), + (13608, '2020352850'), + (9782, '229030879X'), + (3880, '2020551306'), + (13543, '207037467X'), + (13543, '2070362426'), + (10268, '2867446821'), + (6020, '2264024976'), + (13610, '2264024976'), + (13611, '2264024976'), + (13612, '2221078306'), + (13613, '2842050525'), + (13614, '2266064975'), + (13615, '207038781X'), + (13571, '2746500655'), + (13616, '2070400867'), + (13617, '2844120644'), + (13618, '2020395886'), + (13619, '2253012556'), + (13620, '2020068079'), + (13571, '2260012078'), + (13571, '2876860791'), + (13571, '2876860414'), + (13571, '2876860783'), + (13593, '2876860783'), + (13571, '2876860031'), + (13571, '2082115178'), + (13571, '208211533X'), + (2816, '208211533X'), + (13571, '2246275512'), + (13571, '2246334314'), + (13571, '2707303208'), + (13621, '2020385856'), + (755, '2869304870'), + (13622, '2070372391'), + (13623, '2070372391'), + (9238, '2070374556'), + (13624, '2070374556'), + (13530, '2070377865'), + (9645, '2070363511'), + (1886, '2070386023'), + (13625, '2070386023'), + (13626, '224648751X'), + (13581, '2742720073'), + (13583, '2742720073'), + (1409, '2070360784'), + (1887, '2070419584'), + (1888, '2070419584'), + (6761, '2070378233'), + (545, '2742714448'), + (13627, '2743608846'), + (13628, '2246616115'), + (1859, '2070393453'), + (13629, '2070393453'), + (2333, '2290053945'), + (13630, '2290053945'), + (2333, '2742718877'), + (2333, '2742722688'), + (13616, '2844121152'), + (13631, '2742713352'), + (13632, '2912517168'), + (13633, '2070767000'), + (13634, '2070757811'), + (13635, '2210422701'), + (13636, '2210422701'), + (13637, '2742727329'), + (755, '2743608765'), + (1886, '220725092X'), + (13624, '220725092X'), + (13579, '2867449375'), + (9618, '2226116745'), + (6119, '2226116494'), + (13638, '2867447143'), + (7907, '2842630254'), + (1086, '2742722629'), + (13639, '2742722629'), + (1086, '2742701729'), + (13638, '2742701729'), + (13640, '2868699529'), + (689, '2742700064'), + (13630, '2742728759'), + (13641, '2742734929'), + (13642, '2742734929'), + (13643, '2070417611'), + (13579, '2070408957'), + (13644, '2070408582'), + (13645, '2266062344'), + (13646, '2020385805'), + (5434, '2070714489'), + (13647, '2070714489'), + (351, '2020257785'), + (13648, '2020062143'), + (1086, '2868698921'), + (13638, '2868698921'), + (6119, '222613624X'), + (13649, '2020375060'), + (13650, '2020490668'), + (13651, '2070301028'), + (6761, '2070259811'), + (2333, '2228128007'), + (755, '2869305583'), + (755, '2869304560'), + (5960, '2869302940'), + (13626, '2743603291'), + (13652, '2253151017'), + (2333, '2742723951'), + (2333, '2742708715'), + (2333, '2742701826'), + (2333, '2742717730'), + (2333, '2742743510'), + (2836, '2070757625'), + (13108, '2070422437'), + (13653, '2070422437'), + (13654, '2070414167'), + (1302, '0812590465'), + (618, '0807511455'), + (618, '080751604X'), + (618, '0807554065'), + (7008, '0807554065'), + (618, '0807528552'), + (618, '0807510793'), + (618, '0807553980'), + (618, '0807553689'), + (618, '0807553859'), + (618, '0807531782'), + (618, '0807553670'), + (11173, '0807553670'), + (618, '0807507091'), + (11173, '0807507091'), + (618, '0807507946'), + (5682, '0807507946'), + (618, '0807551414'), + (5682, '0807551414'), + (618, '0807576743'), + (7760, '0807576743'), + (618, '0807576239'), + (7008, '0807576239'), + (618, '0807554189'), + (618, '0807554014'), + (618, '0807553948'), + (618, '0807553395'), + (618, '0807565350'), + (618, '0807503193'), + (618, '0807553794'), + (618, '0807503673'), + (618, '0807515604'), + (618, '0807509760'), + (11173, '0807509760'), + (618, '0807553727'), + (11173, '0807553727'), + (618, '0807580872'), + (11173, '0807580872'), + (618, '080757516X'), + (11173, '080757516X'), + (618, '0807572632'), + (11173, '0807572632'), + (618, '0807534137'), + (11173, '0807534137'), + (1428, '0590494465'), + (1428, '0590568930'), + (13655, '0590047116'), + (13656, '1561441279'), + (13657, '1561441279'), + (5673, '0590479083'), + (13658, '0590479083'), + (5673, '0590479075'), + (13657, '0590479075'), + (13223, '0061067563'), + (13223, '0061061468'), + (13659, '0205086802'), + (8818, '039489118X'), + (13660, '039489118X'), + (13661, '0385174837'), + (6555, '0385174837'), + (13662, '0441007740'), + (13663, '0965072444'), + (13664, '0451404432'), + (13665, '0553282123'), + (13666, '0842317112'), + (2006, '0380762609'), + (543, '0440237009'), + (13667, '0310214599'), + (543, '0671749412'), + (543, '0440186560'), + (543, '0440184053'), + (543, '0440185327'), + (543, '0440217547'), + (2181, '0515115630'), + (13668, '0671667653'), + (13669, '0449132307'), + (128, '055357602X'), + (142, '0451196716'), + (3310, '0451196716'), + (2880, '0671533983'), + (13670, '0312963173'), + (13323, '1551662779'), + (13323, '1551668181'), + (13323, '1551660482'), + (13323, '1551661551'), + (11368, '0451201744'), + (183, '0515090166'), + (183, '0515087947'), + (142, '0453004687'), + (3310, '0453004687'), + (142, '067103975X'), + (142, '0670868361'), + (142, '0452262143'), + (13671, '0452262143'), + (142, '0451167805'), + (142, '0451132378'), + (142, '0451190564'), + (142, '0451190556'), + (142, '0140258574'), + (1628, '055357227X'), + (1628, '055329170X'), + (563, '0425174271'), + (563, '039914613X'), + (563, '0399143823'), + (5361, '0849936373'), + (13672, '0679873066'), + (563, '0425126064'), + (61, '0765191121'), + (1172, '0446328413'), + (13673, '0440986524'), + (965, '0590440012'), + (13323, '1551664313'), + (4999, '0590443305'), + (1428, '0671002937'), + (13674, '0061061573'), + (971, '0743475488'), + (635, '0061042935'), + (13330, '0778320057'), + (563, '0425189864'), + (1331, '0451202287'), + (13182, '0821766775'), + (1628, '0451168623'), + (183, '0451176898'), + (2598, '0451176898'), + (2287, '0451176898'), + (7514, '0451176898'), + (13675, '0595129838'), + (12481, '0965735974'), + (13676, '0151002908'), + (13677, '1564145549'), + (2150, '0375703845'), + (13678, '3821834250'), + (1771, '3499105810'), + (1550, '3499105810'), + (1771, '3499133164'), + (13679, '3499133164'), + (13678, '3499133164'), + (11353, '3499133164'), + (92, '3404241185'), + (92, '3404232011'), + (4789, '3404232011'), + (13680, '0300084730'), + (3608, '3596124433'), + (13681, '3499193140'), + (7297, '3548346839'), + (13682, '3548346839'), + (7292, '0140231943'), + (686, '346202731X'), + (217, '3518115243'), + (2486, '3518115243'), + (13683, '3518115243'), + (176, '3453099826'), + (13684, '3453099826'), + (13685, '3453099826'), + (92, '3404242866'), + (5874, '1857984986'), + (959, '3423123877'), + (13686, '3423123877'), + (13687, '3423002565'), + (6556, '3492224431'), + (1527, '0380708213'), + (1401, '006080985X'), + (256, '3453173309'), + (13688, '3453173309'), + (13689, '3453173309'), + (13690, '3423124288'), + (2504, '3404242386'), + (92, '3404231910'), + (1186, '3453164105'), + (1773, '3453164156'), + (188, '3453164121'), + (13691, '3453164121'), + (5404, '3453164180'), + (92, '3404232208'), + (3972, '345316413X'), + (8852, '349922271X'), + (3191, '349922271X'), + (13692, '3499122146'), + (13693, '3499122146'), + (13694, '3499122146'), + (309, '3453164164'), + (13695, '3817132336'), + (13696, '3817132336'), + (13697, '3453164199'), + (13698, '3453164199'), + (13699, '3453164199'), + (1396, '3453164113'), + (92, '3404242750'), + (13700, '3423301244'), + (1771, '3499110008'), + (13701, '3499110008'), + (13702, '0861300238'), + (13703, '3518102079'), + (13704, '3518102079'), + (52, '3499142813'), + (13705, '3499142813'), + (13706, '3423300205'), + (5015, '0898705525'), + (13707, '3492200133'), + (13708, '3506500104'), + (13709, '3506500104'), + (3477, '0062732765'), + (94, '3817132352'), + (13710, '3150090342'), + (4603, '3453092414'), + (13711, '0253306752'), + (9817, '0691024170'), + (13712, '0140261494'), + (13713, '0140296085'), + (1455, '0140296085'), + (13714, '0140296085'), + (13683, '0140296085'), + (13715, '0094660409'), + (5272, '3518392573'), + (13716, '3518392573'), + (9817, '3492221661'), + (13706, '3492200540'), + (13717, '3492221009'), + (13718, '3880598800'), + (13719, '3423202068'), + (13720, '0262560038'), + (13721, '0521777526'), + (13722, '0521777526'), + (13723, '0471404217'), + (13724, '3518276255'), + (13725, '3518276255'), + (13726, '3518276255'), + (1401, '0060901918'), + (13727, '0375706348'), + (7045, '3379015776'), + (662, '3458329072'), + (13728, '3458329072'), + (1209, '3423120398'), + (2176, '3423120398'), + (4603, '345504431X'), + (13729, '345504431X'), + (13730, '3821839171'), + (13731, '382183594X'), + (9817, '0201150255'), + (8421, '342330426X'), + (8421, '3608917586'), + (13732, '3608917586'), + (13733, '3608917586'), + (13734, '3776621923'), + (13735, '0674637526'), + (90, '3520377020'), + (13736, '3520377020'), + (13735, '3520377020'), + (3608, '3257700474'), + (13737, '0965139808'), + (940, '0394733525'), + (13738, '3426774291'), + (13739, '3817134010'), + (13686, '3596259347'), + (9477, '3379001252'), + (1109, '351818802X'), + (13740, '3150096561'), + (13741, '3150096561'), + (5272, '351838922X'), + (13742, '351838922X'), + (13743, '3518371703'), + (13744, '3518371703'), + (13745, '3518371703'), + (13742, '3518384465'), + (13743, '3518384465'), + (13746, '3518384465'), + (13742, '3518389521'), + (13743, '3518389521'), + (13747, '3518389521'), + (1265, '0553293354'), + (1265, '3404230663'), + (1265, '3404241134'), + (13748, '3404241134'), + (13698, '3404241134'), + (1065, '3453025652'), + (6534, '351838645X'), + (13749, '351838645X'), + (6534, '3518377663'), + (13728, '3518377663'), + (6534, '3518396749'), + (13750, '3518396749'), + (6534, '3518372297'), + (13751, '3518372297'), + (13752, '3518372297'), + (13753, '3518372297'), + (6534, '3518386999'), + (6534, '3518383906'), + (13748, '3518383906'), + (6534, '3518370707'), + (6535, '3518370707'), + (6534, '3518372408'), + (6534, '351839293X'), + (13754, '351839293X'), + (6534, '3518368567'), + (13755, '3518368567'), + (6534, '3518380745'), + (13749, '3518380745'), + (6534, '3518374559'), + (13756, '3518374559'), + (9817, '3492213472'), + (13757, '3492226221'), + (13758, '3492226221'), + (13756, '3492227171'), + (13759, '0672604043'), + (13760, '0672604043'), + (13758, '3787311556'), + (13761, '3787311556'), + (1209, '3423122870'), + (2176, '3423122870'), + (13762, '3499196654'), + (13763, '3446163670'), + (13756, '3492230555'), + (9477, '3746655153'), + (13764, '3746655153'), + (13761, '3499195356'), + (13765, '3442115361'), + (13766, '3442115361'), + (7063, '080213422X'), + (9817, '0738203491'), + (1401, '0060900075'), + (13767, '3499609339'), + (13766, '349960728X'), + (13768, '344275500X'), + (13769, '344275500X'), + (1232, '3426606488'), + (13716, '3492049885'), + (1065, '0345430727'), + (13770, '0376011831'), + (13771, '0553375334'), + (13772, '0553375334'), + (13773, '1879159376'), + (13774, '1880281139'), + (13775, '0943574447'), + (13776, '0764551418'), + (13777, '086573190X'), + (13778, '086573190X'), + (6058, '0764506765'), + (13779, '0764506765'), + (13780, '0764506765'), + (13781, '1893361764'), + (11697, '0762100699'), + (13782, '0875968864'), + (13783, '0811827151'), + (13784, '0811827151'), + (7125, '0937750239'), + (13385, '0937750239'), + (13785, '0937750239'), + (13786, '1569473307'), + (8558, '0877735506'), + (13787, '0385335210'), + (13788, '0062505157'), + (2706, '0062505157'), + (13789, '0062505157'), + (13790, '1585420859'), + (13791, '0861711459'), + (13792, '0861711459'), + (1704, '0312973055'), + (2626, '0312973055'), + (4457, '0696211785'), + (13793, '0696211785'), + (13794, '140004684X'), + (13795, '0801986311'), + (13796, '0801986311'), + (13797, '0801986311'), + (13798, '0922705380'), + (7125, '0440235014'), + (13799, '0801980801'), + (13800, '0679725997'), + (12270, '1567998712'), + (13801, '1567998712'), + (10635, '1573227358'), + (13802, '0806958235'), + (6653, '0722539320'), + (13803, '089721255X'), + (8558, '0877739706'), + (11379, '0786862270'), + (13804, '0961475455'), + (13805, '0961475455'), + (13806, '0765760355'), + (13807, '0765760355'), + (13808, '0935278184'), + (13809, '0935278184'), + (13810, '0935278184'), + (6110, '0674007913'), + (13811, '0840752873'), + (2706, '0722540302'), + (13812, '1567994288'), + (13813, '0897210875'), + (13814, '0897210875'), + (13815, '0897210875'), + (13816, '0897210875'), + (13817, '0688144713'), + (13818, '0688144713'), + (13816, '0688097391'), + (13819, '1573225754'), + (13820, '0802130313'), + (13821, '0814623581'), + (13820, '0814623581'), + (7093, '038549436X'), + (13822, '0743226208'), + (13823, '0743226208'), + (13824, '0553382179'), + (13825, '0743418301'), + (6470, '006064589X'), + (13826, '0385497903'), + (7107, '0767902998'), + (13827, '0738204102'), + (13828, '1567997686'), + (13829, '0765307154'), + (39, '0060502304'), + (574, '0345456343'), + (13830, '1576104192'), + (13831, '0752221892'), + (1926, '0446518549'), + (1698, '0446518549'), + (13832, '1565924878'), + (13833, '1565922204'), + (13834, '0072129409'), + (13835, '0130843709'), + (2754, '0782126472'), + (13836, '0130173231'), + (606, '0451457595'), + (3001, '0786881887'), + (13837, '0786881887'), + (3002, '0786881887'), + (3001, '0786889209'), + (3002, '0786889209'), + (13838, '055357681X'), + (242, '0448407264'), + (2181, '051511054X'), + (251, '0156030209'), + (7809, '0140275428'), + (13839, '0553813714'), + (2618, '0752837613'), + (4604, '0684803852'), + (1194, '067164193X'), + (13840, '0517320908'), + (13841, '0774712619'), + (1628, '0553089226'), + (12018, '0670829390'), + (13842, '0786000848'), + (13843, '0671578820'), + (913, '0446364789'), + (2513, '0812514432'), + (598, '0812514432'), + (8370, '0812514432'), + (13844, '0812514432'), + (142, '0451151224'), + (3310, '0451151224'), + (1451, '0425054535'), + (13845, '0425054535'), + (3611, '044021498X'), + (13846, '0821724045'), + (13847, '042512245X'), + (1219, '0451080157'), + (13848, '0451080157'), + (1610, '0312928408'), + (7473, '0812551664'), + (7507, '0812551664'), + (145, '0425109720'), + (1214, '0671670646'), + (13849, '0345425596'), + (1214, '0671028006'), + (13850, '0590412264'), + (13851, '0590412264'), + (13852, '0590412264'), + (13853, '0590412264'), + (867, '0886771722'), + (4794, '0345309197'), + (3076, '0886772249'), + (328, '0380818418'), + (329, '0380818418'), + (325, '0345300777'), + (325, '0345309979'), + (325, '0345335708'), + (867, '0886774691'), + (2525, '0786901136'), + (13854, '0786901136'), + (2361, '0425173089'), + (13855, '0440237343'), + (1306, '0786890053'), + (13856, '0140053166'), + (2011, '0425142868'), + (2011, '0425137457'), + (2011, '042514755X'), + (867, '0886772346'), + (13857, '0886772346'), + (906, '0425103633'), + (11801, '0812570936'), + (1214, '0671759345'), + (596, '0440475821'), + (1214, '0671670662'), + (13858, '0312962177'), + (10708, '0446344281'), + (13859, '0446601829'), + (13860, '0944276040'), + (2011, '042511872X'), + (596, '0688037852'), + (617, '0688037852'), + (2011, '0425116417'), + (6854, '0446602175'), + (13861, '0446602175'), + (13862, '0446602175'), + (13863, '0446602175'), + (9166, '0451402707'), + (13864, '1558175555'), + (12670, '0312927789'), + (12671, '0312927789'), + (12672, '0312927789'), + (13865, '0312927614'), + (13866, '0451171640'), + (13867, '0451402847'), + (13868, '0380722526'), + (5209, '0451117905'), + (13869, '0821717448'), + (543, '0440203856'), + (543, '0440146844'), + (543, '0440126894'), + (3615, '0553264079'), + (13870, '0451403053'), + (583, '0553256211'), + (13871, '0451153952'), + (5580, '0425130894'), + (4524, '088038672X'), + (13872, '0843938269'), + (13873, '0385279140'), + (13874, '0394859111'), + (1704, '0553271091'), + (13875, '1572972912'), + (13876, '1572972912'), + (1219, '0451159896'), + (13847, '0451159896'), + (5786, '3426015463'), + (13877, '3442750547'), + (13878, '3442750547'), + (2624, '3423085304'), + (13879, '3423085304'), + (24, '3455024947'), + (780, '345387319X'), + (13880, '345387319X'), + (374, '3499146983'), + (9080, '3499146983'), + (374, '3426013347'), + (9080, '3426013347'), + (13881, '3596151945'), + (1571, '0060080841'), + (580, '0060080841'), + (13882, '0679816607'), + (1537, '0441005241'), + (1537, '0441004520'), + (1537, '0441003745'), + (13883, '0553577255'), + (13884, '0553577255'), + (13882, '0553575430'), + (13883, '0553575430'), + (13885, '0884481492'), + (13882, '0553575422'), + (13883, '0553575422'), + (5542, '0843949945'), + (13886, '0486292886'), + (13887, '006090674X'), + (13888, '006090674X'), + (13889, '0871968789'), + (13890, '0871968789'), + (13891, '0912608951'), + (13892, '0912608951'), + (13893, '0912608951'), + (13890, '0912608110'), + (13894, '0912608110'), + (369, '0373076312'), + (1579, '0743403495'), + (1579, '0743403487'), + (1579, '0743403479'), + (1579, '0743403460'), + (3316, '0812517164'), + (3317, '0812517164'), + (13174, '1575667274'), + (543, '0385306040'), + (543, '0385316879'), + (13895, '0942237285'), + (1092, '0743457269'), + (7242, '0330334026'), + (128, '0446527041'), + (13896, '0471528889'), + (2029, '0836217578'), + (231, '0385334710'), + (630, '1575665727'), + (240, '0399146741'), + (13897, '078710339X'), + (13898, '078710339X'), + (108, '0312179405'), + (543, '0440211891'), + (13899, '0821737902'), + (179, '0451204956'), + (13900, '0373255241'), + (3919, '0373241755'), + (7529, '037322513X'), + (13901, '0373079281'), + (369, '0515124214'), + (12596, '0380820889'), + (2694, '0061053716'), + (543, '0440213282'), + (13902, '0451407431'), + (459, '0316313203'), + (13903, '0452277809'), + (13904, '0452277809'), + (13905, '0030149061'), + (5112, '0312942192'), + (13906, '0879830689'), + (1998, '0671027972'), + (13907, '0312970307'), + (6185, '0380802252'), + (10364, '0553574795'), + (412, '0385260075'), + (1261, '0895770695'), + (13908, '0895770695'), + (176, '0517554399'), + (12019, '0736421300'), + (13909, '0451457528'), + (10922, '0385425074'), + (3097, '0689704208'), + (3097, '0689704488'), + (3097, '0689704674'), + (4391, '1551665816'), + (10556, '0394828054'), + (13910, '0590431242'), + (13911, '0373482345'), + (13912, '0373482345'), + (9294, '0373482345'), + (13913, '0373482345'), + (3449, '0373196660'), + (6919, '0517554550'), + (4295, '0440116139'), + (13914, '0440116139'), + (3359, '0671872680'), + (3078, '0812536169'), + (10819, '0800786866'), + (2515, '0671724169'), + (13915, '0373290136'), + (2006, '0380753022'), + (11675, '0373289510'), + (13916, '0679853065'), + (13917, '1558171118'), + (281, '0020412401'), + (2542, '067152609X'), + (3367, '067152609X'), + (3368, '067152609X'), + (13918, '0767913701'), + (9240, '0671674358'), + (9241, '0671674358'), + (835, '0671658662'), + (256, '0451159233'), + (13919, '1572242132'), + (843, '0618055819'), + (13920, '078688262X'), + (56, '0192827618'), + (5748, '0192827618'), + (13921, '0192827618'), + (13922, '0671502239'), + (13232, '1853260630'), + (13923, '0002550563'), + (13924, '0002550563'), + (3989, '0451524551'), + (13925, '0451524551'), + (13926, '1889392022'), + (13927, '1889392022'), + (13925, '1889392030'), + (13926, '1889392030'), + (3823, '0060171626'), + (1396, '0441518095'), + (13928, '082175565X'), + (3159, '1551662671'), + (2276, '0380802309'), + (11616, '037348383X'), + (1793, '0671569031'), + (2331, '0140621792'), + (256, '0061092177'), + (2252, '0843941219'), + (2255, '0843941219'), + (6193, '0843941219'), + (13929, '0843941219'), + (11641, '0373224729'), + (13930, '0373118864'), + (1428, '0671868322'), + (166, '0440983568'), + (1428, '0671868330'), + (1428, '0671738232'), + (1428, '067189434X'), + (3359, '0671745115'), + (3359, '0671690590'), + (1428, '0671724851'), + (3359, '0590430149'), + (1428, '0671724819'), + (13931, '0590403214'), + (3359, '0671745107'), + (1428, '0671894331'), + (1428, '0671702432'), + (3359, '0671550551'), + (166, '0671726498'), + (166, '0440918642'), + (12812, '0345274539'), + (3359, '0671676563'), + (12959, '0590433105'), + (13932, '0441515339'), + (2529, '0441515339'), + (3097, '0689829833'), + (13931, '0441515304'), + (8062, '078600312X'), + (3102, '0883632012'), + (13933, '0786889063'), + (1088, '0316290238'), + (1755, '0374386137'), + (1891, '0425065553'), + (281, '0192834347'), + (13934, '0192834347'), + (7531, '0373226691'), + (13935, '050552385X'), + (1164, '0553801619'), + (1871, '0060004703'), + (1164, '0553582852'), + (13936, '0743482247'), + (895, '0451211715'), + (896, '0451211715'), + (4198, '0821769286'), + (13937, '0843937335'), + (2006, '0380753014'), + (6477, '0505525313'), + (4198, '0821772279'), + (3159, '0380767597'), + (2006, '0380897393'), + (3750, '0553561537'), + (2823, '0380811987'), + (5693, '0312987846'), + (230, '0380761483'), + (9326, '0743460537'), + (2169, '0451208072'), + (3750, '0553574108'), + (13938, '0671689738'), + (1092, '0743478967'), + (230, '1568655878'), + (2270, '0743467221'), + (5225, '0373286716'), + (230, '0061031534'), + (2169, '0451205804'), + (13939, '0821774166'), + (1164, '0553580280'), + (7819, '1565073193'), + (13940, '050552516X'), + (13941, '0451623142'), + (9530, '0451523024'), + (13942, '0451523024'), + (183, '0399151079'), + (13943, '0553442856'), + (12654, '0373241062'), + (1092, '0671644483'), + (9919, '0671446886'), + (1491, '0373153309'), + (13944, '0373701217'), + (11612, '0373098596'), + (13945, '0373097360'), + (65, '084232920X'), + (66, '084232920X'), + (13946, '0373706766'), + (5212, '0373707657'), + (13947, '0553266926'), + (381, '0880705760'), + (2254, '0380806290'), + (532, '0451408772'), + (65, '0842329161'), + (66, '0842329161'), + (1092, '038075911X'), + (13049, '0060675233'), + (13948, '0380897342'), + (5934, '0373119194'), + (230, '0060185708'), + (65, '0842329285'), + (66, '0842329285'), + (6341, '0892749482'), + (13949, '1586608010'), + (6483, '0345275128'), + (13950, '0060571454'), + (13914, '0373291515'), + (10370, '0380777312'), + (2823, '0380811979'), + (1795, '0553567772'), + (230, '0380385880'), + (13951, '0060560789'), + (4198, '0821775472'), + (2274, '0312982305'), + (2255, '0505524945'), + (13952, '0553565044'), + (13953, '0425194833'), + (6462, '0425194868'), + (10571, '0743470036'), + (1754, '067100333X'), + (402, '071671017X'), + (13954, '0736907734'), + (10112, '0451409094'), + (532, '0515127213'), + (3885, '0553212281'), + (13955, '0553379623'), + (13956, '0553379623'), + (13957, '1575665646'), + (13958, '1576739627'), + (13959, '1576739627'), + (13960, '068985482X'), + (13961, '068985482X'), + (13962, '0786004509'), + (13963, '0786006285'), + (10364, '0553584901'), + (13964, '0821758942'), + (7519, '0743465067'), + (2246, '0440225884'), + (169, '0061059471'), + (7519, '0425191230'), + (3591, '0553268481'), + (2656, '0394551540'), + (484, '0688065716'), + (2656, '0449221873'), + (5319, '0515061786'), + (5319, '0515070742'), + (5319, '0515075051'), + (6177, '0688066631'), + (13965, '034525385X'), + (13966, '0891098623'), + (10223, '0891098623'), + (760, '014004891X'), + (368, '0449219569'), + (2656, '0449206521'), + (4614, '0446404462'), + (319, '0449206394'), + (891, '0553564994'), + (584, '0821767089'), + (2513, '0804112258'), + (5319, '0515075035'), + (5319, '0515077356'), + (60, '0684832291'), + (5319, '0515061662'), + (4614, '0445407808'), + (183, '0515120278'), + (13967, '0449904962'), + (2026, '0028604202'), + (474, '0020199082'), + (2082, '0553240951'), + (5319, '0515074438'), + (5319, '051507506X'), + (5319, '0515071056'), + (4094, '0451197690'), + (895, '0451204344'), + (896, '0451204344'), + (3143, '0201517205'), + (13968, '0333517628'), + (13969, '0333517628'), + (13970, '0333517628'), + (13971, '0746012721'), + (7597, '0746012721'), + (13972, '0192752685'), + (13973, '0517147270'), + (1722, '0330288393'), + (13974, '0671029088'), + (115, '2253076287'), + (13975, '2253076287'), + (13976, '0140621296'), + (13977, '0216927781'), + (13978, '1853045586'), + (13979, '1853045586'), + (12226, '0751511919'), + (2559, '0312966776'), + (13980, '0747258090'), + (13981, '0749732687'), + (13982, '0600400409'), + (13983, '0746000561'), + (13984, '0140511849'), + (1215, '0140511849'), + (13985, '0140511849'), + (13986, '0563371110'), + (13987, '0563371110'), + (13988, '0563371110'), + (13989, '0316734500'), + (13990, '0752848151'), + (13991, '0752848151'), + (13992, '1854790420'), + (13993, '0723216371'), + (13994, '0723216371'), + (13995, '1860192599'), + (5015, '0140059776'), + (13996, '1853043427'), + (13997, '1853043427'), + (13998, '1850510881'), + (13999, '0704339986'), + (14000, '1887166734'), + (14001, '0439010705'), + (1281, '1870451090'), + (1013, '0805004610'), + (14002, '0671874594'), + (570, '1563898810'), + (14003, '1563898810'), + (14004, '1563898810'), + (14005, '1563898810'), + (268, '1563898780'), + (1169, '1563898780'), + (791, '1563898780'), + (14006, '1563898780'), + (14007, '1563898780'), + (14008, '080502669X'), + (1328, '0553100637'), + (973, '0385415109'), + (94, '1878734601'), + (424, '157965116X'), + (14009, '157965116X'), + (1365, '0374514852'), + (973, '0312890222'), + (973, '0380821001'), + (14010, '038078405X'), + (14011, '0452281229'), + (14010, '0452281849'), + (14012, '0684824175'), + (14013, '0684824175'), + (3458, '0743411366'), + (14014, '0786890371'), + (1837, '1551665999'), + (7485, '0670032069'), + (14015, '0525943064'), + (1228, '0385491808'), + (179, '052594558X'), + (14016, '1573229350'), + (1326, '0446607177'), + (1327, '0446607177'), + (14017, '0553575465'), + (12668, '0553573926'), + (4476, '0061097624'), + (1876, '0553576089'), + (1562, '0061097306'), + (2528, '0515124060'), + (5563, '0451185498'), + (5563, '0451192222'), + (128, '0446609617'), + (10758, '0446608033'), + (7453, '1575663643'), + (14018, '1575663643'), + (14019, '0307128199'), + (11224, '0307128199'), + (1739, '044022571X'), + (14020, '0448117487'), + (3495, '0843108118'), + (14021, '0446608912'), + (9670, '0446608319'), + (14022, '0345427696'), + (414, '0375500723'), + (14021, '0316803480'), + (3231, '0312278306'), + (7163, '0345428080'), + (1228, '0140264795'), + (14023, '0060974621'), + (14024, '0312970897'), + (14025, '0312970897'), + (14026, '0452282535'), + (1164, '0913780146'), + (14027, '0670857661'), + (14028, '1567314295'), + (14029, '0670899836'), + (14030, '0670899836'), + (14031, '0330331698'), + (14032, '0737000465'), + (14033, '0374248613'), + (14034, '0807072125'), + (7778, '1931514933'), + (14035, '1591823692'), + (7168, '1892213087'), + (7172, '1892213001'), + (14036, '1586648756'), + (14037, '1586648756'), + (14035, '1586648969'), + (14038, '1586648969'), + (14035, '1586648950'), + (14037, '1586648950'), + (14035, '1586648624'), + (14037, '1586648624'), + (14035, '1586648616'), + (14037, '1586648616'), + (14035, '1586648500'), + (14037, '1586648500'), + (14035, '1562199455'), + (14037, '1562199455'), + (14039, '0385477155'), + (14040, '0385730918'), + (14041, '0385730918'), + (14042, '0739408461'), + (14043, '0486212688'), + (14044, '0486212688'), + (142, '0451210875'), + (142, '0451210867'), + (142, '0451210859'), + (14045, '1591822092'), + (14044, '1591822084'), + (14044, '1591822076'), + (14044, '1591822068'), + (14046, '193151478X'), + (3702, '193151478X'), + (14044, '1931514771'), + (14045, '1931514763'), + (14044, '1931514755'), + (14044, '1931514747'), + (14044, '1931514739'), + (14047, '159182107X'), + (14048, '159182107X'), + (14046, '1591820219'), + (14047, '1591820219'), + (14046, '1591820200'), + (14047, '1591820200'), + (14049, '1931514461'), + (14046, '1931514461'), + (14047, '1931514461'), + (14046, '193151495X'), + (9042, '1591820146'), + (9042, '1931514976'), + (9042, '1931514941'), + (14050, '1591161932'), + (14049, '1591161932'), + (14049, '1591161258'), + (14049, '1591160944'), + (14049, '1591160677'), + (14049, '1591160669'), + (14051, '1591823978'), + (14052, '1591823978'), + (14053, '1591823978'), + (14050, '159182396X'), + (2694, '0060177241'), + (387, '0141308109'), + (6854, '0345450051'), + (14054, '0441002846'), + (14055, '0880382791'), + (14056, '0966961706'), + (142, '0451160959'), + (14057, '156931778X'), + (1194, '0671700294'), + (6351, '0060924640'), + (10309, '0385497954'), + (247, '080411188X'), + (14058, '0505525224'), + (14059, '0062513095'), + (6115, '1556611102'), + (14060, '0446305693'), + (1787, '0380624060'), + (753, '0938410563'), + (58, '0345354575'), + (14061, '0312152949'), + (2641, '044630798X'), + (284, '0553212230'), + (14062, '0201489392'), + (6872, '068485970X'), + (1760, '0873513193'), + (14063, '0679762892'), + (330, '0449904067'), + (3283, '0679415610'), + (14064, '0152012702'), + (14065, '1568360096'), + (1787, '0380698692'), + (1787, '0380703149'), + (1787, '0380703130'), + (1787, '0380615983'), + (14066, '0375401946'), + (5531, '0061059900'), + (8370, '0061059900'), + (14067, '0380792990'), + (14068, '0385272170'), + (991, '0140139419'), + (1096, '0060171324'), + (14069, '1555612423'), + (14070, '1555612423'), + (14071, '0452277698'), + (12714, '0452279097'), + (14072, '0452279097'), + (644, '0440213355'), + (14073, '0553569376'), + (81, '0804108854'), + (10315, '0385319444'), + (6264, '0316418927'), + (4402, '038547721X'), + (8985, '0446607401'), + (4028, '0385336489'), + (14074, '0934601941'), + (14075, '0934601941'), + (14076, '0963355554'), + (14077, '0963355554'), + (14073, '0931948932'), + (14074, '0931948932'), + (14078, '0931948932'), + (2333, '0375709215'), + (2341, '0805060367'), + (1159, '0816148708'), + (2181, '0399141200'), + (14079, '0688166083'), + (5549, '0440212235'), + (4002, '0395633206'), + (14080, '0345273494'), + (14081, '0312309635'), + (14082, '0809321297'), + (14083, '0809321297'), + (14084, '0690048246'), + (11164, '0690048246'), + (9086, '0345456688'), + (12345, '1880823233'), + (12399, '055306102X'), + (14085, '0609609459'), + (705, '0767913019'), + (1210, '0345435400'), + (14086, '0684834308'), + (14087, '0684834308'), + (7855, '038549727X'), + (7855, '0385497296'), + (14088, '0345428609'), + (178, '0140187642'), + (14089, '0140187642'), + (14090, '0140187642'), + (14091, '0140187642'), + (14092, '0140187642'), + (860, '0345428560'), + (14093, '0425149625'), + (14094, '0446530255'), + (14093, '0446679178'), + (2224, '0345443004'), + (14087, '0345442989'), + (14095, '0670030651'), + (5600, '037542055X'), + (3677, '038550098X'), + (14096, '1875989048'), + (14097, '1590250001'), + (14098, '1590250001'), + (3241, '0061081558'), + (1214, '0671028014'), + (2713, '0553563084'), + (2713, '0553570560'), + (2713, '0553570587'), + (2233, '0671694979'), + (14099, '1591132207'), + (2287, '0446400173'), + (14100, '0684813580'), + (14101, '094148307X'), + (5278, '0939416611'), + (14102, '0385480377'), + (2287, '0446400696'), + (906, '0425129608'), + (906, '0425099148'), + (14103, '0813190355'), + (14104, '0743464273'), + (906, '0312979738'), + (906, '0451201132'), + (906, '0425129632'), + (906, '0425173917'), + (906, '0451199898'), + (906, '0451201191'), + (906, '0312981600'), + (906, '0451200187'), + (14105, '0060926945'), + (2103, '0393093883'), + (14106, '0393093883'), + (14107, '0393093883'), + (14108, '0486290735'), + (14109, '0060929804'), + (965, '0812504321'), + (3102, '0812504380'), + (403, '0142437174'), + (14110, '0142437174'), + (2167, '0142437174'), + (14111, '1561481858'), + (906, '0312979819'), + (14112, '0671685112'), + (14113, '0394721039'), + (1787, '0380729865'), + (5130, '044020495X'), + (906, '0425175456'), + (906, '0312981651'), + (906, '042506803X'), + (906, '0425091805'), + (906, '0425098540'), + (906, '0312981686'), + (906, '0425173909'), + (906, '0451200535'), + (906, '042509961X'), + (906, '0440159229'), + (906, '0441240984'), + (14114, '0441240984'), + (14115, '0941483428'), + (14116, '1573441252'), + (14117, '0786886099'), + (14118, '0345351959'), + (7886, '0345351959'), + (14119, '0345351959'), + (2287, '0446400157'), + (906, '0451199863'), + (14120, '0312330731'), + (585, '034541215X'), + (1325, '0061099481'), + (40, '0743234901'), + (5887, '0671724738'), + (906, '0451201205'), + (906, '0440152305'), + (368, '0399146601'), + (906, '0671542125'), + (397, '0451521595'), + (427, '0713994606'), + (4826, '0812503058'), + (14121, '0380705486'), + (14122, '0316702757'), + (906, '0425130258'), + (1755, '0374517835'), + (906, '0425169251'), + (506, '0449210006'), + (433, '0345253736'), + (433, '0345362861'), + (5898, '0345362861'), + (14123, '0020868804'), + (14124, '9960340112'), + (14125, '0060935405'), + (14126, '0374522812'), + (14127, '0374522812'), + (14128, '1557282048'), + (545, '0060956739'), + (1265, '0553293362'), + (1186, '0441089348'), + (1144, '0446519766'), + (14129, '0446519766'), + (14130, '0743457633'), + (14131, '0345407601'), + (6854, '0743509447'), + (14132, '0836250877'), + (14133, '0836250877'), + (3327, '0440425360'), + (3327, '0440435749'), + (3327, '0440484839'), + (3327, '0440411254'), + (3327, '0440406498'), + (3327, '0440407028'), + (14134, '0440381142'), + (14135, '0440381142'), + (1164, '0553261258'), + (14136, '0553149075'), + (906, '0425080005'), + (906, '0425103528'), + (906, '0440192285'), + (906, '0425100413'), + (906, '0451199928'), + (906, '0425177416'), + (906, '0061003786'), + (906, '0061003689'), + (906, '0425174735'), + (5874, '0743423763'), + (1194, '067163822X'), + (14137, '1400060265'), + (2393, '0061052043'), + (2398, '0380781042'), + (906, '067142095X'), + (14138, '0393322963'), + (1747, '0375411119'), + (12395, '0345365399'), + (14139, '0671701592'), + (777, '0140361227'), + (1897, '0140361227'), + (14140, '0140231595'), + (9069, '0140231595'), + (56, '1853260282'), + (906, '0396073735'), + (1733, '0671552228'), + (1755, '0440957761'), + (4586, '0451515048'), + (10962, '0451527097'), + (14141, '0451527097'), + (14142, '0451181441'), + (7516, '0425159612'), + (7516, '0425154637'), + (1773, '0441008631'), + (1164, '0553269291'), + (122, '0743427947'), + (473, '068482504X'), + (14143, '1565071875'), + (122, '0671019163'), + (906, '0671464965'), + (14144, '0425163830'), + (14145, '0425163830'), + (873, '0812518055'), + (14146, '0812518055'), + (1878, '0671701622'), + (1755, '0440917190'), + (5152, '0441783295'), + (2224, '042507255X'), + (3327, '0440906490'), + (14147, '0373261896'), + (14148, '0441001467'), + (906, '0671823337'), + (14149, '0671437968'), + (1159, '0140064826'), + (14150, '0671568310'), + (906, '0425108589'), + (5821, '0553276514'), + (2326, '0886773865'), + (12870, '0380011077'), + (2287, '0449207021'), + (14151, '0590416243'), + (8723, '0679890998'), + (2287, '0446403180'), + (6918, '0060244755'), + (1740, '0812579410'), + (14152, '0812540379'), + (895, '0451185129'), + (896, '0451185129'), + (1281, '1573182036'), + (14153, '1573182036'), + (14154, '0807846465'), + (14155, '093871628X'), + (14156, '0762702265'), + (122, '0743427920'), + (14157, '0836283430'), + (14158, '0836283430'), + (2287, '0449214958'), + (5887, '0671738623'), + (14159, '084237356X'), + (967, '1576739759'), + (8298, '039303853X'), + (3779, '0312927746'), + (4428, '068484897X'), + (3458, '0679449434'), + (14160, '0842371893'), + (5729, '0842371893'), + (1837, '1551664992'), + (14161, '067147071X'), + (14162, '0375405356'), + (1485, '0399142983'), + (2913, '0385485212'), + (14163, '0684845261'), + (14164, '0440210178'), + (412, '055334501X'), + (14165, '039450965X'), + (14166, '0877900507'), + (14167, '0486411915'), + (14168, '0738204048'), + (14169, '0738204048'), + (6426, '0425110427'), + (5235, '0060639059'), + (14170, '0553257439'), + (2100, '0892131187'), + (14171, '089256265X'), + (527, '089256265X'), + (3704, '0671463195'), + (14172, '0670383295'), + (14173, '014046560X'), + (14174, '0823030970'), + (14175, '0823030970'), + (3643, '0425075826'), + (14176, '0451136039'), + (14177, '0140272801'), + (2687, '0425137465'), + (3591, '0425092038'), + (369, '0373484836'), + (369, '0373244487'), + (281, '0140277293'), + (14178, '0380007002'), + (14179, '0380007002'), + (14180, '0380700999'), + (414, '0375507477'), + (14181, '1558701311'), + (14182, '1558701311'), + (14183, '1887911510'), + (14184, '1887911510'), + (14185, '1887911510'), + (14186, '1887911510'), + (310, '0670878812'), + (14187, '1564651622'), + (14188, '0553203630'), + (14189, '0394564324'), + (14190, '0345362500'), + (14191, '0940159147'), + (6548, '0399145427'), + (8110, '0523421214'), + (14192, '0523421214'), + (14193, '0609800906'), + (369, '0515120871'), + (14194, '0966443004'), + (550, '0743410602'), + (14195, '158234096X'), + (14196, '1587210975'), + (14197, '0135814219'), + (10005, '0140068929'), + (14198, '0312045239'), + (14199, '0394724372'), + (252, '0517704803'), + (14200, '0689813279'), + (14201, '1574882295'), + (5065, '0064401758'), + (11128, '0064401758'), + (11193, '0141310871'), + (14202, '0156011549'), + (14203, '0879612312'), + (14204, '0879612312'), + (14205, '0879612312'), + (14206, '1558176756'), + (11273, '038072099X'), + (11810, '0821771167'), + (4757, '0689863632'), + (14207, '0761319417'), + (14208, '0449218201'), + (8668, '0345417739'), + (457, '0671025864'), + (11326, '1883523133'), + (572, '0385495056'), + (14209, '1556591241'), + (138, '0140057935'), + (8372, '0515131733'), + (14210, '0751531294'), + (4576, '0821769391'), + (10005, '0140093281'), + (12621, '0440191238'), + (14211, '014007600X'), + (14212, '0553578294'), + (14213, '0669217360'), + (14214, '0912238259'), + (14215, '0912238259'), + (63, '0743457463'), + (1337, '0743457463'), + (3644, '0743457463'), + (8732, '0684844958'), + (2654, '0449200981'), + (8890, '0449200361'), + (9161, '1902881842'), + (14216, '0395281601'), + (3619, '0884111431'), + (14217, '0671203576'), + (115, '0451163516'), + (14218, '0075536226'), + (367, '044991089X'), + (7270, '0553226347'), + (14219, '0440121418'), + (14220, '0831754087'), + (14221, '0871137771'), + (955, '038531700X'), + (14222, '0805055452'), + (14223, '0805055452'), + (4037, '0590433644'), + (14224, '1582343497'), + (14225, '1562472305'), + (14226, '1562472305'), + (14227, '0789432331'), + (14228, '1572972939'), + (14229, '1572972939'), + (2963, '0688048315'), + (13325, '0688048315'), + (330, '0449910261'), + (14230, '0394555287'), + (14231, '0394555287'), + (14232, '0816038465'), + (14233, '0816038465'), + (14234, '0816038465'), + (14235, '0002179687'), + (128, '0446519782'), + (14236, '0449208184'), + (4584, '0140150447'), + (14237, '0140150447'), + (962, '0064401871'), + (4671, '0064401871'), + (14238, '1579620604'), + (14239, '039914630X'), + (14240, '0972022104'), + (14241, '0826321143'), + (14242, '1931243328'), + (14243, '1931243328'), + (187, '0380759500'), + (397, '0671722778'), + (397, '0671722646'), + (14244, '0970310501'), + (14245, '0060910496'), + (14246, '0312929277'), + (9961, '0809434903'), + (14247, '006091601X'), + (14248, '0314040536'), + (14249, '0314260439'), + (5892, '0393000699'), + (5763, '1851680659'), + (8752, '0316547336'), + (14250, '0316547336'), + (7112, '0415908078'), + (8304, '0395674379'), + (14251, '0446394572'), + (665, '0020518706'), + (14252, '0446513644'), + (14253, '1562477587'), + (8569, '039300158X'), + (14254, '0802773877'), + (14255, '0802773877'), + (13099, '0805006923'), + (14256, '0385192401'), + (14257, '0385192401'), + (14258, '0767903595'), + (1272, '0140119698'), + (14259, '0894803220'), + (14260, '0894803220'), + (6059, '0962341053'), + (14261, '0962341053'), + (14262, '0891093699'), + (14263, '0941483096'), + (14264, '0886875269'), + (14265, '0886875269'), + (14266, '0963557572'), + (14267, '0876091729'), + (14268, '0439135230'), + (2007, '0446671223'), + (2008, '0446671223'), + (10787, '0937295132'), + (14269, '0345349040'), + (14270, '0060972947'), + (14271, '0060972947'), + (5599, '0446611751'), + (178, '0486277852'), + (14272, '1561384798'), + (14273, '1566395305'), + (14274, '0895297310'), + (14275, '0934878420'), + (14276, '1592799175'), + (14277, '0486240304'), + (7579, '1573221252'), + (14278, '0066211484'), + (14279, '1575842793'), + (14280, '094463432X'), + (14281, '1576730409'), + (14282, '0812921828'), + (14283, '0714827363'), + (14284, '1576732533'), + (186, '0830724923'), + (7115, '037602478X'), + (7917, '0805065989'), + (11858, '0743218035'), + (14285, '0874173515'), + (14286, '1558502874'), + (14287, '1558500502'), + (14288, '0135085322'), + (14289, '0312265611'), + (14290, '0395979366'), + (14291, '0312268033'), + (14292, '0684850796'), + (14293, '088162280X'), + (14294, '0688165273'), + (14295, '0380975440'), + (14296, '0395430976'), + (6410, '0785272399'), + (14297, '1841950955'), + (14298, '0385141041'), + (1556, '0967370167'), + (14299, '0785268766'), + (7814, '0312263015'), + (501, '0805056211'), + (14300, '0380975920'), + (14301, '0446524484'), + (7515, '0446519901'), + (14302, '0451168364'), + (14303, '0877735441'), + (13803, '0961475439'), + (13803, '0963625543'), + (13804, '0963625543'), + (14304, '1559722754'), + (14305, '0807009539'), + (9530, '0451526708'), + (14306, '0451526708'), + (14307, '0310217067'), + (14308, '0310217067'), + (14309, '0310217067'), + (14310, '0310217067'), + (14311, '0875964818'), + (14312, '0875964818'), + (14313, '047116917X'), + (14314, '0786866764'), + (14315, '0060805420'), + (6714, '0156027860'), + (965, '0689856741'), + (1024, '0689856741'), + (14316, '0671677217'), + (14315, '0671677209'), + (14317, '0802754309'), + (231, '0385311044'), + (14318, '0472060953'), + (14319, '0472060953'), + (2791, '0743205626'), + (1196, '0671524097'), + (5892, '0393009165'), + (14320, '0471496421'), + (14321, '0471496421'), + (14322, '0471496421'), + (14323, '0471496421'), + (14324, '0044409001'), + (14323, '0044409001'), + (1094, '0553578251'), + (4799, '0679741917'), + (4994, '0679741917'), + (1283, '0312253419'), + (2695, '006019832X'), + (14325, '089480619X'), + (14326, '0679764399'), + (14327, '0520088794'), + (14328, '0520088794'), + (220, '0060932139'), + (3480, '0060932139'), + (14329, '0449912337'), + (6672, '0671734598'), + (3590, '031286129X'), + (14330, '0962295701'), + (14331, '158234311X'), + (43, '0679870423'), + (14332, '0553279114'), + (14333, '0345345053'), + (14334, '0671028294'), + (14335, '0961000805'), + (14336, '0961000805'), + (14337, '0316105163'), + (14338, '0316105163'), + (7115, '0376024852'), + (7115, '0376024763'), + (415, '0425064506'), + (14339, '1929156006'), + (14340, '0553268724'), + (14341, '1582431264'), + (14342, '1883642442'), + (14343, '1573221686'), + (14344, '0395984165'), + (11049, '0805066667'), + (14345, '0590465880'), + (14346, '039594113X'), + (14347, '0060282320'), + (11888, '0312876610'), + (1363, '0060194170'), + (14348, '0385492979'), + (14349, '0395945151'), + (8268, '0375402721'), + (8345, '0316472409'), + (14350, '0944072917'), + (14351, '1582430225'), + (13156, '1582430225'), + (14352, '0385478194'), + (2472, '0060926066'), + (14353, '0865342695'), + (3969, '0380762951'), + (14354, '0505525054'), + (14355, '0044409575'), + (14354, '0044409575'), + (14356, '0044409575'), + (14357, '1559360739'), + (14356, '1559360615'), + (4104, '0679722068'), + (14358, '0679722068'), + (4614, '038070336X'), + (14359, '038070336X'), + (14360, '0810980991'), + (14361, '0810980991'), + (14362, '0448192187'), + (8730, '0141312181'), + (187, '0706431642'), + (12912, '0671019961'), + (14363, '0671019961'), + (2656, '0449217493'), + (2656, '0449214192'), + (14364, '1878580450'), + (11241, '0679437037'), + (11242, '0679437037'), + (8485, '0375707409'), + (14365, '0471155454'), + (14366, '0471155454'), + (20, '0446605964'), + (4719, '0374309302'), + (2656, '0449206513'), + (14367, '037581177X'), + (342, '0385480334'), + (4701, '0385480334'), + (4702, '0385480334'), + (4703, '0385480334'), + (151, '0061092614'), + (5633, '0451133129'), + (14368, '0684858266'), + (2656, '0449244741'), + (14369, '0449244741'), + (14370, '0449244741'), + (2656, '0449238598'), + (6370, '0140093451'), + (14065, '0317532901'), + (4614, '0380755408'), + (368, '067168079X'), + (4382, '0449147452'), + (12457, '0380704056'), + (12457, '038070529X'), + (14371, '0879052686'), + (2656, '0449234940'), + (368, '0671680765'), + (337, '042518904X'), + (14372, '0553284134'), + (136, '0451166876'), + (14373, '0451166876'), + (14374, '0446670332'), + (1144, '0812527259'), + (14375, '0440212049'), + (1704, '0553199552'), + (2656, '0449220923'), + (7221, '0375758771'), + (14376, '0899669611'), + (578, '0060924799'), + (14377, '0399122702'), + (2656, '0449210928'), + (2656, '0812534379'), + (2656, '0449239594'), + (14378, '0140036636'), + (14379, '0553272934'), + (14380, '0451409655'), + (14381, '1555972403'), + (10002, '1555972403'), + (397, '0521425042'), + (14382, '0521425042'), + (12125, '0521425042'), + (14383, '0345343727'), + (2551, '0804113645'), + (5583, '0671664824'), + (937, '038072121X'), + (3071, '067172018X'), + (9344, '0345388747'), + (8291, '055329010X'), + (309, '0553262815'), + (5538, '0812502701'), + (2949, '0786705337'), + (1740, '0812532236'), + (1740, '0425086577'), + (1740, '0812532082'), + (1740, '0812532368'), + (1740, '0812500768'), + (5874, '0553249355'), + (5874, '0553277006'), + (14384, '0553277006'), + (1180, '0441007910'), + (9169, '0441007910'), + (2224, '0441132456'), + (2224, '0446341819'), + (14385, '0671746340'), + (14386, '0671899007'), + (14387, '1878067265'), + (9192, '0553266640'), + (1065, '0553290053'), + (9192, '0380790521'), + (9192, '0553573322'), + (854, '0345326008'), + (14388, '0273637371'), + (14389, '0273637371'), + (14390, '087584877X'), + (14391, '087584877X'), + (1065, '0553298178'), + (2990, '0553298178'), + (9396, '0812520629'), + (9, '0446350982'), + (14392, '0590419668'), + (819, '0886774926'), + (12841, '039472366X'), + (14393, '0671720791'), + (14394, '0671720791'), + (14395, '0671720791'), + (2656, '0449206505'), + (2656, '0449214206'), + (2656, '0812513010'), + (14396, '0684859017'), + (1302, '0671654047'), + (2656, '0394450779'), + (506, '0743434870'), + (6616, '1850180490'), + (14397, '0425187403'), + (2656, '0449232042'), + (14398, '0679781420'), + (14399, '0684864185'), + (8852, '034535933X'), + (10713, '0345373480'), + (14400, '0671809385'), + (14401, '0312924291'), + (8233, '1565846567'), + (14402, '0061003425'), + (14403, '0451174186'), + (2610, '0140171673'), + (14404, '0804103712'), + (12223, '0380722607'), + (3317, '1558173331'), + (14405, '044921849X'), + (14406, '0345343263'), + (1302, '0671559044'), + (3379, '0345312015'), + (4682, '0375757643'), + (14407, '0375757643'), + (1179, '0449205983'), + (14408, '0451158717'), + (14315, '0671677225'), + (14409, '0821738976'), + (1507, '0836218981'), + (14359, '0810913038'), + (14360, '0810913038'), + (12674, '006028739X'), + (502, '0375761225'), + (14410, '0375761225'), + (14411, '0066211697'), + (10076, '080500503X'), + (2624, '0345340418'), + (551, '0671455257'), + (14412, '0802138039'), + (14413, '0802138039'), + (14414, '0060907967'), + (14415, '0449211479'), + (3172, '0449134040'), + (14416, '1569800677'), + (92, '0345330145'), + (2504, '0671720082'), + (2656, '0449237613'), + (2224, '0345332857'), + (14417, '0671698516'), + (5874, '0812536460'), + (1366, '0385333781'), + (5418, '0380720884'), + (10267, '0671644211'), + (14418, '0553158899'), + (14419, '0553158899'), + (2365, '0441908721'), + (9105, '0515126985'), + (2201, '0671578553'), + (14420, '0345371976'), + (819, '0886775647'), + (14421, '0802313167'), + (14422, '0312088353'), + (2834, '0553232894'), + (4322, '0060932902'), + (14423, '0609606077'), + (14424, '0306804751'), + (14425, '0306804751'), + (2656, '0394505050'), + (2656, '0878579109'), + (14426, '0878579109'), + (979, '0743205677'), + (14427, '0743205677'), + (14428, '0805047360'), + (14429, '0743222946'), + (14430, '0439376068'), + (14431, '0439376068'), + (1721, '0439376068'), + (14432, '0525457453'), + (7750, '0525457453'), + (14433, '0060960809'), + (93, '0375801766'), + (4787, '0805054537'), + (14434, '0312110529'), + (14435, '0525093303'), + (14436, '0671633635'), + (14437, '0671678051'), + (14438, '0452262704'), + (14439, '0688155162'), + (7581, '0060959622'), + (14440, '0385266367'), + (1664, '0140178724'), + (10410, '0195030680'), + (14441, '0670882070'), + (14442, '0395957826'), + (14443, '0156505150'), + (14444, '0854491872'), + (14445, '0451623797'), + (14446, '1568362641'), + (14445, '1568362641'), + (14447, '0393039870'), + (6370, '0140077715'), + (680, '0425153797'), + (1987, '0671740504'), + (5101, '0553293915'), + (14162, '0671016717'), + (12872, '0394710932'), + (2656, '0449203158'), + (14448, '0156806754'), + (7200, '0671746480'), + (8291, '0671743880'), + (14449, '0671743880'), + (14450, '0671743880'), + (14451, '0671739182'), + (14452, '067152044X'), + (1527, '0553241745'), + (14453, '0671880306'), + (2372, '0671880306'), + (14454, '0671880306'), + (2980, '0553121111'), + (13223, '0671709704'), + (14129, '0671520466'), + (2368, '0671506048'), + (14455, '0671506048'), + (14456, '0671506048'), + (14457, '0671506048'), + (14458, '0451129474'), + (14459, '0451129474'), + (2368, '0671882678'), + (14460, '0671882678'), + (123, '0671882678'), + (14461, '0671882678'), + (2372, '0671520962'), + (2371, '0671520962'), + (14462, '0671520482'), + (14129, '0671797042'), + (14463, '0671453580'), + (7385, '0671537830'), + (7176, '0671881167'), + (4655, '0671872753'), + (8518, '0671568116'), + (2991, '0671549170'), + (6854, '0671520474'), + (14464, '0671658158'), + (14465, '0671741403'), + (14466, '0671741403'), + (10763, '067151914X'), + (14467, '067151914X'), + (10595, '067151914X'), + (14468, '067151914X'), + (8291, '0553241702'), + (14469, '067179065X'), + (2224, '0345272129'), + (14470, '0345272129'), + (7200, '0671705601'), + (14450, '0671501054'), + (6854, '0671746472'), + (14471, '0671524887'), + (5148, '0671798588'), + (14466, '0671798588'), + (14467, '0671798588'), + (14472, '0671879979'), + (3198, '0060916095'), + (14473, '0449005127'), + (1999, '0374520763'), + (5150, '0671741438'), + (14474, '0671666622'), + (14464, '0671465430'), + (14475, '1884907873'), + (14476, '0449221202'), + (2624, '034536998X'), + (2881, '0671864165'), + (14477, '158613101X'), + (14478, '0767905040'), + (14479, '0802131379'), + (1857, '0380788756'), + (14480, '0553560727'), + (14481, '0553560727'), + (14482, '0515113522'), + (5063, '0515113522'), + (14483, '0451452356'), + (35, '0689835558'), + (14484, '0752843753'), + (14485, '0874777992'), + (1867, '0061007072'), + (7873, '0811205967'), + (14486, '0679750304'), + (14487, '0921912951'), + (5231, '0486287599'), + (14488, '0312963157'), + (14489, '0691003122'), + (14490, '067088460X'), + (6908, '067088460X'), + (14491, '0887307361'), + (14492, '0688089054'), + (14493, '0688089054'), + (14494, '0399522662'), + (3946, '0062548662'), + (7288, '0804112657'), + (14495, '1561704059'), + (14496, '0446525685'), + (14497, '0061011886'), + (14498, '034536225X'), + (5406, '0380728753'), + (8173, '0740729497'), + (8174, '0740729497'), + (14499, '0740729497'), + (14500, '0140046941'), + (14501, '0684837455'), + (14502, '0312022808'), + (14503, '0828869782'), + (10116, '0828869782'), + (4070, '055321392X'), + (367, '055321392X'), + (14504, '0881844632'), + (14505, '2710300257'), + (993, '0375507914'), + (14506, '0486220370'), + (14507, '0486220370'), + (14508, '0839828500'), + (14509, '0394408853'), + (14510, '0310219345'), + (2656, '0394565614'), + (2595, '0192834320'), + (14511, '0192834320'), + (14512, '0192834320'), + (14513, '0192834320'), + (14514, '0684839571'), + (14515, '0684839571'), + (8064, '156476768X'), + (5504, '0440123925'), + (6042, '0385264860'), + (11340, '0385264860'), + (58, '006109921X'), + (14516, '0870119206'), + (14517, '0870119206'), + (1308, '0394741722'), + (2669, '0140437908'), + (5627, '0140437908'), + (14518, '0140437908'), + (14519, '0060975466'), + (5538, '0671578588'), + (3893, '0671578588'), + (1696, '0671653989'), + (4730, '0886777119'), + (6444, '0886777119'), + (867, '0886777410'), + (14520, '0671577743'), + (5538, '0671577743'), + (734, '067087485X'), + (14521, '0553349155'), + (2325, '0156227258'), + (14522, '1578511933'), + (14523, '1578511933'), + (14524, '1578511933'), + (14525, '0684815753'), + (14526, '039952276X'), + (14527, '039952276X'), + (14528, '0385475985'), + (14258, '0385475985'), + (14529, '1561382477'), + (4079, '1567312950'), + (14530, '0382091175'), + (14531, '0382091175'), + (1282, '0553560204'), + (14532, '0345332784'), + (14533, '0824910591'), + (14534, '0670838101'), + (14535, '0689812744'), + (14536, '0689812744'), + (14537, '0140542388'), + (68, '0394530195'), + (14538, '1556113307'), + (14539, '0156093103'), + (6758, '0395486173'), + (622, '0064407470'), + (14540, '0060952423'), + (14539, '0060957182'), + (1210, '0870540947'), + (1210, '0743452631'), + (188, '0380812002'), + (1065, '0553293877'), + (14541, '0553573330'), + (1065, '0553573330'), + (1159, '0670030031'), + (14542, '002963900X'), + (14543, '0679430679'), + (14544, '0525943625'), + (12696, '0525943625'), + (14545, '0060985011'), + (14546, '0399512330'), + (14547, '1555253903'), + (14548, '0440415942'), + (10650, '0671892258'), + (129, '0316693715'), + (14549, '0440203244'), + (14550, '0440505984'), + (14551, '0688118852'), + (8068, '0395470439'), + (9, '0374184232'), + (14552, '0671541390'), + (14553, '1852307927'), + (14554, '0451406273'), + (14555, '0451406273'), + (1626, '0060192240'), + (14556, '0312146310'), + (14557, '0312146310'), + (14558, '0393087972'), + (6680, '0679456821'), + (14559, '0679456821'), + (14560, '0679454799'), + (630, '1575661381'), + (14561, '0380802112'), + (554, '055308576X'), + (14070, '0679456317'), + (554, '0553095870'), + (1616, '0679738142'), + (14562, '0876857446'), + (14563, '037601556X'), + (7115, '0376011998'), + (14564, '0376011998'), + (14562, '0376011998'), + (14565, '0376011998'), + (7372, '0553581929'), + (7916, '0451200284'), + (14566, '0425183025'), + (11550, '1551668599'), + (345, '0671036564'), + (2357, '0449224260'), + (580, '0449149900'), + (14567, '0395765285'), + (14568, '0395765285'), + (2006, '0380975343'), + (14569, '0916180018'), + (14570, '0916180018'), + (14571, '0679768149'), + (14572, '0316812404'), + (720, '0684834723'), + (14573, '1556155689'), + (7372, '0553581937'), + (532, '0451202317'), + (14574, '0465019803'), + (13416, '0671661353'), + (14575, '0534178081'), + (4602, '1551669153'), + (3571, '0140250948'), + (4189, '0393960129'), + (14576, '0393960129'), + (12551, '0312155476'), + (14577, '0393950344'), + (14578, '0393950344'), + (5466, '039309412X'), + (630, '0821766570'), + (2695, '0451180755'), + (4832, '0312974507'), + (14579, '0316115924'), + (1858, '0449202917'), + (85, '0393959031'), + (14580, '0393959031'), + (14581, '0821223496'), + (14582, '0821223496'), + (14583, '0821223496'), + (559, '0312979398'), + (1498, '0812590252'), + (14584, '0786889608'), + (14585, '0471985813'), + (14586, '0471985813'), + (14587, '0471985813'), + (14588, '0822953560'), + (1244, '0671553038'), + (1626, '0060175184'), + (3798, '0786889756'), + (9933, '0446605050'), + (4471, '0345428285'), + (217, '0140155058'), + (160, '0553571834'), + (2253, '0440235219'), + (2978, '042517140X'), + (14589, '0425184242'), + (4602, '1551668246'), + (1196, '0671523090'), + (2978, '0425160394'), + (14590, '0812928342'), + (13171, '0385471289'), + (14591, '0451205413'), + (14592, '0451205413'), + (14593, '0440235812'), + (368, '0515126519'), + (14594, '0380818655'), + (720, '0743430999'), + (8096, '0671019554'), + (14595, '0312112874'), + (6517, '0679760660'), + (14596, '0140094601'), + (154, '0385494246'), + (1965, '0451519485'), + (14597, '0451519485'), + (1065, '0812576403'), + (1554, '0812576403'), + (4051, '0375706690'), + (1315, '0452011876'), + (1316, '0452011876'), + (478, '0553109588'), + (14598, '0964411911'), + (11555, '087243169X'), + (14599, '0785264280'), + (14600, '1881471322'), + (12247, '0573690219'), + (8365, '0374102058'), + (14601, '0060950773'), + (14602, '0060950773'), + (14603, '0819143847'), + (14604, '1885492200'), + (14605, '1885492200'), + (2658, '067152836X'), + (1409, '0679720219'), + (14606, '0679720219'), + (5586, '0446670197'), + (14607, '0786885882'), + (14608, '0786885882'), + (14609, '0747259526'), + (2393, '0886779774'), + (2551, '0804115729'), + (5290, '0520209109'), + (7530, '0812568680'), + (14610, '0812568680'), + (14611, '0425164357'), + (2551, '0804114897'), + (368, '0449221113'), + (14610, '0380774992'), + (2257, '1551664305'), + (574, '0345397819'), + (848, '0871132095'), + (2271, '0451406893'), + (3164, '0553576232'), + (2577, '0425181979'), + (3164, '0553294083'), + (2259, '0312966210'), + (3997, '0821742841'), + (14612, '0312152841'), + (14613, '0312152841'), + (14614, '0312152841'), + (14615, '0312152841'), + (3745, '0671624830'), + (14616, '1564265536'), + (2259, '0380781484'), + (1071, '0812544161'), + (14617, '1559724307'), + (14618, '0140062785'), + (1116, '0553573705'), + (14619, '006107361X'), + (14620, '006107361X'), + (2791, '0671413678'), + (14621, '006096510X'), + (14622, '0385248253'), + (14623, '0394754271'), + (14624, '1885492030'), + (14625, '1885492030'), + (14626, '0917657462'), + (14627, '0385503636'), + (14628, '1558211853'), + (2805, '0671755056'), + (14629, '0812929136'), + (10438, '0679735186'), + (14630, '0449906566'), + (1096, '0060170808'), + (4080, '055324518X'), + (14631, '0452268737'), + (14632, '0896223337'), + (10385, '0451185145'), + (154, '0385494335'), + (14633, '0070371628'), + (583, '0394559584'), + (583, '0385245793'), + (3159, '0380973170'), + (82, '0192816861'), + (14634, '0192816861'), + (231, '0440226406'), + (4321, '0060924675'), + (2963, '0892966882'), + (2610, '0679721746'), + (14635, '0684815095'), + (1706, '0156153955'), + (14636, '0451180224'), + (1876, '0553572512'), + (4556, '0449912639'), + (6517, '0804107513'), + (13093, '0837820464'), + (14637, '0486415848'), + (14638, '1575252929'), + (14639, '1561893978'), + (14640, '1561893978'), + (6039, '1557043035'), + (14641, '1557043035'), + (14642, '1557043035'), + (10970, '1557043035'), + (13523, '1562823485'), + (1002, '0684854759'), + (14643, '0684824892'), + (14644, '0664501168'), + (14645, '0811823601'), + (14646, '0449901556'), + (2694, '0060933151'), + (49, '0679766669'), + (14642, '0684847957'), + (14647, '0345386817'), + (14648, '0345386817'), + (1428, '0590453874'), + (14649, '0875346197'), + (14650, '0875346197'), + (14651, '0875346197'), + (2077, '0939680491'), + (14652, '0812550978'), + (2681, '0345395107'), + (665, '0684169401'), + (3264, '0440219248'), + (14653, '0451524705'), + (14654, '0451524705'), + (14655, '091651532X'), + (14656, '0609602489'), + (7084, '0451402537'), + (3432, '0345370570'), + (14657, '0671770438'), + (70, '0395442567'), + (374, '0446313033'), + (2551, '0553291203'), + (6107, '0786707550'), + (2695, '0380813734'), + (14658, '0425148211'), + (2624, '0345346866'), + (2624, '0345352548'), + (551, '0671455265'), + (551, '067168356X'), + (13186, '0425169669'), + (13186, '0425146383'), + (13186, '0425163970'), + (13186, '0425153363'), + (14659, '0345371267'), + (14660, '0804102813'), + (55, '038077030X'), + (2624, '0449007111'), + (2624, '0345354893'), + (2624, '0449007065'), + (3400, '0553286161'), + (628, '0312141890'), + (14661, '0312141890'), + (2551, '0553272373'), + (14662, '0671678949'), + (13223, '038075908X'), + (14663, '038075908X'), + (14664, '0671870890'), + (274, '0140340203'), + (275, '0140340203'), + (6702, '0553481800'), + (14665, '0964102404'), + (14666, '0964102404'), + (4921, '0385292090'), + (14667, '1558320547'), + (14668, '0394553756'), + (14669, '0890875197'), + (14670, '0440506344'), + (14671, '0689823908'), + (14672, '0689823908'), + (441, '0671747827'), + (14673, '0553542311'), + (14674, '0440418283'), + (4604, '0684803860'), + (5691, '0684803860'), + (1634, '0671826786'), + (551, '0671464809'), + (14675, '0671464809'), + (14676, '0671464809'), + (551, '0671455303'), + (551, '0671455273'), + (551, '0671464140'), + (551, '0671456393'), + (551, '067145529X'), + (551, '0671464817'), + (4942, '0451156234'), + (12031, '0140108718'), + (14677, '034537682X'), + (14676, '0345382692'), + (14678, '0440414555'), + (7584, '0783890036'), + (7584, '1572701625'), + (14679, '1572701625'), + (2575, '0440160162'), + (2654, '0002215810'), + (1782, '0440207452'), + (2011, '0425084736'), + (2011, '042510429X'), + (2011, '0425079600'), + (2011, '0425094731'), + (2011, '0425104303'), + (2011, '0380751453'), + (2011, '0425100057'), + (14680, '0679861807'), + (8263, '0440402263'), + (8263, '0440400104'), + (8263, '0440400635'), + (5685, '0440400635'), + (3259, '0590226363'), + (3260, '0590226363'), + (7077, '006440840X'), + (14681, '006440840X'), + (3989, '1561560936'), + (14682, '1561560936'), + (14683, '0802115330'), + (436, '0345443802'), + (14684, '0393317013'), + (760, '0140177361'), + (14685, '1886746370'), + (14686, '1886746370'), + (14687, '0449148718'), + (1422, '0671206710'), + (14688, '0679807748'), + (12774, '0689821514'), + (14689, '0689821514'), + (14690, '0689821514'), + (10253, '0399207589'), + (777, '0525447091'), + (2393, '0886778441'), + (14691, '0883623382'), + (505, '0517541998'), + (14692, '0916103544'), + (14693, '0684837927'), + (1899, '0393301583'), + (14694, '0393301583'), + (1900, '0393301583'), + (14693, '0393301583'), + (14695, '0671447610'), + (14696, '0812882962'), + (14697, '0374319693'), + (14698, '087596480X'), + (14699, '1579545637'), + (14700, '1579545637'), + (14701, '1579545637'), + (607, '0449909549'), + (8745, '0345309049'), + (891, '0451197011'), + (14702, '0805779612'), + (14703, '0802130798'), + (14704, '0802130798'), + (106, '0316769576'), + (213, '0316769029'), + (2656, '0785728473'), + (14705, '0802730191'), + (5713, '0452272580'), + (56, '0192833588'), + (5748, '0192833588'), + (13920, '0192833588'), + (14706, '0192833588'), + (2075, '0449909174'), + (14707, '0684802678'), + (14708, '0671007858'), + (14709, '067100610X'), + (6466, '0671005022'), + (14710, '0671007238'), + (14711, '0822010933'), + (14712, '0822007088'), + (14713, '0452256178'), + (14714, '0399510737'), + (14715, '0802135501'), + (14716, '1556708556'), + (12562, '0140251383'), + (7600, '0688155502'), + (1887, '1860462588'), + (13363, '1860462588'), + (14717, '0440226937'), + (4938, '0312155638'), + (14718, '0312155638'), + (14719, '0446525596'), + (11986, '0446525596'), + (14720, '089281781X'), + (14721, '089281781X'), + (14722, '0140246142'), + (14723, '0394726421'), + (14724, '0312968892'), + (8096, '0671010123'), + (713, '0425143570'), + (14725, '0517524171'), + (14726, '0553351370'), + (14727, '0345381645'), + (14728, '0789200015'), + (14729, '0789200015'), + (14730, '1582431108'), + (14731, '0061011843'), + (14, '0786011386'), + (14, '0786010576'), + (14732, '970690042X'), + (14733, '0812928423'), + (14734, '0609801880'), + (6180, '0679725768'), + (965, '0140366679'), + (14735, '0140366679'), + (868, '031211933X'), + (14736, '0671686216'), + (14737, '0553282611'), + (14738, '0809254999'), + (14739, '0140243917'), + (821, '0385315147'), + (2199, '0385315147'), + (14740, '0373832877'), + (664, '0684832860'), + (14741, '0684832860'), + (2791, '067176960X'), + (14742, '0030195160'), + (965, '0553212257'), + (14743, '0070439915'), + (14744, '0393091198'), + (247, '0449219615'), + (14745, '0139705821'), + (14746, '0688052398'), + (1086, '0140131558'), + (14747, '066991066X'), + (14748, '0393090477'), + (14749, '0393090477'), + (2823, '0380811995'), + (8145, '0449003884'), + (10010, '0380794802'), + (9744, '0449222802'), + (9202, '0515105910'), + (14750, '0875427391'), + (10708, '0446360945'), + (3164, '0553581856'), + (6195, '038082079X'), + (1112, '0671873164'), + (14751, '0515129747'), + (14752, '0380809273'), + (14751, '0380809281'), + (14751, '0380818043'), + (14751, '0380818035'), + (14751, '0380797488'), + (6195, '0060514051'), + (6195, '0380820803'), + (6195, '0380815265'), + (7138, '0380798867'), + (6195, '0380810719'), + (2577, '0515133620'), + (4017, '0515133620'), + (2264, '0515133620'), + (14753, '0515133620'), + (2273, '0821765744'), + (7138, '0380820838'), + (7138, '0380809168'), + (7138, '0380818507'), + (7138, '038082082X'), + (137, '0394571819'), + (14754, '0380802902'), + (1075, '0441153135'), + (2168, '0451166027'), + (2169, '0380767848'), + (4826, '0590402803'), + (14755, '006050353X'), + (1754, '0671744216'), + (3702, '0445209402'), + (4024, '0380789337'), + (4017, '0312998368'), + (160, '0553252836'), + (5344, '0345353676'), + (634, '0449210235'), + (7547, '0802135412'), + (14756, '0393323145'), + (4826, '0670892475'), + (939, '0425118312'), + (433, '0441006256'), + (8884, '0439062810'), + (964, '0812558251'), + (14757, '0812558251'), + (2503, '0812564170'), + (14758, '0449149579'), + (433, '0345379845'), + (14759, '0684811138'), + (1075, '0441005837'), + (14760, '0671753673'), + (14761, '0671753673'), + (1397, '0380702878'), + (4250, '0152008691'), + (921, '0879516976'), + (921, '0879516984'), + (6192, '0843947470'), + (8952, '0505525526'), + (14762, '0380776170'), + (13303, '0440236746'), + (14763, '0536597073'), + (14764, '0030226864'), + (14765, '0155053272'), + (2650, '0875650546'), + (14766, '0875650546'), + (14767, '0321090934'), + (14768, '0072822805'), + (14769, '0072822805'), + (8952, '0843948167'), + (14770, '0671865846'), + (6444, '0886779227'), + (14771, '0886779227'), + (2262, '0060098538'), + (11565, '038081806X'), + (14772, '044900516X'), + (14773, '0671664247'), + (14774, '0671664247'), + (10086, '0375806776'), + (10088, '0375806776'), + (14775, '0345328396'), + (14776, '0451407105'), + (2261, '0505522551'), + (2276, '0380761505'), + (2276, '038077013X'), + (14777, '0451149203'), + (571, '0425140946'), + (1065, '0425093891'), + (1065, '0451149378'), + (4211, '0671793896'), + (14778, '0385469608'), + (14779, '0919891276'), + (14780, '0138876541'), + (14781, '0853980055'), + (13020, '0316507415'), + (14782, '0307136566'), + (9605, '0307136566'), + (14783, '0307136566'), + (14784, '0307136566'), + (14785, '0451163095'), + (14786, '0451163095'), + (14787, '0394504321'), + (14788, '0394504321'), + (14789, '0394504321'), + (14790, '0060972920'), + (974, '0394800869'), + (8754, '0553353896'), + (14791, '068483720X'), + (14792, '068483720X'), + (14793, '1889461024'), + (14794, '0306802538'), + (14795, '0898621283'), + (14796, '0898621283'), + (14797, '0771033737'), + (14798, '0062701908'), + (14797, '0062700162'), + (14799, '0345339428'), + (1727, '0394700058'), + (13020, '0316507350'), + (14800, '0425132110'), + (14801, '0425132110'), + (7019, '0671680277'), + (14802, '1572231408'), + (14803, '1572231408'), + (414, '0375500316'), + (14804, '059084475X'), + (14805, '0553374524'), + (1727, '0394712390'), + (142, '3548254152'), + (14806, '3548254152'), + (14807, '3203751046'), + (1086, '0140154078'), + (14808, '3596147239'), + (992, '3499131706'), + (14809, '3499131706'), + (992, '3499136899'), + (14808, '3499136899'), + (14810, '3466343755'), + (14811, '3466343755'), + (5170, '3442723302'), + (14812, '3442723302'), + (14813, '3442446783'), + (50, '3442446783'), + (5916, '3596121477'), + (351, '325721605X'), + (14814, '0671853414'), + (484, '0446341754'), + (484, '0446341851'), + (3619, '0553249169'), + (6474, '0671464043'), + (368, '067150732X'), + (9987, '0439354951'), + (14815, '0439354951'), + (122, '0553487728'), + (183, '0515115649'), + (7530, '0812564596'), + (14609, '0812564596'), + (6185, '0451192303'), + (7516, '0425185788'), + (8501, '0446405264'), + (6185, '0380792540'), + (14816, '0671222473'), + (433, '0812585658'), + (14817, '0671674269'), + (14818, '0553285084'), + (14819, '0590030205'), + (2561, '0425155501'), + (8502, '0445408642'), + (8501, '0449149005'), + (7516, '0425191273'), + (14820, '0517146789'), + (14821, '0156006510'), + (8501, '0449148297'), + (6426, '067152819X'), + (14822, '0743417038'), + (5946, '0684838923'), + (5947, '0684838923'), + (2360, '1582341338'), + (14823, '0806943424'), + (10652, '0806943424'), + (14824, '1414051999'), + (5695, '0525946535'), + (745, '1565845609'), + (14825, '1565845609'), + (14826, '1565845609'), + (14827, '1567315267'), + (14496, '0446530190'), + (10813, '087351288X'), + (14828, '087351288X'), + (94, '1556610351'), + (3615, '0517575019'), + (5986, '0385417926'), + (10029, '0671437933'), + (575, '067122591X'), + (14829, '0312373082'), + (5916, '0679415793'), + (14830, '0060153016'), + (575, '0395339707'), + (1498, '0446512362'), + (14831, '0800714113'), + (14832, '1557482101'), + (14833, '0890814449'), + (14834, '0840756178'), + (14835, '0835806219'), + (14836, '1561790613'), + (14837, '1561790613'), + (14838, '0310372712'), + (14839, '0890815038'), + (14840, '0892837101'), + (14841, '0890817715'), + (14842, '0800751248'), + (14843, '0912106344'), + (14844, '0912106344'), + (14845, '0917726405'), + (14846, '0917726405'), + (14847, '0890814317'), + (14848, '0890814317'), + (14849, '0890814317'), + (14850, '1555131085'), + (14851, '0891094202'), + (14852, '0892744421'), + (14853, '0882077112'), + (14854, '0912376376'), + (14855, '1576736512'), + (14856, '0883680912'), + (14857, '0840732422'), + (14858, '080246808X'), + (14859, '0802403336'), + (6259, '0449236129'), + (14860, '0840734581'), + (14861, '0840734581'), + (14862, '0840734581'), + (14863, '0896938174'), + (3591, '0310313414'), + (14864, '0802413978'), + (380, '0896935477'), + (14865, '0896935477'), + (14866, '0307120007'), + (14867, '0840753608'), + (14868, '068481465X'), + (14869, '068481465X'), + (14870, '0895775506'), + (14871, '0877795096'), + (14872, '0062700782'), + (14873, '0800700899'), + (14874, '0028702506'), + (14875, '0028702506'), + (14876, '0801010705'), + (14877, '0840775776'), + (14878, '0840775776'), + (14879, '1551563452'), + (14880, '1551563452'), + (14881, '0618446885'), + (369, '0373218575'), + (369, '0373218850'), + (5054, '0064400972'), + (5055, '0064400972'), + (5054, '0064400964'), + (5055, '0064400964'), + (6259, '0800711807'), + (14882, '0891094229'), + (12099, '0877844860'), + (14883, '080241544X'), + (14884, '089109072X'), + (14885, '0871235625'), + (14886, '0871235625'), + (14887, '066908669X'), + (14888, '066908669X'), + (14889, '0805453318'), + (14890, '0896933024'), + (14891, '0896933024'), + (14892, '0070615373'), + (14893, '0840790694'), + (14894, '0310269512'), + (14895, '031037281X'), + (14896, '0842350233'), + (14897, '084740739X'), + (14898, '1555136591'), + (14899, '080245982X'), + (4844, '0802487874'), + (14900, '0801082447'), + (14901, '0310347017'), + (14849, '0891911375'), + (14902, '0891091432'), + (14903, '0802473695'), + (14904, '0842315071'), + (14905, '0802489710'), + (14906, '0310459311'), + (14907, '0891091815'), + (14908, '0830703454'), + (14909, '0310225795'), + (56, '0893756113'), + (6031, '1576731863'), + (14910, '0345452690'), + (14911, '0771020139'), + (14912, '0771020139'), + (14913, '0384242146'), + (7316, '0754091392'), + (568, '0451626109'), + (1252, '1556610343'), + (1252, '0871239906'), + (1252, '0871239396'), + (1252, '087123940X'), + (1252, '0871238705'), + (1586, '0064430170'), + (13526, '0064430170'), + (14914, '0570060192'), + (14915, '0570060192'), + (14916, '0570060753'), + (14917, '0570060850'), + (14918, '0570060850'), + (40, '0020868901'), + (568, '0020442300'), + (14919, '0688121160'), + (6095, '0890438439'), + (14920, '0743246128'), + (2680, '0460875965'), + (14921, '0960394621'), + (14920, '0960394648'), + (1410, '0679893342'), + (1411, '0679893342'), + (14922, '0883965054'), + (14923, '0805047905'), + (3151, '0805047905'), + (5015, '0399501517'), + (1965, '0849914965'), + (7668, '0849914965'), + (6031, '0842335994'), + (6031, '0842335978'), + (6031, '084233596X'), + (6031, '0842335986'), + (14924, '0886873428'), + (14925, '1850155011'), + (7652, '1850155011'), + (14926, '0397300069'), + (14925, '0397300069'), + (14927, '0830729135'), + (5591, '0871238829'), + (5591, '0871236117'), + (5591, '1556610866'), + (5591, '0871239795'), + (5591, '0871236168'), + (5591, '0871234017'), + (5591, '0871233150'), + (5591, '0871233452'), + (5591, '0871233428'), + (5591, '1556610599'), + (5591, '1556610025'), + (5591, '0871239469'), + (5591, '0871234130'), + (2723, '1578563933'), + (6167, '1561794600'), + (14928, '1561794600'), + (14929, '0310202302'), + (14930, '0395911680'), + (91, '1558531211'), + (11379, '0786882417'), + (14931, '0898401003'), + (10841, '0898401003'), + (14932, '0930014898'), + (4889, '0930014898'), + (14933, '0805461957'), + (14934, '0195061551'), + (14935, '0195061551'), + (14936, '0195061551'), + (14937, '0801062500'), + (14938, '0802404529'), + (568, '0064471063'), + (833, '0064471063'), + (568, '0064409422'), + (833, '0064409422'), + (568, '0064471055'), + (833, '0064471055'), + (568, '0064471071'), + (833, '0064471071'), + (1395, '0818402539'), + (14939, '0818402539'), + (14940, '0802490549'), + (14941, '0800758382'), + (14942, '0800758382'), + (14943, '0800758382'), + (14944, '0310209161'), + (822, '0449238946'), + (822, '0449237869'), + (12060, '0449237869'), + (14945, '0891092897'), + (1996, '089107919X'), + (14946, '1561793620'), + (14947, '1400040930'), + (6031, '0842319476'), + (11555, '0824519671'), + (6031, '084230052X'), + (14948, '0310212146'), + (9536, '0310212146'), + (14949, '0684842874'), + (14950, '0684842874'), + (14951, '1576832961'), + (6167, '1561790206'), + (14952, '1561790206'), + (14953, '0800792149'), + (14954, '0800792149'), + (14955, '0800792149'), + (6031, '0842377506'), + (6031, '0842313079'), + (6031, '0842339760'), + (14833, '1578561493'), + (14956, '1578561493'), + (14957, '1556613369'), + (14958, '1556613369'), + (14959, '076240759X'), + (14960, '0452283396'), + (6031, '0842335722'), + (14961, '9999364497'), + (14962, '9999364497'), + (2723, '1576736563'), + (14963, '1576736563'), + (14964, '1576736563'), + (14965, '0802438059'), + (14966, '0553243470'), + (14967, '0891096078'), + (14968, '0891096078'), + (382, '0891096078'), + (1252, '0670894877'), + (1253, '0670894877'), + (14944, '084231802X'), + (14969, '084231802X'), + (9536, '0310521807'), + (2974, '0881843059'), + (14931, '0849905273'), + (14970, '0879056096'), + (14971, '0879056096'), + (14972, '0310224713'), + (14973, '0842321349'), + (14974, '0880701749'), + (14975, '1567314619'), + (1252, '0785280669'), + (1253, '0785280669'), + (1253, '0785280693'), + (1252, '0785280693'), + (1252, '0785280766'), + (1253, '0785280766'), + (1252, '0785280677'), + (1253, '0785280677'), + (1252, '0842375066'), + (1253, '0842375066'), + (1252, '0785280685'), + (1253, '0785280685'), + (1252, '0785281967'), + (1253, '0785281967'), + (1252, '0670030120'), + (1253, '0670030120'), + (1252, '0670030848'), + (1253, '0670030848'), + (14976, '0684718669'), + (586, '0688151981'), + (6772, '1573226254'), + (14977, '0517585073'), + (14332, '019505928X'), + (14978, '019505928X'), + (14979, '019505928X'), + (14980, '0395071763'), + (14981, '0395071763'), + (14982, '0944641393'), + (14983, '1572430753'), + (14984, '0964920107'), + (14985, '0964920107'), + (14986, '0787902691'), + (14987, '0787902691'), + (8330, '0787902691'), + (14988, '1561794058'), + (14989, '0943703034'), + (14990, '0943703034'), + (14991, '0918684544'), + (14992, '0918684544'), + (7728, '0064400808'), + (7728, '0064400816'), + (7728, '0064400085'), + (258, '0064400085'), + (7728, '0064400077'), + (258, '0064400077'), + (7728, '0064400069'), + (258, '0064400069'), + (7728, '0064400050'), + (258, '0064400050'), + (7728, '0064400042'), + (258, '0064400042'), + (14993, '1576737799'), + (14941, '0842307303'), + (14994, '0814402178'), + (14995, '0814402178'), + (14996, '0684868113'), + (14997, '0308800583'), + (14998, '0802787673'), + (14999, '0802787673'), + (381, '0849913241'), + (15000, '1564772241'), + (15001, '0696000121'), + (3141, '0028630092'), + (11972, '0452279232'), + (11973, '0452279232'), + (10807, '1561796344'), + (15002, '0060669667'), + (10802, '0060669667'), + (15003, '1569550913'), + (15004, '1569550913'), + (13031, '0025196359'), + (15005, '0842301801'), + (15006, '1580081916'), + (15007, '1561790419'), + (15008, '1561790419'), + (15009, '0802445241'), + (15010, '1558672540'), + (455, '0440566142'), + (15011, '1561381527'), + (14850, '0891095365'), + (281, '0613377095'), + (15012, '0385054483'), + (3141, '0028634691'), + (15013, '0028634691'), + (3141, '0028630238'), + (15014, '0070479321'), + (7115, '037602237X'), + (15015, '0060169613'), + (15016, '0962478407'), + (15015, '0962478415'), + (15017, '0802413587'), + (15018, '0802413587'), + (15019, '0849916747'), + (6031, '0842335706'), + (15020, '0871236109'), + (15019, '087123615X'), + (15021, '0842378480'), + (6031, '0842342710'), + (15022, '0525946756'), + (14920, '0960394672'), + (15023, '0064610446'), + (15024, '0805208690'), + (1815, '0671021354'), + (1816, '0671021354'), + (5591, '1556611536'), + (15025, '1556611536'), + (5591, '1556612257'), + (5591, '155661683X'), + (15001, '0061043850'), + (15026, '089480751X'), + (10115, '0146000501'), + (1099, '0670894885'), + (15027, '0441822134'), + (403, '0195101405'), + (15028, '0195101405'), + (25, '0195101405'), + (15029, '0195101405'), + (10445, '0679755179'), + (10445, '0394569393'), + (282, '0851191894'), + (282, '080410364X'), + (282, '0452262828'), + (6369, '0553262106'), + (15030, '0631189246'), + (989, '0671668781'), + (989, '0151731527'), + (7297, '0671201565'), + (15031, '0671201565'), + (3768, '039454272X'), + (5133, '0553208187'), + (5133, '0156907720'), + (5133, '0151001529'), + (5134, '0151001529'), + (3885, '1840680113'), + (3608, '0749399554'), + (15032, '0385240899'), + (2282, '0786881488'), + (8930, '015626028X'), + (6822, '015626028X'), + (15033, '0679761276'), + (2688, '0571105653'), + (8640, '0571105653'), + (15034, '0816621144'), + (7063, '0802135269'), + (15035, '0613073304'), + (15033, '0803263430'), + (15036, '0803263430'), + (15035, '0803263430'), + (15037, '9029532068'), + (15038, '067182306X'), + (15031, '0316082511'), + (15039, '0415049296'), + (15040, '0892813695'), + (15041, '0936703008'), + (15042, '0936703008'), + (3678, '0590409662'), + (15043, '0590409662'), + (1755, '0440800544'), + (8876, '0590624008'), + (15044, '0688136230'), + (2029, '0836204158'), + (1532, '0345359313'), + (15045, '1560545151'), + (15046, '0449240193'), + (3619, '0449241491'), + (13129, '0380641623'), + (2654, '0449231984'), + (2654, '0449214214'), + (15047, '0451402472'), + (5786, '0451177010'), + (15048, '0373160623'), + (15049, '0451114523'), + (3692, '0345343387'), + (5098, '0380716453'), + (15050, '0373074794'), + (7933, '0553225774'), + (6007, '0449244172'), + (1101, '0671742906'), + (2224, '0345296591'), + (9937, '0451130987'), + (914, '0380822970'), + (15051, '0446906492'), + (3172, '044920703X'), + (4619, '0553269321'), + (4232, '1557732108'), + (122, '0671708368'), + (606, '0812522729'), + (15052, '0380769514'), + (1528, '0553100777'), + (6377, '006080713X'), + (15053, '0226706702'), + (977, '0449239977'), + (2681, '0345355245'), + (15054, '0881845434'), + (3757, '0345314867'), + (15055, '0425101797'), + (15056, '0671430653'), + (1096, '0553268074'), + (15057, '0380761963'), + (15058, '0380761963'), + (6159, '0671431412'), + (6158, '0671431412'), + (2720, '0590965379'), + (15059, '0590965379'), + (15060, '038045534X'), + (15061, '0891291512'), + (1250, '0891291512'), + (15062, '0891291512'), + (3749, '0440156637'), + (15063, '0446814377'), + (10608, '0812557042'), + (15064, '0451453492'), + (598, '0765342308'), + (15065, '0671827847'), + (10758, '0671499335'), + (2504, '0345248686'), + (1667, '0553261797'), + (3078, '0441240879'), + (15066, '0441240879'), + (1740, '0553225227'), + (15067, '0345346505'), + (15068, '0345349474'), + (894, '0440161061'), + (4276, '0671818856'), + (4421, '0451172272'), + (4426, '0671648144'), + (5633, '0451165896'), + (7270, '0553116606'), + (15069, '0804112592'), + (1704, '0553122061'), + (1528, '0553235478'), + (2213, '0671834096'), + (15070, '0671834096'), + (15071, '0671834096'), + (15072, '0874313759'), + (15073, '0449232859'), + (15074, '0385007728'), + (15075, '0505516101'), + (15076, '0523009933'), + (3691, '0523009933'), + (15077, '0886770041'), + (15078, '0020436904'), + (15079, '0425129004'), + (15080, '0425129004'), + (15081, '0345286480'), + (15082, '0446824631'), + (1983, '0553256025'), + (2011, '0425050017'), + (15083, '0881840653'), + (817, '0440191831'), + (1528, '055325846X'), + (15084, '0449242390'), + (1490, '0452252733'), + (644, '0345319540'), + (10754, '0393311198'), + (891, '0515040460'), + (1532, '0061090417'), + (894, '0440178924'), + (2188, '0553251139'), + (15085, '0373160674'), + (3292, '0671451979'), + (6629, '0380010038'), + (15086, '0553245015'), + (15087, '0451147715'), + (15088, '067100252X'), + (15089, '0770104835'), + (15090, '0380712113'), + (3172, '0449125092'), + (15091, '0373071647'), + (2976, '0449209709'), + (15092, '0872169324'), + (15093, '0446300292'), + (15094, '0505515253'), + (15095, '0340337923'), + (377, '0553255509'), + (4137, '0449212785'), + (8679, '0515086703'), + (15096, '0882077449'), + (15097, '0843176989'), + (15098, '0843176989'), + (1362, '0449205037'), + (2586, '0553562940'), + (15099, '0553230360'), + (4571, '0345423631'), + (9311, '0812549872'), + (4730, '0743488318'), + (187, '0441525628'), + (15100, '0451159098'), + (13127, '0671439960'), + (795, '0345422589'), + (15101, '0345422589'), + (828, '0689869886'), + (15102, '0793823218'), + (2182, '0399236015'), + (15103, '0399236015'), + (15104, '0553133136'), + (12988, '0345300912'), + (15105, '0345300912'), + (4619, '0440106079'), + (13129, '0385288581'), + (891, '0515039276'), + (2528, '0515087254'), + (14819, '0515095125'), + (105, '0553278819'), + (15045, '0449232212'), + (6031, '044164449X'), + (15106, '0671469622'), + (15107, '0828009775'), + (15108, '0886772214'), + (14616, '038076413X'), + (15109, '038076413X'), + (15110, '038076413X'), + (10267, '0671729918'), + (15111, '0060804955'), + (15112, '1558172831'), + (15113, '0445407018'), + (15114, '0440119502'), + (15115, '0671502689'), + (3074, '055325698X'), + (5227, '0345293711'), + (7504, '0815604599'), + (2188, '0552121401'), + (92, '1588810070'), + (713, '0671746693'), + (891, '051509157X'), + (1144, '0515087335'), + (15116, '044104915X'), + (8323, '1561291935'), + (1858, '0679748261'), + (15117, '0451148207'), + (644, '0440215285'), + (15118, '0451528913'), + (15119, '0451528913'), + (10728, '074344485X'), + (10729, '074344485X'), + (15120, '0451144848'), + (506, '0449245276'), + (15121, '1852426411'), + (5319, '0312966040'), + (9679, '0451138945'), + (1293, '1558535527'), + (15122, '055329573X'), + (4619, '0440613965'), + (4137, '0449204200'), + (15123, '0523424515'), + (1704, '0553262564'), + (552, '0449148246'), + (20, '1558021256'), + (15124, '1558021256'), + (15125, '1558021256'), + (15126, '1558021256'), + (15127, '0451081641'), + (15128, '0451081641'), + (15129, '006080694X'), + (9023, '006080694X'), + (15130, '0671451820'), + (15131, '0373160925'), + (15132, '0821722999'), + (15133, '0061080535'), + (12232, '0451182677'), + (8104, '0345275748'), + (15134, '0553133179'), + (15135, '0821731130'), + (2576, '0345386302'), + (15136, '094323509X'), + (15137, '0312974167'), + (3192, '0451141482'), + (15138, '0553293850'), + (743, '0449146138'), + (4276, '0671824813'), + (15139, '187765213X'), + (81, '0425059995'), + (15140, '0060809469'), + (3945, '055320338X'), + (2893, '0440224489'), + (15141, '1557730121'), + (1983, '0345281527'), + (12981, '0590333062'), + (15142, '0553113313'), + (9127, '0553201344'), + (15143, '0553201344'), + (9729, '0380558890'), + (15144, '155817060X'), + (7335, '0380701766'), + (15145, '0439474299'), + (187, '073880701X'), + (10694, '0441358489'), + (15146, '055322588X'), + (15147, '1558176535'), + (15148, '0345314891'), + (15149, '0373071248'), + (15150, '0446896268'), + (15151, '0446300675'), + (5004, '0553292587'), + (1339, '0671507915'), + (15152, '1577487869'), + (1878, '0140298452'), + (7277, '0671741039'), + (15153, '0425064638'), + (15154, '0821721054'), + (14695, '0451120531'), + (1339, '0446322490'), + (15155, '0553246178'), + (10129, '0373166907'), + (15156, '0312954425'), + (3763, '0517118424'), + (4376, '034538332X'), + (2535, '067975377X'), + (15157, '067143487X'), + (15158, '0553087258'), + (15159, '0553087258'), + (15160, '0451187415'), + (15161, '0373630336'), + (15162, '0553262041'), + (559, '0451113357'), + (15163, '0060805463'), + (3172, '0449132757'), + (6107, '0380705753'), + (15164, '067156787X'), + (15165, '0441240941'), + (15166, '0440104327'), + (8890, '0449203433'), + (2504, '0345334973'), + (8291, '0345334973'), + (15167, '0839825943'), + (15168, '037327033X'), + (7392, '0373074646'), + (4155, '0285620878'), + (15169, '0440217113'), + (15170, '0523009151'), + (484, '0446360074'), + (15171, '0373612443'), + (7560, '0440123070'), + (1109, '0446914770'), + (10355, '0373706413'), + (15172, '0425071197'), + (13185, '0440008379'), + (9937, '0451162188'), + (15173, '059030061X'), + (743, '0449134369'), + (15174, '0312914873'), + (630, '0345341228'), + (1665, '0684871254'), + (15175, '0345319087'), + (15176, '0915473135'), + (6167, '0849930715'), + (15177, '0696017288'), + (15178, '0883441047'), + (15179, '0806625783'), + (15180, '0806625783'), + (14973, '0830709967'), + (15181, '0883638886'), + (15182, '0671620991'), + (6246, '0671499505'), + (15183, '0877843309'), + (15184, '0800750268'), + (15185, '0688111505'), + (15186, '0880704756'), + (15187, '0880704756'), + (15188, '0934134464'), + (15189, '0891095578'), + (15190, '0891095578'), + (12400, '0671709003'), + (15191, '0523008473'), + (15192, '0671693786'), + (15193, '0881840238'), + (9753, '0843931248'), + (1528, '0553259571'), + (15194, '0830813233'), + (15195, '0830813233'), + (15196, '0394718526'), + (3751, '0451155009'), + (14022, '0451164555'), + (15197, '0312960875'), + (15198, '0393073610'), + (15199, '0393073610'), + (14280, '1562921495'), + (15200, '0312926146'), + (15201, '0312926146'), + (15202, '0385270399'), + (15203, '0882077120'), + (10700, '0553253514'), + (12996, '0553147021'), + (15204, '0670808652'), + (1704, '0553246402'), + (1179, '0449205975'), + (15205, '0449228878'), + (1842, '0449147371'), + (15206, '0061320684'), + (1859, '0061320684'), + (2977, '0553133969'), + (1493, '0312905823'), + (377, '0553253638'), + (2695, '0380709937'), + (1704, '0553258990'), + (15207, '067153291X'), + (2861, '0553271598'), + (10605, '094202401X'), + (15208, '0345361628'), + (15209, '0812559894'), + (15210, '0812559894'), + (15211, '0380773988'), + (2188, '0553029754'), + (15212, '0312912951'), + (15213, '0446300853'), + (3704, '0316952664'), + (1339, '0446302686'), + (15214, '0373071957'), + (15215, '0805003819'), + (15216, '0517536242'), + (15217, '0517536242'), + (7183, '0375409270'), + (2528, '0515084557'), + (2188, '0553264907'), + (15218, '0373706677'), + (15219, '0440111935'), + (15220, '0553373846'), + (15221, '1884739091'), + (8559, '0812558138'), + (575, '0671509756'), + (15222, '0385096313'), + (15223, '0373030940'), + (6177, '0340268778'), + (15224, '0877931267'), + (5974, '0553246763'), + (14464, '0671648705'), + (8543, '038059949X'), + (6669, '0140069704'), + (15225, '0345255216'), + (5128, '038070935X'), + (2143, '0140130209'), + (501, '0440135842'), + (3710, '0446605158'), + (15226, '0451115473'), + (15227, '0440125820'), + (4232, '0425058603'), + (2372, '0445209348'), + (6116, '0553574043'), + (15228, '0553574043'), + (15229, '0449235254'), + (15230, '0882704214'), + (880, '0671871218'), + (6107, '0380705729'), + (15231, '0060807393'), + (15232, '0373264348'), + (15233, '0446314668'), + (15234, '039474098X'), + (15235, '0881842214'), + (15236, '0821719882'), + (1528, '0553248642'), + (10742, '0345368711'), + (15237, '0704326485'), + (6110, '0394723929'), + (15238, '0446327786'), + (1281, '0884041557'), + (743, '0671600729'), + (15239, '0380802562'), + (441, '0380802562'), + (15240, '0380802562'), + (15241, '0939286017'), + (5892, '0393301087'), + (15242, '0515056561'), + (1112, '1551660989'), + (15243, '0425070085'), + (2006, '0380851180'), + (5448, '0246134933'), + (15105, '0671430742'), + (15244, '0373085567'), + (15245, '0373031084'), + (13283, '0440179297'), + (3469, '0373160739'), + (4747, '0821747169'), + (1998, '0743431685'), + (1760, '0873513223'), + (15246, '0873513223'), + (568, '0613071832'), + (15247, '0671504681'), + (15248, '0030577861'), + (3071, '0671431056'), + (10676, '0671431056'), + (15249, '0380791137'), + (15250, '0380791137'), + (8873, '0439130263'), + (943, '0141306971'), + (142, '0670260770'), + (713, '0425161021'), + (142, '0833510266'), + (573, '0793800722'), + (15251, '0793800722'), + (437, '0553580752'), + (15252, '0743244281'), + (9026, '0060008873'), + (369, '0553264613'), + (597, '0590877437'), + (3693, '0446678651'), + (1302, '0441205666'), + (15253, '0898156270'), + (15254, '0793818524'), + (15255, '042508437X'), + (15256, '042508437X'), + (15257, '0671541811'), + (15258, '0505515563'), + (1265, '0553293397'), + (867, '0783890656'), + (1065, '0345444051'), + (176, '0517542099'), + (11507, '0609605453'), + (15259, '086622064X'), + (15260, '0962448206'), + (17, '0757300006'), + (18, '0757300006'), + (15261, '0757300006'), + (15262, '0425095908'), + (15263, '0806961007'), + (15264, '0806961007'), + (597, '0590877542'), + (597, '0590877623'), + (832, '059087764X'), + (2237, '0590877666'), + (597, '0590878549'), + (15254, '0425104842'), + (15255, '0425104842'), + (10763, '0671541501'), + (1117, '0061054240'), + (7493, '074344261X'), + (9147, '0671652273'), + (2292, '0671735551'), + (2660, '0060911980'), + (15265, '0879737964'), + (2991, '0671042718'), + (835, '0671794388'), + (2368, '0671009257'), + (7830, '0671019155'), + (2991, '067104270X'), + (15266, '006254506X'), + (2368, '0671032577'), + (6854, '067174142X'), + (14461, '0671032550'), + (6854, '0671741454'), + (7209, '0671775715'), + (15267, '0451207637'), + (7826, '1551668130'), + (2258, '0380776839'), + (15268, '0515129496'), + (15269, '0804101396'), + (1112, '0743411544'), + (458, '0553573225'), + (2258, '0380808080'), + (6223, '0671039199'), + (8414, '0671039199'), + (15270, '0486261794'), + (15271, '0912692561'), + (187, '0812555120'), + (1853, '0064405737'), + (11069, '0064405737'), + (1410, '0394868811'), + (1411, '0394868811'), + (2811, '0812534018'), + (962, '1572700408'), + (15272, '1572700408'), + (15273, '0836218914'), + (15274, '0836218914'), + (1158, '0836220668'), + (187, '0812574710'), + (63, '0451192028'), + (433, '0345387791'), + (5875, '0345387791'), + (2029, '0836217403'), + (606, '0373802021'), + (105, '0440119766'), + (15275, '0394714202'), + (1245, '0385312202'), + (2654, '0736625828'), + (2656, '0394500792'), + (713, '0736605029'), + (15276, '0736605029'), + (15277, '0451087488'), + (1362, '1585671827'), + (5227, '0345324455'), + (3314, '0449911764'), + (1013, '0805013342'), + (6544, '0345300610'), + (15278, '0803705832'), + (12767, '0803705832'), + (15279, '0688159079'), + (15280, '0060929510'), + (1674, '0060277475'), + (3610, '0743434897'), + (15281, '0743423917'), + (2504, '0812566785'), + (15282, '0515134406'), + (1281, '0884042855'), + (15283, '0060096209'), + (3893, '0345350502'), + (867, '0671667033'), + (187, '0812534867'), + (3848, '0553263218'), + (15284, '0891904891'), + (6426, '0671737120'), + (15285, '0821735985'), + (6483, '0345334841'), + (14831, '0842339558'), + (15286, '0025182005'), + (15287, '0595144470'), + (368, '1572701285'), + (8579, '1572701285'), + (15288, '0451110293'), + (2993, '0446365696'), + (15289, '0446365696'), + (1339, '0671724517'), + (15290, '0671874950'), + (237, '0553171712'), + (15291, '0736603964'), + (15292, '0440126185'), + (736, '0446364703'), + (397, '1903436087'), + (15293, '1903436087'), + (15294, '1903436087'), + (15295, '067154313X'), + (15296, '0140302069'), + (15297, '1401088945'), + (15298, '1401088945'), + (1302, '0812511182'), + (2633, '0446392340'), + (2224, '0345277996'), + (2186, '0061054275'), + (15299, '0441110444'), + (15300, '1582340544'), + (15301, '0061054747'), + (15302, '0679768645'), + (15303, '0698107047'), + (15304, '0333185153'), + (626, '0671776096'), + (5480, '0440384974'), + (15305, '0380391236'), + (15306, '0380699710'), + (4979, '0671690140'), + (15307, '0881844314'), + (15308, '0671221396'), + (6568, '0671732498'), + (15309, '0747548218'), + (3020, '0553121456'), + (15310, '0892440384'), + (15311, '1842326481'), + (2249, '0380811901'), + (3315, '0345339215'), + (4276, '0671874861'), + (15312, '9997405307'), + (15313, '0064470148'), + (873, '0312857322'), + (14145, '0312857322'), + (15314, '0310275121'), + (3615, '0553284657'), + (15315, '0786704845'), + (15316, '0671832611'), + (1571, '0553290045'), + (15317, '0505512386'), + (15318, '0505516292'), + (10962, '0140071229'), + (15319, '0140071229'), + (15320, '0441783058'), + (2654, '0449213617'), + (2656, '039455695X'), + (15321, '0345282892'), + (14371, '0060179716'), + (644, '0440213991'), + (10554, '0373610734'), + (15322, '0451136497'), + (2504, '0671532278'), + (3071, '0671532278'), + (337, '0440193281'), + (891, '0515091332'), + (15083, '0340020326'), + (713, '0425175413'), + (15323, '0821719246'), + (534, '0671737783'), + (4488, '0396065023'), + (7515, '0446603058'), + (14151, '0380707063'), + (2249, '1551667169'), + (4376, '0345383850'), + (1755, '044098761X'), + (5078, '0451208641'), + (4730, '0345325885'), + (15324, '0879972734'), + (1265, '0345318315'), + (15325, '0525169954'), + (309, '0553257048'), + (15326, '0843938366'), + (15289, '0671526812'), + (945, '0345439724'), + (906, '0396088678'), + (13303, '0440226279'), + (15327, '044017399X'), + (6016, '0446305618'), + (4232, '0441585558'), + (559, '0449204960'), + (15328, '0451400216'), + (15150, '0446342122'), + (5047, '044022795X'), + (8890, '0449209741'), + (15329, '1558174516'), + (15330, '044022327X'), + (1704, '0553130986'), + (6056, '0451162897'), + (9938, '0553148915'), + (15331, '1558021833'), + (11516, '0345343581'), + (15332, '0441122892'), + (15333, '0821716700'), + (2006, '0380899825'), + (15334, '0380751712'), + (1283, '0671640127'), + (1319, '0445203684'), + (187, '0812555112'), + (15335, '0380772973'), + (15336, '034529601X'), + (15337, '0553272659'), + (15338, '0843946539'), + (15339, '0151569401'), + (8890, '0449203948'), + (15340, '0590312642'), + (15307, '0380008424'), + (1164, '0553282204'), + (2157, '0394756886'), + (8277, '037382503X'), + (15341, '0345256557'), + (2257, '0446323802'), + (14638, '0874068541'), + (15342, '0874068541'), + (15343, '0874068541'), + (15344, '0761115366'), + (2011, '1564310310'), + (7515, '0380703696'), + (5605, '0689806590'), + (5606, '0689806590'), + (5607, '0689806590'), + (15345, '0140097309'), + (337, '0440146291'), + (8890, '0449200582'), + (4288, '0156551381'), + (15346, '0373705166'), + (15347, '0884113795'), + (12578, '0380012278'), + (15348, '0380607077'), + (234, '0380018446'), + (559, '0449202712'), + (15349, '1557508275'), + (15350, '1557508275'), + (2528, '0515090220'), + (4232, '0425122611'), + (2043, '0425120430'), + (4232, '0425052478'), + (3172, '044912505X'), + (580, '0425188221'), + (15351, '0091059801'), + (9751, '0671007947'), + (15290, '0449207269'), + (8890, '0449207307'), + (826, '0671555022'), + (2667, '0451400372'), + (15352, '0523417489'), + (15353, '0380003120'), + (115, '0380733358'), + (630, '0345273559'), + (12599, '0345347897'), + (15354, '1557481733'), + (15355, '0671633457'), + (6177, '0380703122'), + (10550, '0373638388'), + (3996, '0886774039'), + (1898, '0312854285'), + (873, '0312930372'), + (2681, '0385261853'), + (15356, '0385261853'), + (4730, '0385261853'), + (7021, '0312890524'), + (15357, '031287054X'), + (4543, '0812545591'), + (15358, '0152015981'), + (15359, '0152015981'), + (3151, '0399218777'), + (325, '0345377591'), + (15360, '0812095367'), + (15361, '0812095367'), + (15362, '0812095367'), + (8240, '0446602930'), + (15363, '0816724350'), + (15364, '0816724334'), + (15365, '0816724334'), + (5418, '0688124097'), + (4524, '0786916575'), + (2382, '031294165X'), + (5443, '0061052663'), + (10708, '0446324388'), + (3793, '0679433074'), + (4414, '0807204684'), + (15366, '0807204684'), + (15367, '0671624121'), + (15368, '0380731614'), + (15369, '0345301706'), + (10301, '0671648772'), + (4197, '0345369114'), + (1088, '0451110951'), + (15370, '0816750343'), + (15371, '0874068118'), + (15372, '0874068118'), + (15373, '093527829X'), + (142, '0451185978'), + (9685, '0312971842'), + (13182, '0821764039'), + (15374, '1564581772'), + (15375, '067980353X'), + (15376, '0915793806'), + (15377, '1558533729'), + (15378, '1558533729'), + (15379, '1558533729'), + (15380, '0801487722'), + (187, '0812574982'), + (2603, '0786819146'), + (15381, '0312216130'), + (819, '0446610968'), + (818, '0446610968'), + (15382, '0688139582'), + (2603, '0786808551'), + (187, '1885173997'), + (11054, '0441005659'), + (11054, '0441006353'), + (15383, '0812584236'), + (15384, '0451182987'), + (15385, '0805462996'), + (1196, '0671524208'), + (15386, '0891073000'), + (943, '0440437423'), + (15387, '0821746200'), + (15388, '0679892648'), + (2233, '0671001841'), + (2233, '0671001876'), + (6884, '0439108403'), + (15389, '0679856927'), + (7571, '0553280708'), + (818, '0812507452'), + (819, '0812507452'), + (15390, '067187599X'), + (1328, '0553572393'), + (8414, '0671877135'), + (10612, '0671877135'), + (606, '0671877135'), + (1714, '0671877135'), + (4909, '0553562622'), + (9442, '0836228804'), + (15391, '0812029763'), + (15392, '0812029763'), + (10826, '084993897X'), + (3051, '0380709902'), + (15393, '0964561131'), + (15394, '1878605003'), + (8530, '0590338684'), + (12711, '0590411837'), + (15395, '1555135269'), + (15396, '1555135269'), + (66, '0880709723'), + (596, '0440472105'), + (600, '0590401939'), + (600, '0590456903'), + (15397, '0590456903'), + (15398, '051508994X'), + (15399, '1555137377'), + (15400, '0800753569'), + (15401, '0800753569'), + (15402, '0840792549'), + (10166, '0874064163'), + (12975, '0380761122'), + (15403, '039475591X'), + (15404, '0671747134'), + (4814, '0671656767'), + (1229, '0671645870'), + (13212, '0373834152'), + (583, '055327953X'), + (15405, '0373244770'), + (15406, '0373271808'), + (94, '0671533789'), + (5586, '078681358X'), + (15407, '0486291707'), + (15408, '0486291707'), + (3787, '0064405788'), + (15409, '1856979660'), + (827, '0140363912'), + (15410, '0064405753'), + (7725, '0064405753'), + (15411, '0684191202'), + (2126, '0312113420'), + (15412, '0312113420'), + (1853, '0060274069'), + (7075, '0440220246'), + (5404, '0679767819'), + (15413, '0590623761'), + (15414, '0590623761'), + (15415, '0915560186'), + (15416, '0395957524'), + (12076, '0395957524'), + (7728, '0590252194'), + (7426, '0307119408'), + (713, '0425138232'), + (7426, '0307117138'), + (7426, '0307126854'), + (7426, '030711936X'), + (15417, '0394825691'), + (15416, '0394926250'), + (15418, '0440411483'), + (1025, '0689803931'), + (9385, '006106632X'), + (10086, '044040942X'), + (1025, '0689807791'), + (15419, '0689807791'), + (5591, '0934998191'), + (15420, '0934998191'), + (2182, '0441005993'), + (4906, '0553572644'), + (798, '0689318332'), + (15421, '0440425050'), + (631, '0440425050'), + (12143, '156282144X'), + (974, '0679805273'), + (2738, '0440411459'), + (568, '0020442106'), + (15422, '0020442106'), + (833, '0020442106'), + (15409, '0064404781'), + (7725, '0064404781'), + (3885, '0590411365'), + (15423, '0140364749'), + (15424, '0140364749'), + (1025, '0689714920'), + (1026, '0689714920'), + (6703, '0821770829'), + (2182, '044100315X'), + (15409, '0064405745'), + (7725, '0064405745'), + (441, '0397318731'), + (4681, '0397318731'), + (15425, '0397320043'), + (596, '0440472431'), + (274, '0394935942'), + (15426, '0961866349'), + (15427, '0781409756'), + (15428, '0856487643'), + (15429, '0856487643'), + (15430, '0307132048'), + (94, '1555781020'), + (505, '0517560232'), + (15431, '0525259600'), + (5522, '0525259600'), + (2987, '0061059846'), + (5540, '0061059846'), + (433, '0345336038'), + (5926, '0441007287'), + (5055, '0064461629'), + (15432, '044022036X'), + (15408, '0874063353'), + (15433, '0874063353'), + (15434, '0590319043'), + (5926, '0441008550'), + (15435, '0570049628'), + (15436, '0553154680'), + (7755, '0440900107'), + (15437, '0140360352'), + (1375, '0440220289'), + (66, '084233226X'), + (65, '084233226X'), + (5926, '0441003494'), + (11815, '0886775795'), + (15438, '157145165X'), + (11815, '0886775507'), + (895, '0451194764'), + (896, '0451194764'), + (17, '155874715X'), + (18, '155874715X'), + (7792, '155874715X'), + (7793, '155874715X'), + (5441, '0440412579'), + (1024, '0027701301'), + (17, '0439078415'), + (15436, '0140384235'), + (15435, '0553155601'), + (15439, '0671721836'), + (15438, '0671878530'), + (606, '0671876368'), + (243, '0590442953'), + (61, '0385489005'), + (15440, '0811643085'), + (15441, '0811643085'), + (15442, '0380800500'), + (15443, '0689808518'), + (441, '0671026518'), + (15444, '0671026518'), + (15445, '0762409053'), + (15446, '0312922884'), + (15447, '0684856093'), + (7594, '0312269242'), + (15448, '044145125X'), + (5606, '0380645432'), + (11119, '0380645432'), + (4909, '087406841X'), + (15449, '087406841X'), + (15450, '044022022X'), + (1298, '0440407079'), + (11312, '0440219914'), + (15451, '068801075X'), + (10551, '0486252086'), + (13015, '0486252086'), + (274, '0140328742'), + (596, '0380709570'), + (617, '0380709570'), + (2237, '0590629816'), + (15452, '0590629816'), + (597, '0590494368'), + (93, '0394825993'), + (15453, '0590435418'), + (14391, '0590424602'), + (276, '0141301163'), + (276, '0590383892'), + (1891, '0425042502'), + (15454, '3492101658'), + (1989, '0439286069'), + (15455, '0140190430'), + (15456, '0140190430'), + (15457, '0140190430'), + (15458, '3811820966'), + (15459, '3811820966'), + (15460, '3404243013'), + (15461, '3150089573'), + (15462, '3150089573'), + (9622, '0380755351'), + (1396, '0440188601'), + (1265, '0553561227'), + (6222, '1857231791'), + (15463, '0385327943'), + (15464, '1591820634'), + (15463, '1591820634'), + (15463, '193151464X'), + (15465, '1569716692'), + (15466, '1591820014'), + (15467, '1591822424'), + (7172, '1892213753'), + (7172, '1892213761'), + (7172, '189221377X'), + (7172, '1892213788'), + (7172, '1892213796'), + (11055, '156931957X'), + (15468, '1591160774'), + (15469, '1591160774'), + (15470, '1591162149'), + (15469, '1591162149'), + (15467, '1591160766'), + (15468, '1591160766'), + (15471, '1591820642'), + (15472, '1591820642'), + (7168, '1569319502'), + (15473, '1591823544'), + (15474, '1591823544'), + (15464, '1569714215'), + (1815, '0671024337'), + (1816, '0671024337'), + (15475, '1563897490'), + (15476, '1931514542'), + (15475, '1931514550'), + (15475, '1931514569'), + (15475, '1931514577'), + (15465, '1591820022'), + (15477, '1591820022'), + (15478, '1591820022'), + (15479, '1591823803'), + (15480, '1591823277'), + (15481, '1591826969'), + (7168, '1892213591'), + (15482, '097250379X'), + (15483, '097250379X'), + (15466, '1591821088'), + (7168, '1569319499'), + (15484, '4889960473'), + (15485, '1591821541'), + (15486, '1591821541'), + (15487, '1591823781'), + (2924, '0525946845'), + (15488, '0786015012'), + (7172, '1591820340'), + (15489, '1591823668'), + (15490, '1591822416'), + (15489, '1591822416'), + (15489, '1591822408'), + (142, '0375507779'), + (580, '0375507779'), + (15478, '159182379X'), + (15486, '1591823773'), + (15491, '1588991962'), + (15492, '1588992942'), + (15490, '1588992942'), + (2720, '0590411829'), + (2719, '0590411829'), + (7775, '0590411829'), + (15493, '0880387548'), + (1041, '0880382678'), + (15416, '0394825713'), + (15494, '1568304706'), + (15495, '1568304706'), + (15496, '0380821036'), + (142, '0670835382'), + (15497, '0881622400'), + (15498, '0881622400'), + (3754, '1568849079'), + (15499, '1569314284'), + (15500, '1569318697'), + (15499, '1569318697'), + (6701, '0451523199'), + (15501, '0883650215'), + (15502, '0312879016'), + (15503, '1591822157'), + (15504, '1591822149'), + (15505, '1591822149'), + (15506, '1591822149'), + (15507, '1561633291'), + (15508, '1569319014'), + (15507, '1569319014'), + (15509, '1591821878'), + (7172, '1892213362'), + (15510, '1569311803'), + (15509, '1569311803'), + (15511, '1580084648'), + (252, '0517703238'), + (15512, '0060174110'), + (142, '0881037214'), + (5160, '0061054151'), + (142, '0451157753'), + (142, '0451150708'), + (76, '0671758721'), + (15513, '1931514917'), + (15514, '1931514917'), + (15515, '0875965598'), + (15516, '0875965598'), + (527, '0823039919'), + (859, '0140350489'), + (574, '0679438335'), + (574, '0375416218'), + (15517, '0375416218'), + (7172, '1892213664'), + (15479, '1591823269'), + (397, '0671727672'), + (403, '0440471869'), + (142, '0451092163'), + (568, '0020442009'), + (1815, '0671017136'), + (1816, '0671017136'), + (8368, '0671017128'), + (5153, '0671017128'), + (15518, '0967063108'), + (12541, '0449005747'), + (15519, '0312288840'), + (236, '0446676098'), + (15520, '0739411543'), + (142, '0451169514'), + (15463, '1931514623'), + (568, '0064405036'), + (833, '0064405036'), + (568, '0064405044'), + (833, '0064405044'), + (568, '0064405028'), + (7456, '0064405028'), + (568, '0064405001'), + (833, '0064405001'), + (568, '006440501X'), + (833, '006440501X'), + (568, '0064404994'), + (833, '0064404994'), + (142, '067103264X'), + (1013, '3442054672'), + (15521, '3442054672'), + (154, '3257225792'), + (5912, '3257230982'), + (15522, '3257230982'), + (3209, '3442350603'), + (15523, '3442350603'), + (15524, '3499121352'), + (15525, '3886800849'), + (644, '3492256856'), + (5258, '3423119152'), + (6568, '3596214572'), + (15526, '3596214572'), + (15527, '3596214572'), + (4133, '3423110066'), + (215, '3423011505'), + (15528, '3821806354'), + (1109, '3518389009'), + (15529, '3518389009'), + (220, '3596259924'), + (401, '019283374X'), + (7889, '019283374X'), + (7048, '019283374X'), + (4932, '3492233740'), + (4932, '3492233708'), + (15530, '3492233708'), + (4932, '3492233716'), + (15529, '3492233716'), + (15531, '337901592X'), + (960, '3442726689'), + (8659, '3442726689'), + (5107, '3442720303'), + (15532, '3458324232'), + (848, '3257226039'), + (6591, '3612276204'), + (15533, '3512003931'), + (13686, '3499100355'), + (15534, '3423241187'), + (15535, '3873290812'), + (15536, '3873290812'), + (1259, '3257227000'), + (15537, '3257227000'), + (15538, '3257227000'), + (351, '3257218370'), + (867, '3596282225'), + (2188, '3442448263'), + (1145, '3442448263'), + (351, '3257233000'), + (15539, '3257233000'), + (15540, '3423122595'), + (15541, '3423122595'), + (15542, '3423122595'), + (962, '0140621687'), + (4932, '3492233724'), + (15529, '3492233724'), + (3209, '3442416108'), + (224, '3442726328'), + (15543, '3442726328'), + (15534, '3257061455'), + (15544, '3596148030'), + (15545, '3596148030'), + (5038, '3442446015'), + (9381, '3442446015'), + (61, '3442439027'), + (15546, '3442439027'), + (15547, '3442729688'), + (252, '3442447666'), + (15548, '3426001454'), + (15549, '344221548X'), + (15550, '3630611087'), + (15551, '3518368001'), + (3849, '3518374508'), + (848, '3257229356'), + (15552, '340648879X'), + (15553, '3608930663'), + (15554, '3608930663'), + (15555, '3453210832'), + (15556, '3453150228'), + (9085, '3453150228'), + (3854, '3498029711'), + (1550, '3498029711'), + (15557, '3498029711'), + (15558, '3498029711'), + (745, '3499110660'), + (15559, '3499110660'), + (4785, '325721796X'), + (4307, '340412264X'), + (745, '3499157470'), + (1550, '3499157470'), + (15560, '3499157470'), + (4928, '3498046268'), + (6369, '359629259X'), + (745, '3499147556'), + (745, '3499122065'), + (15561, '3499122065'), + (3008, '3518366122'), + (15562, '3518366122'), + (15563, '3442438918'), + (3689, '3492230849'), + (244, '0684843137'), + (10733, '3423113707'), + (15564, '3423113707'), + (2710, '3442455707'), + (15565, '3518388762'), + (5872, '3423362111'), + (15566, '3423362111'), + (15567, '3423362111'), + (465, '354860062X'), + (15568, '3548250173'), + (15569, '3548250173'), + (2188, '0312975856'), + (61, '3442439043'), + (45, '3442439043'), + (14342, '3492038549'), + (7222, '3492038549'), + (145, '3453198875'), + (374, '3426624028'), + (15570, '3426624028'), + (1354, '3442443784'), + (15571, '3442443784'), + (7, '3442096480'), + (15572, '3442096480'), + (484, '3442448395'), + (6705, '3499228637'), + (15573, '3499228637'), + (15574, '034082428X'), + (15575, '0192804472'), + (15576, '0192804472'), + (1396, '0679734465'), + (1209, '0151910790'), + (1744, '0151910790'), + (15577, '0571145906'), + (15578, '0140252258'), + (374, '0743219627'), + (2598, '0140284095'), + (2257, '0505524406'), + (15579, '9681906004'), + (15580, '9681905628'), + (56, '0486406482'), + (181, '0486406482'), + (1491, '1551666170'), + (1754, '074347418X'), + (15054, '0816143358'), + (128, '1551664836'), + (2257, '1892603004'), + (2244, '0449150534'), + (149, '1400034671'), + (760, '0140053204'), + (2244, '0449150542'), + (1092, '0671011340'), + (1092, '0671739735'), + (1754, '0671702505'), + (15581, '9501513394'), + (369, '0373073739'), + (1092, '0671739786'), + (3615, '0553561359'), + (9645, '0452255953'), + (15582, '0452255953'), + (13309, '0312288271'), + (495, '039475218X'), + (1398, '0805041397'), + (15583, '0452272785'), + (401, '0785789073'), + (15584, '0884360555'), + (3541, '9681908716'), + (15585, '9681908716'), + (612, '0375704132'), + (2598, '0140284125'), + (11273, '0816139709'), + (1528, '006109174X'), + (1528, '0553241605'), + (5335, '0446360015'), + (301, '0374115370'), + (2654, '0449214745'), + (13012, '0679774386'), + (149, '968131574X'), + (410, '0312195265'), + (6369, '0060927968'), + (4421, '0451133935'), + (13644, '0671662414'), + (8522, '0671662414'), + (5786, '0449214540'), + (15586, '2020239213'), + (15587, '9700509125'), + (415, '0486298035'), + (181, '0486298035'), + (15588, '0670364991'), + (559, '0449147614'), + (15589, '067972902X'), + (220, '9509779032'), + (15590, '9509779032'), + (3401, '1585860972'), + (3401, '1585861677'), + (4198, '0821747940'), + (1196, '0749316411'), + (2820, '0811213196'), + (4635, '0811213196'), + (149, '1400034965'), + (9354, '1400001617'), + (3750, '0553293257'), + (3750, '0553571907'), + (3750, '0553283545'), + (3750, '0553289322'), + (3750, '0553293168'), + (2006, '0380762560'), + (2006, '0380752999'), + (2006, '0380756277'), + (2006, '0380871556'), + (2006, '0380750872'), + (2006, '0380756293'), + (2006, '0380750864'), + (2006, '0380814714'), + (2006, '0380756269'), + (2006, '0380752948'), + (15591, '9502801954'), + (626, '0671880608'), + (1998, '0553060635'), + (815, '0684853299'), + (15592, '0060085894'), + (3483, '0871133792'), + (3483, '0811212777'), + (15593, '0811212777'), + (39, '0679431136'), + (8354, '0679431136'), + (2006, '0380725703'), + (2006, '0816152284'), + (15594, '0802776159'), + (15595, '0393320359'), + (15596, '0714529850'), + (15597, '2266061283'), + (15598, '0826452310'), + (15599, '0671748157'), + (70, '0380727366'), + (162, '1586633503'), + (15600, '1586633503'), + (729, '0385721234'), + (15601, '9504901816'), + (15602, '0375707166'), + (15579, '9584204106'), + (7548, '0679755454'), + (8112, '1852427000'), + (15603, '1852427000'), + (15604, '0802130305'), + (3484, '0802130305'), + (4046, '0802130305'), + (149, '1400034957'), + (15605, '9504906915'), + (15606, '0192838865'), + (15607, '0192838865'), + (15608, '0864424663'), + (8660, '1740590392'), + (15609, '1740590392'), + (2006, '0380899531'), + (82, '0460874772'), + (3750, '055329315X'), + (1359, '006018888X'), + (15610, '1400034531'), + (1690, '0142000809'), + (937, '0743449193'), + (79, '0785787828'), + (2271, '0821769839'), + (3750, '0553569406'), + (4198, '078600021X'), + (62, '0425155188'), + (15611, '0873325079'), + (15610, '0873325079'), + (15612, '0873325079'), + (15613, '0786901349'), + (15614, '0451195167'), + (4050, '9500286335'), + (56, '0812543122'), + (15615, '048621866X'), + (15616, '0192839829'), + (15617, '0192839829'), + (15618, '0192839829'), + (1580, '0783887841'), + (1581, '0783887841'), + (15619, '9879317114'), + (15620, '0330344773'), + (15621, '0727849190'), + (15622, '0708992897'), + (15623, '2253149624'), + (7534, '0505522993'), + (7351, '0312875673'), + (15624, '1565048423'), + (15623, '1565048415'), + (15623, '1565048407'), + (2011, '0425157466'), + (15625, '2871292086'), + (1579, '2744403709'), + (1579, '2744403695'), + (1579, '2744403687'), + (2233, '0439568366'), + (9066, '9505111215'), + (867, '0886773083'), + (4622, '0886773083'), + (292, '0749711841'), + (2006, '0727855468'), + (2006, '0380753006'), + (3885, '0140621164'), + (15626, '0634032984'), + (188, '067187036X'), + (325, '034537472X'), + (9396, '0812521374'), + (848, '0679745688'), + (1209, '1860219470'), + (15627, '0671626299'), + (7870, '096664431X'), + (9121, '096664431X'), + (15628, '096664431X'), + (15629, '096664431X'), + (15630, '042517350X'), + (859, '0140434062'), + (10265, '0140434062'), + (15631, '0441006612'), + (15632, '0441006612'), + (256, '0061020680'), + (15633, '0773670696'), + (15634, '1568651295'), + (15635, '1568651295'), + (6591, '067089205X'), + (7477, '067003200X'), + (15636, '0394547942'), + (607, '0345436520'), + (6591, '0670030600'), + (15637, '0375401768'), + (15638, '0818501332'), + (9354, '0967673739'), + (15639, '0375714553'), + (15640, '0743222199'), + (15641, '0743222199'), + (15642, '0006278841'), + (15643, '0006278841'), + (12460, '0452270839'), + (15644, '0451183959'), + (15645, '0395944171'), + (630, '0743457951'), + (15646, '0934395942'), + (720, '0684815907'), + (7412, '0743224914'), + (15647, '0743224914'), + (15648, '0743224914'), + (8068, '0395585643'), + (15649, '0800718372'), + (15650, '0060081651'), + (788, '0151009376'); + +INSERT INTO BORROWER (Ssn, Bname, Address, Phone) + VALUES + ('850-47-3740', 'Mark Morgan', '5677 Coolidge Street Plano, TX', '(469) 904-1438'), + ('256-95-4382', 'Eric Warren', '9062 Schurz Drive Dallas, TX', '(214) 701-8127'), + ('256-51-5268', 'Robert Harper', '7786 Sachs Place Plano, TX', '(214) 875-5911'), + ('976-95-2914', 'Donna Franklin', '3 Magdeline Terrace Plano, TX', '(214) 800-6127'), + ('906-63-3588', 'Linda King', '41260 Kedzie Terrace Dallas, TX', '(469) 213-2549'), + ('206-26-7141', 'Judy Holmes', '6583 Manitowish Hill Dallas, TX', '(972) 898-5909'), + ('898-61-3567', 'Deborah Lawrence', '2 Hermina Trail Dallas, TX', '(972) 900-2951'), + ('644-25-0492', 'Adam Johnston', '05671 Norway Maple Court Dallas, TX', '(469) 743-0176'), + ('678-12-4697', 'Pamela Carr', '1848 Fordem Avenue Richardson, TX', '(972) 247-9852'), + ('562-33-7951', 'Daniel Fisher', '400 Cody Lane Plano, TX', '(214) 891-7743'), + ('441-90-7753', 'Stephen Fields', '99 Fair Oaks Drive Plano, TX', '(214) 801-3069'), + ('305-53-3736', 'Walter Ferguson', '814 Sutteridge Point Dallas, TX', '(469) 945-8172'), + ('634-61-6311', 'Paul Cook', '58295 Pierstorff Pass Richardson, TX', '(469) 932-0168'), + ('661-24-6360', 'Roy Smith', '563 Fairview Park Dallas, TX', '(214) 911-4724'), + ('350-83-8412', 'Michelle Gardner', '28309 Paget Court Plano, TX', '(469) 974-2681'), + ('439-75-5475', 'George Powell', '31 Clove Crossing Dallas, TX', '(972) 885-7291'), + ('431-61-5822', 'Nicholas Hudson', '29 Esker Trail Dallas, TX', '(469) 698-4000'), + ('879-82-7179', 'Linda Henderson', '117 Katie Center Dallas, TX', '(469) 997-0832'), + ('484-96-1826', 'Gregory Fowler', '42454 Hermina Plaza Dallas, TX', '(214) 936-8301'), + ('562-52-7080', 'Carol Sanders', '99600 Moland Way Dallas, TX', '(214) 762-1061'), + ('876-61-5170', 'Mark Hamilton', '76425 Dixon Hill Dallas, TX', '(972) 802-7903'), + ('139-71-1123', 'Anthony Brown', '8691 Walton Terrace Dallas, TX', '(972) 947-3376'), + ('239-16-6210', 'James Rivera', '4 Golden Leaf Trail Dallas, TX', '(214) 761-8129'), + ('283-06-7717', 'Tammy Cole', '22 Atwood Parkway Dallas, TX', '(469) 292-1882'), + ('371-60-9878', 'Donald Bowman', '196 Golf View Terrace Dallas, TX', '(214) 956-6083'), + ('438-78-7652', 'Susan Gomez', '601 Warbler Point Richardson, TX', '(972) 877-1341'), + ('893-37-1519', 'Juan Martin', '846 Johnson Circle Dallas, TX', '(214) 828-5694'), + ('434-92-5388', 'Samuel Bailey', '1367 Northport Drive Dallas, TX', '(972) 972-2250'), + ('444-50-9807', 'Paul White', '24775 Melvin Place Dallas, TX', '(469) 459-4087'), + ('557-41-0386', 'Gregory Clark', '259 Porter Avenue Dallas, TX', '(972) 979-5771'), + ('123-99-1439', 'Steven Wood', '852 Darwin Alley Dallas, TX', '(214) 984-2801'), + ('507-26-2481', 'Jessica Fuller', '975 Carpenter Parkway Dallas, TX', '(972) 956-5055'), + ('258-33-5117', 'Donna Greene', '86 Delladonna Lane Dallas, TX', '(469) 969-6535'), + ('876-94-4518', 'Edward Ford', '34 Fulton Circle Dallas, TX', '(214) 869-1555'), + ('153-20-8011', 'Steve Torres', '781 Loeprich Alley Dallas, TX', '(469) 964-7789'), + ('881-79-3670', 'Alice Rivera', '79 Dayton Center Dallas, TX', '(214) 841-3416'), + ('878-61-5560', 'Jessica Freeman', '27997 Loftsgordon Lane Dallas, TX', '(214) 835-4205'), + ('728-84-4113', 'Kenneth Harrison', '25074 Holmberg Park Richardson, TX', '(972) 774-1504'), + ('792-17-4540', 'Betty Austin', '4 Schmedeman Terrace Dallas, TX', '(972) 927-7561'), + ('433-05-3698', 'Irene Gonzalez', '820 Oxford Crossing Dallas, TX', '(214) 865-5203'), + ('132-21-3747', 'Charles Foster', '850 Summerview Crossing Dallas, TX', '(469) 910-6688'), + ('457-93-9804', 'Gregory Perez', '57 Bluejay Pass Dallas, TX', '(972) 433-8549'), + ('906-16-1095', 'Jose Stone', '93 Waywood Parkway Dallas, TX', '(972) 991-8017'), + ('882-36-6316', 'Patrick Moore', '78 Crest Line Road Dallas, TX', '(214) 950-2446'), + ('728-96-3473', 'Louis Lynch', '12197 Kinsman Center Dallas, TX', '(469) 820-4208'), + ('377-44-1238', 'Matthew Snyder', '169 Mayfield Park Richardson, TX', '(469) 855-5018'), + ('582-62-7069', 'Sara Wagner', '24827 Twin Pines Junction Richardson, TX', '(469) 914-5869'), + ('577-82-2947', 'Louise Long', '6 Haas Center Dallas, TX', '(214) 939-0517'), + ('216-53-6968', 'Judy Hamilton', '65364 Mosinee Center Dallas, TX', '(972) 847-2849'), + ('202-40-3427', 'Evelyn Young', '4788 South Street Dallas, TX', '(214) 864-9776'), + ('897-56-8517', 'James Moore', '9089 Lunder Parkway Dallas, TX', '(469) 830-4056'), + ('923-84-7867', 'Clarence Romero', '68501 Michigan Street Plano, TX', '(972) 982-1803'), + ('539-63-0143', 'Jennifer Smith', '3 Cordelia Terrace Dallas, TX', '(469) 963-5598'), + ('636-25-1591', 'Jack Baker', '01441 Eastlawn Place Dallas, TX', '(972) 909-1277'), + ('622-93-5915', 'Amy Nguyen', '79 Rigney Circle Dallas, TX', '(214) 905-2261'), + ('823-00-8890', 'Maria Stevens', '5348 David Point Plano, TX', '(972) 992-5831'), + ('534-07-7079', 'Teresa Carpenter', '6280 Spenser Lane Dallas, TX', '(972) 908-2593'), + ('203-68-8563', 'Roy Arnold', '7548 Dunning Junction Richardson, TX', '(214) 990-9053'), + ('457-75-1314', 'Randy Stewart', '5004 Emmet Park Dallas, TX', '(469) 422-2991'), + ('524-73-0400', 'Brenda Fernandez', '335 Forster Alley Dallas, TX', '(214) 920-6944'), + ('344-66-8375', 'Janet Thompson', '1 Chinook Place Plano, TX', '(972) 986-8081'), + ('716-55-3314', 'Billy Ortiz', '4 Hintze Court Dallas, TX', '(469) 808-1346'), + ('869-29-5873', 'Edward Hawkins', '96231 Northland Plaza Dallas, TX', '(972) 798-3752'), + ('218-81-6261', 'Mark Morgan', '5 Miller Lane Dallas, TX', '(469) 784-6546'), + ('913-50-1956', 'Carolyn Morgan', '975 Golf View Place Dallas, TX', '(469) 674-8726'), + ('749-40-8693', 'Tina Weaver', '5414 Green Ridge Street Dallas, TX', '(469) 840-0879'), + ('992-92-6136', 'Eric Taylor', '6 Fisk Pass Dallas, TX', '(214) 714-7652'), + ('378-07-1662', 'Ruth Henry', '84 Hermina Street Dallas, TX', '(972) 934-2054'), + ('388-44-9990', 'Phillip Perkins', '84771 Bartelt Trail Dallas, TX', '(214) 917-4226'), + ('288-23-0361', 'Annie Welch', '80 Stuart Road Dallas, TX', '(972) 516-1320'), + ('509-44-1761', 'Lois Hunter', '49 Blaine Lane Plano, TX', '(972) 809-1141'), + ('704-79-5907', 'Lisa Cook', '4412 Lakewood Gardens Plaza Richardson, TX', '(972) 653-9871'), + ('948-30-8402', 'Kathleen Harvey', '13 Grayhawk Hill Dallas, TX', '(469) 547-7753'), + ('651-57-6305', 'Diane Stevens', '0091 American Circle Dallas, TX', '(469) 942-1364'), + ('908-63-2676', 'Samuel Young', '0157 Holmberg Street Richardson, TX', '(469) 918-5729'), + ('727-25-3782', 'Mark Riley', '4900 Thompson Court Dallas, TX', '(972) 767-2036'), + ('775-32-5935', 'Bonnie Ross', '0 Walton Court Richardson, TX', '(972) 766-6908'), + ('402-35-0549', 'Elizabeth Arnold', '952 Sage Pass Dallas, TX', '(214) 967-2424'), + ('270-86-6950', 'John Walker', '2 Packers Crossing Dallas, TX', '(469) 796-5094'), + ('982-11-9636', 'William Simmons', '1232 Hayes Crossing Dallas, TX', '(972) 903-7706'), + ('757-38-5276', 'Lisa Kelley', '3718 Twin Pines Way Dallas, TX', '(972) 900-0487'), + ('980-24-2372', 'Carl Larson', '096 Goodland Parkway Dallas, TX', '(469) 550-2228'), + ('444-73-4007', 'Brandon Anderson', '8 Leroy Circle Dallas, TX', '(469) 993-9270'), + ('278-33-4174', 'Gloria Myers', '03 Elmside Center Plano, TX', '(469) 853-3967'), + ('772-25-9640', 'Daniel Freeman', '9584 Elka Place Dallas, TX', '(972) 769-9270'), + ('232-98-4647', 'Judith Mitchell', '2506 Merchant Terrace Dallas, TX', '(972) 902-9669'), + ('937-38-5159', 'Alan King', '958 Burrows Street Dallas, TX', '(214) 583-5636'), + ('327-80-3166', 'Steve Phillips', '45557 Jana Court Dallas, TX', '(972) 937-9620'), + ('405-92-7423', 'Brenda Butler', '5 Calypso Avenue Dallas, TX', '(972) 892-6177'), + ('133-37-8900', 'Patricia Spencer', '65143 Union Lane Dallas, TX', '(214) 909-9264'), + ('227-64-6193', 'Larry Olson', '50299 Lien Parkway Dallas, TX', '(972) 965-7073'), + ('272-41-6460', 'Victor Sullivan', '272 Milwaukee Point Plano, TX', '(972) 759-4852'), + ('318-95-0284', 'Kathryn Taylor', '2952 Thackeray Point Dallas, TX', '(214) 862-0958'), + ('729-22-8562', 'Rachel Little', '755 Kropf Pass Dallas, TX', '(972) 797-7226'), + ('783-54-9793', 'Donald Richardson', '951 Chive Avenue Dallas, TX', '(972) 934-6450'), + ('131-52-5777', 'Stephen Chapman', '0 Lunder Alley Dallas, TX', '(214) 987-1376'), + ('335-18-5473', 'Harold Richardson', '76743 Burrows Court Dallas, TX', '(469) 899-1924'), + ('933-15-2171', 'Ernest Palmer', '6 Upham Drive Dallas, TX', '(972) 942-2638'), + ('595-38-3883', 'Pamela Matthews', '2 Green Lane Dallas, TX', '(214) 944-0666'), + ('808-44-7643', 'Jason Campbell', '6 Raven Court Dallas, TX', '(972) 811-4885'), + ('924-16-0243', 'Joyce Fuller', '45900 Iowa Way Dallas, TX', '(469) 906-3524'), + ('348-53-9608', 'Andrea Bailey', '33 Cardinal Alley Richardson, TX', '(972) 846-5566'), + ('379-16-0722', 'Denise Perry', '68 Old Shore Lane Dallas, TX', '(214) 991-3418'), + ('997-92-4787', 'Michael Jacobs', '0 Brentwood Place Richardson, TX', '(469) 924-9727'), + ('664-95-5489', 'Catherine Reid', '41544 Anniversary Crossing Plano, TX', '(214) 948-8236'), + ('424-12-2851', 'Aaron Romero', '844 Union Way Dallas, TX', '(972) 535-5154'), + ('295-19-3279', 'John Warren', '9127 Farragut Center Dallas, TX', '(469) 923-5725'), + ('806-92-2733', 'Steve Garrett', '729 Kenwood Court Richardson, TX', '(214) 703-1311'), + ('466-92-6624', 'Jimmy Ellis', '8 Nevada Place Dallas, TX', '(972) 742-8738'), + ('454-64-8101', 'Jose Perez', '4463 Commercial Circle Richardson, TX', '(469) 852-3133'), + ('909-18-6864', 'Katherine Dean', '4978 Cordelia Way Dallas, TX', '(972) 886-7232'), + ('203-54-9198', 'Ashley Jackson', '676 David Road Dallas, TX', '(469) 976-0450'), + ('177-45-8737', 'Kathryn Hart', '29 Dexter Circle Dallas, TX', '(972) 900-3590'), + ('279-96-6074', 'Dennis Ruiz', '18784 Browning Circle Dallas, TX', '(972) 974-1505'), + ('561-91-3511', 'Sharon Cox', '4 Hoffman Street Dallas, TX', '(214) 915-0820'), + ('325-12-4236', 'Ruby Burke', '5 Swallow Avenue Dallas, TX', '(972) 928-8965'), + ('537-25-0563', 'Jerry Stewart', '54494 Kenwood Trail Dallas, TX', '(469) 817-5662'), + ('508-36-5238', 'Howard Fisher', '2 Reinke Lane Plano, TX', '(972) 325-6683'), + ('663-89-7131', 'Eric Phillips', '578 Westend Pass Dallas, TX', '(972) 893-0831'), + ('582-89-0521', 'Albert Cruz', '04 Shopko Way Dallas, TX', '(972) 471-4420'), + ('112-24-4907', 'Timothy Harrison', '04099 Anhalt Place Dallas, TX', '(214) 849-7879'), + ('593-24-8597', 'Ronald Phillips', '4632 Brentwood Hill Dallas, TX', '(469) 945-4638'), + ('152-06-9743', 'Antonio Bishop', '212 Memorial Lane Richardson, TX', '(469) 835-8047'), + ('917-73-0651', 'Howard Green', '9 Florence Trail Dallas, TX', '(214) 875-8195'), + ('550-66-4068', 'Willie Murphy', '09 Loeprich Parkway Richardson, TX', '(214) 954-5495'), + ('151-32-0622', 'Christine Washington', '95086 Eliot Alley Dallas, TX', '(469) 844-5383'), + ('363-52-9311', 'Angela Ellis', '61 Chinook Avenue Dallas, TX', '(469) 912-7557'), + ('498-97-9543', 'Kathy Wagner', '1 Columbus Crossing Plano, TX', '(214) 958-2980'), + ('109-59-3700', 'Antonio Carr', '6996 Arizona Avenue Dallas, TX', '(469) 724-0803'), + ('919-11-7074', 'Samuel Ellis', '69968 Meadow Ridge Alley Dallas, TX', '(469) 957-8249'), + ('532-19-3189', 'Bruce Williamson', '51 Maywood Place Richardson, TX', '(214) 969-6651'), + ('186-61-2257', 'Ruby Mcdonald', '031 Ohio Lane Dallas, TX', '(214) 970-5621'), + ('758-82-0981', 'Jack Larson', '43086 Dexter Way Dallas, TX', '(469) 913-6292'), + ('789-85-0156', 'Tammy Hunter', '08 Marquette Pass Dallas, TX', '(214) 919-0495'), + ('144-61-2857', 'Mildred Richards', '6863 Warbler Crossing Dallas, TX', '(469) 636-7310'), + ('812-34-4775', 'Janet Dixon', '1 Ridgeway Terrace Dallas, TX', '(972) 381-9665'), + ('605-13-5959', 'Antonio Hamilton', '2545 Lerdahl Center Dallas, TX', '(214) 886-6681'), + ('873-83-1740', 'Louise Jordan', '7326 Reindahl Point Dallas, TX', '(972) 518-9421'), + ('992-25-4077', 'Linda Hunt', '710 Lighthouse Bay Point Dallas, TX', '(972) 754-7045'), + ('222-46-0064', 'Joan Webb', '90 Bashford Avenue Dallas, TX', '(469) 955-0632'), + ('135-71-1523', 'Kevin Frazier', '47 Bluejay Hill Dallas, TX', '(972) 965-3683'), + ('490-88-8407', 'Todd Schmidt', '4 Lakeland Pass Dallas, TX', '(214) 903-6828'), + ('797-95-4607', 'Andrea Sims', '898 Killdeer Pass Dallas, TX', '(469) 988-0761'), + ('959-24-3477', 'Barbara Brooks', '305 Mendota Plaza Dallas, TX', '(469) 958-8251'), + ('600-79-0040', 'Kenneth Anderson', '246 Shopko Drive Richardson, TX', '(972) 998-5406'), + ('704-59-6830', 'Jessica Knight', '36 Forest Park Richardson, TX', '(469) 961-0488'), + ('542-87-9344', 'Dorothy Adams', '2483 Melody Plaza Richardson, TX', '(972) 881-8472'), + ('634-80-8812', 'Phillip Adams', '4 Derek Point Dallas, TX', '(972) 918-0335'), + ('599-72-6050', 'James Carpenter', '6668 Ilene Court Dallas, TX', '(214) 820-8276'), + ('751-57-0699', 'Amy Lopez', '715 Westend Avenue Dallas, TX', '(469) 830-1019'), + ('570-71-9526', 'Frank Gomez', '61280 Mallory Parkway Plano, TX', '(214) 962-2973'), + ('585-65-8864', 'Debra Rogers', '4 Southridge Place Richardson, TX', '(469) 753-7894'), + ('784-42-3645', 'Aaron Chapman', '840 Messerschmidt Plaza Dallas, TX', '(972) 753-3651'), + ('327-00-2811', 'Jerry Cruz', '48314 Muir Crossing Dallas, TX', '(214) 973-8302'), + ('209-64-5805', 'Gerald Mccoy', '71113 Corry Circle Plano, TX', '(469) 758-3820'), + ('352-52-5321', 'Matthew Ward', '3726 Oneill Terrace Plano, TX', '(972) 668-2488'), + ('312-33-6562', 'Marilyn Andrews', '61664 Warrior Street Dallas, TX', '(972) 831-4215'), + ('585-35-8539', 'Lawrence Coleman', '0 Scoville Plaza Plano, TX', '(469) 987-3187'), + ('766-72-6736', 'Sarah Burton', '65230 Prairie Rose Point Plano, TX', '(972) 736-0106'), + ('519-22-1664', 'Gerald White', '82 Delaware Plaza Plano, TX', '(214) 774-5757'), + ('811-23-2706', 'Shawn Robertson', '9 Troy Alley Dallas, TX', '(214) 943-9366'), + ('983-17-1073', 'Samuel Arnold', '1748 Monterey Road Dallas, TX', '(469) 741-5231'), + ('153-09-5087', 'Ruby Mcdonald', '00621 Killdeer Crossing Dallas, TX', '(469) 941-5043'), + ('208-16-2580', 'Lillian Kim', '47585 Nova Drive Dallas, TX', '(214) 740-2312'), + ('604-54-4201', 'Pamela Bradley', '2 Lakewood Gardens Place Richardson, TX', '(469) 871-3326'), + ('764-51-2571', 'Ralph Chavez', '15739 Vera Plaza Dallas, TX', '(214) 598-5319'), + ('102-72-1991', 'Martin Richards', '8 New Castle Trail Dallas, TX', '(469) 976-0263'), + ('743-82-1324', 'Chris Simmons', '46833 Farmco Junction Dallas, TX', '(469) 810-0333'), + ('915-27-6165', 'Martin Stevens', '573 Oneill Hill Dallas, TX', '(469) 570-2393'), + ('615-68-8488', 'Lisa West', '55586 Ronald Regan Lane Dallas, TX', '(972) 998-4345'), + ('538-66-1965', 'Daniel Marshall', '3 Manitowish Crossing Dallas, TX', '(469) 730-4725'), + ('981-95-3778', 'John Hicks', '81 Northfield Place Richardson, TX', '(972) 727-1591'), + ('802-73-6786', 'Roger Harrison', '9 Meadow Vale Drive Dallas, TX', '(469) 941-5954'), + ('777-08-7277', 'Teresa Thompson', '06364 Gerald Street Dallas, TX', '(972) 670-1547'), + ('445-90-2407', 'Arthur Freeman', '51652 Russell Street Dallas, TX', '(469) 994-4509'), + ('909-02-3006', 'Howard Simpson', '95 Redwing Lane Dallas, TX', '(972) 910-0392'), + ('790-10-1835', 'Christopher Spencer', '6 Northfield Crossing Dallas, TX', '(214) 821-9650'), + ('847-64-1856', 'Theresa Wood', '0420 Westport Circle Dallas, TX', '(469) 994-1901'), + ('930-97-8594', 'Lillian Wright', '82972 Raven Road Dallas, TX', '(972) 960-5502'), + ('823-59-4050', 'Sara Rogers', '7 Twin Pines Circle Dallas, TX', '(214) 984-5323'), + ('831-37-2302', 'Linda Richards', '046 Harper Center Dallas, TX', '(214) 998-2489'), + ('139-70-8042', 'Albert Cunningham', '414 Summer Ridge Trail Richardson, TX', '(972) 716-3924'), + ('611-16-9228', 'Debra Holmes', '22 Bluejay Road Plano, TX', '(972) 954-8773'), + ('248-33-5177', 'Jason Davis', '82931 Cardinal Junction Dallas, TX', '(214) 969-9787'), + ('399-38-8513', 'Justin Fowler', '1958 Leroy Way Dallas, TX', '(972) 915-2410'), + ('515-58-4650', 'Catherine Harris', '4091 Doe Crossing Alley Plano, TX', '(469) 968-7984'), + ('911-94-6409', 'Gary Reyes', '06 Shelley Parkway Dallas, TX', '(972) 985-2014'), + ('952-37-2293', 'Clarence Harvey', '637 Blackbird Crossing Dallas, TX', '(972) 735-8046'), + ('866-26-3470', 'Kathleen Lynch', '0 Northview Center Dallas, TX', '(469) 858-9821'), + ('696-87-1283', 'Angela Myers', '07 Jenifer Point Plano, TX', '(214) 996-3258'), + ('525-30-0056', 'Paula Roberts', '2025 Annamark Court Richardson, TX', '(214) 919-1512'), + ('455-25-1300', 'Marie Hudson', '35523 Fulton Point Richardson, TX', '(972) 955-0047'), + ('300-83-3012', 'Victor George', '16 Butterfield Place Plano, TX', '(469) 982-0024'), + ('568-53-7223', 'Judith Lane', '59463 Havey Center Dallas, TX', '(469) 962-1701'), + ('219-13-1583', 'Steven Carpenter', '64 Rutledge Court Richardson, TX', '(972) 759-2760'), + ('628-41-9882', 'Beverly Welch', '0 7th Point Richardson, TX', '(214) 758-2027'), + ('553-83-0248', 'Chris Cox', '386 Coleman Avenue Richardson, TX', '(214) 902-1149'), + ('664-42-3811', 'Heather Duncan', '3 Acker Avenue Richardson, TX', '(972) 906-2444'), + ('932-05-2280', 'Helen Cooper', '90887 Ohio Trail Dallas, TX', '(214) 723-9307'), + ('359-15-6568', 'Linda Dixon', '0506 Boyd Plaza Richardson, TX', '(214) 940-0096'), + ('377-03-6374', 'Eric Wood', '730 Bonner Hill Dallas, TX', '(972) 959-7132'), + ('956-77-5994', 'Brenda Brooks', '4 Pennsylvania Hill Dallas, TX', '(972) 960-5440'), + ('262-72-9956', 'Fred Crawford', '00 Mariners Cove Terrace Dallas, TX', '(972) 978-1543'), + ('935-26-1044', 'Alan Morris', '2238 Debra Center Dallas, TX', '(469) 701-3591'), + ('575-57-3479', 'Jimmy Watkins', '91873 Colorado Crossing Dallas, TX', '(469) 933-3579'), + ('534-35-2839', 'Keith Fisher', '2 Muir Crossing Richardson, TX', '(972) 999-1883'), + ('487-48-3434', 'Rose Oliver', '3152 Thackeray Point Dallas, TX', '(214) 971-9384'), + ('282-19-5051', 'Johnny Vasquez', '809 Grover Circle Dallas, TX', '(972) 843-5554'), + ('198-52-6239', 'Judith Dunn', '337 Northview Point Dallas, TX', '(972) 999-1156'), + ('165-45-3343', 'Roger Freeman', '13 Farmco Way Dallas, TX', '(469) 854-9842'), + ('983-87-0005', 'Richard Bailey', '3108 Browning Park Richardson, TX', '(214) 718-0392'), + ('387-20-1613', 'Ernest Palmer', '66600 Pleasure Drive Dallas, TX', '(214) 238-1120'), + ('440-22-0860', 'Janice Long', '26577 Laurel Road Dallas, TX', '(214) 972-0889'), + ('589-60-2564', 'Thomas Schmidt', '0 New Castle Crossing Plano, TX', '(469) 745-9014'), + ('564-07-7138', 'Kathryn Hayes', '18504 Basil Hill Dallas, TX', '(469) 831-7793'), + ('106-58-8800', 'Chris Perkins', '14865 John Wall Center Plano, TX', '(972) 957-3368'), + ('664-12-8122', 'Thomas Scott', '449 Schurz Parkway Dallas, TX', '(469) 914-5396'), + ('394-69-4479', 'Judy Richards', '9420 Main Hill Dallas, TX', '(469) 871-8324'), + ('977-89-1063', 'Janice Garrett', '2998 Chive Place Dallas, TX', '(214) 809-6943'), + ('720-12-0662', 'Raymond Peterson', '892 Fairfield Point Richardson, TX', '(469) 947-5199'), + ('344-03-8015', 'Marilyn Williams', '0 John Wall Circle Dallas, TX', '(214) 992-8183'), + ('166-80-9145', 'Teresa Reid', '9224 Manufacturers Terrace Dallas, TX', '(972) 457-6436'), + ('628-54-4529', 'Irene Medina', '51 Southridge Pass Dallas, TX', '(972) 994-3852'), + ('763-92-5219', 'Linda Carpenter', '43 Dovetail Road Dallas, TX', '(972) 866-8440'), + ('468-30-6717', 'Jonathan Harrison', '113 Havey Crossing Plano, TX', '(469) 900-2769'), + ('716-63-5871', 'Laura Graham', '72346 Emmet Place Dallas, TX', '(469) 892-4249'), + ('462-64-8746', 'Sharon Pierce', '9 Clove Trail Dallas, TX', '(972) 930-5410'), + ('890-27-4530', 'Katherine Boyd', '90 Park Meadow Junction Dallas, TX', '(214) 652-5153'), + ('875-97-7822', 'Brian Perkins', '5988 Havey Street Dallas, TX', '(972) 973-2502'), + ('867-84-8327', 'Eric Cooper', '7 Granby Road Dallas, TX', '(972) 970-2642'), + ('907-94-1254', 'Randy Stanley', '94552 Linden Court Dallas, TX', '(972) 815-8835'), + ('319-59-2633', 'Pamela Gutierrez', '50236 Goodland Lane Plano, TX', '(972) 968-2569'), + ('145-92-8000', 'Keith Perkins', '9543 Farragut Road Richardson, TX', '(214) 804-0599'), + ('361-70-3782', 'Scott Spencer', '5 Lukken Junction Dallas, TX', '(214) 701-4621'), + ('992-96-4866', 'Todd Bryant', '418 Onsgard Hill Dallas, TX', '(214) 980-7359'), + ('916-54-8159', 'Jose Anderson', '2705 Ohio Junction Dallas, TX', '(214) 530-2752'), + ('133-83-4824', 'Amanda Davis', '1636 Norway Maple Place Plano, TX', '(469) 913-5733'), + ('712-12-8661', 'Richard Cruz', '69 Marquette Park Richardson, TX', '(469) 902-7741'), + ('325-77-2883', 'Sara Walker', '18924 3rd Circle Dallas, TX', '(972) 932-7544'), + ('974-70-9717', 'Gloria Sanders', '36961 Green Ridge Place Dallas, TX', '(214) 937-3306'), + ('584-04-3187', 'Jonathan Harris', '286 Merry Way Dallas, TX', '(469) 873-4473'), + ('152-31-3951', 'Juan Fields', '291 Marquette Parkway Richardson, TX', '(972) 916-7303'), + ('950-88-3244', 'Wanda Mills', '79024 Surrey Way Dallas, TX', '(469) 920-6298'), + ('315-12-0643', 'Karen Davis', '83 Holy Cross Drive Dallas, TX', '(972) 890-5755'), + ('328-21-2988', 'Scott Montgomery', '96247 Oriole Circle Dallas, TX', '(972) 929-5312'), + ('752-03-8294', 'Michael Stevens', '356 Shoshone Drive Dallas, TX', '(469) 803-5017'), + ('223-10-5941', 'Andrea Baker', '90 Heath Drive Dallas, TX', '(469) 930-1109'), + ('383-36-2902', 'Marilyn Alexander', '443 Dottie Circle Dallas, TX', '(972) 406-2617'), + ('556-96-7003', 'Harry Alvarez', '636 Express Way Dallas, TX', '(214) 954-5716'), + ('760-25-1865', 'Rose Peterson', '034 Shelley Drive Dallas, TX', '(972) 861-4171'), + ('196-06-0978', 'Barbara Garcia', '5690 Acker Road Dallas, TX', '(469) 517-8843'), + ('140-56-2974', 'Ann Berry', '37940 Morning Hill Dallas, TX', '(972) 918-7984'), + ('493-92-4232', 'Paul Turner', '75287 Pleasure Place Dallas, TX', '(972) 782-6768'), + ('353-18-9662', 'Theresa Day', '9 American Ash Crossing Dallas, TX', '(972) 909-4722'), + ('926-42-8995', 'Andrew Gilbert', '8 American Parkway Dallas, TX', '(972) 834-2804'), + ('741-11-7814', 'Alice Turner', '4 Namekagon Lane Dallas, TX', '(214) 660-6741'), + ('700-23-8477', 'Julie Smith', '61345 Namekagon Place Dallas, TX', '(469) 861-2346'), + ('390-30-8158', 'Alice Carr', '7564 Ohio Plaza Dallas, TX', '(214) 549-1687'), + ('941-05-7192', 'Harry Baker', '7 Straubel Center Plano, TX', '(469) 590-5412'), + ('949-37-6371', 'Donna Cooper', '1629 Summer Ridge Plaza Dallas, TX', '(469) 957-3027'), + ('947-04-7262', 'Laura Rogers', '7776 Summer Ridge Court Dallas, TX', '(972) 730-7675'), + ('443-61-5562', 'Jessica Hicks', '17138 Ryan Circle Dallas, TX', '(469) 815-6162'), + ('428-09-7397', 'George Turner', '4 Quincy Pass Richardson, TX', '(214) 958-2175'), + ('354-53-8826', 'Joan Watkins', '9601 Lerdahl Pass Plano, TX', '(214) 814-9170'), + ('757-21-3141', 'Andrea Gonzalez', '127 Russell Hill Dallas, TX', '(972) 809-5959'), + ('924-17-9942', 'Billy Little', '46 Autumn Leaf Junction Dallas, TX', '(972) 986-6001'), + ('778-68-6617', 'Teresa Marshall', '2 Sheridan Trail Dallas, TX', '(469) 884-2394'), + ('431-20-0144', 'Benjamin Lynch', '53 Tennyson Park Dallas, TX', '(469) 877-9851'), + ('851-35-0300', 'Nancy Dixon', '4 Dwight Street Dallas, TX', '(972) 770-3641'), + ('583-40-6101', 'Jean Dunn', '4 North Street Dallas, TX', '(469) 995-6149'), + ('125-98-5061', 'Anthony Gardner', '9823 Donald Terrace Dallas, TX', '(972) 432-3180'), + ('750-84-1386', 'Benjamin Morrison', '21 Oriole Terrace Dallas, TX', '(214) 409-6322'), + ('319-09-3742', 'Anne Dixon', '9579 Browning Crossing Dallas, TX', '(972) 907-6080'), + ('585-90-0674', 'Denise Wallace', '6021 Portage Park Dallas, TX', '(972) 940-4355'), + ('416-38-3510', 'Linda Owens', '13 Monterey Alley Richardson, TX', '(214) 836-3577'), + ('614-68-5656', 'Larry Warren', '2657 Mitchell Hill Plano, TX', '(972) 938-7212'), + ('984-48-8111', 'Edward Hunt', '6 Claremont Avenue Dallas, TX', '(972) 763-1900'), + ('446-20-4077', 'Harry Mcdonald', '22283 Farragut Place Plano, TX', '(214) 873-3156'), + ('154-67-1759', 'Lawrence Wells', '841 Delaware Place Dallas, TX', '(214) 976-7034'), + ('218-70-1729', 'Martin Fuller', '53309 Buhler Place Dallas, TX', '(469) 667-3361'), + ('685-99-2971', 'Roger Ellis', '74213 Charing Cross Circle Dallas, TX', '(972) 976-7863'), + ('551-99-0871', 'Patrick Moreno', '490 Rockefeller Lane Dallas, TX', '(972) 955-5269'), + ('156-64-6797', 'Andrew Cole', '30 Sunfield Pass Plano, TX', '(214) 879-7342'), + ('704-85-7803', 'Joan Hudson', '4 Everett Court Dallas, TX', '(214) 954-1417'), + ('491-79-6292', 'Chris Powell', '4 Jenifer Circle Dallas, TX', '(469) 726-7925'), + ('164-90-8064', 'Anna Perez', '1241 Graceland Court Dallas, TX', '(469) 996-2325'), + ('857-94-0950', 'Debra Gray', '251 Monterey Hill Dallas, TX', '(469) 973-4499'), + ('581-46-2753', 'Annie Shaw', '561 Cody Crossing Plano, TX', '(214) 764-1587'), + ('300-46-8310', 'Shawn Martinez', '19 Lunder Park Dallas, TX', '(469) 986-4161'), + ('691-97-1438', 'Mary Graham', '701 Cordelia Court Dallas, TX', '(214) 687-0840'), + ('239-90-4011', 'Janet West', '2308 Division Center Dallas, TX', '(214) 978-0541'), + ('702-60-4201', 'Aaron Arnold', '5886 Banding Trail Dallas, TX', '(214) 955-5863'), + ('253-17-0796', 'Justin Brown', '611 Green Plaza Plano, TX', '(214) 901-6023'), + ('547-06-9057', 'George Torres', '64206 Calypso Hill Dallas, TX', '(972) 925-4199'), + ('722-28-9325', 'Brian Romero', '4418 Green Ridge Terrace Dallas, TX', '(469) 825-9159'), + ('488-01-1020', 'Lawrence Morris', '42 Magdeline Pass Dallas, TX', '(214) 942-2979'), + ('947-93-9771', 'Patrick Garcia', '1 Nevada Parkway Dallas, TX', '(469) 827-6118'), + ('708-32-6866', 'Ashley Moreno', '067 Morning Park Dallas, TX', '(469) 869-6226'), + ('421-79-0842', 'Aaron Ellis', '1925 Grasskamp Alley Dallas, TX', '(469) 937-9272'), + ('554-28-3296', 'Jimmy James', '3 Knutson Way Dallas, TX', '(972) 930-8175'), + ('271-28-4504', 'Maria Torres', '56168 Arizona Drive Dallas, TX', '(214) 931-8328'), + ('453-78-4845', 'Chris Owens', '6 Browning Park Dallas, TX', '(972) 701-4889'), + ('556-27-9759', 'Elizabeth Harvey', '1995 Nelson Park Dallas, TX', '(972) 992-9375'), + ('212-61-9406', 'Jane Baker', '0062 Sunbrook Junction Dallas, TX', '(469) 754-6653'), + ('142-06-8429', 'Lisa Kelley', '272 Larry Drive Dallas, TX', '(469) 930-6637'), + ('205-62-6313', 'Jonathan Diaz', '18283 Brown Center Dallas, TX', '(469) 940-2479'), + ('592-93-9926', 'Mildred Allen', '5734 La Follette Point Dallas, TX', '(469) 946-2268'), + ('714-97-1208', 'Linda Rogers', '0590 Northport Drive Dallas, TX', '(972) 947-1564'), + ('949-18-1878', 'Gary Garrett', '5285 2nd Court Dallas, TX', '(469) 939-2476'), + ('454-36-5067', 'Earl Hall', '7755 Park Meadow Way Dallas, TX', '(214) 882-0672'), + ('586-20-4125', 'Benjamin Bailey', '72101 Elmside Parkway Dallas, TX', '(214) 896-3364'), + ('853-10-4620', 'Angela Graham', '5 High Crossing Crossing Richardson, TX', '(972) 878-1468'), + ('132-68-7899', 'Dennis Hunter', '7 2nd Place Plano, TX', '(469) 967-8745'), + ('618-21-2736', 'Matthew Stevens', '9603 Hansons Way Dallas, TX', '(469) 861-3808'), + ('852-75-0048', 'Annie Freeman', '7466 Gulseth Alley Dallas, TX', '(972) 921-0146'), + ('652-37-4979', 'Richard Lawson', '792 Dottie Circle Dallas, TX', '(214) 545-9387'), + ('953-35-3551', 'Susan Allen', '6 Morrow Alley Dallas, TX', '(214) 748-0451'), + ('269-55-4900', 'Rose Coleman', '26094 Loomis Alley Dallas, TX', '(469) 819-2212'), + ('398-57-5624', 'Kathy Elliott', '28 Boyd Pass Dallas, TX', '(469) 996-0439'), + ('769-13-6801', 'Teresa Brooks', '57699 Oak Circle Richardson, TX', '(972) 731-4160'), + ('781-65-2211', 'Julie Lane', '8261 Magdeline Road Dallas, TX', '(214) 930-8339'), + ('880-14-5596', 'Jessica Day', '80 Cascade Junction Dallas, TX', '(214) 947-1788'), + ('472-47-3959', 'Billy Cruz', '75 Mosinee Court Dallas, TX', '(214) 797-5929'), + ('628-10-4874', 'Martha Mccoy', '74 Claremont Park Dallas, TX', '(214) 915-1572'), + ('799-41-8699', 'Frances Long', '0 Schlimgen Alley Dallas, TX', '(214) 951-4800'), + ('826-57-4791', 'Carolyn Duncan', '1 Merry Place Dallas, TX', '(214) 279-8556'), + ('497-33-4483', 'Ryan Mendoza', '9 Myrtle Way Dallas, TX', '(214) 867-1887'), + ('733-61-4241', 'Jerry Oliver', '0 Vera Alley Dallas, TX', '(469) 734-8276'), + ('669-72-6189', 'Juan Smith', '3 Dixon Parkway Dallas, TX', '(214) 909-9366'), + ('867-23-4679', 'Marilyn White', '769 Mayfield Center Dallas, TX', '(972) 933-0968'), + ('410-60-8961', 'Anne Moreno', '60 Raven Pass Dallas, TX', '(214) 886-0662'), + ('381-83-9299', 'Ruby Greene', '328 Fallview Center Richardson, TX', '(214) 872-7995'), + ('186-53-8147', 'Shawn Rivera', '8 American Hill Dallas, TX', '(972) 528-2505'), + ('100-08-2010', 'Tina Hamilton', '24695 Di Loreto Crossing Dallas, TX', '(972) 755-6424'), + ('166-29-5051', 'Benjamin Graham', '08 New Castle Avenue Dallas, TX', '(214) 983-4311'), + ('869-23-6916', 'Doris Bailey', '5773 Eastlawn Center Dallas, TX', '(469) 801-1479'), + ('242-20-9101', 'Jason Washington', '3225 Vera Lane Richardson, TX', '(972) 931-0247'), + ('456-04-0469', 'Evelyn Wilson', '9873 Kim Center Richardson, TX', '(469) 901-5209'), + ('812-93-7575', 'Steve Cunningham', '5615 Mcbride Park Dallas, TX', '(214) 883-3172'), + ('696-31-4035', 'Henry Howard', '9 Lakewood Avenue Dallas, TX', '(214) 848-6192'), + ('399-88-0576', 'Timothy Crawford', '39384 Tony Terrace Dallas, TX', '(972) 729-2932'), + ('342-52-5404', 'Todd Rose', '8 Mosinee Plaza Plano, TX', '(469) 893-2893'), + ('699-25-9472', 'Mary Nelson', '8 Colorado Avenue Dallas, TX', '(214) 241-4452'), + ('188-14-3830', 'Jason Watkins', '74155 Welch Terrace Dallas, TX', '(972) 915-1343'), + ('562-73-5031', 'Kathy Cole', '8600 Anniversary Pass Dallas, TX', '(214) 993-7915'), + ('633-54-2851', 'Albert Reyes', '43 Transport Pass Dallas, TX', '(469) 808-4965'), + ('256-93-5132', 'Aaron Harvey', '1807 Prairieview Pass Dallas, TX', '(214) 632-9282'), + ('973-81-6951', 'Jack Ward', '5 Susan Plaza Richardson, TX', '(972) 918-4342'), + ('324-71-1906', 'Dorothy Spencer', '90651 Bellgrove Junction Dallas, TX', '(972) 892-8862'), + ('227-59-5562', 'Lawrence Hunt', '2 Randy Court Dallas, TX', '(972) 962-4743'), + ('931-62-4904', 'Beverly Fernandez', '480 Toban Lane Richardson, TX', '(469) 975-3330'), + ('625-57-7457', 'Karen Johnston', '3 Coleman Plaza Dallas, TX', '(214) 768-1518'), + ('285-70-4379', 'Howard Gonzalez', '7699 Dakota Terrace Dallas, TX', '(214) 905-6019'), + ('490-16-4375', 'Dorothy Graham', '9 Mcguire Alley Richardson, TX', '(469) 619-4224'), + ('246-40-5583', 'Barbara Anderson', '77 Ronald Regan Park Richardson, TX', '(214) 947-1531'), + ('697-56-6815', 'Frances Willis', '61438 Becker Park Dallas, TX', '(469) 900-5979'), + ('878-94-1305', 'Martha Arnold', '52279 Hauk Plaza Dallas, TX', '(469) 968-6237'), + ('721-32-2687', 'Maria Medina', '6 Gina Crossing Dallas, TX', '(214) 851-3813'), + ('842-65-5010', 'Jonathan Fox', '32 Springs Road Dallas, TX', '(972) 916-5884'), + ('657-17-6421', 'Carlos Carter', '96207 3rd Park Dallas, TX', '(214) 928-7624'), + ('422-81-7045', 'Adam Ferguson', '0 Summerview Court Dallas, TX', '(214) 957-5621'), + ('644-09-0337', 'Nicholas Wheeler', '756 Pleasure Circle Dallas, TX', '(469) 973-3255'), + ('903-98-1679', 'Raymond Rogers', '16 Monument Parkway Richardson, TX', '(469) 887-9227'), + ('847-29-3619', 'Brandon Stevens', '94647 Village Junction Dallas, TX', '(214) 693-6689'), + ('822-62-5312', 'Lori Ferguson', '49 Sachtjen Crossing Dallas, TX', '(214) 968-1515'), + ('629-41-9551', 'Roy Turner', '61544 Talmadge Drive Richardson, TX', '(469) 927-5678'), + ('235-79-8503', 'Martha Warren', '94 Vahlen Hill Dallas, TX', '(972) 776-3863'), + ('265-90-7820', 'Ruby Anderson', '0482 Haas Terrace Dallas, TX', '(469) 873-2923'), + ('694-92-0573', 'Steven Bailey', '8987 Lawn Park Dallas, TX', '(469) 938-8249'), + ('143-30-2355', 'Melissa Perkins', '0039 Hanson Court Dallas, TX', '(972) 995-3027'), + ('344-69-2006', 'Ruby Ross', '86591 Roxbury Circle Dallas, TX', '(214) 917-1080'), + ('566-64-7874', 'Billy King', '831 Sutherland Point Plano, TX', '(214) 846-6560'), + ('163-65-8067', 'Mildred Sanchez', '09 Annamark Circle Dallas, TX', '(469) 877-2424'), + ('588-45-9557', 'Linda Duncan', '09159 Charing Cross Way Dallas, TX', '(972) 877-3172'), + ('142-74-6194', 'Janice Montgomery', '661 Grasskamp Alley Dallas, TX', '(214) 905-8688'), + ('694-58-3169', 'Robin Cox', '0 Gerald Court Dallas, TX', '(972) 722-1586'), + ('513-11-0091', 'Carol Howell', '273 Sullivan Lane Richardson, TX', '(214) 831-1374'), + ('432-49-7884', 'Doris Welch', '74 Oakridge Alley Dallas, TX', '(469) 983-6603'), + ('204-46-7713', 'Debra Kelly', '0 Maywood Street Dallas, TX', '(469) 926-2312'), + ('597-00-1738', 'Scott Morales', '823 Sherman Point Plano, TX', '(469) 801-1210'), + ('221-70-6594', 'Louise Murphy', '7113 Carpenter Drive Dallas, TX', '(469) 988-1773'), + ('300-48-5255', 'Jack Cruz', '55322 Linden Point Dallas, TX', '(469) 896-0110'), + ('823-59-7520', 'Teresa Carter', '4757 Kingsford Street Dallas, TX', '(214) 964-1732'), + ('526-53-0309', 'Eric Flores', '0 Vera Center Dallas, TX', '(214) 868-2141'), + ('996-22-6511', 'Louis Elliott', '02 Jenna Trail Dallas, TX', '(972) 567-4117'), + ('688-12-7828', 'Nicholas Evans', '13 Russell Lane Dallas, TX', '(214) 975-3027'), + ('389-89-9874', 'Evelyn Bailey', '77832 West Park Dallas, TX', '(972) 978-9540'), + ('614-07-9273', 'Arthur Ray', '3079 Donald Point Dallas, TX', '(469) 754-2762'), + ('189-81-8299', 'Shawn Burns', '51 Nelson Plaza Dallas, TX', '(469) 978-8065'), + ('874-30-0223', 'Henry Wallace', '4139 Spaight Road Richardson, TX', '(972) 524-8949'), + ('841-42-8500', 'Kathy Garcia', '3657 Anhalt Trail Richardson, TX', '(469) 867-8069'), + ('933-68-6811', 'Kenneth Sanchez', '06600 Utah Crossing Dallas, TX', '(972) 810-0694'), + ('124-81-1894', 'Carl Bishop', '01 Goodland Junction Dallas, TX', '(469) 792-3214'), + ('255-45-0108', 'Harry Tucker', '8 Waubesa Parkway Dallas, TX', '(214) 925-4392'), + ('694-43-1375', 'Christopher Marshall', '34693 Warbler Junction Plano, TX', '(214) 646-3142'), + ('405-10-9736', 'Russell Murphy', '9552 Mandrake Center Dallas, TX', '(214) 843-3552'), + ('752-91-8139', 'Jessica Carr', '9 Sutteridge Pass Dallas, TX', '(469) 949-9851'), + ('324-70-7021', 'Cheryl Moore', '0 2nd Plaza Dallas, TX', '(972) 272-0101'), + ('903-05-2325', 'Lori Carroll', '879 Clarendon Alley Dallas, TX', '(469) 989-2206'), + ('323-48-3150', 'Frank Martin', '428 Lindbergh Way Dallas, TX', '(972) 802-1808'), + ('748-29-7839', 'Joyce Allen', '5911 Troy Pass Dallas, TX', '(469) 935-7570'), + ('203-92-3954', 'Philip Gonzalez', '2 Buhler Street Dallas, TX', '(214) 941-2219'), + ('483-93-2540', 'Nicole Bell', '69 Manitowish Lane Dallas, TX', '(214) 901-7334'), + ('235-14-1141', 'Joseph Perry', '45 Judy Trail Dallas, TX', '(214) 938-2436'), + ('138-49-9901', 'Doris Peterson', '56 Oxford Avenue Dallas, TX', '(214) 956-2812'), + ('311-51-3288', 'Gregory Marshall', '17 Eastwood Terrace Dallas, TX', '(214) 824-0301'), + ('359-35-2008', 'Virginia Kelly', '37408 Morrow Court Plano, TX', '(972) 839-9825'), + ('608-20-9205', 'Beverly Hawkins', '0 Hovde Terrace Dallas, TX', '(469) 814-1846'), + ('539-33-7584', 'Scott Gonzalez', '623 Westend Way Dallas, TX', '(469) 928-6396'), + ('407-50-8210', 'Paul Mcdonald', '334 Orin Avenue Dallas, TX', '(972) 994-1541'), + ('158-21-4344', 'Dennis Duncan', '05 Mitchell Hill Dallas, TX', '(469) 906-7817'), + ('146-55-7699', 'Mary Ryan', '24029 Nevada Way Dallas, TX', '(469) 827-6766'), + ('870-93-1419', 'Victor Smith', '0 Helena Point Dallas, TX', '(214) 828-3216'), + ('752-50-3597', 'Ruby Murray', '4920 Westend Court Dallas, TX', '(214) 859-6221'), + ('894-84-4831', 'Jean Garza', '91 Havey Plaza Plano, TX', '(972) 738-9037'), + ('327-53-6005', 'Andrew Jordan', '38498 Park Meadow Crossing Dallas, TX', '(469) 762-1505'), + ('868-79-0477', 'Harry Marshall', '24 Heffernan Crossing Plano, TX', '(972) 927-0592'), + ('409-03-9079', 'Wayne Franklin', '35 Continental Alley Dallas, TX', '(214) 741-9000'), + ('653-59-9039', 'Lillian Gonzalez', '9922 Arkansas Circle Plano, TX', '(972) 872-9248'), + ('718-47-6143', 'Rachel Bishop', '70227 Vernon Way Dallas, TX', '(972) 798-2559'), + ('841-96-3890', 'Alan Lynch', '332 Dayton Plaza Plano, TX', '(214) 930-8850'), + ('931-94-4929', 'Carlos Ray', '62 Monument Park Dallas, TX', '(469) 942-7494'), + ('720-85-0355', 'Frank Taylor', '5 Lien Center Dallas, TX', '(214) 621-5602'), + ('836-23-8686', 'Melissa Burton', '5 Springs Lane Dallas, TX', '(469) 567-0603'), + ('999-28-2020', 'Anne Nelson', '34365 Kropf Park Dallas, TX', '(972) 904-1974'), + ('919-67-6865', 'Amanda Bailey', '29 Continental Point Dallas, TX', '(214) 819-4931'), + ('362-09-9834', 'Chris Duncan', '35 Alpine Avenue Dallas, TX', '(214) 940-2965'), + ('762-37-8033', 'Elizabeth Gibson', '6602 Namekagon Way Dallas, TX', '(972) 863-7573'), + ('424-50-1775', 'Keith Brown', '471 Burning Wood Park Dallas, TX', '(214) 849-4296'), + ('221-74-2881', 'Karen Sanchez', '71 Old Gate Point Dallas, TX', '(214) 915-6512'), + ('467-35-1217', 'Marilyn Meyer', '3981 Lerdahl Point Dallas, TX', '(972) 956-5459'), + ('142-41-8822', 'Harold Little', '81271 Evergreen Lane Dallas, TX', '(469) 888-8096'), + ('626-74-9990', 'Henry Dean', '4913 Brentwood Center Dallas, TX', '(469) 950-2072'), + ('468-99-7446', 'Joyce Rivera', '3 Johnson Pass Dallas, TX', '(469) 982-3317'), + ('560-85-1499', 'Marie Johnson', '6 Graedel Street Richardson, TX', '(972) 701-4623'), + ('650-87-6068', 'Aaron Clark', '5169 Bashford Point Plano, TX', '(214) 931-4554'), + ('262-55-8913', 'Anne Campbell', '0140 Grover Place Dallas, TX', '(214) 962-1673'), + ('691-11-1485', 'Janice Garrett', '439 Prentice Hill Dallas, TX', '(972) 911-1842'), + ('772-97-8655', 'Bobby Johnson', '7 Moulton Crossing Dallas, TX', '(469) 948-5326'), + ('807-93-7008', 'Fred Welch', '0 Lukken Alley Dallas, TX', '(214) 955-3447'), + ('464-18-8734', 'Laura Chapman', '304 Lunder Hill Richardson, TX', '(469) 823-5855'), + ('307-70-2725', 'Albert Castillo', '2 Beilfuss Center Dallas, TX', '(214) 705-0297'), + ('528-91-7558', 'Julia Oliver', '42421 Farmco Street Dallas, TX', '(972) 780-5174'), + ('408-53-0520', 'David Russell', '57840 Laurel Alley Dallas, TX', '(972) 852-7339'), + ('520-76-6004', 'Russell Montgomery', '18 Hagan Pass Dallas, TX', '(972) 389-6002'), + ('660-90-8261', 'Joe Price', '1 Leroy Park Dallas, TX', '(214) 527-9098'), + ('799-34-0025', 'Anthony Harrison', '7123 Bunker Hill Junction Dallas, TX', '(972) 970-2532'), + ('870-49-6647', 'Gregory Hudson', '42 Park Meadow Park Dallas, TX', '(972) 883-9738'), + ('707-63-8293', 'Michelle Chapman', '29 Rieder Pass Dallas, TX', '(972) 911-7317'), + ('469-39-1386', 'Chris Bailey', '8 South Court Dallas, TX', '(214) 935-4761'), + ('553-57-0780', 'Kevin Wood', '0 Pierstorff Park Dallas, TX', '(469) 876-1298'), + ('316-43-6159', 'Louise Spencer', '4462 Blaine Avenue Dallas, TX', '(214) 877-5122'), + ('455-51-2609', 'Ruth Lee', '58 Waubesa Avenue Dallas, TX', '(469) 940-2041'), + ('995-34-9938', 'Carolyn Alexander', '634 Judy Pass Dallas, TX', '(214) 882-9567'), + ('149-26-9323', 'Barbara Rivera', '93 North Pass Dallas, TX', '(972) 696-7148'), + ('889-46-9650', 'Adam Mcdonald', '20734 Beilfuss Park Dallas, TX', '(972) 846-7469'), + ('242-32-1789', 'Sara Graham', '4992 Ridgeview Court Dallas, TX', '(469) 586-2569'), + ('900-93-1217', 'Henry Spencer', '919 7th Plaza Dallas, TX', '(214) 949-3097'), + ('669-83-7441', 'Lillian Austin', '8 Eagle Crest Way Richardson, TX', '(469) 980-2648'), + ('989-79-1559', 'Jerry Pierce', '16 Charing Cross Center Dallas, TX', '(469) 546-3297'), + ('336-44-7837', 'Emily Ruiz', '1 Claremont Junction Plano, TX', '(214) 961-5149'), + ('928-58-0480', 'Lillian Baker', '111 Village Plaza Richardson, TX', '(469) 643-7532'), + ('186-05-2080', 'Ruth Butler', '41052 Waubesa Lane Richardson, TX', '(972) 760-5201'), + ('922-11-3673', 'Catherine Welch', '666 Kim Crossing Dallas, TX', '(972) 895-2567'), + ('209-54-9222', 'Howard Castillo', '4069 Oneill Point Richardson, TX', '(214) 332-8692'), + ('352-50-9918', 'Justin Sanders', '2 Mayer Junction Plano, TX', '(214) 883-7551'), + ('651-14-8311', 'Ronald Roberts', '25 South Lane Dallas, TX', '(972) 703-1253'), + ('724-31-5669', 'Jane Harrison', '8070 Clarendon Parkway Dallas, TX', '(469) 907-0689'), + ('506-88-8490', 'Benjamin Grant', '89750 Kenwood Crossing Dallas, TX', '(469) 978-2012'), + ('581-20-4224', 'Harry Miller', '721 High Crossing Court Dallas, TX', '(214) 867-9998'), + ('878-06-0469', 'Matthew Burke', '735 Toban Park Plano, TX', '(972) 915-3614'), + ('246-12-3136', 'Christine Chavez', '560 Atwood Pass Dallas, TX', '(214) 937-6446'), + ('938-95-9106', 'Eric Hernandez', '80149 Haas Court Dallas, TX', '(214) 905-1189'), + ('734-24-8047', 'Diana Jones', '499 Pearson Junction Dallas, TX', '(469) 838-4299'), + ('829-11-9179', 'Janet Rice', '35291 Bunker Hill Way Dallas, TX', '(214) 291-3432'), + ('744-91-0994', 'Diane Ruiz', '36 Cambridge Park Dallas, TX', '(469) 888-5191'), + ('981-13-1196', 'Theresa Russell', '589 Northwestern Park Dallas, TX', '(214) 851-1236'), + ('770-00-5747', 'Wayne Hunt', '9818 Westend Center Plano, TX', '(469) 941-4660'), + ('842-92-7572', 'Virginia Gordon', '76 Tony Road Dallas, TX', '(214) 913-8462'), + ('737-53-3435', 'Gloria Rice', '9 Golf View Alley Dallas, TX', '(214) 920-9672'), + ('451-56-2506', 'Mildred Butler', '67 Westerfield Avenue Dallas, TX', '(469) 283-4838'), + ('368-38-1777', 'Debra West', '4799 Melody Parkway Richardson, TX', '(972) 966-6826'), + ('199-36-9132', 'Nancy Wheeler', '737 Doe Crossing Trail Dallas, TX', '(972) 898-3947'), + ('931-76-2866', 'Lawrence Stone', '8 Darwin Alley Richardson, TX', '(214) 949-9916'), + ('371-28-8168', 'Rachel Reyes', '6 Anniversary Alley Richardson, TX', '(972) 939-6714'), + ('435-69-4707', 'Amanda Simpson', '15 Dixon Street Dallas, TX', '(972) 740-1910'), + ('235-32-3985', 'Lori Carroll', '213 Forest Point Dallas, TX', '(469) 958-8957'), + ('148-55-6625', 'Bobby Austin', '62352 Pankratz Road Richardson, TX', '(972) 912-7272'), + ('253-35-6885', 'Brenda Carpenter', '6664 Prairie Rose Point Dallas, TX', '(214) 986-1471'), + ('817-44-1979', 'Sharon Mason', '33 Moulton Lane Dallas, TX', '(972) 901-1745'), + ('639-31-4924', 'Joshua Ross', '4376 Kropf Road Dallas, TX', '(214) 915-4707'), + ('926-53-1333', 'Melissa Mccoy', '08770 Moland Lane Richardson, TX', '(469) 926-4571'), + ('728-54-9849', 'Bobby Kelly', '79 Burning Wood Pass Dallas, TX', '(214) 860-1350'), + ('846-65-0817', 'Jennifer Ortiz', '25989 Mccormick Drive Dallas, TX', '(469) 874-7030'), + ('810-70-4323', 'Chris Carter', '50486 Grim Alley Dallas, TX', '(469) 916-1204'), + ('919-26-6378', 'Christopher Gonzales', '49163 Moose Point Dallas, TX', '(214) 959-6901'), + ('966-29-4430', 'Albert Gibson', '90 Lillian Trail Dallas, TX', '(469) 951-7990'), + ('435-99-9670', 'Doris Rose', '1891 Melrose Terrace Richardson, TX', '(972) 849-4915'), + ('416-21-6778', 'Marilyn Jordan', '61 Eagle Crest Junction Richardson, TX', '(214) 796-3512'), + ('306-68-0158', 'Joe Bowman', '26225 8th Road Dallas, TX', '(972) 882-8221'), + ('840-12-3188', 'Denise Price', '46 Knutson Drive Richardson, TX', '(972) 488-9450'), + ('332-41-0512', 'Evelyn Edwards', '7867 Nancy Park Dallas, TX', '(972) 209-1095'), + ('196-02-7403', 'Kimberly Hernandez', '2 Buell Drive Dallas, TX', '(469) 779-6890'), + ('388-55-1450', 'Norma Boyd', '35 Service Court Dallas, TX', '(972) 833-7491'), + ('395-16-7095', 'Sharon Ramos', '39 Daystar Hill Dallas, TX', '(214) 898-7050'), + ('541-25-5056', 'Rachel Riley', '01017 Jay Plaza Dallas, TX', '(972) 803-8359'), + ('132-58-8039', 'Randy Jenkins', '794 Buena Vista Road Dallas, TX', '(469) 894-9345'), + ('774-38-4043', 'John Clark', '0708 North Terrace Dallas, TX', '(469) 918-1359'), + ('495-55-0985', 'Ruby Hansen', '8756 Wayridge Drive Dallas, TX', '(469) 941-4442'), + ('739-90-9261', 'Ashley Peters', '28880 4th Alley Dallas, TX', '(972) 893-4339'), + ('377-63-8268', 'Albert Garcia', '0 Maple Terrace Plano, TX', '(972) 931-7094'), + ('150-30-2288', 'Clarence Holmes', '291 1st Terrace Richardson, TX', '(214) 952-6641'), + ('849-92-8312', 'Julie Parker', '3377 Dahle Street Dallas, TX', '(214) 876-9952'), + ('953-43-1417', 'Michael Martinez', '0967 Melrose Avenue Dallas, TX', '(214) 935-8776'), + ('337-86-8085', 'William Berry', '9 Hagan Street Dallas, TX', '(214) 885-1966'), + ('465-95-8833', 'Gerald Burke', '5175 Florence Center Dallas, TX', '(469) 999-7380'), + ('960-83-9340', 'Linda Rodriguez', '2427 Reindahl Park Dallas, TX', '(972) 664-5725'), + ('709-91-1641', 'Terry Stephens', '27291 Farragut Court Dallas, TX', '(972) 890-0078'), + ('423-06-4282', 'Timothy Hunt', '4219 Westport Hill Richardson, TX', '(214) 950-1960'), + ('622-29-9732', 'Richard Cruz', '813 Darwin Avenue Dallas, TX', '(972) 889-2210'), + ('631-12-8701', 'Gregory Gomez', '3993 American Circle Dallas, TX', '(972) 867-8273'), + ('699-59-0681', 'Louise Garza', '14760 Bobwhite Terrace Dallas, TX', '(469) 893-7918'), + ('762-63-8070', 'James Adams', '055 Alpine Way Richardson, TX', '(972) 925-4501'), + ('149-42-1309', 'Victor Gardner', '12141 Corscot Junction Dallas, TX', '(972) 962-2925'), + ('531-67-5941', 'Ernest Lane', '66226 Nova Way Plano, TX', '(469) 999-6823'), + ('156-63-1943', 'Joe Griffin', '205 Fuller Plaza Dallas, TX', '(469) 912-4055'), + ('664-38-4205', 'Sean Kelly', '3 Gerald Court Dallas, TX', '(214) 970-9971'), + ('662-87-7945', 'Angela Turner', '53 Colorado Pass Plano, TX', '(469) 945-2673'), + ('678-62-8472', 'Jerry Howard', '68198 Monterey Parkway Dallas, TX', '(972) 936-3734'), + ('216-37-2770', 'Ashley Lopez', '405 Hovde Way Dallas, TX', '(972) 956-4194'), + ('302-51-0303', 'Albert Marshall', '933 Claremont Avenue Dallas, TX', '(972) 771-8796'), + ('194-03-3629', 'Michelle Williams', '07 Marquette Road Dallas, TX', '(469) 921-7056'), + ('303-31-8810', 'Sharon Wells', '23 Twin Pines Parkway Dallas, TX', '(972) 841-5472'), + ('785-25-4186', 'Doris Gordon', '358 Pearson Court Dallas, TX', '(469) 945-1043'), + ('395-22-8160', 'Patricia Long', '76 Jana Place Plano, TX', '(469) 711-2650'), + ('374-21-6461', 'Helen Lee', '65137 Summerview Crossing Dallas, TX', '(469) 656-8757'), + ('746-77-1077', 'Kimberly Collins', '9629 Delaware Crossing Dallas, TX', '(469) 789-3606'), + ('376-27-2540', 'Mary Dunn', '6848 Sunbrook Parkway Dallas, TX', '(214) 961-2821'), + ('756-45-3967', 'Amy Harper', '5863 Boyd Drive Dallas, TX', '(214) 988-3185'), + ('873-25-3246', 'Bobby Long', '35 Paget Circle Plano, TX', '(214) 910-1295'), + ('447-50-8678', 'Sara Young', '71916 Sherman Point Plano, TX', '(972) 918-2624'), + ('303-61-3106', 'Kathy Oliver', '0 Victoria Junction Dallas, TX', '(972) 784-8364'), + ('693-54-6232', 'Ruby Ray', '17 Hermina Point Dallas, TX', '(214) 987-1219'), + ('107-16-4727', 'Lori Schmidt', '181 Rowland Hill Dallas, TX', '(469) 786-6455'), + ('160-60-2907', 'Raymond Fox', '1 Farwell Avenue Dallas, TX', '(214) 986-0132'), + ('192-57-3114', 'Nancy Turner', '1 Vermont Alley Dallas, TX', '(214) 984-4444'), + ('214-13-7727', 'Gregory Richards', '9 Vidon Street Dallas, TX', '(214) 911-5776'), + ('480-37-2448', 'Lawrence Perez', '6441 Derek Junction Dallas, TX', '(972) 932-7049'), + ('279-03-2319', 'Thomas Pierce', '73803 Prairieview Alley Dallas, TX', '(214) 837-7005'), + ('860-31-5301', 'Steve Larson', '6 Nobel Trail Dallas, TX', '(469) 818-8073'), + ('375-32-0893', 'Aaron Coleman', '62 Golden Leaf Crossing Plano, TX', '(972) 965-7245'), + ('335-17-5061', 'Joe Daniels', '916 Marcy Way Richardson, TX', '(972) 852-7588'), + ('273-16-3483', 'Theresa Porter', '8868 Blaine Pass Dallas, TX', '(214) 841-2263'), + ('690-78-4766', 'Kathleen Crawford', '44 Elmside Place Dallas, TX', '(214) 466-2521'), + ('371-48-9808', 'Joe Bradley', '90362 Kipling Plaza Dallas, TX', '(214) 934-9993'), + ('957-05-0987', 'Paul Jacobs', '512 Tennessee Place Dallas, TX', '(214) 842-8747'), + ('229-10-8054', 'Andrew Reid', '7654 Moland Terrace Dallas, TX', '(972) 610-4548'), + ('714-89-8210', 'Ralph George', '072 Merchant Trail Dallas, TX', '(972) 917-6796'), + ('401-33-5380', 'Jeremy Brown', '2 Old Shore Park Plano, TX', '(469) 982-3476'), + ('953-58-5532', 'Nicholas Kennedy', '2067 Jana Parkway Dallas, TX', '(214) 951-6843'), + ('818-63-4715', 'Ronald Wells', '37 Prairieview Parkway Plano, TX', '(469) 672-3875'), + ('984-16-0277', 'Albert Gilbert', '7169 Scoville Avenue Dallas, TX', '(972) 599-7668'), + ('762-90-9837', 'Jason Turner', '208 Summit Park Dallas, TX', '(972) 919-7729'), + ('229-26-6155', 'Arthur Spencer', '624 Kropf Terrace Dallas, TX', '(469) 790-4776'), + ('673-35-9377', 'Bonnie Ray', '20935 Vahlen Pass Dallas, TX', '(469) 690-0504'), + ('414-82-6319', 'Carol Ryan', '43 Sloan Avenue Dallas, TX', '(469) 959-3742'), + ('832-18-4025', 'Kevin Little', '244 Tony Center Dallas, TX', '(214) 865-6806'), + ('562-28-1756', 'Todd Hall', '3896 Corscot Circle Dallas, TX', '(214) 623-7406'), + ('243-20-4627', 'Ralph Hart', '16083 Lillian Crossing Dallas, TX', '(469) 916-1028'), + ('152-91-1428', 'Ruby Martin', '6 Merry Trail Dallas, TX', '(469) 781-1733'), + ('200-92-4036', 'Julia Kim', '30 Corscot Terrace Richardson, TX', '(972) 826-8872'), + ('869-20-2424', 'Lawrence Reyes', '70001 Lunder Pass Plano, TX', '(469) 952-7199'), + ('766-56-6664', 'Ronald Rivera', '0 Fuller Trail Dallas, TX', '(469) 977-6988'), + ('966-33-9584', 'Kenneth Medina', '652 Melody Avenue Dallas, TX', '(469) 815-2235'), + ('761-70-9256', 'Angela Clark', '916 Elka Place Dallas, TX', '(972) 726-9437'), + ('191-21-0161', 'Diane Brown', '4221 Petterle Junction Plano, TX', '(972) 633-7951'), + ('597-21-1875', 'Jack Ward', '00625 Warner Street Dallas, TX', '(972) 802-4440'), + ('175-99-0098', 'Roger Powell', '48387 Corben Junction Dallas, TX', '(214) 803-6520'), + ('541-56-2611', 'Rachel Cook', '214 Eastwood Hill Dallas, TX', '(214) 862-3951'), + ('454-07-8145', 'Karen Burke', '09242 Victoria Plaza Dallas, TX', '(469) 897-7697'), + ('947-35-1972', 'Kimberly Robinson', '26233 Oneill Junction Dallas, TX', '(214) 810-2174'), + ('679-65-6095', 'Samuel Bryant', '95 Pearson Pass Dallas, TX', '(972) 509-6994'), + ('522-26-5924', 'Russell Berry', '27 Moose Plaza Plano, TX', '(214) 969-7916'), + ('624-87-7517', 'Paula Frazier', '713 Havey Court Dallas, TX', '(469) 704-7407'), + ('502-80-0344', 'Anna Rice', '9 Lunder Center Dallas, TX', '(469) 960-1948'), + ('385-99-4195', 'Diane Stanley', '96 Roth Hill Richardson, TX', '(214) 955-8100'), + ('678-08-8971', 'Billy Snyder', '8170 Clarendon Crossing Dallas, TX', '(972) 883-8736'), + ('850-26-9485', 'Juan Bailey', '6 Logan Crossing Plano, TX', '(972) 954-9785'), + ('119-17-4689', 'Patricia Green', '27001 Mayfield Street Dallas, TX', '(972) 880-1670'), + ('640-57-8903', 'Louise Harrison', '4383 Forest Dale Hill Plano, TX', '(972) 591-6825'), + ('915-81-5067', 'Scott Cunningham', '1312 Kinsman Terrace Dallas, TX', '(469) 940-8227'), + ('287-08-2149', 'Steve White', '57 Vera Lane Dallas, TX', '(972) 573-3704'), + ('915-62-6265', 'Brandon Jones', '8845 Blackbird Terrace Dallas, TX', '(214) 982-8588'), + ('622-62-2819', 'Rebecca Reed', '012 Sunbrook Place Plano, TX', '(469) 800-1493'), + ('330-90-1862', 'Kelly Hawkins', '517 Bay Crossing Dallas, TX', '(972) 839-2019'), + ('159-37-4167', 'Kenneth Hudson', '16 Porter Trail Dallas, TX', '(972) 977-7399'), + ('332-96-2350', 'Tammy Butler', '0897 Amoth Hill Dallas, TX', '(214) 934-8616'), + ('179-13-6812', 'Steven Lane', '0185 Hollow Ridge Street Dallas, TX', '(214) 993-0045'), + ('640-94-5337', 'Jean West', '5487 Tomscot Place Plano, TX', '(214) 814-4521'), + ('381-83-4152', 'Keith Mason', '1 Norway Maple Park Richardson, TX', '(469) 237-7698'), + ('480-06-1832', 'Jose Morales', '36703 Pennsylvania Center Dallas, TX', '(214) 936-8952'), + ('360-26-2573', 'Johnny Harris', '816 Ramsey Pass Dallas, TX', '(214) 800-8878'), + ('271-80-3746', 'Harold Romero', '864 Clove Plaza Dallas, TX', '(972) 958-7058'), + ('161-60-2246', 'Jose Phillips', '726 Farwell Road Dallas, TX', '(469) 922-7795'), + ('968-21-3159', 'Tina Nguyen', '7814 Fairview Avenue Dallas, TX', '(214) 858-2813'), + ('994-00-7169', 'Michelle Hill', '70 Jana Plaza Plano, TX', '(214) 805-4933'), + ('164-07-0343', 'Henry Powell', '1 Arapahoe Plaza Dallas, TX', '(469) 861-9090'), + ('491-05-7221', 'Donna Nelson', '4 Homewood Alley Dallas, TX', '(469) 700-9754'), + ('511-95-4134', 'Louis Perry', '1655 Heffernan Pass Dallas, TX', '(214) 820-3573'), + ('196-78-4374', 'Paul Lee', '41406 Ridge Oak Parkway Dallas, TX', '(972) 810-6175'), + ('112-60-2094', 'Diana King', '65113 Saint Paul Court Dallas, TX', '(972) 748-9174'), + ('376-03-6774', 'Evelyn Campbell', '68 Mifflin Court Dallas, TX', '(214) 743-4130'), + ('277-81-5111', 'Louis Howard', '0 Lyons Park Dallas, TX', '(972) 941-3029'), + ('658-05-1653', 'Irene Robinson', '04 Fairfield Parkway Dallas, TX', '(469) 943-6537'), + ('155-87-2365', 'Alice Armstrong', '7068 Derek Alley Dallas, TX', '(214) 911-6490'), + ('665-02-8900', 'Eugene Woods', '56245 Graceland Way Dallas, TX', '(972) 832-8839'), + ('670-32-5349', 'Louis Taylor', '09508 Thackeray Center Dallas, TX', '(214) 932-0979'), + ('416-31-2379', 'Deborah Owens', '12322 Hayes Center Dallas, TX', '(214) 971-1946'), + ('346-41-4220', 'Marilyn Collins', '305 1st Crossing Dallas, TX', '(972) 927-4971'), + ('475-06-7256', 'Virginia Gonzalez', '03722 Huxley Point Dallas, TX', '(214) 864-3430'), + ('701-28-5911', 'Helen Ryan', '51 Kennedy Parkway Dallas, TX', '(214) 988-0720'), + ('646-84-1183', 'John Myers', '4 Mendota Junction Dallas, TX', '(214) 437-0969'), + ('748-14-1656', 'Mary Collins', '261 Almo Alley Dallas, TX', '(469) 987-5918'), + ('802-79-0419', 'Raymond Carter', '71 Eastwood Way Dallas, TX', '(972) 891-0800'), + ('124-07-9804', 'Mary Ramos', '6 Anderson Lane Plano, TX', '(214) 989-0536'), + ('311-30-5644', 'Kathy Ferguson', '20 7th Place Dallas, TX', '(214) 607-7944'), + ('156-04-8304', 'Clarence Morales', '4645 Homewood Trail Plano, TX', '(214) 900-0324'), + ('590-28-7564', 'Teresa Campbell', '0241 Bultman Point Dallas, TX', '(214) 930-0030'), + ('157-33-0075', 'Roger Nguyen', '249 Marquette Center Dallas, TX', '(972) 931-8604'), + ('326-20-8507', 'Phyllis Long', '9 Bluestem Circle Dallas, TX', '(972) 661-7458'), + ('536-17-5051', 'Michael Taylor', '18398 Florence Place Dallas, TX', '(972) 833-7591'), + ('906-45-2011', 'John Watkins', '1669 Ridgeview Hill Richardson, TX', '(214) 925-0299'), + ('336-89-2349', 'Carolyn Garcia', '9 Dapin Trail Dallas, TX', '(214) 920-2780'), + ('255-25-6148', 'Donald Phillips', '7 Alpine Alley Dallas, TX', '(214) 813-6913'), + ('292-88-0298', 'Deborah Watson', '75 Carey Parkway Dallas, TX', '(469) 809-1498'), + ('640-78-6255', 'Annie Shaw', '66820 Bunting Plaza Dallas, TX', '(972) 965-6678'), + ('847-47-8564', 'Alan Price', '84 Rutledge Junction Dallas, TX', '(972) 776-5854'), + ('126-26-3636', 'Kathryn Morrison', '59100 Onsgard Crossing Dallas, TX', '(972) 875-1440'), + ('471-61-6333', 'Christopher Johnson', '777 Ludington Terrace Dallas, TX', '(972) 679-9556'), + ('439-03-8518', 'Joshua Bishop', '0 Grim Place Dallas, TX', '(214) 600-5143'), + ('391-22-2309', 'Ernest Jones', '8085 Weeping Birch Alley Dallas, TX', '(972) 948-1978'), + ('897-34-6632', 'Melissa Banks', '578 Reindahl Trail Dallas, TX', '(972) 993-2150'), + ('985-72-2421', 'Arthur Lane', '26696 Steensland Court Plano, TX', '(214) 959-8756'), + ('325-85-6108', 'Joyce Perkins', '8 Bluestem Park Dallas, TX', '(972) 942-5394'), + ('506-85-1419', 'Judith Sullivan', '95194 Badeau Trail Dallas, TX', '(972) 890-8729'), + ('103-27-3706', 'Billy Johnson', '95272 Kensington Plaza Dallas, TX', '(972) 823-5333'), + ('378-57-9726', 'Marie Bell', '74 Anderson Avenue Dallas, TX', '(469) 991-0533'), + ('764-94-7005', 'Jimmy Ford', '14311 Merchant Court Dallas, TX', '(469) 937-3556'), + ('667-37-5162', 'Alice Mccoy', '6 Nelson Avenue Dallas, TX', '(469) 848-7697'), + ('946-02-5323', 'Richard Matthews', '121 Warrior Alley Dallas, TX', '(972) 963-0887'), + ('143-59-3681', 'Daniel Foster', '84 Charing Cross Avenue Dallas, TX', '(972) 838-0899'), + ('251-35-0397', 'Earl Banks', '0 Lindbergh Place Dallas, TX', '(972) 921-9987'), + ('709-47-1259', 'Scott Rogers', '9 Gulseth Circle Dallas, TX', '(469) 936-7824'), + ('211-17-9786', 'Richard Baker', '68093 Ridge Oak Junction Dallas, TX', '(972) 957-8835'), + ('375-17-9234', 'Robin Mcdonald', '3407 Old Gate Circle Dallas, TX', '(972) 858-2976'), + ('512-45-0642', 'Victor Riley', '219 Fair Oaks Park Dallas, TX', '(214) 932-7141'), + ('727-22-0778', 'Anne Lopez', '62 Truax Terrace Dallas, TX', '(972) 987-8304'), + ('315-71-5729', 'Margaret Fisher', '53744 Prentice Alley Dallas, TX', '(469) 711-2192'), + ('897-19-4834', 'Amanda Perkins', '629 Troy Way Dallas, TX', '(972) 937-2368'), + ('619-76-5825', 'Linda Perry', '83189 Esch Circle Dallas, TX', '(214) 865-3742'), + ('272-90-8955', 'Wanda Lawrence', '6239 Mandrake Alley Dallas, TX', '(214) 772-4765'), + ('100-07-8344', 'Tina Mitchell', '42613 Pankratz Hill Dallas, TX', '(972) 791-8636'), + ('392-34-3414', 'Jacqueline Gordon', '3603 Vernon Junction Dallas, TX', '(972) 979-5379'), + ('850-03-5811', 'Betty Hunt', '79 Welch Court Dallas, TX', '(214) 615-4372'), + ('190-47-5767', 'Kevin Webb', '156 Lukken Lane Dallas, TX', '(214) 947-7416'), + ('529-87-4076', 'Joshua Evans', '225 Dixon Center Richardson, TX', '(214) 882-4750'), + ('836-54-2070', 'Kathleen Peters', '5024 Park Meadow Park Dallas, TX', '(214) 838-2643'), + ('265-54-1326', 'Marie Mason', '651 Cody Trail Dallas, TX', '(972) 918-8605'), + ('941-12-6153', 'Jean Morrison', '68 Stuart Parkway Dallas, TX', '(972) 767-8868'), + ('190-47-8274', 'Daniel Hudson', '16609 Oak Valley Plaza Dallas, TX', '(214) 921-7666'), + ('318-20-1054', 'Judith Dixon', '8 Almo Court Dallas, TX', '(972) 908-2892'), + ('963-64-2281', 'Roy Morales', '05025 Muir Point Dallas, TX', '(972) 635-1013'), + ('531-84-3873', 'Justin Marshall', '972 Crownhardt Circle Plano, TX', '(469) 778-6036'), + ('635-15-6122', 'Gregory Smith', '59810 Erie Circle Dallas, TX', '(972) 868-0952'), + ('552-29-0884', 'Deborah Reed', '426 Swallow Hill Richardson, TX', '(214) 981-2497'), + ('578-14-7271', 'Pamela King', '1754 Pennsylvania Way Plano, TX', '(214) 989-0559'), + ('520-65-9256', 'Alan Welch', '1102 Magdeline Court Richardson, TX', '(469) 984-4212'), + ('393-11-9047', 'Samuel Moore', '41307 Grasskamp Drive Dallas, TX', '(972) 850-8906'), + ('343-72-6326', 'Katherine Holmes', '0 Rowland Avenue Dallas, TX', '(972) 954-3190'), + ('900-26-2190', 'Harold Williams', '7576 Vermont Plaza Dallas, TX', '(214) 889-7673'), + ('133-85-2262', 'Evelyn Nguyen', '590 Independence Circle Dallas, TX', '(469) 746-7480'), + ('824-55-4537', 'Joe Cooper', '1421 Linden Avenue Plano, TX', '(469) 977-1179'), + ('784-92-2076', 'Helen Fernandez', '70499 Michigan Circle Dallas, TX', '(469) 831-8504'), + ('151-58-6475', 'Nicholas Gibson', '2454 Clemons Crossing Plano, TX', '(972) 906-3742'), + ('122-74-8518', 'Angela Tucker', '50 Brentwood Crossing Dallas, TX', '(972) 650-5349'), + ('917-44-4969', 'Amy Washington', '93083 Elka Lane Dallas, TX', '(972) 817-2285'), + ('688-02-5499', 'Gregory Sanchez', '230 Briar Crest Road Dallas, TX', '(972) 860-8215'), + ('941-81-2456', 'Terry Kennedy', '55 Summer Ridge Point Dallas, TX', '(214) 945-1527'), + ('370-79-5137', 'Charles Bradley', '10 Kenwood Avenue Dallas, TX', '(214) 763-4487'), + ('972-75-6100', 'Judy Gilbert', '0 Roth Alley Dallas, TX', '(214) 917-8414'), + ('820-05-9916', 'Paul Chapman', '57011 Reindahl Terrace Richardson, TX', '(469) 918-9529'), + ('536-88-7676', 'Cheryl Taylor', '4916 Stang Hill Plano, TX', '(469) 602-9760'), + ('753-82-4781', 'Linda Nelson', '46 Lukken Hill Dallas, TX', '(214) 728-3594'), + ('617-28-1448', 'Edward Harvey', '2989 Leroy Point Dallas, TX', '(469) 999-8714'), + ('735-50-3554', 'Carolyn Chapman', '9524 Amoth Lane Dallas, TX', '(214) 947-2089'), + ('525-50-2241', 'Jack Hudson', '2 Claremont Drive Dallas, TX', '(972) 544-4023'), + ('534-11-4411', 'Adam Gardner', '907 Corben Alley Dallas, TX', '(214) 548-0751'), + ('363-38-9674', 'Julia Pierce', '8 Heath Avenue Richardson, TX', '(469) 701-5525'), + ('407-53-1627', 'Janet Robertson', '20 Mesta Plaza Dallas, TX', '(214) 836-2849'), + ('240-04-1102', 'Maria Romero', '188 Loeprich Drive Richardson, TX', '(214) 845-7095'), + ('472-98-6371', 'Diana Rogers', '58 Welch Place Dallas, TX', '(469) 502-6533'), + ('663-09-0104', 'Evelyn Carter', '8 Fair Oaks Alley Plano, TX', '(469) 825-0017'), + ('535-55-5684', 'Bruce Armstrong', '9 Memorial Junction Plano, TX', '(214) 875-5764'), + ('325-18-4093', 'Janice Matthews', '967 Mifflin Center Dallas, TX', '(469) 914-7781'), + ('371-06-4026', 'Mildred Nelson', '9598 Union Terrace Dallas, TX', '(972) 452-3908'), + ('222-63-3734', 'Shawn Robertson', '6590 Holy Cross Way Dallas, TX', '(972) 656-2026'), + ('276-49-3884', 'Elizabeth Tucker', '65 Fulton Court Dallas, TX', '(214) 987-6456'), + ('122-23-9319', 'Dorothy Harper', '83 Boyd Center Dallas, TX', '(214) 827-1293'), + ('323-59-6505', 'Jack Woods', '10 Crest Line Pass Dallas, TX', '(214) 942-9460'), + ('436-60-5376', 'Eric Jordan', '154 Redwing Way Richardson, TX', '(469) 924-3271'), + ('283-97-2577', 'Marilyn Taylor', '57 Farmco Park Dallas, TX', '(214) 806-7627'), + ('248-17-2518', 'Timothy Edwards', '109 Larry Road Dallas, TX', '(214) 974-9365'), + ('637-48-2284', 'Carol Welch', '121 Ohio Road Dallas, TX', '(214) 821-0016'), + ('164-19-4566', 'Sandra Reed', '1876 Westend Court Plano, TX', '(469) 896-9764'), + ('498-44-8648', 'Jason Dunn', '90950 Sherman Way Richardson, TX', '(972) 712-6791'), + ('741-86-2253', 'Paula Jordan', '0 Schurz Lane Dallas, TX', '(214) 956-1394'), + ('694-72-1725', 'Willie Hernandez', '46 Bluejay Crossing Dallas, TX', '(469) 869-1585'), + ('500-83-0564', 'Chris Phillips', '2563 Macpherson Avenue Dallas, TX', '(214) 795-5477'), + ('849-33-1958', 'Juan Hayes', '5 Melvin Junction Dallas, TX', '(469) 666-0063'), + ('398-41-8926', 'Helen Lopez', '2 Maryland Park Richardson, TX', '(214) 904-8793'), + ('642-59-9156', 'Justin Porter', '66 Lerdahl Street Dallas, TX', '(469) 820-0587'), + ('236-99-9327', 'Johnny Garcia', '85 Sloan Street Dallas, TX', '(469) 962-1344'), + ('590-51-2989', 'Katherine Taylor', '00 Carey Alley Dallas, TX', '(469) 755-0265'), + ('847-74-4073', 'Jacqueline Howell', '30 Meadow Valley Trail Dallas, TX', '(972) 817-4256'), + ('743-83-9247', 'Earl Richards', '431 Birchwood Court Dallas, TX', '(214) 959-4661'), + ('482-29-7565', 'Clarence Woods', '7 Schiller Road Plano, TX', '(214) 913-1723'), + ('209-78-7735', 'Jessica Gonzales', '645 Rutledge Road Dallas, TX', '(972) 938-3645'), + ('831-59-6111', 'Matthew Warren', '4561 Texas Lane Dallas, TX', '(972) 971-6529'), + ('280-98-5533', 'Kathy Smith', '8726 Packers Parkway Dallas, TX', '(214) 953-4343'), + ('925-63-9699', 'Keith Collins', '99196 Surrey Court Dallas, TX', '(214) 788-7439'), + ('556-38-3135', 'Joan Garrett', '43 Scoville Pass Plano, TX', '(972) 954-7260'), + ('434-71-8048', 'Diane Little', '11 Donald Road Plano, TX', '(469) 688-9174'), + ('372-72-3479', 'Wanda Mendoza', '34327 Sunbrook Hill Dallas, TX', '(469) 569-6125'), + ('657-61-4433', 'Martin Nguyen', '08974 Bowman Way Dallas, TX', '(469) 996-7003'), + ('967-28-8561', 'Donald Andrews', '8 Kennedy Terrace Dallas, TX', '(972) 828-3356'), + ('895-97-4019', 'Ruth Weaver', '46239 Kipling Terrace Dallas, TX', '(214) 802-4320'), + ('469-60-9195', 'Patricia Gilbert', '43 Mariners Cove Center Dallas, TX', '(214) 814-7712'), + ('286-87-5683', 'Carlos Ford', '0 Dovetail Avenue Dallas, TX', '(214) 658-8568'), + ('988-74-6162', 'Louise Arnold', '55 Mandrake Crossing Dallas, TX', '(972) 903-4805'), + ('284-97-8780', 'Henry Nichols', '08 Oak Valley Park Richardson, TX', '(214) 941-0961'), + ('186-84-1844', 'Kathleen Hayes', '72 Mcguire Road Dallas, TX', '(469) 895-4109'), + ('458-94-0428', 'Bonnie Mccoy', '83175 Cottonwood Way Dallas, TX', '(214) 913-2990'), + ('419-29-8694', 'Jerry Montgomery', '10 Northland Plaza Dallas, TX', '(214) 826-7806'), + ('219-67-5666', 'Jessica Mccoy', '09315 Trailsway Court Dallas, TX', '(214) 918-2939'), + ('372-21-0737', 'Jean Ryan', '801 Hooker Center Richardson, TX', '(214) 998-5831'), + ('338-73-5511', 'Joyce Clark', '360 Hovde Way Dallas, TX', '(469) 853-7767'), + ('593-87-1261', 'Marilyn Cruz', '4 Esker Plaza Dallas, TX', '(469) 947-7763'), + ('132-70-2552', 'Christine Young', '70 Meadow Valley Pass Richardson, TX', '(972) 989-7753'), + ('795-84-3330', 'Marie Phillips', '8 Pleasure Drive Dallas, TX', '(469) 603-0113'), + ('645-65-7799', 'Ann Bryant', '451 Sundown Drive Dallas, TX', '(214) 940-1980'), + ('338-60-5273', 'Bruce Bailey', '1228 Warner Hill Dallas, TX', '(972) 785-6558'), + ('171-35-4592', 'Julie Fields', '0 Hayes Alley Dallas, TX', '(214) 226-5537'), + ('872-37-7791', 'Gregory Schmidt', '998 Merchant Circle Dallas, TX', '(972) 990-8419'), + ('264-34-8300', 'Marilyn Ryan', '877 Forster Lane Dallas, TX', '(469) 900-2911'), + ('361-84-6572', 'Julia Long', '472 Forest Trail Dallas, TX', '(972) 934-8954'), + ('538-33-3604', 'Victor Peterson', '3653 Sage Parkway Dallas, TX', '(214) 965-4668'), + ('294-41-0480', 'Sara Ruiz', '75507 Center Way Richardson, TX', '(214) 988-8363'), + ('286-27-4771', 'Roy Barnes', '4505 Transport Drive Dallas, TX', '(469) 530-2193'), + ('528-82-3250', 'Anthony Carpenter', '61 Karstens Plaza Dallas, TX', '(214) 939-8741'), + ('774-66-2989', 'Jessica Rodriguez', '3969 Springview Court Dallas, TX', '(469) 846-8175'), + ('147-96-7903', 'Craig Carter', '3 Hayes Plaza Dallas, TX', '(214) 974-6461'), + ('126-49-2208', 'Brandon Ellis', '9617 Summit Terrace Dallas, TX', '(469) 767-8210'), + ('509-31-0770', 'Richard Torres', '19723 Cherokee Drive Dallas, TX', '(972) 915-3282'), + ('335-36-3231', 'Janet Mcdonald', '63455 Division Park Plano, TX', '(469) 586-2793'), + ('862-42-5821', 'Raymond Campbell', '495 Mallard Street Dallas, TX', '(214) 881-9579'), + ('430-93-4149', 'Mark Fields', '03 Menomonie Junction Dallas, TX', '(972) 919-4515'), + ('936-04-6604', 'William Cox', '2 Veith Junction Dallas, TX', '(972) 897-9587'), + ('795-03-9664', 'Ruby Hansen', '759 Mandrake Avenue Dallas, TX', '(214) 912-1668'), + ('737-18-1574', 'Phillip Richards', '29931 Northridge Trail Dallas, TX', '(972) 783-3567'), + ('286-37-8304', 'Richard Jordan', '76466 Milwaukee Lane Dallas, TX', '(469) 998-7983'), + ('314-52-2705', 'Marie Perez', '38 Summer Ridge Court Dallas, TX', '(469) 682-4358'), + ('574-79-3097', 'Cheryl Butler', '68 Maple Court Dallas, TX', '(469) 448-2582'), + ('835-29-8866', 'Michelle Carpenter', '99896 New Castle Trail Dallas, TX', '(469) 780-0762'), + ('496-59-9897', 'Adam Cooper', '74125 Laurel Center Dallas, TX', '(214) 812-8288'), + ('368-19-9311', 'Nancy Shaw', '347 Oak Plaza Dallas, TX', '(214) 849-5837'), + ('414-22-2220', 'Ernest Gomez', '34530 Donald Pass Dallas, TX', '(972) 966-3976'), + ('888-89-3056', 'Wanda Wilson', '3 Rockefeller Point Dallas, TX', '(214) 783-6562'), + ('572-70-8409', 'Melissa Bailey', '94627 Hoard Parkway Dallas, TX', '(972) 870-8953'), + ('114-71-5828', 'Clarence Gray', '797 Merrick Way Dallas, TX', '(972) 951-5685'), + ('104-43-3663', 'Janice Hunter', '3 Sheridan Trail Dallas, TX', '(972) 888-0899'), + ('329-05-3664', 'Raymond Murray', '3083 Crescent Oaks Road Dallas, TX', '(972) 900-8986'), + ('447-69-9321', 'Bruce Hansen', '88200 Johnson Alley Dallas, TX', '(214) 892-9528'), + ('937-66-7915', 'Ryan Mccoy', '27278 American Ash Avenue Dallas, TX', '(469) 786-6255'), + ('764-89-6736', 'Jerry Fowler', '0 Lighthouse Bay Circle Dallas, TX', '(214) 653-3127'), + ('134-92-4609', 'Frank Harper', '8 Fairview Drive Dallas, TX', '(972) 810-8573'), + ('571-08-1675', 'George Garza', '0 Granby Lane Dallas, TX', '(469) 758-5662'), + ('914-59-1431', 'Sharon Olson', '7705 Ridge Oak Plaza Richardson, TX', '(972) 982-4528'), + ('310-91-2067', 'Kathryn Reed', '086 Bunker Hill Way Dallas, TX', '(972) 937-2108'), + ('925-52-2771', 'Randy Weaver', '5 Del Mar Junction Richardson, TX', '(214) 853-7737'), + ('193-13-7825', 'Linda Washington', '8122 Sachtjen Circle Richardson, TX', '(972) 914-5391'), + ('799-37-4997', 'Elizabeth Anderson', '80 Dunning Circle Dallas, TX', '(469) 881-4443'), + ('981-69-8236', 'Henry Kim', '9861 Elmside Crossing Dallas, TX', '(214) 912-9599'), + ('124-22-8351', 'Earl Morales', '16 Manley Pass Dallas, TX', '(214) 651-0786'), + ('980-98-1968', 'Howard Ford', '31553 5th Place Richardson, TX', '(972) 940-7458'), + ('486-25-9016', 'Tammy Fox', '29405 Hauk Road Dallas, TX', '(214) 997-3240'), + ('765-53-6457', 'Sarah Hicks', '38 Lighthouse Bay Pass Plano, TX', '(214) 901-9314'), + ('750-87-6481', 'Diana Montgomery', '2 Welch Parkway Dallas, TX', '(214) 603-6856'), + ('796-84-4632', 'Joan Boyd', '393 School Plaza Dallas, TX', '(469) 882-9965'), + ('944-12-9610', 'Barbara Simmons', '678 Barnett Point Dallas, TX', '(469) 415-7518'), + ('604-14-8118', 'Keith Carroll', '46912 Veith Place Dallas, TX', '(214) 821-2150'), + ('554-70-7857', 'Ruby Bryant', '0502 Dorton Place Dallas, TX', '(214) 583-2918'), + ('968-07-8691', 'Andrew Holmes', '87963 Darwin Plaza Dallas, TX', '(469) 993-5278'), + ('848-01-1355', 'Juan King', '3344 Schlimgen Point Dallas, TX', '(972) 823-3180'), + ('522-56-7195', 'Michael Warren', '1 Northwestern Road Dallas, TX', '(469) 912-0181'), + ('263-49-6672', 'Randy Wagner', '28585 Iowa Pass Richardson, TX', '(972) 981-8393'), + ('916-96-2811', 'Jose Kelly', '088 Cambridge Trail Plano, TX', '(972) 832-9963'), + ('304-18-5907', 'Peter Ford', '3 Boyd Point Dallas, TX', '(214) 978-2937'), + ('381-33-3107', 'Peter Edwards', '70349 Hallows Way Richardson, TX', '(214) 991-6626'), + ('211-11-0916', 'Louise Peters', '79475 Morrow Pass Dallas, TX', '(972) 902-4551'), + ('343-23-0976', 'Stephanie Perry', '08750 Forest Dale Road Dallas, TX', '(214) 899-9004'), + ('792-44-4178', 'Lawrence Adams', '38 Forster Terrace Dallas, TX', '(214) 925-8866'), + ('443-86-2495', 'Gregory Hansen', '419 Longview Trail Plano, TX', '(469) 899-8651'), + ('797-38-1593', 'Ralph Medina', '74 High Crossing Lane Plano, TX', '(469) 953-9007'), + ('223-83-8666', 'Joan Cooper', '52 Fremont Road Dallas, TX', '(972) 842-0287'), + ('732-67-6734', 'Karen George', '560 Menomonie Plaza Dallas, TX', '(469) 551-3026'), + ('639-56-1250', 'Theresa Cunningham', '8148 Florence Drive Dallas, TX', '(469) 861-6774'), + ('506-61-7033', 'Dennis Young', '378 Carberry Place Dallas, TX', '(214) 602-2841'), + ('789-55-8630', 'Joseph Castillo', '4 Surrey Park Dallas, TX', '(469) 916-0494'), + ('100-43-9457', 'Eugene Fisher', '977 Gina Junction Dallas, TX', '(972) 926-5775'), + ('622-93-0486', 'Elizabeth Medina', '044 Prentice Center Plano, TX', '(972) 969-7931'), + ('236-05-8310', 'Joyce Arnold', '48306 Moulton Plaza Plano, TX', '(972) 958-8893'), + ('294-25-9318', 'William Ramos', '20 Red Cloud Trail Richardson, TX', '(972) 950-2750'), + ('317-84-2700', 'Billy Reed', '2 Loftsgordon Alley Dallas, TX', '(972) 853-0282'), + ('802-25-7025', 'Scott Carr', '9 Memorial Place Dallas, TX', '(469) 979-5007'), + ('713-06-2568', 'Doris Carpenter', '55093 Bunting Pass Dallas, TX', '(972) 413-6984'), + ('863-24-4380', 'Aaron Kennedy', '51078 Fisk Parkway Dallas, TX', '(214) 900-5041'), + ('957-88-2521', 'Eugene George', '32186 Katie Park Dallas, TX', '(469) 642-7160'), + ('971-59-7462', 'Marilyn Washington', '7639 Northfield Park Dallas, TX', '(214) 531-0051'), + ('778-11-2383', 'Sara Patterson', '938 Vermont Crossing Dallas, TX', '(972) 871-5585'), + ('432-34-5988', 'Samuel Henry', '031 Hintze Terrace Dallas, TX', '(972) 825-3266'), + ('110-87-5003', 'Phillip Kennedy', '41 Leroy Center Dallas, TX', '(469) 995-0612'), + ('862-95-3192', 'Robin Welch', '4 Texas Trail Dallas, TX', '(972) 778-2143'), + ('639-00-1709', 'Rose Garrett', '2384 Carey Road Plano, TX', '(214) 860-5621'), + ('687-26-7934', 'Rebecca Meyer', '38 Nelson Lane Plano, TX', '(972) 936-2303'), + ('648-00-1339', 'Michelle Reid', '7 Sunbrook Circle Dallas, TX', '(469) 941-2469'), + ('362-56-0347', 'Judy Rice', '49031 Saint Paul Avenue Dallas, TX', '(469) 935-1827'), + ('840-08-8767', 'Kevin Carroll', '36 Jana Lane Dallas, TX', '(469) 964-0568'), + ('268-14-2587', 'Kathryn Owens', '664 Clemons Hill Dallas, TX', '(214) 812-2116'), + ('211-96-5010', 'Brian Elliott', '28 Graedel Hill Dallas, TX', '(972) 857-3817'), + ('704-93-5430', 'Keith Alvarez', '73423 Mallard Park Dallas, TX', '(972) 985-3882'), + ('493-28-0872', 'Christopher Hamilton', '42 Johnson Place Plano, TX', '(972) 756-5173'), + ('104-87-2254', 'Mildred Washington', '093 Reindahl Alley Dallas, TX', '(469) 863-5699'), + ('634-96-0779', 'Maria Patterson', '435 Mockingbird Road Dallas, TX', '(214) 689-4556'), + ('973-88-0017', 'Tammy Romero', '77652 Quincy Junction Dallas, TX', '(469) 653-5925'), + ('701-06-3601', 'Shirley Ellis', '74 Boyd Circle Dallas, TX', '(469) 920-2738'), + ('948-86-4146', 'Gerald Carter', '6829 Aberg Park Dallas, TX', '(214) 994-1903'), + ('405-84-3532', 'Sandra Diaz', '73631 Arapahoe Plaza Dallas, TX', '(214) 832-3930'), + ('648-26-1008', 'Joyce Miller', '2 Annamark Center Dallas, TX', '(972) 961-6545'), + ('401-78-7678', 'Edward Freeman', '415 Di Loreto Plaza Plano, TX', '(972) 989-4204'), + ('138-67-0395', 'Willie Griffin', '990 Moland Lane Dallas, TX', '(214) 928-8621'), + ('576-90-5231', 'Eugene Gibson', '11945 Delaware Trail Dallas, TX', '(972) 954-4027'), + ('511-59-7913', 'Beverly Carroll', '7263 Mariners Cove Park Dallas, TX', '(214) 917-7386'), + ('427-26-2369', 'Kevin Weaver', '9746 Springview Lane Dallas, TX', '(469) 942-2408'), + ('981-70-0822', 'Diana Collins', '00 Stoughton Pass Dallas, TX', '(972) 804-5134'), + ('842-92-6012', 'Melissa Cole', '405 Lukken Park Dallas, TX', '(972) 786-8554'), + ('842-48-2817', 'Willie Young', '4 Bowman Lane Dallas, TX', '(214) 928-4186'), + ('420-41-5414', 'Juan Nichols', '8095 Grover Point Dallas, TX', '(469) 804-3343'), + ('571-34-6457', 'Kevin Mason', '132 Huxley Street Dallas, TX', '(469) 973-8133'), + ('977-49-7404', 'Ronald Owens', '160 Forster Court Plano, TX', '(214) 986-1282'), + ('625-10-0221', 'Howard Mason', '725 Shelley Street Dallas, TX', '(972) 884-9005'), + ('344-02-3503', 'Scott Sullivan', '3 Dottie Way Dallas, TX', '(972) 881-9868'), + ('217-52-9370', 'Margaret Payne', '706 Spenser Drive Plano, TX', '(972) 760-0404'), + ('676-28-3465', 'Ashley Dixon', '07278 Arizona Road Dallas, TX', '(972) 818-9660'), + ('927-53-6184', 'Marilyn Vasquez', '85753 Sommers Parkway Plano, TX', '(214) 435-8942'), + ('369-13-2148', 'Amanda Olson', '2 Thompson Hill Dallas, TX', '(972) 979-2331'), + ('275-69-7155', 'Heather Fernandez', '18106 Beilfuss Way Dallas, TX', '(469) 854-7653'), + ('993-11-4983', 'Stephanie Diaz', '52331 Monica Drive Dallas, TX', '(214) 912-8213'), + ('867-83-7085', 'Roy Kelly', '7053 Old Gate Alley Dallas, TX', '(469) 974-8373'), + ('466-06-1410', 'Scott Chavez', '3 Kingsford Avenue Dallas, TX', '(469) 963-3427'), + ('632-92-1297', 'Donna Mitchell', '4741 Kenwood Junction Dallas, TX', '(214) 951-3865'), + ('585-80-2785', 'Louis Harris', '2747 Rieder Plaza Dallas, TX', '(214) 886-3021'), + ('512-23-3537', 'Henry Hansen', '2900 Surrey Street Dallas, TX', '(214) 964-2420'), + ('772-62-3065', 'Kathryn Porter', '53 Dapin Parkway Dallas, TX', '(972) 844-8439'), + ('190-88-7543', 'Anne Johnson', '20069 Melvin Center Dallas, TX', '(214) 975-6054'), + ('329-18-4164', 'Todd Taylor', '97238 Onsgard Trail Dallas, TX', '(214) 937-3241'), + ('654-19-5151', 'Julia Fernandez', '34619 Marcy Crossing Dallas, TX', '(972) 966-9920'), + ('591-02-8727', 'Craig Robinson', '30 Sutteridge Point Dallas, TX', '(469) 919-0979'), + ('299-37-0401', 'Nancy Shaw', '5834 Village Crossing Dallas, TX', '(214) 788-2516'), + ('939-58-3158', 'Lawrence Nichols', '6423 Roth Park Dallas, TX', '(214) 925-2580'), + ('170-66-3784', 'Jimmy Diaz', '0301 Oriole Lane Dallas, TX', '(469) 473-0533'), + ('740-80-4320', 'Bobby Mcdonald', '3 Scoville Drive Dallas, TX', '(972) 527-7603'), + ('953-63-4906', 'Jesse Cunningham', '790 Marquette Hill Dallas, TX', '(214) 936-7626'), + ('200-60-0963', 'Gregory Andrews', '361 Sachs Crossing Dallas, TX', '(214) 973-0715'), + ('499-38-8289', 'Tina Rogers', '79 Forest Dale Road Dallas, TX', '(469) 984-9258'), + ('312-18-8191', 'Henry Allen', '9 Pennsylvania Street Dallas, TX', '(972) 939-2237'), + ('215-99-1270', 'Carolyn Gordon', '6 Fuller Avenue Richardson, TX', '(469) 829-5466'), + ('154-27-1288', 'Louise Hudson', '04798 Loeprich Alley Dallas, TX', '(972) 955-8037'), + ('772-41-5591', 'John Vasquez', '52 Darwin Park Dallas, TX', '(469) 978-1123'), + ('888-06-1132', 'Kathryn Graham', '45 Everett Pass Dallas, TX', '(469) 921-3046'), + ('992-83-5801', 'Patricia Perkins', '0 Heffernan Drive Dallas, TX', '(972) 971-8654'), + ('252-88-4550', 'Henry Arnold', '47 Becker Lane Plano, TX', '(972) 470-2949'), + ('534-51-9042', 'Ruby Bishop', '5 International Point Dallas, TX', '(972) 944-4239'), + ('292-84-4463', 'Phyllis Dunn', '8316 Calypso Court Dallas, TX', '(214) 835-0529'), + ('144-30-3599', 'Louise Wood', '000 Mccormick Plaza Dallas, TX', '(972) 914-5297'), + ('895-44-1229', 'Tammy Shaw', '0 Carey Parkway Richardson, TX', '(214) 905-2378'), + ('955-03-9519', 'Eric Rivera', '466 Tony Circle Dallas, TX', '(972) 932-9658'), + ('743-94-0520', 'Joe Williams', '748 Schlimgen Avenue Dallas, TX', '(972) 852-8033'), + ('140-10-0901', 'Aaron Snyder', '1 American Ash Avenue Dallas, TX', '(214) 936-9743'), + ('210-06-2715', 'Louis Clark', '4284 Norway Maple Lane Dallas, TX', '(972) 872-7570'), + ('357-34-7649', 'Sarah Chavez', '3 Schmedeman Court Dallas, TX', '(972) 524-1820'), + ('427-38-8763', 'Robin Ellis', '67445 Dunning Lane Richardson, TX', '(972) 866-1973'), + ('315-41-8687', 'Jessica Davis', '12957 Independence Drive Plano, TX', '(972) 842-5888'), + ('829-97-1624', 'Lillian Stone', '919 Judy Way Dallas, TX', '(972) 851-2126'), + ('347-88-9624', 'Ruth Stanley', '1 Warrior Pass Dallas, TX', '(972) 911-0228'), + ('840-39-1806', 'Jesse Duncan', '7787 Haas Hill Dallas, TX', '(972) 683-9815'), + ('637-53-4929', 'Lori Hunter', '39 Swallow Place Richardson, TX', '(469) 642-4787'), + ('136-04-3559', 'Tammy Robinson', '0378 Longview Plaza Dallas, TX', '(469) 933-2520'), + ('713-24-6764', 'James Dunn', '2 Luster Hill Dallas, TX', '(214) 849-9192'), + ('414-66-2512', 'Earl White', '3645 Ramsey Place Dallas, TX', '(972) 936-8134'), + ('613-21-6220', 'Jeremy Rogers', '91121 Moulton Plaza Plano, TX', '(469) 842-8404'), + ('733-94-6852', 'Earl Chapman', '45 Moulton Junction Dallas, TX', '(972) 997-7819'), + ('606-73-0914', 'Dorothy Miller', '52 Hazelcrest Crossing Dallas, TX', '(214) 803-3680'), + ('154-97-3290', 'Anna Lopez', '49 3rd Terrace Dallas, TX', '(214) 959-4100'), + ('369-65-4229', 'Gary Fuller', '59 Macpherson Crossing Dallas, TX', '(214) 968-9302'), + ('507-57-2316', 'Angela Nguyen', '45542 Rutledge Avenue Dallas, TX', '(214) 978-0162'), + ('325-17-0156', 'Paula Frazier', '916 Maywood Court Plano, TX', '(214) 934-1206'), + ('866-10-0944', 'Daniel Johnson', '76702 Caliangt Circle Dallas, TX', '(469) 828-8109'), + ('650-99-3347', 'Raymond Burke', '3001 Corscot Drive Dallas, TX', '(469) 749-0551'), + ('417-25-3686', 'Anna Flores', '730 Vera Avenue Dallas, TX', '(214) 820-9633'), + ('128-67-5708', 'Kathleen Reed', '89 Tomscot Street Dallas, TX', '(214) 941-0107'), + ('412-58-0911', 'Linda Garcia', '1 Luster Street Dallas, TX', '(972) 910-1369'), + ('312-56-2889', 'Kevin Turner', '3034 Kipling Drive Dallas, TX', '(214) 835-8339'), + ('122-17-0911', 'Juan Dunn', '18 Oak Drive Dallas, TX', '(214) 857-0040'), + ('548-70-2653', 'Arthur Lane', '79797 Fieldstone Circle Richardson, TX', '(214) 848-0150'), + ('922-65-9466', 'Deborah Medina', '4 Cambridge Park Dallas, TX', '(972) 679-5235'), + ('380-74-6132', 'Lisa Castillo', '856 Mitchell Junction Dallas, TX', '(469) 996-6025'), + ('148-76-3309', 'Louis Rivera', '210 Sunfield Trail Dallas, TX', '(469) 940-0843'), + ('648-41-9002', 'Catherine Hunt', '241 Gulseth Crossing Dallas, TX', '(469) 929-6433'), + ('253-50-1861', 'Bobby Gomez', '53 Kipling Place Richardson, TX', '(469) 747-8105'), + ('237-32-1975', 'Johnny Jenkins', '6757 Buena Vista Park Dallas, TX', '(214) 711-0231'), + ('304-04-2180', 'Richard Sanchez', '6 Bonner Road Dallas, TX', '(214) 789-8437'), + ('416-32-8500', 'Fred Peterson', '723 Emmet Avenue Dallas, TX', '(214) 929-0915'), + ('731-41-2008', 'Gerald Jacobs', '539 Pond Point Richardson, TX', '(972) 929-5037'), + ('680-37-1075', 'Teresa Perry', '67 Porter Center Dallas, TX', '(469) 937-7720'), + ('358-57-1779', 'Joyce Watson', '033 Fieldstone Pass Dallas, TX', '(469) 976-1235'), + ('399-11-8418', 'Antonio Crawford', '94232 Hudson Drive Dallas, TX', '(469) 818-0847'), + ('263-34-5944', 'Shawn Hanson', '88 Prairieview Terrace Dallas, TX', '(469) 712-3956'), + ('871-14-1691', 'Sandra Hayes', '8 Morning Parkway Dallas, TX', '(972) 901-1242'), + ('651-25-8004', 'Jimmy Garrett', '43 Clyde Gallagher Terrace Dallas, TX', '(972) 984-4957'), + ('484-44-5282', 'Antonio Lawrence', '08482 Merry Alley Dallas, TX', '(972) 843-3635'), + ('983-14-0730', 'Marie Medina', '7338 Pierstorff Circle Richardson, TX', '(469) 810-7312'), + ('716-92-1888', 'Juan Allen', '5 Victoria Alley Dallas, TX', '(469) 979-2886'), + ('309-24-3620', 'Gerald Porter', '11934 Upham Point Dallas, TX', '(214) 706-8751'), + ('776-60-4123', 'Todd Brooks', '7838 Moland Plaza Dallas, TX', '(469) 781-0440'), + ('679-76-7522', 'Jean Rice', '48712 Mockingbird Road Dallas, TX', '(469) 935-5450'), + ('729-59-6353', 'Jack Day', '2107 Kipling Plaza Dallas, TX', '(214) 913-6444'), + ('628-48-3788', 'Amy Woods', '5 Shoshone Crossing Dallas, TX', '(469) 773-4866'), + ('785-13-2932', 'Raymond Greene', '55619 Surrey Plaza Dallas, TX', '(469) 983-7473'), + ('101-97-8660', 'Arthur Wright', '158 John Wall Street Dallas, TX', '(214) 941-5089'), + ('946-46-6223', 'Daniel Hunt', '13709 Mariners Cove Center Richardson, TX', '(972) 915-2723'), + ('481-28-6748', 'Julie Hamilton', '6209 Ludington Pass Dallas, TX', '(972) 812-7230'), + ('864-59-5290', 'Diana Garza', '83139 Warrior Parkway Dallas, TX', '(972) 872-4808'), + ('370-11-1197', 'Walter Cruz', '463 Hanover Junction Dallas, TX', '(972) 836-9111'), + ('850-05-9666', 'Mildred Ramirez', '7 Anderson Lane Dallas, TX', '(972) 826-9318'), + ('475-45-2130', 'Jean Gilbert', '769 Colorado Center Dallas, TX', '(469) 850-6077'), + ('704-23-0250', 'Frances Porter', '16 Farwell Park Dallas, TX', '(214) 958-6327'), + ('847-54-7019', 'Jane Carter', '746 East Court Dallas, TX', '(469) 859-2686'), + ('316-40-2743', 'Johnny Perry', '5091 Melrose Court Dallas, TX', '(469) 783-2541'), + ('973-44-7229', 'Donald Powell', '1901 Laurel Pass Dallas, TX', '(972) 917-5123'), + ('597-54-1860', 'Russell Morales', '6 Continental Hill Dallas, TX', '(469) 833-1681'), + ('853-02-8515', 'Earl Smith', '73 Towne Hill Dallas, TX', '(469) 919-5433'), + ('961-10-2631', 'Jane Phillips', '9 Northland Place Dallas, TX', '(469) 981-5694'), + ('340-38-2920', 'Ruby Black', '01580 Main Alley Dallas, TX', '(214) 839-6582'), + ('650-36-9913', 'Teresa Fernandez', '50 Arrowood Circle Richardson, TX', '(972) 918-7531'), + ('940-61-5781', 'Jacqueline Hamilton', '792 Burrows Lane Dallas, TX', '(972) 785-5033'), + ('136-33-6897', 'Anthony Elliott', '82 Harper Lane Dallas, TX', '(972) 942-6006'), + ('780-32-3564', 'Louise Henderson', '58 Southridge Way Dallas, TX', '(469) 897-6813'), + ('174-47-0894', 'Lillian Cruz', '1202 Nevada Crossing Dallas, TX', '(469) 577-0003'), + ('235-78-1401', 'David Davis', '6266 Debs Place Dallas, TX', '(214) 864-7187'), + ('919-55-8047', 'Janice Price', '269 Farragut Trail Dallas, TX', '(214) 941-9869'), + ('687-90-1452', 'Donald Palmer', '12 5th Junction Richardson, TX', '(469) 677-4531'), + ('535-61-9932', 'Donald Washington', '978 Moose Plaza Dallas, TX', '(972) 844-7608'), + ('328-03-3548', 'Jessica Jones', '37 Melrose Court Richardson, TX', '(972) 906-0660'), + ('608-66-0102', 'Amy Coleman', '2562 Pond Junction Dallas, TX', '(214) 954-7729'), + ('894-17-1936', 'Marie Ryan', '4287 Canary Center Dallas, TX', '(469) 924-4203'), + ('882-93-4808', 'Gloria Barnes', '149 Columbus Avenue Dallas, TX', '(214) 797-0275'), + ('328-50-2075', 'Charles Lawrence', '7 Randy Terrace Dallas, TX', '(972) 813-8851'), + ('179-35-6366', 'Patricia Hill', '2506 Ridgeway Drive Richardson, TX', '(469) 932-9594'), + ('223-32-8250', 'Ryan Young', '40252 Lyons Terrace Dallas, TX', '(214) 742-4030'), + ('504-76-4400', 'Willie Woods', '99 Sunbrook Circle Dallas, TX', '(214) 810-2688'), + ('131-82-6807', 'Cynthia Webb', '6016 Leroy Way Dallas, TX', '(214) 975-2196'), + ('470-80-0995', 'Joyce Cox', '5027 Meadow Vale Way Richardson, TX', '(972) 832-4867'), + ('210-87-6619', 'Debra Kim', '303 Bashford Road Plano, TX', '(469) 747-4090'), + ('757-76-0049', 'Louise Harrison', '13 American Ash Place Richardson, TX', '(214) 897-8864'), + ('641-17-6232', 'Douglas Day', '264 Packers Place Dallas, TX', '(469) 868-2443'), + ('690-30-6386', 'Jane Hughes', '05 Tony Junction Dallas, TX', '(972) 963-9605'), + ('405-00-7979', 'Joan Wagner', '76837 Heath Trail Dallas, TX', '(972) 841-3593'), + ('697-50-5730', 'Joyce Gibson', '0605 Old Shore Avenue Dallas, TX', '(469) 840-4916'), + ('659-02-3329', 'Paula Harrison', '7 Swallow Pass Dallas, TX', '(469) 622-5174'), + ('647-36-9732', 'Bobby Dunn', '785 Graedel Place Plano, TX', '(972) 923-3432'), + ('659-27-5045', 'Bonnie Ross', '81741 Hallows Plaza Dallas, TX', '(214) 930-4665'), + ('923-61-2260', 'Dennis Wheeler', '8321 Mendota Crossing Dallas, TX', '(214) 932-7040'), + ('646-30-1413', 'Jason Gutierrez', '7 Pearson Way Dallas, TX', '(972) 990-8290'), + ('968-11-7539', 'Diana Spencer', '467 Menomonie Alley Richardson, TX', '(972) 850-9653'), + ('784-77-6035', 'Jessica Thompson', '73 Mandrake Center Dallas, TX', '(972) 728-3395'), + ('468-32-4617', 'Sean Pierce', '07 Laurel Park Dallas, TX', '(469) 987-3050'), + ('647-49-5762', 'Alan Stewart', '74154 Drewry Street Dallas, TX', '(469) 944-5061'), + ('345-58-9435', 'Janice Robinson', '7791 Maple Hill Dallas, TX', '(972) 855-6553'), + ('504-57-5850', 'Barbara Carroll', '5989 4th Avenue Dallas, TX', '(214) 999-2405'), + ('362-54-6087', 'Lori Mccoy', '71 Evergreen Crossing Dallas, TX', '(972) 975-7324'); diff --git a/search.py b/search.py new file mode 100644 index 0000000..bfbb8a2 --- /dev/null +++ b/search.py @@ -0,0 +1,32 @@ +import sqlite3 as sql +from flask import request +from flask_restful import Resource + +from consts import DB_FILE, SEARCH_PAGE_SIZE + +#TODO: Book availability +class Search(Resource): + + def get(self): + args = {'q':request.args.get('q', '').lower()} + + with sql.connect(DB_FILE) as conn: + conn.row_factory = sql.Row + c = conn.cursor() + + sql_query = ''' + WITH q_authors AS ( + SELECT GROUP_CONCAT(Name,', ') AS Author_names, Isbn + FROM AUTHORS NATURAL JOIN BOOK_AUTHORS + GROUP BY Isbn + ) + SELECT Isbn, Title, Author_names, Cover_url + FROM BOOK NATURAL JOIN q_authors + WHERE INSTR(LOWER(Title), :q) > 0 + OR INSTR(LOWER(Author_names), :q) > 0 + OR INSTR(LOWER(Isbn), :q) > 0 + ORDER BY INSTR(LOWER(Isbn), :q), INSTR(LOWER(Author_names), :q), INSTR(LOWER(Title), :q) + ; + ''' + + return [dict(x) for x in c.execute(sql_query, args).fetchmany(size=SEARCH_PAGE_SIZE)] \ No newline at end of file