-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathLinked_URLs.csv
We can't make this file beautiful and searchable because it's too large.
3479 lines (3479 loc) · 514 KB
/
Linked_URLs.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
Audible_Title,Audible_Author,Goodreads_Link
The Authenticity Project,Clare Pooley,https://www.goodreads.com/book/show/55789067-the-authenticity-project?from_search=true&from_srp=true&qid=KI07BV7RXl&rank=1
A Single Thread,Tracy Chevalier,https://www.goodreads.com/book/show/43943459-a-single-thread?from_search=true&from_srp=true&qid=Baqj1TsSsY&rank=1
Sparks Like Stars,Nadia Hashimi,https://www.goodreads.com/book/show/53746807-sparks-like-stars?from_search=true&from_srp=true&qid=fTMoEfBJup&rank=1
Interior Chinatown,Charles Yu,https://www.goodreads.com/book/show/44436221-interior-chinatown?from_search=true&from_srp=true&qid=MkY2DeDhMs&rank=1
A Summer in Sonoma,Robyn Carr,https://www.goodreads.com/book/show/7624133-a-summer-in-sonoma?from_search=true&from_srp=true&qid=D0ymhQyJhG&rank=1
Plain Bad Heroines,Emily M. Danforth,https://www.goodreads.com/book/show/50496875-plain-bad-heroines?from_search=true&from_srp=true&qid=ibiCqnGY1c&rank=1
The Ex Talk,Rachel Lynn Solomon,https://www.goodreads.com/book/show/53415121-the-ex-talk?from_search=true&from_srp=true&qid=ZQMig1xNpj&rank=1
Devils,Fyodor Dostoevsky,https://www.goodreads.com/book/show/3090348-devils?from_search=true&from_srp=true&qid=QcIOWH1UkL&rank=2
Tai-Pan,James Clavell,https://www.goodreads.com/book/show/42933.Tai_Pan?from_search=true&from_srp=true&qid=qYOfk2pQMC&rank=3
The Lost Orphan,Stacey Halls,https://www.goodreads.com/book/show/45422548-the-lost-orphan?from_search=true&from_srp=true&qid=WUXmbmxRsv&rank=1
Roommates Wanted,Lisa Jewell,https://www.goodreads.com/book/show/1549933.Roommates_Wanted?from_search=true&from_srp=true&qid=wRMbuHxvdr&rank=1
The Unexpected Inheritance of Inspector Chopra,Vaseem Khan,https://www.goodreads.com/book/show/24717411-the-unexpected-inheritance-of-inspector-chopra?from_search=true&from_srp=true&qid=FmvyCmOylE&rank=1
Meet Me at the Cupcake Cafe,Jenny Colgan,https://www.goodreads.com/book/show/10134852-meet-me-at-the-cupcake-caf?from_search=true&from_srp=true&qid=6yPZUXuUef&rank=1
The Prophets,Robert Jones Jr.,https://www.goodreads.com/book/show/52576333-the-prophets?from_search=true&from_srp=true&qid=8CAgyqMBW2&rank=1
Galapagos,Kurt Vonnegut,https://www.goodreads.com/book/show/9934441-galapagos?from_search=true&from_srp=true&qid=JmvaaSU2yT&rank=3
Summer Island,Kristin Hannah,https://www.goodreads.com/book/show/40389026-summer-island?from_search=true&from_srp=true&qid=bSboyMhIo9&rank=1
Robinson Crusoe,Daniel Defoe,https://www.goodreads.com/book/show/2932.Robinson_Crusoe?from_search=true&from_srp=true&qid=RECLzHrfSI&rank=16
Slay,Brittney Morris,https://www.goodreads.com/book/show/43723509-slay?from_search=true&from_srp=true&qid=3igrAD36bh&rank=1
No One Is Talking About This,Patricia Lockwood,https://www.goodreads.com/book/show/53733106-no-one-is-talking-about-this?from_search=true&from_srp=true&qid=jv1KbdUeaU&rank=1
Great Expectations,Charles Dickens,https://www.goodreads.com/book/show/1781022.Great_Expectations_by_Charles_Dickens_Fiction_Classics?from_search=true&from_srp=true&qid=ubinUTFTRo&rank=4
The Best of Us,Robyn Carr,https://www.goodreads.com/book/show/40244951-the-best-of-us?from_search=true&from_srp=true&qid=viT8NFDXGO&rank=1
The Incredible Winston Browne,Sean Dietrich,https://www.goodreads.com/book/show/52610674-the-incredible-winston-browne?from_search=true&from_srp=true&qid=eoxyk4TZPd&rank=1
Summer by the Sea,Susan Wiggs,https://www.goodreads.com/book/show/120069.Summer_by_the_Sea?from_search=true&from_srp=true&qid=qA3b1MSUxK&rank=2
My Year Abroad,Chang-rae Lee,https://www.goodreads.com/book/show/55333981-my-year-abroad?from_search=true&from_srp=true&qid=uYPNeaBWMJ&rank=1
One Tuesday Morning,Karen Kingsbury,https://www.goodreads.com/book/show/97862.One_Tuesday_Morning?from_search=true&from_srp=true&qid=ghZLsdKjYo&rank=1
The Restoration of Celia Fairchild,Marie Bostwick,https://www.goodreads.com/book/show/53914958-the-restoration-of-celia-fairchild?from_search=true&from_srp=true&qid=QDu8c2Rtuk&rank=1
Mind Tryst,Robyn Carr,https://www.goodreads.com/book/show/19241348-mind-tryst?from_search=true&from_srp=true&qid=eyP1D7b32e&rank=1
The Girl in the Garden,Kamala Nair,https://www.goodreads.com/book/show/9632886-the-girl-in-the-garden?from_search=true&from_srp=true&qid=Z7dMvH0NoV&rank=1
The Picture of Dorian Gray,Oscar Wilde,https://www.goodreads.com/book/show/58207214-the-picture-of-dorian-gray-by-oscar-wilde?from_search=true&from_srp=true&qid=xctGfDiNUn&rank=12
Lunch with Buddha,Roland Merullo,https://www.goodreads.com/book/show/16069313-lunch-with-buddha?from_search=true&from_srp=true&qid=cDlxV3ltP9&rank=1
Little Women,Louisa May Alcott,https://www.goodreads.com/book/show/2743418-little-women-louisa-may-alcott?from_search=true&from_srp=true&qid=l4tJmfZu2l&rank=5
The Mistress,Danielle Steel,https://www.goodreads.com/book/show/29974914-the-mistress?from_search=true&from_srp=true&qid=LuuUE8xcGf&rank=1
Utopia Avenue,David Mitchell,https://www.goodreads.com/book/show/52597312-utopia-avenue?from_search=true&from_srp=true&qid=lVMkJvnup9&rank=1
"God, No!",Penn Jillette,https://www.goodreads.com/book/show/8495145-god-no-signs-you-may-already-be-an-atheist-and-other-magical-tales?from_search=true&from_srp=true&qid=guIdtkINGs&rank=1
Say Goodbye for Now,Catherine Ryan Hyde,https://www.goodreads.com/book/show/30184217-say-goodbye-for-now?from_search=true&from_srp=true&qid=dklHVqVqlr&rank=1
Plainsong,Kent Haruf,https://www.goodreads.com/book/show/77156.Plainsong?from_search=true&from_srp=true&qid=RKEGD9gLra&rank=3
The Prisoner's Wife,Maggie Brookes,https://www.goodreads.com/book/show/50368444-the-prisoner-s-wife?from_search=true&from_srp=true&qid=1UXvw8hhyQ&rank=1
The Bitter and Sweet of Cherry Season,Molly Fader,https://www.goodreads.com/book/show/49978131-the-bitter-and-sweet-of-cherry-season?from_search=true&from_srp=true&qid=Hy8Lpr6tiA&rank=1
Sunrise by the Sea,Jenny Colgan,https://www.goodreads.com/book/show/55276595-sunrise-by-the-sea?from_search=true&from_srp=true&qid=SY8sx5uCAa&rank=1
On the Beach,Nevil Shute,https://www.goodreads.com/book/show/38180.On_the_Beach?from_search=true&from_srp=true&qid=RlCaJjtx3z&rank=2
We Run the Tides,Vendela Vida,https://www.goodreads.com/book/show/53402121-we-run-the-tides?from_search=true&from_srp=true&qid=71BI3zgpkr&rank=1
Dancing at the Rascal Fair,Ivan Doig,https://www.goodreads.com/book/show/122311.Dancing_at_the_Rascal_Fair?from_search=true&from_srp=true&qid=4hsdiuhnIG&rank=2
A Dog's Way Home,W. Bruce Cameron,https://www.goodreads.com/book/show/35130968-a-dog-s-way-home?from_search=true&from_srp=true&qid=qCQzLY7Wfu&rank=3
Killing Rommel,Steven Pressfield,https://www.goodreads.com/book/show/1536419.Killing_Rommel?from_search=true&from_srp=true&qid=m7MMgmVly2&rank=1
Nocturnes,Kazuo Ishiguro,https://www.goodreads.com/book/show/4772110-nocturnes?from_search=true&from_srp=true&qid=PHm65MvKXL&rank=1
The Railway Children,E. Nesbit,https://www.goodreads.com/book/show/164531.The_Railway_Children?from_search=true&from_srp=true&qid=imtAdfHNhv&rank=1
Falling Home,Karen White,https://www.goodreads.com/book/show/9954179-falling-home?from_search=true&from_srp=true&qid=6J9TUGMd3h&rank=1
Musical Chairs,Amy Poeppel,https://www.goodreads.com/book/show/52753733-musical-chairs?from_search=true&from_srp=true&qid=EOQhpo3dLl&rank=1
And They Called It Camelot,Stephanie Marie Thornton,https://www.goodreads.com/book/show/52198084-and-they-called-it-camelot?from_search=true&from_srp=true&qid=MZuDARBmdL&rank=1
The Memory Collectors,Kim Neville,https://www.goodreads.com/book/show/54303938-the-memory-collectors?from_search=true&from_srp=true&qid=JoiEM57S76&rank=1
The Removed,Brandon Hobson,https://www.goodreads.com/book/show/53441181-the-removed?from_search=true&from_srp=true&qid=0ahU2Hew73&rank=1
Silent Night,Danielle Steel,https://www.goodreads.com/book/show/40655468-silent-night?from_search=true&from_srp=true&qid=C7ytTStWjF&rank=1
True Devotion,Dee Henderson,https://www.goodreads.com/book/show/359455.True_Devotion?from_search=true&from_srp=true&qid=Ilyub3zqkB&rank=1
Maggie,Charles Martin,https://www.goodreads.com/book/show/129562.Maggie?from_search=true&from_srp=true&qid=jPD0dGZxQ4&rank=1
Mutant Message Down Under,Marlo Morgan,https://www.goodreads.com/book/show/32349.Mutant_Message_Down_Under?from_search=true&from_srp=true&qid=WAzX5ZJUh3&rank=2
Meg and Jo,Virginia Kantra,https://www.goodreads.com/book/show/45899334-meg-and-jo?from_search=true&from_srp=true&qid=aPwdNO7F1j&rank=1
"Dear Haiti, Love Alaine","Maika Moulite, Maritza Moulite",https://www.goodreads.com/book/show/41861731-dear-haiti-love-alaine?from_search=true&from_srp=true&qid=5IJDZB7BsZ&rank=1
Saving Ruby King,Catherine Adel West,https://www.goodreads.com/book/show/44131181-saving-ruby-king?from_search=true&from_srp=true&qid=RIFkYkI4ev&rank=1
The Secrets of Love Story Bridge,Phaedra Patrick,https://www.goodreads.com/book/show/45422563-the-secrets-of-love-story-bridge?from_search=true&from_srp=true&qid=igf1tlkAS8&rank=1
The Other Windsor Girl,Georgie Blalock,https://www.goodreads.com/book/show/43884183-the-other-windsor-girl?from_search=true&from_srp=true&qid=y283elsYaT&rank=1
Ellie and the Harpmaker,Hazel Prior,https://www.goodreads.com/book/show/40611133-ellie-and-the-harpmaker?from_search=true&from_srp=true&qid=MuRPLPwdpt&rank=1
Dark Horses,Susan Mihalic,https://www.goodreads.com/book/show/50892208-dark-horses?from_search=true&from_srp=true&qid=bC6zo22Iet&rank=1
I Was Told It Would Get Easier,Abbi Waxman,https://www.goodreads.com/book/show/49348458-i-was-told-it-would-get-easier?from_search=true&from_srp=true&qid=EIXAcO3tVt&rank=1
"Black Girl, Call Home",Jasmine Mans,https://www.goodreads.com/book/show/54359466-black-girl-call-home?from_search=true&from_srp=true&qid=OcLG77mn3T&rank=1
The Silent Treatment,Abbie Greaves,https://www.goodreads.com/book/show/51194669-the-silent-treatment?from_search=true&from_srp=true&qid=hPCNtqNoel&rank=1
"White Rose, Black Forest",Eoin Dempsey,https://www.goodreads.com/book/show/35889209-white-rose-black-forest?from_search=true&from_srp=true&qid=rG9CNdZA5P&rank=1
Fake Accounts,Lauren Oyler,https://www.goodreads.com/book/show/45732027-fake-accounts?from_search=true&from_srp=true&qid=gIdfIKN2Jr&rank=1
Anne of Green Gables,L.M. Montgomery,https://www.goodreads.com/book/show/8127.Anne_of_Green_Gables?from_search=true&from_srp=true&qid=vx3f8DgrJq&rank=1
The Good Soldier,Ford Madox Ford,https://www.goodreads.com/book/show/54641142-the-good-soldier-by-ford-madox-ford-the-fully-updated-annotated-edition?from_search=true&from_srp=true&qid=Fb1ulFWH3D&rank=13
The Jam and Jelly Nook,Amy Clipston,https://www.goodreads.com/book/show/54287614-the-jam-and-jelly-nook?from_search=true&from_srp=true&qid=gqm0EqXpXX&rank=1
The Unbreakables,Lisa Barr,https://www.goodreads.com/book/show/40535998-the-unbreakables?from_search=true&from_srp=true&qid=BNB3lwt8Np&rank=1
The Rock Hole,Reavis Z. Wortham,https://www.goodreads.com/book/show/51162559-the-rock-hole?from_search=true&from_srp=true&qid=6ocvq52UQV&rank=1
Your House Will Pay,Steph Cha,https://www.goodreads.com/book/show/43615778-your-house-will-pay?from_search=true&from_srp=true&qid=9u0OHSQIh5&rank=1
Of Literature and Lattes,Katherine Reay,https://www.goodreads.com/book/show/50162082-of-literature-and-lattes?from_search=true&from_srp=true&qid=nGzCgcB7LY&rank=1
Sophomores,Sean Desmond,https://www.goodreads.com/book/show/53330116-sophomores?from_search=true&from_srp=true&qid=bBNSLhpirK&rank=1
The Charmed Wife,Olga Grushin,https://www.goodreads.com/book/show/53231973-the-charmed-wife?from_search=true&from_srp=true&qid=lL8kCgsJKI&rank=1
Under the Rainbow,Celia Laskey,https://www.goodreads.com/book/show/51846014-under-the-rainbow?from_search=true&from_srp=true&qid=NPxp5B151Q&rank=1
The Unraveling of Cassidy Holmes,Elissa R. Sloan,https://www.goodreads.com/book/show/52163643-the-unraveling-of-cassidy-holmes?from_search=true&from_srp=true&qid=RWuSYfbZt1&rank=1
Sad Janet,Lucie Britsch,https://www.goodreads.com/book/show/48890204-sad-janet?from_search=true&from_srp=true&qid=0AiGFQ1tcQ&rank=1
The Orchard,David Hopen,https://www.goodreads.com/book/show/51475363-the-orchard?from_search=true&from_srp=true&qid=ESLUCfTjEh&rank=1
Cantoras,Carolina De Robertis,https://www.goodreads.com/book/show/43289181-cantoras?from_search=true&from_srp=true&qid=H7A4YlMN7G&rank=1
The Innocents,Michael Crummey,https://www.goodreads.com/book/show/44540158-the-innocents?from_search=true&from_srp=true&qid=hv2f1v5f3a&rank=1
The Swallows,Lisa Lutz,https://www.goodreads.com/book/show/43744294-the-swallows?from_search=true&from_srp=true&qid=7sNmkI9IPJ&rank=1
Cold Fire,Dean Koontz,https://www.goodreads.com/book/show/32442.Cold_Fire?from_search=true&from_srp=true&qid=v3RAdcbBxm&rank=3
Darkfall,Dean Koontz,https://www.goodreads.com/book/show/32456.Darkfall?from_search=true&from_srp=true&qid=JoItdf5J9C&rank=1
The End of Her,Shari Lapena,https://www.goodreads.com/book/show/49098281-the-end-of-her?from_search=true&from_srp=true&qid=AA2BTwH8IF&rank=1
Blood Hollow,William Kent Krueger,https://www.goodreads.com/book/show/211161.Blood_Hollow?from_search=true&from_srp=true&qid=bcu1vaPCcf&rank=2
The Other Side of Midnight,Simone St. James,https://www.goodreads.com/book/show/22467404-the-other-side-of-midnight?from_search=true&from_srp=true&qid=YT6OcPCT94&rank=1
Cause of Death,Patricia Cornwell,https://www.goodreads.com/book/show/6541.Cause_of_Death?from_search=true&from_srp=true&qid=OTlfBdyWXw&rank=1
For the Love of Mike,Rhys Bowen,https://www.goodreads.com/book/show/383513.For_the_Love_of_Mike?from_search=true&from_srp=true&qid=ShruNLbiaP&rank=1
Brownies and Broomsticks,Bailey Cates,https://www.goodreads.com/book/show/12035966-brownies-and-broomsticks?from_search=true&from_srp=true&qid=6ZHdttzFFk&rank=1
Fast Track,Julie Garwood,https://www.goodreads.com/book/show/18693854-fast-track?from_search=true&from_srp=true&qid=bp30tTZoKy&rank=1
No Fortunate Son,Brad Taylor,https://www.goodreads.com/book/show/22522168-no-fortunate-son?from_search=true&from_srp=true&qid=mnVq3KKgFf&rank=2
The Passengers,John Marrs,https://www.goodreads.com/book/show/40718386-the-passengers?from_search=true&from_srp=true&qid=M6DnZJgduD&rank=1
Haunted House,J.A. Konrath,https://www.goodreads.com/book/show/41955498-haunted-house?from_search=true&from_srp=true&qid=plBkBi2RW9&rank=3
Pride and Premeditation,Tirzah Price,https://www.goodreads.com/book/show/53914898-pride-and-premeditation?from_search=true&from_srp=true&qid=stqFlgEtVE&rank=1
The Secret of Chimneys & A Murder Is Announced,Agatha Christie,https://www.goodreads.com/book/show/16361.The_Secret_of_Chimneys?from_search=true&from_srp=true&qid=zxzEqtQ8Qe&rank=1
Three Missing Days,Colleen Coble,https://www.goodreads.com/book/show/54287700-three-missing-days?from_search=true&from_srp=true&qid=F6W1LbulZZ&rank=1
"Bruno, Chief of Police",Martin Walker,https://www.goodreads.com/book/show/3265305-bruno-chief-of-police?from_search=true&from_srp=true&qid=tVJHM1Yslm&rank=2
Enemy of Mine,Brad Taylor,https://www.goodreads.com/book/show/15806961-enemy-of-mine?from_search=true&from_srp=true&qid=8fPbXPeESO&rank=1
Sanibel Flats,Randy White,https://www.goodreads.com/book/show/93812.Sanibel_Flats?from_search=true&from_srp=true&qid=7dXbq8fhbo&rank=2
Sleeping with Strangers,Eric Jerome Dickey,https://www.goodreads.com/book/show/181404.Sleeping_with_Strangers?from_search=true&from_srp=true&qid=XS0KEBUOVN&rank=1
The Reef,Nora Roberts,https://www.goodreads.com/book/show/114143.The_Reef?from_search=true&from_srp=true&qid=H55mce3drU&rank=2
The Ideal Man,Julie Garwood,https://www.goodreads.com/book/show/9647908-the-ideal-man?from_search=true&from_srp=true&qid=epDiequwg1&rank=1
Mrs. Pollifax on the China Station,Dorothy Gilman,https://www.goodreads.com/book/show/149426.Mrs_Pollifax_on_the_China_Station?from_search=true&from_srp=true&qid=zCQ0EkdDTN&rank=1
Their Last Secret,Rick Mofina,https://www.goodreads.com/book/show/49093787-their-last-secret?from_search=true&from_srp=true&qid=hf10h66ePK&rank=1
The Woman I Was Before,Kerry Fisher,https://www.goodreads.com/book/show/43353827-the-woman-i-was-before?from_search=true&from_srp=true&qid=ZgcdjEfql0&rank=1
Don't Even Breathe,Keith Houghton,https://www.goodreads.com/book/show/49958807-don-t-even-breathe?from_search=true&from_srp=true&qid=vtVZiR9Flz&rank=1
The Third to Die,Allison Brennan,https://www.goodreads.com/book/show/46039026-the-third-to-die?from_search=true&from_srp=true&qid=jH4eVpqPVf&rank=1
Tonight I Said Goodbye,Michael Koryta,https://www.goodreads.com/book/show/424644.Tonight_I_Said_Goodbye?from_search=true&from_srp=true&qid=nvusuvVjyf&rank=1
The Summer House,"James Patterson, Brendan DuBois",https://www.goodreads.com/book/show/52588702-the-summer-house?from_search=true&from_srp=true&qid=LF6gXsHYzb&rank=1
Amid the Shadows,Michael C. Grumley,https://www.goodreads.com/book/show/22844518-amid-the-shadows?from_search=true&from_srp=true&qid=zUO0SjglB0&rank=1
Fortune Furlough,Jana DeLeon,https://www.goodreads.com/book/show/57351862-fortune-furlough?from_search=true&from_srp=true&qid=IaQxQCQVGw&rank=2
Rock Chick,Kristen Ashley,https://www.goodreads.com/book/show/6538757-rock-chick?from_search=true&from_srp=true&qid=h0rVhgIDzF&rank=1
A Case of Need,"Michael Crichton, Jeffery Hudson",https://www.goodreads.com/book/show/7663.A_Case_of_Need?from_search=true&from_srp=true&qid=2YyKqhXm3J&rank=1
Hunter’s Way,Gerri Hill,https://www.goodreads.com/book/show/1125294.Hunter_s_Way?from_search=true&from_srp=true&qid=ahV7LwFUW4&rank=1
A Crooked Tree,Una Mannion,https://www.goodreads.com/book/show/54236137-a-crooked-tree?from_search=true&from_srp=true&qid=RBpoQnBNeY&rank=1
You Belong to Me,Karen Rose,https://www.goodreads.com/book/show/8697191-you-belong-to-me?from_search=true&from_srp=true&qid=BTcaE70rh5&rank=1
Shiver,Allie Reynolds,https://www.goodreads.com/book/show/55707640-shiver?from_search=true&from_srp=true&qid=MbHmNiCJyK&rank=1
The Deep,Alma Katsu,https://www.goodreads.com/book/show/46158562-the-deep?from_search=true&from_srp=true&qid=lNbET68EBD&rank=1
Island of the Mad,Laurie R. King,https://www.goodreads.com/book/show/36296239-island-of-the-mad?from_search=true&from_srp=true&qid=HLtD3sFPQl&rank=1
The Last to See Her,Courtney Evan Tate,https://www.goodreads.com/book/show/45422551-the-last-to-see-her?from_search=true&from_srp=true&qid=e1lUf0j9Pr&rank=1
Cold Harbor,Matthew FitzSimmons,https://www.goodreads.com/book/show/31697706-cold-harbor?from_search=true&from_srp=true&qid=rWffSdfwvd&rank=1
A Deadly Distance,L.T. Ryan,https://www.goodreads.com/book/show/30359750-a-deadly-distance?from_search=true&from_srp=true&qid=IyoWwCBq34&rank=1
The Bodies in the Library,Marty Wingate,https://www.goodreads.com/book/show/45141896-the-bodies-in-the-library?from_search=true&from_srp=true&qid=Ov60EvjqT2&rank=1
Blink of an Eye,"Roy Johansen, Iris Johansen",https://www.goodreads.com/book/show/53916166-blink-of-an-eye?from_search=true&from_srp=true&qid=0pRNIT9bOJ&rank=1
None Shall Sleep,Ellie Marney,https://www.goodreads.com/book/show/50358134-none-shall-sleep?from_search=true&from_srp=true&qid=Cus3Wfx6oU&rank=1
A Madness of Sunshine,Nalini Singh,https://www.goodreads.com/book/show/44525771-a-madness-of-sunshine?from_search=true&from_srp=true&qid=WyNYUITgcD&rank=1
First Cut,"Judy Melinek, T.J. Mitchell",https://www.goodreads.com/book/show/43986727-first-cut?from_search=true&from_srp=true&qid=KACUZZRP3m&rank=1
Do No Harm,Christina McDonald,https://www.goodreads.com/book/show/54304103-do-no-harm?from_search=true&from_srp=true&qid=nrcQGWfHRD&rank=1
The Glass Woman,Caroline Lea,https://www.goodreads.com/book/show/40917716-the-glass-woman?from_search=true&from_srp=true&qid=UmDi8N6Xhd&rank=1
A Test of Wills,Charles Todd,https://www.goodreads.com/book/show/129561.A_Test_of_Wills?from_search=true&from_srp=true&qid=mWl98IpDMZ&rank=1
Salvation Day,Kali Wallace,https://www.goodreads.com/book/show/39918548-salvation-day?from_search=true&from_srp=true&qid=jescMDyOwF&rank=1
The Punch Escrow,Tal M. Klein,https://www.goodreads.com/book/show/32446949-the-punch-escrow?from_search=true&from_srp=true&qid=CD7giILtRk&rank=1
The Favorite Daughter,Kaira Rouda,https://www.goodreads.com/book/show/39973248-the-favorite-daughter?from_search=true&from_srp=true&qid=y076wIucFO&rank=1
The Prized Girl,Amy K. Green,https://www.goodreads.com/book/show/43913930-the-prized-girl?from_search=true&from_srp=true&qid=CV3Bv4I3HX&rank=1
Bad Monkeys,Matt Ruff,https://www.goodreads.com/book/show/71845.Bad_Monkeys?from_search=true&from_srp=true&qid=bBUJAnIaCs&rank=1
The Kill Club,Wendy Heard,https://www.goodreads.com/book/show/43599925-the-kill-club?from_search=true&from_srp=true&qid=C7xpedhMVU&rank=1
The Dead of the Night,John Marsden,https://www.goodreads.com/book/show/71864.The_Dead_of_Night?from_search=true&from_srp=true&qid=WxPsjyHjbC&rank=2
The Homecoming,Alan Russell,https://www.goodreads.com/book/show/33630709-the-homecoming?from_search=true&from_srp=true&qid=bKNf8Qbzla&rank=1
Nordic Tales,Chronicle Books,https://www.goodreads.com/book/show/51068836-nordic-tales?from_search=true&from_srp=true&qid=bxXG38NYUS&rank=1
"Black Leopard, Red Wolf",Marlon James,https://www.goodreads.com/book/show/50608676-black-leopard-red-wolf?from_search=true&from_srp=true&qid=smdUt3OoYf&rank=2
The Bone Houses,Emily Lloyd-Jones,https://www.goodreads.com/book/show/36524503-the-bone-houses?from_search=true&from_srp=true&qid=xwfNliTza5&rank=1
Nemesis,Isaac Asimov,https://www.goodreads.com/book/show/302625.Nemesis?from_search=true&from_srp=true&qid=SSaJz7M0QQ&rank=1
Aftershocks,Marko Kloos,https://www.goodreads.com/book/show/41211815-aftershocks?from_search=true&from_srp=true&qid=t9ZEMfnnde&rank=1
The Legacy,R. A. Salvatore,https://www.goodreads.com/book/show/15981536-the-essential-novels?from_search=true&from_srp=true&qid=YEvINBYHaD&rank=14
Bearers of the Black Staff,Terry Brooks,https://www.goodreads.com/book/show/7302794-bearers-of-the-black-staff?from_search=true&from_srp=true&qid=1QSXcK7K2X&rank=1
Ecstasy,Jacquelyn Frank,https://www.goodreads.com/book/show/4071860-ecstasy?from_search=true&from_srp=true&qid=J7W0xkKViN&rank=1
Polgara the Sorceress,"Leigh Eddings, David Eddings",https://www.goodreads.com/book/show/18884.Polgara_the_Sorceress?from_search=true&from_srp=true&qid=hi590Wc65k&rank=1
My Life as a White Trash Zombie,Diana Rowland,https://www.goodreads.com/book/show/9640626-my-life-as-a-white-trash-zombie?from_search=true&from_srp=true&qid=Xlr3mdHqzi&rank=1
Magician: Master,Raymond E. Feist,https://www.goodreads.com/book/show/13810.Magician?from_search=true&from_srp=true&qid=cJAaagI1YT&rank=4
Thirteenth Child,Patricia C. Wrede,https://www.goodreads.com/book/show/5797595-thirteenth-child?from_search=true&from_srp=true&qid=egL8EZCCNl&rank=1
The Bone Ships,RJ Barker,https://www.goodreads.com/book/show/43521682-the-bone-ships?from_search=true&from_srp=true&qid=iFhvsB3Bkc&rank=1
Thinblade,David A. Wells,https://www.goodreads.com/book/show/11698192-thinblade?from_search=true&from_srp=true&qid=LRq8iNdQUc&rank=1
Rosewater,Tade Thompson,https://www.goodreads.com/book/show/38362809-rosewater?from_search=true&from_srp=true&qid=cV5zH4EzGt&rank=1
A Cosmology of Monsters,Shaun Hamill,https://www.goodreads.com/book/show/43506916-a-cosmology-of-monsters?from_search=true&from_srp=true&qid=CHqP6Pyt4T&rank=1
Wild Hunger,Chloe Neill,https://www.goodreads.com/book/show/36457735-wild-hunger?from_search=true&from_srp=true&qid=unKwpyE9Jq&rank=1
Day Shift,Charlaine Harris,https://www.goodreads.com/book/show/23281944-day-shift?from_search=true&from_srp=true&qid=4yE0ZefKRH&rank=1
Absolution Gap,Alastair Reynolds,https://www.goodreads.com/book/show/89184.Absolution_Gap?from_search=true&from_srp=true&qid=zkJAHP6f0U&rank=1
A Dark and Hollow Star,Ashley Shuttleworth,https://www.goodreads.com/book/show/53341666-a-dark-and-hollow-star?from_search=true&from_srp=true&qid=2C5Im1dNUG&rank=1
The Gripping Hand,"Jerry Pournelle, Larry Niven",https://www.goodreads.com/book/show/218453.The_Gripping_Hand?from_search=true&from_srp=true&qid=nDvEW1BxWQ&rank=1
Soldiers of Fortune,Joshua Dalzelle,https://www.goodreads.com/book/show/18160491-soldiers-of-fortune?from_search=true&from_srp=true&qid=kVBB4F4Z87&rank=1
Small Magic,Terry Brooks,https://www.goodreads.com/book/show/51115113-small-magic?from_search=true&from_srp=true&qid=ZpJjxQ5mDT&rank=1
Shadow Game,Christine Feehan,https://www.goodreads.com/book/show/9553.Shadow_Game?from_search=true&from_srp=true&qid=p8aP3AXtds&rank=1
Things in Jars,Jess Kidd,https://www.goodreads.com/book/show/49649443-things-in-jars?from_search=true&from_srp=true&qid=gUz2daJlHd&rank=1
Paladin of Souls,Lois McMaster Bujold,https://www.goodreads.com/book/show/61904.Paladin_of_Souls?from_search=true&from_srp=true&qid=UrtdguCsWY&rank=1
Forward,"Veronica Roth, Blake Crouch, Amor Towles, Paul Tremblay, Andy Weir, N. K. Jemisin",https://www.goodreads.com/book/show/58871904-forward?from_search=true&from_srp=true&qid=vqRfo6ivzz&rank=2
Clean,Alex Hughes,https://www.goodreads.com/book/show/13543039-clean?from_search=true&from_srp=true&qid=CGF6FpSlgG&rank=1
The Forgetting Moon,Brian Lee Durfee,https://www.goodreads.com/book/show/27206615-the-forgetting-moon?from_search=true&from_srp=true&qid=ez68qPlViP&rank=1
The Absolute Book,Elizabeth Knox,https://www.goodreads.com/book/show/54735156-the-absolute-book?from_search=true&from_srp=true&qid=KNV1efFkZx&rank=1
An Orc on the Wild Side,Tom Holt,https://www.goodreads.com/book/show/41716865-an-orc-on-the-wild-side?from_search=true&from_srp=true&qid=KGz4zyG9L6&rank=1
The Rule of One,"Ashley Saunders, Leslie Saunders",https://www.goodreads.com/book/show/36584870-the-rule-of-one?from_search=true&from_srp=true&qid=NZ0J17tzXZ&rank=1
Bloodshot,Cherie Priest,https://www.goodreads.com/book/show/8140731-bloodshot?from_search=true&from_srp=true&qid=x7GLMf8mF1&rank=1
Operation K-9 Brothers,Sandra Owens,https://www.goodreads.com/book/show/55978035-operation-k-9-brothers?from_search=true&from_srp=true&qid=eD2mhfPDa5&rank=1
The Mistake,Elle Kennedy,https://www.goodreads.com/book/show/25564665-the-mistake?from_search=true&from_srp=true&qid=0v19VOwB5k&rank=1
"To Sir Phillip, with Love",Julia Quinn,https://www.goodreads.com/book/show/110386.To_Sir_Phillip_With_Love?from_search=true&from_srp=true&qid=yhUwwkAGOn&rank=1
Ryker,Geri Glenn,https://www.goodreads.com/book/show/25824668-ryker?from_search=true&from_srp=true&qid=mLmEw2TMiK&rank=1
Key of Light,Nora Roberts,https://www.goodreads.com/book/show/762053.Key_of_Light?from_search=true&from_srp=true&qid=arbZ9Ph65L&rank=1
To All the Boys I've Loved Before,Jenny Han,https://www.goodreads.com/book/show/43534455-to-all-the-boys-i-ve-loved-before-trilogy-box-set-jenny-han-complete-col?from_search=true&from_srp=true&qid=nduwMl9p24&rank=1
The Dating Plan,Sara Desai,https://www.goodreads.com/book/show/54326395-the-dating-plan?from_search=true&from_srp=true&qid=Go62w6LZL3&rank=1
Games of the Heart,Kristen Ashley,https://www.goodreads.com/book/show/13497180-games-of-the-heart?from_search=true&from_srp=true&qid=CquIdDnUjX&rank=1
When a Rogue Meets His Match,Elizabeth Hoyt,https://www.goodreads.com/book/show/39216157-when-a-rogue-meets-his-match?from_search=true&from_srp=true&qid=5fys9n5kmV&rank=1
Leave Me Breathless,Jodi Ellen Malpas,https://www.goodreads.com/book/show/44220698-leave-me-breathless?from_search=true&from_srp=true&qid=rhdvlNkRG1&rank=1
Tools of Engagement,Tessa Bailey,https://www.goodreads.com/book/show/49203369-tools-of-engagement?from_search=true&from_srp=true&qid=XzOAj97NvH&rank=1
Never Love a Highlander,Maya Banks,https://www.goodreads.com/book/show/10378106-never-love-a-highlander?from_search=true&from_srp=true&qid=FVRrJZdCf4&rank=1
Not Quite Dating,Catherine Bybee,https://www.goodreads.com/book/show/15954546-not-quite-dating?from_search=true&from_srp=true&qid=lhZvkfveV1&rank=1
Dr. OB,Max Monroe,https://www.goodreads.com/book/show/34945008-dr-ob?from_search=true&from_srp=true&qid=ZjSSb32pYl&rank=1
Doing It Over,Catherine Bybee,https://www.goodreads.com/book/show/27387202-doing-it-over?from_search=true&from_srp=true&qid=ByqBRADMWO&rank=1
A Pho Love Story,Loan Le,https://www.goodreads.com/book/show/54238295-a-pho-love-story?from_search=true&from_srp=true&qid=q5wgZEwcp4&rank=1
Royal,Winter Renshaw,https://www.goodreads.com/book/show/28639249-royal?from_search=true&from_srp=true&qid=Ll3jcxNKu5&rank=1
Highland Fire,Tanya Anne Crosby,https://www.goodreads.com/book/show/20835344-highland-fire?from_search=true&from_srp=true&qid=XsCatOJz5I&rank=1
Spin,CD Reiss,https://www.goodreads.com/book/show/36462258-spin?from_search=true&from_srp=true&qid=IniHVp4Gcy&rank=1
In the Unlikely Event,L.J. Shen,https://www.goodreads.com/book/show/48847096-in-the-unlikely-event?from_search=true&from_srp=true&qid=9E0mPvzo7x&rank=1
All I Ask,Corinne Michaels,https://www.goodreads.com/book/show/51203849-all-i-ask?from_search=true&from_srp=true&qid=oYwROCP7FR&rank=1
No Tomorrow,Carian Cole,https://www.goodreads.com/book/show/41757728-no-tomorrow?from_search=true&from_srp=true&qid=z06SwOD3r4&rank=1
Anything for You,Kristan Higgins,https://www.goodreads.com/book/show/25530076-anything-for-you?from_search=true&from_srp=true&qid=EXUnmnmM49&rank=1
When You Dare,Lori Foster,https://www.goodreads.com/book/show/9758743-when-you-dare?from_search=true&from_srp=true&qid=mQ2NaPUaCv&rank=1
Where the Wind Blows,Caroline Fyffe,https://www.goodreads.com/book/show/15954544-where-the-wind-blows?from_search=true&from_srp=true&qid=PLfvtPQ0r5&rank=1
Defiant Queen,Meghan March,https://www.goodreads.com/book/show/36325400-defiant-queen?from_search=true&from_srp=true&qid=pOL0DdBgTc&rank=1
Found,B.L. Brunnemer,https://www.goodreads.com/book/show/37808209-found?from_search=true&from_srp=true&qid=7EcOd04N3C&rank=1
Kingdom of Souls,Rena Barron,https://www.goodreads.com/book/show/44596261-kingdom-of-souls?from_search=true&from_srp=true&qid=7faRCqca8g&rank=1
Chasing Perfect,Susan Mallery,https://www.goodreads.com/book/show/7203690-chasing-perfect?from_search=true&from_srp=true&qid=4vhUrm1ytk&rank=2
The Unwanted Wife,Natasha Anders,https://www.goodreads.com/book/show/17346553-the-unwanted-wife?from_search=true&from_srp=true&qid=0MMEGKryrW&rank=1
Only a Promise,Mary Balogh,https://www.goodreads.com/book/show/23274098-only-a-promise?from_search=true&from_srp=true&qid=rGlNEoucAa&rank=1
Casting Lacey,Elle Spencer,https://www.goodreads.com/book/show/37765959-casting-lacey?from_search=true&from_srp=true&qid=WHR85S6HqQ&rank=1
Driven,K. Bromberg,https://www.goodreads.com/book/show/30164950-driven?from_search=true&from_srp=true&qid=9B5Hy9HvIn&rank=3
Like a Love Story,Abdi Nazemian,https://www.goodreads.com/book/show/40190305-like-a-love-story?from_search=true&from_srp=true&qid=T8B2BjLYbf&rank=1
Son of the Morning,Linda Howard,https://www.goodreads.com/book/show/420737.Son_of_the_Morning?from_search=true&from_srp=true&qid=sKTETXUDTC&rank=1
Super Host,Kate Russo,https://www.goodreads.com/book/show/52063378-super-host?from_search=true&from_srp=true&qid=viDR6kMwFG&rank=1
Extreme Exposure,Pamela Clare,https://www.goodreads.com/book/show/159767.Extreme_Exposure?from_search=true&from_srp=true&qid=uS8pcAF1FQ&rank=1
The Secret Pond,Gerri Hill,https://www.goodreads.com/book/show/35680081-the-secret-pond?from_search=true&from_srp=true&qid=QnxtZRgBH5&rank=1
"Always and Forever, Lara Jean",Jenny Han,https://www.goodreads.com/book/show/35247769-always-and-forever-lara-jean?from_search=true&from_srp=true&qid=MlF8AiWZzp&rank=1
Stay Gold,Tobly McSmith,https://www.goodreads.com/book/show/45306326-stay-gold?from_search=true&from_srp=true&qid=23Veu0NzIh&rank=1
Eliza and Her Monsters,Francesca Zappia,https://www.goodreads.com/book/show/31931941-eliza-and-her-monsters?from_search=true&from_srp=true&qid=DDs0QpXjgT&rank=1
Wild Rain,Beverly Jenkins,https://www.goodreads.com/book/show/43701060-wild-rain?from_search=true&from_srp=true&qid=Z0ETOHvIPN&rank=1
"Loveboat, Taipei",Abigail Hing Wen,https://www.goodreads.com/book/show/23559994-loveboat-taipei?from_search=true&from_srp=true&qid=Dso6EVlww2&rank=1
The Atomic Weight of Love,Elizabeth J. Church,https://www.goodreads.com/book/show/25810606-the-atomic-weight-of-love?from_search=true&from_srp=true&qid=daHqJ73zVj&rank=1
Unraveled,Helen Hardt,https://www.goodreads.com/book/show/36041506-unraveled?from_search=true&from_srp=true&qid=MiMmEVvG39&rank=1
Liftoff,Eric Berger,https://www.goodreads.com/book/show/53402132-liftoff?from_search=true&from_srp=true&qid=85dY5oOMNh&rank=1
Amazing Grace,Eric Metaxas,https://www.goodreads.com/book/show/106610.Amazing_Grace?from_search=true&from_srp=true&qid=VxSFdl2KzE&rank=1
"Eat, Pray, #FML",Gabrielle Stone,https://www.goodreads.com/book/show/52942957-eat-pray-fml?from_search=true&from_srp=true&qid=PmAhVyjALR&rank=3
Building a Life Worth Living,Marsha M. Linehan,https://www.goodreads.com/book/show/43495368-building-a-life-worth-living?from_search=true&from_srp=true&qid=9JFFxqiwBu&rank=1
Dirty Rocker Boys,Bobbie Brown,https://www.goodreads.com/book/show/17570753-dirty-rocker-boys?from_search=true&from_srp=true&qid=Kt9XJrP7S4&rank=1
Every Breath You Take,Ann Rule,https://www.goodreads.com/book/show/266346.Every_Breath_You_Take?from_search=true&from_srp=true&qid=e52Ye0WieU&rank=1
Coreyography,Corey Feldman,https://www.goodreads.com/book/show/17286694-coreyography?from_search=true&from_srp=true&qid=KtzQVbAzSz&rank=1
Demonic Foes,Richard Gallagher,https://www.goodreads.com/book/show/42117326-demonic-foes?from_search=true&from_srp=true&qid=2gvXW8ReP5&rank=1
This Is What America Looks Like,Ilhan Omar,https://www.goodreads.com/book/show/51927994-this-is-what-america-looks-like?from_search=true&from_srp=true&qid=TkNifuSHgQ&rank=1
The Dynasty,Jeff Benedict,https://www.goodreads.com/book/show/53358819-the-dynasty?from_search=true&from_srp=true&qid=vwo3TSh9fA&rank=1
Disney's Land,Richard Snow,https://www.goodreads.com/book/show/45320545-disney-s-land?from_search=true&from_srp=true&qid=XdTYd0bvSn&rank=1
Yogi,Jon Pessah,https://www.goodreads.com/book/show/40696937-yogi?from_search=true&from_srp=true&qid=5dIYMpBBop&rank=1
No Angel,"Jay Dobyns, Nils Johnson-Shelton",https://www.goodreads.com/book/show/3425474-no-angel?from_search=true&from_srp=true&qid=MkkYSXN7Cx&rank=1
Kindness and Wonder,Gavin Edwards,https://www.goodreads.com/book/show/43386063-kindness-and-wonder?from_search=true&from_srp=true&qid=dgy78fpIe3&rank=1
"Black, White, and The Grey","Mashama Bailey, John O. Morisano",https://www.goodreads.com/book/show/56563411-black-white-and-the-grey?from_search=true&from_srp=true&qid=E3IDKwR1zw&rank=1
Becoming Dr. Seuss,Brian Jay Jones,https://www.goodreads.com/book/show/40410342-becoming-dr-seuss?from_search=true&from_srp=true&qid=SvuH3sgFQt&rank=1
Put on Your Crown,Queen Latifah,https://www.goodreads.com/book/show/7845156-put-on-your-crown?from_search=true&from_srp=true&qid=kmoFVmwBPf&rank=1
Every Day Is a Gift,Tammy Duckworth,https://www.goodreads.com/book/show/55898097-every-day-is-a-gift?from_search=true&from_srp=true&qid=3gWc5vQvkA&rank=1
Running to the Edge,Matthew Futterman,https://www.goodreads.com/book/show/41880041-running-to-the-edge?from_search=true&from_srp=true&qid=q11CQbGcCc&rank=1
Haben,Haben Girma,https://www.goodreads.com/book/show/43211952-haben?from_search=true&from_srp=true&qid=2mT1lZ30yZ&rank=1
All Blood Runs Red,"Phil Keith, Tom Clavin",https://www.goodreads.com/book/show/43838523-all-blood-runs-red?from_search=true&from_srp=true&qid=oVDCFeVWsH&rank=1
The Movie Musical!,Jeanine Basinger,https://www.goodreads.com/book/show/43626635-the-movie-musical?from_search=true&from_srp=true&qid=6FIJsBz3gH&rank=1
Imperfect Union,Steve Inskeep,https://www.goodreads.com/book/show/46033572-imperfect-union?from_search=true&from_srp=true&qid=oMxTVSx135&rank=1
Catching the Wolf of Wall Street,Jordan Belfort,https://www.goodreads.com/book/show/5083959-catching-the-wolf-of-wall-street?from_search=true&from_srp=true&qid=ynOo0YdBMS&rank=1
Made Men,Glenn Kenny,https://www.goodreads.com/book/show/50353733-made-men?from_search=true&from_srp=true&qid=kNrvi0bdxk&rank=1
Medallion Status,John Hodgman,https://www.goodreads.com/book/show/44908180-medallion-status?from_search=true&from_srp=true&qid=Fo2uixf5p5&rank=1
God-Level Knowledge Darts,"Desus, Mero",https://www.goodreads.com/book/show/48995022-god-level-knowledge-darts?from_search=true&from_srp=true&qid=SVPzEhhyl2&rank=1
This One Wild and Precious Life,Sarah Wilson,https://www.goodreads.com/book/show/54112488-this-one-wild-and-precious-life?from_search=true&from_srp=true&qid=Vm6iYPU6nt&rank=1
Becoming Eve,Abby Stein,https://www.goodreads.com/book/show/44287250-becoming-eve?from_search=true&from_srp=true&qid=HEEqwZYXCW&rank=1
Ultramarathon Man,Dean Karnazes,https://www.goodreads.com/book/show/87632.Ultramarathon_Man?from_search=true&from_srp=true&qid=Vl5Ywwg2i5&rank=1
Sitting Pretty,Rebekah Taussig,https://www.goodreads.com/book/show/52167161-sitting-pretty?from_search=true&from_srp=true&qid=swMxgnMzgn&rank=1
Confident Women,Tori Telfer,https://www.goodreads.com/book/show/53487125-confident-women?from_search=true&from_srp=true&qid=OQtIj2Iwtw&rank=1
"Barry Sonnenfeld, Call Your Mother",Barry Sonnenfeld,https://www.goodreads.com/book/show/51196840-barry-sonnenfeld-call-your-mother?from_search=true&from_srp=true&qid=SsEbPjVvxb&rank=1
Notes from the Bathroom Line,Amy Solomon,https://www.goodreads.com/book/show/52035052-notes-from-the-bathroom-line?from_search=true&from_srp=true&qid=EFHazSFUaT&rank=1
The Other Side of the Coin,Angela Kelly,https://www.goodreads.com/book/show/48616859-the-other-side-of-the-coin?from_search=true&from_srp=true&qid=E9aH4YvZtD&rank=2
His Excellency,Joseph J. Ellis,https://www.goodreads.com/book/show/6462.His_Excellency?from_search=true&from_srp=true&qid=yEvjLuBTAg&rank=1
Run to the Sound of the Guns,"Nicholas Moore, Mir Bahmanyar",https://www.goodreads.com/book/show/42398630-run-to-the-sound-of-the-guns?from_search=true&from_srp=true&qid=3OmP8KZaKC&rank=1
When Death Becomes Life,Joshua D. Mezrich,https://www.goodreads.com/book/show/37868562-when-death-becomes-life?from_search=true&from_srp=true&qid=sw2TdG1ILz&rank=1
Agent Storm,"Morten Storm, Paul Cruickshank, Tim Lister",https://www.goodreads.com/book/show/20763926-agent-storm?from_search=true&from_srp=true&qid=3MEay0fD8g&rank=1
The Last Stand of Payne Stewart,Kevin Robbins,https://www.goodreads.com/book/show/43885039-the-last-stand-of-payne-stewart?from_search=true&from_srp=true&qid=m2YivhXCok&rank=1
Good Husbandry,Kristin Kimball,https://www.goodreads.com/book/show/43822076-good-husbandry?from_search=true&from_srp=true&qid=UzVRk0qFAY&rank=1
Gay Like Me,Richie Jackson,https://www.goodreads.com/book/show/45999776-gay-like-me?from_search=true&from_srp=true&qid=mNn28RXfAF&rank=1
The Life and Afterlife of Harry Houdini,Joe Posnanski,https://www.goodreads.com/book/show/44149851-the-life-and-afterlife-of-harry-houdini?from_search=true&from_srp=true&qid=HbHeVcNp3V&rank=1
I Like to Watch,Emily Nussbaum,https://www.goodreads.com/book/show/42815538-i-like-to-watch?from_search=true&from_srp=true&qid=02WEHrj6A5&rank=1
Strangers Tend to Tell Me Things,Amy Dickinson,https://www.goodreads.com/book/show/28925620-strangers-tend-to-tell-me-things?from_search=true&from_srp=true&qid=NYX7ejENwh&rank=1
Notes from an Apocalypse,Mark O'Connell,https://www.goodreads.com/book/show/52019031-notes-from-an-apocalypse?from_search=true&from_srp=true&qid=m6pYbZV7Dw&rank=1
The Good Girls,Sonia Faleiro,https://www.goodreads.com/book/show/55574506-the-good-girls?from_search=true&from_srp=true&qid=VJ4VBEs0K9&rank=1
Little Miss Little Compton,"Arden Myrin, Debby Ryan",https://www.goodreads.com/book/show/51335206-little-miss-little-compton?from_search=true&from_srp=true&qid=H5fTTTgLzv&rank=1
Raceless,Georgina Lawton,https://www.goodreads.com/book/show/51475373-raceless?from_search=true&from_srp=true&qid=W2rqzbk7xx&rank=1
Tanking to the Top,Yaron Weitzman,https://www.goodreads.com/book/show/51205617-tanking-to-the-top?from_search=true&from_srp=true&qid=hYFXAJvzjC&rank=1
Fire Cannot Kill a Dragon,James Hibberd,https://www.goodreads.com/book/show/51774149-fire-cannot-kill-a-dragon?from_search=true&from_srp=true&qid=8f7XvQjs3B&rank=1
Hungry,Jeff Gordinier,https://www.goodreads.com/book/show/42590641-hungry?from_search=true&from_srp=true&qid=vgzhgAZIC1&rank=1
Fluent Forever,Gabriel Wyner,https://www.goodreads.com/book/show/19661852-fluent-forever?from_search=true&from_srp=true&qid=ge5iCpWUul&rank=1
Entangled Life,Merlin Sheldrake,https://www.goodreads.com/book/show/52668915-entangled-life?from_search=true&from_srp=true&qid=khYJvw96NJ&rank=2
The Storm of War,Andrew Roberts,https://www.goodreads.com/book/show/9850339-the-storm-of-war?from_search=true&from_srp=true&qid=1LrCoPA41L&rank=1
Mobituaries,Mo Rocca,https://www.goodreads.com/book/show/43821589-mobituaries?from_search=true&from_srp=true&qid=WvdUfrIpZ4&rank=1
The Ministry for the Future,Kim Stanley Robinson,https://www.goodreads.com/book/show/50998056-the-ministry-for-the-future?from_search=true&from_srp=true&qid=cmItIrmuvX&rank=1
That Will Never Work,Marc Randolph,https://www.goodreads.com/book/show/44428950-that-will-never-work?from_search=true&from_srp=true&qid=MLRtSZn1XO&rank=1
101 Essays That Will Change the Way You Think,Brianna Wiest,https://www.goodreads.com/book/show/32998876-101-essays-that-will-change-the-way-you-think?from_search=true&from_srp=true&qid=pWHJUYD7bt&rank=1
Gulag,Anne Applebaum,https://www.goodreads.com/book/show/224379.Gulag?from_search=true&from_srp=true&qid=cPGeHAFFfx&rank=1
Running with Sherman,Christopher McDougall,https://www.goodreads.com/book/show/43834684-running-with-sherman?from_search=true&from_srp=true&qid=E2fEQhbTNS&rank=1
The Physics of God,"Amit Goswami, Joseph Selbie",https://www.goodreads.com/book/show/36130592-the-physics-of-god?from_search=true&from_srp=true&qid=Cudg4mE5Wv&rank=1
The Rise and Fall of Ancient Egypt,Toby Wilkinson,https://www.goodreads.com/book/show/8536070-the-rise-and-fall-of-ancient-egypt?from_search=true&from_srp=true&qid=8yQcSPChHe&rank=1
American Serial Killers,Peter Vronsky,https://www.goodreads.com/book/show/52623753-american-serial-killers?from_search=true&from_srp=true&qid=gfc1Q0e3In&rank=1
Dark Alliance,Gary Webb,https://www.goodreads.com/book/show/40718249-dark-alliance?from_search=true&from_srp=true&qid=Ugzv3BpyAE&rank=1
Exercised,Daniel Lieberman,https://www.goodreads.com/book/show/49358915-exercised?from_search=true&from_srp=true&qid=1kPY2LpC9G&rank=2
The Singularity Is Near,Ray Kurzweil,https://www.goodreads.com/book/show/83518.The_Singularity_is_Near?from_search=true&from_srp=true&qid=UrzLbyCaG7&rank=1
For the Love of Physics,"Walter Lewin, Warren Goldstein",https://www.goodreads.com/book/show/7841672-for-the-love-of-physics?from_search=true&from_srp=true&qid=17ahWmNfCJ&rank=1
Prediction Machines,"Ajay Agrawal, Joshua Gans, Avi Goldfarb",https://www.goodreads.com/book/show/36484703-prediction-machines?from_search=true&from_srp=true&qid=6ZqsmVJUoj&rank=1
I Am C-3PO,"Anthony Daniels, J.J. Abrams",https://www.goodreads.com/book/show/45038733-i-am-c-3po?from_search=true&from_srp=true&qid=PW0DU2ECOf&rank=1
Why Evolution Is True,Jerry A. Coyne,https://www.goodreads.com/book/show/4005310-why-evolution-is-true?from_search=true&from_srp=true&qid=n97T60N4bs&rank=1
FAKE,Robert T. Kiyosaki,https://www.goodreads.com/book/show/40385517-fake?from_search=true&from_srp=true&qid=0VogidC90o&rank=1
Wonderworks,Angus Fletcher,https://www.goodreads.com/book/show/54304160-wonderworks?from_search=true&from_srp=true&qid=mviq5HslY1&rank=1
The New New Thing,Michael Lewis,https://www.goodreads.com/book/show/17986421-the-new-new-thing?from_search=true&from_srp=true&qid=XTA08BxjDH&rank=1
Words on the Move,John McWhorter,https://www.goodreads.com/book/show/28696604-words-on-the-move?from_search=true&from_srp=true&qid=k85u2BC0AO&rank=1
A Knock at Midnight,Brittany K. Barnett,https://www.goodreads.com/book/show/52654711-a-knock-at-midnight?from_search=true&from_srp=true&qid=gNTtBzqZzt&rank=1
Who Ate the First Oyster?,Cody Cassidy,https://www.goodreads.com/book/show/52508868-who-ate-the-first-oyster?from_search=true&from_srp=true&qid=KTw70RJHOC&rank=1
The Virtue of Selfishness,Ayn Rand,https://www.goodreads.com/book/show/665.The_Virtue_of_Selfishness?from_search=true&from_srp=true&qid=NScF6cCbDx&rank=3
Betrayal in Berlin,Steve Vogel,https://www.goodreads.com/book/show/49397448-betrayal-in-berlin?from_search=true&from_srp=true&qid=FzRrOQp6BO&rank=1
The Great Pretender,Susannah Cahalan,https://www.goodreads.com/book/show/44287149-the-great-pretender?from_search=true&from_srp=true&qid=QIRPESmZID&rank=1
The Book of Gutsy Women,"Hillary Rodham Clinton, Chelsea Clinton",https://www.goodreads.com/book/show/53086148-the-book-of-gutsy-women?from_search=true&from_srp=true&qid=SWyRJY4xoO&rank=1
The Pixar Touch,David A. Price,https://www.goodreads.com/book/show/2632830-the-pixar-touch?from_search=true&from_srp=true&qid=7EIIh5CGO0&rank=1
The World of Critical Role,"Liz Marsham, Cast of Critical Role, Critical Role",https://www.goodreads.com/book/show/54738186-the-world-of-critical-role?from_search=true&from_srp=true&qid=uLsF8IUUfn&rank=1
The Unidentified,Colin Dickey,https://www.goodreads.com/book/show/51216215-the-unidentified?from_search=true&from_srp=true&qid=7hc4DKzvAu&rank=1
The Book of Eels,Patrik Svensson,https://www.goodreads.com/book/show/51938590-the-book-of-eels?from_search=true&from_srp=true&qid=0O92fmEJzu&rank=1
The Song of the Dodo,David Quammen,https://www.goodreads.com/book/show/546725.The_Song_of_the_Dodo?from_search=true&from_srp=true&qid=VxOYesDaVH&rank=2
Eat Like a Fish,Bren Smith,https://www.goodreads.com/book/show/41552367-eat-like-a-fish?from_search=true&from_srp=true&qid=S7tEEskSTx&rank=1
Ingredients,George Zaidan,https://www.goodreads.com/book/show/48822623-ingredients?from_search=true&from_srp=true&qid=DnbwaDV7y2&rank=1
You Look Like a Thing and I Love You,Janelle Shane,https://www.goodreads.com/book/show/44286534-you-look-like-a-thing-and-i-love-you?from_search=true&from_srp=true&qid=tityiXDz55&rank=1
Black Hearts,Jim Frederick,https://www.goodreads.com/book/show/7168870-black-hearts?from_search=true&from_srp=true&qid=KlKgxloe9h&rank=1
A Game of Birds and Wolves,Simon Parkin,https://www.goodreads.com/book/show/45730911-a-game-of-birds-and-wolves?from_search=true&from_srp=true&qid=A6OmBL2kyu&rank=1
The Great Delusion,John J. Mearsheimer,https://www.goodreads.com/book/show/38748983-the-great-delusion?from_search=true&from_srp=true&qid=1uZeHcDzck&rank=1
Country Music,"Dayton Duncan, Ken Burns",https://www.goodreads.com/book/show/45557152-country-music?from_search=true&from_srp=true&qid=mgi7cpWTvM&rank=1
The Ghosts of Eden Park,Karen Abbott,https://www.goodreads.com/book/show/43747492-the-ghosts-of-eden-park?from_search=true&from_srp=true&qid=APVzbUEsaI&rank=1
The Hunt for Vulcan,Thomas Levenson,https://www.goodreads.com/book/show/25238350-the-hunt-for-vulcan?from_search=true&from_srp=true&qid=X6qF7Fy5eZ&rank=1
A Colony in a Nation,Chris Hayes,https://www.goodreads.com/book/show/35167682-a-colony-in-a-nation?from_search=true&from_srp=true&qid=gQ0K35Sq7Z&rank=1
The Inner Life of Cats,Thomas McNamee,https://www.goodreads.com/book/show/30841952-the-inner-life-of-cats?from_search=true&from_srp=true&qid=v4awIyOvB2&rank=1
Stranger in the Shogun's City,Amy Stanley,https://www.goodreads.com/book/show/52768414-stranger-in-the-shogun-s-city?from_search=true&from_srp=true&qid=bU7vVdKZOe&rank=1
We Have Been Harmonized,Kai Strittmatter,https://www.goodreads.com/book/show/49203415-we-have-been-harmonized?from_search=true&from_srp=true&qid=kaJqxu7K6r&rank=1
Great Goddesses,Nikita Gill,https://www.goodreads.com/book/show/44157727-great-goddesses?from_search=true&from_srp=true&qid=bpRdBvm6n8&rank=1
"Big Sister, Little Sister, Red Sister",Jung Chang,https://www.goodreads.com/book/show/43811202-big-sister-little-sister-red-sister?from_search=true&from_srp=true&qid=ATdyvemXam&rank=1
Bubble in the Sun,Christopher Knowlton,https://www.goodreads.com/book/show/49480882-bubble-in-the-sun?from_search=true&from_srp=true&qid=YB1K5yc5UK&rank=1
Oceanology,DK,https://www.goodreads.com/book/show/50347444-oceanology?from_search=true&from_srp=true&qid=6eiM2hhNPr&rank=1
ISIS,"Michael Weiss, Hassan Hassan",https://www.goodreads.com/book/show/23846387-isis?from_search=true&from_srp=true&qid=bPfWLqaHor&rank=3
Win at All Costs,Matt Hart,https://www.goodreads.com/book/show/48929864-win-at-all-costs?from_search=true&from_srp=true&qid=xMB9yDkliv&rank=1
The Buried,Peter Hessler,https://www.goodreads.com/book/show/40641080-the-buried?from_search=true&from_srp=true&qid=OzahYQP5aL&rank=1
The Ice at the End of the World,Jon Gertner,https://www.goodreads.com/book/show/41882632-the-ice-at-the-end-of-the-world?from_search=true&from_srp=true&qid=wHJSHzKg4D&rank=1
The Making of a Miracle,"Mike Eruzione, Neal Boudette",https://www.goodreads.com/book/show/48812273-the-making-of-a-miracle?from_search=true&from_srp=true&qid=VL3HHZq8Kp&rank=1
Swing Kings,Jared Diamond,https://www.goodreads.com/book/show/49610030-swing-kings?from_search=true&from_srp=true&qid=vHLdBmXg0x&rank=1
How to Think Like a Fish,Jeremy Wade,https://www.goodreads.com/book/show/44000371-how-to-think-like-a-fish?from_search=true&from_srp=true&qid=XbynNPHV5R&rank=1
The Sirens of Mars,Sarah Stewart Johnson,https://www.goodreads.com/book/show/50751225-the-sirens-of-mars?from_search=true&from_srp=true&qid=LguyH3Md8p&rank=1
The Girls,Abigail Pesta,https://www.goodreads.com/book/show/43492058-the-girls?from_search=true&from_srp=true&qid=DX5rb94RAy&rank=1
One Day,Gene Weingarten,https://www.goodreads.com/book/show/44525300-one-day?from_search=true&from_srp=true&qid=w7zpDqWJfH&rank=1
Two Truths and a Lie,Ellen McGarrahan,https://www.goodreads.com/book/show/33517784-two-truths-and-a-lie?from_search=true&from_srp=true&qid=LXBZdfMmIH&rank=1
"Doctor Dolittle: The Complete Collection, Vol. 1",Hugh Lofting,https://www.goodreads.com/book/show/42101723-doctor-dolittle?from_search=true&from_srp=true&qid=w0Xw00fink&rank=1
The BFG,Roald Dahl,https://www.goodreads.com/book/show/6319.The_BFG?from_search=true&from_srp=true&qid=dXBocPDyZs&rank=7
Book Scavenger,Jennifer Chambliss Bertman,https://www.goodreads.com/book/show/22718727-book-scavenger?from_search=true&from_srp=true&qid=fSjRwcNrOp&rank=1
The Magic Misfits: The Fourth Suit,Neil Patrick Harris,https://www.goodreads.com/book/show/50497265-the-fourth-suit?from_search=true&from_srp=true&qid=KBJUoSADyz&rank=1
Self-Compassion,Kristin Neff,https://www.goodreads.com/book/show/10127008-self-compassion?from_search=true&from_srp=true&qid=vKAGgnmhD9&rank=2
Wintering,Katherine May,https://www.goodreads.com/book/show/52623750-wintering?from_search=true&from_srp=true&qid=HEt9qphtPj&rank=2
The Spirit Catches You and You Fall Down,Anne Fadiman,https://www.goodreads.com/book/show/12609.The_Spirit_Catches_You_and_You_Fall_Down?from_search=true&from_srp=true&qid=TQtiNRCeQq&rank=3
Blowing the Bloody Doors Off,Michael Caine,https://www.goodreads.com/book/show/39295912-blowing-the-bloody-doors-off?from_search=true&from_srp=true&qid=0nXXReZwJX&rank=1
The 5 Levels of Leadership,John C. Maxwell,https://www.goodreads.com/book/show/11225698-the-5-levels-of-leadership?from_search=true&from_srp=true&qid=dx82Y11Wkd&rank=1
The Wealth Choice,Dennis Kimbro,https://www.goodreads.com/book/show/15794260-the-wealth-choice?from_search=true&from_srp=true&qid=CkjbkImWZO&rank=1
"Speak Like Churchill, Stand Like Lincoln",James C. Humes,https://www.goodreads.com/book/show/80318.Speak_Like_Churchill_Stand_Like_Lincoln?from_search=true&from_srp=true&qid=f4WISdNNZz&rank=1
The Rational Bible: Genesis,Dennis Prager,https://www.goodreads.com/book/show/40538823-the-rational-bible?from_search=true&from_srp=true&qid=pf6zjPEBt4&rank=1
The Defining Decade,Meg Jay,https://www.goodreads.com/book/show/40603783-the-defining-decade?from_search=true&from_srp=true&qid=sO8Kct0iiJ&rank=1
Food Freedom Forever,Melissa Hartwig,https://www.goodreads.com/book/show/28504553-food-freedom-forever?from_search=true&from_srp=true&qid=tGO80XtpdF&rank=1
Stop Missing Your Life,Cory Muscara,https://www.goodreads.com/book/show/45031890-stop-missing-your-life?from_search=true&from_srp=true&qid=1721GpJ4wK&rank=1
How to Break Your Addiction to a Person,Howard M. Halpern PhD,https://www.goodreads.com/book/show/378144.How_to_Break_Your_Addiction_to_a_Person?from_search=true&from_srp=true&qid=NvKRF6bnKr&rank=1
The Art of Strategy,"Barry J. Nalebuff, Avinash K. Dixit",https://www.goodreads.com/book/show/2423424.The_Art_of_Strategy?from_search=true&from_srp=true&qid=5zn0JAf6QA&rank=1
How We Show Up,Mia Birdsong,https://www.goodreads.com/book/show/45032310-how-we-show-up?from_search=true&from_srp=true&qid=RBAuRnvj6c&rank=1
Speak with Impact,Allison Shapira,https://www.goodreads.com/book/show/39873373-speak-with-impact?from_search=true&from_srp=true&qid=ulNkzIviC3&rank=1
The Urban Monk,Pedram Shojai OMD,https://www.goodreads.com/book/show/39703605-the-urban-monk-inner-stillness-training-program?from_search=true&from_srp=true&qid=oPp4Dwi5YI&rank=2
Remote Work Revolution,Tsedal Neeley,https://www.goodreads.com/book/show/54109219-remote-work-revolution?from_search=true&from_srp=true&qid=MCTlJHFcxJ&rank=1
Never Go Back,Dr. Henry Cloud,https://www.goodreads.com/book/show/18775392-never-go-back?from_search=true&from_srp=true&qid=fIz48joBLF&rank=1
Unf*ckology,Amy Alkon,https://www.goodreads.com/book/show/34964841-unf-ckology?from_search=true&from_srp=true&qid=WPnneTSdz1&rank=1
For the Love of a Dog,Patricia B McConnell,https://www.goodreads.com/book/show/31054.For_the_Love_of_a_Dog?from_search=true&from_srp=true&qid=fkiSbcS5kK&rank=1
The Book of Moods,Lauren Martin,https://www.goodreads.com/book/show/53021563-the-book-of-moods?from_search=true&from_srp=true&qid=663FOg7lG9&rank=1
How to Get Sh*t Done,Erin Falconer,https://www.goodreads.com/book/show/35297359-how-to-get-sh-t-done?from_search=true&from_srp=true&qid=fuZ4Gh1suO&rank=1
Your Fully Charged Life,Meaghan B. Murphy,https://www.goodreads.com/book/show/55271518-your-fully-charged-life?from_search=true&from_srp=true&qid=NVXKkngvig&rank=1
The Joy of Movement,Kelly McGonigal,https://www.goodreads.com/book/show/44780556-the-joy-of-movement?from_search=true&from_srp=true&qid=X18Z3SJIWZ&rank=1
The Great Cholesterol Myth,"Stephen T. Sinatra, Jonny Bowden",https://www.goodreads.com/book/show/13590581-the-great-cholesterol-myth?from_search=true&from_srp=true&qid=OFcMsAiJYE&rank=1
The Ten Faces of Innovation,"Tom Kelley, Jonathan Littman",https://www.goodreads.com/book/show/95656.The_Ten_Faces_of_Innovation?from_search=true&from_srp=true&qid=NT1rMGB3qP&rank=1
Level Up Your Life,Steve Kamb,https://www.goodreads.com/book/show/24615920-level-up-your-life?from_search=true&from_srp=true&qid=8isykxWI8J&rank=1
Dress Your Best Life,Dawnn Karen,https://www.goodreads.com/book/show/51197947-dress-your-best-life?from_search=true&from_srp=true&qid=YhF6pt5Ea2&rank=1
The Nerdist Way,Chris Hardwick,https://www.goodreads.com/book/show/10723227-the-nerdist-way?from_search=true&from_srp=true&qid=fRqLO5ayPf&rank=1
A Pilgrimage to Eternity,Timothy Egan,https://www.goodreads.com/book/show/44140367-a-pilgrimage-to-eternity?from_search=true&from_srp=true&qid=xN53h3obZR&rank=1
The Rumi Prescription,Melody Moezzi,https://www.goodreads.com/book/show/52580350-the-rumi-prescription?from_search=true&from_srp=true&qid=410dgGvPom&rank=1
Work Won't Love You Back,Sarah Jaffe,https://www.goodreads.com/book/show/53241562-work-won-t-love-you-back?from_search=true&from_srp=true&qid=FPCqgpopsW&rank=1
The Fate of Food,Amanda Little,https://www.goodreads.com/book/show/41882450-the-fate-of-food?from_search=true&from_srp=true&qid=F6LHFAGGNC&rank=1
Huddle,Brooke Baldwin,https://www.goodreads.com/book/show/54427164-huddle?from_search=true&from_srp=true&qid=u8Nc034qXw&rank=1
After the Rain,Alexandra Elle,https://www.goodreads.com/book/show/50999390-after-the-rain?from_search=true&from_srp=true&qid=MnxgNnZsUV&rank=1
Your Time to Thrive,Marina Khidekel,https://www.goodreads.com/book/show/54499068-your-time-to-thrive?from_search=true&from_srp=true&qid=apieu9gTFR&rank=1
Unwind Your Mind,Emma WhispersRed,https://www.goodreads.com/book/show/52676773-unwind-your-mind?from_search=true&from_srp=true&qid=hpTrHwi8zb&rank=1
A Simplified Life,Emily Ley,https://www.goodreads.com/book/show/34460565-a-simplified-life?from_search=true&from_srp=true&qid=6OMjWATnbW&rank=1
Never Settle,Marty Smith,https://www.goodreads.com/book/show/43522581-never-settle?from_search=true&from_srp=true&qid=1IoLiTDfzr&rank=2
Weird,Olga Khazan,https://www.goodreads.com/book/show/51338489-weird?from_search=true&from_srp=true&qid=owyCmbluM7&rank=1
Fashionopolis,Dana Thomas,https://www.goodreads.com/book/show/43671670-fashionopolis?from_search=true&from_srp=true&qid=ARLY7wmkQO&rank=1
This Just Speaks to Me,Hoda Kotb,https://www.goodreads.com/book/show/53911856-this-just-speaks-to-me?from_search=true&from_srp=true&qid=vHRUQzBt6s&rank=1
On the Clock,Emily Guendelsberger,https://www.goodreads.com/book/show/42779084-on-the-clock?from_search=true&from_srp=true&qid=nX6T56A2D2&rank=1
Sailing True North,Admiral James Stavridis,https://www.goodreads.com/book/show/44028643-sailing-true-north?from_search=true&from_srp=true&qid=4SX3XaMhLA&rank=1
Happiness the Mindful Way,Ken A. Verni,https://www.goodreads.com/book/show/25194232-happiness-the-mindful-way?from_search=true&from_srp=true&qid=ECRvzPVoB8&rank=1
Forest Therapy,Sarah Ivens,https://www.goodreads.com/book/show/38650666-forest-therapy?from_search=true&from_srp=true&qid=4J7o7CDFNS&rank=1
Dreams,Rosie March-Smith,https://www.goodreads.com/book/show/44143619-dreams?from_search=true&from_srp=true&qid=CsDqNeKgi0&rank=1
How to Make a Plant Love You,Summer Rayne Oakes,https://www.goodreads.com/book/show/42584180-how-to-make-a-plant-love-you?from_search=true&from_srp=true&qid=xBRNGBH0am&rank=1
A Unicorn in a World of Donkeys,Mia Michaels,https://www.goodreads.com/book/show/36204960-a-unicorn-in-a-world-of-donkeys?from_search=true&from_srp=true&qid=VvdL1kTQLq&rank=1
Miss Benson's Beetle,Rachel Joyce,https://www.goodreads.com/book/show/52674676-miss-benson-s-beetle?from_search=true&from_srp=true&qid=1jAU2tnzNO&rank=1
The Secret Life of Bees,Sue Monk Kidd,https://www.goodreads.com/book/show/37435.The_Secret_Life_of_Bees?ac=1&from_search=true&qid=SIRAyoAm34&rank=2
Pride and Prejudice [Blackstone Audio],Jane Austen,https://www.goodreads.com/book/show/1885.Pride_and_Prejudice?from_search=true&from_srp=true&qid=aZrfmFsptH&rank=2
The Bookshop at Water's End,Patti Callahan Henry,https://www.goodreads.com/book/show/32766483-the-bookshop-at-water-s-end?from_search=true&from_srp=true&qid=SSfuTkLVvW&rank=1
The Idiot [Blackstone],Fyodor Dostoevsky,https://www.goodreads.com/book/show/12505.The_Idiot?from_search=true&from_srp=true&qid=bRhGo0Nw1T&rank=1
While Paris Slept,Ruth Druart,https://www.goodreads.com/book/show/53146101-while-paris-slept?from_search=true&from_srp=true&qid=ePNg1jnI0X&rank=1
The Protector's War,S. M. Stirling,https://www.goodreads.com/book/show/116449.The_Protector_s_War?from_search=true&from_srp=true&qid=yyGEwbv3MC&rank=1
The Honest Spy,"Andreas Kollender, Steve Anderson - translator",https://www.goodreads.com/book/show/34330652-the-honest-spy?from_search=true&from_srp=true&qid=46z7eUOLLD&rank=1
The Burning Girls,C. J. Tudor,https://www.goodreads.com/book/show/53387949-the-burning-girls?from_search=true&from_srp=true&qid=wD5BEJdoNL&rank=1
Framed,S. L. McInnis,https://www.goodreads.com/book/show/44582899-framed?from_search=true&from_srp=true&qid=KuexAXC9yO&rank=1
The Post-Human Omnibus,David Simpson,https://www.goodreads.com/book/show/20453431-post-human-omnibus?from_search=true&from_srp=true&qid=6l8jNlZydE&rank=1
Greyhound (Movie Tie-In),C. S. Forester,https://www.goodreads.com/book/show/53723011-greyhound-movie-tie-in?from_search=true&from_srp=true&qid=9K4G7NoFfh&rank=1
In the Clearing,J. P. Pomare,https://www.goodreads.com/book/show/51960928-in-the-clearing?from_search=true&from_srp=true&qid=RnwuPmoVA9&rank=1
Finding Grace,K. L. Slater,https://www.goodreads.com/book/show/43170493-finding-grace?from_search=true&from_srp=true&qid=qNsJ2YqiDE&rank=1
They're Watching,Gregg Hurwitz,https://www.goodreads.com/book/show/7243435-they-re-watching?from_search=true&from_srp=true&qid=oPwu8BteIZ&rank=1
Good Girls Lie,J. T. Ellison,https://www.goodreads.com/book/show/43193837-good-girls-lie?from_search=true&from_srp=true&qid=CoywdBsNmH&rank=1
A Gambler's Jury,Victor Methos,https://www.goodreads.com/book/show/35086210-a-gambler-s-jury?from_search=true&from_srp=true&qid=mRTZRohMdM&rank=1
The City We Became,N. K. Jemisin,https://www.goodreads.com/book/show/42074525-the-city-we-became?from_search=true&from_srp=true&qid=hMOsNxAEbE&rank=1
Pan's Labyrinth: The Labyrinth of the Faun,"Guillermo del Toro, Cornelia Funke",https://www.goodreads.com/book/show/42117981-pan-s-labyrinth?from_search=true&from_srp=true&qid=3Q8TB28mQt&rank=1
Unwholly,Neal Shusterman,https://www.goodreads.com/book/show/13545075-unwholly?from_search=true&from_srp=true&qid=g4Zz7ozdS2&rank=1
The Thousand Orcs,R. A. Salvatore,https://www.goodreads.com/book/show/66683.The_Thousand_Orcs?from_search=true&from_srp=true&qid=7no9Ck1lam&rank=1
Crave,J. R. Ward,https://www.goodreads.com/book/show/7828882-crave?from_search=true&from_srp=true&qid=awcKqmnNgO&rank=1
Where the Wild Things Bite,Molly Harper,https://www.goodreads.com/book/show/27274410-where-the-wild-things-bite?from_search=true&from_srp=true&qid=43mvM6DBiX&rank=1
When Life Gives You Pears,Jeannie Gaffigan,https://www.goodreads.com/book/show/44064563-when-life-gives-you-pears?from_search=true&from_srp=true&qid=iA3H13LAKc&rank=1
Shadow's Edge,J. T. Geissinger,https://www.goodreads.com/book/show/13811234-shadow-s-edge?from_search=true&from_srp=true&qid=88Ess7G784&rank=1
The Winter King,C. L. Wilson,https://www.goodreads.com/book/show/10485751-the-winter-king?from_search=true&from_srp=true&qid=QdbIA96JaT&rank=1
How the King of Elfhame Learned to Hate Stories,"Holly Black, Rovina Cai - illustrator",https://www.goodreads.com/book/show/53439886-how-the-king-of-elfhame-learned-to-hate-stories?from_search=true&from_srp=true&qid=LUMNJaKS8n&rank=1
Blood on the Floor,R. R. Haywood,https://www.goodreads.com/book/show/29806620-blood-on-the-floor?from_search=true&from_srp=true&qid=il8HLd79Iz&rank=1
Harsh Cry of the Heron,Lian Hearn,https://www.goodreads.com/book/show/1408083.The_Harsh_Cry_of_the_Heron?from_search=true&from_srp=true&qid=JRr8phX9xF&rank=1
Reaper's Property,Joanna Wylde,https://www.goodreads.com/book/show/17375956-reaper-s-property?from_search=true&from_srp=true&qid=tlD8qY4Rrn&rank=1
The Lady's Guide to Celestial Mechanics,Olivia Waite,https://www.goodreads.com/book/show/42117380-the-lady-s-guide-to-celestial-mechanics?from_search=true&from_srp=true&qid=6uVM0PQXZv&rank=1
Yolk,Mary H. K. Choi,https://www.goodreads.com/book/show/43562313-yolk?from_search=true&from_srp=true&qid=W3RVIUN0Bc&rank=1
The Rogue's Return,Jo Beverley,https://www.goodreads.com/book/show/615027.The_Rogue_s_Return?from_search=true&from_srp=true&qid=6fBALUkFg0&rank=1
"Hold On, But Don't Hold Still",Kristina Kuzmic,https://www.goodreads.com/book/show/50085691-hold-on-but-don-t-hold-still?from_search=true&from_srp=true&qid=9LE3fvP0hr&rank=1
The Night Stalkers,"Michael J. Durant, Steven Hartov, Lt. Col - Ret Robert L. Johnson",https://www.goodreads.com/book/show/115996.The_Night_Stalkers?from_search=true&from_srp=true&qid=q4ew2Y1boV&rank=1
Trixie and Katya's Guide to Modern Womanhood,"Trixie Mattel, Katya",https://www.goodreads.com/book/show/52180973-trixie-and-katya-s-guide-to-modern-womanhood?from_search=true&from_srp=true&qid=DP1h2g0JiH&rank=1
The Hero's Journey,"Joseph Campbell, Stuart L. Brown - foreword, Phil Cousineau - editor",https://www.goodreads.com/book/show/16129228-the-hero-s-journey?from_search=true&from_srp=true&qid=dOABixNGQf&rank=1
I'll Have What She's Having,Erin Carlson,https://www.goodreads.com/book/show/31932935-i-ll-have-what-she-s-having?from_search=true&from_srp=true&qid=dXHjg2mvdc&rank=1
The Lost Boy,David Pelzer,https://www.goodreads.com/book/show/2743.The_Lost_Boy?from_search=true&from_srp=true&qid=OZOTzdYuLm&rank=1
Elizabeth & Margaret,Andrew Morton,https://www.goodreads.com/book/show/54503472-elizabeth-margaret?from_search=true&from_srp=true&qid=raGnJQ7cEK&rank=1
I'm Feeling Lucky,Douglas Edwards,https://www.goodreads.com/book/show/9871673-i-m-feeling-lucky?from_search=true&from_srp=true&qid=5ryr3YTJE9&rank=1
Girl Decoded,"Rana el Kaliouby, Carol Colman",https://www.goodreads.com/book/show/57507423-girl-decoded?from_search=true&from_srp=true&qid=NUKAKAlkUZ&rank=1
You're Not Special,Meghan Rienks,https://www.goodreads.com/book/show/41180094-you-re-not-special?from_search=true&from_srp=true&qid=6zSLLvYQQI&rank=1
The Color of Money,Mehrsa Baradaran,https://www.goodreads.com/book/show/34758210-color-of-money?from_search=true&from_srp=true&qid=I9damNqex6&rank=1
"Viruses, Plagues, and History",Michael B. A. Oldstone,https://www.goodreads.com/book/show/573801.Viruses_Plagues_and_History?from_search=true&from_srp=true&qid=XCufRpgdLH&rank=1
Vagabonds,"Hao Jingfang, Ken Liu - translator",https://www.goodreads.com/book/show/49454725-vagabonds?from_search=true&from_srp=true&qid=nzcg9u1BrM&rank=1
On Being Human,"Jennifer Pastiloff, Lidia Yuknavitch - foreword",https://www.goodreads.com/book/show/42272337-on-being-human?from_search=true&from_srp=true&qid=GVHNmhPx9w&rank=1
Consent,"Vanessa Springora, Natasha Lehrer - translator",https://www.goodreads.com/book/show/53327897-consent?from_search=true&from_srp=true&qid=yRmHl4ws1u&rank=1
Miss D and Me,"Kathryn Sermak, Danelle Morton - featuring",https://www.goodreads.com/book/show/33784364-miss-d-and-me?from_search=true&from_srp=true&qid=zHhVKEgFpN&rank=1
Hymns of the Republic,S. C. Gwynne,https://www.goodreads.com/book/show/43821608-hymns-of-the-republic?from_search=true&from_srp=true&qid=mlQhrt0Z7I&rank=1
This Kind of War,T. R. Fehrenbach,https://www.goodreads.com/book/show/118690.This_Kind_of_War?from_search=true&from_srp=true&qid=Xp917dSE0X&rank=1
Havana Nocturne,T. J. English,https://www.goodreads.com/book/show/2578863-havana-nocturne?from_search=true&from_srp=true&qid=kVVpDEcgVC&rank=1
The Merchant of Death,D. J. MacHale,https://www.goodreads.com/book/show/833710.The_Merchant_of_Death?from_search=true&from_srp=true&qid=4bzpxMv0kv&rank=1
The Zoologist's Guide to the Galaxy,Arik Kershenbaum,https://www.goodreads.com/book/show/52770736-the-zoologist-s-guide-to-the-galaxy?from_search=true&from_srp=true&qid=mSNORefPbM&rank=1
The Modern Scholar: The Philosophy of Thomas Aquinas,Prof. Peter Kreeft,https://www.goodreads.com/book/show/23996125-the-modern-scholar?from_search=true&from_srp=true&qid=rM7aRosGZ3&rank=1
The Healing Self,"Rudolph E. Tanzi Ph.D., Deepak Chopra",https://www.goodreads.com/book/show/35134101-the-healing-self?from_search=true&from_srp=true&qid=fdbxs50j1q&rank=1
Isle of the Lost,Melissa De La Cruz,https://www.goodreads.com/book/show/22639095-the-isle-of-the-lost?from_search=true&from_srp=true&qid=D46Kat6X8p&rank=1
Beauty and the Beast,"Elizabeth Rudnick, Disney Press",https://www.goodreads.com/book/show/30145679-beauty-and-the-beast-novelization?from_search=true&from_srp=true&qid=HNkhbAHWLF&rank=8
Finding Dory,Disney Press,https://www.goodreads.com/book/show/26067520-finding-dory?from_search=true&from_srp=true&qid=xDzr9b7RuQ&rank=2
University of Berkshire Hathaway,"Daniel Pecaut, Corey Wrenn - contributor",https://www.goodreads.com/book/show/34673040-university-of-berkshire-hathaway?from_search=true&from_srp=true&qid=rmpmG8fQPn&rank=1
"Basic Economics, Fourth Edition",Thomas Sowell,https://www.goodreads.com/book/show/3023.Basic_Economics?from_search=true&from_srp=true&qid=9lWRLePoGs&rank=1
The Resolution for Women,"Priscilla Shirer, Alexander Kendrick - foreword, Stephen Kendrick - foreword",https://www.goodreads.com/book/show/51256631-the-resolution-for-women?from_search=true&from_srp=true&qid=tPmJg7kzUH&rank=1
Joy at Work,"Marie Kondo, Scott Sonenshein",https://www.goodreads.com/book/show/53071025-joy-at-work?from_search=true&from_srp=true&qid=6ofEdD3Bce&rank=6
It's About Damn Time,"Arlan Hamilton, Rachel L. Nelson",https://www.goodreads.com/book/show/49646727-it-s-about-damn-time?from_search=true&from_srp=true&qid=bmhTry8ShR&rank=1
The Joy of Missing Out,Tanya Dalton,https://www.goodreads.com/book/show/44442025-the-joy-of-missing-out?from_search=true&from_srp=true&qid=Lwfuzh6EUU&rank=1
You're a Miracle (and a Pain in the Ass),Mike McHargue,https://www.goodreads.com/book/show/44781490-you-re-a-miracle-and-a-pain-in-the-ass?from_search=true&from_srp=true&qid=6TmoIdOVoQ&rank=1
A Monk's Guide to a Clean House and Mind,Shoukei Matsumoto,https://www.goodreads.com/book/show/35656221-a-monk-s-guide-to-a-clean-house-and-mind?from_search=true&from_srp=true&qid=XJPILNMyn0&rank=1
My Brilliant Friend,Elena Ferrante,https://www.goodreads.com/book/show/35036409-my-brilliant-friend?from_search=true&from_srp=true&qid=T1mqrDudcm&rank=4
The Godfather,"Mario Puzo, Francis Ford Coppola - introduction, Anthony Puzo - note, Robert J. Thompson - afterword",https://www.goodreads.com/book/show/51876297-the-godfather?from_search=true&from_srp=true&qid=Z6EUC67hA3&rank=1
A Tree Grows in Brooklyn,Betty Smith,https://www.goodreads.com/book/show/14891.A_Tree_Grows_in_Brooklyn?from_search=true&from_srp=true&qid=Qccqwaeuqj&rank=2
Middlesex,Jeffrey Eugenides,https://www.goodreads.com/book/show/2187.Middlesex?from_search=true&from_srp=true&qid=Z97nz5AVyE&rank=5
The Winter Sea,Susanna Kearsley,https://www.goodreads.com/book/show/3392089-the-winter-sea?from_search=true&from_srp=true&qid=af3nsuU2PN&rank=1
The Iliad,"Homer, Robert Fitzgerald - translator",https://www.goodreads.com/book/show/7602384-the-iliad-and-the-odyssey?from_search=true&from_srp=true&qid=tLoZMASQwh&rank=5
Moloka’i,Alan Brennert,https://www.goodreads.com/book/show/3273.Moloka_i?from_search=true&from_srp=true&qid=4MKt2zhE2K&rank=4
The Rosie Result,Graeme Simsion,https://www.goodreads.com/book/show/41018628-the-rosie-result?from_search=true&from_srp=true&qid=ZrOjlBJMXi&rank=1
Norwegian by Night,Derek B. Miller,https://www.goodreads.com/book/show/15775210-norwegian-by-night?from_search=true&from_srp=true&qid=xNY4lAqD9S&rank=1
Paradise Lost,John Milton,https://www.goodreads.com/book/show/18881035-paradise-lost-by-john-milton?from_search=true&from_srp=true&qid=CahLFdBxCW&rank=1
Matchmaking for Beginners,Maddie Dawson,https://www.goodreads.com/book/show/37561377-matchmaking-for-beginners?from_search=true&from_srp=true&qid=VBlwCwpRHZ&rank=2
Hidden,Kendra Elliot,https://www.goodreads.com/book/show/18799585-hidden?from_search=true&from_srp=true&qid=6M0n2Fgn5l&rank=1
The Monkey Wrench Gang,Edward Abbey,https://www.goodreads.com/book/show/99208.The_Monkey_Wrench_Gang?from_search=true&from_srp=true&qid=85to51oTF4&rank=3
Ruthless King,Meghan March,https://www.goodreads.com/book/show/36682959-ruthless-king?from_search=true&from_srp=true&qid=sBFG9Qu9DX&rank=1
Three Wishes,Kristen Ashley,https://www.goodreads.com/book/show/11102353-three-wishes?from_search=true&from_srp=true&qid=S5MSpw1swq&rank=1
The Blessing Way,Tony Hillerman,https://www.goodreads.com/book/show/867387.The_Blessing_Way?from_search=true&from_srp=true&qid=ejO39yJeHp&rank=1
The Aeneid,Virgil,https://www.goodreads.com/book/show/189460.The_Aeneid_of_Virgil?from_search=true&from_srp=true&qid=gDtAB5zg6R&rank=1
A Long Time Gone,Karen White,https://www.goodreads.com/book/show/18693656-a-long-time-gone?from_search=true&from_srp=true&qid=yAAsmgntmL&rank=1
Left Behind,"Tim LaHaye, Jerry B. Jenkins",https://www.goodreads.com/book/show/27523.Left_Behind?from_search=true&from_srp=true&qid=0IHW3MGdy7&rank=10
Tapping the Billionaire,Max Monroe,https://www.goodreads.com/book/show/28675670-tapping-the-billionaire?from_search=true&from_srp=true&qid=KtqtJYKK7s&rank=1
Forever My Girl,Heidi McLaughlin,https://www.goodreads.com/book/show/16119079-forever-my-girl?from_search=true&from_srp=true&qid=HJAkEvqpKt&rank=1
Birthday Girl,Penelope Douglas,https://www.goodreads.com/book/show/39555142-birthday-girl?from_search=true&from_srp=true&qid=dxf3f3LZLR&rank=1
Rhythm and Bluegrass,Molly Harper,https://www.goodreads.com/book/show/17571132-rhythm-and-bluegrass?from_search=true&from_srp=true&qid=V7GJ4Zd4aW&rank=1
Torn,Carian Cole,https://www.goodreads.com/book/show/42832506-torn?from_search=true&from_srp=true&qid=rRKuXIdbQL&rank=1
The Forty Rules of Love,Elif Shafak,https://www.goodreads.com/book/show/6642715-the-forty-rules-of-love?from_search=true&from_srp=true&qid=BfoyZk7N9v&rank=3
The Duchess,Danielle Steel,https://www.goodreads.com/book/show/32570354-the-duchess?from_search=true&from_srp=true&qid=Eacplft07a&rank=1
Where We Belong,Catherine Ryan Hyde,https://www.goodreads.com/book/show/18625895-where-we-belong?from_search=true&from_srp=true&qid=NFqJk7W40t&rank=1
Pretty Reckless,L.J. Shen,https://www.goodreads.com/book/show/39709060-pretty-reckless?from_search=true&from_srp=true&qid=vbCjoD0zNe&rank=1
Savage Prince,Meghan March,https://www.goodreads.com/book/show/36687137-savage-prince?from_search=true&from_srp=true&qid=Q2NtfVNSqP&rank=1
The Contract,Melanie Moreland,https://www.goodreads.com/book/show/29333677-the-contract?from_search=true&from_srp=true&qid=LkUcrKGBCt&rank=1
Blue Skies,Robyn Carr,https://www.goodreads.com/book/show/184856.Blue_Skies?from_search=true&from_srp=true&qid=wVHjNxQabU&rank=1
Sometimes a Great Notion,Ken Kesey,https://www.goodreads.com/book/show/529626.Sometimes_a_Great_Notion?from_search=true&from_srp=true&qid=omcNzQTbJw&rank=2
"Peace, Blood, and Understanding",Molly Harper,https://www.goodreads.com/book/show/44150256-peace-blood-and-understanding?from_search=true&from_srp=true&qid=bQAp38wdhN&rank=1
Lost Lake,Sarah Addison Allen,https://www.goodreads.com/book/show/13481275-lost-lake?from_search=true&from_srp=true&qid=hCbbvyqaky&rank=1
The Woman in White,Wilkie Collins,https://www.goodreads.com/book/show/5895.The_Woman_in_White_by_Wilkie_Collins_Fiction?from_search=true&from_srp=true&qid=I7Zmn8ByJ5&rank=1
Throb,Vi Keeland,https://www.goodreads.com/book/show/23155597-throb?from_search=true&from_srp=true&qid=Yrc3OFVxRT&rank=1
Return to Me,Lynn Austin,https://www.goodreads.com/book/show/17384512-return-to-me?from_search=true&from_srp=true&qid=LPqAAdWPV3&rank=1
No Ordinary Billionaire,J. S. Scott,https://www.goodreads.com/book/show/23748131-no-ordinary-billionaire?from_search=true&from_srp=true&qid=hgOkaqVbnE&rank=1
Who Fears Death,Nnedi Okorafor,https://www.goodreads.com/book/show/7767021-who-fears-death?from_search=true&from_srp=true&qid=gOPAinr6wp&rank=1
Richer Than Sin,Meghan March,https://www.goodreads.com/book/show/39949010-richer-than-sin?from_search=true&from_srp=true&qid=0Bc8CLzfFU&rank=1
Trinity,Leon Uris,https://www.goodreads.com/book/show/42696.Trinity?from_search=true&from_srp=true&qid=Ez3BYbnQYq&rank=1
"It Ain't Me, Babe",Tillie Cole,https://www.goodreads.com/book/show/22020052-it-ain-t-me-babe?from_search=true&from_srp=true&qid=LUQsdomVuX&rank=1
Pale Fire,Vladimir Nabokov,https://www.goodreads.com/book/show/7805.Pale_Fire?from_search=true&from_srp=true&qid=j5kFFjSYt6&rank=3
Fury,Laurann Dohner,https://www.goodreads.com/book/show/12063467-fury?from_search=true&from_srp=true&qid=2m6aEs4e7G&rank=1
Penmort Castle,Kristen Ashley,https://www.goodreads.com/book/show/10896689-penmort-castle?from_search=true&from_srp=true&qid=btxC75pDsu&rank=1
The Edgar Allan Poe Audio Collection,Edgar Allan Poe,https://www.goodreads.com/book/show/23922.The_Edgar_Allan_Poe_Audio_Collection?from_search=true&from_srp=true&qid=oe7yNCkf3a&rank=1
For the Roses,Julie Garwood,https://www.goodreads.com/book/show/133240.For_the_Roses?from_search=true&from_srp=true&qid=Zt9qeRj18W&rank=1
Lost Horizon,James Hilton,https://www.goodreads.com/book/show/39092290-lost-horizon?from_search=true&from_srp=true&qid=8COZ3pANA4&rank=2
Fallen Crest High,Tijan,https://www.goodreads.com/book/show/16134551-fallen-crest-high?from_search=true&from_srp=true&qid=KIjC67BdpQ&rank=1
Dear Life,Alice Munro,https://www.goodreads.com/book/show/13530981-dear-life?from_search=true&from_srp=true&qid=yoJcT3WTji&rank=1
Fire in His Blood,Ruby Dixon,https://www.goodreads.com/book/show/33858773-fire-in-his-blood?from_search=true&from_srp=true&qid=wpFZktchy9&rank=1
When Nietzsche Wept,Irvin D. Yalom,https://www.goodreads.com/book/show/21031.When_Nietzsche_Wept?from_search=true&from_srp=true&qid=kcb6ElQa8j&rank=3
Wild Like the Wind,Kristen Ashley,https://www.goodreads.com/book/show/38357036-wild-like-the-wind?from_search=true&from_srp=true&qid=amvy09GSii&rank=1
Johnny Got His Gun,Dalton Trumbo,https://www.goodreads.com/book/show/51606.Johnny_Got_His_Gun?from_search=true&from_srp=true&qid=8VkLF6T3uO&rank=2
Grendel,John Gardner,https://www.goodreads.com/book/show/676737.Grendel?from_search=true&from_srp=true&qid=73y2OcDPxx&rank=3
Candle in the Darkness,Lynn Austin,https://www.goodreads.com/book/show/192722.Candle_in_the_Darkness?from_search=true&from_srp=true&qid=YxEdJXsuGE&rank=1
The Pact,Karina Halle,https://www.goodreads.com/book/show/23844390-the-pact?from_search=true&from_srp=true&qid=GxlICxzBrB&rank=1
How to Pronounce Knife,Souvankham Thammavongsa,https://www.goodreads.com/book/show/51196859-how-to-pronounce-knife?from_search=true&from_srp=true&qid=U1LYiLAGBC&rank=1
Bully,Penelope Douglas,https://www.goodreads.com/book/show/20803953-bully?from_search=true&from_srp=true&qid=r93T2mDsCZ&rank=1
Finding My Pack,Lane Whitt,https://www.goodreads.com/book/show/30197319-finding-my-pack?from_search=true&from_srp=true&qid=TwHBwqOVBB&rank=1
Difficult Women,Roxane Gay,https://www.goodreads.com/book/show/28818921-difficult-women?from_search=true&from_srp=true&qid=Wx9xKBbqQ3&rank=1
Dirty Headlines,L.J. Shen,https://www.goodreads.com/book/show/38396994-dirty-headlines?from_search=true&from_srp=true&qid=IvzdvNvR5L&rank=1
Darkness at Noon,Arthur Koestler,https://www.goodreads.com/book/show/30672.Darkness_at_Noon?from_search=true&from_srp=true&qid=7gH6NtTRsm&rank=4
A Friend of the Family,Lisa Jewell,https://www.goodreads.com/book/show/161341.A_Friend_of_the_Family?from_search=true&from_srp=true&qid=iasEQGyx0x&rank=1
Slashes in the Snow,M. Never,https://www.goodreads.com/book/show/44246330-slashes-in-the-snow?from_search=true&from_srp=true&qid=BFxKZQzuU0&rank=1
Beat,Vi Keeland,https://www.goodreads.com/book/show/23155599-beat?from_search=true&from_srp=true&qid=KAtoSgo3z7&rank=1
Adultolescence,Gabbie Hanna,https://www.goodreads.com/book/show/34828719-adultolescence?from_search=true&from_srp=true&qid=fzJpwv3dDu&rank=1
Just Above My Head,James Baldwin,https://www.goodreads.com/book/show/38457.Just_Above_My_Head?from_search=true&from_srp=true&qid=6jqBFlEc4L&rank=1
Macbeth,Jo Nesbø,https://www.goodreads.com/book/show/33952851-macbeth?from_search=true&from_srp=true&qid=SH99qNLybA&rank=2
The Lost Heiress,Roseanna M. White,https://www.goodreads.com/book/show/22383696-the-lost-heiress?from_search=true&from_srp=true&qid=uND8AUBSVH&rank=1
"Anna of Kleve, the Princess in the Portrait",Alison Weir,https://www.goodreads.com/book/show/34212134-anna-of-kleve?from_search=true&from_srp=true&qid=dyXrlzZZhS&rank=1
The Inferno,"Dante, Robert Hollander - translator, Jean Hollander - translator",https://www.goodreads.com/book/show/15648.The_Inferno?from_search=true&from_srp=true&qid=vhae4Gw4mF&rank=1
When Ashes Fall,Marni Mann,https://www.goodreads.com/book/show/42730511-when-ashes-fall?from_search=true&from_srp=true&qid=EQGYqbgmT1&rank=1
Special Topics in Calamity Physics,Marisha Pessl,https://www.goodreads.com/book/show/3483.Special_Topics_in_Calamity_Physics?from_search=true&from_srp=true&qid=BSBziUgccd&rank=2
Dear Committee Members,Julie Schumacher,https://www.goodreads.com/book/show/19288259-dear-committee-members?from_search=true&from_srp=true&qid=qstG6WUs2i&rank=1
Elmer Gantry,Sinclair Lewis,https://www.goodreads.com/book/show/11378.Elmer_Gantry?from_search=true&from_srp=true&qid=RpvKv0l8oO&rank=1
The Wright Brother,K.A. Linde,https://www.goodreads.com/book/show/33913492-the-wright-brother?from_search=true&from_srp=true&qid=8tD8Uo93sz&rank=1
The Largesse of the Sea Maiden,Denis Johnson,https://www.goodreads.com/book/show/35135343-the-largesse-of-the-sea-maiden?from_search=true&from_srp=true&qid=6FIHPlgetM&rank=1
Caravans,James A. Michener,https://www.goodreads.com/book/show/12662.Caravans?from_search=true&from_srp=true&qid=CWzrN5psHu&rank=1
Apocrypha Now,"Mark Russell, Shannon Wheeler",https://www.goodreads.com/book/show/28159144-apocrypha-now?from_search=true&from_srp=true&qid=3XH3M1xB9F&rank=1
Boy Swallows Universe,Trent Dalton,https://www.goodreads.com/book/show/37558445-boy-swallows-universe?from_search=true&from_srp=true&qid=fRzI1TwZka&rank=1
Too Much Happiness,Alice Munro,https://www.goodreads.com/book/show/6464937-too-much-happiness?from_search=true&from_srp=true&qid=rb48U3QnPm&rank=1
The Admissions,Meg Mitchell Moore,https://www.goodreads.com/book/show/25241503-the-admissions?from_search=true&from_srp=true&qid=2eJ8csa8qG&rank=1
A Bend in the River,V. S. Naipaul,https://www.goodreads.com/book/show/5845.A_Bend_in_the_River?from_search=true&from_srp=true&qid=iV3oxsNZFq&rank=4
The Long Flight Home,Alan Hlad,https://www.goodreads.com/book/show/42422509-the-long-flight-home?from_search=true&from_srp=true&qid=8TZ8wyT3Cy&rank=1
The Delight of Being Ordinary,Roland Merullo,https://www.goodreads.com/book/show/27876291-the-delight-of-being-ordinary?from_search=true&from_srp=true&qid=AmGs3t0UsD&rank=1
The Yellow Bird Sings,Jennifer Rosner,https://www.goodreads.com/book/show/45734862-the-yellow-bird-sings?from_search=true&from_srp=true&qid=6AWJEGlBJu&rank=1
Letters to a Young Poet,"Charlie Louth - translator, Lewis Hyde - introduction, Rainer Maria Rilke",https://www.goodreads.com/book/show/13570789-letters-to-a-young-poet?from_search=true&from_srp=true&qid=XK8qt4jxk7&rank=1
The Wartime Sisters,Lynda Cohen Loigman,https://www.goodreads.com/book/show/39863502-the-wartime-sisters?from_search=true&from_srp=true&qid=xS03oylEGj&rank=1
Circle of Darkness,"Aimee Nicole Walker, Nicholas Bella",https://www.goodreads.com/book/show/36595405-circle-of-darkness?from_search=true&from_srp=true&qid=NKZJjkv70h&rank=1
The Shakespeare Requirement,Julie Schumacher,https://www.goodreads.com/book/show/38885815-the-shakespeare-requirement?from_search=true&from_srp=true&qid=fTLFHxu9et&rank=1
Wild Embers,Nikita Gill,https://www.goodreads.com/book/show/34253376-wild-embers?from_search=true&from_srp=true&qid=edcxp4dddy&rank=1
Professor Chandra Follows His Bliss,Rajeev Balasubramanyam,https://www.goodreads.com/book/show/39808463-professor-chandra-follows-his-bliss?from_search=true&from_srp=true&qid=d1nLRIhA0v&rank=1
Tell Me,Abigail Strom,https://www.goodreads.com/book/show/34887950-tell-me?from_search=true&from_srp=true&qid=sC79cFPZ4q&rank=1
Almost Like Love,Abigail Strom,https://www.goodreads.com/book/show/23288793-almost-like-love?from_search=true&from_srp=true&qid=I7uYejMqk0&rank=1
Unscripted Love,Aimee Nicole Walker,https://www.goodreads.com/book/show/35596228-unscripted-love?from_search=true&from_srp=true&qid=lUIMQxNcF3&rank=1
Felon,Reginald Dwayne Betts,https://www.goodreads.com/book/show/43726561-felon?from_search=true&from_srp=true&qid=WDCBtvNkP1&rank=1
Brief Encounters with Che Guevara,Ben Fountain,https://www.goodreads.com/book/show/329266.Brief_Encounters_with_Che_Guevara?from_search=true&from_srp=true&qid=8jSvL6lWvT&rank=1
Hostage,"Elie Wiesel, Catherine Temerson - translator",https://www.goodreads.com/book/show/13155834-hostage?from_search=true&from_srp=true&qid=W4S5V9Zofr&rank=1
The Essential T.S. Eliot,T. S. Eliot,https://www.goodreads.com/book/show/983569.The_Essential_Groucho?from_search=true&from_srp=true&qid=DC6rlZaS8i&rank=5
Then the Fish Swallowed Him,Amir Ahmadi Arian,https://www.goodreads.com/book/show/44557426-then-the-fish-swallowed-him?from_search=true&from_srp=true&qid=E3WMQ6NYFq&rank=1
Alias Grace,Margaret Atwood,https://www.goodreads.com/book/show/72579.Alias_Grace?from_search=true&from_srp=true&qid=OrFQPc0HDU&rank=7
A Merciful Death,Kendra Elliot,https://www.goodreads.com/book/show/29986740-a-merciful-death?from_search=true&from_srp=true&qid=VG3pqRicoW&rank=1
Hell Divers,Nicholas Sansbury Smith,https://www.goodreads.com/book/show/28464896-hell-divers?from_search=true&from_srp=true&qid=6aRowmKiH9&rank=1
Patient Zero,Jonathan Maberry,https://www.goodreads.com/book/show/3993839-patient-zero?from_search=true&from_srp=true&qid=owKrdC8AYO&rank=1
The Gray Man,Mark Greaney,https://www.goodreads.com/book/show/6547865-the-gray-man?from_search=true&from_srp=true&qid=z7tJdrE18T&rank=1
An Accidental Death,Peter Grainger,https://www.goodreads.com/book/show/19074261-an-accidental-death?from_search=true&from_srp=true&qid=zl1nc4i1ad&rank=1
The Final Cut,"Catherine Coulter, J. T. Ellison",https://www.goodreads.com/book/show/17707480-the-final-cut?from_search=true&from_srp=true&qid=mSyNcCqop5&rank=1
Split Second,Douglas E. Richards,https://www.goodreads.com/book/show/26216031-split-second?from_search=true&from_srp=true&qid=eO3SEyuu4Y&rank=1
Single Malt Murder,Melinda Mullet,https://www.goodreads.com/book/show/33632753-single-malt-murder?from_search=true&from_srp=true&qid=898ihOenZl&rank=1
Cocaine Blues,Kerry Greenwood,https://www.goodreads.com/book/show/41022009-cocaine-blues?from_search=true&from_srp=true&qid=R6wzlWA8KL&rank=1
Some Danger Involved,Will Thomas,https://www.goodreads.com/book/show/498082.Some_Danger_Involved?from_search=true&from_srp=true&qid=44BmIXGi2v&rank=1
Sanctuary,Nora Roberts,https://www.goodreads.com/book/show/114141.Sanctuary?from_search=true&from_srp=true&qid=reMhKoNj5F&rank=1
Playing with Fire,Tess Gerritsen,https://www.goodreads.com/book/show/25177983-playing-with-fire?from_search=true&from_srp=true&qid=5ARWC4Rx0Z&rank=1
Three Fates,Nora Roberts,https://www.goodreads.com/book/show/682153.Three_Fates?from_search=true&from_srp=true&qid=RqwWq3Gx9D&rank=2
Rewinder,Brett Battles,https://www.goodreads.com/book/show/22887943-rewinder?from_search=true&from_srp=true&qid=7VaZScvmYS&rank=1
The Tower,Gregg Hurwitz,https://www.goodreads.com/book/show/583319.The_Tower?from_search=true&from_srp=true&qid=smbli17Nd8&rank=1
When She Returned,Lucinda Berry,https://www.goodreads.com/book/show/43807935-when-she-returned?from_search=true&from_srp=true&qid=pAGv0HHdfj&rank=1
Midnight,Dean Koontz,https://www.goodreads.com/book/show/64955.Midnight?from_search=true&from_srp=true&qid=2hcEeVPGFl&rank=2
The Strangler Vine,M. J. Carter,https://www.goodreads.com/book/show/18744034-the-strangler-vine?from_search=true&from_srp=true&qid=EErit3DSn5&rank=1
A Clean Kill in Tokyo,Barry Eisler,https://www.goodreads.com/book/show/925.A_Clean_Kill_in_Tokyo?from_search=true&from_srp=true&qid=yBUhDKCS81&rank=1
Murder on Black Swan Lane,Andrea Penrose,https://www.goodreads.com/book/show/33024254-murder-on-black-swan-lane?from_search=true&from_srp=true&qid=y1UjUCpgc5&rank=1
Lowcountry Boil,Susan M. Boyer,https://www.goodreads.com/book/show/18044412-lowcountry-boil?from_search=true&from_srp=true&qid=iBwZR4K7BE&rank=1
The Stillwater Girls,Minka Kent,https://www.goodreads.com/book/show/40258215-the-stillwater-girls?from_search=true&from_srp=true&qid=4YgMZi4Q1O&rank=1
A High-End Finish,Kate Carlisle,https://www.goodreads.com/book/show/21863634-a-high-end-finish?from_search=true&from_srp=true&qid=II49GFPEdG&rank=1
The Stranger Within,Kathryn Croft,https://www.goodreads.com/book/show/23518623-the-stranger-within?from_search=true&from_srp=true&qid=WJWeMpEMLB&rank=1
Intensity,Dean Koontz,https://www.goodreads.com/book/show/32439.Intensity?from_search=true&from_srp=true&qid=tCpR2Cyebi&rank=1
Chocolate Chip Cookie Murder,Joanne Fluke,https://www.goodreads.com/book/show/36347162-chocolate-chip-cookie-murder?from_search=true&from_srp=true&qid=k2sYbLdGuG&rank=1
A Rage in Harlem,Chester Himes,https://www.goodreads.com/book/show/565816.A_Rage_in_Harlem?from_search=true&from_srp=true&qid=IH5q8Z0O94&rank=1
Bad Mommy,Tarryn Fisher,https://www.goodreads.com/book/show/33561990-bad-mommy?from_search=true&from_srp=true&qid=1EgjvaMtoa&rank=1
Dark Rivers of the Heart,Dean Koontz,https://www.goodreads.com/book/show/15760.Dark_Rivers_of_the_Heart?from_search=true&from_srp=true&qid=A0lQ4XvzLu&rank=1
One-Hit Wonder,Lisa Jewell,https://www.goodreads.com/book/show/161345.One_Hit_Wonder?from_search=true&from_srp=true&qid=l7Cm74yg5w&rank=1
The Girl Next Door,Jack Ketchum,https://www.goodreads.com/book/show/179735.The_Girl_Next_Door?from_search=true&from_srp=true&qid=2WXGzeToA1&rank=2
Phantom Evil,Heather Graham,https://www.goodreads.com/book/show/9585036-phantom-evil?from_search=true&from_srp=true&qid=BenDk8aTIT&rank=1
Something About You,Julie James,https://www.goodreads.com/book/show/6642402-something-about-you?from_search=true&from_srp=true&qid=oCTwE6Abfp&rank=1
Big Jack,J. D. Robb,https://www.goodreads.com/book/show/6699948-big-jack?from_search=true&from_srp=true&qid=j7azMBRV26&rank=1
Hollow World,Michael J. Sullivan,https://www.goodreads.com/book/show/19084955-hollow-world?from_search=true&from_srp=true&qid=wwtNyacvhP&rank=1
The Searchers,Alan Le May,https://www.goodreads.com/book/show/15811641-the-searchers?from_search=true&from_srp=true&qid=A6XlX385Ns&rank=1
Frankenstein in Baghdad,Ahmed Saadawi,https://www.goodreads.com/book/show/30780005-frankenstein-in-baghdad?from_search=true&from_srp=true&qid=6OiOjOKV32&rank=2
Dark Rooms,Lili Anolik,https://www.goodreads.com/book/show/22535506-dark-rooms?from_search=true&from_srp=true&qid=wQQolwRB2t&rank=1
Outlander,Diana Gabaldon,https://www.goodreads.com/book/show/10964.Outlander?from_search=true&from_srp=true&qid=I6M7whCuEq&rank=7
The Name of the Wind,Patrick Rothfuss,https://www.goodreads.com/book/show/186074.The_Name_of_the_Wind?from_search=true&from_srp=true&qid=MKnUERDf5w&rank=2
Theft of Swords,Michael J. Sullivan,https://www.goodreads.com/book/show/10790290-theft-of-swords?from_search=true&from_srp=true&qid=nXVrJddQuw&rank=1
Hyperion,Dan Simmons,https://www.goodreads.com/book/show/77566.Hyperion?from_search=true&from_srp=true&qid=IVuons5a1X&rank=3
Homeland,R. A. Salvatore,https://www.goodreads.com/book/show/50027.Homeland?from_search=true&from_srp=true&qid=VEBz1Nq5dv&rank=1
Hounded,Kevin Hearne,https://www.goodreads.com/book/show/9533378-hounded?from_search=true&from_srp=true&qid=j0ePo91Wk4&rank=1
The Shadow of What Was Lost,James Islington,https://www.goodreads.com/book/show/22878967-the-shadow-of-what-was-lost?from_search=true&from_srp=true&qid=dQleUibRXB&rank=1
Fear the Sky,Stephen Moss,https://www.goodreads.com/book/show/22171697-fear-the-sky?from_search=true&from_srp=true&qid=GYyshCQIXy&rank=1
Free the Darkness,Kel Kade,https://www.goodreads.com/book/show/28385685-free-the-darkness?from_search=true&from_srp=true&qid=ncxXa7P58o&rank=1
Parable of the Sower,Octavia E. Butler,https://www.goodreads.com/book/show/52397.Parable_of_the_Sower?from_search=true&from_srp=true&qid=vVh261VTh3&rank=4
Hard Magic,Larry Correia,https://www.goodreads.com/book/show/8643407-hard-magic?from_search=true&from_srp=true&qid=suQUefVxOh&rank=1
The Clan of the Cave Bear,Jean M. Auel,https://www.goodreads.com/book/show/40611463-the-clan-of-the-cave-bear?from_search=true&from_srp=true&qid=ZE0a6TVjGn&rank=1
Dungeon Born,Dakota Krout,https://www.goodreads.com/book/show/32509131-dungeon-born?from_search=true&from_srp=true&qid=AQuhoJ1OfL&rank=1
Skinwalker,Faith Hunter,https://www.goodreads.com/book/show/5585788-skinwalker?from_search=true&from_srp=true&qid=2N0k7ghG0l&rank=1
Not Alone,Craig A. Falconer,https://www.goodreads.com/book/show/28261356-not-alone?from_search=true&from_srp=true&qid=x4FKQ5OjbP&rank=1
Ritualist,Dakota Krout,https://www.goodreads.com/book/show/38739408-ritualist?from_search=true&from_srp=true&qid=SpOdqyILsu&rank=1
The Dragons of Dorcastle,Jack Campbell,https://www.goodreads.com/book/show/23379245-the-dragons-of-dorcastle?from_search=true&from_srp=true&qid=UyOq4Sludv&rank=1
Ringworld,Larry Niven,https://www.goodreads.com/book/show/61179.Ringworld?from_search=true&from_srp=true&qid=h4BUmuXILg&rank=1
Red Mars,Kim Stanley Robinson,https://www.goodreads.com/book/show/77507.Red_Mars?from_search=true&from_srp=true&qid=ueYXJ3Empx&rank=1
The Black Company,Glen Cook,https://www.goodreads.com/book/show/140671.The_Black_Company?from_search=true&from_srp=true&qid=g7rP1F2tnF&rank=1
Genesis,Ken Lozito,https://www.goodreads.com/book/show/36284236-genesis?from_search=true&from_srp=true&qid=V01XfjGxi2&rank=1
Rebel Fleet,B. V. Larson,https://www.goodreads.com/book/show/31675453-rebel-fleet?from_search=true&from_srp=true&qid=j3XZqTZHmP&rank=1
Good Intentions,Elliott Kay,https://www.goodreads.com/book/show/11764721-good-intentions?from_search=true&from_srp=true&qid=0eOMGCYSZ3&rank=1
Magic Rises,Ilona Andrews,https://www.goodreads.com/book/show/11544421-magic-rises?from_search=true&from_srp=true&qid=mULXfLkB5Z&rank=1
An Easy Death,Charlaine Harris,https://www.goodreads.com/book/show/38136877-an-easy-death?from_search=true&from_srp=true&qid=9TflrBKChQ&rank=1
Gateway,Frederik Pohl,https://www.goodreads.com/book/show/218427.Gateway?from_search=true&from_srp=true&qid=cwi6cyA3oQ&rank=1
Live Free or Die,John Ringo,https://www.goodreads.com/book/show/6713634-live-free-or-die?from_search=true&from_srp=true&qid=HfOV2frOun&rank=1
Tarnished Knight,Jack Campbell,https://www.goodreads.com/book/show/13542832-tarnished-knight?from_search=true&from_srp=true&qid=VlNFOg2eA7&rank=1
Web of Eyes,"Rhett C. Bruno, Jaime Castle",https://www.goodreads.com/book/show/42594238-web-of-eyes?from_search=true&from_srp=true&qid=gfzLI6hBzJ&rank=1
Daughter of the Forest,Juliet Marillier,https://www.goodreads.com/book/show/13928.Daughter_of_the_Forest?from_search=true&from_srp=true&qid=7GHe4mnYz8&rank=1
The 12th Planet,Zecharia Sitchin,https://www.goodreads.com/book/show/508957.The_12th_Planet?from_search=true&from_srp=true&qid=CwuUbOq2wM&rank=2
A Little Night Magic,Lucy March,https://www.goodreads.com/book/show/11686611-a-little-night-magic?from_search=true&from_srp=true&qid=ozXxdzRu8E&rank=1
Tesser: A Dragon Among Us,Chris Philbrook,https://www.goodreads.com/book/show/21881932-tesser?from_search=true&from_srp=true&qid=r90DGKhD1F&rank=1
Rosemary and Rue,Seanan McGuire,https://www.goodreads.com/book/show/6294549-rosemary-and-rue?from_search=true&from_srp=true&qid=2dKf1OvrIC&rank=1
The Crystal Cave,Mary Stewart,https://www.goodreads.com/book/show/82192.The_Crystal_Cave?from_search=true&from_srp=true&qid=4reg4x1f0e&rank=2
Renegade,Joel Shepherd,https://www.goodreads.com/book/show/26031851-renegade?from_search=true&from_srp=true&qid=v09pZcA3Oo&rank=1
The Dark Between the Stars,Kevin J. Anderson,https://www.goodreads.com/book/show/18490735-the-dark-between-the-stars?from_search=true&from_srp=true&qid=QMmAuqKU09&rank=1
A Beautiful Friendship,David Weber,https://www.goodreads.com/book/show/10894503-a-beautiful-friendship?from_search=true&from_srp=true&qid=m0H8IaCUv8&rank=1
Breaking Gods,D. J. Molles,https://www.goodreads.com/book/show/46038849-breaking-gods?from_search=true&from_srp=true&qid=F7zAd610yk&rank=1
Oath of Swords,David Weber,https://www.goodreads.com/book/show/17315.Oath_of_Swords?from_search=true&from_srp=true&qid=FY5ZGNWubz&rank=1
Aurora: CV-01,Ryk Brown,https://www.goodreads.com/book/show/13504505-aurora?from_search=true&from_srp=true&qid=Zs7DWf0uMO&rank=1
The Fire Sermon,Francesca Haig,https://www.goodreads.com/book/show/18109771-the-fire-sermon?from_search=true&from_srp=true&qid=8L8ys7tuim&rank=1
Borne,Jeff VanderMeer,https://www.goodreads.com/book/show/31451186-borne?from_search=true&from_srp=true&qid=LdKPTB3tCd&rank=1
Ice Planet Barbarians,Ruby Dixon,https://www.goodreads.com/book/show/25128811-ice-planet-barbarians?from_search=true&from_srp=true&qid=O1o8Y9TxP2&rank=1
The Infernal City,Greg Keyes,https://www.goodreads.com/book/show/6488043-the-infernal-city?from_search=true&from_srp=true&qid=I3f32cJJea&rank=2
The Elvenbane,"Andre Norton, Mercedes Lackey",https://www.goodreads.com/book/show/176892.The_Elvenbane?from_search=true&from_srp=true&qid=59ML2ol4wU&rank=1
The Undead in My Bed,"Jessica Sims, Molly Harper, Katie MacAlister",https://www.goodreads.com/book/show/13512929-the-undead-in-my-bed?from_search=true&from_srp=true&qid=fe7j4kc7eI&rank=1
Dissolution,Richard Lee Byers,https://www.goodreads.com/book/show/66691.Dissolution?from_search=true&from_srp=true&qid=0ouyKhFHQn&rank=1
Bloodchild and Other Stories,Octavia E. Butler,https://www.goodreads.com/book/show/60930.Bloodchild_and_Other_Stories?from_search=true&from_srp=true&qid=afaKah1avn&rank=2
Forge of Darkness,Steven Erikson,https://www.goodreads.com/book/show/13038833-forge-of-darkness?from_search=true&from_srp=true&qid=7UVWZ8nUJi&rank=1
The Unleashing,Shelly Laurenston,https://www.goodreads.com/book/show/22475781-the-unleashing?from_search=true&from_srp=true&qid=pkgCMOy3h5&rank=1
Domes of Fire,David Eddings,https://www.goodreads.com/book/show/651260.Domes_of_Fire?from_search=true&from_srp=true&qid=0eDFGRPkLg&rank=1
The Last Sun,K. D. Edwards,https://www.goodreads.com/book/show/36466732-the-last-sun?from_search=true&from_srp=true&qid=aaOdfOl0s0&rank=1
Jacob,Jacquelyn Frank,https://www.goodreads.com/book/show/111306.Jacob?from_search=true&from_srp=true&qid=X2WE8fp9CS&rank=1
Artifact,"Vaughn Heppner, Logan White",https://www.goodreads.com/book/show/30989818-artifact?from_search=true&from_srp=true&qid=SwB5BRPucJ&rank=1
Marked,Elisabeth Naughton,https://www.goodreads.com/book/show/7635629-marked?from_search=true&from_srp=true&qid=TdWqDvWmGq&rank=1
Interface,"Neal Stephenson, J. Frederick George",https://www.goodreads.com/book/show/6563920-interface?from_search=true&from_srp=true&qid=FCJXnndCZ1&rank=1
Royal Dragon,Charlene Hartnady,https://www.goodreads.com/book/show/30127719-royal-dragon?from_search=true&from_srp=true&qid=FNsOnc9zLV&rank=1
The Outstretched Shadow,"Mercedes Lackey, James Mallory",https://www.goodreads.com/book/show/176843.The_Outstretched_Shadow?from_search=true&from_srp=true&qid=e5Adf3nC6x&rank=1
Spark City,Robert J. Power,https://www.goodreads.com/book/show/44300799-spark-city?from_search=true&from_srp=true&qid=2Ikj4ZgIG3&rank=1
Succubus,A.J. Markam,https://www.goodreads.com/book/show/39700385-succubus?from_search=true&from_srp=true&qid=bXZskhDINq&rank=1
Event,David L. Golemon,https://www.goodreads.com/book/show/1222900.Event?from_search=true&from_srp=true&qid=M7tMdYJFx8&rank=1
The Robber Bride,Margaret Atwood,https://www.goodreads.com/book/show/17650.The_Robber_Bride?from_search=true&from_srp=true&qid=nsVV8AvGDA&rank=2
The Lions of Al-Rassan,Guy Gavriel Kay,https://www.goodreads.com/book/show/104101.The_Lions_of_Al_Rassan?from_search=true&from_srp=true&qid=KrcYHUbRIf&rank=2
Abducting Abby,S. E. Smith,https://www.goodreads.com/book/show/13646525-abducting-abby?from_search=true&from_srp=true&qid=PLT7nY05rw&rank=1
"Two Necromancers, a Bureaucrat, and an Army of Golems",L. G. Estrella,https://www.goodreads.com/book/show/54629947-two-necromancers-a-bureaucrat-and-an-army-of-golems?from_search=true&from_srp=true&qid=JC9rDwxcgO&rank=2
The Skystone,Jack Whyte,https://www.goodreads.com/book/show/151723.The_Skystone?from_search=true&from_srp=true&qid=WEZuGFbqAp&rank=1
The Speed of Dark,Elizabeth Moon,https://www.goodreads.com/book/show/96063.The_Speed_of_Dark?from_search=true&from_srp=true&qid=etMu5nPr71&rank=1
Darkest Flame,Donna Grant,https://www.goodreads.com/book/show/18169912-darkest-flame?from_search=true&from_srp=true&qid=dnvoNt9P6T&rank=1
SpeedRunner,Adam Elliott,https://www.goodreads.com/book/show/35423827-speedrunner?from_search=true&from_srp=true&qid=D0HOPaj2A0&rank=1
Heaven's Net Is Wide,Lian Hearn,https://www.goodreads.com/book/show/6980107-heaven-s-net-is-wide?from_search=true&from_srp=true&qid=FMq7Uj6qii&rank=1
Dark Heat,Donna Grant,https://www.goodreads.com/book/show/17566623-dark-heat?from_search=true&from_srp=true&qid=HaayQv6auZ&rank=2
Liar King,Adam Elliott,https://www.goodreads.com/book/show/36452831-liar-king?from_search=true&from_srp=true&qid=YZGaecSLdV&rank=1
Pimsleur Italian Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/15842408-pimsleur-italian-level-1-lessons-1-5?from_search=true&from_srp=true&qid=7dEgLGhltR&rank=1
"Japanese Phase 1, Unit 01-05",Pimsleur,https://www.goodreads.com/book/show/26832740-japanese-phase-1-unit-01-05?from_search=true&from_srp=true&qid=6vHmQhlc95&rank=1
What Is the Bible?,Rob Bell,https://www.goodreads.com/book/show/31706459-what-is-the-bible?from_search=true&from_srp=true&qid=32njkTtU6Y&rank=1
Pimsleur German Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/18280421-pimsleur-german-level-1-lessons-1-5?from_search=true&from_srp=true&qid=TXGG6KbvBW&rank=1
Chinese (Mandarin) Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/34340530-chinese-mandarin-level-1-lessons-1-5?from_search=true&from_srp=true&qid=ClIEBk3g88&rank=2
Save the Cat! Writes a Novel,Jessica Brody,https://www.goodreads.com/book/show/32805475-save-the-cat-writes-a-novel?from_search=true&from_srp=true&qid=igzvfz3o3n&rank=1
Dialogue,Robert McKee,https://www.goodreads.com/book/show/27416067-dialogue?from_search=true&from_srp=true&qid=gfxhZWgvft&rank=1
Pimsleur Italian Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/18280155-pimsleur-italian-level-1-lessons-6-10?from_search=true&from_srp=true&qid=72bsQycGHi&rank=1
"Japanese Phase 1, Unit 06-10",Pimsleur,https://www.goodreads.com/book/show/26832749-japanese-phase-1-unit-06-10?from_search=true&from_srp=true&qid=nyO36yFpTE&rank=1
Pimsleur Spanish Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/40539871-pimsleur-spanish-level-1-lessons-6-10?from_search=true&from_srp=true&qid=Luh0jFdh86&rank=1
Pimsleur German Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/18280294-pimsleur-german-level-1-lessons-6-10?from_search=true&from_srp=true&qid=I6fipk0MKt&rank=1
Beyond Good and Evil,Friedrich Nietzsche,https://www.goodreads.com/book/show/33651446-beyond-good-and-evil?from_search=true&from_srp=true&qid=pz1sfEzT07&rank=1
The Secrets of Story,Matt Bird,https://www.goodreads.com/book/show/28627416-the-secrets-of-story?from_search=true&from_srp=true&qid=NUXzziW2d3&rank=1
Lectures to My Students,Charles Spurgeon,https://www.goodreads.com/book/show/929964.Lectures_to_My_Students?from_search=true&from_srp=true&qid=kdY2jXgVGr&rank=1
Fluent in 3 Months,Benny Lewis,https://www.goodreads.com/book/show/18085519-fluent-in-3-months?from_search=true&from_srp=true&qid=tEwQMTjRUI&rank=1
Pimsleur French Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/18280372-pimsleur-french-level-1-lessons-1-5?from_search=true&from_srp=true&qid=gWz6MOyYsp&rank=1
Super Thinking,"Gabriel Weinberg, Lauren McCann",https://www.goodreads.com/book/show/41181911-super-thinking?from_search=true&from_srp=true&qid=Sk7P4eSssh&rank=3
Grammar Girl's Quick and Dirty Tips for Better Writing,Mignon Fogarty,https://www.goodreads.com/book/show/55613269-grammar-girl-s-quick-and-dirty-tips-for-better-writing-quick-dirty-ti?from_search=true&from_srp=true&qid=o5kFMXWF0E&rank=1
Lucky Dog Lessons,Brandon McMillan,https://www.goodreads.com/book/show/32440552-lucky-dog-lessons?from_search=true&from_srp=true&qid=kg6FWEWNTF&rank=1
The Read-Aloud Family,Sarah Mackenzie,https://www.goodreads.com/book/show/36575805-the-read-aloud-family?from_search=true&from_srp=true&qid=afHPcQQCjs&rank=1
Pimsleur Spanish Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/40539870-pimsleur-spanish-level-1-lessons-11-15?from_search=true&from_srp=true&qid=dq4Z8YpCaA&rank=1
The Dyslexia Empowerment Plan,Ben Foss,https://www.goodreads.com/book/show/17262137-the-dyslexia-empowerment-plan?from_search=true&from_srp=true&qid=0vEr16TiD8&rank=1
How to Write One Song,Jeff Tweedy,https://www.goodreads.com/book/show/54614578-how-to-write-one-song?from_search=true&from_srp=true&qid=qYj9g7z0cT&rank=1
Pimsleur Italian Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/18279963-pimsleur-italian-level-1-lessons-11-15?from_search=true&from_srp=true&qid=8CQxIjxfu8&rank=1
Pimsleur Portuguese (Brazilian) Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/20759364-pimsleur-portuguese-brazilian-level-1-lessons-1-5?from_search=true&from_srp=true&qid=MEubAOPEQ4&rank=11
Stuff You Should Know,"Josh Clark, Chuck Bryant",https://www.goodreads.com/book/show/51625396-stuff-you-should-know?from_search=true&from_srp=true&qid=ImcMFIeav3&rank=1
Pimsleur Korean Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/28688549-pimsleur-korean-level-1-lessons-1-5?from_search=true&from_srp=true&qid=qgATUmFJeD&rank=1
Understanding the World of Wine,Brian Wheaton,https://www.goodreads.com/book/show/42818698-understanding-the-world-of-wine?from_search=true&from_srp=true&qid=VVHPNegchJ&rank=1
The Teacher Wars,Dana Goldstein,https://www.goodreads.com/book/show/20170991-the-teacher-wars?from_search=true&from_srp=true&qid=fn0D1fgec8&rank=1
How to Become a Straight-A Student,Cal Newport,https://www.goodreads.com/book/show/253203.How_to_Become_a_Straight_A_Student?from_search=true&from_srp=true&qid=gLvCjeb6lm&rank=1
Pimsleur German Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/18280295-pimsleur-german-level-1-lessons-11-15?from_search=true&from_srp=true&qid=eQ7IxF118o&rank=1
"Pimsleur Hebrew Level 1, Lessons 1-5",Pimsleur,https://www.goodreads.com/book/show/18279765-pimsleur-hebrew-level-1-lessons-1-5?from_search=true&from_srp=true&qid=P7hrxaaDO4&rank=1
"How Children Learn, 50th Anniversary Edition",John Holt,https://www.goodreads.com/book/show/31423256-how-children-learn-50th-anniversary-edition?from_search=true&from_srp=true&qid=lxB5emUNLp&rank=1
Bird by Bird,Anne Lamott,https://www.goodreads.com/book/show/12543.Bird_by_Bird?from_search=true&from_srp=true&qid=2NFDmMJnwn&rank=2
The End of Molasses Classes,Ron Clark,https://www.goodreads.com/book/show/10757257-the-end-of-molasses-classes?from_search=true&from_srp=true&qid=z4cstkwQGg&rank=1
Overcoming Dyslexia,"Sally Shaywitz, Jonathan Shaywitz",https://www.goodreads.com/book/show/45152041-overcoming-dyslexia?from_search=true&from_srp=true&qid=x2jDaJrJVw&rank=1
Go See the Principal,Gerry Brooks,https://www.goodreads.com/book/show/42816347-go-see-the-principal?from_search=true&from_srp=true&qid=qlhA7OTz5f&rank=1
Psych 101,Paul Kleinman,https://www.goodreads.com/book/show/14618921-psych-101?from_search=true&from_srp=true&qid=oLQbu4L1sU&rank=1
The One World Schoolhouse,Salman Khan,https://www.goodreads.com/book/show/15898640-the-one-world-schoolhouse?from_search=true&from_srp=true&qid=EPbyeoKTGH&rank=1
Pimsleur French Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/18280374-pimsleur-french-level-1-lessons-6-10?from_search=true&from_srp=true&qid=KqMPjSYt6Q&rank=1
In Defense of a Liberal Education,Fareed Zakaria,https://www.goodreads.com/book/show/25622814-in-defense-of-a-liberal-education?from_search=true&from_srp=true&qid=UwGQ1spLH4&rank=1
Let Dogs Be Dogs,The Monks of New Skete,https://www.goodreads.com/book/show/34523180-let-dogs-be-dogs?from_search=true&from_srp=true&qid=XN0MaWEuiL&rank=1
Everybody Has a Podcast (Except You),"Justin McElroy, Travis McElroy, Griffin McElroy",https://www.goodreads.com/book/show/53287275-everybody-has-a-podcast-except-you?from_search=true&from_srp=true&qid=UUzLvSqX4n&rank=1
Pimsleur Norwegian Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/17799311-pimsleur-norwegian-level-1-lessons-1-5?from_search=true&from_srp=true&qid=o4WBWd5xGY&rank=1
The Taliban Shuffle,Kim Barker,https://www.goodreads.com/book/show/9581417-the-taliban-shuffle?from_search=true&from_srp=true&qid=9dMj1CeUze&rank=1
How Not to Make a Short Film,Roberta Marie Munroe,https://www.goodreads.com/book/show/6261300-how-not-to-make-a-short-film?from_search=true&from_srp=true&qid=ACtmnkCsDL&rank=1
Extra Lives,Tom Bissell,https://www.goodreads.com/book/show/7059033-extra-lives?from_search=true&from_srp=true&qid=6bXZoQogfo&rank=1
Story Genius,Lisa Cron,https://www.goodreads.com/book/show/27833542-story-genius?from_search=true&from_srp=true&qid=x6dsoeUq0l&rank=1
Word by Word,Kory Stamper,https://www.goodreads.com/book/show/30781490-word-by-word?from_search=true&from_srp=true&qid=CRYpxzvFPn&rank=1
Pimsleur Farsi Persian Level 1 Lessons 1-5,Pimsleur,https://www.goodreads.com/book/show/31302918-pimsleur-farsi-persian-level-2-lessons-1-5?from_search=true&from_srp=true&qid=3t2l2rx0Si&rank=1
Where the Past Begins,Amy Tan,https://www.goodreads.com/book/show/34043618-where-the-past-begins?from_search=true&from_srp=true&qid=9jvy2AoaT3&rank=1
Pimsleur Portuguese (Brazilian) Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/20759354-pimsleur-portuguese-brazilian-level-1-lessons-6-10?from_search=true&from_srp=true&qid=8QyvlUH5Mv&rank=1
Coming to My Senses,Alice Waters,https://www.goodreads.com/book/show/33516589-coming-to-my-senses?from_search=true&from_srp=true&qid=4Ogw1UYFmC&rank=1
"Swedish Phase 1, Unit 01-05",Pimsleur,https://www.goodreads.com/book/show/17799595-swedish-phase-1-unit-01-05?from_search=true&from_srp=true&qid=5pTMdFdvM8&rank=1
Pimsleur French Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/18280453-pimsleur-french-level-1-lessons-11-15?from_search=true&from_srp=true&qid=JXBtxH1nRA&rank=1
"Pimsleur Hebrew Level 1, Lessons 6-10",Pimsleur,https://www.goodreads.com/book/show/18279797-pimsleur-hebrew-level-1-lessons-6-10?from_search=true&from_srp=true&qid=J9x8lRQqjO&rank=1
Pimsleur Korean Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/28688551-pimsleur-korean-level-1-lessons-6-10?from_search=true&from_srp=true&qid=eMuXnwQsle&rank=1
Knitlandia,Clara Parkes,https://www.goodreads.com/book/show/26240620-knitlandia?from_search=true&from_srp=true&qid=S1RMNMPunM&rank=1
Reading Like a Writer,Francine Prose,https://www.goodreads.com/book/show/39934.Reading_Like_a_Writer?from_search=true&from_srp=true&qid=SRzOR0L5Wb&rank=1
In Other Words,"Jhumpa Lahiri, Ann Goldstein - translator",https://www.goodreads.com/book/show/25614298-in-other-words?from_search=true&from_srp=true&qid=LYAatlUeRF&rank=1
Thug Notes,Sparky Sweets PhD,https://www.goodreads.com/book/show/25489106-thug-notes?from_search=true&from_srp=true&qid=GMTjEuyEC6&rank=1
Behind the Wheel - Spanish 1,"Behind the Wheel, Mark Frobose",https://www.goodreads.com/book/show/8552582-behind-the-wheel-express---spanish-1?from_search=true&from_srp=true&qid=O4Dhd6Cf61&rank=1
America and Americans and Selected Nonfiction,John Steinbeck,https://www.goodreads.com/book/show/202399.America_and_Americans_and_Selected_Nonfiction?from_search=true&from_srp=true&qid=UIEqcKd8E1&rank=1
"Provence, 1970",Luke Barr,https://www.goodreads.com/book/show/17737022-provence-1970?from_search=true&from_srp=true&qid=rQvMaGMXP5&rank=1
My Reading Life,Pat Conroy,https://www.goodreads.com/book/show/8323492-my-reading-life?from_search=true&from_srp=true&qid=g9IWor7LCn&rank=1
Homer's Odyssey,Gwen Cooper,https://www.goodreads.com/book/show/10168055-homer-s-odyssey?from_search=true&from_srp=true&qid=qHWnYzqfAj&rank=1
So We Read On,Maureen Corrigan,https://www.goodreads.com/book/show/20454072-so-we-read-on?from_search=true&from_srp=true&qid=Wvkcc726th&rank=1
Pimsleur Portuguese (Brazilian) Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/18223270-pimsleur-english-for-portuguese-brazilian-speakers-level-1-lessons-11-?from_search=true&from_srp=true&qid=1FbUOQdt6k&rank=1
The American Constitution 101,David L. Hudson,https://www.goodreads.com/book/show/55248441-the-american-constitution-101?from_search=true&from_srp=true&qid=NWmp0dwQN6&rank=1
Pimsleur Norwegian Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/17799511-pimsleur-norwegian-level-1-lessons-6-10?from_search=true&from_srp=true&qid=0NXMTcTCje&rank=1
"Pimsleur Hebrew Level 1, Lessons 11-15",Pimsleur,https://www.goodreads.com/book/show/18279767-pimsleur-hebrew-level-1-lessons-11-15?from_search=true&from_srp=true&qid=nTXDAhBiVb&rank=1
Home Sweet Maison,Danielle Postel-Vinay,https://www.goodreads.com/book/show/35068833-home-sweet-maison?from_search=true&from_srp=true&qid=LvRzZaLGqt&rank=1
Pimsleur Korean Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/18279702-pimsleur-korean-level-2-lessons-11-15-mp3?from_search=true&from_srp=true&qid=qWeDFJbjGd&rank=1
Pimsleur Farsi Persian Level 1 Lessons 6-10,Pimsleur,https://www.goodreads.com/book/show/31302917-pimsleur-farsi-persian-level-2-lessons-6-10?from_search=true&from_srp=true&qid=2dWzf97wEG&rank=1
The Art of Language Invention,David J. Peterson,https://www.goodreads.com/book/show/24611649-the-art-of-language-invention?from_search=true&from_srp=true&qid=jVh6aclnZG&rank=1
"Swedish Phase 1, Unit 06-10",Pimsleur,https://www.goodreads.com/book/show/17799782-swedish-phase-1-unit-06-10?from_search=true&from_srp=true&qid=AAsUqxbuUC&rank=1
Mastering the Art of Soviet Cooking,Anya Von Bremzen,https://www.goodreads.com/book/show/17262126-mastering-the-art-of-soviet-cooking?from_search=true&from_srp=true&qid=Ae2vFCQmXZ&rank=1
Pimsleur Norwegian Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/17799422-pimsleur-norwegian-level-1-lessons-11-15?from_search=true&from_srp=true&qid=eOwuwJYZvS&rank=1
Murder Your Darlings,Roy Peter Clark,https://www.goodreads.com/book/show/45730908-murder-your-darlings?from_search=true&from_srp=true&qid=1ppJwDuakq&rank=1
Pimsleur Farsi Persian Level 1 Lessons 11-15,Pimsleur,https://www.goodreads.com/book/show/31302915-pimsleur-farsi-persian-level-2-lessons-11-15?from_search=true&from_srp=true&qid=4krHYiBSrd&rank=1
The Time of Our Lives,Tom Brokaw,https://www.goodreads.com/book/show/11929478-the-time-of-our-lives?from_search=true&from_srp=true&qid=UJJWWPcaLt&rank=1
Hallelujah! The Welcome Table,Maya Angelou,https://www.goodreads.com/book/show/13205.Hallelujah_the_Welcome_Table?from_search=true&from_srp=true&qid=SJ1G9nGgAJ&rank=1
Life in the Garden,Penelope Lively,https://www.goodreads.com/book/show/35074095-life-in-the-garden?from_search=true&from_srp=true&qid=M6e1ejSXpS&rank=1
Long Live Latin,"Nicola Gardini, Todd Portnowitz",https://www.goodreads.com/book/show/43565361-long-live-latin?from_search=true&from_srp=true&qid=qA7jxneBYE&rank=1
A Short History of Russia,Mark Galeotti,https://www.goodreads.com/book/show/48894047-a-short-history-of-russia?from_search=true&from_srp=true&qid=YRazmkYFMy&rank=1
Behind the Wheel - Arabic,Mark Frobose,https://www.goodreads.com/book/show/8995279-behind-the-wheel---arabic-1?from_search=true&from_srp=true&qid=McRGQGg32a&rank=1
Table Manners,Jeremiah Tower,https://www.goodreads.com/book/show/28116785-table-manners?from_search=true&from_srp=true&qid=mJmfv5GqZ1&rank=1
The Middle Ages 101: Medieval History and Life,Christopher M. Bellitto,https://www.goodreads.com/book/show/58289280-the-middle-ages-101?from_search=true&from_srp=true&qid=5UHG0rswoa&rank=1
Waterloo,Bernard Cornwell,https://www.goodreads.com/book/show/22007249-waterloo?from_search=true&from_srp=true&qid=aaJZ5NrKWc&rank=3
The Conquering Tide,Ian W. Toll,https://www.goodreads.com/book/show/28789720-the-conquering-tide?from_search=true&from_srp=true&qid=6OpnPOX1Bx&rank=1
The World Until Yesterday,Jared Diamond,https://www.goodreads.com/book/show/15766601-the-world-until-yesterday?from_search=true&from_srp=true&qid=vkCMS92WN9&rank=1
Gettysburg,Stephen Sears,https://www.goodreads.com/book/show/681614.Gettysburg?from_search=true&from_srp=true&qid=1RyLIlMYET&rank=1
The Death and Life of Great American Cities,"Jane Jacobs, Jason Epstein - introduction",https://www.goodreads.com/book/show/10864623-the-death-and-life-of-great-american-cities?from_search=true&from_srp=true&qid=LHaxAY04vL&rank=1
We Want to Do More Than Survive,Bettina Love,https://www.goodreads.com/book/show/40642377-we-want-to-do-more-than-survive?from_search=true&from_srp=true&qid=zWEpUBmvcU&rank=1
Prairie Fires,Caroline Fraser,https://www.goodreads.com/book/show/33911349-prairie-fires?from_search=true&from_srp=true&qid=zej7mSMX02&rank=1
Alexander the Great,Philip Freeman,https://www.goodreads.com/book/show/7841459-alexander-the-great?from_search=true&from_srp=true&qid=6h8tyAKlrD&rank=1
Where Good Ideas Come From,Steven Johnson,https://www.goodreads.com/book/show/8034188-where-good-ideas-come-from?from_search=true&from_srp=true&qid=qqsJhnpcEu&rank=2
Destined for War,Graham Allison,https://www.goodreads.com/book/show/31125556-destined-for-war?from_search=true&from_srp=true&qid=rKuISwY1Qi&rank=2
The Second World Wars,Victor Davis Hanson,https://www.goodreads.com/book/show/34184217-the-second-world-wars?from_search=true&from_srp=true&qid=WWY5MHQPn9&rank=1
Empire of Liberty,Gordon S. Wood,https://www.goodreads.com/book/show/550931.Empire_of_Liberty?from_search=true&from_srp=true&qid=nLMloLusbt&rank=1
Hiroshima,John Hersey,https://www.goodreads.com/book/show/27323.Hiroshima?from_search=true&from_srp=true&qid=iARz4ngj5z&rank=3
Cleopatra,Stacy Schiff,https://www.goodreads.com/book/show/7968243-cleopatra?from_search=true&from_srp=true&qid=HPhXjL2t9E&rank=1
The Battle of Midway (Pivotal Moments in American History),Craig L. Symonds,https://www.goodreads.com/book/show/12870685-the-battle-of-midway?from_search=true&from_srp=true&qid=gR6XNIsfl6&rank=1
The Generals,Winston Groom,https://www.goodreads.com/book/show/24869720-the-generals?from_search=true&from_srp=true&qid=GrQrh9TTfK&rank=1
Foundation,Peter Ackroyd,https://www.goodreads.com/book/show/13539185-foundation?from_search=true&from_srp=true&qid=ayMMPYkD6f&rank=1
Enemy at the Gates,William Craig,https://www.goodreads.com/book/show/435556.Enemy_at_the_Gates?from_search=true&from_srp=true&qid=9UwxpqTrJg&rank=1
Underworld,Graham Hancock,https://www.goodreads.com/book/show/33025.Underworld?from_search=true&from_srp=true&qid=sQo5B9V04i&rank=1
"Iron, Fire and Ice",Ed West,https://www.goodreads.com/book/show/36563378-iron-fire-and-ice?from_search=true&from_srp=true&qid=tTrE6kPF1X&rank=1
How Fascism Works,Jason Stanley,https://www.goodreads.com/book/show/38255329-how-fascism-works?from_search=true&from_srp=true&qid=vqiifME6cb&rank=2
The Longest Day,Cornelius Ryan,https://www.goodreads.com/book/show/161156.The_Longest_Day?from_search=true&from_srp=true&qid=57OfdFPw4h&rank=1
A Bridge Too Far,Cornelius Ryan,https://www.goodreads.com/book/show/539904.A_Bridge_Too_Far?from_search=true&from_srp=true&qid=TIBSR8e5oQ&rank=1
"Race Matters, 25th Anniversary",Cornel West,https://www.goodreads.com/book/show/55614850-race-matters-25th-anniversary?from_search=true&from_srp=true&qid=rnHcq6NkKT&rank=1
An African American and Latinx History of the United States,Paul Ortiz,https://www.goodreads.com/book/show/34564996-an-african-american-and-latinx-history-of-the-united-states?from_search=true&from_srp=true&qid=q42cu80az7&rank=1
The Norman Conquest,Marc Morris,https://www.goodreads.com/book/show/13065400-the-norman-conquest?from_search=true&from_srp=true&qid=I2EzSTWADl&rank=1
Call the Midwife,Jennifer Worth,https://www.goodreads.com/book/show/1197423.Call_the_Midwife?from_search=true&from_srp=true&qid=ITytpFQDFh&rank=2
Eichmann in Jerusalem,Hannah Arendt,https://www.goodreads.com/book/show/52090.Eichmann_in_Jerusalem?from_search=true&from_srp=true&qid=EIXp7wUASd&rank=2
The Beauty Myth,Naomi Wolf,https://www.goodreads.com/book/show/39926.The_Beauty_Myth?from_search=true&from_srp=true&qid=DmqciRinEJ&rank=1
The Good Soldiers,David Finkel,https://www.goodreads.com/book/show/6633912-the-good-soldiers?from_search=true&from_srp=true&qid=b1osrHdppU&rank=1
To Hell and Back,Ian Kershaw,https://www.goodreads.com/book/show/24611902-to-hell-and-back?from_search=true&from_srp=true&qid=fpOAyEazL2&rank=1
One Nation Under God,Kevin M. Kruse,https://www.goodreads.com/book/show/22928900-one-nation-under-god?from_search=true&from_srp=true&qid=DkZYSTJ337&rank=1
Black Against Empire,"Joshua Bloom, Waldo E. Martin Jr.",https://www.goodreads.com/book/show/15722514-black-against-empire?from_search=true&from_srp=true&qid=NXhAeBW51L&rank=1
To Rule the Waves,Arthur Herman,https://www.goodreads.com/book/show/85632.To_Rule_the_Waves?from_search=true&from_srp=true&qid=dSDa8wAgIQ&rank=1
Persian Fire,Tom Holland,https://www.goodreads.com/book/show/103749.Persian_Fire?from_search=true&from_srp=true&qid=SqkLzmKT1K&rank=1
Inside Scientology,Janet Reitman,https://www.goodreads.com/book/show/10091466-inside-scientology?from_search=true&from_srp=true&qid=KvtzralcnR&rank=2
The Secret History of Wonder Woman,Jill Lepore,https://www.goodreads.com/book/show/21855259-the-secret-history-of-wonder-woman?from_search=true&from_srp=true&qid=2FMeEerUM1&rank=1
The Assassination of Fred Hampton,Jeffrey Haas,https://www.goodreads.com/book/show/6561790-the-assassination-of-fred-hampton?from_search=true&from_srp=true&qid=mKPPGFGPLR&rank=1
Pushout,Monique W. Morris,https://www.goodreads.com/book/show/25159334-pushout?from_search=true&from_srp=true&qid=windxkTzGd&rank=1
Racism Without Racists,Eduardo Bonilla-Silva,https://www.goodreads.com/book/show/433281.Racism_without_Racists?from_search=true&from_srp=true&qid=1jlrIXQaHi&rank=1
The Last 100 Days,John Toland,https://www.goodreads.com/book/show/467573.The_Last_100_Days?from_search=true&from_srp=true&qid=SNKjoJPhzB&rank=1
The Proud Tower,Barbara W. Tuchman,https://www.goodreads.com/book/show/192955.The_Proud_Tower?from_search=true&from_srp=true&qid=0DsBHWzuTv&rank=1
A Great and Terrible King,Marc Morris,https://www.goodreads.com/book/show/2465562.A_Great_and_Terrible_King?from_search=true&from_srp=true&qid=H8hcQfyqkF&rank=1
Fear and Loathing,Hunter S. Thompson,https://www.goodreads.com/book/show/7745.Fear_and_Loathing_in_Las_Vegas?from_search=true&from_srp=true&qid=2rk1G3CAJv&rank=3
How to Live,Sarah Bakewell,https://www.goodreads.com/book/show/7624457-how-to-live?from_search=true&from_srp=true&qid=0gJJko9mgg&rank=1
How Europe Underdeveloped Africa,"Walter Rodney, Angela Y. Davis - foreword",https://www.goodreads.com/book/show/42719072-how-europe-underdeveloped-africa?from_search=true&from_srp=true&qid=S7k7PyHd8A&rank=1
Berlin Diary,William L. Shirer,https://www.goodreads.com/book/show/23756.Berlin_Diary?from_search=true&from_srp=true&qid=iJRyYny8RM&rank=2
The Fiery Trial,Eric Foner,https://www.goodreads.com/book/show/8753495-the-fiery-trial?from_search=true&from_srp=true&qid=hypKogTRd1&rank=2
Locking Up Our Own,James Forman Jr.,https://www.goodreads.com/book/show/34846249-locking-up-our-own?from_search=true&from_srp=true&qid=H6pXdf9N2R&rank=1
The Cold War,John Lewis Gaddis,https://www.goodreads.com/book/show/28432.The_Cold_War?from_search=true&from_srp=true&qid=tH3WQZJoWZ&rank=1
Augustus,Anthony Everitt,https://www.goodreads.com/book/show/89230.Augustus?from_search=true&from_srp=true&qid=vijYkD86uy&rank=1
The Swamp Fox,John Oller,https://www.goodreads.com/book/show/32739518-the-swamp-fox?from_search=true&from_srp=true&qid=axBqFGPK50&rank=1
Chernobyl 01:23:40,Andrew Leatherbarrow,https://www.goodreads.com/book/show/29945060-chernobyl-01?from_search=true&from_srp=true&qid=qIwSnC5a9H&rank=1
Winter Is Coming,Garry Kasparov,https://www.goodreads.com/book/show/24945308-winter-is-coming?from_search=true&from_srp=true&qid=Np5F7aiKFw&rank=1
The Heartbeat of Wounded Knee,David Treuer,https://www.goodreads.com/book/show/36620482-the-heartbeat-of-wounded-knee?from_search=true&from_srp=true&qid=QGwYY4qnG2&rank=2
Fall and Rise,Mitchell Zuckoff,https://www.goodreads.com/book/show/43600991-fall-and-rise?from_search=true&from_srp=true&qid=czfUkUFVM9&rank=1
Songs of America,"Jon Meacham, Tim McGraw",https://www.goodreads.com/book/show/44652584-songs-of-america?from_search=true&from_srp=true&qid=C6RRHuGPOB&rank=1
Being Wrong,Kathryn Schulz,https://www.goodreads.com/book/show/7811050-being-wrong?from_search=true&from_srp=true&qid=J8eWV8YXEz&rank=1
Spycraft,"Robert Wallace, Henry Robert Schelsinger",https://www.goodreads.com/book/show/53167253-spycraft?from_search=true&from_srp=true&qid=tt5444bo8f&rank=1
Gettysburg: The Last Invasion,Allen C. Guelzo,https://www.goodreads.com/book/show/16071719-gettysburg?from_search=true&from_srp=true&qid=pwTa4Z1kp5&rank=1
Conquistador,Buddy Levy,https://www.goodreads.com/book/show/2774104-conquistador?from_search=true&from_srp=true&qid=e2UhSeiDzS&rank=1
The Last Founding Father,Harlow Giles Unger,https://www.goodreads.com/book/show/6889967-the-last-founding-father?from_search=true&from_srp=true&qid=SrskDJDMUl&rank=1
Danse Macabre,Stephen King,https://www.goodreads.com/book/show/2614534-danse-macabre?from_search=true&from_srp=true&qid=djEnW4Bkw3&rank=8
The Evolution of God,Robert Wright,https://www.goodreads.com/book/show/6340873-the-evolution-of-god?from_search=true&from_srp=true&qid=p4c4pYKgz7&rank=1
The Great Shark Hunt,Hunter S. Thompson,https://www.goodreads.com/book/show/10878.The_Great_Shark_Hunt?from_search=true&from_srp=true&qid=MxUUE7AMhW&rank=1
The System,"Jeff Benedict, Armen Keteyian",https://www.goodreads.com/book/show/17262205-the-system?from_search=true&from_srp=true&qid=w34le79bmq&rank=1
The Map That Changed the World,Simon Winchester,https://www.goodreads.com/book/show/25014.The_Map_That_Changed_the_World?from_search=true&from_srp=true&qid=uP2xOPLoza&rank=1
The March of Folly,Barbara W. Tuchman,https://www.goodreads.com/book/show/10302.The_March_of_Folly?from_search=true&from_srp=true&qid=JGWKdUK7zS&rank=1
The Internal Enemy,Alan Taylor,https://www.goodreads.com/book/show/20663739-the-internal-enemy?from_search=true&from_srp=true&qid=zpVvWGbrPP&rank=1
The Age of Reason Begins,"Will Durant, Ariel Durant",https://www.goodreads.com/book/show/868267.The_Age_of_Reason_Begins?from_search=true&from_srp=true&qid=0vJ1zVqk2o&rank=1
The Great Game,Peter Hopkirk,https://www.goodreads.com/book/show/138299.The_Great_Game?from_search=true&from_srp=true&qid=tHxcrCsYd3&rank=1
The United States of Absurdity,"Dave Anthony, Gareth Reynolds, Patton Oswalt - foreword",https://www.goodreads.com/book/show/31624988-the-united-states-of-absurdity?from_search=true&from_srp=true&qid=OV5m2YaCMg&rank=1
Albion's Seed,David Hackett Fischer,https://www.goodreads.com/book/show/32081.Albion_s_Seed?from_search=true&from_srp=true&qid=jzNNwyq7u7&rank=1
The Rise of Rome,Anthony Everitt,https://www.goodreads.com/book/show/13155133-the-rise-of-rome?from_search=true&from_srp=true&qid=pbDuUlJ6nB&rank=1
Lost Enlightenment,S. Frederick Starr,https://www.goodreads.com/book/show/17847856-lost-enlightenment?from_search=true&from_srp=true&qid=wy3Rtnf1KN&rank=1
Serial Killers,Peter Vronsky,https://www.goodreads.com/book/show/421365.Serial_Killers?from_search=true&from_srp=true&qid=G38iHjDzya&rank=1
The Last Days of the Incas,Kim MacQuarrie,https://www.goodreads.com/book/show/354038.The_Last_Days_of_the_Incas?from_search=true&from_srp=true&qid=ZOu8p6bYmx&rank=1
Unapologetic,Charlene Carruthers,https://www.goodreads.com/book/show/37507272-unapologetic?from_search=true&from_srp=true&qid=EFEXVCiC6M&rank=1
The Real North Korea,Andrei Lankov,https://www.goodreads.com/book/show/16248578-the-real-north-korea?from_search=true&from_srp=true&qid=KyD6WnY9vG&rank=1
The Burglary,Betty Medsger,https://www.goodreads.com/book/show/17262123-the-burglary?from_search=true&from_srp=true&qid=dq9VTWZo0C&rank=1
The Lady from the Black Lagoon,Mallory O'Meara,https://www.goodreads.com/book/show/40165912-the-lady-from-the-black-lagoon?from_search=true&from_srp=true&qid=mbwFRMPcoC&rank=1
In the Shadow of Statues,Mitch Landrieu,https://www.goodreads.com/book/show/36978229-in-the-shadow-of-statues?from_search=true&from_srp=true&qid=zMprU3A7Z6&rank=1
Into the Silence,Wade Davis,https://www.goodreads.com/book/show/11602442-into-the-silence?from_search=true&from_srp=true&qid=gZLCii7iY7&rank=1
The Lewis and Clark Journals,"Lewis, Clark",https://www.goodreads.com/book/show/236830.The_Journals_of_Lewis_and_Clark?from_search=true&from_srp=true&qid=sGLVAeNeTv&rank=1
A Life Wild and Perilous,Robert M. Utley,https://www.goodreads.com/book/show/2032834.A_Life_Wild_and_Perilous?from_search=true&from_srp=true&qid=jyPWFegnNW&rank=1
A Most Beautiful Thing,Arshay Cooper,https://www.goodreads.com/book/show/56750085-a-most-beautiful-thing?from_search=true&from_srp=true&qid=o3Z8ah1Uci&rank=1
China,John Keay,https://www.goodreads.com/book/show/3896708-china?from_search=true&from_srp=true&qid=I1jRoYs0p5&rank=1
Black Titan,Carol Jenkins,https://www.goodreads.com/book/show/37885.Black_Titan?from_search=true&from_srp=true&qid=J9QPvQc5sU&rank=1
The Habsburg Empire,Pieter M. Judson,https://www.goodreads.com/book/show/27311725-the-habsburg-empire?from_search=true&from_srp=true&qid=es3JaXOD88&rank=1
A Bite-Sized History of France,"Stephane Henaut, Jeni Mitchell",https://www.goodreads.com/book/show/36542524-a-bite-sized-history-of-france?from_search=true&from_srp=true&qid=Y0VKRJc8n5&rank=1
Influenza,Dr. Jeremy Brown,https://www.goodreads.com/book/show/36580666-influenza?from_search=true&from_srp=true&qid=kjUFkgKo1p&rank=1
Midnight Rising,Tony Horwitz,https://www.goodreads.com/book/show/10900047-midnight-rising?from_search=true&from_srp=true&qid=TNoYWR4X8a&rank=1
Shakespeare in a Divided America,James Shapiro,https://www.goodreads.com/book/show/49512631-shakespeare-in-a-divided-america?from_search=true&from_srp=true&qid=78X3vO4Rxb&rank=1
Ten Caesars,Barry Strauss,https://www.goodreads.com/book/show/40524017-ten-caesars?from_search=true&from_srp=true&qid=WNpjlIOXN6&rank=1
Strong Men Armed,Robert Leckie,https://www.goodreads.com/book/show/1231424.Strong_Men_Armed?from_search=true&from_srp=true&qid=S4u6CtoJEc&rank=1
Incidents in the Life of a Slave Girl,Harriet Ann Jacobs,https://www.goodreads.com/book/show/152519.Incidents_in_the_Life_of_a_Slave_Girl?from_search=true&from_srp=true&qid=0p8rKSGKS6&rank=2
Ancient Aliens,The Producers of Ancient Aliens,https://www.goodreads.com/book/show/29368032-ancient-aliens?from_search=true&from_srp=true&qid=HOXi6E3p8M&rank=1
The Caped Crusade,Glen Weldon,https://www.goodreads.com/book/show/27276413-the-caped-crusade?from_search=true&from_srp=true&qid=lqtG9A7wxZ&rank=1
"Free Women, Free Men",Camille Paglia,https://www.goodreads.com/book/show/30351044-free-women-free-men?from_search=true&from_srp=true&qid=r2eoExCbvX&rank=1
The Red Flag,David Priestland,https://www.goodreads.com/book/show/6675452-the-red-flag?from_search=true&from_srp=true&qid=KZeLnKT2yC&rank=1
The Birth of Loud,Ian S. Port,https://www.goodreads.com/book/show/40538677-the-birth-of-loud?from_search=true&from_srp=true&qid=l3gYIJIWo9&rank=1
Babylon,Paul Kriwaczek,https://www.goodreads.com/book/show/8617614-babylon?from_search=true&from_srp=true&qid=Ptw5cxEkHV&rank=1
Crimea,Orlando Figes,https://www.goodreads.com/book/show/58970269-crimea?from_search=true&from_srp=true&qid=tGXwMbXVm9&rank=2
The Holocaust,Laurence Rees,https://www.goodreads.com/book/show/32048753-the-holocaust?from_search=true&from_srp=true&qid=pbmOVLhAbi&rank=1
I Can't Breathe,Matt Taibbi,https://www.goodreads.com/book/show/32740061-i-can-t-breathe?from_search=true&from_srp=true&qid=W053lKqPdw&rank=1
"Egypt, Greece, and Rome",Charles Freeman,https://www.goodreads.com/book/show/74674.Egypt_Greece_and_Rome?from_search=true&from_srp=true&qid=kHWYQ4hAHa&rank=1
In a Different Key,"John Donvan, Caren Zucker",https://www.goodreads.com/book/show/25430558-in-a-different-key?from_search=true&from_srp=true&qid=9osigXHBhe&rank=1
The Fortunes of Africa,Martin Meredith,https://www.goodreads.com/book/show/20578533-the-fortunes-of-africa?from_search=true&from_srp=true&qid=3P3eM2q4gR&rank=1
Superheroes!,"Laurence Maslon, Michael Kantor",https://www.goodreads.com/book/show/18911752-superheroes?from_search=true&from_srp=true&qid=oiVuf91LH5&rank=1
Superman,Larry Tye,https://www.goodreads.com/book/show/13144498-superman?from_search=true&from_srp=true&qid=JrpvQh4zxW&rank=1
How to Listen to Jazz,Ted Gioia,https://www.goodreads.com/book/show/26240779-how-to-listen-to-jazz?from_search=true&from_srp=true&qid=NTsdwgwPmC&rank=1
A Cruel and Shocking Act,Philip Shenon,https://www.goodreads.com/book/show/17740743-a-cruel-and-shocking-act?from_search=true&from_srp=true&qid=PU83keYAvS&rank=1
The Book of Pride,Mason Funk,https://www.goodreads.com/book/show/41454014-the-book-of-pride?from_search=true&from_srp=true&qid=Yr6CVM1h1x&rank=1
Wagnerism,Alex Ross,https://www.goodreads.com/book/show/50403493-wagnerism?from_search=true&from_srp=true&qid=aPIMp4wXYq&rank=1
While the City Slept,Eli Sanders,https://www.goodreads.com/book/show/25614525-while-the-city-slept?from_search=true&from_srp=true&qid=lgNSkO1H56&rank=2
Revolutionary Summer,Joseph J. Ellis,https://www.goodreads.com/book/show/16141925-revolutionary-summer?from_search=true&from_srp=true&qid=gRxbrS5N2d&rank=1
The Enlightenment,Ritchie Robertson,https://www.goodreads.com/book/show/49609421-the-enlightenment?from_search=true&from_srp=true&qid=L52Wz289KQ&rank=1
Notre-Dame,Ken Follett,https://www.goodreads.com/book/show/53087849-notre-dame?from_search=true&from_srp=true&qid=qvZZKzvSIO&rank=1
Music,Ted Gioia,https://www.goodreads.com/book/show/43886050-music?from_search=true&from_srp=true&qid=VP7oe13LoE&rank=1
Istanbul: A Tale of Three Cities,Bettany Hughes,https://www.goodreads.com/book/show/22711736-istanbul?from_search=true&from_srp=true&qid=TmbZIv64YT&rank=1
Countdown to Pearl Harbor,Steve Twomey,https://www.goodreads.com/book/show/29430832-countdown-to-pearl-harbor?from_search=true&from_srp=true&qid=kyZ1Umzlp0&rank=1
The Children of Willesden Lane,"Mona Golabek, Lee Cohen",https://www.goodreads.com/book/show/680913.The_Children_of_Willesden_Lane_Beyond_the_Kindertransport?from_search=true&from_srp=true&qid=skAcdFwH18&rank=1
High-Risers,Ben Austen,https://www.goodreads.com/book/show/35068382-high-risers?from_search=true&from_srp=true&qid=3ozmbZ0209&rank=1
The Back Roads to March,John Feinstein,https://www.goodreads.com/book/show/50743550-the-back-roads-to-march?from_search=true&from_srp=true&qid=fXGef7wfEf&rank=1
The Stonewall Reader,"New York Public Library, Edmund White",https://www.goodreads.com/book/show/42377825-the-stonewall-reader?from_search=true&from_srp=true&qid=eyYkFKszaD&rank=1
The Great Upheaval,Jay Winik,https://www.goodreads.com/book/show/795301.The_Great_Upheaval?from_search=true&from_srp=true&qid=T2ZiKYlOFn&rank=1
The Written World,Martin Puchner,https://www.goodreads.com/book/show/34939678-the-written-world?from_search=true&from_srp=true&qid=Z1oE8dyUFI&rank=1
Born to Kvetch,Michael Wex,https://www.goodreads.com/book/show/54836.Born_to_Kvetch?from_search=true&from_srp=true&qid=CSNuH2Z57P&rank=1
Betty Ford,Lisa McCubbin,https://www.goodreads.com/book/show/38532149-betty-ford?from_search=true&from_srp=true&qid=DxYJjfAZ81&rank=1
The World Broke in Two,Bill Goldstein,https://www.goodreads.com/book/show/30199420-the-world-broke-in-two?from_search=true&from_srp=true&qid=SBgYGXtV8Q&rank=1
Cuba Libre!,Tony Perrottet,https://www.goodreads.com/book/show/40062833-cuba-libre?from_search=true&from_srp=true&qid=pzDQLaVRFQ&rank=1
Destination Casablanca,Meredith Hindley,https://www.goodreads.com/book/show/34220712-destination-casablanca?from_search=true&from_srp=true&qid=cSs4745ZOQ&rank=1
The Dawn Watch,Maya Jasanoff,https://www.goodreads.com/book/show/34415012-the-dawn-watch?from_search=true&from_srp=true&qid=z0X4mKU1YJ&rank=1
Women in White Coats,Olivia Campbell,https://www.goodreads.com/book/show/53288445-women-in-white-coats?from_search=true&from_srp=true&qid=WUZObNJzGJ&rank=1
The Wars of the Roosevelts,William J. Mann,https://www.goodreads.com/book/show/29100226-the-wars-of-the-roosevelts?from_search=true&from_srp=true&qid=DNCzjBUO9q&rank=1
The Republic of Imagination,Azar Nafisi,https://www.goodreads.com/book/show/20821129-the-republic-of-imagination?from_search=true&from_srp=true&qid=hMCSxGePB4&rank=1
The History of the Vikings,Chris R. Fee,https://www.goodreads.com/book/show/53685611-the-history-of-the-vikings?from_search=true&from_srp=true&qid=wgZWmjhJnb&rank=1
The History of the Holocaust,Howard N. Lupovitch,https://www.goodreads.com/book/show/56702178-the-history-of-the-holocaust?from_search=true&from_srp=true&qid=JxoIGVcTAS&rank=1
Undeniable,Bill Nye,https://www.goodreads.com/book/show/21853626-undeniable?from_search=true&from_srp=true&qid=sgfm2D6dYp&rank=1
Other Minds,Peter Godfrey-Smith,https://www.goodreads.com/book/show/28116739-other-minds?from_search=true&from_srp=true&qid=EIJYrJg3G1&rank=1
The Story of the Human Body,Daniel Lieberman,https://www.goodreads.com/book/show/17736859-the-story-of-the-human-body?from_search=true&from_srp=true&qid=4hYltSBTUp&rank=1
Super Pumped,Mike Isaac,https://www.goodreads.com/book/show/44573628-super-pumped?from_search=true&from_srp=true&qid=3qZ7I7yZgZ&rank=1
Physics of the Future,Michio Kaku,https://www.goodreads.com/book/show/8492907-physics-of-the-future?from_search=true&from_srp=true&qid=lTNM0yTVlH&rank=1
Consciousness and the Brain,Stanislas Dehaene,https://www.goodreads.com/book/show/18079692-consciousness-and-the-brain?from_search=true&from_srp=true&qid=6DM39N4KiA&rank=1
Apollo 8,Jeffrey Kluger,https://www.goodreads.com/book/show/31848288-apollo-8?from_search=true&from_srp=true&qid=Ck0u53T10O&rank=1
Start-Up Nation,"Dan Senor, Saul Singer",https://www.goodreads.com/book/show/23088094-start-up-nation?from_search=true&from_srp=true&qid=ny4cpH1XjG&rank=2
The Story of Earth,Robert M. Hazen,https://www.goodreads.com/book/show/13483740-the-story-of-earth?from_search=true&from_srp=true&qid=dPJhsE70n8&rank=1
The Math of Life and Death,Kit Yates,https://www.goodreads.com/book/show/52941755-the-math-of-life-and-death?from_search=true&from_srp=true&qid=1PpKHdPFth&rank=1
Infinite Powers,Steven Strogatz,https://www.goodreads.com/book/show/40796176-infinite-powers?from_search=true&from_srp=true&qid=6FbsrqIfYR&rank=3
Leonardo's Brain,Leonard Shlain,https://www.goodreads.com/book/show/20893022-leonardo-s-brain?from_search=true&from_srp=true&qid=wbATXdGR0t&rank=1
Hacking Darwin,Jamie Metzl,https://www.goodreads.com/book/show/40597264-hacking-darwin?from_search=true&from_srp=true&qid=FwkN014bsN&rank=2
A Primate's Memoir,Robert Sapolsky,https://www.goodreads.com/book/show/32289.A_Primate_s_Memoir?from_search=true&from_srp=true&qid=Bz6rrurZSJ&rank=1
Thinking in Pictures,Temple Grandin,https://www.goodreads.com/book/show/103408.Thinking_in_Pictures?from_search=true&from_srp=true&qid=HLBpIXdhWu&rank=2
On Becoming a Person,"Carl R. Rogers, Peter D. Kramer MD - introduction",https://www.goodreads.com/book/show/174879.On_Becoming_a_Person?from_search=true&from_srp=true&qid=K7RZGITFHH&rank=1
Our Final Invention,James Barrat,https://www.goodreads.com/book/show/17286699-our-final-invention?from_search=true&from_srp=true&qid=d8kHVnFUCs&rank=1
Energy and Civilization,Vaclav Smil,https://www.goodreads.com/book/show/31850765-energy-and-civilization?from_search=true&from_srp=true&qid=jsmaU4HACK&rank=1
Moral Tribes,Joshua Greene,https://www.goodreads.com/book/show/17707599-moral-tribes?from_search=true&from_srp=true&qid=4xMHB8afXC&rank=1
When Einstein Walked with Gödel,Jim Holt,https://www.goodreads.com/book/show/36794489-when-einstein-walked-with-g-del?from_search=true&from_srp=true&qid=fx0S1g5QFM&rank=1
Biography of Resistance,Muhammad H. Zaman,https://www.goodreads.com/book/show/44781442-biography-of-resistance?from_search=true&from_srp=true&qid=FHddGfXHbn&rank=1
Nothing Like It in the World,Stephen E. Ambrose,https://www.goodreads.com/book/show/49255.Nothing_Like_It_in_the_World?from_search=true&from_srp=true&qid=uuU5fEbviz&rank=1
The Evolution of Everything,Matt Ridley,https://www.goodreads.com/book/show/25816925-the-evolution-of-everything?from_search=true&from_srp=true&qid=fdUa3l1xvB&rank=2
The Origin of Species by Means of Natural Selection,Charles Darwin,https://www.goodreads.com/book/show/8527398-the-origin-of-species-by-means-of-natural-selection---charles-darwin-m?from_search=true&from_srp=true&qid=TBz3HHCQkC&rank=1
The Epigenetics Revolution,Nessa Carey,https://www.goodreads.com/book/show/12414734-the-epigenetics-revolution?from_search=true&from_srp=true&qid=ByDCBQOf8t&rank=1
Awakenings,Oliver Sacks,https://www.goodreads.com/book/show/14456.Awakenings?from_search=true&from_srp=true&qid=OSUcUN76r0&rank=2
A Beautiful Mind,Sylvia Nasar,https://www.goodreads.com/book/show/13912.A_Beautiful_Mind?from_search=true&from_srp=true&qid=SWE0Yvt1JZ&rank=2
Ask an Astronaut,Tim Peake,https://www.goodreads.com/book/show/34516046-ask-an-astronaut?from_search=true&from_srp=true&qid=e4vutYzejB&rank=1
Go Wild,"John J. Ratey, Richard Manning, David Perlmutter - foreword",https://www.goodreads.com/book/show/25674399-go-wild?from_search=true&from_srp=true&qid=S7o89wmL5I&rank=1
Minecraft,"Linus Larsson, Daniel Goldberg, Jennifer Hawkins - translator",https://www.goodreads.com/book/show/17412776-minecraft?from_search=true&from_srp=true&qid=5RF3oPPXNW&rank=1
The World Without Us,Alan Weisman,https://www.goodreads.com/book/show/248787.The_World_Without_Us?from_search=true&from_srp=true&qid=ARePduwxcy&rank=1
The Beak of the Finch,Jonathan Weiner,https://www.goodreads.com/book/show/125286.The_Beak_of_the_Finch?from_search=true&from_srp=true&qid=SEYxFth8rU&rank=2
The Sun Is a Compass,Caroline Van Hemert,https://www.goodreads.com/book/show/40696959-the-sun-is-a-compass?from_search=true&from_srp=true&qid=lrYpqK7Uow&rank=1
At Blackwater Pond,Mary Oliver,https://www.goodreads.com/book/show/71647.At_Blackwater_Pond?from_search=true&from_srp=true&qid=0OoantKtok&rank=1
The Big Thirst,Charles Fishman,https://www.goodreads.com/book/show/10503170-the-big-thirst?from_search=true&from_srp=true&qid=XT1fwCDmE8&rank=2
American Moonshot,Douglas Brinkley,https://www.goodreads.com/book/show/36501774-american-moonshot?from_search=true&from_srp=true&qid=Z7SqApZ1ue&rank=1
What the Dog Knows,Cat Warren,https://www.goodreads.com/book/show/17571809-what-the-dog-knows?from_search=true&from_srp=true&qid=ARRKoKkny5&rank=1
The Human Superorganism,Rodney Dietert PhD,https://www.goodreads.com/book/show/27774720-the-human-superorganism?from_search=true&from_srp=true&qid=ZlGfnIeIph&rank=1
The Art of Statistics,David Spiegelhalter,https://www.goodreads.com/book/show/43722897-the-art-of-statistics?from_search=true&from_srp=true&qid=b56kD3XgJf&rank=3
A Mind at Play,"Rob Goodman, Jimmy Soni",https://www.goodreads.com/book/show/32919530-a-mind-at-play?from_search=true&from_srp=true&qid=ScG77sF973&rank=1
Tesla: Man Out of Time,Margaret Cheney,https://www.goodreads.com/book/show/128529.Tesla?from_search=true&from_srp=true&qid=nKYmeoDRXK&rank=2
Euclid's Window,Leonard Mlodinow,https://www.goodreads.com/book/show/616208.Euclid_s_Window?from_search=true&from_srp=true&qid=08ircXWeGQ&rank=1
Arctic Dreams,Barry Lopez,https://www.goodreads.com/book/show/43496869-arctic-dreams-imagination-and-desire-in-northern-landscape?from_search=true&from_srp=true&qid=P9IDcasCoJ&rank=2
How to Invent Everything,Ryan North,https://www.goodreads.com/book/show/39026990-how-to-invent-everything?from_search=true&from_srp=true&qid=W8ELweP4fz&rank=1
This Is Your Brain on Music,Daniel J. Levitin,https://www.goodreads.com/book/show/141565.This_Is_Your_Brain_on_Music?from_search=true&from_srp=true&qid=3r6NXwrNQZ&rank=1
A Beautiful Question,Frank Wilczek,https://www.goodreads.com/book/show/23453106-a-beautiful-question?from_search=true&from_srp=true&qid=f8YNtY6tdK&rank=1
The Mathematics of Love,Hannah Fry,https://www.goodreads.com/book/show/23258103-the-mathematics-of-love?from_search=true&from_srp=true&qid=yXUaAkTwVa&rank=1
The War for Kindness,Jamil Zaki,https://www.goodreads.com/book/show/42729353-the-war-for-kindness?from_search=true&from_srp=true&qid=RhcAAsn43m&rank=1
Never Home Alone,Rob Dunn,https://www.goodreads.com/book/show/39088985-never-home-alone?from_search=true&from_srp=true&qid=Ql0tLCn1Kw&rank=1
Idiot Brain,Dean Burnett,https://www.goodreads.com/book/show/32191721-idiot-brain?from_search=true&from_srp=true&qid=nCKW4tAHUG&rank=1
Black Hole Blues and Other Songs from Outer Space,Janna Levin,https://www.goodreads.com/book/show/27430326-black-hole-blues-and-other-songs-from-outer-space?from_search=true&from_srp=true&qid=blqt2sVPZr&rank=1
The Most Human Human,Brian Christian,https://www.goodreads.com/book/show/8884400-the-most-human-human?from_search=true&from_srp=true&qid=yXxOwCyZQn&rank=1
How We Learn,Stanislas Dehaene,https://www.goodreads.com/book/show/46064083-how-we-learn?from_search=true&from_srp=true&qid=S4HPPa19jW&rank=1
Isaac Newton,James Gleick,https://www.goodreads.com/book/show/17098.Isaac_Newton?from_search=true&from_srp=true&qid=eigUeMMBrj&rank=1
"Reader, Come Home",Maryanne Wolf,https://www.goodreads.com/book/show/35887237-reader-come-home?from_search=true&from_srp=true&qid=PuywsCNH1x&rank=1
Robert Oppenheimer,Ray Monk,https://www.goodreads.com/book/show/12041966-robert-oppenheimer?from_search=true&from_srp=true&qid=STpRjCFHKG&rank=1
Cathedral of the Wild,Boyd Varty,https://www.goodreads.com/book/show/18050185-cathedral-of-the-wild?from_search=true&from_srp=true&qid=OnZ7jFgTqB&rank=1
The Truth About Animals,Lucy Cooke,https://www.goodreads.com/book/show/34211802-the-unexpected-truth-about-animals?from_search=true&from_srp=true&qid=XekKhCRTqf&rank=1
Field Notes from a Catastrophe,Elizabeth Kolbert,https://www.goodreads.com/book/show/80513.Field_Notes_from_a_Catastrophe?from_search=true&from_srp=true&qid=8qbzZYSi7O&rank=2
Animal Wise,Virginia Morell,https://www.goodreads.com/book/show/14868863-animal-wise?from_search=true&from_srp=true&qid=ubuk0ar2no&rank=1
Wild Ones,Jon Mooallem,https://www.goodreads.com/book/show/16158510-wild-ones?from_search=true&from_srp=true&qid=1eAIuzVw8d&rank=1
Science Matters,"Robert M. Hazen, James Trefil",https://www.goodreads.com/book/show/52712.Science_Matters?from_search=true&from_srp=true&qid=3TMEh4bYyw&rank=1
The New Climate War,Michael E. Mann,https://www.goodreads.com/book/show/53441709-the-new-climate-war?from_search=true&from_srp=true&qid=WukfiSvLZZ&rank=2
Chesapeake Requiem,Earl Swift,https://www.goodreads.com/book/show/36220685-chesapeake-requiem?from_search=true&from_srp=true&qid=WbXOHI0Ieg&rank=1
As Long as Grass Grows,Dina Gilio-Whitaker,https://www.goodreads.com/book/show/41183866-as-long-as-grass-grows?from_search=true&from_srp=true&qid=e6Owh9utTp&rank=1
The Upright Thinkers,Leonard Mlodinow,https://www.goodreads.com/book/show/22889752-the-upright-thinkers?from_search=true&from_srp=true&qid=VKRITK8Y7s&rank=1
Infinite Reality,"Jim Blascovich, Jeremy Bailenson",https://www.goodreads.com/book/show/10427784-infinite-reality?from_search=true&from_srp=true&qid=8KsR8qSRSs&rank=1
Zoom,Bob Berman,https://www.goodreads.com/book/show/18656029-zoom?from_search=true&from_srp=true&qid=978zPkiuQI&rank=1
This Is the Voice,John Colapinto,https://www.goodreads.com/book/show/50892267-this-is-the-voice?from_search=true&from_srp=true&qid=HjFkeCq6an&rank=1
The Vaccine Race,Meredith Wadman,https://www.goodreads.com/book/show/30212108-the-vaccine-race?from_search=true&from_srp=true&qid=7UOo9tQXIy&rank=1
The Friendly Orange Glow,Brian Dear,https://www.goodreads.com/book/show/34373814-the-friendly-orange-glow?from_search=true&from_srp=true&qid=G3A9RrKV0A&rank=1
Mind and Matter,"John Urschel, Louisa Thomas",https://www.goodreads.com/book/show/41553668-mind-and-matter?from_search=true&from_srp=true&qid=B4Y4MBbOli&rank=1
The Great Animal Orchestra,Bernie Krause,https://www.goodreads.com/book/show/11689551-the-great-animal-orchestra?from_search=true&from_srp=true&qid=ky6CJ47T15&rank=1
The Autobiography of Malcolm X,"Malcolm X, Alex Haley",https://www.goodreads.com/book/show/92057.The_Autobiography_of_Malcolm_X?from_search=true&from_srp=true&qid=lVOhTypjp5&rank=2
The Meaning of Mariah Carey,Mariah Carey,https://www.goodreads.com/book/show/53265647-the-meaning-of-mariah-carey?from_search=true&from_srp=true&qid=hQOb1zwDRC&rank=1
Over the Top,Jonathan Van Ness,https://www.goodreads.com/book/show/41824023-over-the-top?from_search=true&from_srp=true&qid=rNmYF1sGaw&rank=1
Outlaw Platoon,"Sean Parnell, John Bruning",https://www.goodreads.com/book/show/12990404-outlaw-platoon?from_search=true&from_srp=true&qid=bgCOjAL1Nu&rank=1
The Short and Tragic Life of Robert Peace,Jeff Hobbs,https://www.goodreads.com/book/show/18775365-the-short-and-tragic-life-of-robert-peace?from_search=true&from_srp=true&qid=mZYeV6E754&rank=1
Drinking,Caroline Knapp,https://www.goodreads.com/book/show/73965.Drinking?from_search=true&from_srp=true&qid=bt7oXXrscx&rank=1
Silver Screen Fiend,Patton Oswalt,https://www.goodreads.com/book/show/17571109-silver-screen-fiend?from_search=true&from_srp=true&qid=0tOMSI5feg&rank=1
Enrique's Journey,Sonia Nazario,https://www.goodreads.com/book/show/158277.Enrique_s_Journey?from_search=true&from_srp=true&qid=wS3hrAsyj8&rank=1
Well-Read Black Girl,Glory Edim,https://www.goodreads.com/book/show/38255372-well-read-black-girl?from_search=true&from_srp=true&qid=XiKSYegDqw&rank=1
It's So Easy,Duff McKagan,https://www.goodreads.com/book/show/11156963-it-s-so-easy?from_search=true&from_srp=true&qid=E9pPR219lh&rank=1
Breaking Night,Liz Murray,https://www.goodreads.com/book/show/1432370.Breaking_Night?from_search=true&from_srp=true&qid=I29kEH6QmE&rank=2
Consider the Lobster,David Foster Wallace,https://www.goodreads.com/book/show/6751.Consider_the_Lobster_and_Other_Essays?from_search=true&from_srp=true&qid=XKGccdIiyM&rank=1
The Autobiography of Andrew Carnegie,Andrew Carnegie,https://www.goodreads.com/book/show/10158695-the-autobiography-of-andrew-carnegie?from_search=true&from_srp=true&qid=85KnirXlG3&rank=1
Dear America,Jose Antonio Vargas,https://www.goodreads.com/book/show/36544614-dear-america?from_search=true&from_srp=true&qid=lEzjxSR6wD&rank=1
What I Was Doing While You Were Breeding,Kristin Newman,https://www.goodreads.com/book/show/18373272-what-i-was-doing-while-you-were-breeding?from_search=true&from_srp=true&qid=OYonQsXcgN&rank=1
Empire State of Mind,Zack O'Malley Greenburg,https://www.goodreads.com/book/show/9430007-empire-state-of-mind?from_search=true&from_srp=true&qid=4lfTcw1wjm&rank=1
Becoming Nicole,Amy Ellis Nutt,https://www.goodreads.com/book/show/25893681-becoming-nicole?from_search=true&from_srp=true&qid=vRKBJTnOzs&rank=2
Teacher Man,Frank McCourt,https://www.goodreads.com/book/show/4909.Teacher_Man?from_search=true&from_srp=true&qid=6jfwD9awTQ&rank=1
Lessons from a Third Grade Dropout,Rick Rigsby,https://www.goodreads.com/book/show/2049239.Lessons_From_a_Third_Grade_Dropout?from_search=true&from_srp=true&qid=sPVQrk53XI&rank=1
Reading Lolita in Tehran,Azar Nafisi,https://www.goodreads.com/book/show/7603.Reading_Lolita_in_Tehran?from_search=true&from_srp=true&qid=2LX1zNpsrG&rank=3
Conversations with RBG,Jeffrey Rosen,https://www.goodreads.com/book/show/45320351-conversations-with-rbg?from_search=true&from_srp=true&qid=EBLcJNtEHi&rank=1
The Life and Times of Frederick Douglass,Frederick Douglass,https://www.goodreads.com/book/show/91588.The_Life_and_Times_of_Frederick_Douglass?from_search=true&from_srp=true&qid=wrUN5gfkRs&rank=2
Travels,Michael Crichton,https://www.goodreads.com/book/show/7665.Travels?from_search=true&from_srp=true&qid=4Iwlz1K6bL&rank=2
The Michigan Murders,Edward Keyes,https://www.goodreads.com/book/show/29870198-the-michigan-murders?from_search=true&from_srp=true&qid=HTR28VRBcl&rank=1
The Dressmaker of Khair Khana,Gayle Tzemach Lemmon,https://www.goodreads.com/book/show/8584913-the-dressmaker-of-khair-khana?from_search=true&from_srp=true&qid=qb8WE0lLTo&rank=1
Sanford Meisner on Acting,"Sanford Meisner, Dennis Longwell, Sydney Pollack - introduction",https://www.goodreads.com/book/show/140507.Sanford_Meisner_on_Acting?from_search=true&from_srp=true&qid=QePcAvG7wT&rank=1
Nancy Wake,Peter FitzSimons,https://www.goodreads.com/book/show/1504838.Nancy_Wake?from_search=true&from_srp=true&qid=WiDFHtoiOr&rank=1
The Underground Girls of Kabul,Jenny Nordberg,https://www.goodreads.com/book/show/18077802-the-underground-girls-of-kabul?from_search=true&from_srp=true&qid=VoqPVLuKrJ&rank=1
Invisible,Stephen L. Carter,https://www.goodreads.com/book/show/33898873-invisible?from_search=true&from_srp=true&qid=Q31howCTjc&rank=1
What We Don't Talk About When We Talk About Fat,Aubrey Gordon,https://www.goodreads.com/book/show/52011076-what-we-don-t-talk-about-when-we-talk-about-fat?from_search=true&from_srp=true&qid=kFT7SnwcEN&rank=1
Jane Austen at Home,Lucy Worsley,https://www.goodreads.com/book/show/31450766-jane-austen-at-home?from_search=true&from_srp=true&qid=0YDndNYfF5&rank=1
"Too Fat, Too Slutty, Too Loud",Anne Helen Petersen,https://www.goodreads.com/book/show/33257571-too-fat-too-slutty-too-loud?from_search=true&from_srp=true&qid=36rxTOpQbQ&rank=1
I Came as a Shadow,"John Thompson, Jesse Washington",https://www.goodreads.com/book/show/53470668-i-came-as-a-shadow?from_search=true&from_srp=true&qid=IUlUyYLLKU&rank=1
"Well, That Escalated Quickly",Franchesca Ramsey,https://www.goodreads.com/book/show/40603370-well-that-escalated-quickly?from_search=true&from_srp=true&qid=DlNEH5kDwX&rank=1
Spare Parts,Joshua Davis,https://www.goodreads.com/book/show/20518979-spare-parts?from_search=true&from_srp=true&qid=7oFvViPR24&rank=1