-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbooks.txt
More file actions
3222 lines (2864 loc) · 65.7 KB
/
Copy pathbooks.txt
File metadata and controls
3222 lines (2864 loc) · 65.7 KB
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
Date = 1970-01-01
Publisher = Martins Fontes
Title = A Sociedade do Anel (O Senhor dos Anéis #1)
Author = J. R. R. Tolkien
Format = Capa comum
Pages = 450
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Martins Fontes
Title = As Duas Torres (O Senhor dos Anéis #1)
Author = J. R. R. Tolkien
Format = Capa comum
Pages = 380
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Martins Fontes
Title = O Retorno do Rei (O Senhor dos Anéis #1)
Author = J. R. R. Tolkien
Format = Capa comum
Pages = 450
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Martins Fontes
Title = O Hobbit
Author = J. R. R. Tolkien
Format = Capa comum
Pages = 297
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Objetiva
Title = A bússola de ouro
Author = Philip Pullman
Format = Capa comum
Pages = 417
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Objetiva
Title = A faca sutil
Author = Philip Pullman
Format = Capa comum
Pages = 300
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Objetiva
Title = A luneta âmbar
Author = Philip Pullman
Format = Capa comum
Pages = 526
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Rocco
Title = Harry Potter e a Pedra Filosofal
Author = J. K. Rowling
Format = Capa comum
Pages = 264
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Rocco
Title = Harry Potter e a Câmara Secreta
Author = J. K. Rowling
Format = Capa comum
Pages = 288
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Rocco
Title = Harry Potter e o Prisioneiro de Azkaban
Author = J. K. Rowling
Format = Capa comum
Pages = 348
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Rocco
Title = Harry Potter e o Cálice de Fogo
Author = J. K. Rowling
Format = Capa comum
Pages = 0
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Rocco
Title = Harry Potter e a Ordem da Fênix
Author = J. K. Rowling
Format = Capa comum
Pages = 704
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Rocco
Title = Harry Potter e o Enigma do Príncipe
Author = J. K. Rowling
Format = Capa comum
Pages = 512
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Rocco
Title = Harry Potter e as Relíquias da Morte
Author = J. K. Rowling
Format = Capa comum
Pages = 592
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Pearson
Title = Clean Code: A Handbook of Agile Software Craftsmanship
Author = Martin Robert C.
Format = eBook
Pages = 431
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = O'Reilly Media
Title = Programming WCF Services: Mastering WCF and the Azure AppFabric Service Bus
Author = Juval Lowy
Format = eBook
Pages = 908
Duration = 0m
Rating = 2
Date = 1970-01-01
Publisher = Crown Currency
Title = Rework
Author = Jason Fried, David Heinemeier Hansson
Format = eBook
Pages = 224
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Scholastic Press
Title = The Hunger Games (The Hunger Games #1)
Author = Suzanne Collins
Format = eBook
Pages = 387
Duration = 0m
Rating = 3
Date = 1970-01-01
Publisher = Scholastic Press
Title = Catching Fire (The Hunger Games #2)
Author = Suzanne Collins
Format = eBook
Pages = 472
Duration = 0m
Rating = 3
Date = 1970-01-01
Publisher = No Starch Press
Title = Eloquent JavaScript: A Modern Introduction to Programming
Author = Marijn Haverbeke
Format = eBook
Pages = 452
Duration = 0m
Rating = 4
Date = 1970-01-01
Publisher = Dava Enterprises
Title = Dust
Author = Arthur Slade
Format = eBook
Pages = 152
Duration = 0m
Rating = 3
Date = 1970-01-01
Publisher = CreateSpace Independent Publishing Platform
Title = Realms of the Red Rabbit (Realms of the Red Rabbit series, Book 1)
Author = Laura Eno
Format = eBook
Pages = 338
Duration = 0m
Rating = 2
Date = 1970-01-01
Publisher = Addison-Wesley Professional
Title = The Pragmatic Programmer: From Journeyman to Master
Author = Andrew Hunt, David Thomas
Format = eBook
Pages = 352
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Gateway
Title = I Am Legend: The chilling horror masterpiece that you won’t be able to put down (S.F. MASTERWORKS Book 43)
Author = Richard Matheson
Format = eBook
Pages = 175
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Suma
Title = A Guerra dos Tronos (As crônicas de gelo e fogo #1)
Author = George R.R. Martin
Format = Capa comum
Pages = 592
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Suma
Title = A fúria dos reis (As crônicas de gelo e fogo #2)
Author = George R.R. Martin
Format = Capa comum
Pages = 648
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Suma
Title = A tormenta de espadas (As crônicas de gelo e fogo #3)
Author = George R.R. Martin
Format = Capa comum
Pages = 832
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Suma
Title = O Festim dos Corvos (As crônicas de gelo e fogo #4)
Author = George R.R. Martin
Format = Capa comum
Pages = 608
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Suma
Title = A dança dos dragões (As crônicas de gelo e fogo #5)
Author = George R.R. Martin
Format = eBook
Pages = 824
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Record
Title = O último reino (Crônicas Saxônicas #1)
Author = Bernard Cornwell
Format = Capa comum
Pages = 436
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Record
Title = O cavaleiro da morte (Crônicas Saxônicas #2)
Author = Bernard Cornwell
Format = Capa comum
Pages = 466
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Record
Title = Os senhores do norte (Crônicas Saxônicas #3)
Author = Bernard Cornwell
Format = Capa comum
Pages = 411
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Record
Title = A canção da espada (Crônicas Saxônicas #4)
Author = Bernard Cornwell
Format = Capa comum
Pages = 412
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Record
Title = Terra em chamas (Crônicas Saxônicas #5)
Author = Bernard Cornwell
Format = Capa comum
Pages = 451
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Record
Title = Morte dos reis (Crônicas Saxônicas #6)
Author = Bernard Cornwell
Format = eBook
Pages = 439
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Editora Novo Conceito
Title = A livraria 24 horas do Mr. Penumbra
Author = Robin Sloan
Format = eBook
Pages = 293
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Intrínseca
Title = O oceano no fim do caminho
Author = Neil Gaiman
Format = eBook
Pages = 216
Duration = 0m
Rating = 5
Date = 1970-01-01
Publisher = Verus
Title = A batalha do Apocalipse
Author = Eduardo Spohr
Format = eBook
Pages = 822
Duration = 0m
Rating = 2
Date = 2013-12-22
Publisher =
Title = The Foundation Trilogy (Foundation #1-3)
Author = Isaac Asimov
Format = Capa comum
Pages = 679
Duration = 0m
Rating = 4
Date = 2014-01-10
Publisher = Nova Fronteira
Title = Morte Súbita
Author = J.K. Rowling
Format = eBook
Pages = 542
Duration = 0m
Rating = 3
Date = 2014-01-13
Publisher = Record
Title = 1356
Author = Bernard Cornwell
Format = eBook
Pages = 422
Duration = 0m
Rating = 3
Date = 2014-03-16
Publisher = Permuted Press
Title = Ex-Heroes (Ex-Heroes #1)
Author = Peter Clines
Format = eBook
Pages = 274
Duration = 0m
Rating = 2
Date = 2014-03-22
Publisher = Globo Livros
Title = Crônicas Marcianas
Author = Ray Bradbury
Format = eBook
Pages = 270
Duration = 0m
Rating = 5
Date = 2014-03-26
Publisher = Scholastic Press
Title = Mockingjay (The Hunger Games #3)
Author = Suzanne Collins
Format = Capa dura
Pages = 398
Duration = 0m
Rating = 3
Date = 2014-05-15
Publisher = Zahar
Title = Aventuras de Alice no País das Maravilhas & Através do espelho (Clássicos Zahar)
Author = Lewis Carroll
Format = eBook
Pages = 448
Duration = 0m
Rating = 2
Date = 2014-05-21
Publisher = Globo Livros
Title = Fahrenheit 451
Author = Ray Bradbury
Format = eBook
Pages = 215
Duration = 0m
Rating = 4
Date = 2014-05-29
Publisher = Arqueiro
Title = A Tribo
Author = Joe Hill
Format = eBook
Pages = 106
Duration = 0m
Rating = 3
Date = 2014-07-17
Publisher = Intrínseca
Title = Como Tudo Começou (Homeland #1)
Author = Andrew Kaplan
Format = eBook
Pages = 340
Duration = 0m
Rating = 3
Date = 2014-07-18
Publisher = Headline
Title = Bloodchild
Author = Octavia E. Butler
Format = eBook
Pages = 31
Duration = 0m
Rating = 3
Date = 2014-08-19
Publisher = Intrínseca
Title = O Rei de Amarelo
Author = Robert W. Chambers
Format = Capa comum
Pages = 256
Duration = 0m
Rating = 4
Date = 2014-09-24
Publisher = Planeta Literário
Title = O mistério da cripta amaldiçoada
Author = Eduardo Mendoza
Format = Capa comum
Pages = 192
Duration = 0m
Rating = 4
Date = 2014-09-28
Publisher = Smashwords Edition
Title = A Igreja Vermelha
Author = Scott Nicholson
Format = eBook
Pages = 314
Duration = 0m
Rating = 2
Date = 2014-10-13
Publisher = Syncfusion
Title = ASP.NET Web API Succinctly
Author = Emanuele DelBono
Format = eBook
Pages = 92
Duration = 0m
Rating = 2
Date = 2014-10-20
Publisher = Aleph
Title = Laranja Mecânica
Author = Anthony Burgess
Format = Capa comum
Pages = 224
Duration = 0m
Rating = 4
Date = 2014-12-14
Publisher = Biblioteca Azul
Title = A cidade inteira dorme e outros contos breves
Author = Ray Bradbury
Format = eBook
Pages = 168
Duration = 0m
Rating = 5
Date = 2014-12-27
Publisher = Record
Title = O Rei do Inverno (As Crônicas de Artur #1)
Author = Bernard Cornwell
Format = Capa comum
Pages = 546
Duration = 0m
Rating = 4
Date = 2014-12-31
Publisher = Record
Title = O Inimigo de Deus (As Crônicas de Arthur #2)
Author = Bernard Cornwell
Format = eBook
Pages = 492
Duration = 0m
Rating = 4
Date = 2015-01-06
Publisher = Record
Title = Excalibur (As Crônicas de Artur #3)
Author = Bernard Cornwell
Format = eBook
Pages = 498
Duration = 0m
Rating = 4
Date = 2015-01-24
Publisher = Ridan Publishing
Title = The Forever War
Author = Joe Haldeman
Format = eBook
Pages = 292
Duration = 0m
Rating = 3
Date = 2015-01-25
Publisher = LeYa
Title = Sobrevivente
Author = Chuck Palahniuk
Format = eBook
Pages = 297
Duration = 0m
Rating = 2
Date = 2015-01-31
Publisher = Longe
Title = Chéri à Paris - Um brasileiro na terra do fromage
Author = Daniel Cariello
Format = eBook
Pages = 163
Duration = 0m
Rating = 3
Date = 2015-02-16
Publisher = LeYa
Title = O Cavaleiro dos Sete Reinos (The Tales of Dunk and Egg #1-3)
Author = George R.R. Martin
Format = eBook
Pages = 316
Duration = 0m
Rating = 2
Date = 2015-03-13
Publisher = Penguin
Title = Extremely Loud and Incredibly Close
Author = Jonathan Safran Foer
Format = eBook
Pages = 368
Duration = 0m
Rating = 3
Date = 2015-04-23
Publisher = Record
Title = Azincourt
Author = Bernard Cornwell
Format = eBook
Pages = 434
Duration = 0m
Rating = 2
Date = 2015-04-25
Publisher = Arqueiro
Title = Perdido em Marte
Author = Andy Weir
Format = eBook
Pages = 336
Duration = 0m
Rating = 5
Date = 2015-04-26
Publisher = Intrínseca
Title = Minha Breve História
Author = Stephen Hawking
Format = eBook
Pages = 84
Duration = 0m
Rating = 3
Date = 2015-06-03
Publisher = Broad Reach Publishing
Title = Wool (Silo #1)
Author = Hugh Howey
Format = eBook
Pages = 530
Duration = 0m
Rating = 4
Date = 2015-06-12
Publisher = Globo Livros
Title = 1808
Author = Laurentino Gomes
Format = eBook
Pages = 414
Duration = 0m
Rating = 5
Date = 2015-06-27
Publisher = Intrínseca
Title = Aniquilação (Comando Sul #1)
Author = Jeff VanderMeer
Format = eBook
Pages = 200
Duration = 0m
Rating = 1
Date = 2015-08-04
Publisher = Syncfusion
Title = F# Succinctly
Author = Robert Pickering
Format = eBook
Pages = 102
Duration = 0m
Rating = 2
Date = 2015-08-22
Publisher = Tor
Title = Old Man's War (Old Man's War #1)
Author = John Scalzi
Format = eBook
Pages = 332
Duration = 0m
Rating = 4
Date = 2015-08-25
Publisher =
Title = Robots of the World! Arise!
Author = Mari Wolf
Format = eBook
Pages = 30
Duration = 0m
Rating = 3
Date = 2015-08-31
Publisher = Syncfusion
Title = Data Structures Succinctly Part 1
Author = Robert Horvick
Format = eBook
Pages = 111
Duration = 0m
Rating = 3
Date = 2015-09-01
Publisher = Syncfusion
Title = Data Structures Succinctly Part 2
Author = Robert Horvick
Format = eBook
Pages = 126
Duration = 0m
Rating = 3
Date = 2015-09-28
Publisher = Hedra
Title = Contos clássicos de vampiro
Author = Bruno Costa
Format = Capa comum
Pages = 264
Duration = 0m
Rating = 4
Date = 2015-10-31
Publisher =
Title = Dark Beyond the Stars: A Space Opera Anthology
Author = Patrice Fitzgerald
Format = eBook
Pages = 346
Duration = 0m
Rating = 3
Date = 2015-11-10
Publisher = Aleph
Title = A Mão Esquerda da Escuridão
Author = Ursula K. Le Guin
Format = Capa comum
Pages = 296
Duration = 0m
Rating = 4
Date = 2015-11-15
Publisher = Broad Reach Publishing
Title = Beacon 23
Author = Hugh Howey
Format = eBook
Pages = 256
Duration = 0m
Rating = 2
Date = 2015-11-16
Publisher = LeYa
Title = Clube da Luta
Author = Chuck Palahniuk
Format = eBook
Pages = 221
Duration = 0m
Rating = 2
Date = 2015-12-17
Publisher = 47North
Title = Off to Be the Wizard (Magic 2.0 #1)
Author = Scott Meyer
Format = Capa comum
Pages = 373
Duration = 0m
Rating = 2
Date = 2015-12-27
Publisher = Intrínseca
Title = Os filhos de Anansi
Author = Neil Gaiman
Format = eBook
Pages = 384
Duration = 0m
Rating = 2
Date = 2016-01-24
Publisher = Aleph
Title = Eu, Robô (Robot #0.1)
Author = Isaac Asimov
Format = Capa comum
Pages = 320
Duration = 0m
Rating = 4
Date = 2016-02-12
Publisher = LeYa
Title = Jogador Nº 1
Author = Ernest Cline
Format = eBook
Pages = 434
Duration = 0m
Rating = 3
Date = 2016-04-06
Publisher = Intrínseca
Title = Caixa de Pássaros
Author = Josh Malerman
Format = eBook
Pages = 265
Duration = 0m
Rating = 2
Date = 2016-04-24
Publisher = Cosac Naify
Title = A Contadora de Filmes
Author = Hernán Rivera Letelier
Format = eBook
Pages = 112
Duration = 0m
Rating = 3
Date = 2016-04-30
Publisher = Cosac Naify
Title = Bonsai
Author = Alejandro Zambra
Format = eBook
Pages = 93
Duration = 0m
Rating = 2
Date = 2016-06-05
Publisher = Record
Title = O Guerreiro Pagão (Crônicas Saxônicas #7)
Author = Bernard Cornwell
Format = eBook
Pages = 344
Duration = 0m
Rating = 4
Date = 2016-06-11
Publisher = Record
Title = O trono vazio (Crônicas Saxônicas #8)
Author = Bernard Cornwell
Format = eBook
Pages = 336
Duration = 0m
Rating = 4
Date = 2016-07-09
Publisher = Cosac Naify
Title = Formas de voltar para casa
Author = Alejandro Zambra
Format = eBook
Pages = 115
Duration = 0m
Rating = 4
Date = 2016-07-17
Publisher = Cosac Naify
Title = A vida privada das árvores
Author = Alejandro Zambra
Format = eBook
Pages = 96
Duration = 0m
Rating = 4
Date = 2016-09-27
Publisher = Broad Reach Publishing
Title = Shift (Silo #2)
Author = Hugh Howey
Format = eBook
Pages = 570
Duration = 0m
Rating = 2
Date = 2016-10-02
Publisher = Aleph
Title = Encontro com Rama
Author = Arthur C. Clarke
Format = Capa comum
Pages = 288
Duration = 0m
Rating = 5
Date = 2016-10-09
Publisher = Casa do Código
Title = Desconstruindo a Web: As tecnologias por trás de uma requisição
Author = Willian Molinari
Format = eBook
Pages = 234
Duration = 0m
Rating = 3
Date = 2016-11-03
Publisher = Aleph
Title = O Homem do Castelo Alto
Author = Philip K. Dick
Format = Capa comum
Pages = 304
Duration = 0m
Rating = 4
Date = 2016-11-20
Publisher = Aleph
Title = O Fim da Infância
Author = Arthur C. Clarke
Format = Capa comum
Pages = 320
Duration = 0m
Rating = 5
Date = 2016-12-31
Publisher = Hedra
Title = Os melhores contos de H.P. Lovecraft
Author = H.P. Lovecraft
Format = eBook
Pages = 908
Duration = 0m
Rating = 5
Date = 2017-01-15
Publisher = LeYa
Title = ARMADA
Author = Ernest Cline
Format = eBook
Pages = 374
Duration = 0m
Rating = 2
Date = 2017-01-21
Publisher = Globo Livros
Title = Piratas no Brasil: As incríveis histórias dos ladrões dos mares que pilharam nosso litoral
Author = Jean Marcel Carvalho França
Format = Capa comum
Pages = 224
Duration = 0m
Rating = 3
Date = 2017-01-21
Publisher = Record
Title = Guerreiros da Tempestade (Crônicas Saxônicas #9)
Author = Bernard Cornwell
Format = Capa comum
Pages = 350
Duration = 0m
Rating = 5
Date = 2017-01-28
Publisher = LeYa
Title = O aprendiz de assassino
Author = Robin Hobb
Format = eBook
Pages = 416
Duration = 0m
Rating = 4
Date = 2017-02-19
Publisher = Broad Reach Publishing
Title = Dust (Silo #3)
Author = Hugh Howey
Format = eBook
Pages = 466
Duration = 0m
Rating = 3
Date = 2017-02-25
Publisher = Aleph
Title = Androides Sonham Com Ovelhas Elétricas?
Author = Philip K. Dick
Format = Capa comum
Pages = 272
Duration = 0m
Rating = 4
Date = 2017-03-03
Publisher = Casa do Código
Title = Amazon AWS: Descomplicando a computação na nuvem
Author = Jonathan Lamim Antunes
Format = Capa comum
Pages = 215
Duration = 0m
Rating = 4
Date = 2017-03-06
Publisher = Cosac Naify
Title = Meus Documentos
Author = Alejandro Zambra
Format = eBook
Pages = 224
Duration = 0m
Rating = 5
Date = 2017-03-19
Publisher = Tor
Title = Binti (Binti #1)
Author = Nnedi Okorafor
Format = eBook
Pages = 96
Duration = 0m
Rating = 3
Date = 2017-03-28
Publisher = Tor
Title = The Fortress at the End of Time
Author = Joe M. McDermott
Format = eBook
Pages = 272
Duration = 0m
Rating = 3
Date = 2017-04-04
Publisher = Aleph
Title = 2001: Uma odisseia no espaço
Author = Arthur C. Clarke
Format = eBook
Pages = 324
Duration = 0m
Rating = 5
Date = 2017-07-08
Publisher = Fantástica Rocco
Title = As Águas-Vivas Não Sabem de Si
Author = Aline Valek
Format = Capa comum
Pages = 296
Duration = 0m
Rating = 5
Date = 2017-07-17
Publisher = Tor
Title = Home (Binti #2)
Author = Nnedi Okorafor
Format = eBook
Pages = 176
Duration = 0m
Rating = 4
Date = 2017-08-18
Publisher = Farrar, Straus and Giroux
Title = A Wrinkle in Time (Time Quintet #1)
Author = Madeleine L'Engle
Format = eBook
Pages = 228
Duration = 0m
Rating = 3
Date = 2017-08-27
Publisher = Casa do Código
Title = OCaml: Programação funcional na prática
Author = Andrei de Araújo Formiga
Format = eBook
Pages = 281
Duration = 0m
Rating = 3
Date = 2017-09-01